From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id BEE96325F; Wed, 5 Sep 2018 11:44:13 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 05 Sep 2018 02:44:12 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.53,333,1531810800"; d="scan'208";a="67687193" Received: from unknown (HELO localhost.localdomain.localdomain) ([10.224.122.193]) by fmsmga007.fm.intel.com with ESMTP; 05 Sep 2018 02:44:10 -0700 From: Nikhil Rao To: jerin.jacob@caviumnetworks.com Cc: dev@dpdk.org, Nikhil Rao , stable@dpdk.org Date: Wed, 5 Sep 2018 15:12:06 +0530 Message-Id: <1536140526-7668-1-git-send-email-nikhil.rao@intel.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dpdk-dev] [PATCH] test/event: remove RSS config in eth Rx adapter test X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Sep 2018 09:44:14 -0000 Remove RSS config as it is not required (this also fixes an error with a hardcoded RSS config not supported by the NIC) Signed-off-by: Nikhil Rao Fixes: 8863a1fbfc66 ("ethdev: add supported hash function check") CC: stable@dpdk.org --- test/test/test_event_eth_rx_adapter.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/test/test/test_event_eth_rx_adapter.c b/test/test/test_event_eth_rx_adapter.c index 2337e54..4cca77f 100644 --- a/test/test/test_event_eth_rx_adapter.c +++ b/test/test/test_event_eth_rx_adapter.c @@ -117,13 +117,6 @@ struct event_eth_rx_adapter_test_params { .mq_mode = ETH_MQ_RX_RSS, .max_rx_pkt_len = ETHER_MAX_LEN }, - .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); -- 1.8.3.1