Message ID | 20210715103945.95004-1-likexu@tencent.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | target/i386/cpu: Use the KVM reported value for the number of ASIDs | expand |
diff --git a/target/i386/cpu.c b/target/i386/cpu.c index 48b55ebd0a..959c4425a4 100644 --- a/target/i386/cpu.c +++ b/target/i386/cpu.c @@ -5523,7 +5523,13 @@ void cpu_x86_cpuid(CPUX86State *env, uint32_t index, uint32_t count, case 0x8000000A: if (env->features[FEAT_8000_0001_ECX] & CPUID_EXT3_SVM) { *eax = 0x00000001; /* SVM Revision */ - *ebx = 0x00000010; /* nr of ASIDs */ + /* nr of ASIDs */ + if (kvm_enabled()) { + *ebx = kvm_arch_get_supported_cpuid(cs->kvm_state, + 0x8000000A, 0, R_EBX); + } else { + *ebx = 0x00000010; + } *ecx = 0; *edx = env->features[FEAT_SVM]; /* optional features */ } else {