From patchwork Thu Dec 15 06:42:00 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lingli Chen X-Patchwork-Id: 120920 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 6457BA0544; Thu, 15 Dec 2022 08:39:52 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 5C12C410EA; 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 3D59040223 for ; Thu, 15 Dec 2022 08:39:50 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1671089990; x=1702625990; h=from:to:cc:subject:date:message-id:in-reply-to: references; bh=Zi6c5N28QRd6/hWuS1Vw4K0qnaoB/933CQ55P4hrpF8=; b=gYkClDv42VbOpz0FgopthWwBLqUqwiiVsOitrMmEAileqHL4wGdqDkp/ me6LoDMyD68czbdXaj2KpnaUf2q1AyeiXAPDBOPxv7Oe/IIbBesgPlEVa WlF7mKKZKPALSiyjfk7ltnlOfTA/Wfi8gnqDa5Gc81IGZg4kpLwLyEICl 92V6XUmWZaqjhocqlSDwP4bkY1gRr26CTpYqcmRYTscmJA84tHLPN/WYZ cYmXOv26K4edQ91987oEXxYXzCu0PnSW1VftLFDdvwSSqg7kYx0lqON4i bue9eXw5fxO3pUNhW3LUzTPf5dr8Abtbvl100wiD47SCSLorRpniZl6lw w==; X-IronPort-AV: E=McAfee;i="6500,9779,10561"; a="345697256" X-IronPort-AV: E=Sophos;i="5.96,246,1665471600"; d="scan'208";a="345697256" 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:48 -0800 X-IronPort-AV: E=McAfee;i="6500,9779,10561"; a="651448217" X-IronPort-AV: E=Sophos;i="5.96,246,1665471600"; d="scan'208";a="651448217" 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:21 -0800 From: Lingli Chen To: dts@dpdk.org Cc: zhiminx.huang@intel.com, Lingli Chen Subject: [dts][PATCH V1 4/8] tests/ddp_l2tpv3: remove --pkt-filter-mode sync dpdk change Date: Thu, 15 Dec 2022 01:42:00 -0500 Message-Id: <20221215064204.30802-4-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 --- tests/TestSuite_ddp_l2tpv3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_ddp_l2tpv3.py b/tests/TestSuite_ddp_l2tpv3.py index ef50824b..7b63e641 100644 --- a/tests/TestSuite_ddp_l2tpv3.py +++ b/tests/TestSuite_ddp_l2tpv3.py @@ -53,7 +53,7 @@ class TestDdpL2tpv3(TestCase): """ self.dut_testpmd.start_testpmd( "Default", - "--pkt-filter-mode=perfect --port-topology=chained \ + "--port-topology=chained \ --txq=%s --rxq=%s --disable-rss" % (self.PF_QUEUE, self.PF_QUEUE), )