diff options
author | Denis V. Lunev <den@openvz.org> | 2007-10-11 00:14:03 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2007-10-11 00:14:03 -0400 |
commit | 7ee015e0fa3c856416e9477aac4b850ec6f09017 (patch) | |
tree | b91741163f47515d00faba9d36d37fcf03ded29f /net/netlink/af_netlink.c | |
parent | 3b71535f357a2e5d013a44a06b0c26a6a8d8fb5b (diff) |
[NET]: cleanup 3rd argument in netlink_sendskb
netlink_sendskb does not use third argument. Clean it and save a couple of
bytes.
Signed-off-by: Denis V. Lunev <den@openvz.org>
Acked-by: Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/netlink/af_netlink.c')
-rw-r--r-- | net/netlink/af_netlink.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/netlink/af_netlink.c b/net/netlink/af_netlink.c index f934f54fbfd5..a5bd63ca86bc 100644 --- a/net/netlink/af_netlink.c +++ b/net/netlink/af_netlink.c | |||
@@ -791,7 +791,7 @@ int netlink_attachskb(struct sock *sk, struct sk_buff *skb, int nonblock, | |||
791 | return 0; | 791 | return 0; |
792 | } | 792 | } |
793 | 793 | ||
794 | int netlink_sendskb(struct sock *sk, struct sk_buff *skb, int protocol) | 794 | int netlink_sendskb(struct sock *sk, struct sk_buff *skb) |
795 | { | 795 | { |
796 | int len = skb->len; | 796 | int len = skb->len; |
797 | 797 | ||
@@ -853,7 +853,7 @@ retry: | |||
853 | if (err) | 853 | if (err) |
854 | return err; | 854 | return err; |
855 | 855 | ||
856 | return netlink_sendskb(sk, skb, ssk->sk_protocol); | 856 | return netlink_sendskb(sk, skb); |
857 | } | 857 | } |
858 | 858 | ||
859 | int netlink_has_listeners(struct sock *sk, unsigned int group) | 859 | int netlink_has_listeners(struct sock *sk, unsigned int group) |