aboutsummaryrefslogtreecommitdiffstats
path: root/mm/page_alloc.c
diff options
context:
space:
mode:
authorJanet Morgan <janetmor@us.ibm.com>2005-06-21 20:14:56 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-06-21 21:46:17 -0400
commit578c2fd6a7f378434655e5c480e23152a3994404 (patch)
tree3a6408c416e3825cd17e33ac776425a52b743adc /mm/page_alloc.c
parentc2f29ea111e3344ed48257c2a142c3db514e1529 (diff)
[PATCH] add OOM debug
This patch provides more debug info when the system is OOM. It displays memory stats (basically sysrq-m info) from __alloc_pages() when page allocation fails and during OOM kill. Thanks to Dave Jones for coming up with the idea. Signed-off-by: Janet Morgan <janetmor@us.ibm.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'mm/page_alloc.c')
-rw-r--r--mm/page_alloc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 10446a646374..be05d17bd7df 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -935,6 +935,7 @@ nopage:
935 " order:%d, mode:0x%x\n", 935 " order:%d, mode:0x%x\n",
936 p->comm, order, gfp_mask); 936 p->comm, order, gfp_mask);
937 dump_stack(); 937 dump_stack();
938 show_mem();
938 } 939 }
939 return NULL; 940 return NULL;
940got_pg: 941got_pg: