diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2015-02-08 16:51:18 -0200 |
---|---|---|
committer | Eduardo Habkost <ehabkost@redhat.com> | 2015-02-23 15:39:27 -0300 |
commit | de1a7c84c49affff5884175d621c95196007ea23 (patch) | |
tree | 814813d450a139e21895543d530a3ce1f2f9bc92 /numa.c | |
parent | 61b388c14c5b042e6a43caaba842e351b2c88edd (diff) |
numa: Move NUMA globals to 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 | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -45,6 +45,9 @@ QemuOptsList qemu_numa_opts = { }; static int have_memdevs = -1; +int nb_numa_nodes; +int max_numa_nodeid; +NodeInfo numa_info[MAX_NODES]; static void numa_node_parse(NumaNodeOptions *node, QemuOpts *opts, Error **errp) { |