eal: fix version map experimental section
authorHarry van Haaren <harry.van.haaren@intel.com>
Wed, 25 Oct 2017 12:29:49 +0000 (13:29 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Mon, 6 Nov 2017 23:15:32 +0000 (00:15 +0100)
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 <harry.van.haaren@intel.com>
lib/librte_eal/rte_eal_version.map

index a974a54..10f4452 100644 (file)
@@ -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;