From patchwork Wed Nov 17 18:04:03 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yan Xia X-Patchwork-Id: 104458 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 6E5FAA0C41; Wed, 17 Nov 2021 11:02:56 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6726A41174; Wed, 17 Nov 2021 11:02:56 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 4BFE24068C for ; Wed, 17 Nov 2021 11:02:55 +0100 (CET) X-IronPort-AV: E=McAfee;i="6200,9189,10170"; a="221132429" X-IronPort-AV: E=Sophos;i="5.87,241,1631602800"; d="scan'208";a="221132429" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Nov 2021 02:02:54 -0800 X-IronPort-AV: E=Sophos;i="5.87,241,1631602800"; d="scan'208";a="549038614" Received: from unknown (HELO dpdk.lan) ([10.240.183.77]) by fmsmga008-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Nov 2021 02:02:53 -0800 From: Yan Xia To: dts@dpdk.org Cc: Yan Xia Subject: [dts][PATCH V1 1/4] test_plans/ipgre_test_plan: delete GRE_packet_filter Date: Wed, 17 Nov 2021 18:04:03 +0000 Message-Id: <20211117180405.116883-2-yanx.xia@intel.com> X-Mailer: git-send-email 2.33.1 In-Reply-To: <20211117180405.116883-1-yanx.xia@intel.com> References: <20211117180405.116883-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 GRE_packet_filter 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 ======================================