aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCody P Schafer <cody@linux.vnet.ibm.com>2013-04-29 18:08:01 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2013-04-29 18:54:36 -0400
commitf9872caf07c1c774034b8bddde7d4a3a7f4a6484 (patch)
treebfaa2883e6d2ae3945f6789b3a8935e7461ab9cb
parent7c243c7168dcc1bc2081fc0494923cd7cc808fb6 (diff)
page_alloc: make setup_nr_node_ids() usable for arch init code
powerpc and x86 were opencoding copies of setup_nr_node_ids(), which page_alloc provides but makes static. Make it avaliable to the archs in linux/mm.h. Signed-off-by: Cody P Schafer <cody@linux.vnet.ibm.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--include/linux/mm.h6
-rw-r--r--mm/page_alloc.c6
2 files changed, 7 insertions, 5 deletions
diff --git a/include/linux/mm.h b/include/linux/mm.h
index 6d7266842abd..7aa11a6736eb 100644
--- a/include/linux/mm.h
+++ b/include/linux/mm.h
@@ -1816,5 +1816,11 @@ static inline unsigned int debug_guardpage_minorder(void) { return 0; }
1816static inline bool page_is_guard(struct page *page) { return false; } 1816static inline bool page_is_guard(struct page *page) { return false; }
1817#endif /* CONFIG_DEBUG_PAGEALLOC */ 1817#endif /* CONFIG_DEBUG_PAGEALLOC */
1818 1818
1819#if MAX_NUMNODES > 1
1820void __init setup_nr_node_ids(void);
1821#else
1822static inline void setup_nr_node_ids(void) {}
1823#endif
1824
1819#endif /* __KERNEL__ */ 1825#endif /* __KERNEL__ */
1820#endif /* _LINUX_MM_H */ 1826#endif /* _LINUX_MM_H */
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index 5a234b64f3ac..98cbdf6e5532 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -4749,7 +4749,7 @@ void __paginginit free_area_init_node(int nid, unsigned long *zones_size,
4749/* 4749/*
4750 * Figure out the number of possible node ids. 4750 * Figure out the number of possible node ids.
4751 */ 4751 */
4752static void __init setup_nr_node_ids(void) 4752void __init setup_nr_node_ids(void)
4753{ 4753{
4754 unsigned int node; 4754 unsigned int node;
4755 unsigned int highest = 0; 4755 unsigned int highest = 0;
@@ -4758,10 +4758,6 @@ static void __init setup_nr_node_ids(void)
4758 highest = node; 4758 highest = node;
4759 nr_node_ids = highest + 1; 4759 nr_node_ids = highest + 1;
4760} 4760}
4761#else
4762static inline void setup_nr_node_ids(void)
4763{
4764}
4765#endif 4761#endif
4766 4762
4767/** 4763/**