Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 77d40a09 authored by David S. Miller's avatar David S. Miller
Browse files

tcp: Fix order of tests in tcp_retransmit_skb()



tcp_write_queue_next() must only be made if we know that
tcp_skb_is_last() evaluates to false.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 38ce7c73
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1932,8 +1932,8 @@ int tcp_retransmit_skb(struct sock *sk, struct sk_buff *skb)
	/* Collapse two adjacent packets if worthwhile and we can. */
	if (!(TCP_SKB_CB(skb)->flags & TCPCB_FLAG_SYN) &&
	    (skb->len < (cur_mss >> 1)) &&
	    (tcp_write_queue_next(sk, skb) != tcp_send_head(sk)) &&
	    (!tcp_skb_is_last(sk, skb)) &&
	    (tcp_write_queue_next(sk, skb) != tcp_send_head(sk)) &&
	    (skb_shinfo(skb)->nr_frags == 0 &&
	     skb_shinfo(tcp_write_queue_next(sk, skb))->nr_frags == 0) &&
	    (tcp_skb_pcount(skb) == 1 &&