From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id BB3ECA04C5; Fri, 4 Sep 2020 08:03:02 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 98DD81BC25; Fri, 4 Sep 2020 08:03:02 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id 31C01DE0 for ; Fri, 4 Sep 2020 08:03:01 +0200 (CEST) IronPort-SDR: bzDvb+WngnMV75hpi5c4bfNI7OQgDZQ0pVAtZEBmBKarLnc/oR8m8gSOKP1uB3yIjv/oUkArdr gGKzhjwnp38A== X-IronPort-AV: E=McAfee;i="6000,8403,9733"; a="145398430" X-IronPort-AV: E=Sophos;i="5.76,388,1592895600"; d="scan'208";a="145398430" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 03 Sep 2020 23:03:00 -0700 IronPort-SDR: O9FZPlHF79M2PaYPogRuJm/Df+0yxuSwfApvuH8umJaRFE8gHk7wDbfghtOm9J5sZLRxJ7fYUX x0efpiodgyGQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.76,388,1592895600"; d="scan'208";a="405709233" Received: from unknown (HELO localhost.localdomain) ([10.240.183.105]) by fmsmga001.fm.intel.com with ESMTP; 03 Sep 2020 23:02:58 -0700 From: sunqin To: dts@dpdk.org Cc: sunqin Date: Fri, 4 Sep 2020 14:39:30 +0000 Message-Id: <20200904143930.28282-1-qinx.sun@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dts] [PATCH V1] tests/cvl_advanced_iavf_rss:modify rule, add 'ipv4' before rss hash type 'l3-dst-only' X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dts-bounces@dpdk.org Sender: "dts" Signed-off-by: sunqin --- tests/TestSuite_cvl_advanced_iavf_rss.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_cvl_advanced_iavf_rss.py b/tests/TestSuite_cvl_advanced_iavf_rss.py index 2f6c1cf..d9fd158 100644 --- a/tests/TestSuite_cvl_advanced_iavf_rss.py +++ b/tests/TestSuite_cvl_advanced_iavf_rss.py @@ -1024,7 +1024,7 @@ class AdvancedIavfRSSTest(TestCase): def test_vf_reset(self): self.dut_session.send_expect("ip link set %s vf 0 trust on" % self.pf_interface, "# ") self.create_testpmd_command(self.vf0_prop, pmd_param="--nb-cores=2") - flow_rule = "flow create 0 ingress pattern eth / ipv4 / end actions rss types l3-dst-only end key_len 0 queues end / end" + flow_rule = "flow create 0 ingress pattern eth / ipv4 / end actions rss types ipv4 l3-dst-only end key_len 0 queues end / end" self.pmd_output.execute_cmd(flow_rule) self.pmd_output.execute_cmd("show port 0 rss-hash") -- 2.17.1