diff --git a/vmm/src/config.rs b/vmm/src/config.rs index 7353ffe2f..7e37562f2 100644 --- a/vmm/src/config.rs +++ b/vmm/src/config.rs @@ -899,6 +899,7 @@ fn default_vunetconfig_mac() -> MacAddr { impl VhostUserNetConfig { pub fn parse(vhost_user_net: &str) -> Result { + error!("Using deprecated --vhost-user-net syntax. Use --net with vhost_user=true,socket="); // Split the parameters based on the comma delimiter let params_list: Vec<&str> = vhost_user_net.split(',').collect();