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