| 2898 | } |
| 2899 | |
| 2900 | static inline void |
| 2901 | bbr_set_epoch(struct tcp_bbr *bbr, uint32_t cts, int32_t line) |
| 2902 | { |
| 2903 | uint32_t epoch_time; |
| 2904 | |
| 2905 | /* Tick the RTT clock */ |
| 2906 | bbr->r_ctl.rc_rtt_epoch++; |
| 2907 | epoch_time = cts - bbr->r_ctl.rc_rcv_epoch_start; |
| 2908 | bbr_log_time_epoch(bbr, cts, line, epoch_time); |
| 2909 | bbr->r_ctl.rc_rcv_epoch_start = cts; |
| 2910 | } |
| 2911 | |
| 2912 | static inline void |
| 2913 | bbr_isit_a_pkt_epoch(struct tcp_bbr *bbr, uint32_t cts, struct bbr_sendmap *rsm, int32_t line, int32_t cum_acked) |
no test coverage detected