diff options
author | Dan Aloni <da-x@monatomic.org> | 2007-07-15 23:38:23 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-07-16 09:05:36 -0700 |
commit | b49ad484c54116862d717ffafcab1c9a46600b48 (patch) | |
tree | d081db8e0026022d13cc08a6c594c9471c74e1d4 | |
parent | 6193a2ff180920f84ee06977165ebf32431fc2d2 (diff) |
mm/page_alloc.c: lower printk severity
Signed-off-by: Dan Aloni <da-x@monatomic.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | mm/page_alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c index fe5ea6b7b7f5..297efcf05ba4 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c @@ -3605,7 +3605,7 @@ void *__init alloc_large_system_hash(const char *tablename, if (!table) panic("Failed to allocate %s hash table\n", tablename); - printk("%s hash table entries: %d (order: %d, %lu bytes)\n", + printk(KERN_INFO "%s hash table entries: %d (order: %d, %lu bytes)\n", tablename, (1U << log2qty), ilog2(size) - PAGE_SHIFT, |