blob: d9335b8de84af682850910fa399acfeb3159e89b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_MMZONE_H
2#define _LINUX_MMZONE_H
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#ifndef __ASSEMBLY__
Christoph Lameter97965472008-04-28 02:12:54 -07005#ifndef __GENERATING_BOUNDS_H
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/spinlock.h>
8#include <linux/list.h>
9#include <linux/wait.h>
David Rientjese815af92007-10-16 23:25:54 -070010#include <linux/bitops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/cache.h>
12#include <linux/threads.h>
13#include <linux/numa.h>
14#include <linux/init.h>
Dave Hansenbdc8cb92005-10-29 18:16:53 -070015#include <linux/seqlock.h>
KAMEZAWA Hiroyuki8357f862006-03-27 01:15:57 -080016#include <linux/nodemask.h>
Mel Gorman835c1342007-10-16 01:25:47 -070017#include <linux/pageblock-flags.h>
Christoph Lameter97965472008-04-28 02:12:54 -070018#include <linux/bounds.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/atomic.h>
Ralf Baechle93ff66b2006-06-04 02:51:29 -070020#include <asm/page.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22/* Free memory management - zoned buddy allocator. */
23#ifndef CONFIG_FORCE_MAX_ZONEORDER
24#define MAX_ORDER 11
25#else
26#define MAX_ORDER CONFIG_FORCE_MAX_ZONEORDER
27#endif
Bob Piccoe984bb42006-05-20 15:00:31 -070028#define MAX_ORDER_NR_PAGES (1 << (MAX_ORDER - 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Andy Whitcroft5ad333e2007-07-17 04:03:16 -070030/*
31 * PAGE_ALLOC_COSTLY_ORDER is the order at which allocations are deemed
32 * costly to service. That is between allocation orders which should
33 * coelesce naturally under reasonable reclaim pressure and those which
34 * will not.
35 */
36#define PAGE_ALLOC_COSTLY_ORDER 3
37
Mel Gormanb2a0ac82007-10-16 01:25:48 -070038#define MIGRATE_UNMOVABLE 0
Mel Gormane12ba742007-10-16 01:25:52 -070039#define MIGRATE_RECLAIMABLE 1
40#define MIGRATE_MOVABLE 2
Mel Gorman64c5e132007-10-16 01:25:59 -070041#define MIGRATE_RESERVE 3
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -070042#define MIGRATE_ISOLATE 4 /* can't allocate from here */
43#define MIGRATE_TYPES 5
Mel Gormanb2a0ac82007-10-16 01:25:48 -070044
45#define for_each_migratetype_order(order, type) \
46 for (order = 0; order < MAX_ORDER; order++) \
47 for (type = 0; type < MIGRATE_TYPES; type++)
48
Mel Gorman467c9962007-10-16 01:26:02 -070049extern int page_group_by_mobility_disabled;
50
51static inline int get_pageblock_migratetype(struct page *page)
52{
Mel Gorman467c9962007-10-16 01:26:02 -070053 return get_pageblock_flags_group(page, PB_migrate, PB_migrate_end);
54}
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056struct free_area {
Mel Gormanb2a0ac82007-10-16 01:25:48 -070057 struct list_head free_list[MIGRATE_TYPES];
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 unsigned long nr_free;
59};
60
61struct pglist_data;
62
63/*
64 * zone->lock and zone->lru_lock are two of the hottest locks in the kernel.
65 * So add a wild amount of padding here to ensure that they fall into separate
66 * cachelines. There are very few zone structures in the machine, so space
67 * consumption is not a concern here.
68 */
69#if defined(CONFIG_SMP)
70struct zone_padding {
71 char x[0];
Ravikiran G Thirumalai22fc6ec2006-01-08 01:01:27 -080072} ____cacheline_internodealigned_in_smp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#define ZONE_PADDING(name) struct zone_padding name;
74#else
75#define ZONE_PADDING(name)
76#endif
77
Christoph Lameter2244b952006-06-30 01:55:33 -070078enum zone_stat_item {
Christoph Lameter51ed4492007-02-10 01:43:02 -080079 /* First 128 byte cacheline (assuming 64 bit words) */
Christoph Lameterd23ad422007-02-10 01:43:02 -080080 NR_FREE_PAGES,
Christoph Lameterb69408e2008-10-18 20:26:14 -070081 NR_LRU_BASE,
Rik van Riel4f98a2f2008-10-18 20:26:32 -070082 NR_INACTIVE_ANON = NR_LRU_BASE, /* must match order of LRU_[IN]ACTIVE */
83 NR_ACTIVE_ANON, /* " " " " " */
84 NR_INACTIVE_FILE, /* " " " " " */
85 NR_ACTIVE_FILE, /* " " " " " */
Lee Schermerhorn894bc312008-10-18 20:26:39 -070086 NR_UNEVICTABLE, /* " " " " " */
Nick Piggin5344b7e2008-10-18 20:26:51 -070087 NR_MLOCK, /* mlock()ed pages found and moved off LRU */
Christoph Lameterf3dbd342006-06-30 01:55:36 -070088 NR_ANON_PAGES, /* Mapped anonymous pages */
89 NR_FILE_MAPPED, /* pagecache pages mapped into pagetables.
Christoph Lameter65ba55f2006-06-30 01:55:34 -070090 only modified from process context */
Christoph Lameter347ce432006-06-30 01:55:35 -070091 NR_FILE_PAGES,
Christoph Lameterb1e7a8f2006-06-30 01:55:39 -070092 NR_FILE_DIRTY,
Christoph Lameterce866b32006-06-30 01:55:40 -070093 NR_WRITEBACK,
Christoph Lameter51ed4492007-02-10 01:43:02 -080094 NR_SLAB_RECLAIMABLE,
95 NR_SLAB_UNRECLAIMABLE,
96 NR_PAGETABLE, /* used for pagetables */
KOSAKI Motohiroc6a7f572009-09-21 17:01:32 -070097 NR_KERNEL_STACK,
98 /* Second 128 byte cacheline */
Christoph Lameterfd39fc82006-06-30 01:55:40 -070099 NR_UNSTABLE_NFS, /* NFS unstable pages */
Christoph Lameterd2c5e302006-06-30 01:55:41 -0700100 NR_BOUNCE,
Andrew Mortone129b5c2006-09-27 01:50:00 -0700101 NR_VMSCAN_WRITE,
Miklos Szeredifc3ba692008-04-30 00:54:38 -0700102 NR_WRITEBACK_TEMP, /* Writeback using temporary buffers */
Christoph Lameterca889e62006-06-30 01:55:44 -0700103#ifdef CONFIG_NUMA
104 NUMA_HIT, /* allocated in intended node */
105 NUMA_MISS, /* allocated in non intended node */
106 NUMA_FOREIGN, /* was intended here, hit elsewhere */
107 NUMA_INTERLEAVE_HIT, /* interleaver preferred this zone */
108 NUMA_LOCAL, /* allocation from local node */
109 NUMA_OTHER, /* allocation from other node */
110#endif
Christoph Lameter2244b952006-06-30 01:55:33 -0700111 NR_VM_ZONE_STAT_ITEMS };
112
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700113/*
114 * We do arithmetic on the LRU lists in various places in the code,
115 * so it is important to keep the active lists LRU_ACTIVE higher in
116 * the array than the corresponding inactive lists, and to keep
117 * the *_FILE lists LRU_FILE higher than the corresponding _ANON lists.
118 *
119 * This has to be kept in sync with the statistics in zone_stat_item
120 * above and the descriptions in vmstat_text in mm/vmstat.c
121 */
122#define LRU_BASE 0
123#define LRU_ACTIVE 1
124#define LRU_FILE 2
125
Christoph Lameterb69408e2008-10-18 20:26:14 -0700126enum lru_list {
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700127 LRU_INACTIVE_ANON = LRU_BASE,
128 LRU_ACTIVE_ANON = LRU_BASE + LRU_ACTIVE,
129 LRU_INACTIVE_FILE = LRU_BASE + LRU_FILE,
130 LRU_ACTIVE_FILE = LRU_BASE + LRU_FILE + LRU_ACTIVE,
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700131 LRU_UNEVICTABLE,
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700132 NR_LRU_LISTS
133};
Christoph Lameterb69408e2008-10-18 20:26:14 -0700134
135#define for_each_lru(l) for (l = 0; l < NR_LRU_LISTS; l++)
136
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700137#define for_each_evictable_lru(l) for (l = 0; l <= LRU_ACTIVE_FILE; l++)
138
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700139static inline int is_file_lru(enum lru_list l)
140{
141 return (l == LRU_INACTIVE_FILE || l == LRU_ACTIVE_FILE);
142}
143
Christoph Lameterb69408e2008-10-18 20:26:14 -0700144static inline int is_active_lru(enum lru_list l)
145{
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700146 return (l == LRU_ACTIVE_ANON || l == LRU_ACTIVE_FILE);
Christoph Lameterb69408e2008-10-18 20:26:14 -0700147}
148
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700149static inline int is_unevictable_lru(enum lru_list l)
150{
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700151 return (l == LRU_UNEVICTABLE);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700152}
153
Mel Gorman41858962009-06-16 15:32:12 -0700154enum zone_watermarks {
155 WMARK_MIN,
156 WMARK_LOW,
157 WMARK_HIGH,
158 NR_WMARK
159};
160
161#define min_wmark_pages(z) (z->watermark[WMARK_MIN])
162#define low_wmark_pages(z) (z->watermark[WMARK_LOW])
163#define high_wmark_pages(z) (z->watermark[WMARK_HIGH])
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165struct per_cpu_pages {
166 int count; /* number of pages in the list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 int high; /* high watermark, emptying needed */
168 int batch; /* chunk size for buddy add/remove */
169 struct list_head list; /* the list of pages */
170};
171
172struct per_cpu_pageset {
Christoph Lameter3dfa5722008-02-04 22:29:19 -0800173 struct per_cpu_pages pcp;
Christoph Lameter4037d452007-05-09 02:35:14 -0700174#ifdef CONFIG_NUMA
175 s8 expire;
176#endif
Christoph Lameter2244b952006-06-30 01:55:33 -0700177#ifdef CONFIG_SMP
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700178 s8 stat_threshold;
Christoph Lameter2244b952006-06-30 01:55:33 -0700179 s8 vm_stat_diff[NR_VM_ZONE_STAT_ITEMS];
180#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181} ____cacheline_aligned_in_smp;
182
Christoph Lametere7c8d5c2005-06-21 17:14:47 -0700183#ifdef CONFIG_NUMA
184#define zone_pcp(__z, __cpu) ((__z)->pageset[(__cpu)])
185#else
186#define zone_pcp(__z, __cpu) (&(__z)->pageset[(__cpu)])
187#endif
188
Christoph Lameter97965472008-04-28 02:12:54 -0700189#endif /* !__GENERATING_BOUNDS.H */
190
Christoph Lameter2f1b6242006-09-25 23:31:13 -0700191enum zone_type {
Christoph Lameter4b51d662007-02-10 01:43:10 -0800192#ifdef CONFIG_ZONE_DMA
Christoph Lameter2f1b6242006-09-25 23:31:13 -0700193 /*
194 * ZONE_DMA is used when there are devices that are not able
195 * to do DMA to all of addressable memory (ZONE_NORMAL). Then we
196 * carve out the portion of memory that is needed for these devices.
197 * The range is arch specific.
198 *
199 * Some examples
200 *
201 * Architecture Limit
202 * ---------------------------
203 * parisc, ia64, sparc <4G
204 * s390 <2G
Christoph Lameter2f1b6242006-09-25 23:31:13 -0700205 * arm Various
206 * alpha Unlimited or 0-16MB.
207 *
208 * i386, x86_64 and multiple other arches
209 * <16M.
210 */
211 ZONE_DMA,
Christoph Lameter4b51d662007-02-10 01:43:10 -0800212#endif
Christoph Lameterfb0e7942006-09-25 23:31:13 -0700213#ifdef CONFIG_ZONE_DMA32
Christoph Lameter2f1b6242006-09-25 23:31:13 -0700214 /*
215 * x86_64 needs two ZONE_DMAs because it supports devices that are
216 * only able to do DMA to the lower 16M but also 32 bit devices that
217 * can only do DMA areas below 4G.
218 */
219 ZONE_DMA32,
Christoph Lameterfb0e7942006-09-25 23:31:13 -0700220#endif
Christoph Lameter2f1b6242006-09-25 23:31:13 -0700221 /*
222 * Normal addressable memory is in ZONE_NORMAL. DMA operations can be
223 * performed on pages in ZONE_NORMAL if the DMA devices support
224 * transfers to all addressable memory.
225 */
226 ZONE_NORMAL,
Christoph Lametere53ef382006-09-25 23:31:14 -0700227#ifdef CONFIG_HIGHMEM
Christoph Lameter2f1b6242006-09-25 23:31:13 -0700228 /*
229 * A memory area that is only addressable by the kernel through
230 * mapping portions into its own address space. This is for example
231 * used by i386 to allow the kernel to address the memory beyond
232 * 900MB. The kernel will set up special mappings (page
233 * table entries on i386) for each page that the kernel needs to
234 * access.
235 */
236 ZONE_HIGHMEM,
Christoph Lametere53ef382006-09-25 23:31:14 -0700237#endif
Mel Gorman2a1e2742007-07-17 04:03:12 -0700238 ZONE_MOVABLE,
Christoph Lameter97965472008-04-28 02:12:54 -0700239 __MAX_NR_ZONES
Christoph Lameter2f1b6242006-09-25 23:31:13 -0700240};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Christoph Lameter97965472008-04-28 02:12:54 -0700242#ifndef __GENERATING_BOUNDS_H
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244/*
245 * When a memory allocation must conform to specific limitations (such
246 * as being suitable for DMA) the caller will pass in hints to the
247 * allocator in the gfp_mask, in the zone modifier bits. These bits
248 * are used to select a priority ordered list of memory zones which
Christoph Lameter19655d32006-09-25 23:31:19 -0700249 * match the requested limits. See gfp_zone() in include/linux/gfp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 */
Christoph Lameterfb0e7942006-09-25 23:31:13 -0700251
Christoph Lameter97965472008-04-28 02:12:54 -0700252#if MAX_NR_ZONES < 2
Christoph Lameter4b51d662007-02-10 01:43:10 -0800253#define ZONES_SHIFT 0
Christoph Lameter97965472008-04-28 02:12:54 -0700254#elif MAX_NR_ZONES <= 2
Christoph Lameter19655d32006-09-25 23:31:19 -0700255#define ZONES_SHIFT 1
Christoph Lameter97965472008-04-28 02:12:54 -0700256#elif MAX_NR_ZONES <= 4
Christoph Lameter19655d32006-09-25 23:31:19 -0700257#define ZONES_SHIFT 2
Christoph Lameter4b51d662007-02-10 01:43:10 -0800258#else
259#error ZONES_SHIFT -- too many zones configured adjust calculation
Christoph Lameterfb0e7942006-09-25 23:31:13 -0700260#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
KOSAKI Motohiro6e901572009-01-07 18:08:15 -0800262struct zone_reclaim_stat {
263 /*
264 * The pageout code in vmscan.c keeps track of how many of the
265 * mem/swap backed and file backed pages are refeferenced.
266 * The higher the rotated/scanned ratio, the more valuable
267 * that cache is.
268 *
269 * The anon LRU stats live in [0], file LRU stats in [1]
270 */
271 unsigned long recent_rotated[2];
272 unsigned long recent_scanned[2];
273};
274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275struct zone {
276 /* Fields commonly accessed by the page allocator */
Mel Gorman41858962009-06-16 15:32:12 -0700277
278 /* zone watermarks, access with *_wmark_pages(zone) macros */
279 unsigned long watermark[NR_WMARK];
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 /*
282 * We don't know if the memory that we're going to allocate will be freeable
283 * or/and it will be released eventually, so to avoid totally wasting several
284 * GB of ram we must reserve some of the lower zone memory (otherwise we risk
285 * to run OOM on the lower zones despite there's tons of freeable ram
286 * on the higher zones). This array is recalculated at runtime if the
287 * sysctl_lowmem_reserve_ratio sysctl changes.
288 */
289 unsigned long lowmem_reserve[MAX_NR_ZONES];
290
Christoph Lametere7c8d5c2005-06-21 17:14:47 -0700291#ifdef CONFIG_NUMA
Christoph Lameterd5f541e2006-09-27 01:50:08 -0700292 int node;
Christoph Lameter96146342006-07-03 00:24:13 -0700293 /*
294 * zone reclaim becomes active if more unmapped pages exist.
295 */
Christoph Lameter8417bba2006-09-25 23:31:51 -0700296 unsigned long min_unmapped_pages;
Christoph Lameter0ff38492006-09-25 23:31:52 -0700297 unsigned long min_slab_pages;
Christoph Lametere7c8d5c2005-06-21 17:14:47 -0700298 struct per_cpu_pageset *pageset[NR_CPUS];
299#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 struct per_cpu_pageset pageset[NR_CPUS];
Christoph Lametere7c8d5c2005-06-21 17:14:47 -0700301#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 /*
303 * free areas of different sizes
304 */
305 spinlock_t lock;
Dave Hansenbdc8cb92005-10-29 18:16:53 -0700306#ifdef CONFIG_MEMORY_HOTPLUG
307 /* see spanned/present_pages for more description */
308 seqlock_t span_seqlock;
309#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 struct free_area free_area[MAX_ORDER];
311
Mel Gorman835c1342007-10-16 01:25:47 -0700312#ifndef CONFIG_SPARSEMEM
313 /*
Mel Gormand9c23402007-10-16 01:26:01 -0700314 * Flags for a pageblock_nr_pages block. See pageblock-flags.h.
Mel Gorman835c1342007-10-16 01:25:47 -0700315 * In SPARSEMEM, this map is stored in struct mem_section
316 */
317 unsigned long *pageblock_flags;
318#endif /* CONFIG_SPARSEMEM */
319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 ZONE_PADDING(_pad1_)
322
323 /* Fields commonly accessed by the page reclaim scanner */
324 spinlock_t lru_lock;
Wu Fengguang6e08a362009-06-16 15:32:29 -0700325 struct zone_lru {
Christoph Lameterb69408e2008-10-18 20:26:14 -0700326 struct list_head list;
Wu Fengguang6e08a362009-06-16 15:32:29 -0700327 unsigned long nr_saved_scan; /* accumulated for batching */
Christoph Lameterb69408e2008-10-18 20:26:14 -0700328 } lru[NR_LRU_LISTS];
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700329
KOSAKI Motohiro6e901572009-01-07 18:08:15 -0800330 struct zone_reclaim_stat reclaim_stat;
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 unsigned long pages_scanned; /* since last reclaim */
David Rientjese815af92007-10-16 23:25:54 -0700333 unsigned long flags; /* zone flags, see below */
Martin Hicks753ee722005-06-21 17:14:41 -0700334
Christoph Lameter2244b952006-06-30 01:55:33 -0700335 /* Zone statistics */
336 atomic_long_t vm_stat[NR_VM_ZONE_STAT_ITEMS];
Christoph Lameter9eeff232006-01-18 17:42:31 -0800337
338 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 * prev_priority holds the scanning priority for this zone. It is
340 * defined as the scanning priority at which we achieved our reclaim
341 * target at the previous try_to_free_pages() or balance_pgdat()
342 * invokation.
343 *
344 * We use prev_priority as a measure of how much stress page reclaim is
345 * under - it drives the swappiness decision: whether to unmap mapped
346 * pages.
347 *
Martin Bligh3bb1a8522006-10-28 10:38:24 -0700348 * Access to both this field is quite racy even on uniprocessor. But
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 * it is expected to average out OK.
350 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 int prev_priority;
352
Rik van Riel556adec2008-10-18 20:26:34 -0700353 /*
354 * The target ratio of ACTIVE_ANON to INACTIVE_ANON pages on
355 * this zone's LRU. Maintained by the pageout code.
356 */
357 unsigned int inactive_ratio;
358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 ZONE_PADDING(_pad2_)
361 /* Rarely used or read-mostly fields */
362
363 /*
364 * wait_table -- the array holding the hash table
Yasunori Goto02b694d2006-06-23 02:03:08 -0700365 * wait_table_hash_nr_entries -- the size of the hash table array
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 * wait_table_bits -- wait_table_size == (1 << wait_table_bits)
367 *
368 * The purpose of all these is to keep track of the people
369 * waiting for a page to become available and make them
370 * runnable again when possible. The trouble is that this
371 * consumes a lot of space, especially when so few things
372 * wait on pages at a given time. So instead of using
373 * per-page waitqueues, we use a waitqueue hash table.
374 *
375 * The bucket discipline is to sleep on the same queue when
376 * colliding and wake all in that wait queue when removing.
377 * When something wakes, it must check to be sure its page is
378 * truly available, a la thundering herd. The cost of a
379 * collision is great, but given the expected load of the
380 * table, they should be so rare as to be outweighed by the
381 * benefits from the saved space.
382 *
383 * __wait_on_page_locked() and unlock_page() in mm/filemap.c, are the
384 * primary users of these fields, and in mm/page_alloc.c
385 * free_area_init_core() performs the initialization of them.
386 */
387 wait_queue_head_t * wait_table;
Yasunori Goto02b694d2006-06-23 02:03:08 -0700388 unsigned long wait_table_hash_nr_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 unsigned long wait_table_bits;
390
391 /*
392 * Discontig memory support fields.
393 */
394 struct pglist_data *zone_pgdat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 /* zone_start_pfn == zone_start_paddr >> PAGE_SHIFT */
396 unsigned long zone_start_pfn;
397
Dave Hansenbdc8cb92005-10-29 18:16:53 -0700398 /*
399 * zone_start_pfn, spanned_pages and present_pages are all
400 * protected by span_seqlock. It is a seqlock because it has
401 * to be read outside of zone->lock, and it is done in the main
402 * allocator path. But, it is written quite infrequently.
403 *
404 * The lock is declared along with zone->lock because it is
405 * frequently read in proximity to zone->lock. It's good to
406 * give them a chance of being in the same cacheline.
407 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 unsigned long spanned_pages; /* total size, including holes */
409 unsigned long present_pages; /* amount of memory (excluding holes) */
410
411 /*
412 * rarely used fields:
413 */
Helge Deller15ad7cd2006-12-06 20:40:36 -0800414 const char *name;
Ravikiran G Thirumalai22fc6ec2006-01-08 01:01:27 -0800415} ____cacheline_internodealigned_in_smp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
David Rientjese815af92007-10-16 23:25:54 -0700417typedef enum {
418 ZONE_ALL_UNRECLAIMABLE, /* all pages pinned */
419 ZONE_RECLAIM_LOCKED, /* prevents concurrent reclaim */
David Rientjes098d7f12007-10-16 23:25:55 -0700420 ZONE_OOM_LOCKED, /* zone is in OOM killer zonelist */
David Rientjese815af92007-10-16 23:25:54 -0700421} zone_flags_t;
422
423static inline void zone_set_flag(struct zone *zone, zone_flags_t flag)
424{
425 set_bit(flag, &zone->flags);
426}
David Rientjesd773ed62007-10-16 23:26:01 -0700427
428static inline int zone_test_and_set_flag(struct zone *zone, zone_flags_t flag)
429{
430 return test_and_set_bit(flag, &zone->flags);
431}
432
David Rientjese815af92007-10-16 23:25:54 -0700433static inline void zone_clear_flag(struct zone *zone, zone_flags_t flag)
434{
435 clear_bit(flag, &zone->flags);
436}
437
438static inline int zone_is_all_unreclaimable(const struct zone *zone)
439{
440 return test_bit(ZONE_ALL_UNRECLAIMABLE, &zone->flags);
441}
David Rientjesd773ed62007-10-16 23:26:01 -0700442
David Rientjese815af92007-10-16 23:25:54 -0700443static inline int zone_is_reclaim_locked(const struct zone *zone)
444{
445 return test_bit(ZONE_RECLAIM_LOCKED, &zone->flags);
446}
David Rientjesd773ed62007-10-16 23:26:01 -0700447
David Rientjes098d7f12007-10-16 23:25:55 -0700448static inline int zone_is_oom_locked(const struct zone *zone)
449{
450 return test_bit(ZONE_OOM_LOCKED, &zone->flags);
451}
David Rientjese815af92007-10-16 23:25:54 -0700452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453/*
454 * The "priority" of VM scanning is how much of the queues we will scan in one
455 * go. A value of 12 for DEF_PRIORITY implies that we will scan 1/4096th of the
456 * queues ("queue_length >> 12") during an aging round.
457 */
458#define DEF_PRIORITY 12
459
Paul Jackson9276b1bc2006-12-06 20:31:48 -0800460/* Maximum number of zones on a zonelist */
461#define MAX_ZONES_PER_ZONELIST (MAX_NUMNODES * MAX_NR_ZONES)
462
463#ifdef CONFIG_NUMA
Christoph Lameter523b9452007-10-16 01:25:37 -0700464
465/*
466 * The NUMA zonelists are doubled becausse we need zonelists that restrict the
467 * allocations to a single node for GFP_THISNODE.
468 *
Mel Gorman54a6eb52008-04-28 02:12:16 -0700469 * [0] : Zonelist with fallback
470 * [1] : No fallback (GFP_THISNODE)
Christoph Lameter523b9452007-10-16 01:25:37 -0700471 */
Mel Gorman54a6eb52008-04-28 02:12:16 -0700472#define MAX_ZONELISTS 2
Christoph Lameter523b9452007-10-16 01:25:37 -0700473
474
Paul Jackson9276b1bc2006-12-06 20:31:48 -0800475/*
476 * We cache key information from each zonelist for smaller cache
477 * footprint when scanning for free pages in get_page_from_freelist().
478 *
479 * 1) The BITMAP fullzones tracks which zones in a zonelist have come
480 * up short of free memory since the last time (last_fullzone_zap)
481 * we zero'd fullzones.
482 * 2) The array z_to_n[] maps each zone in the zonelist to its node
483 * id, so that we can efficiently evaluate whether that node is
484 * set in the current tasks mems_allowed.
485 *
486 * Both fullzones and z_to_n[] are one-to-one with the zonelist,
487 * indexed by a zones offset in the zonelist zones[] array.
488 *
489 * The get_page_from_freelist() routine does two scans. During the
490 * first scan, we skip zones whose corresponding bit in 'fullzones'
491 * is set or whose corresponding node in current->mems_allowed (which
492 * comes from cpusets) is not set. During the second scan, we bypass
493 * this zonelist_cache, to ensure we look methodically at each zone.
494 *
495 * Once per second, we zero out (zap) fullzones, forcing us to
496 * reconsider nodes that might have regained more free memory.
497 * The field last_full_zap is the time we last zapped fullzones.
498 *
499 * This mechanism reduces the amount of time we waste repeatedly
500 * reexaming zones for free memory when they just came up low on
501 * memory momentarilly ago.
502 *
503 * The zonelist_cache struct members logically belong in struct
504 * zonelist. However, the mempolicy zonelists constructed for
505 * MPOL_BIND are intentionally variable length (and usually much
506 * shorter). A general purpose mechanism for handling structs with
507 * multiple variable length members is more mechanism than we want
508 * here. We resort to some special case hackery instead.
509 *
510 * The MPOL_BIND zonelists don't need this zonelist_cache (in good
511 * part because they are shorter), so we put the fixed length stuff
512 * at the front of the zonelist struct, ending in a variable length
513 * zones[], as is needed by MPOL_BIND.
514 *
515 * Then we put the optional zonelist cache on the end of the zonelist
516 * struct. This optional stuff is found by a 'zlcache_ptr' pointer in
517 * the fixed length portion at the front of the struct. This pointer
518 * both enables us to find the zonelist cache, and in the case of
519 * MPOL_BIND zonelists, (which will just set the zlcache_ptr to NULL)
520 * to know that the zonelist cache is not there.
521 *
522 * The end result is that struct zonelists come in two flavors:
523 * 1) The full, fixed length version, shown below, and
524 * 2) The custom zonelists for MPOL_BIND.
525 * The custom MPOL_BIND zonelists have a NULL zlcache_ptr and no zlcache.
526 *
527 * Even though there may be multiple CPU cores on a node modifying
528 * fullzones or last_full_zap in the same zonelist_cache at the same
529 * time, we don't lock it. This is just hint data - if it is wrong now
530 * and then, the allocator will still function, perhaps a bit slower.
531 */
532
533
534struct zonelist_cache {
Paul Jackson9276b1bc2006-12-06 20:31:48 -0800535 unsigned short z_to_n[MAX_ZONES_PER_ZONELIST]; /* zone->nid */
Paul Jackson7253f4e2006-12-06 20:31:49 -0800536 DECLARE_BITMAP(fullzones, MAX_ZONES_PER_ZONELIST); /* zone full? */
Paul Jackson9276b1bc2006-12-06 20:31:48 -0800537 unsigned long last_full_zap; /* when last zap'd (jiffies) */
538};
539#else
Mel Gorman54a6eb52008-04-28 02:12:16 -0700540#define MAX_ZONELISTS 1
Paul Jackson9276b1bc2006-12-06 20:31:48 -0800541struct zonelist_cache;
542#endif
543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544/*
Mel Gormandd1a2392008-04-28 02:12:17 -0700545 * This struct contains information about a zone in a zonelist. It is stored
546 * here to avoid dereferences into large structures and lookups of tables
547 */
548struct zoneref {
549 struct zone *zone; /* Pointer to actual zone */
550 int zone_idx; /* zone_idx(zoneref->zone) */
551};
552
553/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 * One allocation request operates on a zonelist. A zonelist
555 * is a list of zones, the first one is the 'goal' of the
556 * allocation, the other zones are fallback zones, in decreasing
557 * priority.
558 *
Paul Jackson9276b1bc2006-12-06 20:31:48 -0800559 * If zlcache_ptr is not NULL, then it is just the address of zlcache,
560 * as explained above. If zlcache_ptr is NULL, there is no zlcache.
Mel Gormandd1a2392008-04-28 02:12:17 -0700561 * *
562 * To speed the reading of the zonelist, the zonerefs contain the zone index
563 * of the entry being read. Helper functions to access information given
564 * a struct zoneref are
565 *
566 * zonelist_zone() - Return the struct zone * for an entry in _zonerefs
567 * zonelist_zone_idx() - Return the index of the zone for an entry
568 * zonelist_node_idx() - Return the index of the node for an entry
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 */
570struct zonelist {
Paul Jackson9276b1bc2006-12-06 20:31:48 -0800571 struct zonelist_cache *zlcache_ptr; // NULL or &zlcache
Mel Gormandd1a2392008-04-28 02:12:17 -0700572 struct zoneref _zonerefs[MAX_ZONES_PER_ZONELIST + 1];
Paul Jackson9276b1bc2006-12-06 20:31:48 -0800573#ifdef CONFIG_NUMA
574 struct zonelist_cache zlcache; // optional ...
575#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576};
577
Mel Gormanc7132162006-09-27 01:49:43 -0700578#ifdef CONFIG_ARCH_POPULATES_NODE_MAP
579struct node_active_region {
580 unsigned long start_pfn;
581 unsigned long end_pfn;
582 int nid;
583};
584#endif /* CONFIG_ARCH_POPULATES_NODE_MAP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
Heiko Carstens5b99cd02006-09-27 01:50:01 -0700586#ifndef CONFIG_DISCONTIGMEM
587/* The array of struct pages - for discontigmem use pgdat->lmem_map */
588extern struct page *mem_map;
589#endif
590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591/*
592 * The pg_data_t structure is used in machines with CONFIG_DISCONTIGMEM
593 * (mostly NUMA machines?) to denote a higher-level memory zone than the
594 * zone denotes.
595 *
596 * On NUMA machines, each NUMA node would have a pg_data_t to describe
597 * it's memory layout.
598 *
599 * Memory statistics and page replacement data structures are maintained on a
600 * per-zone basis.
601 */
602struct bootmem_data;
603typedef struct pglist_data {
604 struct zone node_zones[MAX_NR_ZONES];
Christoph Lameter523b9452007-10-16 01:25:37 -0700605 struct zonelist node_zonelists[MAX_ZONELISTS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 int nr_zones;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700607#ifdef CONFIG_FLAT_NODE_MEM_MAP /* means !SPARSEMEM */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 struct page *node_mem_map;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700609#ifdef CONFIG_CGROUP_MEM_RES_CTLR
610 struct page_cgroup *node_page_cgroup;
611#endif
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700612#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 struct bootmem_data *bdata;
Dave Hansen208d54e2005-10-29 18:16:52 -0700614#ifdef CONFIG_MEMORY_HOTPLUG
615 /*
616 * Must be held any time you expect node_start_pfn, node_present_pages
617 * or node_spanned_pages stay constant. Holding this will also
618 * guarantee that any pfn_valid() stays that way.
619 *
620 * Nests above zone->lock and zone->size_seqlock.
621 */
622 spinlock_t node_size_lock;
623#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 unsigned long node_start_pfn;
625 unsigned long node_present_pages; /* total number of physical pages */
626 unsigned long node_spanned_pages; /* total size of physical page
627 range, including holes */
628 int node_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 wait_queue_head_t kswapd_wait;
630 struct task_struct *kswapd;
631 int kswapd_max_order;
632} pg_data_t;
633
634#define node_present_pages(nid) (NODE_DATA(nid)->node_present_pages)
635#define node_spanned_pages(nid) (NODE_DATA(nid)->node_spanned_pages)
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700636#ifdef CONFIG_FLAT_NODE_MEM_MAP
Dave Hansen408fde82005-06-23 00:07:37 -0700637#define pgdat_page_nr(pgdat, pagenr) ((pgdat)->node_mem_map + (pagenr))
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700638#else
639#define pgdat_page_nr(pgdat, pagenr) pfn_to_page((pgdat)->node_start_pfn + (pagenr))
640#endif
Dave Hansen408fde82005-06-23 00:07:37 -0700641#define nid_page_nr(nid, pagenr) pgdat_page_nr(NODE_DATA(nid),(pagenr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Dave Hansen208d54e2005-10-29 18:16:52 -0700643#include <linux/memory_hotplug.h>
644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645void get_zone_counts(unsigned long *active, unsigned long *inactive,
646 unsigned long *free);
647void build_all_zonelists(void);
648void wakeup_kswapd(struct zone *zone, int order);
649int zone_watermark_ok(struct zone *z, int order, unsigned long mark,
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800650 int classzone_idx, int alloc_flags);
Dave Hansena2f3aa022007-01-10 23:15:30 -0800651enum memmap_context {
652 MEMMAP_EARLY,
653 MEMMAP_HOTPLUG,
654};
Yasunori Goto718127c2006-06-23 02:03:10 -0700655extern int init_currently_empty_zone(struct zone *zone, unsigned long start_pfn,
Dave Hansena2f3aa022007-01-10 23:15:30 -0800656 unsigned long size,
657 enum memmap_context context);
Yasunori Goto718127c2006-06-23 02:03:10 -0700658
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659#ifdef CONFIG_HAVE_MEMORY_PRESENT
660void memory_present(int nid, unsigned long start, unsigned long end);
661#else
662static inline void memory_present(int nid, unsigned long start, unsigned long end) {}
663#endif
664
665#ifdef CONFIG_NEED_NODE_MEMMAP_SIZE
666unsigned long __init node_memmap_size_bytes(int, unsigned long, unsigned long);
667#endif
668
669/*
670 * zone_idx() returns 0 for the ZONE_DMA zone, 1 for the ZONE_NORMAL zone, etc.
671 */
672#define zone_idx(zone) ((zone) - (zone)->zone_pgdat->node_zones)
673
Con Kolivasf3fe6512006-01-06 00:11:15 -0800674static inline int populated_zone(struct zone *zone)
675{
676 return (!!zone->present_pages);
677}
678
Mel Gorman2a1e2742007-07-17 04:03:12 -0700679extern int movable_zone;
680
681static inline int zone_movable_is_highmem(void)
682{
683#if defined(CONFIG_HIGHMEM) && defined(CONFIG_ARCH_POPULATES_NODE_MAP)
684 return movable_zone == ZONE_HIGHMEM;
685#else
686 return 0;
687#endif
688}
689
Christoph Lameter2f1b6242006-09-25 23:31:13 -0700690static inline int is_highmem_idx(enum zone_type idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
Christoph Lametere53ef382006-09-25 23:31:14 -0700692#ifdef CONFIG_HIGHMEM
Mel Gorman2a1e2742007-07-17 04:03:12 -0700693 return (idx == ZONE_HIGHMEM ||
694 (idx == ZONE_MOVABLE && zone_movable_is_highmem()));
Christoph Lametere53ef382006-09-25 23:31:14 -0700695#else
696 return 0;
697#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698}
699
Christoph Lameter2f1b6242006-09-25 23:31:13 -0700700static inline int is_normal_idx(enum zone_type idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
702 return (idx == ZONE_NORMAL);
703}
Nick Piggin9328b8f2006-01-06 00:11:10 -0800704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705/**
706 * is_highmem - helper function to quickly check if a struct zone is a
707 * highmem zone or not. This is an attempt to keep references
708 * to ZONE_{DMA/NORMAL/HIGHMEM/etc} in general code to a minimum.
709 * @zone - pointer to struct zone variable
710 */
711static inline int is_highmem(struct zone *zone)
712{
Christoph Lametere53ef382006-09-25 23:31:14 -0700713#ifdef CONFIG_HIGHMEM
Harvey Harrisonddc81ed2008-04-28 02:12:07 -0700714 int zone_off = (char *)zone - (char *)zone->zone_pgdat->node_zones;
715 return zone_off == ZONE_HIGHMEM * sizeof(*zone) ||
716 (zone_off == ZONE_MOVABLE * sizeof(*zone) &&
717 zone_movable_is_highmem());
Christoph Lametere53ef382006-09-25 23:31:14 -0700718#else
719 return 0;
720#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721}
722
723static inline int is_normal(struct zone *zone)
724{
725 return zone == zone->zone_pgdat->node_zones + ZONE_NORMAL;
726}
727
Nick Piggin9328b8f2006-01-06 00:11:10 -0800728static inline int is_dma32(struct zone *zone)
729{
Christoph Lameterfb0e7942006-09-25 23:31:13 -0700730#ifdef CONFIG_ZONE_DMA32
Nick Piggin9328b8f2006-01-06 00:11:10 -0800731 return zone == zone->zone_pgdat->node_zones + ZONE_DMA32;
Christoph Lameterfb0e7942006-09-25 23:31:13 -0700732#else
733 return 0;
734#endif
Nick Piggin9328b8f2006-01-06 00:11:10 -0800735}
736
737static inline int is_dma(struct zone *zone)
738{
Christoph Lameter4b51d662007-02-10 01:43:10 -0800739#ifdef CONFIG_ZONE_DMA
Nick Piggin9328b8f2006-01-06 00:11:10 -0800740 return zone == zone->zone_pgdat->node_zones + ZONE_DMA;
Christoph Lameter4b51d662007-02-10 01:43:10 -0800741#else
742 return 0;
743#endif
Nick Piggin9328b8f2006-01-06 00:11:10 -0800744}
745
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746/* These two functions are used to setup the per zone pages min values */
747struct ctl_table;
748struct file;
749int min_free_kbytes_sysctl_handler(struct ctl_table *, int, struct file *,
750 void __user *, size_t *, loff_t *);
751extern int sysctl_lowmem_reserve_ratio[MAX_NR_ZONES-1];
752int lowmem_reserve_ratio_sysctl_handler(struct ctl_table *, int, struct file *,
753 void __user *, size_t *, loff_t *);
Rohit Seth8ad4b1f2006-01-08 01:00:40 -0800754int percpu_pagelist_fraction_sysctl_handler(struct ctl_table *, int, struct file *,
755 void __user *, size_t *, loff_t *);
Christoph Lameter96146342006-07-03 00:24:13 -0700756int sysctl_min_unmapped_ratio_sysctl_handler(struct ctl_table *, int,
757 struct file *, void __user *, size_t *, loff_t *);
Christoph Lameter0ff38492006-09-25 23:31:52 -0700758int sysctl_min_slab_ratio_sysctl_handler(struct ctl_table *, int,
759 struct file *, void __user *, size_t *, loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -0700761extern int numa_zonelist_order_handler(struct ctl_table *, int,
762 struct file *, void __user *, size_t *, loff_t *);
763extern char numa_zonelist_order[];
764#define NUMA_ZONELIST_ORDER_LEN 16 /* string buffer size */
765
Dave Hansen93b75042005-06-23 00:07:47 -0700766#ifndef CONFIG_NEED_MULTIPLE_NODES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
768extern struct pglist_data contig_page_data;
769#define NODE_DATA(nid) (&contig_page_data)
770#define NODE_MEM_MAP(nid) mem_map
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Dave Hansen93b75042005-06-23 00:07:47 -0700772#else /* CONFIG_NEED_MULTIPLE_NODES */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
774#include <asm/mmzone.h>
775
Dave Hansen93b75042005-06-23 00:07:47 -0700776#endif /* !CONFIG_NEED_MULTIPLE_NODES */
Dave Hansen348f8b62005-06-23 00:07:40 -0700777
KAMEZAWA Hiroyuki95144c72006-03-27 01:16:02 -0800778extern struct pglist_data *first_online_pgdat(void);
779extern struct pglist_data *next_online_pgdat(struct pglist_data *pgdat);
780extern struct zone *next_zone(struct zone *zone);
KAMEZAWA Hiroyuki8357f862006-03-27 01:15:57 -0800781
782/**
Fernando Luis Vazquez Cao12d15f02008-05-23 13:05:01 -0700783 * for_each_online_pgdat - helper macro to iterate over all online nodes
KAMEZAWA Hiroyuki8357f862006-03-27 01:15:57 -0800784 * @pgdat - pointer to a pg_data_t variable
785 */
786#define for_each_online_pgdat(pgdat) \
787 for (pgdat = first_online_pgdat(); \
788 pgdat; \
789 pgdat = next_online_pgdat(pgdat))
KAMEZAWA Hiroyuki8357f862006-03-27 01:15:57 -0800790/**
791 * for_each_zone - helper macro to iterate over all memory zones
792 * @zone - pointer to struct zone variable
793 *
794 * The user only needs to declare the zone variable, for_each_zone
795 * fills it in.
796 */
797#define for_each_zone(zone) \
798 for (zone = (first_online_pgdat())->node_zones; \
799 zone; \
800 zone = next_zone(zone))
801
KOSAKI Motohiroee99c712009-03-31 15:19:31 -0700802#define for_each_populated_zone(zone) \
803 for (zone = (first_online_pgdat())->node_zones; \
804 zone; \
805 zone = next_zone(zone)) \
806 if (!populated_zone(zone)) \
807 ; /* do nothing */ \
808 else
809
Mel Gormandd1a2392008-04-28 02:12:17 -0700810static inline struct zone *zonelist_zone(struct zoneref *zoneref)
811{
812 return zoneref->zone;
813}
814
815static inline int zonelist_zone_idx(struct zoneref *zoneref)
816{
817 return zoneref->zone_idx;
818}
819
820static inline int zonelist_node_idx(struct zoneref *zoneref)
821{
822#ifdef CONFIG_NUMA
823 /* zone_to_nid not available in this context */
824 return zoneref->zone->node;
825#else
826 return 0;
827#endif /* CONFIG_NUMA */
828}
829
Mel Gorman19770b32008-04-28 02:12:18 -0700830/**
831 * next_zones_zonelist - Returns the next zone at or below highest_zoneidx within the allowed nodemask using a cursor within a zonelist as a starting point
832 * @z - The cursor used as a starting point for the search
833 * @highest_zoneidx - The zone index of the highest zone to return
834 * @nodes - An optional nodemask to filter the zonelist with
835 * @zone - The first suitable zone found is returned via this parameter
836 *
837 * This function returns the next zone at or below a given zone index that is
838 * within the allowed nodemask using a cursor as the starting point for the
Mel Gorman5bead2a2008-09-13 02:33:19 -0700839 * search. The zoneref returned is a cursor that represents the current zone
840 * being examined. It should be advanced by one before calling
841 * next_zones_zonelist again.
Mel Gorman19770b32008-04-28 02:12:18 -0700842 */
843struct zoneref *next_zones_zonelist(struct zoneref *z,
844 enum zone_type highest_zoneidx,
845 nodemask_t *nodes,
846 struct zone **zone);
Mel Gormandd1a2392008-04-28 02:12:17 -0700847
Mel Gorman19770b32008-04-28 02:12:18 -0700848/**
849 * first_zones_zonelist - Returns the first zone at or below highest_zoneidx within the allowed nodemask in a zonelist
850 * @zonelist - The zonelist to search for a suitable zone
851 * @highest_zoneidx - The zone index of the highest zone to return
852 * @nodes - An optional nodemask to filter the zonelist with
853 * @zone - The first suitable zone found is returned via this parameter
854 *
855 * This function returns the first zone at or below a given zone index that is
856 * within the allowed nodemask. The zoneref returned is a cursor that can be
Mel Gorman5bead2a2008-09-13 02:33:19 -0700857 * used to iterate the zonelist with next_zones_zonelist by advancing it by
858 * one before calling.
Mel Gorman19770b32008-04-28 02:12:18 -0700859 */
Mel Gormandd1a2392008-04-28 02:12:17 -0700860static inline struct zoneref *first_zones_zonelist(struct zonelist *zonelist,
Mel Gorman19770b32008-04-28 02:12:18 -0700861 enum zone_type highest_zoneidx,
862 nodemask_t *nodes,
863 struct zone **zone)
Mel Gorman54a6eb52008-04-28 02:12:16 -0700864{
Mel Gorman19770b32008-04-28 02:12:18 -0700865 return next_zones_zonelist(zonelist->_zonerefs, highest_zoneidx, nodes,
866 zone);
Mel Gorman54a6eb52008-04-28 02:12:16 -0700867}
868
Mel Gorman19770b32008-04-28 02:12:18 -0700869/**
870 * for_each_zone_zonelist_nodemask - helper macro to iterate over valid zones in a zonelist at or below a given zone index and within a nodemask
871 * @zone - The current zone in the iterator
872 * @z - The current pointer within zonelist->zones being iterated
873 * @zlist - The zonelist being iterated
874 * @highidx - The zone index of the highest zone to return
875 * @nodemask - Nodemask allowed by the allocator
876 *
877 * This iterator iterates though all zones at or below a given zone index and
878 * within a given nodemask
879 */
880#define for_each_zone_zonelist_nodemask(zone, z, zlist, highidx, nodemask) \
881 for (z = first_zones_zonelist(zlist, highidx, nodemask, &zone); \
882 zone; \
Mel Gorman5bead2a2008-09-13 02:33:19 -0700883 z = next_zones_zonelist(++z, highidx, nodemask, &zone)) \
Mel Gorman54a6eb52008-04-28 02:12:16 -0700884
885/**
886 * for_each_zone_zonelist - helper macro to iterate over valid zones in a zonelist at or below a given zone index
887 * @zone - The current zone in the iterator
888 * @z - The current pointer within zonelist->zones being iterated
889 * @zlist - The zonelist being iterated
890 * @highidx - The zone index of the highest zone to return
891 *
892 * This iterator iterates though all zones at or below a given zone index.
893 */
894#define for_each_zone_zonelist(zone, z, zlist, highidx) \
Mel Gorman19770b32008-04-28 02:12:18 -0700895 for_each_zone_zonelist_nodemask(zone, z, zlist, highidx, NULL)
Mel Gorman54a6eb52008-04-28 02:12:16 -0700896
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700897#ifdef CONFIG_SPARSEMEM
898#include <asm/sparsemem.h>
899#endif
900
Mel Gormanc7132162006-09-27 01:49:43 -0700901#if !defined(CONFIG_HAVE_ARCH_EARLY_PFN_TO_NID) && \
902 !defined(CONFIG_ARCH_POPULATES_NODE_MAP)
Andrew Mortonb4544562008-04-28 02:12:39 -0700903static inline unsigned long early_pfn_to_nid(unsigned long pfn)
904{
905 return 0;
906}
Andy Whitcroftb159d432005-06-23 00:07:52 -0700907#endif
908
Andy Whitcroft2bdaf112006-01-06 00:10:53 -0800909#ifdef CONFIG_FLATMEM
910#define pfn_to_nid(pfn) (0)
911#endif
912
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700913#define pfn_to_section_nr(pfn) ((pfn) >> PFN_SECTION_SHIFT)
914#define section_nr_to_pfn(sec) ((sec) << PFN_SECTION_SHIFT)
915
916#ifdef CONFIG_SPARSEMEM
917
918/*
919 * SECTION_SHIFT #bits space required to store a section #
920 *
921 * PA_SECTION_SHIFT physical address to/from section number
922 * PFN_SECTION_SHIFT pfn to/from section number
923 */
924#define SECTIONS_SHIFT (MAX_PHYSMEM_BITS - SECTION_SIZE_BITS)
925
926#define PA_SECTION_SHIFT (SECTION_SIZE_BITS)
927#define PFN_SECTION_SHIFT (SECTION_SIZE_BITS - PAGE_SHIFT)
928
929#define NR_MEM_SECTIONS (1UL << SECTIONS_SHIFT)
930
931#define PAGES_PER_SECTION (1UL << PFN_SECTION_SHIFT)
932#define PAGE_SECTION_MASK (~(PAGES_PER_SECTION-1))
933
Mel Gorman835c1342007-10-16 01:25:47 -0700934#define SECTION_BLOCKFLAGS_BITS \
Mel Gormand9c23402007-10-16 01:26:01 -0700935 ((1UL << (PFN_SECTION_SHIFT - pageblock_order)) * NR_PAGEBLOCK_BITS)
Mel Gorman835c1342007-10-16 01:25:47 -0700936
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700937#if (MAX_ORDER - 1 + PAGE_SHIFT) > SECTION_SIZE_BITS
938#error Allocator MAX_ORDER exceeds SECTION_SIZE
939#endif
940
941struct page;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700942struct page_cgroup;
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700943struct mem_section {
Andy Whitcroft29751f62005-06-23 00:08:00 -0700944 /*
945 * This is, logically, a pointer to an array of struct
946 * pages. However, it is stored with some other magic.
947 * (see sparse.c::sparse_init_one_section())
948 *
Andy Whitcroft30c253e2006-06-23 02:03:41 -0700949 * Additionally during early boot we encode node id of
950 * the location of the section here to guide allocation.
951 * (see sparse.c::memory_present())
952 *
Andy Whitcroft29751f62005-06-23 00:08:00 -0700953 * Making it a UL at least makes someone do a cast
954 * before using it wrong.
955 */
956 unsigned long section_mem_map;
Mel Gorman5c0e3062007-10-16 01:25:56 -0700957
958 /* See declaration of similar field in struct zone */
959 unsigned long *pageblock_flags;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700960#ifdef CONFIG_CGROUP_MEM_RES_CTLR
961 /*
962 * If !SPARSEMEM, pgdat doesn't have page_cgroup pointer. We use
963 * section. (see memcontrol.h/page_cgroup.h about this.)
964 */
965 struct page_cgroup *page_cgroup;
966 unsigned long pad;
967#endif
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700968};
969
Bob Picco3e347262005-09-03 15:54:28 -0700970#ifdef CONFIG_SPARSEMEM_EXTREME
971#define SECTIONS_PER_ROOT (PAGE_SIZE / sizeof (struct mem_section))
Bob Picco802f1922005-09-03 15:54:26 -0700972#else
Bob Picco3e347262005-09-03 15:54:28 -0700973#define SECTIONS_PER_ROOT 1
974#endif
Bob Picco802f1922005-09-03 15:54:26 -0700975
Bob Picco3e347262005-09-03 15:54:28 -0700976#define SECTION_NR_TO_ROOT(sec) ((sec) / SECTIONS_PER_ROOT)
977#define NR_SECTION_ROOTS (NR_MEM_SECTIONS / SECTIONS_PER_ROOT)
978#define SECTION_ROOT_MASK (SECTIONS_PER_ROOT - 1)
979
980#ifdef CONFIG_SPARSEMEM_EXTREME
981extern struct mem_section *mem_section[NR_SECTION_ROOTS];
982#else
983extern struct mem_section mem_section[NR_SECTION_ROOTS][SECTIONS_PER_ROOT];
984#endif
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700985
Andy Whitcroft29751f62005-06-23 00:08:00 -0700986static inline struct mem_section *__nr_to_section(unsigned long nr)
987{
Bob Picco3e347262005-09-03 15:54:28 -0700988 if (!mem_section[SECTION_NR_TO_ROOT(nr)])
989 return NULL;
990 return &mem_section[SECTION_NR_TO_ROOT(nr)][nr & SECTION_ROOT_MASK];
Andy Whitcroft29751f62005-06-23 00:08:00 -0700991}
Dave Hansen4ca644d2005-10-29 18:16:51 -0700992extern int __section_nr(struct mem_section* ms);
Yasunori Goto04753272008-04-28 02:13:31 -0700993extern unsigned long usemap_size(void);
Andy Whitcroft29751f62005-06-23 00:08:00 -0700994
995/*
996 * We use the lower bits of the mem_map pointer to store
997 * a little bit of information. There should be at least
998 * 3 bits here due to 32-bit alignment.
999 */
1000#define SECTION_MARKED_PRESENT (1UL<<0)
1001#define SECTION_HAS_MEM_MAP (1UL<<1)
1002#define SECTION_MAP_LAST_BIT (1UL<<2)
1003#define SECTION_MAP_MASK (~(SECTION_MAP_LAST_BIT-1))
Andy Whitcroft30c253e2006-06-23 02:03:41 -07001004#define SECTION_NID_SHIFT 2
Andy Whitcroft29751f62005-06-23 00:08:00 -07001005
1006static inline struct page *__section_mem_map_addr(struct mem_section *section)
1007{
1008 unsigned long map = section->section_mem_map;
1009 map &= SECTION_MAP_MASK;
1010 return (struct page *)map;
1011}
1012
Andy Whitcroft540557b2007-10-16 01:24:11 -07001013static inline int present_section(struct mem_section *section)
Andy Whitcroft29751f62005-06-23 00:08:00 -07001014{
Bob Picco802f1922005-09-03 15:54:26 -07001015 return (section && (section->section_mem_map & SECTION_MARKED_PRESENT));
Andy Whitcroft29751f62005-06-23 00:08:00 -07001016}
1017
Andy Whitcroft540557b2007-10-16 01:24:11 -07001018static inline int present_section_nr(unsigned long nr)
1019{
1020 return present_section(__nr_to_section(nr));
1021}
1022
1023static inline int valid_section(struct mem_section *section)
Andy Whitcroft29751f62005-06-23 00:08:00 -07001024{
Bob Picco802f1922005-09-03 15:54:26 -07001025 return (section && (section->section_mem_map & SECTION_HAS_MEM_MAP));
Andy Whitcroft29751f62005-06-23 00:08:00 -07001026}
1027
1028static inline int valid_section_nr(unsigned long nr)
1029{
1030 return valid_section(__nr_to_section(nr));
1031}
1032
Andy Whitcroftd41dee32005-06-23 00:07:54 -07001033static inline struct mem_section *__pfn_to_section(unsigned long pfn)
1034{
Andy Whitcroft29751f62005-06-23 00:08:00 -07001035 return __nr_to_section(pfn_to_section_nr(pfn));
Andy Whitcroftd41dee32005-06-23 00:07:54 -07001036}
1037
Andy Whitcroftd41dee32005-06-23 00:07:54 -07001038static inline int pfn_valid(unsigned long pfn)
1039{
1040 if (pfn_to_section_nr(pfn) >= NR_MEM_SECTIONS)
1041 return 0;
Andy Whitcroft29751f62005-06-23 00:08:00 -07001042 return valid_section(__nr_to_section(pfn_to_section_nr(pfn)));
Andy Whitcroftd41dee32005-06-23 00:07:54 -07001043}
1044
Andy Whitcroft540557b2007-10-16 01:24:11 -07001045static inline int pfn_present(unsigned long pfn)
1046{
1047 if (pfn_to_section_nr(pfn) >= NR_MEM_SECTIONS)
1048 return 0;
1049 return present_section(__nr_to_section(pfn_to_section_nr(pfn)));
1050}
1051
Andy Whitcroftd41dee32005-06-23 00:07:54 -07001052/*
1053 * These are _only_ used during initialisation, therefore they
1054 * can use __initdata ... They could have names to indicate
1055 * this restriction.
1056 */
1057#ifdef CONFIG_NUMA
Andy Whitcroft161599f2006-01-06 00:10:54 -08001058#define pfn_to_nid(pfn) \
1059({ \
1060 unsigned long __pfn_to_nid_pfn = (pfn); \
1061 page_to_nid(pfn_to_page(__pfn_to_nid_pfn)); \
1062})
Andy Whitcroft2bdaf112006-01-06 00:10:53 -08001063#else
1064#define pfn_to_nid(pfn) (0)
Andy Whitcroftd41dee32005-06-23 00:07:54 -07001065#endif
1066
Andy Whitcroftd41dee32005-06-23 00:07:54 -07001067#define early_pfn_valid(pfn) pfn_valid(pfn)
1068void sparse_init(void);
1069#else
1070#define sparse_init() do {} while (0)
Dave Hansen28ae55c2005-09-03 15:54:29 -07001071#define sparse_index_init(_sec, _nid) do {} while (0)
Andy Whitcroftd41dee32005-06-23 00:07:54 -07001072#endif /* CONFIG_SPARSEMEM */
1073
Andy Whitcroft75167952006-10-21 10:24:14 -07001074#ifdef CONFIG_NODES_SPAN_OTHER_NODES
KAMEZAWA Hiroyukicc2559b2009-02-18 14:48:33 -08001075bool early_pfn_in_nid(unsigned long pfn, int nid);
Andy Whitcroft75167952006-10-21 10:24:14 -07001076#else
1077#define early_pfn_in_nid(pfn, nid) (1)
1078#endif
1079
Andy Whitcroftd41dee32005-06-23 00:07:54 -07001080#ifndef early_pfn_valid
1081#define early_pfn_valid(pfn) (1)
1082#endif
1083
1084void memory_present(int nid, unsigned long start, unsigned long end);
1085unsigned long __init node_memmap_size_bytes(int, unsigned long, unsigned long);
1086
Andy Whitcroft14e07292007-05-06 14:49:14 -07001087/*
1088 * If it is possible to have holes within a MAX_ORDER_NR_PAGES, then we
1089 * need to check pfn validility within that MAX_ORDER_NR_PAGES block.
1090 * pfn_valid_within() should be used in this case; we optimise this away
1091 * when we have no holes within a MAX_ORDER_NR_PAGES block.
1092 */
1093#ifdef CONFIG_HOLES_IN_ZONE
1094#define pfn_valid_within(pfn) pfn_valid(pfn)
1095#else
1096#define pfn_valid_within(pfn) (1)
1097#endif
1098
Mel Gormaneb335752009-05-13 17:34:48 +01001099#ifdef CONFIG_ARCH_HAS_HOLES_MEMORYMODEL
1100/*
1101 * pfn_valid() is meant to be able to tell if a given PFN has valid memmap
1102 * associated with it or not. In FLATMEM, it is expected that holes always
1103 * have valid memmap as long as there is valid PFNs either side of the hole.
1104 * In SPARSEMEM, it is assumed that a valid section has a memmap for the
1105 * entire section.
1106 *
1107 * However, an ARM, and maybe other embedded architectures in the future
1108 * free memmap backing holes to save memory on the assumption the memmap is
1109 * never used. The page_zone linkages are then broken even though pfn_valid()
1110 * returns true. A walker of the full memmap must then do this additional
1111 * check to ensure the memmap they are looking at is sane by making sure
1112 * the zone and PFN linkages are still valid. This is expensive, but walkers
1113 * of the full memmap are extremely rare.
1114 */
1115int memmap_valid_within(unsigned long pfn,
1116 struct page *page, struct zone *zone);
1117#else
1118static inline int memmap_valid_within(unsigned long pfn,
1119 struct page *page, struct zone *zone)
1120{
1121 return 1;
1122}
1123#endif /* CONFIG_ARCH_HAS_HOLES_MEMORYMODEL */
1124
Christoph Lameter97965472008-04-28 02:12:54 -07001125#endif /* !__GENERATING_BOUNDS.H */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126#endif /* !__ASSEMBLY__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127#endif /* _LINUX_MMZONE_H */