aboutsummaryrefslogtreecommitdiffstats
path: root/mm/page_alloc.c
diff options
context:
space:
mode:
authorChristoph Lameter <clameter@sgi.com>2007-10-16 04:25:29 -0400
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2007-10-16 12:42:58 -0400
commit7ea1530ab3fdfa85441061909cc8040e84776fd4 (patch)
treef3af0f8ed40a6df90bdbb9396d6163d59798a821 /mm/page_alloc.c
parent13808910713a98cc1159291e62cdfec92cc94d05 (diff)
Memoryless nodes: introduce mask of nodes with memory
It is necessary to know if nodes have memory since we have recently begun to add support for memoryless nodes. For that purpose we introduce a two new node states: N_HIGH_MEMORY and N_NORMAL_MEMORY. A node has its bit in N_HIGH_MEMORY set if it has any memory regardless of the type of mmemory. If a node has memory then it has at least one zone defined in its pgdat structure that is located in the pgdat itself. A node has its bit in N_NORMAL_MEMORY set if it has a lower zone than ZONE_HIGHMEM. This means it is possible to allocate memory that is not subject to kmap. N_HIGH_MEMORY and N_NORMAL_MEMORY can then be used in various places to insure that we do the right thing when we encounter a memoryless node. [akpm@linux-foundation.org: build fix] [Lee.Schermerhorn@hp.com: update N_HIGH_MEMORY node state for memory hotadd] [y-goto@jp.fujitsu.com: Fix memory hotplug + sparsemem build] Signed-off-by: Lee Schermerhorn <Lee.Schermerhorn@hp.com> Signed-off-by: Nishanth Aravamudan <nacc@us.ibm.com> Signed-off-by: Christoph Lameter <clameter@sgi.com> Acked-by: Bob Picco <bob.picco@hp.com> Cc: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> Cc: Mel Gorman <mel@skynet.ie> Signed-off-by: Yasunori Goto <y-goto@jp.fujitsu.com> Signed-off-by: Paul Mundt <lethal@linux-sh.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/page_alloc.c')
-rw-r--r--mm/page_alloc.c25
1 files changed, 23 insertions, 2 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 0cc5b3e198e..07dfd89992f 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -2080,14 +2080,35 @@ static void build_zonelist_cache(pg_data_t *pgdat)
2080 2080
2081#endif /* CONFIG_NUMA */ 2081#endif /* CONFIG_NUMA */
2082 2082
2083/* Any regular memory on that node ? */
2084static void check_for_regular_memory(pg_data_t *pgdat)
2085{
2086#ifdef CONFIG_HIGHMEM
2087 enum zone_type zone_type;
2088
2089 for (zone_type = 0; zone_type <= ZONE_NORMAL; zone_type++) {
2090 struct zone *zone = &pgdat->node_zones[zone_type];
2091 if (zone->present_pages)
2092 node_set_state(zone_to_nid(zone), N_NORMAL_MEMORY);
2093 }
2094#endif
2095}
2096
2083/* return values int ....just for stop_machine_run() */ 2097/* return values int ....just for stop_machine_run() */
2084static int __build_all_zonelists(void *dummy) 2098static int __build_all_zonelists(void *dummy)
2085{ 2099{
2086 int nid; 2100 int nid;
2087 2101
2088 for_each_online_node(nid) { 2102 for_each_online_node(nid) {
2089 build_zonelists(NODE_DATA(nid)); 2103 pg_data_t *pgdat = NODE_DATA(nid);
2090 build_zonelist_cache(NODE_DATA(nid)); 2104
2105 build_zonelists(pgdat);
2106 build_zonelist_cache(pgdat);
2107
2108 /* Any memory on that node */
2109 if (pgdat->node_present_pages)
2110 node_set_state(nid, N_HIGH_MEMORY);
2111 check_for_regular_memory(pgdat);
2091 } 2112 }
2092 return 0; 2113 return 0;
2093} 2114}