The patch titled Subject: allocate-idle-task-for-a-cpu-always-on-its-local-node-fix has been removed from the -mm tree. Its filename was allocate-idle-task-for-a-cpu-always-on-its-local-node-fix.patch This patch was dropped because it was folded into allocate-idle-task-for-a-cpu-always-on-its-local-node.patch ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: allocate-idle-task-for-a-cpu-always-on-its-local-node-fix use NUMA_NO_NODE, not a bare -1 Cc: Andi Kleen <ak@xxxxxxxxxxxxxxx> Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/fork.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN kernel/fork.c~allocate-idle-task-for-a-cpu-always-on-its-local-node-fix kernel/fork.c --- a/kernel/fork.c~allocate-idle-task-for-a-cpu-always-on-its-local-node-fix +++ a/kernel/fork.c @@ -346,7 +346,7 @@ static struct task_struct *dup_task_stru struct thread_info *ti; int err; - if (node < 0) + if (node == NUMA_NO_NODE) node = tsk_fork_get_node(orig); tsk = alloc_task_struct_node(node); if (!tsk) @@ -1754,7 +1754,7 @@ long _do_fork(unsigned long clone_flags, } p = copy_process(clone_flags, stack_start, stack_size, - child_tidptr, NULL, trace, tls, -1); + child_tidptr, NULL, trace, tls, NUMA_NO_NODE); /* * Do this prior waking up the new thread - the thread pointer * might get invalid after that point, if the thread exits quickly. _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are allocate-idle-task-for-a-cpu-always-on-its-local-node.patch drivers-memstick-core-mspro_block-use-kmemdup-fix.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