Lines Matching defs:ieee80211_local

1310 struct ieee80211_local {  struct
1314 struct ieee80211_hw hw;
1316 struct fq fq;
1317 struct codel_vars *cvars;
1318 struct codel_params cparams;
1321 spinlock_t active_txq_lock[IEEE80211_NUM_ACS];
1322 struct list_head active_txqs[IEEE80211_NUM_ACS];
1323 u16 schedule_round[IEEE80211_NUM_ACS];
1326 spinlock_t handle_wake_tx_queue_lock;
1328 u16 airtime_flags;
1329 u32 aql_txq_limit_low[IEEE80211_NUM_ACS];
1330 u32 aql_txq_limit_high[IEEE80211_NUM_ACS];
1331 u32 aql_threshold;
1332 atomic_t aql_total_pending_airtime;
1333 atomic_t aql_ac_pending_airtime[IEEE80211_NUM_ACS];
1335 const struct ieee80211_ops *ops;
1341 struct workqueue_struct *workqueue;
1343 unsigned long queue_stop_reasons[IEEE80211_MAX_QUEUES];
1344 int q_stop_reasons[IEEE80211_MAX_QUEUES][IEEE80211_QUEUE_STOP_REASONS];
1346 spinlock_t queue_stop_reason_lock;
1348 int open_count;
1349 int monitors, cooked_mntrs;
1351 int fif_fcsfail, fif_plcpfail, fif_control, fif_other_bss, fif_pspoll,
1352 fif_probe_req;
1353 bool probe_req_reg;
1354 bool rx_mcast_action_reg;
1355 unsigned int filter_flags; /* FIF_* */
1357 bool wiphy_ciphers_allocated;
1359 bool use_chanctx;
1362 spinlock_t filter_lock;
1365 struct work_struct reconfig_filter;
1368 struct netdev_hw_addr_list mc_list;
1370 bool tim_in_locked_section; /* see ieee80211_beacon_get() */
1378 bool suspended;
1381 bool suspending;
1389 bool resuming;
1395 bool quiescing;
1398 bool started;
1401 bool in_reconfig;
1404 bool reconfig_failure;
1407 bool wowlan;
1409 struct wiphy_work radar_detected_work;
1412 u8 rx_chains;
1415 u8 sband_allocated;
1417 int tx_headroom; /* required headroom for hardware/radiotap */
1424 struct tasklet_struct tasklet;
1425 struct sk_buff_head skb_queue;
1426 struct sk_buff_head skb_queue_unreliable;
1428 spinlock_t rx_path_lock;
1435 struct mutex sta_mtx;
1436 spinlock_t tim_lock;
1437 unsigned long num_sta;
1438 struct list_head sta_list;
1439 struct rhltable sta_hash;
1440 struct rhltable link_sta_hash;
1441 struct timer_list sta_cleanup;
1442 int sta_generation;
1444 struct sk_buff_head pending[IEEE80211_MAX_QUEUES];
1445 struct tasklet_struct tx_pending_tasklet;
1446 struct tasklet_struct wake_txqs_tasklet;
1448 atomic_t agg_queue_stop[IEEE80211_MAX_QUEUES];
1451 atomic_t iff_allmultis;
1453 struct rate_control_ref *rate_ctrl;
1455 struct arc4_ctx wep_tx_ctx;
1456 struct arc4_ctx wep_rx_ctx;
1457 u32 wep_iv;
1460 struct list_head interfaces;
1461 struct list_head mon_list; /* only that are IFF_UP && !cooked */
1462 struct mutex iflist_mtx;
1468 struct mutex key_mtx;
1471 struct mutex mtx;
1474 unsigned long scanning;
1475 struct cfg80211_ssid scan_ssid;
1476 struct cfg80211_scan_request *int_scan_req;
1477 struct cfg80211_scan_request __rcu *scan_req;
1478 struct ieee80211_scan_request *hw_scan_req;
1479 struct cfg80211_chan_def scan_chandef;
1480 enum nl80211_band hw_scan_band;
1481 int scan_channel_idx;
1482 int scan_ies_len;
1483 int hw_scan_ies_bufsize;
1484 struct cfg80211_scan_info scan_info;
1486 struct wiphy_work sched_scan_stopped_work;
1487 struct ieee80211_sub_if_data __rcu *sched_scan_sdata;
1488 struct cfg80211_sched_scan_request __rcu *sched_scan_req;
1489 u8 scan_addr[ETH_ALEN];
1491 unsigned long leave_oper_channel_time;
1492 enum mac80211_scan_state next_scan_state;
1493 struct wiphy_delayed_work scan_work;
1494 struct ieee80211_sub_if_data __rcu *scan_sdata;
1496 struct cfg80211_chan_def _oper_chandef;
1499 struct ieee80211_channel *tmp_channel;
1502 struct list_head chanctx_list;
1503 struct mutex chanctx_mtx;
1506 struct led_trigger tx_led, rx_led, assoc_led, radio_led;
1507 struct led_trigger tpt_led;
1508 atomic_t tx_led_active, rx_led_active, assoc_led_active;
1509 atomic_t radio_led_active, tpt_led_active;
1510 struct tpt_led_trigger *tpt_led_trigger;
1516 u32 dot11TransmittedFragmentCount;
1517 u32 dot11MulticastTransmittedFrameCount;
1518 u32 dot11FailedCount;
1519 u32 dot11RetryCount;
1520 u32 dot11MultipleRetryCount;
1521 u32 dot11FrameDuplicateCount;
1522 u32 dot11ReceivedFragmentCount;
1523 u32 dot11MulticastReceivedFrameCount;
1524 u32 dot11TransmittedFrameCount;
1527 unsigned int tx_handlers_drop;
1528 unsigned int tx_handlers_queued;
1529 unsigned int tx_handlers_drop_wep;
1530 unsigned int tx_handlers_drop_not_assoc;
1531 unsigned int tx_handlers_drop_unauth_port;
1532 unsigned int rx_handlers_drop;
1533 unsigned int rx_handlers_queued;
1534 unsigned int rx_handlers_drop_nullfunc;
1535 unsigned int rx_handlers_drop_defrag;
1536 unsigned int tx_expand_skb_head;
1537 unsigned int tx_expand_skb_head_cloned;
1538 unsigned int rx_expand_skb_head_defrag;
1539 unsigned int rx_handlers_fragments;
1540 unsigned int tx_status_drop;
1547 int total_ps_buffered; /* total number of all buffered unicast and
1551 bool pspolling;
1556 struct ieee80211_sub_if_data *ps_sdata;
1557 struct work_struct dynamic_ps_enable_work;
1558 struct work_struct dynamic_ps_disable_work;
1559 struct timer_list dynamic_ps_timer;
1560 struct notifier_block ifa_notifier;
1561 struct notifier_block ifa6_notifier;
1567 int dynamic_ps_forced_timeout;
1569 int user_power_level; /* in dBm, for all interfaces */
1571 enum ieee80211_smps_mode smps_mode;
1573 struct work_struct restart_work;
1576 struct local_debugfsdentries {
1579 } debugfs;
1580 bool force_tx_status;
1586 struct wiphy_delayed_work roc_work;
1587 struct list_head roc_list;
1588 struct wiphy_work hw_roc_start, hw_roc_done;
1589 unsigned long hw_roc_start_time;
1590 u64 roc_cookie_counter;
1592 struct idr ack_status_frames;
1593 spinlock_t ack_status_lock;
1595 struct ieee80211_sub_if_data __rcu *p2p_sdata;
1620 struct ieee80211_local *local = sdata->local; in ieee80211_get_sband() argument