diff options
author | Steffen Klassert <klassert@mathematik.tu-chemnitz.de> | 2006-03-26 04:37:40 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-26 11:56:58 -0500 |
commit | b4ff6450f5336c492d1e2f184d3b8186e0716b7a (patch) | |
tree | 1d7a56cd1c0d60d4ec6805381ce63f63ca60ac8a /drivers/net/3c59x.c | |
parent | 125d5ce8a4e9e4babaed52518fecc9eb6958455d (diff) |
[PATCH] 3c59x: decrease polling interval
Set the polling interval for media changes to 5 seconds if link is down and
60 seconds if link is up.
Signed-off-by: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/net/3c59x.c')
-rw-r--r-- | drivers/net/3c59x.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/net/3c59x.c b/drivers/net/3c59x.c index 4ae78bf377cd..3343cbda4197 100644 --- a/drivers/net/3c59x.c +++ b/drivers/net/3c59x.c | |||
@@ -1943,6 +1943,10 @@ vortex_timer(unsigned long data) | |||
1943 | dev->name, media_tbl[dev->if_port].name, media_status); | 1943 | dev->name, media_tbl[dev->if_port].name, media_status); |
1944 | ok = 1; | 1944 | ok = 1; |
1945 | } | 1945 | } |
1946 | |||
1947 | if (!netif_carrier_ok(dev)) | ||
1948 | next_tick = 5*HZ; | ||
1949 | |||
1946 | if ( ! ok) { | 1950 | if ( ! ok) { |
1947 | unsigned int config; | 1951 | unsigned int config; |
1948 | 1952 | ||