diff options
author | Avi Kivity <avi@redhat.com> | 2010-05-04 12:24:12 +0300 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2010-08-01 10:35:27 +0300 |
commit | c332c83ae736c72dcf072e96e98a774fce39e722 (patch) | |
tree | f06830d88cbb3392c473c99871cc54a436f956a5 /arch/x86/kvm/vmx.c | |
parent | bf998156d24bcb127318ad5bf531ac3bdfcd6449 (diff) |
KVM: VMX: Simplify vmx_get_nmi_mask()
!! is not needed due to the cast to bool.
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86/kvm/vmx.c')
-rw-r--r-- | arch/x86/kvm/vmx.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c index ee03679efe7..64252075796 100644 --- a/arch/x86/kvm/vmx.c +++ b/arch/x86/kvm/vmx.c @@ -2826,9 +2826,7 @@ static bool vmx_get_nmi_mask(struct kvm_vcpu *vcpu) { if (!cpu_has_virtual_nmis()) return to_vmx(vcpu)->soft_vnmi_blocked; - else - return !!(vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & - GUEST_INTR_STATE_NMI); + return vmcs_read32(GUEST_INTERRUPTIBILITY_INFO) & GUEST_INTR_STATE_NMI; } static void vmx_set_nmi_mask(struct kvm_vcpu *vcpu, bool masked) |