qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Michael S. Tsirkin" <mst@redhat.com>
To: "Marc-André Lureau" <mlureau@redhat.com>
Cc: marcandre lureau <marcandre.lureau@redhat.com>,
	qemu-devel@nongnu.org, mukawa@igel.co.jp,
	yuanhan liu <yuanhan.liu@linux.intel.com>,
	victork@redhat.com, jonshin@cisco.com
Subject: Re: [Qemu-devel] [PATCH 06/24] vhost-user: check vhost_user_write() return value
Date: Thu, 23 Jun 2016 20:08:44 +0300	[thread overview]
Message-ID: <20160623200402-mutt-send-email-mst@redhat.com> (raw)
In-Reply-To: <395281151.1343677.1466673378323.JavaMail.zimbra@redhat.com>

On Thu, Jun 23, 2016 at 05:16:18AM -0400, Marc-André Lureau wrote:
> Hi
> 
> ----- Original Message -----
> > On Tue, Jun 21, 2016 at 12:02:34PM +0200, marcandre.lureau@redhat.com wrote:
> > > From: Marc-André Lureau <marcandre.lureau@redhat.com>
> > > 
> > > Just some more error checking.
> > > 
> > > Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
> > 
> > Point being? Callers just ignore it afterwards ...
> 
> Callers do not always ignore it (and in general it should not, should it?), this helps breaking the execution at right moment, help debugging, code consistency, good practices etc (perhaps it's too obvious to me and I am missing something?)

Reporting error up the stack is helpful if it's handled in some way.
If we just keep guest going on this error, then we could
maybe log it for debug build but that's all.


> > 
> > 
> > > ---
> > >  hw/virtio/vhost-user.c | 44 +++++++++++++++++++++++++++++++-------------
> > >  1 file changed, 31 insertions(+), 13 deletions(-)
> > > 
> > > diff --git a/hw/virtio/vhost-user.c b/hw/virtio/vhost-user.c
> > > index 5dae496..e51df27 100644
> > > --- a/hw/virtio/vhost-user.c
> > > +++ b/hw/virtio/vhost-user.c
> > > @@ -214,7 +214,9 @@ static int vhost_user_set_log_base(struct vhost_dev
> > > *dev, uint64_t base,
> > >          fds[fd_num++] = log->fd;
> > >      }
> > >  
> > > -    vhost_user_write(dev, &msg, fds, fd_num);
> > > +    if (vhost_user_write(dev, &msg, fds, fd_num) < 0) {
> > > +        return -1;
> > > +    }
> > >  
> > >      if (shmfd) {
> > >          msg.size = 0;
> > > @@ -275,7 +277,9 @@ static int vhost_user_set_mem_table(struct vhost_dev
> > > *dev,
> > >      msg.size += sizeof(msg.payload.memory.padding);
> > >      msg.size += fd_num * sizeof(VhostUserMemoryRegion);
> > >  
> > > -    vhost_user_write(dev, &msg, fds, fd_num);
> > > +    if (vhost_user_write(dev, &msg, fds, fd_num) < 0) {
> > > +        return -1;
> > > +    }
> > >  
> > >      return 0;
> > >  }
> > > @@ -290,7 +294,9 @@ static int vhost_user_set_vring_addr(struct vhost_dev
> > > *dev,
> > >          .size = sizeof(msg.payload.addr),
> > >      };
> > >  
> > > -    vhost_user_write(dev, &msg, NULL, 0);
> > > +    if (vhost_user_write(dev, &msg, NULL, 0) < 0) {
> > > +        return -1;
> > > +    }
> > >  
> > >      return 0;
> > >  }
> > > @@ -313,7 +319,9 @@ static int vhost_set_vring(struct vhost_dev *dev,
> > >          .size = sizeof(msg.payload.state),
> > >      };
> > >  
> > > -    vhost_user_write(dev, &msg, NULL, 0);
> > > +    if (vhost_user_write(dev, &msg, NULL, 0) < 0) {
> > > +        return -1;
> > > +    }
> > >  
> > >      return 0;
> > >  }
> > > @@ -360,7 +368,9 @@ static int vhost_user_get_vring_base(struct vhost_dev
> > > *dev,
> > >          .size = sizeof(msg.payload.state),
> > >      };
> > >  
> > > -    vhost_user_write(dev, &msg, NULL, 0);
> > > +    if (vhost_user_write(dev, &msg, NULL, 0) < 0) {
> > > +        return -1;
> > > +    }
> > >  
> > >      if (vhost_user_read(dev, &msg) < 0) {
> > >          return 0;
> > > @@ -401,7 +411,9 @@ static int vhost_set_vring_file(struct vhost_dev *dev,
> > >          msg.payload.u64 |= VHOST_USER_VRING_NOFD_MASK;
> > >      }
> > >  
> > > -    vhost_user_write(dev, &msg, fds, fd_num);
> > > +    if (vhost_user_write(dev, &msg, fds, fd_num) < 0) {
> > > +        return -1;
> > > +    }
> > >  
> > >      return 0;
> > >  }
> > > @@ -427,7 +439,9 @@ static int vhost_user_set_u64(struct vhost_dev *dev,
> > > int request, uint64_t u64)
> > >          .size = sizeof(msg.payload.u64),
> > >      };
> > >  
> > > -    vhost_user_write(dev, &msg, NULL, 0);
> > > +    if (vhost_user_write(dev, &msg, NULL, 0) < 0) {
> > > +        return -1;
> > > +    }
> > >  
> > >      return 0;
> > >  }
> > > @@ -455,7 +469,9 @@ static int vhost_user_get_u64(struct vhost_dev *dev,
> > > int request, uint64_t *u64)
> > >          return 0;
> > >      }
> > >  
> > > -    vhost_user_write(dev, &msg, NULL, 0);
> > > +    if (vhost_user_write(dev, &msg, NULL, 0) < 0) {
> > > +        return -1;
> > > +    }
> > >  
> > >      if (vhost_user_read(dev, &msg) < 0) {
> > >          return 0;
> > > @@ -489,7 +505,9 @@ static int vhost_user_set_owner(struct vhost_dev *dev)
> > >          .flags = VHOST_USER_VERSION,
> > >      };
> > >  
> > > -    vhost_user_write(dev, &msg, NULL, 0);
> > > +    if (vhost_user_write(dev, &msg, NULL, 0) < 0) {
> > > +        return -1;
> > > +    }
> > >  
> > >      return 0;
> > >  }
> > > @@ -501,7 +519,9 @@ static int vhost_user_reset_device(struct vhost_dev
> > > *dev)
> > >          .flags = VHOST_USER_VERSION,
> > >      };
> > >  
> > > -    vhost_user_write(dev, &msg, NULL, 0);
> > > +    if (vhost_user_write(dev, &msg, NULL, 0) < 0) {
> > > +        return -1;
> > > +    }
> > >  
> > >      return 0;
> > >  }
> > > @@ -588,7 +608,6 @@ static bool vhost_user_requires_shm_log(struct
> > > vhost_dev *dev)
> > >  static int vhost_user_migration_done(struct vhost_dev *dev, char*
> > >  mac_addr)
> > >  {
> > >      VhostUserMsg msg = { 0 };
> > > -    int err;
> > >  
> > >      assert(dev->vhost_ops->backend_type == VHOST_BACKEND_TYPE_USER);
> > >  
> > > @@ -605,8 +624,7 @@ static int vhost_user_migration_done(struct vhost_dev
> > > *dev, char* mac_addr)
> > >          memcpy((char *)&msg.payload.u64, mac_addr, 6);
> > >          msg.size = sizeof(msg.payload.u64);
> > >  
> > > -        err = vhost_user_write(dev, &msg, NULL, 0);
> > > -        return err;
> > > +        return vhost_user_write(dev, &msg, NULL, 0);
> > >      }
> > >      return -1;
> > >  }
> > > --
> > > 2.7.4
> > 

  reply	other threads:[~2016-06-23 17:08 UTC|newest]

