aboutsummaryrefslogtreecommitdiffstats
path: root/mm/page_alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'mm/page_alloc.c')
-rw-r--r--mm/page_alloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 9536017108ec..2a362c52fdf4 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -5198,9 +5198,9 @@ void *__init alloc_large_system_hash(const char *tablename,
5198 if (!table) 5198 if (!table)
5199 panic("Failed to allocate %s hash table\n", tablename); 5199 panic("Failed to allocate %s hash table\n", tablename);
5200 5200
5201 printk(KERN_INFO "%s hash table entries: %d (order: %d, %lu bytes)\n", 5201 printk(KERN_INFO "%s hash table entries: %ld (order: %d, %lu bytes)\n",
5202 tablename, 5202 tablename,
5203 (1U << log2qty), 5203 (1UL << log2qty),
5204 ilog2(size) - PAGE_SHIFT, 5204 ilog2(size) - PAGE_SHIFT,
5205 size); 5205 size);
5206 5206