diff options
author | Vlad Yasevich <vyasevic@redhat.com> | 2013-02-13 12:00:20 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-02-13 19:42:16 -0500 |
commit | 35e03f3a0275a1ba57e432d7c948cf6f70fbb37a (patch) | |
tree | 7a86834908791e180aaf4284cd462bb7e8a1d926 /include/uapi | |
parent | bc9a25d21ef8bad30e259af5114ccfb845c066db (diff) | |
download | linux-35e03f3a0275a1ba57e432d7c948cf6f70fbb37a.tar.gz linux-35e03f3a0275a1ba57e432d7c948cf6f70fbb37a.tar.bz2 linux-35e03f3a0275a1ba57e432d7c948cf6f70fbb37a.zip |
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 'include/uapi')
-rw-r--r-- | include/uapi/linux/if_bridge.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/uapi/linux/if_bridge.h b/include/uapi/linux/if_bridge.h index c6c30e28f396..f1bf8d34ac9f 100644 --- a/include/uapi/linux/if_bridge.h +++ b/include/uapi/linux/if_bridge.h @@ -121,6 +121,7 @@ enum { #define BRIDGE_VLAN_INFO_MASTER (1<<0) /* Operate on Bridge device as well */ #define BRIDGE_VLAN_INFO_PVID (1<<1) /* VLAN is PVID, ingress untagged */ +#define BRIDGE_VLAN_INFO_UNTAGGED (1<<2) /* VLAN egresses untagged */ struct bridge_vlan_info { u16 flags; |