From: Cody P Schafer Date: Sat, 23 Feb 2013 00:35:24 +0000 (-0800) Subject: mm: add zone_is_empty() and zone_is_initialized() X-Git-Tag: upstream/snapshot3+hdmi~5668^2~35 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2a6e3ebee2edcade56f836390a5f0c7b76ff5f9e;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git mm: add zone_is_empty() and zone_is_initialized() Factoring out these 2 checks makes it more clear what we are actually checking for. Signed-off-by: Cody P Schafer Cc: David Hansen Cc: Catalin Marinas Cc: Johannes Weiner Cc: Mel Gorman Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h index 34343f5..cf89259 100644 --- a/include/linux/mmzone.h +++ b/include/linux/mmzone.h @@ -537,6 +537,16 @@ static inline bool zone_spans_pfn(const struct zone *zone, unsigned long pfn) return zone->zone_start_pfn <= pfn && pfn < zone_end_pfn(zone); } +static inline bool zone_is_initialized(struct zone *zone) +{ + return !!zone->wait_table; +} + +static inline bool zone_is_empty(struct zone *zone) +{ + return zone->spanned_pages == 0; +} + /* * The "priority" of VM scanning is how much of the queues we will scan in one * go. A value of 12 for DEF_PRIORITY implies that we will scan 1/4096th of the