mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-24 03:59:52 +00:00
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>
This commit is contained in:
parent
de1a7c84c4
commit
25712ffe84
@ -8,9 +8,6 @@
|
|||||||
#include "sysemu/hostmem.h"
|
#include "sysemu/hostmem.h"
|
||||||
|
|
||||||
extern int nb_numa_nodes; /* Number of NUMA nodes */
|
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 {
|
typedef struct node_info {
|
||||||
uint64_t node_mem;
|
uint64_t node_mem;
|
||||||
|
4
numa.c
4
numa.c
@ -45,8 +45,10 @@ QemuOptsList qemu_numa_opts = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
static int have_memdevs = -1;
|
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 nb_numa_nodes;
|
||||||
int max_numa_nodeid;
|
|
||||||
NodeInfo numa_info[MAX_NODES];
|
NodeInfo numa_info[MAX_NODES];
|
||||||
|
|
||||||
static void numa_node_parse(NumaNodeOptions *node, QemuOpts *opts, Error **errp)
|
static void numa_node_parse(NumaNodeOptions *node, QemuOpts *opts, Error **errp)
|
||||||
|
Loading…
Reference in New Issue
Block a user