aboutsummaryrefslogtreecommitdiffstats
path: root/net/bridge/br_private.h
diff options
context:
space:
mode:
authorStephen Hemminger <shemminger@osdl.org>2005-12-20 15:19:51 -0800
committerDavid S. Miller <davem@sunset.davemloft.net>2006-01-03 13:11:01 -0800
commit4433f420e57afae0ab308b1e2b979f09c86bc115 (patch)
tree3481cdce9a8ba28ba8ad26d0ed49151c1d08f4b7 /net/bridge/br_private.h
parent[BRIDGE]: allow setting hardware address of bridge pseudo-dev (diff)
downloadlinux-dev-4433f420e57afae0ab308b1e2b979f09c86bc115.tar.xz
linux-dev-4433f420e57afae0ab308b1e2b979f09c86bc115.zip
[BRIDGE]: handle speed detection after carrier changes
Speed of a interface may not be available until carrier is detected in the case of autonegotiation. To get the correct value we need to recheck speed after carrier event. But the check needs to be done in a context that is similar to normal ethtool interface (can sleep). Also, delay check for 1ms to try avoid any carrier bounce transitions. Signed-off-by: Stephen Hemminger <shemminger@osdl.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/bridge/br_private.h')
-rw-r--r--net/bridge/br_private.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/net/bridge/br_private.h b/net/bridge/br_private.h
index 2c249486476f..7ad53c2aa684 100644
--- a/net/bridge/br_private.h
+++ b/net/bridge/br_private.h
@@ -27,6 +27,8 @@
#define BR_PORT_BITS 10
#define BR_MAX_PORTS (1<<BR_PORT_BITS)
+#define BR_PORT_DEBOUNCE (HZ/10)
+
typedef struct bridge_id bridge_id;
typedef struct mac_addr mac_addr;
typedef __u16 port_id;
@@ -78,6 +80,7 @@ struct net_bridge_port
struct timer_list hold_timer;
struct timer_list message_age_timer;
struct kobject kobj;
+ struct work_struct carrier_check;
struct rcu_head rcu;
};