mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2026-08-05 02:19:16 +00:00
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:
committed by
Rob Bradford
parent
41cfdb50cd
commit
2824642e80
@@ -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::*;
|
||||
|
||||
Reference in New Issue
Block a user