[dpdk-dev] [PATCH 1/2] virtio: make sure rcv mbuf initialized correctly

2015-12-04 Thread Yuanhan Liu
On Thu, Dec 03, 2015 at 05:12:53PM -0800, Stephen Hemminger wrote: > The virtio driver was not initializing all the fields in > the receive mbuf. This would cause bugs where previous usage > of mbuf would leave stale TCI and offload flags. Acked-by: Yuanhan Liu Thanks. --yliu

[dpdk-dev] [PATCH 1/2] virtio: make sure rcv mbuf initialized correctly

2015-12-03 Thread Stephen Hemminger
The virtio driver was not initializing all the fields in the receive mbuf. This would cause bugs where previous usage of mbuf would leave stale TCI and offload flags. Signed-off-by: Stephen Hemminger --- drivers/net/virtio/virtio_rxtx.c | 4 1 file changed, 4 insertions(+) diff --git a/dri