diff options
| author | Maciej Żenczykowski <[email protected]> | 2018-09-26 03:56:27 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2018-09-27 03:30:55 +0000 |
| commit | 1042caa79e9351b81ed19dc8d2d7fd6ff51a4422 (patch) | |
| tree | eb401cc005398f964bf453cbb8c820f18d77745a /net/ipv4/ipip.c | |
| parent | net-ipv4: remove 2 always zero parameters from ipv4_update_pmtu() (diff) | |
| download | kernel-1042caa79e9351b81ed19dc8d2d7fd6ff51a4422.tar.gz kernel-1042caa79e9351b81ed19dc8d2d7fd6ff51a4422.zip | |
net-ipv4: remove 2 always zero parameters from ipv4_redirect()
(the parameters in question are mark and flow_flags)
Reviewed-by: David Ahern <[email protected]>
Signed-off-by: Maciej Żenczykowski <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/ipv4/ipip.c')
| -rw-r--r-- | net/ipv4/ipip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/ipip.c b/net/ipv4/ipip.c index 6ff008e5818d..e65287c27e3d 100644 --- a/net/ipv4/ipip.c +++ b/net/ipv4/ipip.c @@ -180,7 +180,7 @@ static int ipip_err(struct sk_buff *skb, u32 info) } if (type == ICMP_REDIRECT) { - ipv4_redirect(skb, net, t->parms.link, 0, iph->protocol, 0); + ipv4_redirect(skb, net, t->parms.link, iph->protocol); goto out; } |
