diff options
| author | Horatiu Vultur <horatiu.vultur@microchip.com> | 2023-02-08 14:08:39 +0100 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2023-02-10 08:03:09 +0000 |
| commit | 47400aaea4ffdc306f0fd698f8c13b02e133130e (patch) | |
| tree | 72d7375ab5257c6234135a089c3569fd63fcabc5 /drivers/net/ethernet/microchip/vcap/Makefile | |
| parent | 21119e2c6e8461677c86decc9cdbcfb14bde0741 (diff) | |
net: microchip: vcap: Add tc flower keys for lan966x
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>
Diffstat (limited to 'drivers/net/ethernet/microchip/vcap/Makefile')
| -rw-r--r-- | drivers/net/ethernet/microchip/vcap/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/microchip/vcap/Makefile b/drivers/net/ethernet/microchip/vcap/Makefile index 0adb8f5a8735..c86f20e6491f 100644 --- a/drivers/net/ethernet/microchip/vcap/Makefile +++ b/drivers/net/ethernet/microchip/vcap/Makefile @@ -7,4 +7,4 @@ 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-y += vcap_api.o vcap_tc.o |
