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 824e205 commit e4c0ab4Copy full SHA for e4c0ab4
kvm-bindings/CHANGELOG.md
@@ -5,6 +5,8 @@
5
6
### Changed
7
8
+- Updated KVM_MAX_CPUID_ENTRIES to 256.
9
+
10
### Removed
11
12
## [0.10.0]
kvm-bindings/src/x86_64/fam_wrappers.rs
@@ -8,7 +8,7 @@ use x86_64::bindings::*;
/// Maximum number of CPUID entries that can be returned by a call to KVM ioctls.
///
/// See arch/x86/include/asm/kvm_host.h
-pub const KVM_MAX_CPUID_ENTRIES: usize = 80;
+pub const KVM_MAX_CPUID_ENTRIES: usize = 256;
13
/// Maximum number of MSRs KVM supports (See arch/x86/kvm/x86.c).
14
pub const KVM_MAX_MSR_ENTRIES: usize = 256;
0 commit comments