blob: 97a17ada4431d58b7a0f9c07be3b13b0230a6390 [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 Howells248f2192016-09-08 11:10:12 +010025 * Set the timer
26 */
David Howells9749fd22016-10-06 08:11:50 +010027void __rxrpc_set_timer(struct rxrpc_call *call, enum rxrpc_timer_trace why,
28 ktime_t now)
David Howells248f2192016-09-08 11:10:12 +010029{
David Howellsdf0adc72016-09-26 22:12:49 +010030 unsigned long t_j, now_j = jiffies;
31 ktime_t t;
David Howells405dea12016-09-30 09:13:50 +010032 bool queue = false;
David Howells248f2192016-09-08 11:10:12 +010033
David Howells248f2192016-09-08 11:10:12 +010034 if (call->state < RXRPC_CALL_COMPLETE) {
David Howells01a88f72016-09-23 12:39:22 +010035 t = call->expire_at;
David Howellsd7833d02016-10-06 08:11:50 +010036 if (!ktime_after(t, now)) {
37 trace_rxrpc_timer(call, why, now, now_j);
38 queue = true;
David Howells01a88f72016-09-23 12:39:22 +010039 goto out;
David Howellsd7833d02016-10-06 08:11:50 +010040 }
David Howells01a88f72016-09-23 12:39:22 +010041
David Howells405dea12016-09-30 09:13:50 +010042 if (!ktime_after(call->resend_at, now)) {
43 call->resend_at = call->expire_at;
44 if (!test_and_set_bit(RXRPC_CALL_EV_RESEND, &call->events))
45 queue = true;
46 } else if (ktime_before(call->resend_at, t)) {
David Howells248f2192016-09-08 11:10:12 +010047 t = call->resend_at;
David Howells405dea12016-09-30 09:13:50 +010048 }
David Howells01a88f72016-09-23 12:39:22 +010049
David Howells405dea12016-09-30 09:13:50 +010050 if (!ktime_after(call->ack_at, now)) {
51 call->ack_at = call->expire_at;
52 if (!test_and_set_bit(RXRPC_CALL_EV_ACK, &call->events))
53 queue = true;
54 } else if (ktime_before(call->ack_at, t)) {
David Howells01a88f72016-09-23 12:39:22 +010055 t = call->ack_at;
David Howells405dea12016-09-30 09:13:50 +010056 }
David Howells01a88f72016-09-23 12:39:22 +010057
David Howellsa5af7e12016-10-06 08:11:49 +010058 if (!ktime_after(call->ping_at, now)) {
59 call->ping_at = call->expire_at;
60 if (!test_and_set_bit(RXRPC_CALL_EV_PING, &call->events))
61 queue = true;
62 } else if (ktime_before(call->ping_at, t)) {
63 t = call->ping_at;
64 }
65
David Howellsdf0adc72016-09-26 22:12:49 +010066 t_j = nsecs_to_jiffies(ktime_to_ns(ktime_sub(t, now)));
67 t_j += jiffies;
68
69 /* We have to make sure that the calculated jiffies value falls
70 * at or after the nsec value, or we may loop ceaselessly
71 * because the timer times out, but we haven't reached the nsec
72 * timeout yet.
73 */
74 t_j++;
75
76 if (call->timer.expires != t_j || !timer_pending(&call->timer)) {
77 mod_timer(&call->timer, t_j);
78 trace_rxrpc_timer(call, why, now, now_j);
David Howells248f2192016-09-08 11:10:12 +010079 }
80 }
David Howells01a88f72016-09-23 12:39:22 +010081
82out:
David Howellsd7833d02016-10-06 08:11:50 +010083 if (queue)
84 rxrpc_queue_call(call);
David Howells9749fd22016-10-06 08:11:50 +010085}
86
87/*
88 * Set the timer
89 */
90void rxrpc_set_timer(struct rxrpc_call *call, enum rxrpc_timer_trace why,
91 ktime_t now)
92{
93 read_lock_bh(&call->state_lock);
94 __rxrpc_set_timer(call, why, now);
David Howells248f2192016-09-08 11:10:12 +010095 read_unlock_bh(&call->state_lock);
96}
97
98/*
David Howellsa5af7e12016-10-06 08:11:49 +010099 * Propose a PING ACK be sent.
100 */
101static void rxrpc_propose_ping(struct rxrpc_call *call,
102 bool immediate, bool background)
103{
104 if (immediate) {
105 if (background &&
106 !test_and_set_bit(RXRPC_CALL_EV_PING, &call->events))
107 rxrpc_queue_call(call);
108 } else {
109 ktime_t now = ktime_get_real();
110 ktime_t ping_at = ktime_add_ms(now, rxrpc_idle_ack_delay);
111
112 if (ktime_before(ping_at, call->ping_at)) {
113 call->ping_at = ping_at;
114 rxrpc_set_timer(call, rxrpc_timer_set_for_ping, now);
115 }
116 }
117}
118
119/*
David Howells17926a72007-04-26 15:48:28 -0700120 * propose an ACK be sent
121 */
David Howells248f2192016-09-08 11:10:12 +0100122static void __rxrpc_propose_ACK(struct rxrpc_call *call, u8 ack_reason,
123 u16 skew, u32 serial, bool immediate,
David Howells9c7ad432016-09-23 13:50:40 +0100124 bool background,
125 enum rxrpc_propose_ack_trace why)
David Howells17926a72007-04-26 15:48:28 -0700126{
David Howells9c7ad432016-09-23 13:50:40 +0100127 enum rxrpc_propose_ack_outcome outcome = rxrpc_propose_ack_use;
David Howellsdf0adc72016-09-26 22:12:49 +0100128 unsigned int expiry = rxrpc_soft_ack_delay;
129 ktime_t now, ack_at;
David Howells17926a72007-04-26 15:48:28 -0700130 s8 prior = rxrpc_ack_priority[ack_reason];
131
David Howellsa5af7e12016-10-06 08:11:49 +0100132 /* Pings are handled specially because we don't want to accidentally
133 * lose a ping response by subsuming it into a ping.
134 */
135 if (ack_reason == RXRPC_ACK_PING) {
136 rxrpc_propose_ping(call, immediate, background);
137 goto trace;
138 }
139
David Howells248f2192016-09-08 11:10:12 +0100140 /* Update DELAY, IDLE, REQUESTED and PING_RESPONSE ACK serial
141 * numbers, but we don't alter the timeout.
142 */
143 _debug("prior %u %u vs %u %u",
144 ack_reason, prior,
145 call->ackr_reason, rxrpc_ack_priority[call->ackr_reason]);
146 if (ack_reason == call->ackr_reason) {
147 if (RXRPC_ACK_UPDATEABLE & (1 << ack_reason)) {
David Howells9c7ad432016-09-23 13:50:40 +0100148 outcome = rxrpc_propose_ack_update;
David Howells17926a72007-04-26 15:48:28 -0700149 call->ackr_serial = serial;
David Howells248f2192016-09-08 11:10:12 +0100150 call->ackr_skew = skew;
David Howells563ea7d2016-08-23 15:27:25 +0100151 }
David Howells248f2192016-09-08 11:10:12 +0100152 if (!immediate)
David Howells9c7ad432016-09-23 13:50:40 +0100153 goto trace;
David Howells248f2192016-09-08 11:10:12 +0100154 } else if (prior > rxrpc_ack_priority[call->ackr_reason]) {
155 call->ackr_reason = ack_reason;
156 call->ackr_serial = serial;
157 call->ackr_skew = skew;
David Howells9c7ad432016-09-23 13:50:40 +0100158 } else {
159 outcome = rxrpc_propose_ack_subsume;
David Howells17926a72007-04-26 15:48:28 -0700160 }
161
David Howells17926a72007-04-26 15:48:28 -0700162 switch (ack_reason) {
David Howells248f2192016-09-08 11:10:12 +0100163 case RXRPC_ACK_REQUESTED:
164 if (rxrpc_requested_ack_delay < expiry)
165 expiry = rxrpc_requested_ack_delay;
166 if (serial == 1)
167 immediate = false;
168 break;
169
David Howells17926a72007-04-26 15:48:28 -0700170 case RXRPC_ACK_DELAY:
David Howells248f2192016-09-08 11:10:12 +0100171 if (rxrpc_soft_ack_delay < expiry)
172 expiry = rxrpc_soft_ack_delay;
173 break;
David Howells17926a72007-04-26 15:48:28 -0700174
175 case RXRPC_ACK_IDLE:
David Howells91c2c7b2016-09-13 22:36:21 +0100176 if (rxrpc_idle_ack_delay < expiry)
David Howells5873c082014-02-07 18:58:44 +0000177 expiry = rxrpc_idle_ack_delay;
David Howells248f2192016-09-08 11:10:12 +0100178 break;
David Howells17926a72007-04-26 15:48:28 -0700179
180 default:
David Howells248f2192016-09-08 11:10:12 +0100181 immediate = true;
182 break;
David Howells17926a72007-04-26 15:48:28 -0700183 }
184
David Howells248f2192016-09-08 11:10:12 +0100185 if (test_bit(RXRPC_CALL_EV_ACK, &call->events)) {
186 _debug("already scheduled");
187 } else if (immediate || expiry == 0) {
188 _debug("immediate ACK %lx", call->events);
189 if (!test_and_set_bit(RXRPC_CALL_EV_ACK, &call->events) &&
190 background)
191 rxrpc_queue_call(call);
192 } else {
David Howellsdf0adc72016-09-26 22:12:49 +0100193 now = ktime_get_real();
194 ack_at = ktime_add_ms(now, expiry);
195 if (ktime_before(ack_at, call->ack_at)) {
David Howells248f2192016-09-08 11:10:12 +0100196 call->ack_at = ack_at;
David Howellsdf0adc72016-09-26 22:12:49 +0100197 rxrpc_set_timer(call, rxrpc_timer_set_for_ack, now);
David Howells248f2192016-09-08 11:10:12 +0100198 }
199 }
David Howells9c7ad432016-09-23 13:50:40 +0100200
201trace:
202 trace_rxrpc_propose_ack(call, why, ack_reason, serial, immediate,
203 background, outcome);
David Howells17926a72007-04-26 15:48:28 -0700204}
205
206/*
207 * propose an ACK be sent, locking the call structure
208 */
David Howells4e36a952009-09-16 00:01:13 -0700209void rxrpc_propose_ACK(struct rxrpc_call *call, u8 ack_reason,
David Howells9c7ad432016-09-23 13:50:40 +0100210 u16 skew, u32 serial, bool immediate, bool background,
211 enum rxrpc_propose_ack_trace why)
David Howells17926a72007-04-26 15:48:28 -0700212{
David Howells248f2192016-09-08 11:10:12 +0100213 spin_lock_bh(&call->lock);
214 __rxrpc_propose_ACK(call, ack_reason, skew, serial,
David Howells9c7ad432016-09-23 13:50:40 +0100215 immediate, background, why);
David Howells248f2192016-09-08 11:10:12 +0100216 spin_unlock_bh(&call->lock);
David Howells17926a72007-04-26 15:48:28 -0700217}
218
219/*
David Howells57494342016-09-24 18:05:27 +0100220 * Handle congestion being detected by the retransmit timeout.
221 */
222static void rxrpc_congestion_timeout(struct rxrpc_call *call)
223{
224 set_bit(RXRPC_CALL_RETRANS_TIMEOUT, &call->flags);
225}
226
227/*
David Howells248f2192016-09-08 11:10:12 +0100228 * Perform retransmission of NAK'd and unack'd packets.
David Howells17926a72007-04-26 15:48:28 -0700229 */
David Howellsdf0adc72016-09-26 22:12:49 +0100230static void rxrpc_resend(struct rxrpc_call *call, ktime_t now)
David Howells17926a72007-04-26 15:48:28 -0700231{
232 struct rxrpc_skb_priv *sp;
David Howells17926a72007-04-26 15:48:28 -0700233 struct sk_buff *skb;
David Howells248f2192016-09-08 11:10:12 +0100234 rxrpc_seq_t cursor, seq, top;
David Howellsdf0adc72016-09-26 22:12:49 +0100235 ktime_t max_age, oldest, ack_ts;
David Howells248f2192016-09-08 11:10:12 +0100236 int ix;
David Howells57494342016-09-24 18:05:27 +0100237 u8 annotation, anno_type, retrans = 0, unacked = 0;
David Howells17926a72007-04-26 15:48:28 -0700238
David Howells248f2192016-09-08 11:10:12 +0100239 _enter("{%d,%d}", call->tx_hard_ack, call->tx_top);
David Howells17926a72007-04-26 15:48:28 -0700240
David Howells50235c42016-09-22 00:29:31 +0100241 max_age = ktime_sub_ms(now, rxrpc_resend_timeout);
242
David Howells17926a72007-04-26 15:48:28 -0700243 spin_lock_bh(&call->lock);
244
David Howells248f2192016-09-08 11:10:12 +0100245 cursor = call->tx_hard_ack;
246 top = call->tx_top;
247 ASSERT(before_eq(cursor, top));
248 if (cursor == top)
249 goto out_unlock;
David Howells17926a72007-04-26 15:48:28 -0700250
David Howells248f2192016-09-08 11:10:12 +0100251 /* Scan the packet list without dropping the lock and decide which of
252 * the packets in the Tx buffer we're going to resend and what the new
253 * resend timeout will be.
254 */
David Howells50235c42016-09-22 00:29:31 +0100255 oldest = now;
David Howellsdfa7d922016-09-17 10:49:12 +0100256 for (seq = cursor + 1; before_eq(seq, top); seq++) {
David Howells248f2192016-09-08 11:10:12 +0100257 ix = seq & RXRPC_RXTX_BUFF_MASK;
258 annotation = call->rxtx_annotations[ix];
David Howellsf07373e2016-09-22 00:29:32 +0100259 anno_type = annotation & RXRPC_TX_ANNO_MASK;
260 annotation &= ~RXRPC_TX_ANNO_MASK;
261 if (anno_type == RXRPC_TX_ANNO_ACK)
David Howells248f2192016-09-08 11:10:12 +0100262 continue;
263
264 skb = call->rxtx_buffer[ix];
David Howells71f3ca42016-09-17 10:49:14 +0100265 rxrpc_see_skb(skb, rxrpc_skb_tx_seen);
David Howells17926a72007-04-26 15:48:28 -0700266 sp = rxrpc_skb(skb);
267
David Howellsf07373e2016-09-22 00:29:32 +0100268 if (anno_type == RXRPC_TX_ANNO_UNACK) {
David Howells50235c42016-09-22 00:29:31 +0100269 if (ktime_after(skb->tstamp, max_age)) {
270 if (ktime_before(skb->tstamp, oldest))
271 oldest = skb->tstamp;
David Howells248f2192016-09-08 11:10:12 +0100272 continue;
273 }
David Howells57494342016-09-24 18:05:27 +0100274 if (!(annotation & RXRPC_TX_ANNO_RESENT))
275 unacked++;
David Howells17926a72007-04-26 15:48:28 -0700276 }
David Howells17926a72007-04-26 15:48:28 -0700277
David Howells248f2192016-09-08 11:10:12 +0100278 /* Okay, we need to retransmit a packet. */
David Howellsf07373e2016-09-22 00:29:32 +0100279 call->rxtx_annotations[ix] = RXRPC_TX_ANNO_RETRANS | annotation;
David Howells57494342016-09-24 18:05:27 +0100280 retrans++;
David Howellsc6672e32016-09-23 13:58:55 +0100281 trace_rxrpc_retransmit(call, seq, annotation | anno_type,
282 ktime_to_ns(ktime_sub(skb->tstamp, max_age)));
David Howellsdfa7d922016-09-17 10:49:12 +0100283 }
David Howells17926a72007-04-26 15:48:28 -0700284
David Howellsdf0adc72016-09-26 22:12:49 +0100285 call->resend_at = ktime_add_ms(oldest, rxrpc_resend_timeout);
David Howells17926a72007-04-26 15:48:28 -0700286
David Howells57494342016-09-24 18:05:27 +0100287 if (unacked)
288 rxrpc_congestion_timeout(call);
289
290 /* If there was nothing that needed retransmission then it's likely
291 * that an ACK got lost somewhere. Send a ping to find out instead of
292 * retransmitting data.
293 */
294 if (!retrans) {
David Howellsdf0adc72016-09-26 22:12:49 +0100295 rxrpc_set_timer(call, rxrpc_timer_set_for_resend, now);
David Howells57494342016-09-24 18:05:27 +0100296 spin_unlock_bh(&call->lock);
297 ack_ts = ktime_sub(now, call->acks_latest_ts);
298 if (ktime_to_ns(ack_ts) < call->peer->rtt)
299 goto out;
300 rxrpc_propose_ACK(call, RXRPC_ACK_PING, 0, 0, true, false,
301 rxrpc_propose_ack_ping_for_lost_ack);
David Howellsa5af7e12016-10-06 08:11:49 +0100302 rxrpc_send_ack_packet(call, true);
David Howells57494342016-09-24 18:05:27 +0100303 goto out;
304 }
305
David Howells248f2192016-09-08 11:10:12 +0100306 /* Now go through the Tx window and perform the retransmissions. We
307 * have to drop the lock for each send. If an ACK comes in whilst the
308 * lock is dropped, it may clear some of the retransmission markers for
309 * packets that it soft-ACKs.
310 */
David Howellsdfa7d922016-09-17 10:49:12 +0100311 for (seq = cursor + 1; before_eq(seq, top); seq++) {
David Howells248f2192016-09-08 11:10:12 +0100312 ix = seq & RXRPC_RXTX_BUFF_MASK;
313 annotation = call->rxtx_annotations[ix];
David Howellsf07373e2016-09-22 00:29:32 +0100314 anno_type = annotation & RXRPC_TX_ANNO_MASK;
315 if (anno_type != RXRPC_TX_ANNO_RETRANS)
David Howells248f2192016-09-08 11:10:12 +0100316 continue;
David Howells17926a72007-04-26 15:48:28 -0700317
David Howells248f2192016-09-08 11:10:12 +0100318 skb = call->rxtx_buffer[ix];
David Howells71f3ca42016-09-17 10:49:14 +0100319 rxrpc_get_skb(skb, rxrpc_skb_tx_got);
David Howells248f2192016-09-08 11:10:12 +0100320 spin_unlock_bh(&call->lock);
David Howells248f2192016-09-08 11:10:12 +0100321
David Howellsa1767072016-09-29 22:37:15 +0100322 if (rxrpc_send_data_packet(call, skb, true) < 0) {
David Howells71f3ca42016-09-17 10:49:14 +0100323 rxrpc_free_skb(skb, rxrpc_skb_tx_freed);
David Howells248f2192016-09-08 11:10:12 +0100324 return;
325 }
326
327 if (rxrpc_is_client_call(call))
328 rxrpc_expose_client_call(call);
David Howells248f2192016-09-08 11:10:12 +0100329
David Howells71f3ca42016-09-17 10:49:14 +0100330 rxrpc_free_skb(skb, rxrpc_skb_tx_freed);
David Howells17926a72007-04-26 15:48:28 -0700331 spin_lock_bh(&call->lock);
David Howells17926a72007-04-26 15:48:28 -0700332
David Howells248f2192016-09-08 11:10:12 +0100333 /* We need to clear the retransmit state, but there are two
334 * things we need to be aware of: A new ACK/NAK might have been
335 * received and the packet might have been hard-ACK'd (in which
336 * case it will no longer be in the buffer).
337 */
David Howellsf07373e2016-09-22 00:29:32 +0100338 if (after(seq, call->tx_hard_ack)) {
339 annotation = call->rxtx_annotations[ix];
340 anno_type = annotation & RXRPC_TX_ANNO_MASK;
341 if (anno_type == RXRPC_TX_ANNO_RETRANS ||
342 anno_type == RXRPC_TX_ANNO_NAK) {
343 annotation &= ~RXRPC_TX_ANNO_MASK;
344 annotation |= RXRPC_TX_ANNO_UNACK;
345 }
346 annotation |= RXRPC_TX_ANNO_RESENT;
347 call->rxtx_annotations[ix] = annotation;
348 }
David Howells17926a72007-04-26 15:48:28 -0700349
David Howells248f2192016-09-08 11:10:12 +0100350 if (after(call->tx_hard_ack, seq))
351 seq = call->tx_hard_ack;
David Howellsdfa7d922016-09-17 10:49:12 +0100352 }
David Howells248f2192016-09-08 11:10:12 +0100353
354out_unlock:
355 spin_unlock_bh(&call->lock);
David Howells57494342016-09-24 18:05:27 +0100356out:
David Howells248f2192016-09-08 11:10:12 +0100357 _leave("");
David Howells17926a72007-04-26 15:48:28 -0700358}
359
360/*
David Howells248f2192016-09-08 11:10:12 +0100361 * Handle retransmission and deferred ACK/abort generation.
David Howells17926a72007-04-26 15:48:28 -0700362 */
363void rxrpc_process_call(struct work_struct *work)
364{
365 struct rxrpc_call *call =
366 container_of(work, struct rxrpc_call, processor);
David Howellsdf0adc72016-09-26 22:12:49 +0100367 ktime_t now;
David Howells17926a72007-04-26 15:48:28 -0700368
David Howellse34d4232016-08-30 09:49:29 +0100369 rxrpc_see_call(call);
370
David Howells17926a72007-04-26 15:48:28 -0700371 //printk("\n--------------------\n");
David Howells248f2192016-09-08 11:10:12 +0100372 _enter("{%d,%s,%lx}",
373 call->debug_id, rxrpc_call_states[call->state], call->events);
David Howells17926a72007-04-26 15:48:28 -0700374
David Howells248f2192016-09-08 11:10:12 +0100375recheck_state:
376 if (test_and_clear_bit(RXRPC_CALL_EV_ABORT, &call->events)) {
David Howells26cb02a2016-10-06 08:11:49 +0100377 rxrpc_send_abort_packet(call);
David Howells248f2192016-09-08 11:10:12 +0100378 goto recheck_state;
David Howells8d94aa32016-09-07 09:19:31 +0100379 }
380
David Howells248f2192016-09-08 11:10:12 +0100381 if (call->state == RXRPC_CALL_COMPLETE) {
382 del_timer_sync(&call->timer);
David Howells94bc6692016-10-06 08:11:50 +0100383 rxrpc_notify_socket(call);
David Howells248f2192016-09-08 11:10:12 +0100384 goto out_put;
David Howells17926a72007-04-26 15:48:28 -0700385 }
386
David Howellsdf0adc72016-09-26 22:12:49 +0100387 now = ktime_get_real();
388 if (ktime_before(call->expire_at, now)) {
David Howells5a429762016-09-06 22:19:51 +0100389 rxrpc_abort_call("EXP", call, 0, RX_CALL_TIMEOUT, ETIME);
David Howells248f2192016-09-08 11:10:12 +0100390 set_bit(RXRPC_CALL_EV_ABORT, &call->events);
David Howells57494342016-09-24 18:05:27 +0100391 goto recheck_state;
David Howells17926a72007-04-26 15:48:28 -0700392 }
393
David Howells405dea12016-09-30 09:13:50 +0100394 if (test_and_clear_bit(RXRPC_CALL_EV_ACK, &call->events)) {
David Howells248f2192016-09-08 11:10:12 +0100395 if (call->ackr_reason) {
David Howellsa5af7e12016-10-06 08:11:49 +0100396 rxrpc_send_ack_packet(call, false);
David Howells248f2192016-09-08 11:10:12 +0100397 goto recheck_state;
David Howells17926a72007-04-26 15:48:28 -0700398 }
399 }
400
David Howellsa5af7e12016-10-06 08:11:49 +0100401 if (test_and_clear_bit(RXRPC_CALL_EV_PING, &call->events)) {
402 rxrpc_send_ack_packet(call, true);
403 goto recheck_state;
404 }
405
David Howells405dea12016-09-30 09:13:50 +0100406 if (test_and_clear_bit(RXRPC_CALL_EV_RESEND, &call->events)) {
David Howellsdf0adc72016-09-26 22:12:49 +0100407 rxrpc_resend(call, now);
David Howells248f2192016-09-08 11:10:12 +0100408 goto recheck_state;
David Howells17926a72007-04-26 15:48:28 -0700409 }
410
David Howellsdf0adc72016-09-26 22:12:49 +0100411 rxrpc_set_timer(call, rxrpc_timer_set_for_resend, now);
David Howells17926a72007-04-26 15:48:28 -0700412
413 /* other events may have been raised since we started checking */
David Howells248f2192016-09-08 11:10:12 +0100414 if (call->events && call->state < RXRPC_CALL_COMPLETE) {
David Howells8d94aa32016-09-07 09:19:31 +0100415 __rxrpc_queue_call(call);
David Howells248f2192016-09-08 11:10:12 +0100416 goto out;
David Howells17926a72007-04-26 15:48:28 -0700417 }
418
David Howells248f2192016-09-08 11:10:12 +0100419out_put:
420 rxrpc_put_call(call, rxrpc_call_put);
421out:
David Howells17926a72007-04-26 15:48:28 -0700422 _leave("");
David Howells17926a72007-04-26 15:48:28 -0700423}