mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2026-08-05 02:19:16 +00:00
virtio-devices: Remove the need for net_util in the crate
Everything that was shared in the net_util.rs file has been now moved to the net_util crate. The only remaining bit was only used by the virtio-net implementation, that is why this commit moves this code to virtio-net, and since there's nothing left in net_util.rs, it can be removed. Signed-off-by: Sebastien Boeuf <sebastien.boeuf@intel.com>
This commit is contained in:
@@ -29,7 +29,6 @@ pub mod epoll_helper;
|
||||
mod iommu;
|
||||
pub mod mem;
|
||||
pub mod net;
|
||||
pub mod net_util;
|
||||
mod pmem;
|
||||
mod rng;
|
||||
pub mod seccomp_filters;
|
||||
@@ -46,7 +45,6 @@ pub use self::epoll_helper::*;
|
||||
pub use self::iommu::*;
|
||||
pub use self::mem::*;
|
||||
pub use self::net::*;
|
||||
pub use self::net_util::*;
|
||||
pub use self::pmem::*;
|
||||
pub use self::rng::*;
|
||||
pub use self::vsock::*;
|
||||
|
||||
Reference in New Issue
Block a user