diff options
| author | 2013-02-08 17:17:06 +0000 | |
|---|---|---|
| committer | 2013-02-10 20:37:22 -0500 | |
| commit | febf018d22347b5df94066bca05d0c11a84e839d (patch) | |
| tree | 726ff7c7ee289736d6c36996d4340928f9594298 /include/linux/netdevice.h | |
| parent | Merge branch 'vsock' (diff) | |
| download | wireguard-linux-febf018d22347b5df94066bca05d0c11a84e839d.tar.xz wireguard-linux-febf018d22347b5df94066bca05d0c11a84e839d.zip | |
net/802: Implement Multiple Registration Protocol (MRP)
Initial implementation of the Multiple Registration Protocol (MRP)
from IEEE 802.1Q-2011, based on the existing implementation of the
Generic Attribute Registration Protocol (GARP).
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 'include/linux/netdevice.h')
| -rw-r--r-- | include/linux/netdevice.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index ab2774eb49e8..25bd46f52877 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -1290,6 +1290,8 @@ struct net_device { }; /* GARP */ struct garp_port __rcu *garp_port; + /* MRP */ + struct mrp_port __rcu *mrp_port; /* class/net/name entry */ struct device dev; |
