diff mbox

[PATCHv2] tap: reset vnet header size on open

Message ID 20121113102323.GA29422@redhat.com
State New
Headers show

Commit Message

Michael S. Tsirkin Nov. 13, 2012, 10:23 a.m. UTC
For tap, we currently assume the vnet header size is 10
(the default value) but that might not be the case
if tap is persistent and has been used by qemu previously.
To fix, set host header size in tap device on open.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
---

This fixes the issue reported by Alexander Graf on the kvm forum.
Alexander, could you confirm please?
Thanks,

 net/tap.c | 7 +++++++
 1 file changed, 7 insertions(+)

Comments

Stefan Hajnoczi Nov. 13, 2012, 12:19 p.m. UTC | #1
On Tue, Nov 13, 2012 at 12:23:23PM +0200, Michael S. Tsirkin wrote:
> For tap, we currently assume the vnet header size is 10
> (the default value) but that might not be the case
> if tap is persistent and has been used by qemu previously.
> To fix, set host header size in tap device on open.
> 
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> ---
> 
> This fixes the issue reported by Alexander Graf on the kvm forum.
> Alexander, could you confirm please?
> Thanks,
> 
>  net/tap.c | 7 +++++++
>  1 file changed, 7 insertions(+)

Thanks, applied to the net tree:
https://github.com/stefanha/qemu/commits/net

Stefan
Alexander Graf Nov. 19, 2012, 5:26 p.m. UTC | #2
On 13.11.2012, at 11:23, Michael S. Tsirkin wrote:

> For tap, we currently assume the vnet header size is 10
> (the default value) but that might not be the case
> if tap is persistent and has been used by qemu previously.
> To fix, set host header size in tap device on open.
> 
> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
> ---
> 
> This fixes the issue reported by Alexander Graf on the kvm forum.
> Alexander, could you confirm please?

Yup, works for me :).

Tested-by: Alexander Graf <agraf@suse.de>


Alex

> Thanks,
> 
> net/tap.c | 7 +++++++
> 1 file changed, 7 insertions(+)
> 
> diff --git a/net/tap.c b/net/tap.c
> index df89caa..1abfd44 100644
> --- a/net/tap.c
> +++ b/net/tap.c
> @@ -341,6 +341,13 @@ static TAPState *net_tap_fd_init(NetClientState *peer,
>     s->using_vnet_hdr = 0;
>     s->has_ufo = tap_probe_has_ufo(s->fd);
>     tap_set_offload(&s->nc, 0, 0, 0, 0, 0);
> +    /*
> +     * Make sure host header length is set correctly in tap:
> +     * it might have been modified by another instance of qemu.
> +     */
> +    if (tap_probe_vnet_hdr_len(s->fd, s->host_vnet_hdr_len)) {
> +        tap_fd_set_vnet_hdr_len(s->fd, s->host_vnet_hdr_len);
> +    }
>     tap_read_poll(s, 1);
>     s->vhost_net = NULL;
>     return s;
> -- 
> MST
diff mbox

Patch

diff --git a/net/tap.c b/net/tap.c
index df89caa..1abfd44 100644
--- a/net/tap.c
+++ b/net/tap.c
@@ -341,6 +341,13 @@  static TAPState *net_tap_fd_init(NetClientState *peer,
     s->using_vnet_hdr = 0;
     s->has_ufo = tap_probe_has_ufo(s->fd);
     tap_set_offload(&s->nc, 0, 0, 0, 0, 0);
+    /*
+     * Make sure host header length is set correctly in tap:
+     * it might have been modified by another instance of qemu.
+     */
+    if (tap_probe_vnet_hdr_len(s->fd, s->host_vnet_hdr_len)) {
+        tap_fd_set_vnet_hdr_len(s->fd, s->host_vnet_hdr_len);
+    }
     tap_read_poll(s, 1);
     s->vhost_net = NULL;
     return s;