We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58b9a4a commit 23a3bb0Copy full SHA for 23a3bb0
CHANGELOG.md
@@ -3,6 +3,8 @@
3
## Added
4
- [[#219](https://github.com/rust-vmm/kvm-ioctls/pull/219)] Support for
5
`KVM_GET_MSR_FEATURE_INDEX_LIST` and `KVM_GET_MSRS` system ioctls.
6
+- [[#221](https://github.com/rust-vmm/kvm-ioctls/pull/221)] Add
7
+ `Cap::ArmPmuV3`.
8
9
# v0.13.0
10
src/cap.rs
@@ -139,6 +139,7 @@ pub enum Cap {
139
S390UserSigp = KVM_CAP_S390_USER_SIGP,
140
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
141
SplitIrqchip = KVM_CAP_SPLIT_IRQCHIP,
142
+ ArmPmuV3 = KVM_CAP_ARM_PMU_V3,
143
ImmediateExit = KVM_CAP_IMMEDIATE_EXIT,
144
ArmVmIPASize = KVM_CAP_ARM_VM_IPA_SIZE,
145
MsiDevid = KVM_CAP_MSI_DEVID,
0 commit comments