diff options
author | Vlad Yasevich <vyasevic@redhat.com> | 2013-02-13 07:00:20 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-02-13 19:42:16 -0500 |
commit | 35e03f3a0275a1ba57e432d7c948cf6f70fbb37a (patch) | |
tree | 7a86834908791e180aaf4284cd462bb7e8a1d926 /net/bridge/br_private.h | |
parent | bc9a25d21ef8bad30e259af5114ccfb845c066db (diff) |
bridge: Separate egress policy bitmap
Add an ability to configure a separate "untagged" egress
policy to the VLAN information of the bridge. This superseeds PVID
policy and makes PVID ingress-only. The policy is configured with a
new flag and is represented as a port bitmap per vlan. Egress frames
with a VLAN id in "untagged" policy bitmap would egress
the port without VLAN header.
Signed-off-by: Vlad Yasevich <vyasevic@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/bridge/br_private.h')
-rw-r--r-- | net/bridge/br_private.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/bridge/br_private.h b/net/bridge/br_private.h index 32ecfa4ef47f..6d314c4e6bcb 100644 --- a/net/bridge/br_private.h +++ b/net/bridge/br_private.h | |||
@@ -75,6 +75,7 @@ struct net_port_vlans { | |||
75 | } parent; | 75 | } parent; |
76 | struct rcu_head rcu; | 76 | struct rcu_head rcu; |
77 | unsigned long vlan_bitmap[BR_VLAN_BITMAP_LEN]; | 77 | unsigned long vlan_bitmap[BR_VLAN_BITMAP_LEN]; |
78 | unsigned long untagged_bitmap[BR_VLAN_BITMAP_LEN]; | ||
78 | u16 num_vlans; | 79 | u16 num_vlans; |
79 | }; | 80 | }; |
80 | 81 | ||