[dpdk-dev] [PATCH 1/2] igb/ixgbe: ETH_MQ_RX_NONE should disable RSS

2013-11-20 Thread Prashant Upadhyaya
PM To: Maxime Leroy Cc: dev at dpdk.org Subject: Re: [dpdk-dev] [PATCH 1/2] igb/ixgbe: ETH_MQ_RX_NONE should disable RSS On 11/19/2013 02:03 PM, Maxime Leroy wrote: > As explained in rte_ethdev.h, ETH_MQ_RX_NONE allows to not choose > between RSS, DCB or VMDQ modes for the selection of a rx

[dpdk-dev] [PATCH 1/2] igb/ixgbe: ETH_MQ_RX_NONE should disable RSS

2013-11-20 Thread Thomas Monjalon
20/11/2013 11:06, Prashant Upadhyaya : > So if I have multiple queues and was using ETH_MQ_RX_NONE (and therefore > utilizing RSS), it will stop working for me now after this patch ? Yes, you should use ETH_MQ_RX_RSS to explicitly enable RSS. >

[dpdk-dev] [PATCH 1/2] igb/ixgbe: ETH_MQ_RX_NONE should disable RSS

2013-11-20 Thread Thomas Monjalon
20/11/2013 10:49, Ivan Boule : > On 11/19/2013 02:03 PM, Maxime Leroy wrote: > > As explained in rte_ethdev.h, ETH_MQ_RX_NONE allows to not choose > > between RSS, DCB > > or VMDQ modes for the selection of a rx queue. > > > > But the igb/ixgbe code always silently selects the RSS mode with > > ET

[dpdk-dev] [PATCH 1/2] igb/ixgbe: ETH_MQ_RX_NONE should disable RSS

2013-11-20 Thread Ivan Boule
On 11/19/2013 02:03 PM, Maxime Leroy wrote: > As explained in rte_ethdev.h, ETH_MQ_RX_NONE allows to not choose > between RSS, DCB > or VMDQ modes for the selection of a rx queue. > > But the igb/ixgbe code always silently selects the RSS mode with > ETH_MQ_RX_NONE. This patch > fixes this incohe

[dpdk-dev] [PATCH 1/2] igb/ixgbe: ETH_MQ_RX_NONE should disable RSS

2013-11-19 Thread Maxime Leroy
As explained in rte_ethdev.h, ETH_MQ_RX_NONE allows to not choose RSS, DCB or VMDQ mode to select the rx queues. But the igb/ixgbe code always select RSS mode with ETH_MQ_RX_NONE. This patch fixes this incoherence between the api and the source code. Signed-off-by: Maxime Leroy --- lib/librte_p