| 6143 | } |
| 6144 | |
| 6145 | static void |
| 6146 | tcp_bbr_xmit_timer(struct tcp_bbr *bbr, uint32_t rtt_usecs, uint32_t rsm_send_time, uint32_t r_start, uint32_t tsin) |
| 6147 | { |
| 6148 | bbr->rtt_valid = 1; |
| 6149 | bbr->r_ctl.cur_rtt = rtt_usecs; |
| 6150 | bbr->r_ctl.ts_in = tsin; |
| 6151 | if (rsm_send_time) |
| 6152 | bbr->r_ctl.cur_rtt_send_time = rsm_send_time; |
| 6153 | } |
| 6154 | |
| 6155 | static void |
| 6156 | bbr_make_timestamp_determination(struct tcp_bbr *bbr) |
no outgoing calls
no test coverage detected