wireless fixes for v5.18
Second set of fixes for v5.18 and hopefully the last one. We have a new iwlwifi maintainer, a fix to rfkill ioctl interface and important fixes to both stack and two drivers. -----BEGIN PGP SIGNATURE----- iQFFBAABCgAvFiEEiBjanGPFTz4PRfLobhckVSbrbZsFAmJ72akRHGt2YWxvQGtl cm5lbC5vcmcACgkQbhckVSbrbZso0wf+PmQev6QTWG/LPBfcIp7H6upRMS09/+Se SEhS9UAE/qh4GJM0Mn1XE6T5mcokQZ/Ck5uaWT3Be9Dwbbk/ucAvYGEvf4OxmUEM wwtDaA0BaFwS417iW5FLLAsu2ascN8yeje/+yK+Uu9DpB2KxXSIQB7OJpy3/HVAj jEavgZN/fQEiTba9/JDa6DBMm2RVAZrmc+1sB5FakUocVTuN2pZAkM+lOBXvlHS4 4jd/KEFDyto2BMOR46IOwXTNKgBk2UovqeYFrTdonMz7W7nhzWJcguFU0e6rej5q MCWxT8PryZ5yD5wl7pfOKZRTqFf+Mb+Up+yFipEEgd2SYnwxjplkaQ== =qa3F -----END PGP SIGNATURE----- Merge tag 'wireless-2022-05-11' of git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless Kalle Valo says: ==================== wireless fixes for v5.18 Second set of fixes for v5.18 and hopefully the last one. We have a new iwlwifi maintainer, a fix to rfkill ioctl interface and important fixes to both stack and two drivers. * tag 'wireless-2022-05-11' of git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless: rfkill: uapi: fix RFKILL_IOCTL_MAX_SIZE ioctl request definition nl80211: fix locking in nl80211_set_tx_bitrate_mask() mac80211_hwsim: call ieee80211_tx_prepare_skb under RCU protection mac80211_hwsim: fix RCU protected chanctx access mailmap: update Kalle Valo's email mac80211: Reset MBSSID parameters upon connection cfg80211: retrieve S1G operating channel number nl80211: validate S1G channel width mac80211: fix rx reordering with non explicit / psmp ack policy ath11k: reduce the wait time of 11d scan and hw scan while add interface MAINTAINERS: update iwlwifi driver maintainer iwlwifi: iwl-dbg: Use del_timer_sync() before freeing ==================== Link: https://lore.kernel.org/r/20220511154535.A1A12C340EE@smtp.kernel.org Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
commit
8bf6008c8b
1
.mailmap
1
.mailmap
@ -204,6 +204,7 @@ Juha Yrjola <at solidboot.com>
|
|||||||
Juha Yrjola <juha.yrjola@nokia.com>
|
Juha Yrjola <juha.yrjola@nokia.com>
|
||||||
Juha Yrjola <juha.yrjola@solidboot.com>
|
Juha Yrjola <juha.yrjola@solidboot.com>
|
||||||
Julien Thierry <julien.thierry.kdev@gmail.com> <julien.thierry@arm.com>
|
Julien Thierry <julien.thierry.kdev@gmail.com> <julien.thierry@arm.com>
|
||||||
|
Kalle Valo <kvalo@kernel.org> <kvalo@codeaurora.org>
|
||||||
Kalyan Thota <quic_kalyant@quicinc.com> <kalyan_t@codeaurora.org>
|
Kalyan Thota <quic_kalyant@quicinc.com> <kalyan_t@codeaurora.org>
|
||||||
Kay Sievers <kay.sievers@vrfy.org>
|
Kay Sievers <kay.sievers@vrfy.org>
|
||||||
Kees Cook <keescook@chromium.org> <kees.cook@canonical.com>
|
Kees Cook <keescook@chromium.org> <kees.cook@canonical.com>
|
||||||
|
@ -10132,7 +10132,7 @@ S: Supported
|
|||||||
F: drivers/net/wireless/intel/iwlegacy/
|
F: drivers/net/wireless/intel/iwlegacy/
|
||||||
|
|
||||||
INTEL WIRELESS WIFI LINK (iwlwifi)
|
INTEL WIRELESS WIFI LINK (iwlwifi)
|
||||||
M: Luca Coelho <luciano.coelho@intel.com>
|
M: Gregory Greenman <gregory.greenman@intel.com>
|
||||||
L: linux-wireless@vger.kernel.org
|
L: linux-wireless@vger.kernel.org
|
||||||
S: Supported
|
S: Supported
|
||||||
W: https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
|
W: https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
|
||||||
|
@ -1288,6 +1288,7 @@ static void ath11k_core_restart(struct work_struct *work)
|
|||||||
|
|
||||||
ieee80211_stop_queues(ar->hw);
|
ieee80211_stop_queues(ar->hw);
|
||||||
ath11k_mac_drain_tx(ar);
|
ath11k_mac_drain_tx(ar);
|
||||||
|
complete(&ar->completed_11d_scan);
|
||||||
complete(&ar->scan.started);
|
complete(&ar->scan.started);
|
||||||
complete(&ar->scan.completed);
|
complete(&ar->scan.completed);
|
||||||
complete(&ar->peer_assoc_done);
|
complete(&ar->peer_assoc_done);
|
||||||
|
@ -38,6 +38,8 @@
|
|||||||
|
|
||||||
extern unsigned int ath11k_frame_mode;
|
extern unsigned int ath11k_frame_mode;
|
||||||
|
|
||||||
|
#define ATH11K_SCAN_TIMEOUT_HZ (20 * HZ)
|
||||||
|
|
||||||
#define ATH11K_MON_TIMER_INTERVAL 10
|
#define ATH11K_MON_TIMER_INTERVAL 10
|
||||||
|
|
||||||
enum ath11k_supported_bw {
|
enum ath11k_supported_bw {
|
||||||
@ -189,6 +191,12 @@ enum ath11k_scan_state {
|
|||||||
ATH11K_SCAN_ABORTING,
|
ATH11K_SCAN_ABORTING,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
enum ath11k_11d_state {
|
||||||
|
ATH11K_11D_IDLE,
|
||||||
|
ATH11K_11D_PREPARING,
|
||||||
|
ATH11K_11D_RUNNING,
|
||||||
|
};
|
||||||
|
|
||||||
enum ath11k_dev_flags {
|
enum ath11k_dev_flags {
|
||||||
ATH11K_CAC_RUNNING,
|
ATH11K_CAC_RUNNING,
|
||||||
ATH11K_FLAG_CORE_REGISTERED,
|
ATH11K_FLAG_CORE_REGISTERED,
|
||||||
@ -607,9 +615,8 @@ struct ath11k {
|
|||||||
bool dfs_block_radar_events;
|
bool dfs_block_radar_events;
|
||||||
struct ath11k_thermal thermal;
|
struct ath11k_thermal thermal;
|
||||||
u32 vdev_id_11d_scan;
|
u32 vdev_id_11d_scan;
|
||||||
struct completion finish_11d_scan;
|
struct completion completed_11d_scan;
|
||||||
struct completion finish_11d_ch_list;
|
enum ath11k_11d_state state_11d;
|
||||||
bool pending_11d;
|
|
||||||
bool regdom_set_by_user;
|
bool regdom_set_by_user;
|
||||||
int hw_rate_code;
|
int hw_rate_code;
|
||||||
u8 twt_enabled;
|
u8 twt_enabled;
|
||||||
|
@ -3601,26 +3601,6 @@ static int ath11k_mac_op_hw_scan(struct ieee80211_hw *hw,
|
|||||||
if (ret)
|
if (ret)
|
||||||
goto exit;
|
goto exit;
|
||||||
|
|
||||||
/* Currently the pending_11d=true only happened 1 time while
|
|
||||||
* wlan interface up in ath11k_mac_11d_scan_start(), it is called by
|
|
||||||
* ath11k_mac_op_add_interface(), after wlan interface up,
|
|
||||||
* pending_11d=false always.
|
|
||||||
* If remove below wait, it always happened scan fail and lead connect
|
|
||||||
* fail while wlan interface up, because it has a 11d scan which is running
|
|
||||||
* in firmware, and lead this scan failed.
|
|
||||||
*/
|
|
||||||
if (ar->pending_11d) {
|
|
||||||
long time_left;
|
|
||||||
unsigned long timeout = 5 * HZ;
|
|
||||||
|
|
||||||
if (ar->supports_6ghz)
|
|
||||||
timeout += 5 * HZ;
|
|
||||||
|
|
||||||
time_left = wait_for_completion_timeout(&ar->finish_11d_ch_list, timeout);
|
|
||||||
ath11k_dbg(ar->ab, ATH11K_DBG_MAC,
|
|
||||||
"mac wait 11d channel list time left %ld\n", time_left);
|
|
||||||
}
|
|
||||||
|
|
||||||
memset(&arg, 0, sizeof(arg));
|
memset(&arg, 0, sizeof(arg));
|
||||||
ath11k_wmi_start_scan_init(ar, &arg);
|
ath11k_wmi_start_scan_init(ar, &arg);
|
||||||
arg.vdev_id = arvif->vdev_id;
|
arg.vdev_id = arvif->vdev_id;
|
||||||
@ -3686,6 +3666,10 @@ exit:
|
|||||||
kfree(arg.extraie.ptr);
|
kfree(arg.extraie.ptr);
|
||||||
|
|
||||||
mutex_unlock(&ar->conf_mutex);
|
mutex_unlock(&ar->conf_mutex);
|
||||||
|
|
||||||
|
if (ar->state_11d == ATH11K_11D_PREPARING)
|
||||||
|
ath11k_mac_11d_scan_start(ar, arvif->vdev_id);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -5814,7 +5798,7 @@ static int ath11k_mac_op_start(struct ieee80211_hw *hw)
|
|||||||
|
|
||||||
/* TODO: Do we need to enable ANI? */
|
/* TODO: Do we need to enable ANI? */
|
||||||
|
|
||||||
ath11k_reg_update_chan_list(ar);
|
ath11k_reg_update_chan_list(ar, false);
|
||||||
|
|
||||||
ar->num_started_vdevs = 0;
|
ar->num_started_vdevs = 0;
|
||||||
ar->num_created_vdevs = 0;
|
ar->num_created_vdevs = 0;
|
||||||
@ -5881,6 +5865,11 @@ static void ath11k_mac_op_stop(struct ieee80211_hw *hw)
|
|||||||
cancel_work_sync(&ar->ab->update_11d_work);
|
cancel_work_sync(&ar->ab->update_11d_work);
|
||||||
cancel_work_sync(&ar->ab->rfkill_work);
|
cancel_work_sync(&ar->ab->rfkill_work);
|
||||||
|
|
||||||
|
if (ar->state_11d == ATH11K_11D_PREPARING) {
|
||||||
|
ar->state_11d = ATH11K_11D_IDLE;
|
||||||
|
complete(&ar->completed_11d_scan);
|
||||||
|
}
|
||||||
|
|
||||||
spin_lock_bh(&ar->data_lock);
|
spin_lock_bh(&ar->data_lock);
|
||||||
list_for_each_entry_safe(ppdu_stats, tmp, &ar->ppdu_stats_info, list) {
|
list_for_each_entry_safe(ppdu_stats, tmp, &ar->ppdu_stats_info, list) {
|
||||||
list_del(&ppdu_stats->list);
|
list_del(&ppdu_stats->list);
|
||||||
@ -6051,7 +6040,7 @@ static bool ath11k_mac_vif_ap_active_any(struct ath11k_base *ab)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
void ath11k_mac_11d_scan_start(struct ath11k *ar, u32 vdev_id, bool wait)
|
void ath11k_mac_11d_scan_start(struct ath11k *ar, u32 vdev_id)
|
||||||
{
|
{
|
||||||
struct wmi_11d_scan_start_params param;
|
struct wmi_11d_scan_start_params param;
|
||||||
int ret;
|
int ret;
|
||||||
@ -6079,28 +6068,22 @@ void ath11k_mac_11d_scan_start(struct ath11k *ar, u32 vdev_id, bool wait)
|
|||||||
|
|
||||||
ath11k_dbg(ar->ab, ATH11K_DBG_MAC, "mac start 11d scan\n");
|
ath11k_dbg(ar->ab, ATH11K_DBG_MAC, "mac start 11d scan\n");
|
||||||
|
|
||||||
if (wait)
|
|
||||||
reinit_completion(&ar->finish_11d_scan);
|
|
||||||
|
|
||||||
ret = ath11k_wmi_send_11d_scan_start_cmd(ar, ¶m);
|
ret = ath11k_wmi_send_11d_scan_start_cmd(ar, ¶m);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
ath11k_warn(ar->ab, "failed to start 11d scan vdev %d ret: %d\n",
|
ath11k_warn(ar->ab, "failed to start 11d scan vdev %d ret: %d\n",
|
||||||
vdev_id, ret);
|
vdev_id, ret);
|
||||||
} else {
|
} else {
|
||||||
ar->vdev_id_11d_scan = vdev_id;
|
ar->vdev_id_11d_scan = vdev_id;
|
||||||
if (wait) {
|
if (ar->state_11d == ATH11K_11D_PREPARING)
|
||||||
ar->pending_11d = true;
|
ar->state_11d = ATH11K_11D_RUNNING;
|
||||||
ret = wait_for_completion_timeout(&ar->finish_11d_scan,
|
|
||||||
5 * HZ);
|
|
||||||
ath11k_dbg(ar->ab, ATH11K_DBG_MAC,
|
|
||||||
"mac 11d scan left time %d\n", ret);
|
|
||||||
|
|
||||||
if (!ret)
|
|
||||||
ar->pending_11d = false;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fin:
|
fin:
|
||||||
|
if (ar->state_11d == ATH11K_11D_PREPARING) {
|
||||||
|
ar->state_11d = ATH11K_11D_IDLE;
|
||||||
|
complete(&ar->completed_11d_scan);
|
||||||
|
}
|
||||||
|
|
||||||
mutex_unlock(&ar->ab->vdev_id_11d_lock);
|
mutex_unlock(&ar->ab->vdev_id_11d_lock);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -6123,12 +6106,15 @@ void ath11k_mac_11d_scan_stop(struct ath11k *ar)
|
|||||||
vdev_id = ar->vdev_id_11d_scan;
|
vdev_id = ar->vdev_id_11d_scan;
|
||||||
|
|
||||||
ret = ath11k_wmi_send_11d_scan_stop_cmd(ar, vdev_id);
|
ret = ath11k_wmi_send_11d_scan_stop_cmd(ar, vdev_id);
|
||||||
if (ret)
|
if (ret) {
|
||||||
ath11k_warn(ar->ab,
|
ath11k_warn(ar->ab,
|
||||||
"failed to stopt 11d scan vdev %d ret: %d\n",
|
"failed to stopt 11d scan vdev %d ret: %d\n",
|
||||||
vdev_id, ret);
|
vdev_id, ret);
|
||||||
else
|
} else {
|
||||||
ar->vdev_id_11d_scan = ATH11K_11D_INVALID_VDEV_ID;
|
ar->vdev_id_11d_scan = ATH11K_11D_INVALID_VDEV_ID;
|
||||||
|
ar->state_11d = ATH11K_11D_IDLE;
|
||||||
|
complete(&ar->completed_11d_scan);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
mutex_unlock(&ar->ab->vdev_id_11d_lock);
|
mutex_unlock(&ar->ab->vdev_id_11d_lock);
|
||||||
}
|
}
|
||||||
@ -6324,8 +6310,10 @@ static int ath11k_mac_op_add_interface(struct ieee80211_hw *hw,
|
|||||||
goto err_peer_del;
|
goto err_peer_del;
|
||||||
}
|
}
|
||||||
|
|
||||||
ath11k_mac_11d_scan_start(ar, arvif->vdev_id, true);
|
if (test_bit(WMI_TLV_SERVICE_11D_OFFLOAD, ab->wmi_ab.svc_map)) {
|
||||||
|
reinit_completion(&ar->completed_11d_scan);
|
||||||
|
ar->state_11d = ATH11K_11D_PREPARING;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case WMI_VDEV_TYPE_MONITOR:
|
case WMI_VDEV_TYPE_MONITOR:
|
||||||
set_bit(ATH11K_FLAG_MONITOR_VDEV_CREATED, &ar->monitor_flags);
|
set_bit(ATH11K_FLAG_MONITOR_VDEV_CREATED, &ar->monitor_flags);
|
||||||
@ -7190,7 +7178,7 @@ ath11k_mac_op_unassign_vif_chanctx(struct ieee80211_hw *hw,
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (arvif->vdev_type == WMI_VDEV_TYPE_STA)
|
if (arvif->vdev_type == WMI_VDEV_TYPE_STA)
|
||||||
ath11k_mac_11d_scan_start(ar, arvif->vdev_id, false);
|
ath11k_mac_11d_scan_start(ar, arvif->vdev_id);
|
||||||
|
|
||||||
mutex_unlock(&ar->conf_mutex);
|
mutex_unlock(&ar->conf_mutex);
|
||||||
}
|
}
|
||||||
@ -8671,8 +8659,7 @@ int ath11k_mac_allocate(struct ath11k_base *ab)
|
|||||||
ar->monitor_vdev_id = -1;
|
ar->monitor_vdev_id = -1;
|
||||||
clear_bit(ATH11K_FLAG_MONITOR_VDEV_CREATED, &ar->monitor_flags);
|
clear_bit(ATH11K_FLAG_MONITOR_VDEV_CREATED, &ar->monitor_flags);
|
||||||
ar->vdev_id_11d_scan = ATH11K_11D_INVALID_VDEV_ID;
|
ar->vdev_id_11d_scan = ATH11K_11D_INVALID_VDEV_ID;
|
||||||
init_completion(&ar->finish_11d_scan);
|
init_completion(&ar->completed_11d_scan);
|
||||||
init_completion(&ar->finish_11d_ch_list);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -130,7 +130,7 @@ extern const struct htt_rx_ring_tlv_filter ath11k_mac_mon_status_filter_default;
|
|||||||
#define ATH11K_SCAN_11D_INTERVAL 600000
|
#define ATH11K_SCAN_11D_INTERVAL 600000
|
||||||
#define ATH11K_11D_INVALID_VDEV_ID 0xFFFF
|
#define ATH11K_11D_INVALID_VDEV_ID 0xFFFF
|
||||||
|
|
||||||
void ath11k_mac_11d_scan_start(struct ath11k *ar, u32 vdev_id, bool wait);
|
void ath11k_mac_11d_scan_start(struct ath11k *ar, u32 vdev_id);
|
||||||
void ath11k_mac_11d_scan_stop(struct ath11k *ar);
|
void ath11k_mac_11d_scan_stop(struct ath11k *ar);
|
||||||
void ath11k_mac_11d_scan_stop_all(struct ath11k_base *ab);
|
void ath11k_mac_11d_scan_stop_all(struct ath11k_base *ab);
|
||||||
|
|
||||||
|
@ -102,7 +102,7 @@ ath11k_reg_notifier(struct wiphy *wiphy, struct regulatory_request *request)
|
|||||||
ar->regdom_set_by_user = true;
|
ar->regdom_set_by_user = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
int ath11k_reg_update_chan_list(struct ath11k *ar)
|
int ath11k_reg_update_chan_list(struct ath11k *ar, bool wait)
|
||||||
{
|
{
|
||||||
struct ieee80211_supported_band **bands;
|
struct ieee80211_supported_band **bands;
|
||||||
struct scan_chan_list_params *params;
|
struct scan_chan_list_params *params;
|
||||||
@ -111,7 +111,32 @@ int ath11k_reg_update_chan_list(struct ath11k *ar)
|
|||||||
struct channel_param *ch;
|
struct channel_param *ch;
|
||||||
enum nl80211_band band;
|
enum nl80211_band band;
|
||||||
int num_channels = 0;
|
int num_channels = 0;
|
||||||
int i, ret;
|
int i, ret, left;
|
||||||
|
|
||||||
|
if (wait && ar->state_11d != ATH11K_11D_IDLE) {
|
||||||
|
left = wait_for_completion_timeout(&ar->completed_11d_scan,
|
||||||
|
ATH11K_SCAN_TIMEOUT_HZ);
|
||||||
|
if (!left) {
|
||||||
|
ath11k_dbg(ar->ab, ATH11K_DBG_REG,
|
||||||
|
"failed to receive 11d scan complete: timed out\n");
|
||||||
|
ar->state_11d = ATH11K_11D_IDLE;
|
||||||
|
}
|
||||||
|
ath11k_dbg(ar->ab, ATH11K_DBG_REG,
|
||||||
|
"reg 11d scan wait left time %d\n", left);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (wait &&
|
||||||
|
(ar->scan.state == ATH11K_SCAN_STARTING ||
|
||||||
|
ar->scan.state == ATH11K_SCAN_RUNNING)) {
|
||||||
|
left = wait_for_completion_timeout(&ar->scan.completed,
|
||||||
|
ATH11K_SCAN_TIMEOUT_HZ);
|
||||||
|
if (!left)
|
||||||
|
ath11k_dbg(ar->ab, ATH11K_DBG_REG,
|
||||||
|
"failed to receive hw scan complete: timed out\n");
|
||||||
|
|
||||||
|
ath11k_dbg(ar->ab, ATH11K_DBG_REG,
|
||||||
|
"reg hw scan wait left time %d\n", left);
|
||||||
|
}
|
||||||
|
|
||||||
bands = hw->wiphy->bands;
|
bands = hw->wiphy->bands;
|
||||||
for (band = 0; band < NUM_NL80211_BANDS; band++) {
|
for (band = 0; band < NUM_NL80211_BANDS; band++) {
|
||||||
@ -193,11 +218,6 @@ int ath11k_reg_update_chan_list(struct ath11k *ar)
|
|||||||
ret = ath11k_wmi_send_scan_chan_list_cmd(ar, params);
|
ret = ath11k_wmi_send_scan_chan_list_cmd(ar, params);
|
||||||
kfree(params);
|
kfree(params);
|
||||||
|
|
||||||
if (ar->pending_11d) {
|
|
||||||
complete(&ar->finish_11d_ch_list);
|
|
||||||
ar->pending_11d = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -263,15 +283,8 @@ int ath11k_regd_update(struct ath11k *ar)
|
|||||||
goto err;
|
goto err;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ar->pending_11d)
|
|
||||||
complete(&ar->finish_11d_scan);
|
|
||||||
|
|
||||||
rtnl_lock();
|
rtnl_lock();
|
||||||
wiphy_lock(ar->hw->wiphy);
|
wiphy_lock(ar->hw->wiphy);
|
||||||
|
|
||||||
if (ar->pending_11d)
|
|
||||||
reinit_completion(&ar->finish_11d_ch_list);
|
|
||||||
|
|
||||||
ret = regulatory_set_wiphy_regd_sync(ar->hw->wiphy, regd_copy);
|
ret = regulatory_set_wiphy_regd_sync(ar->hw->wiphy, regd_copy);
|
||||||
wiphy_unlock(ar->hw->wiphy);
|
wiphy_unlock(ar->hw->wiphy);
|
||||||
rtnl_unlock();
|
rtnl_unlock();
|
||||||
@ -282,7 +295,7 @@ int ath11k_regd_update(struct ath11k *ar)
|
|||||||
goto err;
|
goto err;
|
||||||
|
|
||||||
if (ar->state == ATH11K_STATE_ON) {
|
if (ar->state == ATH11K_STATE_ON) {
|
||||||
ret = ath11k_reg_update_chan_list(ar);
|
ret = ath11k_reg_update_chan_list(ar, true);
|
||||||
if (ret)
|
if (ret)
|
||||||
goto err;
|
goto err;
|
||||||
}
|
}
|
||||||
|
@ -32,5 +32,5 @@ struct ieee80211_regdomain *
|
|||||||
ath11k_reg_build_regd(struct ath11k_base *ab,
|
ath11k_reg_build_regd(struct ath11k_base *ab,
|
||||||
struct cur_regulatory_info *reg_info, bool intersect);
|
struct cur_regulatory_info *reg_info, bool intersect);
|
||||||
int ath11k_regd_update(struct ath11k *ar);
|
int ath11k_regd_update(struct ath11k *ar);
|
||||||
int ath11k_reg_update_chan_list(struct ath11k *ar);
|
int ath11k_reg_update_chan_list(struct ath11k *ar, bool wait);
|
||||||
#endif
|
#endif
|
||||||
|
@ -2015,7 +2015,10 @@ void ath11k_wmi_start_scan_init(struct ath11k *ar,
|
|||||||
{
|
{
|
||||||
/* setup commonly used values */
|
/* setup commonly used values */
|
||||||
arg->scan_req_id = 1;
|
arg->scan_req_id = 1;
|
||||||
arg->scan_priority = WMI_SCAN_PRIORITY_LOW;
|
if (ar->state_11d == ATH11K_11D_PREPARING)
|
||||||
|
arg->scan_priority = WMI_SCAN_PRIORITY_MEDIUM;
|
||||||
|
else
|
||||||
|
arg->scan_priority = WMI_SCAN_PRIORITY_LOW;
|
||||||
arg->dwell_time_active = 50;
|
arg->dwell_time_active = 50;
|
||||||
arg->dwell_time_active_2g = 0;
|
arg->dwell_time_active_2g = 0;
|
||||||
arg->dwell_time_passive = 150;
|
arg->dwell_time_passive = 150;
|
||||||
@ -6350,8 +6353,10 @@ static void ath11k_wmi_op_ep_tx_credits(struct ath11k_base *ab)
|
|||||||
static int ath11k_reg_11d_new_cc_event(struct ath11k_base *ab, struct sk_buff *skb)
|
static int ath11k_reg_11d_new_cc_event(struct ath11k_base *ab, struct sk_buff *skb)
|
||||||
{
|
{
|
||||||
const struct wmi_11d_new_cc_ev *ev;
|
const struct wmi_11d_new_cc_ev *ev;
|
||||||
|
struct ath11k *ar;
|
||||||
|
struct ath11k_pdev *pdev;
|
||||||
const void **tb;
|
const void **tb;
|
||||||
int ret;
|
int ret, i;
|
||||||
|
|
||||||
tb = ath11k_wmi_tlv_parse_alloc(ab, skb->data, skb->len, GFP_ATOMIC);
|
tb = ath11k_wmi_tlv_parse_alloc(ab, skb->data, skb->len, GFP_ATOMIC);
|
||||||
if (IS_ERR(tb)) {
|
if (IS_ERR(tb)) {
|
||||||
@ -6377,6 +6382,13 @@ static int ath11k_reg_11d_new_cc_event(struct ath11k_base *ab, struct sk_buff *s
|
|||||||
|
|
||||||
kfree(tb);
|
kfree(tb);
|
||||||
|
|
||||||
|
for (i = 0; i < ab->num_radios; i++) {
|
||||||
|
pdev = &ab->pdevs[i];
|
||||||
|
ar = pdev->ar;
|
||||||
|
ar->state_11d = ATH11K_11D_IDLE;
|
||||||
|
complete(&ar->completed_11d_scan);
|
||||||
|
}
|
||||||
|
|
||||||
queue_work(ab->workqueue, &ab->update_11d_work);
|
queue_work(ab->workqueue, &ab->update_11d_work);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -371,7 +371,7 @@ void iwl_dbg_tlv_del_timers(struct iwl_trans *trans)
|
|||||||
struct iwl_dbg_tlv_timer_node *node, *tmp;
|
struct iwl_dbg_tlv_timer_node *node, *tmp;
|
||||||
|
|
||||||
list_for_each_entry_safe(node, tmp, timer_list, list) {
|
list_for_each_entry_safe(node, tmp, timer_list, list) {
|
||||||
del_timer(&node->timer);
|
del_timer_sync(&node->timer);
|
||||||
list_del(&node->list);
|
list_del(&node->list);
|
||||||
kfree(node);
|
kfree(node);
|
||||||
}
|
}
|
||||||
|
@ -2202,11 +2202,14 @@ mac80211_hwsim_sta_rc_update(struct ieee80211_hw *hw,
|
|||||||
if (!data->use_chanctx) {
|
if (!data->use_chanctx) {
|
||||||
confbw = data->bw;
|
confbw = data->bw;
|
||||||
} else {
|
} else {
|
||||||
struct ieee80211_chanctx_conf *chanctx_conf =
|
struct ieee80211_chanctx_conf *chanctx_conf;
|
||||||
rcu_dereference(vif->chanctx_conf);
|
|
||||||
|
rcu_read_lock();
|
||||||
|
chanctx_conf = rcu_dereference(vif->chanctx_conf);
|
||||||
|
|
||||||
if (!WARN_ON(!chanctx_conf))
|
if (!WARN_ON(!chanctx_conf))
|
||||||
confbw = chanctx_conf->def.width;
|
confbw = chanctx_conf->def.width;
|
||||||
|
rcu_read_unlock();
|
||||||
}
|
}
|
||||||
|
|
||||||
WARN(bw > hwsim_get_chanwidth(confbw),
|
WARN(bw > hwsim_get_chanwidth(confbw),
|
||||||
@ -2475,11 +2478,13 @@ static void hw_scan_work(struct work_struct *work)
|
|||||||
if (req->ie_len)
|
if (req->ie_len)
|
||||||
skb_put_data(probe, req->ie, req->ie_len);
|
skb_put_data(probe, req->ie, req->ie_len);
|
||||||
|
|
||||||
|
rcu_read_lock();
|
||||||
if (!ieee80211_tx_prepare_skb(hwsim->hw,
|
if (!ieee80211_tx_prepare_skb(hwsim->hw,
|
||||||
hwsim->hw_scan_vif,
|
hwsim->hw_scan_vif,
|
||||||
probe,
|
probe,
|
||||||
hwsim->tmp_chan->band,
|
hwsim->tmp_chan->band,
|
||||||
NULL)) {
|
NULL)) {
|
||||||
|
rcu_read_unlock();
|
||||||
kfree_skb(probe);
|
kfree_skb(probe);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@ -2487,6 +2492,7 @@ static void hw_scan_work(struct work_struct *work)
|
|||||||
local_bh_disable();
|
local_bh_disable();
|
||||||
mac80211_hwsim_tx_frame(hwsim->hw, probe,
|
mac80211_hwsim_tx_frame(hwsim->hw, probe,
|
||||||
hwsim->tmp_chan);
|
hwsim->tmp_chan);
|
||||||
|
rcu_read_unlock();
|
||||||
local_bh_enable();
|
local_bh_enable();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -184,7 +184,7 @@ struct rfkill_event_ext {
|
|||||||
#define RFKILL_IOC_NOINPUT 1
|
#define RFKILL_IOC_NOINPUT 1
|
||||||
#define RFKILL_IOCTL_NOINPUT _IO(RFKILL_IOC_MAGIC, RFKILL_IOC_NOINPUT)
|
#define RFKILL_IOCTL_NOINPUT _IO(RFKILL_IOC_MAGIC, RFKILL_IOC_NOINPUT)
|
||||||
#define RFKILL_IOC_MAX_SIZE 2
|
#define RFKILL_IOC_MAX_SIZE 2
|
||||||
#define RFKILL_IOCTL_MAX_SIZE _IOW(RFKILL_IOC_MAGIC, RFKILL_IOC_EXT_SIZE, __u32)
|
#define RFKILL_IOCTL_MAX_SIZE _IOW(RFKILL_IOC_MAGIC, RFKILL_IOC_MAX_SIZE, __u32)
|
||||||
|
|
||||||
/* and that's all userspace gets */
|
/* and that's all userspace gets */
|
||||||
|
|
||||||
|
@ -3657,6 +3657,12 @@ static bool ieee80211_assoc_success(struct ieee80211_sub_if_data *sdata,
|
|||||||
cbss->transmitted_bss->bssid);
|
cbss->transmitted_bss->bssid);
|
||||||
bss_conf->bssid_indicator = cbss->max_bssid_indicator;
|
bss_conf->bssid_indicator = cbss->max_bssid_indicator;
|
||||||
bss_conf->bssid_index = cbss->bssid_index;
|
bss_conf->bssid_index = cbss->bssid_index;
|
||||||
|
} else {
|
||||||
|
bss_conf->nontransmitted = false;
|
||||||
|
memset(bss_conf->transmitter_bssid, 0,
|
||||||
|
sizeof(bss_conf->transmitter_bssid));
|
||||||
|
bss_conf->bssid_indicator = 0;
|
||||||
|
bss_conf->bssid_index = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -1405,8 +1405,7 @@ static void ieee80211_rx_reorder_ampdu(struct ieee80211_rx_data *rx,
|
|||||||
goto dont_reorder;
|
goto dont_reorder;
|
||||||
|
|
||||||
/* not part of a BA session */
|
/* not part of a BA session */
|
||||||
if (ack_policy != IEEE80211_QOS_CTL_ACK_POLICY_BLOCKACK &&
|
if (ack_policy == IEEE80211_QOS_CTL_ACK_POLICY_NOACK)
|
||||||
ack_policy != IEEE80211_QOS_CTL_ACK_POLICY_NORMAL)
|
|
||||||
goto dont_reorder;
|
goto dont_reorder;
|
||||||
|
|
||||||
/* new, potentially un-ordered, ampdu frame - process it */
|
/* new, potentially un-ordered, ampdu frame - process it */
|
||||||
|
@ -3173,6 +3173,15 @@ int nl80211_parse_chandef(struct cfg80211_registered_device *rdev,
|
|||||||
} else if (attrs[NL80211_ATTR_CHANNEL_WIDTH]) {
|
} else if (attrs[NL80211_ATTR_CHANNEL_WIDTH]) {
|
||||||
chandef->width =
|
chandef->width =
|
||||||
nla_get_u32(attrs[NL80211_ATTR_CHANNEL_WIDTH]);
|
nla_get_u32(attrs[NL80211_ATTR_CHANNEL_WIDTH]);
|
||||||
|
if (chandef->chan->band == NL80211_BAND_S1GHZ) {
|
||||||
|
/* User input error for channel width doesn't match channel */
|
||||||
|
if (chandef->width != ieee80211_s1g_channel_width(chandef->chan)) {
|
||||||
|
NL_SET_ERR_MSG_ATTR(extack,
|
||||||
|
attrs[NL80211_ATTR_CHANNEL_WIDTH],
|
||||||
|
"bad channel width");
|
||||||
|
return -EINVAL;
|
||||||
|
}
|
||||||
|
}
|
||||||
if (attrs[NL80211_ATTR_CENTER_FREQ1]) {
|
if (attrs[NL80211_ATTR_CENTER_FREQ1]) {
|
||||||
chandef->center_freq1 =
|
chandef->center_freq1 =
|
||||||
nla_get_u32(attrs[NL80211_ATTR_CENTER_FREQ1]);
|
nla_get_u32(attrs[NL80211_ATTR_CENTER_FREQ1]);
|
||||||
@ -11657,18 +11666,23 @@ static int nl80211_set_tx_bitrate_mask(struct sk_buff *skb,
|
|||||||
struct cfg80211_bitrate_mask mask;
|
struct cfg80211_bitrate_mask mask;
|
||||||
struct cfg80211_registered_device *rdev = info->user_ptr[0];
|
struct cfg80211_registered_device *rdev = info->user_ptr[0];
|
||||||
struct net_device *dev = info->user_ptr[1];
|
struct net_device *dev = info->user_ptr[1];
|
||||||
|
struct wireless_dev *wdev = dev->ieee80211_ptr;
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
if (!rdev->ops->set_bitrate_mask)
|
if (!rdev->ops->set_bitrate_mask)
|
||||||
return -EOPNOTSUPP;
|
return -EOPNOTSUPP;
|
||||||
|
|
||||||
|
wdev_lock(wdev);
|
||||||
err = nl80211_parse_tx_bitrate_mask(info, info->attrs,
|
err = nl80211_parse_tx_bitrate_mask(info, info->attrs,
|
||||||
NL80211_ATTR_TX_RATES, &mask,
|
NL80211_ATTR_TX_RATES, &mask,
|
||||||
dev, true);
|
dev, true);
|
||||||
if (err)
|
if (err)
|
||||||
return err;
|
goto out;
|
||||||
|
|
||||||
return rdev_set_bitrate_mask(rdev, dev, NULL, &mask);
|
err = rdev_set_bitrate_mask(rdev, dev, NULL, &mask);
|
||||||
|
out:
|
||||||
|
wdev_unlock(wdev);
|
||||||
|
return err;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int nl80211_register_mgmt(struct sk_buff *skb, struct genl_info *info)
|
static int nl80211_register_mgmt(struct sk_buff *skb, struct genl_info *info)
|
||||||
|
@ -1829,7 +1829,7 @@ int cfg80211_get_ies_channel_number(const u8 *ie, size_t ielen,
|
|||||||
if (tmp && tmp->datalen >= sizeof(struct ieee80211_s1g_oper_ie)) {
|
if (tmp && tmp->datalen >= sizeof(struct ieee80211_s1g_oper_ie)) {
|
||||||
struct ieee80211_s1g_oper_ie *s1gop = (void *)tmp->data;
|
struct ieee80211_s1g_oper_ie *s1gop = (void *)tmp->data;
|
||||||
|
|
||||||
return s1gop->primary_ch;
|
return s1gop->oper_ch;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
tmp = cfg80211_find_elem(WLAN_EID_DS_PARAMS, ie, ielen);
|
tmp = cfg80211_find_elem(WLAN_EID_DS_PARAMS, ie, ielen);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user