• Home
  • Raw
  • Download

Lines Matching refs:z

1068 static inline unsigned long wmark_pages(const struct zone *z,  in wmark_pages()  argument
1071 return z->_watermark[w] + z->watermark_boost; in wmark_pages()
1074 static inline unsigned long min_wmark_pages(const struct zone *z) in min_wmark_pages() argument
1076 return wmark_pages(z, WMARK_MIN); in min_wmark_pages()
1079 static inline unsigned long low_wmark_pages(const struct zone *z) in low_wmark_pages() argument
1081 return wmark_pages(z, WMARK_LOW); in low_wmark_pages()
1084 static inline unsigned long high_wmark_pages(const struct zone *z) in high_wmark_pages() argument
1086 return wmark_pages(z, WMARK_HIGH); in high_wmark_pages()
1089 static inline unsigned long promo_wmark_pages(const struct zone *z) in promo_wmark_pages() argument
1091 return wmark_pages(z, WMARK_PROMO); in promo_wmark_pages()
1514 bool __zone_watermark_ok(struct zone *z, unsigned int order, unsigned long mark,
1517 bool zone_watermark_ok(struct zone *z, unsigned int order,
1520 bool zone_watermark_ok_safe(struct zone *z, unsigned int order,
1711 struct zoneref *__next_zones_zonelist(struct zoneref *z,
1730 static __always_inline struct zoneref *next_zones_zonelist(struct zoneref *z, in next_zones_zonelist() argument
1734 if (likely(!nodes && zonelist_zone_idx(z) <= highest_zoneidx)) in next_zones_zonelist()
1735 return z; in next_zones_zonelist()
1736 return __next_zones_zonelist(z, highest_zoneidx, nodes); in next_zones_zonelist()
1775 #define for_each_zone_zonelist_nodemask(zone, z, zlist, highidx, nodemask) \ argument
1776 for (z = first_zones_zonelist(zlist, highidx, nodemask), zone = zonelist_zone(z); \
1778 z = next_zones_zonelist(++z, highidx, nodemask), \
1779 zone = zonelist_zone(z))
1781 #define for_next_zone_zonelist_nodemask(zone, z, highidx, nodemask) \ argument
1782 for (zone = zonelist_zone(z); \
1784 z = next_zones_zonelist(++z, highidx, nodemask), \
1785 zone = zonelist_zone(z))
1797 #define for_each_zone_zonelist(zone, z, zlist, highidx) \ argument
1798 for_each_zone_zonelist_nodemask(zone, z, zlist, highidx, NULL)
1804 struct zoneref *z; in movable_only_nodes() local
1817 z = first_zones_zonelist(zonelist, ZONE_NORMAL, nodes); in movable_only_nodes()
1818 return (!zonelist_zone(z)) ? true : false; in movable_only_nodes()