aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211
diff options
context:
space:
mode:
authorRon Rindjunsky <ron.rindjunsky@intel.com>2008-01-13 11:25:43 -0500
committerDavid S. Miller <davem@davemloft.net>2008-01-28 18:10:10 -0500
commit66dcb6bdc57a799a16e8d2942b9ab38b8546eb3b (patch)
tree5963d25dd50a0c2eaa3bed3ddcbb8fd550a43e49 /net/mac80211
parent5b3d71d90ec554a2b145db7fcb245e64bf28dda7 (diff)
mac80211: A-MPDU Rx remove stop_rx_ba_session warning print
This patch removes a warning print from ieee80211_sta_stop_rx_ba_session in case the tid is inactive when interface goes down. Signed-off-by: Ron Rindjunsky <ron.rindjunsky@intel.com> Acked-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211')
-rw-r--r--net/mac80211/ieee80211_sta.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/net/mac80211/ieee80211_sta.c b/net/mac80211/ieee80211_sta.c
index 8b47d81fc716..e7da1cde3abc 100644
--- a/net/mac80211/ieee80211_sta.c
+++ b/net/mac80211/ieee80211_sta.c
@@ -1215,9 +1215,6 @@ void ieee80211_sta_stop_rx_ba_session(struct net_device *dev, u8 *ra, u16 tid,
1215 if (sta->ampdu_mlme.tid_rx[tid].state 1215 if (sta->ampdu_mlme.tid_rx[tid].state
1216 != HT_AGG_STATE_OPERATIONAL) { 1216 != HT_AGG_STATE_OPERATIONAL) {
1217 spin_unlock_bh(&sta->ampdu_mlme.ampdu_rx); 1217 spin_unlock_bh(&sta->ampdu_mlme.ampdu_rx);
1218 if (net_ratelimit())
1219 printk(KERN_DEBUG "rx BA session requested to stop on "
1220 "inactive tid %d\n", tid);
1221 sta_info_put(sta); 1218 sta_info_put(sta);
1222 return; 1219 return;
1223 } 1220 }