[RFC PATCH v3 31/31] mm: add a early_param "extra_nr_node_ids" to increase nr_node_ids above the minimum by a percentage.

From: Cody P Schafer
Date: Thu May 02 2013 - 20:05:48 EST


For dynamic numa, sometimes the hypervisor we're running under will want
to split a single NUMA node into multiple NUMA nodes. If the number of
numa nodes is limited to the number avaliable when the system booted (as
it is on x86), we may not be able to fully adopt the new memory layout
provided by the hypervisor.

This option allows reserving some extra node ids as a percentage of the
boot time node ids. While not perfect (idealy nr_node_ids would be fully
dynamic), this allows decent functionality without invasive changes to
the SL{U,A}B allocators.

Signed-off-by: Cody P Schafer <cody@xxxxxxxxxxxxxxxxxx>
---
Documentation/kernel-parameters.txt | 6 ++++++
mm/page_alloc.c | 24 ++++++++++++++++++++++++
2 files changed, 30 insertions(+)

diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt
index 9653cf2..c606371 100644
--- a/Documentation/kernel-parameters.txt
+++ b/Documentation/kernel-parameters.txt
@@ -2082,6 +2082,12 @@ bytes respectively. Such letter suffixes can also be entirely omitted.
use hotplug cpu feature to put more cpu back to online.
just like you compile the kernel NR_CPUS=n

+ extra_nr_node_ids= [NUMA] Increase the maximum number of NUMA nodes
+ above the number detected at boot by the specified
+ percentage (rounded up). For example:
+ extra_nr_node_ids=100 would double the number of
+ node_ids avaliable (up to a max of MAX_NUMNODES).
+
nr_uarts= [SERIAL] maximum number of UARTs to be registered.

numa_balancing= [KNL,X86] Enable or disable automatic NUMA balancing.
diff --git a/mm/page_alloc.c b/mm/page_alloc.c
index cc7b332..1fd2f2f 100644
--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -4837,6 +4837,17 @@ void __paginginit free_area_init_node(int nid, unsigned long *zones_size,
#ifdef CONFIG_HAVE_MEMBLOCK_NODE_MAP

#if MAX_NUMNODES > 1
+
+static unsigned nr_node_ids_mod_percent;
+static int __init setup_extra_nr_node_ids(char *arg)
+{
+ int r = kstrtouint(arg, 10, &nr_node_ids_mod_percent);
+ if (r)
+ pr_err("invalid param value extra_nr_node_ids=\"%s\"\n", arg);
+ return 0;
+}
+early_param("extra_nr_node_ids", setup_extra_nr_node_ids);
+
/*
* Figure out the number of possible node ids.
*/
@@ -4848,6 +4859,19 @@ void __init setup_nr_node_ids(void)
for_each_node_mask(node, node_possible_map)
highest = node;
nr_node_ids = highest + 1;
+
+ /*
+ * expand nr_node_ids and node_possible_map so more can be onlined
+ * later
+ */
+ nr_node_ids +=
+ DIV_ROUND_UP(nr_node_ids * nr_node_ids_mod_percent, 100);
+
+ if (nr_node_ids > MAX_NUMNODES)
+ nr_node_ids = MAX_NUMNODES;
+
+ for (node = highest + 1; node < nr_node_ids; node++)
+ node_set(node, node_possible_map);
}
#endif

--
1.8.2.2

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/