Lines Matching full:now
35 unsigned long now = jiffies; in rxrpc_propose_ping() local
36 unsigned long ping_at = now + rxrpc_idle_ack_delay; in rxrpc_propose_ping()
40 rxrpc_reduce_call_timer(call, ping_at, now, in rxrpc_propose_ping()
119 unsigned long now = jiffies, ack_at; in __rxrpc_propose_ACK() local
127 ack_at += now; in __rxrpc_propose_ACK()
130 rxrpc_reduce_call_timer(call, ack_at, now, in __rxrpc_propose_ACK()
169 ktime_t now, max_age, oldest, ack_ts, timeout, min_timeo; in rxrpc_resend() local
183 now = ktime_get_real(); in rxrpc_resend()
184 max_age = ktime_sub(now, timeout); in rxrpc_resend()
199 oldest = now; in rxrpc_resend()
228 resend_at = nsecs_to_jiffies(ktime_to_ns(ktime_sub(now, oldest))); in rxrpc_resend()
243 ack_ts = ktime_sub(now, call->acks_latest_ts); in rxrpc_resend()
252 /* Now go through the Tx window and perform the retransmissions. We in rxrpc_resend()
314 unsigned long now, next, t; in rxrpc_process_call() local
341 now = jiffies; in rxrpc_process_call()
343 if (time_after_eq(now, t)) { in rxrpc_process_call()
344 trace_rxrpc_timer(call, rxrpc_timer_exp_normal, now); in rxrpc_process_call()
350 time_after_eq(now, t)) { in rxrpc_process_call()
351 trace_rxrpc_timer(call, rxrpc_timer_exp_idle, now); in rxrpc_process_call()
356 if (time_after_eq(now, t)) { in rxrpc_process_call()
357 trace_rxrpc_timer(call, rxrpc_timer_exp_hard, now); in rxrpc_process_call()
362 if (time_after_eq(now, t)) { in rxrpc_process_call()
363 trace_rxrpc_timer(call, rxrpc_timer_exp_ack, now); in rxrpc_process_call()
364 cmpxchg(&call->ack_at, t, now + MAX_JIFFY_OFFSET); in rxrpc_process_call()
369 if (time_after_eq(now, t)) { in rxrpc_process_call()
370 trace_rxrpc_timer(call, rxrpc_timer_exp_lost_ack, now); in rxrpc_process_call()
371 cmpxchg(&call->ack_lost_at, t, now + MAX_JIFFY_OFFSET); in rxrpc_process_call()
376 if (time_after_eq(now, t)) { in rxrpc_process_call()
377 trace_rxrpc_timer(call, rxrpc_timer_exp_keepalive, now); in rxrpc_process_call()
378 cmpxchg(&call->keepalive_at, t, now + MAX_JIFFY_OFFSET); in rxrpc_process_call()
385 if (time_after_eq(now, t)) { in rxrpc_process_call()
386 trace_rxrpc_timer(call, rxrpc_timer_exp_ping, now); in rxrpc_process_call()
387 cmpxchg(&call->ping_at, t, now + MAX_JIFFY_OFFSET); in rxrpc_process_call()
392 if (time_after_eq(now, t)) { in rxrpc_process_call()
393 trace_rxrpc_timer(call, rxrpc_timer_exp_resend, now); in rxrpc_process_call()
394 cmpxchg(&call->resend_at, t, now + MAX_JIFFY_OFFSET); in rxrpc_process_call()
433 rxrpc_resend(call, now); in rxrpc_process_call()
450 now = jiffies; in rxrpc_process_call()
451 if (time_after_eq(now, next)) in rxrpc_process_call()
454 rxrpc_reduce_call_timer(call, next, now, rxrpc_timer_restart); in rxrpc_process_call()