Lines Matching refs:bbr_info
746 struct tcp_bbr_info *bbr_info; member
1917 if (s->bbr_info) { in tcp_stats_print()
1920 bw = s->bbr_info->bbr_bw_hi; in tcp_stats_print()
1922 bw |= s->bbr_info->bbr_bw_lo; in tcp_stats_print()
1926 (double)s->bbr_info->bbr_min_rtt / 1000.0); in tcp_stats_print()
1927 if (s->bbr_info->bbr_pacing_gain) in tcp_stats_print()
1929 (double)s->bbr_info->bbr_pacing_gain / 256.0); in tcp_stats_print()
1930 if (s->bbr_info->bbr_cwnd_gain) in tcp_stats_print()
1932 (double)s->bbr_info->bbr_cwnd_gain / 256.0); in tcp_stats_print()
2262 const void *bbr_info = RTA_DATA(tb[INET_DIAG_BBRINFO]); in tcp_show_info() local
2264 sizeof(*s.bbr_info)); in tcp_show_info()
2266 s.bbr_info = calloc(1, sizeof(*s.bbr_info)); in tcp_show_info()
2267 if (s.bbr_info && bbr_info) in tcp_show_info()
2268 memcpy(s.bbr_info, bbr_info, len); in tcp_show_info()
2300 free(s.bbr_info); in tcp_show_info()