OSDN Git Service

KVM: x86/mmu: Fix RCU usage in handle_removed_tdp_mmu_page
authorBen Gardon <bgardon@google.com>
Mon, 15 Mar 2021 23:38:00 +0000 (16:38 -0700)
committerPaolo Bonzini <pbonzini@redhat.com>
Tue, 16 Mar 2021 18:14:59 +0000 (14:14 -0400)
commit70fb3e41a97a5fecc0aedc9a429479d702c3ab66
treec3ce4eb0ec0285287493b9ce648050e44f5976b9
parent1e28eed17697bcf343c6743f0028cc3b5dd88bf0
KVM: x86/mmu: Fix RCU usage in handle_removed_tdp_mmu_page

The pt passed into handle_removed_tdp_mmu_page does not need RCU
protection, as it is not at any risk of being freed by another thread at
that point. However, the implicit cast from tdp_sptep_t to u64 * dropped
the __rcu annotation without a proper rcu_derefrence. Fix this by
passing the pt as a tdp_ptep_t and then rcu_dereferencing it in
the function.

Suggested-by: Sean Christopherson <seanjc@google.com>
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Ben Gardon <bgardon@google.com>
Message-Id: <20210315233803.2706477-2-bgardon@google.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
arch/x86/kvm/mmu/tdp_mmu.c