The patch titled From: Ian Campbell <Ian.Campbell@xxxxxxxxxx> has been added to the -mm tree. Its filename is stop_machine-fixup-cutnpaste-error-in-stopped-thread-name.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ From: Ian Campbell <Ian.Campbell@xxxxxxxxxx> Subject: stop_machine: fixup cut'n'paste error in stopped thread name Noticed this while poking around. Seems like the code was lifted a bit more thoroughly from the migration thread mgmt code than the author of the preceding comment intended... Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx> Cc: "H. Peter Anvin" <hpa@xxxxxxxxxxxxxxx> Cc: Eric Dumazet <eric.dumazet@xxxxxxxxx> Cc: Tejun Heo <htejun@xxxxxxxxx> Cc: Peter Zijlstra <peterz@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxx> --- kernel/stop_machine.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN kernel/stop_machine.c~stop_machine-fixup-cutnpaste-error-in-stopped-thread-name kernel/stop_machine.c --- a/kernel/stop_machine.c~stop_machine-fixup-cutnpaste-error-in-stopped-thread-name +++ a/kernel/stop_machine.c @@ -313,7 +313,7 @@ static int __cpuinit cpu_stop_cpu_callba p = kthread_create_on_node(cpu_stopper_thread, stopper, cpu_to_node(cpu), - "migration/%d", cpu); + "stopper/%d", cpu); if (IS_ERR(p)) return notifier_from_errno(PTR_ERR(p)); get_task_struct(p); _ Subject: From: Ian Campbell <Ian.Campbell@xxxxxxxxxx> Patches currently in -mm which might be from Ian.Campbell@xxxxxxxxxx are origin.patch linux-next.patch stop_machine-fixup-cutnpaste-error-in-stopped-thread-name.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