All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC PATCH] KVM: arm64: don't single-step for non-emulated faults
@ 2018-11-07 17:10 ` Alex Bennée
  0 siblings, 0 replies; 32+ messages in thread
From: Alex Bennée @ 2018-11-07 17:10 UTC (permalink / raw)
  To: kvm, linux-arm-kernel, kvmarm, christoffer.dall, marc.zyngier
  Cc: Alex Bennée, Christoffer Dall, Catalin Marinas, Will Deacon,
	open list

Not all faults handled by handle_exit are instruction emulations. For
example a ESR_ELx_EC_IABT will result in the page tables being updated
but the instruction that triggered the fault hasn't actually executed
yet. We use the simple heuristic of checking for a changed PC before
seeing if kvm_arm_handle_step_debug wants to claim we stepped an
instruction.

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
 arch/arm64/kvm/handle_exit.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/arch/arm64/kvm/handle_exit.c b/arch/arm64/kvm/handle_exit.c
index e5e741bfffe1..b8252e72f882 100644
--- a/arch/arm64/kvm/handle_exit.c
+++ b/arch/arm64/kvm/handle_exit.c
@@ -214,6 +214,7 @@ static exit_handle_fn kvm_get_exit_handler(struct kvm_vcpu *vcpu)
 static int handle_trap_exceptions(struct kvm_vcpu *vcpu, struct kvm_run *run)
 {
 	int handled;
+        unsigned long old_pc = *vcpu_pc(vcpu);
 
 	/*
 	 * See ARM ARM B1.14.1: "Hyp traps on instructions
@@ -233,7 +234,8 @@ static int handle_trap_exceptions(struct kvm_vcpu *vcpu, struct kvm_run *run)
 	 * kvm_arm_handle_step_debug() sets the exit_reason on the kvm_run
 	 * structure if we need to return to userspace.
 	 */
-	if (handled > 0 && kvm_arm_handle_step_debug(vcpu, run))
+	if (handled > 0 && *vcpu_pc(vcpu) != old_pc &&
+	    kvm_arm_handle_step_debug(vcpu, run))
 		handled = 0;
 
 	return handled;
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 32+ messages in thread

end of thread, other threads:[~2018-11-09 13:30 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-11-07 17:10 [RFC PATCH] KVM: arm64: don't single-step for non-emulated faults Alex Bennée
2018-11-07 17:10 ` Alex Bennée
2018-11-07 17:10 ` Alex Bennée
2018-11-07 17:39 ` Peter Maydell
2018-11-07 17:39   ` Peter Maydell
2018-11-07 17:53   ` Peter Maydell
2018-11-07 17:53     ` Peter Maydell
2018-11-08 12:26     ` Alex Bennée
2018-11-08 12:26       ` Alex Bennée
2018-11-07 18:01 ` Mark Rutland
2018-11-07 18:01   ` Mark Rutland
2018-11-07 18:08   ` Mark Rutland
2018-11-07 18:08     ` Mark Rutland
2018-11-07 18:08     ` Mark Rutland
2018-11-08 12:40     ` Alex Bennée
2018-11-08 12:40       ` Alex Bennée
2018-11-08 13:51       ` Mark Rutland
2018-11-08 13:51         ` Mark Rutland
2018-11-08 14:28         ` Alex Bennée
2018-11-08 14:28           ` Alex Bennée
2018-11-08 14:38           ` Peter Maydell
2018-11-08 14:38             ` Peter Maydell
2018-11-09 11:56             ` Mark Rutland
2018-11-09 11:56               ` Mark Rutland
2018-11-09 12:24               ` Alex Bennée
2018-11-09 12:24                 ` Alex Bennée
2018-11-09 12:49                 ` Mark Rutland
2018-11-09 12:49                   ` Mark Rutland
2018-11-09 12:56                   ` Peter Maydell
2018-11-09 12:56                     ` Peter Maydell
2018-11-09 13:29                     ` Mark Rutland
2018-11-09 13:29                       ` Mark Rutland

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.