| 3021 | } |
| 3022 | |
| 3023 | static inline uint64_t |
| 3024 | bbr_get_bw(struct tcp_bbr *bbr) |
| 3025 | { |
| 3026 | uint64_t bw; |
| 3027 | |
| 3028 | bw = __bbr_get_bw(bbr); |
| 3029 | return (bw); |
| 3030 | } |
| 3031 | |
| 3032 | static inline void |
| 3033 | bbr_reset_lt_bw_interval(struct tcp_bbr *bbr, uint32_t cts) |
no test coverage detected