virtio-devices: Remove virtio-block synchronous implementation

Now that both synchronous and asynchronous backends rely on the
asynchronous version of virtio-block (namely BlockIoUring), we can
get rid of the synchronous version (namely Block).

Signed-off-by: Sebastien Boeuf <sebastien.boeuf@intel.com>
This commit is contained in:
Sebastien Boeuf
2021-01-22 10:51:27 +01:00
committed by Rob Bradford
parent 12e20effd7
commit 41cfdb50cd
5 changed files with 9 additions and 650 deletions

View File

@@ -29,7 +29,6 @@ use std::io;
#[macro_use]
mod device;
pub mod balloon;
pub mod block;
pub mod block_io_uring;
mod console;
pub mod epoll_helper;
@@ -46,7 +45,6 @@ pub mod vsock;
pub mod watchdog;
pub use self::balloon::*;
pub use self::block::*;
pub use self::block_io_uring::*;
pub use self::console::*;
pub use self::device::*;