OSDN Git Service

KVM: x86: avoid warning with -Wbitwise-instead-of-logical
authorPaolo Bonzini <pbonzini@redhat.com>
Fri, 15 Oct 2021 08:50:01 +0000 (04:50 -0400)
committerPaolo Bonzini <pbonzini@redhat.com>
Mon, 18 Oct 2021 18:43:42 +0000 (14:43 -0400)
commit3d5e7a28b1ea2d603dea478e58e37ce75b9597ab
tree261a30d325064273ac6f4b1e4037b31c6f95c66f
parenta25c78d04c1b2b37476c1fe6f5604eb173657399
KVM: x86: avoid warning with -Wbitwise-instead-of-logical

This is a new warning in clang top-of-tree (will be clang 14):

In file included from arch/x86/kvm/mmu/mmu.c:27:
arch/x86/kvm/mmu/spte.h:318:9: error: use of bitwise '|' with boolean operands [-Werror,-Wbitwise-instead-of-logical]
        return __is_bad_mt_xwr(rsvd_check, spte) |
               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                                                 ||
arch/x86/kvm/mmu/spte.h:318:9: note: cast one or both operands to int to silence this warning

The code is fine, but change it anyway to shut up this clever clogs
of a compiler.

Reported-by: torvic9@mailbox.org
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
arch/x86/kvm/mmu/spte.h