diff options
author | Denis V. Lunev <den@openvz.org> | 2008-03-22 17:42:37 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-03-22 17:42:37 -0700 |
commit | ce259990785595420ace616faece09255bad1163 (patch) | |
tree | f57699a3adb3c9087d272029080812e53f2a39ee /net | |
parent | 0098b7273e968fb9989a6e1e4e4c024cd081fe0d (diff) |
[IPV4]: sk parameter is unused in ipv4_dst_blackhole.
Just remove it.
Signed-off-by: Denis V. Lunev <den@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv4/route.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/route.c b/net/ipv4/route.c index 1051326c36b..9ba3413a990 100644 --- a/net/ipv4/route.c +++ b/net/ipv4/route.c @@ -2520,7 +2520,7 @@ static struct dst_ops ipv4_dst_blackhole_ops = { }; -static int ipv4_dst_blackhole(struct rtable **rp, struct flowi *flp, struct sock *sk) +static int ipv4_dst_blackhole(struct rtable **rp, struct flowi *flp) { struct rtable *ort = *rp; struct rtable *rt = (struct rtable *) @@ -2580,7 +2580,7 @@ int ip_route_output_flow(struct net *net, struct rtable **rp, struct flowi *flp, err = __xfrm_lookup((struct dst_entry **)rp, flp, sk, flags ? XFRM_LOOKUP_WAIT : 0); if (err == -EREMOTE) - err = ipv4_dst_blackhole(rp, flp, sk); + err = ipv4_dst_blackhole(rp, flp); return err; } |