From: "Michael S. Tsirkin" <mst@redhat.com>
To: Jason Wang <jasowang@redhat.com>
Cc: davem@davemloft.net, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH V5 1/3] vhost_net: correct error handling in vhost_net_set_backend()
Date: Wed, 16 Jan 2013 12:59:43 +0200 [thread overview]
Message-ID: <20130116105943.GB13470@redhat.com> (raw)
In-Reply-To: <1358332441-26859-2-git-send-email-jasowang@redhat.com>
On Wed, Jan 16, 2013 at 06:33:59PM +0800, Jason Wang wrote:
> Currently, when vhost_init_used() fails the sock refcnt and ubufs were
> leaked. Correct this by calling vhost_init_used() before assign ubufs and
> restore the oldsock when it fails.
>
> Signed-off-by: Jason Wang <jasowang@redhat.com>
Acked-by: Michael S. Tsirkin <mst@redhat.com>
> ---
> drivers/vhost/net.c | 16 +++++++++++-----
> 1 files changed, 11 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/vhost/net.c b/drivers/vhost/net.c
> index ebd08b2..d10ad6f 100644
> --- a/drivers/vhost/net.c
> +++ b/drivers/vhost/net.c
> @@ -827,15 +827,16 @@ static long vhost_net_set_backend(struct vhost_net *n, unsigned index, int fd)
> r = PTR_ERR(ubufs);
> goto err_ubufs;
> }
> - oldubufs = vq->ubufs;
> - vq->ubufs = ubufs;
> +
> vhost_net_disable_vq(n, vq);
> rcu_assign_pointer(vq->private_data, sock);
> - vhost_net_enable_vq(n, vq);
> -
> r = vhost_init_used(vq);
> if (r)
> - goto err_vq;
> + goto err_used;
> + vhost_net_enable_vq(n, vq);
> +
> + oldubufs = vq->ubufs;
> + vq->ubufs = ubufs;
>
> n->tx_packets = 0;
> n->tx_zcopy_err = 0;
> @@ -859,6 +860,11 @@ static long vhost_net_set_backend(struct vhost_net *n, unsigned index, int fd)
> mutex_unlock(&n->dev.mutex);
> return 0;
>
> +err_used:
> + rcu_assign_pointer(vq->private_data, oldsock);
> + vhost_net_enable_vq(n, vq);
> + if (ubufs)
> + vhost_ubuf_put_and_wait(ubufs);
> err_ubufs:
> fput(sock->file);
> err_vq:
> --
> 1.7.1
next prev parent reply other threads:[~2013-01-16 10:59 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-16 10:33 [PATCH V5 0/3] handle polling errors in vhost/vhost_net Jason Wang
2013-01-16 10:33 ` [PATCH V5 1/3] vhost_net: correct error handling in vhost_net_set_backend() Jason Wang
2013-01-16 10:59 ` Michael S. Tsirkin [this message]
2013-01-16 10:34 ` [PATCH V5 2/3] vhost_net: handle polling errors when setting backend Jason Wang
2013-01-16 11:00 ` Michael S. Tsirkin
2013-01-16 10:34 ` [PATCH V5 3/3] tuntap: allow polling/writing/reading when detached Jason Wang
2013-01-16 10:59 ` Michael S. Tsirkin
2013-01-16 13:35 ` Jason Wang
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=20130116105943.GB13470@redhat.com \
--to=mst@redhat.com \
--cc=davem@davemloft.net \
--cc=jasowang@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@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 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).