numam-dpdk/lib/librte_lpm/rte_lpm_version.map
Vladyslav Buslov d89a5bce1d lpm6: extend next hop field
This patch extend next_hop field from 8-bits to 21-bits in LPM library
for IPv6.

Added versioning symbols to functions and updated
library and applications that have a dependency on LPM library.

Signed-off-by: Vladyslav Buslov <vladyslav.buslov@harmonicinc.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
2017-03-15 18:49:41 +01:00

47 lines
683 B
Plaintext

DPDK_2.0 {
global:
rte_lpm_add;
rte_lpm_create;
rte_lpm_delete;
rte_lpm_delete_all;
rte_lpm_find_existing;
rte_lpm_free;
rte_lpm_is_rule_present;
rte_lpm6_add;
rte_lpm6_create;
rte_lpm6_delete;
rte_lpm6_delete_all;
rte_lpm6_delete_bulk_func;
rte_lpm6_find_existing;
rte_lpm6_free;
rte_lpm6_is_rule_present;
rte_lpm6_lookup;
rte_lpm6_lookup_bulk_func;
local: *;
};
DPDK_16.04 {
global:
rte_lpm_add;
rte_lpm_find_existing;
rte_lpm_create;
rte_lpm_free;
rte_lpm_is_rule_present;
rte_lpm_delete;
rte_lpm_delete_all;
} DPDK_2.0;
DPDK_17.05 {
global:
rte_lpm6_add;
rte_lpm6_is_rule_present;
rte_lpm6_lookup;
rte_lpm6_lookup_bulk_func;
} DPDK_16.04;