diff options
author | David Ward <david.ward@ll.mit.edu> | 2013-02-08 17:17:07 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-02-10 20:37:22 -0500 |
commit | 86fbe9bb599fcaf7e92e38dbfdad0414a2d68f7d (patch) | |
tree | 2e8b109de2f0e3b5c1b59f8dd2737388109ef982 /net/8021q/Makefile | |
parent | febf018d22347b5df94066bca05d0c11a84e839d (diff) | |
download | linux-3.10-86fbe9bb599fcaf7e92e38dbfdad0414a2d68f7d.tar.gz linux-3.10-86fbe9bb599fcaf7e92e38dbfdad0414a2d68f7d.tar.bz2 linux-3.10-86fbe9bb599fcaf7e92e38dbfdad0414a2d68f7d.zip |
net/8021q: Implement Multiple VLAN Registration Protocol (MVRP)
Initial implementation of the Multiple VLAN Registration Protocol
(MVRP) from IEEE 802.1Q-2011, based on the existing implementation
of the GARP VLAN Registration Protocol (GVRP).
Signed-off-by: David Ward <david.ward@ll.mit.edu>
Acked-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/8021q/Makefile')
-rw-r--r-- | net/8021q/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/8021q/Makefile b/net/8021q/Makefile index 9f4f174ead1..7bc8db08d7e 100644 --- a/net/8021q/Makefile +++ b/net/8021q/Makefile @@ -6,5 +6,6 @@ obj-$(CONFIG_VLAN_8021Q) += 8021q.o 8021q-y := vlan.o vlan_dev.o vlan_netlink.o 8021q-$(CONFIG_VLAN_8021Q_GVRP) += vlan_gvrp.o +8021q-$(CONFIG_VLAN_8021Q_MVRP) += vlan_mvrp.o 8021q-$(CONFIG_PROC_FS) += vlanproc.o |