Unverified Commit 95952b84 authored by openeuler-ci-bot's avatar openeuler-ci-bot Committed by Gitee
Browse files

!12931 tcp: fix mptcp DSS corruption due to large pmtu xmit

parents fc0f8f95 52ea99a7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2358,7 +2358,7 @@ static bool tcp_can_coalesce_send_queue_head(struct sock *sk, int len)
		if (len <= skb->len)
			break;

		if (unlikely(TCP_SKB_CB(skb)->eor) || tcp_has_tx_tstamp(skb))
		if (tcp_has_tx_tstamp(skb) || !tcp_skb_can_collapse(skb, next))
			return false;

		len -= skb->len;