From: Dean Nelson Date: Thu, 24 Mar 2005 02:00:00 +0000 (-0700) Subject: [IA64] Export node_online_map and node_possible_map X-Git-Tag: v2.6.12-rc4~117^2~5^2~22 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=7223a93a5321f84337647aef62ef947afd8df41a;p=linux-2.6-omap-h63xx.git [IA64] Export node_online_map and node_possible_map Export node_online_map and node_possible_map so that kernel modules can use the nodemask macros, like, for_each_node() and for_each_online_node(). Signed-off-by: Dean Nelson Signed-off-by: Tony Luck --- diff --git a/mm/page_alloc.c b/mm/page_alloc.c index fc1b1064c50..b1061b1962f 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c @@ -43,7 +43,9 @@ * initializer cleaner */ nodemask_t node_online_map = { { [0] = 1UL } }; +EXPORT_SYMBOL(node_online_map); nodemask_t node_possible_map = NODE_MASK_ALL; +EXPORT_SYMBOL(node_possible_map); struct pglist_data *pgdat_list; unsigned long totalram_pages; unsigned long totalhigh_pages;