* [PATCH 1/3] ath9k: configure the beacon only if the STA is associated
@ 2010-02-03 17:20 Senthil Balasubramanian
2010-02-03 18:54 ` Luis R. Rodriguez
0 siblings, 1 reply; 2+ messages in thread
From: Senthil Balasubramanian @ 2010-02-03 17:20 UTC (permalink / raw)
To: linville; +Cc: linux-wireless, Senthil Balasubramanian
beacons configuration SHOULD be done only if the STA is associated.
Signed-off-by: Senthil Balasubramanian <senthilkumar@atheros.com>
---
drivers/net/wireless/ath/ath9k/beacon.c | 8 +++++++-
1 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/drivers/net/wireless/ath/ath9k/beacon.c b/drivers/net/wireless/ath/ath9k/beacon.c
index 422454f..d088ebf 100644
--- a/drivers/net/wireless/ath/ath9k/beacon.c
+++ b/drivers/net/wireless/ath/ath9k/beacon.c
@@ -577,6 +577,13 @@ static void ath_beacon_config_sta(struct ath_softc *sc,
u64 tsf;
int num_beacons, offset, dtim_dec_count, cfp_dec_count;
+ /* No need to configure beacon if we are not associated */
+ if (!common->curaid) {
+ ath_print(common, ATH_DBG_BEACON,
+ "STA is not yet associated..skipping beacon config\n");
+ return;
+ }
+
memset(&bs, 0, sizeof(bs));
intval = conf->beacon_interval & ATH9K_BEACON_PERIOD;
@@ -739,7 +746,6 @@ void ath_beacon_config(struct ath_softc *sc, struct ieee80211_vif *vif)
enum nl80211_iftype iftype;
/* Setup the beacon configuration parameters */
-
if (vif) {
struct ieee80211_bss_conf *bss_conf = &vif->bss_conf;
--
1.6.6.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH 1/3] ath9k: configure the beacon only if the STA is associated
2010-02-03 17:20 [PATCH 1/3] ath9k: configure the beacon only if the STA is associated Senthil Balasubramanian
@ 2010-02-03 18:54 ` Luis R. Rodriguez
0 siblings, 0 replies; 2+ messages in thread
From: Luis R. Rodriguez @ 2010-02-03 18:54 UTC (permalink / raw)
To: Senthil Balasubramanian; +Cc: linville, linux-wireless
On Wed, Feb 3, 2010 at 9:20 AM, Senthil Balasubramanian
<senthilkumar@atheros.com> wrote:
> beacons configuration SHOULD be done only if the STA is associated.
>
> Signed-off-by: Senthil Balasubramanian <senthilkumar@atheros.com>
I believe this is Cc: stable@kernel.org
Luis
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-02-03 18:54 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-03 17:20 [PATCH 1/3] ath9k: configure the beacon only if the STA is associated Senthil Balasubramanian
2010-02-03 18:54 ` Luis R. Rodriguez
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).