From: Johannes Berg <johannes.berg@xxxxxxxxx> Since mac80211 will not set the max_scan parameters if hw scan is enabled, hwsim needs to do it so that cfg80211 won't reject the scan. Signed-off-by: Johannes Berg <johannes.berg@xxxxxxxxx> --- drivers/net/wireless/mac80211_hwsim.c | 5 +++++ 1 file changed, 5 insertions(+) --- wireless-testing.orig/drivers/net/wireless/mac80211_hwsim.c 2010-06-18 12:02:50.000000000 +0200 +++ wireless-testing/drivers/net/wireless/mac80211_hwsim.c 2010-06-18 12:17:43.000000000 +0200 @@ -1291,6 +1291,11 @@ static int __init init_mac80211_hwsim(vo hw->wiphy->n_addresses = 2; hw->wiphy->addresses = data->addresses; + if (fake_hw_scan) { + hw->wiphy->max_scan_ssids = 255; + hw->wiphy->max_scan_ie_len = IEEE80211_MAX_DATA_LEN; + } + hw->channel_change_time = 1; hw->queues = 4; hw->wiphy->interface_modes = -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html