]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/sunrpc/xprt.c
SUNRPC: prevent task_cleanup running on freed xprt
[net-next-2.6.git] / net / sunrpc / xprt.c
CommitLineData
1da177e4
LT
1/*
2 * linux/net/sunrpc/xprt.c
3 *
4 * This is a generic RPC call interface supporting congestion avoidance,
5 * and asynchronous calls.
6 *
7 * The interface works like this:
8 *
9 * - When a process places a call, it allocates a request slot if
10 * one is available. Otherwise, it sleeps on the backlog queue
11 * (xprt_reserve).
12 * - Next, the caller puts together the RPC message, stuffs it into
55aa4f58
CL
13 * the request struct, and calls xprt_transmit().
14 * - xprt_transmit sends the message and installs the caller on the
55ae1aab
RL
15 * transport's wait list. At the same time, if a reply is expected,
16 * it installs a timer that is run after the packet's timeout has
17 * expired.
1da177e4 18 * - When a packet arrives, the data_ready handler walks the list of
55aa4f58 19 * pending requests for that transport. If a matching XID is found, the
1da177e4
LT
20 * caller is woken up, and the timer removed.
21 * - When no reply arrives within the timeout interval, the timer is
22 * fired by the kernel and runs xprt_timer(). It either adjusts the
23 * timeout values (minor timeout) or wakes up the caller with a status
24 * of -ETIMEDOUT.
25 * - When the caller receives a notification from RPC that a reply arrived,
26 * it should release the RPC slot, and process the reply.
27 * If the call timed out, it may choose to retry the operation by
28 * adjusting the initial timeout value, and simply calling rpc_call
29 * again.
30 *
31 * Support for async RPC is done through a set of RPC-specific scheduling
32 * primitives that `transparently' work for processes as well as async
33 * tasks that rely on callbacks.
34 *
35 * Copyright (C) 1995-1997, Olaf Kirch <okir@monad.swb.de>
55aa4f58
CL
36 *
37 * Transport switch API copyright (C) 2005, Chuck Lever <cel@netapp.com>
1da177e4
LT
38 */
39
a246b010
CL
40#include <linux/module.h>
41
1da177e4 42#include <linux/types.h>
a246b010 43#include <linux/interrupt.h>
1da177e4 44#include <linux/workqueue.h>
bf3fcf89 45#include <linux/net.h>
ff839970 46#include <linux/ktime.h>
1da177e4 47
a246b010 48#include <linux/sunrpc/clnt.h>
11c556b3 49#include <linux/sunrpc/metrics.h>
c9acb42e 50#include <linux/sunrpc/bc_xprt.h>
1da177e4 51
55ae1aab
RL
52#include "sunrpc.h"
53
1da177e4
LT
54/*
55 * Local variables
56 */
57
58#ifdef RPC_DEBUG
1da177e4
LT
59# define RPCDBG_FACILITY RPCDBG_XPRT
60#endif
61
1da177e4
LT
62/*
63 * Local functions
64 */
65static void xprt_request_init(struct rpc_task *, struct rpc_xprt *);
1da177e4 66static void xprt_connect_status(struct rpc_task *task);
1da177e4
LT
67static int __xprt_get_cong(struct rpc_xprt *, struct rpc_task *);
68
5ba03e82 69static DEFINE_SPINLOCK(xprt_list_lock);
81c098af
TT
70static LIST_HEAD(xprt_list);
71
555ee3af
CL
72/*
73 * The transport code maintains an estimate on the maximum number of out-
74 * standing RPC requests, using a smoothed version of the congestion
75 * avoidance implemented in 44BSD. This is basically the Van Jacobson
76 * congestion algorithm: If a retransmit occurs, the congestion window is
77 * halved; otherwise, it is incremented by 1/cwnd when
78 *
79 * - a reply is received and
80 * - a full number of requests are outstanding and
81 * - the congestion window hasn't been updated recently.
82 */
83#define RPC_CWNDSHIFT (8U)
84#define RPC_CWNDSCALE (1U << RPC_CWNDSHIFT)
85#define RPC_INITCWND RPC_CWNDSCALE
86#define RPC_MAXCWND(xprt) ((xprt)->max_reqs << RPC_CWNDSHIFT)
87
88#define RPCXPRT_CONGESTED(xprt) ((xprt)->cong >= (xprt)->cwnd)
1da177e4 89
81c098af
TT
90/**
91 * xprt_register_transport - register a transport implementation
92 * @transport: transport to register
93 *
94 * If a transport implementation is loaded as a kernel module, it can
95 * call this interface to make itself known to the RPC client.
96 *
97 * Returns:
98 * 0: transport successfully registered
99 * -EEXIST: transport already registered
100 * -EINVAL: transport module being unloaded
101 */
102int xprt_register_transport(struct xprt_class *transport)
103{
104 struct xprt_class *t;
105 int result;
106
107 result = -EEXIST;
108 spin_lock(&xprt_list_lock);
109 list_for_each_entry(t, &xprt_list, list) {
110 /* don't register the same transport class twice */
4fa016eb 111 if (t->ident == transport->ident)
81c098af
TT
112 goto out;
113 }
114
c9f6cde6
DL
115 list_add_tail(&transport->list, &xprt_list);
116 printk(KERN_INFO "RPC: Registered %s transport module.\n",
117 transport->name);
118 result = 0;
81c098af
TT
119
120out:
121 spin_unlock(&xprt_list_lock);
122 return result;
123}
124EXPORT_SYMBOL_GPL(xprt_register_transport);
125
126/**
127 * xprt_unregister_transport - unregister a transport implementation
65b6e42c 128 * @transport: transport to unregister
81c098af
TT
129 *
130 * Returns:
131 * 0: transport successfully unregistered
132 * -ENOENT: transport never registered
133 */
134int xprt_unregister_transport(struct xprt_class *transport)
135{
136 struct xprt_class *t;
137 int result;
138
139 result = 0;
140 spin_lock(&xprt_list_lock);
141 list_for_each_entry(t, &xprt_list, list) {
142 if (t == transport) {
143 printk(KERN_INFO
144 "RPC: Unregistered %s transport module.\n",
145 transport->name);
146 list_del_init(&transport->list);
81c098af
TT
147 goto out;
148 }
149 }
150 result = -ENOENT;
151
152out:
153 spin_unlock(&xprt_list_lock);
154 return result;
155}
156EXPORT_SYMBOL_GPL(xprt_unregister_transport);
157
441e3e24
TT
158/**
159 * xprt_load_transport - load a transport implementation
160 * @transport_name: transport to load
161 *
162 * Returns:
163 * 0: transport successfully loaded
164 * -ENOENT: transport module not available
165 */
166int xprt_load_transport(const char *transport_name)
167{
168 struct xprt_class *t;
441e3e24
TT
169 int result;
170
171 result = 0;
172 spin_lock(&xprt_list_lock);
173 list_for_each_entry(t, &xprt_list, list) {
174 if (strcmp(t->name, transport_name) == 0) {
175 spin_unlock(&xprt_list_lock);
176 goto out;
177 }
178 }
179 spin_unlock(&xprt_list_lock);
ef7ffe8f 180 result = request_module("xprt%s", transport_name);
441e3e24
TT
181out:
182 return result;
183}
184EXPORT_SYMBOL_GPL(xprt_load_transport);
185
12a80469
CL
186/**
187 * xprt_reserve_xprt - serialize write access to transports
188 * @task: task that is requesting access to the transport
189 *
190 * This prevents mixing the payload of separate requests, and prevents
191 * transport connects from colliding with writes. No congestion control
192 * is provided.
193 */
194int xprt_reserve_xprt(struct rpc_task *task)
195{
12a80469 196 struct rpc_rqst *req = task->tk_rqstp;
343952fa 197 struct rpc_xprt *xprt = req->rq_xprt;
12a80469
CL
198
199 if (test_and_set_bit(XPRT_LOCKED, &xprt->state)) {
200 if (task == xprt->snd_task)
201 return 1;
202 if (task == NULL)
203 return 0;
204 goto out_sleep;
205 }
206 xprt->snd_task = task;
207 if (req) {
208 req->rq_bytes_sent = 0;
209 req->rq_ntrans++;
210 }
211 return 1;
212
213out_sleep:
46121cf7 214 dprintk("RPC: %5u failed to lock transport %p\n",
12a80469
CL
215 task->tk_pid, xprt);
216 task->tk_timeout = 0;
217 task->tk_status = -EAGAIN;
218 if (req && req->rq_ntrans)
5d00837b 219 rpc_sleep_on(&xprt->resend, task, NULL);
12a80469 220 else
5d00837b 221 rpc_sleep_on(&xprt->sending, task, NULL);
12a80469
CL
222 return 0;
223}
12444809 224EXPORT_SYMBOL_GPL(xprt_reserve_xprt);
12a80469 225
632e3bdc
TM
226static void xprt_clear_locked(struct rpc_xprt *xprt)
227{
228 xprt->snd_task = NULL;
229 if (!test_bit(XPRT_CLOSE_WAIT, &xprt->state) || xprt->shutdown) {
230 smp_mb__before_clear_bit();
231 clear_bit(XPRT_LOCKED, &xprt->state);
232 smp_mb__after_clear_bit();
233 } else
c1384c9c 234 queue_work(rpciod_workqueue, &xprt->task_cleanup);
632e3bdc
TM
235}
236
1da177e4 237/*
12a80469
CL
238 * xprt_reserve_xprt_cong - serialize write access to transports
239 * @task: task that is requesting access to the transport
240 *
241 * Same as xprt_reserve_xprt, but Van Jacobson congestion control is
242 * integrated into the decision of whether a request is allowed to be
243 * woken up and given access to the transport.
1da177e4 244 */
12a80469 245int xprt_reserve_xprt_cong(struct rpc_task *task)
1da177e4 246{
12a80469 247 struct rpc_xprt *xprt = task->tk_xprt;
1da177e4
LT
248 struct rpc_rqst *req = task->tk_rqstp;
249
2226feb6 250 if (test_and_set_bit(XPRT_LOCKED, &xprt->state)) {
1da177e4
LT
251 if (task == xprt->snd_task)
252 return 1;
1da177e4
LT
253 goto out_sleep;
254 }
12a80469 255 if (__xprt_get_cong(xprt, task)) {
1da177e4
LT
256 xprt->snd_task = task;
257 if (req) {
258 req->rq_bytes_sent = 0;
259 req->rq_ntrans++;
260 }
261 return 1;
262 }
632e3bdc 263 xprt_clear_locked(xprt);
1da177e4 264out_sleep:
46121cf7 265 dprintk("RPC: %5u failed to lock transport %p\n", task->tk_pid, xprt);
1da177e4
LT
266 task->tk_timeout = 0;
267 task->tk_status = -EAGAIN;
268 if (req && req->rq_ntrans)
5d00837b 269 rpc_sleep_on(&xprt->resend, task, NULL);
1da177e4 270 else
5d00837b 271 rpc_sleep_on(&xprt->sending, task, NULL);
1da177e4
LT
272 return 0;
273}
12444809 274EXPORT_SYMBOL_GPL(xprt_reserve_xprt_cong);
1da177e4 275
12a80469 276static inline int xprt_lock_write(struct rpc_xprt *xprt, struct rpc_task *task)
1da177e4
LT
277{
278 int retval;
279
4a0f8c04 280 spin_lock_bh(&xprt->transport_lock);
12a80469 281 retval = xprt->ops->reserve_xprt(task);
4a0f8c04 282 spin_unlock_bh(&xprt->transport_lock);
1da177e4
LT
283 return retval;
284}
285
12a80469 286static void __xprt_lock_write_next(struct rpc_xprt *xprt)
49e9a890
CL
287{
288 struct rpc_task *task;
289 struct rpc_rqst *req;
290
291 if (test_and_set_bit(XPRT_LOCKED, &xprt->state))
292 return;
293
294 task = rpc_wake_up_next(&xprt->resend);
295 if (!task) {
296 task = rpc_wake_up_next(&xprt->sending);
297 if (!task)
298 goto out_unlock;
299 }
300
301 req = task->tk_rqstp;
302 xprt->snd_task = task;
303 if (req) {
304 req->rq_bytes_sent = 0;
305 req->rq_ntrans++;
306 }
307 return;
308
309out_unlock:
632e3bdc 310 xprt_clear_locked(xprt);
49e9a890
CL
311}
312
313static void __xprt_lock_write_next_cong(struct rpc_xprt *xprt)
1da177e4
LT
314{
315 struct rpc_task *task;
316
2226feb6 317 if (test_and_set_bit(XPRT_LOCKED, &xprt->state))
1da177e4 318 return;
49e9a890 319 if (RPCXPRT_CONGESTED(xprt))
1da177e4
LT
320 goto out_unlock;
321 task = rpc_wake_up_next(&xprt->resend);
322 if (!task) {
323 task = rpc_wake_up_next(&xprt->sending);
324 if (!task)
325 goto out_unlock;
326 }
49e9a890 327 if (__xprt_get_cong(xprt, task)) {
1da177e4
LT
328 struct rpc_rqst *req = task->tk_rqstp;
329 xprt->snd_task = task;
330 if (req) {
331 req->rq_bytes_sent = 0;
332 req->rq_ntrans++;
333 }
334 return;
335 }
336out_unlock:
632e3bdc 337 xprt_clear_locked(xprt);
1da177e4
LT
338}
339
49e9a890
CL
340/**
341 * xprt_release_xprt - allow other requests to use a transport
342 * @xprt: transport with other tasks potentially waiting
343 * @task: task that is releasing access to the transport
344 *
345 * Note that "task" can be NULL. No congestion control is provided.
1da177e4 346 */
49e9a890 347void xprt_release_xprt(struct rpc_xprt *xprt, struct rpc_task *task)
1da177e4
LT
348{
349 if (xprt->snd_task == task) {
632e3bdc 350 xprt_clear_locked(xprt);
1da177e4
LT
351 __xprt_lock_write_next(xprt);
352 }
353}
12444809 354EXPORT_SYMBOL_GPL(xprt_release_xprt);
1da177e4 355
49e9a890
CL
356/**
357 * xprt_release_xprt_cong - allow other requests to use a transport
358 * @xprt: transport with other tasks potentially waiting
359 * @task: task that is releasing access to the transport
360 *
361 * Note that "task" can be NULL. Another task is awoken to use the
362 * transport if the transport's congestion window allows it.
363 */
364void xprt_release_xprt_cong(struct rpc_xprt *xprt, struct rpc_task *task)
365{
366 if (xprt->snd_task == task) {
632e3bdc 367 xprt_clear_locked(xprt);
49e9a890
CL
368 __xprt_lock_write_next_cong(xprt);
369 }
370}
12444809 371EXPORT_SYMBOL_GPL(xprt_release_xprt_cong);
49e9a890
CL
372
373static inline void xprt_release_write(struct rpc_xprt *xprt, struct rpc_task *task)
1da177e4 374{
4a0f8c04 375 spin_lock_bh(&xprt->transport_lock);
49e9a890 376 xprt->ops->release_xprt(xprt, task);
4a0f8c04 377 spin_unlock_bh(&xprt->transport_lock);
1da177e4
LT
378}
379
1da177e4
LT
380/*
381 * Van Jacobson congestion avoidance. Check if the congestion window
382 * overflowed. Put the task to sleep if this is the case.
383 */
384static int
385__xprt_get_cong(struct rpc_xprt *xprt, struct rpc_task *task)
386{
387 struct rpc_rqst *req = task->tk_rqstp;
388
389 if (req->rq_cong)
390 return 1;
46121cf7 391 dprintk("RPC: %5u xprt_cwnd_limited cong = %lu cwnd = %lu\n",
1da177e4
LT
392 task->tk_pid, xprt->cong, xprt->cwnd);
393 if (RPCXPRT_CONGESTED(xprt))
394 return 0;
395 req->rq_cong = 1;
396 xprt->cong += RPC_CWNDSCALE;
397 return 1;
398}
399
400/*
401 * Adjust the congestion window, and wake up the next task
402 * that has been sleeping due to congestion
403 */
404static void
405__xprt_put_cong(struct rpc_xprt *xprt, struct rpc_rqst *req)
406{
407 if (!req->rq_cong)
408 return;
409 req->rq_cong = 0;
410 xprt->cong -= RPC_CWNDSCALE;
49e9a890 411 __xprt_lock_write_next_cong(xprt);
1da177e4
LT
412}
413
a58dd398
CL
414/**
415 * xprt_release_rqst_cong - housekeeping when request is complete
416 * @task: RPC request that recently completed
417 *
418 * Useful for transports that require congestion control.
419 */
420void xprt_release_rqst_cong(struct rpc_task *task)
421{
422 __xprt_put_cong(task->tk_xprt, task->tk_rqstp);
423}
12444809 424EXPORT_SYMBOL_GPL(xprt_release_rqst_cong);
a58dd398 425
46c0ee8b
CL
426/**
427 * xprt_adjust_cwnd - adjust transport congestion window
428 * @task: recently completed RPC request used to adjust window
429 * @result: result code of completed RPC request
430 *
1da177e4
LT
431 * We use a time-smoothed congestion estimator to avoid heavy oscillation.
432 */
46c0ee8b 433void xprt_adjust_cwnd(struct rpc_task *task, int result)
1da177e4 434{
46c0ee8b
CL
435 struct rpc_rqst *req = task->tk_rqstp;
436 struct rpc_xprt *xprt = task->tk_xprt;
437 unsigned long cwnd = xprt->cwnd;
1da177e4 438
1da177e4
LT
439 if (result >= 0 && cwnd <= xprt->cong) {
440 /* The (cwnd >> 1) term makes sure
441 * the result gets rounded properly. */
442 cwnd += (RPC_CWNDSCALE * RPC_CWNDSCALE + (cwnd >> 1)) / cwnd;
443 if (cwnd > RPC_MAXCWND(xprt))
444 cwnd = RPC_MAXCWND(xprt);
49e9a890 445 __xprt_lock_write_next_cong(xprt);
1da177e4
LT
446 } else if (result == -ETIMEDOUT) {
447 cwnd >>= 1;
448 if (cwnd < RPC_CWNDSCALE)
449 cwnd = RPC_CWNDSCALE;
450 }
46121cf7 451 dprintk("RPC: cong %ld, cwnd was %ld, now %ld\n",
1da177e4
LT
452 xprt->cong, xprt->cwnd, cwnd);
453 xprt->cwnd = cwnd;
46c0ee8b 454 __xprt_put_cong(xprt, req);
1da177e4 455}
12444809 456EXPORT_SYMBOL_GPL(xprt_adjust_cwnd);
1da177e4 457
44fbac22
CL
458/**
459 * xprt_wake_pending_tasks - wake all tasks on a transport's pending queue
460 * @xprt: transport with waiting tasks
461 * @status: result code to plant in each task before waking it
462 *
463 */
464void xprt_wake_pending_tasks(struct rpc_xprt *xprt, int status)
465{
466 if (status < 0)
467 rpc_wake_up_status(&xprt->pending, status);
468 else
469 rpc_wake_up(&xprt->pending);
470}
12444809 471EXPORT_SYMBOL_GPL(xprt_wake_pending_tasks);
44fbac22 472
c7b2cae8
CL
473/**
474 * xprt_wait_for_buffer_space - wait for transport output buffer to clear
475 * @task: task to be put to sleep
0b80ae42 476 * @action: function pointer to be executed after wait
c7b2cae8 477 */
b6ddf64f 478void xprt_wait_for_buffer_space(struct rpc_task *task, rpc_action action)
c7b2cae8
CL
479{
480 struct rpc_rqst *req = task->tk_rqstp;
481 struct rpc_xprt *xprt = req->rq_xprt;
482
483 task->tk_timeout = req->rq_timeout;
b6ddf64f 484 rpc_sleep_on(&xprt->pending, task, action);
c7b2cae8 485}
12444809 486EXPORT_SYMBOL_GPL(xprt_wait_for_buffer_space);
c7b2cae8
CL
487
488/**
489 * xprt_write_space - wake the task waiting for transport output buffer space
490 * @xprt: transport with waiting tasks
491 *
492 * Can be called in a soft IRQ context, so xprt_write_space never sleeps.
493 */
494void xprt_write_space(struct rpc_xprt *xprt)
495{
496 if (unlikely(xprt->shutdown))
497 return;
498
499 spin_lock_bh(&xprt->transport_lock);
500 if (xprt->snd_task) {
46121cf7
CL
501 dprintk("RPC: write space: waking waiting task on "
502 "xprt %p\n", xprt);
fda13939 503 rpc_wake_up_queued_task(&xprt->pending, xprt->snd_task);
c7b2cae8
CL
504 }
505 spin_unlock_bh(&xprt->transport_lock);
506}
12444809 507EXPORT_SYMBOL_GPL(xprt_write_space);
c7b2cae8 508
fe3aca29
CL
509/**
510 * xprt_set_retrans_timeout_def - set a request's retransmit timeout
511 * @task: task whose timeout is to be set
512 *
513 * Set a request's retransmit timeout based on the transport's
514 * default timeout parameters. Used by transports that don't adjust
515 * the retransmit timeout based on round-trip time estimation.
516 */
517void xprt_set_retrans_timeout_def(struct rpc_task *task)
518{
519 task->tk_timeout = task->tk_rqstp->rq_timeout;
520}
12444809 521EXPORT_SYMBOL_GPL(xprt_set_retrans_timeout_def);
fe3aca29
CL
522
523/*
524 * xprt_set_retrans_timeout_rtt - set a request's retransmit timeout
525 * @task: task whose timeout is to be set
cca5172a 526 *
fe3aca29
CL
527 * Set a request's retransmit timeout using the RTT estimator.
528 */
529void xprt_set_retrans_timeout_rtt(struct rpc_task *task)
530{
531 int timer = task->tk_msg.rpc_proc->p_timer;
ba7392bb
TM
532 struct rpc_clnt *clnt = task->tk_client;
533 struct rpc_rtt *rtt = clnt->cl_rtt;
fe3aca29 534 struct rpc_rqst *req = task->tk_rqstp;
ba7392bb 535 unsigned long max_timeout = clnt->cl_timeout->to_maxval;
fe3aca29
CL
536
537 task->tk_timeout = rpc_calc_rto(rtt, timer);
538 task->tk_timeout <<= rpc_ntimeo(rtt, timer) + req->rq_retries;
539 if (task->tk_timeout > max_timeout || task->tk_timeout == 0)
540 task->tk_timeout = max_timeout;
541}
12444809 542EXPORT_SYMBOL_GPL(xprt_set_retrans_timeout_rtt);
fe3aca29 543
1da177e4
LT
544static void xprt_reset_majortimeo(struct rpc_rqst *req)
545{
ba7392bb 546 const struct rpc_timeout *to = req->rq_task->tk_client->cl_timeout;
1da177e4
LT
547
548 req->rq_majortimeo = req->rq_timeout;
549 if (to->to_exponential)
550 req->rq_majortimeo <<= to->to_retries;
551 else
552 req->rq_majortimeo += to->to_increment * to->to_retries;
553 if (req->rq_majortimeo > to->to_maxval || req->rq_majortimeo == 0)
554 req->rq_majortimeo = to->to_maxval;
555 req->rq_majortimeo += jiffies;
556}
557
9903cd1c
CL
558/**
559 * xprt_adjust_timeout - adjust timeout values for next retransmit
560 * @req: RPC request containing parameters to use for the adjustment
561 *
1da177e4
LT
562 */
563int xprt_adjust_timeout(struct rpc_rqst *req)
564{
565 struct rpc_xprt *xprt = req->rq_xprt;
ba7392bb 566 const struct rpc_timeout *to = req->rq_task->tk_client->cl_timeout;
1da177e4
LT
567 int status = 0;
568
569 if (time_before(jiffies, req->rq_majortimeo)) {
570 if (to->to_exponential)
571 req->rq_timeout <<= 1;
572 else
573 req->rq_timeout += to->to_increment;
574 if (to->to_maxval && req->rq_timeout >= to->to_maxval)
575 req->rq_timeout = to->to_maxval;
576 req->rq_retries++;
1da177e4
LT
577 } else {
578 req->rq_timeout = to->to_initval;
579 req->rq_retries = 0;
580 xprt_reset_majortimeo(req);
581 /* Reset the RTT counters == "slow start" */
4a0f8c04 582 spin_lock_bh(&xprt->transport_lock);
1da177e4 583 rpc_init_rtt(req->rq_task->tk_client->cl_rtt, to->to_initval);
4a0f8c04 584 spin_unlock_bh(&xprt->transport_lock);
1da177e4
LT
585 status = -ETIMEDOUT;
586 }
587
588 if (req->rq_timeout == 0) {
589 printk(KERN_WARNING "xprt_adjust_timeout: rq_timeout = 0!\n");
590 req->rq_timeout = 5 * HZ;
591 }
592 return status;
593}
594
65f27f38 595static void xprt_autoclose(struct work_struct *work)
1da177e4 596{
65f27f38
DH
597 struct rpc_xprt *xprt =
598 container_of(work, struct rpc_xprt, task_cleanup);
1da177e4 599
a246b010 600 xprt->ops->close(xprt);
66af1e55 601 clear_bit(XPRT_CLOSE_WAIT, &xprt->state);
1da177e4
LT
602 xprt_release_write(xprt, NULL);
603}
604
9903cd1c 605/**
62da3b24 606 * xprt_disconnect_done - mark a transport as disconnected
9903cd1c
CL
607 * @xprt: transport to flag for disconnect
608 *
1da177e4 609 */
62da3b24 610void xprt_disconnect_done(struct rpc_xprt *xprt)
1da177e4 611{
46121cf7 612 dprintk("RPC: disconnected transport %p\n", xprt);
4a0f8c04 613 spin_lock_bh(&xprt->transport_lock);
1da177e4 614 xprt_clear_connected(xprt);
2a491991 615 xprt_wake_pending_tasks(xprt, -EAGAIN);
4a0f8c04 616 spin_unlock_bh(&xprt->transport_lock);
1da177e4 617}
62da3b24 618EXPORT_SYMBOL_GPL(xprt_disconnect_done);
1da177e4 619
66af1e55
TM
620/**
621 * xprt_force_disconnect - force a transport to disconnect
622 * @xprt: transport to disconnect
623 *
624 */
625void xprt_force_disconnect(struct rpc_xprt *xprt)
626{
627 /* Don't race with the test_bit() in xprt_clear_locked() */
628 spin_lock_bh(&xprt->transport_lock);
629 set_bit(XPRT_CLOSE_WAIT, &xprt->state);
630 /* Try to schedule an autoclose RPC call */
631 if (test_and_set_bit(XPRT_LOCKED, &xprt->state) == 0)
632 queue_work(rpciod_workqueue, &xprt->task_cleanup);
2a491991 633 xprt_wake_pending_tasks(xprt, -EAGAIN);
66af1e55
TM
634 spin_unlock_bh(&xprt->transport_lock);
635}
66af1e55 636
7c1d71cf
TM
637/**
638 * xprt_conditional_disconnect - force a transport to disconnect
639 * @xprt: transport to disconnect
640 * @cookie: 'connection cookie'
641 *
642 * This attempts to break the connection if and only if 'cookie' matches
643 * the current transport 'connection cookie'. It ensures that we don't
644 * try to break the connection more than once when we need to retransmit
645 * a batch of RPC requests.
646 *
647 */
648void xprt_conditional_disconnect(struct rpc_xprt *xprt, unsigned int cookie)
649{
650 /* Don't race with the test_bit() in xprt_clear_locked() */
651 spin_lock_bh(&xprt->transport_lock);
652 if (cookie != xprt->connect_cookie)
653 goto out;
654 if (test_bit(XPRT_CLOSING, &xprt->state) || !xprt_connected(xprt))
655 goto out;
656 set_bit(XPRT_CLOSE_WAIT, &xprt->state);
657 /* Try to schedule an autoclose RPC call */
658 if (test_and_set_bit(XPRT_LOCKED, &xprt->state) == 0)
659 queue_work(rpciod_workqueue, &xprt->task_cleanup);
2a491991 660 xprt_wake_pending_tasks(xprt, -EAGAIN);
7c1d71cf
TM
661out:
662 spin_unlock_bh(&xprt->transport_lock);
663}
664
1da177e4
LT
665static void
666xprt_init_autodisconnect(unsigned long data)
667{
668 struct rpc_xprt *xprt = (struct rpc_xprt *)data;
669
4a0f8c04 670 spin_lock(&xprt->transport_lock);
1da177e4
LT
671 if (!list_empty(&xprt->recv) || xprt->shutdown)
672 goto out_abort;
2226feb6 673 if (test_and_set_bit(XPRT_LOCKED, &xprt->state))
1da177e4 674 goto out_abort;
4a0f8c04 675 spin_unlock(&xprt->transport_lock);
f75e6745
TM
676 set_bit(XPRT_CONNECTION_CLOSE, &xprt->state);
677 queue_work(rpciod_workqueue, &xprt->task_cleanup);
1da177e4
LT
678 return;
679out_abort:
4a0f8c04 680 spin_unlock(&xprt->transport_lock);
1da177e4
LT
681}
682
9903cd1c
CL
683/**
684 * xprt_connect - schedule a transport connect operation
685 * @task: RPC task that is requesting the connect
1da177e4
LT
686 *
687 */
688void xprt_connect(struct rpc_task *task)
689{
690 struct rpc_xprt *xprt = task->tk_xprt;
691
46121cf7 692 dprintk("RPC: %5u xprt_connect xprt %p %s connected\n", task->tk_pid,
1da177e4
LT
693 xprt, (xprt_connected(xprt) ? "is" : "is not"));
694
ec739ef0 695 if (!xprt_bound(xprt)) {
01d37c42 696 task->tk_status = -EAGAIN;
1da177e4
LT
697 return;
698 }
699 if (!xprt_lock_write(xprt, task))
700 return;
feb8ca37
TM
701
702 if (test_and_clear_bit(XPRT_CLOSE_WAIT, &xprt->state))
703 xprt->ops->close(xprt);
704
1da177e4 705 if (xprt_connected(xprt))
a246b010
CL
706 xprt_release_write(xprt, task);
707 else {
708 if (task->tk_rqstp)
709 task->tk_rqstp->rq_bytes_sent = 0;
1da177e4 710
a8ce4a8f 711 task->tk_timeout = task->tk_rqstp->rq_timeout;
5d00837b 712 rpc_sleep_on(&xprt->pending, task, xprt_connect_status);
0b9e7943
TM
713
714 if (test_bit(XPRT_CLOSING, &xprt->state))
715 return;
716 if (xprt_test_and_set_connecting(xprt))
717 return;
262ca07d 718 xprt->stat.connect_start = jiffies;
a246b010 719 xprt->ops->connect(task);
1da177e4 720 }
1da177e4
LT
721}
722
9903cd1c 723static void xprt_connect_status(struct rpc_task *task)
1da177e4
LT
724{
725 struct rpc_xprt *xprt = task->tk_xprt;
726
cd983ef8 727 if (task->tk_status == 0) {
262ca07d
CL
728 xprt->stat.connect_count++;
729 xprt->stat.connect_time += (long)jiffies - xprt->stat.connect_start;
46121cf7 730 dprintk("RPC: %5u xprt_connect_status: connection established\n",
1da177e4
LT
731 task->tk_pid);
732 return;
733 }
734
1da177e4 735 switch (task->tk_status) {
2a491991
TM
736 case -EAGAIN:
737 dprintk("RPC: %5u xprt_connect_status: retrying\n", task->tk_pid);
23475d66 738 break;
1da177e4 739 case -ETIMEDOUT:
46121cf7
CL
740 dprintk("RPC: %5u xprt_connect_status: connect attempt timed "
741 "out\n", task->tk_pid);
1da177e4
LT
742 break;
743 default:
46121cf7
CL
744 dprintk("RPC: %5u xprt_connect_status: error %d connecting to "
745 "server %s\n", task->tk_pid, -task->tk_status,
746 task->tk_client->cl_server);
23475d66
CL
747 xprt_release_write(xprt, task);
748 task->tk_status = -EIO;
1da177e4 749 }
1da177e4
LT
750}
751
9903cd1c
CL
752/**
753 * xprt_lookup_rqst - find an RPC request corresponding to an XID
754 * @xprt: transport on which the original request was transmitted
755 * @xid: RPC XID of incoming reply
756 *
1da177e4 757 */
d8ed029d 758struct rpc_rqst *xprt_lookup_rqst(struct rpc_xprt *xprt, __be32 xid)
1da177e4
LT
759{
760 struct list_head *pos;
1da177e4
LT
761
762 list_for_each(pos, &xprt->recv) {
763 struct rpc_rqst *entry = list_entry(pos, struct rpc_rqst, rq_list);
262ca07d
CL
764 if (entry->rq_xid == xid)
765 return entry;
1da177e4 766 }
46121cf7
CL
767
768 dprintk("RPC: xprt_lookup_rqst did not find xid %08x\n",
769 ntohl(xid));
262ca07d
CL
770 xprt->stat.bad_xids++;
771 return NULL;
1da177e4 772}
12444809 773EXPORT_SYMBOL_GPL(xprt_lookup_rqst);
1da177e4 774
bbc72cea 775static void xprt_update_rtt(struct rpc_task *task)
1570c1e4
CL
776{
777 struct rpc_rqst *req = task->tk_rqstp;
778 struct rpc_rtt *rtt = task->tk_client->cl_rtt;
779 unsigned timer = task->tk_msg.rpc_proc->p_timer;
d60dbb20 780 long m = usecs_to_jiffies(ktime_to_us(req->rq_rtt));
1570c1e4
CL
781
782 if (timer) {
783 if (req->rq_ntrans == 1)
ff839970 784 rpc_update_rtt(rtt, timer, m);
1570c1e4
CL
785 rpc_set_timeo(rtt, timer, req->rq_ntrans - 1);
786 }
787}
788
9903cd1c
CL
789/**
790 * xprt_complete_rqst - called when reply processing is complete
1570c1e4 791 * @task: RPC request that recently completed
9903cd1c
CL
792 * @copied: actual number of bytes received from the transport
793 *
1570c1e4 794 * Caller holds transport lock.
1da177e4 795 */
1570c1e4 796void xprt_complete_rqst(struct rpc_task *task, int copied)
1da177e4 797{
1570c1e4 798 struct rpc_rqst *req = task->tk_rqstp;
fda13939 799 struct rpc_xprt *xprt = req->rq_xprt;
1da177e4 800
1570c1e4
CL
801 dprintk("RPC: %5u xid %08x complete (%d bytes received)\n",
802 task->tk_pid, ntohl(req->rq_xid), copied);
1da177e4 803
fda13939 804 xprt->stat.recvs++;
d60dbb20 805 req->rq_rtt = ktime_sub(ktime_get(), req->rq_xtime);
bbc72cea
CL
806 if (xprt->ops->timer != NULL)
807 xprt_update_rtt(task);
ef759a2e 808
1da177e4 809 list_del_init(&req->rq_list);
1e799b67 810 req->rq_private_buf.len = copied;
dd2b63d0
RL
811 /* Ensure all writes are done before we update */
812 /* req->rq_reply_bytes_recvd */
43ac3f29 813 smp_wmb();
dd2b63d0 814 req->rq_reply_bytes_recvd = copied;
fda13939 815 rpc_wake_up_queued_task(&xprt->pending, task);
1da177e4 816}
12444809 817EXPORT_SYMBOL_GPL(xprt_complete_rqst);
1da177e4 818
46c0ee8b 819static void xprt_timer(struct rpc_task *task)
1da177e4 820{
46c0ee8b 821 struct rpc_rqst *req = task->tk_rqstp;
1da177e4
LT
822 struct rpc_xprt *xprt = req->rq_xprt;
823
5d00837b
TM
824 if (task->tk_status != -ETIMEDOUT)
825 return;
46121cf7 826 dprintk("RPC: %5u xprt_timer\n", task->tk_pid);
1da177e4 827
5d00837b 828 spin_lock_bh(&xprt->transport_lock);
dd2b63d0 829 if (!req->rq_reply_bytes_recvd) {
46c0ee8b
CL
830 if (xprt->ops->timer)
831 xprt->ops->timer(task);
5d00837b
TM
832 } else
833 task->tk_status = 0;
834 spin_unlock_bh(&xprt->transport_lock);
1da177e4
LT
835}
836
4cfc7e60
RI
837static inline int xprt_has_timer(struct rpc_xprt *xprt)
838{
839 return xprt->idle_timeout != 0;
840}
841
9903cd1c
CL
842/**
843 * xprt_prepare_transmit - reserve the transport before sending a request
844 * @task: RPC task about to send a request
845 *
1da177e4 846 */
9903cd1c 847int xprt_prepare_transmit(struct rpc_task *task)
1da177e4
LT
848{
849 struct rpc_rqst *req = task->tk_rqstp;
850 struct rpc_xprt *xprt = req->rq_xprt;
851 int err = 0;
852
46121cf7 853 dprintk("RPC: %5u xprt_prepare_transmit\n", task->tk_pid);
1da177e4 854
4a0f8c04 855 spin_lock_bh(&xprt->transport_lock);
dd2b63d0
RL
856 if (req->rq_reply_bytes_recvd && !req->rq_bytes_sent) {
857 err = req->rq_reply_bytes_recvd;
1da177e4
LT
858 goto out_unlock;
859 }
2a491991 860 if (!xprt->ops->reserve_xprt(task))
1da177e4 861 err = -EAGAIN;
1da177e4 862out_unlock:
4a0f8c04 863 spin_unlock_bh(&xprt->transport_lock);
1da177e4
LT
864 return err;
865}
866
e0ab53de 867void xprt_end_transmit(struct rpc_task *task)
5e5ce5be 868{
343952fa 869 xprt_release_write(task->tk_rqstp->rq_xprt, task);
5e5ce5be
TM
870}
871
9903cd1c
CL
872/**
873 * xprt_transmit - send an RPC request on a transport
874 * @task: controlling RPC task
875 *
876 * We have to copy the iovec because sendmsg fiddles with its contents.
877 */
878void xprt_transmit(struct rpc_task *task)
1da177e4 879{
1da177e4
LT
880 struct rpc_rqst *req = task->tk_rqstp;
881 struct rpc_xprt *xprt = req->rq_xprt;
a246b010 882 int status;
1da177e4 883
46121cf7 884 dprintk("RPC: %5u xprt_transmit(%u)\n", task->tk_pid, req->rq_slen);
1da177e4 885
dd2b63d0 886 if (!req->rq_reply_bytes_recvd) {
55ae1aab
RL
887 if (list_empty(&req->rq_list) && rpc_reply_expected(task)) {
888 /*
889 * Add to the list only if we're expecting a reply
890 */
4a0f8c04 891 spin_lock_bh(&xprt->transport_lock);
1da177e4
LT
892 /* Update the softirq receive buffer */
893 memcpy(&req->rq_private_buf, &req->rq_rcv_buf,
894 sizeof(req->rq_private_buf));
895 /* Add request to the receive list */
896 list_add_tail(&req->rq_list, &xprt->recv);
4a0f8c04 897 spin_unlock_bh(&xprt->transport_lock);
1da177e4 898 xprt_reset_majortimeo(req);
0f9dc2b1
TM
899 /* Turn off autodisconnect */
900 del_singleshot_timer_sync(&xprt->timer);
1da177e4
LT
901 }
902 } else if (!req->rq_bytes_sent)
903 return;
904
7c1d71cf 905 req->rq_connect_cookie = xprt->connect_cookie;
ff839970 906 req->rq_xtime = ktime_get();
a246b010 907 status = xprt->ops->send_request(task);
c8485e4d
TM
908 if (status != 0) {
909 task->tk_status = status;
910 return;
911 }
262ca07d 912
c8485e4d
TM
913 dprintk("RPC: %5u xmit complete\n", task->tk_pid);
914 spin_lock_bh(&xprt->transport_lock);
262ca07d 915
c8485e4d 916 xprt->ops->set_retrans_timeout(task);
262ca07d 917
c8485e4d
TM
918 xprt->stat.sends++;
919 xprt->stat.req_u += xprt->stat.sends - xprt->stat.recvs;
920 xprt->stat.bklog_u += xprt->backlog.qlen;
1da177e4 921
c8485e4d
TM
922 /* Don't race with disconnect */
923 if (!xprt_connected(xprt))
924 task->tk_status = -ENOTCONN;
dd2b63d0 925 else if (!req->rq_reply_bytes_recvd && rpc_reply_expected(task)) {
55ae1aab
RL
926 /*
927 * Sleep on the pending queue since
928 * we're expecting a reply.
929 */
c8485e4d 930 rpc_sleep_on(&xprt->pending, task, xprt_timer);
55ae1aab 931 }
c8485e4d 932 spin_unlock_bh(&xprt->transport_lock);
1da177e4
LT
933}
934
ee5ebe85 935static void xprt_alloc_slot(struct rpc_task *task)
1da177e4
LT
936{
937 struct rpc_xprt *xprt = task->tk_xprt;
938
939 task->tk_status = 0;
940 if (task->tk_rqstp)
941 return;
942 if (!list_empty(&xprt->free)) {
943 struct rpc_rqst *req = list_entry(xprt->free.next, struct rpc_rqst, rq_list);
944 list_del_init(&req->rq_list);
945 task->tk_rqstp = req;
946 xprt_request_init(task, xprt);
947 return;
948 }
46121cf7 949 dprintk("RPC: waiting for request slot\n");
1da177e4
LT
950 task->tk_status = -EAGAIN;
951 task->tk_timeout = 0;
5d00837b 952 rpc_sleep_on(&xprt->backlog, task, NULL);
1da177e4
LT
953}
954
ee5ebe85
TM
955static void xprt_free_slot(struct rpc_xprt *xprt, struct rpc_rqst *req)
956{
957 memset(req, 0, sizeof(*req)); /* mark unused */
958
959 spin_lock(&xprt->reserve_lock);
960 list_add(&req->rq_list, &xprt->free);
961 rpc_wake_up_next(&xprt->backlog);
962 spin_unlock(&xprt->reserve_lock);
963}
964
9903cd1c
CL
965/**
966 * xprt_reserve - allocate an RPC request slot
967 * @task: RPC task requesting a slot allocation
968 *
969 * If no more slots are available, place the task on the transport's
970 * backlog queue.
971 */
972void xprt_reserve(struct rpc_task *task)
1da177e4
LT
973{
974 struct rpc_xprt *xprt = task->tk_xprt;
975
976 task->tk_status = -EIO;
0065db32 977 spin_lock(&xprt->reserve_lock);
ee5ebe85 978 xprt_alloc_slot(task);
0065db32 979 spin_unlock(&xprt->reserve_lock);
1da177e4
LT
980}
981
d8ed029d 982static inline __be32 xprt_alloc_xid(struct rpc_xprt *xprt)
1da177e4 983{
0eae88f3 984 return (__force __be32)xprt->xid++;
1da177e4
LT
985}
986
987static inline void xprt_init_xid(struct rpc_xprt *xprt)
988{
bf3fcf89 989 xprt->xid = net_random();
1da177e4
LT
990}
991
9903cd1c 992static void xprt_request_init(struct rpc_task *task, struct rpc_xprt *xprt)
1da177e4
LT
993{
994 struct rpc_rqst *req = task->tk_rqstp;
995
ba7392bb 996 req->rq_timeout = task->tk_client->cl_timeout->to_initval;
1da177e4
LT
997 req->rq_task = task;
998 req->rq_xprt = xprt;
02107148 999 req->rq_buffer = NULL;
1da177e4 1000 req->rq_xid = xprt_alloc_xid(xprt);
ead5e1c2 1001 req->rq_release_snd_buf = NULL;
da45828e 1002 xprt_reset_majortimeo(req);
46121cf7 1003 dprintk("RPC: %5u reserved req %p xid %08x\n", task->tk_pid,
1da177e4
LT
1004 req, ntohl(req->rq_xid));
1005}
1006
9903cd1c
CL
1007/**
1008 * xprt_release - release an RPC request slot
1009 * @task: task which is finished with the slot
1010 *
1da177e4 1011 */
9903cd1c 1012void xprt_release(struct rpc_task *task)
1da177e4 1013{
55ae1aab 1014 struct rpc_xprt *xprt;
1da177e4
LT
1015 struct rpc_rqst *req;
1016
1017 if (!(req = task->tk_rqstp))
1018 return;
55ae1aab 1019
55ae1aab 1020 xprt = req->rq_xprt;
11c556b3 1021 rpc_count_iostats(task);
4a0f8c04 1022 spin_lock_bh(&xprt->transport_lock);
49e9a890 1023 xprt->ops->release_xprt(xprt, task);
a58dd398
CL
1024 if (xprt->ops->release_request)
1025 xprt->ops->release_request(task);
1da177e4
LT
1026 if (!list_empty(&req->rq_list))
1027 list_del(&req->rq_list);
1028 xprt->last_used = jiffies;
4cfc7e60 1029 if (list_empty(&xprt->recv) && xprt_has_timer(xprt))
a246b010 1030 mod_timer(&xprt->timer,
03bf4b70 1031 xprt->last_used + xprt->idle_timeout);
4a0f8c04 1032 spin_unlock_bh(&xprt->transport_lock);
ee5ebe85 1033 if (req->rq_buffer)
55ae1aab 1034 xprt->ops->buf_free(req->rq_buffer);
a17c2153
TM
1035 if (req->rq_cred != NULL)
1036 put_rpccred(req->rq_cred);
1da177e4 1037 task->tk_rqstp = NULL;
ead5e1c2
BF
1038 if (req->rq_release_snd_buf)
1039 req->rq_release_snd_buf(req);
55ae1aab 1040
46121cf7 1041 dprintk("RPC: %5u release request %p\n", task->tk_pid, req);
ee5ebe85
TM
1042 if (likely(!bc_prealloc(req)))
1043 xprt_free_slot(xprt, req);
1044 else
c9acb42e 1045 xprt_free_bc_request(req);
1da177e4
LT
1046}
1047
c2866763
CL
1048/**
1049 * xprt_create_transport - create an RPC transport
96802a09 1050 * @args: rpc transport creation arguments
c2866763
CL
1051 *
1052 */
3c341b0b 1053struct rpc_xprt *xprt_create_transport(struct xprt_create *args)
c2866763 1054{
c2866763
CL
1055 struct rpc_xprt *xprt;
1056 struct rpc_rqst *req;
bc25571e 1057 struct xprt_class *t;
c2866763 1058
bc25571e
TT
1059 spin_lock(&xprt_list_lock);
1060 list_for_each_entry(t, &xprt_list, list) {
4fa016eb 1061 if (t->ident == args->ident) {
bc25571e
TT
1062 spin_unlock(&xprt_list_lock);
1063 goto found;
1064 }
c2866763 1065 }
bc25571e 1066 spin_unlock(&xprt_list_lock);
4fa016eb 1067 printk(KERN_ERR "RPC: transport (%d) not supported\n", args->ident);
bc25571e
TT
1068 return ERR_PTR(-EIO);
1069
1070found:
1071 xprt = t->setup(args);
c8541ecd 1072 if (IS_ERR(xprt)) {
46121cf7 1073 dprintk("RPC: xprt_create_transport: failed, %ld\n",
c8541ecd
CL
1074 -PTR_ERR(xprt));
1075 return xprt;
c2866763
CL
1076 }
1077
6b6ca86b 1078 kref_init(&xprt->kref);
c2866763
CL
1079 spin_lock_init(&xprt->transport_lock);
1080 spin_lock_init(&xprt->reserve_lock);
1081
1082 INIT_LIST_HEAD(&xprt->free);
1083 INIT_LIST_HEAD(&xprt->recv);
f9acac1a
RL
1084#if defined(CONFIG_NFS_V4_1)
1085 spin_lock_init(&xprt->bc_pa_lock);
1086 INIT_LIST_HEAD(&xprt->bc_pa_list);
1087#endif /* CONFIG_NFS_V4_1 */
1088
65f27f38 1089 INIT_WORK(&xprt->task_cleanup, xprt_autoclose);
4cfc7e60
RI
1090 if (xprt_has_timer(xprt))
1091 setup_timer(&xprt->timer, xprt_init_autodisconnect,
1092 (unsigned long)xprt);
1093 else
1094 init_timer(&xprt->timer);
c2866763
CL
1095 xprt->last_used = jiffies;
1096 xprt->cwnd = RPC_INITCWND;
a509050b 1097 xprt->bind_index = 0;
c2866763
CL
1098
1099 rpc_init_wait_queue(&xprt->binding, "xprt_binding");
1100 rpc_init_wait_queue(&xprt->pending, "xprt_pending");
1101 rpc_init_wait_queue(&xprt->sending, "xprt_sending");
1102 rpc_init_wait_queue(&xprt->resend, "xprt_resend");
1103 rpc_init_priority_wait_queue(&xprt->backlog, "xprt_backlog");
1104
1105 /* initialize free list */
1106 for (req = &xprt->slot[xprt->max_reqs-1]; req >= &xprt->slot[0]; req--)
1107 list_add(&req->rq_list, &xprt->free);
1108
1109 xprt_init_xid(xprt);
1110
46121cf7 1111 dprintk("RPC: created transport %p with %u slots\n", xprt,
c2866763 1112 xprt->max_reqs);
c2866763
CL
1113 return xprt;
1114}
1115
9903cd1c
CL
1116/**
1117 * xprt_destroy - destroy an RPC transport, killing off all requests.
6b6ca86b 1118 * @kref: kref for the transport to destroy
9903cd1c 1119 *
1da177e4 1120 */
6b6ca86b 1121static void xprt_destroy(struct kref *kref)
1da177e4 1122{
6b6ca86b
TM
1123 struct rpc_xprt *xprt = container_of(kref, struct rpc_xprt, kref);
1124
46121cf7 1125 dprintk("RPC: destroying transport %p\n", xprt);
0065db32
TM
1126 xprt->shutdown = 1;
1127 del_timer_sync(&xprt->timer);
c8541ecd 1128
f6a1cc89
TM
1129 rpc_destroy_wait_queue(&xprt->binding);
1130 rpc_destroy_wait_queue(&xprt->pending);
1131 rpc_destroy_wait_queue(&xprt->sending);
1132 rpc_destroy_wait_queue(&xprt->resend);
1133 rpc_destroy_wait_queue(&xprt->backlog);
c3ae62ae 1134 cancel_work_sync(&xprt->task_cleanup);
c8541ecd
CL
1135 /*
1136 * Tear down transport state and free the rpc_xprt
1137 */
a246b010 1138 xprt->ops->destroy(xprt);
6b6ca86b 1139}
1da177e4 1140
6b6ca86b
TM
1141/**
1142 * xprt_put - release a reference to an RPC transport.
1143 * @xprt: pointer to the transport
1144 *
1145 */
1146void xprt_put(struct rpc_xprt *xprt)
1147{
1148 kref_put(&xprt->kref, xprt_destroy);
1149}
1150
1151/**
1152 * xprt_get - return a reference to an RPC transport.
1153 * @xprt: pointer to the transport
1154 *
1155 */
1156struct rpc_xprt *xprt_get(struct rpc_xprt *xprt)
1157{
1158 kref_get(&xprt->kref);
1159 return xprt;
1da177e4 1160}