diff --git a/vmm/src/device_manager.rs b/vmm/src/device_manager.rs index 080fe9a3d..342f99b37 100644 --- a/vmm/src/device_manager.rs +++ b/vmm/src/device_manager.rs @@ -2763,9 +2763,7 @@ impl DeviceManager { DiskBackend::Legacy(Box::new(RawFileDiskAio::new(file)) as Box) } else { info!("Using synchronous RAW disk file"); - DiskBackend::Legacy( - Box::new(RawFileDiskSync::new(file)) as Box - ) + DiskBackend::Next(Box::new(RawFileDiskSync::new(file))) } } ImageType::Qcow2 => {