From patchwork Fri Apr 5 09:05:31 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Qi Zhang X-Patchwork-Id: 52324 X-Patchwork-Delegate: ferruh.yigit@amd.com Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id A8A8C1B493; Fri, 5 Apr 2019 11:03:45 +0200 (CEST) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 8A6E21B48A for ; Fri, 5 Apr 2019 11:03:40 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga006.jf.intel.com ([10.7.209.51]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 05 Apr 2019 02:03:40 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.60,312,1549958400"; d="scan'208";a="133191653" Received: from dpdk51.sh.intel.com ([10.67.110.245]) by orsmga006.jf.intel.com with ESMTP; 05 Apr 2019 02:03:39 -0700 From: Qi Zhang To: ferruh.yigit@intel.com, qi.z.zhang@intel.com, bernard.iremonger@intel.com Cc: dev@dpdk.org, Qiming Yang Date: Fri, 5 Apr 2019 17:05:31 +0800 Message-Id: <20190405090535.7604-2-qi.z.zhang@intel.com> X-Mailer: git-send-email 2.13.6 In-Reply-To: <20190405090535.7604-1-qi.z.zhang@intel.com> References: <20190405090535.7604-1-qi.z.zhang@intel.com> Subject: [dpdk-dev] [PATCH v5 1/5] ethdev: add VXLAN-GPE macro X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" From: Qiming Yang This patch added VXLAN-GPE macro in rte_eth_tunnel_type. This patch will break the ABI, RTE_TUNNEL_TYPE_MAX will have problem when running with new version of the ethdev shared library. Signed-off-by: Qiming Yang --- lib/librte_ethdev/rte_eth_ctrl.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/librte_ethdev/rte_eth_ctrl.h b/lib/librte_ethdev/rte_eth_ctrl.h index 5ea8ae24c..b3416341b 100644 --- a/lib/librte_ethdev/rte_eth_ctrl.h +++ b/lib/librte_ethdev/rte_eth_ctrl.h @@ -229,6 +229,7 @@ enum rte_eth_tunnel_type { RTE_TUNNEL_TYPE_NVGRE, RTE_TUNNEL_TYPE_IP_IN_GRE, RTE_L2_TUNNEL_TYPE_E_TAG, + RTE_TUNNEL_TYPE_VXLAN_GPE, RTE_TUNNEL_TYPE_MAX, };