diff options
-rw-r--r-- | mm/page_alloc.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c index d3358efdf4e6..d1cf4f05dcda 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c | |||
@@ -4345,9 +4345,7 @@ void *__init alloc_large_system_hash(const char *tablename, | |||
4345 | else if (hashdist) | 4345 | else if (hashdist) |
4346 | table = __vmalloc(size, GFP_ATOMIC, PAGE_KERNEL); | 4346 | table = __vmalloc(size, GFP_ATOMIC, PAGE_KERNEL); |
4347 | else { | 4347 | else { |
4348 | unsigned long order; | 4348 | unsigned long order = get_order(size); |
4349 | for (order = 0; ((1UL << order) << PAGE_SHIFT) < size; order++) | ||
4350 | ; | ||
4351 | table = (void*) __get_free_pages(GFP_ATOMIC, order); | 4349 | table = (void*) __get_free_pages(GFP_ATOMIC, order); |
4352 | /* | 4350 | /* |
4353 | * If bucketsize is not a power-of-two, we may free | 4351 | * If bucketsize is not a power-of-two, we may free |