From 25712ffe8478a95abd7b82e2f085c7c929498643 Mon Sep 17 00:00:00 2001 From: Eduardo Habkost Date: Sun, 8 Feb 2015 16:51:19 -0200 Subject: numa: Make max_numa_nodeid static Now the only code that uses the variable is inside numa.c. Reviewed-by: Paolo Bonzini Acked-by: Michael S. Tsirkin Signed-off-by: Eduardo Habkost --- numa.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'numa.c') diff --git a/numa.c b/numa.c index 61531db5a1..84d4cb5d13 100644 --- a/numa.c +++ b/numa.c @@ -45,8 +45,10 @@ QemuOptsList qemu_numa_opts = { }; static int have_memdevs = -1; +static int max_numa_nodeid; /* Highest specified NUMA node ID, plus one. + * For all nodes, nodeid < max_numa_nodeid + */ int nb_numa_nodes; -int max_numa_nodeid; NodeInfo numa_info[MAX_NODES]; static void numa_node_parse(NumaNodeOptions *node, QemuOpts *opts, Error **errp) -- cgit v1.2.1