net/virtio: fix mbuf data offset for simple Rx
authorOlivier Matz <olivier.matz@6wind.com>
Mon, 12 Feb 2018 15:46:10 +0000 (16:46 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Tue, 13 Feb 2018 17:41:19 +0000 (18:41 +0100)
commit9fedc2da388cbe261e43c7b1cafb7463ccce3747
treecf2aa7d8da64e73e097b13a34c2db68d695c7327
parent344259ab7745b2c6e43a94339d49b0068bf1ef25
net/virtio: fix mbuf data offset for simple Rx

The mbuf->data_off was was not properly set for the first received
mbufs. Fix this by setting it in virtqueue_enqueue_recv_refill_simple(),
which is used to enqueue the first mbuf in the ring.

The function virtio_rxq_rearm_vec(), which is used to rearm the ring
with new mbufs, is valid and does not need to be updated.

Fixes: cab0461234e7 ("virtio: fill Rx avail ring with blank mbufs")
Cc: stable@dpdk.org
Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
Reviewed-by: Maxime Coquelin <maxime.coquelin@redhat.com>
drivers/net/virtio/virtio_rxtx_simple.c