virtio-devices: Rename BlockIoUring to Block

Now that BlockIoUring is the only implementation of virtio-block,
handling both synchronous and asynchronous backends based on the
AsyncIo trait, we can rename it to Block.

Signed-off-by: Sebastien Boeuf <sebastien.boeuf@intel.com>
This commit is contained in:
Sebastien Boeuf
2021-01-22 11:15:13 +01:00
committed by Rob Bradford
parent 41cfdb50cd
commit 2824642e80
5 changed files with 27 additions and 27 deletions
+2 -2
View File
@@ -29,7 +29,7 @@ use std::io;
#[macro_use]
mod device;
pub mod balloon;
pub mod block_io_uring;
pub mod block;
mod console;
pub mod epoll_helper;
mod iommu;
@@ -45,7 +45,7 @@ pub mod vsock;
pub mod watchdog;
pub use self::balloon::*;
pub use self::block_io_uring::*;
pub use self::block::*;
pub use self::console::*;
pub use self::device::*;
pub use self::epoll_helper::*;