From 43a6eda400ec8ee36044f089bc1a71775644ba4d Mon Sep 17 00:00:00 2001 From: Bo Chen Date: Fri, 20 Oct 2023 10:18:48 -0700 Subject: [PATCH] vmm: Add help information for "--numa pci_segments=" See: #5844 Signed-off-by: Bo Chen --- vmm/src/config.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vmm/src/config.rs b/vmm/src/config.rs index 6a005ba0f..b88ee6f33 100644 --- a/vmm/src/config.rs +++ b/vmm/src/config.rs @@ -1756,7 +1756,8 @@ impl SgxEpcConfig { impl NumaConfig { pub const SYNTAX: &'static str = "Settings related to a given NUMA node \ \"guest_numa_id=,cpus=,distances=,\ - memory_zones=,sgx_epc_sections=\""; + memory_zones=,sgx_epc_sections=,\ + pci_segments=\""; pub fn parse(numa: &str) -> Result { let mut parser = OptionParser::new();