2 * Copyright 2002-2005, Instant802 Networks, Inc.
3 * Copyright 2006-2007 Jiri Benc <jbenc@suse.cz>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
10 #include <linux/module.h>
11 #include <linux/init.h>
12 #include <linux/netdevice.h>
13 #include <linux/types.h>
14 #include <linux/slab.h>
15 #include <linux/skbuff.h>
16 #include <linux/if_arp.h>
17 #include <linux/timer.h>
18 #include <linux/rtnetlink.h>
20 #include <net/mac80211.h>
21 #include "ieee80211_i.h"
22 #include "driver-ops.h"
25 #include "debugfs_sta.h"
29 * DOC: STA information lifetime rules
31 * STA info structures (&struct sta_info) are managed in a hash table
32 * for faster lookup and a list for iteration. They are managed using
33 * RCU, i.e. access to the list and hash table is protected by RCU.
35 * Upon allocating a STA info structure with sta_info_alloc(), the caller owns
36 * that structure. It must then either destroy it using sta_info_destroy()
37 * (which is pretty useless) or insert it into the hash table using
38 * sta_info_insert() which demotes the reference from ownership to a regular
39 * RCU-protected reference; if the function is called without protection by an
40 * RCU critical section the reference is instantly invalidated. Note that the
41 * caller may not do much with the STA info before inserting it, in particular,
42 * it may not start any mesh peer link management or add encryption keys.
44 * When the insertion fails (sta_info_insert()) returns non-zero), the
45 * structure will have been freed by sta_info_insert()!
47 * sta entries are added by mac80211 when you establish a link with a
48 * peer. This means different things for the different type of interfaces
49 * we support. For a regular station this mean we add the AP sta when we
50 * receive an assocation response from the AP. For IBSS this occurs when
51 * we receive a probe response or a beacon from target IBSS network. For
52 * WDS we add the sta for the peer imediately upon device open. When using
53 * AP mode we add stations for each respective station upon request from
54 * userspace through nl80211.
56 * Because there are debugfs entries for each station, and adding those
57 * must be able to sleep, it is also possible to "pin" a station entry,
58 * that means it can be removed from the hash table but not be freed.
59 * See the comment in __sta_info_unlink() for more information, this is
60 * an internal capability only.
62 * In order to remove a STA info structure, the caller needs to first
63 * unlink it (sta_info_unlink()) from the list and hash tables and
64 * then destroy it; sta_info_destroy() will wait for an RCU grace period
65 * to elapse before actually freeing it. Due to the pinning and the
66 * possibility of multiple callers trying to remove the same STA info at
67 * the same time, sta_info_unlink() can clear the STA info pointer it is
68 * passed to indicate that the STA info is owned by somebody else now.
70 * If sta_info_unlink() did not clear the pointer then the caller owns
71 * the STA info structure now and is responsible of destroying it with
72 * a call to sta_info_destroy().
74 * In all other cases, there is no concept of ownership on a STA entry,
75 * each structure is owned by the global hash table/list until it is
76 * removed. All users of the structure need to be RCU protected so that
77 * the structure won't be freed before they are done using it.
80 /* Caller must hold local->sta_lock */
81 static int sta_info_hash_del(struct ieee80211_local
*local
,
86 s
= local
->sta_hash
[STA_HASH(sta
->sta
.addr
)];
90 rcu_assign_pointer(local
->sta_hash
[STA_HASH(sta
->sta
.addr
)],
95 while (s
->hnext
&& s
->hnext
!= sta
)
98 rcu_assign_pointer(s
->hnext
, sta
->hnext
);
105 /* protected by RCU */
106 struct sta_info
*sta_info_get(struct ieee80211_local
*local
, const u8
*addr
)
108 struct sta_info
*sta
;
110 sta
= rcu_dereference(local
->sta_hash
[STA_HASH(addr
)]);
112 if (memcmp(sta
->sta
.addr
, addr
, ETH_ALEN
) == 0)
114 sta
= rcu_dereference(sta
->hnext
);
119 struct sta_info
*sta_info_get_by_idx(struct ieee80211_local
*local
, int idx
,
120 struct net_device
*dev
)
122 struct sta_info
*sta
;
125 list_for_each_entry_rcu(sta
, &local
->sta_list
, list
) {
126 if (dev
&& dev
!= sta
->sdata
->dev
)
139 * __sta_info_free - internal STA free helper
141 * @local: pointer to the global information
142 * @sta: STA info to free
144 * This function must undo everything done by sta_info_alloc()
145 * that may happen before sta_info_insert().
147 static void __sta_info_free(struct ieee80211_local
*local
,
148 struct sta_info
*sta
)
150 rate_control_free_sta(sta
);
151 rate_control_put(sta
->rate_ctrl
);
153 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
154 printk(KERN_DEBUG
"%s: Destroyed STA %pM\n",
155 wiphy_name(local
->hw
.wiphy
), sta
->sta
.addr
);
156 #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
161 void sta_info_destroy(struct sta_info
*sta
)
163 struct ieee80211_local
*local
;
174 rate_control_remove_sta_debugfs(sta
);
175 ieee80211_sta_debugfs_remove(sta
);
177 #ifdef CONFIG_MAC80211_MESH
178 if (ieee80211_vif_is_mesh(&sta
->sdata
->vif
))
179 mesh_plink_deactivate(sta
);
183 * We have only unlinked the key, and actually destroying it
184 * may mean it is removed from hardware which requires that
185 * the key->sta pointer is still valid, so flush the key todo
188 * ieee80211_key_todo() will synchronize_rcu() so after this
189 * nothing can reference this sta struct any more.
191 ieee80211_key_todo();
193 #ifdef CONFIG_MAC80211_MESH
194 if (ieee80211_vif_is_mesh(&sta
->sdata
->vif
))
195 del_timer_sync(&sta
->plink_timer
);
198 while ((skb
= skb_dequeue(&sta
->ps_tx_buf
)) != NULL
) {
199 local
->total_ps_buffered
--;
200 dev_kfree_skb_any(skb
);
203 while ((skb
= skb_dequeue(&sta
->tx_filtered
)) != NULL
)
204 dev_kfree_skb_any(skb
);
206 for (i
= 0; i
< STA_TID_NUM
; i
++) {
207 struct tid_ampdu_rx
*tid_rx
;
208 struct tid_ampdu_tx
*tid_tx
;
210 spin_lock_bh(&sta
->lock
);
211 tid_rx
= sta
->ampdu_mlme
.tid_rx
[i
];
212 /* Make sure timer won't free the tid_rx struct, see below */
214 tid_rx
->shutdown
= true;
216 spin_unlock_bh(&sta
->lock
);
219 * Outside spinlock - shutdown is true now so that the timer
220 * won't free tid_rx, we have to do that now. Can't let the
221 * timer do it because we have to sync the timer outside the
222 * lock that it takes itself.
225 del_timer_sync(&tid_rx
->session_timer
);
230 * No need to do such complications for TX agg sessions, the
231 * path leading to freeing the tid_tx struct goes via a call
232 * from the driver, and thus needs to look up the sta struct
233 * again, which cannot be found when we get here. Hence, we
234 * just need to delete the timer and free the aggregation
235 * info; we won't be telling the peer about it then but that
236 * doesn't matter if we're not talking to it again anyway.
238 tid_tx
= sta
->ampdu_mlme
.tid_tx
[i
];
240 del_timer_sync(&tid_tx
->addba_resp_timer
);
242 * STA removed while aggregation session being
243 * started? Bit odd, but purge frames anyway.
245 skb_queue_purge(&tid_tx
->pending
);
250 __sta_info_free(local
, sta
);
254 /* Caller must hold local->sta_lock */
255 static void sta_info_hash_add(struct ieee80211_local
*local
,
256 struct sta_info
*sta
)
258 sta
->hnext
= local
->sta_hash
[STA_HASH(sta
->sta
.addr
)];
259 rcu_assign_pointer(local
->sta_hash
[STA_HASH(sta
->sta
.addr
)], sta
);
262 struct sta_info
*sta_info_alloc(struct ieee80211_sub_if_data
*sdata
,
265 struct ieee80211_local
*local
= sdata
->local
;
266 struct sta_info
*sta
;
269 sta
= kzalloc(sizeof(*sta
) + local
->hw
.sta_data_size
, gfp
);
273 spin_lock_init(&sta
->lock
);
274 spin_lock_init(&sta
->flaglock
);
276 memcpy(sta
->sta
.addr
, addr
, ETH_ALEN
);
280 sta
->rate_ctrl
= rate_control_get(local
->rate_ctrl
);
281 sta
->rate_ctrl_priv
= rate_control_alloc_sta(sta
->rate_ctrl
,
283 if (!sta
->rate_ctrl_priv
) {
284 rate_control_put(sta
->rate_ctrl
);
289 for (i
= 0; i
< STA_TID_NUM
; i
++) {
290 /* timer_to_tid must be initialized with identity mapping to
291 * enable session_timer's data differentiation. refer to
292 * sta_rx_agg_session_timer_expired for useage */
293 sta
->timer_to_tid
[i
] = i
;
295 sta
->ampdu_mlme
.tid_state_rx
[i
] = HT_AGG_STATE_IDLE
;
296 sta
->ampdu_mlme
.tid_rx
[i
] = NULL
;
298 sta
->ampdu_mlme
.tid_state_tx
[i
] = HT_AGG_STATE_IDLE
;
299 sta
->ampdu_mlme
.tid_tx
[i
] = NULL
;
300 sta
->ampdu_mlme
.addba_req_num
[i
] = 0;
302 skb_queue_head_init(&sta
->ps_tx_buf
);
303 skb_queue_head_init(&sta
->tx_filtered
);
305 for (i
= 0; i
< NUM_RX_DATA_QUEUES
; i
++)
306 sta
->last_seq_ctrl
[i
] = cpu_to_le16(USHORT_MAX
);
308 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
309 printk(KERN_DEBUG
"%s: Allocated STA %pM\n",
310 wiphy_name(local
->hw
.wiphy
), sta
->sta
.addr
);
311 #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
313 #ifdef CONFIG_MAC80211_MESH
314 sta
->plink_state
= PLINK_LISTEN
;
315 init_timer(&sta
->plink_timer
);
321 int sta_info_insert(struct sta_info
*sta
)
323 struct ieee80211_local
*local
= sta
->local
;
324 struct ieee80211_sub_if_data
*sdata
= sta
->sdata
;
329 * Can't be a WARN_ON because it can be triggered through a race:
330 * something inserts a STA (on one CPU) without holding the RTNL
331 * and another CPU turns off the net device.
333 if (unlikely(!netif_running(sdata
->dev
))) {
338 if (WARN_ON(compare_ether_addr(sta
->sta
.addr
, sdata
->dev
->dev_addr
) == 0 ||
339 is_multicast_ether_addr(sta
->sta
.addr
))) {
344 spin_lock_irqsave(&local
->sta_lock
, flags
);
345 /* check if STA exists already */
346 if (sta_info_get(local
, sta
->sta
.addr
)) {
347 spin_unlock_irqrestore(&local
->sta_lock
, flags
);
351 list_add(&sta
->list
, &local
->sta_list
);
352 local
->sta_generation
++;
354 sta_info_hash_add(local
, sta
);
357 if (local
->ops
->sta_notify
) {
358 if (sdata
->vif
.type
== NL80211_IFTYPE_AP_VLAN
)
359 sdata
= container_of(sdata
->bss
,
360 struct ieee80211_sub_if_data
,
363 drv_sta_notify(local
, &sdata
->vif
, STA_NOTIFY_ADD
, &sta
->sta
);
367 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
368 printk(KERN_DEBUG
"%s: Inserted STA %pM\n",
369 wiphy_name(local
->hw
.wiphy
), sta
->sta
.addr
);
370 #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
372 spin_unlock_irqrestore(&local
->sta_lock
, flags
);
374 #ifdef CONFIG_MAC80211_DEBUGFS
376 * Debugfs entry adding might sleep, so schedule process
377 * context task for adding entry for STAs that do not yet
379 * NOTE: due to auto-freeing semantics this may only be done
380 * if the insertion is successful!
382 schedule_work(&local
->sta_debugfs_add
);
385 if (ieee80211_vif_is_mesh(&sdata
->vif
))
386 mesh_accept_plinks_update(sdata
);
391 __sta_info_free(local
, sta
);
395 static inline void __bss_tim_set(struct ieee80211_if_ap
*bss
, u16 aid
)
398 * This format has been mandated by the IEEE specifications,
399 * so this line may not be changed to use the __set_bit() format.
401 bss
->tim
[aid
/ 8] |= (1 << (aid
% 8));
404 static inline void __bss_tim_clear(struct ieee80211_if_ap
*bss
, u16 aid
)
407 * This format has been mandated by the IEEE specifications,
408 * so this line may not be changed to use the __clear_bit() format.
410 bss
->tim
[aid
/ 8] &= ~(1 << (aid
% 8));
413 static void __sta_info_set_tim_bit(struct ieee80211_if_ap
*bss
,
414 struct sta_info
*sta
)
418 __bss_tim_set(bss
, sta
->sta
.aid
);
420 if (sta
->local
->ops
->set_tim
) {
421 sta
->local
->tim_in_locked_section
= true;
422 drv_set_tim(sta
->local
, &sta
->sta
, true);
423 sta
->local
->tim_in_locked_section
= false;
427 void sta_info_set_tim_bit(struct sta_info
*sta
)
431 BUG_ON(!sta
->sdata
->bss
);
433 spin_lock_irqsave(&sta
->local
->sta_lock
, flags
);
434 __sta_info_set_tim_bit(sta
->sdata
->bss
, sta
);
435 spin_unlock_irqrestore(&sta
->local
->sta_lock
, flags
);
438 static void __sta_info_clear_tim_bit(struct ieee80211_if_ap
*bss
,
439 struct sta_info
*sta
)
443 __bss_tim_clear(bss
, sta
->sta
.aid
);
445 if (sta
->local
->ops
->set_tim
) {
446 sta
->local
->tim_in_locked_section
= true;
447 drv_set_tim(sta
->local
, &sta
->sta
, false);
448 sta
->local
->tim_in_locked_section
= false;
452 void sta_info_clear_tim_bit(struct sta_info
*sta
)
456 BUG_ON(!sta
->sdata
->bss
);
458 spin_lock_irqsave(&sta
->local
->sta_lock
, flags
);
459 __sta_info_clear_tim_bit(sta
->sdata
->bss
, sta
);
460 spin_unlock_irqrestore(&sta
->local
->sta_lock
, flags
);
463 static void __sta_info_unlink(struct sta_info
**sta
)
465 struct ieee80211_local
*local
= (*sta
)->local
;
466 struct ieee80211_sub_if_data
*sdata
= (*sta
)->sdata
;
468 * pull caller's reference if we're already gone.
470 if (sta_info_hash_del(local
, *sta
)) {
476 ieee80211_key_free((*sta
)->key
);
477 WARN_ON((*sta
)->key
);
480 list_del(&(*sta
)->list
);
482 if (test_and_clear_sta_flags(*sta
, WLAN_STA_PS
)) {
485 atomic_dec(&sdata
->bss
->num_sta_ps
);
486 __sta_info_clear_tim_bit(sdata
->bss
, *sta
);
490 local
->sta_generation
++;
492 if (local
->ops
->sta_notify
) {
493 if (sdata
->vif
.type
== NL80211_IFTYPE_AP_VLAN
)
494 sdata
= container_of(sdata
->bss
,
495 struct ieee80211_sub_if_data
,
498 drv_sta_notify(local
, &sdata
->vif
, STA_NOTIFY_REMOVE
,
500 sdata
= (*sta
)->sdata
;
503 if (ieee80211_vif_is_mesh(&sdata
->vif
)) {
504 mesh_accept_plinks_update(sdata
);
505 #ifdef CONFIG_MAC80211_MESH
506 del_timer(&(*sta
)->plink_timer
);
510 #ifdef CONFIG_MAC80211_VERBOSE_DEBUG
511 printk(KERN_DEBUG
"%s: Removed STA %pM\n",
512 wiphy_name(local
->hw
.wiphy
), (*sta
)->sta
.addr
);
513 #endif /* CONFIG_MAC80211_VERBOSE_DEBUG */
516 * Finally, pull caller's reference if the STA is pinned by the
517 * task that is adding the debugfs entries. In that case, we
518 * leave the STA "to be freed".
520 * The rules are not trivial, but not too complex either:
521 * (1) pin_status is only modified under the sta_lock
522 * (2) STAs may only be pinned under the RTNL so that
523 * sta_info_flush() is guaranteed to actually destroy
524 * all STAs that are active for a given interface, this
525 * is required for correctness because otherwise we
526 * could notify a driver that an interface is going
527 * away and only after that (!) notify it about a STA
528 * on that interface going away.
529 * (3) sta_info_debugfs_add_work() will set the status
530 * to PINNED when it found an item that needs a new
531 * debugfs directory created. In that case, that item
532 * must not be freed although all *RCU* users are done
533 * with it. Hence, we tell the caller of _unlink()
534 * that the item is already gone (as can happen when
535 * two tasks try to unlink/destroy at the same time)
536 * (4) We set the pin_status to DESTROY here when we
538 * (5) sta_info_debugfs_add_work() will reset the pin_status
539 * from PINNED to NORMAL when it is done with the item,
540 * but will check for DESTROY before resetting it in
541 * which case it will free the item.
543 if ((*sta
)->pin_status
== STA_INFO_PIN_STAT_PINNED
) {
544 (*sta
)->pin_status
= STA_INFO_PIN_STAT_DESTROY
;
550 void sta_info_unlink(struct sta_info
**sta
)
552 struct ieee80211_local
*local
= (*sta
)->local
;
555 spin_lock_irqsave(&local
->sta_lock
, flags
);
556 __sta_info_unlink(sta
);
557 spin_unlock_irqrestore(&local
->sta_lock
, flags
);
560 static int sta_info_buffer_expired(struct sta_info
*sta
,
563 struct ieee80211_tx_info
*info
;
569 info
= IEEE80211_SKB_CB(skb
);
571 /* Timeout: (2 * listen_interval * beacon_int * 1024 / 1000000) sec */
572 timeout
= (sta
->listen_interval
*
573 sta
->sdata
->vif
.bss_conf
.beacon_int
*
575 if (timeout
< STA_TX_BUFFER_EXPIRE
)
576 timeout
= STA_TX_BUFFER_EXPIRE
;
577 return time_after(jiffies
, info
->control
.jiffies
+ timeout
);
581 static void sta_info_cleanup_expire_buffered(struct ieee80211_local
*local
,
582 struct sta_info
*sta
)
586 struct ieee80211_sub_if_data
*sdata
;
588 if (skb_queue_empty(&sta
->ps_tx_buf
))
592 spin_lock_irqsave(&sta
->ps_tx_buf
.lock
, flags
);
593 skb
= skb_peek(&sta
->ps_tx_buf
);
594 if (sta_info_buffer_expired(sta
, skb
))
595 skb
= __skb_dequeue(&sta
->ps_tx_buf
);
598 spin_unlock_irqrestore(&sta
->ps_tx_buf
.lock
, flags
);
604 local
->total_ps_buffered
--;
605 #ifdef CONFIG_MAC80211_VERBOSE_PS_DEBUG
606 printk(KERN_DEBUG
"Buffered frame expired (STA %pM)\n",
611 if (skb_queue_empty(&sta
->ps_tx_buf
))
612 sta_info_clear_tim_bit(sta
);
617 static void sta_info_cleanup(unsigned long data
)
619 struct ieee80211_local
*local
= (struct ieee80211_local
*) data
;
620 struct sta_info
*sta
;
623 list_for_each_entry_rcu(sta
, &local
->sta_list
, list
)
624 sta_info_cleanup_expire_buffered(local
, sta
);
627 if (local
->quiescing
)
630 local
->sta_cleanup
.expires
=
631 round_jiffies(jiffies
+ STA_INFO_CLEANUP_INTERVAL
);
632 add_timer(&local
->sta_cleanup
);
635 #ifdef CONFIG_MAC80211_DEBUGFS
637 * See comment in __sta_info_unlink,
638 * caller must hold local->sta_lock.
640 static void __sta_info_pin(struct sta_info
*sta
)
642 WARN_ON(sta
->pin_status
!= STA_INFO_PIN_STAT_NORMAL
);
643 sta
->pin_status
= STA_INFO_PIN_STAT_PINNED
;
647 * See comment in __sta_info_unlink, returns sta if it
648 * needs to be destroyed.
650 static struct sta_info
*__sta_info_unpin(struct sta_info
*sta
)
652 struct sta_info
*ret
= NULL
;
655 spin_lock_irqsave(&sta
->local
->sta_lock
, flags
);
656 WARN_ON(sta
->pin_status
!= STA_INFO_PIN_STAT_DESTROY
&&
657 sta
->pin_status
!= STA_INFO_PIN_STAT_PINNED
);
658 if (sta
->pin_status
== STA_INFO_PIN_STAT_DESTROY
)
660 sta
->pin_status
= STA_INFO_PIN_STAT_NORMAL
;
661 spin_unlock_irqrestore(&sta
->local
->sta_lock
, flags
);
666 static void sta_info_debugfs_add_work(struct work_struct
*work
)
668 struct ieee80211_local
*local
=
669 container_of(work
, struct ieee80211_local
, sta_debugfs_add
);
670 struct sta_info
*sta
, *tmp
;
673 /* We need to keep the RTNL across the whole pinned status. */
678 spin_lock_irqsave(&local
->sta_lock
, flags
);
679 list_for_each_entry(tmp
, &local
->sta_list
, list
) {
681 * debugfs.add_has_run will be set by
682 * ieee80211_sta_debugfs_add regardless
683 * of what else it does.
685 if (!tmp
->debugfs
.add_has_run
) {
691 spin_unlock_irqrestore(&local
->sta_lock
, flags
);
696 ieee80211_sta_debugfs_add(sta
);
697 rate_control_add_sta_debugfs(sta
);
699 sta
= __sta_info_unpin(sta
);
700 sta_info_destroy(sta
);
706 void sta_info_init(struct ieee80211_local
*local
)
708 spin_lock_init(&local
->sta_lock
);
709 INIT_LIST_HEAD(&local
->sta_list
);
711 setup_timer(&local
->sta_cleanup
, sta_info_cleanup
,
712 (unsigned long)local
);
713 local
->sta_cleanup
.expires
=
714 round_jiffies(jiffies
+ STA_INFO_CLEANUP_INTERVAL
);
716 #ifdef CONFIG_MAC80211_DEBUGFS
717 INIT_WORK(&local
->sta_debugfs_add
, sta_info_debugfs_add_work
);
721 int sta_info_start(struct ieee80211_local
*local
)
723 add_timer(&local
->sta_cleanup
);
727 void sta_info_stop(struct ieee80211_local
*local
)
729 del_timer(&local
->sta_cleanup
);
730 #ifdef CONFIG_MAC80211_DEBUGFS
732 * Make sure the debugfs adding work isn't pending after this
733 * because we're about to be destroyed. It doesn't matter
734 * whether it ran or not since we're going to flush all STAs
737 cancel_work_sync(&local
->sta_debugfs_add
);
740 sta_info_flush(local
, NULL
);
744 * sta_info_flush - flush matching STA entries from the STA table
746 * Returns the number of removed STA entries.
748 * @local: local interface data
749 * @sdata: matching rule for the net device (sta->dev) or %NULL to match all STAs
751 int sta_info_flush(struct ieee80211_local
*local
,
752 struct ieee80211_sub_if_data
*sdata
)
754 struct sta_info
*sta
, *tmp
;
761 spin_lock_irqsave(&local
->sta_lock
, flags
);
762 list_for_each_entry_safe(sta
, tmp
, &local
->sta_list
, list
) {
763 if (!sdata
|| sdata
== sta
->sdata
) {
764 __sta_info_unlink(&sta
);
766 list_add_tail(&sta
->list
, &tmp_list
);
771 spin_unlock_irqrestore(&local
->sta_lock
, flags
);
773 list_for_each_entry_safe(sta
, tmp
, &tmp_list
, list
)
774 sta_info_destroy(sta
);
779 void ieee80211_sta_expire(struct ieee80211_sub_if_data
*sdata
,
780 unsigned long exp_time
)
782 struct ieee80211_local
*local
= sdata
->local
;
783 struct sta_info
*sta
, *tmp
;
787 spin_lock_irqsave(&local
->sta_lock
, flags
);
788 list_for_each_entry_safe(sta
, tmp
, &local
->sta_list
, list
)
789 if (time_after(jiffies
, sta
->last_rx
+ exp_time
)) {
790 #ifdef CONFIG_MAC80211_IBSS_DEBUG
791 printk(KERN_DEBUG
"%s: expiring inactive STA %pM\n",
792 sdata
->dev
->name
, sta
->sta
.addr
);
794 __sta_info_unlink(&sta
);
796 list_add(&sta
->list
, &tmp_list
);
798 spin_unlock_irqrestore(&local
->sta_lock
, flags
);
800 list_for_each_entry_safe(sta
, tmp
, &tmp_list
, list
)
801 sta_info_destroy(sta
);
804 struct ieee80211_sta
*ieee80211_find_sta(struct ieee80211_hw
*hw
,
807 struct sta_info
*sta
= sta_info_get(hw_to_local(hw
), addr
);
813 EXPORT_SYMBOL(ieee80211_find_sta
);