Displaying 1 result from an estimated 1 matches for "net_bridge_port_vlan".
2007 Apr 18
5
[Bridge] RFC: [PATCH] bridge vlan integration
...dev/net/bridge/br_private.h
===================================================================
--- wireless-dev.orig/net/bridge/br_private.h
+++ wireless-dev/net/bridge/br_private.h
@@ -59,6 +59,14 @@ struct net_bridge_fdb_entry
unsigned char is_static;
};
+#ifdef CONFIG_BRIDGE_VLAN
+struct net_bridge_port_vlan
+{
+ int untagged;
+ u8 filter[4096/8];
+};
+#endif
+
struct net_bridge_port
{
struct net_bridge *br;
@@ -84,6 +92,9 @@ struct net_bridge_port
struct kobject kobj;
struct work_struct carrier_check;
struct rcu_head rcu;
+#ifdef CONFIG_BRIDGE_VLAN
+ struct net_bridge_port_vlan...