numam-dpdk/drivers/vdpa/sfc/meson.build
Vijay Kumar Srivastava cfeed08a0b vdpa/sfc: support MAC filter config
Add support for unicast and broadcast MAC filter configuration.

Signed-off-by: Vijay Kumar Srivastava <vsrivast@xilinx.com>
Acked-by: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>
Reviewed-by: Maxime Coquelin <maxime.coquelin@redhat.com>
2021-11-04 13:59:56 +01:00

28 lines
648 B
Meson

# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2020-2021 Xilinx, Inc.
if ((arch_subdir != 'x86' or not dpdk_conf.get('RTE_ARCH_64')) and
(arch_subdir != 'arm' or not
host_machine.cpu_family().startswith('aarch64')))
build = false
reason = 'only supported on x86_64 and aarch64'
endif
fmt_name = 'sfc_vdpa'
extra_flags = []
foreach flag: extra_flags
if cc.has_argument(flag)
cflags += flag
endif
endforeach
deps += ['common_sfc_efx', 'bus_pci']
sources = files(
'sfc_vdpa.c',
'sfc_vdpa_hw.c',
'sfc_vdpa_mcdi.c',
'sfc_vdpa_ops.c',
'sfc_vdpa_filter.c',
)