Searched refs:prsm (Results 1 – 2 of 2) sorted by relevance
/freebsd/sys/netinet/tcp_stacks/ |
H A D | bbr.c | 4042 struct bbr_sendmap *prsm; in bbr_find_high_nonack() local 4049 prsm = rsm; in bbr_find_high_nonack() 4050 TAILQ_FOREACH_REVERSE_FROM(prsm, &bbr->r_ctl.rc_map, bbr_head, r_next) { in bbr_find_high_nonack() 4051 if (prsm->r_flags & (BBR_ACKED | BBR_HAS_FIN)) { in bbr_find_high_nonack() 4054 return (prsm); in bbr_find_high_nonack() 4152 struct bbr_sendmap *prsm; in bbr_calc_thresh_tlp() local 4165 prsm = TAILQ_PREV(rsm, bbr_head, r_tnext); in bbr_calc_thresh_tlp() 4166 if (prsm && (len <= maxseg)) { in bbr_calc_thresh_tlp() 4175 nidx = prsm->r_rtr_cnt - 1; in bbr_calc_thresh_tlp() 4176 if (TSTMP_GEQ(rsm->r_tim_lastsent[nidx], prsm->r_tim_lastsent[idx])) { in bbr_calc_thresh_tlp() [all …]
|
H A D | rack.c | 526 struct sackblk *sack, struct tcpopt *to, struct rack_sendmap **prsm, 5875 struct rack_sendmap *prsm; in rack_find_high_nonack() local 5882 prsm = rsm; in rack_find_high_nonack() 5884 TQHASH_FOREACH_REVERSE_FROM(prsm, rack->r_ctl.tqh) { in rack_find_high_nonack() 5885 if (prsm->r_flags & (RACK_ACKED | RACK_HAS_FIN)) { in rack_find_high_nonack() 5888 return (prsm); in rack_find_high_nonack() 5985 struct rack_sendmap *prsm; in rack_calc_thresh_tlp() local 6012 prsm = TAILQ_PREV(rsm, rack_head, r_tnext); in rack_calc_thresh_tlp() 6013 if (prsm && (len <= segsiz)) { in rack_calc_thresh_tlp() 6022 nidx = prsm->r_rtr_cnt - 1; in rack_calc_thresh_tlp() [all …]
|