numam-dpdk/drivers/net/cxgbe/meson.build
Shagun Agrawal 6fda3f0ddd net/cxgbe: add API to program hardware MPS table
Add API to program and manage hardware Multi Port Switch table. MPS
holds destination MAC addresses to be matched against incoming packets
for further rule processing. Packets not matching any entry in MPS table
will be dropped by default, unless the underlying port is in promiscuous
mode.

Signed-off-by: Shagun Agrawal <shaguna@chelsio.com>
Signed-off-by: Rahul Lakkireddy <rahul.lakkireddy@chelsio.com>
2018-09-14 20:08:41 +02:00

17 lines
332 B
Meson

# SPDX-License-Identifier: BSD-3-Clause
# Copyright(c) 2018 Intel Corporation
sources = files('cxgbe_ethdev.c',
'cxgbe_main.c',
'cxgbevf_ethdev.c',
'cxgbevf_main.c',
'sge.c',
'cxgbe_filter.c',
'cxgbe_flow.c',
'clip_tbl.c',
'mps_tcam.c',
'l2t.c',
'base/t4_hw.c',
'base/t4vf_hw.c')
includes += include_directories('base')