Re: [dpdk-dev] [PATCH 1/3] ethdev: add RSS hash level

2019-12-09 Thread Ferruh Yigit
On 12/9/2019 7:35 AM, Andrew Rybchenko wrote: > On 12/7/19 10:56 PM, Ajit Khaparde wrote: >> On Sat, Dec 7, 2019 at 1:14 AM Andrew Rybchenko >> wrote: >> >>> On 12/7/19 3:59 AM, Ajit Khaparde wrote: This patch adds ability to configure RSS hash level in hardware. This feature will allow

Re: [dpdk-dev] [PATCH 1/3] ethdev: add RSS hash level

2019-12-08 Thread Andrew Rybchenko
On 12/7/19 10:56 PM, Ajit Khaparde wrote: > On Sat, Dec 7, 2019 at 1:14 AM Andrew Rybchenko > wrote: > >> On 12/7/19 3:59 AM, Ajit Khaparde wrote: >>> This patch adds ability to configure RSS hash level in hardware. >>> This feature will allow an application to select RSS hash calculation >>> on

Re: [dpdk-dev] [PATCH 1/3] ethdev: add RSS hash level

2019-12-08 Thread Ananyev, Konstantin
Hi Ajit, > This patch adds ability to configure RSS hash level in hardware. > This feature will allow an application to select RSS hash calculation > on outer or inner headers for tunneled packets. > > Signed-off-by: Ajit Khaparde > --- > lib/librte_ethdev/rte_ethdev.h | 27

Re: [dpdk-dev] [PATCH 1/3] ethdev: add RSS hash level

2019-12-07 Thread Stephen Hemminger
On Fri, 6 Dec 2019 16:59:17 -0800 Ajit Khaparde wrote: > */ > struct rte_eth_rss_conf { > uint8_t *rss_key;/**< If not NULL, 40-byte hash key. */ > uint8_t rss_key_len; /**< hash key length in bytes. */ > uint64_t rss_hf; /**< Hash functions to apply - see below. */

Re: [dpdk-dev] [PATCH 1/3] ethdev: add RSS hash level

2019-12-07 Thread Ajit Khaparde
On Sat, Dec 7, 2019 at 1:14 AM Andrew Rybchenko wrote: > On 12/7/19 3:59 AM, Ajit Khaparde wrote: > > This patch adds ability to configure RSS hash level in hardware. > > This feature will allow an application to select RSS hash calculation > > on outer or inner headers for tunneled packets. > >

Re: [dpdk-dev] [PATCH 1/3] ethdev: add RSS hash level

2019-12-07 Thread Andrew Rybchenko
On 12/7/19 3:59 AM, Ajit Khaparde wrote: This patch adds ability to configure RSS hash level in hardware. This feature will allow an application to select RSS hash calculation on outer or inner headers for tunneled packets. Signed-off-by: Ajit Khaparde --- lib/librte_ethdev/rte_ethdev.h | 27

[dpdk-dev] [PATCH 1/3] ethdev: add RSS hash level

2019-12-06 Thread Ajit Khaparde
This patch adds ability to configure RSS hash level in hardware. This feature will allow an application to select RSS hash calculation on outer or inner headers for tunneled packets. Signed-off-by: Ajit Khaparde --- lib/librte_ethdev/rte_ethdev.h | 27 +++ 1 file changed,