aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Liu <[email protected]>2012-01-12 17:19:07 -0800
committerLinus Torvalds <[email protected]>2012-01-12 20:13:07 -0800
commitd0048b0e59c1218d62bb4d014f34bbd7e7c0a214 (patch)
treef6a69889bcb60b253ab37029616ebe6fa2bd24f9
parent3ed28fa1080c73747ce17f2025b28b062fb5aa7f (diff)
page_alloc: break early in check_for_regular_memory()
If there is a zone below ZONE_NORMAL has present_pages, we can set node state to N_NORMAL_MEMORY, no need to loop to end. Signed-off-by: Bob Liu <[email protected]> Acked-by: Michal Hocko <[email protected]> Cc: Johannes Weiner <[email protected]> Acked-by: KAMEZAWA Hiroyuki <[email protected]> Cc: KOSAKI Motohiro <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r--mm/page_alloc.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 25c248eb7d5f..9404b38bcdc5 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -4642,8 +4642,10 @@ static void check_for_regular_memory(pg_data_t *pgdat)
for (zone_type = 0; zone_type <= ZONE_NORMAL; zone_type++) {
struct zone *zone = &pgdat->node_zones[zone_type];
- if (zone->present_pages)
+ if (zone->present_pages) {
node_set_state(zone_to_nid(zone), N_NORMAL_MEMORY);
+ break;
+ }
}
#endif
}