@@ -191,7 +191,7 @@ static bool kvm_pgtable_walk_continue(const struct kvm_pgtable_walker *walker,
* Callbacks can also return ENOENT when PTE which is visited is not
* valid.
*
- * In the context of a fault handler interpret these as a signal
+ * In the context of a shared walker interpret these as a signal
* to retry guest execution.
*
* Ignore these return codes altogether for walkers outside a fault
@@ -199,7 +199,7 @@ static bool kvm_pgtable_walk_continue(const struct kvm_pgtable_walker *walker,
* with the page table walk.
*/
if (r == -EAGAIN || r == -ENOENT)
- return !(walker->flags & KVM_PGTABLE_WALK_HANDLE_FAULT);
+ return !(walker->flags & KVM_PGTABLE_WALK_SHARED);
return !r;
}
Check against shared page table walker flag instead of fault handler flag when determining if walk should continue or not. vCPU page fault handlers uses shared page walker and there are no other shared page walkers in Arm. This will change in future commit when clear-dirty-log will use shared page walker and continue, retry or terminate logic for a walk will change between shared page walkers. Signed-off-by: Vipin Sharma <vipinsh@google.com> --- arch/arm64/kvm/hyp/pgtable.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)