From 110192087ec5989d97f57ce3232366c135289ea2 Mon Sep 17 00:00:00 2001 From: Victor Vieux Date: Thu, 26 Feb 2026 11:53:49 -0800 Subject: [PATCH] vmm: config: Fix missing comma in NetConfig help text The SYNTAX help string for --net was missing a comma between pci_segment and offload_tso parameters, making the help output show them as a single run-on token. Signed-off-by: Victor Vieux --- vmm/src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vmm/src/config.rs b/vmm/src/config.rs index 3b3246367..46f344313 100644 --- a/vmm/src/config.rs +++ b/vmm/src/config.rs @@ -1414,7 +1414,7 @@ impl NetConfig { num_queues=,queue_size=,id=,\ vhost_user=,socket=,vhost_mode=client|server,\ bw_size=,bw_one_time_burst=,bw_refill_time=,\ - ops_size=,ops_one_time_burst=,ops_refill_time=,pci_segment=\ + ops_size=,ops_one_time_burst=,ops_refill_time=,pci_segment=,\ offload_tso=on|off,offload_ufo=on|off,offload_csum=on|off\""; pub fn parse(net: &str) -> Result {