diff options
author | Maciej Żenczykowski <maze@google.com> | 2018-09-26 06:56:26 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-09-27 06:30:55 +0300 |
commit | d888f39666774c7debfa34e4e20ba33cf61a6d71 (patch) | |
tree | f9dab9c47a11e6972ae7b9be0c05f5cb3856c6f8 /net/ipv4/esp4.c | |
parent | da58a931f248f423f917c3a0b3c94303aa30a738 (diff) | |
download | linux-d888f39666774c7debfa34e4e20ba33cf61a6d71.tar.xz |
net-ipv4: remove 2 always zero parameters from ipv4_update_pmtu()
(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/ipv4/esp4.c')
-rw-r--r-- | net/ipv4/esp4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/esp4.c b/net/ipv4/esp4.c index 97689012b357..2d0274441923 100644 --- a/net/ipv4/esp4.c +++ b/net/ipv4/esp4.c @@ -820,7 +820,7 @@ static int esp4_err(struct sk_buff *skb, u32 info) return 0; if (icmp_hdr(skb)->type == ICMP_DEST_UNREACH) - ipv4_update_pmtu(skb, net, info, 0, 0, IPPROTO_ESP, 0); + ipv4_update_pmtu(skb, net, info, 0, IPPROTO_ESP); else ipv4_redirect(skb, net, 0, 0, IPPROTO_ESP, 0); xfrm_state_put(x); |