diff options
Diffstat (limited to 'arch/x86/kvm/cpuid.h')
| -rw-r--r-- | arch/x86/kvm/cpuid.h | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/x86/kvm/cpuid.h b/arch/x86/kvm/cpuid.h index a10e4601685..58fc5148882 100644 --- a/arch/x86/kvm/cpuid.h +++ b/arch/x86/kvm/cpuid.h @@ -24,6 +24,9 @@ static inline bool guest_cpuid_has_xsave(struct kvm_vcpu *vcpu)  {  	struct kvm_cpuid_entry2 *best; +	if (!static_cpu_has(X86_FEATURE_XSAVE)) +		return 0; +  	best = kvm_find_cpuid_entry(vcpu, 1, 0);  	return best && (best->ecx & bit(X86_FEATURE_XSAVE));  }  |