Skip to content

Commit

Permalink
igb: reconfigure mailbox timeout logic
Browse files Browse the repository at this point in the history
This change updates the timeout logic so that it is not possible to have a
sucessful check for message and still return an error if countdown = 0.

Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.com>
Reported-by: Juha Leppanen <juha_motorsportscom@luukku.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Alexander Duyck authored and David S. Miller committed Apr 28, 2009
1 parent 833cc67 commit 3935358
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/net/igb/e1000_mbx.c
Original file line number Diff line number Diff line change
Expand Up @@ -140,13 +140,13 @@ static s32 igb_poll_for_msg(struct e1000_hw *hw, u16 mbx_id)
struct e1000_mbx_info *mbx = &hw->mbx;
int countdown = mbx->timeout;

if (!mbx->ops.check_for_msg)
if (!countdown || !mbx->ops.check_for_msg)
goto out;

while (mbx->ops.check_for_msg(hw, mbx_id)) {
countdown--;
if (!countdown)
break;
countdown--;
udelay(mbx->usec_delay);
}
out:
Expand All @@ -165,13 +165,13 @@ static s32 igb_poll_for_ack(struct e1000_hw *hw, u16 mbx_id)
struct e1000_mbx_info *mbx = &hw->mbx;
int countdown = mbx->timeout;

if (!mbx->ops.check_for_ack)
if (!countdown || !mbx->ops.check_for_ack)
goto out;

while (mbx->ops.check_for_ack(hw, mbx_id)) {
countdown--;
if (!countdown)
break;
countdown--;
udelay(mbx->usec_delay);
}
out:
Expand Down

0 comments on commit 3935358

Please sign in to comment.