From mboxrd@z Thu Jan 1 00:00:00 1970 From: Fabiano Rosas Date: Mon, 13 May 2019 18:14:09 +0000 Subject: Re: KVM: Book3S PR: unbreaking software breakpoints Message-Id: <87zhnq1atq.fsf@linux.ibm.com> List-Id: References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: kvm-ppc@vger.kernel.org Mark Cave-Ayland writes: > For comparison both booke.c and e500_emulate.c set debug.arch.status = 0 for software > breakpoints, whereas both book3s_hv.c and book3s_pr.c do not. Given that emulate.c > contains shared code for handling software breakpoints, would the following simple > patch suffice? > > > diff --git a/arch/powerpc/kvm/emulate.c b/arch/powerpc/kvm/emulate.c > index 9f5b8c01c4e1..e77becaad5dd 100644 > --- a/arch/powerpc/kvm/emulate.c > +++ b/arch/powerpc/kvm/emulate.c > @@ -282,6 +282,7 @@ int kvmppc_emulate_instruction(struct kvm_run *run, struct > kvm_vcpu *vcpu) > */ > if (inst = KVMPPC_INST_SW_BREAKPOINT) { > run->exit_reason = KVM_EXIT_DEBUG; > + run->debug.arch.status = 0; > run->debug.arch.address = kvmppc_get_pc(vcpu); > emulated = EMULATE_EXIT_USER; > advance = 0; This looks reasonable to me. > > > ATB, > > Mark.