Re: [ovs-dev] [PATCH v2 1/3] ofpbuf: Add ofpbuf_rss()

2014-08-18 Thread Daniele Di Proietto
Sorry about those, I will send an updated version soon. Thanks, Daniele On 8/18/14, 9:45 AM, "Ben Pfaff" wrote: >On Fri, Aug 15, 2014 at 12:43:35PM -0700, Daniele Di Proietto wrote: >> ofpbuf_rss() is introduced to get the RSS hash from the NIC. It works >>only for >> packets received by DPDK

Re: [ovs-dev] [PATCH v2 1/3] ofpbuf: Add ofpbuf_rss()

2014-08-18 Thread Ben Pfaff
On Fri, Aug 15, 2014 at 12:43:35PM -0700, Daniele Di Proietto wrote: > ofpbuf_rss() is introduced to get the RSS hash from the NIC. It works only for > packets received by DPDK (otherwise it returns 0, which tells the caller to > compute the hash in another way) > > This commit also configure DPDK

[ovs-dev] [PATCH v2 1/3] ofpbuf: Add ofpbuf_rss()

2014-08-15 Thread Daniele Di Proietto
ofpbuf_rss() is introduced to get the RSS hash from the NIC. It works only for packets received by DPDK (otherwise it returns 0, which tells the caller to compute the hash in another way) This commit also configure DPDK devices to compute RSS hash for UDP and IPv6 packets Signed-off-by: Daniele D