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