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
294 B
Plaintext
20 lines
294 B
Plaintext
DPDK_2.0 {
|
|
global:
|
|
|
|
rte_kni_alloc;
|
|
rte_kni_close;
|
|
rte_kni_create;
|
|
rte_kni_get;
|
|
rte_kni_get_port_id;
|
|
rte_kni_handle_request;
|
|
rte_kni_info_get;
|
|
rte_kni_init;
|
|
rte_kni_register_handlers;
|
|
rte_kni_release;
|
|
rte_kni_rx_burst;
|
|
rte_kni_tx_burst;
|
|
rte_kni_unregister_handlers;
|
|
|
|
local: *;
|
|
};
|