From d4660b4fc5661d4e56bf64be8cde8f63ca19f2b8 Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Tue, 7 Jul 2026 16:04:16 +0200 Subject: [PATCH] vmm: api: fix parameter name Fixes: 085a7a49f ("vmm: generic vhost-user: add support") Signed-off-by: Alyssa Ross --- vmm/src/api/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vmm/src/api/mod.rs b/vmm/src/api/mod.rs index f0a0367ed..a3f114bc1 100644 --- a/vmm/src/api/mod.rs +++ b/vmm/src/api/mod.rs @@ -734,7 +734,7 @@ pub trait RequestHandler { fn vm_add_generic_vhost_user( &mut self, - fs_cfg: GenericVhostUserConfig, + generic_vhost_user_cfg: GenericVhostUserConfig, ) -> Result>, VmError>; fn vm_add_pmem(&mut self, pmem_cfg: PmemConfig) -> Result>, VmError>;