[dpdk-dev] [PATCH] pktgen: enable RSS on versions of DPDK after 18.05

David Christensen drc at linux.vnet.ibm.com
Thu Jun 6 23:45:22 CEST 2019


When backwards compatibility was added for earlier releases of DPDK,
default enablement of RSS was lost for versions of DPDK after 18.05.
This change restores the old behavior and enables RSS by default.

Fixes: ae81c62f194c ("backward compat to 18.02 at least")
Cc: keith.wiles at intel.com

Signed-off-by: David Christensen <drc at linux.vnet.ibm.com>
---
 app/pktgen-port-cfg.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/app/pktgen-port-cfg.c b/app/pktgen-port-cfg.c
index fb2873e..b5bded7 100644
--- a/app/pktgen-port-cfg.c
+++ b/app/pktgen-port-cfg.c
@@ -64,6 +64,12 @@ static struct rte_eth_conf default_port_conf = {
 		.offloads = DEV_RX_OFFLOAD_CRC_STRIP,
 #endif
 	},
+	.rx_adv_conf = {
+		.rss_conf = {
+			.rss_key = NULL,
+			.rss_hf = ETH_RSS_IP,
+		},
+	},
 	.txmode = {
 		.mq_mode = ETH_MQ_TX_NONE,
 	},
-- 
1.8.3.1



More information about the dev mailing list