iwlwifi: allow probe-after-rx on 2.4 GHz
There are two passive 2.4 GHz channels: 12 and 13. If you have a hidden SSID on those, you will not be able to connect to it because we don't send out probe requests there. We can allow this by using the firmware's probe-after-rx functionality on those channels as well. This fixes https://bugzilla.kernel.org/show_bug.cgi?id=16462 Reported-by: Daniel J Blueman <daniel.blueman@gmail.com> Tested-by: Daniel J Blueman <daniel.blueman@gmail.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
This commit is contained in:
parent
de05ead8f8
commit
085fbca29d
|
@ -1447,10 +1447,15 @@ int iwlagn_request_scan(struct iwl_priv *priv, struct ieee80211_vif *vif)
|
||||||
if (priv->cfg->bt_params &&
|
if (priv->cfg->bt_params &&
|
||||||
priv->cfg->bt_params->advanced_bt_coexist)
|
priv->cfg->bt_params->advanced_bt_coexist)
|
||||||
scan->tx_cmd.tx_flags |= TX_CMD_FLG_IGNORE_BT;
|
scan->tx_cmd.tx_flags |= TX_CMD_FLG_IGNORE_BT;
|
||||||
scan->good_CRC_th = IWL_GOOD_CRC_TH_DISABLED;
|
|
||||||
break;
|
break;
|
||||||
case IEEE80211_BAND_5GHZ:
|
case IEEE80211_BAND_5GHZ:
|
||||||
rate = IWL_RATE_6M_PLCP;
|
rate = IWL_RATE_6M_PLCP;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
IWL_WARN(priv, "Invalid scan band\n");
|
||||||
|
return -EIO;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* If active scanning is requested but a certain channel is
|
* If active scanning is requested but a certain channel is
|
||||||
* marked passive, we can do active scanning if we detect
|
* marked passive, we can do active scanning if we detect
|
||||||
|
@ -1470,11 +1475,6 @@ int iwlagn_request_scan(struct iwl_priv *priv, struct ieee80211_vif *vif)
|
||||||
*/
|
*/
|
||||||
scan->good_CRC_th = is_active ? IWL_GOOD_CRC_TH_DEFAULT :
|
scan->good_CRC_th = is_active ? IWL_GOOD_CRC_TH_DEFAULT :
|
||||||
IWL_GOOD_CRC_TH_NEVER;
|
IWL_GOOD_CRC_TH_NEVER;
|
||||||
break;
|
|
||||||
default:
|
|
||||||
IWL_WARN(priv, "Invalid scan band\n");
|
|
||||||
return -EIO;
|
|
||||||
}
|
|
||||||
|
|
||||||
band = priv->scan_band;
|
band = priv->scan_band;
|
||||||
|
|
||||||
|
|
|
@ -2938,11 +2938,17 @@ int iwl3945_request_scan(struct iwl_priv *priv, struct ieee80211_vif *vif)
|
||||||
case IEEE80211_BAND_2GHZ:
|
case IEEE80211_BAND_2GHZ:
|
||||||
scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
|
scan->flags = RXON_FLG_BAND_24G_MSK | RXON_FLG_AUTO_DETECT_MSK;
|
||||||
scan->tx_cmd.rate = IWL_RATE_1M_PLCP;
|
scan->tx_cmd.rate = IWL_RATE_1M_PLCP;
|
||||||
scan->good_CRC_th = 0;
|
|
||||||
band = IEEE80211_BAND_2GHZ;
|
band = IEEE80211_BAND_2GHZ;
|
||||||
break;
|
break;
|
||||||
case IEEE80211_BAND_5GHZ:
|
case IEEE80211_BAND_5GHZ:
|
||||||
scan->tx_cmd.rate = IWL_RATE_6M_PLCP;
|
scan->tx_cmd.rate = IWL_RATE_6M_PLCP;
|
||||||
|
band = IEEE80211_BAND_5GHZ;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
IWL_WARN(priv, "Invalid scan band\n");
|
||||||
|
return -EIO;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* If active scaning is requested but a certain channel
|
* If active scaning is requested but a certain channel
|
||||||
* is marked passive, we can do active scanning if we
|
* is marked passive, we can do active scanning if we
|
||||||
|
@ -2950,12 +2956,6 @@ int iwl3945_request_scan(struct iwl_priv *priv, struct ieee80211_vif *vif)
|
||||||
*/
|
*/
|
||||||
scan->good_CRC_th = is_active ? IWL_GOOD_CRC_TH_DEFAULT :
|
scan->good_CRC_th = is_active ? IWL_GOOD_CRC_TH_DEFAULT :
|
||||||
IWL_GOOD_CRC_TH_DISABLED;
|
IWL_GOOD_CRC_TH_DISABLED;
|
||||||
band = IEEE80211_BAND_5GHZ;
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
IWL_WARN(priv, "Invalid scan band\n");
|
|
||||||
return -EIO;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!priv->is_internal_short_scan) {
|
if (!priv->is_internal_short_scan) {
|
||||||
scan->tx_cmd.len = cpu_to_le16(
|
scan->tx_cmd.len = cpu_to_le16(
|
||||||
|
|
Loading…
Reference in New Issue