Lines Matching defs:sta_info
563 struct sta_info { struct
565 struct list_head list, free_list;
566 struct rcu_head rcu_head;
567 struct rhlist_head hash_node;
568 u8 addr[ETH_ALEN];
569 struct ieee80211_local *local;
570 struct ieee80211_sub_if_data *sdata;
571 struct ieee80211_key __rcu *gtk[NUM_DEFAULT_KEYS +
574 struct ieee80211_key __rcu *ptk[NUM_DEFAULT_KEYS];
575 u8 ptk_idx;
576 struct rate_control_ref *rate_ctrl;
577 void *rate_ctrl_priv;
578 spinlock_t rate_ctrl_lock;
579 spinlock_t lock;
581 struct ieee80211_fast_tx __rcu *fast_tx;
582 struct ieee80211_fast_rx __rcu *fast_rx;
583 struct ieee80211_sta_rx_stats __percpu *pcpu_rx_stats;
586 struct mesh_sta *mesh;
589 struct work_struct drv_deliver_wk;
591 u16 listen_interval;
593 bool dead;
594 bool removed;
596 bool uploaded;
598 enum ieee80211_sta_state sta_state;
601 unsigned long _flags;
604 spinlock_t ps_lock;
605 struct sk_buff_head ps_tx_buf[IEEE80211_NUM_ACS];
606 struct sk_buff_head tx_filtered[IEEE80211_NUM_ACS];
607 unsigned long driver_buffered_tids;
608 unsigned long txq_buffered_tids;
610 u64 assoc_at;
611 long last_connected;
614 struct ieee80211_sta_rx_stats rx_stats;
615 struct {
618 } rx_stats_avg;
621 __le16 last_seq_ctrl[IEEE80211_NUM_TIDS + 1];
624 struct {
635 } status_stats;
638 struct {
644 } tx_stats;
645 u16 tid_seq[IEEE80211_QOS_CTL_TID_MASK + 1];
647 struct airtime_info airtime[IEEE80211_NUM_ACS];
648 u16 airtime_weight;
676 static inline enum nl80211_plink_state sta_plink_state(struct sta_info *sta) in sta_plink_state() argument