Lines Matching defs:ieee80211_sub_if_data
887 struct ieee80211_sub_if_data { struct
888 struct list_head list;
890 struct wireless_dev wdev;
893 struct list_head key_list;
896 int crypto_tx_tailroom_needed_cnt;
897 int crypto_tx_tailroom_pending_dec;
898 struct delayed_work dec_tailroom_needed_wk;
900 struct net_device *dev;
901 struct ieee80211_local *local;
903 unsigned int flags;
905 unsigned long state;
907 char name[IFNAMSIZ];
910 struct ieee80211_fragment_entry fragments[IEEE80211_FRAGMENT_MAX];
911 unsigned int fragment_next;
914 u16 noack_map;
917 u8 wmm_acm;
919 struct ieee80211_key __rcu *keys[NUM_DEFAULT_KEYS +
922 struct ieee80211_key __rcu *default_unicast_key;
923 struct ieee80211_key __rcu *default_multicast_key;
924 struct ieee80211_key __rcu *default_mgmt_key;
925 struct ieee80211_key __rcu *default_beacon_key;
927 u16 sequence_number;
928 __be16 control_port_protocol;
929 bool control_port_no_encrypt;
930 bool control_port_no_preauth;
931 bool control_port_over_nl80211;
932 int encrypt_headroom;
934 atomic_t num_tx_queued;
935 struct ieee80211_tx_queue_params tx_conf[IEEE80211_NUM_ACS];
936 struct mac80211_qos_map __rcu *qos_map;
938 struct work_struct csa_finalize_work;
939 bool csa_block_tx; /* write-protected by sdata_lock and local->mtx */
940 struct cfg80211_chan_def csa_chandef;
942 struct list_head assigned_chanctx_list; /* protected by chanctx_mtx */
943 struct list_head reserved_chanctx_list; /* protected by chanctx_mtx */
946 struct ieee80211_chanctx *reserved_chanctx;
947 struct cfg80211_chan_def reserved_chandef;
948 bool reserved_radar_required;
949 bool reserved_ready;
952 struct work_struct recalc_smps;
954 struct work_struct work;
955 struct sk_buff_head skb_queue;
957 u8 needed_rx_chains;
958 enum ieee80211_smps_mode smps_mode;
960 int user_power_level; /* in dBm */
961 int ap_power_level; /* in dBm */
963 bool radar_required;
964 struct delayed_work dfs_cac_timer_work;
971 struct ieee80211_if_ap *bss;
974 u32 rc_rateidx_mask[NUM_NL80211_BANDS];
976 bool rc_has_mcs_mask[NUM_NL80211_BANDS];
977 u8 rc_rateidx_mcs_mask[NUM_NL80211_BANDS][IEEE80211_HT_MCS_MASK_LEN];
979 bool rc_has_vht_mcs_mask[NUM_NL80211_BANDS];
980 u16 rc_rateidx_vht_mcs_mask[NUM_NL80211_BANDS][NL80211_VHT_NSS_MAX];
983 u32 beacon_rateidx_mask[NUM_NL80211_BANDS];
984 bool beacon_rate_set;
986 union {
1013 struct ieee80211_sub_if_data *vif_to_sdata(struct ieee80211_vif *p) in vif_to_sdata() argument