diff options
author | Dean Nelson <dcn@sgi.com> | 2005-03-23 19:00:00 -0700 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2005-05-03 12:09:32 -0700 |
commit | 7223a93a5321f84337647aef62ef947afd8df41a (patch) | |
tree | 10d4c8e4cb1b4ddf33ca32efbe915ca91d19fcd1 /mm | |
parent | 2e34f07ff0c944399a6456e2d91cf0ca1d9a497c (diff) | |
download | op-kernel-dev-7223a93a5321f84337647aef62ef947afd8df41a.zip op-kernel-dev-7223a93a5321f84337647aef62ef947afd8df41a.tar.gz |
[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 <dcn@sgi.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'mm')
-rw-r--r-- | mm/page_alloc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mm/page_alloc.c b/mm/page_alloc.c index fc1b106..b1061b1 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; |