mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-11-23 17:11:32 +00:00
Add the following TC flower filter keys to lan966x for IS2: - ipv4_addr (sip and dip) - ipv6_addr (sip and dip) - control (IPv4 fragments) - portnum (tcp and udp port numbers) - basic (L3 and L4 protocol) - vlan (outer vlan tag info) - tcp (tcp flags) - ip (tos field) As the parsing of these keys is similar between lan966x and sparx5, move the code in a separate file to be shared by these 2 chips. And put the specific parsing outside of the common functions. Signed-off-by: Horatiu Vultur <horatiu.vultur@microchip.com> Signed-off-by: David S. Miller <davem@davemloft.net>
11 lines
243 B
Makefile
11 lines
243 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Makefile for the Microchip VCAP API
|
|
#
|
|
|
|
obj-$(CONFIG_VCAP) += vcap.o
|
|
obj-$(CONFIG_VCAP_KUNIT_TEST) += vcap_model_kunit.o
|
|
vcap-$(CONFIG_DEBUG_FS) += vcap_api_debugfs.o
|
|
|
|
vcap-y += vcap_api.o vcap_tc.o
|