diff options
author | Bob Copeland <me@bobcopeland.com> | 2009-02-15 12:06:11 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-02-27 14:52:37 -0500 |
commit | acf3c1a592a070edeede5dfa38c0ce3395357de0 (patch) | |
tree | 742fde852e1ee02e1f7bc308f21f41ebcf4ee266 /drivers/net/wireless/ath5k/base.h | |
parent | b5f03956c56d72ad336e5c2c42a025f25d952c30 (diff) |
ath5k: move beacon processing to a tasklet
We currently send beacons directly from the interrupt routine. This
can hold up interrupt processing in beaconing modes and makes the
ISR somewhat more complex. Move it to a tasklet like rx and tx.
Changes-licensed-under: 3-Clause-BSD
Signed-off-by: Bob Copeland <me@bobcopeland.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath5k/base.h')
-rw-r--r-- | drivers/net/wireless/ath5k/base.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath5k/base.h b/drivers/net/wireless/ath5k/base.h index c0fb8b5c42f..20e0d14b41e 100644 --- a/drivers/net/wireless/ath5k/base.h +++ b/drivers/net/wireless/ath5k/base.h | |||
@@ -169,6 +169,7 @@ struct ath5k_softc { | |||
169 | struct ath5k_led tx_led; /* tx led */ | 169 | struct ath5k_led tx_led; /* tx led */ |
170 | 170 | ||
171 | spinlock_t block; /* protects beacon */ | 171 | spinlock_t block; /* protects beacon */ |
172 | struct tasklet_struct beacontq; /* beacon intr tasklet */ | ||
172 | struct ath5k_buf *bbuf; /* beacon buffer */ | 173 | struct ath5k_buf *bbuf; /* beacon buffer */ |
173 | unsigned int bhalq, /* SW q for outgoing beacons */ | 174 | unsigned int bhalq, /* SW q for outgoing beacons */ |
174 | bmisscount, /* missed beacon transmits */ | 175 | bmisscount, /* missed beacon transmits */ |