numam-dpdk/lib/bpf/version.map
Stephen Hemminger 745b7587f9 bpf: add function to dump eBPF instructions
When debugging converted (and other) programs it is useful
to see disassembled eBPF output.

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Acked-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
Acked-by: Ray Kinsella <mdr@ashroe.eu>
2021-10-22 22:07:48 +02:00

24 lines
303 B
Plaintext

DPDK_22 {
global:
rte_bpf_destroy;
rte_bpf_elf_load;
rte_bpf_eth_rx_elf_load;
rte_bpf_eth_rx_unload;
rte_bpf_eth_tx_elf_load;
rte_bpf_eth_tx_unload;
rte_bpf_exec;
rte_bpf_exec_burst;
rte_bpf_get_jit;
rte_bpf_load;
local: *;
};
EXPERIMENTAL {
global:
rte_bpf_convert;
rte_bpf_dump;
};