diff --git a/.buildkite/custom-tests.json b/.buildkite/custom-tests.json index 91007756..ab45f4f9 100644 --- a/.buildkite/custom-tests.json +++ b/.buildkite/custom-tests.json @@ -6,7 +6,8 @@ "platform": [ "x86_64", "aarch64", - "riscv64" + "riscv64", + "loongarch64" ] }, { @@ -23,7 +24,8 @@ "platform": [ "x86_64", "aarch64", - "riscv64" + "riscv64", + "loongarch64" ] }, { diff --git a/.platform b/.platform index c9db5a65..b480f4e8 100644 --- a/.platform +++ b/.platform @@ -1,3 +1,4 @@ x86_64 aarch64 riscv64 +loongarch64 diff --git a/kvm-bindings/CHANGELOG.md b/kvm-bindings/CHANGELOG.md index 319e1d16..973be4f5 100644 --- a/kvm-bindings/CHANGELOG.md +++ b/kvm-bindings/CHANGELOG.md @@ -3,6 +3,8 @@ ### Added +- LoongArch KVM bindings for Linux kernel v6.13, including serialization support. + ### Changed ### Removed diff --git a/kvm-bindings/README.md b/kvm-bindings/README.md index 693ba5b0..00935064 100644 --- a/kvm-bindings/README.md +++ b/kvm-bindings/README.md @@ -6,6 +6,7 @@ following target architectures: - x86_64 - arm64 - riscv64 +- loongarch64 The bindings exported by this crate are statically generated using header files associated with a specific kernel version, and are not automatically synced with diff --git a/kvm-bindings/src/lib.rs b/kvm-bindings/src/lib.rs index c44c98e6..786a0598 100644 --- a/kvm-bindings/src/lib.rs +++ b/kvm-bindings/src/lib.rs @@ -8,7 +8,7 @@ #![allow(non_snake_case)] #![cfg_attr(docsrs, feature(doc_auto_cfg))] -#[cfg(feature = "fam-wrappers")] +#[cfg(all(feature = "fam-wrappers", not(target_arch = "loongarch64")))] #[macro_use] extern crate vmm_sys_util; @@ -36,3 +36,8 @@ pub use self::arm64::*; mod riscv64; #[cfg(target_arch = "riscv64")] pub use self::riscv64::*; + +#[cfg(target_arch = "loongarch64")] +mod loongarch64; +#[cfg(target_arch = "loongarch64")] +pub use self::loongarch64::*; diff --git a/kvm-bindings/src/loongarch64/bindings.rs b/kvm-bindings/src/loongarch64/bindings.rs new file mode 100644 index 00000000..2f2017b8 --- /dev/null +++ b/kvm-bindings/src/loongarch64/bindings.rs @@ -0,0 +1,3111 @@ +/* automatically generated by rust-bindgen 0.70.1 */ + +#[repr(C)] +#[derive(Default)] +pub struct __IncompleteArrayField(::std::marker::PhantomData, [T; 0]); +impl __IncompleteArrayField { + #[inline] + pub const fn new() -> Self { + __IncompleteArrayField(::std::marker::PhantomData, []) + } + #[inline] + pub fn as_ptr(&self) -> *const T { + self as *const _ as *const T + } + #[inline] + pub fn as_mut_ptr(&mut self) -> *mut T { + self as *mut _ as *mut T + } + #[inline] + pub unsafe fn as_slice(&self, len: usize) -> &[T] { + ::std::slice::from_raw_parts(self.as_ptr(), len) + } + #[inline] + pub unsafe fn as_mut_slice(&mut self, len: usize) -> &mut [T] { + ::std::slice::from_raw_parts_mut(self.as_mut_ptr(), len) + } +} +impl ::std::fmt::Debug for __IncompleteArrayField { + fn fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + fmt.write_str("__IncompleteArrayField") + } +} +pub const __BITS_PER_LONG_LONG: u32 = 64; +pub const __FD_SETSIZE: u32 = 1024; +pub const _IOC_NRBITS: u32 = 8; +pub const _IOC_TYPEBITS: u32 = 8; +pub const _IOC_SIZEBITS: u32 = 14; +pub const _IOC_DIRBITS: u32 = 2; +pub const _IOC_NRMASK: u32 = 255; +pub const _IOC_TYPEMASK: u32 = 255; +pub const _IOC_SIZEMASK: u32 = 16383; +pub const _IOC_DIRMASK: u32 = 3; +pub const _IOC_NRSHIFT: u32 = 0; +pub const _IOC_TYPESHIFT: u32 = 8; +pub const _IOC_SIZESHIFT: u32 = 16; +pub const _IOC_DIRSHIFT: u32 = 30; +pub const _IOC_NONE: u32 = 0; +pub const _IOC_WRITE: u32 = 1; +pub const _IOC_READ: u32 = 2; +pub const IOC_IN: u32 = 1073741824; +pub const IOC_OUT: u32 = 2147483648; +pub const IOC_INOUT: u32 = 3221225472; +pub const IOCSIZE_MASK: u32 = 1073676288; +pub const IOCSIZE_SHIFT: u32 = 16; +pub const KVM_COALESCED_MMIO_PAGE_OFFSET: u32 = 1; +pub const KVM_DIRTY_LOG_PAGE_OFFSET: u32 = 64; +pub const KVM_GUESTDBG_USE_SW_BP: u32 = 65536; +pub const KVM_CSR_IDX_MASK: u32 = 32767; +pub const KVM_CPUCFG_IDX_MASK: u32 = 32767; +pub const LOONGARCH_REG_SHIFT: u32 = 3; +pub const KVM_LOONGARCH_VM_FEAT_CTRL: u32 = 0; +pub const KVM_LOONGARCH_VM_FEAT_LSX: u32 = 0; +pub const KVM_LOONGARCH_VM_FEAT_LASX: u32 = 1; +pub const KVM_LOONGARCH_VM_FEAT_X86BT: u32 = 2; +pub const KVM_LOONGARCH_VM_FEAT_ARMBT: u32 = 3; +pub const KVM_LOONGARCH_VM_FEAT_MIPSBT: u32 = 4; +pub const KVM_LOONGARCH_VM_FEAT_PMU: u32 = 5; +pub const KVM_LOONGARCH_VM_FEAT_PV_IPI: u32 = 6; +pub const KVM_LOONGARCH_VM_FEAT_PV_STEALTIME: u32 = 7; +pub const KVM_LOONGARCH_VCPU_CPUCFG: u32 = 0; +pub const KVM_LOONGARCH_VCPU_PVTIME_CTRL: u32 = 1; +pub const KVM_LOONGARCH_VCPU_PVTIME_GPA: u32 = 0; +pub const KVM_NR_IRQCHIPS: u32 = 1; +pub const KVM_IRQCHIP_NUM_PINS: u32 = 64; +pub const KVM_MAX_CORES: u32 = 256; +pub const KVM_DEV_LOONGARCH_IPI_GRP_REGS: u32 = 1073741825; +pub const KVM_DEV_LOONGARCH_EXTIOI_GRP_REGS: u32 = 1073741826; +pub const KVM_DEV_LOONGARCH_EXTIOI_GRP_SW_STATUS: u32 = 1073741827; +pub const KVM_DEV_LOONGARCH_EXTIOI_SW_STATUS_NUM_CPU: u32 = 0; +pub const KVM_DEV_LOONGARCH_EXTIOI_SW_STATUS_FEATURE: u32 = 1; +pub const KVM_DEV_LOONGARCH_EXTIOI_SW_STATUS_STATE: u32 = 2; +pub const KVM_DEV_LOONGARCH_EXTIOI_GRP_CTRL: u32 = 1073741828; +pub const KVM_DEV_LOONGARCH_EXTIOI_CTRL_INIT_NUM_CPU: u32 = 0; +pub const KVM_DEV_LOONGARCH_EXTIOI_CTRL_INIT_FEATURE: u32 = 1; +pub const KVM_DEV_LOONGARCH_EXTIOI_CTRL_LOAD_FINISHED: u32 = 3; +pub const KVM_DEV_LOONGARCH_PCH_PIC_GRP_REGS: u32 = 1073741829; +pub const KVM_DEV_LOONGARCH_PCH_PIC_GRP_CTRL: u32 = 1073741830; +pub const KVM_DEV_LOONGARCH_PCH_PIC_CTRL_INIT: u32 = 0; +pub const KVM_API_VERSION: u32 = 12; +pub const KVM_MEM_LOG_DIRTY_PAGES: u32 = 1; +pub const KVM_MEM_READONLY: u32 = 2; +pub const KVM_MEM_GUEST_MEMFD: u32 = 4; +pub const KVM_PIT_SPEAKER_DUMMY: u32 = 1; +pub const KVM_EXIT_HYPERV_SYNIC: u32 = 1; +pub const KVM_EXIT_HYPERV_HCALL: u32 = 2; +pub const KVM_EXIT_HYPERV_SYNDBG: u32 = 3; +pub const KVM_EXIT_XEN_HCALL: u32 = 1; +pub const KVM_S390_GET_SKEYS_NONE: u32 = 1; +pub const KVM_S390_SKEYS_MAX: u32 = 1048576; +pub const KVM_EXIT_UNKNOWN: u32 = 0; +pub const KVM_EXIT_EXCEPTION: u32 = 1; +pub const KVM_EXIT_IO: u32 = 2; +pub const KVM_EXIT_HYPERCALL: u32 = 3; +pub const KVM_EXIT_DEBUG: u32 = 4; +pub const KVM_EXIT_HLT: u32 = 5; +pub const KVM_EXIT_MMIO: u32 = 6; +pub const KVM_EXIT_IRQ_WINDOW_OPEN: u32 = 7; +pub const KVM_EXIT_SHUTDOWN: u32 = 8; +pub const KVM_EXIT_FAIL_ENTRY: u32 = 9; +pub const KVM_EXIT_INTR: u32 = 10; +pub const KVM_EXIT_SET_TPR: u32 = 11; +pub const KVM_EXIT_TPR_ACCESS: u32 = 12; +pub const KVM_EXIT_S390_SIEIC: u32 = 13; +pub const KVM_EXIT_S390_RESET: u32 = 14; +pub const KVM_EXIT_DCR: u32 = 15; +pub const KVM_EXIT_NMI: u32 = 16; +pub const KVM_EXIT_INTERNAL_ERROR: u32 = 17; +pub const KVM_EXIT_OSI: u32 = 18; +pub const KVM_EXIT_PAPR_HCALL: u32 = 19; +pub const KVM_EXIT_S390_UCONTROL: u32 = 20; +pub const KVM_EXIT_WATCHDOG: u32 = 21; +pub const KVM_EXIT_S390_TSCH: u32 = 22; +pub const KVM_EXIT_EPR: u32 = 23; +pub const KVM_EXIT_SYSTEM_EVENT: u32 = 24; +pub const KVM_EXIT_S390_STSI: u32 = 25; +pub const KVM_EXIT_IOAPIC_EOI: u32 = 26; +pub const KVM_EXIT_HYPERV: u32 = 27; +pub const KVM_EXIT_ARM_NISV: u32 = 28; +pub const KVM_EXIT_X86_RDMSR: u32 = 29; +pub const KVM_EXIT_X86_WRMSR: u32 = 30; +pub const KVM_EXIT_DIRTY_RING_FULL: u32 = 31; +pub const KVM_EXIT_AP_RESET_HOLD: u32 = 32; +pub const KVM_EXIT_X86_BUS_LOCK: u32 = 33; +pub const KVM_EXIT_XEN: u32 = 34; +pub const KVM_EXIT_RISCV_SBI: u32 = 35; +pub const KVM_EXIT_RISCV_CSR: u32 = 36; +pub const KVM_EXIT_NOTIFY: u32 = 37; +pub const KVM_EXIT_LOONGARCH_IOCSR: u32 = 38; +pub const KVM_EXIT_MEMORY_FAULT: u32 = 39; +pub const KVM_INTERNAL_ERROR_EMULATION: u32 = 1; +pub const KVM_INTERNAL_ERROR_SIMUL_EX: u32 = 2; +pub const KVM_INTERNAL_ERROR_DELIVERY_EV: u32 = 3; +pub const KVM_INTERNAL_ERROR_UNEXPECTED_EXIT_REASON: u32 = 4; +pub const KVM_INTERNAL_ERROR_EMULATION_FLAG_INSTRUCTION_BYTES: u32 = 1; +pub const KVM_EXIT_IO_IN: u32 = 0; +pub const KVM_EXIT_IO_OUT: u32 = 1; +pub const KVM_SYSTEM_EVENT_SHUTDOWN: u32 = 1; +pub const KVM_SYSTEM_EVENT_RESET: u32 = 2; +pub const KVM_SYSTEM_EVENT_CRASH: u32 = 3; +pub const KVM_SYSTEM_EVENT_WAKEUP: u32 = 4; +pub const KVM_SYSTEM_EVENT_SUSPEND: u32 = 5; +pub const KVM_SYSTEM_EVENT_SEV_TERM: u32 = 6; +pub const KVM_MSR_EXIT_REASON_INVAL: u32 = 1; +pub const KVM_MSR_EXIT_REASON_UNKNOWN: u32 = 2; +pub const KVM_MSR_EXIT_REASON_FILTER: u32 = 4; +pub const KVM_MSR_EXIT_REASON_VALID_MASK: u32 = 7; +pub const KVM_NOTIFY_CONTEXT_INVALID: u32 = 1; +pub const KVM_MEMORY_EXIT_FLAG_PRIVATE: u32 = 8; +pub const SYNC_REGS_SIZE_BYTES: u32 = 2048; +pub const KVM_MP_STATE_RUNNABLE: u32 = 0; +pub const KVM_MP_STATE_UNINITIALIZED: u32 = 1; +pub const KVM_MP_STATE_INIT_RECEIVED: u32 = 2; +pub const KVM_MP_STATE_HALTED: u32 = 3; +pub const KVM_MP_STATE_SIPI_RECEIVED: u32 = 4; +pub const KVM_MP_STATE_STOPPED: u32 = 5; +pub const KVM_MP_STATE_CHECK_STOP: u32 = 6; +pub const KVM_MP_STATE_OPERATING: u32 = 7; +pub const KVM_MP_STATE_LOAD: u32 = 8; +pub const KVM_MP_STATE_AP_RESET_HOLD: u32 = 9; +pub const KVM_MP_STATE_SUSPENDED: u32 = 10; +pub const KVM_GUESTDBG_ENABLE: u32 = 1; +pub const KVM_GUESTDBG_SINGLESTEP: u32 = 2; +pub const KVM_X86_DISABLE_EXITS_MWAIT: u32 = 1; +pub const KVM_X86_DISABLE_EXITS_HLT: u32 = 2; +pub const KVM_X86_DISABLE_EXITS_PAUSE: u32 = 4; +pub const KVM_X86_DISABLE_EXITS_CSTATE: u32 = 8; +pub const KVM_X86_DISABLE_VALID_EXITS: u32 = 15; +pub const KVMIO: u32 = 174; +pub const KVM_VM_S390_UCONTROL: u32 = 1; +pub const KVM_VM_PPC_HV: u32 = 1; +pub const KVM_VM_PPC_PR: u32 = 2; +pub const KVM_VM_MIPS_AUTO: u32 = 0; +pub const KVM_VM_MIPS_VZ: u32 = 1; +pub const KVM_VM_MIPS_TE: u32 = 2; +pub const KVM_S390_SIE_PAGE_OFFSET: u32 = 1; +pub const KVM_VM_TYPE_ARM_IPA_SIZE_MASK: u32 = 255; +pub const KVM_CAP_IRQCHIP: u32 = 0; +pub const KVM_CAP_HLT: u32 = 1; +pub const KVM_CAP_MMU_SHADOW_CACHE_CONTROL: u32 = 2; +pub const KVM_CAP_USER_MEMORY: u32 = 3; +pub const KVM_CAP_SET_TSS_ADDR: u32 = 4; +pub const KVM_CAP_VAPIC: u32 = 6; +pub const KVM_CAP_EXT_CPUID: u32 = 7; +pub const KVM_CAP_CLOCKSOURCE: u32 = 8; +pub const KVM_CAP_NR_VCPUS: u32 = 9; +pub const KVM_CAP_NR_MEMSLOTS: u32 = 10; +pub const KVM_CAP_PIT: u32 = 11; +pub const KVM_CAP_NOP_IO_DELAY: u32 = 12; +pub const KVM_CAP_PV_MMU: u32 = 13; +pub const KVM_CAP_MP_STATE: u32 = 14; +pub const KVM_CAP_COALESCED_MMIO: u32 = 15; +pub const KVM_CAP_SYNC_MMU: u32 = 16; +pub const KVM_CAP_IOMMU: u32 = 18; +pub const KVM_CAP_DESTROY_MEMORY_REGION_WORKS: u32 = 21; +pub const KVM_CAP_USER_NMI: u32 = 22; +pub const KVM_CAP_SET_GUEST_DEBUG: u32 = 23; +pub const KVM_CAP_IRQ_ROUTING: u32 = 25; +pub const KVM_CAP_IRQ_INJECT_STATUS: u32 = 26; +pub const KVM_CAP_ASSIGN_DEV_IRQ: u32 = 29; +pub const KVM_CAP_JOIN_MEMORY_REGIONS_WORKS: u32 = 30; +pub const KVM_CAP_IRQFD: u32 = 32; +pub const KVM_CAP_SET_BOOT_CPU_ID: u32 = 34; +pub const KVM_CAP_IOEVENTFD: u32 = 36; +pub const KVM_CAP_SET_IDENTITY_MAP_ADDR: u32 = 37; +pub const KVM_CAP_ADJUST_CLOCK: u32 = 39; +pub const KVM_CAP_INTERNAL_ERROR_DATA: u32 = 40; +pub const KVM_CAP_S390_PSW: u32 = 42; +pub const KVM_CAP_PPC_SEGSTATE: u32 = 43; +pub const KVM_CAP_HYPERV: u32 = 44; +pub const KVM_CAP_HYPERV_VAPIC: u32 = 45; +pub const KVM_CAP_HYPERV_SPIN: u32 = 46; +pub const KVM_CAP_PCI_SEGMENT: u32 = 47; +pub const KVM_CAP_PPC_PAIRED_SINGLES: u32 = 48; +pub const KVM_CAP_INTR_SHADOW: u32 = 49; +pub const KVM_CAP_X86_ROBUST_SINGLESTEP: u32 = 51; +pub const KVM_CAP_PPC_OSI: u32 = 52; +pub const KVM_CAP_PPC_UNSET_IRQ: u32 = 53; +pub const KVM_CAP_ENABLE_CAP: u32 = 54; +pub const KVM_CAP_PPC_GET_PVINFO: u32 = 57; +pub const KVM_CAP_PPC_IRQ_LEVEL: u32 = 58; +pub const KVM_CAP_ASYNC_PF: u32 = 59; +pub const KVM_CAP_TSC_CONTROL: u32 = 60; +pub const KVM_CAP_GET_TSC_KHZ: u32 = 61; +pub const KVM_CAP_PPC_BOOKE_SREGS: u32 = 62; +pub const KVM_CAP_SPAPR_TCE: u32 = 63; +pub const KVM_CAP_PPC_SMT: u32 = 64; +pub const KVM_CAP_PPC_RMA: u32 = 65; +pub const KVM_CAP_MAX_VCPUS: u32 = 66; +pub const KVM_CAP_PPC_HIOR: u32 = 67; +pub const KVM_CAP_PPC_PAPR: u32 = 68; +pub const KVM_CAP_SW_TLB: u32 = 69; +pub const KVM_CAP_ONE_REG: u32 = 70; +pub const KVM_CAP_S390_GMAP: u32 = 71; +pub const KVM_CAP_TSC_DEADLINE_TIMER: u32 = 72; +pub const KVM_CAP_S390_UCONTROL: u32 = 73; +pub const KVM_CAP_SYNC_REGS: u32 = 74; +pub const KVM_CAP_PCI_2_3: u32 = 75; +pub const KVM_CAP_KVMCLOCK_CTRL: u32 = 76; +pub const KVM_CAP_SIGNAL_MSI: u32 = 77; +pub const KVM_CAP_PPC_GET_SMMU_INFO: u32 = 78; +pub const KVM_CAP_S390_COW: u32 = 79; +pub const KVM_CAP_PPC_ALLOC_HTAB: u32 = 80; +pub const KVM_CAP_READONLY_MEM: u32 = 81; +pub const KVM_CAP_IRQFD_RESAMPLE: u32 = 82; +pub const KVM_CAP_PPC_BOOKE_WATCHDOG: u32 = 83; +pub const KVM_CAP_PPC_HTAB_FD: u32 = 84; +pub const KVM_CAP_S390_CSS_SUPPORT: u32 = 85; +pub const KVM_CAP_PPC_EPR: u32 = 86; +pub const KVM_CAP_ARM_PSCI: u32 = 87; +pub const KVM_CAP_ARM_SET_DEVICE_ADDR: u32 = 88; +pub const KVM_CAP_DEVICE_CTRL: u32 = 89; +pub const KVM_CAP_IRQ_MPIC: u32 = 90; +pub const KVM_CAP_PPC_RTAS: u32 = 91; +pub const KVM_CAP_IRQ_XICS: u32 = 92; +pub const KVM_CAP_ARM_EL1_32BIT: u32 = 93; +pub const KVM_CAP_SPAPR_MULTITCE: u32 = 94; +pub const KVM_CAP_EXT_EMUL_CPUID: u32 = 95; +pub const KVM_CAP_HYPERV_TIME: u32 = 96; +pub const KVM_CAP_IOAPIC_POLARITY_IGNORED: u32 = 97; +pub const KVM_CAP_ENABLE_CAP_VM: u32 = 98; +pub const KVM_CAP_S390_IRQCHIP: u32 = 99; +pub const KVM_CAP_IOEVENTFD_NO_LENGTH: u32 = 100; +pub const KVM_CAP_VM_ATTRIBUTES: u32 = 101; +pub const KVM_CAP_ARM_PSCI_0_2: u32 = 102; +pub const KVM_CAP_PPC_FIXUP_HCALL: u32 = 103; +pub const KVM_CAP_PPC_ENABLE_HCALL: u32 = 104; +pub const KVM_CAP_CHECK_EXTENSION_VM: u32 = 105; +pub const KVM_CAP_S390_USER_SIGP: u32 = 106; +pub const KVM_CAP_S390_VECTOR_REGISTERS: u32 = 107; +pub const KVM_CAP_S390_MEM_OP: u32 = 108; +pub const KVM_CAP_S390_USER_STSI: u32 = 109; +pub const KVM_CAP_S390_SKEYS: u32 = 110; +pub const KVM_CAP_MIPS_FPU: u32 = 111; +pub const KVM_CAP_MIPS_MSA: u32 = 112; +pub const KVM_CAP_S390_INJECT_IRQ: u32 = 113; +pub const KVM_CAP_S390_IRQ_STATE: u32 = 114; +pub const KVM_CAP_PPC_HWRNG: u32 = 115; +pub const KVM_CAP_DISABLE_QUIRKS: u32 = 116; +pub const KVM_CAP_X86_SMM: u32 = 117; +pub const KVM_CAP_MULTI_ADDRESS_SPACE: u32 = 118; +pub const KVM_CAP_GUEST_DEBUG_HW_BPS: u32 = 119; +pub const KVM_CAP_GUEST_DEBUG_HW_WPS: u32 = 120; +pub const KVM_CAP_SPLIT_IRQCHIP: u32 = 121; +pub const KVM_CAP_IOEVENTFD_ANY_LENGTH: u32 = 122; +pub const KVM_CAP_HYPERV_SYNIC: u32 = 123; +pub const KVM_CAP_S390_RI: u32 = 124; +pub const KVM_CAP_SPAPR_TCE_64: u32 = 125; +pub const KVM_CAP_ARM_PMU_V3: u32 = 126; +pub const KVM_CAP_VCPU_ATTRIBUTES: u32 = 127; +pub const KVM_CAP_MAX_VCPU_ID: u32 = 128; +pub const KVM_CAP_X2APIC_API: u32 = 129; +pub const KVM_CAP_S390_USER_INSTR0: u32 = 130; +pub const KVM_CAP_MSI_DEVID: u32 = 131; +pub const KVM_CAP_PPC_HTM: u32 = 132; +pub const KVM_CAP_SPAPR_RESIZE_HPT: u32 = 133; +pub const KVM_CAP_PPC_MMU_RADIX: u32 = 134; +pub const KVM_CAP_PPC_MMU_HASH_V3: u32 = 135; +pub const KVM_CAP_IMMEDIATE_EXIT: u32 = 136; +pub const KVM_CAP_MIPS_VZ: u32 = 137; +pub const KVM_CAP_MIPS_TE: u32 = 138; +pub const KVM_CAP_MIPS_64BIT: u32 = 139; +pub const KVM_CAP_S390_GS: u32 = 140; +pub const KVM_CAP_S390_AIS: u32 = 141; +pub const KVM_CAP_SPAPR_TCE_VFIO: u32 = 142; +pub const KVM_CAP_X86_DISABLE_EXITS: u32 = 143; +pub const KVM_CAP_ARM_USER_IRQ: u32 = 144; +pub const KVM_CAP_S390_CMMA_MIGRATION: u32 = 145; +pub const KVM_CAP_PPC_FWNMI: u32 = 146; +pub const KVM_CAP_PPC_SMT_POSSIBLE: u32 = 147; +pub const KVM_CAP_HYPERV_SYNIC2: u32 = 148; +pub const KVM_CAP_HYPERV_VP_INDEX: u32 = 149; +pub const KVM_CAP_S390_AIS_MIGRATION: u32 = 150; +pub const KVM_CAP_PPC_GET_CPU_CHAR: u32 = 151; +pub const KVM_CAP_S390_BPB: u32 = 152; +pub const KVM_CAP_GET_MSR_FEATURES: u32 = 153; +pub const KVM_CAP_HYPERV_EVENTFD: u32 = 154; +pub const KVM_CAP_HYPERV_TLBFLUSH: u32 = 155; +pub const KVM_CAP_S390_HPAGE_1M: u32 = 156; +pub const KVM_CAP_NESTED_STATE: u32 = 157; +pub const KVM_CAP_ARM_INJECT_SERROR_ESR: u32 = 158; +pub const KVM_CAP_MSR_PLATFORM_INFO: u32 = 159; +pub const KVM_CAP_PPC_NESTED_HV: u32 = 160; +pub const KVM_CAP_HYPERV_SEND_IPI: u32 = 161; +pub const KVM_CAP_COALESCED_PIO: u32 = 162; +pub const KVM_CAP_HYPERV_ENLIGHTENED_VMCS: u32 = 163; +pub const KVM_CAP_EXCEPTION_PAYLOAD: u32 = 164; +pub const KVM_CAP_ARM_VM_IPA_SIZE: u32 = 165; +pub const KVM_CAP_MANUAL_DIRTY_LOG_PROTECT: u32 = 166; +pub const KVM_CAP_HYPERV_CPUID: u32 = 167; +pub const KVM_CAP_MANUAL_DIRTY_LOG_PROTECT2: u32 = 168; +pub const KVM_CAP_PPC_IRQ_XIVE: u32 = 169; +pub const KVM_CAP_ARM_SVE: u32 = 170; +pub const KVM_CAP_ARM_PTRAUTH_ADDRESS: u32 = 171; +pub const KVM_CAP_ARM_PTRAUTH_GENERIC: u32 = 172; +pub const KVM_CAP_PMU_EVENT_FILTER: u32 = 173; +pub const KVM_CAP_ARM_IRQ_LINE_LAYOUT_2: u32 = 174; +pub const KVM_CAP_HYPERV_DIRECT_TLBFLUSH: u32 = 175; +pub const KVM_CAP_PPC_GUEST_DEBUG_SSTEP: u32 = 176; +pub const KVM_CAP_ARM_NISV_TO_USER: u32 = 177; +pub const KVM_CAP_ARM_INJECT_EXT_DABT: u32 = 178; +pub const KVM_CAP_S390_VCPU_RESETS: u32 = 179; +pub const KVM_CAP_S390_PROTECTED: u32 = 180; +pub const KVM_CAP_PPC_SECURE_GUEST: u32 = 181; +pub const KVM_CAP_HALT_POLL: u32 = 182; +pub const KVM_CAP_ASYNC_PF_INT: u32 = 183; +pub const KVM_CAP_LAST_CPU: u32 = 184; +pub const KVM_CAP_SMALLER_MAXPHYADDR: u32 = 185; +pub const KVM_CAP_S390_DIAG318: u32 = 186; +pub const KVM_CAP_STEAL_TIME: u32 = 187; +pub const KVM_CAP_X86_USER_SPACE_MSR: u32 = 188; +pub const KVM_CAP_X86_MSR_FILTER: u32 = 189; +pub const KVM_CAP_ENFORCE_PV_FEATURE_CPUID: u32 = 190; +pub const KVM_CAP_SYS_HYPERV_CPUID: u32 = 191; +pub const KVM_CAP_DIRTY_LOG_RING: u32 = 192; +pub const KVM_CAP_X86_BUS_LOCK_EXIT: u32 = 193; +pub const KVM_CAP_PPC_DAWR1: u32 = 194; +pub const KVM_CAP_SET_GUEST_DEBUG2: u32 = 195; +pub const KVM_CAP_SGX_ATTRIBUTE: u32 = 196; +pub const KVM_CAP_VM_COPY_ENC_CONTEXT_FROM: u32 = 197; +pub const KVM_CAP_PTP_KVM: u32 = 198; +pub const KVM_CAP_HYPERV_ENFORCE_CPUID: u32 = 199; +pub const KVM_CAP_SREGS2: u32 = 200; +pub const KVM_CAP_EXIT_HYPERCALL: u32 = 201; +pub const KVM_CAP_PPC_RPT_INVALIDATE: u32 = 202; +pub const KVM_CAP_BINARY_STATS_FD: u32 = 203; +pub const KVM_CAP_EXIT_ON_EMULATION_FAILURE: u32 = 204; +pub const KVM_CAP_ARM_MTE: u32 = 205; +pub const KVM_CAP_VM_MOVE_ENC_CONTEXT_FROM: u32 = 206; +pub const KVM_CAP_VM_GPA_BITS: u32 = 207; +pub const KVM_CAP_XSAVE2: u32 = 208; +pub const KVM_CAP_SYS_ATTRIBUTES: u32 = 209; +pub const KVM_CAP_PPC_AIL_MODE_3: u32 = 210; +pub const KVM_CAP_S390_MEM_OP_EXTENSION: u32 = 211; +pub const KVM_CAP_PMU_CAPABILITY: u32 = 212; +pub const KVM_CAP_DISABLE_QUIRKS2: u32 = 213; +pub const KVM_CAP_VM_TSC_CONTROL: u32 = 214; +pub const KVM_CAP_SYSTEM_EVENT_DATA: u32 = 215; +pub const KVM_CAP_ARM_SYSTEM_SUSPEND: u32 = 216; +pub const KVM_CAP_S390_PROTECTED_DUMP: u32 = 217; +pub const KVM_CAP_X86_TRIPLE_FAULT_EVENT: u32 = 218; +pub const KVM_CAP_X86_NOTIFY_VMEXIT: u32 = 219; +pub const KVM_CAP_VM_DISABLE_NX_HUGE_PAGES: u32 = 220; +pub const KVM_CAP_S390_ZPCI_OP: u32 = 221; +pub const KVM_CAP_S390_CPU_TOPOLOGY: u32 = 222; +pub const KVM_CAP_DIRTY_LOG_RING_ACQ_REL: u32 = 223; +pub const KVM_CAP_S390_PROTECTED_ASYNC_DISABLE: u32 = 224; +pub const KVM_CAP_DIRTY_LOG_RING_WITH_BITMAP: u32 = 225; +pub const KVM_CAP_PMU_EVENT_MASKED_EVENTS: u32 = 226; +pub const KVM_CAP_COUNTER_OFFSET: u32 = 227; +pub const KVM_CAP_ARM_EAGER_SPLIT_CHUNK_SIZE: u32 = 228; +pub const KVM_CAP_ARM_SUPPORTED_BLOCK_SIZES: u32 = 229; +pub const KVM_CAP_ARM_SUPPORTED_REG_MASK_RANGES: u32 = 230; +pub const KVM_CAP_USER_MEMORY2: u32 = 231; +pub const KVM_CAP_MEMORY_FAULT_INFO: u32 = 232; +pub const KVM_CAP_MEMORY_ATTRIBUTES: u32 = 233; +pub const KVM_CAP_GUEST_MEMFD: u32 = 234; +pub const KVM_CAP_VM_TYPES: u32 = 235; +pub const KVM_CAP_PRE_FAULT_MEMORY: u32 = 236; +pub const KVM_CAP_X86_APIC_BUS_CYCLES_NS: u32 = 237; +pub const KVM_CAP_X86_GUEST_MODE: u32 = 238; +pub const KVM_IRQ_ROUTING_IRQCHIP: u32 = 1; +pub const KVM_IRQ_ROUTING_MSI: u32 = 2; +pub const KVM_IRQ_ROUTING_S390_ADAPTER: u32 = 3; +pub const KVM_IRQ_ROUTING_HV_SINT: u32 = 4; +pub const KVM_IRQ_ROUTING_XEN_EVTCHN: u32 = 5; +pub const KVM_IRQFD_FLAG_DEASSIGN: u32 = 1; +pub const KVM_IRQFD_FLAG_RESAMPLE: u32 = 2; +pub const KVM_CLOCK_TSC_STABLE: u32 = 2; +pub const KVM_CLOCK_REALTIME: u32 = 4; +pub const KVM_CLOCK_HOST_TSC: u32 = 8; +pub const KVM_MMU_FSL_BOOKE_NOHV: u32 = 0; +pub const KVM_MMU_FSL_BOOKE_HV: u32 = 1; +pub const KVM_REG_ARCH_MASK: i64 = -72057594037927936; +pub const KVM_REG_GENERIC: u32 = 0; +pub const KVM_REG_PPC: u64 = 1152921504606846976; +pub const KVM_REG_X86: u64 = 2305843009213693952; +pub const KVM_REG_IA64: u64 = 3458764513820540928; +pub const KVM_REG_ARM: u64 = 4611686018427387904; +pub const KVM_REG_S390: u64 = 5764607523034234880; +pub const KVM_REG_ARM64: u64 = 6917529027641081856; +pub const KVM_REG_MIPS: u64 = 8070450532247928832; +pub const KVM_REG_RISCV: i64 = -9223372036854775808; +pub const KVM_REG_LOONGARCH: i64 = -8070450532247928832; +pub const KVM_REG_SIZE_SHIFT: u32 = 52; +pub const KVM_REG_SIZE_MASK: u64 = 67553994410557440; +pub const KVM_REG_SIZE_U8: u32 = 0; +pub const KVM_REG_SIZE_U16: u64 = 4503599627370496; +pub const KVM_REG_SIZE_U32: u64 = 9007199254740992; +pub const KVM_REG_SIZE_U64: u64 = 13510798882111488; +pub const KVM_REG_SIZE_U128: u64 = 18014398509481984; +pub const KVM_REG_SIZE_U256: u64 = 22517998136852480; +pub const KVM_REG_SIZE_U512: u64 = 27021597764222976; +pub const KVM_REG_SIZE_U1024: u64 = 31525197391593472; +pub const KVM_REG_SIZE_U2048: u64 = 36028797018963968; +pub const KVM_MSI_VALID_DEVID: u32 = 1; +pub const KVM_CREATE_DEVICE_TEST: u32 = 1; +pub const KVM_DEV_VFIO_FILE: u32 = 1; +pub const KVM_DEV_VFIO_FILE_ADD: u32 = 1; +pub const KVM_DEV_VFIO_FILE_DEL: u32 = 2; +pub const KVM_DEV_VFIO_GROUP: u32 = 1; +pub const KVM_DEV_VFIO_GROUP_ADD: u32 = 1; +pub const KVM_DEV_VFIO_GROUP_DEL: u32 = 2; +pub const KVM_DEV_VFIO_GROUP_SET_SPAPR_TCE: u32 = 3; +pub const KVM_S390_STORE_STATUS_NOADDR: i32 = -1; +pub const KVM_S390_STORE_STATUS_PREFIXED: i32 = -2; +pub const KVM_DIRTY_LOG_MANUAL_PROTECT_ENABLE: u32 = 1; +pub const KVM_DIRTY_LOG_INITIALLY_SET: u32 = 2; +pub const KVM_DIRTY_GFN_F_MASK: u32 = 3; +pub const KVM_BUS_LOCK_DETECTION_OFF: u32 = 1; +pub const KVM_BUS_LOCK_DETECTION_EXIT: u32 = 2; +pub const KVM_PMU_CAP_DISABLE: u32 = 1; +pub const KVM_STATS_TYPE_SHIFT: u32 = 0; +pub const KVM_STATS_TYPE_MASK: u32 = 15; +pub const KVM_STATS_TYPE_CUMULATIVE: u32 = 0; +pub const KVM_STATS_TYPE_INSTANT: u32 = 1; +pub const KVM_STATS_TYPE_PEAK: u32 = 2; +pub const KVM_STATS_TYPE_LINEAR_HIST: u32 = 3; +pub const KVM_STATS_TYPE_LOG_HIST: u32 = 4; +pub const KVM_STATS_TYPE_MAX: u32 = 4; +pub const KVM_STATS_UNIT_SHIFT: u32 = 4; +pub const KVM_STATS_UNIT_MASK: u32 = 240; +pub const KVM_STATS_UNIT_NONE: u32 = 0; +pub const KVM_STATS_UNIT_BYTES: u32 = 16; +pub const KVM_STATS_UNIT_SECONDS: u32 = 32; +pub const KVM_STATS_UNIT_CYCLES: u32 = 48; +pub const KVM_STATS_UNIT_BOOLEAN: u32 = 64; +pub const KVM_STATS_UNIT_MAX: u32 = 64; +pub const KVM_STATS_BASE_SHIFT: u32 = 8; +pub const KVM_STATS_BASE_MASK: u32 = 3840; +pub const KVM_STATS_BASE_POW10: u32 = 0; +pub const KVM_STATS_BASE_POW2: u32 = 256; +pub const KVM_STATS_BASE_MAX: u32 = 256; +pub const KVM_X86_NOTIFY_VMEXIT_ENABLED: u32 = 1; +pub const KVM_X86_NOTIFY_VMEXIT_USER: u32 = 2; +pub const KVM_MEMORY_ATTRIBUTE_PRIVATE: u32 = 8; +pub type __s8 = ::std::os::raw::c_schar; +pub type __u8 = ::std::os::raw::c_uchar; +pub type __s16 = ::std::os::raw::c_short; +pub type __u16 = ::std::os::raw::c_ushort; +pub type __s32 = ::std::os::raw::c_int; +pub type __u32 = ::std::os::raw::c_uint; +pub type __s64 = ::std::os::raw::c_longlong; +pub type __u64 = ::std::os::raw::c_ulonglong; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct __kernel_fd_set { + pub fds_bits: [::std::os::raw::c_ulong; 16usize], +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of __kernel_fd_set"][::std::mem::size_of::<__kernel_fd_set>() - 128usize]; + ["Alignment of __kernel_fd_set"][::std::mem::align_of::<__kernel_fd_set>() - 8usize]; + ["Offset of field: __kernel_fd_set::fds_bits"] + [::std::mem::offset_of!(__kernel_fd_set, fds_bits) - 0usize]; +}; +pub type __kernel_sighandler_t = + ::std::option::Option; +pub type __kernel_key_t = ::std::os::raw::c_int; +pub type __kernel_mqd_t = ::std::os::raw::c_int; +pub type __kernel_long_t = ::std::os::raw::c_long; +pub type __kernel_ulong_t = ::std::os::raw::c_ulong; +pub type __kernel_ino_t = __kernel_ulong_t; +pub type __kernel_mode_t = ::std::os::raw::c_uint; +pub type __kernel_pid_t = ::std::os::raw::c_int; +pub type __kernel_ipc_pid_t = ::std::os::raw::c_int; +pub type __kernel_uid_t = ::std::os::raw::c_uint; +pub type __kernel_gid_t = ::std::os::raw::c_uint; +pub type __kernel_suseconds_t = __kernel_long_t; +pub type __kernel_daddr_t = ::std::os::raw::c_int; +pub type __kernel_uid32_t = ::std::os::raw::c_uint; +pub type __kernel_gid32_t = ::std::os::raw::c_uint; +pub type __kernel_old_uid_t = __kernel_uid_t; +pub type __kernel_old_gid_t = __kernel_gid_t; +pub type __kernel_old_dev_t = ::std::os::raw::c_uint; +pub type __kernel_size_t = __kernel_ulong_t; +pub type __kernel_ssize_t = __kernel_long_t; +pub type __kernel_ptrdiff_t = __kernel_long_t; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct __kernel_fsid_t { + pub val: [::std::os::raw::c_int; 2usize], +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of __kernel_fsid_t"][::std::mem::size_of::<__kernel_fsid_t>() - 8usize]; + ["Alignment of __kernel_fsid_t"][::std::mem::align_of::<__kernel_fsid_t>() - 4usize]; + ["Offset of field: __kernel_fsid_t::val"] + [::std::mem::offset_of!(__kernel_fsid_t, val) - 0usize]; +}; +pub type __kernel_off_t = __kernel_long_t; +pub type __kernel_loff_t = ::std::os::raw::c_longlong; +pub type __kernel_old_time_t = __kernel_long_t; +pub type __kernel_time_t = __kernel_long_t; +pub type __kernel_time64_t = ::std::os::raw::c_longlong; +pub type __kernel_clock_t = __kernel_long_t; +pub type __kernel_timer_t = ::std::os::raw::c_int; +pub type __kernel_clockid_t = ::std::os::raw::c_int; +pub type __kernel_caddr_t = *mut ::std::os::raw::c_char; +pub type __kernel_uid16_t = ::std::os::raw::c_ushort; +pub type __kernel_gid16_t = ::std::os::raw::c_ushort; +pub type __s128 = i128; +pub type __u128 = u128; +pub type __le16 = __u16; +pub type __be16 = __u16; +pub type __le32 = __u32; +pub type __be32 = __u32; +pub type __le64 = __u64; +pub type __be64 = __u64; +pub type __sum16 = __u16; +pub type __wsum = __u32; +pub type __poll_t = ::std::os::raw::c_uint; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +#[cfg_attr( + feature = "serde", + derive(zerocopy::AsBytes, zerocopy::FromBytes, zerocopy::FromZeroes) +)] +pub struct kvm_regs { + pub gpr: [__u64; 32usize], + pub pc: __u64, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_regs"][::std::mem::size_of::() - 264usize]; + ["Alignment of kvm_regs"][::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_regs::gpr"][::std::mem::offset_of!(kvm_regs, gpr) - 0usize]; + ["Offset of field: kvm_regs::pc"][::std::mem::offset_of!(kvm_regs, pc) - 256usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_fpu { + pub fcsr: __u32, + pub fcc: __u64, + pub fpr: [kvm_fpu_kvm_fpureg; 32usize], +} +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_fpu_kvm_fpureg { + pub val64: [__u64; 4usize], +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_fpu_kvm_fpureg"][::std::mem::size_of::() - 32usize]; + ["Alignment of kvm_fpu_kvm_fpureg"][::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_fpu_kvm_fpureg::val64"] + [::std::mem::offset_of!(kvm_fpu_kvm_fpureg, val64) - 0usize]; +}; +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_fpu"][::std::mem::size_of::() - 1040usize]; + ["Alignment of kvm_fpu"][::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_fpu::fcsr"][::std::mem::offset_of!(kvm_fpu, fcsr) - 0usize]; + ["Offset of field: kvm_fpu::fcc"][::std::mem::offset_of!(kvm_fpu, fcc) - 8usize]; + ["Offset of field: kvm_fpu::fpr"][::std::mem::offset_of!(kvm_fpu, fpr) - 16usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_debug_exit_arch {} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_debug_exit_arch"][::std::mem::size_of::() - 0usize]; + ["Alignment of kvm_debug_exit_arch"][::std::mem::align_of::() - 1usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_guest_debug_arch {} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_guest_debug_arch"][::std::mem::size_of::() - 0usize]; + ["Alignment of kvm_guest_debug_arch"][::std::mem::align_of::() - 1usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_sync_regs {} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_sync_regs"][::std::mem::size_of::() - 0usize]; + ["Alignment of kvm_sync_regs"][::std::mem::align_of::() - 1usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_sregs {} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_sregs"][::std::mem::size_of::() - 0usize]; + ["Alignment of kvm_sregs"][::std::mem::align_of::() - 1usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_iocsr_entry { + pub addr: __u32, + pub pad: __u32, + pub data: __u64, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_iocsr_entry"][::std::mem::size_of::() - 16usize]; + ["Alignment of kvm_iocsr_entry"][::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_iocsr_entry::addr"] + [::std::mem::offset_of!(kvm_iocsr_entry, addr) - 0usize]; + ["Offset of field: kvm_iocsr_entry::pad"] + [::std::mem::offset_of!(kvm_iocsr_entry, pad) - 4usize]; + ["Offset of field: kvm_iocsr_entry::data"] + [::std::mem::offset_of!(kvm_iocsr_entry, data) - 8usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_userspace_memory_region { + pub slot: __u32, + pub flags: __u32, + pub guest_phys_addr: __u64, + pub memory_size: __u64, + pub userspace_addr: __u64, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_userspace_memory_region"] + [::std::mem::size_of::() - 32usize]; + ["Alignment of kvm_userspace_memory_region"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_userspace_memory_region::slot"] + [::std::mem::offset_of!(kvm_userspace_memory_region, slot) - 0usize]; + ["Offset of field: kvm_userspace_memory_region::flags"] + [::std::mem::offset_of!(kvm_userspace_memory_region, flags) - 4usize]; + ["Offset of field: kvm_userspace_memory_region::guest_phys_addr"] + [::std::mem::offset_of!(kvm_userspace_memory_region, guest_phys_addr) - 8usize]; + ["Offset of field: kvm_userspace_memory_region::memory_size"] + [::std::mem::offset_of!(kvm_userspace_memory_region, memory_size) - 16usize]; + ["Offset of field: kvm_userspace_memory_region::userspace_addr"] + [::std::mem::offset_of!(kvm_userspace_memory_region, userspace_addr) - 24usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_userspace_memory_region2 { + pub slot: __u32, + pub flags: __u32, + pub guest_phys_addr: __u64, + pub memory_size: __u64, + pub userspace_addr: __u64, + pub guest_memfd_offset: __u64, + pub guest_memfd: __u32, + pub pad1: __u32, + pub pad2: [__u64; 14usize], +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_userspace_memory_region2"] + [::std::mem::size_of::() - 160usize]; + ["Alignment of kvm_userspace_memory_region2"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_userspace_memory_region2::slot"] + [::std::mem::offset_of!(kvm_userspace_memory_region2, slot) - 0usize]; + ["Offset of field: kvm_userspace_memory_region2::flags"] + [::std::mem::offset_of!(kvm_userspace_memory_region2, flags) - 4usize]; + ["Offset of field: kvm_userspace_memory_region2::guest_phys_addr"] + [::std::mem::offset_of!(kvm_userspace_memory_region2, guest_phys_addr) - 8usize]; + ["Offset of field: kvm_userspace_memory_region2::memory_size"] + [::std::mem::offset_of!(kvm_userspace_memory_region2, memory_size) - 16usize]; + ["Offset of field: kvm_userspace_memory_region2::userspace_addr"] + [::std::mem::offset_of!(kvm_userspace_memory_region2, userspace_addr) - 24usize]; + ["Offset of field: kvm_userspace_memory_region2::guest_memfd_offset"] + [::std::mem::offset_of!(kvm_userspace_memory_region2, guest_memfd_offset) - 32usize]; + ["Offset of field: kvm_userspace_memory_region2::guest_memfd"] + [::std::mem::offset_of!(kvm_userspace_memory_region2, guest_memfd) - 40usize]; + ["Offset of field: kvm_userspace_memory_region2::pad1"] + [::std::mem::offset_of!(kvm_userspace_memory_region2, pad1) - 44usize]; + ["Offset of field: kvm_userspace_memory_region2::pad2"] + [::std::mem::offset_of!(kvm_userspace_memory_region2, pad2) - 48usize]; +}; +#[repr(C)] +#[derive(Copy, Clone)] +pub struct kvm_irq_level { + pub __bindgen_anon_1: kvm_irq_level__bindgen_ty_1, + pub level: __u32, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union kvm_irq_level__bindgen_ty_1 { + pub irq: __u32, + pub status: __s32, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_irq_level__bindgen_ty_1"] + [::std::mem::size_of::() - 4usize]; + ["Alignment of kvm_irq_level__bindgen_ty_1"] + [::std::mem::align_of::() - 4usize]; + ["Offset of field: kvm_irq_level__bindgen_ty_1::irq"] + [::std::mem::offset_of!(kvm_irq_level__bindgen_ty_1, irq) - 0usize]; + ["Offset of field: kvm_irq_level__bindgen_ty_1::status"] + [::std::mem::offset_of!(kvm_irq_level__bindgen_ty_1, status) - 0usize]; +}; +impl Default for kvm_irq_level__bindgen_ty_1 { + fn default() -> Self { + let mut s = ::std::mem::MaybeUninit::::uninit(); + unsafe { + ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); + s.assume_init() + } + } +} +impl ::std::fmt::Debug for kvm_irq_level__bindgen_ty_1 { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write!(f, "kvm_irq_level__bindgen_ty_1 {{ union }}") + } +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_irq_level"][::std::mem::size_of::() - 8usize]; + ["Alignment of kvm_irq_level"][::std::mem::align_of::() - 4usize]; + ["Offset of field: kvm_irq_level::level"] + [::std::mem::offset_of!(kvm_irq_level, level) - 4usize]; +}; +impl Default for kvm_irq_level { + fn default() -> Self { + let mut s = ::std::mem::MaybeUninit::::uninit(); + unsafe { + ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); + s.assume_init() + } + } +} +impl ::std::fmt::Debug for kvm_irq_level { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write!( + f, + "kvm_irq_level {{ __bindgen_anon_1: {:?}, level: {:?} }}", + self.__bindgen_anon_1, self.level + ) + } +} +#[repr(C)] +#[derive(Copy, Clone)] +#[cfg_attr( + feature = "serde", + derive(zerocopy::AsBytes, zerocopy::FromBytes, zerocopy::FromZeroes) +)] +pub struct kvm_irqchip { + pub chip_id: __u32, + pub pad: __u32, + pub chip: kvm_irqchip__bindgen_ty_1, +} +#[repr(C)] +#[derive(Copy, Clone)] +#[cfg_attr( + feature = "serde", + derive(zerocopy::AsBytes, zerocopy::FromBytes, zerocopy::FromZeroes) +)] +pub union kvm_irqchip__bindgen_ty_1 { + pub dummy: [::std::os::raw::c_char; 512usize], +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_irqchip__bindgen_ty_1"] + [::std::mem::size_of::() - 512usize]; + ["Alignment of kvm_irqchip__bindgen_ty_1"] + [::std::mem::align_of::() - 1usize]; + ["Offset of field: kvm_irqchip__bindgen_ty_1::dummy"] + [::std::mem::offset_of!(kvm_irqchip__bindgen_ty_1, dummy) - 0usize]; +}; +impl Default for kvm_irqchip__bindgen_ty_1 { + fn default() -> Self { + let mut s = ::std::mem::MaybeUninit::::uninit(); + unsafe { + ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); + s.assume_init() + } + } +} +impl ::std::fmt::Debug for kvm_irqchip__bindgen_ty_1 { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write!(f, "kvm_irqchip__bindgen_ty_1 {{ union }}") + } +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_irqchip"][::std::mem::size_of::() - 520usize]; + ["Alignment of kvm_irqchip"][::std::mem::align_of::() - 4usize]; + ["Offset of field: kvm_irqchip::chip_id"] + [::std::mem::offset_of!(kvm_irqchip, chip_id) - 0usize]; + ["Offset of field: kvm_irqchip::pad"][::std::mem::offset_of!(kvm_irqchip, pad) - 4usize]; + ["Offset of field: kvm_irqchip::chip"][::std::mem::offset_of!(kvm_irqchip, chip) - 8usize]; +}; +impl Default for kvm_irqchip { + fn default() -> Self { + let mut s = ::std::mem::MaybeUninit::::uninit(); + unsafe { + ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); + s.assume_init() + } + } +} +impl ::std::fmt::Debug for kvm_irqchip { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write!( + f, + "kvm_irqchip {{ chip_id: {:?}, pad: {:?}, chip: {:?} }}", + self.chip_id, self.pad, self.chip + ) + } +} +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_pit_config { + pub flags: __u32, + pub pad: [__u32; 15usize], +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_pit_config"][::std::mem::size_of::() - 64usize]; + ["Alignment of kvm_pit_config"][::std::mem::align_of::() - 4usize]; + ["Offset of field: kvm_pit_config::flags"] + [::std::mem::offset_of!(kvm_pit_config, flags) - 0usize]; + ["Offset of field: kvm_pit_config::pad"][::std::mem::offset_of!(kvm_pit_config, pad) - 4usize]; +}; +#[repr(C)] +#[derive(Copy, Clone)] +pub struct kvm_hyperv_exit { + pub type_: __u32, + pub pad1: __u32, + pub u: kvm_hyperv_exit__bindgen_ty_1, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union kvm_hyperv_exit__bindgen_ty_1 { + pub synic: kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_1, + pub hcall: kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_2, + pub syndbg: kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_3, +} +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_1 { + pub msr: __u32, + pub pad2: __u32, + pub control: __u64, + pub evt_page: __u64, + pub msg_page: __u64, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_1"] + [::std::mem::size_of::() - 32usize]; + ["Alignment of kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_1"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_1::msr"] + [::std::mem::offset_of!(kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_1, msr) - 0usize]; + ["Offset of field: kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_1::pad2"] + [::std::mem::offset_of!(kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_1, pad2) - 4usize]; + ["Offset of field: kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_1::control"] + [::std::mem::offset_of!(kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_1, control) - 8usize]; + ["Offset of field: kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_1::evt_page"] + [::std::mem::offset_of!(kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_1, evt_page) - 16usize]; + ["Offset of field: kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_1::msg_page"] + [::std::mem::offset_of!(kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_1, msg_page) - 24usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_2 { + pub input: __u64, + pub result: __u64, + pub params: [__u64; 2usize], +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_2"] + [::std::mem::size_of::() - 32usize]; + ["Alignment of kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_2"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_2::input"] + [::std::mem::offset_of!(kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_2, input) - 0usize]; + ["Offset of field: kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_2::result"] + [::std::mem::offset_of!(kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_2, result) - 8usize]; + ["Offset of field: kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_2::params"] + [::std::mem::offset_of!(kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_2, params) - 16usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_3 { + pub msr: __u32, + pub pad2: __u32, + pub control: __u64, + pub status: __u64, + pub send_page: __u64, + pub recv_page: __u64, + pub pending_page: __u64, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_3"] + [::std::mem::size_of::() - 48usize]; + ["Alignment of kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_3"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_3::msr"] + [::std::mem::offset_of!(kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_3, msr) - 0usize]; + ["Offset of field: kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_3::pad2"] + [::std::mem::offset_of!(kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_3, pad2) - 4usize]; + ["Offset of field: kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_3::control"] + [::std::mem::offset_of!(kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_3, control) - 8usize]; + ["Offset of field: kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_3::status"] + [::std::mem::offset_of!(kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_3, status) - 16usize]; + ["Offset of field: kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_3::send_page"] + [::std::mem::offset_of!(kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_3, send_page) - 24usize]; + ["Offset of field: kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_3::recv_page"] + [::std::mem::offset_of!(kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_3, recv_page) - 32usize]; + ["Offset of field: kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_3::pending_page"][::std::mem::offset_of!( + kvm_hyperv_exit__bindgen_ty_1__bindgen_ty_3, + pending_page + ) - 40usize]; +}; +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_hyperv_exit__bindgen_ty_1"] + [::std::mem::size_of::() - 48usize]; + ["Alignment of kvm_hyperv_exit__bindgen_ty_1"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_hyperv_exit__bindgen_ty_1::synic"] + [::std::mem::offset_of!(kvm_hyperv_exit__bindgen_ty_1, synic) - 0usize]; + ["Offset of field: kvm_hyperv_exit__bindgen_ty_1::hcall"] + [::std::mem::offset_of!(kvm_hyperv_exit__bindgen_ty_1, hcall) - 0usize]; + ["Offset of field: kvm_hyperv_exit__bindgen_ty_1::syndbg"] + [::std::mem::offset_of!(kvm_hyperv_exit__bindgen_ty_1, syndbg) - 0usize]; +}; +impl Default for kvm_hyperv_exit__bindgen_ty_1 { + fn default() -> Self { + let mut s = ::std::mem::MaybeUninit::::uninit(); + unsafe { + ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); + s.assume_init() + } + } +} +impl ::std::fmt::Debug for kvm_hyperv_exit__bindgen_ty_1 { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write!(f, "kvm_hyperv_exit__bindgen_ty_1 {{ union }}") + } +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_hyperv_exit"][::std::mem::size_of::() - 56usize]; + ["Alignment of kvm_hyperv_exit"][::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_hyperv_exit::type_"] + [::std::mem::offset_of!(kvm_hyperv_exit, type_) - 0usize]; + ["Offset of field: kvm_hyperv_exit::pad1"] + [::std::mem::offset_of!(kvm_hyperv_exit, pad1) - 4usize]; + ["Offset of field: kvm_hyperv_exit::u"][::std::mem::offset_of!(kvm_hyperv_exit, u) - 8usize]; +}; +impl Default for kvm_hyperv_exit { + fn default() -> Self { + let mut s = ::std::mem::MaybeUninit::::uninit(); + unsafe { + ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); + s.assume_init() + } + } +} +impl ::std::fmt::Debug for kvm_hyperv_exit { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write!( + f, + "kvm_hyperv_exit {{ type: {:?}, pad1: {:?}, u: {:?} }}", + self.type_, self.pad1, self.u + ) + } +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct kvm_xen_exit { + pub type_: __u32, + pub u: kvm_xen_exit__bindgen_ty_1, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union kvm_xen_exit__bindgen_ty_1 { + pub hcall: kvm_xen_exit__bindgen_ty_1__bindgen_ty_1, +} +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_xen_exit__bindgen_ty_1__bindgen_ty_1 { + pub longmode: __u32, + pub cpl: __u32, + pub input: __u64, + pub result: __u64, + pub params: [__u64; 6usize], +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_xen_exit__bindgen_ty_1__bindgen_ty_1"] + [::std::mem::size_of::() - 72usize]; + ["Alignment of kvm_xen_exit__bindgen_ty_1__bindgen_ty_1"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_xen_exit__bindgen_ty_1__bindgen_ty_1::longmode"] + [::std::mem::offset_of!(kvm_xen_exit__bindgen_ty_1__bindgen_ty_1, longmode) - 0usize]; + ["Offset of field: kvm_xen_exit__bindgen_ty_1__bindgen_ty_1::cpl"] + [::std::mem::offset_of!(kvm_xen_exit__bindgen_ty_1__bindgen_ty_1, cpl) - 4usize]; + ["Offset of field: kvm_xen_exit__bindgen_ty_1__bindgen_ty_1::input"] + [::std::mem::offset_of!(kvm_xen_exit__bindgen_ty_1__bindgen_ty_1, input) - 8usize]; + ["Offset of field: kvm_xen_exit__bindgen_ty_1__bindgen_ty_1::result"] + [::std::mem::offset_of!(kvm_xen_exit__bindgen_ty_1__bindgen_ty_1, result) - 16usize]; + ["Offset of field: kvm_xen_exit__bindgen_ty_1__bindgen_ty_1::params"] + [::std::mem::offset_of!(kvm_xen_exit__bindgen_ty_1__bindgen_ty_1, params) - 24usize]; +}; +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_xen_exit__bindgen_ty_1"] + [::std::mem::size_of::() - 72usize]; + ["Alignment of kvm_xen_exit__bindgen_ty_1"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_xen_exit__bindgen_ty_1::hcall"] + [::std::mem::offset_of!(kvm_xen_exit__bindgen_ty_1, hcall) - 0usize]; +}; +impl Default for kvm_xen_exit__bindgen_ty_1 { + fn default() -> Self { + let mut s = ::std::mem::MaybeUninit::::uninit(); + unsafe { + ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); + s.assume_init() + } + } +} +impl ::std::fmt::Debug for kvm_xen_exit__bindgen_ty_1 { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write!(f, "kvm_xen_exit__bindgen_ty_1 {{ union }}") + } +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_xen_exit"][::std::mem::size_of::() - 80usize]; + ["Alignment of kvm_xen_exit"][::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_xen_exit::type_"][::std::mem::offset_of!(kvm_xen_exit, type_) - 0usize]; + ["Offset of field: kvm_xen_exit::u"][::std::mem::offset_of!(kvm_xen_exit, u) - 8usize]; +}; +impl Default for kvm_xen_exit { + fn default() -> Self { + let mut s = ::std::mem::MaybeUninit::::uninit(); + unsafe { + ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); + s.assume_init() + } + } +} +impl ::std::fmt::Debug for kvm_xen_exit { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write!( + f, + "kvm_xen_exit {{ type: {:?}, u: {:?} }}", + self.type_, self.u + ) + } +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct kvm_run { + pub request_interrupt_window: __u8, + pub immediate_exit: __u8, + pub padding1: [__u8; 6usize], + pub exit_reason: __u32, + pub ready_for_interrupt_injection: __u8, + pub if_flag: __u8, + pub flags: __u16, + pub cr8: __u64, + pub apic_base: __u64, + pub __bindgen_anon_1: kvm_run__bindgen_ty_1, + pub kvm_valid_regs: __u64, + pub kvm_dirty_regs: __u64, + pub s: kvm_run__bindgen_ty_2, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union kvm_run__bindgen_ty_1 { + pub hw: kvm_run__bindgen_ty_1__bindgen_ty_1, + pub fail_entry: kvm_run__bindgen_ty_1__bindgen_ty_2, + pub ex: kvm_run__bindgen_ty_1__bindgen_ty_3, + pub io: kvm_run__bindgen_ty_1__bindgen_ty_4, + pub debug: kvm_run__bindgen_ty_1__bindgen_ty_5, + pub mmio: kvm_run__bindgen_ty_1__bindgen_ty_6, + pub iocsr_io: kvm_run__bindgen_ty_1__bindgen_ty_7, + pub hypercall: kvm_run__bindgen_ty_1__bindgen_ty_8, + pub tpr_access: kvm_run__bindgen_ty_1__bindgen_ty_9, + pub s390_sieic: kvm_run__bindgen_ty_1__bindgen_ty_10, + pub s390_reset_flags: __u64, + pub s390_ucontrol: kvm_run__bindgen_ty_1__bindgen_ty_11, + pub dcr: kvm_run__bindgen_ty_1__bindgen_ty_12, + pub internal: kvm_run__bindgen_ty_1__bindgen_ty_13, + pub emulation_failure: kvm_run__bindgen_ty_1__bindgen_ty_14, + pub osi: kvm_run__bindgen_ty_1__bindgen_ty_15, + pub papr_hcall: kvm_run__bindgen_ty_1__bindgen_ty_16, + pub s390_tsch: kvm_run__bindgen_ty_1__bindgen_ty_17, + pub epr: kvm_run__bindgen_ty_1__bindgen_ty_18, + pub system_event: kvm_run__bindgen_ty_1__bindgen_ty_19, + pub s390_stsi: kvm_run__bindgen_ty_1__bindgen_ty_20, + pub eoi: kvm_run__bindgen_ty_1__bindgen_ty_21, + pub hyperv: kvm_hyperv_exit, + pub arm_nisv: kvm_run__bindgen_ty_1__bindgen_ty_22, + pub msr: kvm_run__bindgen_ty_1__bindgen_ty_23, + pub xen: kvm_xen_exit, + pub riscv_sbi: kvm_run__bindgen_ty_1__bindgen_ty_24, + pub riscv_csr: kvm_run__bindgen_ty_1__bindgen_ty_25, + pub notify: kvm_run__bindgen_ty_1__bindgen_ty_26, + pub memory_fault: kvm_run__bindgen_ty_1__bindgen_ty_27, + pub padding: [::std::os::raw::c_char; 256usize], +} +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_run__bindgen_ty_1__bindgen_ty_1 { + pub hardware_exit_reason: __u64, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_run__bindgen_ty_1__bindgen_ty_1"] + [::std::mem::size_of::() - 8usize]; + ["Alignment of kvm_run__bindgen_ty_1__bindgen_ty_1"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_1::hardware_exit_reason"][::std::mem::offset_of!( + kvm_run__bindgen_ty_1__bindgen_ty_1, + hardware_exit_reason + ) - 0usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_run__bindgen_ty_1__bindgen_ty_2 { + pub hardware_entry_failure_reason: __u64, + pub cpu: __u32, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_run__bindgen_ty_1__bindgen_ty_2"] + [::std::mem::size_of::() - 16usize]; + ["Alignment of kvm_run__bindgen_ty_1__bindgen_ty_2"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_2::hardware_entry_failure_reason"][::std::mem::offset_of!( + kvm_run__bindgen_ty_1__bindgen_ty_2, + hardware_entry_failure_reason + ) + - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_2::cpu"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_2, cpu) - 8usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_run__bindgen_ty_1__bindgen_ty_3 { + pub exception: __u32, + pub error_code: __u32, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_run__bindgen_ty_1__bindgen_ty_3"] + [::std::mem::size_of::() - 8usize]; + ["Alignment of kvm_run__bindgen_ty_1__bindgen_ty_3"] + [::std::mem::align_of::() - 4usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_3::exception"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_3, exception) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_3::error_code"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_3, error_code) - 4usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_run__bindgen_ty_1__bindgen_ty_4 { + pub direction: __u8, + pub size: __u8, + pub port: __u16, + pub count: __u32, + pub data_offset: __u64, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_run__bindgen_ty_1__bindgen_ty_4"] + [::std::mem::size_of::() - 16usize]; + ["Alignment of kvm_run__bindgen_ty_1__bindgen_ty_4"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_4::direction"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_4, direction) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_4::size"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_4, size) - 1usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_4::port"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_4, port) - 2usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_4::count"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_4, count) - 4usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_4::data_offset"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_4, data_offset) - 8usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_run__bindgen_ty_1__bindgen_ty_5 { + pub arch: kvm_debug_exit_arch, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_run__bindgen_ty_1__bindgen_ty_5"] + [::std::mem::size_of::() - 0usize]; + ["Alignment of kvm_run__bindgen_ty_1__bindgen_ty_5"] + [::std::mem::align_of::() - 1usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_5::arch"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_5, arch) - 0usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_run__bindgen_ty_1__bindgen_ty_6 { + pub phys_addr: __u64, + pub data: [__u8; 8usize], + pub len: __u32, + pub is_write: __u8, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_run__bindgen_ty_1__bindgen_ty_6"] + [::std::mem::size_of::() - 24usize]; + ["Alignment of kvm_run__bindgen_ty_1__bindgen_ty_6"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_6::phys_addr"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_6, phys_addr) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_6::data"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_6, data) - 8usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_6::len"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_6, len) - 16usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_6::is_write"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_6, is_write) - 20usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_run__bindgen_ty_1__bindgen_ty_7 { + pub phys_addr: __u64, + pub data: [__u8; 8usize], + pub len: __u32, + pub is_write: __u8, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_run__bindgen_ty_1__bindgen_ty_7"] + [::std::mem::size_of::() - 24usize]; + ["Alignment of kvm_run__bindgen_ty_1__bindgen_ty_7"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_7::phys_addr"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_7, phys_addr) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_7::data"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_7, data) - 8usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_7::len"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_7, len) - 16usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_7::is_write"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_7, is_write) - 20usize]; +}; +#[repr(C)] +#[derive(Copy, Clone)] +pub struct kvm_run__bindgen_ty_1__bindgen_ty_8 { + pub nr: __u64, + pub args: [__u64; 6usize], + pub ret: __u64, + pub __bindgen_anon_1: kvm_run__bindgen_ty_1__bindgen_ty_8__bindgen_ty_1, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union kvm_run__bindgen_ty_1__bindgen_ty_8__bindgen_ty_1 { + pub longmode: __u32, + pub flags: __u64, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_run__bindgen_ty_1__bindgen_ty_8__bindgen_ty_1"] + [::std::mem::size_of::() - 8usize]; + ["Alignment of kvm_run__bindgen_ty_1__bindgen_ty_8__bindgen_ty_1"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_8__bindgen_ty_1::longmode"][::std::mem::offset_of!( + kvm_run__bindgen_ty_1__bindgen_ty_8__bindgen_ty_1, + longmode + ) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_8__bindgen_ty_1::flags"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_8__bindgen_ty_1, flags) - 0usize]; +}; +impl Default for kvm_run__bindgen_ty_1__bindgen_ty_8__bindgen_ty_1 { + fn default() -> Self { + let mut s = ::std::mem::MaybeUninit::::uninit(); + unsafe { + ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); + s.assume_init() + } + } +} +impl ::std::fmt::Debug for kvm_run__bindgen_ty_1__bindgen_ty_8__bindgen_ty_1 { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write!( + f, + "kvm_run__bindgen_ty_1__bindgen_ty_8__bindgen_ty_1 {{ union }}" + ) + } +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_run__bindgen_ty_1__bindgen_ty_8"] + [::std::mem::size_of::() - 72usize]; + ["Alignment of kvm_run__bindgen_ty_1__bindgen_ty_8"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_8::nr"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_8, nr) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_8::args"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_8, args) - 8usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_8::ret"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_8, ret) - 56usize]; +}; +impl Default for kvm_run__bindgen_ty_1__bindgen_ty_8 { + fn default() -> Self { + let mut s = ::std::mem::MaybeUninit::::uninit(); + unsafe { + ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); + s.assume_init() + } + } +} +impl ::std::fmt::Debug for kvm_run__bindgen_ty_1__bindgen_ty_8 { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write ! (f , "kvm_run__bindgen_ty_1__bindgen_ty_8 {{ nr: {:?}, args: {:?}, ret: {:?}, __bindgen_anon_1: {:?} }}" , self . nr , self . args , self . ret , self . __bindgen_anon_1) + } +} +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_run__bindgen_ty_1__bindgen_ty_9 { + pub rip: __u64, + pub is_write: __u32, + pub pad: __u32, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_run__bindgen_ty_1__bindgen_ty_9"] + [::std::mem::size_of::() - 16usize]; + ["Alignment of kvm_run__bindgen_ty_1__bindgen_ty_9"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_9::rip"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_9, rip) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_9::is_write"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_9, is_write) - 8usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_9::pad"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_9, pad) - 12usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_run__bindgen_ty_1__bindgen_ty_10 { + pub icptcode: __u8, + pub ipa: __u16, + pub ipb: __u32, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_run__bindgen_ty_1__bindgen_ty_10"] + [::std::mem::size_of::() - 8usize]; + ["Alignment of kvm_run__bindgen_ty_1__bindgen_ty_10"] + [::std::mem::align_of::() - 4usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_10::icptcode"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_10, icptcode) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_10::ipa"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_10, ipa) - 2usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_10::ipb"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_10, ipb) - 4usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_run__bindgen_ty_1__bindgen_ty_11 { + pub trans_exc_code: __u64, + pub pgm_code: __u32, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_run__bindgen_ty_1__bindgen_ty_11"] + [::std::mem::size_of::() - 16usize]; + ["Alignment of kvm_run__bindgen_ty_1__bindgen_ty_11"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_11::trans_exc_code"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_11, trans_exc_code) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_11::pgm_code"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_11, pgm_code) - 8usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_run__bindgen_ty_1__bindgen_ty_12 { + pub dcrn: __u32, + pub data: __u32, + pub is_write: __u8, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_run__bindgen_ty_1__bindgen_ty_12"] + [::std::mem::size_of::() - 12usize]; + ["Alignment of kvm_run__bindgen_ty_1__bindgen_ty_12"] + [::std::mem::align_of::() - 4usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_12::dcrn"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_12, dcrn) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_12::data"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_12, data) - 4usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_12::is_write"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_12, is_write) - 8usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_run__bindgen_ty_1__bindgen_ty_13 { + pub suberror: __u32, + pub ndata: __u32, + pub data: [__u64; 16usize], +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_run__bindgen_ty_1__bindgen_ty_13"] + [::std::mem::size_of::() - 136usize]; + ["Alignment of kvm_run__bindgen_ty_1__bindgen_ty_13"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_13::suberror"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_13, suberror) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_13::ndata"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_13, ndata) - 4usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_13::data"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_13, data) - 8usize]; +}; +#[repr(C)] +#[derive(Copy, Clone)] +pub struct kvm_run__bindgen_ty_1__bindgen_ty_14 { + pub suberror: __u32, + pub ndata: __u32, + pub flags: __u64, + pub __bindgen_anon_1: kvm_run__bindgen_ty_1__bindgen_ty_14__bindgen_ty_1, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union kvm_run__bindgen_ty_1__bindgen_ty_14__bindgen_ty_1 { + pub __bindgen_anon_1: kvm_run__bindgen_ty_1__bindgen_ty_14__bindgen_ty_1__bindgen_ty_1, +} +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_run__bindgen_ty_1__bindgen_ty_14__bindgen_ty_1__bindgen_ty_1 { + pub insn_size: __u8, + pub insn_bytes: [__u8; 15usize], +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_run__bindgen_ty_1__bindgen_ty_14__bindgen_ty_1__bindgen_ty_1"][::std::mem::size_of::< + kvm_run__bindgen_ty_1__bindgen_ty_14__bindgen_ty_1__bindgen_ty_1, + >() - 16usize]; + ["Alignment of kvm_run__bindgen_ty_1__bindgen_ty_14__bindgen_ty_1__bindgen_ty_1"] + [::std::mem::align_of::( + ) - 1usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_14__bindgen_ty_1__bindgen_ty_1::insn_size"] [:: std :: mem :: offset_of ! (kvm_run__bindgen_ty_1__bindgen_ty_14__bindgen_ty_1__bindgen_ty_1 , insn_size) - 0usize] ; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_14__bindgen_ty_1__bindgen_ty_1::insn_bytes"] [:: std :: mem :: offset_of ! (kvm_run__bindgen_ty_1__bindgen_ty_14__bindgen_ty_1__bindgen_ty_1 , insn_bytes) - 1usize] ; +}; +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_run__bindgen_ty_1__bindgen_ty_14__bindgen_ty_1"] + [::std::mem::size_of::() - 16usize]; + ["Alignment of kvm_run__bindgen_ty_1__bindgen_ty_14__bindgen_ty_1"] + [::std::mem::align_of::() - 1usize]; +}; +impl Default for kvm_run__bindgen_ty_1__bindgen_ty_14__bindgen_ty_1 { + fn default() -> Self { + let mut s = ::std::mem::MaybeUninit::::uninit(); + unsafe { + ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); + s.assume_init() + } + } +} +impl ::std::fmt::Debug for kvm_run__bindgen_ty_1__bindgen_ty_14__bindgen_ty_1 { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write!( + f, + "kvm_run__bindgen_ty_1__bindgen_ty_14__bindgen_ty_1 {{ union }}" + ) + } +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_run__bindgen_ty_1__bindgen_ty_14"] + [::std::mem::size_of::() - 32usize]; + ["Alignment of kvm_run__bindgen_ty_1__bindgen_ty_14"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_14::suberror"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_14, suberror) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_14::ndata"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_14, ndata) - 4usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_14::flags"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_14, flags) - 8usize]; +}; +impl Default for kvm_run__bindgen_ty_1__bindgen_ty_14 { + fn default() -> Self { + let mut s = ::std::mem::MaybeUninit::::uninit(); + unsafe { + ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); + s.assume_init() + } + } +} +impl ::std::fmt::Debug for kvm_run__bindgen_ty_1__bindgen_ty_14 { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write ! (f , "kvm_run__bindgen_ty_1__bindgen_ty_14 {{ suberror: {:?}, ndata: {:?}, flags: {:?}, __bindgen_anon_1: {:?} }}" , self . suberror , self . ndata , self . flags , self . __bindgen_anon_1) + } +} +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_run__bindgen_ty_1__bindgen_ty_15 { + pub gprs: [__u64; 32usize], +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_run__bindgen_ty_1__bindgen_ty_15"] + [::std::mem::size_of::() - 256usize]; + ["Alignment of kvm_run__bindgen_ty_1__bindgen_ty_15"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_15::gprs"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_15, gprs) - 0usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_run__bindgen_ty_1__bindgen_ty_16 { + pub nr: __u64, + pub ret: __u64, + pub args: [__u64; 9usize], +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_run__bindgen_ty_1__bindgen_ty_16"] + [::std::mem::size_of::() - 88usize]; + ["Alignment of kvm_run__bindgen_ty_1__bindgen_ty_16"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_16::nr"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_16, nr) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_16::ret"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_16, ret) - 8usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_16::args"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_16, args) - 16usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_run__bindgen_ty_1__bindgen_ty_17 { + pub subchannel_id: __u16, + pub subchannel_nr: __u16, + pub io_int_parm: __u32, + pub io_int_word: __u32, + pub ipb: __u32, + pub dequeued: __u8, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_run__bindgen_ty_1__bindgen_ty_17"] + [::std::mem::size_of::() - 20usize]; + ["Alignment of kvm_run__bindgen_ty_1__bindgen_ty_17"] + [::std::mem::align_of::() - 4usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_17::subchannel_id"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_17, subchannel_id) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_17::subchannel_nr"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_17, subchannel_nr) - 2usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_17::io_int_parm"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_17, io_int_parm) - 4usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_17::io_int_word"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_17, io_int_word) - 8usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_17::ipb"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_17, ipb) - 12usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_17::dequeued"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_17, dequeued) - 16usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_run__bindgen_ty_1__bindgen_ty_18 { + pub epr: __u32, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_run__bindgen_ty_1__bindgen_ty_18"] + [::std::mem::size_of::() - 4usize]; + ["Alignment of kvm_run__bindgen_ty_1__bindgen_ty_18"] + [::std::mem::align_of::() - 4usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_18::epr"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_18, epr) - 0usize]; +}; +#[repr(C)] +#[derive(Copy, Clone)] +pub struct kvm_run__bindgen_ty_1__bindgen_ty_19 { + pub type_: __u32, + pub ndata: __u32, + pub __bindgen_anon_1: kvm_run__bindgen_ty_1__bindgen_ty_19__bindgen_ty_1, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union kvm_run__bindgen_ty_1__bindgen_ty_19__bindgen_ty_1 { + pub flags: __u64, + pub data: [__u64; 16usize], +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_run__bindgen_ty_1__bindgen_ty_19__bindgen_ty_1"] + [::std::mem::size_of::() - 128usize]; + ["Alignment of kvm_run__bindgen_ty_1__bindgen_ty_19__bindgen_ty_1"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_19__bindgen_ty_1::flags"][::std::mem::offset_of!( + kvm_run__bindgen_ty_1__bindgen_ty_19__bindgen_ty_1, + flags + ) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_19__bindgen_ty_1::data"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_19__bindgen_ty_1, data) - 0usize]; +}; +impl Default for kvm_run__bindgen_ty_1__bindgen_ty_19__bindgen_ty_1 { + fn default() -> Self { + let mut s = ::std::mem::MaybeUninit::::uninit(); + unsafe { + ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); + s.assume_init() + } + } +} +impl ::std::fmt::Debug for kvm_run__bindgen_ty_1__bindgen_ty_19__bindgen_ty_1 { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write!( + f, + "kvm_run__bindgen_ty_1__bindgen_ty_19__bindgen_ty_1 {{ union }}" + ) + } +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_run__bindgen_ty_1__bindgen_ty_19"] + [::std::mem::size_of::() - 136usize]; + ["Alignment of kvm_run__bindgen_ty_1__bindgen_ty_19"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_19::type_"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_19, type_) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_19::ndata"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_19, ndata) - 4usize]; +}; +impl Default for kvm_run__bindgen_ty_1__bindgen_ty_19 { + fn default() -> Self { + let mut s = ::std::mem::MaybeUninit::::uninit(); + unsafe { + ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); + s.assume_init() + } + } +} +impl ::std::fmt::Debug for kvm_run__bindgen_ty_1__bindgen_ty_19 { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write ! (f , "kvm_run__bindgen_ty_1__bindgen_ty_19 {{ type: {:?}, ndata: {:?}, __bindgen_anon_1: {:?} }}" , self . type_ , self . ndata , self . __bindgen_anon_1) + } +} +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_run__bindgen_ty_1__bindgen_ty_20 { + pub addr: __u64, + pub ar: __u8, + pub reserved: __u8, + pub fc: __u8, + pub sel1: __u8, + pub sel2: __u16, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_run__bindgen_ty_1__bindgen_ty_20"] + [::std::mem::size_of::() - 16usize]; + ["Alignment of kvm_run__bindgen_ty_1__bindgen_ty_20"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_20::addr"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_20, addr) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_20::ar"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_20, ar) - 8usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_20::reserved"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_20, reserved) - 9usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_20::fc"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_20, fc) - 10usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_20::sel1"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_20, sel1) - 11usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_20::sel2"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_20, sel2) - 12usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_run__bindgen_ty_1__bindgen_ty_21 { + pub vector: __u8, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_run__bindgen_ty_1__bindgen_ty_21"] + [::std::mem::size_of::() - 1usize]; + ["Alignment of kvm_run__bindgen_ty_1__bindgen_ty_21"] + [::std::mem::align_of::() - 1usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_21::vector"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_21, vector) - 0usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_run__bindgen_ty_1__bindgen_ty_22 { + pub esr_iss: __u64, + pub fault_ipa: __u64, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_run__bindgen_ty_1__bindgen_ty_22"] + [::std::mem::size_of::() - 16usize]; + ["Alignment of kvm_run__bindgen_ty_1__bindgen_ty_22"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_22::esr_iss"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_22, esr_iss) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_22::fault_ipa"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_22, fault_ipa) - 8usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_run__bindgen_ty_1__bindgen_ty_23 { + pub error: __u8, + pub pad: [__u8; 7usize], + pub reason: __u32, + pub index: __u32, + pub data: __u64, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_run__bindgen_ty_1__bindgen_ty_23"] + [::std::mem::size_of::() - 24usize]; + ["Alignment of kvm_run__bindgen_ty_1__bindgen_ty_23"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_23::error"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_23, error) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_23::pad"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_23, pad) - 1usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_23::reason"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_23, reason) - 8usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_23::index"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_23, index) - 12usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_23::data"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_23, data) - 16usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_run__bindgen_ty_1__bindgen_ty_24 { + pub extension_id: ::std::os::raw::c_ulong, + pub function_id: ::std::os::raw::c_ulong, + pub args: [::std::os::raw::c_ulong; 6usize], + pub ret: [::std::os::raw::c_ulong; 2usize], +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_run__bindgen_ty_1__bindgen_ty_24"] + [::std::mem::size_of::() - 80usize]; + ["Alignment of kvm_run__bindgen_ty_1__bindgen_ty_24"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_24::extension_id"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_24, extension_id) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_24::function_id"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_24, function_id) - 8usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_24::args"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_24, args) - 16usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_24::ret"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_24, ret) - 64usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_run__bindgen_ty_1__bindgen_ty_25 { + pub csr_num: ::std::os::raw::c_ulong, + pub new_value: ::std::os::raw::c_ulong, + pub write_mask: ::std::os::raw::c_ulong, + pub ret_value: ::std::os::raw::c_ulong, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_run__bindgen_ty_1__bindgen_ty_25"] + [::std::mem::size_of::() - 32usize]; + ["Alignment of kvm_run__bindgen_ty_1__bindgen_ty_25"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_25::csr_num"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_25, csr_num) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_25::new_value"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_25, new_value) - 8usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_25::write_mask"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_25, write_mask) - 16usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_25::ret_value"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_25, ret_value) - 24usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_run__bindgen_ty_1__bindgen_ty_26 { + pub flags: __u32, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_run__bindgen_ty_1__bindgen_ty_26"] + [::std::mem::size_of::() - 4usize]; + ["Alignment of kvm_run__bindgen_ty_1__bindgen_ty_26"] + [::std::mem::align_of::() - 4usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_26::flags"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_26, flags) - 0usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_run__bindgen_ty_1__bindgen_ty_27 { + pub flags: __u64, + pub gpa: __u64, + pub size: __u64, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_run__bindgen_ty_1__bindgen_ty_27"] + [::std::mem::size_of::() - 24usize]; + ["Alignment of kvm_run__bindgen_ty_1__bindgen_ty_27"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_27::flags"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_27, flags) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_27::gpa"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_27, gpa) - 8usize]; + ["Offset of field: kvm_run__bindgen_ty_1__bindgen_ty_27::size"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1__bindgen_ty_27, size) - 16usize]; +}; +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_run__bindgen_ty_1"][::std::mem::size_of::() - 256usize]; + ["Alignment of kvm_run__bindgen_ty_1"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_run__bindgen_ty_1::hw"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1, hw) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1::fail_entry"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1, fail_entry) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1::ex"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1, ex) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1::io"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1, io) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1::debug"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1, debug) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1::mmio"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1, mmio) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1::iocsr_io"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1, iocsr_io) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1::hypercall"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1, hypercall) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1::tpr_access"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1, tpr_access) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1::s390_sieic"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1, s390_sieic) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1::s390_reset_flags"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1, s390_reset_flags) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1::s390_ucontrol"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1, s390_ucontrol) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1::dcr"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1, dcr) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1::internal"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1, internal) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1::emulation_failure"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1, emulation_failure) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1::osi"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1, osi) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1::papr_hcall"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1, papr_hcall) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1::s390_tsch"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1, s390_tsch) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1::epr"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1, epr) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1::system_event"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1, system_event) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1::s390_stsi"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1, s390_stsi) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1::eoi"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1, eoi) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1::hyperv"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1, hyperv) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1::arm_nisv"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1, arm_nisv) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1::msr"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1, msr) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1::xen"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1, xen) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1::riscv_sbi"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1, riscv_sbi) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1::riscv_csr"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1, riscv_csr) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1::notify"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1, notify) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1::memory_fault"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1, memory_fault) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_1::padding"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_1, padding) - 0usize]; +}; +impl Default for kvm_run__bindgen_ty_1 { + fn default() -> Self { + let mut s = ::std::mem::MaybeUninit::::uninit(); + unsafe { + ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); + s.assume_init() + } + } +} +impl ::std::fmt::Debug for kvm_run__bindgen_ty_1 { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write!(f, "kvm_run__bindgen_ty_1 {{ union }}") + } +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union kvm_run__bindgen_ty_2 { + pub regs: kvm_sync_regs, + pub padding: [::std::os::raw::c_char; 2048usize], +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_run__bindgen_ty_2"][::std::mem::size_of::() - 2048usize]; + ["Alignment of kvm_run__bindgen_ty_2"] + [::std::mem::align_of::() - 1usize]; + ["Offset of field: kvm_run__bindgen_ty_2::regs"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_2, regs) - 0usize]; + ["Offset of field: kvm_run__bindgen_ty_2::padding"] + [::std::mem::offset_of!(kvm_run__bindgen_ty_2, padding) - 0usize]; +}; +impl Default for kvm_run__bindgen_ty_2 { + fn default() -> Self { + let mut s = ::std::mem::MaybeUninit::::uninit(); + unsafe { + ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); + s.assume_init() + } + } +} +impl ::std::fmt::Debug for kvm_run__bindgen_ty_2 { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write!(f, "kvm_run__bindgen_ty_2 {{ union }}") + } +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_run"][::std::mem::size_of::() - 2352usize]; + ["Alignment of kvm_run"][::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_run::request_interrupt_window"] + [::std::mem::offset_of!(kvm_run, request_interrupt_window) - 0usize]; + ["Offset of field: kvm_run::immediate_exit"] + [::std::mem::offset_of!(kvm_run, immediate_exit) - 1usize]; + ["Offset of field: kvm_run::padding1"][::std::mem::offset_of!(kvm_run, padding1) - 2usize]; + ["Offset of field: kvm_run::exit_reason"] + [::std::mem::offset_of!(kvm_run, exit_reason) - 8usize]; + ["Offset of field: kvm_run::ready_for_interrupt_injection"] + [::std::mem::offset_of!(kvm_run, ready_for_interrupt_injection) - 12usize]; + ["Offset of field: kvm_run::if_flag"][::std::mem::offset_of!(kvm_run, if_flag) - 13usize]; + ["Offset of field: kvm_run::flags"][::std::mem::offset_of!(kvm_run, flags) - 14usize]; + ["Offset of field: kvm_run::cr8"][::std::mem::offset_of!(kvm_run, cr8) - 16usize]; + ["Offset of field: kvm_run::apic_base"][::std::mem::offset_of!(kvm_run, apic_base) - 24usize]; + ["Offset of field: kvm_run::kvm_valid_regs"] + [::std::mem::offset_of!(kvm_run, kvm_valid_regs) - 288usize]; + ["Offset of field: kvm_run::kvm_dirty_regs"] + [::std::mem::offset_of!(kvm_run, kvm_dirty_regs) - 296usize]; + ["Offset of field: kvm_run::s"][::std::mem::offset_of!(kvm_run, s) - 304usize]; +}; +impl Default for kvm_run { + fn default() -> Self { + let mut s = ::std::mem::MaybeUninit::::uninit(); + unsafe { + ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); + s.assume_init() + } + } +} +impl ::std::fmt::Debug for kvm_run { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write ! (f , "kvm_run {{ request_interrupt_window: {:?}, immediate_exit: {:?}, padding1: {:?}, exit_reason: {:?}, ready_for_interrupt_injection: {:?}, if_flag: {:?}, flags: {:?}, cr8: {:?}, apic_base: {:?}, __bindgen_anon_1: {:?}, kvm_valid_regs: {:?}, kvm_dirty_regs: {:?}, s: {:?} }}" , self . request_interrupt_window , self . immediate_exit , self . padding1 , self . exit_reason , self . ready_for_interrupt_injection , self . if_flag , self . flags , self . cr8 , self . apic_base , self . __bindgen_anon_1 , self . kvm_valid_regs , self . kvm_dirty_regs , self . s) + } +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct kvm_coalesced_mmio_zone { + pub addr: __u64, + pub size: __u32, + pub __bindgen_anon_1: kvm_coalesced_mmio_zone__bindgen_ty_1, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union kvm_coalesced_mmio_zone__bindgen_ty_1 { + pub pad: __u32, + pub pio: __u32, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_coalesced_mmio_zone__bindgen_ty_1"] + [::std::mem::size_of::() - 4usize]; + ["Alignment of kvm_coalesced_mmio_zone__bindgen_ty_1"] + [::std::mem::align_of::() - 4usize]; + ["Offset of field: kvm_coalesced_mmio_zone__bindgen_ty_1::pad"] + [::std::mem::offset_of!(kvm_coalesced_mmio_zone__bindgen_ty_1, pad) - 0usize]; + ["Offset of field: kvm_coalesced_mmio_zone__bindgen_ty_1::pio"] + [::std::mem::offset_of!(kvm_coalesced_mmio_zone__bindgen_ty_1, pio) - 0usize]; +}; +impl Default for kvm_coalesced_mmio_zone__bindgen_ty_1 { + fn default() -> Self { + let mut s = ::std::mem::MaybeUninit::::uninit(); + unsafe { + ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); + s.assume_init() + } + } +} +impl ::std::fmt::Debug for kvm_coalesced_mmio_zone__bindgen_ty_1 { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write!(f, "kvm_coalesced_mmio_zone__bindgen_ty_1 {{ union }}") + } +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_coalesced_mmio_zone"][::std::mem::size_of::() - 16usize]; + ["Alignment of kvm_coalesced_mmio_zone"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_coalesced_mmio_zone::addr"] + [::std::mem::offset_of!(kvm_coalesced_mmio_zone, addr) - 0usize]; + ["Offset of field: kvm_coalesced_mmio_zone::size"] + [::std::mem::offset_of!(kvm_coalesced_mmio_zone, size) - 8usize]; +}; +impl Default for kvm_coalesced_mmio_zone { + fn default() -> Self { + let mut s = ::std::mem::MaybeUninit::::uninit(); + unsafe { + ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); + s.assume_init() + } + } +} +impl ::std::fmt::Debug for kvm_coalesced_mmio_zone { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write!( + f, + "kvm_coalesced_mmio_zone {{ addr: {:?}, size: {:?}, __bindgen_anon_1: {:?} }}", + self.addr, self.size, self.__bindgen_anon_1 + ) + } +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct kvm_coalesced_mmio { + pub phys_addr: __u64, + pub len: __u32, + pub __bindgen_anon_1: kvm_coalesced_mmio__bindgen_ty_1, + pub data: [__u8; 8usize], +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union kvm_coalesced_mmio__bindgen_ty_1 { + pub pad: __u32, + pub pio: __u32, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_coalesced_mmio__bindgen_ty_1"] + [::std::mem::size_of::() - 4usize]; + ["Alignment of kvm_coalesced_mmio__bindgen_ty_1"] + [::std::mem::align_of::() - 4usize]; + ["Offset of field: kvm_coalesced_mmio__bindgen_ty_1::pad"] + [::std::mem::offset_of!(kvm_coalesced_mmio__bindgen_ty_1, pad) - 0usize]; + ["Offset of field: kvm_coalesced_mmio__bindgen_ty_1::pio"] + [::std::mem::offset_of!(kvm_coalesced_mmio__bindgen_ty_1, pio) - 0usize]; +}; +impl Default for kvm_coalesced_mmio__bindgen_ty_1 { + fn default() -> Self { + let mut s = ::std::mem::MaybeUninit::::uninit(); + unsafe { + ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); + s.assume_init() + } + } +} +impl ::std::fmt::Debug for kvm_coalesced_mmio__bindgen_ty_1 { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write!(f, "kvm_coalesced_mmio__bindgen_ty_1 {{ union }}") + } +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_coalesced_mmio"][::std::mem::size_of::() - 24usize]; + ["Alignment of kvm_coalesced_mmio"][::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_coalesced_mmio::phys_addr"] + [::std::mem::offset_of!(kvm_coalesced_mmio, phys_addr) - 0usize]; + ["Offset of field: kvm_coalesced_mmio::len"] + [::std::mem::offset_of!(kvm_coalesced_mmio, len) - 8usize]; + ["Offset of field: kvm_coalesced_mmio::data"] + [::std::mem::offset_of!(kvm_coalesced_mmio, data) - 16usize]; +}; +impl Default for kvm_coalesced_mmio { + fn default() -> Self { + let mut s = ::std::mem::MaybeUninit::::uninit(); + unsafe { + ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); + s.assume_init() + } + } +} +impl ::std::fmt::Debug for kvm_coalesced_mmio { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write ! (f , "kvm_coalesced_mmio {{ phys_addr: {:?}, len: {:?}, __bindgen_anon_1: {:?}, data: {:?} }}" , self . phys_addr , self . len , self . __bindgen_anon_1 , self . data) + } +} +#[repr(C)] +pub struct kvm_coalesced_mmio_ring { + pub first: __u32, + pub last: __u32, + pub coalesced_mmio: __IncompleteArrayField, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_coalesced_mmio_ring"][::std::mem::size_of::() - 8usize]; + ["Alignment of kvm_coalesced_mmio_ring"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_coalesced_mmio_ring::first"] + [::std::mem::offset_of!(kvm_coalesced_mmio_ring, first) - 0usize]; + ["Offset of field: kvm_coalesced_mmio_ring::last"] + [::std::mem::offset_of!(kvm_coalesced_mmio_ring, last) - 4usize]; + ["Offset of field: kvm_coalesced_mmio_ring::coalesced_mmio"] + [::std::mem::offset_of!(kvm_coalesced_mmio_ring, coalesced_mmio) - 8usize]; +}; +impl Default for kvm_coalesced_mmio_ring { + fn default() -> Self { + let mut s = ::std::mem::MaybeUninit::::uninit(); + unsafe { + ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); + s.assume_init() + } + } +} +impl ::std::fmt::Debug for kvm_coalesced_mmio_ring { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write!( + f, + "kvm_coalesced_mmio_ring {{ first: {:?}, last: {:?}, coalesced_mmio: {:?} }}", + self.first, self.last, self.coalesced_mmio + ) + } +} +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_translation { + pub linear_address: __u64, + pub physical_address: __u64, + pub valid: __u8, + pub writeable: __u8, + pub usermode: __u8, + pub pad: [__u8; 5usize], +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_translation"][::std::mem::size_of::() - 24usize]; + ["Alignment of kvm_translation"][::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_translation::linear_address"] + [::std::mem::offset_of!(kvm_translation, linear_address) - 0usize]; + ["Offset of field: kvm_translation::physical_address"] + [::std::mem::offset_of!(kvm_translation, physical_address) - 8usize]; + ["Offset of field: kvm_translation::valid"] + [::std::mem::offset_of!(kvm_translation, valid) - 16usize]; + ["Offset of field: kvm_translation::writeable"] + [::std::mem::offset_of!(kvm_translation, writeable) - 17usize]; + ["Offset of field: kvm_translation::usermode"] + [::std::mem::offset_of!(kvm_translation, usermode) - 18usize]; + ["Offset of field: kvm_translation::pad"] + [::std::mem::offset_of!(kvm_translation, pad) - 19usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_interrupt { + pub irq: __u32, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_interrupt"][::std::mem::size_of::() - 4usize]; + ["Alignment of kvm_interrupt"][::std::mem::align_of::() - 4usize]; + ["Offset of field: kvm_interrupt::irq"][::std::mem::offset_of!(kvm_interrupt, irq) - 0usize]; +}; +#[repr(C)] +#[derive(Copy, Clone)] +pub struct kvm_dirty_log { + pub slot: __u32, + pub padding1: __u32, + pub __bindgen_anon_1: kvm_dirty_log__bindgen_ty_1, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union kvm_dirty_log__bindgen_ty_1 { + pub dirty_bitmap: *mut ::std::os::raw::c_void, + pub padding2: __u64, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_dirty_log__bindgen_ty_1"] + [::std::mem::size_of::() - 8usize]; + ["Alignment of kvm_dirty_log__bindgen_ty_1"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_dirty_log__bindgen_ty_1::dirty_bitmap"] + [::std::mem::offset_of!(kvm_dirty_log__bindgen_ty_1, dirty_bitmap) - 0usize]; + ["Offset of field: kvm_dirty_log__bindgen_ty_1::padding2"] + [::std::mem::offset_of!(kvm_dirty_log__bindgen_ty_1, padding2) - 0usize]; +}; +impl Default for kvm_dirty_log__bindgen_ty_1 { + fn default() -> Self { + let mut s = ::std::mem::MaybeUninit::::uninit(); + unsafe { + ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); + s.assume_init() + } + } +} +impl ::std::fmt::Debug for kvm_dirty_log__bindgen_ty_1 { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write!(f, "kvm_dirty_log__bindgen_ty_1 {{ union }}") + } +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_dirty_log"][::std::mem::size_of::() - 16usize]; + ["Alignment of kvm_dirty_log"][::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_dirty_log::slot"][::std::mem::offset_of!(kvm_dirty_log, slot) - 0usize]; + ["Offset of field: kvm_dirty_log::padding1"] + [::std::mem::offset_of!(kvm_dirty_log, padding1) - 4usize]; +}; +impl Default for kvm_dirty_log { + fn default() -> Self { + let mut s = ::std::mem::MaybeUninit::::uninit(); + unsafe { + ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); + s.assume_init() + } + } +} +impl ::std::fmt::Debug for kvm_dirty_log { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write!( + f, + "kvm_dirty_log {{ slot: {:?}, padding1: {:?}, __bindgen_anon_1: {:?} }}", + self.slot, self.padding1, self.__bindgen_anon_1 + ) + } +} +#[repr(C)] +#[derive(Copy, Clone)] +pub struct kvm_clear_dirty_log { + pub slot: __u32, + pub num_pages: __u32, + pub first_page: __u64, + pub __bindgen_anon_1: kvm_clear_dirty_log__bindgen_ty_1, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union kvm_clear_dirty_log__bindgen_ty_1 { + pub dirty_bitmap: *mut ::std::os::raw::c_void, + pub padding2: __u64, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_clear_dirty_log__bindgen_ty_1"] + [::std::mem::size_of::() - 8usize]; + ["Alignment of kvm_clear_dirty_log__bindgen_ty_1"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_clear_dirty_log__bindgen_ty_1::dirty_bitmap"] + [::std::mem::offset_of!(kvm_clear_dirty_log__bindgen_ty_1, dirty_bitmap) - 0usize]; + ["Offset of field: kvm_clear_dirty_log__bindgen_ty_1::padding2"] + [::std::mem::offset_of!(kvm_clear_dirty_log__bindgen_ty_1, padding2) - 0usize]; +}; +impl Default for kvm_clear_dirty_log__bindgen_ty_1 { + fn default() -> Self { + let mut s = ::std::mem::MaybeUninit::::uninit(); + unsafe { + ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); + s.assume_init() + } + } +} +impl ::std::fmt::Debug for kvm_clear_dirty_log__bindgen_ty_1 { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write!(f, "kvm_clear_dirty_log__bindgen_ty_1 {{ union }}") + } +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_clear_dirty_log"][::std::mem::size_of::() - 24usize]; + ["Alignment of kvm_clear_dirty_log"][::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_clear_dirty_log::slot"] + [::std::mem::offset_of!(kvm_clear_dirty_log, slot) - 0usize]; + ["Offset of field: kvm_clear_dirty_log::num_pages"] + [::std::mem::offset_of!(kvm_clear_dirty_log, num_pages) - 4usize]; + ["Offset of field: kvm_clear_dirty_log::first_page"] + [::std::mem::offset_of!(kvm_clear_dirty_log, first_page) - 8usize]; +}; +impl Default for kvm_clear_dirty_log { + fn default() -> Self { + let mut s = ::std::mem::MaybeUninit::::uninit(); + unsafe { + ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); + s.assume_init() + } + } +} +impl ::std::fmt::Debug for kvm_clear_dirty_log { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write ! (f , "kvm_clear_dirty_log {{ slot: {:?}, num_pages: {:?}, first_page: {:?}, __bindgen_anon_1: {:?} }}" , self . slot , self . num_pages , self . first_page , self . __bindgen_anon_1) + } +} +#[repr(C)] +#[derive(Debug, Default)] +pub struct kvm_signal_mask { + pub len: __u32, + pub sigset: __IncompleteArrayField<__u8>, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_signal_mask"][::std::mem::size_of::() - 4usize]; + ["Alignment of kvm_signal_mask"][::std::mem::align_of::() - 4usize]; + ["Offset of field: kvm_signal_mask::len"] + [::std::mem::offset_of!(kvm_signal_mask, len) - 0usize]; + ["Offset of field: kvm_signal_mask::sigset"] + [::std::mem::offset_of!(kvm_signal_mask, sigset) - 4usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_tpr_access_ctl { + pub enabled: __u32, + pub flags: __u32, + pub reserved: [__u32; 8usize], +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_tpr_access_ctl"][::std::mem::size_of::() - 40usize]; + ["Alignment of kvm_tpr_access_ctl"][::std::mem::align_of::() - 4usize]; + ["Offset of field: kvm_tpr_access_ctl::enabled"] + [::std::mem::offset_of!(kvm_tpr_access_ctl, enabled) - 0usize]; + ["Offset of field: kvm_tpr_access_ctl::flags"] + [::std::mem::offset_of!(kvm_tpr_access_ctl, flags) - 4usize]; + ["Offset of field: kvm_tpr_access_ctl::reserved"] + [::std::mem::offset_of!(kvm_tpr_access_ctl, reserved) - 8usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_vapic_addr { + pub vapic_addr: __u64, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_vapic_addr"][::std::mem::size_of::() - 8usize]; + ["Alignment of kvm_vapic_addr"][::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_vapic_addr::vapic_addr"] + [::std::mem::offset_of!(kvm_vapic_addr, vapic_addr) - 0usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +#[cfg_attr( + feature = "serde", + derive(zerocopy::AsBytes, zerocopy::FromBytes, zerocopy::FromZeroes) +)] +pub struct kvm_mp_state { + pub mp_state: __u32, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_mp_state"][::std::mem::size_of::() - 4usize]; + ["Alignment of kvm_mp_state"][::std::mem::align_of::() - 4usize]; + ["Offset of field: kvm_mp_state::mp_state"] + [::std::mem::offset_of!(kvm_mp_state, mp_state) - 0usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_guest_debug { + pub control: __u32, + pub pad: __u32, + pub arch: kvm_guest_debug_arch, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_guest_debug"][::std::mem::size_of::() - 8usize]; + ["Alignment of kvm_guest_debug"][::std::mem::align_of::() - 4usize]; + ["Offset of field: kvm_guest_debug::control"] + [::std::mem::offset_of!(kvm_guest_debug, control) - 0usize]; + ["Offset of field: kvm_guest_debug::pad"] + [::std::mem::offset_of!(kvm_guest_debug, pad) - 4usize]; + ["Offset of field: kvm_guest_debug::arch"] + [::std::mem::offset_of!(kvm_guest_debug, arch) - 8usize]; +}; +pub const kvm_ioeventfd_flag_nr_datamatch: _bindgen_ty_1 = 0; +pub const kvm_ioeventfd_flag_nr_pio: _bindgen_ty_1 = 1; +pub const kvm_ioeventfd_flag_nr_deassign: _bindgen_ty_1 = 2; +pub const kvm_ioeventfd_flag_nr_virtio_ccw_notify: _bindgen_ty_1 = 3; +pub const kvm_ioeventfd_flag_nr_fast_mmio: _bindgen_ty_1 = 4; +pub const kvm_ioeventfd_flag_nr_max: _bindgen_ty_1 = 5; +pub type _bindgen_ty_1 = ::std::os::raw::c_uint; +#[repr(C)] +#[derive(Debug, Copy, Clone, PartialEq)] +pub struct kvm_ioeventfd { + pub datamatch: __u64, + pub addr: __u64, + pub len: __u32, + pub fd: __s32, + pub flags: __u32, + pub pad: [__u8; 36usize], +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_ioeventfd"][::std::mem::size_of::() - 64usize]; + ["Alignment of kvm_ioeventfd"][::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_ioeventfd::datamatch"] + [::std::mem::offset_of!(kvm_ioeventfd, datamatch) - 0usize]; + ["Offset of field: kvm_ioeventfd::addr"][::std::mem::offset_of!(kvm_ioeventfd, addr) - 8usize]; + ["Offset of field: kvm_ioeventfd::len"][::std::mem::offset_of!(kvm_ioeventfd, len) - 16usize]; + ["Offset of field: kvm_ioeventfd::fd"][::std::mem::offset_of!(kvm_ioeventfd, fd) - 20usize]; + ["Offset of field: kvm_ioeventfd::flags"] + [::std::mem::offset_of!(kvm_ioeventfd, flags) - 24usize]; + ["Offset of field: kvm_ioeventfd::pad"][::std::mem::offset_of!(kvm_ioeventfd, pad) - 28usize]; +}; +impl Default for kvm_ioeventfd { + fn default() -> Self { + let mut s = ::std::mem::MaybeUninit::::uninit(); + unsafe { + ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); + s.assume_init() + } + } +} +#[repr(C)] +#[derive(Debug, Copy, Clone, PartialEq)] +pub struct kvm_enable_cap { + pub cap: __u32, + pub flags: __u32, + pub args: [__u64; 4usize], + pub pad: [__u8; 64usize], +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_enable_cap"][::std::mem::size_of::() - 104usize]; + ["Alignment of kvm_enable_cap"][::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_enable_cap::cap"][::std::mem::offset_of!(kvm_enable_cap, cap) - 0usize]; + ["Offset of field: kvm_enable_cap::flags"] + [::std::mem::offset_of!(kvm_enable_cap, flags) - 4usize]; + ["Offset of field: kvm_enable_cap::args"] + [::std::mem::offset_of!(kvm_enable_cap, args) - 8usize]; + ["Offset of field: kvm_enable_cap::pad"][::std::mem::offset_of!(kvm_enable_cap, pad) - 40usize]; +}; +impl Default for kvm_enable_cap { + fn default() -> Self { + let mut s = ::std::mem::MaybeUninit::::uninit(); + unsafe { + ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); + s.assume_init() + } + } +} +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_irq_routing_irqchip { + pub irqchip: __u32, + pub pin: __u32, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_irq_routing_irqchip"][::std::mem::size_of::() - 8usize]; + ["Alignment of kvm_irq_routing_irqchip"] + [::std::mem::align_of::() - 4usize]; + ["Offset of field: kvm_irq_routing_irqchip::irqchip"] + [::std::mem::offset_of!(kvm_irq_routing_irqchip, irqchip) - 0usize]; + ["Offset of field: kvm_irq_routing_irqchip::pin"] + [::std::mem::offset_of!(kvm_irq_routing_irqchip, pin) - 4usize]; +}; +#[repr(C)] +#[derive(Copy, Clone)] +pub struct kvm_irq_routing_msi { + pub address_lo: __u32, + pub address_hi: __u32, + pub data: __u32, + pub __bindgen_anon_1: kvm_irq_routing_msi__bindgen_ty_1, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union kvm_irq_routing_msi__bindgen_ty_1 { + pub pad: __u32, + pub devid: __u32, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_irq_routing_msi__bindgen_ty_1"] + [::std::mem::size_of::() - 4usize]; + ["Alignment of kvm_irq_routing_msi__bindgen_ty_1"] + [::std::mem::align_of::() - 4usize]; + ["Offset of field: kvm_irq_routing_msi__bindgen_ty_1::pad"] + [::std::mem::offset_of!(kvm_irq_routing_msi__bindgen_ty_1, pad) - 0usize]; + ["Offset of field: kvm_irq_routing_msi__bindgen_ty_1::devid"] + [::std::mem::offset_of!(kvm_irq_routing_msi__bindgen_ty_1, devid) - 0usize]; +}; +impl Default for kvm_irq_routing_msi__bindgen_ty_1 { + fn default() -> Self { + let mut s = ::std::mem::MaybeUninit::::uninit(); + unsafe { + ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); + s.assume_init() + } + } +} +impl ::std::fmt::Debug for kvm_irq_routing_msi__bindgen_ty_1 { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write!(f, "kvm_irq_routing_msi__bindgen_ty_1 {{ union }}") + } +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_irq_routing_msi"][::std::mem::size_of::() - 16usize]; + ["Alignment of kvm_irq_routing_msi"][::std::mem::align_of::() - 4usize]; + ["Offset of field: kvm_irq_routing_msi::address_lo"] + [::std::mem::offset_of!(kvm_irq_routing_msi, address_lo) - 0usize]; + ["Offset of field: kvm_irq_routing_msi::address_hi"] + [::std::mem::offset_of!(kvm_irq_routing_msi, address_hi) - 4usize]; + ["Offset of field: kvm_irq_routing_msi::data"] + [::std::mem::offset_of!(kvm_irq_routing_msi, data) - 8usize]; +}; +impl Default for kvm_irq_routing_msi { + fn default() -> Self { + let mut s = ::std::mem::MaybeUninit::::uninit(); + unsafe { + ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); + s.assume_init() + } + } +} +impl ::std::fmt::Debug for kvm_irq_routing_msi { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write ! (f , "kvm_irq_routing_msi {{ address_lo: {:?}, address_hi: {:?}, data: {:?}, __bindgen_anon_1: {:?} }}" , self . address_lo , self . address_hi , self . data , self . __bindgen_anon_1) + } +} +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_irq_routing_s390_adapter { + pub ind_addr: __u64, + pub summary_addr: __u64, + pub ind_offset: __u64, + pub summary_offset: __u32, + pub adapter_id: __u32, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_irq_routing_s390_adapter"] + [::std::mem::size_of::() - 32usize]; + ["Alignment of kvm_irq_routing_s390_adapter"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_irq_routing_s390_adapter::ind_addr"] + [::std::mem::offset_of!(kvm_irq_routing_s390_adapter, ind_addr) - 0usize]; + ["Offset of field: kvm_irq_routing_s390_adapter::summary_addr"] + [::std::mem::offset_of!(kvm_irq_routing_s390_adapter, summary_addr) - 8usize]; + ["Offset of field: kvm_irq_routing_s390_adapter::ind_offset"] + [::std::mem::offset_of!(kvm_irq_routing_s390_adapter, ind_offset) - 16usize]; + ["Offset of field: kvm_irq_routing_s390_adapter::summary_offset"] + [::std::mem::offset_of!(kvm_irq_routing_s390_adapter, summary_offset) - 24usize]; + ["Offset of field: kvm_irq_routing_s390_adapter::adapter_id"] + [::std::mem::offset_of!(kvm_irq_routing_s390_adapter, adapter_id) - 28usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_irq_routing_hv_sint { + pub vcpu: __u32, + pub sint: __u32, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_irq_routing_hv_sint"][::std::mem::size_of::() - 8usize]; + ["Alignment of kvm_irq_routing_hv_sint"] + [::std::mem::align_of::() - 4usize]; + ["Offset of field: kvm_irq_routing_hv_sint::vcpu"] + [::std::mem::offset_of!(kvm_irq_routing_hv_sint, vcpu) - 0usize]; + ["Offset of field: kvm_irq_routing_hv_sint::sint"] + [::std::mem::offset_of!(kvm_irq_routing_hv_sint, sint) - 4usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_irq_routing_xen_evtchn { + pub port: __u32, + pub vcpu: __u32, + pub priority: __u32, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_irq_routing_xen_evtchn"] + [::std::mem::size_of::() - 12usize]; + ["Alignment of kvm_irq_routing_xen_evtchn"] + [::std::mem::align_of::() - 4usize]; + ["Offset of field: kvm_irq_routing_xen_evtchn::port"] + [::std::mem::offset_of!(kvm_irq_routing_xen_evtchn, port) - 0usize]; + ["Offset of field: kvm_irq_routing_xen_evtchn::vcpu"] + [::std::mem::offset_of!(kvm_irq_routing_xen_evtchn, vcpu) - 4usize]; + ["Offset of field: kvm_irq_routing_xen_evtchn::priority"] + [::std::mem::offset_of!(kvm_irq_routing_xen_evtchn, priority) - 8usize]; +}; +#[repr(C)] +#[derive(Copy, Clone)] +pub struct kvm_irq_routing_entry { + pub gsi: __u32, + pub type_: __u32, + pub flags: __u32, + pub pad: __u32, + pub u: kvm_irq_routing_entry__bindgen_ty_1, +} +#[repr(C)] +#[derive(Copy, Clone)] +pub union kvm_irq_routing_entry__bindgen_ty_1 { + pub irqchip: kvm_irq_routing_irqchip, + pub msi: kvm_irq_routing_msi, + pub adapter: kvm_irq_routing_s390_adapter, + pub hv_sint: kvm_irq_routing_hv_sint, + pub xen_evtchn: kvm_irq_routing_xen_evtchn, + pub pad: [__u32; 8usize], +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_irq_routing_entry__bindgen_ty_1"] + [::std::mem::size_of::() - 32usize]; + ["Alignment of kvm_irq_routing_entry__bindgen_ty_1"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_irq_routing_entry__bindgen_ty_1::irqchip"] + [::std::mem::offset_of!(kvm_irq_routing_entry__bindgen_ty_1, irqchip) - 0usize]; + ["Offset of field: kvm_irq_routing_entry__bindgen_ty_1::msi"] + [::std::mem::offset_of!(kvm_irq_routing_entry__bindgen_ty_1, msi) - 0usize]; + ["Offset of field: kvm_irq_routing_entry__bindgen_ty_1::adapter"] + [::std::mem::offset_of!(kvm_irq_routing_entry__bindgen_ty_1, adapter) - 0usize]; + ["Offset of field: kvm_irq_routing_entry__bindgen_ty_1::hv_sint"] + [::std::mem::offset_of!(kvm_irq_routing_entry__bindgen_ty_1, hv_sint) - 0usize]; + ["Offset of field: kvm_irq_routing_entry__bindgen_ty_1::xen_evtchn"] + [::std::mem::offset_of!(kvm_irq_routing_entry__bindgen_ty_1, xen_evtchn) - 0usize]; + ["Offset of field: kvm_irq_routing_entry__bindgen_ty_1::pad"] + [::std::mem::offset_of!(kvm_irq_routing_entry__bindgen_ty_1, pad) - 0usize]; +}; +impl Default for kvm_irq_routing_entry__bindgen_ty_1 { + fn default() -> Self { + let mut s = ::std::mem::MaybeUninit::::uninit(); + unsafe { + ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); + s.assume_init() + } + } +} +impl ::std::fmt::Debug for kvm_irq_routing_entry__bindgen_ty_1 { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write!(f, "kvm_irq_routing_entry__bindgen_ty_1 {{ union }}") + } +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_irq_routing_entry"][::std::mem::size_of::() - 48usize]; + ["Alignment of kvm_irq_routing_entry"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_irq_routing_entry::gsi"] + [::std::mem::offset_of!(kvm_irq_routing_entry, gsi) - 0usize]; + ["Offset of field: kvm_irq_routing_entry::type_"] + [::std::mem::offset_of!(kvm_irq_routing_entry, type_) - 4usize]; + ["Offset of field: kvm_irq_routing_entry::flags"] + [::std::mem::offset_of!(kvm_irq_routing_entry, flags) - 8usize]; + ["Offset of field: kvm_irq_routing_entry::pad"] + [::std::mem::offset_of!(kvm_irq_routing_entry, pad) - 12usize]; + ["Offset of field: kvm_irq_routing_entry::u"] + [::std::mem::offset_of!(kvm_irq_routing_entry, u) - 16usize]; +}; +impl Default for kvm_irq_routing_entry { + fn default() -> Self { + let mut s = ::std::mem::MaybeUninit::::uninit(); + unsafe { + ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); + s.assume_init() + } + } +} +impl ::std::fmt::Debug for kvm_irq_routing_entry { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write!( + f, + "kvm_irq_routing_entry {{ gsi: {:?}, type: {:?}, flags: {:?}, pad: {:?}, u: {:?} }}", + self.gsi, self.type_, self.flags, self.pad, self.u + ) + } +} +#[repr(C)] +pub struct kvm_irq_routing { + pub nr: __u32, + pub flags: __u32, + pub entries: __IncompleteArrayField, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_irq_routing"][::std::mem::size_of::() - 8usize]; + ["Alignment of kvm_irq_routing"][::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_irq_routing::nr"][::std::mem::offset_of!(kvm_irq_routing, nr) - 0usize]; + ["Offset of field: kvm_irq_routing::flags"] + [::std::mem::offset_of!(kvm_irq_routing, flags) - 4usize]; + ["Offset of field: kvm_irq_routing::entries"] + [::std::mem::offset_of!(kvm_irq_routing, entries) - 8usize]; +}; +impl Default for kvm_irq_routing { + fn default() -> Self { + let mut s = ::std::mem::MaybeUninit::::uninit(); + unsafe { + ::std::ptr::write_bytes(s.as_mut_ptr(), 0, 1); + s.assume_init() + } + } +} +impl ::std::fmt::Debug for kvm_irq_routing { + fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result { + write!( + f, + "kvm_irq_routing {{ nr: {:?}, flags: {:?}, entries: {:?} }}", + self.nr, self.flags, self.entries + ) + } +} +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_irqfd { + pub fd: __u32, + pub gsi: __u32, + pub flags: __u32, + pub resamplefd: __u32, + pub pad: [__u8; 16usize], +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_irqfd"][::std::mem::size_of::() - 32usize]; + ["Alignment of kvm_irqfd"][::std::mem::align_of::() - 4usize]; + ["Offset of field: kvm_irqfd::fd"][::std::mem::offset_of!(kvm_irqfd, fd) - 0usize]; + ["Offset of field: kvm_irqfd::gsi"][::std::mem::offset_of!(kvm_irqfd, gsi) - 4usize]; + ["Offset of field: kvm_irqfd::flags"][::std::mem::offset_of!(kvm_irqfd, flags) - 8usize]; + ["Offset of field: kvm_irqfd::resamplefd"] + [::std::mem::offset_of!(kvm_irqfd, resamplefd) - 12usize]; + ["Offset of field: kvm_irqfd::pad"][::std::mem::offset_of!(kvm_irqfd, pad) - 16usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +#[cfg_attr( + feature = "serde", + derive(zerocopy::AsBytes, zerocopy::FromBytes, zerocopy::FromZeroes) +)] +pub struct kvm_clock_data { + pub clock: __u64, + pub flags: __u32, + pub pad0: __u32, + pub realtime: __u64, + pub host_tsc: __u64, + pub pad: [__u32; 4usize], +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_clock_data"][::std::mem::size_of::() - 48usize]; + ["Alignment of kvm_clock_data"][::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_clock_data::clock"] + [::std::mem::offset_of!(kvm_clock_data, clock) - 0usize]; + ["Offset of field: kvm_clock_data::flags"] + [::std::mem::offset_of!(kvm_clock_data, flags) - 8usize]; + ["Offset of field: kvm_clock_data::pad0"] + [::std::mem::offset_of!(kvm_clock_data, pad0) - 12usize]; + ["Offset of field: kvm_clock_data::realtime"] + [::std::mem::offset_of!(kvm_clock_data, realtime) - 16usize]; + ["Offset of field: kvm_clock_data::host_tsc"] + [::std::mem::offset_of!(kvm_clock_data, host_tsc) - 24usize]; + ["Offset of field: kvm_clock_data::pad"][::std::mem::offset_of!(kvm_clock_data, pad) - 32usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_config_tlb { + pub params: __u64, + pub array: __u64, + pub mmu_type: __u32, + pub array_len: __u32, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_config_tlb"][::std::mem::size_of::() - 24usize]; + ["Alignment of kvm_config_tlb"][::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_config_tlb::params"] + [::std::mem::offset_of!(kvm_config_tlb, params) - 0usize]; + ["Offset of field: kvm_config_tlb::array"] + [::std::mem::offset_of!(kvm_config_tlb, array) - 8usize]; + ["Offset of field: kvm_config_tlb::mmu_type"] + [::std::mem::offset_of!(kvm_config_tlb, mmu_type) - 16usize]; + ["Offset of field: kvm_config_tlb::array_len"] + [::std::mem::offset_of!(kvm_config_tlb, array_len) - 20usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_dirty_tlb { + pub bitmap: __u64, + pub num_dirty: __u32, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_dirty_tlb"][::std::mem::size_of::() - 16usize]; + ["Alignment of kvm_dirty_tlb"][::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_dirty_tlb::bitmap"] + [::std::mem::offset_of!(kvm_dirty_tlb, bitmap) - 0usize]; + ["Offset of field: kvm_dirty_tlb::num_dirty"] + [::std::mem::offset_of!(kvm_dirty_tlb, num_dirty) - 8usize]; +}; +#[repr(C)] +#[derive(Debug, Default)] +pub struct kvm_reg_list { + pub n: __u64, + pub reg: __IncompleteArrayField<__u64>, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_reg_list"][::std::mem::size_of::() - 8usize]; + ["Alignment of kvm_reg_list"][::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_reg_list::n"][::std::mem::offset_of!(kvm_reg_list, n) - 0usize]; + ["Offset of field: kvm_reg_list::reg"][::std::mem::offset_of!(kvm_reg_list, reg) - 8usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +#[cfg_attr( + feature = "serde", + derive(zerocopy::AsBytes, zerocopy::FromBytes, zerocopy::FromZeroes) +)] +pub struct kvm_one_reg { + pub id: __u64, + pub addr: __u64, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_one_reg"][::std::mem::size_of::() - 16usize]; + ["Alignment of kvm_one_reg"][::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_one_reg::id"][::std::mem::offset_of!(kvm_one_reg, id) - 0usize]; + ["Offset of field: kvm_one_reg::addr"][::std::mem::offset_of!(kvm_one_reg, addr) - 8usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_msi { + pub address_lo: __u32, + pub address_hi: __u32, + pub data: __u32, + pub flags: __u32, + pub devid: __u32, + pub pad: [__u8; 12usize], +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_msi"][::std::mem::size_of::() - 32usize]; + ["Alignment of kvm_msi"][::std::mem::align_of::() - 4usize]; + ["Offset of field: kvm_msi::address_lo"][::std::mem::offset_of!(kvm_msi, address_lo) - 0usize]; + ["Offset of field: kvm_msi::address_hi"][::std::mem::offset_of!(kvm_msi, address_hi) - 4usize]; + ["Offset of field: kvm_msi::data"][::std::mem::offset_of!(kvm_msi, data) - 8usize]; + ["Offset of field: kvm_msi::flags"][::std::mem::offset_of!(kvm_msi, flags) - 12usize]; + ["Offset of field: kvm_msi::devid"][::std::mem::offset_of!(kvm_msi, devid) - 16usize]; + ["Offset of field: kvm_msi::pad"][::std::mem::offset_of!(kvm_msi, pad) - 20usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_arm_device_addr { + pub id: __u64, + pub addr: __u64, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_arm_device_addr"][::std::mem::size_of::() - 16usize]; + ["Alignment of kvm_arm_device_addr"][::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_arm_device_addr::id"] + [::std::mem::offset_of!(kvm_arm_device_addr, id) - 0usize]; + ["Offset of field: kvm_arm_device_addr::addr"] + [::std::mem::offset_of!(kvm_arm_device_addr, addr) - 8usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_create_device { + pub type_: __u32, + pub fd: __u32, + pub flags: __u32, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_create_device"][::std::mem::size_of::() - 12usize]; + ["Alignment of kvm_create_device"][::std::mem::align_of::() - 4usize]; + ["Offset of field: kvm_create_device::type_"] + [::std::mem::offset_of!(kvm_create_device, type_) - 0usize]; + ["Offset of field: kvm_create_device::fd"] + [::std::mem::offset_of!(kvm_create_device, fd) - 4usize]; + ["Offset of field: kvm_create_device::flags"] + [::std::mem::offset_of!(kvm_create_device, flags) - 8usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_device_attr { + pub flags: __u32, + pub group: __u32, + pub attr: __u64, + pub addr: __u64, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_device_attr"][::std::mem::size_of::() - 24usize]; + ["Alignment of kvm_device_attr"][::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_device_attr::flags"] + [::std::mem::offset_of!(kvm_device_attr, flags) - 0usize]; + ["Offset of field: kvm_device_attr::group"] + [::std::mem::offset_of!(kvm_device_attr, group) - 4usize]; + ["Offset of field: kvm_device_attr::attr"] + [::std::mem::offset_of!(kvm_device_attr, attr) - 8usize]; + ["Offset of field: kvm_device_attr::addr"] + [::std::mem::offset_of!(kvm_device_attr, addr) - 16usize]; +}; +pub const kvm_device_type_KVM_DEV_TYPE_FSL_MPIC_20: kvm_device_type = 1; +pub const kvm_device_type_KVM_DEV_TYPE_FSL_MPIC_42: kvm_device_type = 2; +pub const kvm_device_type_KVM_DEV_TYPE_XICS: kvm_device_type = 3; +pub const kvm_device_type_KVM_DEV_TYPE_VFIO: kvm_device_type = 4; +pub const kvm_device_type_KVM_DEV_TYPE_ARM_VGIC_V2: kvm_device_type = 5; +pub const kvm_device_type_KVM_DEV_TYPE_FLIC: kvm_device_type = 6; +pub const kvm_device_type_KVM_DEV_TYPE_ARM_VGIC_V3: kvm_device_type = 7; +pub const kvm_device_type_KVM_DEV_TYPE_ARM_VGIC_ITS: kvm_device_type = 8; +pub const kvm_device_type_KVM_DEV_TYPE_XIVE: kvm_device_type = 9; +pub const kvm_device_type_KVM_DEV_TYPE_ARM_PV_TIME: kvm_device_type = 10; +pub const kvm_device_type_KVM_DEV_TYPE_RISCV_AIA: kvm_device_type = 11; +pub const kvm_device_type_KVM_DEV_TYPE_LOONGARCH_IPI: kvm_device_type = 12; +pub const kvm_device_type_KVM_DEV_TYPE_LOONGARCH_EIOINTC: kvm_device_type = 13; +pub const kvm_device_type_KVM_DEV_TYPE_LOONGARCH_PCHPIC: kvm_device_type = 14; +pub const kvm_device_type_KVM_DEV_TYPE_MAX: kvm_device_type = 15; +pub type kvm_device_type = ::std::os::raw::c_uint; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_vfio_spapr_tce { + pub groupfd: __s32, + pub tablefd: __s32, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_vfio_spapr_tce"][::std::mem::size_of::() - 8usize]; + ["Alignment of kvm_vfio_spapr_tce"][::std::mem::align_of::() - 4usize]; + ["Offset of field: kvm_vfio_spapr_tce::groupfd"] + [::std::mem::offset_of!(kvm_vfio_spapr_tce, groupfd) - 0usize]; + ["Offset of field: kvm_vfio_spapr_tce::tablefd"] + [::std::mem::offset_of!(kvm_vfio_spapr_tce, tablefd) - 4usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_enc_region { + pub addr: __u64, + pub size: __u64, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_enc_region"][::std::mem::size_of::() - 16usize]; + ["Alignment of kvm_enc_region"][::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_enc_region::addr"] + [::std::mem::offset_of!(kvm_enc_region, addr) - 0usize]; + ["Offset of field: kvm_enc_region::size"] + [::std::mem::offset_of!(kvm_enc_region, size) - 8usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_dirty_gfn { + pub flags: __u32, + pub slot: __u32, + pub offset: __u64, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_dirty_gfn"][::std::mem::size_of::() - 16usize]; + ["Alignment of kvm_dirty_gfn"][::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_dirty_gfn::flags"] + [::std::mem::offset_of!(kvm_dirty_gfn, flags) - 0usize]; + ["Offset of field: kvm_dirty_gfn::slot"][::std::mem::offset_of!(kvm_dirty_gfn, slot) - 4usize]; + ["Offset of field: kvm_dirty_gfn::offset"] + [::std::mem::offset_of!(kvm_dirty_gfn, offset) - 8usize]; +}; +#[doc = " struct kvm_stats_header - Header of per vm/vcpu binary statistics data.\n @flags: Some extra information for header, always 0 for now.\n @name_size: The size in bytes of the memory which contains statistics\n name string including trailing '\\0'. The memory is allocated\n at the send of statistics descriptor.\n @num_desc: The number of statistics the vm or vcpu has.\n @id_offset: The offset of the vm/vcpu stats' id string in the file pointed\n by vm/vcpu stats fd.\n @desc_offset: The offset of the vm/vcpu stats' descriptor block in the file\n pointd by vm/vcpu stats fd.\n @data_offset: The offset of the vm/vcpu stats' data block in the file\n pointed by vm/vcpu stats fd.\n\n This is the header userspace needs to read from stats fd before any other\n readings. It is used by userspace to discover all the information about the\n vm/vcpu's binary statistics.\n Userspace reads this header from the start of the vm/vcpu's stats fd."] +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_stats_header { + pub flags: __u32, + pub name_size: __u32, + pub num_desc: __u32, + pub id_offset: __u32, + pub desc_offset: __u32, + pub data_offset: __u32, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_stats_header"][::std::mem::size_of::() - 24usize]; + ["Alignment of kvm_stats_header"][::std::mem::align_of::() - 4usize]; + ["Offset of field: kvm_stats_header::flags"] + [::std::mem::offset_of!(kvm_stats_header, flags) - 0usize]; + ["Offset of field: kvm_stats_header::name_size"] + [::std::mem::offset_of!(kvm_stats_header, name_size) - 4usize]; + ["Offset of field: kvm_stats_header::num_desc"] + [::std::mem::offset_of!(kvm_stats_header, num_desc) - 8usize]; + ["Offset of field: kvm_stats_header::id_offset"] + [::std::mem::offset_of!(kvm_stats_header, id_offset) - 12usize]; + ["Offset of field: kvm_stats_header::desc_offset"] + [::std::mem::offset_of!(kvm_stats_header, desc_offset) - 16usize]; + ["Offset of field: kvm_stats_header::data_offset"] + [::std::mem::offset_of!(kvm_stats_header, data_offset) - 20usize]; +}; +#[doc = " struct kvm_stats_desc - Descriptor of a KVM statistics.\n @flags: Annotations of the stats, like type, unit, etc.\n @exponent: Used together with @flags to determine the unit.\n @size: The number of data items for this stats.\n Every data item is of type __u64.\n @offset: The offset of the stats to the start of stat structure in\n structure kvm or kvm_vcpu.\n @bucket_size: A parameter value used for histogram stats. It is only used\n\t\tfor linear histogram stats, specifying the size of the bucket;\n @name: The name string for the stats. Its size is indicated by the\n &kvm_stats_header->name_size."] +#[repr(C)] +#[derive(Debug, Default)] +pub struct kvm_stats_desc { + pub flags: __u32, + pub exponent: __s16, + pub size: __u16, + pub offset: __u32, + pub bucket_size: __u32, + pub name: __IncompleteArrayField<::std::os::raw::c_char>, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_stats_desc"][::std::mem::size_of::() - 16usize]; + ["Alignment of kvm_stats_desc"][::std::mem::align_of::() - 4usize]; + ["Offset of field: kvm_stats_desc::flags"] + [::std::mem::offset_of!(kvm_stats_desc, flags) - 0usize]; + ["Offset of field: kvm_stats_desc::exponent"] + [::std::mem::offset_of!(kvm_stats_desc, exponent) - 4usize]; + ["Offset of field: kvm_stats_desc::size"] + [::std::mem::offset_of!(kvm_stats_desc, size) - 6usize]; + ["Offset of field: kvm_stats_desc::offset"] + [::std::mem::offset_of!(kvm_stats_desc, offset) - 8usize]; + ["Offset of field: kvm_stats_desc::bucket_size"] + [::std::mem::offset_of!(kvm_stats_desc, bucket_size) - 12usize]; + ["Offset of field: kvm_stats_desc::name"] + [::std::mem::offset_of!(kvm_stats_desc, name) - 16usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_memory_attributes { + pub address: __u64, + pub size: __u64, + pub attributes: __u64, + pub flags: __u64, +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_memory_attributes"][::std::mem::size_of::() - 32usize]; + ["Alignment of kvm_memory_attributes"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_memory_attributes::address"] + [::std::mem::offset_of!(kvm_memory_attributes, address) - 0usize]; + ["Offset of field: kvm_memory_attributes::size"] + [::std::mem::offset_of!(kvm_memory_attributes, size) - 8usize]; + ["Offset of field: kvm_memory_attributes::attributes"] + [::std::mem::offset_of!(kvm_memory_attributes, attributes) - 16usize]; + ["Offset of field: kvm_memory_attributes::flags"] + [::std::mem::offset_of!(kvm_memory_attributes, flags) - 24usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_create_guest_memfd { + pub size: __u64, + pub flags: __u64, + pub reserved: [__u64; 6usize], +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_create_guest_memfd"][::std::mem::size_of::() - 64usize]; + ["Alignment of kvm_create_guest_memfd"] + [::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_create_guest_memfd::size"] + [::std::mem::offset_of!(kvm_create_guest_memfd, size) - 0usize]; + ["Offset of field: kvm_create_guest_memfd::flags"] + [::std::mem::offset_of!(kvm_create_guest_memfd, flags) - 8usize]; + ["Offset of field: kvm_create_guest_memfd::reserved"] + [::std::mem::offset_of!(kvm_create_guest_memfd, reserved) - 16usize]; +}; +#[repr(C)] +#[derive(Debug, Default, Copy, Clone, PartialEq)] +pub struct kvm_pre_fault_memory { + pub gpa: __u64, + pub size: __u64, + pub flags: __u64, + pub padding: [__u64; 5usize], +} +#[allow(clippy::unnecessary_operation, clippy::identity_op)] +const _: () = { + ["Size of kvm_pre_fault_memory"][::std::mem::size_of::() - 64usize]; + ["Alignment of kvm_pre_fault_memory"][::std::mem::align_of::() - 8usize]; + ["Offset of field: kvm_pre_fault_memory::gpa"] + [::std::mem::offset_of!(kvm_pre_fault_memory, gpa) - 0usize]; + ["Offset of field: kvm_pre_fault_memory::size"] + [::std::mem::offset_of!(kvm_pre_fault_memory, size) - 8usize]; + ["Offset of field: kvm_pre_fault_memory::flags"] + [::std::mem::offset_of!(kvm_pre_fault_memory, flags) - 16usize]; + ["Offset of field: kvm_pre_fault_memory::padding"] + [::std::mem::offset_of!(kvm_pre_fault_memory, padding) - 24usize]; +}; diff --git a/kvm-bindings/src/loongarch64/mod.rs b/kvm-bindings/src/loongarch64/mod.rs new file mode 100644 index 00000000..94b02647 --- /dev/null +++ b/kvm-bindings/src/loongarch64/mod.rs @@ -0,0 +1,12 @@ +// Copyright 2024 © Institute of Software, CAS. All rights reserved. +// Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. +// SPDX-License-Identifier: Apache-2.0 + +#[allow(clippy::all)] +#[allow(clippy::undocumented_unsafe_blocks)] +pub mod bindings; + +#[cfg(feature = "serde")] +mod serialize; + +pub use self::bindings::*; diff --git a/kvm-bindings/src/loongarch64/serialize.rs b/kvm-bindings/src/loongarch64/serialize.rs new file mode 100644 index 00000000..317313cf --- /dev/null +++ b/kvm-bindings/src/loongarch64/serialize.rs @@ -0,0 +1,72 @@ +// Copyright 2024 © Institute of Software, CAS. All rights reserved. +// Copyright 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. +// SPDX-License-Identifier: Apache-2.0 + +use bindings::{kvm_mp_state, kvm_one_reg, kvm_regs}; +use serde::{Deserialize, Deserializer, Serialize, Serializer}; +use zerocopy::{transmute, AsBytes}; + +serde_impls! { + kvm_mp_state, + kvm_one_reg, + kvm_regs +} + +#[cfg(test)] +mod tests { + use bindings::*; + use serde::{Deserialize, Serialize}; + + fn is_serde Deserialize<'de> + Default>() { + let serialized = bincode::serialize(&T::default()).unwrap(); + let deserialized = bincode::deserialize::(serialized.as_ref()).unwrap(); + let serialized_again = bincode::serialize(&deserialized).unwrap(); + // Compare the serialized state after a roundtrip, to work around issues with + // bindings not implementing `PartialEq`. + assert_eq!(serialized, serialized_again); + } + + #[test] + fn static_assert_serde_implementations() { + // This test statically (= at compile-time) asserts that various bindgen generated + // structures implement serde's `Serialize` and `Deserialize` traits. + // This is to make sure that we do not accidentally remove those implementations + // when regenerating bindings. If this test fails to compile, please add + // + // #[cfg_attr( + // feature = "serde", + // derive(zerocopy::AsBytes, zerocopy::FromBytes, zerocopy::FromZeroes) + // )] + // + // to all structures causing compilation errors (we need the zerocopy traits, as the + // `Serialize` and `Deserialize` implementations are provided by the `serde_impls!` macro + // above, which implements serialization based on zerocopy's `FromBytes` and `AsBytes` + // traits that it expects to be derived). + // + // NOTE: This only include "top-level" items, and does not list out bindgen-anonymous types + // (e.g. types like `kvm_vcpu_events__bindgen_ty_5`). These types can change name across + // bindgen versions. If after re-adding the derives to all the below items you can compile + // errors about anonymous types not implementing `Serialize`/`Deserialize`, please also add + // the derives to all anonymous types references in the definitions of the below items. + + is_serde::(); + is_serde::(); + is_serde::(); + } + + fn is_serde_json Deserialize<'de> + Default>() { + let serialized = serde_json::to_string(&T::default()).unwrap(); + let deserialized = serde_json::from_str::(serialized.as_ref()).unwrap(); + let serialized_again = serde_json::to_string(&deserialized).unwrap(); + // Compare the serialized state after a roundtrip, to work around issues with + // bindings not implementing `PartialEq`. + assert_eq!(serialized, serialized_again); + } + + #[test] + fn test_json_serde() { + is_serde_json::(); + is_serde_json::(); + is_serde_json::(); + } +} diff --git a/kvm-ioctls/CHANGELOG.md b/kvm-ioctls/CHANGELOG.md index bbbfbab2..1cc11dcd 100644 --- a/kvm-ioctls/CHANGELOG.md +++ b/kvm-ioctls/CHANGELOG.md @@ -2,6 +2,8 @@ ## Upcoming Release +- [[#307](https://github.com/rust-vmm/kvm/pull/307)]: Introduce `loongarch64` ioctls. + ## v0.20.0 ### Added diff --git a/kvm-ioctls/README.md b/kvm-ioctls/README.md index d1745697..000b36c5 100644 --- a/kvm-ioctls/README.md +++ b/kvm-ioctls/README.md @@ -17,6 +17,6 @@ as the code documentation. ## Supported Platforms -The kvm-ioctls can be used on x86_64, aarch64 and riscv64 (experimental). +The kvm-ioctls can be used on x86_64, aarch64, riscv64 (experimental) and loongarch64 (experimental). diff --git a/kvm-ioctls/src/cap.rs b/kvm-ioctls/src/cap.rs index 11bbe0bc..9073dc28 100644 --- a/kvm-ioctls/src/cap.rs +++ b/kvm-ioctls/src/cap.rs @@ -41,7 +41,12 @@ pub enum Cap { Iommu = KVM_CAP_IOMMU, DestroyMemoryRegionWorks = KVM_CAP_DESTROY_MEMORY_REGION_WORKS, UserNmi = KVM_CAP_USER_NMI, - #[cfg(any(target_arch = "x86_64", target_arch = "aarch64", target_arch = "s390x"))] + #[cfg(any( + target_arch = "x86_64", + target_arch = "aarch64", + target_arch = "s390x", + target_arch = "loongarch64" + ))] SetGuestDebug = KVM_CAP_SET_GUEST_DEBUG, #[cfg(target_arch = "x86_64")] ReinjectControl = KVM_CAP_REINJECT_CONTROL, diff --git a/kvm-ioctls/src/ioctls/device.rs b/kvm-ioctls/src/ioctls/device.rs index a788de3e..451397ac 100644 --- a/kvm-ioctls/src/ioctls/device.rs +++ b/kvm-ioctls/src/ioctls/device.rs @@ -57,7 +57,7 @@ impl DeviceFd { /// let kvm = Kvm::new().unwrap(); /// let vm = kvm.create_vm().unwrap(); /// - /// # #[cfg(not(target_arch = "riscv64"))] + /// # #[cfg(not(any(target_arch = "riscv64", target_arch = "loongarch64")))] /// # { /// # use kvm_bindings::{ /// # kvm_device_type_KVM_DEV_TYPE_VFIO, @@ -210,6 +210,7 @@ mod tests { #[cfg(target_arch = "aarch64")] use kvm_bindings::{KVM_DEV_VFIO_GROUP, KVM_DEV_VFIO_GROUP_ADD}; + #[cfg(not(target_arch = "loongarch64"))] use kvm_bindings::KVM_CREATE_DEVICE_TEST; #[test] @@ -409,4 +410,87 @@ mod tests { // when we initialize the AIA. assert_eq!(data, 128); } + + #[test] + #[cfg(target_arch = "loongarch64")] + fn test_create_device() { + use crate::ioctls::vm::{create_eiointc_device, create_ipi_device, create_pchpic_device}; + use kvm_bindings::{ + kvm_device_attr, KVM_DEV_LOONGARCH_EXTIOI_GRP_REGS, KVM_DEV_LOONGARCH_IPI_GRP_REGS, + KVM_DEV_LOONGARCH_PCH_PIC_GRP_REGS, + }; + use vmm_sys_util::errno::Error; + + let kvm = Kvm::new().unwrap(); + let vm = kvm.create_vm().unwrap(); + let ipi_fd = create_ipi_device(&vm, 0); + let eio_fd = create_eiointc_device(&vm, 0); + let pch_fd = create_pchpic_device(&vm, 0); + + vm.create_vcpu(0).unwrap(); + + let raw_fd = unsafe { libc::dup(ipi_fd.as_raw_fd()) }; + assert!(raw_fd >= 0); + let ipi_fd = unsafe { DeviceFd::from_raw_fd(raw_fd) }; + + let mut data: u32 = 0; + let mut ipi_attr = kvm_device_attr { + group: KVM_DEV_LOONGARCH_IPI_GRP_REGS, + attr: 4, + addr: data as u64, + ..Default::default() + }; + + // Without properly providing the address to where the + // value will be stored, the ioctl fails with EFAULT. + let res = unsafe { ipi_fd.get_device_attr(&mut ipi_attr) }; + assert_eq!(res, Err(Error::new(libc::EFAULT))); + + ipi_attr.addr = &mut data as *mut u32 as u64; + unsafe { ipi_fd.get_device_attr(&mut ipi_attr) }.unwrap(); + // The IPI enable state should be false. + assert_eq!(data, 0); + + let raw_fd = unsafe { libc::dup(eio_fd.as_raw_fd()) }; + assert!(raw_fd >= 0); + let eio_fd = unsafe { DeviceFd::from_raw_fd(raw_fd) }; + + let mut eio_attr = kvm_device_attr { + group: KVM_DEV_LOONGARCH_EXTIOI_GRP_REGS, + attr: 0x200, + addr: data as u64, + ..Default::default() + }; + + // Without properly providing the address to where the + // value will be stored, the ioctl fails with EFAULT. + let res = unsafe { eio_fd.get_device_attr(&mut eio_attr) }; + assert_eq!(res, Err(Error::new(libc::EFAULT))); + + eio_attr.addr = &mut data as *mut u32 as u64; + unsafe { eio_fd.get_device_attr(&mut eio_attr) }.unwrap(); + // The EIOINTC enable state should be false. + assert_eq!(data, 0); + + let raw_fd = unsafe { libc::dup(pch_fd.as_raw_fd()) }; + assert!(raw_fd >= 0); + let pch_fd = unsafe { DeviceFd::from_raw_fd(raw_fd) }; + + let mut pch_attr = kvm_device_attr { + group: KVM_DEV_LOONGARCH_PCH_PIC_GRP_REGS, + attr: 0x3a0, + addr: data as u64, + ..Default::default() + }; + + // Without properly providing the address to where the + // value will be stored, the ioctl fails with EFAULT. + let res = unsafe { pch_fd.get_device_attr(&mut pch_attr) }; + assert_eq!(res, Err(Error::new(libc::EFAULT))); + + pch_attr.addr = &mut data as *mut u32 as u64; + unsafe { pch_fd.get_device_attr(&mut pch_attr) }.unwrap(); + // The PCH-PIC ISR enable state should be false. + assert_eq!(data, 0); + } } diff --git a/kvm-ioctls/src/ioctls/vcpu.rs b/kvm-ioctls/src/ioctls/vcpu.rs index 144bc8bf..16ee7fe2 100644 --- a/kvm-ioctls/src/ioctls/vcpu.rs +++ b/kvm-ioctls/src/ioctls/vcpu.rs @@ -20,7 +20,11 @@ use vmm_sys_util::ioctl::{ioctl, ioctl_with_mut_ref, ioctl_with_ref}; use vmm_sys_util::ioctl::{ioctl_with_mut_ptr, ioctl_with_ptr, ioctl_with_val}; /// Helper method to obtain the size of the register through its id -#[cfg(any(target_arch = "aarch64", target_arch = "riscv64"))] +#[cfg(any( + target_arch = "aarch64", + target_arch = "riscv64", + target_arch = "loongarch64" +))] pub fn reg_size(reg_id: u64) -> usize { 2_usize.pow(((reg_id & KVM_REG_SIZE_MASK) >> KVM_REG_SIZE_SHIFT) as u32) } @@ -337,7 +341,14 @@ impl VcpuFd { /// // Get the current vCPU registers. /// let mut regs = vcpu.get_regs().unwrap(); /// // Set a new value for the Instruction Pointer. + /// # #[cfg(target_arch = "x86_64")] + /// # { /// regs.rip = 0x100; + /// # } + /// # #[cfg(target_arch = "loongarch64")] + /// # { + /// regs.pc = 0x100; + /// # } /// vcpu.set_regs(®s).unwrap(); /// ``` #[cfg(not(any(target_arch = "aarch64", target_arch = "riscv64")))] @@ -783,7 +794,8 @@ impl VcpuFd { target_arch = "x86_64", target_arch = "aarch64", target_arch = "riscv64", - target_arch = "s390x" + target_arch = "s390x", + target_arch = "loongarch64" ))] pub fn get_mp_state(&self) -> Result { let mut mp_state = Default::default(); @@ -820,7 +832,8 @@ impl VcpuFd { target_arch = "x86_64", target_arch = "aarch64", target_arch = "riscv64", - target_arch = "s390x" + target_arch = "s390x", + target_arch = "loongarch64", ))] pub fn set_mp_state(&self, mp_state: kvm_mp_state) -> Result<()> { // SAFETY: Here we trust the kernel not to read past the end of the kvm_mp_state struct. @@ -1254,7 +1267,8 @@ impl VcpuFd { target_arch = "x86_64", target_arch = "aarch64", target_arch = "s390x", - target_arch = "powerpc" + target_arch = "powerpc", + target_arch = "loongarch64" ))] pub fn set_guest_debug(&self, debug_struct: &kvm_guest_debug) -> Result<()> { // SAFETY: Safe because we allocated the structure and we trust the kernel. @@ -1279,7 +1293,11 @@ impl VcpuFd { /// /// `data` should be equal or bigger then the register size /// oterwise function will return EINVAL error - #[cfg(any(target_arch = "aarch64", target_arch = "riscv64"))] + #[cfg(any( + target_arch = "aarch64", + target_arch = "riscv64", + target_arch = "loongarch64" + ))] pub fn set_one_reg(&self, reg_id: u64, data: &[u8]) -> Result { let reg_size = reg_size(reg_id); if data.len() < reg_size { @@ -1311,7 +1329,11 @@ impl VcpuFd { /// /// `data` should be equal or bigger then the register size /// oterwise function will return EINVAL error - #[cfg(any(target_arch = "aarch64", target_arch = "riscv64"))] + #[cfg(any( + target_arch = "aarch64", + target_arch = "riscv64", + target_arch = "loongarch64" + ))] pub fn get_one_reg(&self, reg_id: u64, data: &mut [u8]) -> Result { let reg_size = reg_size(reg_id); if data.len() < reg_size { @@ -2205,7 +2227,8 @@ mod tests { target_arch = "x86_64", target_arch = "aarch64", target_arch = "riscv64", - target_arch = "s390x" + target_arch = "s390x", + target_arch = "loongarch64" ))] #[test] fn mpstate_test() { @@ -2466,6 +2489,85 @@ mod tests { } } + #[cfg(target_arch = "loongarch64")] + #[test] + fn test_run_code() { + use std::io::Write; + + let kvm = Kvm::new().unwrap(); + let vm = kvm.create_vm().unwrap(); + #[rustfmt::skip] + let code = [ + 0x04, 0x14, 0x90, 0x03, // li.w a0, 0x0405; + 0xe4, 0x02, 0x80, 0x29, // st.w a0, 0(s0); test physical memory write + 0x04, 0x03, 0x80, 0x28, // ld.w a0, 0(s1); test MMIO read + 0x05, 0x1c, 0x98, 0x03, // li.w a1, 0x0607; + 0x05, 0x03, 0x80, 0x29, // st.w a1, 0(s1); test MMIO write + 0x00, 0x00, 0x00, 0x50, // b .; shouldn't get here, but if so loop forever + ]; + + let mem_size = 0x20000; + let load_addr = mmap_anonymous(mem_size).as_ptr(); + let guest_addr: u64 = 0x10000; + let slot: u32 = 0; + let mem_region = kvm_userspace_memory_region { + slot, + guest_phys_addr: guest_addr, + memory_size: mem_size as u64, + userspace_addr: load_addr as u64, + flags: KVM_MEM_LOG_DIRTY_PAGES, + }; + unsafe { + vm.set_user_memory_region(mem_region).unwrap(); + } + + unsafe { + // Get a mutable slice of `mem_size` from `load_addr`. + // This is safe because we mapped it before. + let mut slice = std::slice::from_raw_parts_mut(load_addr, mem_size); + slice.write_all(&code).unwrap(); + } + + let mut vcpu_fd = vm.create_vcpu(0).unwrap(); + let mmio_addr: u64 = guest_addr + mem_size as u64; + let mut vcpu_regs = vcpu_fd.get_regs().unwrap(); + vcpu_regs.pc = guest_addr; + vcpu_regs.gpr[23] = guest_addr + 0x10000 as u64; + vcpu_regs.gpr[24] = mmio_addr as u64; + vcpu_fd.set_regs(&vcpu_regs).unwrap(); + + loop { + match vcpu_fd.run().expect("run failed") { + VcpuExit::MmioRead(addr, data) => { + assert_eq!(addr, mmio_addr); + assert_eq!(data.len(), 4); + data[3] = 0x0; + data[2] = 0x0; + data[1] = 0x5; + data[0] = 0x6; + } + VcpuExit::MmioWrite(addr, data) => { + assert_eq!(addr, mmio_addr); + assert_eq!(data.len(), 4); + assert_eq!(data[3], 0x0); + assert_eq!(data[2], 0x0); + assert_eq!(data[1], 0x6); + assert_eq!(data[0], 0x7); + // The code snippet dirties one page at guest_addr + 0x10000. + // The code page should not be dirty, as it's not written by the guest. + let dirty_pages_bitmap = vm.get_dirty_log(slot, mem_size).unwrap(); + let dirty_pages: u32 = dirty_pages_bitmap + .into_iter() + .map(|page| page.count_ones()) + .sum(); + assert_eq!(dirty_pages, 1); + break; + } + r => panic!("unexpected exit reason: {:?}", r), + } + } + } + #[cfg(target_arch = "x86_64")] #[test] fn test_run_code() { @@ -2597,7 +2699,8 @@ mod tests { #[cfg(any( target_arch = "x86_64", target_arch = "aarch64", - target_arch = "riscv64" + target_arch = "riscv64", + target_arch = "loongarch64" ))] fn test_faulty_vcpu_fd() { use std::os::unix::io::{FromRawFd, IntoRawFd}; @@ -2912,6 +3015,45 @@ mod tests { let _ = faulty_vcpu_fd.vcpu.into_raw_fd(); } + #[test] + #[cfg(target_arch = "loongarch64")] + fn test_faulty_vcpu_fd_loongarch64() { + use std::os::unix::io::{FromRawFd, IntoRawFd}; + + let badf_errno = libc::EBADF; + + let faulty_vcpu_fd = VcpuFd { + vcpu: unsafe { File::from_raw_fd(-2) }, + kvm_run_ptr: KvmRunWrapper { + kvm_run_ptr: mmap_anonymous(10).cast(), + mmap_size: 10, + }, + coalesced_mmio_ring: None, + }; + + let reg_id = 0x9000_0000_0004_0000; + let mut reg_data = 0u128.to_le_bytes(); + + assert_eq!( + faulty_vcpu_fd + .set_one_reg(reg_id, ®_data) + .unwrap_err() + .errno(), + badf_errno + ); + assert_eq!( + faulty_vcpu_fd + .get_one_reg(reg_id, &mut reg_data) + .unwrap_err() + .errno(), + badf_errno + ); + + // Don't drop the File object, or it'll notice the file it's trying to close is + // invalid and abort the process. + let _ = faulty_vcpu_fd.vcpu.into_raw_fd(); + } + #[test] #[cfg(target_arch = "aarch64")] fn test_get_preferred_target() { @@ -3093,6 +3235,52 @@ mod tests { vcpu.get_reg_list(&mut reg_list).unwrap(); } + #[test] + #[cfg(target_arch = "loongarch64")] + fn test_set_one_reg() { + let kvm = Kvm::new().unwrap(); + let vm = kvm.create_vm().unwrap(); + let vcpu = vm.create_vcpu(0).unwrap(); + + let data: u128 = 0; + let reg_id: u64 = 0; + + vcpu.set_one_reg(reg_id, &data.to_le_bytes()).unwrap_err(); + // Exercising KVM_SET_ONE_REG by trying to alter the data inside the + // CSR PRMD register. + // This regiseter is 64 bit wide (8 bytes). + const CSR_PRMD_REG_ID: u64 = 0x9030_0000_0001_0001; + vcpu.set_one_reg(CSR_PRMD_REG_ID, &data.to_le_bytes()) + .expect("Failed to set CSR PRMD register"); + + // Trying to set 8 byte register with 7 bytes must fail. + vcpu.set_one_reg(CSR_PRMD_REG_ID, &[0_u8; 7]).unwrap_err(); + } + + #[test] + #[cfg(target_arch = "loongarch64")] + fn test_get_one_reg() { + let kvm = Kvm::new().unwrap(); + let vm = kvm.create_vm().unwrap(); + let vcpu = vm.create_vcpu(0).unwrap(); + + const PRESET: u64 = 0x7; + let data: u128 = PRESET as u128; + const CSR_PRMD_REG_ID: u64 = 0x9030_0000_0001_0001; + vcpu.set_one_reg(CSR_PRMD_REG_ID, &data.to_le_bytes()) + .expect("Failed to set CSR PRMD register"); + + let mut bytes = [0_u8; 16]; + vcpu.get_one_reg(CSR_PRMD_REG_ID, &mut bytes) + .expect("Failed to get CSR PRMD register"); + let data = u128::from_le_bytes(bytes); + assert_eq!(data, PRESET as u128); + + // Trying to get 8 byte register with 7 bytes must fail. + vcpu.get_one_reg(CSR_PRMD_REG_ID, &mut [0_u8; 7]) + .unwrap_err(); + } + #[test] fn test_get_kvm_run() { let kvm = Kvm::new().unwrap(); diff --git a/kvm-ioctls/src/ioctls/vm.rs b/kvm-ioctls/src/ioctls/vm.rs index c5cec2ff..c97c274c 100644 --- a/kvm-ioctls/src/ioctls/vm.rs +++ b/kvm-ioctls/src/ioctls/vm.rs @@ -573,7 +573,8 @@ impl VmFd { #[cfg(any( target_arch = "x86_64", target_arch = "aarch64", - target_arch = "riscv64" + target_arch = "riscv64", + target_arch = "loongarch64" ))] pub fn signal_msi(&self, msi: kvm_msi) -> Result { // SAFETY: Safe because we allocated the structure and we know the kernel @@ -622,13 +623,22 @@ impl VmFd { /// }) /// .expect("Cannot create KVM vAIA device."); /// + /// #[cfg(target_arch = "loongarch64")] + /// vm.create_device(&mut kvm_bindings::kvm_create_device { + /// type_: kvm_bindings::kvm_device_type_KVM_DEV_TYPE_LOONGARCH_EIOINTC, + /// fd: 0, + /// flags: 0, + /// }) + /// .expect("Cannot create KVM EIOINTC device."); + /// /// let irq_routing = kvm_irq_routing::default(); /// vm.set_gsi_routing(&irq_routing).unwrap(); /// ``` #[cfg(any( target_arch = "x86_64", target_arch = "aarch64", - target_arch = "riscv64" + target_arch = "riscv64", + target_arch = "loongarch64" ))] pub fn set_gsi_routing(&self, irq_routing: &kvm_irq_routing) -> Result<()> { // SAFETY: Safe because we allocated the structure and we know the kernel @@ -811,7 +821,7 @@ impl VmFd { /// # let vm = kvm.create_vm().unwrap(); /// // This example is based on https://lwn.net/Articles/658511/. /// let mem_size = 0x4000; - /// let guest_addr: u64 = 0x1000; + /// let guest_addr: u64 = 0x4000; /// let load_addr: *mut u8 = unsafe { /// libc::mmap( /// null_mut(), @@ -851,6 +861,13 @@ impl VmFd { /// 0x23, 0x20, 0x75, 0x00, // sw t2, a0; trigger MMIO exit /// 0x6f, 0x00, 0x00, 0x00, // j .;shouldn't get here, but if so loop forever /// ]; + /// #[cfg(target_arch = "loongarch64")] + /// let asm_code = [ + /// 0x0d, 0x00, 0x00, 0x18, // pcaddi t1, 0; -> t1 + /// 0xae, 0x1d, 0x80, 0x29, // st.w t2, t1, 7; dirty current page + /// 0x8e, 0x00, 0x80, 0x29, // st.w t2, a0, 0; trigger MMIO exit + /// 0x00, 0x00, 0x00, 0x50, // b .;shouldn't get here, but if so loop forever + /// ]; /// /// // Write the code in the guest memory. This will generate a dirty page. /// unsafe { @@ -898,6 +915,14 @@ impl VmFd { /// vcpu_fd.set_one_reg(core_reg_base + 10, &mmio_addr.to_le_bytes()); // set A0 /// } /// + /// #[cfg(target_arch = "loongarch64")] + /// { + /// let mut vcpu_regs = vcpu_fd.get_regs().unwrap(); + /// vcpu_regs.pc = guest_addr; + /// vcpu_regs.gpr[4] = guest_addr + mem_size as u64; + /// vcpu_fd.set_regs(&vcpu_regs).unwrap(); + /// } + /// /// loop { /// match vcpu_fd.run().expect("run failed") { /// VcpuExit::MmioWrite(addr, data) => { @@ -975,7 +1000,8 @@ impl VmFd { #[cfg(any( target_arch = "x86_64", target_arch = "aarch64", - target_arch = "riscv64" + target_arch = "riscv64", + target_arch = "loongarch64" ))] pub fn register_irqfd(&self, fd: &EventFd, gsi: u32) -> Result<()> { let irqfd = kvm_irqfd { @@ -1026,7 +1052,8 @@ impl VmFd { #[cfg(any( target_arch = "x86_64", target_arch = "aarch64", - target_arch = "riscv64" + target_arch = "riscv64", + target_arch = "loongarch64" ))] pub fn register_irqfd_with_resample( &self, @@ -1084,7 +1111,8 @@ impl VmFd { #[cfg(any( target_arch = "x86_64", target_arch = "aarch64", - target_arch = "riscv64" + target_arch = "riscv64", + target_arch = "loongarch64" ))] pub fn unregister_irqfd(&self, fd: &EventFd, gsi: u32) -> Result<()> { let irqfd = kvm_irqfd { @@ -1154,7 +1182,8 @@ impl VmFd { #[cfg(any( target_arch = "x86_64", target_arch = "aarch64", - target_arch = "riscv64" + target_arch = "riscv64", + target_arch = "loongarch64" ))] pub fn set_irq_line(&self, irq: u32, active: bool) -> Result<()> { let mut irq_level = kvm_irq_level::default(); @@ -1280,6 +1309,8 @@ impl VmFd { /// type_: kvm_device_type_KVM_DEV_TYPE_ARM_VGIC_V3, /// #[cfg(target_arch = "riscv64")] /// type_: kvm_device_type_KVM_DEV_TYPE_RISCV_AIA, + /// #[cfg(target_arch = "loongarch64")] + /// type_: kvm_bindings::kvm_device_type_KVM_DEV_TYPE_LOONGARCH_IPI, /// fd: 0, /// flags: KVM_CREATE_DEVICE_TEST, /// }; @@ -1296,6 +1327,8 @@ impl VmFd { /// } /// #[cfg(target_arch = "riscv64")] /// panic!("Cannot create vAIA device."); + /// #[cfg(target_arch = "loongarch64")] + /// panic!("Cannot create IPI device."); /// }); /// ``` pub fn create_device(&self, device: &mut kvm_create_device) -> Result { @@ -2040,6 +2073,60 @@ pub(crate) fn request_aia_init(vaia: &DeviceFd) { vaia.set_device_attr(&vaia_attr).unwrap(); } +/// Create a dummy IPI device. +/// +/// # Arguments +/// +/// * `vm` - The vm file descriptor. +/// * `flags` - Flags to be passed to `KVM_CREATE_DEVICE`. +#[cfg(test)] +#[cfg(target_arch = "loongarch64")] +pub(crate) fn create_ipi_device(vm: &VmFd, flags: u32) -> DeviceFd { + let mut ipi_device = kvm_create_device { + type_: kvm_device_type_KVM_DEV_TYPE_LOONGARCH_IPI, + fd: 0, + flags, + }; + vm.create_device(&mut ipi_device) + .expect("Cannot create KVM IPI device") +} + +/// Create a dummy EIOINTC device. +/// +/// # Arguments +/// +/// * `vm` - The vm file descriptor. +/// * `flags` - Flags to be passed to `KVM_CREATE_DEVICE`. +#[cfg(test)] +#[cfg(target_arch = "loongarch64")] +pub(crate) fn create_eiointc_device(vm: &VmFd, flags: u32) -> DeviceFd { + let mut eiointc_device = kvm_create_device { + type_: kvm_device_type_KVM_DEV_TYPE_LOONGARCH_EIOINTC, + fd: 0, + flags, + }; + vm.create_device(&mut eiointc_device) + .expect("Cannot create KVM EIOINTC device") +} + +/// Create a dummy PCHPIC device. +/// +/// # Arguments +/// +/// * `vm` - The vm file descriptor. +/// * `flags` - Flags to be passed to `KVM_CREATE_DEVICE`. +#[cfg(test)] +#[cfg(target_arch = "loongarch64")] +pub(crate) fn create_pchpic_device(vm: &VmFd, flags: u32) -> DeviceFd { + let mut pchpic_device = kvm_create_device { + type_: kvm_device_type_KVM_DEV_TYPE_LOONGARCH_PCHPIC, + fd: 0, + flags, + }; + vm.create_device(&mut pchpic_device) + .expect("Cannot create KVM PCHPIC device") +} + #[cfg(test)] mod tests { #![allow(clippy::undocumented_unsafe_blocks)] @@ -2410,6 +2497,36 @@ mod tests { vm_fd.unregister_irqfd(&evtfd3, 5).unwrap(); } + #[test] + #[cfg(target_arch = "loongarch64")] + fn test_register_unregister_irqfd() { + let kvm = Kvm::new().unwrap(); + let vm_fd = kvm.create_vm().unwrap(); + let evtfd1 = EventFd::new(EFD_NONBLOCK).unwrap(); + let evtfd2 = EventFd::new(EFD_NONBLOCK).unwrap(); + let evtfd3 = EventFd::new(EFD_NONBLOCK).unwrap(); + + // Create the interrupt devices. + create_ipi_device(&vm_fd, 0); + create_eiointc_device(&vm_fd, 0); + create_pchpic_device(&vm_fd, 0); + vm_fd.create_vcpu(0).unwrap(); + + vm_fd.register_irqfd(&evtfd1, 4).unwrap(); + vm_fd.register_irqfd(&evtfd2, 8).unwrap(); + vm_fd.register_irqfd(&evtfd3, 4).unwrap(); + vm_fd.unregister_irqfd(&evtfd2, 8).unwrap(); + // KVM irqfd doesn't report failure on this case:( + vm_fd.unregister_irqfd(&evtfd2, 8).unwrap(); + + // Duplicated eventfd registration. + // On loongarch64 this fails as the event fd was already matched with a GSI. + vm_fd.register_irqfd(&evtfd3, 4).unwrap_err(); + vm_fd.register_irqfd(&evtfd3, 5).unwrap_err(); + // KVM irqfd doesn't report failure on this case:( + vm_fd.unregister_irqfd(&evtfd3, 5).unwrap(); + } + #[test] #[cfg(target_arch = "x86_64")] fn test_set_irq_line() { @@ -2497,6 +2614,23 @@ mod tests { vm_fd.set_irq_line(7, true).unwrap(); } + #[test] + #[cfg(target_arch = "loongarch64")] + fn test_set_irq_line() { + let kvm = Kvm::new().unwrap(); + let vm_fd = kvm.create_vm().unwrap(); + vm_fd.create_vcpu(0).unwrap(); + + // Create the interrupt devices. + create_ipi_device(&vm_fd, 0); + create_eiointc_device(&vm_fd, 0); + create_pchpic_device(&vm_fd, 0); + + vm_fd.set_irq_line(7, true).unwrap(); + vm_fd.set_irq_line(7, false).unwrap(); + vm_fd.set_irq_line(7, true).unwrap(); + } + #[test] #[cfg(target_arch = "x86_64")] fn test_faulty_vm_fd() { @@ -2616,7 +2750,8 @@ mod tests { #[cfg(any( target_arch = "x86_64", target_arch = "aarch64", - target_arch = "riscv64" + target_arch = "riscv64", + target_arch = "loongarch64" ))] fn test_signal_msi_failure() { let kvm = Kvm::new().unwrap(); @@ -2626,7 +2761,11 @@ mod tests { } #[test] - #[cfg(not(any(target_arch = "aarch64", target_arch = "riscv64")))] + #[cfg(not(any( + target_arch = "aarch64", + target_arch = "riscv64", + target_arch = "loongarch64" + )))] fn test_enable_cap_failure() { let kvm = Kvm::new().unwrap(); let vm = kvm.create_vm().unwrap(); @@ -2664,7 +2803,8 @@ mod tests { #[cfg(any( target_arch = "x86_64", target_arch = "aarch64", - target_arch = "riscv64" + target_arch = "riscv64", + target_arch = "loongarch64" ))] fn test_set_gsi_routing() { let kvm = Kvm::new().unwrap(); @@ -2682,6 +2822,11 @@ mod tests { #[cfg(target_arch = "riscv64")] create_aia_device(&vm, 0); + // LoongArch 64-bit expect an EIOINTC device to be created in advance of + // committing irq_routing table. + #[cfg(target_arch = "loongarch64")] + create_eiointc_device(&vm, 0); + vm.set_gsi_routing(&irq_routing).unwrap(); } diff --git a/kvm-ioctls/src/kvm_ioctls.rs b/kvm-ioctls/src/kvm_ioctls.rs index 0388c724..ea2f6b44 100644 --- a/kvm-ioctls/src/kvm_ioctls.rs +++ b/kvm-ioctls/src/kvm_ioctls.rs @@ -58,7 +58,8 @@ ioctl_io_nr!(KVM_CREATE_IRQCHIP, KVMIO, 0x60); #[cfg(any( target_arch = "x86_64", target_arch = "aarch64", - target_arch = "riscv64" + target_arch = "riscv64", + target_arch = "loongarch64" ))] ioctl_iow_nr!(KVM_IRQ_LINE, KVMIO, 0x61, kvm_irq_level); /* Available with KVM_CAP_COALESCED_MMIO / KVM_CAP_COALESCED_PIO */ @@ -79,7 +80,8 @@ ioctl_iow_nr!( #[cfg(any( target_arch = "x86_64", target_arch = "aarch64", - target_arch = "riscv64" + target_arch = "riscv64", + target_arch = "loongarch64" ))] ioctl_iow_nr!(KVM_SET_GSI_ROUTING, KVMIO, 0x6a, kvm_irq_routing); /* Available with KVM_CAP_IRQFD */ @@ -87,7 +89,8 @@ ioctl_iow_nr!(KVM_SET_GSI_ROUTING, KVMIO, 0x6a, kvm_irq_routing); target_arch = "x86_64", target_arch = "aarch64", target_arch = "riscv64", - target_arch = "s390x" + target_arch = "s390x", + target_arch = "loongarch64" ))] ioctl_iow_nr!(KVM_IRQFD, KVMIO, 0x76, kvm_irqfd); /* Available with KVM_CAP_PIT2 */ @@ -169,7 +172,8 @@ ioctl_iowr_nr!(KVM_GET_CPUID2, KVMIO, 0x91, kvm_cpuid2); target_arch = "x86_64", target_arch = "aarch64", target_arch = "riscv64", - target_arch = "s390x" + target_arch = "s390x", + target_arch = "loongarch64" ))] ioctl_ior_nr!(KVM_GET_MP_STATE, KVMIO, 0x98, kvm_mp_state); /* Available with KVM_CAP_MP_STATE */ @@ -177,7 +181,8 @@ ioctl_ior_nr!(KVM_GET_MP_STATE, KVMIO, 0x98, kvm_mp_state); target_arch = "x86_64", target_arch = "aarch64", target_arch = "riscv64", - target_arch = "s390x" + target_arch = "s390x", + target_arch = "loongarch64" ))] ioctl_iow_nr!(KVM_SET_MP_STATE, KVMIO, 0x99, kvm_mp_state); /* Available with KVM_CAP_USER_NMI */ @@ -225,13 +230,22 @@ ioctl_iow_nr!(KVM_ENABLE_CAP, KVMIO, 0xa3, kvm_enable_cap); #[cfg(any( target_arch = "x86_64", target_arch = "aarch64", - target_arch = "riscv64" + target_arch = "riscv64", + target_arch = "loongarch64" ))] ioctl_iow_nr!(KVM_SIGNAL_MSI, KVMIO, 0xa5, kvm_msi); /* Available with KVM_CAP_ONE_REG */ -#[cfg(any(target_arch = "aarch64", target_arch = "riscv64"))] +#[cfg(any( + target_arch = "aarch64", + target_arch = "riscv64", + target_arch = "loongarch64" +))] ioctl_iow_nr!(KVM_GET_ONE_REG, KVMIO, 0xab, kvm_one_reg); -#[cfg(any(target_arch = "aarch64", target_arch = "riscv64"))] +#[cfg(any( + target_arch = "aarch64", + target_arch = "riscv64", + target_arch = "loongarch64" +))] ioctl_iow_nr!(KVM_SET_ONE_REG, KVMIO, 0xac, kvm_one_reg); #[cfg(target_arch = "aarch64")] ioctl_iow_nr!(KVM_ARM_VCPU_INIT, KVMIO, 0xae, kvm_vcpu_init); diff --git a/kvm-ioctls/src/lib.rs b/kvm-ioctls/src/lib.rs index 278e21b7..a78b7f58 100644 --- a/kvm-ioctls/src/lib.rs +++ b/kvm-ioctls/src/lib.rs @@ -69,7 +69,7 @@ //! use kvm_bindings::KVM_MEM_LOG_DIRTY_PAGES; //! //! let mem_size = 0x4000; -//! let guest_addr = 0x1000; +//! let guest_addr = 0x4000; //! let asm_code: &[u8]; //! //! // Setting up architectural dependent values. @@ -106,6 +106,15 @@ //! 0x6f, 0x00, 0x00, 0x00, // j .;shouldn't get here, but if so loop forever //! ]; //! } +//! #[cfg(target_arch = "loongarch64")] +//! { +//! asm_code = &[ +//! 0x0d, 0x00, 0x00, 0x18, // pcaddi t1, 0; -> t1 +//! 0xae, 0x1d, 0x80, 0x29, // st.w t2, t1, 7; dirty current page +//! 0x8e, 0x00, 0x80, 0x29, // st.w t2, a0, 0; trigger MMIO exit +//! 0x00, 0x00, 0x00, 0x50, // b .;shouldn't get here, but if so loop forever +//! ]; +//! } //! //! // 1. Instantiate KVM. //! let kvm = Kvm::new().unwrap(); @@ -189,6 +198,14 @@ //! vcpu_fd.set_one_reg(core_reg_base + 10, &mmio_addr.to_le_bytes()); //! } //! +//! #[cfg(target_arch = "loongarch64")] +//! { +//! let mut vcpu_regs = vcpu_fd.get_regs().unwrap(); +//! vcpu_regs.pc = guest_addr; +//! vcpu_regs.gpr[4] = guest_addr + mem_size as u64; +//! vcpu_fd.set_regs(&vcpu_regs).unwrap(); +//! } +//! //! // 6. Run code on the vCPU. //! loop { //! match vcpu_fd.run().expect("run failed") { @@ -219,7 +236,11 @@ //! // Since on aarch64 there is not halt instruction, //! // we break immediately after the last known instruction //! // of the asm code example so that we avoid an infinite loop. -//! #[cfg(any(target_arch = "aarch64", target_arch = "riscv64"))] +//! #[cfg(any( +//! target_arch = "aarch64", +//! target_arch = "riscv64", +//! target_arch = "loongarch64" +//! ))] //! break; //! } //! VcpuExit::Hlt => {