blob: 2f1544e83042af69d45862f216781de0fe22d9fe [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_MMZONE_H
2#define _LINUX_MMZONE_H
3
4#ifdef __KERNEL__
5#ifndef __ASSEMBLY__
6
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/spinlock.h>
8#include <linux/list.h>
9#include <linux/wait.h>
10#include <linux/cache.h>
11#include <linux/threads.h>
12#include <linux/numa.h>
13#include <linux/init.h>
Dave Hansenbdc8cb92005-10-29 18:16:53 -070014#include <linux/seqlock.h>
KAMEZAWA Hiroyuki8357f862006-03-27 01:15:57 -080015#include <linux/nodemask.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <asm/atomic.h>
Ralf Baechle93ff66b2006-06-04 02:51:29 -070017#include <asm/page.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19/* Free memory management - zoned buddy allocator. */
20#ifndef CONFIG_FORCE_MAX_ZONEORDER
21#define MAX_ORDER 11
22#else
23#define MAX_ORDER CONFIG_FORCE_MAX_ZONEORDER
24#endif
Bob Piccoe984bb42006-05-20 15:00:31 -070025#define MAX_ORDER_NR_PAGES (1 << (MAX_ORDER - 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27struct free_area {
28 struct list_head free_list;
29 unsigned long nr_free;
30};
31
32struct pglist_data;
33
34/*
35 * zone->lock and zone->lru_lock are two of the hottest locks in the kernel.
36 * So add a wild amount of padding here to ensure that they fall into separate
37 * cachelines. There are very few zone structures in the machine, so space
38 * consumption is not a concern here.
39 */
40#if defined(CONFIG_SMP)
41struct zone_padding {
42 char x[0];
Ravikiran G Thirumalai22fc6ec2006-01-08 01:01:27 -080043} ____cacheline_internodealigned_in_smp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#define ZONE_PADDING(name) struct zone_padding name;
45#else
46#define ZONE_PADDING(name)
47#endif
48
Christoph Lameter2244b952006-06-30 01:55:33 -070049enum zone_stat_item {
Christoph Lameter51ed4492007-02-10 01:43:02 -080050 /* First 128 byte cacheline (assuming 64 bit words) */
Christoph Lameterd23ad422007-02-10 01:43:02 -080051 NR_FREE_PAGES,
Christoph Lameterc8785382007-02-10 01:43:01 -080052 NR_INACTIVE,
53 NR_ACTIVE,
Christoph Lameterf3dbd342006-06-30 01:55:36 -070054 NR_ANON_PAGES, /* Mapped anonymous pages */
55 NR_FILE_MAPPED, /* pagecache pages mapped into pagetables.
Christoph Lameter65ba55f2006-06-30 01:55:34 -070056 only modified from process context */
Christoph Lameter347ce432006-06-30 01:55:35 -070057 NR_FILE_PAGES,
Christoph Lameterb1e7a8f2006-06-30 01:55:39 -070058 NR_FILE_DIRTY,
Christoph Lameterce866b32006-06-30 01:55:40 -070059 NR_WRITEBACK,
Christoph Lameter51ed4492007-02-10 01:43:02 -080060 /* Second 128 byte cacheline */
61 NR_SLAB_RECLAIMABLE,
62 NR_SLAB_UNRECLAIMABLE,
63 NR_PAGETABLE, /* used for pagetables */
Christoph Lameterfd39fc82006-06-30 01:55:40 -070064 NR_UNSTABLE_NFS, /* NFS unstable pages */
Christoph Lameterd2c5e302006-06-30 01:55:41 -070065 NR_BOUNCE,
Andrew Mortone129b5c2006-09-27 01:50:00 -070066 NR_VMSCAN_WRITE,
Christoph Lameterca889e62006-06-30 01:55:44 -070067#ifdef CONFIG_NUMA
68 NUMA_HIT, /* allocated in intended node */
69 NUMA_MISS, /* allocated in non intended node */
70 NUMA_FOREIGN, /* was intended here, hit elsewhere */
71 NUMA_INTERLEAVE_HIT, /* interleaver preferred this zone */
72 NUMA_LOCAL, /* allocation from local node */
73 NUMA_OTHER, /* allocation from other node */
74#endif
Christoph Lameter2244b952006-06-30 01:55:33 -070075 NR_VM_ZONE_STAT_ITEMS };
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077struct per_cpu_pages {
78 int count; /* number of pages in the list */
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 int high; /* high watermark, emptying needed */
80 int batch; /* chunk size for buddy add/remove */
81 struct list_head list; /* the list of pages */
82};
83
84struct per_cpu_pageset {
85 struct per_cpu_pages pcp[2]; /* 0: hot. 1: cold */
Christoph Lameter2244b952006-06-30 01:55:33 -070086#ifdef CONFIG_SMP
Christoph Lameterdf9ecab2006-08-31 21:27:35 -070087 s8 stat_threshold;
Christoph Lameter2244b952006-06-30 01:55:33 -070088 s8 vm_stat_diff[NR_VM_ZONE_STAT_ITEMS];
89#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070090} ____cacheline_aligned_in_smp;
91
Christoph Lametere7c8d5c2005-06-21 17:14:47 -070092#ifdef CONFIG_NUMA
93#define zone_pcp(__z, __cpu) ((__z)->pageset[(__cpu)])
94#else
95#define zone_pcp(__z, __cpu) (&(__z)->pageset[(__cpu)])
96#endif
97
Christoph Lameter2f1b6242006-09-25 23:31:13 -070098enum zone_type {
Christoph Lameter4b51d662007-02-10 01:43:10 -080099#ifdef CONFIG_ZONE_DMA
Christoph Lameter2f1b6242006-09-25 23:31:13 -0700100 /*
101 * ZONE_DMA is used when there are devices that are not able
102 * to do DMA to all of addressable memory (ZONE_NORMAL). Then we
103 * carve out the portion of memory that is needed for these devices.
104 * The range is arch specific.
105 *
106 * Some examples
107 *
108 * Architecture Limit
109 * ---------------------------
110 * parisc, ia64, sparc <4G
111 * s390 <2G
112 * arm26 <48M
113 * arm Various
114 * alpha Unlimited or 0-16MB.
115 *
116 * i386, x86_64 and multiple other arches
117 * <16M.
118 */
119 ZONE_DMA,
Christoph Lameter4b51d662007-02-10 01:43:10 -0800120#endif
Christoph Lameterfb0e7942006-09-25 23:31:13 -0700121#ifdef CONFIG_ZONE_DMA32
Christoph Lameter2f1b6242006-09-25 23:31:13 -0700122 /*
123 * x86_64 needs two ZONE_DMAs because it supports devices that are
124 * only able to do DMA to the lower 16M but also 32 bit devices that
125 * can only do DMA areas below 4G.
126 */
127 ZONE_DMA32,
Christoph Lameterfb0e7942006-09-25 23:31:13 -0700128#endif
Christoph Lameter2f1b6242006-09-25 23:31:13 -0700129 /*
130 * Normal addressable memory is in ZONE_NORMAL. DMA operations can be
131 * performed on pages in ZONE_NORMAL if the DMA devices support
132 * transfers to all addressable memory.
133 */
134 ZONE_NORMAL,
Christoph Lametere53ef382006-09-25 23:31:14 -0700135#ifdef CONFIG_HIGHMEM
Christoph Lameter2f1b6242006-09-25 23:31:13 -0700136 /*
137 * A memory area that is only addressable by the kernel through
138 * mapping portions into its own address space. This is for example
139 * used by i386 to allow the kernel to address the memory beyond
140 * 900MB. The kernel will set up special mappings (page
141 * table entries on i386) for each page that the kernel needs to
142 * access.
143 */
144 ZONE_HIGHMEM,
Christoph Lametere53ef382006-09-25 23:31:14 -0700145#endif
Christoph Lameter2f1b6242006-09-25 23:31:13 -0700146 MAX_NR_ZONES
147};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149/*
150 * When a memory allocation must conform to specific limitations (such
151 * as being suitable for DMA) the caller will pass in hints to the
152 * allocator in the gfp_mask, in the zone modifier bits. These bits
153 * are used to select a priority ordered list of memory zones which
Christoph Lameter19655d32006-09-25 23:31:19 -0700154 * match the requested limits. See gfp_zone() in include/linux/gfp.h
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 */
Christoph Lameterfb0e7942006-09-25 23:31:13 -0700156
Christoph Lameter4b51d662007-02-10 01:43:10 -0800157/*
158 * Count the active zones. Note that the use of defined(X) outside
159 * #if and family is not necessarily defined so ensure we cannot use
160 * it later. Use __ZONE_COUNT to work out how many shift bits we need.
161 */
162#define __ZONE_COUNT ( \
163 defined(CONFIG_ZONE_DMA) \
164 + defined(CONFIG_ZONE_DMA32) \
165 + 1 \
166 + defined(CONFIG_HIGHMEM) \
167)
168#if __ZONE_COUNT < 2
169#define ZONES_SHIFT 0
170#elif __ZONE_COUNT <= 2
Christoph Lameter19655d32006-09-25 23:31:19 -0700171#define ZONES_SHIFT 1
Christoph Lameter4b51d662007-02-10 01:43:10 -0800172#elif __ZONE_COUNT <= 4
Christoph Lameter19655d32006-09-25 23:31:19 -0700173#define ZONES_SHIFT 2
Christoph Lameter4b51d662007-02-10 01:43:10 -0800174#else
175#error ZONES_SHIFT -- too many zones configured adjust calculation
Christoph Lameterfb0e7942006-09-25 23:31:13 -0700176#endif
Christoph Lameter4b51d662007-02-10 01:43:10 -0800177#undef __ZONE_COUNT
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179struct zone {
180 /* Fields commonly accessed by the page allocator */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 unsigned long pages_min, pages_low, pages_high;
182 /*
183 * We don't know if the memory that we're going to allocate will be freeable
184 * or/and it will be released eventually, so to avoid totally wasting several
185 * GB of ram we must reserve some of the lower zone memory (otherwise we risk
186 * to run OOM on the lower zones despite there's tons of freeable ram
187 * on the higher zones). This array is recalculated at runtime if the
188 * sysctl_lowmem_reserve_ratio sysctl changes.
189 */
190 unsigned long lowmem_reserve[MAX_NR_ZONES];
191
Christoph Lametere7c8d5c2005-06-21 17:14:47 -0700192#ifdef CONFIG_NUMA
Christoph Lameterd5f541e2006-09-27 01:50:08 -0700193 int node;
Christoph Lameter96146342006-07-03 00:24:13 -0700194 /*
195 * zone reclaim becomes active if more unmapped pages exist.
196 */
Christoph Lameter8417bba2006-09-25 23:31:51 -0700197 unsigned long min_unmapped_pages;
Christoph Lameter0ff38492006-09-25 23:31:52 -0700198 unsigned long min_slab_pages;
Christoph Lametere7c8d5c2005-06-21 17:14:47 -0700199 struct per_cpu_pageset *pageset[NR_CPUS];
200#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 struct per_cpu_pageset pageset[NR_CPUS];
Christoph Lametere7c8d5c2005-06-21 17:14:47 -0700202#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 /*
204 * free areas of different sizes
205 */
206 spinlock_t lock;
Dave Hansenbdc8cb92005-10-29 18:16:53 -0700207#ifdef CONFIG_MEMORY_HOTPLUG
208 /* see spanned/present_pages for more description */
209 seqlock_t span_seqlock;
210#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 struct free_area free_area[MAX_ORDER];
212
213
214 ZONE_PADDING(_pad1_)
215
216 /* Fields commonly accessed by the page reclaim scanner */
217 spinlock_t lru_lock;
218 struct list_head active_list;
219 struct list_head inactive_list;
220 unsigned long nr_scan_active;
221 unsigned long nr_scan_inactive;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 unsigned long pages_scanned; /* since last reclaim */
223 int all_unreclaimable; /* All pages pinned */
224
Martin Hicks1e7e5a92005-06-21 17:14:43 -0700225 /* A count of how many reclaimers are scanning this zone */
226 atomic_t reclaim_in_progress;
Martin Hicks753ee722005-06-21 17:14:41 -0700227
Christoph Lameter2244b952006-06-30 01:55:33 -0700228 /* Zone statistics */
229 atomic_long_t vm_stat[NR_VM_ZONE_STAT_ITEMS];
Christoph Lameter9eeff232006-01-18 17:42:31 -0800230
231 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 * prev_priority holds the scanning priority for this zone. It is
233 * defined as the scanning priority at which we achieved our reclaim
234 * target at the previous try_to_free_pages() or balance_pgdat()
235 * invokation.
236 *
237 * We use prev_priority as a measure of how much stress page reclaim is
238 * under - it drives the swappiness decision: whether to unmap mapped
239 * pages.
240 *
Martin Bligh3bb1a8522006-10-28 10:38:24 -0700241 * Access to both this field is quite racy even on uniprocessor. But
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 * it is expected to average out OK.
243 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 int prev_priority;
245
246
247 ZONE_PADDING(_pad2_)
248 /* Rarely used or read-mostly fields */
249
250 /*
251 * wait_table -- the array holding the hash table
Yasunori Goto02b694d2006-06-23 02:03:08 -0700252 * wait_table_hash_nr_entries -- the size of the hash table array
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 * wait_table_bits -- wait_table_size == (1 << wait_table_bits)
254 *
255 * The purpose of all these is to keep track of the people
256 * waiting for a page to become available and make them
257 * runnable again when possible. The trouble is that this
258 * consumes a lot of space, especially when so few things
259 * wait on pages at a given time. So instead of using
260 * per-page waitqueues, we use a waitqueue hash table.
261 *
262 * The bucket discipline is to sleep on the same queue when
263 * colliding and wake all in that wait queue when removing.
264 * When something wakes, it must check to be sure its page is
265 * truly available, a la thundering herd. The cost of a
266 * collision is great, but given the expected load of the
267 * table, they should be so rare as to be outweighed by the
268 * benefits from the saved space.
269 *
270 * __wait_on_page_locked() and unlock_page() in mm/filemap.c, are the
271 * primary users of these fields, and in mm/page_alloc.c
272 * free_area_init_core() performs the initialization of them.
273 */
274 wait_queue_head_t * wait_table;
Yasunori Goto02b694d2006-06-23 02:03:08 -0700275 unsigned long wait_table_hash_nr_entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 unsigned long wait_table_bits;
277
278 /*
279 * Discontig memory support fields.
280 */
281 struct pglist_data *zone_pgdat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 /* zone_start_pfn == zone_start_paddr >> PAGE_SHIFT */
283 unsigned long zone_start_pfn;
284
Dave Hansenbdc8cb92005-10-29 18:16:53 -0700285 /*
286 * zone_start_pfn, spanned_pages and present_pages are all
287 * protected by span_seqlock. It is a seqlock because it has
288 * to be read outside of zone->lock, and it is done in the main
289 * allocator path. But, it is written quite infrequently.
290 *
291 * The lock is declared along with zone->lock because it is
292 * frequently read in proximity to zone->lock. It's good to
293 * give them a chance of being in the same cacheline.
294 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 unsigned long spanned_pages; /* total size, including holes */
296 unsigned long present_pages; /* amount of memory (excluding holes) */
297
298 /*
299 * rarely used fields:
300 */
Helge Deller15ad7cd2006-12-06 20:40:36 -0800301 const char *name;
Ravikiran G Thirumalai22fc6ec2006-01-08 01:01:27 -0800302} ____cacheline_internodealigned_in_smp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304/*
305 * The "priority" of VM scanning is how much of the queues we will scan in one
306 * go. A value of 12 for DEF_PRIORITY implies that we will scan 1/4096th of the
307 * queues ("queue_length >> 12") during an aging round.
308 */
309#define DEF_PRIORITY 12
310
Paul Jackson9276b1bc2006-12-06 20:31:48 -0800311/* Maximum number of zones on a zonelist */
312#define MAX_ZONES_PER_ZONELIST (MAX_NUMNODES * MAX_NR_ZONES)
313
314#ifdef CONFIG_NUMA
315/*
316 * We cache key information from each zonelist for smaller cache
317 * footprint when scanning for free pages in get_page_from_freelist().
318 *
319 * 1) The BITMAP fullzones tracks which zones in a zonelist have come
320 * up short of free memory since the last time (last_fullzone_zap)
321 * we zero'd fullzones.
322 * 2) The array z_to_n[] maps each zone in the zonelist to its node
323 * id, so that we can efficiently evaluate whether that node is
324 * set in the current tasks mems_allowed.
325 *
326 * Both fullzones and z_to_n[] are one-to-one with the zonelist,
327 * indexed by a zones offset in the zonelist zones[] array.
328 *
329 * The get_page_from_freelist() routine does two scans. During the
330 * first scan, we skip zones whose corresponding bit in 'fullzones'
331 * is set or whose corresponding node in current->mems_allowed (which
332 * comes from cpusets) is not set. During the second scan, we bypass
333 * this zonelist_cache, to ensure we look methodically at each zone.
334 *
335 * Once per second, we zero out (zap) fullzones, forcing us to
336 * reconsider nodes that might have regained more free memory.
337 * The field last_full_zap is the time we last zapped fullzones.
338 *
339 * This mechanism reduces the amount of time we waste repeatedly
340 * reexaming zones for free memory when they just came up low on
341 * memory momentarilly ago.
342 *
343 * The zonelist_cache struct members logically belong in struct
344 * zonelist. However, the mempolicy zonelists constructed for
345 * MPOL_BIND are intentionally variable length (and usually much
346 * shorter). A general purpose mechanism for handling structs with
347 * multiple variable length members is more mechanism than we want
348 * here. We resort to some special case hackery instead.
349 *
350 * The MPOL_BIND zonelists don't need this zonelist_cache (in good
351 * part because they are shorter), so we put the fixed length stuff
352 * at the front of the zonelist struct, ending in a variable length
353 * zones[], as is needed by MPOL_BIND.
354 *
355 * Then we put the optional zonelist cache on the end of the zonelist
356 * struct. This optional stuff is found by a 'zlcache_ptr' pointer in
357 * the fixed length portion at the front of the struct. This pointer
358 * both enables us to find the zonelist cache, and in the case of
359 * MPOL_BIND zonelists, (which will just set the zlcache_ptr to NULL)
360 * to know that the zonelist cache is not there.
361 *
362 * The end result is that struct zonelists come in two flavors:
363 * 1) The full, fixed length version, shown below, and
364 * 2) The custom zonelists for MPOL_BIND.
365 * The custom MPOL_BIND zonelists have a NULL zlcache_ptr and no zlcache.
366 *
367 * Even though there may be multiple CPU cores on a node modifying
368 * fullzones or last_full_zap in the same zonelist_cache at the same
369 * time, we don't lock it. This is just hint data - if it is wrong now
370 * and then, the allocator will still function, perhaps a bit slower.
371 */
372
373
374struct zonelist_cache {
Paul Jackson9276b1bc2006-12-06 20:31:48 -0800375 unsigned short z_to_n[MAX_ZONES_PER_ZONELIST]; /* zone->nid */
Paul Jackson7253f4e2006-12-06 20:31:49 -0800376 DECLARE_BITMAP(fullzones, MAX_ZONES_PER_ZONELIST); /* zone full? */
Paul Jackson9276b1bc2006-12-06 20:31:48 -0800377 unsigned long last_full_zap; /* when last zap'd (jiffies) */
378};
379#else
380struct zonelist_cache;
381#endif
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383/*
384 * One allocation request operates on a zonelist. A zonelist
385 * is a list of zones, the first one is the 'goal' of the
386 * allocation, the other zones are fallback zones, in decreasing
387 * priority.
388 *
Paul Jackson9276b1bc2006-12-06 20:31:48 -0800389 * If zlcache_ptr is not NULL, then it is just the address of zlcache,
390 * as explained above. If zlcache_ptr is NULL, there is no zlcache.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 */
Paul Jackson9276b1bc2006-12-06 20:31:48 -0800392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393struct zonelist {
Paul Jackson9276b1bc2006-12-06 20:31:48 -0800394 struct zonelist_cache *zlcache_ptr; // NULL or &zlcache
395 struct zone *zones[MAX_ZONES_PER_ZONELIST + 1]; // NULL delimited
396#ifdef CONFIG_NUMA
397 struct zonelist_cache zlcache; // optional ...
398#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399};
400
Mel Gormanc7132162006-09-27 01:49:43 -0700401#ifdef CONFIG_ARCH_POPULATES_NODE_MAP
402struct node_active_region {
403 unsigned long start_pfn;
404 unsigned long end_pfn;
405 int nid;
406};
407#endif /* CONFIG_ARCH_POPULATES_NODE_MAP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Heiko Carstens5b99cd02006-09-27 01:50:01 -0700409#ifndef CONFIG_DISCONTIGMEM
410/* The array of struct pages - for discontigmem use pgdat->lmem_map */
411extern struct page *mem_map;
412#endif
413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414/*
415 * The pg_data_t structure is used in machines with CONFIG_DISCONTIGMEM
416 * (mostly NUMA machines?) to denote a higher-level memory zone than the
417 * zone denotes.
418 *
419 * On NUMA machines, each NUMA node would have a pg_data_t to describe
420 * it's memory layout.
421 *
422 * Memory statistics and page replacement data structures are maintained on a
423 * per-zone basis.
424 */
425struct bootmem_data;
426typedef struct pglist_data {
427 struct zone node_zones[MAX_NR_ZONES];
Christoph Lameter19655d32006-09-25 23:31:19 -0700428 struct zonelist node_zonelists[MAX_NR_ZONES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 int nr_zones;
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700430#ifdef CONFIG_FLAT_NODE_MEM_MAP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 struct page *node_mem_map;
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700432#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 struct bootmem_data *bdata;
Dave Hansen208d54e2005-10-29 18:16:52 -0700434#ifdef CONFIG_MEMORY_HOTPLUG
435 /*
436 * Must be held any time you expect node_start_pfn, node_present_pages
437 * or node_spanned_pages stay constant. Holding this will also
438 * guarantee that any pfn_valid() stays that way.
439 *
440 * Nests above zone->lock and zone->size_seqlock.
441 */
442 spinlock_t node_size_lock;
443#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 unsigned long node_start_pfn;
445 unsigned long node_present_pages; /* total number of physical pages */
446 unsigned long node_spanned_pages; /* total size of physical page
447 range, including holes */
448 int node_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 wait_queue_head_t kswapd_wait;
450 struct task_struct *kswapd;
451 int kswapd_max_order;
452} pg_data_t;
453
454#define node_present_pages(nid) (NODE_DATA(nid)->node_present_pages)
455#define node_spanned_pages(nid) (NODE_DATA(nid)->node_spanned_pages)
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700456#ifdef CONFIG_FLAT_NODE_MEM_MAP
Dave Hansen408fde82005-06-23 00:07:37 -0700457#define pgdat_page_nr(pgdat, pagenr) ((pgdat)->node_mem_map + (pagenr))
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700458#else
459#define pgdat_page_nr(pgdat, pagenr) pfn_to_page((pgdat)->node_start_pfn + (pagenr))
460#endif
Dave Hansen408fde82005-06-23 00:07:37 -0700461#define nid_page_nr(nid, pagenr) pgdat_page_nr(NODE_DATA(nid),(pagenr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Dave Hansen208d54e2005-10-29 18:16:52 -0700463#include <linux/memory_hotplug.h>
464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465void get_zone_counts(unsigned long *active, unsigned long *inactive,
466 unsigned long *free);
467void build_all_zonelists(void);
468void wakeup_kswapd(struct zone *zone, int order);
469int zone_watermark_ok(struct zone *z, int order, unsigned long mark,
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800470 int classzone_idx, int alloc_flags);
Dave Hansena2f3aa022007-01-10 23:15:30 -0800471enum memmap_context {
472 MEMMAP_EARLY,
473 MEMMAP_HOTPLUG,
474};
Yasunori Goto718127c2006-06-23 02:03:10 -0700475extern int init_currently_empty_zone(struct zone *zone, unsigned long start_pfn,
Dave Hansena2f3aa022007-01-10 23:15:30 -0800476 unsigned long size,
477 enum memmap_context context);
Yasunori Goto718127c2006-06-23 02:03:10 -0700478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479#ifdef CONFIG_HAVE_MEMORY_PRESENT
480void memory_present(int nid, unsigned long start, unsigned long end);
481#else
482static inline void memory_present(int nid, unsigned long start, unsigned long end) {}
483#endif
484
485#ifdef CONFIG_NEED_NODE_MEMMAP_SIZE
486unsigned long __init node_memmap_size_bytes(int, unsigned long, unsigned long);
487#endif
488
489/*
490 * zone_idx() returns 0 for the ZONE_DMA zone, 1 for the ZONE_NORMAL zone, etc.
491 */
492#define zone_idx(zone) ((zone) - (zone)->zone_pgdat->node_zones)
493
Con Kolivasf3fe6512006-01-06 00:11:15 -0800494static inline int populated_zone(struct zone *zone)
495{
496 return (!!zone->present_pages);
497}
498
Christoph Lameter2f1b6242006-09-25 23:31:13 -0700499static inline int is_highmem_idx(enum zone_type idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
Christoph Lametere53ef382006-09-25 23:31:14 -0700501#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 return (idx == ZONE_HIGHMEM);
Christoph Lametere53ef382006-09-25 23:31:14 -0700503#else
504 return 0;
505#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506}
507
Christoph Lameter2f1b6242006-09-25 23:31:13 -0700508static inline int is_normal_idx(enum zone_type idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
510 return (idx == ZONE_NORMAL);
511}
Nick Piggin9328b8f2006-01-06 00:11:10 -0800512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513/**
514 * is_highmem - helper function to quickly check if a struct zone is a
515 * highmem zone or not. This is an attempt to keep references
516 * to ZONE_{DMA/NORMAL/HIGHMEM/etc} in general code to a minimum.
517 * @zone - pointer to struct zone variable
518 */
519static inline int is_highmem(struct zone *zone)
520{
Christoph Lametere53ef382006-09-25 23:31:14 -0700521#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 return zone == zone->zone_pgdat->node_zones + ZONE_HIGHMEM;
Christoph Lametere53ef382006-09-25 23:31:14 -0700523#else
524 return 0;
525#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526}
527
528static inline int is_normal(struct zone *zone)
529{
530 return zone == zone->zone_pgdat->node_zones + ZONE_NORMAL;
531}
532
Nick Piggin9328b8f2006-01-06 00:11:10 -0800533static inline int is_dma32(struct zone *zone)
534{
Christoph Lameterfb0e7942006-09-25 23:31:13 -0700535#ifdef CONFIG_ZONE_DMA32
Nick Piggin9328b8f2006-01-06 00:11:10 -0800536 return zone == zone->zone_pgdat->node_zones + ZONE_DMA32;
Christoph Lameterfb0e7942006-09-25 23:31:13 -0700537#else
538 return 0;
539#endif
Nick Piggin9328b8f2006-01-06 00:11:10 -0800540}
541
542static inline int is_dma(struct zone *zone)
543{
Christoph Lameter4b51d662007-02-10 01:43:10 -0800544#ifdef CONFIG_ZONE_DMA
Nick Piggin9328b8f2006-01-06 00:11:10 -0800545 return zone == zone->zone_pgdat->node_zones + ZONE_DMA;
Christoph Lameter4b51d662007-02-10 01:43:10 -0800546#else
547 return 0;
548#endif
Nick Piggin9328b8f2006-01-06 00:11:10 -0800549}
550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551/* These two functions are used to setup the per zone pages min values */
552struct ctl_table;
553struct file;
554int min_free_kbytes_sysctl_handler(struct ctl_table *, int, struct file *,
555 void __user *, size_t *, loff_t *);
556extern int sysctl_lowmem_reserve_ratio[MAX_NR_ZONES-1];
557int lowmem_reserve_ratio_sysctl_handler(struct ctl_table *, int, struct file *,
558 void __user *, size_t *, loff_t *);
Rohit Seth8ad4b1f2006-01-08 01:00:40 -0800559int percpu_pagelist_fraction_sysctl_handler(struct ctl_table *, int, struct file *,
560 void __user *, size_t *, loff_t *);
Christoph Lameter96146342006-07-03 00:24:13 -0700561int sysctl_min_unmapped_ratio_sysctl_handler(struct ctl_table *, int,
562 struct file *, void __user *, size_t *, loff_t *);
Christoph Lameter0ff38492006-09-25 23:31:52 -0700563int sysctl_min_slab_ratio_sysctl_handler(struct ctl_table *, int,
564 struct file *, void __user *, size_t *, loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566#include <linux/topology.h>
567/* Returns the number of the current Node. */
Andi Kleen69d81fc2005-11-05 17:25:53 +0100568#ifndef numa_node_id
Ingo Molnar39c715b2005-06-21 17:14:34 -0700569#define numa_node_id() (cpu_to_node(raw_smp_processor_id()))
Andi Kleen69d81fc2005-11-05 17:25:53 +0100570#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
Dave Hansen93b75042005-06-23 00:07:47 -0700572#ifndef CONFIG_NEED_MULTIPLE_NODES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
574extern struct pglist_data contig_page_data;
575#define NODE_DATA(nid) (&contig_page_data)
576#define NODE_MEM_MAP(nid) mem_map
577#define MAX_NODES_SHIFT 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Dave Hansen93b75042005-06-23 00:07:47 -0700579#else /* CONFIG_NEED_MULTIPLE_NODES */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581#include <asm/mmzone.h>
582
Dave Hansen93b75042005-06-23 00:07:47 -0700583#endif /* !CONFIG_NEED_MULTIPLE_NODES */
Dave Hansen348f8b62005-06-23 00:07:40 -0700584
KAMEZAWA Hiroyuki95144c72006-03-27 01:16:02 -0800585extern struct pglist_data *first_online_pgdat(void);
586extern struct pglist_data *next_online_pgdat(struct pglist_data *pgdat);
587extern struct zone *next_zone(struct zone *zone);
KAMEZAWA Hiroyuki8357f862006-03-27 01:15:57 -0800588
589/**
590 * for_each_pgdat - helper macro to iterate over all nodes
591 * @pgdat - pointer to a pg_data_t variable
592 */
593#define for_each_online_pgdat(pgdat) \
594 for (pgdat = first_online_pgdat(); \
595 pgdat; \
596 pgdat = next_online_pgdat(pgdat))
KAMEZAWA Hiroyuki8357f862006-03-27 01:15:57 -0800597/**
598 * for_each_zone - helper macro to iterate over all memory zones
599 * @zone - pointer to struct zone variable
600 *
601 * The user only needs to declare the zone variable, for_each_zone
602 * fills it in.
603 */
604#define for_each_zone(zone) \
605 for (zone = (first_online_pgdat())->node_zones; \
606 zone; \
607 zone = next_zone(zone))
608
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700609#ifdef CONFIG_SPARSEMEM
610#include <asm/sparsemem.h>
611#endif
612
Andi Kleen07808b72005-11-05 17:25:53 +0100613#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614/*
Andi Kleena2f1b422005-11-05 17:25:53 +0100615 * with 32 bit page->flags field, we reserve 9 bits for node/zone info.
616 * there are 4 zones (3 bits) and this leaves 9-3=6 bits for nodes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 */
Andi Kleena2f1b422005-11-05 17:25:53 +0100618#define FLAGS_RESERVED 9
Dave Hansen348f8b62005-06-23 00:07:40 -0700619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620#elif BITS_PER_LONG == 64
621/*
622 * with 64 bit flags field, there's plenty of room.
623 */
Dave Hansen348f8b62005-06-23 00:07:40 -0700624#define FLAGS_RESERVED 32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Dave Hansen348f8b62005-06-23 00:07:40 -0700626#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Dave Hansen348f8b62005-06-23 00:07:40 -0700628#error BITS_PER_LONG not defined
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630#endif
631
Mel Gormanc7132162006-09-27 01:49:43 -0700632#if !defined(CONFIG_HAVE_ARCH_EARLY_PFN_TO_NID) && \
633 !defined(CONFIG_ARCH_POPULATES_NODE_MAP)
Andy Whitcroftb159d432005-06-23 00:07:52 -0700634#define early_pfn_to_nid(nid) (0UL)
635#endif
636
Andy Whitcroft2bdaf112006-01-06 00:10:53 -0800637#ifdef CONFIG_FLATMEM
638#define pfn_to_nid(pfn) (0)
639#endif
640
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700641#define pfn_to_section_nr(pfn) ((pfn) >> PFN_SECTION_SHIFT)
642#define section_nr_to_pfn(sec) ((sec) << PFN_SECTION_SHIFT)
643
644#ifdef CONFIG_SPARSEMEM
645
646/*
647 * SECTION_SHIFT #bits space required to store a section #
648 *
649 * PA_SECTION_SHIFT physical address to/from section number
650 * PFN_SECTION_SHIFT pfn to/from section number
651 */
652#define SECTIONS_SHIFT (MAX_PHYSMEM_BITS - SECTION_SIZE_BITS)
653
654#define PA_SECTION_SHIFT (SECTION_SIZE_BITS)
655#define PFN_SECTION_SHIFT (SECTION_SIZE_BITS - PAGE_SHIFT)
656
657#define NR_MEM_SECTIONS (1UL << SECTIONS_SHIFT)
658
659#define PAGES_PER_SECTION (1UL << PFN_SECTION_SHIFT)
660#define PAGE_SECTION_MASK (~(PAGES_PER_SECTION-1))
661
662#if (MAX_ORDER - 1 + PAGE_SHIFT) > SECTION_SIZE_BITS
663#error Allocator MAX_ORDER exceeds SECTION_SIZE
664#endif
665
666struct page;
667struct mem_section {
Andy Whitcroft29751f62005-06-23 00:08:00 -0700668 /*
669 * This is, logically, a pointer to an array of struct
670 * pages. However, it is stored with some other magic.
671 * (see sparse.c::sparse_init_one_section())
672 *
Andy Whitcroft30c253e2006-06-23 02:03:41 -0700673 * Additionally during early boot we encode node id of
674 * the location of the section here to guide allocation.
675 * (see sparse.c::memory_present())
676 *
Andy Whitcroft29751f62005-06-23 00:08:00 -0700677 * Making it a UL at least makes someone do a cast
678 * before using it wrong.
679 */
680 unsigned long section_mem_map;
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700681};
682
Bob Picco3e347262005-09-03 15:54:28 -0700683#ifdef CONFIG_SPARSEMEM_EXTREME
684#define SECTIONS_PER_ROOT (PAGE_SIZE / sizeof (struct mem_section))
Bob Picco802f1922005-09-03 15:54:26 -0700685#else
Bob Picco3e347262005-09-03 15:54:28 -0700686#define SECTIONS_PER_ROOT 1
687#endif
Bob Picco802f1922005-09-03 15:54:26 -0700688
Bob Picco3e347262005-09-03 15:54:28 -0700689#define SECTION_NR_TO_ROOT(sec) ((sec) / SECTIONS_PER_ROOT)
690#define NR_SECTION_ROOTS (NR_MEM_SECTIONS / SECTIONS_PER_ROOT)
691#define SECTION_ROOT_MASK (SECTIONS_PER_ROOT - 1)
692
693#ifdef CONFIG_SPARSEMEM_EXTREME
694extern struct mem_section *mem_section[NR_SECTION_ROOTS];
695#else
696extern struct mem_section mem_section[NR_SECTION_ROOTS][SECTIONS_PER_ROOT];
697#endif
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700698
Andy Whitcroft29751f62005-06-23 00:08:00 -0700699static inline struct mem_section *__nr_to_section(unsigned long nr)
700{
Bob Picco3e347262005-09-03 15:54:28 -0700701 if (!mem_section[SECTION_NR_TO_ROOT(nr)])
702 return NULL;
703 return &mem_section[SECTION_NR_TO_ROOT(nr)][nr & SECTION_ROOT_MASK];
Andy Whitcroft29751f62005-06-23 00:08:00 -0700704}
Dave Hansen4ca644d2005-10-29 18:16:51 -0700705extern int __section_nr(struct mem_section* ms);
Andy Whitcroft29751f62005-06-23 00:08:00 -0700706
707/*
708 * We use the lower bits of the mem_map pointer to store
709 * a little bit of information. There should be at least
710 * 3 bits here due to 32-bit alignment.
711 */
712#define SECTION_MARKED_PRESENT (1UL<<0)
713#define SECTION_HAS_MEM_MAP (1UL<<1)
714#define SECTION_MAP_LAST_BIT (1UL<<2)
715#define SECTION_MAP_MASK (~(SECTION_MAP_LAST_BIT-1))
Andy Whitcroft30c253e2006-06-23 02:03:41 -0700716#define SECTION_NID_SHIFT 2
Andy Whitcroft29751f62005-06-23 00:08:00 -0700717
718static inline struct page *__section_mem_map_addr(struct mem_section *section)
719{
720 unsigned long map = section->section_mem_map;
721 map &= SECTION_MAP_MASK;
722 return (struct page *)map;
723}
724
725static inline int valid_section(struct mem_section *section)
726{
Bob Picco802f1922005-09-03 15:54:26 -0700727 return (section && (section->section_mem_map & SECTION_MARKED_PRESENT));
Andy Whitcroft29751f62005-06-23 00:08:00 -0700728}
729
730static inline int section_has_mem_map(struct mem_section *section)
731{
Bob Picco802f1922005-09-03 15:54:26 -0700732 return (section && (section->section_mem_map & SECTION_HAS_MEM_MAP));
Andy Whitcroft29751f62005-06-23 00:08:00 -0700733}
734
735static inline int valid_section_nr(unsigned long nr)
736{
737 return valid_section(__nr_to_section(nr));
738}
739
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700740static inline struct mem_section *__pfn_to_section(unsigned long pfn)
741{
Andy Whitcroft29751f62005-06-23 00:08:00 -0700742 return __nr_to_section(pfn_to_section_nr(pfn));
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700743}
744
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700745static inline int pfn_valid(unsigned long pfn)
746{
747 if (pfn_to_section_nr(pfn) >= NR_MEM_SECTIONS)
748 return 0;
Andy Whitcroft29751f62005-06-23 00:08:00 -0700749 return valid_section(__nr_to_section(pfn_to_section_nr(pfn)));
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700750}
751
752/*
753 * These are _only_ used during initialisation, therefore they
754 * can use __initdata ... They could have names to indicate
755 * this restriction.
756 */
757#ifdef CONFIG_NUMA
Andy Whitcroft161599f2006-01-06 00:10:54 -0800758#define pfn_to_nid(pfn) \
759({ \
760 unsigned long __pfn_to_nid_pfn = (pfn); \
761 page_to_nid(pfn_to_page(__pfn_to_nid_pfn)); \
762})
Andy Whitcroft2bdaf112006-01-06 00:10:53 -0800763#else
764#define pfn_to_nid(pfn) (0)
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700765#endif
766
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700767#define early_pfn_valid(pfn) pfn_valid(pfn)
768void sparse_init(void);
769#else
770#define sparse_init() do {} while (0)
Dave Hansen28ae55c2005-09-03 15:54:29 -0700771#define sparse_index_init(_sec, _nid) do {} while (0)
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700772#endif /* CONFIG_SPARSEMEM */
773
Andy Whitcroft75167952006-10-21 10:24:14 -0700774#ifdef CONFIG_NODES_SPAN_OTHER_NODES
775#define early_pfn_in_nid(pfn, nid) (early_pfn_to_nid(pfn) == (nid))
776#else
777#define early_pfn_in_nid(pfn, nid) (1)
778#endif
779
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700780#ifndef early_pfn_valid
781#define early_pfn_valid(pfn) (1)
782#endif
783
784void memory_present(int nid, unsigned long start, unsigned long end);
785unsigned long __init node_memmap_size_bytes(int, unsigned long, unsigned long);
786
Andy Whitcroft14e07292007-05-06 14:49:14 -0700787/*
788 * If it is possible to have holes within a MAX_ORDER_NR_PAGES, then we
789 * need to check pfn validility within that MAX_ORDER_NR_PAGES block.
790 * pfn_valid_within() should be used in this case; we optimise this away
791 * when we have no holes within a MAX_ORDER_NR_PAGES block.
792 */
793#ifdef CONFIG_HOLES_IN_ZONE
794#define pfn_valid_within(pfn) pfn_valid(pfn)
795#else
796#define pfn_valid_within(pfn) (1)
797#endif
798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799#endif /* !__ASSEMBLY__ */
800#endif /* __KERNEL__ */
801#endif /* _LINUX_MMZONE_H */