From aaa9e9e326d599bb17f7ea0e2d6867afb1382645 Mon Sep 17 00:00:00 2001 From: Harry van Haaren Date: Wed, 25 Oct 2017 13:29:49 +0100 Subject: [PATCH] eal: fix version map experimental section 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") Signed-off-by: Harry van Haaren --- lib/librte_eal/rte_eal_version.map | 46 +++++++++++++++--------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/lib/librte_eal/rte_eal_version.map b/lib/librte_eal/rte_eal_version.map index a974a5430d..10f4452ef9 100644 --- a/lib/librte_eal/rte_eal_version.map +++ b/lib/librte_eal/rte_eal_version.map @@ -184,6 +184,28 @@ DPDK_17.08 { } DPDK_17.05; +DPDK_17.11 { + global: + + rte_eal_create_uio_dev; + rte_bus_get_iommu_class; + rte_eal_has_pci; + rte_eal_iova_mode; + rte_eal_mbuf_default_mempool_ops; + rte_eal_using_phys_addrs; + rte_eal_vfio_intr_mode; + rte_lcore_has_role; + rte_malloc_virt2iova; + rte_mem_virt2iova; + rte_memcpy_ptr; + rte_vfio_enable; + rte_vfio_is_enabled; + rte_vfio_noiommu_is_enabled; + rte_vfio_release_device; + rte_vfio_setup_device; + +} DPDK_17.08; + EXPERIMENTAL { global: @@ -219,26 +241,4 @@ EXPERIMENTAL { rte_service_set_stats_enable; rte_service_start_with_defaults; -} DPDK_17.08; - -DPDK_17.11 { - global: - - rte_eal_create_uio_dev; - rte_bus_get_iommu_class; - rte_eal_has_pci; - rte_eal_iova_mode; - rte_eal_mbuf_default_mempool_ops; - rte_eal_using_phys_addrs; - rte_eal_vfio_intr_mode; - rte_lcore_has_role; - rte_malloc_virt2iova; - rte_mem_virt2iova; - rte_memcpy_ptr; - rte_vfio_enable; - rte_vfio_is_enabled; - rte_vfio_noiommu_is_enabled; - rte_vfio_release_device; - rte_vfio_setup_device; - -} DPDK_17.08; +} DPDK_17.11; -- 2.20.1