diff options
author | Felix Fietkau <nbd@openwrt.org> | 2010-01-20 02:25:55 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2010-01-20 02:25:55 +0000 |
commit | 131c3e1c721c2faffbe58a10eaf4aae222ae88e0 (patch) | |
tree | 067a8d88039aaf97aa1c4fe27f1881969b3e1708 /package/mac80211/patches | |
parent | 6eae630652590195591785a848fd239714a0dfe5 (diff) | |
download | upstream-131c3e1c721c2faffbe58a10eaf4aae222ae88e0.tar.gz upstream-131c3e1c721c2faffbe58a10eaf4aae222ae88e0.tar.bz2 upstream-131c3e1c721c2faffbe58a10eaf4aae222ae88e0.zip |
ath9k: fix a beacon buffer leak on interface up/down
SVN-Revision: 19233
Diffstat (limited to 'package/mac80211/patches')
-rw-r--r-- | package/mac80211/patches/570-ath9k_bcnslot_leak.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/package/mac80211/patches/570-ath9k_bcnslot_leak.patch b/package/mac80211/patches/570-ath9k_bcnslot_leak.patch new file mode 100644 index 0000000000..bbd94894ee --- /dev/null +++ b/package/mac80211/patches/570-ath9k_bcnslot_leak.patch @@ -0,0 +1,14 @@ +--- a/drivers/net/wireless/ath/ath9k/main.c ++++ b/drivers/net/wireless/ath/ath9k/main.c +@@ -1471,10 +1471,10 @@ static void ath9k_remove_interface(struc + (sc->sc_ah->opmode == NL80211_IFTYPE_MESH_POINT)) { + ath9k_ps_wakeup(sc); + ath9k_hw_stoptxdma(sc->sc_ah, sc->beacon.beaconq); +- ath_beacon_return(sc, avp); + ath9k_ps_restore(sc); + } + ++ ath_beacon_return(sc, avp); + sc->sc_flags &= ~SC_OP_BEACONS; + + for (i = 0; i < ARRAY_SIZE(sc->beacon.bslot); i++) { |