]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
cfg80211: fix sending WoWLAN TCP wakeup settings
authorJohannes Berg <johannes.berg@intel.com>
Thu, 16 May 2013 08:24:28 +0000 (10:24 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 7 Jun 2013 19:52:24 +0000 (12:52 -0700)
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@intel.com>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
net/wireless/nl80211.c

index 58e13a8c95f90a7b880a9d65530799fc02451f1e..34ef5227d617f07537169fe47217cb3a5fff7aba 100644 (file)
@@ -7177,6 +7177,8 @@ static int nl80211_send_wowlan_tcp(struct sk_buff *msg,
                    &tcp->payload_tok))
                return -ENOBUFS;
 
+       nla_nest_end(msg, nl_tcp);
+
        return 0;
 }