This is a note to let you know that I've just added the patch titled cfg80211: fix sending WoWLAN TCP wakeup settings to the 3.9-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: cfg80211-fix-sending-wowlan-tcp-wakeup-settings.patch and it can be found in the queue-3.9 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From e248ad30204eff6559b4d2d94d49d9d46c08185a Mon Sep 17 00:00:00 2001 From: Johannes Berg <johannes.berg@xxxxxxxxx> Date: Thu, 16 May 2013 10:24:28 +0200 Subject: cfg80211: fix sending WoWLAN TCP wakeup settings From: Johannes Berg <johannes.berg@xxxxxxxxx> commit e248ad30204eff6559b4d2d94d49d9d46c08185a upstream. The code sending the current WoWLAN TCP wakeup settings in nl80211_send_wowlan_tcp() is not closing the nested attribute, thus causing the parser to get confused on the receiver side in userspace (iw). Fix this. Reported-by: Deepak Arora <deepakx.arora@xxxxxxxxx> Signed-off-by: Johannes Berg <johannes.berg@xxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- net/wireless/nl80211.c | 2 ++ 1 file changed, 2 insertions(+) --- a/net/wireless/nl80211.c +++ b/net/wireless/nl80211.c @@ -7177,6 +7177,8 @@ static int nl80211_send_wowlan_tcp(struc &tcp->payload_tok)) return -ENOBUFS; + nla_nest_end(msg, nl_tcp); + return 0; } Patches currently in stable-queue which might be from johannes.berg@xxxxxxxxx are queue-3.9/mac80211-use-just-spin_lock-in-ieee80211_get_tkip_p2k.patch queue-3.9/cfg80211-fix-wiphy_register-error-path.patch queue-3.9/mac80211-fix-ap-mode-frame-matching.patch queue-3.9/cfg80211-fix-wowlan-wakeup-tracing.patch queue-3.9/iwlwifi-mvm-always-use-scan_type_forced.patch queue-3.9/cfg80211-fix-sending-wowlan-tcp-wakeup-settings.patch queue-3.9/iwlwifi-mvm-prevent-setting-assoc-flag-in-mac_context_cmd.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