The patch titled UML: fix botched signal handling patch has been added to the -mm tree. Its filename is uml-move-signal-handlers-to-arch-code-fix.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: UML: fix botched signal handling patch From: Jeff Dike <jdike@xxxxxxxxxxx> I botched a previous patch which changed how UML handles signals. I left out a bit which sets the signal handler to be one provided by the architecture. This patch sets the handler correctly. Signed-off-by: Jeff Dike <jdike@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/um/os-Linux/signal.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletion(-) diff -puN arch/um/os-Linux/signal.c~uml-move-signal-handlers-to-arch-code-fix arch/um/os-Linux/signal.c --- a/arch/um/os-Linux/signal.c~uml-move-signal-handlers-to-arch-code-fix +++ a/arch/um/os-Linux/signal.c @@ -125,7 +125,8 @@ void set_handler(int sig, void (*handler sigset_t sig_mask; int mask; - action.sa_handler = handler; + handlers[sig] = (void (*)(int, struct sigcontext *)) handler; + action.sa_handler = hard_handler; sigemptyset(&action.sa_mask); _ Patches currently in -mm which might be from jdike@xxxxxxxxxxx are fix-x86_64-mm-i386-semaphore-to-asm-uml-fix.patch reduce-max_nr_zones-make-zone_highmem-optional-fix-fix-fix.patch uml-use-klibc-setjmp-longjmp.patch uml-use-array_size-more-assiduously.patch uml-fix-stack-alignment.patch uml-whitespace-fixes.patch uml-fix-handling-of-failed-execs-of-helpers.patch uml-improve-sigbus-diagnostics.patch uml-sigio-cleanups.patch uml-move-signal-handlers-to-arch-code.patch uml-move-signal-handlers-to-arch-code-fix.patch uml-timer-cleanups.patch uml-remove-unused-variable.patch uml-use-mcmodel=kernel-for-x86_64.patch uml-fix-proc-vs-interrupt-context-spinlock-deadlock.patch uml-clean-our-set_ether_mac.patch uml-remove-pte_mkexec.patch namespaces-utsname-switch-to-using-uts-namespaces-uml-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