* Returns the bw from the our filter. */
| 2850 | * Returns the bw from the our filter. |
| 2851 | */ |
| 2852 | static inline uint64_t |
| 2853 | bbr_get_full_bw(struct tcp_bbr *bbr) |
| 2854 | { |
| 2855 | uint64_t bw; |
| 2856 | |
| 2857 | bw = get_filter_value(&bbr->r_ctl.rc_delrate); |
| 2858 | |
| 2859 | return (bw); |
| 2860 | } |
| 2861 | |
| 2862 | static inline void |
| 2863 | bbr_set_pktepoch(struct tcp_bbr *bbr, uint32_t cts, int32_t line) |
no test coverage detected