We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 998887e commit 645fe6fCopy full SHA for 645fe6f
CHANGELOG.md
@@ -5,6 +5,8 @@
5
## Changed
6
- [[#234](https://github.com/rust-vmm/kvm-ioctls/issues/234)] vcpu: export
7
reg_size as a public method.
8
+- [[#239](https://github.com/rust-vmm/kvm-ioctls/pull/239)] cap: add KvmCapStealTime
9
+capability.
10
11
# v0.15.0
12
src/cap.rs
@@ -162,4 +162,6 @@ pub enum Cap {
162
ArmPtrAuthAddress = KVM_CAP_ARM_PTRAUTH_ADDRESS,
163
#[cfg(any(target_arch = "arm", target_arch = "aarch64"))]
164
ArmPtrAuthGeneric = KVM_CAP_ARM_PTRAUTH_GENERIC,
165
+ #[cfg(any(target_arch = "aarch64", target_arch = "x86_64"))]
166
+ StealTime = KVM_CAP_STEAL_TIME,
167
}
0 commit comments