1
0
Fork 0

netlink: Return extack message if attribute validation fails

Have one extack message for parsing and validating.

Signed-off-by: David Ahern <dsahern@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
hifive-unleashed-5.1
David Ahern 2018-06-26 12:39:18 -07:00 committed by David S. Miller
parent 8d0752d113
commit 7861552ced
1 changed files with 2 additions and 2 deletions

View File

@ -253,8 +253,8 @@ int nla_parse(struct nlattr **tb, int maxtype, const struct nlattr *head,
if (policy) {
err = validate_nla(nla, maxtype, policy);
if (err < 0) {
if (extack)
extack->bad_attr = nla;
NL_SET_ERR_MSG_ATTR(extack, nla,
"Attribute failed policy validation");
goto errout;
}
}