Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 315619
b: refs/heads/master
c: aa45fe9
h: refs/heads/master
i:
  315617: 0c00963
  315615: 0f77f84
v: v3
  • Loading branch information
Sujith Manoharan authored and John W. Linville committed Jul 17, 2012
1 parent 75fcd7d commit f1d7f7e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 14 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ef4ad63368e6162fb0b18861748fac49edfcbd03
refs/heads/master: aa45fe9683ba861bf49d51479b11b3d482b57416
2 changes: 1 addition & 1 deletion trunk/drivers/net/wireless/ath/ath9k/ath9k.h
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ void ath_tx_aggr_sleep(struct ieee80211_sta *sta, struct ath_softc *sc,

struct ath_vif {
int av_bslot;
bool is_bslot_active, primary_sta_vif;
bool primary_sta_vif;
__le64 tsf_adjust; /* TSF adjustment for staggered beacons */
struct ath_buf *av_bcbuf;
};
Expand Down
15 changes: 5 additions & 10 deletions trunk/drivers/net/wireless/ath/ath9k/beacon.c
Original file line number Diff line number Diff line change
Expand Up @@ -134,20 +134,17 @@ static struct ath_buf *ath_beacon_generate(struct ieee80211_hw *hw,
struct ath_softc *sc = hw->priv;
struct ath_common *common = ath9k_hw_common(sc->sc_ah);
struct ath_buf *bf;
struct ath_vif *avp;
struct ath_vif *avp = (void *)vif->drv_priv;
struct sk_buff *skb;
struct ath_txq *cabq;
struct ath_txq *cabq = sc->beacon.cabq;
struct ieee80211_tx_info *info;
int cabq_depth;

ath9k_reset_beacon_status(sc);

avp = (void *)vif->drv_priv;
cabq = sc->beacon.cabq;

if ((avp->av_bcbuf == NULL) || !avp->is_bslot_active)
if (avp->av_bcbuf == NULL)
return NULL;

ath9k_reset_beacon_status(sc);

/* Release the old beacon first */

bf = avp->av_bcbuf;
Expand Down Expand Up @@ -234,7 +231,6 @@ void ath9k_beacon_assign_slot(struct ath_softc *sc, struct ieee80211_vif *vif)
for (slot = 0; slot < ATH_BCBUF; slot++) {
if (sc->beacon.bslot[slot] == NULL) {
avp->av_bslot = slot;
avp->is_bslot_active = false;
break;
}
}
Expand Down Expand Up @@ -267,7 +263,6 @@ void ath9k_beacon_remove_slot(struct ath_softc *sc, struct ieee80211_vif *vif)
}

avp->av_bcbuf = NULL;
avp->is_bslot_active = false;
sc->beacon.bslot[avp->av_bslot] = NULL;
sc->nbcnvifs--;
list_add_tail(&bf->list, &sc->beacon.bbuf);
Expand Down
5 changes: 3 additions & 2 deletions trunk/drivers/net/wireless/ath/ath9k/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1788,10 +1788,11 @@ static int ath9k_tx_last_beacon(struct ieee80211_hw *hw)
if (!vif)
return 0;

avp = (void *)vif->drv_priv;
if (!avp->is_bslot_active)
if (!vif->bss_conf.enable_beacon)
return 0;

avp = (void *)vif->drv_priv;

if (!sc->beacon.tx_processed && !edma) {
tasklet_disable(&sc->bcon_tasklet);

Expand Down

0 comments on commit f1d7f7e

Please sign in to comment.