mirror of
https://github.com/torvalds/linux.git
synced 2025-12-07 20:06:24 +00:00
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>
This commit is contained in:
committed by
David S. Miller
parent
da58a931f2
commit
d888f39666
@@ -1098,7 +1098,7 @@ void icmp_err(struct sk_buff *skb, u32 info)
|
||||
}
|
||||
|
||||
if (type == ICMP_DEST_UNREACH && code == ICMP_FRAG_NEEDED)
|
||||
ipv4_update_pmtu(skb, net, info, 0, 0, IPPROTO_ICMP, 0);
|
||||
ipv4_update_pmtu(skb, net, info, 0, IPPROTO_ICMP);
|
||||
else if (type == ICMP_REDIRECT)
|
||||
ipv4_redirect(skb, net, 0, 0, IPPROTO_ICMP, 0);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user