Re: [Qemu-devel] [PATCH v5] virtio-net: dynamic network offloads configuration

2013-05-22 Thread Anthony Liguori
Applied. Thanks. Regards, Anthony Liguori

Re: [Qemu-devel] [PATCH v5] virtio-net: dynamic network offloads configuration

2013-05-20 Thread Dmitry Fleytman
> So I rebased this patch myself, but don't have the latest windows > driver bits to test it. > Dmitry, could you please test and report on list? > > Thanks! Michael, many thanks for this rebase. I've tested this diff on latest windows driver with corresponding patches and it works as expected.

Re: [Qemu-devel] [PATCH v5] virtio-net: dynamic network offloads configuration

2013-05-20 Thread Anthony Liguori
"Michael S. Tsirkin" writes: > On Mon, May 20, 2013 at 12:52:57PM +0200, Paolo Bonzini wrote: >> Il 20/05/2013 10:18, Michael S. Tsirkin ha scritto: >> > diff --git a/include/hw/virtio/virtio-net.h >> > b/include/hw/virtio/virtio-net.h >> > index beeead7..b315ac9 100644 >> > --- a/include/hw/vir

Re: [Qemu-devel] [PATCH v5] virtio-net: dynamic network offloads configuration

2013-05-20 Thread Michael S. Tsirkin
On Mon, May 20, 2013 at 03:39:33PM +0200, Paolo Bonzini wrote: > Il 20/05/2013 15:36, Michael S. Tsirkin ha scritto: > > On Mon, May 20, 2013 at 12:52:57PM +0200, Paolo Bonzini wrote: > >> Il 20/05/2013 10:18, Michael S. Tsirkin ha scritto: > >>> diff --git a/include/hw/virtio/virtio-net.h > >>> b

Re: [Qemu-devel] [PATCH v5] virtio-net: dynamic network offloads configuration

2013-05-20 Thread Paolo Bonzini
Il 20/05/2013 15:36, Michael S. Tsirkin ha scritto: > On Mon, May 20, 2013 at 12:52:57PM +0200, Paolo Bonzini wrote: >> Il 20/05/2013 10:18, Michael S. Tsirkin ha scritto: >>> diff --git a/include/hw/virtio/virtio-net.h b/include/hw/virtio/virtio-net.h >>> index beeead7..b315ac9 100644 >>> --- a/in

Re: [Qemu-devel] [PATCH v5] virtio-net: dynamic network offloads configuration

2013-05-20 Thread Michael S. Tsirkin
On Mon, May 20, 2013 at 12:52:57PM +0200, Paolo Bonzini wrote: > Il 20/05/2013 10:18, Michael S. Tsirkin ha scritto: > > diff --git a/include/hw/virtio/virtio-net.h b/include/hw/virtio/virtio-net.h > > index beeead7..b315ac9 100644 > > --- a/include/hw/virtio/virtio-net.h > > +++ b/include/hw/virti

Re: [Qemu-devel] [PATCH v5] virtio-net: dynamic network offloads configuration

2013-05-20 Thread Paolo Bonzini
Il 20/05/2013 10:18, Michael S. Tsirkin ha scritto: > diff --git a/include/hw/virtio/virtio-net.h b/include/hw/virtio/virtio-net.h > index beeead7..b315ac9 100644 > --- a/include/hw/virtio/virtio-net.h > +++ b/include/hw/virtio/virtio-net.h > @@ -31,6 +31,8 @@ > /* The feature bitmap for virtio ne

[Qemu-devel] [PATCH v5] virtio-net: dynamic network offloads configuration

2013-05-20 Thread Michael S. Tsirkin
From: Dmitry Fleytman Virtio-net driver currently negotiates network offloads on startup via features mechanism and have no ability to disable and re-enable offloads later. This patch introduced a new control command that allows to configure device network offloads state dynamically. The patch al