numam-dpdk/lib/pdump/version.map
Stephen Hemminger 10f726efe2 pdump: support pcapng and filtering
This enhances the DPDK pdump library to support new
pcapng format and filtering via BPF.

The internal client/server protocol is changed to support
two versions: the original pdump basic version and a
new pcapng version.

The internal version number (not part of exposed API or ABI)
is intentionally increased to cause any attempt to try
mismatched primary/secondary process to fail.

Add new API to do allow filtering of captured packets with
DPDK BPF (eBPF) filter program. It keeps statistics
on packets captured, filtered, and missed (because ring was full).

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Acked-by: Reshma Pattan <reshma.pattan@intel.com>
Acked-by: Ray Kinsella <mdr@ashroe.eu>
2021-10-22 22:07:48 +02:00

21 lines
278 B
Plaintext

DPDK_22 {
global:
rte_pdump_disable;
rte_pdump_disable_by_deviceid;
rte_pdump_enable;
rte_pdump_enable_by_deviceid;
rte_pdump_init;
rte_pdump_uninit;
local: *;
};
EXPERIMENTAL {
global:
rte_pdump_enable_bpf;
rte_pdump_enable_bpf_by_deviceid;
rte_pdump_stats;
};