blob: 96eb08025092a7c62378ea0e34934cc61ed01027 [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
7#include <linux/config.h>
8#include <linux/spinlock.h>
9#include <linux/list.h>
10#include <linux/wait.h>
11#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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <asm/atomic.h>
18
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
25
26struct free_area {
27 struct list_head free_list;
28 unsigned long nr_free;
29};
30
31struct pglist_data;
32
33/*
34 * zone->lock and zone->lru_lock are two of the hottest locks in the kernel.
35 * So add a wild amount of padding here to ensure that they fall into separate
36 * cachelines. There are very few zone structures in the machine, so space
37 * consumption is not a concern here.
38 */
39#if defined(CONFIG_SMP)
40struct zone_padding {
41 char x[0];
Ravikiran G Thirumalai22fc6ec2006-01-08 01:01:27 -080042} ____cacheline_internodealigned_in_smp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#define ZONE_PADDING(name) struct zone_padding name;
44#else
45#define ZONE_PADDING(name)
46#endif
47
48struct per_cpu_pages {
49 int count; /* number of pages in the list */
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 int high; /* high watermark, emptying needed */
51 int batch; /* chunk size for buddy add/remove */
52 struct list_head list; /* the list of pages */
53};
54
55struct per_cpu_pageset {
56 struct per_cpu_pages pcp[2]; /* 0: hot. 1: cold */
57#ifdef CONFIG_NUMA
58 unsigned long numa_hit; /* allocated in intended node */
59 unsigned long numa_miss; /* allocated in non intended node */
60 unsigned long numa_foreign; /* was intended here, hit elsewhere */
61 unsigned long interleave_hit; /* interleaver prefered this zone */
62 unsigned long local_node; /* allocation from local node */
63 unsigned long other_node; /* allocation from other node */
64#endif
65} ____cacheline_aligned_in_smp;
66
Christoph Lametere7c8d5c2005-06-21 17:14:47 -070067#ifdef CONFIG_NUMA
68#define zone_pcp(__z, __cpu) ((__z)->pageset[(__cpu)])
69#else
70#define zone_pcp(__z, __cpu) (&(__z)->pageset[(__cpu)])
71#endif
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#define ZONE_DMA 0
Andi Kleena2f1b422005-11-05 17:25:53 +010074#define ZONE_DMA32 1
75#define ZONE_NORMAL 2
76#define ZONE_HIGHMEM 3
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Andi Kleena2f1b422005-11-05 17:25:53 +010078#define MAX_NR_ZONES 4 /* Sync this with ZONES_SHIFT */
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#define ZONES_SHIFT 2 /* ceil(log2(MAX_NR_ZONES)) */
80
81
82/*
83 * When a memory allocation must conform to specific limitations (such
84 * as being suitable for DMA) the caller will pass in hints to the
85 * allocator in the gfp_mask, in the zone modifier bits. These bits
86 * are used to select a priority ordered list of memory zones which
87 * match the requested limits. GFP_ZONEMASK defines which bits within
88 * the gfp_mask should be considered as zone modifiers. Each valid
89 * combination of the zone modifier bits has a corresponding list
90 * of zones (in node_zonelists). Thus for two zone modifiers there
91 * will be a maximum of 4 (2 ** 2) zonelists, for 3 modifiers there will
92 * be 8 (2 ** 3) zonelists. GFP_ZONETYPES defines the number of possible
93 * combinations of zone modifiers in "zone modifier space".
Linus Torvaldsac3461a2005-11-22 19:39:30 -080094 *
Andy Whitcroft79046ae2006-02-01 03:05:26 -080095 * As an optimisation any zone modifier bits which are only valid when
96 * no other zone modifier bits are set (loners) should be placed in
97 * the highest order bits of this field. This allows us to reduce the
98 * extent of the zonelists thus saving space. For example in the case
99 * of three zone modifier bits, we could require up to eight zonelists.
100 * If the left most zone modifier is a "loner" then the highest valid
101 * zonelist would be four allowing us to allocate only five zonelists.
Andy Whitcroftce2ea892006-02-01 03:05:27 -0800102 * Use the first form for GFP_ZONETYPES when the left most bit is not
103 * a "loner", otherwise use the second.
Andy Whitcroft79046ae2006-02-01 03:05:26 -0800104 *
Linus Torvaldsac3461a2005-11-22 19:39:30 -0800105 * NOTE! Make sure this matches the zones in <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 */
Linus Torvaldsac3461a2005-11-22 19:39:30 -0800107#define GFP_ZONEMASK 0x07
Andy Whitcroftce2ea892006-02-01 03:05:27 -0800108/* #define GFP_ZONETYPES (GFP_ZONEMASK + 1) */ /* Non-loner */
109#define GFP_ZONETYPES ((GFP_ZONEMASK + 1) / 2 + 1) /* Loner */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111/*
112 * On machines where it is needed (eg PCs) we divide physical memory
Andi Kleen1f6818b2006-01-11 22:42:26 +0100113 * into multiple physical zones. On a 32bit PC we have 4 zones:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 *
115 * ZONE_DMA < 16 MB ISA DMA capable memory
Andi Kleena2f1b422005-11-05 17:25:53 +0100116 * ZONE_DMA32 0 MB Empty
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 * ZONE_NORMAL 16-896 MB direct mapped by the kernel
118 * ZONE_HIGHMEM > 896 MB only page cache and user processes
119 */
120
121struct zone {
122 /* Fields commonly accessed by the page allocator */
123 unsigned long free_pages;
124 unsigned long pages_min, pages_low, pages_high;
125 /*
126 * We don't know if the memory that we're going to allocate will be freeable
127 * or/and it will be released eventually, so to avoid totally wasting several
128 * GB of ram we must reserve some of the lower zone memory (otherwise we risk
129 * to run OOM on the lower zones despite there's tons of freeable ram
130 * on the higher zones). This array is recalculated at runtime if the
131 * sysctl_lowmem_reserve_ratio sysctl changes.
132 */
133 unsigned long lowmem_reserve[MAX_NR_ZONES];
134
Christoph Lametere7c8d5c2005-06-21 17:14:47 -0700135#ifdef CONFIG_NUMA
136 struct per_cpu_pageset *pageset[NR_CPUS];
137#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 struct per_cpu_pageset pageset[NR_CPUS];
Christoph Lametere7c8d5c2005-06-21 17:14:47 -0700139#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 /*
141 * free areas of different sizes
142 */
143 spinlock_t lock;
Dave Hansenbdc8cb92005-10-29 18:16:53 -0700144#ifdef CONFIG_MEMORY_HOTPLUG
145 /* see spanned/present_pages for more description */
146 seqlock_t span_seqlock;
147#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 struct free_area free_area[MAX_ORDER];
149
150
151 ZONE_PADDING(_pad1_)
152
153 /* Fields commonly accessed by the page reclaim scanner */
154 spinlock_t lru_lock;
155 struct list_head active_list;
156 struct list_head inactive_list;
157 unsigned long nr_scan_active;
158 unsigned long nr_scan_inactive;
159 unsigned long nr_active;
160 unsigned long nr_inactive;
161 unsigned long pages_scanned; /* since last reclaim */
162 int all_unreclaimable; /* All pages pinned */
163
Martin Hicks1e7e5a92005-06-21 17:14:43 -0700164 /* A count of how many reclaimers are scanning this zone */
165 atomic_t reclaim_in_progress;
Martin Hicks753ee722005-06-21 17:14:41 -0700166
167 /*
Christoph Lameter9eeff232006-01-18 17:42:31 -0800168 * timestamp (in jiffies) of the last zone reclaim that did not
169 * result in freeing of pages. This is used to avoid repeated scans
170 * if all memory in the zone is in use.
171 */
172 unsigned long last_unsuccessful_zone_reclaim;
173
174 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 * prev_priority holds the scanning priority for this zone. It is
176 * defined as the scanning priority at which we achieved our reclaim
177 * target at the previous try_to_free_pages() or balance_pgdat()
178 * invokation.
179 *
180 * We use prev_priority as a measure of how much stress page reclaim is
181 * under - it drives the swappiness decision: whether to unmap mapped
182 * pages.
183 *
184 * temp_priority is used to remember the scanning priority at which
185 * this zone was successfully refilled to free_pages == pages_high.
186 *
187 * Access to both these fields is quite racy even on uniprocessor. But
188 * it is expected to average out OK.
189 */
190 int temp_priority;
191 int prev_priority;
192
193
194 ZONE_PADDING(_pad2_)
195 /* Rarely used or read-mostly fields */
196
197 /*
198 * wait_table -- the array holding the hash table
199 * wait_table_size -- the size of the hash table array
200 * wait_table_bits -- wait_table_size == (1 << wait_table_bits)
201 *
202 * The purpose of all these is to keep track of the people
203 * waiting for a page to become available and make them
204 * runnable again when possible. The trouble is that this
205 * consumes a lot of space, especially when so few things
206 * wait on pages at a given time. So instead of using
207 * per-page waitqueues, we use a waitqueue hash table.
208 *
209 * The bucket discipline is to sleep on the same queue when
210 * colliding and wake all in that wait queue when removing.
211 * When something wakes, it must check to be sure its page is
212 * truly available, a la thundering herd. The cost of a
213 * collision is great, but given the expected load of the
214 * table, they should be so rare as to be outweighed by the
215 * benefits from the saved space.
216 *
217 * __wait_on_page_locked() and unlock_page() in mm/filemap.c, are the
218 * primary users of these fields, and in mm/page_alloc.c
219 * free_area_init_core() performs the initialization of them.
220 */
221 wait_queue_head_t * wait_table;
222 unsigned long wait_table_size;
223 unsigned long wait_table_bits;
224
225 /*
226 * Discontig memory support fields.
227 */
228 struct pglist_data *zone_pgdat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 /* zone_start_pfn == zone_start_paddr >> PAGE_SHIFT */
230 unsigned long zone_start_pfn;
231
Dave Hansenbdc8cb92005-10-29 18:16:53 -0700232 /*
233 * zone_start_pfn, spanned_pages and present_pages are all
234 * protected by span_seqlock. It is a seqlock because it has
235 * to be read outside of zone->lock, and it is done in the main
236 * allocator path. But, it is written quite infrequently.
237 *
238 * The lock is declared along with zone->lock because it is
239 * frequently read in proximity to zone->lock. It's good to
240 * give them a chance of being in the same cacheline.
241 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 unsigned long spanned_pages; /* total size, including holes */
243 unsigned long present_pages; /* amount of memory (excluding holes) */
244
245 /*
246 * rarely used fields:
247 */
248 char *name;
Ravikiran G Thirumalai22fc6ec2006-01-08 01:01:27 -0800249} ____cacheline_internodealigned_in_smp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251
252/*
253 * The "priority" of VM scanning is how much of the queues we will scan in one
254 * go. A value of 12 for DEF_PRIORITY implies that we will scan 1/4096th of the
255 * queues ("queue_length >> 12") during an aging round.
256 */
257#define DEF_PRIORITY 12
258
259/*
260 * One allocation request operates on a zonelist. A zonelist
261 * is a list of zones, the first one is the 'goal' of the
262 * allocation, the other zones are fallback zones, in decreasing
263 * priority.
264 *
265 * Right now a zonelist takes up less than a cacheline. We never
266 * modify it apart from boot-up, and only a few indices are used,
267 * so despite the zonelist table being relatively big, the cache
268 * footprint of this construct is very small.
269 */
270struct zonelist {
271 struct zone *zones[MAX_NUMNODES * MAX_NR_ZONES + 1]; // NULL delimited
272};
273
274
275/*
276 * The pg_data_t structure is used in machines with CONFIG_DISCONTIGMEM
277 * (mostly NUMA machines?) to denote a higher-level memory zone than the
278 * zone denotes.
279 *
280 * On NUMA machines, each NUMA node would have a pg_data_t to describe
281 * it's memory layout.
282 *
283 * Memory statistics and page replacement data structures are maintained on a
284 * per-zone basis.
285 */
286struct bootmem_data;
287typedef struct pglist_data {
288 struct zone node_zones[MAX_NR_ZONES];
289 struct zonelist node_zonelists[GFP_ZONETYPES];
290 int nr_zones;
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700291#ifdef CONFIG_FLAT_NODE_MEM_MAP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 struct page *node_mem_map;
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700293#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 struct bootmem_data *bdata;
Dave Hansen208d54e2005-10-29 18:16:52 -0700295#ifdef CONFIG_MEMORY_HOTPLUG
296 /*
297 * Must be held any time you expect node_start_pfn, node_present_pages
298 * or node_spanned_pages stay constant. Holding this will also
299 * guarantee that any pfn_valid() stays that way.
300 *
301 * Nests above zone->lock and zone->size_seqlock.
302 */
303 spinlock_t node_size_lock;
304#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 unsigned long node_start_pfn;
306 unsigned long node_present_pages; /* total number of physical pages */
307 unsigned long node_spanned_pages; /* total size of physical page
308 range, including holes */
309 int node_id;
310 struct pglist_data *pgdat_next;
311 wait_queue_head_t kswapd_wait;
312 struct task_struct *kswapd;
313 int kswapd_max_order;
314} pg_data_t;
315
316#define node_present_pages(nid) (NODE_DATA(nid)->node_present_pages)
317#define node_spanned_pages(nid) (NODE_DATA(nid)->node_spanned_pages)
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700318#ifdef CONFIG_FLAT_NODE_MEM_MAP
Dave Hansen408fde82005-06-23 00:07:37 -0700319#define pgdat_page_nr(pgdat, pagenr) ((pgdat)->node_mem_map + (pagenr))
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700320#else
321#define pgdat_page_nr(pgdat, pagenr) pfn_to_page((pgdat)->node_start_pfn + (pagenr))
322#endif
Dave Hansen408fde82005-06-23 00:07:37 -0700323#define nid_page_nr(nid, pagenr) pgdat_page_nr(NODE_DATA(nid),(pagenr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Dave Hansen208d54e2005-10-29 18:16:52 -0700325#include <linux/memory_hotplug.h>
326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327extern struct pglist_data *pgdat_list;
328
329void __get_zone_counts(unsigned long *active, unsigned long *inactive,
330 unsigned long *free, struct pglist_data *pgdat);
331void get_zone_counts(unsigned long *active, unsigned long *inactive,
332 unsigned long *free);
333void build_all_zonelists(void);
334void wakeup_kswapd(struct zone *zone, int order);
335int zone_watermark_ok(struct zone *z, int order, unsigned long mark,
Rohit Seth7fb1d9f2005-11-13 16:06:43 -0800336 int classzone_idx, int alloc_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338#ifdef CONFIG_HAVE_MEMORY_PRESENT
339void memory_present(int nid, unsigned long start, unsigned long end);
340#else
341static inline void memory_present(int nid, unsigned long start, unsigned long end) {}
342#endif
343
344#ifdef CONFIG_NEED_NODE_MEMMAP_SIZE
345unsigned long __init node_memmap_size_bytes(int, unsigned long, unsigned long);
346#endif
347
348/*
349 * zone_idx() returns 0 for the ZONE_DMA zone, 1 for the ZONE_NORMAL zone, etc.
350 */
351#define zone_idx(zone) ((zone) - (zone)->zone_pgdat->node_zones)
352
Con Kolivasf3fe6512006-01-06 00:11:15 -0800353static inline int populated_zone(struct zone *zone)
354{
355 return (!!zone->present_pages);
356}
357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358static inline int is_highmem_idx(int idx)
359{
360 return (idx == ZONE_HIGHMEM);
361}
362
363static inline int is_normal_idx(int idx)
364{
365 return (idx == ZONE_NORMAL);
366}
Nick Piggin9328b8f2006-01-06 00:11:10 -0800367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368/**
369 * is_highmem - helper function to quickly check if a struct zone is a
370 * highmem zone or not. This is an attempt to keep references
371 * to ZONE_{DMA/NORMAL/HIGHMEM/etc} in general code to a minimum.
372 * @zone - pointer to struct zone variable
373 */
374static inline int is_highmem(struct zone *zone)
375{
376 return zone == zone->zone_pgdat->node_zones + ZONE_HIGHMEM;
377}
378
379static inline int is_normal(struct zone *zone)
380{
381 return zone == zone->zone_pgdat->node_zones + ZONE_NORMAL;
382}
383
Nick Piggin9328b8f2006-01-06 00:11:10 -0800384static inline int is_dma32(struct zone *zone)
385{
386 return zone == zone->zone_pgdat->node_zones + ZONE_DMA32;
387}
388
389static inline int is_dma(struct zone *zone)
390{
391 return zone == zone->zone_pgdat->node_zones + ZONE_DMA;
392}
393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394/* These two functions are used to setup the per zone pages min values */
395struct ctl_table;
396struct file;
397int min_free_kbytes_sysctl_handler(struct ctl_table *, int, struct file *,
398 void __user *, size_t *, loff_t *);
399extern int sysctl_lowmem_reserve_ratio[MAX_NR_ZONES-1];
400int lowmem_reserve_ratio_sysctl_handler(struct ctl_table *, int, struct file *,
401 void __user *, size_t *, loff_t *);
Rohit Seth8ad4b1f2006-01-08 01:00:40 -0800402int percpu_pagelist_fraction_sysctl_handler(struct ctl_table *, int, struct file *,
403 void __user *, size_t *, loff_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405#include <linux/topology.h>
406/* Returns the number of the current Node. */
Andi Kleen69d81fc2005-11-05 17:25:53 +0100407#ifndef numa_node_id
Ingo Molnar39c715b2005-06-21 17:14:34 -0700408#define numa_node_id() (cpu_to_node(raw_smp_processor_id()))
Andi Kleen69d81fc2005-11-05 17:25:53 +0100409#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Dave Hansen93b75042005-06-23 00:07:47 -0700411#ifndef CONFIG_NEED_MULTIPLE_NODES
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
413extern struct pglist_data contig_page_data;
414#define NODE_DATA(nid) (&contig_page_data)
415#define NODE_MEM_MAP(nid) mem_map
416#define MAX_NODES_SHIFT 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Dave Hansen93b75042005-06-23 00:07:47 -0700418#else /* CONFIG_NEED_MULTIPLE_NODES */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420#include <asm/mmzone.h>
421
Dave Hansen93b75042005-06-23 00:07:47 -0700422#endif /* !CONFIG_NEED_MULTIPLE_NODES */
Dave Hansen348f8b62005-06-23 00:07:40 -0700423
KAMEZAWA Hiroyuki8357f862006-03-27 01:15:57 -0800424static inline struct pglist_data *first_online_pgdat(void)
425{
426 return NODE_DATA(first_online_node);
427}
428
429static inline struct pglist_data *next_online_pgdat(struct pglist_data *pgdat)
430{
431 int nid = next_online_node(pgdat->node_id);
432
433 if (nid == MAX_NUMNODES)
434 return NULL;
435 return NODE_DATA(nid);
436}
437
438
439/**
440 * for_each_pgdat - helper macro to iterate over all nodes
441 * @pgdat - pointer to a pg_data_t variable
442 */
443#define for_each_online_pgdat(pgdat) \
444 for (pgdat = first_online_pgdat(); \
445 pgdat; \
446 pgdat = next_online_pgdat(pgdat))
447
448/*
449 * next_zone - helper magic for for_each_zone()
450 * Thanks to William Lee Irwin III for this piece of ingenuity.
451 */
452static inline struct zone *next_zone(struct zone *zone)
453{
454 pg_data_t *pgdat = zone->zone_pgdat;
455
456 if (zone < pgdat->node_zones + MAX_NR_ZONES - 1)
457 zone++;
458 else {
459 pgdat = next_online_pgdat(pgdat);
460 if (pgdat)
461 zone = pgdat->node_zones;
462 else
463 zone = NULL;
464 }
465 return zone;
466}
467
468/**
469 * for_each_zone - helper macro to iterate over all memory zones
470 * @zone - pointer to struct zone variable
471 *
472 * The user only needs to declare the zone variable, for_each_zone
473 * fills it in.
474 */
475#define for_each_zone(zone) \
476 for (zone = (first_online_pgdat())->node_zones; \
477 zone; \
478 zone = next_zone(zone))
479
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700480#ifdef CONFIG_SPARSEMEM
481#include <asm/sparsemem.h>
482#endif
483
Andi Kleen07808b72005-11-05 17:25:53 +0100484#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485/*
Andi Kleena2f1b422005-11-05 17:25:53 +0100486 * with 32 bit page->flags field, we reserve 9 bits for node/zone info.
487 * there are 4 zones (3 bits) and this leaves 9-3=6 bits for nodes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 */
Andi Kleena2f1b422005-11-05 17:25:53 +0100489#define FLAGS_RESERVED 9
Dave Hansen348f8b62005-06-23 00:07:40 -0700490
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491#elif BITS_PER_LONG == 64
492/*
493 * with 64 bit flags field, there's plenty of room.
494 */
Dave Hansen348f8b62005-06-23 00:07:40 -0700495#define FLAGS_RESERVED 32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Dave Hansen348f8b62005-06-23 00:07:40 -0700497#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Dave Hansen348f8b62005-06-23 00:07:40 -0700499#error BITS_PER_LONG not defined
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501#endif
502
Andy Whitcroftb159d432005-06-23 00:07:52 -0700503#ifndef CONFIG_HAVE_ARCH_EARLY_PFN_TO_NID
504#define early_pfn_to_nid(nid) (0UL)
505#endif
506
Andy Whitcroft2bdaf112006-01-06 00:10:53 -0800507#ifdef CONFIG_FLATMEM
508#define pfn_to_nid(pfn) (0)
509#endif
510
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700511#define pfn_to_section_nr(pfn) ((pfn) >> PFN_SECTION_SHIFT)
512#define section_nr_to_pfn(sec) ((sec) << PFN_SECTION_SHIFT)
513
514#ifdef CONFIG_SPARSEMEM
515
516/*
517 * SECTION_SHIFT #bits space required to store a section #
518 *
519 * PA_SECTION_SHIFT physical address to/from section number
520 * PFN_SECTION_SHIFT pfn to/from section number
521 */
522#define SECTIONS_SHIFT (MAX_PHYSMEM_BITS - SECTION_SIZE_BITS)
523
524#define PA_SECTION_SHIFT (SECTION_SIZE_BITS)
525#define PFN_SECTION_SHIFT (SECTION_SIZE_BITS - PAGE_SHIFT)
526
527#define NR_MEM_SECTIONS (1UL << SECTIONS_SHIFT)
528
529#define PAGES_PER_SECTION (1UL << PFN_SECTION_SHIFT)
530#define PAGE_SECTION_MASK (~(PAGES_PER_SECTION-1))
531
532#if (MAX_ORDER - 1 + PAGE_SHIFT) > SECTION_SIZE_BITS
533#error Allocator MAX_ORDER exceeds SECTION_SIZE
534#endif
535
536struct page;
537struct mem_section {
Andy Whitcroft29751f62005-06-23 00:08:00 -0700538 /*
539 * This is, logically, a pointer to an array of struct
540 * pages. However, it is stored with some other magic.
541 * (see sparse.c::sparse_init_one_section())
542 *
543 * Making it a UL at least makes someone do a cast
544 * before using it wrong.
545 */
546 unsigned long section_mem_map;
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700547};
548
Bob Picco3e347262005-09-03 15:54:28 -0700549#ifdef CONFIG_SPARSEMEM_EXTREME
550#define SECTIONS_PER_ROOT (PAGE_SIZE / sizeof (struct mem_section))
Bob Picco802f1922005-09-03 15:54:26 -0700551#else
Bob Picco3e347262005-09-03 15:54:28 -0700552#define SECTIONS_PER_ROOT 1
553#endif
Bob Picco802f1922005-09-03 15:54:26 -0700554
Bob Picco3e347262005-09-03 15:54:28 -0700555#define SECTION_NR_TO_ROOT(sec) ((sec) / SECTIONS_PER_ROOT)
556#define NR_SECTION_ROOTS (NR_MEM_SECTIONS / SECTIONS_PER_ROOT)
557#define SECTION_ROOT_MASK (SECTIONS_PER_ROOT - 1)
558
559#ifdef CONFIG_SPARSEMEM_EXTREME
560extern struct mem_section *mem_section[NR_SECTION_ROOTS];
561#else
562extern struct mem_section mem_section[NR_SECTION_ROOTS][SECTIONS_PER_ROOT];
563#endif
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700564
Andy Whitcroft29751f62005-06-23 00:08:00 -0700565static inline struct mem_section *__nr_to_section(unsigned long nr)
566{
Bob Picco3e347262005-09-03 15:54:28 -0700567 if (!mem_section[SECTION_NR_TO_ROOT(nr)])
568 return NULL;
569 return &mem_section[SECTION_NR_TO_ROOT(nr)][nr & SECTION_ROOT_MASK];
Andy Whitcroft29751f62005-06-23 00:08:00 -0700570}
Dave Hansen4ca644d2005-10-29 18:16:51 -0700571extern int __section_nr(struct mem_section* ms);
Andy Whitcroft29751f62005-06-23 00:08:00 -0700572
573/*
574 * We use the lower bits of the mem_map pointer to store
575 * a little bit of information. There should be at least
576 * 3 bits here due to 32-bit alignment.
577 */
578#define SECTION_MARKED_PRESENT (1UL<<0)
579#define SECTION_HAS_MEM_MAP (1UL<<1)
580#define SECTION_MAP_LAST_BIT (1UL<<2)
581#define SECTION_MAP_MASK (~(SECTION_MAP_LAST_BIT-1))
582
583static inline struct page *__section_mem_map_addr(struct mem_section *section)
584{
585 unsigned long map = section->section_mem_map;
586 map &= SECTION_MAP_MASK;
587 return (struct page *)map;
588}
589
590static inline int valid_section(struct mem_section *section)
591{
Bob Picco802f1922005-09-03 15:54:26 -0700592 return (section && (section->section_mem_map & SECTION_MARKED_PRESENT));
Andy Whitcroft29751f62005-06-23 00:08:00 -0700593}
594
595static inline int section_has_mem_map(struct mem_section *section)
596{
Bob Picco802f1922005-09-03 15:54:26 -0700597 return (section && (section->section_mem_map & SECTION_HAS_MEM_MAP));
Andy Whitcroft29751f62005-06-23 00:08:00 -0700598}
599
600static inline int valid_section_nr(unsigned long nr)
601{
602 return valid_section(__nr_to_section(nr));
603}
604
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700605static inline struct mem_section *__pfn_to_section(unsigned long pfn)
606{
Andy Whitcroft29751f62005-06-23 00:08:00 -0700607 return __nr_to_section(pfn_to_section_nr(pfn));
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700608}
609
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700610static inline int pfn_valid(unsigned long pfn)
611{
612 if (pfn_to_section_nr(pfn) >= NR_MEM_SECTIONS)
613 return 0;
Andy Whitcroft29751f62005-06-23 00:08:00 -0700614 return valid_section(__nr_to_section(pfn_to_section_nr(pfn)));
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700615}
616
617/*
618 * These are _only_ used during initialisation, therefore they
619 * can use __initdata ... They could have names to indicate
620 * this restriction.
621 */
622#ifdef CONFIG_NUMA
Andy Whitcroft161599f2006-01-06 00:10:54 -0800623#define pfn_to_nid(pfn) \
624({ \
625 unsigned long __pfn_to_nid_pfn = (pfn); \
626 page_to_nid(pfn_to_page(__pfn_to_nid_pfn)); \
627})
Andy Whitcroft2bdaf112006-01-06 00:10:53 -0800628#else
629#define pfn_to_nid(pfn) (0)
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700630#endif
631
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700632#define early_pfn_valid(pfn) pfn_valid(pfn)
633void sparse_init(void);
634#else
635#define sparse_init() do {} while (0)
Dave Hansen28ae55c2005-09-03 15:54:29 -0700636#define sparse_index_init(_sec, _nid) do {} while (0)
Andy Whitcroftd41dee32005-06-23 00:07:54 -0700637#endif /* CONFIG_SPARSEMEM */
638
639#ifndef early_pfn_valid
640#define early_pfn_valid(pfn) (1)
641#endif
642
643void memory_present(int nid, unsigned long start, unsigned long end);
644unsigned long __init node_memmap_size_bytes(int, unsigned long, unsigned long);
645
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646#endif /* !__ASSEMBLY__ */
647#endif /* __KERNEL__ */
648#endif /* _LINUX_MMZONE_H */