]> Pileus Git - ~andy/linux/blobdiff - mm/page_alloc.c
MM: alloc_large_system_hash() can free some memory for non power-of-two bucketsize
[~andy/linux] / mm / page_alloc.c
index 092b2d8f2f0cb32452f460966b82e1f92a94d232..8dadda6e1feb56d7119190239e0025e654bdb859 100644 (file)
@@ -3584,6 +3584,21 @@ void *__init alloc_large_system_hash(const char *tablename,
                        for (order = 0; ((1UL << order) << PAGE_SHIFT) < size; order++)
                                ;
                        table = (void*) __get_free_pages(GFP_ATOMIC, order);
+                       /*
+                        * If bucketsize is not a power-of-two, we may free
+                        * some pages at the end of hash table.
+                        */
+                       if (table) {
+                               unsigned long alloc_end = (unsigned long)table +
+                                               (PAGE_SIZE << order);
+                               unsigned long used = (unsigned long)table +
+                                               PAGE_ALIGN(size);
+                               split_page(virt_to_page(table), order);
+                               while (used < alloc_end) {
+                                       free_page(used);
+                                       used += PAGE_SIZE;
+                               }
+                       }
                }
        } while (!table && size > PAGE_SIZE && --log2qty);