From: Ron Rindjunsky Date: Sun, 13 Jan 2008 16:25:43 +0000 (+0200) Subject: mac80211: A-MPDU Rx remove stop_rx_ba_session warning print X-Git-Tag: v2.6.25-rc1~1162^2~108 X-Git-Url: http://pileus.org/git/?a=commitdiff_plain;h=66dcb6bdc57a799a16e8d2942b9ab38b8546eb3b;p=~andy%2Flinux 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 Acked-by: Johannes Berg Signed-off-by: John W. Linville --- diff --git a/net/mac80211/ieee80211_sta.c b/net/mac80211/ieee80211_sta.c index 8b47d81fc71..e7da1cde3ab 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, if (sta->ampdu_mlme.tid_rx[tid].state != HT_AGG_STATE_OPERATIONAL) { spin_unlock_bh(&sta->ampdu_mlme.ampdu_rx); - if (net_ratelimit()) - printk(KERN_DEBUG "rx BA session requested to stop on " - "inactive tid %d\n", tid); sta_info_put(sta); return; }