9d41beed24
Add linker version script files to each DPDK library to put a stake in the ground from which we can start cleaning up API's Signed-off-by: Neil Horman <nhorman@tuxdriver.com> Acked-by: Sergio Gonzalez Monroy <sergio.gonzalez.monroy@intel.com>
20 lines
331 B
Plaintext
20 lines
331 B
Plaintext
DPDK_2.0 {
|
|
global:
|
|
|
|
rte_fbk_hash_create;
|
|
rte_fbk_hash_find_existing;
|
|
rte_fbk_hash_free;
|
|
rte_hash_add_key;
|
|
rte_hash_add_key_with_hash;
|
|
rte_hash_create;
|
|
rte_hash_del_key;
|
|
rte_hash_del_key_with_hash;
|
|
rte_hash_find_existing;
|
|
rte_hash_free;
|
|
rte_hash_lookup;
|
|
rte_hash_lookup_bulk;
|
|
rte_hash_lookup_with_hash;
|
|
|
|
local: *;
|
|
};
|