提交 ce259990 编写于 作者: D Denis V. Lunev 提交者: David S. Miller

[IPV4]: sk parameter is unused in ipv4_dst_blackhole.

Just remove it.
Signed-off-by: NDenis V. Lunev <den@openvz.org>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 0098b727
......@@ -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;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册