From patchwork Thu Dec 29 07:12:24 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lingli Chen X-Patchwork-Id: 121465 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 B415DA0542; Thu, 29 Dec 2022 09:11:17 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7A14642B71; Thu, 29 Dec 2022 09:11:17 +0100 (CET) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mails.dpdk.org (Postfix) with ESMTP id D582D41181 for ; Thu, 29 Dec 2022 09:11:15 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1672301476; x=1703837476; h=from:to:cc:subject:date:message-id; bh=tsoDjg2avJ0RzXSGqcH5hFNO6tbZgLVnDk3rywrSWtQ=; b=Zyq0G/+9wXKlUYzTna/66Ku2x8lgjK6AiLOSEqu7PSxGYfho+NmduSoe 0uxPOUGKNnoeK6lG2wA+aIXLRJ4eQsC4DfuqXzvzKp1weHBw+hHvG13Kl tJmagZyBQcD52dIN3KehoR9HPod1xrCurzoexFTzuPneI0cU0wil6F/Y0 9v7dQT/XH+OBXdbfCkj4+7slgwUyCBIpOQpVcP7Xf9fkRsXNcjjsoIH2Q tzuDTo7Jy0+ADRopaTY4GCPzSIH4I+KhGmbK6n5Jkp5PwzTiCThBEmeKq aSrnPjFcTkzUOqmTeAroI91ARIdV9ArAbRm8SGFf/wqEcyfHI9fl8nC2j A==; X-IronPort-AV: E=McAfee;i="6500,9779,10574"; a="319715845" X-IronPort-AV: E=Sophos;i="5.96,283,1665471600"; d="scan'208";a="319715845" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 29 Dec 2022 00:11:14 -0800 X-IronPort-AV: E=McAfee;i="6500,9779,10574"; a="684139550" X-IronPort-AV: E=Sophos;i="5.96,283,1665471600"; d="scan'208";a="684139550" Received: from unknown (HELO localhost.localdomain) ([10.239.252.99]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 29 Dec 2022 00:11:12 -0800 From: Lingli Chen To: dts@dpdk.org Cc: zhiminx.huang@intel.com, Lingli Chen Subject: [dts][PATCH V1] test_plans/*: remove --pkt-filter-mode sync dpdk change Date: Thu, 29 Dec 2022 02:12:24 -0500 Message-Id: <20221229071224.70651-1-linglix.chen@intel.com> X-Mailer: git-send-email 2.17.1 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 --- test_plans/ddp_gtp_test_plan.rst | 7 +++---- test_plans/flow_filtering_test_plan.rst | 1 - tests/TestSuite_ddp_gtp.py | 2 +- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/test_plans/ddp_gtp_test_plan.rst b/test_plans/ddp_gtp_test_plan.rst index ac694de2..2dd44640 100644 --- a/test_plans/ddp_gtp_test_plan.rst +++ b/test_plans/ddp_gtp_test_plan.rst @@ -49,12 +49,11 @@ Prerequisites 5. Login vm0, then bind VF0 device to igb_uio driver. 6. Start testpmd on host and vm0, host supports flow director and cloud - filter, VM supports cloud filter. If test PF flow director, need to add - --pkt-filter-mode=perfect on testpmd to enable flow director, set chained - port topology mode, add txq/rxq to enable multi-queues. In general, PF's + filter, VM supports cloud filter. + set chained port topology mode, add txq/rxq to enable multi-queues. In general, PF's max queue is 64, VF's max queue is 4:: - .//app/dpdk-testpmd -c f -n 4 -- -i --pkt-filter-mode=perfect --port-topology=chained --txq=64 --rxq=64 + .//app/dpdk-testpmd -c f -n 4 -- -i --port-topology=chained --txq=64 --rxq=64 Test Case: Load dynamic device personalization diff --git a/test_plans/flow_filtering_test_plan.rst b/test_plans/flow_filtering_test_plan.rst index e4f7fe19..5bd88a48 100644 --- a/test_plans/flow_filtering_test_plan.rst +++ b/test_plans/flow_filtering_test_plan.rst @@ -18,7 +18,6 @@ http://doc.dpdk.org/guides/sample_app_ug/flow_filtering.html The matching item is dst IP address: "192.168.1.1". The match action is entering the queue 1. -The flow example can specify fdir_mode by '--pkt-filter-mode',if not assign fdir_mode, IXGBE will not support flow example. IGB not support flow example. ICE support flow example. diff --git a/tests/TestSuite_ddp_gtp.py b/tests/TestSuite_ddp_gtp.py index d0c3b560..22e73318 100644 --- a/tests/TestSuite_ddp_gtp.py +++ b/tests/TestSuite_ddp_gtp.py @@ -157,7 +157,7 @@ class TestDdpGtp(TestCase): """ self.dut_testpmd.start_testpmd( "Default", - "--pkt-filter-mode=perfect --port-topology=chained \ + "--port-topology=chained \ --txq=%s --rxq=%s" % (self.PF_QUEUE, self.PF_QUEUE), )