Re: [Qemu-devel] [RFC v3 3/3] virtio-net: Add MTU feature support

2016-11-30 Thread Maxime Coquelin
On 11/30/2016 12:24 PM, Jason Wang wrote: On 2016年11月30日 18:10, Maxime Coquelin wrote: This patch allows advising guest with host MTU's by setting host_mtu parameter. If VIRTIO_NET_F_MTU has been successfully negotiated, MTU value is passed to the backend. Cc: Michael S. Tsirkin Cc: Aaron

Re: [Qemu-devel] [RFC v3 3/3] virtio-net: Add MTU feature support

2016-11-30 Thread Jason Wang
On 2016年11月30日 18:10, Maxime Coquelin wrote: This patch allows advising guest with host MTU's by setting host_mtu parameter. If VIRTIO_NET_F_MTU has been successfully negotiated, MTU value is passed to the backend. Cc: Michael S. Tsirkin Cc: Aaron Conole --- hw/net/virtio-net.c

[Qemu-devel] [RFC v3 3/3] virtio-net: Add MTU feature support

2016-11-30 Thread Maxime Coquelin
This patch allows advising guest with host MTU's by setting host_mtu parameter. If VIRTIO_NET_F_MTU has been successfully negotiated, MTU value is passed to the backend. Cc: Michael S. Tsirkin Cc: Aaron Conole --- hw/net/virtio-net.c| 13 + include/hw/virtio/virtio-net.