qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Alex Bennée" <alex.bennee@linaro.org>
To: Janne Grunau <j@jannau.net>
Cc: Peter Maydell <peter.maydell@linaro.org>, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 1/1] linux-user: AArch64: Fix exclusive store of the zero register
Date: Tue, 18 Feb 2014 17:26:17 +0000	[thread overview]
Message-ID: <87k3csxrgm.fsf@linaro.org> (raw)
In-Reply-To: <1392742003-7380-1-git-send-email-j@jannau.net>


j@jannau.net writes:

> Signed-off-by: Janne Grunau <j@jannau.net>
> ---
>  linux-user/main.c | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/linux-user/main.c b/linux-user/main.c
> index cabc9e1..9192977 100644
> --- a/linux-user/main.c
> +++ b/linux-user/main.c
> @@ -953,7 +953,8 @@ static int do_strex_a64(CPUARMState *env)
>              goto finish;
>          }
>      }
> -    val = env->xregs[rt];
> +    /* handle the zero register */
> +    val = rt == 31 ? 0 : env->xregs[rt];
>      switch (size) {
>      case 0:
>          segv = put_user_u8(val, addr);
> @@ -972,7 +973,8 @@ static int do_strex_a64(CPUARMState *env)
>          goto error;
>      }
>      if (is_pair) {
> -        val = env->xregs[rt2];
> +        /* handle the zero register */
> +        val = rt2 == 31 ? 0 : env->xregs[rt2];
>          if (size == 2) {
>              segv = put_user_u32(val, addr + 4);
>          } else {

Looks good to me. I'll have a scan through the other helpers to see if
we've missed any other similar thinkos.

Reviewed-by: Alex Bennée <alex.bennee@linaro.org>


-- 
Alex Bennée

      parent reply	other threads:[~2014-02-18 17:26 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-02-18 16:46 [Qemu-devel] [PATCH 1/1] linux-user: AArch64: Fix exclusive store of the zero register Janne Grunau
2014-02-18 16:48 ` Peter Maydell
2014-02-18 17:26 ` Alex Bennée [this message]

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=87k3csxrgm.fsf@linaro.org \
    --to=alex.bennee@linaro.org \
    --cc=j@jannau.net \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@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 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).