Searched refs:first_sack (Results 1 – 1 of 1) sorted by relevance
898 struct sackblk first_sack, second_sack; in tcp_sack_process_dsack() local900 bcopy(to->to_sacks, &first_sack, sizeof(first_sack)); in tcp_sack_process_dsack()901 first_sack.start = ntohl(first_sack.start); in tcp_sack_process_dsack()902 first_sack.end = ntohl(first_sack.end); in tcp_sack_process_dsack()911 if (SEQ_LT(first_sack.start, th->th_ack) && in tcp_sack_process_dsack()912 SEQ_LEQ(first_sack.end, th->th_ack)) { in tcp_sack_process_dsack()936 SEQ_LEQ(second_sack.start, first_sack.start) && in tcp_sack_process_dsack()937 SEQ_GEQ(second_sack.end, first_sack.end)) { in tcp_sack_process_dsack()971 tcp_rack_detect_reordering_dsack(tp, first_sack.start, first_sack.end); in tcp_sack_process_dsack()977 first_sack.end == tp->t_tlphighrxt)) && in tcp_sack_process_dsack()[all …]