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.
2 parents bc3b7cb + 8c0590a commit 935f965Copy full SHA for 935f965
kvm-ioctls/CHANGELOG.md
@@ -6,6 +6,7 @@
6
7
- Added support for `KVM_HAS_DEVICE_ATTR` and `KVM_SET_DEVICE_ATTR` vm ioctl
8
on aarch64.
9
+- Plumb through KVM_CAP_X2APIC_API as X2ApicApi cap.
10
11
## v0.23.0
12
kvm-ioctls/src/cap.rs
@@ -167,4 +167,6 @@ pub enum Cap {
167
MemoryAttributes = KVM_CAP_MEMORY_ATTRIBUTES,
168
#[cfg(target_arch = "x86_64")]
169
NestedState = KVM_CAP_NESTED_STATE,
170
+ #[cfg(target_arch = "x86_64")]
171
+ X2ApicApi = KVM_CAP_X2APIC_API,
172
}
0 commit comments