aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/agg-rx.c
diff options
context:
space:
mode:
authorJohannes Berg <johannes@sipsolutions.net>2009-02-10 15:25:54 -0500
committerJohn W. Linville <linville@tuxdriver.com>2009-02-13 13:45:48 -0500
commit849b7967818995a32c3017542e33eb3155944368 (patch)
treeafd0a98e50c3b9a851a2b46682f6a3767df2ca04 /net/mac80211/agg-rx.c
parentd75636ef9c1af224f1097941879d5a8db7cd04e5 (diff)
mac80211: further cleanups to stopping BA sessions
Essentially consisting of passing the sta_info pointer around, instead of repeatedly doing hash lookups. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/agg-rx.c')
-rw-r--r--net/mac80211/agg-rx.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/mac80211/agg-rx.c b/net/mac80211/agg-rx.c
index bb1f8740cbd5..3112bfd441b6 100644
--- a/net/mac80211/agg-rx.c
+++ b/net/mac80211/agg-rx.c
@@ -17,8 +17,8 @@
17#include <net/mac80211.h> 17#include <net/mac80211.h>
18#include "ieee80211_i.h" 18#include "ieee80211_i.h"
19 19
20static void __ieee80211_sta_stop_rx_ba_session(struct sta_info *sta, u16 tid, 20void __ieee80211_stop_rx_ba_session(struct sta_info *sta, u16 tid,
21 u16 initiator, u16 reason) 21 u16 initiator, u16 reason)
22{ 22{
23 struct ieee80211_local *local = sta->local; 23 struct ieee80211_local *local = sta->local;
24 struct ieee80211_hw *hw = &local->hw; 24 struct ieee80211_hw *hw = &local->hw;
@@ -96,7 +96,7 @@ void ieee80211_sta_stop_rx_ba_session(struct ieee80211_sub_if_data *sdata, u8 *r
96 return; 96 return;
97 } 97 }
98 98
99 __ieee80211_sta_stop_rx_ba_session(sta, tid, initiator, reason); 99 __ieee80211_stop_rx_ba_session(sta, tid, initiator, reason);
100 100
101 rcu_read_unlock(); 101 rcu_read_unlock();
102} 102}