]> git.baikalelectronics.ru Git - kernel.git/commit
selftests: KVM: Fix check for !POLLIN in demand_paging_test
authorOliver Upton <oupton@google.com>
Tue, 21 Sep 2021 17:11:20 +0000 (17:11 +0000)
committerPaolo Bonzini <pbonzini@redhat.com>
Wed, 22 Sep 2021 14:33:08 +0000 (10:33 -0400)
commit3c6771e05fdc48fc8d9e9d306821fbc7855a3c9b
treedb5e92b83387c4f8cf6a4ddd87c9580923eeb78d
parent59bb6dabaf0b531ad2ef292d75b54487cc0f0131
selftests: KVM: Fix check for !POLLIN in demand_paging_test

The logical not operator applies only to the left hand side of a bitwise
operator. As such, the check for POLLIN not being set in revents wrong.
Fix it by adding parentheses around the bitwise expression.

Fixes: e4ff92617a06 ("KVM: selftests: Add demand paging content to the demand paging test")
Reviewed-by: Andrew Jones <drjones@redhat.com>
Signed-off-by: Oliver Upton <oupton@google.com>
Message-Id: <20210921171121.2148982-2-oupton@google.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
tools/testing/selftests/kvm/demand_paging_test.c