diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2015-07-23 08:22:45 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2015-07-23 08:22:45 +0200 |
commit | 41dbc6bcd9722bba8f09256655d060af30c63d34 (patch) | |
tree | 3de1f317633917da3fd57e98406eb73f42458dbc /arch/x86/kvm/x86.h | |
parent | KVM: MTRR: simplify kvm_mtrr_get_guest_memory_type (diff) | |
download | linux-41dbc6bcd9722bba8f09256655d060af30c63d34.tar.xz linux-41dbc6bcd9722bba8f09256655d060af30c63d34.zip |
KVM: x86: introduce kvm_check_has_quirk
The logic of the disabled_quirks field usually results in a double
negation. Wrap it in a simple function that checks the bit and
negates it.
Based on a patch from Xiao Guangrong.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to '')
-rw-r--r-- | arch/x86/kvm/x86.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/x86/kvm/x86.h b/arch/x86/kvm/x86.h index edc8cdcd786b..0ca2f3e4803c 100644 --- a/arch/x86/kvm/x86.h +++ b/arch/x86/kvm/x86.h @@ -147,6 +147,11 @@ static inline void kvm_register_writel(struct kvm_vcpu *vcpu, return kvm_register_write(vcpu, reg, val); } +static inline bool kvm_check_has_quirk(struct kvm *kvm, u64 quirk) +{ + return !(kvm->arch.disabled_quirks & quirk); +} + void kvm_before_handle_nmi(struct kvm_vcpu *vcpu); void kvm_after_handle_nmi(struct kvm_vcpu *vcpu); void kvm_set_pending_timer(struct kvm_vcpu *vcpu); |