|
@@ -37,6 +37,7 @@
|
|
|
#include <linux/nodemask.h>
|
|
|
#include <linux/vmalloc.h>
|
|
|
#include <linux/mempolicy.h>
|
|
|
+#include <linux/stop_machine.h>
|
|
|
|
|
|
#include <asm/tlbflush.h>
|
|
|
#include <asm/div64.h>
|
|
@@ -1704,14 +1705,29 @@ static void __meminit build_zonelists(pg_data_t *pgdat)
|
|
|
|
|
|
#endif /* CONFIG_NUMA */
|
|
|
|
|
|
-void __init build_all_zonelists(void)
|
|
|
+/* return values int ....just for stop_machine_run() */
|
|
|
+static int __meminit __build_all_zonelists(void *dummy)
|
|
|
{
|
|
|
- int i;
|
|
|
+ int nid;
|
|
|
+ for_each_online_node(nid)
|
|
|
+ build_zonelists(NODE_DATA(nid));
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+
|
|
|
+void __meminit build_all_zonelists(void)
|
|
|
+{
|
|
|
+ if (system_state == SYSTEM_BOOTING) {
|
|
|
+ __build_all_zonelists(0);
|
|
|
+ cpuset_init_current_mems_allowed();
|
|
|
+ } else {
|
|
|
+ /* we have to stop all cpus to guaranntee there is no user
|
|
|
+ of zonelist */
|
|
|
+ stop_machine_run(__build_all_zonelists, NULL, NR_CPUS);
|
|
|
+ /* cpuset refresh routine should be here */
|
|
|
+ }
|
|
|
|
|
|
- for_each_online_node(i)
|
|
|
- build_zonelists(NODE_DATA(i));
|
|
|
printk("Built %i zonelists\n", num_online_nodes());
|
|
|
- cpuset_init_current_mems_allowed();
|
|
|
+
|
|
|
}
|
|
|
|
|
|
/*
|