Lines Matching defs:sta_info
533 struct sta_info { struct
535 struct list_head list, free_list;
536 struct rcu_head rcu_head;
537 struct rhlist_head hash_node;
538 u8 addr[ETH_ALEN];
539 struct ieee80211_local *local;
540 struct ieee80211_sub_if_data *sdata;
541 struct ieee80211_key __rcu *gtk[NUM_DEFAULT_KEYS +
544 struct ieee80211_key __rcu *ptk[NUM_DEFAULT_KEYS];
545 u8 ptk_idx;
546 struct rate_control_ref *rate_ctrl;
547 void *rate_ctrl_priv;
548 spinlock_t rate_ctrl_lock;
549 spinlock_t lock;
551 struct ieee80211_fast_tx __rcu *fast_tx;
552 struct ieee80211_fast_rx __rcu *fast_rx;
553 struct ieee80211_sta_rx_stats __percpu *pcpu_rx_stats;
556 struct mesh_sta *mesh;
559 struct work_struct drv_deliver_wk;
561 u16 listen_interval;
563 bool dead;
564 bool removed;
566 bool uploaded;
568 enum ieee80211_sta_state sta_state;
571 unsigned long _flags;
574 spinlock_t ps_lock;
575 struct sk_buff_head ps_tx_buf[IEEE80211_NUM_ACS];
576 struct sk_buff_head tx_filtered[IEEE80211_NUM_ACS];
577 unsigned long driver_buffered_tids;
578 unsigned long txq_buffered_tids;
580 u64 assoc_at;
581 long last_connected;
584 struct ieee80211_sta_rx_stats rx_stats;
585 struct {
588 } rx_stats_avg;
591 __le16 last_seq_ctrl[IEEE80211_NUM_TIDS + 1];
594 struct {
605 } status_stats;
608 struct {
614 } tx_stats;
615 u16 tid_seq[IEEE80211_QOS_CTL_TID_MASK + 1];
617 struct airtime_info airtime[IEEE80211_NUM_ACS];
618 u16 airtime_weight;
644 static inline enum nl80211_plink_state sta_plink_state(struct sta_info *sta) in sta_plink_state() argument