diff options
author | Horatiu Vultur <horatiu.vultur@microchip.com> | 2022-01-04 18:33:38 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2022-01-05 14:25:13 +0300 |
commit | 7aacb894b1adf8b0f46e6370417350a6bac20c55 (patch) | |
tree | 371e23bb2c51584b2fc93f9e45f534d531055bb1 /drivers/net/ethernet/microchip/lan966x/Makefile | |
parent | 11b0a27772f5ea294816aabe0f47892ef9b8e65b (diff) | |
download | linux-7aacb894b1adf8b0f46e6370417350a6bac20c55.tar.xz |
net: lan966x: Extend switchdev with mdb support
Extend lan966x driver with mdb support by implementing the switchdev
calls: SWITCHDEV_OBJ_ID_PORT_MDB and SWITCHDEV_OBJ_ID_HOST_MDB.
It is allowed to add both ipv4/ipv6 entries and l2 entries. To add
ipv4/ipv6 entries is not required to use the PGID table while for l2
entries it is required. The PGID table is much smaller than MAC table
so only fewer l2 entries can be added.
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/lan966x/Makefile')
-rw-r--r-- | drivers/net/ethernet/microchip/lan966x/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/microchip/lan966x/Makefile b/drivers/net/ethernet/microchip/lan966x/Makefile index ec1a1fa8b0d5..040cfff9f577 100644 --- a/drivers/net/ethernet/microchip/lan966x/Makefile +++ b/drivers/net/ethernet/microchip/lan966x/Makefile @@ -7,4 +7,4 @@ obj-$(CONFIG_LAN966X_SWITCH) += lan966x-switch.o lan966x-switch-objs := lan966x_main.o lan966x_phylink.o lan966x_port.o \ lan966x_mac.o lan966x_ethtool.o lan966x_switchdev.o \ - lan966x_vlan.o lan966x_fdb.o + lan966x_vlan.o lan966x_fdb.o lan966x_mdb.o |