Re: [ovs-dev] [PATCH v3] dpif-netdev: Check for PKT_RX_RSS_HASH flag.

2015-09-11 Thread Daniele Di Proietto
On 10/09/2015 20:16, "Pravin Shelar" wrote: >On Thu, Sep 10, 2015 at 10:02 AM, Daniele Di Proietto > wrote: >> DPDK mbufs contain a valid RSS hash only if PKT_RX_RSS_HASH is >> set in 'ol_flags'. Otherwise the hash is garbage and doesn't >> relate to the packet. >> >> This fixes an issue with

Re: [ovs-dev] [PATCH v3] dpif-netdev: Check for PKT_RX_RSS_HASH flag.

2015-09-10 Thread Pravin Shelar
On Thu, Sep 10, 2015 at 10:02 AM, Daniele Di Proietto wrote: > DPDK mbufs contain a valid RSS hash only if PKT_RX_RSS_HASH is > set in 'ol_flags'. Otherwise the hash is garbage and doesn't > relate to the packet. > > This fixes an issue with vhost, which, being a virtual NIC, doesn't > compute th

[ovs-dev] [PATCH v3] dpif-netdev: Check for PKT_RX_RSS_HASH flag.

2015-09-10 Thread Daniele Di Proietto
DPDK mbufs contain a valid RSS hash only if PKT_RX_RSS_HASH is set in 'ol_flags'. Otherwise the hash is garbage and doesn't relate to the packet. This fixes an issue with vhost, which, being a virtual NIC, doesn't compute the hash. Reported-by: Dongjun Suggested-by: Flavio Leitner Acked-by: Ke