Lines Matching refs:tmark
5489 uint64_t tmark; in rack_ack_received() local
5493 tmark = tcp_tv_to_lusectick(&rack->r_ctl.act_rcv_time); in rack_ack_received()
5494 if (tmark >= rack->r_ctl.lt_timemark) { in rack_ack_received()
5495 rack->r_ctl.lt_bw_time += (tmark - rack->r_ctl.lt_timemark); in rack_ack_received()
5497 rack->r_ctl.lt_timemark = tmark; in rack_ack_received()
6389 uint64_t tmark; in rack_enter_persist() local
6393 tmark = tcp_tv_to_lusectick(&rack->r_ctl.act_rcv_time); in rack_enter_persist()
6394 if (tmark >= rack->r_ctl.lt_timemark) { in rack_enter_persist()
6395 rack->r_ctl.lt_bw_time += (tmark - rack->r_ctl.lt_timemark); in rack_enter_persist()
6397 rack->r_ctl.lt_timemark = tmark; in rack_enter_persist()
19455 uint64_t tmark; in rack_fast_output() local
19459 tmark = tcp_get_u64_usecs(&tv); in rack_fast_output()
19460 if (tmark > rack->r_ctl.lt_timemark) { in rack_fast_output()
19461 rack->r_ctl.lt_bw_time += (tmark - rack->r_ctl.lt_timemark); in rack_fast_output()
19462 rack->r_ctl.lt_timemark = tmark; in rack_fast_output()
22101 uint64_t tmark; in rack_output() local
22105 tmark = tcp_get_u64_usecs(&tv); in rack_output()
22106 if (tmark > rack->r_ctl.lt_timemark) { in rack_output()
22107 rack->r_ctl.lt_bw_time += (tmark - rack->r_ctl.lt_timemark); in rack_output()
22108 rack->r_ctl.lt_timemark = tmark; in rack_output()