2015-02-08 19:51:16 +01:00
|
|
|
#ifndef SYSEMU_NUMA_H
|
|
|
|
#define SYSEMU_NUMA_H
|
|
|
|
|
|
|
|
#include "qemu/bitmap.h"
|
|
|
|
#include "qemu/option.h"
|
|
|
|
#include "sysemu/sysemu.h"
|
|
|
|
#include "sysemu/hostmem.h"
|
2015-03-19 18:09:21 +01:00
|
|
|
#include "hw/boards.h"
|
2015-02-08 19:51:16 +01:00
|
|
|
|
|
|
|
extern int nb_numa_nodes; /* Number of NUMA nodes */
|
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 04:35:58 +02:00
|
|
|
extern bool have_numa_distance;
|
2015-02-08 19:51:16 +01:00
|
|
|
|
2017-05-02 18:29:55 +02:00
|
|
|
struct node_info {
|
2015-02-08 19:51:16 +01: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 04:35:58 +02:00
|
|
|
uint8_t distance[MAX_NODES];
|
2017-05-02 18:29:55 +02:00
|
|
|
};
|
2015-06-29 10:20:25 +02:00
|
|
|
|
2017-08-29 17:30:20 +02:00
|
|
|
struct NumaNodeMem {
|
|
|
|
uint64_t node_mem;
|
|
|
|
uint64_t node_plugged_mem;
|
|
|
|
};
|
|
|
|
|
2015-02-08 19:51:16 +01:00
|
|
|
extern NodeInfo numa_info[MAX_NODES];
|
2017-05-10 13:29:45 +02:00
|
|
|
void parse_numa_opts(MachineState *ms);
|
2017-08-29 17:30:20 +02:00
|
|
|
void query_numa_node_mem(NumaNodeMem node_mem[]);
|
2015-02-08 19:51:16 +01:00
|
|
|
extern QemuOptsList qemu_numa_opts;
|
2017-05-02 18:29:55 +02: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);
|
2017-05-30 18:23:56 +02:00
|
|
|
void numa_cpu_pre_plug(const CPUArchId *slot, DeviceState *dev, Error **errp);
|
2015-02-08 19:51:16 +01:00
|
|
|
#endif
|