From patchwork Thu Dec 15 06:42:04 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lingli Chen X-Patchwork-Id: 120925 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 77B6EA0545; Thu, 15 Dec 2022 08:39:54 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E51B642D25; Thu, 15 Dec 2022 08:39:52 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id CD74240685 for ; Thu, 15 Dec 2022 08:39:51 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1671089992; x=1702625992; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=GPMJ1QhaTLYABYr7j2Hb/pppyZsOestVlKw1ZEa0O14=; b=CnnY8L8I3dzPOLNFhGAz3Iz5Oeku4dOWzvI4TRYojho/Ldg1iRG365NR M9wfZVj+sV+oGgqamf/rEgaMKMSFrI9wLhJOCL2qpuHw93oYFIs+UnuSE BI1u6wxs3w5tEqbI6z4AlO6glJie7sn8BNS79bhKm6UqZ3ww7KmkL1i8f 4dAnKEQkrZt+OfS8xrLo+wTXXu0iFPmyKMH09T3XlFlgrKF7wWbVHNMQO 6iMU2EUaof8Qm3wuvNjU1ATT/HkF8cZj109a7AX7fio8er/O7yF2WpNR7 8W7IaH0mi4GL5lPl30myZpxh1TWFoSYbB87MJmmODw2Fqcr8Dq708BxtC g==; X-IronPort-AV: E=McAfee;i="6500,9779,10561"; a="345697262" X-IronPort-AV: E=Sophos;i="5.96,246,1665471600"; d="scan'208";a="345697262" Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Dec 2022 23:39:49 -0800 X-IronPort-AV: E=McAfee;i="6500,9779,10561"; a="651448227" X-IronPort-AV: E=Sophos;i="5.96,246,1665471600"; d="scan'208";a="651448227" Received: from unknown (HELO localhost.localdomain) ([10.239.252.99]) by fmsmga007-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Dec 2022 23:39:27 -0800 From: Lingli Chen To: dts@dpdk.org Cc: zhiminx.huang@intel.com, Lingli Chen Subject: [dts][PATCH V1 8/8] tests/rss_to_rte_flow: remove --pkt-filter-mode sync dpdk change Date: Thu, 15 Dec 2022 01:42:04 -0500 Message-Id: <20221215064204.30802-8-linglix.chen@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20221215064204.30802-1-linglix.chen@intel.com> References: <20221215064204.30802-1-linglix.chen@intel.com> X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.29 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 According to dpdk commit 5007ac1318 (ethdev: remove deprecated Flow Director configuration) remove --pkt-filter-mode. Signed-off-by: Lingli Chen Tested-by: Weiyuan Li --- tests/TestSuite_rss_to_rte_flow.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/tests/TestSuite_rss_to_rte_flow.py b/tests/TestSuite_rss_to_rte_flow.py index 29faa5c4..7d2bfa9b 100644 --- a/tests/TestSuite_rss_to_rte_flow.py +++ b/tests/TestSuite_rss_to_rte_flow.py @@ -1173,9 +1173,7 @@ class TestRSS_to_Rteflow(TestCase): ], "NIC Unsupported: " + str(self.nic), ) - self.pmdout.start_testpmd( - "%s" % self.cores, "--rxq=8 --txq=8 --pkt-filter-mode=perfect" - ) + self.pmdout.start_testpmd("%s" % self.cores, "--rxq=8 --txq=8") self.dut.send_expect("set fwd rxonly", "testpmd> ", 120) self.dut.send_expect("set verbose 1", "testpmd> ", 120) self.dut.send_expect("start", "testpmd> ", 120) @@ -1833,9 +1831,7 @@ class TestRSS_to_Rteflow(TestCase): "--rxq=4 --txq=4 --disable-rss --port-topology=chained", ) else: - self.pmdout.start_testpmd( - "%s" % self.cores, "--rxq=8 --txq=8 --pkt-filter-mode=perfect" - ) + self.pmdout.start_testpmd("%s" % self.cores, "--rxq=8 --txq=8") self.dut.send_expect("set fwd rxonly", "testpmd> ", 120) self.dut.send_expect("set verbose 1", "testpmd> ", 120) self.dut.send_expect("start", "testpmd> ", 120)