xref: /cloud-hypervisor/hypervisor/src/kvm/x86_64/mod.rs (revision f9b51a41b5ae37e69ddc8646da310a17dd0986a6)
1 // Copyright © 2019 Intel Corporation
2 //
3 // SPDX-License-Identifier: Apache-2.0
4 //
5 // Copyright © 2020, Microsoft  Corporation
6 //
7 // Copyright 2018-2019 CrowdStrike, Inc.
8 //
9 //
10 
11 ///
12 /// Export generically-named wrappers of kvm-bindings for Unix-based platforms
13 ///
14 pub use {
15     kvm_bindings::kvm_lapic_state as LapicState,
16     kvm_bindings::kvm_xcrs as ExtendedControlRegisters, kvm_bindings::kvm_xsave as Xsave,
17     kvm_bindings::CpuId, kvm_bindings::Msrs as MsrEntries,
18 };
19