Lines Matching full:now

31 		unsigned long now = jiffies;  in rxrpc_propose_ping()  local
32 unsigned long ping_at = now + rxrpc_idle_ack_delay; in rxrpc_propose_ping()
36 rxrpc_reduce_call_timer(call, ping_at, now, in rxrpc_propose_ping()
112 unsigned long now = jiffies, ack_at; in __rxrpc_propose_ACK() local
120 ack_at += now; in __rxrpc_propose_ACK()
123 rxrpc_reduce_call_timer(call, ack_at, now, in __rxrpc_propose_ACK()
162 ktime_t now, max_age, oldest, ack_ts; in rxrpc_resend() local
170 now = ktime_get_real(); in rxrpc_resend()
171 max_age = ktime_sub(now, jiffies_to_usecs(rto_j)); in rxrpc_resend()
186 oldest = now; in rxrpc_resend()
215 resend_at = nsecs_to_jiffies(ktime_to_ns(ktime_sub(now, oldest))); in rxrpc_resend()
230 ack_ts = ktime_sub(now, call->acks_latest_ts); in rxrpc_resend()
239 /* Now go through the Tx window and perform the retransmissions. We in rxrpc_resend()
294 unsigned long now, next, t; in rxrpc_process_call() local
320 now = jiffies; in rxrpc_process_call()
322 if (time_after_eq(now, t)) { in rxrpc_process_call()
323 trace_rxrpc_timer(call, rxrpc_timer_exp_normal, now); in rxrpc_process_call()
329 time_after_eq(now, t)) { in rxrpc_process_call()
330 trace_rxrpc_timer(call, rxrpc_timer_exp_idle, now); in rxrpc_process_call()
335 if (time_after_eq(now, t)) { in rxrpc_process_call()
336 trace_rxrpc_timer(call, rxrpc_timer_exp_hard, now); in rxrpc_process_call()
341 if (time_after_eq(now, t)) { in rxrpc_process_call()
342 trace_rxrpc_timer(call, rxrpc_timer_exp_ack, now); in rxrpc_process_call()
343 cmpxchg(&call->ack_at, t, now + MAX_JIFFY_OFFSET); in rxrpc_process_call()
348 if (time_after_eq(now, t)) { in rxrpc_process_call()
349 trace_rxrpc_timer(call, rxrpc_timer_exp_lost_ack, now); in rxrpc_process_call()
350 cmpxchg(&call->ack_lost_at, t, now + MAX_JIFFY_OFFSET); in rxrpc_process_call()
355 if (time_after_eq(now, t)) { in rxrpc_process_call()
356 trace_rxrpc_timer(call, rxrpc_timer_exp_keepalive, now); in rxrpc_process_call()
357 cmpxchg(&call->keepalive_at, t, now + MAX_JIFFY_OFFSET); in rxrpc_process_call()
364 if (time_after_eq(now, t)) { in rxrpc_process_call()
365 trace_rxrpc_timer(call, rxrpc_timer_exp_ping, now); in rxrpc_process_call()
366 cmpxchg(&call->ping_at, t, now + MAX_JIFFY_OFFSET); in rxrpc_process_call()
371 if (time_after_eq(now, t)) { in rxrpc_process_call()
372 trace_rxrpc_timer(call, rxrpc_timer_exp_resend, now); in rxrpc_process_call()
373 cmpxchg(&call->resend_at, t, now + MAX_JIFFY_OFFSET); in rxrpc_process_call()
412 rxrpc_resend(call, now); in rxrpc_process_call()
429 now = jiffies; in rxrpc_process_call()
430 if (time_after_eq(now, next)) in rxrpc_process_call()
433 rxrpc_reduce_call_timer(call, next, now, rxrpc_timer_restart); in rxrpc_process_call()