Merge "mm/page_owner: add zone range overlapping check"

This commit is contained in:
Linux Build Service Account 2017-07-11 00:40:10 -07:00 committed by Gerrit - the friendly Code Review server
commit 17ead552c0

View file

@ -306,6 +306,9 @@ static void init_pages_in_zone(pg_data_t *pgdat, struct zone *zone)
page = pfn_to_page(pfn);
if (page_zone(page) != zone)
continue;
/*
* We are safe to check buddy flag and order, because
* this is init stage and only single thread runs.