diff options
author | Eric W. Biederman <ebiederm@xmission.com> | 2015-10-08 00:48:40 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-10-08 14:26:58 +0300 |
commit | 792883303cdb3a7edd16017d7aba53926189ef41 (patch) | |
tree | 6f55c849c97bb97fed30b4ca92c709cd4e5fe96f /net/ipv6/ip6_output.c | |
parent | 9f8955cc468ddb7d08a0e614a45f9a82c4019b00 (diff) | |
download | linux-792883303cdb3a7edd16017d7aba53926189ef41.tar.xz |
ipv6: Merge ip6_local_out and ip6_local_out_sk
Stop hidding the sk parameter with an inline helper function and make
all of the callers pass it, so that it is clear what the function is
doing.
Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/ip6_output.c')
-rw-r--r-- | net/ipv6/ip6_output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/ip6_output.c b/net/ipv6/ip6_output.c index 0171e762e03c..31c686b7fcc0 100644 --- a/net/ipv6/ip6_output.c +++ b/net/ipv6/ip6_output.c @@ -1692,7 +1692,7 @@ int ip6_send_skb(struct sk_buff *skb) struct rt6_info *rt = (struct rt6_info *)skb_dst(skb); int err; - err = ip6_local_out(skb); + err = ip6_local_out(skb->sk, skb); if (err) { if (err > 0) err = net_xmit_errno(err); |