From: Johannes Berg Date: Thu, 16 May 2013 08:24:28 +0000 (+0200) Subject: cfg80211: fix sending WoWLAN TCP wakeup settings X-Git-Tag: v3.9.5~115 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=239ab3670a5241414b5e60bf8be0c819468c160c;p=users%2Fdwmw2%2Flinux.git cfg80211: fix sending WoWLAN TCP wakeup settings 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 Signed-off-by: Johannes Berg Signed-off-by: Greg Kroah-Hartman --- diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c index 58e13a8c95f90..34ef5227d617f 100644 --- a/net/wireless/nl80211.c +++ b/net/wireless/nl80211.c @@ -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; }