diff options
| author | Eduardo Habkost | 2015-02-08 19:51:19 +0100 |
|---|---|---|
| committer | Eduardo Habkost | 2015-02-23 19:39:27 +0100 |
| commit | 25712ffe8478a95abd7b82e2f085c7c929498643 (patch) | |
| tree | a221709ed1646dd22f723c2331152534f3cbcd98 /numa.c | |
| parent | numa: Move NUMA globals to numa.c (diff) | |
| download | qemu-25712ffe8478a95abd7b82e2f085c7c929498643.tar.gz qemu-25712ffe8478a95abd7b82e2f085c7c929498643.tar.xz qemu-25712ffe8478a95abd7b82e2f085c7c929498643.zip | |
numa: Make max_numa_nodeid static
Now the only code that uses the variable is inside numa.c.
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Acked-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'numa.c')
| -rw-r--r-- | numa.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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) |
