blob: da91f16ac77c5e37a599496ce320c0a63246d152 [file] [log] [blame]
David Howells17926a72007-04-26 15:48:28 -07001/* Management of Tx window, Tx resend, ACKs and out-of-sequence reception
2 *
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
Joe Perches9b6d5392016-06-02 12:08:52 -070012#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
David Howells17926a72007-04-26 15:48:28 -070014#include <linux/module.h>
15#include <linux/circ_buf.h>
16#include <linux/net.h>
17#include <linux/skbuff.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
David Howells17926a72007-04-26 15:48:28 -070019#include <linux/udp.h>
20#include <net/sock.h>
21#include <net/af_rxrpc.h>
22#include "ar-internal.h"
23
David Howells5873c082014-02-07 18:58:44 +000024/*
David Howellsa5af7e12016-10-06 08:11:49 +010025 * Propose a PING ACK be sent.
26 */
27static void rxrpc_propose_ping(struct rxrpc_call *call,
28 bool immediate, bool background)
29{
30 if (immediate) {
31 if (background &&
32 !test_and_set_bit(RXRPC_CALL_EV_PING, &call->events))
33 rxrpc_queue_call(call);
34 } else {
David Howellsa158bdd2017-11-24 10:18:41 +000035 unsigned long now = jiffies;
36 unsigned long ping_at = now + rxrpc_idle_ack_delay;
David Howellsa5af7e12016-10-06 08:11:49 +010037
David Howellsa158bdd2017-11-24 10:18:41 +000038 if (time_before(ping_at, call->ping_at)) {
39 WRITE_ONCE(call->ping_at, ping_at);
40 rxrpc_reduce_call_timer(call, ping_at, now,
41 rxrpc_timer_set_for_ping);
David Howellsa5af7e12016-10-06 08:11:49 +010042 }
43 }
44}
45
46/*
David Howells17926a72007-04-26 15:48:28 -070047 * propose an ACK be sent
48 */
David Howells248f2192016-09-08 11:10:12 +010049static void __rxrpc_propose_ACK(struct rxrpc_call *call, u8 ack_reason,
50 u16 skew, u32 serial, bool immediate,
David Howells9c7ad432016-09-23 13:50:40 +010051 bool background,
52 enum rxrpc_propose_ack_trace why)
David Howells17926a72007-04-26 15:48:28 -070053{
David Howells9c7ad432016-09-23 13:50:40 +010054 enum rxrpc_propose_ack_outcome outcome = rxrpc_propose_ack_use;
David Howellsbeb8e5e2017-11-24 10:18:41 +000055 unsigned long expiry = rxrpc_soft_ack_delay;
David Howells17926a72007-04-26 15:48:28 -070056 s8 prior = rxrpc_ack_priority[ack_reason];
57
David Howellsa5af7e12016-10-06 08:11:49 +010058 /* Pings are handled specially because we don't want to accidentally
59 * lose a ping response by subsuming it into a ping.
60 */
61 if (ack_reason == RXRPC_ACK_PING) {
62 rxrpc_propose_ping(call, immediate, background);
63 goto trace;
64 }
65
David Howells248f2192016-09-08 11:10:12 +010066 /* Update DELAY, IDLE, REQUESTED and PING_RESPONSE ACK serial
67 * numbers, but we don't alter the timeout.
68 */
69 _debug("prior %u %u vs %u %u",
70 ack_reason, prior,
71 call->ackr_reason, rxrpc_ack_priority[call->ackr_reason]);
72 if (ack_reason == call->ackr_reason) {
73 if (RXRPC_ACK_UPDATEABLE & (1 << ack_reason)) {
David Howells9c7ad432016-09-23 13:50:40 +010074 outcome = rxrpc_propose_ack_update;
David Howells17926a72007-04-26 15:48:28 -070075 call->ackr_serial = serial;
David Howells248f2192016-09-08 11:10:12 +010076 call->ackr_skew = skew;
David Howells563ea7d2016-08-23 15:27:25 +010077 }
David Howells248f2192016-09-08 11:10:12 +010078 if (!immediate)
David Howells9c7ad432016-09-23 13:50:40 +010079 goto trace;
David Howells248f2192016-09-08 11:10:12 +010080 } else if (prior > rxrpc_ack_priority[call->ackr_reason]) {
81 call->ackr_reason = ack_reason;
82 call->ackr_serial = serial;
83 call->ackr_skew = skew;
David Howells9c7ad432016-09-23 13:50:40 +010084 } else {
85 outcome = rxrpc_propose_ack_subsume;
David Howells17926a72007-04-26 15:48:28 -070086 }
87
David Howells17926a72007-04-26 15:48:28 -070088 switch (ack_reason) {
David Howells248f2192016-09-08 11:10:12 +010089 case RXRPC_ACK_REQUESTED:
90 if (rxrpc_requested_ack_delay < expiry)
91 expiry = rxrpc_requested_ack_delay;
92 if (serial == 1)
93 immediate = false;
94 break;
95
David Howells17926a72007-04-26 15:48:28 -070096 case RXRPC_ACK_DELAY:
David Howells248f2192016-09-08 11:10:12 +010097 if (rxrpc_soft_ack_delay < expiry)
98 expiry = rxrpc_soft_ack_delay;
99 break;
David Howells17926a72007-04-26 15:48:28 -0700100
101 case RXRPC_ACK_IDLE:
David Howells91c2c7b2016-09-13 22:36:21 +0100102 if (rxrpc_idle_ack_delay < expiry)
David Howells5873c082014-02-07 18:58:44 +0000103 expiry = rxrpc_idle_ack_delay;
David Howells248f2192016-09-08 11:10:12 +0100104 break;
David Howells17926a72007-04-26 15:48:28 -0700105
106 default:
David Howells248f2192016-09-08 11:10:12 +0100107 immediate = true;
108 break;
David Howells17926a72007-04-26 15:48:28 -0700109 }
110
David Howells248f2192016-09-08 11:10:12 +0100111 if (test_bit(RXRPC_CALL_EV_ACK, &call->events)) {
112 _debug("already scheduled");
113 } else if (immediate || expiry == 0) {
114 _debug("immediate ACK %lx", call->events);
115 if (!test_and_set_bit(RXRPC_CALL_EV_ACK, &call->events) &&
116 background)
117 rxrpc_queue_call(call);
118 } else {
David Howellsbeb8e5e2017-11-24 10:18:41 +0000119 unsigned long now = jiffies, ack_at;
120
121 if (call->peer->rtt_usage > 0)
122 ack_at = nsecs_to_jiffies(call->peer->rtt);
123 else
124 ack_at = expiry;
125
David Howellsa158bdd2017-11-24 10:18:41 +0000126 ack_at = jiffies + expiry;
127 if (time_before(ack_at, call->ack_at)) {
128 WRITE_ONCE(call->ack_at, ack_at);
129 rxrpc_reduce_call_timer(call, ack_at, now,
130 rxrpc_timer_set_for_ack);
David Howells248f2192016-09-08 11:10:12 +0100131 }
132 }
David Howells9c7ad432016-09-23 13:50:40 +0100133
134trace:
135 trace_rxrpc_propose_ack(call, why, ack_reason, serial, immediate,
136 background, outcome);
David Howells17926a72007-04-26 15:48:28 -0700137}
138
139/*
140 * propose an ACK be sent, locking the call structure
141 */
David Howells4e36a952009-09-16 00:01:13 -0700142void rxrpc_propose_ACK(struct rxrpc_call *call, u8 ack_reason,
David Howells9c7ad432016-09-23 13:50:40 +0100143 u16 skew, u32 serial, bool immediate, bool background,
144 enum rxrpc_propose_ack_trace why)
David Howells17926a72007-04-26 15:48:28 -0700145{
David Howells248f2192016-09-08 11:10:12 +0100146 spin_lock_bh(&call->lock);
147 __rxrpc_propose_ACK(call, ack_reason, skew, serial,
David Howells9c7ad432016-09-23 13:50:40 +0100148 immediate, background, why);
David Howells248f2192016-09-08 11:10:12 +0100149 spin_unlock_bh(&call->lock);
David Howells17926a72007-04-26 15:48:28 -0700150}
151
152/*
David Howells57494342016-09-24 18:05:27 +0100153 * Handle congestion being detected by the retransmit timeout.
154 */
155static void rxrpc_congestion_timeout(struct rxrpc_call *call)
156{
157 set_bit(RXRPC_CALL_RETRANS_TIMEOUT, &call->flags);
158}
159
160/*
David Howells248f2192016-09-08 11:10:12 +0100161 * Perform retransmission of NAK'd and unack'd packets.
David Howells17926a72007-04-26 15:48:28 -0700162 */
David Howellsa158bdd2017-11-24 10:18:41 +0000163static void rxrpc_resend(struct rxrpc_call *call, unsigned long now_j)
David Howells17926a72007-04-26 15:48:28 -0700164{
165 struct rxrpc_skb_priv *sp;
David Howells17926a72007-04-26 15:48:28 -0700166 struct sk_buff *skb;
David Howellsa158bdd2017-11-24 10:18:41 +0000167 unsigned long resend_at;
David Howells248f2192016-09-08 11:10:12 +0100168 rxrpc_seq_t cursor, seq, top;
David Howellsbeb8e5e2017-11-24 10:18:41 +0000169 ktime_t now, max_age, oldest, ack_ts, timeout, min_timeo;
David Howells248f2192016-09-08 11:10:12 +0100170 int ix;
David Howells57494342016-09-24 18:05:27 +0100171 u8 annotation, anno_type, retrans = 0, unacked = 0;
David Howells17926a72007-04-26 15:48:28 -0700172
David Howells248f2192016-09-08 11:10:12 +0100173 _enter("{%d,%d}", call->tx_hard_ack, call->tx_top);
David Howells17926a72007-04-26 15:48:28 -0700174
David Howellsbeb8e5e2017-11-24 10:18:41 +0000175 if (call->peer->rtt_usage > 1)
176 timeout = ns_to_ktime(call->peer->rtt * 3 / 2);
177 else
178 timeout = ms_to_ktime(rxrpc_resend_timeout);
179 min_timeo = ns_to_ktime((1000000000 / HZ) * 4);
180 if (ktime_before(timeout, min_timeo))
181 timeout = min_timeo;
182
David Howellsa158bdd2017-11-24 10:18:41 +0000183 now = ktime_get_real();
David Howellsbeb8e5e2017-11-24 10:18:41 +0000184 max_age = ktime_sub(now, timeout);
David Howells50235c42016-09-22 00:29:31 +0100185
David Howells17926a72007-04-26 15:48:28 -0700186 spin_lock_bh(&call->lock);
187
David Howells248f2192016-09-08 11:10:12 +0100188 cursor = call->tx_hard_ack;
189 top = call->tx_top;
190 ASSERT(before_eq(cursor, top));
191 if (cursor == top)
192 goto out_unlock;
David Howells17926a72007-04-26 15:48:28 -0700193
David Howells248f2192016-09-08 11:10:12 +0100194 /* Scan the packet list without dropping the lock and decide which of
195 * the packets in the Tx buffer we're going to resend and what the new
196 * resend timeout will be.
197 */
David Howells50235c42016-09-22 00:29:31 +0100198 oldest = now;
David Howellsdfa7d922016-09-17 10:49:12 +0100199 for (seq = cursor + 1; before_eq(seq, top); seq++) {
David Howells248f2192016-09-08 11:10:12 +0100200 ix = seq & RXRPC_RXTX_BUFF_MASK;
201 annotation = call->rxtx_annotations[ix];
David Howellsf07373e2016-09-22 00:29:32 +0100202 anno_type = annotation & RXRPC_TX_ANNO_MASK;
203 annotation &= ~RXRPC_TX_ANNO_MASK;
204 if (anno_type == RXRPC_TX_ANNO_ACK)
David Howells248f2192016-09-08 11:10:12 +0100205 continue;
206
207 skb = call->rxtx_buffer[ix];
David Howells71f3ca42016-09-17 10:49:14 +0100208 rxrpc_see_skb(skb, rxrpc_skb_tx_seen);
David Howells17926a72007-04-26 15:48:28 -0700209 sp = rxrpc_skb(skb);
210
David Howellsf07373e2016-09-22 00:29:32 +0100211 if (anno_type == RXRPC_TX_ANNO_UNACK) {
David Howells50235c42016-09-22 00:29:31 +0100212 if (ktime_after(skb->tstamp, max_age)) {
213 if (ktime_before(skb->tstamp, oldest))
214 oldest = skb->tstamp;
David Howells248f2192016-09-08 11:10:12 +0100215 continue;
216 }
David Howells57494342016-09-24 18:05:27 +0100217 if (!(annotation & RXRPC_TX_ANNO_RESENT))
218 unacked++;
David Howells17926a72007-04-26 15:48:28 -0700219 }
David Howells17926a72007-04-26 15:48:28 -0700220
David Howells248f2192016-09-08 11:10:12 +0100221 /* Okay, we need to retransmit a packet. */
David Howellsf07373e2016-09-22 00:29:32 +0100222 call->rxtx_annotations[ix] = RXRPC_TX_ANNO_RETRANS | annotation;
David Howells57494342016-09-24 18:05:27 +0100223 retrans++;
David Howellsc6672e32016-09-23 13:58:55 +0100224 trace_rxrpc_retransmit(call, seq, annotation | anno_type,
225 ktime_to_ns(ktime_sub(skb->tstamp, max_age)));
David Howellsdfa7d922016-09-17 10:49:12 +0100226 }
David Howells17926a72007-04-26 15:48:28 -0700227
David Howellsa158bdd2017-11-24 10:18:41 +0000228 resend_at = nsecs_to_jiffies(ktime_to_ns(ktime_sub(oldest, now)));
229 resend_at += jiffies + rxrpc_resend_timeout;
230 WRITE_ONCE(call->resend_at, resend_at);
David Howells17926a72007-04-26 15:48:28 -0700231
David Howells57494342016-09-24 18:05:27 +0100232 if (unacked)
233 rxrpc_congestion_timeout(call);
234
235 /* If there was nothing that needed retransmission then it's likely
236 * that an ACK got lost somewhere. Send a ping to find out instead of
237 * retransmitting data.
238 */
239 if (!retrans) {
David Howellsa158bdd2017-11-24 10:18:41 +0000240 rxrpc_reduce_call_timer(call, resend_at, now,
241 rxrpc_timer_set_for_resend);
David Howells57494342016-09-24 18:05:27 +0100242 spin_unlock_bh(&call->lock);
243 ack_ts = ktime_sub(now, call->acks_latest_ts);
244 if (ktime_to_ns(ack_ts) < call->peer->rtt)
245 goto out;
246 rxrpc_propose_ACK(call, RXRPC_ACK_PING, 0, 0, true, false,
247 rxrpc_propose_ack_ping_for_lost_ack);
David Howellsa5af7e12016-10-06 08:11:49 +0100248 rxrpc_send_ack_packet(call, true);
David Howells57494342016-09-24 18:05:27 +0100249 goto out;
250 }
251
David Howells248f2192016-09-08 11:10:12 +0100252 /* Now go through the Tx window and perform the retransmissions. We
253 * have to drop the lock for each send. If an ACK comes in whilst the
254 * lock is dropped, it may clear some of the retransmission markers for
255 * packets that it soft-ACKs.
256 */
David Howellsdfa7d922016-09-17 10:49:12 +0100257 for (seq = cursor + 1; before_eq(seq, top); seq++) {
David Howells248f2192016-09-08 11:10:12 +0100258 ix = seq & RXRPC_RXTX_BUFF_MASK;
259 annotation = call->rxtx_annotations[ix];
David Howellsf07373e2016-09-22 00:29:32 +0100260 anno_type = annotation & RXRPC_TX_ANNO_MASK;
261 if (anno_type != RXRPC_TX_ANNO_RETRANS)
David Howells248f2192016-09-08 11:10:12 +0100262 continue;
David Howells17926a72007-04-26 15:48:28 -0700263
David Howells248f2192016-09-08 11:10:12 +0100264 skb = call->rxtx_buffer[ix];
David Howells71f3ca42016-09-17 10:49:14 +0100265 rxrpc_get_skb(skb, rxrpc_skb_tx_got);
David Howells248f2192016-09-08 11:10:12 +0100266 spin_unlock_bh(&call->lock);
David Howells248f2192016-09-08 11:10:12 +0100267
David Howellsa1767072016-09-29 22:37:15 +0100268 if (rxrpc_send_data_packet(call, skb, true) < 0) {
David Howells71f3ca42016-09-17 10:49:14 +0100269 rxrpc_free_skb(skb, rxrpc_skb_tx_freed);
David Howells248f2192016-09-08 11:10:12 +0100270 return;
271 }
272
273 if (rxrpc_is_client_call(call))
274 rxrpc_expose_client_call(call);
David Howells248f2192016-09-08 11:10:12 +0100275
David Howells71f3ca42016-09-17 10:49:14 +0100276 rxrpc_free_skb(skb, rxrpc_skb_tx_freed);
David Howells17926a72007-04-26 15:48:28 -0700277 spin_lock_bh(&call->lock);
David Howells17926a72007-04-26 15:48:28 -0700278
David Howells248f2192016-09-08 11:10:12 +0100279 /* We need to clear the retransmit state, but there are two
280 * things we need to be aware of: A new ACK/NAK might have been
281 * received and the packet might have been hard-ACK'd (in which
282 * case it will no longer be in the buffer).
283 */
David Howellsf07373e2016-09-22 00:29:32 +0100284 if (after(seq, call->tx_hard_ack)) {
285 annotation = call->rxtx_annotations[ix];
286 anno_type = annotation & RXRPC_TX_ANNO_MASK;
287 if (anno_type == RXRPC_TX_ANNO_RETRANS ||
288 anno_type == RXRPC_TX_ANNO_NAK) {
289 annotation &= ~RXRPC_TX_ANNO_MASK;
290 annotation |= RXRPC_TX_ANNO_UNACK;
291 }
292 annotation |= RXRPC_TX_ANNO_RESENT;
293 call->rxtx_annotations[ix] = annotation;
294 }
David Howells17926a72007-04-26 15:48:28 -0700295
David Howells248f2192016-09-08 11:10:12 +0100296 if (after(call->tx_hard_ack, seq))
297 seq = call->tx_hard_ack;
David Howellsdfa7d922016-09-17 10:49:12 +0100298 }
David Howells248f2192016-09-08 11:10:12 +0100299
300out_unlock:
301 spin_unlock_bh(&call->lock);
David Howells57494342016-09-24 18:05:27 +0100302out:
David Howells248f2192016-09-08 11:10:12 +0100303 _leave("");
David Howells17926a72007-04-26 15:48:28 -0700304}
305
306/*
David Howells248f2192016-09-08 11:10:12 +0100307 * Handle retransmission and deferred ACK/abort generation.
David Howells17926a72007-04-26 15:48:28 -0700308 */
309void rxrpc_process_call(struct work_struct *work)
310{
311 struct rxrpc_call *call =
312 container_of(work, struct rxrpc_call, processor);
David Howellsa158bdd2017-11-24 10:18:41 +0000313 unsigned long now, next, t;
David Howells17926a72007-04-26 15:48:28 -0700314
David Howellse34d4232016-08-30 09:49:29 +0100315 rxrpc_see_call(call);
316
David Howells17926a72007-04-26 15:48:28 -0700317 //printk("\n--------------------\n");
David Howells248f2192016-09-08 11:10:12 +0100318 _enter("{%d,%s,%lx}",
319 call->debug_id, rxrpc_call_states[call->state], call->events);
David Howells17926a72007-04-26 15:48:28 -0700320
David Howells248f2192016-09-08 11:10:12 +0100321recheck_state:
322 if (test_and_clear_bit(RXRPC_CALL_EV_ABORT, &call->events)) {
David Howells26cb02a2016-10-06 08:11:49 +0100323 rxrpc_send_abort_packet(call);
David Howells248f2192016-09-08 11:10:12 +0100324 goto recheck_state;
David Howells8d94aa32016-09-07 09:19:31 +0100325 }
326
David Howells248f2192016-09-08 11:10:12 +0100327 if (call->state == RXRPC_CALL_COMPLETE) {
328 del_timer_sync(&call->timer);
David Howells94bc6692016-10-06 08:11:50 +0100329 rxrpc_notify_socket(call);
David Howells248f2192016-09-08 11:10:12 +0100330 goto out_put;
David Howells17926a72007-04-26 15:48:28 -0700331 }
332
David Howellsa158bdd2017-11-24 10:18:41 +0000333 /* Work out if any timeouts tripped */
334 now = jiffies;
335 t = READ_ONCE(call->expect_rx_by);
336 if (time_after_eq(now, t)) {
337 trace_rxrpc_timer(call, rxrpc_timer_exp_normal, now);
338 set_bit(RXRPC_CALL_EV_EXPIRED, &call->events);
339 }
340
341 t = READ_ONCE(call->expect_req_by);
342 if (call->state == RXRPC_CALL_SERVER_RECV_REQUEST &&
343 time_after_eq(now, t)) {
344 trace_rxrpc_timer(call, rxrpc_timer_exp_idle, now);
345 set_bit(RXRPC_CALL_EV_EXPIRED, &call->events);
346 }
347
348 t = READ_ONCE(call->expect_term_by);
349 if (time_after_eq(now, t)) {
350 trace_rxrpc_timer(call, rxrpc_timer_exp_hard, now);
351 set_bit(RXRPC_CALL_EV_EXPIRED, &call->events);
352 }
353
354 t = READ_ONCE(call->ack_at);
355 if (time_after_eq(now, t)) {
356 trace_rxrpc_timer(call, rxrpc_timer_exp_ack, now);
357 cmpxchg(&call->ack_at, t, now + MAX_JIFFY_OFFSET);
358 set_bit(RXRPC_CALL_EV_ACK, &call->events);
359 }
360
361 t = READ_ONCE(call->ping_at);
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);
365 set_bit(RXRPC_CALL_EV_PING, &call->events);
366 }
367
368 t = READ_ONCE(call->resend_at);
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);
372 set_bit(RXRPC_CALL_EV_RESEND, &call->events);
373 }
374
375 /* Process events */
376 if (test_and_clear_bit(RXRPC_CALL_EV_EXPIRED, &call->events)) {
David Howellsdcbefc32017-11-02 15:06:26 +0000377 rxrpc_abort_call("EXP", call, 0, RX_USER_ABORT, -ETIME);
David Howells248f2192016-09-08 11:10:12 +0100378 set_bit(RXRPC_CALL_EV_ABORT, &call->events);
David Howells57494342016-09-24 18:05:27 +0100379 goto recheck_state;
David Howells17926a72007-04-26 15:48:28 -0700380 }
381
David Howells405dea12016-09-30 09:13:50 +0100382 if (test_and_clear_bit(RXRPC_CALL_EV_ACK, &call->events)) {
David Howells248f2192016-09-08 11:10:12 +0100383 if (call->ackr_reason) {
David Howellsa5af7e12016-10-06 08:11:49 +0100384 rxrpc_send_ack_packet(call, false);
David Howells248f2192016-09-08 11:10:12 +0100385 goto recheck_state;
David Howells17926a72007-04-26 15:48:28 -0700386 }
387 }
388
David Howellsa5af7e12016-10-06 08:11:49 +0100389 if (test_and_clear_bit(RXRPC_CALL_EV_PING, &call->events)) {
390 rxrpc_send_ack_packet(call, true);
391 goto recheck_state;
392 }
393
David Howells405dea12016-09-30 09:13:50 +0100394 if (test_and_clear_bit(RXRPC_CALL_EV_RESEND, &call->events)) {
David Howellsdf0adc72016-09-26 22:12:49 +0100395 rxrpc_resend(call, now);
David Howells248f2192016-09-08 11:10:12 +0100396 goto recheck_state;
David Howells17926a72007-04-26 15:48:28 -0700397 }
398
David Howellsa158bdd2017-11-24 10:18:41 +0000399 /* Make sure the timer is restarted */
400 next = call->expect_rx_by;
401
402#define set(T) { t = READ_ONCE(T); if (time_before(t, next)) next = t; }
403
404 set(call->expect_req_by);
405 set(call->expect_term_by);
406 set(call->ack_at);
407 set(call->resend_at);
408 set(call->ping_at);
409
410 now = jiffies;
411 if (time_after_eq(now, next))
412 goto recheck_state;
413
414 rxrpc_reduce_call_timer(call, next, now, rxrpc_timer_restart);
David Howells17926a72007-04-26 15:48:28 -0700415
416 /* other events may have been raised since we started checking */
David Howells248f2192016-09-08 11:10:12 +0100417 if (call->events && call->state < RXRPC_CALL_COMPLETE) {
David Howells8d94aa32016-09-07 09:19:31 +0100418 __rxrpc_queue_call(call);
David Howells248f2192016-09-08 11:10:12 +0100419 goto out;
David Howells17926a72007-04-26 15:48:28 -0700420 }
421
David Howells248f2192016-09-08 11:10:12 +0100422out_put:
423 rxrpc_put_call(call, rxrpc_call_put);
424out:
David Howells17926a72007-04-26 15:48:28 -0700425 _leave("");
David Howells17926a72007-04-26 15:48:28 -0700426}