]> Git Repo - qemu.git/commitdiff
numa: Make max_numa_nodeid static
authorEduardo Habkost <[email protected]>
Sun, 8 Feb 2015 18:51:19 +0000 (16:51 -0200)
committerEduardo Habkost <[email protected]>
Mon, 23 Feb 2015 18:39:27 +0000 (15:39 -0300)
Now the only code that uses the variable is inside numa.c.

Reviewed-by: Paolo Bonzini <[email protected]>
Acked-by: Michael S. Tsirkin <[email protected]>
Signed-off-by: Eduardo Habkost <[email protected]>
include/sysemu/numa.h
numa.c

index 514914f9a9108bb7bd768e92f8f0df19634adf07..eae881e453bef555b59ecf7b9b4f53fd250f875b 100644 (file)
@@ -8,9 +8,6 @@
 #include "sysemu/hostmem.h"
 
 extern int nb_numa_nodes;   /* Number of NUMA nodes */
-extern int max_numa_nodeid; /* Highest specified NUMA node ID, plus one.
-                             * For all nodes, nodeid < max_numa_nodeid
-                             */
 
 typedef struct node_info {
     uint64_t node_mem;
diff --git a/numa.c b/numa.c
index 61531db5a1e7c6ea8ab182365e4ffe8b67b9c083..84d4cb5d134b38a136e4ac6b34f827827b1e6bcb 100644 (file)
--- 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)
This page took 0.025398 seconds and 4 git commands to generate.