From: Shirley Ma <mashirle@us.ibm.com>
To: "Michael S. Tsirkin" <mst@redhat.com>
Cc: David Miller <davem@davemloft.net>,
netdev@vger.kernel.org, jasowang@redhat.com
Subject: Re: [PATCH] vhost: clean up outstanding buffers before setting vring
Date: Wed, 20 Jul 2011 11:12:11 -0700 [thread overview]
Message-ID: <1311185531.8573.56.camel@localhost.localdomain> (raw)
In-Reply-To: <20110720104131.GB5164@redhat.com>
On Wed, 2011-07-20 at 13:41 +0300, Michael S. Tsirkin wrote:
> On Tue, Jul 19, 2011 at 01:50:53PM -0700, Shirley Ma wrote:
> > On Tue, 2011-07-19 at 22:49 +0300, Michael S. Tsirkin wrote:
> > > On Tue, Jul 19, 2011 at 11:02:26AM -0700, Shirley Ma wrote:
> > > > The outstanding DMA buffers need to be clean up before setting
> vring
> > > in
> > > > vhost. Otherwise the vring would be out of sync.
> > > >
> > > > Signed-off-by: Shirley Ma<xma@us.ibm.com>
> > >
> > > I suspect what is missing is calling
> > > vhost_zerocopy_signal_used then?
> > >
> > > If yes we probably should do it after
> > > changing the backend, not on vring set.
> >
> > I think vhost_zerocopy_signal_used might not be sufficient.
>
> If not, I'd like to understand what the root cause of
> the problem is.
>
> > But we can
> > test it out by remove/reloading the guest virtio_net module.
>
> Well, try out something like the below patch then.
>From the test results, below patch solves the problem. You can check in
this.
> >
> > The problem encounters when guest rmmod virtio_net module, then
> reload
> > the module, and configure the interface, it complains about some
> ring id
> > is not a head.
>
> OK, good, such a problem decription belongs in the patch commit log.
You can add this description in the change log. When removing and
reloading KVM guest virtio_net module, it complains vring data is NULL.
The vring is out of sync between vhost and virtio_net.
> > With this patch, the problem is solved.
>
> Additional info you want to put in the commit log is what in the code
> triggers the problem and how your patch fixes it.
>
> > >
> > > > +
> > > > + /* Signal guest as appropriate. */
> > > > + vhost_zerocopy_signal_used(vq);
> > > >
> > > > switch (ioctl) {
> > > > case VHOST_SET_VRING_NUM:
> > > > @@ -1592,7 +1600,6 @@ void vhost_ubuf_put_and_wait(struct
> > > vhost_ubuf_ref *ubufs)
> > > > {
> > > > kref_put(&ubufs->kref, vhost_zerocopy_done_signal);
> > > > wait_event(ubufs->wait, !
> atomic_read(&ubufs->kref.refcount));
> > > > - kfree(ubufs);
> > >
> > > Won't this leak memory when ubufs are switched in
> > > vhost_net_set_backend?
> >
> > Right, I forgot to check net.c, whenever it calls
> > vhot_ubuf_put_and_wait, it should call kfree(ubufs).
> >
>
> -->
>
> vhost-net: update used ring on backend change
>
> On backend change, we flushed out outstanding skbs
> but forgot to update the used ring. Do that to
> avoid losing heads.
>
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
>
> --
>
> diff --git a/drivers/vhost/net.c b/drivers/vhost/net.c
> index 70ac604..248b250 100644
> --- a/drivers/vhost/net.c
> +++ b/drivers/vhost/net.c
> @@ -711,8 +711,12 @@ static long vhost_net_set_backend(struct
> vhost_net *n, unsigned index, int fd)
>
> mutex_unlock(&vq->mutex);
>
> - if (oldubufs)
> + if (oldubufs) {
> vhost_ubuf_put_and_wait(oldubufs);
> + mutex_lock(&vq->mutex);
> + vhost_zerocopy_signal_used(vq);
> + mutex_unlock(&vq->mutex);
> + }
>
> if (oldsock) {
> vhost_net_flush_vq(n, index);
>
>
prev parent reply other threads:[~2011-07-20 18:12 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-07-19 18:02 [PATCH] vhost: clean up outstanding buffers before setting vring Shirley Ma
2011-07-19 19:49 ` Michael S. Tsirkin
2011-07-19 20:50 ` Shirley Ma
2011-07-20 10:41 ` Michael S. Tsirkin
2011-07-20 18:12 ` Shirley Ma [this message]
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=1311185531.8573.56.camel@localhost.localdomain \
--to=mashirle@us.ibm.com \
--cc=davem@davemloft.net \
--cc=jasowang@redhat.com \
--cc=mst@redhat.com \
--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).