numam-dpdk/lib/librte_kni/rte_kni_version.map
Dan Gora c6fd54f28c kni: add function to set link state on kernel interface
Add a new API function to KNI, rte_kni_update_link() to allow DPDK
applications to update the link status for KNI network interfaces in
the linux kernel.

Signed-off-by: Dan Gora <dg@adax.com>
Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>
2018-10-26 19:46:15 +02:00

24 lines
306 B
Plaintext

DPDK_2.0 {
global:
rte_kni_alloc;
rte_kni_close;
rte_kni_get;
rte_kni_get_name;
rte_kni_handle_request;
rte_kni_init;
rte_kni_register_handlers;
rte_kni_release;
rte_kni_rx_burst;
rte_kni_tx_burst;
rte_kni_unregister_handlers;
local: *;
};
EXPERIMENTAL {
global:
rte_kni_update_link;
};