The patch titled Subject: kernel-kthreadc-kthread_create_on_node-clarify-documentation-fix has been removed from the -mm tree. Its filename was kernel-kthreadc-kthread_create_on_node-clarify-documentation-fix.patch This patch was dropped because it was folded into kernel-kthreadc-kthread_create_on_node-clarify-documentation.patch ------------------------------------------------------ From: Nathan Zimmer <nzimmer@xxxxxxx> Subject: kernel-kthreadc-kthread_create_on_node-clarify-documentation-fix use NUMA_NO_NODE in kthread_create() also Cc: Tejun Heo <tj@xxxxxxxxxx> Cc: Eric Dumazet <edumazet@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/kthread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/linux/kthread.h~kernel-kthreadc-kthread_create_on_node-clarify-documentation-fix include/linux/kthread.h --- a/include/linux/kthread.h~kernel-kthreadc-kthread_create_on_node-clarify-documentation-fix +++ a/include/linux/kthread.h @@ -11,7 +11,7 @@ struct task_struct *kthread_create_on_no const char namefmt[], ...); #define kthread_create(threadfn, data, namefmt, arg...) \ - kthread_create_on_node(threadfn, data, -1, namefmt, ##arg) + kthread_create_on_node(threadfn, data, NUMA_NO_NODE, namefmt, ##arg) struct task_struct *kthread_create_on_cpu(int (*threadfn)(void *data), _ Patches currently in -mm which might be from nzimmer@xxxxxxx are kernel-kthreadc-kthread_create_on_node-clarify-documentation.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html