• Home
  • Raw
  • Download

Lines Matching refs: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
168 now = ktime_get_real(); in rxrpc_resend()
169 max_age = ktime_sub_us(now, jiffies_to_usecs(call->peer->rto_j)); in rxrpc_resend()
184 oldest = now; in rxrpc_resend()
213 resend_at = nsecs_to_jiffies(ktime_to_ns(ktime_sub(now, oldest))); in rxrpc_resend()
228 ack_ts = ktime_sub(now, call->acks_latest_ts); in rxrpc_resend()
292 unsigned long now, next, t; in rxrpc_process_call() local
318 now = jiffies; in rxrpc_process_call()
320 if (time_after_eq(now, t)) { in rxrpc_process_call()
321 trace_rxrpc_timer(call, rxrpc_timer_exp_normal, now); in rxrpc_process_call()
327 time_after_eq(now, t)) { in rxrpc_process_call()
328 trace_rxrpc_timer(call, rxrpc_timer_exp_idle, now); in rxrpc_process_call()
333 if (time_after_eq(now, t)) { in rxrpc_process_call()
334 trace_rxrpc_timer(call, rxrpc_timer_exp_hard, now); in rxrpc_process_call()
339 if (time_after_eq(now, t)) { in rxrpc_process_call()
340 trace_rxrpc_timer(call, rxrpc_timer_exp_ack, now); in rxrpc_process_call()
341 cmpxchg(&call->ack_at, t, now + MAX_JIFFY_OFFSET); in rxrpc_process_call()
346 if (time_after_eq(now, t)) { in rxrpc_process_call()
347 trace_rxrpc_timer(call, rxrpc_timer_exp_lost_ack, now); in rxrpc_process_call()
348 cmpxchg(&call->ack_lost_at, t, now + MAX_JIFFY_OFFSET); in rxrpc_process_call()
353 if (time_after_eq(now, t)) { in rxrpc_process_call()
354 trace_rxrpc_timer(call, rxrpc_timer_exp_keepalive, now); in rxrpc_process_call()
355 cmpxchg(&call->keepalive_at, t, now + MAX_JIFFY_OFFSET); in rxrpc_process_call()
362 if (time_after_eq(now, t)) { in rxrpc_process_call()
363 trace_rxrpc_timer(call, rxrpc_timer_exp_ping, now); in rxrpc_process_call()
364 cmpxchg(&call->ping_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_resend, now); in rxrpc_process_call()
371 cmpxchg(&call->resend_at, t, now + MAX_JIFFY_OFFSET); in rxrpc_process_call()
411 rxrpc_resend(call, now); in rxrpc_process_call()
428 now = jiffies; in rxrpc_process_call()
429 if (time_after_eq(now, next)) in rxrpc_process_call()
432 rxrpc_reduce_call_timer(call, next, now, rxrpc_timer_restart); in rxrpc_process_call()