numam-dpdk/lib/kni/version.map
Ferruh Yigit b67f598e23 kni: update link only on change
'rte_kni_update_link()' updates virtual KNI interface link using kernel
sysfs interface.
If the requested link status is same as interface link status, do not
update the link status but return with success.

Signed-off-by: Ferruh Yigit <ferruh.yigit@intel.com>
2021-07-09 17:22:42 +02:00

25 lines
326 B
Plaintext

DPDK_21 {
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:
# updated in v21.08
rte_kni_update_link;
};