hypervisor, vmm: Don't re-export the contents of mshv_bindings::*

The contents of this crate may change and cause conflicts - re-exporting
the contents is unnecessary.

Signed-off-by: Rob Bradford <rbradford@rivosinc.com>
This commit is contained in:
Rob Bradford 2024-04-25 17:55:09 +01:00
parent 1ef2b488c7
commit b89657ea22
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ use crate::hypervisor;
use crate::vec_with_array_field;
use crate::vm::{self, InterruptSourceConfig, VmOps};
use crate::HypervisorType;
pub use mshv_bindings::*;
use mshv_bindings::*;
use mshv_ioctls::{set_registers_64, InterruptRequest, Mshv, NoDatamatch, VcpuFd, VmFd, VmType};
use std::any::Any;
use std::collections::HashMap;

View File

@ -20,7 +20,7 @@ use igvm_defs::IGVM_VHS_PARAMETER;
use igvm_defs::IGVM_VHS_PARAMETER_INSERT;
use igvm_parser::snp_defs::SevVmsa;
pub use mshv_bindings::*;
use mshv_bindings::*;
use std::collections::HashMap;
use std::ffi::CString;
use std::io::Read;