On Mon, 1 Nov 2021 16:10:13 +0000 Konstantin Ananyev <konstantin.anan...@intel.com> wrote:
> rte_bpf_convert() implementation depends on libpcap. > Right now it is defined only when this library is installed and > RTE_PORT_PCAP is defined. > Fix that by providing for such case stub rte_bpf_convert() > implementation that will always return an error. > Also move stub for another function (rte_bpf_elf_load) into > the same place (bpf_stub.c). > > Fixes: 2eccf6afbea9 ("bpf: add function to convert classic BPF to DPDK BPF") > > Signed-off-by: Konstantin Ananyev <konstantin.anan...@intel.com> Should also change dumpcap to print more complete error? diff --git a/app/dumpcap/main.c b/app/dumpcap/main.c index baf9eee46666..fff460eee518 100644 --- a/app/dumpcap/main.c +++ b/app/dumpcap/main.c @@ -285,7 +285,7 @@ static void compile_filter(void) bpf_prm = rte_bpf_convert(&bf); if (bpf_prm == NULL) rte_exit(EXIT_FAILURE, - "bpf convert failed\n"); + "bpf convert failed: %s\n", rte_strerror(rte_errno)); if (dump_bpf) { printf("cBPF program (%u insns)\n", bf.bf_len);