summaryrefslogtreecommitdiff
path: root/mm
diff options
context:
space:
mode:
authorHugh Dickins <hugh@veritas.com>2006-01-11 12:17:18 -0800
committerLinus Torvalds <torvalds@g5.osdl.org>2006-01-11 18:42:08 -0800
commit7365f3d169a1eae00e713c1a4eea90e86415dcc5 (patch)
tree2071690e80631e38a732657e5debb83b0eedc12a /mm
parent45ed344cc7b6456856b4ae5e3d81cdb18b98f8ad (diff)
downloadlinux-3.10-7365f3d169a1eae00e713c1a4eea90e86415dcc5.tar.gz
linux-3.10-7365f3d169a1eae00e713c1a4eea90e86415dcc5.tar.bz2
linux-3.10-7365f3d169a1eae00e713c1a4eea90e86415dcc5.zip
[PATCH] Restore KERN_EMERG to each line printed by bad_page
Signed-off-by: Hugh Dickins <hugh@veritas.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'mm')
-rw-r--r--mm/page_alloc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 8e363536e2d..ce991b173aa 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -137,9 +137,9 @@ static inline int bad_range(struct zone *zone, struct page *page)
static void bad_page(struct page *page)
{
printk(KERN_EMERG "Bad page state in process '%s'\n"
- "page:%p flags:0x%0*lx mapping:%p mapcount:%d count:%d\n"
- "Trying to fix it up, but a reboot is needed\n"
- "Backtrace:\n",
+ KERN_EMERG "page:%p flags:0x%0*lx mapping:%p mapcount:%d count:%d\n"
+ KERN_EMERG "Trying to fix it up, but a reboot is needed\n"
+ KERN_EMERG "Backtrace:\n",
current->comm, page, (int)(2*sizeof(unsigned long)),
(unsigned long)page->flags, page->mapping,
page_mapcount(page), page_count(page));