sort symbol maps
authorDavid Marchand <david.marchand@redhat.com>
Tue, 5 Oct 2021 09:16:26 +0000 (11:16 +0200)
committerDavid Marchand <david.marchand@redhat.com>
Tue, 5 Oct 2021 15:03:37 +0000 (17:03 +0200)
Fixed with ./devtools/update-abi.sh $(cat ABI_VERSION)

Fixes: e73a7ab22422 ("net/softnic: promote manage API")
Fixes: 8f532a34c4f2 ("fib: promote API to stable")
Fixes: 4aeb92396b85 ("rib: promote API to stable")

Signed-off-by: David Marchand <david.marchand@redhat.com>
Acked-by: Ray Kinsella <mdr@ashroe.eu>
drivers/net/softnic/version.map
lib/fib/version.map
lib/rib/version.map

index cd5afcf..01e1514 100644 (file)
@@ -1,8 +1,8 @@
 DPDK_22 {
        global:
 
-       rte_pmd_softnic_run;
        rte_pmd_softnic_manage;
+       rte_pmd_softnic_run;
 
        local: *;
 };
index af76add..b23fa42 100644 (file)
@@ -1,25 +1,24 @@
 DPDK_22 {
        global:
 
-       rte_fib_add;
-       rte_fib_create;
-       rte_fib_delete;
-       rte_fib_find_existing;
-       rte_fib_free;
-       rte_fib_lookup_bulk;
-       rte_fib_get_dp;
-       rte_fib_get_rib;
-       rte_fib_select_lookup;
-
        rte_fib6_add;
        rte_fib6_create;
        rte_fib6_delete;
        rte_fib6_find_existing;
        rte_fib6_free;
-       rte_fib6_lookup_bulk;
        rte_fib6_get_dp;
        rte_fib6_get_rib;
+       rte_fib6_lookup_bulk;
        rte_fib6_select_lookup;
+       rte_fib_add;
+       rte_fib_create;
+       rte_fib_delete;
+       rte_fib_find_existing;
+       rte_fib_free;
+       rte_fib_get_dp;
+       rte_fib_get_rib;
+       rte_fib_lookup_bulk;
+       rte_fib_select_lookup;
 
        local: *;
 };
index 6eb1252..f356fe8 100644 (file)
@@ -1,21 +1,6 @@
 DPDK_22 {
        global:
 
-       rte_rib_create;
-       rte_rib_find_existing;
-       rte_rib_free;
-       rte_rib_get_depth;
-       rte_rib_get_ext;
-       rte_rib_get_ip;
-       rte_rib_get_nh;
-       rte_rib_get_nxt;
-       rte_rib_insert;
-       rte_rib_lookup;
-       rte_rib_lookup_parent;
-       rte_rib_lookup_exact;
-       rte_rib_set_nh;
-       rte_rib_remove;
-
        rte_rib6_create;
        rte_rib6_find_existing;
        rte_rib6_free;
@@ -26,10 +11,24 @@ DPDK_22 {
        rte_rib6_get_nxt;
        rte_rib6_insert;
        rte_rib6_lookup;
-       rte_rib6_lookup_parent;
        rte_rib6_lookup_exact;
-       rte_rib6_set_nh;
+       rte_rib6_lookup_parent;
        rte_rib6_remove;
+       rte_rib6_set_nh;
+       rte_rib_create;
+       rte_rib_find_existing;
+       rte_rib_free;
+       rte_rib_get_depth;
+       rte_rib_get_ext;
+       rte_rib_get_ip;
+       rte_rib_get_nh;
+       rte_rib_get_nxt;
+       rte_rib_insert;
+       rte_rib_lookup;
+       rte_rib_lookup_exact;
+       rte_rib_lookup_parent;
+       rte_rib_remove;
+       rte_rib_set_nh;
 
        local: *;
 };