diff options
author | Con Kolivas <kernel@kolivas.org> | 2006-01-06 03:11:15 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-06 11:33:28 -0500 |
commit | f3fe65122da05e1cd4c9140340d96ea2f95d0c49 (patch) | |
tree | 65f2bcdb0a9665123b5083d3aea7dae483593cbc /include/linux/mmzone.h | |
parent | 80bfed904c690642db9d4178950735299160950b (diff) |
[PATCH] mm: add populated_zone() helper
There are numerous places we check whether a zone is populated or not.
Provide a helper function to check for populated zones and convert all
checks for zone->present_pages.
Signed-off-by: Con Kolivas <kernel@kolivas.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/mmzone.h')
-rw-r--r-- | include/linux/mmzone.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h index 8d6caa414c4c..c34f4a2c62f8 100644 --- a/include/linux/mmzone.h +++ b/include/linux/mmzone.h | |||
@@ -388,6 +388,11 @@ static inline struct zone *next_zone(struct zone *zone) | |||
388 | #define for_each_zone(zone) \ | 388 | #define for_each_zone(zone) \ |
389 | for (zone = pgdat_list->node_zones; zone; zone = next_zone(zone)) | 389 | for (zone = pgdat_list->node_zones; zone; zone = next_zone(zone)) |
390 | 390 | ||
391 | static inline int populated_zone(struct zone *zone) | ||
392 | { | ||
393 | return (!!zone->present_pages); | ||
394 | } | ||
395 | |||
391 | static inline int is_highmem_idx(int idx) | 396 | static inline int is_highmem_idx(int idx) |
392 | { | 397 | { |
393 | return (idx == ZONE_HIGHMEM); | 398 | return (idx == ZONE_HIGHMEM); |