diff options
Diffstat (limited to 'net/mac80211/sta_info.h')
-rw-r--r-- | net/mac80211/sta_info.h | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/net/mac80211/sta_info.h b/net/mac80211/sta_info.h index 787124c253af..3f788228eeff 100644 --- a/net/mac80211/sta_info.h +++ b/net/mac80211/sta_info.h | |||
@@ -283,12 +283,19 @@ struct sta_info *sta_info_get(struct ieee80211_local *local, u8 *addr); | |||
283 | struct sta_info *sta_info_get_by_idx(struct ieee80211_local *local, int idx, | 283 | struct sta_info *sta_info_get_by_idx(struct ieee80211_local *local, int idx, |
284 | struct net_device *dev); | 284 | struct net_device *dev); |
285 | /* | 285 | /* |
286 | * Add a new STA info, must be under RCU read lock | 286 | * Create a new STA info, caller owns returned structure |
287 | * because otherwise the returned reference isn't | 287 | * until sta_info_insert(). |
288 | * necessarily valid long enough. | ||
289 | */ | 288 | */ |
290 | struct sta_info *sta_info_add(struct ieee80211_sub_if_data *sdata, | 289 | struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata, |
291 | u8 *addr); | 290 | u8 *addr, gfp_t gfp); |
291 | /* | ||
292 | * Insert STA info into hash table/list, returns zero or a | ||
293 | * -EEXIST if (if the same MAC address is already present). | ||
294 | * | ||
295 | * Calling this without RCU protection makes the caller | ||
296 | * relinquish its reference to @sta. | ||
297 | */ | ||
298 | int sta_info_insert(struct sta_info *sta); | ||
292 | /* | 299 | /* |
293 | * Unlink a STA info from the hash table/list. | 300 | * Unlink a STA info from the hash table/list. |
294 | * This can NULL the STA pointer if somebody else | 301 | * This can NULL the STA pointer if somebody else |