> >> >+ { > >> if (sig_fatal(t, sig)) { > >> >+ printk(KERN_WARNING "Sig %d send to %d owned by %d.%d > >(%s)\n", > >> s/send/sent/; > >> >+ sig, t -> pid, t -> uid, t -> gid, t -> comm); > >> t->pid, t->uid, t->gid, t->comm); > > > > Gargh ... why does this want to be in the *kernel*'s logs? In any case, can > you please make this KERN_INFO (or lower) instead of KERN_WARNING.
Description: This patch adds code to the signal-sender making it log a message when an unhandled fatal signal will be delivered. Signed-of by: Folkert van Heusden <[EMAIL PROTECTED] --- kernel/signal.c.org 2007-05-20 22:47:13.000000000 +0200 +++ kernel/signal.c 2007-05-21 14:46:05.000000000 +0200 @@ -739,6 +739,12 @@ struct sigqueue * q = NULL; int ret = 0; + /* unhandled fatal signals are logged */ + if (sig_fatal(t, sig)) { + printk(KERN_INFO "Sig %d sent to %d owned by %d.%d (%s)\n", + sig, t->pid, t->uid, t->gid, t->comm); + } + /* * fast-pathed signals for kernel-internal things like SIGSTOP * or SIGKILL. Folkert van Heusden -- Temperature outside: 21.437500, temperature livingroom: ---------------------------------------------------------------------- Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/