diff options
| author | Maciej Żenczykowski <[email protected]> | 2018-09-26 03:56:26 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2018-09-27 03:30:55 +0000 |
| commit | d888f39666774c7debfa34e4e20ba33cf61a6d71 (patch) | |
| tree | f9dab9c47a11e6972ae7b9be0c05f5cb3856c6f8 /net/ipv4/ipip.c | |
| parent | net: mvneta: Add support for 2500Mbps SGMII (diff) | |
| download | kernel-d888f39666774c7debfa34e4e20ba33cf61a6d71.tar.gz kernel-d888f39666774c7debfa34e4e20ba33cf61a6d71.zip | |
net-ipv4: remove 2 always zero parameters from ipv4_update_pmtu()
(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 | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/ipv4/ipip.c b/net/ipv4/ipip.c index c891235b4966..6ff008e5818d 100644 --- a/net/ipv4/ipip.c +++ b/net/ipv4/ipip.c @@ -175,8 +175,7 @@ static int ipip_err(struct sk_buff *skb, u32 info) } if (type == ICMP_DEST_UNREACH && code == ICMP_FRAG_NEEDED) { - ipv4_update_pmtu(skb, net, info, t->parms.link, 0, - iph->protocol, 0); + ipv4_update_pmtu(skb, net, info, t->parms.link, iph->protocol); goto out; } |
