The patch titled uml: kernel_thread shouldn't panic has been removed from the -mm tree. Its filename was uml-kernel_thread-shouldnt-panic.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: uml: kernel_thread shouldn't panic From: Jeff Dike <jdike@xxxxxxxxxxx> kernel_thread() should just return an error value on do_fork failure, not panic. Signed-off-by: Jeff Dike <jdike@xxxxxxxxxxxxxxx> Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/um/kernel/process.c | 2 -- 1 file changed, 2 deletions(-) diff -puN arch/um/kernel/process.c~uml-kernel_thread-shouldnt-panic arch/um/kernel/process.c --- a/arch/um/kernel/process.c~uml-kernel_thread-shouldnt-panic +++ a/arch/um/kernel/process.c @@ -97,8 +97,6 @@ int kernel_thread(int (*fn)(void *), voi current->thread.request.u.thread.arg = arg; pid = do_fork(CLONE_VM | CLONE_UNTRACED | flags, 0, ¤t->thread.regs, 0, NULL, NULL); - if(pid < 0) - panic("do_fork failed in kernel_thread, errno = %d", pid); return pid; } _ Patches currently in -mm which might be from jdike@xxxxxxxxxxx are origin.patch uml-hostfs-style-fixes.patch uml-an-idle-system-should-have-zero-load-average.patch remove-tas.patch x86-create-asm-cmpxchgh.patch uml-network-and-pcap-cleanup.patch uml-pcap-devices-should-get-macs-from-command-line.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