From: Suraj Jitindar Singh <sjitindarsingh@gmail.com>
To: David Gibson <david@gibson.dropbear.id.au>
Cc: qemu-ppc@nongnu.org, agraf@suse.de, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] target/ppc: Only set PCR in kvm if actually in a compat mode
Date: Mon, 03 Jul 2017 13:18:38 +1000 [thread overview]
Message-ID: <1499051918.2398.1.camel@gmail.com> (raw)
In-Reply-To: <20170630040317.GA13989@umbus.fritz.box>
On Fri, 2017-06-30 at 14:03 +1000, David Gibson wrote:
> On Thu, Jun 29, 2017 at 02:59:39PM +1000, Suraj Jitindar Singh wrote:
> > The Processor Compatibility Register (PCR) I used to set the
> > compatibility mode of the processor using the SET_ONE_REG ioctl on
> > KVM_REG_PPC_ARCH_COMPAT. Previously this was only called when a
> > compat
> > mode was actually in use, however a recent patch made it
> > unconditional.
> > Calling this in KVM_PR fails as there is no handler for that call
> > and it
> > is thus impossible to start a machine with KVM_PR.
> >
> > Change ppc_set_compat() so that the ioctl is only actually called
> > if a
> > compat mode is in use. This means that a KVM_PR guest can boot.
> > Additionally the current behaviour for KVM_HV is preserved where a
> > compat
> > mode of 0 set pcr and arch_compat in the vcore struct to zero, both
> > of
> > which are initialised to zero anyway.
> >
> > Fixes: 37f516defa2e ("pseries: Reset CPU compatibility mode")
> >
> > Signed-off-by: Suraj Jitindar Singh <sjitindarsingh@gmail.com>
>
> This doesn't seem quite right. With this change, how would we ever
> turn compatibility mode _off_ (which could happen on reset if nothing
Oh yeah, didn't really think about that.
> else). Really we should add this pseudo-register to KVM PR, although
> I'm fine with also having a qemu workaround to let it work with older
> PR versions.
How do you feel about having a check and only calling the ioctl if the
KVM in use is HV?
>
> >
> > ---
> >
> > Based on: dwg/ppc-for-2.10
> >
> > target/ppc/compat.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/target/ppc/compat.c b/target/ppc/compat.c
> > index f1b67fa..4482206 100644
> > --- a/target/ppc/compat.c
> > +++ b/target/ppc/compat.c
> > @@ -143,7 +143,7 @@ void ppc_set_compat(PowerPCCPU *cpu, uint32_t
> > compat_pvr, Error **errp)
> > cpu->compat_pvr = compat_pvr;
> > env->spr[SPR_PCR] = pcr & pcc->pcr_mask;
> >
> > - if (kvm_enabled()) {
> > + if (kvm_enabled() && compat_pvr) {
> > int ret = kvmppc_set_compat(cpu, cpu->compat_pvr);
> > if (ret < 0) {
> > error_setg_errno(errp, -ret,
>
>
next prev parent reply other threads:[~2017-07-03 3:18 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-29 4:59 [Qemu-devel] [PATCH] target/ppc: Only set PCR in kvm if actually in a compat mode Suraj Jitindar Singh
2017-06-30 4:03 ` David Gibson
2017-07-03 3:18 ` Suraj Jitindar Singh [this message]
2017-07-03 9:20 ` David Gibson
2017-07-12 6:45 ` Suraj Jitindar Singh
2017-07-13 1:21 ` David Gibson
2017-08-03 17:28 ` [Qemu-devel] [Qemu-ppc] " Greg Kurz
2017-08-04 2:35 ` David Gibson
2017-08-07 9:00 ` Greg Kurz
2017-08-08 6:21 ` David Gibson
2017-08-08 9:21 ` Greg Kurz
2017-07-06 23:49 ` [Qemu-devel] " no-reply
2017-07-07 0:03 ` Fam Zheng
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=1499051918.2398.1.camel@gmail.com \
--to=sjitindarsingh@gmail.com \
--cc=agraf@suse.de \
--cc=david@gibson.dropbear.id.au \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.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 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.