From: Johannes Berg Date: Mon, 17 Oct 2016 06:02:48 +0000 (+0200) Subject: nl80211: correctly use nl80211_nan_srf_policy X-Git-Tag: v5.15~12359^2~382^2~35 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1609d18de655e243d2db0f8fa21a3830ff0ab89f;p=platform%2Fkernel%2Flinux-starfive.git nl80211: correctly use nl80211_nan_srf_policy This was clearly intended to be used in the attribute parsing, so do that instead of leaving the attribute policy unused. Signed-off-by: Johannes Berg --- diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c index 903cd5a..65c0a17 100644 --- a/net/wireless/nl80211.c +++ b/net/wireless/nl80211.c @@ -10786,7 +10786,8 @@ static int nl80211_nan_add_func(struct sk_buff *skb, err = nla_parse(srf_tb, NL80211_NAN_SRF_ATTR_MAX, nla_data(tb[NL80211_NAN_FUNC_SRF]), - nla_len(tb[NL80211_NAN_FUNC_SRF]), NULL); + nla_len(tb[NL80211_NAN_FUNC_SRF]), + nl80211_nan_srf_policy); if (err) goto out;