diff options
author | Luis R. Rodriguez <lrodriguez@atheros.com> | 2010-10-21 01:07:05 +0200 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-10-27 21:41:15 +0200 |
commit | b79b33c4baf2532aac2c0924dce5a738099b888c (patch) | |
tree | 145a75d5a58d98fd6bf33cd7c3410f1294883fbd /drivers/net/wireless/ath/ath9k/ath9k.h | |
parent | ath9k: add locking for starting the PCU on RX (diff) | |
download | linux-b79b33c4baf2532aac2c0924dce5a738099b888c.tar.xz linux-b79b33c4baf2532aac2c0924dce5a738099b888c.zip |
ath9k: rename rxflushlock to pcu_lock
The real way to lock RX is to contend on the PCU
and reset, this will be fixed in the next patch but for
now just do the renames so that the next patch which changes
the locking order is crystal clear.
This is part of a series that will help resolve the bug:
https://bugzilla.kernel.org/show_bug.cgi?id=14624
For more details about this issue refer to:
http://marc.info/?l=linux-wireless&m=128629803703756&w=2
Cc: stable@kernel.org
Cc: Ben Greear <greearb@candelatech.com>
Cc: Kyungwan Nam <kyungwan.nam@atheros.com>
Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com>
Tested-by: Ben Greear <greearb@candelatech.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/ath9k.h')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/ath9k.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/ath9k.h b/drivers/net/wireless/ath/ath9k/ath9k.h index 973c919fdd27..9b8e7e3fcebd 100644 --- a/drivers/net/wireless/ath/ath9k/ath9k.h +++ b/drivers/net/wireless/ath/ath9k/ath9k.h @@ -310,7 +310,7 @@ struct ath_rx { u8 rxotherant; u32 *rxlink; unsigned int rxfilter; - spinlock_t rxflushlock; + spinlock_t pcu_lock; spinlock_t rxbuflock; struct list_head rxbuf; struct ath_descdma rxdma; |