Merge tag 'gpio-v3.13-3' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw...
[linux-2.6.git] / mm / mmzone.c
blobbf34fb8556db0a5b3805ec97137ae9ee1a3045f9
1 /*
2 * linux/mm/mmzone.c
4 * management codes for pgdats, zones and page flags
5 */
8 #include <linux/stddef.h>
9 #include <linux/mm.h>
10 #include <linux/mmzone.h>
12 struct pglist_data *first_online_pgdat(void)
14 return NODE_DATA(first_online_node);
17 struct pglist_data *next_online_pgdat(struct pglist_data *pgdat)
19 int nid = next_online_node(pgdat->node_id);
21 if (nid == MAX_NUMNODES)
22 return NULL;
23 return NODE_DATA(nid);
27 * next_zone - helper magic for for_each_zone()
29 struct zone *next_zone(struct zone *zone)
31 pg_data_t *pgdat = zone->zone_pgdat;
33 if (zone < pgdat->node_zones + MAX_NR_ZONES - 1)
34 zone++;
35 else {
36 pgdat = next_online_pgdat(pgdat);
37 if (pgdat)
38 zone = pgdat->node_zones;
39 else
40 zone = NULL;
42 return zone;
45 static inline int zref_in_nodemask(struct zoneref *zref, nodemask_t *nodes)
47 #ifdef CONFIG_NUMA
48 return node_isset(zonelist_node_idx(zref), *nodes);
49 #else
50 return 1;
51 #endif /* CONFIG_NUMA */
54 /* Returns the next zone at or below highest_zoneidx in a zonelist */
55 struct zoneref *next_zones_zonelist(struct zoneref *z,
56 enum zone_type highest_zoneidx,
57 nodemask_t *nodes,
58 struct zone **zone)
61 * Find the next suitable zone to use for the allocation.
62 * Only filter based on nodemask if it's set
64 if (likely(nodes == NULL))
65 while (zonelist_zone_idx(z) > highest_zoneidx)
66 z++;
67 else
68 while (zonelist_zone_idx(z) > highest_zoneidx ||
69 (z->zone && !zref_in_nodemask(z, nodes)))
70 z++;
72 *zone = zonelist_zone(z);
73 return z;
76 #ifdef CONFIG_ARCH_HAS_HOLES_MEMORYMODEL
77 int memmap_valid_within(unsigned long pfn,
78 struct page *page, struct zone *zone)
80 if (page_to_pfn(page) != pfn)
81 return 0;
83 if (page_zone(page) != zone)
84 return 0;
86 return 1;
88 #endif /* CONFIG_ARCH_HAS_HOLES_MEMORYMODEL */
90 void lruvec_init(struct lruvec *lruvec)
92 enum lru_list lru;
94 memset(lruvec, 0, sizeof(struct lruvec));
96 for_each_lru(lru)
97 INIT_LIST_HEAD(&lruvec->lists[lru]);
100 #if defined(CONFIG_NUMA_BALANCING) && !defined(LAST_CPUPID_NOT_IN_PAGE_FLAGS)
101 int page_cpupid_xchg_last(struct page *page, int cpupid)
103 unsigned long old_flags, flags;
104 int last_cpupid;
106 do {
107 old_flags = flags = page->flags;
108 last_cpupid = page_cpupid_last(page);
110 flags &= ~(LAST_CPUPID_MASK << LAST_CPUPID_PGSHIFT);
111 flags |= (cpupid & LAST_CPUPID_MASK) << LAST_CPUPID_PGSHIFT;
112 } while (unlikely(cmpxchg(&page->flags, old_flags, flags) != old_flags));
114 return last_cpupid;
116 #endif