[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 2/5] monitor: Support 'info numa' command
From: |
Yang Zhong |
Subject: |
[PATCH v3 2/5] monitor: Support 'info numa' command |
Date: |
Mon, 1 Nov 2021 12:20:06 -0400 |
Add the MEMORY_DEVICE_INFO_KIND_SGX_EPC case for SGX numa info
with 'info numa' command in the monitor.
Signed-off-by: Yang Zhong <yang.zhong@intel.com>
---
hw/core/numa.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/hw/core/numa.c b/hw/core/numa.c
index 510d096a88..1aa05dcf42 100644
--- a/hw/core/numa.c
+++ b/hw/core/numa.c
@@ -756,6 +756,7 @@ static void numa_stat_memory_devices(NumaNodeMem node_mem[])
PCDIMMDeviceInfo *pcdimm_info;
VirtioPMEMDeviceInfo *vpi;
VirtioMEMDeviceInfo *vmi;
+ SgxEPCDeviceInfo *se;
for (info = info_list; info; info = info->next) {
MemoryDeviceInfo *value = info->value;
@@ -781,6 +782,11 @@ static void numa_stat_memory_devices(NumaNodeMem
node_mem[])
node_mem[vmi->node].node_mem += vmi->size;
node_mem[vmi->node].node_plugged_mem += vmi->size;
break;
+ case MEMORY_DEVICE_INFO_KIND_SGX_EPC:
+ se = value->u.sgx_epc.data;
+ node_mem[se->node].node_mem += se->size;
+ node_mem[se->node].node_plugged_mem = 0;
+ break;
default:
g_assert_not_reached();
}
- [PATCH v3 0/5] SGX NUMA support plus vepc reset, Yang Zhong, 2021/11/01
- [PATCH v3 1/5] numa: Enable numa for SGX EPC sections, Yang Zhong, 2021/11/01
- [PATCH v3 2/5] monitor: Support 'info numa' command,
Yang Zhong <=
- [PATCH v3 3/5] numa: Support SGX numa in the monitor and Libvirt interfaces, Yang Zhong, 2021/11/01
- [PATCH v3 4/5] doc: Add the SGX numa description, Yang Zhong, 2021/11/01
- [PATCH v3 5/5] sgx: Reset the vEPC regions during VM reboot, Yang Zhong, 2021/11/01
- Re: [PATCH v3 0/5] SGX NUMA support plus vepc reset, Paolo Bonzini, 2021/11/10