diff mbox

[5/6] Schedule work proc when output bitrate changes

Message ID 20101013224851.C946720664@glenhelen.mtv.corp.google.com (mailing list archive)
State Not Applicable, archived
Headers show

Commit Message

Paul Stewart Oct. 13, 2010, 10:20 p.m. UTC
None
diff mbox

Patch

diff --git a/net/mac80211/status.c b/net/mac80211/status.c
index 3153c19..0148c50 100644
--- a/net/mac80211/status.c
+++ b/net/mac80211/status.c
@@ -154,6 +154,20 @@  static void ieee80211_frame_acked(struct sta_info *sta, struct sk_buff *skb)
 		}
 
 		ieee80211_queue_work(&local->hw, &local->recalc_smps);
+	} else if (ieee80211_is_data(mgmt->frame_control) &&
+		   sdata->vif.type == NL80211_IFTYPE_STATION) {
+		struct ieee80211_bss_conf *bss_conf;
+		struct ieee80211_if_managed *ifmgd;
+		bss_conf = &sta->sdata->vif.bss_conf;
+		ifmgd = &sta->sdata->u.mgd;
+		if (bss_conf->cqm_bitrate_thold != 0 &&
+		    (memcmp(&ifmgd->last_cqm_tx_rate, &sta->last_tx_rate,
+			    sizeof(ifmgd->last_cqm_tx_rate)) != 0 ||
+		     sdata->u.mgd.last_cqm_bitrate == 0)) {
+			ifmgd->last_cqm_tx_rate = sta->last_tx_rate;
+			ifmgd->flags |= IEEE80211_STA_TX_RATE_CHANGED;
+			ieee80211_queue_work(&local->hw, &local->rate_notify);
+		}
 	}
 }