All of lore.kernel.org
 help / color / mirror / Atom feed
From: Paolo Bonzini <pbonzini@redhat.com>
To: Markus Armbruster <armbru@redhat.com>, qemu-devel@nongnu.org
Cc: amit.shah@redhat.com, quintela@redhat.com
Subject: Re: [Qemu-devel] [PATCH] migration: Clean up use of g_poll() in socket_writev_buffer()
Date: Tue, 1 Dec 2015 14:39:21 +0100	[thread overview]
Message-ID: <565DA309.3080201@redhat.com> (raw)
In-Reply-To: <1448976854-10346-1-git-send-email-armbru@redhat.com>



On 01/12/2015 14:34, Markus Armbruster wrote:
> socket_writev_buffer() writes in a loop, using g_poll() to block.  If
> g_poll() fails, it tries to write more before the file descriptor is
> ready.  In theory, this could go into a tight loop.  In practice,
> errors other than EINTR are really unlikely, and when they happen,
> we're probably screwed anyway, so we can just as well loop.
> 
> Clean it up a bit: retry poll on EINTR, keep ignoring other errors.
> 
> Signed-off-by: Markus Armbruster <armbru@redhat.com>
> ---
> Let me stress once again: this is *not* a bug fix, it's cleanup!  If
> you don't like it, you can safely ignore it.  We'll then mark the spot
> as intentional in the Coverity dashboard.
> 
>  migration/qemu-file-unix.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/migration/qemu-file-unix.c b/migration/qemu-file-unix.c
> index c503b02..6ca53e7 100644
> --- a/migration/qemu-file-unix.c
> +++ b/migration/qemu-file-unix.c
> @@ -72,7 +72,8 @@ static ssize_t socket_writev_buffer(void *opaque, struct iovec *iov, int iovcnt,
>              pfd.fd = s->fd;
>              pfd.events = G_IO_OUT | G_IO_ERR;
>              pfd.revents = 0;
> -            g_poll(&pfd, 1 /* 1 fd */, -1 /* no timeout */);
> +            TFR(err = g_poll(&pfd, 1, -1 /* no timeout */));
> +            /* Errors other than EINTR intentionally ignored */
>          }
>       }
>  
> 

Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>

  reply	other threads:[~2015-12-01 13:39 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-12-01 13:34 [Qemu-devel] [PATCH] migration: Clean up use of g_poll() in socket_writev_buffer() Markus Armbruster
2015-12-01 13:39 ` Paolo Bonzini [this message]
2015-12-02  9:04 ` Juan Quintela

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=565DA309.3080201@redhat.com \
    --to=pbonzini@redhat.com \
    --cc=amit.shah@redhat.com \
    --cc=armbru@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=quintela@redhat.com \
    /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.