diff options
author | David Ward <david.ward@ll.mit.edu> | 2013-02-08 12:17:07 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-02-10 20:37:22 -0500 |
commit | 86fbe9bb599fcaf7e92e38dbfdad0414a2d68f7d (patch) | |
tree | 2e8b109de2f0e3b5c1b59f8dd2737388109ef982 /net/8021q/Kconfig | |
parent | febf018d22347b5df94066bca05d0c11a84e839d (diff) |
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/Kconfig')
-rw-r--r-- | net/8021q/Kconfig | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net/8021q/Kconfig b/net/8021q/Kconfig index fa073a54963e..8f7517df41a5 100644 --- a/net/8021q/Kconfig +++ b/net/8021q/Kconfig | |||
@@ -27,3 +27,14 @@ config VLAN_8021Q_GVRP | |||
27 | automatic propagation of registered VLANs to switches. | 27 | automatic propagation of registered VLANs to switches. |
28 | 28 | ||
29 | If unsure, say N. | 29 | If unsure, say N. |
30 | |||
31 | config VLAN_8021Q_MVRP | ||
32 | bool "MVRP (Multiple VLAN Registration Protocol) support" | ||
33 | depends on VLAN_8021Q | ||
34 | select MRP | ||
35 | help | ||
36 | Select this to enable MVRP end-system support. MVRP is used for | ||
37 | automatic propagation of registered VLANs to switches; it | ||
38 | supersedes GVRP and is not backwards-compatible. | ||
39 | |||
40 | If unsure, say N. | ||