Lines Matching defs:ieee80211_sub_if_data
1106 struct ieee80211_sub_if_data { struct
1107 struct list_head list;
1109 struct wireless_dev wdev;
1112 struct list_head key_list;
1115 int crypto_tx_tailroom_needed_cnt;
1116 int crypto_tx_tailroom_pending_dec;
1117 struct wiphy_delayed_work dec_tailroom_needed_wk;
1119 struct net_device *dev;
1120 struct ieee80211_local *local;
1122 unsigned int flags;
1124 unsigned long state;
1126 char name[IFNAMSIZ];
1128 struct ieee80211_fragment_cache frags;
1131 u16 noack_map;
1134 u8 wmm_acm;
1136 struct ieee80211_key __rcu *keys[NUM_DEFAULT_KEYS];
1137 struct ieee80211_key __rcu *default_unicast_key;
1139 u16 sequence_number;
1140 u16 mld_mcast_seq;
1141 __be16 control_port_protocol;
1142 bool control_port_no_encrypt;
1143 bool control_port_no_preauth;
1144 bool control_port_over_nl80211;
1146 atomic_t num_tx_queued;
1147 struct mac80211_qos_map __rcu *qos_map;
1149 struct wiphy_work work;
1150 struct sk_buff_head skb_queue;
1151 struct sk_buff_head status_queue;
1158 struct ieee80211_if_ap *bss;
1161 u32 rc_rateidx_mask[NUM_NL80211_BANDS];
1163 bool rc_has_mcs_mask[NUM_NL80211_BANDS];
1164 u8 rc_rateidx_mcs_mask[NUM_NL80211_BANDS][IEEE80211_HT_MCS_MASK_LEN];
1166 bool rc_has_vht_mcs_mask[NUM_NL80211_BANDS];
1167 u16 rc_rateidx_vht_mcs_mask[NUM_NL80211_BANDS][NL80211_VHT_NSS_MAX];
1170 u32 beacon_rateidx_mask[NUM_NL80211_BANDS];
1171 bool beacon_rate_set;
1173 union {
1182 } u;
1184 struct ieee80211_link_data deflink;
1208 struct ieee80211_sub_if_data *vif_to_sdata(struct ieee80211_vif *p) in vif_to_sdata() argument