diff options
author | Maciej Żenczykowski <maze@google.com> | 2018-09-25 23:56:27 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-09-26 23:30:55 -0400 |
commit | 1042caa79e9351b81ed19dc8d2d7fd6ff51a4422 (patch) | |
tree | eb401cc005398f964bf453cbb8c820f18d77745a /net/xfrm/xfrm_interface.c | |
parent | d888f39666774c7debfa34e4e20ba33cf61a6d71 (diff) |
net-ipv4: remove 2 always zero parameters from ipv4_redirect()
(the parameters in question are mark and flow_flags)
Reviewed-by: David Ahern <dsahern@gmail.com>
Signed-off-by: Maciej Żenczykowski <maze@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/xfrm/xfrm_interface.c')
-rw-r--r-- | net/xfrm/xfrm_interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/xfrm/xfrm_interface.c b/net/xfrm/xfrm_interface.c index 16bc5ecb7869..4b4ef4f662d9 100644 --- a/net/xfrm/xfrm_interface.c +++ b/net/xfrm/xfrm_interface.c | |||
@@ -471,7 +471,7 @@ static int xfrmi4_err(struct sk_buff *skb, u32 info) | |||
471 | if (icmp_hdr(skb)->type == ICMP_DEST_UNREACH) | 471 | if (icmp_hdr(skb)->type == ICMP_DEST_UNREACH) |
472 | ipv4_update_pmtu(skb, net, info, 0, protocol); | 472 | ipv4_update_pmtu(skb, net, info, 0, protocol); |
473 | else | 473 | else |
474 | ipv4_redirect(skb, net, 0, 0, protocol, 0); | 474 | ipv4_redirect(skb, net, 0, protocol); |
475 | xfrm_state_put(x); | 475 | xfrm_state_put(x); |
476 | 476 | ||
477 | return 0; | 477 | return 0; |