From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45652) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b96sr-00013C-B7 for qemu-devel@nongnu.org; Sat, 04 Jun 2016 04:24:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b96sm-0004eI-8i for qemu-devel@nongnu.org; Sat, 04 Jun 2016 04:24:41 -0400 References: <1464955880-10176-1-git-send-email-clg@kaod.org> <1464955880-10176-4-git-send-email-clg@kaod.org> From: Thomas Huth Message-ID: <5752903C.3040704@redhat.com> Date: Sat, 4 Jun 2016 10:24:28 +0200 MIME-Version: 1.0 In-Reply-To: <1464955880-10176-4-git-send-email-clg@kaod.org> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH 3/3] ppc: fix hrfid, tlbia and slbia privilege List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?UTF-8?Q?C=c3=a9dric_Le_Goater?= , David Gibson Cc: qemu-ppc@nongnu.org, Mark Cave-Ayland , qemu-devel@nongnu.org On 03.06.2016 14:11, C=C3=A9dric Le Goater wrote: > commit 74693da98894 ('ppc: tlbie, tlbia and tlbisync are HV only') > introduced some extra checks on the instruction privilege. slbia was > changed wrongly and hrfid, tlbia were forgotten. >=20 > Signed-off-by: C=C3=A9dric Le Goater > --- > target-ppc/translate.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) >=20 > diff --git a/target-ppc/translate.c b/target-ppc/translate.c > index ad262523abca..776343170a53 100644 > --- a/target-ppc/translate.c > +++ b/target-ppc/translate.c > @@ -4108,7 +4108,7 @@ static void gen_hrfid(DisasContext *ctx) > gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); > #else > /* Restore CPU state */ > - if (unlikely(!ctx->hv)) { > + if (unlikely(ctx->pr || !ctx->hv)) { > gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); > return; > } > @@ -4845,7 +4845,7 @@ static void gen_tlbia(DisasContext *ctx) > #if defined(CONFIG_USER_ONLY) > gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); > #else > - if (unlikely(ctx->pr)) { > + if (unlikely(ctx->pr || !ctx->hv)) { > gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); > return; > } > @@ -4913,7 +4913,7 @@ static void gen_slbia(DisasContext *ctx) > #if defined(CONFIG_USER_ONLY) > gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); > #else > - if (unlikely(ctx->pr || !ctx->hv)) { > + if (unlikely(ctx->pr)) { > gen_inval_exception(ctx, POWERPC_EXCP_PRIV_OPC); > return; > } I just double-checked the PowerISA 2.07, and you're right, hrfid and tlbia are hypervisor-privileged, slbia is only "normal" privileged. Reviewed-by: Thomas Huth