diff options
Diffstat (limited to 'net/mac80211/ieee80211_i.h')
-rw-r--r-- | net/mac80211/ieee80211_i.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/net/mac80211/ieee80211_i.h b/net/mac80211/ieee80211_i.h index aec6853cb435..630a438180fd 100644 --- a/net/mac80211/ieee80211_i.h +++ b/net/mac80211/ieee80211_i.h | |||
@@ -280,6 +280,7 @@ struct ieee80211_if_managed { | |||
280 | struct work_struct beacon_loss_work; | 280 | struct work_struct beacon_loss_work; |
281 | 281 | ||
282 | unsigned long probe_timeout; | 282 | unsigned long probe_timeout; |
283 | int probe_send_count; | ||
283 | 284 | ||
284 | struct mutex mtx; | 285 | struct mutex mtx; |
285 | struct ieee80211_bss *associated; | 286 | struct ieee80211_bss *associated; |
@@ -614,6 +615,12 @@ struct ieee80211_local { | |||
614 | 615 | ||
615 | const struct ieee80211_ops *ops; | 616 | const struct ieee80211_ops *ops; |
616 | 617 | ||
618 | /* | ||
619 | * private workqueue to mac80211. mac80211 makes this accessible | ||
620 | * via ieee80211_queue_work() | ||
621 | */ | ||
622 | struct workqueue_struct *workqueue; | ||
623 | |||
617 | unsigned long queue_stop_reasons[IEEE80211_MAX_QUEUES]; | 624 | unsigned long queue_stop_reasons[IEEE80211_MAX_QUEUES]; |
618 | /* also used to protect ampdu_ac_queue and amdpu_ac_stop_refcnt */ | 625 | /* also used to protect ampdu_ac_queue and amdpu_ac_stop_refcnt */ |
619 | spinlock_t queue_stop_reason_lock; | 626 | spinlock_t queue_stop_reason_lock; |
@@ -621,7 +628,7 @@ struct ieee80211_local { | |||
621 | int open_count; | 628 | int open_count; |
622 | int monitors, cooked_mntrs; | 629 | int monitors, cooked_mntrs; |
623 | /* number of interfaces with corresponding FIF_ flags */ | 630 | /* number of interfaces with corresponding FIF_ flags */ |
624 | int fif_fcsfail, fif_plcpfail, fif_control, fif_other_bss; | 631 | int fif_fcsfail, fif_plcpfail, fif_control, fif_other_bss, fif_pspoll; |
625 | unsigned int filter_flags; /* FIF_* */ | 632 | unsigned int filter_flags; /* FIF_* */ |
626 | struct iw_statistics wstats; | 633 | struct iw_statistics wstats; |
627 | 634 | ||