From: "Edgar E. Iglesias" <edgar.iglesias@xilinx.com>
To: Alistair Francis <alistair.francis@xilinx.com>
Cc: qemu-devel@nongnu.org, peter.maydell@linaro.org,
alistair23@gmail.com, edgar.iglesias@gmail.com,
qemu-arm@nongnu.org
Subject: Re: [Qemu-devel] [PATCH v1 3/3] target/arm: Correct exclusive store cmpxchg memop mask
Date: Sat, 12 Aug 2017 13:36:45 +0200 [thread overview]
Message-ID: <20170812113645.GW12347@toto> (raw)
In-Reply-To: <bc18dddca56e8c2ea4a3def48d33ceb5d21d1fff.1502488636.git.alistair.francis@xilinx.com>
On Fri, Aug 11, 2017 at 03:17:41PM -0700, Alistair Francis wrote:
> When we perform the atomic_cmpxchg operation we want to perform the
> operation on a pair of 32-bit registers. Previously we were just passing
> the register size in which was set to MO_32. This would result in the
> high register to be ignored. To fix this issue we hardcode the size to
> be 64-bits long when operating on 32-bit pairs.
Good catch Alistair!
Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
>
> Signed-off-by: Alistair Francis <alistair.francis@xilinx.com>
> ---
>
> This was caught with an internal fuzzy tester. These patches fix the
> Xilinx 2.10-rc2 tree. I tested with the fuzzy tester (single CPU) and
> Linux boot (4 CPUs) on the Xilinx tree. I don't have a good test case to
> run on mainline, but am working with some internal teams to get one.
> Also linux-user is fully untested.
>
> All tests were with MTTCG enabled.
>
> target/arm/translate-a64.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/target/arm/translate-a64.c b/target/arm/translate-a64.c
> index 245175e2f1..49b4d6918d 100644
> --- a/target/arm/translate-a64.c
> +++ b/target/arm/translate-a64.c
> @@ -1913,7 +1913,7 @@ static void gen_store_exclusive(DisasContext *s, int rd, int rt, int rt2,
> tcg_gen_concat32_i64(val, cpu_exclusive_val, cpu_exclusive_high);
> tcg_gen_atomic_cmpxchg_i64(tmp, addr, val, tmp,
> get_mem_index(s),
> - size | MO_ALIGN | s->be_data);
> + MO_64 | MO_ALIGN | s->be_data);
> tcg_gen_setcond_i64(TCG_COND_NE, tmp, tmp, val);
> tcg_temp_free_i64(val);
> } else if (s->be_data == MO_LE) {
> --
> 2.11.0
>
next prev parent reply other threads:[~2017-08-12 11:37 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-08-11 22:17 [Qemu-devel] [PATCH v1 0/3] Fixup exclusive store logic Alistair Francis
2017-08-11 22:17 ` [Qemu-devel] [PATCH v1 1/3] target/arm: Update the memops for exclusive load Alistair Francis
2017-08-12 11:38 ` Edgar E. Iglesias
2017-08-11 22:17 ` [Qemu-devel] [PATCH v1 2/3] tcg/tcg-op: Expose the tcg_gen_ext_i* functions Alistair Francis
2017-08-12 11:39 ` Edgar E. Iglesias
2017-08-11 22:17 ` [Qemu-devel] [PATCH v1 3/3] target/arm: Correct exclusive store cmpxchg memop mask Alistair Francis
2017-08-12 11:36 ` Edgar E. Iglesias [this message]
2017-08-12 15:01 ` Richard Henderson
2017-08-11 23:21 ` [Qemu-devel] [PATCH v1 0/3] Fixup exclusive store logic Alistair Francis
2017-08-11 23:22 ` Alistair Francis
2017-08-11 23:31 ` Portia Stephens
2017-08-12 10:24 ` Peter Maydell
2017-08-12 11:42 ` Edgar E. Iglesias
2017-08-12 13:52 ` Alistair Francis
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=20170812113645.GW12347@toto \
--to=edgar.iglesias@xilinx.com \
--cc=alistair.francis@xilinx.com \
--cc=alistair23@gmail.com \
--cc=edgar.iglesias@gmail.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-arm@nongnu.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).