From: Cyril Hrubis <chrubis@suse.cz>
To: ltp@lists.linux.it
Subject: [LTP] [PATCH V2 1/2] libs: sigwait: Fix compilation warning around sigprocmask()
Date: Tue, 28 Jul 2020 15:02:15 +0200 [thread overview]
Message-ID: <20200728130215.GA15351@yuki.lan> (raw)
In-Reply-To: <53c9ed8dc17ea6fa0b46502cd1c724a3a8539c8c.1595842740.git.viresh.kumar@linaro.org>
Hi!
> sigwait.c: In function ???test_masked_matching???:
> sigwait.c:157:42: warning: passing argument 3 to restrict-qualified parameter aliases with argument 2 [-Wrestrict]
> 157 | TEST(sigprocmask(SIG_SETMASK, &oldmask, &oldmask));
>
> Fix these by using different pointers for new and old masks.
>
> Reported-by: Petr Vorel <pvorel@suse.cz>
> Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
> ---
> V2: New patch
>
> libs/libltpsigwait/sigwait.c | 14 +++++++-------
> 1 file changed, 7 insertions(+), 7 deletions(-)
>
> diff --git a/libs/libltpsigwait/sigwait.c b/libs/libltpsigwait/sigwait.c
> index dbd33a61f2b1..0a34e6cc3deb 100644
> --- a/libs/libltpsigwait/sigwait.c
> +++ b/libs/libltpsigwait/sigwait.c
> @@ -156,11 +156,11 @@ void test_masked_matching(swi_func sigwaitinfo, int signo,
> && si.si_code == SI_USER
> && si.si_signo == signo, "Struct siginfo mismatch");
>
> - TEST(sigprocmask(SIG_SETMASK, &oldmask, &oldmask));
> + TEST(sigprocmask(SIG_SETMASK, &sigs, &oldmask));
> if (TST_RET == -1)
> tst_brk(TBROK | TTERRNO, "restoring original signal mask failed");
It says "restoring the original signal mask" so shouldn't that be
sigprocmask(SIG_SETMASK, &oldmask, &sigs) ?
> - if (sigismember(&oldmask, signo))
> + if (sigismember(&sigs, signo))
> tst_res(TPASS, "sigwaitinfo restored the original mask");
> else
> tst_res(TFAIL,
> @@ -214,11 +214,11 @@ void test_masked_matching_rt(swi_func sigwaitinfo, int signo,
> && si.si_signo == signo + 1,
> "Struct siginfo mismatch");
>
> - TEST(sigprocmask(SIG_SETMASK, &oldmask, &oldmask));
> + TEST(sigprocmask(SIG_SETMASK, &sigs, &oldmask));
> if (TST_RET == -1)
> tst_brk(TBROK | TTERRNO, "restoring original signal mask failed");
>
> - if (sigismember(&oldmask, signo))
> + if (sigismember(&sigs, signo))
> tst_res(TPASS, "sigwaitinfo restored the original mask");
> else
> tst_res(TFAIL,
> @@ -250,11 +250,11 @@ void test_masked_matching_noinfo(swi_func sigwaitinfo, int signo,
> TEST(sigwaitinfo(&sigs, NULL, NULL));
> REPORT_SUCCESS(signo, 0);
>
> - TEST(sigprocmask(SIG_SETMASK, &oldmask, &oldmask));
> + TEST(sigprocmask(SIG_SETMASK, &sigs, &oldmask));
> if (TST_RET == -1)
> tst_brk(TBROK | TTERRNO, "restoring original signal mask failed");
Here as well?
> - if (sigismember(&oldmask, signo))
> + if (sigismember(&sigs, signo))
> tst_res(TPASS, "sigwaitinfo restored the original mask");
> else
> tst_res(TFAIL,
> @@ -289,7 +289,7 @@ void test_bad_address(swi_func sigwaitinfo, int signo,
> TEST(sigwaitinfo(&sigs, (void *)1, NULL));
> REPORT_SUCCESS(-1, EFAULT);
>
> - TEST(sigprocmask(SIG_SETMASK, &oldmask, &oldmask));
> + TEST(sigprocmask(SIG_SETMASK, &sigs, &oldmask));
> if (TST_RET == -1)
> tst_brk(TBROK | TTERRNO, "sigprocmask() failed");
And here?
--
Cyril Hrubis
chrubis@suse.cz
next prev parent reply other threads:[~2020-07-28 13:02 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-27 9:40 [LTP] [PATCH V2 1/2] libs: sigwait: Fix compilation warning around sigprocmask() Viresh Kumar
2020-07-27 9:40 ` [LTP] [PATCH V2 2/2] libs: sigwait: Get rid of REPORT_SUCCESS() macro Viresh Kumar
2020-07-29 14:40 ` Cyril Hrubis
2020-07-29 15:13 ` Viresh Kumar
2020-07-30 15:25 ` Cyril Hrubis
2020-07-28 13:02 ` Cyril Hrubis [this message]
2020-07-29 12:55 ` [LTP] [PATCH V3 1/2] libs: sigwait: Fix compilation warning around sigprocmask() Viresh Kumar
2020-07-29 14:39 ` Cyril Hrubis
2020-07-29 15:13 ` [LTP] [PATCH V2 resend 2/2] libs: sigwait: Get rid of REPORT_SUCCESS() macro Viresh Kumar
2020-07-30 15:34 ` Cyril Hrubis
2020-08-04 7:57 ` [LTP] [PATCH V3 " Viresh Kumar
2020-08-06 12:26 ` Cyril Hrubis
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=20200728130215.GA15351@yuki.lan \
--to=chrubis@suse.cz \
--cc=ltp@lists.linux.it \
/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