* [RFC] log out-of-virtual-memory events
@ 2007-05-17 16:24 Andrea Righi
2007-05-17 18:22 ` Rik van Riel
0 siblings, 1 reply; 37+ messages in thread
From: Andrea Righi @ 2007-05-17 16:24 UTC (permalink / raw)
To: LKML, linux-mm
I'm looking for a way to keep track of the processes that fail to allocate new
virtual memory. What do you think about the following approach (untested)?
--
Print informations about the processes that fail to allocate virtual memory.
Signed-off-by: Andrea Righi <a.righi@cineca.it>
diff -urpN linux-2.6.21/mm/mmap.c linux-2.6.21-vm-log-enomem/mm/mmap.c
--- linux-2.6.21/mm/mmap.c 2007-04-26 05:08:32.000000000 +0200
+++ linux-2.6.21-vm-log-enomem/mm/mmap.c 2007-05-17 18:05:39.000000000 +0200
@@ -77,6 +77,26 @@ int sysctl_max_map_count __read_mostly =
atomic_t vm_committed_space = ATOMIC_INIT(0);
/*
+ * Print current process informations when it fails to allocate new virtual
+ * memory.
+ */
+static inline void log_vm_enomem(void)
+{
+ unsigned long total_vm = 0;
+ struct mm_struct *mm;
+
+ task_lock(current);
+ mm = current->mm;
+ if (mm)
+ total_vm = mm->total_vm;
+ task_unlock(current);
+
+ printk(KERN_INFO
+ "out of virtual memory for process %d (%s): total_vm=%lu, uid=%d\n",
+ current->pid, current->comm, total_vm, current->uid);
+}
+
+/*
* Check that a process has enough memory to allocate a new virtual
* mapping. 0 means there is enough memory for the allocation to
* succeed and -ENOMEM implies there is not.
@@ -175,6 +195,7 @@ int __vm_enough_memory(long pages, int c
return 0;
error:
vm_unacct_memory(pages);
+ log_vm_enomem();
return -ENOMEM;
}
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
^ permalink raw reply [flat|nested] 37+ messages in thread* Re: [RFC] log out-of-virtual-memory events 2007-05-17 16:24 [RFC] log out-of-virtual-memory events Andrea Righi @ 2007-05-17 18:22 ` Rik van Riel 2007-05-18 6:28 ` signals logged / " Jan Engelhardt 2007-05-18 7:50 ` Andrea Righi 0 siblings, 2 replies; 37+ messages in thread From: Rik van Riel @ 2007-05-17 18:22 UTC (permalink / raw) To: righiandr; +Cc: LKML, linux-mm Andrea Righi wrote: > I'm looking for a way to keep track of the processes that fail to allocate new > virtual memory. What do you think about the following approach (untested)? Looks like an easy way for users to spam syslogd over and over and over again. At the very least, shouldn't this be dependant on print_fatal_signals? -- Politics is the struggle between those who want to make their country the best in the world, and those who believe it already is. Each group calls the other unpatriotic. -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: signals logged / [RFC] log out-of-virtual-memory events 2007-05-17 18:22 ` Rik van Riel @ 2007-05-18 6:28 ` Jan Engelhardt 2007-05-18 11:47 ` Andi Kleen 2007-05-18 7:50 ` Andrea Righi 1 sibling, 1 reply; 37+ messages in thread From: Jan Engelhardt @ 2007-05-18 6:28 UTC (permalink / raw) To: Rik van Riel; +Cc: righiandr, LKML, linux-mm, ak On May 17 2007 14:22, Rik van Riel wrote: > Andrea Righi wrote: >> I'm looking for a way to keep track of the processes that fail to allocate >> new >> virtual memory. What do you think about the following approach (untested)? > > Looks like an easy way for users to spam syslogd over and > over and over again. > > At the very least, shouldn't this be dependant on print_fatal_signals? Speaking of signals, everytime I get a segfault (or force one with a test program) on x86_64, the kernel prints to dmesg: fail[22278]: segfault at 0000000000000000 rip 00000000004004b8 rsp 00007ffff7ecda50 error 6 I do not see such on i386, so why for x86_64? Jan -- -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: signals logged / [RFC] log out-of-virtual-memory events 2007-05-18 6:28 ` signals logged / " Jan Engelhardt @ 2007-05-18 11:47 ` Andi Kleen 2007-05-19 7:46 ` Jan Engelhardt 0 siblings, 1 reply; 37+ messages in thread From: Andi Kleen @ 2007-05-18 11:47 UTC (permalink / raw) To: Jan Engelhardt; +Cc: Rik van Riel, righiandr, LKML, linux-mm > I do not see such on i386, so why for x86_64? So that you know that one of your programs crashed. That's a feature. -Andi -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: signals logged / [RFC] log out-of-virtual-memory events 2007-05-18 11:47 ` Andi Kleen @ 2007-05-19 7:46 ` Jan Engelhardt 2007-05-19 9:35 ` Andrea Righi 2007-05-20 0:14 ` Folkert van Heusden 0 siblings, 2 replies; 37+ messages in thread From: Jan Engelhardt @ 2007-05-19 7:46 UTC (permalink / raw) To: Andi Kleen; +Cc: Rik van Riel, righiandr, LKML, linux-mm On May 18 2007 13:47, Andi Kleen wrote: > >> I do not see such on i386, so why for x86_64? > >So that you know that one of your programs crashed. That's a feature. This feature could be handy for i386 too. Jan -- -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: signals logged / [RFC] log out-of-virtual-memory events 2007-05-19 7:46 ` Jan Engelhardt @ 2007-05-19 9:35 ` Andrea Righi 2007-05-19 10:06 ` Jan Engelhardt 2007-05-20 0:14 ` Folkert van Heusden 1 sibling, 1 reply; 37+ messages in thread From: Andrea Righi @ 2007-05-19 9:35 UTC (permalink / raw) To: Jan Engelhardt; +Cc: Andi Kleen, Rik van Riel, LKML, linux-mm Jan Engelhardt wrote: > On May 18 2007 13:47, Andi Kleen wrote: >>> I do not see such on i386, so why for x86_64? >> So that you know that one of your programs crashed. That's a feature. > > This feature could be handy for i386 too. > What about your /proc/sys/kernel/print-fatal-signals? it must be set to 1 to enable that feature. -Andrea -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: signals logged / [RFC] log out-of-virtual-memory events 2007-05-19 9:35 ` Andrea Righi @ 2007-05-19 10:06 ` Jan Engelhardt 2007-05-19 10:16 ` Andrea Righi 0 siblings, 1 reply; 37+ messages in thread From: Jan Engelhardt @ 2007-05-19 10:06 UTC (permalink / raw) To: Andrea Righi; +Cc: Andi Kleen, Rik van Riel, LKML, linux-mm On May 19 2007 11:35, Andrea Righi wrote: >Jan Engelhardt wrote: >> On May 18 2007 13:47, Andi Kleen wrote: >>>> I do not see such on i386, so why for x86_64? >>> So that you know that one of your programs crashed. That's a feature. >> >> This feature could be handy for i386 too. >> > >What about your /proc/sys/kernel/print-fatal-signals? it must be set to 1 to >enable that feature. That file does not exist on versions 2.6.18 <= version <= 2.6.20 Jan -- -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: signals logged / [RFC] log out-of-virtual-memory events 2007-05-19 10:06 ` Jan Engelhardt @ 2007-05-19 10:16 ` Andrea Righi 0 siblings, 0 replies; 37+ messages in thread From: Andrea Righi @ 2007-05-19 10:16 UTC (permalink / raw) To: Jan Engelhardt; +Cc: Andi Kleen, Rik van Riel, LKML, linux-mm Jan Engelhardt wrote: > On May 19 2007 11:35, Andrea Righi wrote: >> Jan Engelhardt wrote: >>> On May 18 2007 13:47, Andi Kleen wrote: >>>>> I do not see such on i386, so why for x86_64? >>>> So that you know that one of your programs crashed. That's a feature. >>> This feature could be handy for i386 too. >>> >> What about your /proc/sys/kernel/print-fatal-signals? it must be set to 1 to >> enable that feature. > > That file does not exist on versions > 2.6.18 <= version <= 2.6.20 > This means that you must apply the print_fatal_signals patch... -Andrea -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: signals logged / [RFC] log out-of-virtual-memory events 2007-05-19 7:46 ` Jan Engelhardt 2007-05-19 9:35 ` Andrea Righi @ 2007-05-20 0:14 ` Folkert van Heusden 2007-05-20 3:55 ` Eric Dumazet 1 sibling, 1 reply; 37+ messages in thread From: Folkert van Heusden @ 2007-05-20 0:14 UTC (permalink / raw) To: Jan Engelhardt; +Cc: Andi Kleen, Rik van Riel, righiandr, LKML, linux-mm > >> I do not see such on i386, so why for x86_64? > >So that you know that one of your programs crashed. That's a feature. > This feature could be handy for i386 too. Since 2.6.18.2 I use this patch. With 2.6.21.1 it still applies altough with a small offsets. Works like a charm. Signed-off by: Folkert van Heusden <folkert@vanheusden.com> --- linux-2.6.18.2/kernel/signal.c 2006-11-04 02:33:58.000000000 +0100 +++ linux-2.6.18.2.new/kernel/signal.c 2006-11-17 15:59:13.000000000 +0100 @@ -706,6 +706,15 @@ struct sigqueue * q = NULL; int ret = 0; + if (sig == SIGQUIT || sig == SIGILL || sig == SIGTRAP || + sig == SIGABRT || sig == SIGBUS || sig == SIGFPE || + sig == SIGSEGV || sig == SIGXCPU || sig == SIGXFSZ || + sig == SIGSYS || sig == SIGSTKFLT) + { + printk(KERN_WARNING "Sig %d send 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 -- www.biglumber.com <- site where one can exchange PGP key signatures ---------------------------------------------------------------------- Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: signals logged / [RFC] log out-of-virtual-memory events 2007-05-20 0:14 ` Folkert van Heusden @ 2007-05-20 3:55 ` Eric Dumazet 2007-05-20 11:21 ` Folkert van Heusden 0 siblings, 1 reply; 37+ messages in thread From: Eric Dumazet @ 2007-05-20 3:55 UTC (permalink / raw) To: Folkert van Heusden Cc: Jan Engelhardt, Andi Kleen, Rik van Riel, righiandr, LKML, linux-mm Folkert van Heusden a ecrit : >>>> I do not see such on i386, so why for x86_64? >>> So that you know that one of your programs crashed. That's a feature. >> This feature could be handy for i386 too. > > Since 2.6.18.2 I use this patch. With 2.6.21.1 it still applies altough > with a small offsets. Works like a charm. > > > Signed-off by: Folkert van Heusden <folkert@vanheusden.com> > > --- linux-2.6.18.2/kernel/signal.c 2006-11-04 02:33:58.000000000 +0100 > +++ linux-2.6.18.2.new/kernel/signal.c 2006-11-17 15:59:13.000000000 +0100 > @@ -706,6 +706,15 @@ > struct sigqueue * q = NULL; > int ret = 0; > > + if (sig == SIGQUIT || sig == SIGILL || sig == SIGTRAP || > + sig == SIGABRT || sig == SIGBUS || sig == SIGFPE || > + sig == SIGSEGV || sig == SIGXCPU || sig == SIGXFSZ || > + sig == SIGSYS || sig == SIGSTKFLT) > + { > + printk(KERN_WARNING "Sig %d send to %d owned by %d.%d (%s)\n", > + sig, t -> pid, t -> uid, t -> gid, t -> comm); > + } > + Please check line 219 of Documentation/CodingStyle, Section 3.1: Spaces and no space around the '.' and "->" structure member operators. Thank you -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: signals logged / [RFC] log out-of-virtual-memory events 2007-05-20 3:55 ` Eric Dumazet @ 2007-05-20 11:21 ` Folkert van Heusden 2007-05-20 16:08 ` Stephen Hemminger 0 siblings, 1 reply; 37+ messages in thread From: Folkert van Heusden @ 2007-05-20 11:21 UTC (permalink / raw) To: Eric Dumazet Cc: Jan Engelhardt, Andi Kleen, Rik van Riel, righiandr, LKML, linux-mm > >>>>I do not see such on i386, so why for x86_64? > >>>So that you know that one of your programs crashed. That's a feature. > >>This feature could be handy for i386 too. > >Since 2.6.18.2 I use this patch. With 2.6.21.1 it still applies altough > >with a small offsets. Works like a charm. > > > >Signed-off by: Folkert van Heusden <folkert@vanheusden.com> > >--- linux-2.6.18.2/kernel/signal.c 2006-11-04 02:33:58.000000000 +0100 > >+++ linux-2.6.18.2.new/kernel/signal.c 2006-11-17 15:59:13.000000000 +0100 ... > >+ sig, t -> pid, t -> uid, t -> gid, t -> comm); > > Please check line 219 of Documentation/CodingStyle, Section 3.1: Spaces > and no space around the '.' and "->" structure member operators. New version without the spaces around '->' and a nice 'unlikely' added. Signed-off by: Folkert van Heusden <folkert@vanheusden.com> --- linux-2.6.18.2/kernel/signal.c 2006-11-04 02:33:58.000000000 +0100 +++ linux-2.6.18.2.new/kernel/signal.c 2006-11-17 15:59:13.000000000 +0100 @@ -706,6 +706,15 @@ struct sigqueue * q = NULL; int ret = 0; + if (unlikely(sig == SIGQUIT || sig == SIGILL || sig == SIGTRAP || + sig == SIGABRT || sig == SIGBUS || sig == SIGFPE || + sig == SIGSEGV || sig == SIGXCPU || sig == SIGXFSZ || + sig == SIGSYS || sig == SIGSTKFLT)) + { + printk(KERN_WARNING "Sig %d send 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 -- MultiTail cok yonlu kullanimli bir program, loglari okumak, verilen kommandolari yerine getirebilen. Filter, renk verme, merge, 'diff- view', vs. http://www.vanheusden.com/multitail/ ---------------------------------------------------------------------- Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: signals logged / [RFC] log out-of-virtual-memory events 2007-05-20 11:21 ` Folkert van Heusden @ 2007-05-20 16:08 ` Stephen Hemminger 2007-05-20 16:12 ` Folkert van Heusden 0 siblings, 1 reply; 37+ messages in thread From: Stephen Hemminger @ 2007-05-20 16:08 UTC (permalink / raw) To: Folkert van Heusden Cc: Eric Dumazet, Jan Engelhardt, Andi Kleen, Rik van Riel, righiandr, LKML, linux-mm On Sun, 20 May 2007 13:21:11 +0200 Folkert van Heusden <folkert@vanheusden.com> wrote: > > >>>>I do not see such on i386, so why for x86_64? > > >>>So that you know that one of your programs crashed. That's a feature. > > >>This feature could be handy for i386 too. > > >Since 2.6.18.2 I use this patch. With 2.6.21.1 it still applies altough > > >with a small offsets. Works like a charm. > > > > > >Signed-off by: Folkert van Heusden <folkert@vanheusden.com> > > >--- linux-2.6.18.2/kernel/signal.c 2006-11-04 02:33:58.000000000 +0100 > > >+++ linux-2.6.18.2.new/kernel/signal.c 2006-11-17 15:59:13.000000000 +0100 > ... > > >+ sig, t -> pid, t -> uid, t -> gid, t -> comm); > > > > Please check line 219 of Documentation/CodingStyle, Section 3.1: Spaces > > and no space around the '.' and "->" structure member operators. > > New version without the spaces around '->' and a nice 'unlikely' added. > > Signed-off by: Folkert van Heusden <folkert@vanheusden.com> > > --- linux-2.6.18.2/kernel/signal.c 2006-11-04 02:33:58.000000000 +0100 > +++ linux-2.6.18.2.new/kernel/signal.c 2006-11-17 15:59:13.000000000 +0100 > @@ -706,6 +706,15 @@ > struct sigqueue * q = NULL; > int ret = 0; > > + if (unlikely(sig == SIGQUIT || sig == SIGILL || sig == SIGTRAP || > + sig == SIGABRT || sig == SIGBUS || sig == SIGFPE || > + sig == SIGSEGV || sig == SIGXCPU || sig == SIGXFSZ || > + sig == SIGSYS || sig == SIGSTKFLT)) > + { > + printk(KERN_WARNING "Sig %d send 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 > Would turning that into a switch() generate better code. -- Stephen Hemminger <shemminger@linux-foundation.org> -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: signals logged / [RFC] log out-of-virtual-memory events 2007-05-20 16:08 ` Stephen Hemminger @ 2007-05-20 16:12 ` Folkert van Heusden 2007-05-20 20:38 ` Jan Engelhardt 0 siblings, 1 reply; 37+ messages in thread From: Folkert van Heusden @ 2007-05-20 16:12 UTC (permalink / raw) To: Stephen Hemminger Cc: Eric Dumazet, Jan Engelhardt, Andi Kleen, Rik van Riel, righiandr, LKML, linux-mm > > > >>>>I do not see such on i386, so why for x86_64? > > > >>>So that you know that one of your programs crashed. That's a feature. > > > >>This feature could be handy for i386 too. > > > >Since 2.6.18.2 I use this patch. With 2.6.21.1 it still applies altough > > > >with a small offsets. Works like a charm. > > > > > > > >Signed-off by: Folkert van Heusden <folkert@vanheusden.com> > > > >--- linux-2.6.18.2/kernel/signal.c 2006-11-04 02:33:58.000000000 +0100 > > > >+++ linux-2.6.18.2.new/kernel/signal.c 2006-11-17 15:59:13.000000000 +0100 > > ... > > > >+ sig, t -> pid, t -> uid, t -> gid, t -> comm); > > > > > > Please check line 219 of Documentation/CodingStyle, Section 3.1: Spaces > > > and no space around the '.' and "->" structure member operators. > > New version without the spaces around '->' and a nice 'unlikely' added. > > Signed-off by: Folkert van Heusden <folkert@vanheusden.com> > > --- linux-2.6.18.2/kernel/signal.c 2006-11-04 02:33:58.000000000 +0100 > > +++ linux-2.6.18.2.new/kernel/signal.c 2006-11-17 15:59:13.000000000 +0100 > > @@ -706,6 +706,15 @@ > > struct sigqueue * q = NULL; > > int ret = 0; > > > > + if (unlikely(sig == SIGQUIT || sig == SIGILL || sig == SIGTRAP || > > + sig == SIGABRT || sig == SIGBUS || sig == SIGFPE || > > + sig == SIGSEGV || sig == SIGXCPU || sig == SIGXFSZ || > > + sig == SIGSYS || sig == SIGSTKFLT)) > > + { > > + printk(KERN_WARNING "Sig %d send 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. > > Would turning that into a switch() generate better code. Doubt it: in the worst case you still nee to check for each possibility. Furthermore a.f.a.i.k. with switch you cannot do 'unlinkely()'. Folkert van Heusden -- MultiTail er et flexible tool for a kontrolere Logfiles og commandoer. Med filtrer, farger, sammenforinger, forskeliger ansikter etc. http://www.vanheusden.com/multitail/ ---------------------------------------------------------------------- Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: signals logged / [RFC] log out-of-virtual-memory events 2007-05-20 16:12 ` Folkert van Heusden @ 2007-05-20 20:38 ` Jan Engelhardt 2007-05-20 20:55 ` Folkert van Heusden 0 siblings, 1 reply; 37+ messages in thread From: Jan Engelhardt @ 2007-05-20 20:38 UTC (permalink / raw) To: Folkert van Heusden Cc: Stephen Hemminger, Eric Dumazet, Andi Kleen, Rik van Riel, righiandr, LKML, linux-mm On May 20 2007 18:12, Folkert van Heusden wrote: >> > >> > + if (unlikely(sig == SIGQUIT || sig == SIGILL || sig == SIGTRAP || >> > + sig == SIGABRT || sig == SIGBUS || sig == SIGFPE || >> > + sig == SIGSEGV || sig == SIGXCPU || sig == SIGXFSZ || >> > + sig == SIGSYS || sig == SIGSTKFLT)) >> > + { >> > + printk(KERN_WARNING "Sig %d send 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. >> >> Would turning that into a switch() generate better code. Yes, this time. >Doubt it: in the worst case you still nee to check for each possibility. >Furthermore a.f.a.i.k. with switch you cannot do 'unlinkely()'. With if(), it generates a ton of "CMP, JE" instructions. With switch(), I would assume gcc transforms it into using a jump table (aka "JMP [table+sig]") I tried it: with switch(), gcc transforms this into a bitmap comparison ("MOV eax, 1; SHL eax, sig; TEST eax, 0x830109f8"), which seems even cheaper than a jump table. Jan -- -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: signals logged / [RFC] log out-of-virtual-memory events 2007-05-20 20:38 ` Jan Engelhardt @ 2007-05-20 20:55 ` Folkert van Heusden 2007-05-20 21:14 ` Andi Kleen 0 siblings, 1 reply; 37+ messages in thread From: Folkert van Heusden @ 2007-05-20 20:55 UTC (permalink / raw) To: Jan Engelhardt Cc: Stephen Hemminger, Eric Dumazet, Andi Kleen, Rik van Riel, righiandr, LKML, linux-mm > >> > > >> > + if (unlikely(sig == SIGQUIT || sig == SIGILL || sig == SIGTRAP || > >> > + sig == SIGABRT || sig == SIGBUS || sig == SIGFPE || > >> > + sig == SIGSEGV || sig == SIGXCPU || sig == SIGXFSZ || > >> > + sig == SIGSYS || sig == SIGSTKFLT)) > >> > + { > >> > + printk(KERN_WARNING "Sig %d send 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. > >> Would turning that into a switch() generate better code. > Yes, this time. > > >Doubt it: in the worst case you still nee to check for each possibility. > >Furthermore a.f.a.i.k. with switch you cannot do 'unlinkely()'. > > With if(), it generates a ton of "CMP, JE" instructions. > With switch(), I would assume gcc transforms it into using > a jump table (aka "JMP [table+sig]") > I tried it: with switch(), gcc transforms this into a > bitmap comparison ("MOV eax, 1; SHL eax, sig; TEST eax, 0x830109f8"), > which seems even cheaper than a jump table. Ok, here's the new patch against 2.6.21.1: Signed-off by Folkert van Heusden <folkert@vanheusden.com> --- kernel/signal.c.org 2007-05-20 22:47:13.000000000 +0200 +++ kernel/signal.c 2007-05-20 22:54:17.000000000 +0200 @@ -739,6 +739,25 @@ struct sigqueue * q = NULL; int ret = 0; + /* emit some logging for nasty signals + * especially SIGSEGV and friends aught to be looked at when happening + */ + switch(sig) { + case SIGQUIT: + case SIGILL: + case SIGTRAP: + case SIGABRT: + case SIGBUS: + case SIGFPE: + case SIGSEGV: + case SIGXCPU: + case SIGXFSZ: + case SIGSYS: + case SIGSTKFLT: + printk(KERN_WARNING "Sig %d send 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 -- MultiTail e uno flexible tool per seguire di logfiles e effettuazione di commissioni. Feltrare, provedere da colore, merge, 'diff-view', etc. http://www.vanheusden.com/multitail/ ---------------------------------------------------------------------- Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: signals logged / [RFC] log out-of-virtual-memory events 2007-05-20 20:55 ` Folkert van Heusden @ 2007-05-20 21:14 ` Andi Kleen 2007-05-20 21:20 ` Folkert van Heusden 2007-05-21 10:45 ` Andrea Righi 0 siblings, 2 replies; 37+ messages in thread From: Andi Kleen @ 2007-05-20 21:14 UTC (permalink / raw) To: Folkert van Heusden Cc: Jan Engelhardt, Stephen Hemminger, Eric Dumazet, Rik van Riel, righiandr, LKML, linux-mm > + switch(sig) { > + case SIGQUIT: > + case SIGILL: > + case SIGTRAP: > + case SIGABRT: > + case SIGBUS: > + case SIGFPE: > + case SIGSEGV: > + case SIGXCPU: > + case SIGXFSZ: > + case SIGSYS: > + case SIGSTKFLT: Unconditional? That's definitely a very bad idea. If anything only unhandled signals should be printed this way because some programs use them internally. But I think your list is far too long anyways. -Andi -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: signals logged / [RFC] log out-of-virtual-memory events 2007-05-20 21:14 ` Andi Kleen @ 2007-05-20 21:20 ` Folkert van Heusden 2007-05-20 21:23 ` Folkert van Heusden 2007-05-20 22:24 ` Andi Kleen 2007-05-21 10:45 ` Andrea Righi 1 sibling, 2 replies; 37+ messages in thread From: Folkert van Heusden @ 2007-05-20 21:20 UTC (permalink / raw) To: Andi Kleen Cc: Jan Engelhardt, Stephen Hemminger, Eric Dumazet, Rik van Riel, righiandr, LKML, linux-mm > > + switch(sig) { > > + case SIGQUIT: > > + case SIGILL: > > + case SIGTRAP: > > + case SIGABRT: > > + case SIGBUS: > > + case SIGFPE: > > + case SIGSEGV: > > + case SIGXCPU: > > + case SIGXFSZ: > > + case SIGSYS: > > + case SIGSTKFLT: > > Unconditional? That's definitely a very bad idea. If anything only unhandled > signals should be printed this way because some programs use them internally. Use these signals internally? Afaik these are fatal, stopping the process. So using them internally would be a little tricky. > But I think your list is far too long anyways. So, which ones would you like to have removed then? Folkert van Heusden -- To MultiTail einai ena polymorfiko ergaleio gia ta logfiles kai tin eksodo twn entolwn. Prosferei: filtrarisma, xrwmatismo, sygxwneysi, diaforetikes provoles. http://www.vanheusden.com/multitail/ ---------------------------------------------------------------------- Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: signals logged / [RFC] log out-of-virtual-memory events 2007-05-20 21:20 ` Folkert van Heusden @ 2007-05-20 21:23 ` Folkert van Heusden 2007-05-20 22:24 ` Andi Kleen 1 sibling, 0 replies; 37+ messages in thread From: Folkert van Heusden @ 2007-05-20 21:23 UTC (permalink / raw) To: Andi Kleen Cc: Jan Engelhardt, Stephen Hemminger, Eric Dumazet, Rik van Riel, righiandr, LKML, linux-mm > > > + switch(sig) { > > > + case SIGQUIT: > > > + case SIGILL: > > > + case SIGTRAP: > > > + case SIGABRT: > > > + case SIGBUS: > > > + case SIGFPE: > > > + case SIGSEGV: > > > + case SIGXCPU: > > > + case SIGXFSZ: > > > + case SIGSYS: > > > + case SIGSTKFLT: > > Unconditional? That's definitely a very bad idea. If anything only unhandled > > signals should be printed this way because some programs use them internally. > Use these signals internally? Afaik these are fatal, stopping the > process. So using them internally would be a little tricky. > > But I think your list is far too long anyways. > > So, which ones would you like to have removed then? (and why, of course, to enlighten me: some are educated guesses) Folkert van Heusden -- MultiTail ist eine flexible Applikation um Logfiles und Kommando Eingaben zu uberprufen. Inkl. Filter, Farben, Zusammenfuhren, Ansichten etc. http://www.vanheusden.com/multitail/ ---------------------------------------------------------------------- Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: signals logged / [RFC] log out-of-virtual-memory events 2007-05-20 21:20 ` Folkert van Heusden 2007-05-20 21:23 ` Folkert van Heusden @ 2007-05-20 22:24 ` Andi Kleen 2007-05-20 22:22 ` Jeff Dike 1 sibling, 1 reply; 37+ messages in thread From: Andi Kleen @ 2007-05-20 22:24 UTC (permalink / raw) To: Folkert van Heusden Cc: Andi Kleen, Jan Engelhardt, Stephen Hemminger, Eric Dumazet, Rik van Riel, righiandr, LKML, linux-mm On Sun, May 20, 2007 at 11:20:36PM +0200, Folkert van Heusden wrote: > > > + switch(sig) { > > > + case SIGQUIT: > > > + case SIGILL: > > > + case SIGTRAP: > > > + case SIGABRT: > > > + case SIGBUS: > > > + case SIGFPE: > > > + case SIGSEGV: > > > + case SIGXCPU: > > > + case SIGXFSZ: > > > + case SIGSYS: > > > + case SIGSTKFLT: > > > > Unconditional? That's definitely a very bad idea. If anything only unhandled > > signals should be printed this way because some programs use them internally. > > Use these signals internally? Afaik these are fatal, stopping the > process. So using them internally would be a little tricky. All of them are catchable. > > > But I think your list is far too long anyways. > > So, which ones would you like to have removed then? SIGFPE at least and the accounting signals are dubious too. SIGQUIT can be also relatively common. -Andi -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: signals logged / [RFC] log out-of-virtual-memory events 2007-05-20 22:24 ` Andi Kleen @ 2007-05-20 22:22 ` Jeff Dike 0 siblings, 0 replies; 37+ messages in thread From: Jeff Dike @ 2007-05-20 22:22 UTC (permalink / raw) To: Andi Kleen Cc: Folkert van Heusden, Jan Engelhardt, Stephen Hemminger, Eric Dumazet, Rik van Riel, righiandr, LKML, linux-mm On Mon, May 21, 2007 at 12:24:22AM +0200, Andi Kleen wrote: > > > But I think your list is far too long anyways. > > > > So, which ones would you like to have removed then? > > SIGFPE at least and the accounting signals are dubious too. SIGQUIT can > be also relatively common. And SIGSEGV and SIGBUS - UML catches these internally and handles them. Jeff -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: signals logged / [RFC] log out-of-virtual-memory events 2007-05-20 21:14 ` Andi Kleen 2007-05-20 21:20 ` Folkert van Heusden @ 2007-05-21 10:45 ` Andrea Righi 2007-05-21 11:04 ` Folkert van Heusden 1 sibling, 1 reply; 37+ messages in thread From: Andrea Righi @ 2007-05-21 10:45 UTC (permalink / raw) To: Folkert van Heusden Cc: Andi Kleen, Jan Engelhardt, Stephen Hemminger, Eric Dumazet, Rik van Riel, LKML, linux-mm Andi Kleen wrote: >> + switch(sig) { >> + case SIGQUIT: >> + case SIGILL: >> + case SIGTRAP: >> + case SIGABRT: >> + case SIGBUS: >> + case SIGFPE: >> + case SIGSEGV: >> + case SIGXCPU: >> + case SIGXFSZ: >> + case SIGSYS: >> + case SIGSTKFLT: > > Unconditional? That's definitely a very bad idea. If anything only unhandled > signals should be printed this way because some programs use them internally. > But I think your list is far too long anyways. > > -Andi > Maybe you could use somthing similar to unhandled_signal() in arch/x86_64/mm/fault.c, but I agree that the list seems a bit too long... -Andrea -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: signals logged / [RFC] log out-of-virtual-memory events 2007-05-21 10:45 ` Andrea Righi @ 2007-05-21 11:04 ` Folkert van Heusden 2007-05-21 12:30 ` Jan Engelhardt 0 siblings, 1 reply; 37+ messages in thread From: Folkert van Heusden @ 2007-05-21 11:04 UTC (permalink / raw) To: Andrea Righi Cc: Andi Kleen, Jan Engelhardt, Stephen Hemminger, Eric Dumazet, Rik van Riel, LKML, linux-mm > >> + switch(sig) { > >> + case SIGQUIT: ... > >> + case SIGSTKFLT: > > > > Unconditional? That's definitely a very bad idea. If anything only unhandled > > signals should be printed this way because some programs use them internally. > > But I think your list is far too long anyways. > > Maybe you could use somthing similar to unhandled_signal() in > arch/x86_64/mm/fault.c, but I agree that the list seems a bit too long... What about the following enhancement: I check with sig_fatal if it would kill the process and only then emit a message. So when an application takes care itself of handling it nothing is printed. Signed-off by: Folkert van Heusden <folkert@vanheusden.com> --- kernel/signal.c.org 2007-05-20 22:47:13.000000000 +0200 +++ kernel/signal.c 2007-05-21 12:59:52.000000000 +0200 @@ -739,6 +739,8 @@ struct sigqueue * q = NULL; int ret = 0; + /* emit some logging for unhandled signals + */ + if (sig_fatal(t, sig)) + { + printk(KERN_WARNING "Sig %d send 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. of course, this can also be limited to only the interesting signals: Signed-off by: Folkert van Heusden <folkert@vanheusden.com> --- kernel/signal.c.org 2007-05-20 22:47:13.000000000 +0200 +++ kernel/signal.c 2007-05-21 12:59:52.000000000 +0200 @@ -739,6 +739,28 @@ struct sigqueue * q = NULL; int ret = 0; + /* emit some logging for nasty signals + * especially SIGSEGV and friends aught to be looked at when happening + */ + switch(sig) { + case SIGQUIT: + case SIGILL: + case SIGTRAP: + case SIGABRT: + case SIGBUS: + case SIGFPE: + case SIGSEGV: + case SIGXCPU: + case SIGXFSZ: + case SIGSYS: + case SIGSTKFLT: + if (sig_fatal(t, sig)) + { + printk(KERN_WARNING "Sig %d send 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 -- Multitail - gibkaja utilita po sledovaniju log-fajlov i vyvoda kommand. Fil'trovanie, raskra?ivanie, slijanie, vizual'noe sravnenie, i t.d. http://www.vanheusden.com/multitail/ ---------------------------------------------------------------------- Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: signals logged / [RFC] log out-of-virtual-memory events 2007-05-21 11:04 ` Folkert van Heusden @ 2007-05-21 12:30 ` Jan Engelhardt 2007-05-21 12:47 ` Folkert van Heusden 0 siblings, 1 reply; 37+ messages in thread From: Jan Engelhardt @ 2007-05-21 12:30 UTC (permalink / raw) To: Folkert van Heusden Cc: Andrea Righi, Andi Kleen, Stephen Hemminger, Eric Dumazet, Rik van Riel, LKML, linux-mm On May 21 2007 13:04, Folkert van Heusden wrote: > >What about the following enhancement: I check with sig_fatal if it would >kill the process and only then emit a message. So when an application >takes care itself of handling it nothing is printed. >+ /* emit some logging for unhandled signals >+ */ >+ if (sig_fatal(t, sig)) Not unhandled_signal()? >+ { 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); >+ } >+ > /* > * fast-pathed signals for kernel-internal things like SIGSTOP > * or SIGKILL. > >of course, this can also be limited to only the interesting signals: > >Signed-off by: Folkert van Heusden <folkert@vanheusden.com> > >--- kernel/signal.c.org 2007-05-20 22:47:13.000000000 +0200 >+++ kernel/signal.c 2007-05-21 12:59:52.000000000 +0200 >@@ -739,6 +739,28 @@ > struct sigqueue * q = NULL; > int ret = 0; > >+ /* emit some logging for nasty signals >+ * especially SIGSEGV and friends aught to be looked at when happening >+ */ >+ switch(sig) { >+ case SIGQUIT: >+ case SIGILL: >+ case SIGTRAP: >+ case SIGABRT: >+ case SIGBUS: >+ case SIGFPE: >+ case SIGSEGV: >+ case SIGXCPU: >+ case SIGXFSZ: >+ case SIGSYS: >+ case SIGSTKFLT: >+ if (sig_fatal(t, sig)) >+ { >+ printk(KERN_WARNING "Sig %d send 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. > Jan -- -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: signals logged / [RFC] log out-of-virtual-memory events 2007-05-21 12:30 ` Jan Engelhardt @ 2007-05-21 12:47 ` Folkert van Heusden 2007-05-21 13:58 ` Andrea Righi 2007-05-23 18:00 ` Satyam Sharma 0 siblings, 2 replies; 37+ messages in thread From: Folkert van Heusden @ 2007-05-21 12:47 UTC (permalink / raw) To: Jan Engelhardt Cc: Andrea Righi, Andi Kleen, Stephen Hemminger, Eric Dumazet, Rik van Riel, LKML, linux-mm > >What about the following enhancement: I check with sig_fatal if it would > >kill the process and only then emit a message. So when an application > >takes care itself of handling it nothing is printed. > >+ /* emit some logging for unhandled signals > >+ */ > >+ if (sig_fatal(t, sig)) > Not unhandled_signal()? Can we already use that one in send_signal? As the signal needs to be send first I think before we know if it was handled or not? sig_fatal checks if the handler is set to default - which is it is not taken care of. > >+ { > 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); Description: This patch adds code to the signal-sender making it log a message when an unhandled fatal signal will be delivered. Signed-off by: Folkert van Heusden <folkert@vanheusden.com> --- 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_WARNING "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 -- MultiTail e uno flexible tool per seguire di logfiles e effettuazione di commissioni. Feltrare, provedere da colore, merge, 'diff-view', etc. http://www.vanheusden.com/multitail/ ---------------------------------------------------------------------- Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: signals logged / [RFC] log out-of-virtual-memory events 2007-05-21 12:47 ` Folkert van Heusden @ 2007-05-21 13:58 ` Andrea Righi 2007-05-21 18:59 ` Folkert van Heusden 2007-05-23 18:00 ` Satyam Sharma 1 sibling, 1 reply; 37+ messages in thread From: Andrea Righi @ 2007-05-21 13:58 UTC (permalink / raw) To: Folkert van Heusden Cc: Jan Engelhardt, Andi Kleen, Stephen Hemminger, Eric Dumazet, Rik van Riel, LKML, linux-mm Folkert van Heusden wrote: >>> What about the following enhancement: I check with sig_fatal if it would >>> kill the process and only then emit a message. So when an application >>> takes care itself of handling it nothing is printed. >>> + /* emit some logging for unhandled signals >>> + */ >>> + if (sig_fatal(t, sig)) >> Not unhandled_signal()? > > Can we already use that one in send_signal? As the signal needs to be > send first I think before we know if it was handled or not? sig_fatal > checks if the handler is set to default - which is it is not taken care > of. What about ptrace()'d processes? I don't think we should log signals for them... -Andrea -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: signals logged / [RFC] log out-of-virtual-memory events 2007-05-21 13:58 ` Andrea Righi @ 2007-05-21 18:59 ` Folkert van Heusden 2007-05-21 22:15 ` Andrea Righi 0 siblings, 1 reply; 37+ messages in thread From: Folkert van Heusden @ 2007-05-21 18:59 UTC (permalink / raw) To: Andrea Righi Cc: Jan Engelhardt, Andi Kleen, Stephen Hemminger, Eric Dumazet, Rik van Riel, LKML, linux-mm > >>> What about the following enhancement: I check with sig_fatal if it would > >>> kill the process and only then emit a message. So when an application > >>> takes care itself of handling it nothing is printed. > >>> + /* emit some logging for unhandled signals > >>> + */ > >>> + if (sig_fatal(t, sig)) > >> Not unhandled_signal()? > > Can we already use that one in send_signal? As the signal needs to be > > send first I think before we know if it was handled or not? sig_fatal > > checks if the handler is set to default - which is it is not taken care > > of. > What about ptrace()'d processes? I don't think we should log signals for them... Why not? Folkert van Heusden -- MultiTail es una herramienta flexibele para consiguir archivos de log, y para ejecutar ordenes. Filtrar, anadir colores, merger y vista de las differencias. http://www.vanheusden.com/multitail/ ---------------------------------------------------------------------- Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: signals logged / [RFC] log out-of-virtual-memory events 2007-05-21 18:59 ` Folkert van Heusden @ 2007-05-21 22:15 ` Andrea Righi 0 siblings, 0 replies; 37+ messages in thread From: Andrea Righi @ 2007-05-21 22:15 UTC (permalink / raw) To: Folkert van Heusden Cc: Jan Engelhardt, Andi Kleen, Stephen Hemminger, Eric Dumazet, Rik van Riel, LKML, linux-mm Folkert van Heusden wrote: >>>>> What about the following enhancement: I check with sig_fatal if it would >>>>> kill the process and only then emit a message. So when an application >>>>> takes care itself of handling it nothing is printed. >>>>> + /* emit some logging for unhandled signals >>>>> + */ >>>>> + if (sig_fatal(t, sig)) >>>> Not unhandled_signal()? >>> Can we already use that one in send_signal? As the signal needs to be >>> send first I think before we know if it was handled or not? sig_fatal >>> checks if the handler is set to default - which is it is not taken care >>> of. >> What about ptrace()'d processes? I don't think we should log signals for them... > > Why not? Maybe sometimes it's useful, maybe not, but I suppose that usually only the controlling process should care about the critical signals received by the controlled process. I simply don't think it should be a system issue. For example I wouldn't like to have a lot of messages in the kernel logs just because I'm debugging some segfaulting programs with gdb. -Andrea -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: signals logged / [RFC] log out-of-virtual-memory events 2007-05-21 12:47 ` Folkert van Heusden 2007-05-21 13:58 ` Andrea Righi @ 2007-05-23 18:00 ` Satyam Sharma 2007-05-23 18:45 ` Folkert van Heusden 1 sibling, 1 reply; 37+ messages in thread From: Satyam Sharma @ 2007-05-23 18:00 UTC (permalink / raw) To: Folkert van Heusden Cc: Jan Engelhardt, Andrea Righi, Andi Kleen, Stephen Hemminger, Eric Dumazet, Rik van Riel, LKML, linux-mm On 5/21/07, Folkert van Heusden <folkert@vanheusden.com> wrote: > > >What about the following enhancement: I check with sig_fatal if it would > > >kill the process and only then emit a message. So when an application > > >takes care itself of handling it nothing is printed. > > >+ /* emit some logging for unhandled signals > > >+ */ > > >+ if (sig_fatal(t, sig)) > > Not unhandled_signal()? > > Can we already use that one in send_signal? As the signal needs to be > send first I think before we know if it was handled or not? sig_fatal > checks if the handler is set to default - which is it is not taken care > of. > > > >+ { > > 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); > > > Description: > This patch adds code to the signal-sender making it log a message when > an unhandled fatal signal will be delivered. 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. -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: signals logged / [RFC] log out-of-virtual-memory events 2007-05-23 18:00 ` Satyam Sharma @ 2007-05-23 18:45 ` Folkert van Heusden 2007-06-10 19:53 ` Folkert van Heusden 0 siblings, 1 reply; 37+ messages in thread From: Folkert van Heusden @ 2007-05-23 18:45 UTC (permalink / raw) To: Satyam Sharma Cc: Jan Engelhardt, Andrea Righi, Andi Kleen, Stephen Hemminger, Eric Dumazet, Rik van Riel, LKML, linux-mm > >> >+ { > >> 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 <folkert@vanheusden.com --- 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, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: signals logged / [RFC] log out-of-virtual-memory events 2007-05-23 18:45 ` Folkert van Heusden @ 2007-06-10 19:53 ` Folkert van Heusden 2007-06-10 20:06 ` Jiri Kosina 0 siblings, 1 reply; 37+ messages in thread From: Folkert van Heusden @ 2007-06-10 19:53 UTC (permalink / raw) To: Satyam Sharma Cc: Jan Engelhardt, Andrea Righi, Andi Kleen, Stephen Hemminger, Eric Dumazet, Rik van Riel, LKML, linux-mm > > >> >+ { > > >> 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. New version. This one also informs the user about the sende pid/uid of the signal (when applicable). Signed-of by: Folkert van Heusden <folkert@vanheusden.com --- linux/kernel/signal.c.org 2007-05-20 22:47:13.000000000 +0200 +++ linux/kernel/signal.c 2007-06-10 00:21:31.000000000 +0200 @@ -739,6 +739,18 @@ struct sigqueue * q = NULL; int ret = 0; + /* unhandled fatal signals are logged */ + if (sig_fatal(t, sig)) { + if (is_si_special(info)) + printk(KERN_INFO "Sig %d sent to %d owned by %d.%d (%s)\n", + sig, t->pid, t->uid, t->gid, t->comm); + else + printk(KERN_INFO "Sig %d sent to %d owned by %d.%d (%s), sent by pid %d, uid %d\n", + sig, t->pid, t->uid, t->gid, t->comm, + info -> _sifields._kill._pid, + info -> _sifields._kill._uid); + } + /* * fast-pathed signals for kernel-internal things like SIGSTOP * or SIGKILL. Folkert van Heusden -- Feeling generous? -> http://www.vanheusden.com/wishlist.php ---------------------------------------------------------------------- Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: signals logged / [RFC] log out-of-virtual-memory events 2007-06-10 19:53 ` Folkert van Heusden @ 2007-06-10 20:06 ` Jiri Kosina 2007-06-10 20:37 ` Jan Engelhardt 0 siblings, 1 reply; 37+ messages in thread From: Jiri Kosina @ 2007-06-10 20:06 UTC (permalink / raw) To: Folkert van Heusden Cc: Satyam Sharma, Jan Engelhardt, Andrea Righi, Andi Kleen, Stephen Hemminger, Eric Dumazet, Rik van Riel, LKML, linux-mm On Sun, 10 Jun 2007, Folkert van Heusden wrote: > Signed-of by: Folkert van Heusden <folkert@vanheusden.com This looks broken BTW. > + printk(KERN_INFO "Sig %d sent to %d owned by %d.%d (%s), sent by pid %d, uid %d\n", > + sig, t->pid, t->uid, t->gid, t->comm, > + info -> _sifields._kill._pid, > + info -> _sifields._kill._uid); Am I the only one whose eyes are hurt by these spaces? -- Jiri Kosina -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: signals logged / [RFC] log out-of-virtual-memory events 2007-06-10 20:06 ` Jiri Kosina @ 2007-06-10 20:37 ` Jan Engelhardt 0 siblings, 0 replies; 37+ messages in thread From: Jan Engelhardt @ 2007-06-10 20:37 UTC (permalink / raw) To: Jiri Kosina Cc: Folkert van Heusden, Satyam Sharma, Andrea Righi, Andi Kleen, Stephen Hemminger, Eric Dumazet, Rik van Riel, LKML, linux-mm On Jun 10 2007 22:06, Jiri Kosina wrote: >On Sun, 10 Jun 2007, Folkert van Heusden wrote: > >> Signed-of by: Folkert van Heusden <folkert@vanheusden.com > >This looks broken BTW. > >> + printk(KERN_INFO "Sig %d sent to %d owned by %d.%d (%s), sent by pid %d, uid %d\n", >> + sig, t->pid, t->uid, t->gid, t->comm, >> + info -> _sifields._kill._pid, >> + info -> _sifields._kill._uid); > >Am I the only one whose eyes are hurt by these spaces? They were discussed before already. And they were fixed up (t->uid...). And now new ones got added. Ergh. Jan -- -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: [RFC] log out-of-virtual-memory events 2007-05-17 18:22 ` Rik van Riel 2007-05-18 6:28 ` signals logged / " Jan Engelhardt @ 2007-05-18 7:50 ` Andrea Righi 2007-05-18 9:16 ` Robin Holt 2007-05-20 0:15 ` Folkert van Heusden 1 sibling, 2 replies; 37+ messages in thread From: Andrea Righi @ 2007-05-18 7:50 UTC (permalink / raw) To: Rik van Riel; +Cc: LKML, linux-mm Rik van Riel wrote: > Andrea Righi wrote: >> I'm looking for a way to keep track of the processes that fail to >> allocate new >> virtual memory. What do you think about the following approach >> (untested)? > > Looks like an easy way for users to spam syslogd over and > over and over again. > > At the very least, shouldn't this be dependant on print_fatal_signals? > Anyway, with print-fatal-signals enabled a user could spam syslogd too, simply with a (char *)0 = 0 program, but we could always identify the spam attempts logging the process uid... In any case, I agree, it should depend on that patch... What about adding a simple msleep_interruptible(SOME_MSECS) at the end of log_vm_enomem() or, at least, a might_sleep() to limit the potential spam/second rate? -Andrea -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: [RFC] log out-of-virtual-memory events 2007-05-18 7:50 ` Andrea Righi @ 2007-05-18 9:16 ` Robin Holt 2007-05-18 15:55 ` Andrea Righi 2007-05-20 0:15 ` Folkert van Heusden 1 sibling, 1 reply; 37+ messages in thread From: Robin Holt @ 2007-05-18 9:16 UTC (permalink / raw) To: Andrea Righi; +Cc: Rik van Riel, LKML, linux-mm On Fri, May 18, 2007 at 09:50:03AM +0200, Andrea Righi wrote: > Rik van Riel wrote: > > Andrea Righi wrote: > >> I'm looking for a way to keep track of the processes that fail to > >> allocate new > >> virtual memory. What do you think about the following approach > >> (untested)? > > > > Looks like an easy way for users to spam syslogd over and > > over and over again. > > > > At the very least, shouldn't this be dependant on print_fatal_signals? > > > > Anyway, with print-fatal-signals enabled a user could spam syslogd too, simply > with a (char *)0 = 0 program, but we could always identify the spam attempts > logging the process uid... > > In any case, I agree, it should depend on that patch... > > What about adding a simple msleep_interruptible(SOME_MSECS) at the end of > log_vm_enomem() or, at least, a might_sleep() to limit the potential spam/second > rate? An msleep will slow down this process, but do nothing about slowing down the amount of logging. Simply fork a few more processes and all you are doing with msleep is polluting the pid space. What about a throttling similar to what ia64 does for floating point assist faults (handle_fpu_swa()). There is a thread flag to not log the events at all. It is rate throttled globally, but uses per cpu variables for early exits. This algorithm scaled well to a thousand cpus. I think this may be a good fit. Good Luck, Robin -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: [RFC] log out-of-virtual-memory events 2007-05-18 9:16 ` Robin Holt @ 2007-05-18 15:55 ` Andrea Righi 2007-05-18 16:05 ` Andrea Righi 0 siblings, 1 reply; 37+ messages in thread From: Andrea Righi @ 2007-05-18 15:55 UTC (permalink / raw) To: Robin Holt; +Cc: Rik van Riel, LKML, linux-mm, Ingo Molnar Robin Holt wrote: > On Fri, May 18, 2007 at 09:50:03AM +0200, Andrea Righi wrote: >> Rik van Riel wrote: >>> Andrea Righi wrote: >>>> I'm looking for a way to keep track of the processes that fail to >>>> allocate new >>>> virtual memory. What do you think about the following approach >>>> (untested)? >>> Looks like an easy way for users to spam syslogd over and >>> over and over again. >>> >>> At the very least, shouldn't this be dependant on print_fatal_signals? >>> >> Anyway, with print-fatal-signals enabled a user could spam syslogd too, simply >> with a (char *)0 = 0 program, but we could always identify the spam attempts >> logging the process uid... >> >> In any case, I agree, it should depend on that patch... >> >> What about adding a simple msleep_interruptible(SOME_MSECS) at the end of >> log_vm_enomem() or, at least, a might_sleep() to limit the potential spam/second >> rate? > > An msleep will slow down this process, but do nothing about slowing > down the amount of logging. Simply fork a few more processes and all > you are doing with msleep is polluting the pid space. > Very true. > What about a throttling similar to what ia64 does for floating point > assist faults (handle_fpu_swa()). There is a thread flag to not log > the events at all. It is rate throttled globally, but uses per cpu > variables for early exits. This algorithm scaled well to a thousand > cpus. Actually using printk_ratelimit() should be enough... BTW print_fatal_signals() should use it too. -Andrea --- Signed-off-by: Andrea Righi <a.righi@cineca.it> diff -urpN linux-2.6.21/mm/mmap.c linux-2.6.21-vm-log-enomem/mm/mmap.c --- linux-2.6.21/mm/mmap.c 2007-04-26 05:08:32.000000000 +0200 +++ linux-2.6.21-vm-log-enomem/mm/mmap.c 2007-05-18 17:17:32.000000000 +0200 @@ -77,6 +77,29 @@ int sysctl_max_map_count __read_mostly = atomic_t vm_committed_space = ATOMIC_INIT(0); /* + * Print current process informations when it fails to allocate new virtual + * memory. + */ +static inline void log_vm_enomem(void) +{ + unsigned long total_vm = 0; + struct mm_struct *mm; + + if (unlikely(!printk_ratelimit())) + return; + + task_lock(current); + mm = current->mm; + if (mm) + total_vm = mm->total_vm; + task_unlock(current); + + printk(KERN_INFO + "out of virtual memory for process %d (%s): total_vm=%lu, uid=%d\n", + current->pid, current->comm, total_vm, current->uid); +} + +/* * Check that a process has enough memory to allocate a new virtual * mapping. 0 means there is enough memory for the allocation to * succeed and -ENOMEM implies there is not. @@ -175,6 +198,7 @@ int __vm_enough_memory(long pages, int c return 0; error: vm_unacct_memory(pages); + log_vm_enomem(); return -ENOMEM; } -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: [RFC] log out-of-virtual-memory events 2007-05-18 15:55 ` Andrea Righi @ 2007-05-18 16:05 ` Andrea Righi 0 siblings, 0 replies; 37+ messages in thread From: Andrea Righi @ 2007-05-18 16:05 UTC (permalink / raw) To: Robin Holt; +Cc: Rik van Riel, LKML, linux-mm, Ingo Molnar, Andrew Morton Andrea Righi wrote: > Robin Holt wrote: >> On Fri, May 18, 2007 at 09:50:03AM +0200, Andrea Righi wrote: >>> Rik van Riel wrote: >>>> Andrea Righi wrote: >>>>> I'm looking for a way to keep track of the processes that fail to >>>>> allocate new >>>>> virtual memory. What do you think about the following approach >>>>> (untested)? >>>> Looks like an easy way for users to spam syslogd over and >>>> over and over again. >>>> >>>> At the very least, shouldn't this be dependant on print_fatal_signals? >>>> >>> Anyway, with print-fatal-signals enabled a user could spam syslogd too, simply >>> with a (char *)0 = 0 program, but we could always identify the spam attempts >>> logging the process uid... >>> >>> In any case, I agree, it should depend on that patch... >>> >>> What about adding a simple msleep_interruptible(SOME_MSECS) at the end of >>> log_vm_enomem() or, at least, a might_sleep() to limit the potential spam/second >>> rate? >> An msleep will slow down this process, but do nothing about slowing >> down the amount of logging. Simply fork a few more processes and all >> you are doing with msleep is polluting the pid space. >> > > Very true. > >> What about a throttling similar to what ia64 does for floating point >> assist faults (handle_fpu_swa()). There is a thread flag to not log >> the events at all. It is rate throttled globally, but uses per cpu >> variables for early exits. This algorithm scaled well to a thousand >> cpus. > > Actually using printk_ratelimit() should be enough... BTW print_fatal_signals() > should use it too. > I mean, something like this... --- Limit the rate of the printk()s in print_fatal_signal() to avoid potential DoS problems. Signed-off-by: Andrea Righi <a.righi@cineca.it> diff -urpN linux-2.6.22-rc1-mm1/kernel/signal.c linux-2.6.22-rc1-mm1-limit-print_fatal_signals-rate/kernel/signal.c --- linux-2.6.22-rc1-mm1/kernel/signal.c 2007-05-18 17:48:55.000000000 +0200 +++ linux-2.6.22-rc1-mm1-limit-print_fatal_signals-rate/kernel/signal.c 2007-05-18 17:58:13.000000000 +0200 @@ -790,6 +790,9 @@ static void print_vmas(void) static void print_fatal_signal(struct pt_regs *regs, int signr) { + if (unlikely(!printk_ratelimit())) + return; + printk("%s/%d: potentially unexpected fatal signal %d.\n", current->comm, current->pid, signr); -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
* Re: [RFC] log out-of-virtual-memory events 2007-05-18 7:50 ` Andrea Righi 2007-05-18 9:16 ` Robin Holt @ 2007-05-20 0:15 ` Folkert van Heusden 1 sibling, 0 replies; 37+ messages in thread From: Folkert van Heusden @ 2007-05-20 0:15 UTC (permalink / raw) To: Andrea Righi; +Cc: Rik van Riel, LKML, linux-mm > >> I'm looking for a way to keep track of the processes that fail to > >> allocate new > >> virtual memory. What do you think about the following approach > >> (untested)? > > Looks like an easy way for users to spam syslogd over and > > over and over again. > > At the very least, shouldn't this be dependant on print_fatal_signals? > > Anyway, with print-fatal-signals enabled a user could spam syslogd too, simply > with a (char *)0 = 0 program, but we could always identify the spam attempts > logging the process uid... Yeah well it's all captured by syslogd/klogd and written to a file and diskspace is cheap. Folkert van Heusden -- Feeling generous? -> http://www.vanheusden.com/wishlist.php ---------------------------------------------------------------------- Phone: +31-6-41278122, PGP-key: 1F28D8AE, www.vanheusden.com -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a> ^ permalink raw reply [flat|nested] 37+ messages in thread
end of thread, other threads:[~2007-06-10 20:37 UTC | newest] Thread overview: 37+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2007-05-17 16:24 [RFC] log out-of-virtual-memory events Andrea Righi 2007-05-17 18:22 ` Rik van Riel 2007-05-18 6:28 ` signals logged / " Jan Engelhardt 2007-05-18 11:47 ` Andi Kleen 2007-05-19 7:46 ` Jan Engelhardt 2007-05-19 9:35 ` Andrea Righi 2007-05-19 10:06 ` Jan Engelhardt 2007-05-19 10:16 ` Andrea Righi 2007-05-20 0:14 ` Folkert van Heusden 2007-05-20 3:55 ` Eric Dumazet 2007-05-20 11:21 ` Folkert van Heusden 2007-05-20 16:08 ` Stephen Hemminger 2007-05-20 16:12 ` Folkert van Heusden 2007-05-20 20:38 ` Jan Engelhardt 2007-05-20 20:55 ` Folkert van Heusden 2007-05-20 21:14 ` Andi Kleen 2007-05-20 21:20 ` Folkert van Heusden 2007-05-20 21:23 ` Folkert van Heusden 2007-05-20 22:24 ` Andi Kleen 2007-05-20 22:22 ` Jeff Dike 2007-05-21 10:45 ` Andrea Righi 2007-05-21 11:04 ` Folkert van Heusden 2007-05-21 12:30 ` Jan Engelhardt 2007-05-21 12:47 ` Folkert van Heusden 2007-05-21 13:58 ` Andrea Righi 2007-05-21 18:59 ` Folkert van Heusden 2007-05-21 22:15 ` Andrea Righi 2007-05-23 18:00 ` Satyam Sharma 2007-05-23 18:45 ` Folkert van Heusden 2007-06-10 19:53 ` Folkert van Heusden 2007-06-10 20:06 ` Jiri Kosina 2007-06-10 20:37 ` Jan Engelhardt 2007-05-18 7:50 ` Andrea Righi 2007-05-18 9:16 ` Robin Holt 2007-05-18 15:55 ` Andrea Righi 2007-05-18 16:05 ` Andrea Righi 2007-05-20 0:15 ` Folkert van Heusden
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox