diff options
Diffstat (limited to 'net/wireless/core.h')
-rw-r--r-- | net/wireless/core.h | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/net/wireless/core.h b/net/wireless/core.h index b9ec3061ed72..fb08c28fc90a 100644 --- a/net/wireless/core.h +++ b/net/wireless/core.h | |||
@@ -54,6 +54,8 @@ struct cfg80211_registered_device { | |||
54 | int opencount; /* also protected by devlist_mtx */ | 54 | int opencount; /* also protected by devlist_mtx */ |
55 | wait_queue_head_t dev_wait; | 55 | wait_queue_head_t dev_wait; |
56 | 56 | ||
57 | u32 ap_beacons_nlpid; | ||
58 | |||
57 | /* BSSes/scanning */ | 59 | /* BSSes/scanning */ |
58 | spinlock_t bss_lock; | 60 | spinlock_t bss_lock; |
59 | struct list_head bss_list; | 61 | struct list_head bss_list; |
@@ -339,13 +341,17 @@ int __cfg80211_mlme_assoc(struct cfg80211_registered_device *rdev, | |||
339 | const u8 *bssid, const u8 *prev_bssid, | 341 | const u8 *bssid, const u8 *prev_bssid, |
340 | const u8 *ssid, int ssid_len, | 342 | const u8 *ssid, int ssid_len, |
341 | const u8 *ie, int ie_len, bool use_mfp, | 343 | const u8 *ie, int ie_len, bool use_mfp, |
342 | struct cfg80211_crypto_settings *crypt); | 344 | struct cfg80211_crypto_settings *crypt, |
345 | u32 assoc_flags, struct ieee80211_ht_cap *ht_capa, | ||
346 | struct ieee80211_ht_cap *ht_capa_mask); | ||
343 | int cfg80211_mlme_assoc(struct cfg80211_registered_device *rdev, | 347 | int cfg80211_mlme_assoc(struct cfg80211_registered_device *rdev, |
344 | struct net_device *dev, struct ieee80211_channel *chan, | 348 | struct net_device *dev, struct ieee80211_channel *chan, |
345 | const u8 *bssid, const u8 *prev_bssid, | 349 | const u8 *bssid, const u8 *prev_bssid, |
346 | const u8 *ssid, int ssid_len, | 350 | const u8 *ssid, int ssid_len, |
347 | const u8 *ie, int ie_len, bool use_mfp, | 351 | const u8 *ie, int ie_len, bool use_mfp, |
348 | struct cfg80211_crypto_settings *crypt); | 352 | struct cfg80211_crypto_settings *crypt, |
353 | u32 assoc_flags, struct ieee80211_ht_cap *ht_capa, | ||
354 | struct ieee80211_ht_cap *ht_capa_mask); | ||
349 | int __cfg80211_mlme_deauth(struct cfg80211_registered_device *rdev, | 355 | int __cfg80211_mlme_deauth(struct cfg80211_registered_device *rdev, |
350 | struct net_device *dev, const u8 *bssid, | 356 | struct net_device *dev, const u8 *bssid, |
351 | const u8 *ie, int ie_len, u16 reason, | 357 | const u8 *ie, int ie_len, u16 reason, |
@@ -376,7 +382,9 @@ int cfg80211_mlme_mgmt_tx(struct cfg80211_registered_device *rdev, | |||
376 | enum nl80211_channel_type channel_type, | 382 | enum nl80211_channel_type channel_type, |
377 | bool channel_type_valid, unsigned int wait, | 383 | bool channel_type_valid, unsigned int wait, |
378 | const u8 *buf, size_t len, bool no_cck, | 384 | const u8 *buf, size_t len, bool no_cck, |
379 | u64 *cookie); | 385 | bool dont_wait_for_ack, u64 *cookie); |
386 | void cfg80211_oper_and_ht_capa(struct ieee80211_ht_cap *ht_capa, | ||
387 | const struct ieee80211_ht_cap *ht_capa_mask); | ||
380 | 388 | ||
381 | /* SME */ | 389 | /* SME */ |
382 | int __cfg80211_connect(struct cfg80211_registered_device *rdev, | 390 | int __cfg80211_connect(struct cfg80211_registered_device *rdev, |