From mboxrd@z Thu Jan 1 00:00:00 1970 From: James Hogan Date: Fri, 20 Sep 2013 23:30:04 -0400 Subject: [ath9k-devel] ath9k WPA2-PEAP MSCHAPV2 Connectivity issue In-Reply-To: <523B1CD1.1050207@rempel-privat.de> References: <522B7D97.2010409@gmail.com> <21035.64671.831349.345777@gargle.gargle.HOWL> <522CAF8E.8000006@gmail.com> <21037.48871.472273.313308@gargle.gargle.HOWL> <522FC154.10100@gmail.com> <21039.52508.810448.90944@gargle.gargle.HOWL> <523B11E0.4070504@gmail.com> <523B1CD1.1050207@rempel-privat.de> Message-ID: <523D12BC.4060604@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: ath9k-devel@lists.ath9k.org I am up to try anything, but, at least in my case, this is not an error in the drive itself but is an error with the network. The schools' wireless network is rather old and needs to be updated, so I found a patch that was never implemented into ath9k and modified my own ath9k driver. I know that it is probably not the correct way to go about attacking the issue, but for school purposes, I need to at least have a working computer. My desktop has not been edited and I would like to continue using that to test and find a proper way of attacking the issue. As for now, here are my diffs *** drivers/net/wireless/ath/ath9k/init.c.bak~ 2013-09-20 22:35:20.982551676 -0400 --- drivers/net/wireless/ath/ath9k/init.c 2013-09-20 22:43:16.322997704 -0400 *************** *** 57,62 **** --- 57,66 ---- module_param_named(enable_diversity, ath9k_enable_diversity, int, 0444); MODULE_PARM_DESC(enable_diversity, "Enable Antenna diversity for AR9565"); + int ath9k_modparam_disable_11n; + module_param_named(11n_disable, ath9k_modparam_disable_11n, int, 0444); + MODULE_PARM_DESC(11n_disable, "disable 11n functionality"); + bool is_ath9k_unloaded; /* We use the hw_value as an index into our private channel structure */ *************** *** 254,260 **** u8 tx_streams, rx_streams; int i, max_streams; ! ht_info->ht_supported = true; ht_info->cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 | IEEE80211_HT_CAP_SM_PS | IEEE80211_HT_CAP_SGI_40 | --- 258,268 ---- u8 tx_streams, rx_streams; int i, max_streams; ! if (ath9k_modparam_disable_11n) ! ht_info->ht_supported = false; ! else ! ht_info->ht_supported = true; ! ht_info->cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 | IEEE80211_HT_CAP_SM_PS | IEEE80211_HT_CAP_SGI_40 |