aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXishi Qiu <[email protected]>2015-11-05 18:48:11 -0800
committerLinus Torvalds <[email protected]>2015-11-05 19:34:48 -0800
commit9fd745d450e7e2b0d2f1b386b886e7d568b64404 (patch)
treee202e5a23fc2e03b2905fdaffa130a991a9d0957
parentd031a157915e0508ffa1ab9f1bbf977257529cb4 (diff)
mm: fix overflow in find_zone_movable_pfns_for_nodes()
If the user set "movablecore=xx" to a large number, corepages will overflow. Fix the problem. Signed-off-by: Xishi Qiu <[email protected]> Reviewed-by: Yasuaki Ishimatsu <[email protected]> Acked-by: Tang Chen <[email protected]> Acked-by: David Rientjes <[email protected]> Cc: Mel Gorman <[email protected]> Cc: Tang Chen <[email protected]> Cc: Zhang Yanfei <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r--mm/page_alloc.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index c60605df9b48..4aed338fc535 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -5666,6 +5666,7 @@ static void __init find_zone_movable_pfns_for_nodes(void)
*/
required_movablecore =
roundup(required_movablecore, MAX_ORDER_NR_PAGES);
+ required_movablecore = min(totalpages, required_movablecore);
corepages = totalpages - required_movablecore;
required_kernelcore = max(required_kernelcore, corepages);