diff options
author | 2020-04-21 09:36:03 -0700 | |
---|---|---|
committer | 2020-04-21 09:36:03 -0700 | |
commit | 175ae3ad59ab3459652bd2ae3bbc1785aeba1bf3 (patch) | |
tree | c7fd682de61e3c2a6cc3ba0e8881b99fafdf969c /net/xfrm/xfrm_interface.c | |
parent | ARM: dts: OMAP3: disable RNG on N950/N9 (diff) | |
parent | ARM: dts: dra7: Fix bus_dma_limit for PCIe (diff) | |
download | wireguard-linux-175ae3ad59ab3459652bd2ae3bbc1785aeba1bf3.tar.xz wireguard-linux-175ae3ad59ab3459652bd2ae3bbc1785aeba1bf3.zip |
Merge branch 'fixes-v5.7' into fixes
Diffstat (limited to 'net/xfrm/xfrm_interface.c')
-rw-r--r-- | net/xfrm/xfrm_interface.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/xfrm/xfrm_interface.c b/net/xfrm/xfrm_interface.c index dc651a628dcf..3361e3ac5714 100644 --- a/net/xfrm/xfrm_interface.c +++ b/net/xfrm/xfrm_interface.c @@ -300,10 +300,10 @@ xfrmi_xmit2(struct sk_buff *skb, struct net_device *dev, struct flowi *fl) if (mtu < IPV6_MIN_MTU) mtu = IPV6_MIN_MTU; - icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu); + icmpv6_ndo_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu); } else { - icmp_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED, - htonl(mtu)); + icmp_ndo_send(skb, ICMP_DEST_UNREACH, ICMP_FRAG_NEEDED, + htonl(mtu)); } dst_release(dst); |