aboutsummaryrefslogtreecommitdiffstats
path: root/mm
diff options
context:
space:
mode:
authorNick Piggin <npiggin@suse.de>2006-09-26 02:31:32 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2006-09-26 11:48:49 -0400
commitb72f160443cb78b2f8addae6e331d2adaa70f869 (patch)
tree3321d797b286aba5f16f83db07d0d3fe93993e73 /mm
parent5081dde33f7a61d28d9b185cc386f12cb837c7a4 (diff)
[PATCH] oom: more printk
Print the name of the task invoking the OOM killer. Could make debugging easier. Signed-off-by: Nick Piggin <npiggin@suse.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'mm')
-rw-r--r--mm/oom_kill.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/mm/oom_kill.c b/mm/oom_kill.c
index 12cd4735dc29..c5e384000585 100644
--- a/mm/oom_kill.c
+++ b/mm/oom_kill.c
@@ -381,8 +381,9 @@ void out_of_memory(struct zonelist *zonelist, gfp_t gfp_mask, int order)
381 return; 381 return;
382 382
383 if (printk_ratelimit()) { 383 if (printk_ratelimit()) {
384 printk("oom-killer: gfp_mask=0x%x, order=%d\n", 384 printk(KERN_WARNING "%s invoked oom-killer: "
385 gfp_mask, order); 385 "gfp_mask=0x%x, order=%d, oomkilladj=%d\n",
386 current->comm, gfp_mask, order, current->oomkilladj);
386 dump_stack(); 387 dump_stack();
387 show_mem(); 388 show_mem();
388 } 389 }