qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Stefan Weil <sw@weilnetz.de>
To: Peter Maydell <peter.maydell@linaro.org>
Cc: qemu-devel@nongnu.org, patches@linaro.org
Subject: Re: [Qemu-devel] [PATCH] compatfd.c: Don't pass NULL pointer to	SYS_signalfd
Date: Fri, 14 Oct 2011 19:20:45 +0200	[thread overview]
Message-ID: <4E986F6D.5080206@weilnetz.de> (raw)
In-Reply-To: <1318527937-22450-1-git-send-email-peter.maydell@linaro.org>

Am 13.10.2011 19:45, schrieb Peter Maydell:
> Don't pass a NULL pointer in to SYS_signalfd in qemu_signalfd_available():
> this isn't valid and Valgrind complains about it.
>
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> ---
> compatfd.c | 12 ++++++++++--
> 1 files changed, 10 insertions(+), 2 deletions(-)
>
> diff --git a/compatfd.c b/compatfd.c
> index 31654c6..02306a4 100644
> --- a/compatfd.c
> +++ b/compatfd.c
> @@ -119,9 +119,17 @@ int qemu_signalfd(const sigset_t *mask)
> bool qemu_signalfd_available(void)
> {
> #ifdef CONFIG_SIGNALFD
> + sigset_t mask;
> + int fd;
> + bool ok;
> + sigemptyset(&mask);
> errno = 0;
> - syscall(SYS_signalfd, -1, NULL, _NSIG / 8);
> - return errno != ENOSYS;
> + fd = syscall(SYS_signalfd, -1, &mask, _NSIG / 8);
> + ok = (errno != ENOSYS);
> + if (fd >= 0) {

Maybe better: fd != -1

> + close(fd);
> + }
> + return ok;
> #else
> return false;
> #endif

The variable 'ok' is not needed, simply returning
errno != ENOSYS would work, too.

Regards,
Stefan W.

  parent reply	other threads:[~2011-10-14 17:21 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-10-13 17:45 [Qemu-devel] [PATCH] compatfd.c: Don't pass NULL pointer to SYS_signalfd Peter Maydell
2011-10-14  7:44 ` Stefan Hajnoczi
2011-10-14 17:20 ` Stefan Weil [this message]
2011-10-14 17:33   ` Peter Maydell
2011-10-21 15:53 ` andrzej zaborowski

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=4E986F6D.5080206@weilnetz.de \
    --to=sw@weilnetz.de \
    --cc=patches@linaro.org \
    --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).