aboutsummaryrefslogtreecommitdiffstats
path: root/mm
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2006-02-01 03:05:51 -0800
committerLinus Torvalds <torvalds@g5.osdl.org>2006-02-01 08:53:18 -0800
commitb958f7d9f35bfb61625f201cd92a3fc39504af7a (patch)
tree57668e6d26da9a66c98e5b0f0b1f85903cede63f /mm
parent343e0d7a93951e35065fdb5e3dd61aece0ec6b3c (diff)
downloadlinux-b958f7d9f35bfb61625f201cd92a3fc39504af7a.tar.gz
[PATCH] dump_stack() in oom handler
Sometimes it's nice to know who's calling. 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.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/mm/oom_kill.c b/mm/oom_kill.c
index 14bd4ec7959736..b05ab8f2a56229 100644
--- a/mm/oom_kill.c
+++ b/mm/oom_kill.c
@@ -271,6 +271,7 @@ void out_of_memory(gfp_t gfp_mask, int order)
if (printk_ratelimit()) {
printk("oom-killer: gfp_mask=0x%x, order=%d\n",
gfp_mask, order);
+ dump_stack();
show_mem();
}