2015-02-08 18:51:16 +00:00
|
|
|
#ifndef SYSEMU_NUMA_H
|
|
|
|
#define SYSEMU_NUMA_H
|
|
|
|
|
|
|
|
#include "qemu/bitmap.h"
|
2019-08-12 05:23:53 +00:00
|
|
|
#include "qapi/qapi-types-machine.h"
|
|
|
|
#include "exec/cpu-common.h"
|
|
|
|
|
|
|
|
struct CPUArchId;
|
2015-02-08 18:51:16 +00:00
|
|
|
|
2019-08-12 05:23:55 +00:00
|
|
|
#define MAX_NODES 128
|
|
|
|
#define NUMA_NODE_UNASSIGNED MAX_NODES
|
|
|
|
#define NUMA_DISTANCE_MIN 10
|
|
|
|
#define NUMA_DISTANCE_DEFAULT 20
|
|
|
|
#define NUMA_DISTANCE_MAX 254
|
|
|
|
#define NUMA_DISTANCE_UNREACHABLE 255
|
|
|
|
|
2018-11-15 21:17:52 +00:00
|
|
|
struct NodeInfo {
|
2015-02-08 18:51:16 +00:00
|
|
|
uint64_t node_mem;
|
|
|
|
struct HostMemoryBackend *node_memdev;
|
|
|
|
bool present;
|
numa: Allow setting NUMA distance for different NUMA nodes
This patch is going to add SLIT table support in QEMU, and provides
additional option `dist` for command `-numa` to allow user set vNUMA
distance by QEMU command.
With this patch, when a user wants to create a guest that contains
several vNUMA nodes and also wants to set distance among those nodes,
the QEMU command would like:
```
-numa node,nodeid=0,cpus=0 \
-numa node,nodeid=1,cpus=1 \
-numa node,nodeid=2,cpus=2 \
-numa node,nodeid=3,cpus=3 \
-numa dist,src=0,dst=1,val=21 \
-numa dist,src=0,dst=2,val=31 \
-numa dist,src=0,dst=3,val=41 \
-numa dist,src=1,dst=2,val=21 \
-numa dist,src=1,dst=3,val=31 \
-numa dist,src=2,dst=3,val=21 \
```
Signed-off-by: He Chen <he.chen@linux.intel.com>
Message-Id: <1493260558-20728-1-git-send-email-he.chen@linux.intel.com>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
Reviewed-by: Andrew Jones <drjones@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
2017-04-27 02:35:58 +00:00
|
|
|
uint8_t distance[MAX_NODES];
|
2017-05-02 16:29:55 +00:00
|
|
|
};
|
2015-06-29 08:20:25 +00:00
|
|
|
|
2017-08-29 15:30:20 +00:00
|
|
|
struct NumaNodeMem {
|
|
|
|
uint64_t node_mem;
|
|
|
|
uint64_t node_plugged_mem;
|
|
|
|
};
|
|
|
|
|
2015-02-08 18:51:16 +00:00
|
|
|
extern NodeInfo numa_info[MAX_NODES];
|
2019-06-19 20:10:43 +00:00
|
|
|
|
2019-08-09 06:57:22 +00:00
|
|
|
struct NumaState {
|
|
|
|
/* Number of NUMA nodes */
|
|
|
|
int num_nodes;
|
|
|
|
|
2019-08-09 06:57:23 +00:00
|
|
|
/* Allow setting NUMA distance for different NUMA nodes */
|
|
|
|
bool have_numa_distance;
|
2019-08-09 06:57:22 +00:00
|
|
|
};
|
|
|
|
typedef struct NumaState NumaState;
|
|
|
|
|
2019-06-19 20:10:43 +00:00
|
|
|
void set_numa_options(MachineState *ms, NumaOptions *object, Error **errp);
|
2017-05-10 11:29:45 +00:00
|
|
|
void parse_numa_opts(MachineState *ms);
|
2018-05-04 08:37:39 +00:00
|
|
|
void numa_complete_configuration(MachineState *ms);
|
2019-08-09 06:57:22 +00:00
|
|
|
void query_numa_node_mem(NumaNodeMem node_mem[], MachineState *ms);
|
2015-02-08 18:51:16 +00:00
|
|
|
extern QemuOptsList qemu_numa_opts;
|
2017-05-02 16:29:55 +00:00
|
|
|
void numa_legacy_auto_assign_ram(MachineClass *mc, NodeInfo *nodes,
|
|
|
|
int nb_nodes, ram_addr_t size);
|
|
|
|
void numa_default_auto_assign_ram(MachineClass *mc, NodeInfo *nodes,
|
|
|
|
int nb_nodes, ram_addr_t size);
|
2019-08-12 05:23:53 +00:00
|
|
|
void numa_cpu_pre_plug(const struct CPUArchId *slot, DeviceState *dev,
|
|
|
|
Error **errp);
|
|
|
|
|
2015-02-08 18:51:16 +00:00
|
|
|
#endif
|