diff options
Diffstat (limited to 'net/tipc/net.c')
| -rw-r--r-- | net/tipc/net.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/net/tipc/net.c b/net/tipc/net.c index 7ce1e86b024f..85707c185360 100644 --- a/net/tipc/net.c +++ b/net/tipc/net.c @@ -187,7 +187,7 @@ static int __tipc_nl_add_net(struct net *net, struct tipc_nl_msg *msg)  	if (!hdr)  		return -EMSGSIZE; -	attrs = nla_nest_start(msg->skb, TIPC_NLA_NET); +	attrs = nla_nest_start_noflag(msg->skb, TIPC_NLA_NET);  	if (!attrs)  		goto msg_full; @@ -245,9 +245,9 @@ int __tipc_nl_net_set(struct sk_buff *skb, struct genl_info *info)  	if (!info->attrs[TIPC_NLA_NET])  		return -EINVAL; -	err = nla_parse_nested(attrs, TIPC_NLA_NET_MAX, -			       info->attrs[TIPC_NLA_NET], tipc_nl_net_policy, -			       info->extack); +	err = nla_parse_nested_deprecated(attrs, TIPC_NLA_NET_MAX, +					  info->attrs[TIPC_NLA_NET], +					  tipc_nl_net_policy, info->extack);  	if (err)  		return err;  |