Lines Matching defs:ieee80211_sub_if_data
1024 struct ieee80211_sub_if_data { struct
1025 struct list_head list;
1027 struct wireless_dev wdev;
1030 struct list_head key_list;
1033 int crypto_tx_tailroom_needed_cnt;
1034 int crypto_tx_tailroom_pending_dec;
1035 struct delayed_work dec_tailroom_needed_wk;
1037 struct net_device *dev;
1038 struct ieee80211_local *local;
1040 unsigned int flags;
1042 unsigned long state;
1044 char name[IFNAMSIZ];
1046 struct ieee80211_fragment_cache frags;
1049 u16 noack_map;
1052 u8 wmm_acm;
1054 struct ieee80211_key __rcu *keys[NUM_DEFAULT_KEYS];
1055 struct ieee80211_key __rcu *default_unicast_key;
1057 u16 sequence_number;
1058 u16 mld_mcast_seq;
1059 __be16 control_port_protocol;
1060 bool control_port_no_encrypt;
1061 bool control_port_no_preauth;
1062 bool control_port_over_nl80211;
1064 atomic_t num_tx_queued;
1065 struct mac80211_qos_map __rcu *qos_map;
1068 struct work_struct recalc_smps;
1070 struct wiphy_work work;
1071 struct sk_buff_head skb_queue;
1072 struct sk_buff_head status_queue;
1079 struct ieee80211_if_ap *bss;
1082 u32 rc_rateidx_mask[NUM_NL80211_BANDS];
1084 bool rc_has_mcs_mask[NUM_NL80211_BANDS];
1085 u8 rc_rateidx_mcs_mask[NUM_NL80211_BANDS][IEEE80211_HT_MCS_MASK_LEN];
1087 bool rc_has_vht_mcs_mask[NUM_NL80211_BANDS];
1088 u16 rc_rateidx_vht_mcs_mask[NUM_NL80211_BANDS][NL80211_VHT_NSS_MAX];
1091 u32 beacon_rateidx_mask[NUM_NL80211_BANDS];
1092 bool beacon_rate_set;
1094 union {
1103 } u;
1127 struct ieee80211_sub_if_data *vif_to_sdata(struct ieee80211_vif *p) in vif_to_sdata() argument