eaa8035dcb71cfa65b7c6a5480c539662907ad75
[linux-2.6-microblaze.git] / net / rxrpc / call_event.c
1 /* 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
12 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
14 #include <linux/module.h>
15 #include <linux/circ_buf.h>
16 #include <linux/net.h>
17 #include <linux/skbuff.h>
18 #include <linux/slab.h>
19 #include <linux/udp.h>
20 #include <net/sock.h>
21 #include <net/af_rxrpc.h>
22 #include "ar-internal.h"
23
24 /*
25  * propose an ACK be sent
26  */
27 void __rxrpc_propose_ACK(struct rxrpc_call *call, u8 ack_reason,
28                          u32 serial, bool immediate)
29 {
30         unsigned long expiry;
31         s8 prior = rxrpc_ack_priority[ack_reason];
32
33         ASSERTCMP(prior, >, 0);
34
35         _enter("{%d},%s,%%%x,%u",
36                call->debug_id, rxrpc_acks(ack_reason), serial, immediate);
37
38         if (prior < rxrpc_ack_priority[call->ackr_reason]) {
39                 if (immediate)
40                         goto cancel_timer;
41                 return;
42         }
43
44         /* update DELAY, IDLE, REQUESTED and PING_RESPONSE ACK serial
45          * numbers */
46         if (prior == rxrpc_ack_priority[call->ackr_reason]) {
47                 if (prior <= 4)
48                         call->ackr_serial = serial;
49                 if (immediate)
50                         goto cancel_timer;
51                 return;
52         }
53
54         call->ackr_reason = ack_reason;
55         call->ackr_serial = serial;
56
57         switch (ack_reason) {
58         case RXRPC_ACK_DELAY:
59                 _debug("run delay timer");
60                 expiry = rxrpc_soft_ack_delay;
61                 goto run_timer;
62
63         case RXRPC_ACK_IDLE:
64                 if (!immediate) {
65                         _debug("run defer timer");
66                         expiry = rxrpc_idle_ack_delay;
67                         goto run_timer;
68                 }
69                 goto cancel_timer;
70
71         case RXRPC_ACK_REQUESTED:
72                 expiry = rxrpc_requested_ack_delay;
73                 if (!expiry)
74                         goto cancel_timer;
75                 if (!immediate || serial == 1) {
76                         _debug("run defer timer");
77                         goto run_timer;
78                 }
79
80         default:
81                 _debug("immediate ACK");
82                 goto cancel_timer;
83         }
84
85 run_timer:
86         expiry += jiffies;
87         if (!timer_pending(&call->ack_timer) ||
88             time_after(call->ack_timer.expires, expiry))
89                 mod_timer(&call->ack_timer, expiry);
90         return;
91
92 cancel_timer:
93         _debug("cancel timer %%%u", serial);
94         try_to_del_timer_sync(&call->ack_timer);
95         read_lock_bh(&call->state_lock);
96         if (call->state <= RXRPC_CALL_COMPLETE &&
97             !test_and_set_bit(RXRPC_CALL_EV_ACK, &call->events))
98                 rxrpc_queue_call(call);
99         read_unlock_bh(&call->state_lock);
100 }
101
102 /*
103  * propose an ACK be sent, locking the call structure
104  */
105 void rxrpc_propose_ACK(struct rxrpc_call *call, u8 ack_reason,
106                        u32 serial, bool immediate)
107 {
108         s8 prior = rxrpc_ack_priority[ack_reason];
109
110         if (prior > rxrpc_ack_priority[call->ackr_reason]) {
111                 spin_lock_bh(&call->lock);
112                 __rxrpc_propose_ACK(call, ack_reason, serial, immediate);
113                 spin_unlock_bh(&call->lock);
114         }
115 }
116
117 /*
118  * set the resend timer
119  */
120 static void rxrpc_set_resend(struct rxrpc_call *call, u8 resend,
121                              unsigned long resend_at)
122 {
123         read_lock_bh(&call->state_lock);
124         if (call->state >= RXRPC_CALL_COMPLETE)
125                 resend = 0;
126
127         if (resend & 1) {
128                 _debug("SET RESEND");
129                 set_bit(RXRPC_CALL_EV_RESEND, &call->events);
130         }
131
132         if (resend & 2) {
133                 _debug("MODIFY RESEND TIMER");
134                 set_bit(RXRPC_CALL_RUN_RTIMER, &call->flags);
135                 mod_timer(&call->resend_timer, resend_at);
136         } else {
137                 _debug("KILL RESEND TIMER");
138                 del_timer_sync(&call->resend_timer);
139                 clear_bit(RXRPC_CALL_EV_RESEND_TIMER, &call->events);
140                 clear_bit(RXRPC_CALL_RUN_RTIMER, &call->flags);
141         }
142         read_unlock_bh(&call->state_lock);
143 }
144
145 /*
146  * resend packets
147  */
148 static void rxrpc_resend(struct rxrpc_call *call)
149 {
150         struct rxrpc_wire_header *whdr;
151         struct rxrpc_skb_priv *sp;
152         struct sk_buff *txb;
153         unsigned long *p_txb, resend_at;
154         bool stop;
155         int loop;
156         u8 resend;
157
158         _enter("{%d,%d,%d,%d},",
159                call->acks_hard, call->acks_unacked,
160                atomic_read(&call->sequence),
161                CIRC_CNT(call->acks_head, call->acks_tail, call->acks_winsz));
162
163         stop = false;
164         resend = 0;
165         resend_at = 0;
166
167         for (loop = call->acks_tail;
168              loop != call->acks_head || stop;
169              loop = (loop + 1) &  (call->acks_winsz - 1)
170              ) {
171                 p_txb = call->acks_window + loop;
172                 smp_read_barrier_depends();
173                 if (*p_txb & 1)
174                         continue;
175
176                 txb = (struct sk_buff *) *p_txb;
177                 sp = rxrpc_skb(txb);
178
179                 if (sp->need_resend) {
180                         sp->need_resend = false;
181
182                         /* each Tx packet has a new serial number */
183                         sp->hdr.serial = atomic_inc_return(&call->conn->serial);
184
185                         whdr = (struct rxrpc_wire_header *)txb->head;
186                         whdr->serial = htonl(sp->hdr.serial);
187
188                         _proto("Tx DATA %%%u { #%d }",
189                                sp->hdr.serial, sp->hdr.seq);
190                         if (rxrpc_send_data_packet(call->conn, txb) < 0) {
191                                 stop = true;
192                                 sp->resend_at = jiffies + 3;
193                         } else {
194                                 sp->resend_at =
195                                         jiffies + rxrpc_resend_timeout;
196                         }
197                 }
198
199                 if (time_after_eq(jiffies + 1, sp->resend_at)) {
200                         sp->need_resend = true;
201                         resend |= 1;
202                 } else if (resend & 2) {
203                         if (time_before(sp->resend_at, resend_at))
204                                 resend_at = sp->resend_at;
205                 } else {
206                         resend_at = sp->resend_at;
207                         resend |= 2;
208                 }
209         }
210
211         rxrpc_set_resend(call, resend, resend_at);
212         _leave("");
213 }
214
215 /*
216  * handle resend timer expiry
217  */
218 static void rxrpc_resend_timer(struct rxrpc_call *call)
219 {
220         struct rxrpc_skb_priv *sp;
221         struct sk_buff *txb;
222         unsigned long *p_txb, resend_at;
223         int loop;
224         u8 resend;
225
226         _enter("%d,%d,%d",
227                call->acks_tail, call->acks_unacked, call->acks_head);
228
229         if (call->state >= RXRPC_CALL_COMPLETE)
230                 return;
231
232         resend = 0;
233         resend_at = 0;
234
235         for (loop = call->acks_unacked;
236              loop != call->acks_head;
237              loop = (loop + 1) &  (call->acks_winsz - 1)
238              ) {
239                 p_txb = call->acks_window + loop;
240                 smp_read_barrier_depends();
241                 txb = (struct sk_buff *) (*p_txb & ~1);
242                 sp = rxrpc_skb(txb);
243
244                 ASSERT(!(*p_txb & 1));
245
246                 if (sp->need_resend) {
247                         ;
248                 } else if (time_after_eq(jiffies + 1, sp->resend_at)) {
249                         sp->need_resend = true;
250                         resend |= 1;
251                 } else if (resend & 2) {
252                         if (time_before(sp->resend_at, resend_at))
253                                 resend_at = sp->resend_at;
254                 } else {
255                         resend_at = sp->resend_at;
256                         resend |= 2;
257                 }
258         }
259
260         rxrpc_set_resend(call, resend, resend_at);
261         _leave("");
262 }
263
264 /*
265  * process soft ACKs of our transmitted packets
266  * - these indicate packets the peer has or has not received, but hasn't yet
267  *   given to the consumer, and so can still be discarded and re-requested
268  */
269 static int rxrpc_process_soft_ACKs(struct rxrpc_call *call,
270                                    struct rxrpc_ackpacket *ack,
271                                    struct sk_buff *skb)
272 {
273         struct rxrpc_skb_priv *sp;
274         struct sk_buff *txb;
275         unsigned long *p_txb, resend_at;
276         int loop;
277         u8 sacks[RXRPC_MAXACKS], resend;
278
279         _enter("{%d,%d},{%d},",
280                call->acks_hard,
281                CIRC_CNT(call->acks_head, call->acks_tail, call->acks_winsz),
282                ack->nAcks);
283
284         if (skb_copy_bits(skb, 0, sacks, ack->nAcks) < 0)
285                 goto protocol_error;
286
287         resend = 0;
288         resend_at = 0;
289         for (loop = 0; loop < ack->nAcks; loop++) {
290                 p_txb = call->acks_window;
291                 p_txb += (call->acks_tail + loop) & (call->acks_winsz - 1);
292                 smp_read_barrier_depends();
293                 txb = (struct sk_buff *) (*p_txb & ~1);
294                 sp = rxrpc_skb(txb);
295
296                 switch (sacks[loop]) {
297                 case RXRPC_ACK_TYPE_ACK:
298                         sp->need_resend = false;
299                         *p_txb |= 1;
300                         break;
301                 case RXRPC_ACK_TYPE_NACK:
302                         sp->need_resend = true;
303                         *p_txb &= ~1;
304                         resend = 1;
305                         break;
306                 default:
307                         _debug("Unsupported ACK type %d", sacks[loop]);
308                         goto protocol_error;
309                 }
310         }
311
312         smp_mb();
313         call->acks_unacked = (call->acks_tail + loop) & (call->acks_winsz - 1);
314
315         /* anything not explicitly ACK'd is implicitly NACK'd, but may just not
316          * have been received or processed yet by the far end */
317         for (loop = call->acks_unacked;
318              loop != call->acks_head;
319              loop = (loop + 1) &  (call->acks_winsz - 1)
320              ) {
321                 p_txb = call->acks_window + loop;
322                 smp_read_barrier_depends();
323                 txb = (struct sk_buff *) (*p_txb & ~1);
324                 sp = rxrpc_skb(txb);
325
326                 if (*p_txb & 1) {
327                         /* packet must have been discarded */
328                         sp->need_resend = true;
329                         *p_txb &= ~1;
330                         resend |= 1;
331                 } else if (sp->need_resend) {
332                         ;
333                 } else if (time_after_eq(jiffies + 1, sp->resend_at)) {
334                         sp->need_resend = true;
335                         resend |= 1;
336                 } else if (resend & 2) {
337                         if (time_before(sp->resend_at, resend_at))
338                                 resend_at = sp->resend_at;
339                 } else {
340                         resend_at = sp->resend_at;
341                         resend |= 2;
342                 }
343         }
344
345         rxrpc_set_resend(call, resend, resend_at);
346         _leave(" = 0");
347         return 0;
348
349 protocol_error:
350         _leave(" = -EPROTO");
351         return -EPROTO;
352 }
353
354 /*
355  * discard hard-ACK'd packets from the Tx window
356  */
357 static void rxrpc_rotate_tx_window(struct rxrpc_call *call, u32 hard)
358 {
359         unsigned long _skb;
360         int tail = call->acks_tail, old_tail;
361         int win = CIRC_CNT(call->acks_head, tail, call->acks_winsz);
362
363         _enter("{%u,%u},%u", call->acks_hard, win, hard);
364
365         ASSERTCMP(hard - call->acks_hard, <=, win);
366
367         while (call->acks_hard < hard) {
368                 smp_read_barrier_depends();
369                 _skb = call->acks_window[tail] & ~1;
370                 rxrpc_free_skb((struct sk_buff *) _skb);
371                 old_tail = tail;
372                 tail = (tail + 1) & (call->acks_winsz - 1);
373                 call->acks_tail = tail;
374                 if (call->acks_unacked == old_tail)
375                         call->acks_unacked = tail;
376                 call->acks_hard++;
377         }
378
379         wake_up(&call->tx_waitq);
380 }
381
382 /*
383  * clear the Tx window in the event of a failure
384  */
385 static void rxrpc_clear_tx_window(struct rxrpc_call *call)
386 {
387         rxrpc_rotate_tx_window(call, atomic_read(&call->sequence));
388 }
389
390 /*
391  * drain the out of sequence received packet queue into the packet Rx queue
392  */
393 static int rxrpc_drain_rx_oos_queue(struct rxrpc_call *call)
394 {
395         struct rxrpc_skb_priv *sp;
396         struct sk_buff *skb;
397         bool terminal;
398         int ret;
399
400         _enter("{%d,%d}", call->rx_data_post, call->rx_first_oos);
401
402         spin_lock_bh(&call->lock);
403
404         ret = -ECONNRESET;
405         if (test_bit(RXRPC_CALL_RELEASED, &call->flags))
406                 goto socket_unavailable;
407
408         skb = skb_dequeue(&call->rx_oos_queue);
409         if (skb) {
410                 sp = rxrpc_skb(skb);
411
412                 _debug("drain OOS packet %d [%d]",
413                        sp->hdr.seq, call->rx_first_oos);
414
415                 if (sp->hdr.seq != call->rx_first_oos) {
416                         skb_queue_head(&call->rx_oos_queue, skb);
417                         call->rx_first_oos = rxrpc_skb(skb)->hdr.seq;
418                         _debug("requeue %p {%u}", skb, call->rx_first_oos);
419                 } else {
420                         skb->mark = RXRPC_SKB_MARK_DATA;
421                         terminal = ((sp->hdr.flags & RXRPC_LAST_PACKET) &&
422                                 !(sp->hdr.flags & RXRPC_CLIENT_INITIATED));
423                         ret = rxrpc_queue_rcv_skb(call, skb, true, terminal);
424                         BUG_ON(ret < 0);
425                         _debug("drain #%u", call->rx_data_post);
426                         call->rx_data_post++;
427
428                         /* find out what the next packet is */
429                         skb = skb_peek(&call->rx_oos_queue);
430                         if (skb)
431                                 call->rx_first_oos = rxrpc_skb(skb)->hdr.seq;
432                         else
433                                 call->rx_first_oos = 0;
434                         _debug("peek %p {%u}", skb, call->rx_first_oos);
435                 }
436         }
437
438         ret = 0;
439 socket_unavailable:
440         spin_unlock_bh(&call->lock);
441         _leave(" = %d", ret);
442         return ret;
443 }
444
445 /*
446  * insert an out of sequence packet into the buffer
447  */
448 static void rxrpc_insert_oos_packet(struct rxrpc_call *call,
449                                     struct sk_buff *skb)
450 {
451         struct rxrpc_skb_priv *sp, *psp;
452         struct sk_buff *p;
453         u32 seq;
454
455         sp = rxrpc_skb(skb);
456         seq = sp->hdr.seq;
457         _enter(",,{%u}", seq);
458
459         skb->destructor = rxrpc_packet_destructor;
460         ASSERTCMP(sp->call, ==, NULL);
461         sp->call = call;
462         rxrpc_get_call(call);
463         atomic_inc(&call->skb_count);
464
465         /* insert into the buffer in sequence order */
466         spin_lock_bh(&call->lock);
467
468         skb_queue_walk(&call->rx_oos_queue, p) {
469                 psp = rxrpc_skb(p);
470                 if (psp->hdr.seq > seq) {
471                         _debug("insert oos #%u before #%u", seq, psp->hdr.seq);
472                         skb_insert(p, skb, &call->rx_oos_queue);
473                         goto inserted;
474                 }
475         }
476
477         _debug("append oos #%u", seq);
478         skb_queue_tail(&call->rx_oos_queue, skb);
479 inserted:
480
481         /* we might now have a new front to the queue */
482         if (call->rx_first_oos == 0 || seq < call->rx_first_oos)
483                 call->rx_first_oos = seq;
484
485         read_lock(&call->state_lock);
486         if (call->state < RXRPC_CALL_COMPLETE &&
487             call->rx_data_post == call->rx_first_oos) {
488                 _debug("drain rx oos now");
489                 set_bit(RXRPC_CALL_EV_DRAIN_RX_OOS, &call->events);
490         }
491         read_unlock(&call->state_lock);
492
493         spin_unlock_bh(&call->lock);
494         _leave(" [stored #%u]", call->rx_first_oos);
495 }
496
497 /*
498  * clear the Tx window on final ACK reception
499  */
500 static void rxrpc_zap_tx_window(struct rxrpc_call *call)
501 {
502         struct rxrpc_skb_priv *sp;
503         struct sk_buff *skb;
504         unsigned long _skb, *acks_window;
505         u8 winsz = call->acks_winsz;
506         int tail;
507
508         acks_window = call->acks_window;
509         call->acks_window = NULL;
510
511         while (CIRC_CNT(call->acks_head, call->acks_tail, winsz) > 0) {
512                 tail = call->acks_tail;
513                 smp_read_barrier_depends();
514                 _skb = acks_window[tail] & ~1;
515                 smp_mb();
516                 call->acks_tail = (call->acks_tail + 1) & (winsz - 1);
517
518                 skb = (struct sk_buff *) _skb;
519                 sp = rxrpc_skb(skb);
520                 _debug("+++ clear Tx %u", sp->hdr.seq);
521                 rxrpc_free_skb(skb);
522         }
523
524         kfree(acks_window);
525 }
526
527 /*
528  * process the extra information that may be appended to an ACK packet
529  */
530 static void rxrpc_extract_ackinfo(struct rxrpc_call *call, struct sk_buff *skb,
531                                   unsigned int latest, int nAcks)
532 {
533         struct rxrpc_ackinfo ackinfo;
534         struct rxrpc_peer *peer;
535         unsigned int mtu;
536
537         if (skb_copy_bits(skb, nAcks + 3, &ackinfo, sizeof(ackinfo)) < 0) {
538                 _leave(" [no ackinfo]");
539                 return;
540         }
541
542         _proto("Rx ACK %%%u Info { rx=%u max=%u rwin=%u jm=%u }",
543                latest,
544                ntohl(ackinfo.rxMTU), ntohl(ackinfo.maxMTU),
545                ntohl(ackinfo.rwind), ntohl(ackinfo.jumbo_max));
546
547         mtu = min(ntohl(ackinfo.rxMTU), ntohl(ackinfo.maxMTU));
548
549         peer = call->conn->params.peer;
550         if (mtu < peer->maxdata) {
551                 spin_lock_bh(&peer->lock);
552                 peer->maxdata = mtu;
553                 peer->mtu = mtu + peer->hdrsize;
554                 spin_unlock_bh(&peer->lock);
555                 _net("Net MTU %u (maxdata %u)", peer->mtu, peer->maxdata);
556         }
557 }
558
559 /*
560  * process packets in the reception queue
561  */
562 static int rxrpc_process_rx_queue(struct rxrpc_call *call,
563                                   u32 *_abort_code)
564 {
565         struct rxrpc_ackpacket ack;
566         struct rxrpc_skb_priv *sp;
567         struct sk_buff *skb;
568         bool post_ACK;
569         int latest;
570         u32 hard, tx;
571
572         _enter("");
573
574 process_further:
575         skb = skb_dequeue(&call->rx_queue);
576         if (!skb)
577                 return -EAGAIN;
578
579         _net("deferred skb %p", skb);
580
581         sp = rxrpc_skb(skb);
582
583         _debug("process %s [st %d]", rxrpc_pkts[sp->hdr.type], call->state);
584
585         post_ACK = false;
586
587         switch (sp->hdr.type) {
588                 /* data packets that wind up here have been received out of
589                  * order, need security processing or are jumbo packets */
590         case RXRPC_PACKET_TYPE_DATA:
591                 _proto("OOSQ DATA %%%u { #%u }", sp->hdr.serial, sp->hdr.seq);
592
593                 /* secured packets must be verified and possibly decrypted */
594                 if (call->conn->security->verify_packet(call, skb,
595                                                         _abort_code) < 0)
596                         goto protocol_error;
597
598                 rxrpc_insert_oos_packet(call, skb);
599                 goto process_further;
600
601                 /* partial ACK to process */
602         case RXRPC_PACKET_TYPE_ACK:
603                 if (skb_copy_bits(skb, 0, &ack, sizeof(ack)) < 0) {
604                         _debug("extraction failure");
605                         goto protocol_error;
606                 }
607                 if (!skb_pull(skb, sizeof(ack)))
608                         BUG();
609
610                 latest = sp->hdr.serial;
611                 hard = ntohl(ack.firstPacket);
612                 tx = atomic_read(&call->sequence);
613
614                 _proto("Rx ACK %%%u { m=%hu f=#%u p=#%u s=%%%u r=%s n=%u }",
615                        latest,
616                        ntohs(ack.maxSkew),
617                        hard,
618                        ntohl(ack.previousPacket),
619                        ntohl(ack.serial),
620                        rxrpc_acks(ack.reason),
621                        ack.nAcks);
622
623                 rxrpc_extract_ackinfo(call, skb, latest, ack.nAcks);
624
625                 if (ack.reason == RXRPC_ACK_PING) {
626                         _proto("Rx ACK %%%u PING Request", latest);
627                         rxrpc_propose_ACK(call, RXRPC_ACK_PING_RESPONSE,
628                                           sp->hdr.serial, true);
629                 }
630
631                 /* discard any out-of-order or duplicate ACKs */
632                 if (latest - call->acks_latest <= 0) {
633                         _debug("discard ACK %d <= %d",
634                                latest, call->acks_latest);
635                         goto discard;
636                 }
637                 call->acks_latest = latest;
638
639                 if (call->state != RXRPC_CALL_CLIENT_SEND_REQUEST &&
640                     call->state != RXRPC_CALL_CLIENT_AWAIT_REPLY &&
641                     call->state != RXRPC_CALL_SERVER_SEND_REPLY &&
642                     call->state != RXRPC_CALL_SERVER_AWAIT_ACK)
643                         goto discard;
644
645                 _debug("Tx=%d H=%u S=%d", tx, call->acks_hard, call->state);
646
647                 if (hard > 0) {
648                         if (hard - 1 > tx) {
649                                 _debug("hard-ACK'd packet %d not transmitted"
650                                        " (%d top)",
651                                        hard - 1, tx);
652                                 goto protocol_error;
653                         }
654
655                         if ((call->state == RXRPC_CALL_CLIENT_AWAIT_REPLY ||
656                              call->state == RXRPC_CALL_SERVER_AWAIT_ACK) &&
657                             hard > tx) {
658                                 call->acks_hard = tx;
659                                 goto all_acked;
660                         }
661
662                         smp_rmb();
663                         rxrpc_rotate_tx_window(call, hard - 1);
664                 }
665
666                 if (ack.nAcks > 0) {
667                         if (hard - 1 + ack.nAcks > tx) {
668                                 _debug("soft-ACK'd packet %d+%d not"
669                                        " transmitted (%d top)",
670                                        hard - 1, ack.nAcks, tx);
671                                 goto protocol_error;
672                         }
673
674                         if (rxrpc_process_soft_ACKs(call, &ack, skb) < 0)
675                                 goto protocol_error;
676                 }
677                 goto discard;
678
679                 /* complete ACK to process */
680         case RXRPC_PACKET_TYPE_ACKALL:
681                 goto all_acked;
682
683                 /* abort and busy are handled elsewhere */
684         case RXRPC_PACKET_TYPE_BUSY:
685         case RXRPC_PACKET_TYPE_ABORT:
686                 BUG();
687
688                 /* connection level events - also handled elsewhere */
689         case RXRPC_PACKET_TYPE_CHALLENGE:
690         case RXRPC_PACKET_TYPE_RESPONSE:
691         case RXRPC_PACKET_TYPE_DEBUG:
692                 BUG();
693         }
694
695         /* if we've had a hard ACK that covers all the packets we've sent, then
696          * that ends that phase of the operation */
697 all_acked:
698         write_lock_bh(&call->state_lock);
699         _debug("ack all %d", call->state);
700
701         switch (call->state) {
702         case RXRPC_CALL_CLIENT_AWAIT_REPLY:
703                 call->state = RXRPC_CALL_CLIENT_RECV_REPLY;
704                 break;
705         case RXRPC_CALL_SERVER_AWAIT_ACK:
706                 _debug("srv complete");
707                 call->state = RXRPC_CALL_COMPLETE;
708                 post_ACK = true;
709                 break;
710         case RXRPC_CALL_CLIENT_SEND_REQUEST:
711         case RXRPC_CALL_SERVER_RECV_REQUEST:
712                 goto protocol_error_unlock; /* can't occur yet */
713         default:
714                 write_unlock_bh(&call->state_lock);
715                 goto discard; /* assume packet left over from earlier phase */
716         }
717
718         write_unlock_bh(&call->state_lock);
719
720         /* if all the packets we sent are hard-ACK'd, then we can discard
721          * whatever we've got left */
722         _debug("clear Tx %d",
723                CIRC_CNT(call->acks_head, call->acks_tail, call->acks_winsz));
724
725         del_timer_sync(&call->resend_timer);
726         clear_bit(RXRPC_CALL_RUN_RTIMER, &call->flags);
727         clear_bit(RXRPC_CALL_EV_RESEND_TIMER, &call->events);
728
729         if (call->acks_window)
730                 rxrpc_zap_tx_window(call);
731
732         if (post_ACK) {
733                 /* post the final ACK message for userspace to pick up */
734                 _debug("post ACK");
735                 skb->mark = RXRPC_SKB_MARK_FINAL_ACK;
736                 sp->call = call;
737                 rxrpc_get_call(call);
738                 atomic_inc(&call->skb_count);
739                 spin_lock_bh(&call->lock);
740                 if (rxrpc_queue_rcv_skb(call, skb, true, true) < 0)
741                         BUG();
742                 spin_unlock_bh(&call->lock);
743                 goto process_further;
744         }
745
746 discard:
747         rxrpc_free_skb(skb);
748         goto process_further;
749
750 protocol_error_unlock:
751         write_unlock_bh(&call->state_lock);
752 protocol_error:
753         rxrpc_free_skb(skb);
754         _leave(" = -EPROTO");
755         return -EPROTO;
756 }
757
758 /*
759  * post a message to the socket Rx queue for recvmsg() to pick up
760  */
761 static int rxrpc_post_message(struct rxrpc_call *call, u32 mark, u32 error,
762                               bool fatal)
763 {
764         struct rxrpc_skb_priv *sp;
765         struct sk_buff *skb;
766         int ret;
767
768         _enter("{%d,%lx},%u,%u,%d",
769                call->debug_id, call->flags, mark, error, fatal);
770
771         /* remove timers and things for fatal messages */
772         if (fatal) {
773                 del_timer_sync(&call->resend_timer);
774                 del_timer_sync(&call->ack_timer);
775                 clear_bit(RXRPC_CALL_RUN_RTIMER, &call->flags);
776         }
777
778         if (mark != RXRPC_SKB_MARK_NEW_CALL &&
779             !test_bit(RXRPC_CALL_HAS_USERID, &call->flags)) {
780                 _leave("[no userid]");
781                 return 0;
782         }
783
784         if (!test_bit(RXRPC_CALL_TERMINAL_MSG, &call->flags)) {
785                 skb = alloc_skb(0, GFP_NOFS);
786                 if (!skb)
787                         return -ENOMEM;
788
789                 rxrpc_new_skb(skb);
790
791                 skb->mark = mark;
792
793                 sp = rxrpc_skb(skb);
794                 memset(sp, 0, sizeof(*sp));
795                 sp->error = error;
796                 sp->call = call;
797                 rxrpc_get_call(call);
798                 atomic_inc(&call->skb_count);
799
800                 spin_lock_bh(&call->lock);
801                 ret = rxrpc_queue_rcv_skb(call, skb, true, fatal);
802                 spin_unlock_bh(&call->lock);
803                 BUG_ON(ret < 0);
804         }
805
806         return 0;
807 }
808
809 /*
810  * handle background processing of incoming call packets and ACK / abort
811  * generation
812  */
813 void rxrpc_process_call(struct work_struct *work)
814 {
815         struct rxrpc_call *call =
816                 container_of(work, struct rxrpc_call, processor);
817         struct rxrpc_wire_header whdr;
818         struct rxrpc_ackpacket ack;
819         struct rxrpc_ackinfo ackinfo;
820         struct msghdr msg;
821         struct kvec iov[5];
822         enum rxrpc_call_event genbit;
823         unsigned long bits;
824         __be32 data, pad;
825         size_t len;
826         int loop, nbit, ioc, ret, mtu;
827         u32 serial, abort_code = RX_PROTOCOL_ERROR;
828         u8 *acks = NULL;
829
830         //printk("\n--------------------\n");
831         _enter("{%d,%s,%lx} [%lu]",
832                call->debug_id, rxrpc_call_states[call->state], call->events,
833                (jiffies - call->creation_jif) / (HZ / 10));
834
835         if (!call->conn)
836                 goto skip_msg_init;
837
838         /* there's a good chance we're going to have to send a message, so set
839          * one up in advance */
840         msg.msg_name    = &call->conn->params.peer->srx.transport;
841         msg.msg_namelen = call->conn->params.peer->srx.transport_len;
842         msg.msg_control = NULL;
843         msg.msg_controllen = 0;
844         msg.msg_flags   = 0;
845
846         whdr.epoch      = htonl(call->conn->proto.epoch);
847         whdr.cid        = htonl(call->cid);
848         whdr.callNumber = htonl(call->call_id);
849         whdr.seq        = 0;
850         whdr.type       = RXRPC_PACKET_TYPE_ACK;
851         whdr.flags      = call->conn->out_clientflag;
852         whdr.userStatus = 0;
853         whdr.securityIndex = call->conn->security_ix;
854         whdr._rsvd      = 0;
855         whdr.serviceId  = htons(call->service_id);
856
857         memset(iov, 0, sizeof(iov));
858         iov[0].iov_base = &whdr;
859         iov[0].iov_len  = sizeof(whdr);
860 skip_msg_init:
861
862         /* deal with events of a final nature */
863         if (test_bit(RXRPC_CALL_EV_RCVD_ERROR, &call->events)) {
864                 enum rxrpc_skb_mark mark;
865                 int error;
866
867                 clear_bit(RXRPC_CALL_EV_CONN_ABORT, &call->events);
868                 clear_bit(RXRPC_CALL_EV_REJECT_BUSY, &call->events);
869                 clear_bit(RXRPC_CALL_EV_ABORT, &call->events);
870
871                 error = call->error_report;
872                 if (error < RXRPC_LOCAL_ERROR_OFFSET) {
873                         mark = RXRPC_SKB_MARK_NET_ERROR;
874                         _debug("post net error %d", error);
875                 } else {
876                         mark = RXRPC_SKB_MARK_LOCAL_ERROR;
877                         error -= RXRPC_LOCAL_ERROR_OFFSET;
878                         _debug("post net local error %d", error);
879                 }
880
881                 if (rxrpc_post_message(call, mark, error, true) < 0)
882                         goto no_mem;
883                 clear_bit(RXRPC_CALL_EV_RCVD_ERROR, &call->events);
884                 goto kill_ACKs;
885         }
886
887         if (test_bit(RXRPC_CALL_EV_CONN_ABORT, &call->events)) {
888                 ASSERTCMP(call->state, >, RXRPC_CALL_COMPLETE);
889
890                 clear_bit(RXRPC_CALL_EV_REJECT_BUSY, &call->events);
891                 clear_bit(RXRPC_CALL_EV_ABORT, &call->events);
892
893                 _debug("post conn abort");
894
895                 if (rxrpc_post_message(call, RXRPC_SKB_MARK_LOCAL_ERROR,
896                                        call->conn->error, true) < 0)
897                         goto no_mem;
898                 clear_bit(RXRPC_CALL_EV_CONN_ABORT, &call->events);
899                 goto kill_ACKs;
900         }
901
902         if (test_bit(RXRPC_CALL_EV_REJECT_BUSY, &call->events)) {
903                 whdr.type = RXRPC_PACKET_TYPE_BUSY;
904                 genbit = RXRPC_CALL_EV_REJECT_BUSY;
905                 goto send_message;
906         }
907
908         if (test_bit(RXRPC_CALL_EV_ABORT, &call->events)) {
909                 ASSERTCMP(call->state, >, RXRPC_CALL_COMPLETE);
910
911                 if (rxrpc_post_message(call, RXRPC_SKB_MARK_LOCAL_ERROR,
912                                        ECONNABORTED, true) < 0)
913                         goto no_mem;
914                 whdr.type = RXRPC_PACKET_TYPE_ABORT;
915                 data = htonl(call->local_abort);
916                 iov[1].iov_base = &data;
917                 iov[1].iov_len = sizeof(data);
918                 genbit = RXRPC_CALL_EV_ABORT;
919                 goto send_message;
920         }
921
922         if (test_bit(RXRPC_CALL_EV_ACK_FINAL, &call->events)) {
923                 genbit = RXRPC_CALL_EV_ACK_FINAL;
924
925                 ack.bufferSpace = htons(8);
926                 ack.maxSkew     = 0;
927                 ack.serial      = 0;
928                 ack.reason      = RXRPC_ACK_IDLE;
929                 ack.nAcks       = 0;
930                 call->ackr_reason = 0;
931
932                 spin_lock_bh(&call->lock);
933                 ack.serial      = htonl(call->ackr_serial);
934                 ack.previousPacket = htonl(call->ackr_prev_seq);
935                 ack.firstPacket = htonl(call->rx_data_eaten + 1);
936                 spin_unlock_bh(&call->lock);
937
938                 pad = 0;
939
940                 iov[1].iov_base = &ack;
941                 iov[1].iov_len  = sizeof(ack);
942                 iov[2].iov_base = &pad;
943                 iov[2].iov_len  = 3;
944                 iov[3].iov_base = &ackinfo;
945                 iov[3].iov_len  = sizeof(ackinfo);
946                 goto send_ACK;
947         }
948
949         if (call->events & ((1 << RXRPC_CALL_EV_RCVD_BUSY) |
950                             (1 << RXRPC_CALL_EV_RCVD_ABORT))
951             ) {
952                 u32 mark;
953
954                 if (test_bit(RXRPC_CALL_EV_RCVD_ABORT, &call->events))
955                         mark = RXRPC_SKB_MARK_REMOTE_ABORT;
956                 else
957                         mark = RXRPC_SKB_MARK_BUSY;
958
959                 _debug("post abort/busy");
960                 rxrpc_clear_tx_window(call);
961                 if (rxrpc_post_message(call, mark, ECONNABORTED, true) < 0)
962                         goto no_mem;
963
964                 clear_bit(RXRPC_CALL_EV_RCVD_BUSY, &call->events);
965                 clear_bit(RXRPC_CALL_EV_RCVD_ABORT, &call->events);
966                 goto kill_ACKs;
967         }
968
969         if (test_and_clear_bit(RXRPC_CALL_EV_RCVD_ACKALL, &call->events)) {
970                 _debug("do implicit ackall");
971                 rxrpc_clear_tx_window(call);
972         }
973
974         if (test_bit(RXRPC_CALL_EV_LIFE_TIMER, &call->events)) {
975                 write_lock_bh(&call->state_lock);
976                 if (call->state <= RXRPC_CALL_COMPLETE) {
977                         call->state = RXRPC_CALL_LOCALLY_ABORTED;
978                         call->local_abort = RX_CALL_TIMEOUT;
979                         set_bit(RXRPC_CALL_EV_ABORT, &call->events);
980                 }
981                 write_unlock_bh(&call->state_lock);
982
983                 _debug("post timeout");
984                 if (rxrpc_post_message(call, RXRPC_SKB_MARK_LOCAL_ERROR,
985                                        ETIME, true) < 0)
986                         goto no_mem;
987
988                 clear_bit(RXRPC_CALL_EV_LIFE_TIMER, &call->events);
989                 goto kill_ACKs;
990         }
991
992         /* deal with assorted inbound messages */
993         if (!skb_queue_empty(&call->rx_queue)) {
994                 switch (rxrpc_process_rx_queue(call, &abort_code)) {
995                 case 0:
996                 case -EAGAIN:
997                         break;
998                 case -ENOMEM:
999                         goto no_mem;
1000                 case -EKEYEXPIRED:
1001                 case -EKEYREJECTED:
1002                 case -EPROTO:
1003                         rxrpc_abort_call(call, abort_code);
1004                         goto kill_ACKs;
1005                 }
1006         }
1007
1008         /* handle resending */
1009         if (test_and_clear_bit(RXRPC_CALL_EV_RESEND_TIMER, &call->events))
1010                 rxrpc_resend_timer(call);
1011         if (test_and_clear_bit(RXRPC_CALL_EV_RESEND, &call->events))
1012                 rxrpc_resend(call);
1013
1014         /* consider sending an ordinary ACK */
1015         if (test_bit(RXRPC_CALL_EV_ACK, &call->events)) {
1016                 _debug("send ACK: window: %d - %d { %lx }",
1017                        call->rx_data_eaten, call->ackr_win_top,
1018                        call->ackr_window[0]);
1019
1020                 if (call->state > RXRPC_CALL_SERVER_ACK_REQUEST &&
1021                     call->ackr_reason != RXRPC_ACK_PING_RESPONSE) {
1022                         /* ACK by sending reply DATA packet in this state */
1023                         clear_bit(RXRPC_CALL_EV_ACK, &call->events);
1024                         goto maybe_reschedule;
1025                 }
1026
1027                 genbit = RXRPC_CALL_EV_ACK;
1028
1029                 acks = kzalloc(call->ackr_win_top - call->rx_data_eaten,
1030                                GFP_NOFS);
1031                 if (!acks)
1032                         goto no_mem;
1033
1034                 //hdr.flags     = RXRPC_SLOW_START_OK;
1035                 ack.bufferSpace = htons(8);
1036                 ack.maxSkew     = 0;
1037
1038                 spin_lock_bh(&call->lock);
1039                 ack.reason      = call->ackr_reason;
1040                 ack.serial      = htonl(call->ackr_serial);
1041                 ack.previousPacket = htonl(call->ackr_prev_seq);
1042                 ack.firstPacket = htonl(call->rx_data_eaten + 1);
1043
1044                 ack.nAcks = 0;
1045                 for (loop = 0; loop < RXRPC_ACKR_WINDOW_ASZ; loop++) {
1046                         nbit = loop * BITS_PER_LONG;
1047                         for (bits = call->ackr_window[loop]; bits; bits >>= 1
1048                              ) {
1049                                 _debug("- l=%d n=%d b=%lx", loop, nbit, bits);
1050                                 if (bits & 1) {
1051                                         acks[nbit] = RXRPC_ACK_TYPE_ACK;
1052                                         ack.nAcks = nbit + 1;
1053                                 }
1054                                 nbit++;
1055                         }
1056                 }
1057                 call->ackr_reason = 0;
1058                 spin_unlock_bh(&call->lock);
1059
1060                 pad = 0;
1061
1062                 iov[1].iov_base = &ack;
1063                 iov[1].iov_len  = sizeof(ack);
1064                 iov[2].iov_base = acks;
1065                 iov[2].iov_len  = ack.nAcks;
1066                 iov[3].iov_base = &pad;
1067                 iov[3].iov_len  = 3;
1068                 iov[4].iov_base = &ackinfo;
1069                 iov[4].iov_len  = sizeof(ackinfo);
1070
1071                 switch (ack.reason) {
1072                 case RXRPC_ACK_REQUESTED:
1073                 case RXRPC_ACK_DUPLICATE:
1074                 case RXRPC_ACK_OUT_OF_SEQUENCE:
1075                 case RXRPC_ACK_EXCEEDS_WINDOW:
1076                 case RXRPC_ACK_NOSPACE:
1077                 case RXRPC_ACK_PING:
1078                 case RXRPC_ACK_PING_RESPONSE:
1079                         goto send_ACK_with_skew;
1080                 case RXRPC_ACK_DELAY:
1081                 case RXRPC_ACK_IDLE:
1082                         goto send_ACK;
1083                 }
1084         }
1085
1086         /* handle completion of security negotiations on an incoming
1087          * connection */
1088         if (test_and_clear_bit(RXRPC_CALL_EV_SECURED, &call->events)) {
1089                 _debug("secured");
1090                 spin_lock_bh(&call->lock);
1091
1092                 if (call->state == RXRPC_CALL_SERVER_SECURING) {
1093                         _debug("securing");
1094                         write_lock(&call->socket->call_lock);
1095                         if (!test_bit(RXRPC_CALL_RELEASED, &call->flags) &&
1096                             !test_bit(RXRPC_CALL_EV_RELEASE, &call->events)) {
1097                                 _debug("not released");
1098                                 call->state = RXRPC_CALL_SERVER_ACCEPTING;
1099                                 list_move_tail(&call->accept_link,
1100                                                &call->socket->acceptq);
1101                         }
1102                         write_unlock(&call->socket->call_lock);
1103                         read_lock(&call->state_lock);
1104                         if (call->state < RXRPC_CALL_COMPLETE)
1105                                 set_bit(RXRPC_CALL_EV_POST_ACCEPT, &call->events);
1106                         read_unlock(&call->state_lock);
1107                 }
1108
1109                 spin_unlock_bh(&call->lock);
1110                 if (!test_bit(RXRPC_CALL_EV_POST_ACCEPT, &call->events))
1111                         goto maybe_reschedule;
1112         }
1113
1114         /* post a notification of an acceptable connection to the app */
1115         if (test_bit(RXRPC_CALL_EV_POST_ACCEPT, &call->events)) {
1116                 _debug("post accept");
1117                 if (rxrpc_post_message(call, RXRPC_SKB_MARK_NEW_CALL,
1118                                        0, false) < 0)
1119                         goto no_mem;
1120                 clear_bit(RXRPC_CALL_EV_POST_ACCEPT, &call->events);
1121                 goto maybe_reschedule;
1122         }
1123
1124         /* handle incoming call acceptance */
1125         if (test_and_clear_bit(RXRPC_CALL_EV_ACCEPTED, &call->events)) {
1126                 _debug("accepted");
1127                 ASSERTCMP(call->rx_data_post, ==, 0);
1128                 call->rx_data_post = 1;
1129                 read_lock_bh(&call->state_lock);
1130                 if (call->state < RXRPC_CALL_COMPLETE)
1131                         set_bit(RXRPC_CALL_EV_DRAIN_RX_OOS, &call->events);
1132                 read_unlock_bh(&call->state_lock);
1133         }
1134
1135         /* drain the out of sequence received packet queue into the packet Rx
1136          * queue */
1137         if (test_and_clear_bit(RXRPC_CALL_EV_DRAIN_RX_OOS, &call->events)) {
1138                 while (call->rx_data_post == call->rx_first_oos)
1139                         if (rxrpc_drain_rx_oos_queue(call) < 0)
1140                                 break;
1141                 goto maybe_reschedule;
1142         }
1143
1144         if (test_bit(RXRPC_CALL_EV_RELEASE, &call->events)) {
1145                 rxrpc_release_call(call);
1146                 clear_bit(RXRPC_CALL_EV_RELEASE, &call->events);
1147         }
1148
1149         /* other events may have been raised since we started checking */
1150         goto maybe_reschedule;
1151
1152 send_ACK_with_skew:
1153         ack.maxSkew = htons(atomic_read(&call->conn->hi_serial) -
1154                             ntohl(ack.serial));
1155 send_ACK:
1156         mtu = call->conn->params.peer->if_mtu;
1157         mtu -= call->conn->params.peer->hdrsize;
1158         ackinfo.maxMTU  = htonl(mtu);
1159         ackinfo.rwind   = htonl(rxrpc_rx_window_size);
1160
1161         /* permit the peer to send us jumbo packets if it wants to */
1162         ackinfo.rxMTU   = htonl(rxrpc_rx_mtu);
1163         ackinfo.jumbo_max = htonl(rxrpc_rx_jumbo_max);
1164
1165         serial = atomic_inc_return(&call->conn->serial);
1166         whdr.serial = htonl(serial);
1167         _proto("Tx ACK %%%u { m=%hu f=#%u p=#%u s=%%%u r=%s n=%u }",
1168                serial,
1169                ntohs(ack.maxSkew),
1170                ntohl(ack.firstPacket),
1171                ntohl(ack.previousPacket),
1172                ntohl(ack.serial),
1173                rxrpc_acks(ack.reason),
1174                ack.nAcks);
1175
1176         del_timer_sync(&call->ack_timer);
1177         if (ack.nAcks > 0)
1178                 set_bit(RXRPC_CALL_TX_SOFT_ACK, &call->flags);
1179         goto send_message_2;
1180
1181 send_message:
1182         _debug("send message");
1183
1184         serial = atomic_inc_return(&call->conn->serial);
1185         whdr.serial = htonl(serial);
1186         _proto("Tx %s %%%u", rxrpc_pkts[whdr.type], serial);
1187 send_message_2:
1188
1189         len = iov[0].iov_len;
1190         ioc = 1;
1191         if (iov[4].iov_len) {
1192                 ioc = 5;
1193                 len += iov[4].iov_len;
1194                 len += iov[3].iov_len;
1195                 len += iov[2].iov_len;
1196                 len += iov[1].iov_len;
1197         } else if (iov[3].iov_len) {
1198                 ioc = 4;
1199                 len += iov[3].iov_len;
1200                 len += iov[2].iov_len;
1201                 len += iov[1].iov_len;
1202         } else if (iov[2].iov_len) {
1203                 ioc = 3;
1204                 len += iov[2].iov_len;
1205                 len += iov[1].iov_len;
1206         } else if (iov[1].iov_len) {
1207                 ioc = 2;
1208                 len += iov[1].iov_len;
1209         }
1210
1211         ret = kernel_sendmsg(call->conn->params.local->socket,
1212                              &msg, iov, ioc, len);
1213         if (ret < 0) {
1214                 _debug("sendmsg failed: %d", ret);
1215                 read_lock_bh(&call->state_lock);
1216                 if (call->state < RXRPC_CALL_DEAD)
1217                         rxrpc_queue_call(call);
1218                 read_unlock_bh(&call->state_lock);
1219                 goto error;
1220         }
1221
1222         switch (genbit) {
1223         case RXRPC_CALL_EV_ABORT:
1224                 clear_bit(genbit, &call->events);
1225                 clear_bit(RXRPC_CALL_EV_RCVD_ABORT, &call->events);
1226                 goto kill_ACKs;
1227
1228         case RXRPC_CALL_EV_ACK_FINAL:
1229                 write_lock_bh(&call->state_lock);
1230                 if (call->state == RXRPC_CALL_CLIENT_FINAL_ACK)
1231                         call->state = RXRPC_CALL_COMPLETE;
1232                 write_unlock_bh(&call->state_lock);
1233                 goto kill_ACKs;
1234
1235         default:
1236                 clear_bit(genbit, &call->events);
1237                 switch (call->state) {
1238                 case RXRPC_CALL_CLIENT_AWAIT_REPLY:
1239                 case RXRPC_CALL_CLIENT_RECV_REPLY:
1240                 case RXRPC_CALL_SERVER_RECV_REQUEST:
1241                 case RXRPC_CALL_SERVER_ACK_REQUEST:
1242                         _debug("start ACK timer");
1243                         rxrpc_propose_ACK(call, RXRPC_ACK_DELAY,
1244                                           call->ackr_serial, false);
1245                 default:
1246                         break;
1247                 }
1248                 goto maybe_reschedule;
1249         }
1250
1251 kill_ACKs:
1252         del_timer_sync(&call->ack_timer);
1253         if (test_and_clear_bit(RXRPC_CALL_EV_ACK_FINAL, &call->events))
1254                 rxrpc_put_call(call);
1255         clear_bit(RXRPC_CALL_EV_ACK, &call->events);
1256
1257 maybe_reschedule:
1258         if (call->events || !skb_queue_empty(&call->rx_queue)) {
1259                 read_lock_bh(&call->state_lock);
1260                 if (call->state < RXRPC_CALL_DEAD)
1261                         rxrpc_queue_call(call);
1262                 read_unlock_bh(&call->state_lock);
1263         }
1264
1265         /* don't leave aborted connections on the accept queue */
1266         if (call->state >= RXRPC_CALL_COMPLETE &&
1267             !list_empty(&call->accept_link)) {
1268                 _debug("X unlinking once-pending call %p { e=%lx f=%lx c=%x }",
1269                        call, call->events, call->flags, call->conn->proto.cid);
1270
1271                 read_lock_bh(&call->state_lock);
1272                 if (!test_bit(RXRPC_CALL_RELEASED, &call->flags) &&
1273                     !test_and_set_bit(RXRPC_CALL_EV_RELEASE, &call->events))
1274                         rxrpc_queue_call(call);
1275                 read_unlock_bh(&call->state_lock);
1276         }
1277
1278 error:
1279         kfree(acks);
1280
1281         /* because we don't want two CPUs both processing the work item for one
1282          * call at the same time, we use a flag to note when it's busy; however
1283          * this means there's a race between clearing the flag and setting the
1284          * work pending bit and the work item being processed again */
1285         if (call->events && !work_pending(&call->processor)) {
1286                 _debug("jumpstart %x", call->conn->proto.cid);
1287                 rxrpc_queue_call(call);
1288         }
1289
1290         _leave("");
1291         return;
1292
1293 no_mem:
1294         _debug("out of memory");
1295         goto maybe_reschedule;
1296 }