Lines Matching refs:z
314 #define min_wmark_pages(z) (z->_watermark[WMARK_MIN] + z->watermark_boost) argument
315 #define low_wmark_pages(z) (z->_watermark[WMARK_LOW] + z->watermark_boost) argument
316 #define high_wmark_pages(z) (z->_watermark[WMARK_HIGH] + z->watermark_boost) argument
317 #define wmark_pages(z, i) (z->_watermark[i] + z->watermark_boost) argument
858 bool __zone_watermark_ok(struct zone *z, unsigned int order, unsigned long mark,
861 bool zone_watermark_ok(struct zone *z, unsigned int order,
864 bool zone_watermark_ok_safe(struct zone *z, unsigned int order,
1057 struct zoneref *__next_zones_zonelist(struct zoneref *z,
1073 static __always_inline struct zoneref *next_zones_zonelist(struct zoneref *z, in next_zones_zonelist() argument
1077 if (likely(!nodes && zonelist_zone_idx(z) <= highest_zoneidx)) in next_zones_zonelist()
1078 return z; in next_zones_zonelist()
1079 return __next_zones_zonelist(z, highest_zoneidx, nodes); in next_zones_zonelist()
1117 #define for_each_zone_zonelist_nodemask(zone, z, zlist, highidx, nodemask) \ argument
1118 for (z = first_zones_zonelist(zlist, highidx, nodemask), zone = zonelist_zone(z); \
1120 z = next_zones_zonelist(++z, highidx, nodemask), \
1121 zone = zonelist_zone(z))
1123 #define for_next_zone_zonelist_nodemask(zone, z, highidx, nodemask) \ argument
1124 for (zone = z->zone; \
1126 z = next_zones_zonelist(++z, highidx, nodemask), \
1127 zone = zonelist_zone(z))
1139 #define for_each_zone_zonelist(zone, z, zlist, highidx) \ argument
1140 for_each_zone_zonelist_nodemask(zone, z, zlist, highidx, NULL)