Lines Matching refs:peer_delta
2548 bbr_log_tstmp_validation(struct tcp_bbr *bbr, uint64_t peer_delta, uint64_t delta) in bbr_log_tstmp_validation() argument
2555 log.u_bbr.flex2 = (peer_delta >> 32); in bbr_log_tstmp_validation()
2556 log.u_bbr.flex3 = (peer_delta & 0x00000000ffffffff); in bbr_log_tstmp_validation()
6153 uint64_t delta, peer_delta, delta_up; in bbr_make_timestamp_determination() local
6165 peer_delta = bbr->r_ctl.last_inbound_ts - bbr->r_ctl.bbr_ts_check_tstmp; in bbr_make_timestamp_determination()
6166 if (peer_delta < bbr_min_peer_delta) { in bbr_make_timestamp_determination()
6180 if (peer_delta > delta) { in bbr_make_timestamp_determination()
6186 if (peer_delta < (delta + ((delta * (uint64_t)1000)/ (uint64_t)bbr_delta_percent))) { in bbr_make_timestamp_determination()
6199 delta_up = (peer_delta * 1000) / (uint64_t)bbr_delta_percent; in bbr_make_timestamp_determination()
6200 if ((peer_delta + delta_up) >= delta) { in bbr_make_timestamp_determination()
6203 bbr_log_tstmp_validation(bbr, peer_delta, delta); in bbr_make_timestamp_determination()
6207 delta_up = (peer_delta * 1000 * 10) / (uint64_t)bbr_delta_percent; in bbr_make_timestamp_determination()
6208 if (((peer_delta * 10) + delta_up) >= delta) { in bbr_make_timestamp_determination()
6210 bbr_log_tstmp_validation(bbr, peer_delta, delta); in bbr_make_timestamp_determination()
6214 delta_up = (peer_delta * 1000 * 100) / (uint64_t)bbr_delta_percent; in bbr_make_timestamp_determination()
6215 if (((peer_delta * 100) + delta_up) >= delta) { in bbr_make_timestamp_determination()
6217 bbr_log_tstmp_validation(bbr, peer_delta, delta); in bbr_make_timestamp_determination()
6221 delta_up = (peer_delta * 1000 * 1000) / (uint64_t)bbr_delta_percent; in bbr_make_timestamp_determination()
6222 if (((peer_delta * 1000) + delta_up) >= delta) { in bbr_make_timestamp_determination()
6224 bbr_log_tstmp_validation(bbr, peer_delta, delta); in bbr_make_timestamp_determination()
6228 delta_up = (peer_delta * 1000 * 10000) / (uint64_t)bbr_delta_percent; in bbr_make_timestamp_determination()
6229 if (((peer_delta * 10000) + delta_up) >= delta) { in bbr_make_timestamp_determination()
6236 bbr_log_tstmp_validation(bbr, peer_delta, delta); in bbr_make_timestamp_determination()