diff options
author | Arnd Bergmann <arnd@arndb.de> | 2012-02-28 13:42:14 +0100 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2012-02-28 13:42:21 +0100 |
commit | fb0b82b32ce17564bc64cede50bf4a3204eecc60 (patch) | |
tree | 00b5e466074c6fb373d64c493b3341186024acc7 /mm/page_alloc.c | |
parent | Merge branch 'kirkwood/board' into next/boards (diff) | |
parent | ARM: pxa: add dummy clock for pxa25x and pxa27x (diff) | |
download | linux-fb0b82b32ce17564bc64cede50bf4a3204eecc60.tar.xz linux-fb0b82b32ce17564bc64cede50bf4a3204eecc60.zip |
Merge branch 'board-specific' of git://github.com/hzhuang1/linux into next/boards
* 'board-specific' of git://github.com/hzhuang1/linux: (5 commits)
ARM: pxa: add dummy clock for pxa25x and pxa27x
ARM: mmp: append irq name of gpio device
pxa/hx4700: Fix PXA_GPIO_IRQ_BASE/IRQ_NUM values
pxa/hx4700: Add ASIC3 LED support
pxa/hx4700: Correct StrataFlash block size discovery
(update to v3.3-rc5)
Diffstat (limited to 'mm/page_alloc.c')
-rw-r--r-- | mm/page_alloc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c index d2186ecb36f7..a13ded1938f0 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c @@ -5236,6 +5236,7 @@ void *__init alloc_large_system_hash(const char *tablename, max = ((unsigned long long)nr_all_pages << PAGE_SHIFT) >> 4; do_div(max, bucketsize); } + max = min(max, 0x80000000ULL); if (numentries > max) numentries = max; |