diff options
author | Florian Fainelli <f.fainelli@gmail.com> | 2017-01-30 20:48:43 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-01-30 22:49:58 +0300 |
commit | 7318166cacad158b46240f66250d7cc5a481653b (patch) | |
tree | 3362ad3da2cbfccbc591a04a47d9e5846a0e620f /drivers/net/dsa/Makefile | |
parent | 853458087ef0e5300fa978dccef40b73d411c6e6 (diff) | |
download | linux-7318166cacad158b46240f66250d7cc5a481653b.tar.xz |
net: dsa: bcm_sf2: Add support for ethtool::rxnfc
Add support for configuring classification rules using the
ethtool::rxnfc API. This is useful to program the switch's CFP/TCAM to
redirect specific packets to specific ports/queues for instance. For
now, we allow any kind of IPv4 5-tuple matching.
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/dsa/Makefile')
-rw-r--r-- | drivers/net/dsa/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/dsa/Makefile b/drivers/net/dsa/Makefile index 8346e4f9737a..da9893478e21 100644 --- a/drivers/net/dsa/Makefile +++ b/drivers/net/dsa/Makefile @@ -1,5 +1,6 @@ obj-$(CONFIG_NET_DSA_MV88E6060) += mv88e6060.o obj-$(CONFIG_NET_DSA_BCM_SF2) += bcm_sf2.o +bcm_sf2-objs += bcm_sf2_cfp.o obj-$(CONFIG_NET_DSA_QCA8K) += qca8k.o obj-y += b53/ |