aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorJohannes Berg <johannes@sipsolutions.net>2010-04-06 05:18:45 -0400
committerJohn W. Linville <linville@tuxdriver.com>2010-04-07 14:38:03 -0400
commit66b0470aeef10a3b0f9a6a1c60d908b5a06c62ae (patch)
tree6abfe5fea2aa8b7749e6ef5385b81d4e5d40c82b /net
parent2b43ae6daf26f29cec49fa3a3f18025355495500 (diff)
mac80211: remove ieee80211_sta_stop_rx_ba_session
All callers of ieee80211_sta_stop_rx_ba_session can just call __ieee80211_stop_rx_ba_session instead because they already have the station struct, so do that and remove ieee80211_sta_stop_rx_ba_session. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net')
-rw-r--r--net/mac80211/agg-rx.c24
-rw-r--r--net/mac80211/ht.c3
-rw-r--r--net/mac80211/ieee80211_i.h2
-rw-r--r--net/mac80211/rx.c4
4 files changed, 5 insertions, 28 deletions
diff --git a/net/mac80211/agg-rx.c b/net/mac80211/agg-rx.c
index a978e666ed6..cb9f80a9400 100644
--- a/net/mac80211/agg-rx.c
+++ b/net/mac80211/agg-rx.c
@@ -79,28 +79,9 @@ void __ieee80211_stop_rx_ba_session(struct sta_info *sta, u16 tid,
79 spin_unlock_bh(&sta->lock); 79 spin_unlock_bh(&sta->lock);
80} 80}
81 81
82void ieee80211_sta_stop_rx_ba_session(struct ieee80211_sub_if_data *sdata, u8 *ra, u16 tid,
83 u16 initiator, u16 reason)
84{
85 struct sta_info *sta;
86
87 rcu_read_lock();
88
89 sta = sta_info_get(sdata, ra);
90 if (!sta) {
91 rcu_read_unlock();
92 return;
93 }
94
95 __ieee80211_stop_rx_ba_session(sta, tid, initiator, reason);
96
97 rcu_read_unlock();
98}
99
100/* 82/*
101 * After accepting the AddBA Request we activated a timer, 83 * After accepting the AddBA Request we activated a timer,
102 * resetting it after each frame that arrives from the originator. 84 * resetting it after each frame that arrives from the originator.
103 * if this timer expires ieee80211_sta_stop_rx_ba_session will be executed.
104 */ 85 */
105static void sta_rx_agg_session_timer_expired(unsigned long data) 86static void sta_rx_agg_session_timer_expired(unsigned long data)
106{ 87{
@@ -116,9 +97,8 @@ static void sta_rx_agg_session_timer_expired(unsigned long data)
116#ifdef CONFIG_MAC80211_HT_DEBUG 97#ifdef CONFIG_MAC80211_HT_DEBUG
117 printk(KERN_DEBUG "rx session timer expired on tid %d\n", (u16)*ptid); 98 printk(KERN_DEBUG "rx session timer expired on tid %d\n", (u16)*ptid);
118#endif 99#endif
119 ieee80211_sta_stop_rx_ba_session(sta->sdata, sta->sta.addr, 100 __ieee80211_stop_rx_ba_session(sta, *ptid, WLAN_BACK_RECIPIENT,
120 (u16)*ptid, WLAN_BACK_TIMER, 101 WLAN_REASON_QSTA_TIMEOUT);
121 WLAN_REASON_QSTA_TIMEOUT);
122} 102}
123 103
124static void ieee80211_send_addba_resp(struct ieee80211_sub_if_data *sdata, u8 *da, u16 tid, 104static void ieee80211_send_addba_resp(struct ieee80211_sub_if_data *sdata, u8 *da, u16 tid,
diff --git a/net/mac80211/ht.c b/net/mac80211/ht.c
index bb677a73b7c..2ab106a0a49 100644
--- a/net/mac80211/ht.c
+++ b/net/mac80211/ht.c
@@ -175,8 +175,7 @@ void ieee80211_process_delba(struct ieee80211_sub_if_data *sdata,
175#endif /* CONFIG_MAC80211_HT_DEBUG */ 175#endif /* CONFIG_MAC80211_HT_DEBUG */
176 176
177 if (initiator == WLAN_BACK_INITIATOR) 177 if (initiator == WLAN_BACK_INITIATOR)
178 ieee80211_sta_stop_rx_ba_session(sdata, sta->sta.addr, tid, 178 __ieee80211_stop_rx_ba_session(sta, tid, WLAN_BACK_INITIATOR, 0);
179 WLAN_BACK_INITIATOR, 0);
180 else { /* WLAN_BACK_RECIPIENT */ 179 else { /* WLAN_BACK_RECIPIENT */
181 spin_lock_bh(&sta->lock); 180 spin_lock_bh(&sta->lock);
182 if (sta->ampdu_mlme.tid_state_tx[tid] & HT_ADDBA_REQUESTED_MSK) 181 if (sta->ampdu_mlme.tid_state_tx[tid] & HT_ADDBA_REQUESTED_MSK)
diff --git a/net/mac80211/ieee80211_i.h b/net/mac80211/ieee80211_i.h
index 741fb8bbc4a..4e73660ebe9 100644
--- a/net/mac80211/ieee80211_i.h
+++ b/net/mac80211/ieee80211_i.h
@@ -1098,8 +1098,6 @@ int ieee80211_send_smps_action(struct ieee80211_sub_if_data *sdata,
1098 enum ieee80211_smps_mode smps, const u8 *da, 1098 enum ieee80211_smps_mode smps, const u8 *da,
1099 const u8 *bssid); 1099 const u8 *bssid);
1100 1100
1101void ieee80211_sta_stop_rx_ba_session(struct ieee80211_sub_if_data *sdata, u8 *da,
1102 u16 tid, u16 initiator, u16 reason);
1103void __ieee80211_stop_rx_ba_session(struct sta_info *sta, u16 tid, 1101void __ieee80211_stop_rx_ba_session(struct sta_info *sta, u16 tid,
1104 u16 initiator, u16 reason); 1102 u16 initiator, u16 reason);
1105void ieee80211_sta_tear_down_BA_sessions(struct sta_info *sta); 1103void ieee80211_sta_tear_down_BA_sessions(struct sta_info *sta);
diff --git a/net/mac80211/rx.c b/net/mac80211/rx.c
index b83d4db6ca6..c02e43b50ac 100644
--- a/net/mac80211/rx.c
+++ b/net/mac80211/rx.c
@@ -739,8 +739,8 @@ static void ieee80211_rx_reorder_ampdu(struct ieee80211_rx_data *rx,
739 /* if this mpdu is fragmented - terminate rx aggregation session */ 739 /* if this mpdu is fragmented - terminate rx aggregation session */
740 sc = le16_to_cpu(hdr->seq_ctrl); 740 sc = le16_to_cpu(hdr->seq_ctrl);
741 if (sc & IEEE80211_SCTL_FRAG) { 741 if (sc & IEEE80211_SCTL_FRAG) {
742 ieee80211_sta_stop_rx_ba_session(sta->sdata, sta->sta.addr, 742 __ieee80211_stop_rx_ba_session(sta, tid, WLAN_BACK_RECIPIENT,
743 tid, 0, WLAN_REASON_QSTA_REQUIRE_SETUP); 743 WLAN_REASON_QSTA_REQUIRE_SETUP);
744 dev_kfree_skb(skb); 744 dev_kfree_skb(skb);
745 return; 745 return;
746 } 746 }