mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-11-05 11:31:14 +00:00
cc8b553e86
Signed-off-by: Sebastien Boeuf <sebastien.boeuf@intel.com>
14 lines
341 B
Rust
14 lines
341 B
Rust
// Copyright © 2019 Intel Corporation
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
use vmm_sys_util::eventfd::EventFd;
|
|
mod pci_common_config;
|
|
mod pci_device;
|
|
pub use pci_common_config::VirtioPciCommonConfig;
|
|
pub use pci_device::VirtioPciDevice;
|
|
|
|
pub trait VirtioTransport {
|
|
fn ioeventfds(&self, base_addr: u64) -> Vec<(&EventFd, u64)>;
|
|
}
|