Commit 2516baa6 authored by Bob Copeland's avatar Bob Copeland Committed by John W. Linville

ath5k: correct interrupt storm warning

Ben Greear points out that the "too many interrupts" message will
never print in the intended case since the interrupt counter
will be -1 after the loop.  Change it to pre-decrement so it will
be 0 on the thousandth iteration.

Cc: Ben Greear <greearb@candelatech.com>
Signed-off-by: default avatarBob Copeland <me@bobcopeland.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 35f00cfc
...@@ -2505,7 +2505,7 @@ ath5k_intr(int irq, void *dev_id) ...@@ -2505,7 +2505,7 @@ ath5k_intr(int irq, void *dev_id)
ath5k_hw_update_mib_counters(ah, &sc->ll_stats); ath5k_hw_update_mib_counters(ah, &sc->ll_stats);
} }
} }
} while (ath5k_hw_is_intr_pending(ah) && counter-- > 0); } while (ath5k_hw_is_intr_pending(ah) && --counter > 0);
if (unlikely(!counter)) if (unlikely(!counter))
ATH5K_WARN(sc, "too many interrupts, giving up for now\n"); ATH5K_WARN(sc, "too many interrupts, giving up for now\n");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment