All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] x86: Correct translation of some rdgsbase and wrgsbase encodings
@ 2017-09-28 17:17 Todd Eisenberger
  2017-09-28 17:20 ` Richard Henderson
  2017-09-29 19:43 ` Eduardo Habkost
  0 siblings, 2 replies; 4+ messages in thread
From: Todd Eisenberger @ 2017-09-28 17:17 UTC (permalink / raw)
  To: qemu-devel; +Cc: pbonzini, rth, ehabkost

It looks like there was a transcription error when writing this code
initially.  The code previously only decoded src or dst of rax.  This
resolves
https://bugs.launchpad.net/qemu/+bug/1719984.

Signed-off-by: Todd Eisenberger <teisenbe@google.com>
---
 target/i386/translate.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/target/i386/translate.c b/target/i386/translate.c
index a8986f4c1a..7b920115f9 100644
--- a/target/i386/translate.c
+++ b/target/i386/translate.c
@@ -8155,9 +8155,9 @@ static target_ulong disas_insn(DisasContext *s,
CPUState *cpu)
             break;

         case 0xc0 ... 0xc7: /* rdfsbase (f3 0f ae /0) */
-        case 0xc8 ... 0xc8: /* rdgsbase (f3 0f ae /1) */
+        case 0xc8 ... 0xcf: /* rdgsbase (f3 0f ae /1) */
         case 0xd0 ... 0xd7: /* wrfsbase (f3 0f ae /2) */
