aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/mmzone.h
diff options
context:
space:
mode:
authorChristoph Lameter <clameter@sgi.com>2006-09-26 02:31:13 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2006-09-26 11:48:46 -0400
commit2f1b6248682f8b39ca3c7e549dfc216d26c4109b (patch)
tree2340347d10fd0e564fb8527efe3ffbcb216e1906 /include/linux/mmzone.h
parent98d2b0ebda72fc39cdefd3720d50b9b3ce409085 (diff)
[PATCH] reduce MAX_NR_ZONES: use enum to define zones, reformat and comment
Use enum for zones and reformat zones dependent information Add comments explaning the use of zones and add a zones_t type for zone numbers. Line up information that will be #ifdefd by the following patches. [akpm@osdl.org: comment cleanups] Signed-off-by: Christoph Lameter <clameter@sgi.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/mmzone.h')
-rw-r--r--include/linux/mmzone.h66
1 files changed, 47 insertions, 19 deletions
diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h
index f45163c528e8..03a5a6eb0ffa 100644
--- a/include/linux/mmzone.h
+++ b/include/linux/mmzone.h
@@ -88,14 +88,53 @@ struct per_cpu_pageset {
88#define zone_pcp(__z, __cpu) (&(__z)->pageset[(__cpu)]) 88#define zone_pcp(__z, __cpu) (&(__z)->pageset[(__cpu)])
89#endif 89#endif
90 90
91#define ZONE_DMA 0 91enum zone_type {
92#define ZONE_DMA32 1 92 /*
93#define ZONE_NORMAL 2 93 * ZONE_DMA is used when there are devices that are not able
94#define ZONE_HIGHMEM 3 94 * to do DMA to all of addressable memory (ZONE_NORMAL). Then we
95 * carve out the portion of memory that is needed for these devices.
96 * The range is arch specific.
97 *
98 * Some examples
99 *
100 * Architecture Limit
101 * ---------------------------
102 * parisc, ia64, sparc <4G
103 * s390 <2G
104 * arm26 <48M
105 * arm Various
106 * alpha Unlimited or 0-16MB.
107 *
108 * i386, x86_64 and multiple other arches
109 * <16M.
110 */
111 ZONE_DMA,
112 /*
113 * x86_64 needs two ZONE_DMAs because it supports devices that are
114 * only able to do DMA to the lower 16M but also 32 bit devices that
115 * can only do DMA areas below 4G.
116 */
117 ZONE_DMA32,
118 /*
119 * Normal addressable memory is in ZONE_NORMAL. DMA operations can be
120 * performed on pages in ZONE_NORMAL if the DMA devices support
121 * transfers to all addressable memory.
122 */
123 ZONE_NORMAL,
124 /*
125 * A memory area that is only addressable by the kernel through
126 * mapping portions into its own address space. This is for example
127 * used by i386 to allow the kernel to address the memory beyond
128 * 900MB. The kernel will set up special mappings (page
129 * table entries on i386) for each page that the kernel needs to
130 * access.
131 */
132 ZONE_HIGHMEM,
95 133
96#define MAX_NR_ZONES 4 /* Sync this with ZONES_SHIFT */ 134 MAX_NR_ZONES
97#define ZONES_SHIFT 2 /* ceil(log2(MAX_NR_ZONES)) */ 135};
98 136
137#define ZONES_SHIFT 2 /* ceil(log2(MAX_NR_ZONES)) */
99 138
100/* 139/*
101 * When a memory allocation must conform to specific limitations (such 140 * When a memory allocation must conform to specific limitations (such
@@ -126,16 +165,6 @@ struct per_cpu_pageset {
126/* #define GFP_ZONETYPES (GFP_ZONEMASK + 1) */ /* Non-loner */ 165/* #define GFP_ZONETYPES (GFP_ZONEMASK + 1) */ /* Non-loner */
127#define GFP_ZONETYPES ((GFP_ZONEMASK + 1) / 2 + 1) /* Loner */ 166#define GFP_ZONETYPES ((GFP_ZONEMASK + 1) / 2 + 1) /* Loner */
128 167
129/*
130 * On machines where it is needed (eg PCs) we divide physical memory
131 * into multiple physical zones. On a 32bit PC we have 4 zones:
132 *
133 * ZONE_DMA < 16 MB ISA DMA capable memory
134 * ZONE_DMA32 0 MB Empty
135 * ZONE_NORMAL 16-896 MB direct mapped by the kernel
136 * ZONE_HIGHMEM > 896 MB only page cache and user processes
137 */
138
139struct zone { 168struct zone {
140 /* Fields commonly accessed by the page allocator */ 169 /* Fields commonly accessed by the page allocator */
141 unsigned long free_pages; 170 unsigned long free_pages;
@@ -266,7 +295,6 @@ struct zone {
266 char *name; 295 char *name;
267} ____cacheline_internodealigned_in_smp; 296} ____cacheline_internodealigned_in_smp;
268 297
269
270/* 298/*
271 * The "priority" of VM scanning is how much of the queues we will scan in one 299 * The "priority" of VM scanning is how much of the queues we will scan in one
272 * go. A value of 12 for DEF_PRIORITY implies that we will scan 1/4096th of the 300 * go. A value of 12 for DEF_PRIORITY implies that we will scan 1/4096th of the
@@ -373,12 +401,12 @@ static inline int populated_zone(struct zone *zone)
373 return (!!zone->present_pages); 401 return (!!zone->present_pages);
374} 402}
375 403
376static inline int is_highmem_idx(int idx) 404static inline int is_highmem_idx(enum zone_type idx)
377{ 405{
378 return (idx == ZONE_HIGHMEM); 406 return (idx == ZONE_HIGHMEM);
379} 407}
380 408
381static inline int is_normal_idx(int idx) 409static inline int is_normal_idx(enum zone_type idx)
382{ 410{
383 return (idx == ZONE_NORMAL); 411 return (idx == ZONE_NORMAL);
384} 412}