Thread overview: 60+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-21 10:02 [Qemu-devel] [PATCH 00/24] vhost-user reconnect fixes marcandre.lureau
2016-06-21 10:02 ` [Qemu-devel] [PATCH 01/24] misc: indentation marcandre.lureau
2016-06-21 10:02 ` [Qemu-devel] [PATCH 02/24] vhost-user: minor simplification marcandre.lureau
2016-06-21 10:02 ` [Qemu-devel] [PATCH 03/24] qemu-char: check socket is actually connected marcandre.lureau
2016-06-21 10:02 ` [Qemu-devel] [PATCH 04/24] vhost-user: check qemu_chr_fe_set_msgfds() return value marcandre.lureau
2016-06-21 10:02 ` [Qemu-devel] [PATCH 05/24] vhost: change some assert() for error_report() or silent fail marcandre.lureau
2016-06-23  4:27   ` Michael S. Tsirkin
2016-06-23  9:19     ` Marc-André Lureau
2016-06-23 17:13       ` Michael S. Tsirkin
2016-06-24 13:25         ` Marc-André Lureau
2016-06-24 22:38           ` Michael S. Tsirkin
2016-06-27  9:01             ` Marc-André Lureau
2016-07-04 15:43               ` Michael S. Tsirkin
2016-07-06 13:47                 ` Marc-André Lureau
2016-06-21 10:02 ` [Qemu-devel] [PATCH 06/24] vhost-user: check vhost_user_write() return value marcandre.lureau
2016-06-23  4:27   ` Michael S. Tsirkin
2016-06-23  9:16     ` Marc-André Lureau
2016-06-23 17:08       ` Michael S. Tsirkin [this message]
2016-06-24 12:49         ` Marc-André Lureau
2016-07-04 15:46           ` Michael S. Tsirkin
2016-07-04 22:01             ` Marc-André Lureau
2016-07-04 22:36               ` Michael S. Tsirkin
2016-06-21 10:02 ` [Qemu-devel] [PATCH 07/24] vhost: use error_report() instead of fprintf(stderr, ...) marcandre.lureau
2016-06-21 10:02 ` [Qemu-devel] [PATCH 08/24] vhost-user: return a read error marcandre.lureau
2016-06-23  4:27   ` Michael S. Tsirkin
2016-06-23  9:14     ` Marc-André Lureau
2016-06-23 17:03       ` Michael S. Tsirkin
2016-06-24 12:46         ` Marc-André Lureau
2016-07-04 15:47           ` Michael S. Tsirkin
2016-07-04 21:56             ` Marc-André Lureau
2016-07-04 22:35               ` Michael S. Tsirkin
2016-07-05  9:18                 ` Marc-André Lureau
2016-07-05 11:12                   ` Michael S. Tsirkin
2016-07-06 13:40                     ` Marc-André Lureau
2016-07-06 13:52                       ` Marc-André Lureau
2016-06-21 10:02 ` [Qemu-devel] [PATCH 09/24] vhost: make vhost_log_put() idempotent marcandre.lureau
2016-06-21 10:02 ` [Qemu-devel] [PATCH 10/24] vhost: call vhost_log_put() on cleanup marcandre.lureau
2016-06-21 10:02 ` [Qemu-devel] [PATCH 11/24] vhost: add vhost device only after all success marcandre.lureau
2016-06-21 10:02 ` [Qemu-devel] [PATCH 12/24] vhost: make vhost_dev_cleanup() idempotent marcandre.lureau
2016-06-21 10:02 ` [Qemu-devel] [PATCH 13/24] vhost-net: always call vhost_dev_cleanup() on failure marcandre.lureau
2016-06-21 10:02 ` [Qemu-devel] [PATCH 14/24] vhost: don't assume opaque is a fd, use backend cleanup marcandre.lureau
2016-06-21 10:02 ` [Qemu-devel] [PATCH 15/24] vhost: fix calling vhost_dev_cleanup() after vhost_dev_init() marcandre.lureau
2016-06-21 10:02 ` [Qemu-devel] [PATCH 16/24] vhost-user: keep vhost_net after a disconnection marcandre.lureau
2016-06-21 10:02 ` [Qemu-devel] [PATCH 17/24] Revert "vhost-net: do not crash if backend is not present" marcandre.lureau
2016-06-21 10:02 ` [Qemu-devel] [PATCH 18/24] get_vhost_net() should be != null after vhost_user_init marcandre.lureau
2016-06-21 10:02 ` [Qemu-devel] [PATCH 19/24] vhost-net: success if backend has no ops->vhost_migration_done marcandre.lureau
2016-06-21 10:02 ` [Qemu-devel] [PATCH 20/24] vhost: add assert() to check runtime behaviour marcandre.lureau
2016-06-21 10:02 ` [Qemu-devel] [PATCH 21/24] char: add chr_wait_connected callback marcandre.lureau
2016-06-21 10:02 ` [Qemu-devel] [PATCH 22/24] char: add and use tcp_chr_wait_connected marcandre.lureau
2016-06-21 10:02 ` [Qemu-devel] [PATCH 23/24] vhost-user: wait until link is up marcandre.lureau
2016-06-23  4:25   ` Michael S. Tsirkin
2016-06-23  9:11     ` Marc-André Lureau
2016-06-23 16:45       ` Michael S. Tsirkin
2016-06-21 10:02 ` [Qemu-devel] [PATCH 24/24] tests: add /vhost-user/connect-fail test marcandre.lureau
2016-06-23  4:31 ` [Qemu-devel] [PATCH 00/24] vhost-user reconnect fixes Michael S. Tsirkin
2016-06-24 13:22   ` Marc-André Lureau
2016-06-24 22:19     ` Michael S. Tsirkin
2016-06-27 12:37       ` Marc-André Lureau
2016-06-23  4:32 ` Michael S. Tsirkin
2016-06-24 13:17   ` Marc-André Lureau

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=20160623200402-mutt-send-email-mst@redhat.com \
    --to=mst@redhat.com \
    --cc=jonshin@cisco.com \
    --cc=marcandre.lureau@redhat.com \
    --cc=mlureau@redhat.com \
    --cc=mukawa@igel.co.jp \
    --cc=qemu-devel@nongnu.org \
    --cc=victork@redhat.com \
    --cc=yuanhan.liu@linux.intel.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 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).