1 /* RxRPC individual remote procedure call handling
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
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.
12 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14 #include <linux/slab.h>
15 #include <linux/module.h>
16 #include <linux/circ_buf.h>
17 #include <linux/spinlock_types.h>
19 #include <net/af_rxrpc.h>
20 #include "ar-internal.h"
22 const char *const rxrpc_call_states
[NR__RXRPC_CALL_STATES
] = {
23 [RXRPC_CALL_UNINITIALISED
] = "Uninit ",
24 [RXRPC_CALL_CLIENT_AWAIT_CONN
] = "ClWtConn",
25 [RXRPC_CALL_CLIENT_SEND_REQUEST
] = "ClSndReq",
26 [RXRPC_CALL_CLIENT_AWAIT_REPLY
] = "ClAwtRpl",
27 [RXRPC_CALL_CLIENT_RECV_REPLY
] = "ClRcvRpl",
28 [RXRPC_CALL_SERVER_PREALLOC
] = "SvPrealc",
29 [RXRPC_CALL_SERVER_SECURING
] = "SvSecure",
30 [RXRPC_CALL_SERVER_ACCEPTING
] = "SvAccept",
31 [RXRPC_CALL_SERVER_RECV_REQUEST
] = "SvRcvReq",
32 [RXRPC_CALL_SERVER_ACK_REQUEST
] = "SvAckReq",
33 [RXRPC_CALL_SERVER_SEND_REPLY
] = "SvSndRpl",
34 [RXRPC_CALL_SERVER_AWAIT_ACK
] = "SvAwtACK",
35 [RXRPC_CALL_COMPLETE
] = "Complete",
38 const char *const rxrpc_call_completions
[NR__RXRPC_CALL_COMPLETIONS
] = {
39 [RXRPC_CALL_SUCCEEDED
] = "Complete",
40 [RXRPC_CALL_REMOTELY_ABORTED
] = "RmtAbort",
41 [RXRPC_CALL_LOCALLY_ABORTED
] = "LocAbort",
42 [RXRPC_CALL_LOCAL_ERROR
] = "LocError",
43 [RXRPC_CALL_NETWORK_ERROR
] = "NetError",
46 struct kmem_cache
*rxrpc_call_jar
;
48 static void rxrpc_call_timer_expired(struct timer_list
*t
)
50 struct rxrpc_call
*call
= from_timer(call
, t
, timer
);
52 _enter("%d", call
->debug_id
);
54 if (call
->state
< RXRPC_CALL_COMPLETE
) {
55 trace_rxrpc_timer(call
, rxrpc_timer_expired
, jiffies
);
56 rxrpc_queue_call(call
);
60 static struct lock_class_key rxrpc_call_user_mutex_lock_class_key
;
63 * find an extant server call
64 * - called in process context with IRQs enabled
66 struct rxrpc_call
*rxrpc_find_call_by_user_ID(struct rxrpc_sock
*rx
,
67 unsigned long user_call_ID
)
69 struct rxrpc_call
*call
;
72 _enter("%p,%lx", rx
, user_call_ID
);
74 read_lock(&rx
->call_lock
);
76 p
= rx
->calls
.rb_node
;
78 call
= rb_entry(p
, struct rxrpc_call
, sock_node
);
80 if (user_call_ID
< call
->user_call_ID
)
82 else if (user_call_ID
> call
->user_call_ID
)
85 goto found_extant_call
;
88 read_unlock(&rx
->call_lock
);
93 rxrpc_get_call(call
, rxrpc_call_got
);
94 read_unlock(&rx
->call_lock
);
95 _leave(" = %p [%d]", call
, atomic_read(&call
->usage
));
100 * allocate a new call
102 struct rxrpc_call
*rxrpc_alloc_call(struct rxrpc_sock
*rx
, gfp_t gfp
)
104 struct rxrpc_call
*call
;
106 call
= kmem_cache_zalloc(rxrpc_call_jar
, gfp
);
110 call
->rxtx_buffer
= kcalloc(RXRPC_RXTX_BUFF_SIZE
,
111 sizeof(struct sk_buff
*),
113 if (!call
->rxtx_buffer
)
116 call
->rxtx_annotations
= kcalloc(RXRPC_RXTX_BUFF_SIZE
, sizeof(u8
), gfp
);
117 if (!call
->rxtx_annotations
)
120 mutex_init(&call
->user_mutex
);
122 /* Prevent lockdep reporting a deadlock false positive between the afs
123 * filesystem and sys_sendmsg() via the mmap sem.
125 if (rx
->sk
.sk_kern_sock
)
126 lockdep_set_class(&call
->user_mutex
,
127 &rxrpc_call_user_mutex_lock_class_key
);
129 timer_setup(&call
->timer
, rxrpc_call_timer_expired
, 0);
130 INIT_WORK(&call
->processor
, &rxrpc_process_call
);
131 INIT_LIST_HEAD(&call
->link
);
132 INIT_LIST_HEAD(&call
->chan_wait_link
);
133 INIT_LIST_HEAD(&call
->accept_link
);
134 INIT_LIST_HEAD(&call
->recvmsg_link
);
135 INIT_LIST_HEAD(&call
->sock_link
);
136 init_waitqueue_head(&call
->waitq
);
137 spin_lock_init(&call
->lock
);
138 spin_lock_init(&call
->notify_lock
);
139 rwlock_init(&call
->state_lock
);
140 atomic_set(&call
->usage
, 1);
141 call
->debug_id
= atomic_inc_return(&rxrpc_debug_id
);
142 call
->tx_total_len
= -1;
143 call
->next_rx_timo
= 20 * HZ
;
144 call
->next_req_timo
= 1 * HZ
;
146 memset(&call
->sock_node
, 0xed, sizeof(call
->sock_node
));
148 /* Leave space in the ring to handle a maxed-out jumbo packet */
149 call
->rx_winsize
= rxrpc_rx_window_size
;
150 call
->tx_winsize
= 16;
151 call
->rx_expect_next
= 1;
154 call
->cong_ssthresh
= RXRPC_RXTX_BUFF_SIZE
- 1;
158 kfree(call
->rxtx_buffer
);
160 kmem_cache_free(rxrpc_call_jar
, call
);
165 * Allocate a new client call.
167 static struct rxrpc_call
*rxrpc_alloc_client_call(struct rxrpc_sock
*rx
,
168 struct sockaddr_rxrpc
*srx
,
171 struct rxrpc_call
*call
;
176 call
= rxrpc_alloc_call(rx
, gfp
);
178 return ERR_PTR(-ENOMEM
);
179 call
->state
= RXRPC_CALL_CLIENT_AWAIT_CONN
;
180 call
->service_id
= srx
->srx_service
;
181 call
->tx_phase
= true;
182 now
= ktime_get_real();
183 call
->acks_latest_ts
= now
;
184 call
->cong_tstamp
= now
;
186 _leave(" = %p", call
);
191 * Initiate the call ack/resend/expiry timer.
193 static void rxrpc_start_call_timer(struct rxrpc_call
*call
)
195 unsigned long now
= jiffies
;
196 unsigned long j
= now
+ MAX_JIFFY_OFFSET
;
199 call
->ack_lost_at
= j
;
202 call
->expect_rx_by
= j
;
203 call
->expect_req_by
= j
;
204 call
->expect_term_by
= j
;
205 call
->timer
.expires
= now
;
209 * Set up a call for the given parameters.
210 * - Called with the socket lock held, which it must release.
211 * - If it returns a call, the call's lock will need releasing by the caller.
213 struct rxrpc_call
*rxrpc_new_client_call(struct rxrpc_sock
*rx
,
214 struct rxrpc_conn_parameters
*cp
,
215 struct sockaddr_rxrpc
*srx
,
216 struct rxrpc_call_params
*p
,
218 __releases(&rx
->sk
.sk_lock
.slock
)
220 struct rxrpc_call
*call
, *xcall
;
221 struct rxrpc_net
*rxnet
= rxrpc_net(sock_net(&rx
->sk
));
222 struct rb_node
*parent
, **pp
;
223 const void *here
= __builtin_return_address(0);
226 _enter("%p,%lx", rx
, p
->user_call_ID
);
228 call
= rxrpc_alloc_client_call(rx
, srx
, gfp
);
230 release_sock(&rx
->sk
);
231 _leave(" = %ld", PTR_ERR(call
));
235 call
->tx_total_len
= p
->tx_total_len
;
236 trace_rxrpc_call(call
, rxrpc_call_new_client
, atomic_read(&call
->usage
),
237 here
, (const void *)p
->user_call_ID
);
239 /* We need to protect a partially set up call against the user as we
240 * will be acting outside the socket lock.
242 mutex_lock(&call
->user_mutex
);
244 /* Publish the call, even though it is incompletely set up as yet */
245 write_lock(&rx
->call_lock
);
247 pp
= &rx
->calls
.rb_node
;
251 xcall
= rb_entry(parent
, struct rxrpc_call
, sock_node
);
253 if (p
->user_call_ID
< xcall
->user_call_ID
)
254 pp
= &(*pp
)->rb_left
;
255 else if (p
->user_call_ID
> xcall
->user_call_ID
)
256 pp
= &(*pp
)->rb_right
;
258 goto error_dup_user_ID
;
261 rcu_assign_pointer(call
->socket
, rx
);
262 call
->user_call_ID
= p
->user_call_ID
;
263 __set_bit(RXRPC_CALL_HAS_USERID
, &call
->flags
);
264 rxrpc_get_call(call
, rxrpc_call_got_userid
);
265 rb_link_node(&call
->sock_node
, parent
, pp
);
266 rb_insert_color(&call
->sock_node
, &rx
->calls
);
267 list_add(&call
->sock_link
, &rx
->sock_calls
);
269 write_unlock(&rx
->call_lock
);
271 write_lock(&rxnet
->call_lock
);
272 list_add_tail(&call
->link
, &rxnet
->calls
);
273 write_unlock(&rxnet
->call_lock
);
275 /* From this point on, the call is protected by its own lock. */
276 release_sock(&rx
->sk
);
278 /* Set up or get a connection record and set the protocol parameters,
279 * including channel number and call ID.
281 ret
= rxrpc_connect_call(call
, cp
, srx
, gfp
);
285 trace_rxrpc_call(call
, rxrpc_call_connected
, atomic_read(&call
->usage
),
288 rxrpc_start_call_timer(call
);
290 _net("CALL new %d on CONN %d", call
->debug_id
, call
->conn
->debug_id
);
292 _leave(" = %p [new]", call
);
295 /* We unexpectedly found the user ID in the list after taking
296 * the call_lock. This shouldn't happen unless the user races
297 * with itself and tries to add the same user ID twice at the
298 * same time in different threads.
301 write_unlock(&rx
->call_lock
);
302 release_sock(&rx
->sk
);
306 __rxrpc_set_call_completion(call
, RXRPC_CALL_LOCAL_ERROR
,
308 trace_rxrpc_call(call
, rxrpc_call_error
, atomic_read(&call
->usage
),
310 rxrpc_release_call(rx
, call
);
311 mutex_unlock(&call
->user_mutex
);
312 rxrpc_put_call(call
, rxrpc_call_put
);
313 _leave(" = %d", ret
);
318 * Retry a call to a new address. It is expected that the Tx queue of the call
319 * will contain data previously packaged for an old call.
321 int rxrpc_retry_client_call(struct rxrpc_sock
*rx
,
322 struct rxrpc_call
*call
,
323 struct rxrpc_conn_parameters
*cp
,
324 struct sockaddr_rxrpc
*srx
,
327 const void *here
= __builtin_return_address(0);
330 /* Set up or get a connection record and set the protocol parameters,
331 * including channel number and call ID.
333 ret
= rxrpc_connect_call(call
, cp
, srx
, gfp
);
337 trace_rxrpc_call(call
, rxrpc_call_connected
, atomic_read(&call
->usage
),
340 rxrpc_start_call_timer(call
);
342 _net("CALL new %d on CONN %d", call
->debug_id
, call
->conn
->debug_id
);
344 if (!test_and_set_bit(RXRPC_CALL_EV_RESEND
, &call
->events
))
345 rxrpc_queue_call(call
);
351 rxrpc_set_call_completion(call
, RXRPC_CALL_LOCAL_ERROR
,
353 trace_rxrpc_call(call
, rxrpc_call_error
, atomic_read(&call
->usage
),
355 _leave(" = %d", ret
);
360 * Set up an incoming call. call->conn points to the connection.
361 * This is called in BH context and isn't allowed to fail.
363 void rxrpc_incoming_call(struct rxrpc_sock
*rx
,
364 struct rxrpc_call
*call
,
367 struct rxrpc_connection
*conn
= call
->conn
;
368 struct rxrpc_skb_priv
*sp
= rxrpc_skb(skb
);
371 _enter(",%d", call
->conn
->debug_id
);
373 rcu_assign_pointer(call
->socket
, rx
);
374 call
->call_id
= sp
->hdr
.callNumber
;
375 call
->service_id
= sp
->hdr
.serviceId
;
376 call
->cid
= sp
->hdr
.cid
;
377 call
->state
= RXRPC_CALL_SERVER_ACCEPTING
;
378 if (sp
->hdr
.securityIndex
> 0)
379 call
->state
= RXRPC_CALL_SERVER_SECURING
;
380 call
->cong_tstamp
= skb
->tstamp
;
382 /* Set the channel for this call. We don't get channel_lock as we're
383 * only defending against the data_ready handler (which we're called
384 * from) and the RESPONSE packet parser (which is only really
385 * interested in call_counter and can cope with a disagreement with the
388 chan
= sp
->hdr
.cid
& RXRPC_CHANNELMASK
;
389 conn
->channels
[chan
].call_counter
= call
->call_id
;
390 conn
->channels
[chan
].call_id
= call
->call_id
;
391 rcu_assign_pointer(conn
->channels
[chan
].call
, call
);
393 spin_lock(&conn
->params
.peer
->lock
);
394 hlist_add_head(&call
->error_link
, &conn
->params
.peer
->error_targets
);
395 spin_unlock(&conn
->params
.peer
->lock
);
397 _net("CALL incoming %d on CONN %d", call
->debug_id
, call
->conn
->debug_id
);
399 rxrpc_start_call_timer(call
);
404 * Queue a call's work processor, getting a ref to pass to the work queue.
406 bool rxrpc_queue_call(struct rxrpc_call
*call
)
408 const void *here
= __builtin_return_address(0);
409 int n
= __atomic_add_unless(&call
->usage
, 1, 0);
412 if (rxrpc_queue_work(&call
->processor
))
413 trace_rxrpc_call(call
, rxrpc_call_queued
, n
+ 1, here
, NULL
);
415 rxrpc_put_call(call
, rxrpc_call_put_noqueue
);
420 * Queue a call's work processor, passing the callers ref to the work queue.
422 bool __rxrpc_queue_call(struct rxrpc_call
*call
)
424 const void *here
= __builtin_return_address(0);
425 int n
= atomic_read(&call
->usage
);
427 if (rxrpc_queue_work(&call
->processor
))
428 trace_rxrpc_call(call
, rxrpc_call_queued_ref
, n
, here
, NULL
);
430 rxrpc_put_call(call
, rxrpc_call_put_noqueue
);
435 * Note the re-emergence of a call.
437 void rxrpc_see_call(struct rxrpc_call
*call
)
439 const void *here
= __builtin_return_address(0);
441 int n
= atomic_read(&call
->usage
);
443 trace_rxrpc_call(call
, rxrpc_call_seen
, n
, here
, NULL
);
448 * Note the addition of a ref on a call.
450 void rxrpc_get_call(struct rxrpc_call
*call
, enum rxrpc_call_trace op
)
452 const void *here
= __builtin_return_address(0);
453 int n
= atomic_inc_return(&call
->usage
);
455 trace_rxrpc_call(call
, op
, n
, here
, NULL
);
459 * Detach a call from its owning socket.
461 void rxrpc_release_call(struct rxrpc_sock
*rx
, struct rxrpc_call
*call
)
463 const void *here
= __builtin_return_address(0);
464 struct rxrpc_connection
*conn
= call
->conn
;
468 _enter("{%d,%d}", call
->debug_id
, atomic_read(&call
->usage
));
470 trace_rxrpc_call(call
, rxrpc_call_release
, atomic_read(&call
->usage
),
471 here
, (const void *)call
->flags
);
473 ASSERTCMP(call
->state
, ==, RXRPC_CALL_COMPLETE
);
475 spin_lock_bh(&call
->lock
);
476 if (test_and_set_bit(RXRPC_CALL_RELEASED
, &call
->flags
))
478 spin_unlock_bh(&call
->lock
);
480 del_timer_sync(&call
->timer
);
482 /* Make sure we don't get any more notifications */
483 write_lock_bh(&rx
->recvmsg_lock
);
485 if (!list_empty(&call
->recvmsg_link
)) {
486 _debug("unlinking once-pending call %p { e=%lx f=%lx }",
487 call
, call
->events
, call
->flags
);
488 list_del(&call
->recvmsg_link
);
492 /* list_empty() must return false in rxrpc_notify_socket() */
493 call
->recvmsg_link
.next
= NULL
;
494 call
->recvmsg_link
.prev
= NULL
;
496 write_unlock_bh(&rx
->recvmsg_lock
);
498 rxrpc_put_call(call
, rxrpc_call_put
);
500 write_lock(&rx
->call_lock
);
502 if (test_and_clear_bit(RXRPC_CALL_HAS_USERID
, &call
->flags
)) {
503 rb_erase(&call
->sock_node
, &rx
->calls
);
504 memset(&call
->sock_node
, 0xdd, sizeof(call
->sock_node
));
505 rxrpc_put_call(call
, rxrpc_call_put_userid
);
508 list_del(&call
->sock_link
);
509 write_unlock(&rx
->call_lock
);
511 _debug("RELEASE CALL %p (%d CONN %p)", call
, call
->debug_id
, conn
);
514 rxrpc_disconnect_call(call
);
516 for (i
= 0; i
< RXRPC_RXTX_BUFF_SIZE
; i
++) {
517 rxrpc_free_skb(call
->rxtx_buffer
[i
],
518 (call
->tx_phase
? rxrpc_skb_tx_cleaned
:
519 rxrpc_skb_rx_cleaned
));
520 call
->rxtx_buffer
[i
] = NULL
;
527 * Prepare a kernel service call for retry.
529 int rxrpc_prepare_call_for_retry(struct rxrpc_sock
*rx
, struct rxrpc_call
*call
)
531 const void *here
= __builtin_return_address(0);
535 _enter("{%d,%d}", call
->debug_id
, atomic_read(&call
->usage
));
537 trace_rxrpc_call(call
, rxrpc_call_release
, atomic_read(&call
->usage
),
538 here
, (const void *)call
->flags
);
540 ASSERTCMP(call
->state
, ==, RXRPC_CALL_COMPLETE
);
541 ASSERTCMP(call
->completion
, !=, RXRPC_CALL_REMOTELY_ABORTED
);
542 ASSERTCMP(call
->completion
, !=, RXRPC_CALL_LOCALLY_ABORTED
);
543 ASSERT(list_empty(&call
->recvmsg_link
));
545 del_timer_sync(&call
->timer
);
547 _debug("RELEASE CALL %p (%d CONN %p)", call
, call
->debug_id
, call
->conn
);
550 rxrpc_disconnect_call(call
);
552 if (rxrpc_is_service_call(call
) ||
554 call
->tx_hard_ack
!= 0 ||
555 call
->rx_hard_ack
!= 0 ||
559 call
->state
= RXRPC_CALL_UNINITIALISED
;
560 call
->completion
= RXRPC_CALL_SUCCEEDED
;
564 call
->cong_extra
= 0;
565 call
->cong_ssthresh
= 0;
567 call
->cong_dup_acks
= 0;
568 call
->cong_cumul_acks
= 0;
569 call
->acks_lowest_nak
= 0;
571 for (i
= 0; i
< RXRPC_RXTX_BUFF_SIZE
; i
++) {
572 last
|= call
->rxtx_annotations
[i
];
573 call
->rxtx_annotations
[i
] &= RXRPC_TX_ANNO_LAST
;
574 call
->rxtx_annotations
[i
] |= RXRPC_TX_ANNO_RETRANS
;
582 * release all the calls associated with a socket
584 void rxrpc_release_calls_on_socket(struct rxrpc_sock
*rx
)
586 struct rxrpc_call
*call
;
590 while (!list_empty(&rx
->to_be_accepted
)) {
591 call
= list_entry(rx
->to_be_accepted
.next
,
592 struct rxrpc_call
, accept_link
);
593 list_del(&call
->accept_link
);
594 rxrpc_abort_call("SKR", call
, 0, RX_CALL_DEAD
, -ECONNRESET
);
595 rxrpc_put_call(call
, rxrpc_call_put
);
598 while (!list_empty(&rx
->sock_calls
)) {
599 call
= list_entry(rx
->sock_calls
.next
,
600 struct rxrpc_call
, sock_link
);
601 rxrpc_get_call(call
, rxrpc_call_got
);
602 rxrpc_abort_call("SKT", call
, 0, RX_CALL_DEAD
, -ECONNRESET
);
603 rxrpc_send_abort_packet(call
);
604 rxrpc_release_call(rx
, call
);
605 rxrpc_put_call(call
, rxrpc_call_put
);
614 void rxrpc_put_call(struct rxrpc_call
*call
, enum rxrpc_call_trace op
)
616 struct rxrpc_net
*rxnet
;
617 const void *here
= __builtin_return_address(0);
620 ASSERT(call
!= NULL
);
622 n
= atomic_dec_return(&call
->usage
);
623 trace_rxrpc_call(call
, op
, n
, here
, NULL
);
626 _debug("call %d dead", call
->debug_id
);
627 ASSERTCMP(call
->state
, ==, RXRPC_CALL_COMPLETE
);
629 if (!list_empty(&call
->link
)) {
630 rxnet
= rxrpc_net(sock_net(&call
->socket
->sk
));
631 write_lock(&rxnet
->call_lock
);
632 list_del_init(&call
->link
);
633 write_unlock(&rxnet
->call_lock
);
636 rxrpc_cleanup_call(call
);
641 * Final call destruction under RCU.
643 static void rxrpc_rcu_destroy_call(struct rcu_head
*rcu
)
645 struct rxrpc_call
*call
= container_of(rcu
, struct rxrpc_call
, rcu
);
647 rxrpc_put_peer(call
->peer
);
648 kfree(call
->rxtx_buffer
);
649 kfree(call
->rxtx_annotations
);
650 kmem_cache_free(rxrpc_call_jar
, call
);
656 void rxrpc_cleanup_call(struct rxrpc_call
*call
)
660 _net("DESTROY CALL %d", call
->debug_id
);
662 memset(&call
->sock_node
, 0xcd, sizeof(call
->sock_node
));
664 del_timer_sync(&call
->timer
);
666 ASSERTCMP(call
->state
, ==, RXRPC_CALL_COMPLETE
);
667 ASSERT(test_bit(RXRPC_CALL_RELEASED
, &call
->flags
));
668 ASSERTCMP(call
->conn
, ==, NULL
);
670 /* Clean up the Rx/Tx buffer */
671 for (i
= 0; i
< RXRPC_RXTX_BUFF_SIZE
; i
++)
672 rxrpc_free_skb(call
->rxtx_buffer
[i
],
673 (call
->tx_phase
? rxrpc_skb_tx_cleaned
:
674 rxrpc_skb_rx_cleaned
));
676 rxrpc_free_skb(call
->tx_pending
, rxrpc_skb_tx_cleaned
);
678 call_rcu(&call
->rcu
, rxrpc_rcu_destroy_call
);
682 * Make sure that all calls are gone from a network namespace. To reach this
683 * point, any open UDP sockets in that namespace must have been closed, so any
684 * outstanding calls cannot be doing I/O.
686 void rxrpc_destroy_all_calls(struct rxrpc_net
*rxnet
)
688 struct rxrpc_call
*call
;
692 if (list_empty(&rxnet
->calls
))
695 write_lock(&rxnet
->call_lock
);
697 while (!list_empty(&rxnet
->calls
)) {
698 call
= list_entry(rxnet
->calls
.next
, struct rxrpc_call
, link
);
699 _debug("Zapping call %p", call
);
701 rxrpc_see_call(call
);
702 list_del_init(&call
->link
);
704 pr_err("Call %p still in use (%d,%s,%lx,%lx)!\n",
705 call
, atomic_read(&call
->usage
),
706 rxrpc_call_states
[call
->state
],
707 call
->flags
, call
->events
);
709 write_unlock(&rxnet
->call_lock
);
711 write_lock(&rxnet
->call_lock
);
714 write_unlock(&rxnet
->call_lock
);