Lines Matching refs:now

31 		unsigned long now = jiffies;
32 unsigned long ping_at = now + rxrpc_idle_ack_delay;
36 rxrpc_reduce_call_timer(call, ping_at, now,
112 unsigned long now = jiffies, ack_at;
120 ack_at += now;
123 rxrpc_reduce_call_timer(call, ack_at, now,
162 ktime_t now, max_age, oldest, ack_ts;
168 now = ktime_get_real();
169 max_age = ktime_sub_us(now, jiffies_to_usecs(call->peer->rto_j));
184 oldest = now;
213 resend_at = nsecs_to_jiffies(ktime_to_ns(ktime_sub(now, oldest)));
228 ack_ts = ktime_sub(now, call->acks_latest_ts);
292 unsigned long now, next, t;
318 now = jiffies;
320 if (time_after_eq(now, t)) {
321 trace_rxrpc_timer(call, rxrpc_timer_exp_normal, now);
327 time_after_eq(now, t)) {
328 trace_rxrpc_timer(call, rxrpc_timer_exp_idle, now);
333 if (time_after_eq(now, t)) {
334 trace_rxrpc_timer(call, rxrpc_timer_exp_hard, now);
339 if (time_after_eq(now, t)) {
340 trace_rxrpc_timer(call, rxrpc_timer_exp_ack, now);
341 cmpxchg(&call->ack_at, t, now + MAX_JIFFY_OFFSET);
346 if (time_after_eq(now, t)) {
347 trace_rxrpc_timer(call, rxrpc_timer_exp_lost_ack, now);
348 cmpxchg(&call->ack_lost_at, t, now + MAX_JIFFY_OFFSET);
353 if (time_after_eq(now, t)) {
354 trace_rxrpc_timer(call, rxrpc_timer_exp_keepalive, now);
355 cmpxchg(&call->keepalive_at, t, now + MAX_JIFFY_OFFSET);
362 if (time_after_eq(now, t)) {
363 trace_rxrpc_timer(call, rxrpc_timer_exp_ping, now);
364 cmpxchg(&call->ping_at, t, now + MAX_JIFFY_OFFSET);
369 if (time_after_eq(now, t)) {
370 trace_rxrpc_timer(call, rxrpc_timer_exp_resend, now);
371 cmpxchg(&call->resend_at, t, now + MAX_JIFFY_OFFSET);
411 rxrpc_resend(call, now);
428 now = jiffies;
429 if (time_after_eq(now, next))
432 rxrpc_reduce_call_timer(call, next, now, rxrpc_timer_restart);