-        case 0xd8 ... 0xd8: /* wrgsbase (f3 0f ae /3) */
+        case 0xd8 ... 0xdf: /* wrgsbase (f3 0f ae /3) */
             if (CODE64(s)
                 && (prefixes & PREFIX_REPZ)
                 && !(prefixes & PREFIX_LOCK)

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

* Re: [Qemu-devel] [PATCH] x86: Correct translation of some rdgsbase and wrgsbase encodings
  2017-09-28 17:17 [Qemu-devel] [PATCH] x86: Correct translation of some rdgsbase and wrgsbase encodings Todd Eisenberger
@ 2017-09-28 17:20 ` Richard Henderson
  2017-09-29 19:43 ` Eduardo Habkost
  1 sibling, 0 replies; 4+ messages in thread
From: Richard Henderson @ 2017-09-28 17:20 UTC (permalink / raw)
  To: Todd Eisenberger, qemu-devel; +Cc: pbonzini, ehabkost

On 09/28/2017 10:17 AM, Todd Eisenberger wrote:
> It looks like there was a transcription error when writing this code
> initially.  The code previously only decoded src or dst of rax.  This
> resolves
> https://bugs.launchpad.net/qemu/+bug/1719984.
> 
> Signed-off-by: Todd Eisenberger <teisenbe@google.com>
> ---
>  target/i386/translate.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>


r~

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

* Re: [Qemu-devel] [PATCH] x86: Correct translation of some rdgsbase and wrgsbase encodings
  2017-09-28 17:17 [Qemu-devel] [PATCH] x86: Correct translation of some rdgsbase and wrgsbase encodings Todd Eisenberger
  2017-09-28 17:20 ` Richard Henderson
@ 2017-09-29 19:43 ` Eduardo Habkost
  2017-09-29 20:28   ` Todd Eisenberger
  1 sibling, 1 reply; 4+ messages in thread
From: Eduardo Habkost @ 2017-09-29 19:43 UTC (permalink / raw)
  To: Todd Eisenberger; +Cc: qemu-devel, pbonzini, rth

On Thu, Sep 28, 2017 at 10:17:06AM -0700, Todd Eisenberger via Qemu-devel wrote:
> It looks like there was a transcription error when writing this code
> initially.  The code previously only decoded src or dst of rax.  This
> resolves
> https://bugs.launchpad.net/qemu/+bug/1719984.
> 
> Signed-off-by: Todd Eisenberger <teisenbe@google.com>
> ---
>  target/i386/translate.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/target/i386/translate.c b/target/i386/translate.c
> index a8986f4c1a..7b920115f9 100644
> --- a/target/i386/translate.c
> +++ b/target/i386/translate.c
> @@ -8155,9 +8155,9 @@ static target_ulong disas_insn(DisasContext *s,
> CPUState *cpu)

The patch is corrupted due to line wrapping.  I recommend using
git-send-email to avoid that.

I'm queueing it on x86-next after fixing it manually.


>              break;
> 
>          case 0xc0 ... 0xc7: /* rdfsbase (f3 0f ae /0) */
> -        case 0xc8 ... 0xc8: /* rdgsbase (f3 0f ae /1) */
> +        case 0xc8 ... 0xcf: /* rdgsbase (f3 0f ae /1) */
>          case 0xd0 ... 0xd7: /* wrfsbase (f3 0f ae /2) */
> -        case 0xd8 ... 0xd8: /* wrgsbase (f3 0f ae /3) */
> +        case 0xd8 ... 0xdf: /* wrgsbase (f3 0f ae /3) */
>              if (CODE64(s)
>                  && (prefixes & PREFIX_REPZ)
>                  && !(prefixes & PREFIX_LOCK)
> 

-- 
Eduardo

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

* Re: [Qemu-devel] [PATCH] x86: Correct translation of some rdgsbase and wrgsbase encodings
  2017-09-29 19:43 ` Eduardo Habkost
@ 2017-09-29 20:28   ` Todd Eisenberger
  0 siblings, 0 replies; 4+ messages in thread
From: Todd Eisenberger @ 2017-09-29 20:28 UTC (permalink / raw)
  To: Eduardo Habkost; +Cc: qemu-devel, pbonzini, rth

Ah, sorry for that trouble.  I'll look into setting up git-send-email next
time I need to send a patch out.

On Fri, Sep 29, 2017 at 12:43 PM, Eduardo Habkost <ehabkost@redhat.com>
wrote:

> On Thu, Sep 28, 2017 at 10:17:06AM -0700, Todd Eisenberger via Qemu-devel
> wrote:
> > It looks like there was a transcription error when writing this code
> > initially.  The code previously only decoded src or dst of rax.  This
> > resolves
> > https://bugs.launchpad.net/qemu/+bug/1719984.
> >
> > Signed-off-by: Todd Eisenberger <teisenbe@google.com>
> > ---
> >  target/i386/translate.c | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/target/i386/translate.c b/target/i386/translate.c
> > index a8986f4c1a..7b920115f9 100644
> > --- a/target/i386/translate.c
> > +++ b/target/i386/translate.c
> > @@ -8155,9 +8155,9 @@ static target_ulong disas_insn(DisasContext *s,
> > CPUState *cpu)
>
> The patch is corrupted due to line wrapping.  I recommend using
> git-send-email to avoid that.
>
> I'm queueing it on x86-next after fixing it manually.
>
>
> >              break;
> >
> >          case 0xc0 ... 0xc7: /* rdfsbase (f3 0f ae /0) */
> > -        case 0xc8 ... 0xc8: /* rdgsbase (f3 0f ae /1) */
> > +        case 0xc8 ... 0xcf: /* rdgsbase (f3 0f ae /1) */
> >          case 0xd0 ... 0xd7: /* wrfsbase (f3 0f ae /2) */
> > -        case 0xd8 ... 0xd8: /* wrgsbase (f3 0f ae /3) */
> > +        case 0xd8 ... 0xdf: /* wrgsbase (f3 0f ae /3) */
> >              if (CODE64(s)
> >                  && (prefixes & PREFIX_REPZ)
> >                  && !(prefixes & PREFIX_LOCK)
> >
>
> --
> Eduardo
>

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

end of thread, other threads:[~2017-09-29 20:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-09-28 17:17 [Qemu-devel] [PATCH] x86: Correct translation of some rdgsbase and wrgsbase encodings Todd Eisenberger
2017-09-28 17:20 ` Richard Henderson
2017-09-29 19:43 ` Eduardo Habkost
2017-09-29 20:28   ` Todd Eisenberger

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.