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

2014-08-13 Thread Pravin Shelar
On Wed, Aug 13, 2014 at 4:42 PM, Daniele Di Proietto wrote: > On 8/13/14, 3:28 PM, "Pravin Shelar" wrote: > >>On Wed, Aug 13, 2014 at 8:49 AM, Daniele Di Proietto >> wrote: >>> >>> >>> On 8/12/14, 5:42 PM, "Pravin Shelar" wrote: >>> On Tue, Jul 22, 2014 at 5:06 PM, Daniele Di Proietto w

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

2014-08-13 Thread Daniele Di Proietto
On 8/13/14, 3:28 PM, "Pravin Shelar" wrote: >On Wed, Aug 13, 2014 at 8:49 AM, Daniele Di Proietto > wrote: >> >> >> On 8/12/14, 5:42 PM, "Pravin Shelar" wrote: >> >>>On Tue, Jul 22, 2014 at 5:06 PM, Daniele Di Proietto >>> wrote: ofpbuf_rss() is introduced to get the RSS hash from the NIC.

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

2014-08-13 Thread Pravin Shelar
On Wed, Aug 13, 2014 at 8:49 AM, Daniele Di Proietto wrote: > > > On 8/12/14, 5:42 PM, "Pravin Shelar" wrote: > >>On Tue, Jul 22, 2014 at 5:06 PM, Daniele Di Proietto >> wrote: >>> ofpbuf_rss() is introduced to get the RSS hash from the NIC. It works >>>only for >>> packets received by DPDK (othe

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

2014-08-13 Thread Daniele Di Proietto
On 8/12/14, 5:42 PM, "Pravin Shelar" wrote: >On Tue, Jul 22, 2014 at 5:06 PM, 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

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

2014-08-12 Thread Pravin Shelar
On Tue, Jul 22, 2014 at 5:06 PM, 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 devices

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

2014-07-22 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 packets Signed-off-by: Daniele Di Proiett