blob: 9b6a4d1ea8f800def10f4db686c71d6cf4d6c563 [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;
Trond Myklebust34006ce2011-07-17 18:11:34 -0400198 int priority;
Chuck Lever12a80462005-08-25 16:25:51 -0700199
200 if (test_and_set_bit(XPRT_LOCKED, &xprt->state)) {
201 if (task == xprt->snd_task)
202 return 1;
Chuck Lever12a80462005-08-25 16:25:51 -0700203 goto out_sleep;
204 }
205 xprt->snd_task = task;
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -0400206 if (req != NULL) {
207 req->rq_bytes_sent = 0;
208 req->rq_ntrans++;
209 }
j223yang@asset.uwaterloo.ca4d4a76f2011-03-10 12:40:28 -0500210
Chuck Lever12a80462005-08-25 16:25:51 -0700211 return 1;
212
213out_sleep:
Chuck Lever46121cf2007-01-31 12:14:08 -0500214 dprintk("RPC: %5u failed to lock transport %p\n",
Chuck Lever12a80462005-08-25 16:25:51 -0700215 task->tk_pid, xprt);
216 task->tk_timeout = 0;
217 task->tk_status = -EAGAIN;
Trond Myklebust34006ce2011-07-17 18:11:34 -0400218 if (req == NULL)
219 priority = RPC_PRIORITY_LOW;
220 else if (!req->rq_ntrans)
221 priority = RPC_PRIORITY_NORMAL;
Chuck Lever12a80462005-08-25 16:25:51 -0700222 else
Trond Myklebust34006ce2011-07-17 18:11:34 -0400223 priority = RPC_PRIORITY_HIGH;
224 rpc_sleep_on_priority(&xprt->sending, task, NULL, priority);
Chuck Lever12a80462005-08-25 16:25:51 -0700225 return 0;
226}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400227EXPORT_SYMBOL_GPL(xprt_reserve_xprt);
Chuck Lever12a80462005-08-25 16:25:51 -0700228
Trond Myklebust632e3bd2006-01-03 09:55:55 +0100229static void xprt_clear_locked(struct rpc_xprt *xprt)
230{
231 xprt->snd_task = NULL;
232 if (!test_bit(XPRT_CLOSE_WAIT, &xprt->state) || xprt->shutdown) {
233 smp_mb__before_clear_bit();
234 clear_bit(XPRT_LOCKED, &xprt->state);
235 smp_mb__after_clear_bit();
236 } else
Trond Myklebustc1384c92007-06-14 18:00:42 -0400237 queue_work(rpciod_workqueue, &xprt->task_cleanup);
Trond Myklebust632e3bd2006-01-03 09:55:55 +0100238}
239
Chuck Lever12a80462005-08-25 16:25:51 -0700240/*
241 * xprt_reserve_xprt_cong - serialize write access to transports
242 * @task: task that is requesting access to the transport
243 *
244 * Same as xprt_reserve_xprt, but Van Jacobson congestion control is
245 * integrated into the decision of whether a request is allowed to be
246 * woken up and given access to the transport.
247 */
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -0400248int xprt_reserve_xprt_cong(struct rpc_xprt *xprt, struct rpc_task *task)
Chuck Lever12a80462005-08-25 16:25:51 -0700249{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 struct rpc_rqst *req = task->tk_rqstp;
Trond Myklebust34006ce2011-07-17 18:11:34 -0400251 int priority;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Chuck Lever2226feb2005-08-11 16:25:38 -0400253 if (test_and_set_bit(XPRT_LOCKED, &xprt->state)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 if (task == xprt->snd_task)
255 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 goto out_sleep;
257 }
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -0400258 if (req == NULL) {
259 xprt->snd_task = task;
260 return 1;
261 }
Chuck Lever12a80462005-08-25 16:25:51 -0700262 if (__xprt_get_cong(xprt, task)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 xprt->snd_task = task;
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -0400264 req->rq_bytes_sent = 0;
265 req->rq_ntrans++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 return 1;
267 }
Trond Myklebust632e3bd2006-01-03 09:55:55 +0100268 xprt_clear_locked(xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269out_sleep:
Chuck Lever46121cf2007-01-31 12:14:08 -0500270 dprintk("RPC: %5u failed to lock transport %p\n", task->tk_pid, xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 task->tk_timeout = 0;
272 task->tk_status = -EAGAIN;
Trond Myklebust34006ce2011-07-17 18:11:34 -0400273 if (req == NULL)
274 priority = RPC_PRIORITY_LOW;
275 else if (!req->rq_ntrans)
276 priority = RPC_PRIORITY_NORMAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 else
Trond Myklebust34006ce2011-07-17 18:11:34 -0400278 priority = RPC_PRIORITY_HIGH;
279 rpc_sleep_on_priority(&xprt->sending, task, NULL, priority);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 return 0;
281}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400282EXPORT_SYMBOL_GPL(xprt_reserve_xprt_cong);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Chuck Lever12a80462005-08-25 16:25:51 -0700284static inline int xprt_lock_write(struct rpc_xprt *xprt, struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
286 int retval;
287
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400288 spin_lock_bh(&xprt->transport_lock);
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -0400289 retval = xprt->ops->reserve_xprt(xprt, task);
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400290 spin_unlock_bh(&xprt->transport_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 return retval;
292}
293
Chuck Lever12a80462005-08-25 16:25:51 -0700294static void __xprt_lock_write_next(struct rpc_xprt *xprt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
296 struct rpc_task *task;
Chuck Lever49e9a892005-08-25 16:25:51 -0700297 struct rpc_rqst *req;
298
299 if (test_and_set_bit(XPRT_LOCKED, &xprt->state))
300 return;
301
Trond Myklebust34006ce2011-07-17 18:11:34 -0400302 task = rpc_wake_up_next(&xprt->sending);
303 if (task == NULL)
304 goto out_unlock;
Chuck Lever49e9a892005-08-25 16:25:51 -0700305
306 req = task->tk_rqstp;
307 xprt->snd_task = task;
308 if (req) {
309 req->rq_bytes_sent = 0;
310 req->rq_ntrans++;
311 }
312 return;
313
314out_unlock:
Trond Myklebust632e3bd2006-01-03 09:55:55 +0100315 xprt_clear_locked(xprt);
Chuck Lever49e9a892005-08-25 16:25:51 -0700316}
317
318static void __xprt_lock_write_next_cong(struct rpc_xprt *xprt)
319{
320 struct rpc_task *task;
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -0400321 struct rpc_rqst *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Chuck Lever2226feb2005-08-11 16:25:38 -0400323 if (test_and_set_bit(XPRT_LOCKED, &xprt->state))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 return;
Chuck Lever49e9a892005-08-25 16:25:51 -0700325 if (RPCXPRT_CONGESTED(xprt))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 goto out_unlock;
Trond Myklebust34006ce2011-07-17 18:11:34 -0400327 task = rpc_wake_up_next(&xprt->sending);
328 if (task == NULL)
329 goto out_unlock;
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -0400330
331 req = task->tk_rqstp;
332 if (req == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 xprt->snd_task = task;
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -0400334 return;
335 }
336 if (__xprt_get_cong(xprt, task)) {
337 xprt->snd_task = task;
338 req->rq_bytes_sent = 0;
339 req->rq_ntrans++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 return;
341 }
342out_unlock:
Trond Myklebust632e3bd2006-01-03 09:55:55 +0100343 xprt_clear_locked(xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344}
345
Chuck Lever49e9a892005-08-25 16:25:51 -0700346/**
347 * xprt_release_xprt - allow other requests to use a transport
348 * @xprt: transport with other tasks potentially waiting
349 * @task: task that is releasing access to the transport
350 *
351 * Note that "task" can be NULL. No congestion control is provided.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 */
Chuck Lever49e9a892005-08-25 16:25:51 -0700353void xprt_release_xprt(struct rpc_xprt *xprt, struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
355 if (xprt->snd_task == task) {
Trond Myklebust632e3bd2006-01-03 09:55:55 +0100356 xprt_clear_locked(xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 __xprt_lock_write_next(xprt);
358 }
359}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400360EXPORT_SYMBOL_GPL(xprt_release_xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Chuck Lever49e9a892005-08-25 16:25:51 -0700362/**
363 * xprt_release_xprt_cong - allow other requests to use a transport
364 * @xprt: transport with other tasks potentially waiting
365 * @task: task that is releasing access to the transport
366 *
367 * Note that "task" can be NULL. Another task is awoken to use the
368 * transport if the transport's congestion window allows it.
369 */
370void xprt_release_xprt_cong(struct rpc_xprt *xprt, struct rpc_task *task)
371{
372 if (xprt->snd_task == task) {
Trond Myklebust632e3bd2006-01-03 09:55:55 +0100373 xprt_clear_locked(xprt);
Chuck Lever49e9a892005-08-25 16:25:51 -0700374 __xprt_lock_write_next_cong(xprt);
375 }
376}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400377EXPORT_SYMBOL_GPL(xprt_release_xprt_cong);
Chuck Lever49e9a892005-08-25 16:25:51 -0700378
379static inline void xprt_release_write(struct rpc_xprt *xprt, struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400381 spin_lock_bh(&xprt->transport_lock);
Chuck Lever49e9a892005-08-25 16:25:51 -0700382 xprt->ops->release_xprt(xprt, task);
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400383 spin_unlock_bh(&xprt->transport_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384}
385
386/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 * Van Jacobson congestion avoidance. Check if the congestion window
388 * overflowed. Put the task to sleep if this is the case.
389 */
390static int
391__xprt_get_cong(struct rpc_xprt *xprt, struct rpc_task *task)
392{
393 struct rpc_rqst *req = task->tk_rqstp;
394
395 if (req->rq_cong)
396 return 1;
Chuck Lever46121cf2007-01-31 12:14:08 -0500397 dprintk("RPC: %5u xprt_cwnd_limited cong = %lu cwnd = %lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 task->tk_pid, xprt->cong, xprt->cwnd);
399 if (RPCXPRT_CONGESTED(xprt))
400 return 0;
401 req->rq_cong = 1;
402 xprt->cong += RPC_CWNDSCALE;
403 return 1;
404}
405
406/*
407 * Adjust the congestion window, and wake up the next task
408 * that has been sleeping due to congestion
409 */
410static void
411__xprt_put_cong(struct rpc_xprt *xprt, struct rpc_rqst *req)
412{
413 if (!req->rq_cong)
414 return;
415 req->rq_cong = 0;
416 xprt->cong -= RPC_CWNDSCALE;
Chuck Lever49e9a892005-08-25 16:25:51 -0700417 __xprt_lock_write_next_cong(xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418}
419
Chuck Lever46c0ee82005-08-25 16:25:52 -0700420/**
Chuck Levera58dd392005-08-25 16:25:53 -0700421 * xprt_release_rqst_cong - housekeeping when request is complete
422 * @task: RPC request that recently completed
423 *
424 * Useful for transports that require congestion control.
425 */
426void xprt_release_rqst_cong(struct rpc_task *task)
427{
428 __xprt_put_cong(task->tk_xprt, task->tk_rqstp);
429}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400430EXPORT_SYMBOL_GPL(xprt_release_rqst_cong);
Chuck Levera58dd392005-08-25 16:25:53 -0700431
432/**
Chuck Lever46c0ee82005-08-25 16:25:52 -0700433 * xprt_adjust_cwnd - adjust transport congestion window
434 * @task: recently completed RPC request used to adjust window
435 * @result: result code of completed RPC request
436 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 * We use a time-smoothed congestion estimator to avoid heavy oscillation.
438 */
Chuck Lever46c0ee82005-08-25 16:25:52 -0700439void xprt_adjust_cwnd(struct rpc_task *task, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
Chuck Lever46c0ee82005-08-25 16:25:52 -0700441 struct rpc_rqst *req = task->tk_rqstp;
442 struct rpc_xprt *xprt = task->tk_xprt;
443 unsigned long cwnd = xprt->cwnd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 if (result >= 0 && cwnd <= xprt->cong) {
446 /* The (cwnd >> 1) term makes sure
447 * the result gets rounded properly. */
448 cwnd += (RPC_CWNDSCALE * RPC_CWNDSCALE + (cwnd >> 1)) / cwnd;
449 if (cwnd > RPC_MAXCWND(xprt))
450 cwnd = RPC_MAXCWND(xprt);
Chuck Lever49e9a892005-08-25 16:25:51 -0700451 __xprt_lock_write_next_cong(xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 } else if (result == -ETIMEDOUT) {
453 cwnd >>= 1;
454 if (cwnd < RPC_CWNDSCALE)
455 cwnd = RPC_CWNDSCALE;
456 }
Chuck Lever46121cf2007-01-31 12:14:08 -0500457 dprintk("RPC: cong %ld, cwnd was %ld, now %ld\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 xprt->cong, xprt->cwnd, cwnd);
459 xprt->cwnd = cwnd;
Chuck Lever46c0ee82005-08-25 16:25:52 -0700460 __xprt_put_cong(xprt, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400462EXPORT_SYMBOL_GPL(xprt_adjust_cwnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Chuck Lever44fbac22005-08-11 16:25:44 -0400464/**
465 * xprt_wake_pending_tasks - wake all tasks on a transport's pending queue
466 * @xprt: transport with waiting tasks
467 * @status: result code to plant in each task before waking it
468 *
469 */
470void xprt_wake_pending_tasks(struct rpc_xprt *xprt, int status)
471{
472 if (status < 0)
473 rpc_wake_up_status(&xprt->pending, status);
474 else
475 rpc_wake_up(&xprt->pending);
476}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400477EXPORT_SYMBOL_GPL(xprt_wake_pending_tasks);
Chuck Lever44fbac22005-08-11 16:25:44 -0400478
Chuck Leverc7b2cae2005-08-11 16:25:50 -0400479/**
480 * xprt_wait_for_buffer_space - wait for transport output buffer to clear
481 * @task: task to be put to sleep
Randy Dunlap0b80ae42008-04-26 22:59:02 -0700482 * @action: function pointer to be executed after wait
Chuck Leverc7b2cae2005-08-11 16:25:50 -0400483 */
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400484void xprt_wait_for_buffer_space(struct rpc_task *task, rpc_action action)
Chuck Leverc7b2cae2005-08-11 16:25:50 -0400485{
486 struct rpc_rqst *req = task->tk_rqstp;
487 struct rpc_xprt *xprt = req->rq_xprt;
488
489 task->tk_timeout = req->rq_timeout;
Trond Myklebustb6ddf642008-04-17 18:52:19 -0400490 rpc_sleep_on(&xprt->pending, task, action);
Chuck Leverc7b2cae2005-08-11 16:25:50 -0400491}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400492EXPORT_SYMBOL_GPL(xprt_wait_for_buffer_space);
Chuck Leverc7b2cae2005-08-11 16:25:50 -0400493
494/**
495 * xprt_write_space - wake the task waiting for transport output buffer space
496 * @xprt: transport with waiting tasks
497 *
498 * Can be called in a soft IRQ context, so xprt_write_space never sleeps.
499 */
500void xprt_write_space(struct rpc_xprt *xprt)
501{
502 if (unlikely(xprt->shutdown))
503 return;
504
505 spin_lock_bh(&xprt->transport_lock);
506 if (xprt->snd_task) {
Chuck Lever46121cf2007-01-31 12:14:08 -0500507 dprintk("RPC: write space: waking waiting task on "
508 "xprt %p\n", xprt);
Trond Myklebustfda13932008-02-22 16:34:12 -0500509 rpc_wake_up_queued_task(&xprt->pending, xprt->snd_task);
Chuck Leverc7b2cae2005-08-11 16:25:50 -0400510 }
511 spin_unlock_bh(&xprt->transport_lock);
512}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400513EXPORT_SYMBOL_GPL(xprt_write_space);
Chuck Leverc7b2cae2005-08-11 16:25:50 -0400514
Chuck Leverfe3aca22005-08-25 16:25:50 -0700515/**
516 * xprt_set_retrans_timeout_def - set a request's retransmit timeout
517 * @task: task whose timeout is to be set
518 *
519 * Set a request's retransmit timeout based on the transport's
520 * default timeout parameters. Used by transports that don't adjust
521 * the retransmit timeout based on round-trip time estimation.
522 */
523void xprt_set_retrans_timeout_def(struct rpc_task *task)
524{
525 task->tk_timeout = task->tk_rqstp->rq_timeout;
526}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400527EXPORT_SYMBOL_GPL(xprt_set_retrans_timeout_def);
Chuck Leverfe3aca22005-08-25 16:25:50 -0700528
529/*
530 * xprt_set_retrans_timeout_rtt - set a request's retransmit timeout
531 * @task: task whose timeout is to be set
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800532 *
Chuck Leverfe3aca22005-08-25 16:25:50 -0700533 * Set a request's retransmit timeout using the RTT estimator.
534 */
535void xprt_set_retrans_timeout_rtt(struct rpc_task *task)
536{
537 int timer = task->tk_msg.rpc_proc->p_timer;
Trond Myklebustba7392b2007-12-20 16:03:55 -0500538 struct rpc_clnt *clnt = task->tk_client;
539 struct rpc_rtt *rtt = clnt->cl_rtt;
Chuck Leverfe3aca22005-08-25 16:25:50 -0700540 struct rpc_rqst *req = task->tk_rqstp;
Trond Myklebustba7392b2007-12-20 16:03:55 -0500541 unsigned long max_timeout = clnt->cl_timeout->to_maxval;
Chuck Leverfe3aca22005-08-25 16:25:50 -0700542
543 task->tk_timeout = rpc_calc_rto(rtt, timer);
544 task->tk_timeout <<= rpc_ntimeo(rtt, timer) + req->rq_retries;
545 if (task->tk_timeout > max_timeout || task->tk_timeout == 0)
546 task->tk_timeout = max_timeout;
547}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400548EXPORT_SYMBOL_GPL(xprt_set_retrans_timeout_rtt);
Chuck Leverfe3aca22005-08-25 16:25:50 -0700549
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550static void xprt_reset_majortimeo(struct rpc_rqst *req)
551{
Trond Myklebustba7392b2007-12-20 16:03:55 -0500552 const struct rpc_timeout *to = req->rq_task->tk_client->cl_timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
554 req->rq_majortimeo = req->rq_timeout;
555 if (to->to_exponential)
556 req->rq_majortimeo <<= to->to_retries;
557 else
558 req->rq_majortimeo += to->to_increment * to->to_retries;
559 if (req->rq_majortimeo > to->to_maxval || req->rq_majortimeo == 0)
560 req->rq_majortimeo = to->to_maxval;
561 req->rq_majortimeo += jiffies;
562}
563
Chuck Lever9903cd12005-08-11 16:25:26 -0400564/**
565 * xprt_adjust_timeout - adjust timeout values for next retransmit
566 * @req: RPC request containing parameters to use for the adjustment
567 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 */
569int xprt_adjust_timeout(struct rpc_rqst *req)
570{
571 struct rpc_xprt *xprt = req->rq_xprt;
Trond Myklebustba7392b2007-12-20 16:03:55 -0500572 const struct rpc_timeout *to = req->rq_task->tk_client->cl_timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 int status = 0;
574
575 if (time_before(jiffies, req->rq_majortimeo)) {
576 if (to->to_exponential)
577 req->rq_timeout <<= 1;
578 else
579 req->rq_timeout += to->to_increment;
580 if (to->to_maxval && req->rq_timeout >= to->to_maxval)
581 req->rq_timeout = to->to_maxval;
582 req->rq_retries++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 } else {
584 req->rq_timeout = to->to_initval;
585 req->rq_retries = 0;
586 xprt_reset_majortimeo(req);
587 /* Reset the RTT counters == "slow start" */
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400588 spin_lock_bh(&xprt->transport_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 rpc_init_rtt(req->rq_task->tk_client->cl_rtt, to->to_initval);
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400590 spin_unlock_bh(&xprt->transport_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 status = -ETIMEDOUT;
592 }
593
594 if (req->rq_timeout == 0) {
595 printk(KERN_WARNING "xprt_adjust_timeout: rq_timeout = 0!\n");
596 req->rq_timeout = 5 * HZ;
597 }
598 return status;
599}
600
David Howells65f27f32006-11-22 14:55:48 +0000601static void xprt_autoclose(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602{
David Howells65f27f32006-11-22 14:55:48 +0000603 struct rpc_xprt *xprt =
604 container_of(work, struct rpc_xprt, task_cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Chuck Levera246b012005-08-11 16:25:23 -0400606 xprt->ops->close(xprt);
Trond Myklebust66af1e52007-11-06 10:18:36 -0500607 clear_bit(XPRT_CLOSE_WAIT, &xprt->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 xprt_release_write(xprt, NULL);
609}
610
Chuck Lever9903cd12005-08-11 16:25:26 -0400611/**
Trond Myklebust62da3b22007-11-06 18:44:20 -0500612 * xprt_disconnect_done - mark a transport as disconnected
Chuck Lever9903cd12005-08-11 16:25:26 -0400613 * @xprt: transport to flag for disconnect
614 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 */
Trond Myklebust62da3b22007-11-06 18:44:20 -0500616void xprt_disconnect_done(struct rpc_xprt *xprt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{
Chuck Lever46121cf2007-01-31 12:14:08 -0500618 dprintk("RPC: disconnected transport %p\n", xprt);
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400619 spin_lock_bh(&xprt->transport_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 xprt_clear_connected(xprt);
Trond Myklebust2a491992009-03-11 14:38:00 -0400621 xprt_wake_pending_tasks(xprt, -EAGAIN);
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400622 spin_unlock_bh(&xprt->transport_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623}
Trond Myklebust62da3b22007-11-06 18:44:20 -0500624EXPORT_SYMBOL_GPL(xprt_disconnect_done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Trond Myklebust66af1e52007-11-06 10:18:36 -0500626/**
627 * xprt_force_disconnect - force a transport to disconnect
628 * @xprt: transport to disconnect
629 *
630 */
631void xprt_force_disconnect(struct rpc_xprt *xprt)
632{
633 /* Don't race with the test_bit() in xprt_clear_locked() */
634 spin_lock_bh(&xprt->transport_lock);
635 set_bit(XPRT_CLOSE_WAIT, &xprt->state);
636 /* Try to schedule an autoclose RPC call */
637 if (test_and_set_bit(XPRT_LOCKED, &xprt->state) == 0)
638 queue_work(rpciod_workqueue, &xprt->task_cleanup);
Trond Myklebust2a491992009-03-11 14:38:00 -0400639 xprt_wake_pending_tasks(xprt, -EAGAIN);
Trond Myklebust66af1e52007-11-06 10:18:36 -0500640 spin_unlock_bh(&xprt->transport_lock);
641}
Trond Myklebust66af1e52007-11-06 10:18:36 -0500642
Trond Myklebust7c1d71c2008-04-17 16:52:57 -0400643/**
644 * xprt_conditional_disconnect - force a transport to disconnect
645 * @xprt: transport to disconnect
646 * @cookie: 'connection cookie'
647 *
648 * This attempts to break the connection if and only if 'cookie' matches
649 * the current transport 'connection cookie'. It ensures that we don't
650 * try to break the connection more than once when we need to retransmit
651 * a batch of RPC requests.
652 *
653 */
654void xprt_conditional_disconnect(struct rpc_xprt *xprt, unsigned int cookie)
655{
656 /* Don't race with the test_bit() in xprt_clear_locked() */
657 spin_lock_bh(&xprt->transport_lock);
658 if (cookie != xprt->connect_cookie)
659 goto out;
660 if (test_bit(XPRT_CLOSING, &xprt->state) || !xprt_connected(xprt))
661 goto out;
662 set_bit(XPRT_CLOSE_WAIT, &xprt->state);
663 /* Try to schedule an autoclose RPC call */
664 if (test_and_set_bit(XPRT_LOCKED, &xprt->state) == 0)
665 queue_work(rpciod_workqueue, &xprt->task_cleanup);
Trond Myklebust2a491992009-03-11 14:38:00 -0400666 xprt_wake_pending_tasks(xprt, -EAGAIN);
Trond Myklebust7c1d71c2008-04-17 16:52:57 -0400667out:
668 spin_unlock_bh(&xprt->transport_lock);
669}
670
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671static void
672xprt_init_autodisconnect(unsigned long data)
673{
674 struct rpc_xprt *xprt = (struct rpc_xprt *)data;
675
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400676 spin_lock(&xprt->transport_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 if (!list_empty(&xprt->recv) || xprt->shutdown)
678 goto out_abort;
Chuck Lever2226feb2005-08-11 16:25:38 -0400679 if (test_and_set_bit(XPRT_LOCKED, &xprt->state))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 goto out_abort;
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400681 spin_unlock(&xprt->transport_lock);
Trond Myklebustf75e6742009-04-21 17:18:20 -0400682 set_bit(XPRT_CONNECTION_CLOSE, &xprt->state);
683 queue_work(rpciod_workqueue, &xprt->task_cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 return;
685out_abort:
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400686 spin_unlock(&xprt->transport_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687}
688
Chuck Lever9903cd12005-08-11 16:25:26 -0400689/**
690 * xprt_connect - schedule a transport connect operation
691 * @task: RPC task that is requesting the connect
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 *
693 */
694void xprt_connect(struct rpc_task *task)
695{
696 struct rpc_xprt *xprt = task->tk_xprt;
697
Chuck Lever46121cf2007-01-31 12:14:08 -0500698 dprintk("RPC: %5u xprt_connect xprt %p %s connected\n", task->tk_pid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 xprt, (xprt_connected(xprt) ? "is" : "is not"));
700
Chuck Leverec739ef2006-08-22 20:06:15 -0400701 if (!xprt_bound(xprt)) {
Trond Myklebust01d37c42009-03-11 14:09:39 -0400702 task->tk_status = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 return;
704 }
705 if (!xprt_lock_write(xprt, task))
706 return;
Trond Myklebustfeb8ca32009-12-03 08:10:17 -0500707
708 if (test_and_clear_bit(XPRT_CLOSE_WAIT, &xprt->state))
709 xprt->ops->close(xprt);
710
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 if (xprt_connected(xprt))
Chuck Levera246b012005-08-11 16:25:23 -0400712 xprt_release_write(xprt, task);
713 else {
714 if (task->tk_rqstp)
715 task->tk_rqstp->rq_bytes_sent = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
Trond Myklebusta8ce4a82010-04-16 16:42:12 -0400717 task->tk_timeout = task->tk_rqstp->rq_timeout;
Trond Myklebust5d008372008-02-22 16:34:17 -0500718 rpc_sleep_on(&xprt->pending, task, xprt_connect_status);
Trond Myklebust0b9e7942010-04-16 16:41:57 -0400719
720 if (test_bit(XPRT_CLOSING, &xprt->state))
721 return;
722 if (xprt_test_and_set_connecting(xprt))
723 return;
Chuck Lever262ca072006-03-20 13:44:16 -0500724 xprt->stat.connect_start = jiffies;
Chuck Levera246b012005-08-11 16:25:23 -0400725 xprt->ops->connect(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727}
728
Chuck Lever9903cd12005-08-11 16:25:26 -0400729static void xprt_connect_status(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
731 struct rpc_xprt *xprt = task->tk_xprt;
732
Chuck Levercd983ef2008-06-11 17:56:13 -0400733 if (task->tk_status == 0) {
Chuck Lever262ca072006-03-20 13:44:16 -0500734 xprt->stat.connect_count++;
735 xprt->stat.connect_time += (long)jiffies - xprt->stat.connect_start;
Chuck Lever46121cf2007-01-31 12:14:08 -0500736 dprintk("RPC: %5u xprt_connect_status: connection established\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 task->tk_pid);
738 return;
739 }
740
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 switch (task->tk_status) {
Trond Myklebust2a491992009-03-11 14:38:00 -0400742 case -EAGAIN:
743 dprintk("RPC: %5u xprt_connect_status: retrying\n", task->tk_pid);
Chuck Lever23475d62005-08-11 16:25:08 -0400744 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 case -ETIMEDOUT:
Chuck Lever46121cf2007-01-31 12:14:08 -0500746 dprintk("RPC: %5u xprt_connect_status: connect attempt timed "
747 "out\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 break;
749 default:
Chuck Lever46121cf2007-01-31 12:14:08 -0500750 dprintk("RPC: %5u xprt_connect_status: error %d connecting to "
751 "server %s\n", task->tk_pid, -task->tk_status,
752 task->tk_client->cl_server);
Chuck Lever23475d62005-08-11 16:25:08 -0400753 xprt_release_write(xprt, task);
754 task->tk_status = -EIO;
Chuck Lever23475d62005-08-11 16:25:08 -0400755 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756}
757
Chuck Lever9903cd12005-08-11 16:25:26 -0400758/**
759 * xprt_lookup_rqst - find an RPC request corresponding to an XID
760 * @xprt: transport on which the original request was transmitted
761 * @xid: RPC XID of incoming reply
762 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 */
Alexey Dobriyand8ed0292006-09-26 22:29:38 -0700764struct rpc_rqst *xprt_lookup_rqst(struct rpc_xprt *xprt, __be32 xid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765{
Pavel Emelyanov8f3a6de2010-10-05 23:30:19 +0400766 struct rpc_rqst *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Pavel Emelyanov8f3a6de2010-10-05 23:30:19 +0400768 list_for_each_entry(entry, &xprt->recv, rq_list)
Chuck Lever262ca072006-03-20 13:44:16 -0500769 if (entry->rq_xid == xid)
770 return entry;
Chuck Lever46121cf2007-01-31 12:14:08 -0500771
772 dprintk("RPC: xprt_lookup_rqst did not find xid %08x\n",
773 ntohl(xid));
Chuck Lever262ca072006-03-20 13:44:16 -0500774 xprt->stat.bad_xids++;
775 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400777EXPORT_SYMBOL_GPL(xprt_lookup_rqst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
Chuck Leverbbc72ce2010-05-07 13:34:27 -0400779static void xprt_update_rtt(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
Chuck Lever1570c1e2005-08-25 16:25:52 -0700781 struct rpc_rqst *req = task->tk_rqstp;
782 struct rpc_rtt *rtt = task->tk_client->cl_rtt;
783 unsigned timer = task->tk_msg.rpc_proc->p_timer;
Trond Myklebustd60dbb22010-05-13 12:51:49 -0400784 long m = usecs_to_jiffies(ktime_to_us(req->rq_rtt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Chuck Lever1570c1e2005-08-25 16:25:52 -0700786 if (timer) {
787 if (req->rq_ntrans == 1)
Chuck Leverff839972010-05-07 13:34:47 -0400788 rpc_update_rtt(rtt, timer, m);
Chuck Lever1570c1e2005-08-25 16:25:52 -0700789 rpc_set_timeo(rtt, timer, req->rq_ntrans - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 }
Chuck Lever1570c1e2005-08-25 16:25:52 -0700791}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Chuck Lever1570c1e2005-08-25 16:25:52 -0700793/**
794 * xprt_complete_rqst - called when reply processing is complete
795 * @task: RPC request that recently completed
796 * @copied: actual number of bytes received from the transport
797 *
798 * Caller holds transport lock.
799 */
800void xprt_complete_rqst(struct rpc_task *task, int copied)
801{
802 struct rpc_rqst *req = task->tk_rqstp;
Trond Myklebustfda13932008-02-22 16:34:12 -0500803 struct rpc_xprt *xprt = req->rq_xprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
Chuck Lever1570c1e2005-08-25 16:25:52 -0700805 dprintk("RPC: %5u xid %08x complete (%d bytes received)\n",
806 task->tk_pid, ntohl(req->rq_xid), copied);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Trond Myklebustfda13932008-02-22 16:34:12 -0500808 xprt->stat.recvs++;
Trond Myklebustd60dbb22010-05-13 12:51:49 -0400809 req->rq_rtt = ktime_sub(ktime_get(), req->rq_xtime);
Chuck Leverbbc72ce2010-05-07 13:34:27 -0400810 if (xprt->ops->timer != NULL)
811 xprt_update_rtt(task);
Chuck Leveref759a22006-03-20 13:44:17 -0500812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 list_del_init(&req->rq_list);
Trond Myklebust1e799b62008-03-21 16:19:41 -0400814 req->rq_private_buf.len = copied;
Ricardo Labiagadd2b63d2009-04-01 09:23:28 -0400815 /* Ensure all writes are done before we update */
816 /* req->rq_reply_bytes_recvd */
Trond Myklebust43ac3f22006-03-20 13:44:51 -0500817 smp_wmb();
Ricardo Labiagadd2b63d2009-04-01 09:23:28 -0400818 req->rq_reply_bytes_recvd = copied;
Trond Myklebustfda13932008-02-22 16:34:12 -0500819 rpc_wake_up_queued_task(&xprt->pending, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400821EXPORT_SYMBOL_GPL(xprt_complete_rqst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
Chuck Lever46c0ee82005-08-25 16:25:52 -0700823static void xprt_timer(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824{
Chuck Lever46c0ee82005-08-25 16:25:52 -0700825 struct rpc_rqst *req = task->tk_rqstp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 struct rpc_xprt *xprt = req->rq_xprt;
827
Trond Myklebust5d008372008-02-22 16:34:17 -0500828 if (task->tk_status != -ETIMEDOUT)
829 return;
Chuck Lever46121cf2007-01-31 12:14:08 -0500830 dprintk("RPC: %5u xprt_timer\n", task->tk_pid);
Chuck Lever46c0ee82005-08-25 16:25:52 -0700831
Trond Myklebust5d008372008-02-22 16:34:17 -0500832 spin_lock_bh(&xprt->transport_lock);
Ricardo Labiagadd2b63d2009-04-01 09:23:28 -0400833 if (!req->rq_reply_bytes_recvd) {
Chuck Lever46c0ee82005-08-25 16:25:52 -0700834 if (xprt->ops->timer)
835 xprt->ops->timer(task);
Trond Myklebust5d008372008-02-22 16:34:17 -0500836 } else
837 task->tk_status = 0;
838 spin_unlock_bh(&xprt->transport_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839}
840
Rahul Iyer4cfc7e62009-09-10 17:32:28 +0300841static inline int xprt_has_timer(struct rpc_xprt *xprt)
842{
843 return xprt->idle_timeout != 0;
844}
845
Chuck Lever9903cd12005-08-11 16:25:26 -0400846/**
847 * xprt_prepare_transmit - reserve the transport before sending a request
848 * @task: RPC task about to send a request
849 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 */
Chuck Lever9903cd12005-08-11 16:25:26 -0400851int xprt_prepare_transmit(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
853 struct rpc_rqst *req = task->tk_rqstp;
854 struct rpc_xprt *xprt = req->rq_xprt;
855 int err = 0;
856
Chuck Lever46121cf2007-01-31 12:14:08 -0500857 dprintk("RPC: %5u xprt_prepare_transmit\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400859 spin_lock_bh(&xprt->transport_lock);
Ricardo Labiagadd2b63d2009-04-01 09:23:28 -0400860 if (req->rq_reply_bytes_recvd && !req->rq_bytes_sent) {
861 err = req->rq_reply_bytes_recvd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 goto out_unlock;
863 }
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -0400864 if (!xprt->ops->reserve_xprt(xprt, task))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 err = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866out_unlock:
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400867 spin_unlock_bh(&xprt->transport_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 return err;
869}
870
Trond Myklebuste0ab53d2006-07-27 17:22:50 -0400871void xprt_end_transmit(struct rpc_task *task)
Trond Myklebust5e5ce5b2005-10-18 14:20:11 -0700872{
Rahul Iyer343952f2009-04-01 09:23:17 -0400873 xprt_release_write(task->tk_rqstp->rq_xprt, task);
Trond Myklebust5e5ce5b2005-10-18 14:20:11 -0700874}
875
Chuck Lever9903cd12005-08-11 16:25:26 -0400876/**
877 * xprt_transmit - send an RPC request on a transport
878 * @task: controlling RPC task
879 *
880 * We have to copy the iovec because sendmsg fiddles with its contents.
881 */
882void xprt_transmit(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 struct rpc_rqst *req = task->tk_rqstp;
885 struct rpc_xprt *xprt = req->rq_xprt;
Chuck Levera246b012005-08-11 16:25:23 -0400886 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Chuck Lever46121cf2007-01-31 12:14:08 -0500888 dprintk("RPC: %5u xprt_transmit(%u)\n", task->tk_pid, req->rq_slen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
Ricardo Labiagadd2b63d2009-04-01 09:23:28 -0400890 if (!req->rq_reply_bytes_recvd) {
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -0400891 if (list_empty(&req->rq_list) && rpc_reply_expected(task)) {
892 /*
893 * Add to the list only if we're expecting a reply
894 */
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400895 spin_lock_bh(&xprt->transport_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 /* Update the softirq receive buffer */
897 memcpy(&req->rq_private_buf, &req->rq_rcv_buf,
898 sizeof(req->rq_private_buf));
899 /* Add request to the receive list */
900 list_add_tail(&req->rq_list, &xprt->recv);
Chuck Lever4a0f8c02005-08-11 16:25:32 -0400901 spin_unlock_bh(&xprt->transport_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 xprt_reset_majortimeo(req);
Trond Myklebust0f9dc2b2005-06-22 17:16:28 +0000903 /* Turn off autodisconnect */
904 del_singleshot_timer_sync(&xprt->timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 }
906 } else if (!req->rq_bytes_sent)
907 return;
908
Trond Myklebust7c1d71c2008-04-17 16:52:57 -0400909 req->rq_connect_cookie = xprt->connect_cookie;
Chuck Leverff839972010-05-07 13:34:47 -0400910 req->rq_xtime = ktime_get();
Chuck Levera246b012005-08-11 16:25:23 -0400911 status = xprt->ops->send_request(task);
Trond Myklebustc8485e42009-03-11 14:37:59 -0400912 if (status != 0) {
913 task->tk_status = status;
Chuck Leverfe3aca22005-08-25 16:25:50 -0700914 return;
915 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
Trond Myklebustc8485e42009-03-11 14:37:59 -0400917 dprintk("RPC: %5u xmit complete\n", task->tk_pid);
Bryan Schumaker468f8612011-04-18 15:57:32 -0400918 task->tk_flags |= RPC_TASK_SENT;
Trond Myklebustc8485e42009-03-11 14:37:59 -0400919 spin_lock_bh(&xprt->transport_lock);
920
921 xprt->ops->set_retrans_timeout(task);
922
923 xprt->stat.sends++;
924 xprt->stat.req_u += xprt->stat.sends - xprt->stat.recvs;
925 xprt->stat.bklog_u += xprt->backlog.qlen;
926
927 /* Don't race with disconnect */
928 if (!xprt_connected(xprt))
929 task->tk_status = -ENOTCONN;
Ricardo Labiagadd2b63d2009-04-01 09:23:28 -0400930 else if (!req->rq_reply_bytes_recvd && rpc_reply_expected(task)) {
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -0400931 /*
932 * Sleep on the pending queue since
933 * we're expecting a reply.
934 */
Trond Myklebustc8485e42009-03-11 14:37:59 -0400935 rpc_sleep_on(&xprt->pending, task, xprt_timer);
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -0400936 }
Trond Myklebustc8485e42009-03-11 14:37:59 -0400937 spin_unlock_bh(&xprt->transport_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938}
939
Trond Myklebustd9ba1312011-07-17 18:11:30 -0400940static struct rpc_rqst *xprt_dynamic_alloc_slot(struct rpc_xprt *xprt, gfp_t gfp_flags)
941{
942 struct rpc_rqst *req = ERR_PTR(-EAGAIN);
943
944 if (!atomic_add_unless(&xprt->num_reqs, 1, xprt->max_reqs))
945 goto out;
946 req = kzalloc(sizeof(struct rpc_rqst), gfp_flags);
947 if (req != NULL)
948 goto out;
949 atomic_dec(&xprt->num_reqs);
950 req = ERR_PTR(-ENOMEM);
951out:
952 return req;
953}
954
955static bool xprt_dynamic_free_slot(struct rpc_xprt *xprt, struct rpc_rqst *req)
956{
957 if (atomic_add_unless(&xprt->num_reqs, -1, xprt->min_reqs)) {
958 kfree(req);
959 return true;
960 }
961 return false;
962}
963
Trond Myklebustee5ebe82010-04-16 16:37:01 -0400964static void xprt_alloc_slot(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
966 struct rpc_xprt *xprt = task->tk_xprt;
Trond Myklebustd9ba1312011-07-17 18:11:30 -0400967 struct rpc_rqst *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 if (!list_empty(&xprt->free)) {
Trond Myklebustd9ba1312011-07-17 18:11:30 -0400970 req = list_entry(xprt->free.next, struct rpc_rqst, rq_list);
971 list_del(&req->rq_list);
972 goto out_init_req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 }
Trond Myklebustd9ba1312011-07-17 18:11:30 -0400974 req = xprt_dynamic_alloc_slot(xprt, GFP_NOWAIT);
975 if (!IS_ERR(req))
976 goto out_init_req;
977 switch (PTR_ERR(req)) {
978 case -ENOMEM:
979 rpc_delay(task, HZ >> 2);
980 dprintk("RPC: dynamic allocation of request slot "
981 "failed! Retrying\n");
982 break;
983 case -EAGAIN:
984 rpc_sleep_on(&xprt->backlog, task, NULL);
985 dprintk("RPC: waiting for request slot\n");
986 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 task->tk_status = -EAGAIN;
Trond Myklebustd9ba1312011-07-17 18:11:30 -0400988 return;
989out_init_req:
990 task->tk_status = 0;
991 task->tk_rqstp = req;
992 xprt_request_init(task, xprt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993}
994
Trond Myklebustee5ebe82010-04-16 16:37:01 -0400995static void xprt_free_slot(struct rpc_xprt *xprt, struct rpc_rqst *req)
996{
Trond Myklebustd9ba1312011-07-17 18:11:30 -0400997 if (xprt_dynamic_free_slot(xprt, req))
998 return;
999
Trond Myklebustee5ebe82010-04-16 16:37:01 -04001000 memset(req, 0, sizeof(*req)); /* mark unused */
1001
1002 spin_lock(&xprt->reserve_lock);
1003 list_add(&req->rq_list, &xprt->free);
1004 rpc_wake_up_next(&xprt->backlog);
1005 spin_unlock(&xprt->reserve_lock);
1006}
1007
Trond Myklebust21de0a92011-07-17 16:57:32 -04001008static void xprt_free_all_slots(struct rpc_xprt *xprt)
1009{
1010 struct rpc_rqst *req;
1011 while (!list_empty(&xprt->free)) {
1012 req = list_first_entry(&xprt->free, struct rpc_rqst, rq_list);
1013 list_del(&req->rq_list);
1014 kfree(req);
1015 }
1016}
1017
Trond Myklebustd9ba1312011-07-17 18:11:30 -04001018struct rpc_xprt *xprt_alloc(struct net *net, size_t size,
1019 unsigned int num_prealloc,
1020 unsigned int max_alloc)
Pavel Emelyanovbd1722d2010-09-29 16:02:43 +04001021{
1022 struct rpc_xprt *xprt;
Trond Myklebust21de0a92011-07-17 16:57:32 -04001023 struct rpc_rqst *req;
1024 int i;
Pavel Emelyanovbd1722d2010-09-29 16:02:43 +04001025
1026 xprt = kzalloc(size, GFP_KERNEL);
1027 if (xprt == NULL)
1028 goto out;
1029
Trond Myklebust21de0a92011-07-17 16:57:32 -04001030 xprt_init(xprt, net);
1031
1032 for (i = 0; i < num_prealloc; i++) {
1033 req = kzalloc(sizeof(struct rpc_rqst), GFP_KERNEL);
1034 if (!req)
1035 break;
1036 list_add(&req->rq_list, &xprt->free);
1037 }
1038 if (i < num_prealloc)
Pavel Emelyanovbd1722d2010-09-29 16:02:43 +04001039 goto out_free;
Trond Myklebustd9ba1312011-07-17 18:11:30 -04001040 if (max_alloc > num_prealloc)
1041 xprt->max_reqs = max_alloc;
1042 else
1043 xprt->max_reqs = num_prealloc;
1044 xprt->min_reqs = num_prealloc;
1045 atomic_set(&xprt->num_reqs, num_prealloc);
Pavel Emelyanovbd1722d2010-09-29 16:02:43 +04001046
1047 return xprt;
1048
1049out_free:
Trond Myklebust21de0a92011-07-17 16:57:32 -04001050 xprt_free(xprt);
Pavel Emelyanovbd1722d2010-09-29 16:02:43 +04001051out:
1052 return NULL;
1053}
1054EXPORT_SYMBOL_GPL(xprt_alloc);
1055
Pavel Emelyanove204e622010-09-29 16:03:13 +04001056void xprt_free(struct rpc_xprt *xprt)
1057{
Pavel Emelyanov37aa2132010-09-29 16:05:43 +04001058 put_net(xprt->xprt_net);
Trond Myklebust21de0a92011-07-17 16:57:32 -04001059 xprt_free_all_slots(xprt);
Pavel Emelyanove204e622010-09-29 16:03:13 +04001060 kfree(xprt);
1061}
1062EXPORT_SYMBOL_GPL(xprt_free);
1063
Chuck Lever9903cd12005-08-11 16:25:26 -04001064/**
1065 * xprt_reserve - allocate an RPC request slot
1066 * @task: RPC task requesting a slot allocation
1067 *
1068 * If no more slots are available, place the task on the transport's
1069 * backlog queue.
1070 */
1071void xprt_reserve(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072{
1073 struct rpc_xprt *xprt = task->tk_xprt;
1074
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -04001075 task->tk_status = 0;
1076 if (task->tk_rqstp != NULL)
1077 return;
1078
1079 /* Note: grabbing the xprt_lock_write() here is not strictly needed,
1080 * but ensures that we throttle new slot allocation if the transport
1081 * is congested (e.g. if reconnecting or if we're out of socket
1082 * write buffer space).
1083 */
1084 task->tk_timeout = 0;
1085 task->tk_status = -EAGAIN;
1086 if (!xprt_lock_write(xprt, task))
1087 return;
1088
Trond Myklebust0065db32006-01-03 09:55:56 +01001089 spin_lock(&xprt->reserve_lock);
Trond Myklebustee5ebe82010-04-16 16:37:01 -04001090 xprt_alloc_slot(task);
Trond Myklebust0065db32006-01-03 09:55:56 +01001091 spin_unlock(&xprt->reserve_lock);
Trond Myklebust43cedbf0e2011-07-17 16:01:03 -04001092 xprt_release_write(xprt, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093}
1094
Alexey Dobriyand8ed0292006-09-26 22:29:38 -07001095static inline __be32 xprt_alloc_xid(struct rpc_xprt *xprt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096{
Eric Dumazet0eae88f2010-04-20 19:06:52 -07001097 return (__force __be32)xprt->xid++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098}
1099
1100static inline void xprt_init_xid(struct rpc_xprt *xprt)
1101{
Chuck Leverbf3fcf82006-05-25 01:40:51 -04001102 xprt->xid = net_random();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103}
1104
Chuck Lever9903cd12005-08-11 16:25:26 -04001105static void xprt_request_init(struct rpc_task *task, struct rpc_xprt *xprt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106{
1107 struct rpc_rqst *req = task->tk_rqstp;
1108
Trond Myklebustd9ba1312011-07-17 18:11:30 -04001109 INIT_LIST_HEAD(&req->rq_list);
Trond Myklebustba7392b2007-12-20 16:03:55 -05001110 req->rq_timeout = task->tk_client->cl_timeout->to_initval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 req->rq_task = task;
1112 req->rq_xprt = xprt;
Chuck Lever02107142006-01-03 09:55:49 +01001113 req->rq_buffer = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 req->rq_xid = xprt_alloc_xid(xprt);
J. Bruce Fieldsead5e1c2005-10-13 16:54:43 -04001115 req->rq_release_snd_buf = NULL;
Trond Myklebustda458282006-08-31 15:44:52 -04001116 xprt_reset_majortimeo(req);
Chuck Lever46121cf2007-01-31 12:14:08 -05001117 dprintk("RPC: %5u reserved req %p xid %08x\n", task->tk_pid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 req, ntohl(req->rq_xid));
1119}
1120
Chuck Lever9903cd12005-08-11 16:25:26 -04001121/**
1122 * xprt_release - release an RPC request slot
1123 * @task: task which is finished with the slot
1124 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 */
Chuck Lever9903cd12005-08-11 16:25:26 -04001126void xprt_release(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127{
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -04001128 struct rpc_xprt *xprt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 struct rpc_rqst *req;
1130
1131 if (!(req = task->tk_rqstp))
1132 return;
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -04001133
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -04001134 xprt = req->rq_xprt;
Chuck Lever11c556b2006-03-20 13:44:22 -05001135 rpc_count_iostats(task);
Chuck Lever4a0f8c02005-08-11 16:25:32 -04001136 spin_lock_bh(&xprt->transport_lock);
Chuck Lever49e9a892005-08-25 16:25:51 -07001137 xprt->ops->release_xprt(xprt, task);
Chuck Levera58dd392005-08-25 16:25:53 -07001138 if (xprt->ops->release_request)
1139 xprt->ops->release_request(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 if (!list_empty(&req->rq_list))
1141 list_del(&req->rq_list);
1142 xprt->last_used = jiffies;
Rahul Iyer4cfc7e62009-09-10 17:32:28 +03001143 if (list_empty(&xprt->recv) && xprt_has_timer(xprt))
Chuck Levera246b012005-08-11 16:25:23 -04001144 mod_timer(&xprt->timer,
Chuck Lever03bf4b72005-08-25 16:25:55 -07001145 xprt->last_used + xprt->idle_timeout);
Chuck Lever4a0f8c02005-08-11 16:25:32 -04001146 spin_unlock_bh(&xprt->transport_lock);
Trond Myklebustee5ebe82010-04-16 16:37:01 -04001147 if (req->rq_buffer)
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -04001148 xprt->ops->buf_free(req->rq_buffer);
Trond Myklebusta17c2152010-07-31 14:29:08 -04001149 if (req->rq_cred != NULL)
1150 put_rpccred(req->rq_cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 task->tk_rqstp = NULL;
J. Bruce Fieldsead5e1c2005-10-13 16:54:43 -04001152 if (req->rq_release_snd_buf)
1153 req->rq_release_snd_buf(req);
Ricardo Labiaga55ae1aa2009-04-01 09:23:03 -04001154
Chuck Lever46121cf2007-01-31 12:14:08 -05001155 dprintk("RPC: %5u release request %p\n", task->tk_pid, req);
Trond Myklebustee5ebe82010-04-16 16:37:01 -04001156 if (likely(!bc_prealloc(req)))
1157 xprt_free_slot(xprt, req);
1158 else
Trond Myklebustc9acb422010-03-19 15:36:22 -04001159 xprt_free_bc_request(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160}
1161
Trond Myklebust21de0a92011-07-17 16:57:32 -04001162static void xprt_init(struct rpc_xprt *xprt, struct net *net)
Chuck Leverc2866762006-08-22 20:06:20 -04001163{
Trond Myklebust21de0a92011-07-17 16:57:32 -04001164 atomic_set(&xprt->count, 1);
Chuck Leverc2866762006-08-22 20:06:20 -04001165
1166 spin_lock_init(&xprt->transport_lock);
1167 spin_lock_init(&xprt->reserve_lock);
1168
1169 INIT_LIST_HEAD(&xprt->free);
1170 INIT_LIST_HEAD(&xprt->recv);
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001171#if defined(CONFIG_SUNRPC_BACKCHANNEL)
Ricardo Labiagaf9acac12009-04-01 09:22:59 -04001172 spin_lock_init(&xprt->bc_pa_lock);
1173 INIT_LIST_HEAD(&xprt->bc_pa_list);
Trond Myklebust9e00abc2011-07-13 19:20:49 -04001174#endif /* CONFIG_SUNRPC_BACKCHANNEL */
Ricardo Labiagaf9acac12009-04-01 09:22:59 -04001175
Chuck Leverc2866762006-08-22 20:06:20 -04001176 xprt->last_used = jiffies;
1177 xprt->cwnd = RPC_INITCWND;
Chuck Levera5090502007-03-29 16:48:04 -04001178 xprt->bind_index = 0;
Chuck Leverc2866762006-08-22 20:06:20 -04001179
1180 rpc_init_wait_queue(&xprt->binding, "xprt_binding");
1181 rpc_init_wait_queue(&xprt->pending, "xprt_pending");
Trond Myklebust34006ce2011-07-17 18:11:34 -04001182 rpc_init_priority_wait_queue(&xprt->sending, "xprt_sending");
Chuck Leverc2866762006-08-22 20:06:20 -04001183 rpc_init_priority_wait_queue(&xprt->backlog, "xprt_backlog");
1184
Chuck Leverc2866762006-08-22 20:06:20 -04001185 xprt_init_xid(xprt);
1186
Trond Myklebust21de0a92011-07-17 16:57:32 -04001187 xprt->xprt_net = get_net(net);
Trond Myklebust8d9266f2011-07-17 16:01:09 -04001188}
1189
1190/**
1191 * xprt_create_transport - create an RPC transport
1192 * @args: rpc transport creation arguments
1193 *
1194 */
1195struct rpc_xprt *xprt_create_transport(struct xprt_create *args)
1196{
1197 struct rpc_xprt *xprt;
1198 struct xprt_class *t;
1199
1200 spin_lock(&xprt_list_lock);
1201 list_for_each_entry(t, &xprt_list, list) {
1202 if (t->ident == args->ident) {
1203 spin_unlock(&xprt_list_lock);
1204 goto found;
1205 }
1206 }
1207 spin_unlock(&xprt_list_lock);
1208 printk(KERN_ERR "RPC: transport (%d) not supported\n", args->ident);
1209 return ERR_PTR(-EIO);
1210
1211found:
1212 xprt = t->setup(args);
1213 if (IS_ERR(xprt)) {
1214 dprintk("RPC: xprt_create_transport: failed, %ld\n",
1215 -PTR_ERR(xprt));
Trond Myklebust21de0a92011-07-17 16:57:32 -04001216 goto out;
Trond Myklebust8d9266f2011-07-17 16:01:09 -04001217 }
Trond Myklebust21de0a92011-07-17 16:57:32 -04001218 INIT_WORK(&xprt->task_cleanup, xprt_autoclose);
1219 if (xprt_has_timer(xprt))
1220 setup_timer(&xprt->timer, xprt_init_autodisconnect,
1221 (unsigned long)xprt);
1222 else
1223 init_timer(&xprt->timer);
Chuck Lever46121cf2007-01-31 12:14:08 -05001224 dprintk("RPC: created transport %p with %u slots\n", xprt,
Chuck Leverc2866762006-08-22 20:06:20 -04001225 xprt->max_reqs);
Trond Myklebust21de0a92011-07-17 16:57:32 -04001226out:
Chuck Leverc2866762006-08-22 20:06:20 -04001227 return xprt;
1228}
1229
Chuck Lever9903cd12005-08-11 16:25:26 -04001230/**
1231 * xprt_destroy - destroy an RPC transport, killing off all requests.
Trond Myklebusta8de2402011-03-15 19:56:30 -04001232 * @xprt: transport to destroy
Chuck Lever9903cd12005-08-11 16:25:26 -04001233 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 */
Trond Myklebusta8de2402011-03-15 19:56:30 -04001235static void xprt_destroy(struct rpc_xprt *xprt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236{
Chuck Lever46121cf2007-01-31 12:14:08 -05001237 dprintk("RPC: destroying transport %p\n", xprt);
Trond Myklebust0065db32006-01-03 09:55:56 +01001238 xprt->shutdown = 1;
1239 del_timer_sync(&xprt->timer);
Chuck Leverc8541ec2006-10-17 14:44:27 -04001240
Trond Myklebustf6a1cc82008-02-22 17:06:55 -05001241 rpc_destroy_wait_queue(&xprt->binding);
1242 rpc_destroy_wait_queue(&xprt->pending);
1243 rpc_destroy_wait_queue(&xprt->sending);
Trond Myklebustf6a1cc82008-02-22 17:06:55 -05001244 rpc_destroy_wait_queue(&xprt->backlog);
J. Bruce Fieldsc3ae62ae2010-08-03 17:22:20 -04001245 cancel_work_sync(&xprt->task_cleanup);
Chuck Leverc8541ec2006-10-17 14:44:27 -04001246 /*
1247 * Tear down transport state and free the rpc_xprt
1248 */
Chuck Levera246b012005-08-11 16:25:23 -04001249 xprt->ops->destroy(xprt);
Trond Myklebust6b6ca862006-09-05 12:55:57 -04001250}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Trond Myklebust6b6ca862006-09-05 12:55:57 -04001252/**
1253 * xprt_put - release a reference to an RPC transport.
1254 * @xprt: pointer to the transport
1255 *
1256 */
1257void xprt_put(struct rpc_xprt *xprt)
1258{
Trond Myklebusta8de2402011-03-15 19:56:30 -04001259 if (atomic_dec_and_test(&xprt->count))
1260 xprt_destroy(xprt);
Trond Myklebust6b6ca862006-09-05 12:55:57 -04001261}
1262
1263/**
1264 * xprt_get - return a reference to an RPC transport.
1265 * @xprt: pointer to the transport
1266 *
1267 */
1268struct rpc_xprt *xprt_get(struct rpc_xprt *xprt)
1269{
Trond Myklebusta8de2402011-03-15 19:56:30 -04001270 if (atomic_inc_not_zero(&xprt->count))
1271 return xprt;
1272 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273}