From: Eilon Greenstein Date: Mon, 25 Aug 2008 22:23:30 +0000 (-0700) Subject: bnx2x: HW lock timeout X-Git-Tag: Ubuntu-goldfish-3.4.0-4.27~15611^2~5 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=46230476b7c66f7cbc013b771873c797f7ba770b;p=mirror_ubuntu-zesty-kernel.git bnx2x: HW lock timeout Increasing the lock timeout to 5 seconds instead of 1 second to minimize the chance of failures due to timeout Signed-off-by: Eilon Greenstein Signed-off-by: David S. Miller --- diff --git a/drivers/net/bnx2x_main.c b/drivers/net/bnx2x_main.c index 9972d0c02677..cb91802ea48a 100644 --- a/drivers/net/bnx2x_main.c +++ b/drivers/net/bnx2x_main.c @@ -1717,8 +1717,8 @@ static int bnx2x_acquire_hw_lock(struct bnx2x *bp, u32 resource) return -EEXIST; } - /* Try for 1 second every 5ms */ - for (cnt = 0; cnt < 200; cnt++) { + /* Try for 5 second every 5ms */ + for (cnt = 0; cnt < 1000; cnt++) { /* Try to acquire the lock */ REG_WR(bp, hw_lock_control_reg + 4, resource_bit); lock_status = REG_RD(bp, hw_lock_control_reg);