This is a note to let you know that I've just added the patch titled mac80211: fix association to 20/40 MHz VHT networks to the 3.13-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: mac80211-fix-association-to-20-40-mhz-vht-networks.patch and it can be found in the queue-3.13 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From cb664981607a6b5b3d670ad57bbda893b2528d96 Mon Sep 17 00:00:00 2001 From: Johannes Berg <johannes.berg@xxxxxxxxx> Date: Thu, 27 Feb 2014 20:47:53 +0100 Subject: mac80211: fix association to 20/40 MHz VHT networks From: Johannes Berg <johannes.berg@xxxxxxxxx> commit cb664981607a6b5b3d670ad57bbda893b2528d96 upstream. When a VHT network uses 20 or 40 MHz as per the HT operation information, the channel center frequency segment 0 field in the VHT operation information is reserved, so ignore it. This fixes association with such networks when the AP puts 0 into the field, previously we'd disconnect due to an invalid channel with the message wlan0: AP VHT information is invalid, disable VHT Fixes: f2d9d270c15ae ("mac80211: support VHT association") Reported-by: Tim Nelson <tim.l.nelson@xxxxxxxxx> Signed-off-by: Johannes Berg <johannes.berg@xxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- net/mac80211/mlme.c | 1 + 1 file changed, 1 insertion(+) --- a/net/mac80211/mlme.c +++ b/net/mac80211/mlme.c @@ -222,6 +222,7 @@ ieee80211_determine_chantype(struct ieee switch (vht_oper->chan_width) { case IEEE80211_VHT_CHANWIDTH_USE_HT: vht_chandef.width = chandef->width; + vht_chandef.center_freq1 = chandef->center_freq1; break; case IEEE80211_VHT_CHANWIDTH_80MHZ: vht_chandef.width = NL80211_CHAN_WIDTH_80; Patches currently in stable-queue which might be from johannes.berg@xxxxxxxxx are queue-3.13/mac80211-clear-sequence-fragment-number-in-qos-null-frames.patch queue-3.13/mac80211-fix-association-to-20-40-mhz-vht-networks.patch queue-3.13/mac80211-send-control-port-protocol-frames-to-the-vo-queue.patch queue-3.13/iwlwifi-dvm-clear-iwl_sta_ucode_inprogress-when-assoc-fails.patch queue-3.13/iwlwifi-fix-tx-status-for-aggregated-packets.patch queue-3.13/iwlwifi-mvm-don-t-warn-when-statistics-are-handled-late.patch queue-3.13/mac80211-fix-ap-powersave-tx-vs.-wakeup-race.patch queue-3.13/mac80211-don-t-validate-unchanged-ap-bandwidth-while-tracking.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html