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