Lines Matching defs:ieee80211_local
1095 struct ieee80211_local { struct
1099 struct ieee80211_hw hw;
1101 const struct ieee80211_ops *ops;
1107 struct workqueue_struct *workqueue;
1109 unsigned long queue_stop_reasons[IEEE80211_MAX_QUEUES];
1110 int q_stop_reasons[IEEE80211_MAX_QUEUES][IEEE80211_QUEUE_STOP_REASONS];
1112 spinlock_t queue_stop_reason_lock;
1114 int open_count;
1115 int monitors, cooked_mntrs;
1117 int fif_fcsfail, fif_plcpfail, fif_control, fif_other_bss, fif_pspoll,
1118 fif_probe_req;
1119 int probe_req_reg;
1120 unsigned int filter_flags; /* FIF_* */
1122 bool wiphy_ciphers_allocated;
1124 bool use_chanctx;
1127 spinlock_t filter_lock;
1130 struct work_struct reconfig_filter;
1133 struct netdev_hw_addr_list mc_list;
1135 bool tim_in_locked_section; /* see ieee80211_beacon_get() */
1143 bool suspended;
1151 bool resuming;
1157 bool quiescing;
1160 bool started;
1163 bool in_reconfig;
1166 bool wowlan;
1168 struct work_struct radar_detected_work;
1171 u8 rx_chains;
1173 int tx_headroom; /* required headroom for hardware/radiotap */
1180 struct tasklet_struct tasklet;
1181 struct sk_buff_head skb_queue;
1182 struct sk_buff_head skb_queue_unreliable;
1184 spinlock_t rx_path_lock;
1191 struct mutex sta_mtx;
1192 spinlock_t tim_lock;
1193 unsigned long num_sta;
1194 struct list_head sta_list;
1195 struct rhashtable sta_hash;
1196 struct timer_list sta_cleanup;
1197 int sta_generation;
1199 struct sk_buff_head pending[IEEE80211_MAX_QUEUES];
1200 struct tasklet_struct tx_pending_tasklet;
1202 atomic_t agg_queue_stop[IEEE80211_MAX_QUEUES];
1205 atomic_t iff_allmultis;
1207 struct rate_control_ref *rate_ctrl;
1209 struct crypto_cipher *wep_tx_tfm;
1210 struct crypto_cipher *wep_rx_tfm;
1211 u32 wep_iv;
1214 struct list_head interfaces;
1215 struct mutex iflist_mtx;
1221 struct mutex key_mtx;
1224 struct mutex mtx;
1227 unsigned long scanning;
1228 struct cfg80211_ssid scan_ssid;
1229 struct cfg80211_scan_request *int_scan_req;
1230 struct cfg80211_scan_request __rcu *scan_req;
1231 struct ieee80211_scan_request *hw_scan_req;
1232 struct cfg80211_chan_def scan_chandef;
1233 enum ieee80211_band hw_scan_band;
1234 int scan_channel_idx;
1235 int scan_ies_len;
1236 int hw_scan_ies_bufsize;
1238 struct work_struct sched_scan_stopped_work;
1239 struct ieee80211_sub_if_data __rcu *sched_scan_sdata;
1240 struct cfg80211_sched_scan_request __rcu *sched_scan_req;
1241 u8 scan_addr[ETH_ALEN];
1243 unsigned long leave_oper_channel_time;
1244 enum mac80211_scan_state next_scan_state;
1245 struct delayed_work scan_work;
1246 struct ieee80211_sub_if_data __rcu *scan_sdata;
1248 struct cfg80211_chan_def _oper_chandef;
1251 struct ieee80211_channel *tmp_channel;
1254 struct list_head chanctx_list;
1255 struct mutex chanctx_mtx;
1258 struct led_trigger tx_led, rx_led, assoc_led, radio_led;
1259 struct led_trigger tpt_led;
1260 atomic_t tx_led_active, rx_led_active, assoc_led_active;
1261 atomic_t radio_led_active, tpt_led_active;
1262 struct tpt_led_trigger *tpt_led_trigger;
1268 u32 dot11TransmittedFragmentCount;
1269 u32 dot11MulticastTransmittedFrameCount;
1270 u32 dot11FailedCount;
1271 u32 dot11RetryCount;
1272 u32 dot11MultipleRetryCount;
1273 u32 dot11FrameDuplicateCount;
1274 u32 dot11ReceivedFragmentCount;
1275 u32 dot11MulticastReceivedFrameCount;
1276 u32 dot11TransmittedFrameCount;
1279 unsigned int tx_handlers_drop;
1280 unsigned int tx_handlers_queued;
1281 unsigned int tx_handlers_drop_wep;
1282 unsigned int tx_handlers_drop_not_assoc;
1283 unsigned int tx_handlers_drop_unauth_port;
1284 unsigned int rx_handlers_drop;
1285 unsigned int rx_handlers_queued;
1286 unsigned int rx_handlers_drop_nullfunc;
1287 unsigned int rx_handlers_drop_defrag;
1288 unsigned int tx_expand_skb_head;
1289 unsigned int tx_expand_skb_head_cloned;
1290 unsigned int rx_expand_skb_head_defrag;
1291 unsigned int rx_handlers_fragments;
1292 unsigned int tx_status_drop;
1299 int total_ps_buffered; /* total number of all buffered unicast and
1303 bool pspolling;
1304 bool offchannel_ps_enabled;
1309 struct ieee80211_sub_if_data *ps_sdata;
1310 struct work_struct dynamic_ps_enable_work;
1311 struct work_struct dynamic_ps_disable_work;
1312 struct timer_list dynamic_ps_timer;
1313 struct notifier_block ifa_notifier;
1314 struct notifier_block ifa6_notifier;
1320 int dynamic_ps_forced_timeout;
1322 int user_power_level; /* in dBm, for all interfaces */
1324 enum ieee80211_smps_mode smps_mode;
1326 struct work_struct restart_work;
1329 struct local_debugfsdentries {
1332 } debugfs;
1338 struct list_head roc_list;
1339 struct work_struct hw_roc_start, hw_roc_done;
1340 unsigned long hw_roc_start_time;
1341 u64 roc_cookie_counter;
1343 struct idr ack_status_frames;
1344 spinlock_t ack_status_lock;
1346 struct ieee80211_sub_if_data __rcu *p2p_sdata;
1349 struct ieee80211_sub_if_data __rcu *monitor_sdata;
1350 struct cfg80211_chan_def monitor_chandef;
1353 u8 ext_capa[8];
1356 struct work_struct tdls_chsw_work;
1357 struct sk_buff_head skb_queue_tdls_chsw;