diff options
| author | Yuri Benditovich | 2020-05-08 14:59:30 +0200 |
|---|---|---|
| committer | Jason Wang | 2020-06-18 15:05:50 +0200 |
| commit | fbbdbddec018723d9f863f01cdec172dda9df12b (patch) | |
| tree | 5503dac8c45fd5e9c7cf88b55eff7588f0c8a302 /net | |
| parent | virtio-net: implement RX RSS processing (diff) | |
| download | qemu-fbbdbddec018723d9f863f01cdec172dda9df12b.tar.gz qemu-fbbdbddec018723d9f863f01cdec172dda9df12b.tar.xz qemu-fbbdbddec018723d9f863f01cdec172dda9df12b.zip | |
tap: allow extended virtio header with hash info
Signed-off-by: Yuri Benditovich <yuri.benditovich@daynix.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
Diffstat (limited to 'net')
| -rw-r--r-- | net/tap.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -254,7 +254,8 @@ static void tap_set_vnet_hdr_len(NetClientState *nc, int len) assert(nc->info->type == NET_CLIENT_DRIVER_TAP); assert(len == sizeof(struct virtio_net_hdr_mrg_rxbuf) || - len == sizeof(struct virtio_net_hdr)); + len == sizeof(struct virtio_net_hdr) || + len == sizeof(struct virtio_net_hdr_v1_hash)); tap_fd_set_vnet_hdr_len(s->fd, len); s->host_vnet_hdr_len = len; |
