From patchwork Mon Aug 15 07:12:53 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Qi Zhang X-Patchwork-Id: 115014 X-Patchwork-Delegate: qi.z.zhang@intel.com 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 3E5C1A00C3; Mon, 15 Aug 2022 01:08:41 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 5848742CC7; Mon, 15 Aug 2022 01:04:40 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mails.dpdk.org (Postfix) with ESMTP id F231742BC8 for ; Mon, 15 Aug 2022 01:04:38 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1660518279; x=1692054279; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=WYl0Zsf8B3ZtZjsYDd/5b3cUHEV/efTU1YBAdYkl1A4=; b=BJDmfUA0s0JEfvRC9Fqyf6j0W02YdTSoFDzJn9DEAsahGgE+bOAkTK/Z v20Wg5dbm95TiKSiIidy04+zaZZaZNFfPGsTDIMSEdIlZVrofQqNncQgN aU6KINs/BtZSarkVAzTTv0I0t16ebLeekDsuEOBKlMJgUjxqkDf7W2mvn Sy0YTnGhpEzdqaT3aU1qPDyQF1pwtha937IhsCaO/trVEmEx+gWyNU1ZZ gcb/sBaG+BcBnARF69rS3LyfTju/eBdRwZt8QbECSl8f/dISTMoyyKKC7 bdRdlQoHu6FITIQdAve4tAiraTvdrNHXwN1YO1MrueL+Rs5+XFAFCFKhL Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10439"; a="293128797" X-IronPort-AV: E=Sophos;i="5.93,237,1654585200"; d="scan'208";a="293128797" Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Aug 2022 16:04:38 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.93,237,1654585200"; d="scan'208";a="934296887" Received: from dpdk-qzhan15-test02.sh.intel.com ([10.67.115.4]) by fmsmga005.fm.intel.com with ESMTP; 14 Aug 2022 16:04:37 -0700 From: Qi Zhang To: qiming.yang@intel.com Cc: dev@dpdk.org, Qi Zhang , Michal Swiatkowski Subject: [PATCH 57/70] net/ice/base: add GRE Tap tunnel type Date: Mon, 15 Aug 2022 03:12:53 -0400 Message-Id: <20220815071306.2910599-58-qi.z.zhang@intel.com> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20220815071306.2910599-1-qi.z.zhang@intel.com> References: <20220815071306.2910599-1-qi.z.zhang@intel.com> MIME-Version: 1.0 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Added new tunnel type to support NvGRE Signed-off-by: Michal Swiatkowski Signed-off-by: Qi Zhang --- drivers/net/ice/base/ice_flex_type.h | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/ice/base/ice_flex_type.h b/drivers/net/ice/base/ice_flex_type.h index 2855d67831..070d2aeb1e 100644 --- a/drivers/net/ice/base/ice_flex_type.h +++ b/drivers/net/ice/base/ice_flex_type.h @@ -441,6 +441,7 @@ struct ice_prof_redir_section { enum ice_tunnel_type { TNL_VXLAN = 0, TNL_GENEVE, + TNL_GRETAP, TNL_ECPRI, TNL_GTP, TNL_LAST = 0xFF,