blob: 80da968798ea4ea7f7f8d6d40b854a0cf46ba7af [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>
Sam Ravnborg01fc0ac2009-04-19 21:57:19 +020018#include <generated/bounds.h>
Arun Sharma60063492011-07-26 16:09:06 -070019#include <linux/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 Gorman5f8dcc22009-09-21 17:03:19 -070041#define MIGRATE_PCPTYPES 3 /* the number of types on the pcp lists */
Mel Gorman64c5e132007-10-16 01:25:59 -070042#define MIGRATE_RESERVE 3
KAMEZAWA Hiroyukia5d76b52007-10-16 01:26:11 -070043#define MIGRATE_ISOLATE 4 /* can't allocate from here */
44#define MIGRATE_TYPES 5
Mel Gormanb2a0ac82007-10-16 01:25:48 -070045
46#define for_each_migratetype_order(order, type) \
47 for (order = 0; order < MAX_ORDER; order++) \
48 for (type = 0; type < MIGRATE_TYPES; type++)
49
Mel Gorman467c9962007-10-16 01:26:02 -070050extern int page_group_by_mobility_disabled;
51
52static inline int get_pageblock_migratetype(struct page *page)
53{
Mel Gorman467c9962007-10-16 01:26:02 -070054 return get_pageblock_flags_group(page, PB_migrate, PB_migrate_end);
55}
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057struct free_area {
Mel Gormanb2a0ac82007-10-16 01:25:48 -070058 struct list_head free_list[MIGRATE_TYPES];
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 unsigned long nr_free;
60};
61
62struct pglist_data;
63
64/*
65 * zone->lock and zone->lru_lock are two of the hottest locks in the kernel.
66 * So add a wild amount of padding here to ensure that they fall into separate
67 * cachelines. There are very few zone structures in the machine, so space
68 * consumption is not a concern here.
69 */
70#if defined(CONFIG_SMP)
71struct zone_padding {
72 char x[0];
Ravikiran G Thirumalai22fc6ec2006-01-08 01:01:27 -080073} ____cacheline_internodealigned_in_smp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#define ZONE_PADDING(name) struct zone_padding name;
75#else
76#define ZONE_PADDING(name)
77#endif
78
Christoph Lameter2244b952006-06-30 01:55:33 -070079enum zone_stat_item {
Christoph Lameter51ed4492007-02-10 01:43:02 -080080 /* First 128 byte cacheline (assuming 64 bit words) */
Christoph Lameterd23ad422007-02-10 01:43:02 -080081 NR_FREE_PAGES,
Christoph Lameterb69408e2008-10-18 20:26:14 -070082 NR_LRU_BASE,
Rik van Riel4f98a2f2008-10-18 20:26:32 -070083 NR_INACTIVE_ANON = NR_LRU_BASE, /* must match order of LRU_[IN]ACTIVE */
84 NR_ACTIVE_ANON, /* " " " " " */
85 NR_INACTIVE_FILE, /* " " " " " */
86 NR_ACTIVE_FILE, /* " " " " " */
Lee Schermerhorn894bc312008-10-18 20:26:39 -070087 NR_UNEVICTABLE, /* " " " " " */
Nick Piggin5344b7e2008-10-18 20:26:51 -070088 NR_MLOCK, /* mlock()ed pages found and moved off LRU */
Christoph Lameterf3dbd342006-06-30 01:55:36 -070089 NR_ANON_PAGES, /* Mapped anonymous pages */
90 NR_FILE_MAPPED, /* pagecache pages mapped into pagetables.
Christoph Lameter65ba55f2006-06-30 01:55:34 -070091 only modified from process context */
Christoph Lameter347ce432006-06-30 01:55:35 -070092 NR_FILE_PAGES,
Christoph Lameterb1e7a8f2006-06-30 01:55:39 -070093 NR_FILE_DIRTY,
Christoph Lameterce866b32006-06-30 01:55:40 -070094 NR_WRITEBACK,
Christoph Lameter51ed4492007-02-10 01:43:02 -080095 NR_SLAB_RECLAIMABLE,
96 NR_SLAB_UNRECLAIMABLE,
97 NR_PAGETABLE, /* used for pagetables */
KOSAKI Motohiroc6a7f572009-09-21 17:01:32 -070098 NR_KERNEL_STACK,
99 /* Second 128 byte cacheline */
Christoph Lameterfd39fc82006-06-30 01:55:40 -0700100 NR_UNSTABLE_NFS, /* NFS unstable pages */
Christoph Lameterd2c5e302006-06-30 01:55:41 -0700101 NR_BOUNCE,
Andrew Mortone129b5c2006-09-27 01:50:00 -0700102 NR_VMSCAN_WRITE,
Miklos Szeredifc3ba692008-04-30 00:54:38 -0700103 NR_WRITEBACK_TEMP, /* Writeback using temporary buffers */
KOSAKI Motohiroa7312862009-09-21 17:01:37 -0700104 NR_ISOLATED_ANON, /* Temporary isolated pages from anon lru */
105 NR_ISOLATED_FILE, /* Temporary isolated pages from file lru */
KOSAKI Motohiro4b021082009-09-21 17:01:33 -0700106 NR_SHMEM, /* shmem pages (included tmpfs/GEM pages) */
Michael Rubinea941f02010-10-26 14:21:35 -0700107 NR_DIRTIED, /* page dirtyings since bootup */
108 NR_WRITTEN, /* page writings since bootup */
Christoph Lameterca889e62006-06-30 01:55:44 -0700109#ifdef CONFIG_NUMA
110 NUMA_HIT, /* allocated in intended node */
111 NUMA_MISS, /* allocated in non intended node */
112 NUMA_FOREIGN, /* was intended here, hit elsewhere */
113 NUMA_INTERLEAVE_HIT, /* interleaver preferred this zone */
114 NUMA_LOCAL, /* allocation from local node */
115 NUMA_OTHER, /* allocation from other node */
116#endif
Andrea Arcangeli79134172011-01-13 15:46:58 -0800117 NR_ANON_TRANSPARENT_HUGEPAGES,
Christoph Lameter2244b952006-06-30 01:55:33 -0700118 NR_VM_ZONE_STAT_ITEMS };
119
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700120/*
121 * We do arithmetic on the LRU lists in various places in the code,
122 * so it is important to keep the active lists LRU_ACTIVE higher in
123 * the array than the corresponding inactive lists, and to keep
124 * the *_FILE lists LRU_FILE higher than the corresponding _ANON lists.
125 *
126 * This has to be kept in sync with the statistics in zone_stat_item
127 * above and the descriptions in vmstat_text in mm/vmstat.c
128 */
129#define LRU_BASE 0
130#define LRU_ACTIVE 1
131#define LRU_FILE 2
132
Christoph Lameterb69408e2008-10-18 20:26:14 -0700133enum lru_list {
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700134 LRU_INACTIVE_ANON = LRU_BASE,
135 LRU_ACTIVE_ANON = LRU_BASE + LRU_ACTIVE,
136 LRU_INACTIVE_FILE = LRU_BASE + LRU_FILE,
137 LRU_ACTIVE_FILE = LRU_BASE + LRU_FILE + LRU_ACTIVE,
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700138 LRU_UNEVICTABLE,
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700139 NR_LRU_LISTS
140};
Christoph Lameterb69408e2008-10-18 20:26:14 -0700141
142#define for_each_lru(l) for (l = 0; l < NR_LRU_LISTS; l++)
143
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700144#define for_each_evictable_lru(l) for (l = 0; l <= LRU_ACTIVE_FILE; l++)
145
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700146static inline int is_file_lru(enum lru_list l)
147{
148 return (l == LRU_INACTIVE_FILE || l == LRU_ACTIVE_FILE);
149}
150
Christoph Lameterb69408e2008-10-18 20:26:14 -0700151static inline int is_active_lru(enum lru_list l)
152{
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700153 return (l == LRU_ACTIVE_ANON || l == LRU_ACTIVE_FILE);
Christoph Lameterb69408e2008-10-18 20:26:14 -0700154}
155
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700156static inline int is_unevictable_lru(enum lru_list l)
157{
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700158 return (l == LRU_UNEVICTABLE);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700159}
160
KAMEZAWA Hiroyukibb2a0de2011-07-26 16:08:22 -0700161/* Mask used at gathering information at once (see memcontrol.c) */
162#define LRU_ALL_FILE (BIT(LRU_INACTIVE_FILE) | BIT(LRU_ACTIVE_FILE))
163#define LRU_ALL_ANON (BIT(LRU_INACTIVE_ANON) | BIT(LRU_ACTIVE_ANON))
164#define LRU_ALL_EVICTABLE (LRU_ALL_FILE | LRU_ALL_ANON)
165#define LRU_ALL ((1 << NR_LRU_LISTS) - 1)
166
Minchan Kim4356f212011-10-31 17:06:47 -0700167/* Isolate inactive pages */
168#define ISOLATE_INACTIVE ((__force isolate_mode_t)0x1)
169/* Isolate active pages */
170#define ISOLATE_ACTIVE ((__force isolate_mode_t)0x2)
Minchan Kim39deaf82011-10-31 17:06:51 -0700171/* Isolate clean file */
172#define ISOLATE_CLEAN ((__force isolate_mode_t)0x4)
Minchan Kim4356f212011-10-31 17:06:47 -0700173
174/* LRU Isolation modes. */
175typedef unsigned __bitwise__ isolate_mode_t;
176
Mel Gorman41858962009-06-16 15:32:12 -0700177enum zone_watermarks {
178 WMARK_MIN,
179 WMARK_LOW,
180 WMARK_HIGH,
181 NR_WMARK
182};
183
184#define min_wmark_pages(z) (z->watermark[WMARK_MIN])
185#define low_wmark_pages(z) (z->watermark[WMARK_LOW])
186#define high_wmark_pages(z) (z->watermark[WMARK_HIGH])
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188struct per_cpu_pages {
189 int count; /* number of pages in the list */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 int high; /* high watermark, emptying needed */
191 int batch; /* chunk size for buddy add/remove */
Mel Gorman5f8dcc22009-09-21 17:03:19 -0700192
193 /* Lists of pages, one per migrate type stored on the pcp-lists */
194 struct list_head lists[MIGRATE_PCPTYPES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195};
196
197struct per_cpu_pageset {
Christoph Lameter3dfa5722008-02-04 22:29:19 -0800198 struct per_cpu_pages pcp;
Christoph Lameter4037d452007-05-09 02:35:14 -0700199#ifdef CONFIG_NUMA
200 s8 expire;
201#endif
Christoph Lameter2244b952006-06-30 01:55:33 -0700202#ifdef CONFIG_SMP
Christoph Lameterdf9ecab2006-08-31 21:27:35 -0700203 s8 stat_threshold;
Christoph Lameter2244b952006-06-30 01:55:33 -0700204 s8 vm_stat_diff[NR_VM_ZONE_STAT_ITEMS];
205#endif
Christoph Lameter99dcc3e2010-01-05 15:34:51 +0900206};
Christoph Lametere7c8d5c2005-06-21 17:14:47 -0700207
Christoph Lameter97965472008-04-28 02:12:54 -0700208#endif /* !__GENERATING_BOUNDS.H */
209
Christoph Lameter2f1b6242006-09-25 23:31:13 -0700210enum zone_type {
Christoph Lameter4b51d662007-02-10 01:43:10 -0800211#ifdef CONFIG_ZONE_DMA
Christoph Lameter2f1b6242006-09-25 23:31:13 -0700212 /*
213 * ZONE_DMA is used when there are devices that are not able
214 * to do DMA to all of addressable memory (ZONE_NORMAL). Then we
215 * carve out the portion of memory that is needed for these devices.
216 * The range is arch specific.
217 *
218 * Some examples
219 *
220 * Architecture Limit
221 * ---------------------------
222 * parisc, ia64, sparc <4G
223 * s390 <2G
Christoph Lameter2f1b6242006-09-25 23:31:13 -0700224 * arm Various
225 * alpha Unlimited or 0-16MB.
226 *
227 * i386, x86_64 and multiple other arches
228 * <16M.
229 */
230 ZONE_DMA,
Christoph Lameter4b51d662007-02-10 01:43:10 -0800231#endif
Christoph Lameterfb0e7942006-09-25 23:31:13 -0700232#ifdef CONFIG_ZONE_DMA32
Christoph Lameter2f1b6242006-09-25 23:31:13 -0700233 /*
234 * x86_64 needs two ZONE_DMAs because it supports devices that are
235 * only able to do DMA to the lower 16M but also 32 bit devices that
236 * can only do DMA areas below 4G.
237 */
238 ZONE_DMA32,
Christoph Lameterfb0e7942006-09-25 23:31:13 -0700239#endif
Christoph Lameter2f1b6242006-09-25 23:31:13 -0700240 /*
241 * Normal addressable memory is in ZONE_NORMAL. DMA operations can be
242 * performed on pages in ZONE_NORMAL if the DMA devices support
243 * transfers to all addressable memory.
244 */
245 ZONE_NORMAL,
Christoph Lametere53ef382006-09-25 23:31:14 -0700246#ifdef CONFIG_HIGHMEM
Christoph Lameter2f1b6242006-09-25 23:31:13 -0700247 /*
248 * A memory area that is only addressable by the kernel through
249 * mapping portions into its own address space. This is for example
250 * used by i386 to allow the kernel to address the memory beyond
251 * 900MB. The kernel will set up special mappings (page
252 * table entries on i386) for each page that the kernel needs to
253 * access.
254 */
255 ZONE_HIGHMEM,
Christoph Lametere53ef382006-09-25 23:31:14 -0700256#endif
Mel Gorman2a1e2742007-07-17 04:03:12 -0700257 ZONE_MOVABLE,
Christoph Lameter97965472008-04-28 02:12:54 -0700258 __MAX_NR_ZONES
Christoph Lameter2f1b6242006-09-25 23:31:13 -0700259};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Christoph Lameter97965472008-04-28 02:12:54 -0700261#ifndef __GENERATING_BOUNDS_H
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263/*
264 * When a memory allocation must conform to specific limitations (such
265 * as being suitable for DMA) the caller will pass in hints to the
266 * allocator in the gfp_mask, in the zone modifier bits. These bits
267 * are used to select a priority ordered list of memory zones which
Christoph Lameter19655d32006-09-25 23:31:19 -0700268 * match the requested limits. See gfp_zone() in include/linux/gfp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 */
Christoph Lameterfb0e7942006-09-25 23:31:13 -0700270
Christoph Lameter97965472008-04-28 02:12:54 -0700271#if MAX_NR_ZONES < 2
Christoph Lameter4b51d662007-02-10 01:43:10 -0800272#define ZONES_SHIFT 0
Christoph Lameter97965472008-04-28 02:12:54 -0700273#elif MAX_NR_ZONES <= 2
Christoph Lameter19655d32006-09-25 23:31:19 -0700274#define ZONES_SHIFT 1
Christoph Lameter97965472008-04-28 02:12:54 -0700275#elif MAX_NR_ZONES <= 4
Christoph Lameter19655d32006-09-25 23:31:19 -0700276#define ZONES_SHIFT 2
Christoph Lameter4b51d662007-02-10 01:43:10 -0800277#else
278#error ZONES_SHIFT -- too many zones configured adjust calculation
Christoph Lameterfb0e7942006-09-25 23:31:13 -0700279#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
KOSAKI Motohiro6e901572009-01-07 18:08:15 -0800281struct zone_reclaim_stat {
282 /*
283 * The pageout code in vmscan.c keeps track of how many of the
284 * mem/swap backed and file backed pages are refeferenced.
285 * The higher the rotated/scanned ratio, the more valuable
286 * that cache is.
287 *
288 * The anon LRU stats live in [0], file LRU stats in [1]
289 */
290 unsigned long recent_rotated[2];
291 unsigned long recent_scanned[2];
292};
293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294struct zone {
295 /* Fields commonly accessed by the page allocator */
Mel Gorman41858962009-06-16 15:32:12 -0700296
297 /* zone watermarks, access with *_wmark_pages(zone) macros */
298 unsigned long watermark[NR_WMARK];
299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 /*
Christoph Lameteraa454842010-09-09 16:38:17 -0700301 * When free pages are below this point, additional steps are taken
302 * when reading the number of free pages to avoid per-cpu counter
303 * drift allowing watermarks to be breached
304 */
305 unsigned long percpu_drift_mark;
306
307 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 * We don't know if the memory that we're going to allocate will be freeable
309 * or/and it will be released eventually, so to avoid totally wasting several
310 * GB of ram we must reserve some of the lower zone memory (otherwise we risk
311 * to run OOM on the lower zones despite there's tons of freeable ram
312 * on the higher zones). This array is recalculated at runtime if the
313 * sysctl_lowmem_reserve_ratio sysctl changes.
314 */
315 unsigned long lowmem_reserve[MAX_NR_ZONES];
316
Christoph Lametere7c8d5c2005-06-21 17:14:47 -0700317#ifdef CONFIG_NUMA
Christoph Lameterd5f541e2006-09-27 01:50:08 -0700318 int node;
Christoph Lameter96146342006-07-03 00:24:13 -0700319 /*
320 * zone reclaim becomes active if more unmapped pages exist.
321 */
Christoph Lameter8417bba2006-09-25 23:31:51 -0700322 unsigned long min_unmapped_pages;
Christoph Lameter0ff38492006-09-25 23:31:52 -0700323 unsigned long min_slab_pages;
Christoph Lametere7c8d5c2005-06-21 17:14:47 -0700324#endif
Tejun Heo43cf38e2010-02-02 14:38:57 +0900325 struct per_cpu_pageset __percpu *pageset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 /*
327 * free areas of different sizes
328 */
329 spinlock_t lock;
KOSAKI Motohiro93e4a892010-03-05 13:41:55 -0800330 int all_unreclaimable; /* All pages pinned */
Dave Hansenbdc8cb92005-10-29 18:16:53 -0700331#ifdef CONFIG_MEMORY_HOTPLUG
332 /* see spanned/present_pages for more description */
333 seqlock_t span_seqlock;
334#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 struct free_area free_area[MAX_ORDER];
336
Mel Gorman835c1342007-10-16 01:25:47 -0700337#ifndef CONFIG_SPARSEMEM
338 /*
Mel Gormand9c23402007-10-16 01:26:01 -0700339 * Flags for a pageblock_nr_pages block. See pageblock-flags.h.
Mel Gorman835c1342007-10-16 01:25:47 -0700340 * In SPARSEMEM, this map is stored in struct mem_section
341 */
342 unsigned long *pageblock_flags;
343#endif /* CONFIG_SPARSEMEM */
344
Mel Gorman4f92e252010-05-24 14:32:32 -0700345#ifdef CONFIG_COMPACTION
346 /*
347 * On compaction failure, 1<<compact_defer_shift compactions
348 * are skipped before trying again. The number attempted since
349 * last failure is tracked with compact_considered.
350 */
351 unsigned int compact_considered;
352 unsigned int compact_defer_shift;
353#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355 ZONE_PADDING(_pad1_)
356
357 /* Fields commonly accessed by the page reclaim scanner */
358 spinlock_t lru_lock;
Wu Fengguang6e08a362009-06-16 15:32:29 -0700359 struct zone_lru {
Christoph Lameterb69408e2008-10-18 20:26:14 -0700360 struct list_head list;
Christoph Lameterb69408e2008-10-18 20:26:14 -0700361 } lru[NR_LRU_LISTS];
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700362
KOSAKI Motohiro6e901572009-01-07 18:08:15 -0800363 struct zone_reclaim_stat reclaim_stat;
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700364
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 unsigned long pages_scanned; /* since last reclaim */
David Rientjese815af92007-10-16 23:25:54 -0700366 unsigned long flags; /* zone flags, see below */
Martin Hicks753ee722005-06-21 17:14:41 -0700367
Christoph Lameter2244b952006-06-30 01:55:33 -0700368 /* Zone statistics */
369 atomic_long_t vm_stat[NR_VM_ZONE_STAT_ITEMS];
Christoph Lameter9eeff232006-01-18 17:42:31 -0800370
371 /*
Rik van Riel556adec2008-10-18 20:26:34 -0700372 * The target ratio of ACTIVE_ANON to INACTIVE_ANON pages on
373 * this zone's LRU. Maintained by the pageout code.
374 */
375 unsigned int inactive_ratio;
376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378 ZONE_PADDING(_pad2_)
379 /* Rarely used or read-mostly fields */
380
381 /*
382 * wait_table -- the array holding the hash table
Yasunori Goto02b694d2006-06-23 02:03:08 -0700383 * wait_table_hash_nr_entries -- the size of the hash table array
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 * wait_table_bits -- wait_table_size == (1 << wait_table_bits)
385 *
386 * The purpose of all these is to keep track of the people
387 * waiting for a page to become available and make them
388 * runnable again when possible. The trouble is that this
389 * consumes a lot of space, especially when so few things
390 * wait on pages at a given time. So instead of using
391 * per-page waitqueues, we use a waitqueue hash table.
392 *
393 * The bucket discipline is to sleep on the same queue when
394 * colliding and wake all in that wait queue when removing.
395 * When something wakes, it must check to be sure its page is
396 * truly available, a la thundering herd. The cost of a
397 * collision is great, but given the expected load of the
398 * table, they should be so rare as to be outweighed by the
399 * benefits from the saved space.
400 *
401 * __wait_on_page_locked() and unlock_page() in mm/filemap.c, are the
402 * primary users of these fields, and in mm/page_alloc.c
403 * free_area_init_core() performs the initialization of them.
404 */
405 wait_queue_head_t * wait_table;
Yasunori Goto02b694d2006-06-23 02:03:08 -0700406 unsigned long wait_table_hash_nr_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 unsigned long wait_table_bits;
408
409 /*
410 * Discontig memory support fields.
411 */
412 struct pglist_data *zone_pgdat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 /* zone_start_pfn == zone_start_paddr >> PAGE_SHIFT */
414 unsigned long zone_start_pfn;
415
Dave Hansenbdc8cb92005-10-29 18:16:53 -0700416 /*
417 * zone_start_pfn, spanned_pages and present_pages are all
418 * protected by span_seqlock. It is a seqlock because it has
419 * to be read outside of zone->lock, and it is done in the main
420 * allocator path. But, it is written quite infrequently.
421 *
422 * The lock is declared along with zone->lock because it is
423 * frequently read in proximity to zone->lock. It's good to
424 * give them a chance of being in the same cacheline.
425 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 unsigned long spanned_pages; /* total size, including holes */
427 unsigned long present_pages; /* amount of memory (excluding holes) */
428
429 /*
430 * rarely used fields:
431 */
Helge Deller15ad7cd2006-12-06 20:40:36 -0800432 const char *name;
Ravikiran G Thirumalai22fc6ec2006-01-08 01:01:27 -0800433} ____cacheline_internodealigned_in_smp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
David Rientjese815af92007-10-16 23:25:54 -0700435typedef enum {
David Rientjese815af92007-10-16 23:25:54 -0700436 ZONE_RECLAIM_LOCKED, /* prevents concurrent reclaim */
David Rientjes098d7f12007-10-16 23:25:55 -0700437 ZONE_OOM_LOCKED, /* zone is in OOM killer zonelist */
Mel Gorman0e093d992010-10-26 14:21:45 -0700438 ZONE_CONGESTED, /* zone has many dirty pages backed by
439 * a congested BDI
440 */
David Rientjese815af92007-10-16 23:25:54 -0700441} zone_flags_t;
442
443static inline void zone_set_flag(struct zone *zone, zone_flags_t flag)
444{
445 set_bit(flag, &zone->flags);
446}
David Rientjesd773ed62007-10-16 23:26:01 -0700447
448static inline int zone_test_and_set_flag(struct zone *zone, zone_flags_t flag)
449{
450 return test_and_set_bit(flag, &zone->flags);
451}
452
David Rientjese815af92007-10-16 23:25:54 -0700453static inline void zone_clear_flag(struct zone *zone, zone_flags_t flag)
454{
455 clear_bit(flag, &zone->flags);
456}
457
Mel Gorman0e093d992010-10-26 14:21:45 -0700458static inline int zone_is_reclaim_congested(const struct zone *zone)
459{
460 return test_bit(ZONE_CONGESTED, &zone->flags);
461}
462
David Rientjese815af92007-10-16 23:25:54 -0700463static inline int zone_is_reclaim_locked(const struct zone *zone)
464{
465 return test_bit(ZONE_RECLAIM_LOCKED, &zone->flags);
466}
David Rientjesd773ed62007-10-16 23:26:01 -0700467
David Rientjes098d7f12007-10-16 23:25:55 -0700468static inline int zone_is_oom_locked(const struct zone *zone)
469{
470 return test_bit(ZONE_OOM_LOCKED, &zone->flags);
471}
David Rientjese815af92007-10-16 23:25:54 -0700472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473/*
474 * The "priority" of VM scanning is how much of the queues we will scan in one
475 * go. A value of 12 for DEF_PRIORITY implies that we will scan 1/4096th of the
476 * queues ("queue_length >> 12") during an aging round.
477 */
478#define DEF_PRIORITY 12
479
Paul Jackson9276b1bc2006-12-06 20:31:48 -0800480/* Maximum number of zones on a zonelist */
481#define MAX_ZONES_PER_ZONELIST (MAX_NUMNODES * MAX_NR_ZONES)
482
483#ifdef CONFIG_NUMA
Christoph Lameter523b9452007-10-16 01:25:37 -0700484
485/*
Pete Zaitcev25a64ec2011-02-03 22:43:48 -0700486 * The NUMA zonelists are doubled because we need zonelists that restrict the
Christoph Lameter523b9452007-10-16 01:25:37 -0700487 * allocations to a single node for GFP_THISNODE.
488 *
Mel Gorman54a6eb52008-04-28 02:12:16 -0700489 * [0] : Zonelist with fallback
490 * [1] : No fallback (GFP_THISNODE)
Christoph Lameter523b9452007-10-16 01:25:37 -0700491 */
Mel Gorman54a6eb52008-04-28 02:12:16 -0700492#define MAX_ZONELISTS 2
Christoph Lameter523b9452007-10-16 01:25:37 -0700493
494
Paul Jackson9276b1bc2006-12-06 20:31:48 -0800495/*
496 * We cache key information from each zonelist for smaller cache
497 * footprint when scanning for free pages in get_page_from_freelist().
498 *
499 * 1) The BITMAP fullzones tracks which zones in a zonelist have come
500 * up short of free memory since the last time (last_fullzone_zap)
501 * we zero'd fullzones.
502 * 2) The array z_to_n[] maps each zone in the zonelist to its node
503 * id, so that we can efficiently evaluate whether that node is
504 * set in the current tasks mems_allowed.
505 *
506 * Both fullzones and z_to_n[] are one-to-one with the zonelist,
507 * indexed by a zones offset in the zonelist zones[] array.
508 *
509 * The get_page_from_freelist() routine does two scans. During the
510 * first scan, we skip zones whose corresponding bit in 'fullzones'
511 * is set or whose corresponding node in current->mems_allowed (which
512 * comes from cpusets) is not set. During the second scan, we bypass
513 * this zonelist_cache, to ensure we look methodically at each zone.
514 *
515 * Once per second, we zero out (zap) fullzones, forcing us to
516 * reconsider nodes that might have regained more free memory.
517 * The field last_full_zap is the time we last zapped fullzones.
518 *
519 * This mechanism reduces the amount of time we waste repeatedly
520 * reexaming zones for free memory when they just came up low on
521 * memory momentarilly ago.
522 *
523 * The zonelist_cache struct members logically belong in struct
524 * zonelist. However, the mempolicy zonelists constructed for
525 * MPOL_BIND are intentionally variable length (and usually much
526 * shorter). A general purpose mechanism for handling structs with
527 * multiple variable length members is more mechanism than we want
528 * here. We resort to some special case hackery instead.
529 *
530 * The MPOL_BIND zonelists don't need this zonelist_cache (in good
531 * part because they are shorter), so we put the fixed length stuff
532 * at the front of the zonelist struct, ending in a variable length
533 * zones[], as is needed by MPOL_BIND.
534 *
535 * Then we put the optional zonelist cache on the end of the zonelist
536 * struct. This optional stuff is found by a 'zlcache_ptr' pointer in
537 * the fixed length portion at the front of the struct. This pointer
538 * both enables us to find the zonelist cache, and in the case of
539 * MPOL_BIND zonelists, (which will just set the zlcache_ptr to NULL)
540 * to know that the zonelist cache is not there.
541 *
542 * The end result is that struct zonelists come in two flavors:
543 * 1) The full, fixed length version, shown below, and
544 * 2) The custom zonelists for MPOL_BIND.
545 * The custom MPOL_BIND zonelists have a NULL zlcache_ptr and no zlcache.
546 *
547 * Even though there may be multiple CPU cores on a node modifying
548 * fullzones or last_full_zap in the same zonelist_cache at the same
549 * time, we don't lock it. This is just hint data - if it is wrong now
550 * and then, the allocator will still function, perhaps a bit slower.
551 */
552
553
554struct zonelist_cache {
Paul Jackson9276b1bc2006-12-06 20:31:48 -0800555 unsigned short z_to_n[MAX_ZONES_PER_ZONELIST]; /* zone->nid */
Paul Jackson7253f4e2006-12-06 20:31:49 -0800556 DECLARE_BITMAP(fullzones, MAX_ZONES_PER_ZONELIST); /* zone full? */
Paul Jackson9276b1bc2006-12-06 20:31:48 -0800557 unsigned long last_full_zap; /* when last zap'd (jiffies) */
558};
559#else
Mel Gorman54a6eb52008-04-28 02:12:16 -0700560#define MAX_ZONELISTS 1
Paul Jackson9276b1bc2006-12-06 20:31:48 -0800561struct zonelist_cache;
562#endif
563
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564/*
Mel Gormandd1a2392008-04-28 02:12:17 -0700565 * This struct contains information about a zone in a zonelist. It is stored
566 * here to avoid dereferences into large structures and lookups of tables
567 */
568struct zoneref {
569 struct zone *zone; /* Pointer to actual zone */
570 int zone_idx; /* zone_idx(zoneref->zone) */
571};
572
573/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 * One allocation request operates on a zonelist. A zonelist
575 * is a list of zones, the first one is the 'goal' of the
576 * allocation, the other zones are fallback zones, in decreasing
577 * priority.
578 *
Paul Jackson9276b1bc2006-12-06 20:31:48 -0800579 * If zlcache_ptr is not NULL, then it is just the address of zlcache,
580 * as explained above. If zlcache_ptr is NULL, there is no zlcache.
Mel Gormandd1a2392008-04-28 02:12:17 -0700581 * *
582 * To speed the reading of the zonelist, the zonerefs contain the zone index
583 * of the entry being read. Helper functions to access information given
584 * a struct zoneref are
585 *
586 * zonelist_zone() - Return the struct zone * for an entry in _zonerefs
587 * zonelist_zone_idx() - Return the index of the zone for an entry
588 * zonelist_node_idx() - Return the index of the node for an entry
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 */
590struct zonelist {
Paul Jackson9276b1bc2006-12-06 20:31:48 -0800591 struct zonelist_cache *zlcache_ptr; // NULL or &zlcache
Mel Gormandd1a2392008-04-28 02:12:17 -0700592 struct zoneref _zonerefs[MAX_ZONES_PER_ZONELIST + 1];
Paul Jackson9276b1bc2006-12-06 20:31:48 -0800593#ifdef CONFIG_NUMA
594 struct zonelist_cache zlcache; // optional ...
595#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596};
597
Mel Gormanc7132162006-09-27 01:49:43 -0700598#ifdef CONFIG_ARCH_POPULATES_NODE_MAP
599struct node_active_region {
600 unsigned long start_pfn;
601 unsigned long end_pfn;
602 int nid;
603};
604#endif /* CONFIG_ARCH_POPULATES_NODE_MAP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Heiko Carstens5b99cd02006-09-27 01:50:01 -0700606#ifndef CONFIG_DISCONTIGMEM
607/* The array of struct pages - for discontigmem use pgdat->lmem_map */
608extern struct page *mem_map;
609#endif
610
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611/*
612 * The pg_data_t structure is used in machines with CONFIG_DISCONTIGMEM
613 * (mostly NUMA machines?) to denote a higher-level memory zone than the
614 * zone denotes.
615 *
616 * On NUMA machines, each NUMA node would have a pg_data_t to describe
617 * it's memory layout.
618 *
619 * Memory statistics and page replacement data structures are maintained on a
620 * per-zone basis.
621 */
622struct bootmem_data;
623typedef struct pglist_data {
624 struct zone node_zones[MAX_NR_ZONES];
Christoph Lameter523b9452007-10-16 01:25:37 -0700625 struct zonelist node_zonelists[MAX_ZONELISTS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 int nr_zones;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700627#ifdef CONFIG_FLAT_NODE_MEM_MAP /* means !SPARSEMEM */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 struct page *node_mem_map;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700629#ifdef CONFIG_CGROUP_MEM_RES_CTLR
630 struct page_cgroup *node_page_cgroup;
631#endif
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700632#endif
Yinghai Lu08677212010-02-10 01:20:20 -0800633#ifndef CONFIG_NO_BOOTMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 struct bootmem_data *bdata;
Yinghai Lu08677212010-02-10 01:20:20 -0800635#endif
Dave Hansen208d54e2005-10-29 18:16:52 -0700636#ifdef CONFIG_MEMORY_HOTPLUG
637 /*
638 * Must be held any time you expect node_start_pfn, node_present_pages
639 * or node_spanned_pages stay constant. Holding this will also
640 * guarantee that any pfn_valid() stays that way.
641 *
642 * Nests above zone->lock and zone->size_seqlock.
643 */
644 spinlock_t node_size_lock;
645#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 unsigned long node_start_pfn;
647 unsigned long node_present_pages; /* total number of physical pages */
648 unsigned long node_spanned_pages; /* total size of physical page
649 range, including holes */
650 int node_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 wait_queue_head_t kswapd_wait;
652 struct task_struct *kswapd;
653 int kswapd_max_order;
Mel Gorman99504742011-01-13 15:46:20 -0800654 enum zone_type classzone_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655} pg_data_t;
656
657#define node_present_pages(nid) (NODE_DATA(nid)->node_present_pages)
658#define node_spanned_pages(nid) (NODE_DATA(nid)->node_spanned_pages)
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700659#ifdef CONFIG_FLAT_NODE_MEM_MAP
Dave Hansen408fde82005-06-23 00:07:37 -0700660#define pgdat_page_nr(pgdat, pagenr) ((pgdat)->node_mem_map + (pagenr))
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700661#else
662#define pgdat_page_nr(pgdat, pagenr) pfn_to_page((pgdat)->node_start_pfn + (pagenr))
663#endif
Dave Hansen408fde82005-06-23 00:07:37 -0700664#define nid_page_nr(nid, pagenr) pgdat_page_nr(NODE_DATA(nid),(pagenr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
KAMEZAWA Hiroyukic6830c22011-06-16 17:28:07 +0900666#define node_start_pfn(nid) (NODE_DATA(nid)->node_start_pfn)
667
668#define node_end_pfn(nid) ({\
669 pg_data_t *__pgdat = NODE_DATA(nid);\
670 __pgdat->node_start_pfn + __pgdat->node_spanned_pages;\
671})
672
Dave Hansen208d54e2005-10-29 18:16:52 -0700673#include <linux/memory_hotplug.h>
674
Haicheng Li4eaf3f62010-05-24 14:32:52 -0700675extern struct mutex zonelists_mutex;
Haicheng Li1f522502010-05-24 14:32:51 -0700676void build_all_zonelists(void *data);
Mel Gorman99504742011-01-13 15:46:20 -0800677void wakeup_kswapd(struct zone *zone, int order, enum zone_type classzone_idx);
Mel Gorman88f5acf2011-01-13 15:45:41 -0800678bool zone_watermark_ok(struct zone *z, int order, unsigned long mark,
679 int classzone_idx, int alloc_flags);
680bool zone_watermark_ok_safe(struct zone *z, int order, unsigned long mark,
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800681 int classzone_idx, int alloc_flags);
Dave Hansena2f3aa02007-01-10 23:15:30 -0800682enum memmap_context {
683 MEMMAP_EARLY,
684 MEMMAP_HOTPLUG,
685};
Yasunori Goto718127c2006-06-23 02:03:10 -0700686extern int init_currently_empty_zone(struct zone *zone, unsigned long start_pfn,
Dave Hansena2f3aa02007-01-10 23:15:30 -0800687 unsigned long size,
688 enum memmap_context context);
Yasunori Goto718127c2006-06-23 02:03:10 -0700689
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690#ifdef CONFIG_HAVE_MEMORY_PRESENT
691void memory_present(int nid, unsigned long start, unsigned long end);
692#else
693static inline void memory_present(int nid, unsigned long start, unsigned long end) {}
694#endif
695
Lee Schermerhorn7aac7892010-05-26 14:45:00 -0700696#ifdef CONFIG_HAVE_MEMORYLESS_NODES
697int local_memory_node(int node_id);
698#else
699static inline int local_memory_node(int node_id) { return node_id; };
700#endif
701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702#ifdef CONFIG_NEED_NODE_MEMMAP_SIZE
703unsigned long __init node_memmap_size_bytes(int, unsigned long, unsigned long);
704#endif
705
706/*
707 * zone_idx() returns 0 for the ZONE_DMA zone, 1 for the ZONE_NORMAL zone, etc.
708 */
709#define zone_idx(zone) ((zone) - (zone)->zone_pgdat->node_zones)
710
Con Kolivasf3fe6512006-01-06 00:11:15 -0800711static inline int populated_zone(struct zone *zone)
712{
713 return (!!zone->present_pages);
714}
715
Mel Gorman2a1e2742007-07-17 04:03:12 -0700716extern int movable_zone;
717
718static inline int zone_movable_is_highmem(void)
719{
720#if defined(CONFIG_HIGHMEM) && defined(CONFIG_ARCH_POPULATES_NODE_MAP)
721 return movable_zone == ZONE_HIGHMEM;
722#else
723 return 0;
724#endif
725}
726
Christoph Lameter2f1b6242006-09-25 23:31:13 -0700727static inline int is_highmem_idx(enum zone_type idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
Christoph Lametere53ef382006-09-25 23:31:14 -0700729#ifdef CONFIG_HIGHMEM
Mel Gorman2a1e2742007-07-17 04:03:12 -0700730 return (idx == ZONE_HIGHMEM ||
731 (idx == ZONE_MOVABLE && zone_movable_is_highmem()));
Christoph Lametere53ef382006-09-25 23:31:14 -0700732#else
733 return 0;
734#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735}
736
Christoph Lameter2f1b6242006-09-25 23:31:13 -0700737static inline int is_normal_idx(enum zone_type idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
739 return (idx == ZONE_NORMAL);
740}
Nick Piggin9328b8f2006-01-06 00:11:10 -0800741
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742/**
743 * is_highmem - helper function to quickly check if a struct zone is a
744 * highmem zone or not. This is an attempt to keep references
745 * to ZONE_{DMA/NORMAL/HIGHMEM/etc} in general code to a minimum.
746 * @zone - pointer to struct zone variable
747 */
748static inline int is_highmem(struct zone *zone)
749{
Christoph Lametere53ef382006-09-25 23:31:14 -0700750#ifdef CONFIG_HIGHMEM
Harvey Harrisonddc81ed2008-04-28 02:12:07 -0700751 int zone_off = (char *)zone - (char *)zone->zone_pgdat->node_zones;
752 return zone_off == ZONE_HIGHMEM * sizeof(*zone) ||
753 (zone_off == ZONE_MOVABLE * sizeof(*zone) &&
754 zone_movable_is_highmem());
Christoph Lametere53ef382006-09-25 23:31:14 -0700755#else
756 return 0;
757#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758}
759
760static inline int is_normal(struct zone *zone)
761{
762 return zone == zone->zone_pgdat->node_zones + ZONE_NORMAL;
763}
764
Nick Piggin9328b8f2006-01-06 00:11:10 -0800765static inline int is_dma32(struct zone *zone)
766{
Christoph Lameterfb0e7942006-09-25 23:31:13 -0700767#ifdef CONFIG_ZONE_DMA32
Nick Piggin9328b8f2006-01-06 00:11:10 -0800768 return zone == zone->zone_pgdat->node_zones + ZONE_DMA32;
Christoph Lameterfb0e7942006-09-25 23:31:13 -0700769#else
770 return 0;
771#endif
Nick Piggin9328b8f2006-01-06 00:11:10 -0800772}
773
774static inline int is_dma(struct zone *zone)
775{
Christoph Lameter4b51d662007-02-10 01:43:10 -0800776#ifdef CONFIG_ZONE_DMA
Nick Piggin9328b8f2006-01-06 00:11:10 -0800777 return zone == zone->zone_pgdat->node_zones + ZONE_DMA;
Christoph Lameter4b51d662007-02-10 01:43:10 -0800778#else
779 return 0;
780#endif
Nick Piggin9328b8f2006-01-06 00:11:10 -0800781}
782
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783/* These two functions are used to setup the per zone pages min values */
784struct ctl_table;
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700785int min_free_kbytes_sysctl_handler(struct ctl_table *, int,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 void __user *, size_t *, loff_t *);
787extern int sysctl_lowmem_reserve_ratio[MAX_NR_ZONES-1];
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700788int lowmem_reserve_ratio_sysctl_handler(struct ctl_table *, int,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 void __user *, size_t *, loff_t *);
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700790int percpu_pagelist_fraction_sysctl_handler(struct ctl_table *, int,
Rohit Seth8ad4b1f2006-01-08 01:00:40 -0800791 void __user *, size_t *, loff_t *);
Christoph Lameter96146342006-07-03 00:24:13 -0700792int sysctl_min_unmapped_ratio_sysctl_handler(struct ctl_table *, int,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700793 void __user *, size_t *, loff_t *);
Christoph Lameter0ff38492006-09-25 23:31:52 -0700794int sysctl_min_slab_ratio_sysctl_handler(struct ctl_table *, int,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700795 void __user *, size_t *, loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -0700797extern int numa_zonelist_order_handler(struct ctl_table *, int,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700798 void __user *, size_t *, loff_t *);
KAMEZAWA Hiroyukif0c0b2b2007-07-15 23:38:01 -0700799extern char numa_zonelist_order[];
800#define NUMA_ZONELIST_ORDER_LEN 16 /* string buffer size */
801
Dave Hansen93b75042005-06-23 00:07:47 -0700802#ifndef CONFIG_NEED_MULTIPLE_NODES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804extern struct pglist_data contig_page_data;
805#define NODE_DATA(nid) (&contig_page_data)
806#define NODE_MEM_MAP(nid) mem_map
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Dave Hansen93b75042005-06-23 00:07:47 -0700808#else /* CONFIG_NEED_MULTIPLE_NODES */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810#include <asm/mmzone.h>
811
Dave Hansen93b75042005-06-23 00:07:47 -0700812#endif /* !CONFIG_NEED_MULTIPLE_NODES */
Dave Hansen348f8b62005-06-23 00:07:40 -0700813
KAMEZAWA Hiroyuki95144c72006-03-27 01:16:02 -0800814extern struct pglist_data *first_online_pgdat(void);
815extern struct pglist_data *next_online_pgdat(struct pglist_data *pgdat);
816extern struct zone *next_zone(struct zone *zone);
KAMEZAWA Hiroyuki8357f862006-03-27 01:15:57 -0800817
818/**
Fernando Luis Vazquez Cao12d15f02008-05-23 13:05:01 -0700819 * for_each_online_pgdat - helper macro to iterate over all online nodes
KAMEZAWA Hiroyuki8357f862006-03-27 01:15:57 -0800820 * @pgdat - pointer to a pg_data_t variable
821 */
822#define for_each_online_pgdat(pgdat) \
823 for (pgdat = first_online_pgdat(); \
824 pgdat; \
825 pgdat = next_online_pgdat(pgdat))
KAMEZAWA Hiroyuki8357f862006-03-27 01:15:57 -0800826/**
827 * for_each_zone - helper macro to iterate over all memory zones
828 * @zone - pointer to struct zone variable
829 *
830 * The user only needs to declare the zone variable, for_each_zone
831 * fills it in.
832 */
833#define for_each_zone(zone) \
834 for (zone = (first_online_pgdat())->node_zones; \
835 zone; \
836 zone = next_zone(zone))
837
KOSAKI Motohiroee99c712009-03-31 15:19:31 -0700838#define for_each_populated_zone(zone) \
839 for (zone = (first_online_pgdat())->node_zones; \
840 zone; \
841 zone = next_zone(zone)) \
842 if (!populated_zone(zone)) \
843 ; /* do nothing */ \
844 else
845
Mel Gormandd1a2392008-04-28 02:12:17 -0700846static inline struct zone *zonelist_zone(struct zoneref *zoneref)
847{
848 return zoneref->zone;
849}
850
851static inline int zonelist_zone_idx(struct zoneref *zoneref)
852{
853 return zoneref->zone_idx;
854}
855
856static inline int zonelist_node_idx(struct zoneref *zoneref)
857{
858#ifdef CONFIG_NUMA
859 /* zone_to_nid not available in this context */
860 return zoneref->zone->node;
861#else
862 return 0;
863#endif /* CONFIG_NUMA */
864}
865
Mel Gorman19770b32008-04-28 02:12:18 -0700866/**
867 * 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
868 * @z - The cursor used as a starting point for the search
869 * @highest_zoneidx - The zone index of the highest zone to return
870 * @nodes - An optional nodemask to filter the zonelist with
871 * @zone - The first suitable zone found is returned via this parameter
872 *
873 * This function returns the next zone at or below a given zone index that is
874 * within the allowed nodemask using a cursor as the starting point for the
Mel Gorman5bead2a2008-09-13 02:33:19 -0700875 * search. The zoneref returned is a cursor that represents the current zone
876 * being examined. It should be advanced by one before calling
877 * next_zones_zonelist again.
Mel Gorman19770b32008-04-28 02:12:18 -0700878 */
879struct zoneref *next_zones_zonelist(struct zoneref *z,
880 enum zone_type highest_zoneidx,
881 nodemask_t *nodes,
882 struct zone **zone);
Mel Gormandd1a2392008-04-28 02:12:17 -0700883
Mel Gorman19770b32008-04-28 02:12:18 -0700884/**
885 * first_zones_zonelist - Returns the first zone at or below highest_zoneidx within the allowed nodemask in a zonelist
886 * @zonelist - The zonelist to search for a suitable zone
887 * @highest_zoneidx - The zone index of the highest zone to return
888 * @nodes - An optional nodemask to filter the zonelist with
889 * @zone - The first suitable zone found is returned via this parameter
890 *
891 * This function returns the first zone at or below a given zone index that is
892 * within the allowed nodemask. The zoneref returned is a cursor that can be
Mel Gorman5bead2a2008-09-13 02:33:19 -0700893 * used to iterate the zonelist with next_zones_zonelist by advancing it by
894 * one before calling.
Mel Gorman19770b32008-04-28 02:12:18 -0700895 */
Mel Gormandd1a2392008-04-28 02:12:17 -0700896static inline struct zoneref *first_zones_zonelist(struct zonelist *zonelist,
Mel Gorman19770b32008-04-28 02:12:18 -0700897 enum zone_type highest_zoneidx,
898 nodemask_t *nodes,
899 struct zone **zone)
Mel Gorman54a6eb52008-04-28 02:12:16 -0700900{
Mel Gorman19770b32008-04-28 02:12:18 -0700901 return next_zones_zonelist(zonelist->_zonerefs, highest_zoneidx, nodes,
902 zone);
Mel Gorman54a6eb52008-04-28 02:12:16 -0700903}
904
Mel Gorman19770b32008-04-28 02:12:18 -0700905/**
906 * 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
907 * @zone - The current zone in the iterator
908 * @z - The current pointer within zonelist->zones being iterated
909 * @zlist - The zonelist being iterated
910 * @highidx - The zone index of the highest zone to return
911 * @nodemask - Nodemask allowed by the allocator
912 *
913 * This iterator iterates though all zones at or below a given zone index and
914 * within a given nodemask
915 */
916#define for_each_zone_zonelist_nodemask(zone, z, zlist, highidx, nodemask) \
917 for (z = first_zones_zonelist(zlist, highidx, nodemask, &zone); \
918 zone; \
Mel Gorman5bead2a2008-09-13 02:33:19 -0700919 z = next_zones_zonelist(++z, highidx, nodemask, &zone)) \
Mel Gorman54a6eb52008-04-28 02:12:16 -0700920
921/**
922 * for_each_zone_zonelist - helper macro to iterate over valid zones in a zonelist at or below a given zone index
923 * @zone - The current zone in the iterator
924 * @z - The current pointer within zonelist->zones being iterated
925 * @zlist - The zonelist being iterated
926 * @highidx - The zone index of the highest zone to return
927 *
928 * This iterator iterates though all zones at or below a given zone index.
929 */
930#define for_each_zone_zonelist(zone, z, zlist, highidx) \
Mel Gorman19770b32008-04-28 02:12:18 -0700931 for_each_zone_zonelist_nodemask(zone, z, zlist, highidx, NULL)
Mel Gorman54a6eb52008-04-28 02:12:16 -0700932
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700933#ifdef CONFIG_SPARSEMEM
934#include <asm/sparsemem.h>
935#endif
936
Mel Gormanc7132162006-09-27 01:49:43 -0700937#if !defined(CONFIG_HAVE_ARCH_EARLY_PFN_TO_NID) && \
938 !defined(CONFIG_ARCH_POPULATES_NODE_MAP)
Andrew Mortonb4544562008-04-28 02:12:39 -0700939static inline unsigned long early_pfn_to_nid(unsigned long pfn)
940{
941 return 0;
942}
Andy Whitcroftb159d432005-06-23 00:07:52 -0700943#endif
944
Andy Whitcroft2bdaf112006-01-06 00:10:53 -0800945#ifdef CONFIG_FLATMEM
946#define pfn_to_nid(pfn) (0)
947#endif
948
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700949#ifdef CONFIG_SPARSEMEM
950
951/*
952 * SECTION_SHIFT #bits space required to store a section #
953 *
954 * PA_SECTION_SHIFT physical address to/from section number
955 * PFN_SECTION_SHIFT pfn to/from section number
956 */
957#define SECTIONS_SHIFT (MAX_PHYSMEM_BITS - SECTION_SIZE_BITS)
958
959#define PA_SECTION_SHIFT (SECTION_SIZE_BITS)
960#define PFN_SECTION_SHIFT (SECTION_SIZE_BITS - PAGE_SHIFT)
961
962#define NR_MEM_SECTIONS (1UL << SECTIONS_SHIFT)
963
964#define PAGES_PER_SECTION (1UL << PFN_SECTION_SHIFT)
965#define PAGE_SECTION_MASK (~(PAGES_PER_SECTION-1))
966
Mel Gorman835c1342007-10-16 01:25:47 -0700967#define SECTION_BLOCKFLAGS_BITS \
Mel Gormand9c23402007-10-16 01:26:01 -0700968 ((1UL << (PFN_SECTION_SHIFT - pageblock_order)) * NR_PAGEBLOCK_BITS)
Mel Gorman835c1342007-10-16 01:25:47 -0700969
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700970#if (MAX_ORDER - 1 + PAGE_SHIFT) > SECTION_SIZE_BITS
971#error Allocator MAX_ORDER exceeds SECTION_SIZE
972#endif
973
Daniel Kipere3c40f32011-05-24 17:12:33 -0700974#define pfn_to_section_nr(pfn) ((pfn) >> PFN_SECTION_SHIFT)
975#define section_nr_to_pfn(sec) ((sec) << PFN_SECTION_SHIFT)
976
Daniel Kipera539f352011-05-24 17:12:51 -0700977#define SECTION_ALIGN_UP(pfn) (((pfn) + PAGES_PER_SECTION - 1) & PAGE_SECTION_MASK)
978#define SECTION_ALIGN_DOWN(pfn) ((pfn) & PAGE_SECTION_MASK)
979
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700980struct page;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700981struct page_cgroup;
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700982struct mem_section {
Andy Whitcroft29751f62005-06-23 00:08:00 -0700983 /*
984 * This is, logically, a pointer to an array of struct
985 * pages. However, it is stored with some other magic.
986 * (see sparse.c::sparse_init_one_section())
987 *
Andy Whitcroft30c253e2006-06-23 02:03:41 -0700988 * Additionally during early boot we encode node id of
989 * the location of the section here to guide allocation.
990 * (see sparse.c::memory_present())
991 *
Andy Whitcroft29751f62005-06-23 00:08:00 -0700992 * Making it a UL at least makes someone do a cast
993 * before using it wrong.
994 */
995 unsigned long section_mem_map;
Mel Gorman5c0e3062007-10-16 01:25:56 -0700996
997 /* See declaration of similar field in struct zone */
998 unsigned long *pageblock_flags;
KAMEZAWA Hiroyuki52d4b9a2008-10-18 20:28:16 -0700999#ifdef CONFIG_CGROUP_MEM_RES_CTLR
1000 /*
1001 * If !SPARSEMEM, pgdat doesn't have page_cgroup pointer. We use
1002 * section. (see memcontrol.h/page_cgroup.h about this.)
1003 */
1004 struct page_cgroup *page_cgroup;
1005 unsigned long pad;
1006#endif
Andy Whitcroftd41dee32005-06-23 00:07:54 -07001007};
1008
Bob Picco3e347262005-09-03 15:54:28 -07001009#ifdef CONFIG_SPARSEMEM_EXTREME
1010#define SECTIONS_PER_ROOT (PAGE_SIZE / sizeof (struct mem_section))
Bob Picco802f1922005-09-03 15:54:26 -07001011#else
Bob Picco3e347262005-09-03 15:54:28 -07001012#define SECTIONS_PER_ROOT 1
1013#endif
Bob Picco802f1922005-09-03 15:54:26 -07001014
Bob Picco3e347262005-09-03 15:54:28 -07001015#define SECTION_NR_TO_ROOT(sec) ((sec) / SECTIONS_PER_ROOT)
Marcelo Roberto Jimenez0faa5632010-05-24 14:32:47 -07001016#define NR_SECTION_ROOTS DIV_ROUND_UP(NR_MEM_SECTIONS, SECTIONS_PER_ROOT)
Bob Picco3e347262005-09-03 15:54:28 -07001017#define SECTION_ROOT_MASK (SECTIONS_PER_ROOT - 1)
1018
1019#ifdef CONFIG_SPARSEMEM_EXTREME
1020extern struct mem_section *mem_section[NR_SECTION_ROOTS];
1021#else
1022extern struct mem_section mem_section[NR_SECTION_ROOTS][SECTIONS_PER_ROOT];
1023#endif
Andy Whitcroftd41dee32005-06-23 00:07:54 -07001024
Andy Whitcroft29751f62005-06-23 00:08:00 -07001025static inline struct mem_section *__nr_to_section(unsigned long nr)
1026{
Bob Picco3e347262005-09-03 15:54:28 -07001027 if (!mem_section[SECTION_NR_TO_ROOT(nr)])
1028 return NULL;
1029 return &mem_section[SECTION_NR_TO_ROOT(nr)][nr & SECTION_ROOT_MASK];
Andy Whitcroft29751f62005-06-23 00:08:00 -07001030}
Dave Hansen4ca644d2005-10-29 18:16:51 -07001031extern int __section_nr(struct mem_section* ms);
Yasunori Goto04753272008-04-28 02:13:31 -07001032extern unsigned long usemap_size(void);
Andy Whitcroft29751f62005-06-23 00:08:00 -07001033
1034/*
1035 * We use the lower bits of the mem_map pointer to store
1036 * a little bit of information. There should be at least
1037 * 3 bits here due to 32-bit alignment.
1038 */
1039#define SECTION_MARKED_PRESENT (1UL<<0)
1040#define SECTION_HAS_MEM_MAP (1UL<<1)
1041#define SECTION_MAP_LAST_BIT (1UL<<2)
1042#define SECTION_MAP_MASK (~(SECTION_MAP_LAST_BIT-1))
Andy Whitcroft30c253e2006-06-23 02:03:41 -07001043#define SECTION_NID_SHIFT 2
Andy Whitcroft29751f62005-06-23 00:08:00 -07001044
1045static inline struct page *__section_mem_map_addr(struct mem_section *section)
1046{
1047 unsigned long map = section->section_mem_map;
1048 map &= SECTION_MAP_MASK;
1049 return (struct page *)map;
1050}
1051
Andy Whitcroft540557b2007-10-16 01:24:11 -07001052static inline int present_section(struct mem_section *section)
Andy Whitcroft29751f62005-06-23 00:08:00 -07001053{
Bob Picco802f1922005-09-03 15:54:26 -07001054 return (section && (section->section_mem_map & SECTION_MARKED_PRESENT));
Andy Whitcroft29751f62005-06-23 00:08:00 -07001055}
1056
Andy Whitcroft540557b2007-10-16 01:24:11 -07001057static inline int present_section_nr(unsigned long nr)
1058{
1059 return present_section(__nr_to_section(nr));
1060}
1061
1062static inline int valid_section(struct mem_section *section)
Andy Whitcroft29751f62005-06-23 00:08:00 -07001063{
Bob Picco802f1922005-09-03 15:54:26 -07001064 return (section && (section->section_mem_map & SECTION_HAS_MEM_MAP));
Andy Whitcroft29751f62005-06-23 00:08:00 -07001065}
1066
1067static inline int valid_section_nr(unsigned long nr)
1068{
1069 return valid_section(__nr_to_section(nr));
1070}
1071
Andy Whitcroftd41dee32005-06-23 00:07:54 -07001072static inline struct mem_section *__pfn_to_section(unsigned long pfn)
1073{
Andy Whitcroft29751f62005-06-23 00:08:00 -07001074 return __nr_to_section(pfn_to_section_nr(pfn));
Andy Whitcroftd41dee32005-06-23 00:07:54 -07001075}
1076
Will Deacon7b7bf492011-05-19 13:21:14 +01001077#ifndef CONFIG_HAVE_ARCH_PFN_VALID
Andy Whitcroftd41dee32005-06-23 00:07:54 -07001078static inline int pfn_valid(unsigned long pfn)
1079{
1080 if (pfn_to_section_nr(pfn) >= NR_MEM_SECTIONS)
1081 return 0;
Andy Whitcroft29751f62005-06-23 00:08:00 -07001082 return valid_section(__nr_to_section(pfn_to_section_nr(pfn)));
Andy Whitcroftd41dee32005-06-23 00:07:54 -07001083}
Will Deacon7b7bf492011-05-19 13:21:14 +01001084#endif
Andy Whitcroftd41dee32005-06-23 00:07:54 -07001085
Andy Whitcroft540557b2007-10-16 01:24:11 -07001086static inline int pfn_present(unsigned long pfn)
1087{
1088 if (pfn_to_section_nr(pfn) >= NR_MEM_SECTIONS)
1089 return 0;
1090 return present_section(__nr_to_section(pfn_to_section_nr(pfn)));
1091}
1092
Andy Whitcroftd41dee32005-06-23 00:07:54 -07001093/*
1094 * These are _only_ used during initialisation, therefore they
1095 * can use __initdata ... They could have names to indicate
1096 * this restriction.
1097 */
1098#ifdef CONFIG_NUMA
Andy Whitcroft161599f2006-01-06 00:10:54 -08001099#define pfn_to_nid(pfn) \
1100({ \
1101 unsigned long __pfn_to_nid_pfn = (pfn); \
1102 page_to_nid(pfn_to_page(__pfn_to_nid_pfn)); \
1103})
Andy Whitcroft2bdaf112006-01-06 00:10:53 -08001104#else
1105#define pfn_to_nid(pfn) (0)
Andy Whitcroftd41dee32005-06-23 00:07:54 -07001106#endif
1107
Andy Whitcroftd41dee32005-06-23 00:07:54 -07001108#define early_pfn_valid(pfn) pfn_valid(pfn)
1109void sparse_init(void);
1110#else
1111#define sparse_init() do {} while (0)
Dave Hansen28ae55c2005-09-03 15:54:29 -07001112#define sparse_index_init(_sec, _nid) do {} while (0)
Andy Whitcroftd41dee32005-06-23 00:07:54 -07001113#endif /* CONFIG_SPARSEMEM */
1114
Andy Whitcroft75167952006-10-21 10:24:14 -07001115#ifdef CONFIG_NODES_SPAN_OTHER_NODES
KAMEZAWA Hiroyukicc2559b2009-02-18 14:48:33 -08001116bool early_pfn_in_nid(unsigned long pfn, int nid);
Andy Whitcroft75167952006-10-21 10:24:14 -07001117#else
1118#define early_pfn_in_nid(pfn, nid) (1)
1119#endif
1120
Andy Whitcroftd41dee32005-06-23 00:07:54 -07001121#ifndef early_pfn_valid
1122#define early_pfn_valid(pfn) (1)
1123#endif
1124
1125void memory_present(int nid, unsigned long start, unsigned long end);
1126unsigned long __init node_memmap_size_bytes(int, unsigned long, unsigned long);
1127
Andy Whitcroft14e07292007-05-06 14:49:14 -07001128/*
1129 * If it is possible to have holes within a MAX_ORDER_NR_PAGES, then we
1130 * need to check pfn validility within that MAX_ORDER_NR_PAGES block.
1131 * pfn_valid_within() should be used in this case; we optimise this away
1132 * when we have no holes within a MAX_ORDER_NR_PAGES block.
1133 */
1134#ifdef CONFIG_HOLES_IN_ZONE
1135#define pfn_valid_within(pfn) pfn_valid(pfn)
1136#else
1137#define pfn_valid_within(pfn) (1)
1138#endif
1139
Mel Gormaneb335752009-05-13 17:34:48 +01001140#ifdef CONFIG_ARCH_HAS_HOLES_MEMORYMODEL
1141/*
1142 * pfn_valid() is meant to be able to tell if a given PFN has valid memmap
1143 * associated with it or not. In FLATMEM, it is expected that holes always
1144 * have valid memmap as long as there is valid PFNs either side of the hole.
1145 * In SPARSEMEM, it is assumed that a valid section has a memmap for the
1146 * entire section.
1147 *
1148 * However, an ARM, and maybe other embedded architectures in the future
1149 * free memmap backing holes to save memory on the assumption the memmap is
1150 * never used. The page_zone linkages are then broken even though pfn_valid()
1151 * returns true. A walker of the full memmap must then do this additional
1152 * check to ensure the memmap they are looking at is sane by making sure
1153 * the zone and PFN linkages are still valid. This is expensive, but walkers
1154 * of the full memmap are extremely rare.
1155 */
1156int memmap_valid_within(unsigned long pfn,
1157 struct page *page, struct zone *zone);
1158#else
1159static inline int memmap_valid_within(unsigned long pfn,
1160 struct page *page, struct zone *zone)
1161{
1162 return 1;
1163}
1164#endif /* CONFIG_ARCH_HAS_HOLES_MEMORYMODEL */
1165
Christoph Lameter97965472008-04-28 02:12:54 -07001166#endif /* !__GENERATING_BOUNDS.H */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167#endif /* !__ASSEMBLY__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168#endif /* _LINUX_MMZONE_H */