Re: [dpdk-dev] [PATCH 9/9] net/virtio: fix Rx handler when checksum is requested

2017-08-31 Thread Olivier MATZ
Platform description guest (dpdk) ++ || || |port0 | ++ | | virtio | ++ | tap0 | || || ++ host (linux, vhost-

[dpdk-dev] [PATCH 9/9] net/virtio: fix Rx handler when checksum is requested

2017-08-31 Thread Olivier Matz
The simple Rx handler is selected even if Rx checksum offload is requested by the application, but this handler does not support offloads. This results in broken received packets (no checksum flag but invalid checksum in the mbuf data). Disable the simple Rx handler in that case. Fixes: 96cb67119