diff --git a/vmm/src/device_manager.rs b/vmm/src/device_manager.rs index 26bc24dbc..4699d7231 100644 --- a/vmm/src/device_manager.rs +++ b/vmm/src/device_manager.rs @@ -2722,10 +2722,10 @@ impl DeviceManager { unreachable!("Checked in if statement above"); #[cfg(feature = "io_uring")] { - DiskBackend::Legacy(Box::new( + DiskBackend::Next(Box::new( FixedVhdDiskAsync::new(file) .map_err(DeviceManagerError::CreateFixedVhdDiskAsync)?, - ) as Box) + )) } } else { info!("Using synchronous fixed VHD disk file");