test/event: fix RSS config for eth Rx adapter
authorNikhil Rao <nikhil.rao@intel.com>
Mon, 24 Sep 2018 08:53:47 +0000 (14:23 +0530)
committerJerin Jacob <jerin.jacob@caviumnetworks.com>
Mon, 1 Oct 2018 14:53:00 +0000 (16:53 +0200)
Remove RSS config as it is not required. The hardcoded RSS
configuration also generates an error on NICs that don't support
it.

Fixes: 8863a1fbfc66 ("ethdev: add supported hash function check")
Cc: stable@dpdk.org
Signed-off-by: Nikhil Rao <nikhil.rao@intel.com>
Acked-by: Jerin Jacob <jerin.jacob@caviumnetworks.com>
test/test/test_event_eth_rx_adapter.c

index 28f2146..3c19ee0 100644 (file)
@@ -98,8 +98,7 @@ port_init_rx_intr(uint8_t port, struct rte_mempool *mp)
 {
        static const struct rte_eth_conf port_conf_default = {
                .rxmode = {
-                       .mq_mode = ETH_MQ_RX_RSS,
-                       .max_rx_pkt_len = ETHER_MAX_LEN
+                       .mq_mode = ETH_MQ_RX_NONE,
                },
                .intr_conf = {
                        .rxq = 1,
@@ -114,16 +113,8 @@ port_init(uint8_t port, struct rte_mempool *mp)
 {
        static const struct rte_eth_conf port_conf_default = {
                .rxmode = {
-                       .mq_mode = ETH_MQ_RX_RSS,
-                       .max_rx_pkt_len = ETHER_MAX_LEN
+                       .mq_mode = ETH_MQ_RX_NONE,
                },
-               .rx_adv_conf = {
-                       .rss_conf = {
-                               .rss_hf = ETH_RSS_IP |
-                                       ETH_RSS_TCP |
-                                       ETH_RSS_UDP,
-                       }
-               }
        };
 
        return port_init_common(port, &port_conf_default, mp);