From: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
To: Akira Yokosawa <akiyks@gmail.com>
Cc: perfbook@vger.kernel.org
Subject: Re: [PATCH] memorder: Silence compiler warnings in litmus tests
Date: Mon, 4 Sep 2017 09:58:27 -0700 [thread overview]
Message-ID: <20170904165827.GH15437@linux.vnet.ibm.com> (raw)
In-Reply-To: <937d7bee-b3dd-831a-98a5-c0dcab3996b3@gmail.com>
On Tue, Sep 05, 2017 at 12:05:37AM +0900, Akira Yokosawa wrote:
> >From 410b1edcf1255563371b9b9bc8b54f10b3125090 Mon Sep 17 00:00:00 2001
> From: Akira Yokosawa <akiyks@gmail.com>
> Date: Mon, 4 Sep 2017 23:35:06 +0900
> Subject: [PATCH] memorder: Silence compiler warnings in litmus tests
>
> Silence warnings from gcc:
>
> C-MP+o-r+o-ctrl-o.c:
> warning: 'r3' may be used uninitialized in this function
> [-Wmaybe-uninitialized]
> C-W+RWC+o-mb-o+a-o+o-mb-o.c, C-W+RWC+o-r+a-o+o-mb-o.c:
> warning: assignment makes pointer from integer without a cast
> [-Wint-conversion]
> C-W+RWC+o-mb-o+a-o+o-mb-o.c, C-W+RWC+o-r+a-o+o-mb-o.c:
> warning: cast from pointer to integer of different size
> [-Wpointer-to-int-cast]
>
> Signed-off-by: Akira Yokosawa <akiyks@gmail.com>
Good catches, fixed, thank you!
I am clearly going to have train myself to scroll up beyond the
final-state histogram, aren't I?
Thanx, Paul
> ---
> CodeSamples/advsync/herd/C-MP+o-r+o-ctrl-o.litmus | 2 +-
> CodeSamples/advsync/herd/C-W+RWC+o-mb-o+a-o+o-mb-o.litmus | 6 +++---
> CodeSamples/advsync/herd/C-W+RWC+o-r+a-o+o-mb-o.litmus | 6 +++---
> memorder/memorder.tex | 14 +++++++-------
> 4 files changed, 14 insertions(+), 14 deletions(-)
>
> diff --git a/CodeSamples/advsync/herd/C-MP+o-r+o-ctrl-o.litmus b/CodeSamples/advsync/herd/C-MP+o-r+o-ctrl-o.litmus
> index fe44072..82cf629 100644
> --- a/CodeSamples/advsync/herd/C-MP+o-r+o-ctrl-o.litmus
> +++ b/CodeSamples/advsync/herd/C-MP+o-r+o-ctrl-o.litmus
> @@ -16,7 +16,7 @@ P0(int* x0, int* x1) {
>
> P1(int* x0, int* x1) {
> int r2;
> - int r3;
> + int r3 = 0;
>
> r2 = READ_ONCE(*x1);
> if (r2 >= 0)
> diff --git a/CodeSamples/advsync/herd/C-W+RWC+o-mb-o+a-o+o-mb-o.litmus b/CodeSamples/advsync/herd/C-W+RWC+o-mb-o+a-o+o-mb-o.litmus
> index 1e0f1b7..23050e6 100644
> --- a/CodeSamples/advsync/herd/C-W+RWC+o-mb-o+a-o+o-mb-o.litmus
> +++ b/CodeSamples/advsync/herd/C-W+RWC+o-mb-o+a-o+o-mb-o.litmus
> @@ -19,8 +19,8 @@ P0(int *x, int *y)
>
> P1(int *y, int *z)
> {
> - int *r1;
> - int *r2;
> + int r1;
> + int r2;
>
> r1 = smp_load_acquire(y);
> r2 = READ_ONCE(*z);
> @@ -28,7 +28,7 @@ P1(int *y, int *z)
>
> P2(int *z, int *x)
> {
> - int *r3;
> + int r3;
>
> WRITE_ONCE(*z, 1);
> smp_mb();
> diff --git a/CodeSamples/advsync/herd/C-W+RWC+o-r+a-o+o-mb-o.litmus b/CodeSamples/advsync/herd/C-W+RWC+o-r+a-o+o-mb-o.litmus
> index a71f1ac..527b373 100644
> --- a/CodeSamples/advsync/herd/C-W+RWC+o-r+a-o+o-mb-o.litmus
> +++ b/CodeSamples/advsync/herd/C-W+RWC+o-r+a-o+o-mb-o.litmus
> @@ -18,8 +18,8 @@ P0(int *x, int *y)
>
> P1(int *y, int *z)
> {
> - int *r1;
> - int *r2;
> + int r1;
> + int r2;
>
> r1 = smp_load_acquire(y);
> r2 = READ_ONCE(*z);
> @@ -27,7 +27,7 @@ P1(int *y, int *z)
>
> P2(int *z, int *x)
> {
> - int *r3;
> + int r3;
>
> WRITE_ONCE(*z, 1);
> smp_mb();
> diff --git a/memorder/memorder.tex b/memorder/memorder.tex
> index 624f9a8..151af4e 100644
> --- a/memorder/memorder.tex
> +++ b/memorder/memorder.tex
> @@ -1567,7 +1567,7 @@ P0(int* x0, int* x1) {
>
> P1(int* x0, int* x1) {
> int r2;
> - int r3;
> + int r3 = 0;
>
> r2 = READ_ONCE(*x1);
> if (r2 >= 0)
> @@ -2162,8 +2162,8 @@ P0(int *x, int *y)
>
> P1(int *y, int *z)
> {
> - int *r1;
> - int *r2;
> + int r1;
> + int r2;
>
> r1 = smp_load_acquire(y);
> r2 = READ_ONCE(*z);
> @@ -2171,7 +2171,7 @@ P1(int *y, int *z)
>
> P2(int *z, int *x)
> {
> - int *r3;
> + int r3;
>
> WRITE_ONCE(*z, 1);
> smp_mb();
> @@ -2258,8 +2258,8 @@ P0(int *x, int *y)
>
> P1(int *y, int *z)
> {
> - int *r1;
> - int *r2;
> + int r1;
> + int r2;
>
> r1 = smp_load_acquire(y);
> r2 = READ_ONCE(*z);
> @@ -2267,7 +2267,7 @@ P1(int *y, int *z)
>
> P2(int *z, int *x)
> {
> - int *r3;
> + int r3;
>
> WRITE_ONCE(*z, 1);
> smp_mb();
> --
> 2.7.4
>
--
To unsubscribe from this list: send the line "unsubscribe perfbook" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at https://urldefense.proofpoint.com/v2/url?u=http-3A__vger.kernel.org_majordomo-2Dinfo.html&d=DwIBAg&c=jf_iaSHvJObTbx-siA1ZOg&r=ux41CW3B5BSVxDMRNRWyLbUmPebZc70Kq4AkfdiRGMI&m=buSAKCmyVChRbvIbC5pqfrs3MK6aPbJv2midOUInLkY&s=S8ysDKR7FYGRxmPSL7QpBhmGXmJeIFCz8LL7uOlscv0&e=
next prev parent reply other threads:[~2017-09-04 16:58 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-04 15:05 [PATCH] memorder: Silence compiler warnings in litmus tests Akira Yokosawa
2017-09-04 16:58 ` Paul E. McKenney [this message]
2017-09-04 22:35 ` Akira Yokosawa
2017-09-06 2:33 ` Paul E. McKenney
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=20170904165827.GH15437@linux.vnet.ibm.com \
--to=paulmck@linux.vnet.ibm.com \
--cc=akiyks@gmail.com \
--cc=perfbook@vger.kernel.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.