From patchwork Wed Oct 25 12:29:49 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Van Haaren, Harry" X-Patchwork-Id: 30863 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 CA9021B93E; Wed, 25 Oct 2017 14:29:20 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 8C6712BD3 for ; Wed, 25 Oct 2017 14:29:19 +0200 (CEST) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga105.fm.intel.com with ESMTP; 25 Oct 2017 05:29:18 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.43,431,1503385200"; d="scan'208";a="913580485" Received: from silpixa00398672.ir.intel.com ([10.237.223.128]) by FMSMGA003.fm.intel.com with ESMTP; 25 Oct 2017 05:29:17 -0700 From: Harry van Haaren To: dev@dpdk.org Cc: thomas@monjalon.net, Harry van Haaren , santosh.shukla@caviumnetworks.com Date: Wed, 25 Oct 2017 13:29:49 +0100 Message-Id: <1508934589-161739-1-git-send-email-harry.van.haaren@intel.com> X-Mailer: git-send-email 2.7.4 Subject: [dpdk-dev] [PATCH] eal: fix version map experimental export section 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" Before this commit, the EXPERIMENTAL version of ABI derived from the DPDK_17.08 tag. In parallel there was a DPDK_17.11 tag. Experimental map should always derive from the latest ABI, so this patch moves the 17.11 section above EXPERIMENTAL, and updates EXPERIMENTAL to derive from the 17.11 map. Fixes: aadc3eb002d3 ("pci: export match function") Cc: santosh.shukla@caviumnetworks.com Signed-off-by: Harry van Haaren --- lib/librte_eal/rte_eal_version.map | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/lib/librte_eal/rte_eal_version.map b/lib/librte_eal/rte_eal_version.map index 8802b28..c0df978 100644 --- a/lib/librte_eal/rte_eal_version.map +++ b/lib/librte_eal/rte_eal_version.map @@ -201,6 +201,19 @@ DPDK_17.08 { } DPDK_17.05; +DPDK_17.11 { + global: + + rte_bus_get_iommu_class; + rte_eal_iova_mode; + rte_eal_mbuf_default_mempool_ops; + rte_lcore_has_role; + rte_memcpy_ptr; + rte_pci_get_iommu_class; + rte_pci_match; + +} DPDK_17.08; + EXPERIMENTAL { global: @@ -234,17 +247,4 @@ EXPERIMENTAL { rte_service_set_stats_enable; rte_service_start_with_defaults; -} DPDK_17.08; - -DPDK_17.11 { - global: - - rte_bus_get_iommu_class; - rte_eal_iova_mode; - rte_eal_mbuf_default_mempool_ops; - rte_lcore_has_role; - rte_memcpy_ptr; - rte_pci_get_iommu_class; - rte_pci_match; - -} DPDK_17.08; +} DPDK_17.11;