kvm: mmu: page_track: Fix RCU list API usage
authorMadhuparna Bhowmik <madhuparnabhowmik10@gmail.com>
Sun, 12 Jul 2020 13:10:03 +0000 (18:40 +0530)
committerPaul E. McKenney <paulmck@kernel.org>
Tue, 25 Aug 2020 01:36:23 +0000 (18:36 -0700)
commitdf9a30fd1f70a757df193acd7396622eee23e527
tree01430941a1caf102c13e3aa3d8ccffa0c9808446
parentae2212a7216b674633bdc3bd2e24947a0665efb8
kvm: mmu: page_track: Fix RCU list API usage

Use hlist_for_each_entry_srcu() instead of hlist_for_each_entry_rcu()
as it also checkes if the right lock is held.
Using hlist_for_each_entry_rcu() with a condition argument will not
report the cases where a SRCU protected list is traversed using
rcu_read_lock(). Hence, use hlist_for_each_entry_srcu().

Signed-off-by: Madhuparna Bhowmik <madhuparnabhowmik10@gmail.com>
Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Cc: <kvm@vger.kernel.org>
arch/x86/kvm/mmu/page_track.c