• Home
  • Raw
  • Download

Lines Matching refs:now

28 		       ktime_t now)  in __rxrpc_set_timer()  argument
36 if (!ktime_after(t, now)) { in __rxrpc_set_timer()
37 trace_rxrpc_timer(call, why, now, now_j); in __rxrpc_set_timer()
42 if (!ktime_after(call->resend_at, now)) { in __rxrpc_set_timer()
50 if (!ktime_after(call->ack_at, now)) { in __rxrpc_set_timer()
58 if (!ktime_after(call->ping_at, now)) { in __rxrpc_set_timer()
66 t_j = nsecs_to_jiffies(ktime_to_ns(ktime_sub(t, now))); in __rxrpc_set_timer()
78 trace_rxrpc_timer(call, why, now, now_j); in __rxrpc_set_timer()
91 ktime_t now) in rxrpc_set_timer() argument
94 __rxrpc_set_timer(call, why, now); in rxrpc_set_timer()
109 ktime_t now = ktime_get_real(); in rxrpc_propose_ping() local
110 ktime_t ping_at = ktime_add_ms(now, rxrpc_idle_ack_delay); in rxrpc_propose_ping()
114 rxrpc_set_timer(call, rxrpc_timer_set_for_ping, now); in rxrpc_propose_ping()
129 ktime_t now, ack_at; in __rxrpc_propose_ACK() local
193 now = ktime_get_real(); in __rxrpc_propose_ACK()
194 ack_at = ktime_add_ms(now, expiry); in __rxrpc_propose_ACK()
197 rxrpc_set_timer(call, rxrpc_timer_set_for_ack, now); in __rxrpc_propose_ACK()
230 static void rxrpc_resend(struct rxrpc_call *call, ktime_t now) in rxrpc_resend() argument
241 max_age = ktime_sub_ms(now, rxrpc_resend_timeout); in rxrpc_resend()
255 oldest = now; in rxrpc_resend()
295 rxrpc_set_timer(call, rxrpc_timer_set_for_resend, now); in rxrpc_resend()
297 ack_ts = ktime_sub(now, call->acks_latest_ts); in rxrpc_resend()
367 ktime_t now; in rxrpc_process_call() local
387 now = ktime_get_real(); in rxrpc_process_call()
388 if (ktime_before(call->expire_at, now)) { in rxrpc_process_call()
407 rxrpc_resend(call, now); in rxrpc_process_call()
411 rxrpc_set_timer(call, rxrpc_timer_set_for_resend, now); in rxrpc_process_call()