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. To draw user attention, if proper implementation is disabled, warning will be thrown at meson configure stage. 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.ananyev@intel.com>
45 lines
1.1 KiB
Meson
45 lines
1.1 KiB
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2018 Intel Corporation
|
|
|
|
if is_windows
|
|
build = false
|
|
reason = 'not supported on Windows'
|
|
subdir_done()
|
|
endif
|
|
|
|
sources = files('bpf.c',
|
|
'bpf_dump.c',
|
|
'bpf_exec.c',
|
|
'bpf_load.c',
|
|
'bpf_pkt.c',
|
|
'bpf_stub.c',
|
|
'bpf_validate.c')
|
|
|
|
if arch_subdir == 'x86' and dpdk_conf.get('RTE_ARCH_64')
|
|
sources += files('bpf_jit_x86.c')
|
|
elif dpdk_conf.has('RTE_ARCH_ARM64')
|
|
sources += files('bpf_jit_arm64.c')
|
|
endif
|
|
|
|
headers = files('bpf_def.h',
|
|
'rte_bpf.h',
|
|
'rte_bpf_ethdev.h')
|
|
|
|
deps += ['mbuf', 'net', 'ethdev']
|
|
|
|
dep = dependency('libelf', required: false, method: 'pkg-config')
|
|
if dep.found()
|
|
dpdk_conf.set('RTE_LIBRTE_BPF_ELF', 1)
|
|
sources += files('bpf_load_elf.c')
|
|
ext_deps += dep
|
|
else
|
|
warning('libelf is missing, rte_bpf_elf_load API will be disabled')
|
|
endif
|
|
|
|
if dpdk_conf.has('RTE_PORT_PCAP')
|
|
sources += files('bpf_convert.c')
|
|
ext_deps += pcap_dep
|
|
else
|
|
warning('RTE_PORT_PCAP is missing, rte_bpf_convert API will be disabled')
|
|
endif
|