Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3013dc0c authored by Eric Dumazet's avatar Eric Dumazet Committed by David S. Miller
Browse files

3c59x: shorten timer period for slave devices



Jean Delvare reported bonding on top of 3c59x adapters was not detecting
network cable removal fast enough.

3c59x indeed uses a 60 seconds timer to check link status if carrier is
on, and 5 seconds if carrier is off.

This patch reduces timer period to 5 seconds if device is a bonding
slave.

Reported-by: default avatarJean Delvare <jdelvare@suse.de>
Acked-by: default avatarJean Delvare <jdelvare@suse.de>
Acked-by: default avatarSteffen Klassert <steffen.klassert@secunet.com>
Signed-off-by: default avatarEric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 58e05f35
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1842,7 +1842,7 @@ vortex_timer(unsigned long data)
		ok = 1;
		ok = 1;
	}
	}


	if (!netif_carrier_ok(dev))
	if (dev->flags & IFF_SLAVE || !netif_carrier_ok(dev))
		next_tick = 5*HZ;
		next_tick = 5*HZ;


	if (vp->medialock)
	if (vp->medialock)