aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/sta_info.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/mac80211/sta_info.h')
-rw-r--r--net/mac80211/sta_info.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/net/mac80211/sta_info.h b/net/mac80211/sta_info.h
index b5591d2f60a4..b5ef72379add 100644
--- a/net/mac80211/sta_info.h
+++ b/net/mac80211/sta_info.h
@@ -98,9 +98,6 @@ struct sta_info {
98 * filtering; used only if sta->key is not 98 * filtering; used only if sta->key is not
99 * set */ 99 * set */
100 100
101#ifdef CONFIG_MAC80211_DEBUGFS
102 int debugfs_registered;
103#endif
104 int assoc_ap; /* whether this is an AP that we are 101 int assoc_ap; /* whether this is an AP that we are
105 * associated with as a client */ 102 * associated with as a client */
106 103
@@ -149,12 +146,18 @@ struct sta_info {
149 */ 146 */
150#define STA_INFO_CLEANUP_INTERVAL (10 * HZ) 147#define STA_INFO_CLEANUP_INTERVAL (10 * HZ)
151 148
149static inline void __sta_info_get(struct sta_info *sta)
150{
151 kref_get(&sta->kref);
152}
153
152struct sta_info * sta_info_get(struct ieee80211_local *local, u8 *addr); 154struct sta_info * sta_info_get(struct ieee80211_local *local, u8 *addr);
153int sta_info_min_txrate_get(struct ieee80211_local *local); 155int sta_info_min_txrate_get(struct ieee80211_local *local);
154void sta_info_put(struct sta_info *sta); 156void sta_info_put(struct sta_info *sta);
155struct sta_info * sta_info_add(struct ieee80211_local *local, 157struct sta_info * sta_info_add(struct ieee80211_local *local,
156 struct net_device *dev, u8 *addr, gfp_t gfp); 158 struct net_device *dev, u8 *addr, gfp_t gfp);
157void sta_info_free(struct sta_info *sta, int locked); 159void sta_info_remove(struct sta_info *sta);
160void sta_info_free(struct sta_info *sta);
158void sta_info_init(struct ieee80211_local *local); 161void sta_info_init(struct ieee80211_local *local);
159int sta_info_start(struct ieee80211_local *local); 162int sta_info_start(struct ieee80211_local *local);
160void sta_info_stop(struct ieee80211_local *local); 163void sta_info_stop(struct ieee80211_local *local);