From 284891b5df0768d3c8e6f25850a622db3e6c333e Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Tue, 16 Jun 2020 11:03:08 +0100 Subject: [PATCH] main: Populate "--cpus" with appropriate syntax definition This needed to be updated to include specifying the boot and maxmium vCPUs as well as the newly added topology for those vCPUs. Signed-off-by: Rob Bradford --- src/main.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index c0b3b23b1..991e4d0bd 100644 --- a/src/main.rs +++ b/src/main.rs @@ -90,7 +90,10 @@ fn create_app<'a, 'b>( .arg( Arg::with_name("cpus") .long("cpus") - .help("Number of virtual CPUs") + .help( + "boot=,max=,\ + topology=:::", + ) .default_value(&default_vcpus) .group("vm-config"), )