blob: ea7b3c16cddde369885251c6ad781fae378aa863 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
Chuck Lever55aa4f52005-08-11 16:25:47 -040013 * the request struct, and calls xprt_transmit().
14 * - xprt_transmit sends the message and installs the caller on the
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -040015 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 * - When a packet arrives, the data_ready handler walks the list of
Chuck Lever55aa4f52005-08-11 16:25:47 -040019 * pending requests for that transport. If a matching XID is found, the
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 * 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>
Chuck Lever55aa4f52005-08-11 16:25:47 -040036 *
37 * Transport switch API copyright (C) 2005, Chuck Lever <cel@netapp.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 */
39
Chuck Levera246b012005-08-11 16:25:23 -040040#include <linux/module.h>
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/types.h>
Chuck Levera246b012005-08-11 16:25:23 -040043#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/workqueue.h>
Chuck Leverbf3fcf82006-05-25 01:40:51 -040045#include <linux/net.h>
Chuck Leverff839972010-05-07 13:34:47 -040046#include <linux/ktime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Chuck Levera246b012005-08-11 16:25:23 -040048#include <linux/sunrpc/clnt.h>
Chuck Lever11c556b2006-03-20 13:44:22 -050049#include <linux/sunrpc/metrics.h>
Trond Myklebustc9acb422010-03-19 15:36:22 -040050#include <linux/sunrpc/bc_xprt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -040052#include "sunrpc.h"
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054/*
55 * Local variables
56 */
57
58#ifdef RPC_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -070059# define RPCDBG_FACILITY RPCDBG_XPRT
60#endif
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062/*
63 * Local functions
64 */
Trond Myklebust21de0a92011-07-17 16:57:32 -040065static void xprt_init(struct rpc_xprt *xprt, struct net *net);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066static void xprt_request_init(struct rpc_task *, struct rpc_xprt *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067static void xprt_connect_status(struct rpc_task *task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068static int __xprt_get_cong(struct rpc_xprt *, struct rpc_task *);
69
Jiri Slaby5ba03e82007-11-22 19:40:22 +080070static DEFINE_SPINLOCK(xprt_list_lock);
\"Talpey, Thomas\81c098a2007-09-10 13:46:00 -040071static LIST_HEAD(xprt_list);
72
Chuck Lever555ee3a2005-08-25 16:25:54 -070073/*
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)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Chuck Lever12a80462005-08-25 16:25:51 -070091/**
\"Talpey, Thomas\81c098a2007-09-10 13:46:00 -040092 * 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 */
\"Talpey, Thomas\4fa016e2007-09-10 13:47:57 -0400112 if (t->ident == transport->ident)
\"Talpey, Thomas\81c098a2007-09-10 13:46:00 -0400113 goto out;
114 }
115
Denis V. Lunevc9f6cde2008-07-31 09:53:56 +0400116 list_add_tail(&transport->list, &xprt_list);
117 printk(KERN_INFO "RPC: Registered %s transport module.\n",
118 transport->name);
119 result = 0;
\"Talpey, Thomas\81c098a2007-09-10 13:46:00 -0400120
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
Randy Dunlap65b6e422008-02-13 15:03:23 -0800129 * @transport: transport to unregister
\"Talpey, Thomas\81c098a2007-09-10 13:46:00 -0400130 *
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);
\"Talpey, Thomas\81c098a2007-09-10 13:46:00 -0400148 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
159/**
Tom Talpey441e3e22009-03-11 14:37:56 -0400160 * 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;
Tom Talpey441e3e22009-03-11 14:37:56 -0400170 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);
Alex Riesenef7ffe82010-05-24 14:33:05 -0700181 result = request_module("xprt%s", transport_name);
Tom Talpey441e3e22009-03-11 14:37:56 -0400182out:
183 return result;
184}
185EXPORT_SYMBOL_GPL(xprt_load_transport);
186
187/**
Chuck Lever12a80462005-08-25 16:25:51 -0700188 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 */
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -0400195int xprt_reserve_xprt(struct rpc_xprt *xprt, struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
Chuck Lever12a80462005-08-25 16:25:51 -0700197 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;
Chuck Lever12a80462005-08-25 16:25:51 -0700202 goto out_sleep;
203 }
204 xprt->snd_task = task;
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -0400205 if (req != NULL) {
206 req->rq_bytes_sent = 0;
207 req->rq_ntrans++;
208 }
j223yang@asset.uwaterloo.ca4d4a76f2011-03-10 12:40:28 -0500209
Chuck Lever12a80462005-08-25 16:25:51 -0700210 return 1;
211
212out_sleep:
Chuck Lever46121cf2007-01-31 12:14:08 -0500213 dprintk("RPC: %5u failed to lock transport %p\n",
Chuck Lever12a80462005-08-25 16:25:51 -0700214 task->tk_pid, xprt);
215 task->tk_timeout = 0;
216 task->tk_status = -EAGAIN;
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -0400217 if (req != NULL && req->rq_ntrans)
Trond Myklebust5d008372008-02-22 16:34:17 -0500218 rpc_sleep_on(&xprt->resend, task, NULL);
Chuck Lever12a80462005-08-25 16:25:51 -0700219 else
Trond Myklebust5d008372008-02-22 16:34:17 -0500220 rpc_sleep_on(&xprt->sending, task, NULL);
Chuck Lever12a80462005-08-25 16:25:51 -0700221 return 0;
222}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400223EXPORT_SYMBOL_GPL(xprt_reserve_xprt);
Chuck Lever12a80462005-08-25 16:25:51 -0700224
Trond Myklebust632e3bd2006-01-03 09:55:55 +0100225static 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
Trond Myklebustc1384c92007-06-14 18:00:42 -0400233 queue_work(rpciod_workqueue, &xprt->task_cleanup);
Trond Myklebust632e3bd2006-01-03 09:55:55 +0100234}
235
Chuck Lever12a80462005-08-25 16:25:51 -0700236/*
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.
243 */
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -0400244int xprt_reserve_xprt_cong(struct rpc_xprt *xprt, struct rpc_task *task)
Chuck Lever12a80462005-08-25 16:25:51 -0700245{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 struct rpc_rqst *req = task->tk_rqstp;
247
Chuck Lever2226feb2005-08-11 16:25:38 -0400248 if (test_and_set_bit(XPRT_LOCKED, &xprt->state)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 if (task == xprt->snd_task)
250 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 goto out_sleep;
252 }
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -0400253 if (req == NULL) {
254 xprt->snd_task = task;
255 return 1;
256 }
Chuck Lever12a80462005-08-25 16:25:51 -0700257 if (__xprt_get_cong(xprt, task)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 xprt->snd_task = task;
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -0400259 req->rq_bytes_sent = 0;
260 req->rq_ntrans++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 return 1;
262 }
Trond Myklebust632e3bd2006-01-03 09:55:55 +0100263 xprt_clear_locked(xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264out_sleep:
Chuck Lever46121cf2007-01-31 12:14:08 -0500265 dprintk("RPC: %5u failed to lock transport %p\n", task->tk_pid, xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 task->tk_timeout = 0;
267 task->tk_status = -EAGAIN;
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -0400268 if (req != NULL && req->rq_ntrans)
Trond Myklebust5d008372008-02-22 16:34:17 -0500269 rpc_sleep_on(&xprt->resend, task, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 else
Trond Myklebust5d008372008-02-22 16:34:17 -0500271 rpc_sleep_on(&xprt->sending, task, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 return 0;
273}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400274EXPORT_SYMBOL_GPL(xprt_reserve_xprt_cong);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Chuck Lever12a80462005-08-25 16:25:51 -0700276static inline int xprt_lock_write(struct rpc_xprt *xprt, struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
278 int retval;
279
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400280 spin_lock_bh(&xprt->transport_lock);
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -0400281 retval = xprt->ops->reserve_xprt(xprt, task);
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400282 spin_unlock_bh(&xprt->transport_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 return retval;
284}
285
Chuck Lever12a80462005-08-25 16:25:51 -0700286static void __xprt_lock_write_next(struct rpc_xprt *xprt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
288 struct rpc_task *task;
Chuck Lever49e9a892005-08-25 16:25:51 -0700289 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);
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -0400297 if (task == NULL)
Chuck Lever49e9a892005-08-25 16:25:51 -0700298 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:
Trond Myklebust632e3bd2006-01-03 09:55:55 +0100310 xprt_clear_locked(xprt);
Chuck Lever49e9a892005-08-25 16:25:51 -0700311}
312
313static void __xprt_lock_write_next_cong(struct rpc_xprt *xprt)
314{
315 struct rpc_task *task;
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -0400316 struct rpc_rqst *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Chuck Lever2226feb2005-08-11 16:25:38 -0400318 if (test_and_set_bit(XPRT_LOCKED, &xprt->state))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 return;
Chuck Lever49e9a892005-08-25 16:25:51 -0700320 if (RPCXPRT_CONGESTED(xprt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 goto out_unlock;
322 task = rpc_wake_up_next(&xprt->resend);
323 if (!task) {
324 task = rpc_wake_up_next(&xprt->sending);
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -0400325 if (task == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 goto out_unlock;
327 }
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -0400328
329 req = task->tk_rqstp;
330 if (req == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 xprt->snd_task = task;
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -0400332 return;
333 }
334 if (__xprt_get_cong(xprt, task)) {
335 xprt->snd_task = task;
336 req->rq_bytes_sent = 0;
337 req->rq_ntrans++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 return;
339 }
340out_unlock:
Trond Myklebust632e3bd2006-01-03 09:55:55 +0100341 xprt_clear_locked(xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342}
343
Chuck Lever49e9a892005-08-25 16:25:51 -0700344/**
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.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 */
Chuck Lever49e9a892005-08-25 16:25:51 -0700351void xprt_release_xprt(struct rpc_xprt *xprt, struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
353 if (xprt->snd_task == task) {
Trond Myklebust632e3bd2006-01-03 09:55:55 +0100354 xprt_clear_locked(xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 __xprt_lock_write_next(xprt);
356 }
357}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400358EXPORT_SYMBOL_GPL(xprt_release_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Chuck Lever49e9a892005-08-25 16:25:51 -0700360/**
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) {
Trond Myklebust632e3bd2006-01-03 09:55:55 +0100371 xprt_clear_locked(xprt);
Chuck Lever49e9a892005-08-25 16:25:51 -0700372 __xprt_lock_write_next_cong(xprt);
373 }
374}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400375EXPORT_SYMBOL_GPL(xprt_release_xprt_cong);
Chuck Lever49e9a892005-08-25 16:25:51 -0700376
377static inline void xprt_release_write(struct rpc_xprt *xprt, struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378{
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400379 spin_lock_bh(&xprt->transport_lock);
Chuck Lever49e9a892005-08-25 16:25:51 -0700380 xprt->ops->release_xprt(xprt, task);
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400381 spin_unlock_bh(&xprt->transport_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382}
383
384/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 * 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;
Chuck Lever46121cf2007-01-31 12:14:08 -0500395 dprintk("RPC: %5u xprt_cwnd_limited cong = %lu cwnd = %lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 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;
Chuck Lever49e9a892005-08-25 16:25:51 -0700415 __xprt_lock_write_next_cong(xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416}
417
Chuck Lever46c0ee82005-08-25 16:25:52 -0700418/**
Chuck Levera58dd392005-08-25 16:25:53 -0700419 * 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}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400428EXPORT_SYMBOL_GPL(xprt_release_rqst_cong);
Chuck Levera58dd392005-08-25 16:25:53 -0700429
430/**
Chuck Lever46c0ee82005-08-25 16:25:52 -0700431 * 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 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 * We use a time-smoothed congestion estimator to avoid heavy oscillation.
436 */
Chuck Lever46c0ee82005-08-25 16:25:52 -0700437void xprt_adjust_cwnd(struct rpc_task *task, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438{
Chuck Lever46c0ee82005-08-25 16:25:52 -0700439 struct rpc_rqst *req = task->tk_rqstp;
440 struct rpc_xprt *xprt = task->tk_xprt;
441 unsigned long cwnd = xprt->cwnd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 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);
Chuck Lever49e9a892005-08-25 16:25:51 -0700449 __xprt_lock_write_next_cong(xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 } else if (result == -ETIMEDOUT) {
451 cwnd >>= 1;
452 if (cwnd < RPC_CWNDSCALE)
453 cwnd = RPC_CWNDSCALE;
454 }
Chuck Lever46121cf2007-01-31 12:14:08 -0500455 dprintk("RPC: cong %ld, cwnd was %ld, now %ld\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 xprt->cong, xprt->cwnd, cwnd);
457 xprt->cwnd = cwnd;
Chuck Lever46c0ee82005-08-25 16:25:52 -0700458 __xprt_put_cong(xprt, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400460EXPORT_SYMBOL_GPL(xprt_adjust_cwnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Chuck Lever44fbac22005-08-11 16:25:44 -0400462/**
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}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400475EXPORT_SYMBOL_GPL(xprt_wake_pending_tasks);
Chuck Lever44fbac22005-08-11 16:25:44 -0400476
Chuck Leverc7b2cae2005-08-11 16:25:50 -0400477/**
478 * xprt_wait_for_buffer_space - wait for transport output buffer to clear
479 * @task: task to be put to sleep
Randy Dunlap0b80ae42008-04-26 22:59:02 -0700480 * @action: function pointer to be executed after wait
Chuck Leverc7b2cae2005-08-11 16:25:50 -0400481 */
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400482void xprt_wait_for_buffer_space(struct rpc_task *task, rpc_action action)
Chuck Leverc7b2cae2005-08-11 16:25:50 -0400483{
484 struct rpc_rqst *req = task->tk_rqstp;
485 struct rpc_xprt *xprt = req->rq_xprt;
486
487 task->tk_timeout = req->rq_timeout;
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400488 rpc_sleep_on(&xprt->pending, task, action);
Chuck Leverc7b2cae2005-08-11 16:25:50 -0400489}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400490EXPORT_SYMBOL_GPL(xprt_wait_for_buffer_space);
Chuck Leverc7b2cae2005-08-11 16:25:50 -0400491
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) {
Chuck Lever46121cf2007-01-31 12:14:08 -0500505 dprintk("RPC: write space: waking waiting task on "
506 "xprt %p\n", xprt);
Trond Myklebustfda13932008-02-22 16:34:12 -0500507 rpc_wake_up_queued_task(&xprt->pending, xprt->snd_task);
Chuck Leverc7b2cae2005-08-11 16:25:50 -0400508 }
509 spin_unlock_bh(&xprt->transport_lock);
510}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400511EXPORT_SYMBOL_GPL(xprt_write_space);
Chuck Leverc7b2cae2005-08-11 16:25:50 -0400512
Chuck Leverfe3aca22005-08-25 16:25:50 -0700513/**
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}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400525EXPORT_SYMBOL_GPL(xprt_set_retrans_timeout_def);
Chuck Leverfe3aca22005-08-25 16:25:50 -0700526
527/*
528 * xprt_set_retrans_timeout_rtt - set a request's retransmit timeout
529 * @task: task whose timeout is to be set
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800530 *
Chuck Leverfe3aca22005-08-25 16:25:50 -0700531 * 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;
Trond Myklebustba7392b2007-12-20 16:03:55 -0500536 struct rpc_clnt *clnt = task->tk_client;
537 struct rpc_rtt *rtt = clnt->cl_rtt;
Chuck Leverfe3aca22005-08-25 16:25:50 -0700538 struct rpc_rqst *req = task->tk_rqstp;
Trond Myklebustba7392b2007-12-20 16:03:55 -0500539 unsigned long max_timeout = clnt->cl_timeout->to_maxval;
Chuck Leverfe3aca22005-08-25 16:25:50 -0700540
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}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400546EXPORT_SYMBOL_GPL(xprt_set_retrans_timeout_rtt);
Chuck Leverfe3aca22005-08-25 16:25:50 -0700547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548static void xprt_reset_majortimeo(struct rpc_rqst *req)
549{
Trond Myklebustba7392b2007-12-20 16:03:55 -0500550 const struct rpc_timeout *to = req->rq_task->tk_client->cl_timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
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
Chuck Lever9903cd12005-08-11 16:25:26 -0400562/**
563 * xprt_adjust_timeout - adjust timeout values for next retransmit
564 * @req: RPC request containing parameters to use for the adjustment
565 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 */
567int xprt_adjust_timeout(struct rpc_rqst *req)
568{
569 struct rpc_xprt *xprt = req->rq_xprt;
Trond Myklebustba7392b2007-12-20 16:03:55 -0500570 const struct rpc_timeout *to = req->rq_task->tk_client->cl_timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 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++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 } 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" */
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400586 spin_lock_bh(&xprt->transport_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 rpc_init_rtt(req->rq_task->tk_client->cl_rtt, to->to_initval);
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400588 spin_unlock_bh(&xprt->transport_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 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
David Howells65f27f32006-11-22 14:55:48 +0000599static void xprt_autoclose(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600{
David Howells65f27f32006-11-22 14:55:48 +0000601 struct rpc_xprt *xprt =
602 container_of(work, struct rpc_xprt, task_cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Chuck Levera246b012005-08-11 16:25:23 -0400604 xprt->ops->close(xprt);
Trond Myklebust66af1e52007-11-06 10:18:36 -0500605 clear_bit(XPRT_CLOSE_WAIT, &xprt->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 xprt_release_write(xprt, NULL);
607}
608
Chuck Lever9903cd12005-08-11 16:25:26 -0400609/**
Trond Myklebust62da3b22007-11-06 18:44:20 -0500610 * xprt_disconnect_done - mark a transport as disconnected
Chuck Lever9903cd12005-08-11 16:25:26 -0400611 * @xprt: transport to flag for disconnect
612 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 */
Trond Myklebust62da3b22007-11-06 18:44:20 -0500614void xprt_disconnect_done(struct rpc_xprt *xprt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615{
Chuck Lever46121cf2007-01-31 12:14:08 -0500616 dprintk("RPC: disconnected transport %p\n", xprt);
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400617 spin_lock_bh(&xprt->transport_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 xprt_clear_connected(xprt);
Trond Myklebust2a491992009-03-11 14:38:00 -0400619 xprt_wake_pending_tasks(xprt, -EAGAIN);
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400620 spin_unlock_bh(&xprt->transport_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621}
Trond Myklebust62da3b22007-11-06 18:44:20 -0500622EXPORT_SYMBOL_GPL(xprt_disconnect_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Trond Myklebust66af1e52007-11-06 10:18:36 -0500624/**
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);
Trond Myklebust2a491992009-03-11 14:38:00 -0400637 xprt_wake_pending_tasks(xprt, -EAGAIN);
Trond Myklebust66af1e52007-11-06 10:18:36 -0500638 spin_unlock_bh(&xprt->transport_lock);
639}
Trond Myklebust66af1e52007-11-06 10:18:36 -0500640
Trond Myklebust7c1d71c2008-04-17 16:52:57 -0400641/**
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);
Trond Myklebust2a491992009-03-11 14:38:00 -0400664 xprt_wake_pending_tasks(xprt, -EAGAIN);
Trond Myklebust7c1d71c2008-04-17 16:52:57 -0400665out:
666 spin_unlock_bh(&xprt->transport_lock);
667}
668
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669static void
670xprt_init_autodisconnect(unsigned long data)
671{
672 struct rpc_xprt *xprt = (struct rpc_xprt *)data;
673
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400674 spin_lock(&xprt->transport_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 if (!list_empty(&xprt->recv) || xprt->shutdown)
676 goto out_abort;
Chuck Lever2226feb2005-08-11 16:25:38 -0400677 if (test_and_set_bit(XPRT_LOCKED, &xprt->state))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 goto out_abort;
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400679 spin_unlock(&xprt->transport_lock);
Trond Myklebustf75e6742009-04-21 17:18:20 -0400680 set_bit(XPRT_CONNECTION_CLOSE, &xprt->state);
681 queue_work(rpciod_workqueue, &xprt->task_cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 return;
683out_abort:
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400684 spin_unlock(&xprt->transport_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685}
686
Chuck Lever9903cd12005-08-11 16:25:26 -0400687/**
688 * xprt_connect - schedule a transport connect operation
689 * @task: RPC task that is requesting the connect
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 *
691 */
692void xprt_connect(struct rpc_task *task)
693{
694 struct rpc_xprt *xprt = task->tk_xprt;
695
Chuck Lever46121cf2007-01-31 12:14:08 -0500696 dprintk("RPC: %5u xprt_connect xprt %p %s connected\n", task->tk_pid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 xprt, (xprt_connected(xprt) ? "is" : "is not"));
698
Chuck Leverec739ef2006-08-22 20:06:15 -0400699 if (!xprt_bound(xprt)) {
Trond Myklebust01d37c42009-03-11 14:09:39 -0400700 task->tk_status = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 return;
702 }
703 if (!xprt_lock_write(xprt, task))
704 return;
Trond Myklebustfeb8ca32009-12-03 08:10:17 -0500705
706 if (test_and_clear_bit(XPRT_CLOSE_WAIT, &xprt->state))
707 xprt->ops->close(xprt);
708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 if (xprt_connected(xprt))
Chuck Levera246b012005-08-11 16:25:23 -0400710 xprt_release_write(xprt, task);
711 else {
712 if (task->tk_rqstp)
713 task->tk_rqstp->rq_bytes_sent = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
Trond Myklebusta8ce4a82010-04-16 16:42:12 -0400715 task->tk_timeout = task->tk_rqstp->rq_timeout;
Trond Myklebust5d008372008-02-22 16:34:17 -0500716 rpc_sleep_on(&xprt->pending, task, xprt_connect_status);
Trond Myklebust0b9e7942010-04-16 16:41:57 -0400717
718 if (test_bit(XPRT_CLOSING, &xprt->state))
719 return;
720 if (xprt_test_and_set_connecting(xprt))
721 return;
Chuck Lever262ca072006-03-20 13:44:16 -0500722 xprt->stat.connect_start = jiffies;
Chuck Levera246b012005-08-11 16:25:23 -0400723 xprt->ops->connect(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725}
726
Chuck Lever9903cd12005-08-11 16:25:26 -0400727static void xprt_connect_status(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
729 struct rpc_xprt *xprt = task->tk_xprt;
730
Chuck Levercd983ef2008-06-11 17:56:13 -0400731 if (task->tk_status == 0) {
Chuck Lever262ca072006-03-20 13:44:16 -0500732 xprt->stat.connect_count++;
733 xprt->stat.connect_time += (long)jiffies - xprt->stat.connect_start;
Chuck Lever46121cf2007-01-31 12:14:08 -0500734 dprintk("RPC: %5u xprt_connect_status: connection established\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 task->tk_pid);
736 return;
737 }
738
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 switch (task->tk_status) {
Trond Myklebust2a491992009-03-11 14:38:00 -0400740 case -EAGAIN:
741 dprintk("RPC: %5u xprt_connect_status: retrying\n", task->tk_pid);
Chuck Lever23475d62005-08-11 16:25:08 -0400742 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 case -ETIMEDOUT:
Chuck Lever46121cf2007-01-31 12:14:08 -0500744 dprintk("RPC: %5u xprt_connect_status: connect attempt timed "
745 "out\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 break;
747 default:
Chuck Lever46121cf2007-01-31 12:14:08 -0500748 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);
Chuck Lever23475d62005-08-11 16:25:08 -0400751 xprt_release_write(xprt, task);
752 task->tk_status = -EIO;
Chuck Lever23475d62005-08-11 16:25:08 -0400753 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754}
755
Chuck Lever9903cd12005-08-11 16:25:26 -0400756/**
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 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 */
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700762struct rpc_rqst *xprt_lookup_rqst(struct rpc_xprt *xprt, __be32 xid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763{
Pavel Emelyanov8f3a6de2010-10-05 23:30:19 +0400764 struct rpc_rqst *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Pavel Emelyanov8f3a6de2010-10-05 23:30:19 +0400766 list_for_each_entry(entry, &xprt->recv, rq_list)
Chuck Lever262ca072006-03-20 13:44:16 -0500767 if (entry->rq_xid == xid)
768 return entry;
Chuck Lever46121cf2007-01-31 12:14:08 -0500769
770 dprintk("RPC: xprt_lookup_rqst did not find xid %08x\n",
771 ntohl(xid));
Chuck Lever262ca072006-03-20 13:44:16 -0500772 xprt->stat.bad_xids++;
773 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400775EXPORT_SYMBOL_GPL(xprt_lookup_rqst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Chuck Leverbbc72ce2010-05-07 13:34:27 -0400777static void xprt_update_rtt(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778{
Chuck Lever1570c1e2005-08-25 16:25:52 -0700779 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;
Trond Myklebustd60dbb22010-05-13 12:51:49 -0400782 long m = usecs_to_jiffies(ktime_to_us(req->rq_rtt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Chuck Lever1570c1e2005-08-25 16:25:52 -0700784 if (timer) {
785 if (req->rq_ntrans == 1)
Chuck Leverff839972010-05-07 13:34:47 -0400786 rpc_update_rtt(rtt, timer, m);
Chuck Lever1570c1e2005-08-25 16:25:52 -0700787 rpc_set_timeo(rtt, timer, req->rq_ntrans - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 }
Chuck Lever1570c1e2005-08-25 16:25:52 -0700789}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
Chuck Lever1570c1e2005-08-25 16:25:52 -0700791/**
792 * xprt_complete_rqst - called when reply processing is complete
793 * @task: RPC request that recently completed
794 * @copied: actual number of bytes received from the transport
795 *
796 * Caller holds transport lock.
797 */
798void xprt_complete_rqst(struct rpc_task *task, int copied)
799{
800 struct rpc_rqst *req = task->tk_rqstp;
Trond Myklebustfda13932008-02-22 16:34:12 -0500801 struct rpc_xprt *xprt = req->rq_xprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Chuck Lever1570c1e2005-08-25 16:25:52 -0700803 dprintk("RPC: %5u xid %08x complete (%d bytes received)\n",
804 task->tk_pid, ntohl(req->rq_xid), copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
Trond Myklebustfda13932008-02-22 16:34:12 -0500806 xprt->stat.recvs++;
Trond Myklebustd60dbb22010-05-13 12:51:49 -0400807 req->rq_rtt = ktime_sub(ktime_get(), req->rq_xtime);
Chuck Leverbbc72ce2010-05-07 13:34:27 -0400808 if (xprt->ops->timer != NULL)
809 xprt_update_rtt(task);
Chuck Leveref759a22006-03-20 13:44:17 -0500810
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 list_del_init(&req->rq_list);
Trond Myklebust1e799b62008-03-21 16:19:41 -0400812 req->rq_private_buf.len = copied;
Ricardo Labiagadd2b63d2009-04-01 09:23:28 -0400813 /* Ensure all writes are done before we update */
814 /* req->rq_reply_bytes_recvd */
Trond Myklebust43ac3f22006-03-20 13:44:51 -0500815 smp_wmb();
Ricardo Labiagadd2b63d2009-04-01 09:23:28 -0400816 req->rq_reply_bytes_recvd = copied;
Trond Myklebustfda13932008-02-22 16:34:12 -0500817 rpc_wake_up_queued_task(&xprt->pending, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400819EXPORT_SYMBOL_GPL(xprt_complete_rqst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Chuck Lever46c0ee82005-08-25 16:25:52 -0700821static void xprt_timer(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822{
Chuck Lever46c0ee82005-08-25 16:25:52 -0700823 struct rpc_rqst *req = task->tk_rqstp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 struct rpc_xprt *xprt = req->rq_xprt;
825
Trond Myklebust5d008372008-02-22 16:34:17 -0500826 if (task->tk_status != -ETIMEDOUT)
827 return;
Chuck Lever46121cf2007-01-31 12:14:08 -0500828 dprintk("RPC: %5u xprt_timer\n", task->tk_pid);
Chuck Lever46c0ee82005-08-25 16:25:52 -0700829
Trond Myklebust5d008372008-02-22 16:34:17 -0500830 spin_lock_bh(&xprt->transport_lock);
Ricardo Labiagadd2b63d2009-04-01 09:23:28 -0400831 if (!req->rq_reply_bytes_recvd) {
Chuck Lever46c0ee82005-08-25 16:25:52 -0700832 if (xprt->ops->timer)
833 xprt->ops->timer(task);
Trond Myklebust5d008372008-02-22 16:34:17 -0500834 } else
835 task->tk_status = 0;
836 spin_unlock_bh(&xprt->transport_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837}
838
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300839static inline int xprt_has_timer(struct rpc_xprt *xprt)
840{
841 return xprt->idle_timeout != 0;
842}
843
Chuck Lever9903cd12005-08-11 16:25:26 -0400844/**
845 * xprt_prepare_transmit - reserve the transport before sending a request
846 * @task: RPC task about to send a request
847 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 */
Chuck Lever9903cd12005-08-11 16:25:26 -0400849int xprt_prepare_transmit(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850{
851 struct rpc_rqst *req = task->tk_rqstp;
852 struct rpc_xprt *xprt = req->rq_xprt;
853 int err = 0;
854
Chuck Lever46121cf2007-01-31 12:14:08 -0500855 dprintk("RPC: %5u xprt_prepare_transmit\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400857 spin_lock_bh(&xprt->transport_lock);
Ricardo Labiagadd2b63d2009-04-01 09:23:28 -0400858 if (req->rq_reply_bytes_recvd && !req->rq_bytes_sent) {
859 err = req->rq_reply_bytes_recvd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 goto out_unlock;
861 }
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -0400862 if (!xprt->ops->reserve_xprt(xprt, task))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 err = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864out_unlock:
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400865 spin_unlock_bh(&xprt->transport_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 return err;
867}
868
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400869void xprt_end_transmit(struct rpc_task *task)
Trond Myklebust5e5ce5b2005-10-18 14:20:11 -0700870{
Rahul Iyer343952f2009-04-01 09:23:17 -0400871 xprt_release_write(task->tk_rqstp->rq_xprt, task);
Trond Myklebust5e5ce5b2005-10-18 14:20:11 -0700872}
873
Chuck Lever9903cd12005-08-11 16:25:26 -0400874/**
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)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 struct rpc_rqst *req = task->tk_rqstp;
883 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Levera246b012005-08-11 16:25:23 -0400884 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Chuck Lever46121cf2007-01-31 12:14:08 -0500886 dprintk("RPC: %5u xprt_transmit(%u)\n", task->tk_pid, req->rq_slen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Ricardo Labiagadd2b63d2009-04-01 09:23:28 -0400888 if (!req->rq_reply_bytes_recvd) {
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -0400889 if (list_empty(&req->rq_list) && rpc_reply_expected(task)) {
890 /*
891 * Add to the list only if we're expecting a reply
892 */
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400893 spin_lock_bh(&xprt->transport_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 /* 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);
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400899 spin_unlock_bh(&xprt->transport_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 xprt_reset_majortimeo(req);
Trond Myklebust0f9dc2b2005-06-22 17:16:28 +0000901 /* Turn off autodisconnect */
902 del_singleshot_timer_sync(&xprt->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 }
904 } else if (!req->rq_bytes_sent)
905 return;
906
Trond Myklebust7c1d71c2008-04-17 16:52:57 -0400907 req->rq_connect_cookie = xprt->connect_cookie;
Chuck Leverff839972010-05-07 13:34:47 -0400908 req->rq_xtime = ktime_get();
Chuck Levera246b012005-08-11 16:25:23 -0400909 status = xprt->ops->send_request(task);
Trond Myklebustc8485e42009-03-11 14:37:59 -0400910 if (status != 0) {
911 task->tk_status = status;
Chuck Leverfe3aca22005-08-25 16:25:50 -0700912 return;
913 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
Trond Myklebustc8485e42009-03-11 14:37:59 -0400915 dprintk("RPC: %5u xmit complete\n", task->tk_pid);
Bryan Schumaker468f8612011-04-18 15:57:32 -0400916 task->tk_flags |= RPC_TASK_SENT;
Trond Myklebustc8485e42009-03-11 14:37:59 -0400917 spin_lock_bh(&xprt->transport_lock);
918
919 xprt->ops->set_retrans_timeout(task);
920
921 xprt->stat.sends++;
922 xprt->stat.req_u += xprt->stat.sends - xprt->stat.recvs;
923 xprt->stat.bklog_u += xprt->backlog.qlen;
924
925 /* Don't race with disconnect */
926 if (!xprt_connected(xprt))
927 task->tk_status = -ENOTCONN;
Ricardo Labiagadd2b63d2009-04-01 09:23:28 -0400928 else if (!req->rq_reply_bytes_recvd && rpc_reply_expected(task)) {
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -0400929 /*
930 * Sleep on the pending queue since
931 * we're expecting a reply.
932 */
Trond Myklebustc8485e42009-03-11 14:37:59 -0400933 rpc_sleep_on(&xprt->pending, task, xprt_timer);
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -0400934 }
Trond Myklebustc8485e42009-03-11 14:37:59 -0400935 spin_unlock_bh(&xprt->transport_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936}
937
Trond Myklebustee5ebe82010-04-16 16:37:01 -0400938static void xprt_alloc_slot(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939{
940 struct rpc_xprt *xprt = task->tk_xprt;
941
942 task->tk_status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 if (!list_empty(&xprt->free)) {
944 struct rpc_rqst *req = list_entry(xprt->free.next, struct rpc_rqst, rq_list);
945 list_del_init(&req->rq_list);
946 task->tk_rqstp = req;
947 xprt_request_init(task, xprt);
948 return;
949 }
Chuck Lever46121cf2007-01-31 12:14:08 -0500950 dprintk("RPC: waiting for request slot\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 task->tk_status = -EAGAIN;
Trond Myklebust5d008372008-02-22 16:34:17 -0500952 rpc_sleep_on(&xprt->backlog, task, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953}
954
Trond Myklebustee5ebe82010-04-16 16:37:01 -0400955static 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
Trond Myklebust21de0a92011-07-17 16:57:32 -0400965static void xprt_free_all_slots(struct rpc_xprt *xprt)
966{
967 struct rpc_rqst *req;
968 while (!list_empty(&xprt->free)) {
969 req = list_first_entry(&xprt->free, struct rpc_rqst, rq_list);
970 list_del(&req->rq_list);
971 kfree(req);
972 }
973}
974
975struct rpc_xprt *xprt_alloc(struct net *net, int size, int num_prealloc)
Pavel Emelyanovbd1722d2010-09-29 16:02:43 +0400976{
977 struct rpc_xprt *xprt;
Trond Myklebust21de0a92011-07-17 16:57:32 -0400978 struct rpc_rqst *req;
979 int i;
Pavel Emelyanovbd1722d2010-09-29 16:02:43 +0400980
981 xprt = kzalloc(size, GFP_KERNEL);
982 if (xprt == NULL)
983 goto out;
984
Trond Myklebust21de0a92011-07-17 16:57:32 -0400985 xprt_init(xprt, net);
986
987 for (i = 0; i < num_prealloc; i++) {
988 req = kzalloc(sizeof(struct rpc_rqst), GFP_KERNEL);
989 if (!req)
990 break;
991 list_add(&req->rq_list, &xprt->free);
992 }
993 if (i < num_prealloc)
Pavel Emelyanovbd1722d2010-09-29 16:02:43 +0400994 goto out_free;
Trond Myklebust21de0a92011-07-17 16:57:32 -0400995 xprt->max_reqs = num_prealloc;
Pavel Emelyanovbd1722d2010-09-29 16:02:43 +0400996
997 return xprt;
998
999out_free:
Trond Myklebust21de0a92011-07-17 16:57:32 -04001000 xprt_free(xprt);
Pavel Emelyanovbd1722d2010-09-29 16:02:43 +04001001out:
1002 return NULL;
1003}
1004EXPORT_SYMBOL_GPL(xprt_alloc);
1005
Pavel Emelyanove204e622010-09-29 16:03:13 +04001006void xprt_free(struct rpc_xprt *xprt)
1007{
Pavel Emelyanov37aa2132010-09-29 16:05:43 +04001008 put_net(xprt->xprt_net);
Trond Myklebust21de0a92011-07-17 16:57:32 -04001009 xprt_free_all_slots(xprt);
Pavel Emelyanove204e622010-09-29 16:03:13 +04001010 kfree(xprt);
1011}
1012EXPORT_SYMBOL_GPL(xprt_free);
1013
Chuck Lever9903cd12005-08-11 16:25:26 -04001014/**
1015 * xprt_reserve - allocate an RPC request slot
1016 * @task: RPC task requesting a slot allocation
1017 *
1018 * If no more slots are available, place the task on the transport's
1019 * backlog queue.
1020 */
1021void xprt_reserve(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022{
1023 struct rpc_xprt *xprt = task->tk_xprt;
1024
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -04001025 task->tk_status = 0;
1026 if (task->tk_rqstp != NULL)
1027 return;
1028
1029 /* Note: grabbing the xprt_lock_write() here is not strictly needed,
1030 * but ensures that we throttle new slot allocation if the transport
1031 * is congested (e.g. if reconnecting or if we're out of socket
1032 * write buffer space).
1033 */
1034 task->tk_timeout = 0;
1035 task->tk_status = -EAGAIN;
1036 if (!xprt_lock_write(xprt, task))
1037 return;
1038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 task->tk_status = -EIO;
Trond Myklebust0065db32006-01-03 09:55:56 +01001040 spin_lock(&xprt->reserve_lock);
Trond Myklebustee5ebe82010-04-16 16:37:01 -04001041 xprt_alloc_slot(task);
Trond Myklebust0065db32006-01-03 09:55:56 +01001042 spin_unlock(&xprt->reserve_lock);
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -04001043 xprt_release_write(xprt, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044}
1045
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001046static inline __be32 xprt_alloc_xid(struct rpc_xprt *xprt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047{
Eric Dumazet0eae88f2010-04-20 19:06:52 -07001048 return (__force __be32)xprt->xid++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049}
1050
1051static inline void xprt_init_xid(struct rpc_xprt *xprt)
1052{
Chuck Leverbf3fcf82006-05-25 01:40:51 -04001053 xprt->xid = net_random();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054}
1055
Chuck Lever9903cd12005-08-11 16:25:26 -04001056static void xprt_request_init(struct rpc_task *task, struct rpc_xprt *xprt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057{
1058 struct rpc_rqst *req = task->tk_rqstp;
1059
Trond Myklebustba7392b2007-12-20 16:03:55 -05001060 req->rq_timeout = task->tk_client->cl_timeout->to_initval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 req->rq_task = task;
1062 req->rq_xprt = xprt;
Chuck Lever02107142006-01-03 09:55:49 +01001063 req->rq_buffer = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 req->rq_xid = xprt_alloc_xid(xprt);
J. Bruce Fieldsead5e1c2005-10-13 16:54:43 -04001065 req->rq_release_snd_buf = NULL;
Trond Myklebustda458282006-08-31 15:44:52 -04001066 xprt_reset_majortimeo(req);
Chuck Lever46121cf2007-01-31 12:14:08 -05001067 dprintk("RPC: %5u reserved req %p xid %08x\n", task->tk_pid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 req, ntohl(req->rq_xid));
1069}
1070
Chuck Lever9903cd12005-08-11 16:25:26 -04001071/**
1072 * xprt_release - release an RPC request slot
1073 * @task: task which is finished with the slot
1074 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 */
Chuck Lever9903cd12005-08-11 16:25:26 -04001076void xprt_release(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077{
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -04001078 struct rpc_xprt *xprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 struct rpc_rqst *req;
1080
1081 if (!(req = task->tk_rqstp))
1082 return;
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -04001083
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -04001084 xprt = req->rq_xprt;
Chuck Lever11c556b2006-03-20 13:44:22 -05001085 rpc_count_iostats(task);
Chuck Lever4a0f8c02005-08-11 16:25:32 -04001086 spin_lock_bh(&xprt->transport_lock);
Chuck Lever49e9a892005-08-25 16:25:51 -07001087 xprt->ops->release_xprt(xprt, task);
Chuck Levera58dd392005-08-25 16:25:53 -07001088 if (xprt->ops->release_request)
1089 xprt->ops->release_request(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 if (!list_empty(&req->rq_list))
1091 list_del(&req->rq_list);
1092 xprt->last_used = jiffies;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001093 if (list_empty(&xprt->recv) && xprt_has_timer(xprt))
Chuck Levera246b012005-08-11 16:25:23 -04001094 mod_timer(&xprt->timer,
Chuck Lever03bf4b72005-08-25 16:25:55 -07001095 xprt->last_used + xprt->idle_timeout);
Chuck Lever4a0f8c02005-08-11 16:25:32 -04001096 spin_unlock_bh(&xprt->transport_lock);
Trond Myklebustee5ebe82010-04-16 16:37:01 -04001097 if (req->rq_buffer)
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -04001098 xprt->ops->buf_free(req->rq_buffer);
Trond Myklebusta17c2152010-07-31 14:29:08 -04001099 if (req->rq_cred != NULL)
1100 put_rpccred(req->rq_cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 task->tk_rqstp = NULL;
J. Bruce Fieldsead5e1c2005-10-13 16:54:43 -04001102 if (req->rq_release_snd_buf)
1103 req->rq_release_snd_buf(req);
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -04001104
Chuck Lever46121cf2007-01-31 12:14:08 -05001105 dprintk("RPC: %5u release request %p\n", task->tk_pid, req);
Trond Myklebustee5ebe82010-04-16 16:37:01 -04001106 if (likely(!bc_prealloc(req)))
1107 xprt_free_slot(xprt, req);
1108 else
Trond Myklebustc9acb422010-03-19 15:36:22 -04001109 xprt_free_bc_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110}
1111
Trond Myklebust21de0a92011-07-17 16:57:32 -04001112static void xprt_init(struct rpc_xprt *xprt, struct net *net)
Chuck Leverc2866762006-08-22 20:06:20 -04001113{
Trond Myklebust21de0a92011-07-17 16:57:32 -04001114 atomic_set(&xprt->count, 1);
Chuck Leverc2866762006-08-22 20:06:20 -04001115
1116 spin_lock_init(&xprt->transport_lock);
1117 spin_lock_init(&xprt->reserve_lock);
1118
1119 INIT_LIST_HEAD(&xprt->free);
1120 INIT_LIST_HEAD(&xprt->recv);
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001121#if defined(CONFIG_SUNRPC_BACKCHANNEL)
Ricardo Labiagaf9acac12009-04-01 09:22:59 -04001122 spin_lock_init(&xprt->bc_pa_lock);
1123 INIT_LIST_HEAD(&xprt->bc_pa_list);
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001124#endif /* CONFIG_SUNRPC_BACKCHANNEL */
Ricardo Labiagaf9acac12009-04-01 09:22:59 -04001125
Chuck Leverc2866762006-08-22 20:06:20 -04001126 xprt->last_used = jiffies;
1127 xprt->cwnd = RPC_INITCWND;
Chuck Levera5090502007-03-29 16:48:04 -04001128 xprt->bind_index = 0;
Chuck Leverc2866762006-08-22 20:06:20 -04001129
1130 rpc_init_wait_queue(&xprt->binding, "xprt_binding");
1131 rpc_init_wait_queue(&xprt->pending, "xprt_pending");
1132 rpc_init_wait_queue(&xprt->sending, "xprt_sending");
1133 rpc_init_wait_queue(&xprt->resend, "xprt_resend");
1134 rpc_init_priority_wait_queue(&xprt->backlog, "xprt_backlog");
1135
Chuck Leverc2866762006-08-22 20:06:20 -04001136 xprt_init_xid(xprt);
1137
Trond Myklebust21de0a92011-07-17 16:57:32 -04001138 xprt->xprt_net = get_net(net);
Trond Myklebust8d9266f2011-07-17 16:01:09 -04001139}
1140
1141/**
1142 * xprt_create_transport - create an RPC transport
1143 * @args: rpc transport creation arguments
1144 *
1145 */
1146struct rpc_xprt *xprt_create_transport(struct xprt_create *args)
1147{
1148 struct rpc_xprt *xprt;
1149 struct xprt_class *t;
1150
1151 spin_lock(&xprt_list_lock);
1152 list_for_each_entry(t, &xprt_list, list) {
1153 if (t->ident == args->ident) {
1154 spin_unlock(&xprt_list_lock);
1155 goto found;
1156 }
1157 }
1158 spin_unlock(&xprt_list_lock);
1159 printk(KERN_ERR "RPC: transport (%d) not supported\n", args->ident);
1160 return ERR_PTR(-EIO);
1161
1162found:
1163 xprt = t->setup(args);
1164 if (IS_ERR(xprt)) {
1165 dprintk("RPC: xprt_create_transport: failed, %ld\n",
1166 -PTR_ERR(xprt));
Trond Myklebust21de0a92011-07-17 16:57:32 -04001167 goto out;
Trond Myklebust8d9266f2011-07-17 16:01:09 -04001168 }
Trond Myklebust21de0a92011-07-17 16:57:32 -04001169 INIT_WORK(&xprt->task_cleanup, xprt_autoclose);
1170 if (xprt_has_timer(xprt))
1171 setup_timer(&xprt->timer, xprt_init_autodisconnect,
1172 (unsigned long)xprt);
1173 else
1174 init_timer(&xprt->timer);
Chuck Lever46121cf2007-01-31 12:14:08 -05001175 dprintk("RPC: created transport %p with %u slots\n", xprt,
Chuck Leverc2866762006-08-22 20:06:20 -04001176 xprt->max_reqs);
Trond Myklebust21de0a92011-07-17 16:57:32 -04001177out:
Chuck Leverc2866762006-08-22 20:06:20 -04001178 return xprt;
1179}
1180
Chuck Lever9903cd12005-08-11 16:25:26 -04001181/**
1182 * xprt_destroy - destroy an RPC transport, killing off all requests.
Trond Myklebusta8de2402011-03-15 19:56:30 -04001183 * @xprt: transport to destroy
Chuck Lever9903cd12005-08-11 16:25:26 -04001184 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 */
Trond Myklebusta8de2402011-03-15 19:56:30 -04001186static void xprt_destroy(struct rpc_xprt *xprt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187{
Chuck Lever46121cf2007-01-31 12:14:08 -05001188 dprintk("RPC: destroying transport %p\n", xprt);
Trond Myklebust0065db32006-01-03 09:55:56 +01001189 xprt->shutdown = 1;
1190 del_timer_sync(&xprt->timer);
Chuck Leverc8541ec2006-10-17 14:44:27 -04001191
Trond Myklebustf6a1cc82008-02-22 17:06:55 -05001192 rpc_destroy_wait_queue(&xprt->binding);
1193 rpc_destroy_wait_queue(&xprt->pending);
1194 rpc_destroy_wait_queue(&xprt->sending);
1195 rpc_destroy_wait_queue(&xprt->resend);
1196 rpc_destroy_wait_queue(&xprt->backlog);
J. Bruce Fieldsc3ae62ae2010-08-03 17:22:20 -04001197 cancel_work_sync(&xprt->task_cleanup);
Chuck Leverc8541ec2006-10-17 14:44:27 -04001198 /*
1199 * Tear down transport state and free the rpc_xprt
1200 */
Chuck Levera246b012005-08-11 16:25:23 -04001201 xprt->ops->destroy(xprt);
Trond Myklebust6b6ca862006-09-05 12:55:57 -04001202}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
Trond Myklebust6b6ca862006-09-05 12:55:57 -04001204/**
1205 * xprt_put - release a reference to an RPC transport.
1206 * @xprt: pointer to the transport
1207 *
1208 */
1209void xprt_put(struct rpc_xprt *xprt)
1210{
Trond Myklebusta8de2402011-03-15 19:56:30 -04001211 if (atomic_dec_and_test(&xprt->count))
1212 xprt_destroy(xprt);
Trond Myklebust6b6ca862006-09-05 12:55:57 -04001213}
1214
1215/**
1216 * xprt_get - return a reference to an RPC transport.
1217 * @xprt: pointer to the transport
1218 *
1219 */
1220struct rpc_xprt *xprt_get(struct rpc_xprt *xprt)
1221{
Trond Myklebusta8de2402011-03-15 19:56:30 -04001222 if (atomic_inc_not_zero(&xprt->count))
1223 return xprt;
1224 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225}