|
@@ -5182,9 +5182,9 @@ void *__init alloc_large_system_hash(const char *tablename,
|
|
if (!table)
|
|
if (!table)
|
|
panic("Failed to allocate %s hash table\n", tablename);
|
|
panic("Failed to allocate %s hash table\n", tablename);
|
|
|
|
|
|
- printk(KERN_INFO "%s hash table entries: %d (order: %d, %lu bytes)\n",
|
|
|
|
|
|
+ printk(KERN_INFO "%s hash table entries: %ld (order: %d, %lu bytes)\n",
|
|
tablename,
|
|
tablename,
|
|
- (1U << log2qty),
|
|
|
|
|
|
+ (1UL << log2qty),
|
|
ilog2(size) - PAGE_SHIFT,
|
|
ilog2(size) - PAGE_SHIFT,
|
|
size);
|
|
size);
|
|
|
|
|