mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-20 17:44:33 +08:00
67ab160ed0
Default rules are low-priority switching rules which the hardware uses in the absence of higher-priority rules. Each representor requires a corresponding rule matching traffic from its representee VF and delivering to the PF (where a check on INGRESS_MPORT in __ef100_rx_packet() will direct it to the representor). No rule is required in the reverse direction, because representor TX uses a TX override descriptor to bypass the MAE and deliver directly to the VF. Since inserting any rule into the MAE disables the firmware's own default rules, also insert a pair of rules to connect the PF to the physical network port and vice-versa. Signed-off-by: Edward Cree <ecree.xilinx@gmail.com> Signed-off-by: Jakub Kicinski <kuba@kernel.org>
18 lines
634 B
Makefile
18 lines
634 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
sfc-y += efx.o efx_common.o efx_channels.o nic.o \
|
|
ef10.o \
|
|
tx.o tx_common.o tx_tso.o rx.o rx_common.o \
|
|
selftest.o ethtool.o ethtool_common.o ptp.o \
|
|
mcdi.o mcdi_port.o mcdi_port_common.o \
|
|
mcdi_functions.o mcdi_filters.o mcdi_mon.o \
|
|
ef100.o ef100_nic.o ef100_netdev.o \
|
|
ef100_ethtool.o ef100_rx.o ef100_tx.o
|
|
sfc-$(CONFIG_SFC_MTD) += mtd.o
|
|
sfc-$(CONFIG_SFC_SRIOV) += sriov.o ef10_sriov.o ef100_sriov.o ef100_rep.o \
|
|
mae.o tc.o
|
|
|
|
obj-$(CONFIG_SFC) += sfc.o
|
|
|
|
obj-$(CONFIG_SFC_FALCON) += falcon/
|
|
obj-$(CONFIG_SFC_SIENA) += siena/
|