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

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

parents 77bb487d 4678cee6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2360,7 +2360,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;