linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
From: David Hildenbrand <dahi@linux.vnet.ibm.com>
To: Christian Borntraeger <borntraeger@de.ibm.com>
Cc: peter.maydell@linaro.org,
	"Tony Krowiak" <akrowiak@linux.vnet.ibm.com>,
	kvm@vger.kernel.org, "Alexey Kardashevskiy" <aik@ozlabs.ru>,
	"Heiko Carstens" <heiko.carstens@de.ibm.com>,
	"Bharat Bhushan" <Bharat.Bhushan@freescale.com>,
	"Paul Mackerras" <paulus@samba.org>,
	"H. Peter Anvin" <hpa@zytor.com>,
	kvmarm@lists.cs.columbia.edu,
	"open list: S390" <linux-s390@vger.kernel.org>,
	"Michael Mueller" <mimu@linux.vnet.ibm.com>,
	"Nadav Amit" <namit@cs.technion.ac.il>,
	"maintainer:X86 ARCHITECTURE..." <x86@kernel.org>,
	agraf@suse.de, "Gleb Natapov" <gleb@kernel.org>,
	"Ingo Molnar" <mingo@redhat.com>,
	zhichao.huang@linaro.org, jan.kiszka@siemens.com,
	"Mihai Caraman" <mihai.caraman@freescale.com>,
	bp@suse.de, drjones@redhat.com,
	"Jason J. Herne" <jjherne@linux.vnet.ibm.com>,
	marc.zyngier@arm.com, r65777@freescale.com, pbonzini@redhat.com,
	"Cornelia Huck" <cornelia.huck@de.ibm.com>,
	"Thomas Gleixner" <tglx@linutronix.de>,
	"Alex Bennée" <alex.bennee@linaro.org>,
	linux-arm-kernel@lists.infradead.org,
	"Eric Farman" <farman@linux.vnet.ibm.com>,
	"open list: ABI/API" <linux-api@vger.kernel.org>,
	"open list" <linux-kernel@vger.kernel.org>,
	"Dominik Dingel" <dingel@linux.vnet.ibm.com>,
	"Martin Schwidefsky" <schwidefsky@de.ibm.com>,
	"supporter:S390" <linux390@de.ibm.com>,
	"open list:LINUX FOR POWERPC..." <linuxppc-dev@lists.ozlabs.org>,
	christoffer.dall@linaro.org
Subject: Re: [PATCH v4 02/12] KVM: define common KVM_GUESTDBG_USE_SW/HW_BP bits
Date: Fri, 15 May 2015 19:33:15 +0200	[thread overview]
Message-ID: <20150515193315.6d3e82d2@thinkpad-w530> (raw)
In-Reply-To: <555613F2.9060204@de.ibm.com>

> Am 15.05.2015 um 16:27 schrieb Alex Benn=C3=A9e:
> > +++ b/arch/s390/include/uapi/asm/kvm.h
> > @@ -114,8 +114,6 @@ struct kvm_fpu {
> >  	__u64 fprs[16];
> >  };
> >=20
> > -#define KVM_GUESTDBG_USE_HW_BP		0x00010000
> [...]
> > +++ b/include/uapi/linux/kvm.h
> [...]
> > +#define KVM_GUESTDBG_USE_SW_BP		(1 << 16)
> > +#define KVM_GUESTDBG_USE_HW_BP		(1 << 17)
>=20
> This is an ABI break for s390, no?
>=20
> David, do you remember why we do not use KVM_GUESTDBG_USE_SW_BP?
>=20

We never had to tell the kernel about software breakpoints as this is all
handled via 4 byte DIAG instructions until now. We don't have to turn this
mechanism on. QEMU can directly insert the desired DIAG instructions and ge=
ts
notified when they are about to get executed.

(But we still have 2 byte breakpoint support todo - still tbd how exactly t=
his
will be realized - could be turned on via such a mechanism)

The problem is, that these bits are arch specific, now Alex wants to unify
them for all archs.

So yes, this is an ABI break for us and breaks hardware breakpoints.(I think
the first version of this patch didn't contain this ABI break when I had a =
look)

I wonder if it wouldn't make more sense to

- introduce new bits in the arch-unspecific section
- rework the existing implementers to accept both bits

Or to simply leave stuff as it is and handle it via arch specific bits.

David

  reply	other threads:[~2015-05-15 17:33 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <1431700035-23479-1-git-send-email-alex.bennee@linaro.org>
2015-05-15 14:27 ` [PATCH v4 02/12] KVM: define common KVM_GUESTDBG_USE_SW/HW_BP bits Alex Bennée
2015-05-15 15:42   ` Christian Borntraeger
2015-05-15 17:33     ` David Hildenbrand [this message]
2015-05-15 17:46       ` Jan Kiszka
2015-05-15 15:58   ` Christian Borntraeger

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20150515193315.6d3e82d2@thinkpad-w530 \
    --to=dahi@linux.vnet.ibm.com \
    --cc=Bharat.Bhushan@freescale.com \
    --cc=agraf@suse.de \
    --cc=aik@ozlabs.ru \
    --cc=akrowiak@linux.vnet.ibm.com \
    --cc=alex.bennee@linaro.org \
    --cc=borntraeger@de.ibm.com \
    --cc=bp@suse.de \
    --cc=christoffer.dall@linaro.org \
    --cc=cornelia.huck@de.ibm.com \
    --cc=dingel@linux.vnet.ibm.com \
    --cc=drjones@redhat.com \
    --cc=farman@linux.vnet.ibm.com \
    --cc=gleb@kernel.org \
    --cc=heiko.carstens@de.ibm.com \
    --cc=hpa@zytor.com \
    --cc=jan.kiszka@siemens.com \
    --cc=jjherne@linux.vnet.ibm.com \
    --cc=kvm@vger.kernel.org \
    --cc=kvmarm@lists.cs.columbia.edu \
    --cc=linux-api@vger.kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-s390@vger.kernel.org \
    --cc=linux390@de.ibm.com \
    --cc=linuxppc-dev@lists.ozlabs.org \
    --cc=marc.zyngier@arm.com \
    --cc=mihai.caraman@freescale.com \
    --cc=mimu@linux.vnet.ibm.com \
    --cc=mingo@redhat.com \
    --cc=namit@cs.technion.ac.il \
    --cc=paulus@samba.org \
    --cc=pbonzini@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=r65777@freescale.com \
    --cc=schwidefsky@de.ibm.com \
    --cc=tglx@linutronix.de \
    --cc=x86@kernel.org \
    --cc=zhichao.huang@linaro.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).