qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 2/6] Revert "vhost-net: tell tap backend about t


From: Greg Kurz
Subject: Re: [Qemu-devel] [PATCH 2/6] Revert "vhost-net: tell tap backend about the vnet endianness"
Date: Fri, 8 Jan 2016 11:26:05 +0100

On Fri, 8 Jan 2016 11:11:20 +0100
Cornelia Huck <address@hidden> wrote:

> On Thu, 07 Jan 2016 12:32:08 +0100
> Greg Kurz <address@hidden> wrote:
> 
> > This reverts commit 5be7d9f1b1452613b95c6ba70b8d7ad3d0797991.
> > 
> > Cross-endian is now configured by the core virtio-net code. We simply
> > fall back on full emulation if the net backend cannot support the
> > requested endianness for vnet headers.
> > 
> > Signed-off-by: Greg Kurz <address@hidden>
> > ---
> >  hw/net/vhost_net.c  |   33 +--------------------------------
> >  hw/net/virtio-net.c |    7 +++++++
> >  2 files changed, 8 insertions(+), 32 deletions(-)
> 
> > diff --git a/hw/net/virtio-net.c b/hw/net/virtio-net.c
> > index d4cc94ea5e55..5a0ab6ad5bb5 100644
> > --- a/hw/net/virtio-net.c
> > +++ b/hw/net/virtio-net.c
> > @@ -128,6 +128,13 @@ static void virtio_net_vhost_status(VirtIONet *n, 
> > uint8_t status)
> >      if (!n->vhost_started) {
> >          int r, i;
> > 
> > +        if (n->needs_vnet_hdr_swap) {
> > +            error_report("backend does not support %s vnet headers."
> 
> s/./;/
> 

I'll fix that.

> > +                         "falling back on userspace virtio",
> 
> s/on/to/
> 
> ?
> 

I thought the same but...

http://idioms.thefreedictionary.com/fall+back+on

> > +                         virtio_is_big_endian(vdev) ? "BE" : "LE");
> > +            return;
> > +        }
> > +
> >          /* Any packets outstanding? Purge them to avoid touching rings
> >           * when vhost is running.
> >           */
> > 
> > 
> 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]