From patchwork Thu Nov 18 10:35:35 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yan Xia X-Patchwork-Id: 104493 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 91917A0C41; Thu, 18 Nov 2021 03:34:33 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7FA4240687; Thu, 18 Nov 2021 03:34:33 +0100 (CET) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mails.dpdk.org (Postfix) with ESMTP id 38CB340395 for ; Thu, 18 Nov 2021 03:34:31 +0100 (CET) X-IronPort-AV: E=McAfee;i="6200,9189,10171"; a="234042644" X-IronPort-AV: E=Sophos;i="5.87,243,1631602800"; d="scan'208";a="234042644" Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Nov 2021 18:34:30 -0800 X-IronPort-AV: E=Sophos;i="5.87,243,1631602800"; d="scan'208";a="646255454" Received: from unknown (HELO dpdk.lan) ([10.240.183.77]) by fmsmga001-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Nov 2021 18:34:29 -0800 From: Yan Xia To: dts@dpdk.org Cc: Yan Xia Subject: [dts][PATCH V2 1/4] test_plans/ipgre_test_plan: delete GRE_packet_filter Date: Thu, 18 Nov 2021 10:35:35 +0000 Message-Id: <20211118103538.117758-2-yanx.xia@intel.com> X-Mailer: git-send-email 2.33.1 In-Reply-To: <20211118103538.117758-1-yanx.xia@intel.com> References: <20211118103538.117758-1-yanx.xia@intel.com> MIME-Version: 1.0 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 delete test case that legcay command not be supported and not new command to replace dpdk commit-id:251baec36 ethdev: remove legacy tunnel filter type support Signed-off-by: Yan Xia --- test_plans/ipgre_test_plan.rst | 37 ---------------------------------- 1 file changed, 37 deletions(-) diff --git a/test_plans/ipgre_test_plan.rst b/test_plans/ipgre_test_plan.rst index c7ab602b..3a466b75 100644 --- a/test_plans/ipgre_test_plan.rst +++ b/test_plans/ipgre_test_plan.rst @@ -119,43 +119,6 @@ Send packet as table listed and packet type match each layer:: | Yes | Ipv6 | GRE | Ipv6 | Sctp | +------------+----------+-----------+----------+-----------+ -Test Case 3: GRE packet filter -============================== - -Start testpmd with multi queues:: - - testpmd -c ff -n 3 -- -i --rxq=4 --txq=4 - testpmd> set fwd rxonly - testpmd> set nbcore 4 - testpmd> set verbose 1 - testpmd> start - -Add GRE filter that forward inner ip address 0.0.0.0 to queue 3:: - - testpmd> tunnel_filter add 0 XX:XX:XX:XX:XX:XX YY:YY:YY:YY:YY:YY \ - 0.0.0.0 1 ipingre iip 0 3 - -Send packet inner ip address matched and check packet received by queue 3:: - - p = Ether()/IP()/GRE()/IP(dst="0.0.0.0")/UDP() - -Remove tunnel filter and check same packet received by queue 0:: - - testpmd> tunnel_filter rm 0 XX:XX:XX:XX:XX:XX YY:YY:YY:YY:YY:YY \ - 0.0.0.0 1 ipingre iip 0 3 - -Add GRE filter that forward outer ip address 0.0.0.0 to queue 3:: - - testpmd> tunnel_filter add 0 XX:XX:XX:XX:XX:XX YY:YY:YY:YY:YY:YY \ - 0.0.0.0 1 ipingre oip 0 3 - -Send packet outer ip address matched and check packet received by queue 3. - -Remove tunnel filter and check same packet received by queue 0:: - - testpmd> tunnel_filter rm 0 XX:XX:XX:XX:XX:XX YY:YY:YY:YY:YY:YY \ - 0.0.0.0 1 ipingre oip 0 3 - Test Case 4: GRE packet chksum offload ======================================