diff options
author | Yajun Deng <yajun.deng@linux.dev> | 2021-07-13 10:48:24 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-07-13 09:28:29 -0700 |
commit | 01757f536ac825e3614d583fee9acb48c64ed084 (patch) | |
tree | 0b31ad3ca2f4175b3c113a74c645a9cf28881548 /net/netlink | |
parent | 71ce9d92fc7089f287c3e95a981bdec7545a8588 (diff) | |
download | linux-01757f536ac825e3614d583fee9acb48c64ed084.tar.bz2 |
net: Use nlmsg_unicast() instead of netlink_unicast()
It has 'if (err >0 )' statement in nlmsg_unicast(), so use nlmsg_unicast()
instead of netlink_unicast(), this looks more concise.
v2: remove the change in netfilter.
Signed-off-by: Yajun Deng <yajun.deng@linux.dev>
Reviewed-by: David Ahern <dsahern@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/netlink')
-rw-r--r-- | net/netlink/af_netlink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/netlink/af_netlink.c b/net/netlink/af_netlink.c index d233ac4a91b6..380f95aacdec 100644 --- a/net/netlink/af_netlink.c +++ b/net/netlink/af_netlink.c @@ -2471,7 +2471,7 @@ void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err, nlmsg_end(skb, rep); - netlink_unicast(in_skb->sk, skb, NETLINK_CB(in_skb).portid, MSG_DONTWAIT); + nlmsg_unicast(in_skb->sk, skb, NETLINK_CB(in_skb).portid); } EXPORT_SYMBOL(netlink_ack); |