blob: 35acdc39bfcb1b59eea1a90c6e0cf5958eb7221d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/net/sunrpc/sched.c
3 *
4 * Scheduling for synchronous and asynchronous RPC requests.
5 *
6 * Copyright (C) 1996 Olaf Kirch, <okir@monad.swb.de>
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -08007 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * TCP NFS related read + write fixes
9 * (C) 1999 Dave Airlie, University of Limerick, Ireland <airlied@linux.ie>
10 */
11
12#include <linux/module.h>
13
14#include <linux/sched.h>
15#include <linux/interrupt.h>
16#include <linux/slab.h>
17#include <linux/mempool.h>
18#include <linux/smp.h>
19#include <linux/smp_lock.h>
20#include <linux/spinlock.h>
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080021#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23#include <linux/sunrpc/clnt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25#ifdef RPC_DEBUG
26#define RPCDBG_FACILITY RPCDBG_SCHED
27#define RPC_TASK_MAGIC_ID 0xf00baa
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#endif
29
30/*
31 * RPC slabs and memory pools
32 */
33#define RPC_BUFFER_MAXSIZE (2048)
34#define RPC_BUFFER_POOLSIZE (8)
35#define RPC_TASK_POOLSIZE (8)
Christoph Lametere18b8902006-12-06 20:33:20 -080036static struct kmem_cache *rpc_task_slabp __read_mostly;
37static struct kmem_cache *rpc_buffer_slabp __read_mostly;
Eric Dumazetba899662005-08-26 12:05:31 -070038static mempool_t *rpc_task_mempool __read_mostly;
39static mempool_t *rpc_buffer_mempool __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
David Howells65f27f32006-11-22 14:55:48 +000041static void rpc_async_schedule(struct work_struct *);
Trond Myklebustbde8f002007-01-24 11:54:53 -080042static void rpc_release_task(struct rpc_task *task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 * RPC tasks sit here while waiting for conditions to improve.
46 */
Trond Myklebusta4a87492007-07-18 13:24:19 -040047static struct rpc_wait_queue delay_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 * rpciod-related stuff
51 */
Trond Myklebust24c5d9d2006-03-20 13:44:08 -050052struct workqueue_struct *rpciod_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 * Disable the timer for a given RPC task. Should be called with
56 * queue->lock and bh_disabled in order to avoid races within
57 * rpc_run_timer().
58 */
59static inline void
60__rpc_disable_timer(struct rpc_task *task)
61{
Chuck Lever46121cf2007-01-31 12:14:08 -050062 dprintk("RPC: %5u disabling timer\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 task->tk_timeout_fn = NULL;
64 task->tk_timeout = 0;
65}
66
67/*
Trond Myklebustfde95c72008-02-22 15:09:26 -050068 * Default timeout handler if none specified by user
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 */
Trond Myklebustfde95c72008-02-22 15:09:26 -050070static void
71__rpc_default_timer(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072{
Trond Myklebustfde95c72008-02-22 15:09:26 -050073 dprintk("RPC: %5u timeout (default timer)\n", task->tk_pid);
74 task->tk_status = -ETIMEDOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075}
76
77/*
78 * Set up a timer for the current task.
79 */
80static inline void
81__rpc_add_timer(struct rpc_task *task, rpc_action timer)
82{
83 if (!task->tk_timeout)
84 return;
85
Chuck Lever46121cf2007-01-31 12:14:08 -050086 dprintk("RPC: %5u setting alarm for %lu ms\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 task->tk_pid, task->tk_timeout * 1000 / HZ);
88
89 if (timer)
90 task->tk_timeout_fn = timer;
91 else
92 task->tk_timeout_fn = __rpc_default_timer;
93 set_bit(RPC_TASK_HAS_TIMER, &task->tk_runstate);
94 mod_timer(&task->tk_timer, jiffies + task->tk_timeout);
95}
96
97/*
98 * Delete any timer for the current task. Because we use del_timer_sync(),
99 * this function should never be called while holding queue->lock.
100 */
101static void
102rpc_delete_timer(struct rpc_task *task)
103{
104 if (RPC_IS_QUEUED(task))
105 return;
106 if (test_and_clear_bit(RPC_TASK_HAS_TIMER, &task->tk_runstate)) {
107 del_singleshot_timer_sync(&task->tk_timer);
Chuck Lever46121cf2007-01-31 12:14:08 -0500108 dprintk("RPC: %5u deleting timer\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 }
110}
111
112/*
113 * Add new request to a priority queue.
114 */
115static void __rpc_add_wait_queue_priority(struct rpc_wait_queue *queue, struct rpc_task *task)
116{
117 struct list_head *q;
118 struct rpc_task *t;
119
120 INIT_LIST_HEAD(&task->u.tk_wait.links);
121 q = &queue->tasks[task->tk_priority];
122 if (unlikely(task->tk_priority > queue->maxpriority))
123 q = &queue->tasks[queue->maxpriority];
124 list_for_each_entry(t, q, u.tk_wait.list) {
Trond Myklebust3ff75762007-07-14 15:40:00 -0400125 if (t->tk_owner == task->tk_owner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 list_add_tail(&task->u.tk_wait.list, &t->u.tk_wait.links);
127 return;
128 }
129 }
130 list_add_tail(&task->u.tk_wait.list, q);
131}
132
133/*
134 * Add new request to wait queue.
135 *
136 * Swapper tasks always get inserted at the head of the queue.
137 * This should avoid many nasty memory deadlocks and hopefully
138 * improve overall performance.
139 * Everyone else gets appended to the queue to ensure proper FIFO behavior.
140 */
141static void __rpc_add_wait_queue(struct rpc_wait_queue *queue, struct rpc_task *task)
142{
143 BUG_ON (RPC_IS_QUEUED(task));
144
145 if (RPC_IS_PRIORITY(queue))
146 __rpc_add_wait_queue_priority(queue, task);
147 else if (RPC_IS_SWAPPER(task))
148 list_add(&task->u.tk_wait.list, &queue->tasks[0]);
149 else
150 list_add_tail(&task->u.tk_wait.list, &queue->tasks[0]);
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500151 task->tk_waitqueue = queue;
Chuck Levere19b63d2006-03-20 13:44:15 -0500152 queue->qlen++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 rpc_set_queued(task);
154
Chuck Lever46121cf2007-01-31 12:14:08 -0500155 dprintk("RPC: %5u added to queue %p \"%s\"\n",
156 task->tk_pid, queue, rpc_qname(queue));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
159/*
160 * Remove request from a priority queue.
161 */
162static void __rpc_remove_wait_queue_priority(struct rpc_task *task)
163{
164 struct rpc_task *t;
165
166 if (!list_empty(&task->u.tk_wait.links)) {
167 t = list_entry(task->u.tk_wait.links.next, struct rpc_task, u.tk_wait.list);
168 list_move(&t->u.tk_wait.list, &task->u.tk_wait.list);
169 list_splice_init(&task->u.tk_wait.links, &t->u.tk_wait.links);
170 }
171 list_del(&task->u.tk_wait.list);
172}
173
174/*
175 * Remove request from queue.
176 * Note: must be called with spin lock held.
177 */
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500178static void __rpc_remove_wait_queue(struct rpc_wait_queue *queue, struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 if (RPC_IS_PRIORITY(queue))
181 __rpc_remove_wait_queue_priority(task);
182 else
183 list_del(&task->u.tk_wait.list);
Chuck Levere19b63d2006-03-20 13:44:15 -0500184 queue->qlen--;
Chuck Lever46121cf2007-01-31 12:14:08 -0500185 dprintk("RPC: %5u removed from queue %p \"%s\"\n",
186 task->tk_pid, queue, rpc_qname(queue));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187}
188
189static inline void rpc_set_waitqueue_priority(struct rpc_wait_queue *queue, int priority)
190{
191 queue->priority = priority;
192 queue->count = 1 << (priority * 2);
193}
194
Trond Myklebust3ff75762007-07-14 15:40:00 -0400195static inline void rpc_set_waitqueue_owner(struct rpc_wait_queue *queue, pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
Trond Myklebust3ff75762007-07-14 15:40:00 -0400197 queue->owner = pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 queue->nr = RPC_BATCH_COUNT;
199}
200
201static inline void rpc_reset_waitqueue_priority(struct rpc_wait_queue *queue)
202{
203 rpc_set_waitqueue_priority(queue, queue->maxpriority);
Trond Myklebust3ff75762007-07-14 15:40:00 -0400204 rpc_set_waitqueue_owner(queue, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205}
206
Trond Myklebust3ff75762007-07-14 15:40:00 -0400207static void __rpc_init_priority_wait_queue(struct rpc_wait_queue *queue, const char *qname, unsigned char nr_queues)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
209 int i;
210
211 spin_lock_init(&queue->lock);
212 for (i = 0; i < ARRAY_SIZE(queue->tasks); i++)
213 INIT_LIST_HEAD(&queue->tasks[i]);
Trond Myklebust3ff75762007-07-14 15:40:00 -0400214 queue->maxpriority = nr_queues - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 rpc_reset_waitqueue_priority(queue);
216#ifdef RPC_DEBUG
217 queue->name = qname;
218#endif
219}
220
221void rpc_init_priority_wait_queue(struct rpc_wait_queue *queue, const char *qname)
222{
Trond Myklebust3ff75762007-07-14 15:40:00 -0400223 __rpc_init_priority_wait_queue(queue, qname, RPC_NR_PRIORITY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
225
226void rpc_init_wait_queue(struct rpc_wait_queue *queue, const char *qname)
227{
Trond Myklebust3ff75762007-07-14 15:40:00 -0400228 __rpc_init_priority_wait_queue(queue, qname, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400230EXPORT_SYMBOL_GPL(rpc_init_wait_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Matthew Wilcox150030b2007-12-06 16:24:39 -0500232static int rpc_wait_bit_killable(void *word)
Trond Myklebust44c28872006-01-03 09:55:06 +0100233{
Matthew Wilcox150030b2007-12-06 16:24:39 -0500234 if (fatal_signal_pending(current))
Trond Myklebust44c28872006-01-03 09:55:06 +0100235 return -ERESTARTSYS;
236 schedule();
237 return 0;
238}
239
Trond Myklebustc44fe702007-06-16 14:17:01 -0400240#ifdef RPC_DEBUG
241static void rpc_task_set_debuginfo(struct rpc_task *task)
242{
243 static atomic_t rpc_pid;
244
245 task->tk_magic = RPC_TASK_MAGIC_ID;
246 task->tk_pid = atomic_inc_return(&rpc_pid);
247}
248#else
249static inline void rpc_task_set_debuginfo(struct rpc_task *task)
250{
251}
252#endif
253
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500254static void rpc_set_active(struct rpc_task *task)
255{
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400256 struct rpc_clnt *clnt;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500257 if (test_and_set_bit(RPC_TASK_ACTIVE, &task->tk_runstate) != 0)
258 return;
Trond Myklebustc44fe702007-06-16 14:17:01 -0400259 rpc_task_set_debuginfo(task);
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500260 /* Add to global list of all tasks */
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400261 clnt = task->tk_client;
262 if (clnt != NULL) {
263 spin_lock(&clnt->cl_lock);
264 list_add_tail(&task->tk_task, &clnt->cl_tasks);
265 spin_unlock(&clnt->cl_lock);
266 }
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500267}
268
Trond Myklebust44c28872006-01-03 09:55:06 +0100269/*
270 * Mark an RPC call as having completed by clearing the 'active' bit
271 */
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500272static void rpc_mark_complete_task(struct rpc_task *task)
Trond Myklebust44c28872006-01-03 09:55:06 +0100273{
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500274 smp_mb__before_clear_bit();
275 clear_bit(RPC_TASK_ACTIVE, &task->tk_runstate);
276 smp_mb__after_clear_bit();
Trond Myklebust44c28872006-01-03 09:55:06 +0100277 wake_up_bit(&task->tk_runstate, RPC_TASK_ACTIVE);
278}
279
280/*
281 * Allow callers to wait for completion of an RPC call
282 */
283int __rpc_wait_for_completion_task(struct rpc_task *task, int (*action)(void *))
284{
285 if (action == NULL)
Matthew Wilcox150030b2007-12-06 16:24:39 -0500286 action = rpc_wait_bit_killable;
Trond Myklebust44c28872006-01-03 09:55:06 +0100287 return wait_on_bit(&task->tk_runstate, RPC_TASK_ACTIVE,
Matthew Wilcox150030b2007-12-06 16:24:39 -0500288 action, TASK_KILLABLE);
Trond Myklebust44c28872006-01-03 09:55:06 +0100289}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400290EXPORT_SYMBOL_GPL(__rpc_wait_for_completion_task);
Trond Myklebust44c28872006-01-03 09:55:06 +0100291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292/*
293 * Make an RPC task runnable.
294 *
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800295 * Note: If the task is ASYNC, this must be called with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 * the spinlock held to protect the wait queue operation.
297 */
298static void rpc_make_runnable(struct rpc_task *task)
299{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 BUG_ON(task->tk_timeout_fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 rpc_clear_queued(task);
Christophe Saoutcc4dc592006-11-05 18:42:48 +0100302 if (rpc_test_and_set_running(task))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 return;
Christophe Saoutcc4dc592006-11-05 18:42:48 +0100304 /* We might have raced */
305 if (RPC_IS_QUEUED(task)) {
306 rpc_clear_running(task);
307 return;
308 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 if (RPC_IS_ASYNC(task)) {
310 int status;
311
David Howells65f27f32006-11-22 14:55:48 +0000312 INIT_WORK(&task->u.tk_work, rpc_async_schedule);
Trond Myklebust32bfb5c2008-02-19 20:04:21 -0500313 status = queue_work(rpciod_workqueue, &task->u.tk_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 if (status < 0) {
315 printk(KERN_WARNING "RPC: failed to add task to queue: error: %d!\n", status);
316 task->tk_status = status;
317 return;
318 }
319 } else
Trond Myklebust96651ab2005-06-22 17:16:21 +0000320 wake_up_bit(&task->tk_runstate, RPC_TASK_QUEUED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321}
322
323/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 * Prepare for sleeping on a wait queue.
325 * By always appending tasks to the list we ensure FIFO behavior.
326 * NB: An RPC task will only receive interrupt-driven events as long
327 * as it's on a wait queue.
328 */
329static void __rpc_sleep_on(struct rpc_wait_queue *q, struct rpc_task *task,
330 rpc_action action, rpc_action timer)
331{
Chuck Lever46121cf2007-01-31 12:14:08 -0500332 dprintk("RPC: %5u sleep_on(queue \"%s\" time %lu)\n",
333 task->tk_pid, rpc_qname(q), jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335 if (!RPC_IS_ASYNC(task) && !RPC_IS_ACTIVATED(task)) {
336 printk(KERN_ERR "RPC: Inactive synchronous task put to sleep!\n");
337 return;
338 }
339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 __rpc_add_wait_queue(q, task);
341
342 BUG_ON(task->tk_callback != NULL);
343 task->tk_callback = action;
344 __rpc_add_timer(task, timer);
345}
346
347void rpc_sleep_on(struct rpc_wait_queue *q, struct rpc_task *task,
348 rpc_action action, rpc_action timer)
349{
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500350 /* Mark the task as being activated if so needed */
351 rpc_set_active(task);
352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 /*
354 * Protect the queue operations.
355 */
356 spin_lock_bh(&q->lock);
357 __rpc_sleep_on(q, task, action, timer);
358 spin_unlock_bh(&q->lock);
359}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400360EXPORT_SYMBOL_GPL(rpc_sleep_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362/**
363 * __rpc_do_wake_up_task - wake up a single rpc_task
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500364 * @queue: wait queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 * @task: task to be woken up
366 *
367 * Caller must hold queue->lock, and have cleared the task queued flag.
368 */
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500369static void __rpc_do_wake_up_task(struct rpc_wait_queue *queue, struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
Chuck Lever46121cf2007-01-31 12:14:08 -0500371 dprintk("RPC: %5u __rpc_wake_up_task (now %lu)\n",
372 task->tk_pid, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374#ifdef RPC_DEBUG
375 BUG_ON(task->tk_magic != RPC_TASK_MAGIC_ID);
376#endif
377 /* Has the task been executed yet? If not, we cannot wake it up! */
378 if (!RPC_IS_ACTIVATED(task)) {
379 printk(KERN_ERR "RPC: Inactive task (%p) being woken up!\n", task);
380 return;
381 }
382
383 __rpc_disable_timer(task);
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500384 __rpc_remove_wait_queue(queue, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386 rpc_make_runnable(task);
387
Chuck Lever46121cf2007-01-31 12:14:08 -0500388 dprintk("RPC: __rpc_wake_up_task done\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389}
390
391/*
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500392 * Wake up a queued task while the queue lock is being held
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 */
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500394static void rpc_wake_up_task_queue_locked(struct rpc_wait_queue *queue, struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500396 if (!RPC_IS_QUEUED(task) || task->tk_waitqueue != queue)
397 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 if (rpc_start_wakeup(task)) {
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500399 __rpc_do_wake_up_task(queue, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 rpc_finish_wakeup(task);
401 }
402}
403
404/*
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500405 * Wake up a task on a specific queue
406 */
407void rpc_wake_up_queued_task(struct rpc_wait_queue *queue, struct rpc_task *task)
408{
409 rcu_read_lock_bh();
410 spin_lock(&queue->lock);
411 rpc_wake_up_task_queue_locked(queue, task);
412 spin_unlock(&queue->lock);
413 rcu_read_unlock_bh();
414}
415EXPORT_SYMBOL_GPL(rpc_wake_up_queued_task);
416
417/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 * Wake up the specified task
419 */
Trond Myklebustfda13932008-02-22 16:34:12 -0500420static void rpc_wake_up_task(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421{
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500422 rpc_wake_up_queued_task(task->tk_waitqueue, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423}
424
425/*
426 * Wake up the next task on a priority queue.
427 */
428static struct rpc_task * __rpc_wake_up_next_priority(struct rpc_wait_queue *queue)
429{
430 struct list_head *q;
431 struct rpc_task *task;
432
433 /*
Trond Myklebust3ff75762007-07-14 15:40:00 -0400434 * Service a batch of tasks from a single owner.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 */
436 q = &queue->tasks[queue->priority];
437 if (!list_empty(q)) {
438 task = list_entry(q->next, struct rpc_task, u.tk_wait.list);
Trond Myklebust3ff75762007-07-14 15:40:00 -0400439 if (queue->owner == task->tk_owner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 if (--queue->nr)
441 goto out;
442 list_move_tail(&task->u.tk_wait.list, q);
443 }
444 /*
445 * Check if we need to switch queues.
446 */
447 if (--queue->count)
Trond Myklebust3ff75762007-07-14 15:40:00 -0400448 goto new_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 }
450
451 /*
452 * Service the next queue.
453 */
454 do {
455 if (q == &queue->tasks[0])
456 q = &queue->tasks[queue->maxpriority];
457 else
458 q = q - 1;
459 if (!list_empty(q)) {
460 task = list_entry(q->next, struct rpc_task, u.tk_wait.list);
461 goto new_queue;
462 }
463 } while (q != &queue->tasks[queue->priority]);
464
465 rpc_reset_waitqueue_priority(queue);
466 return NULL;
467
468new_queue:
469 rpc_set_waitqueue_priority(queue, (unsigned int)(q - &queue->tasks[0]));
Trond Myklebust3ff75762007-07-14 15:40:00 -0400470new_owner:
471 rpc_set_waitqueue_owner(queue, task->tk_owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472out:
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500473 rpc_wake_up_task_queue_locked(queue, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 return task;
475}
476
477/*
478 * Wake up the next task on the wait queue.
479 */
480struct rpc_task * rpc_wake_up_next(struct rpc_wait_queue *queue)
481{
482 struct rpc_task *task = NULL;
483
Chuck Lever46121cf2007-01-31 12:14:08 -0500484 dprintk("RPC: wake_up_next(%p \"%s\")\n",
485 queue, rpc_qname(queue));
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500486 rcu_read_lock_bh();
487 spin_lock(&queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 if (RPC_IS_PRIORITY(queue))
489 task = __rpc_wake_up_next_priority(queue);
490 else {
491 task_for_first(task, &queue->tasks[0])
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500492 rpc_wake_up_task_queue_locked(queue, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 }
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500494 spin_unlock(&queue->lock);
495 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
497 return task;
498}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400499EXPORT_SYMBOL_GPL(rpc_wake_up_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501/**
502 * rpc_wake_up - wake up all rpc_tasks
503 * @queue: rpc_wait_queue on which the tasks are sleeping
504 *
505 * Grabs queue->lock
506 */
507void rpc_wake_up(struct rpc_wait_queue *queue)
508{
Trond Myklebuste6d83d52006-03-13 21:20:48 -0800509 struct rpc_task *task, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 struct list_head *head;
Trond Myklebuste6d83d52006-03-13 21:20:48 -0800511
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500512 rcu_read_lock_bh();
513 spin_lock(&queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 head = &queue->tasks[queue->maxpriority];
515 for (;;) {
Trond Myklebuste6d83d52006-03-13 21:20:48 -0800516 list_for_each_entry_safe(task, next, head, u.tk_wait.list)
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500517 rpc_wake_up_task_queue_locked(queue, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 if (head == &queue->tasks[0])
519 break;
520 head--;
521 }
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500522 spin_unlock(&queue->lock);
523 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400525EXPORT_SYMBOL_GPL(rpc_wake_up);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
527/**
528 * rpc_wake_up_status - wake up all rpc_tasks and set their status value.
529 * @queue: rpc_wait_queue on which the tasks are sleeping
530 * @status: status value to set
531 *
532 * Grabs queue->lock
533 */
534void rpc_wake_up_status(struct rpc_wait_queue *queue, int status)
535{
Trond Myklebuste6d83d52006-03-13 21:20:48 -0800536 struct rpc_task *task, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500539 rcu_read_lock_bh();
540 spin_lock(&queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 head = &queue->tasks[queue->maxpriority];
542 for (;;) {
Trond Myklebuste6d83d52006-03-13 21:20:48 -0800543 list_for_each_entry_safe(task, next, head, u.tk_wait.list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 task->tk_status = status;
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500545 rpc_wake_up_task_queue_locked(queue, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 }
547 if (head == &queue->tasks[0])
548 break;
549 head--;
550 }
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500551 spin_unlock(&queue->lock);
552 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400554EXPORT_SYMBOL_GPL(rpc_wake_up_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Trond Myklebustfde95c72008-02-22 15:09:26 -0500556/*
557 * Run a timeout function.
558 */
559static void rpc_run_timer(unsigned long ptr)
560{
561 struct rpc_task *task = (struct rpc_task *)ptr;
562 void (*callback)(struct rpc_task *);
563
Trond Myklebustfde95c72008-02-22 15:09:26 -0500564 if (RPC_IS_QUEUED(task)) {
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500565 struct rpc_wait_queue *queue = task->tk_waitqueue;
Trond Myklebustfde95c72008-02-22 15:09:26 -0500566 callback = task->tk_timeout_fn;
567
568 dprintk("RPC: %5u running timer\n", task->tk_pid);
569 if (callback != NULL)
570 callback(task);
571 /* Note: we're already in a bh-safe context */
572 spin_lock(&queue->lock);
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500573 rpc_wake_up_task_queue_locked(queue, task);
Trond Myklebustfde95c72008-02-22 15:09:26 -0500574 spin_unlock(&queue->lock);
575 }
Trond Myklebustfde95c72008-02-22 15:09:26 -0500576 smp_mb__before_clear_bit();
577 clear_bit(RPC_TASK_HAS_TIMER, &task->tk_runstate);
578 smp_mb__after_clear_bit();
579}
580
Trond Myklebust80147932006-08-31 18:24:08 -0400581static void __rpc_atrun(struct rpc_task *task)
582{
Trond Myklebust80147932006-08-31 18:24:08 -0400583}
584
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585/*
586 * Run a task at a later time
587 */
Trond Myklebust80147932006-08-31 18:24:08 -0400588void rpc_delay(struct rpc_task *task, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589{
590 task->tk_timeout = delay;
591 rpc_sleep_on(&delay_queue, task, NULL, __rpc_atrun);
592}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400593EXPORT_SYMBOL_GPL(rpc_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595/*
Trond Myklebust4ce70ad2006-01-03 09:55:05 +0100596 * Helper to call task->tk_ops->rpc_call_prepare
597 */
598static void rpc_prepare_task(struct rpc_task *task)
599{
Trond Myklebust6d5fcb52006-10-18 16:01:06 -0400600 lock_kernel();
Trond Myklebust4ce70ad2006-01-03 09:55:05 +0100601 task->tk_ops->rpc_call_prepare(task, task->tk_calldata);
Trond Myklebust6d5fcb52006-10-18 16:01:06 -0400602 unlock_kernel();
Trond Myklebust4ce70ad2006-01-03 09:55:05 +0100603}
604
605/*
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100606 * Helper that calls task->tk_ops->rpc_call_done if it exists
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000607 */
Trond Myklebustabbcf282006-01-03 09:55:03 +0100608void rpc_exit_task(struct rpc_task *task)
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000609{
Trond Myklebustabbcf282006-01-03 09:55:03 +0100610 task->tk_action = NULL;
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100611 if (task->tk_ops->rpc_call_done != NULL) {
Trond Myklebust6d5fcb52006-10-18 16:01:06 -0400612 lock_kernel();
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100613 task->tk_ops->rpc_call_done(task, task->tk_calldata);
Trond Myklebust6d5fcb52006-10-18 16:01:06 -0400614 unlock_kernel();
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000615 if (task->tk_action != NULL) {
Trond Myklebustabbcf282006-01-03 09:55:03 +0100616 WARN_ON(RPC_ASSASSINATED(task));
617 /* Always release the RPC slot and buffer memory */
618 xprt_release(task);
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000619 }
620 }
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000621}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400622EXPORT_SYMBOL_GPL(rpc_exit_task);
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000623
Trond Myklebustbbd5a1f2006-10-18 16:01:05 -0400624void rpc_release_calldata(const struct rpc_call_ops *ops, void *calldata)
625{
626 if (ops->rpc_release != NULL) {
627 lock_kernel();
628 ops->rpc_release(calldata);
629 unlock_kernel();
630 }
631}
632
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000633/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 * This is the RPC `scheduler' (or rather, the finite state machine).
635 */
Trond Myklebust2efef832007-02-03 13:38:41 -0800636static void __rpc_execute(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
638 int status = 0;
639
Chuck Lever46121cf2007-01-31 12:14:08 -0500640 dprintk("RPC: %5u __rpc_execute flags=0x%x\n",
641 task->tk_pid, task->tk_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
643 BUG_ON(RPC_IS_QUEUED(task));
644
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000645 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 /*
647 * Garbage collection of pending timers...
648 */
649 rpc_delete_timer(task);
650
651 /*
652 * Execute any pending callback.
653 */
654 if (RPC_DO_CALLBACK(task)) {
655 /* Define a callback save pointer */
656 void (*save_callback)(struct rpc_task *);
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800657
658 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 * If a callback exists, save it, reset it,
660 * call it.
661 * The save is needed to stop from resetting
662 * another callback set within the callback handler
663 * - Dave
664 */
665 save_callback=task->tk_callback;
666 task->tk_callback=NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 save_callback(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 }
669
670 /*
671 * Perform the next FSM step.
672 * tk_action may be NULL when the task has been killed
673 * by someone else.
674 */
675 if (!RPC_IS_QUEUED(task)) {
Trond Myklebustabbcf282006-01-03 09:55:03 +0100676 if (task->tk_action == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 break;
Trond Myklebustabbcf282006-01-03 09:55:03 +0100678 task->tk_action(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 }
680
681 /*
682 * Lockless check for whether task is sleeping or not.
683 */
684 if (!RPC_IS_QUEUED(task))
685 continue;
686 rpc_clear_running(task);
687 if (RPC_IS_ASYNC(task)) {
688 /* Careful! we may have raced... */
689 if (RPC_IS_QUEUED(task))
Trond Myklebust2efef832007-02-03 13:38:41 -0800690 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 if (rpc_test_and_set_running(task))
Trond Myklebust2efef832007-02-03 13:38:41 -0800692 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 continue;
694 }
695
696 /* sync task: sleep here */
Chuck Lever46121cf2007-01-31 12:14:08 -0500697 dprintk("RPC: %5u sync task going to sleep\n", task->tk_pid);
Trond Myklebust96651ab2005-06-22 17:16:21 +0000698 status = out_of_line_wait_on_bit(&task->tk_runstate,
Matthew Wilcox150030b2007-12-06 16:24:39 -0500699 RPC_TASK_QUEUED, rpc_wait_bit_killable,
700 TASK_KILLABLE);
Trond Myklebust96651ab2005-06-22 17:16:21 +0000701 if (status == -ERESTARTSYS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 /*
703 * When a sync task receives a signal, it exits with
704 * -ERESTARTSYS. In order to catch any callbacks that
705 * clean up after sleeping on some queue, we don't
706 * break the loop here, but go around once more.
707 */
Chuck Lever46121cf2007-01-31 12:14:08 -0500708 dprintk("RPC: %5u got signal\n", task->tk_pid);
Trond Myklebust96651ab2005-06-22 17:16:21 +0000709 task->tk_flags |= RPC_TASK_KILLED;
710 rpc_exit(task, -ERESTARTSYS);
711 rpc_wake_up_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 }
713 rpc_set_running(task);
Chuck Lever46121cf2007-01-31 12:14:08 -0500714 dprintk("RPC: %5u sync task resuming\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 }
716
Chuck Lever46121cf2007-01-31 12:14:08 -0500717 dprintk("RPC: %5u return %d, status %d\n", task->tk_pid, status,
718 task->tk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 /* Release all resources associated with the task */
720 rpc_release_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721}
722
723/*
724 * User-visible entry point to the scheduler.
725 *
726 * This may be called recursively if e.g. an async NFS task updates
727 * the attributes and finds that dirty pages must be flushed.
728 * NOTE: Upon exit of this function the task is guaranteed to be
729 * released. In particular note that tk_release() will have
730 * been called, so your task memory may have been freed.
731 */
Trond Myklebust2efef832007-02-03 13:38:41 -0800732void rpc_execute(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
Trond Myklebust44c28872006-01-03 09:55:06 +0100734 rpc_set_active(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 rpc_set_running(task);
Trond Myklebust2efef832007-02-03 13:38:41 -0800736 __rpc_execute(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737}
738
David Howells65f27f32006-11-22 14:55:48 +0000739static void rpc_async_schedule(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740{
David Howells65f27f32006-11-22 14:55:48 +0000741 __rpc_execute(container_of(work, struct rpc_task, u.tk_work));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742}
743
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400744struct rpc_buffer {
745 size_t len;
746 char data[];
747};
748
Chuck Lever02107142006-01-03 09:55:49 +0100749/**
750 * rpc_malloc - allocate an RPC buffer
751 * @task: RPC task that will use this buffer
752 * @size: requested byte size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 *
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400754 * To prevent rpciod from hanging, this allocator never sleeps,
755 * returning NULL if the request cannot be serviced immediately.
756 * The caller can arrange to sleep in a way that is safe for rpciod.
757 *
758 * Most requests are 'small' (under 2KiB) and can be serviced from a
759 * mempool, ensuring that NFS reads and writes can always proceed,
760 * and that there is good locality of reference for these buffers.
761 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 * In order to avoid memory starvation triggering more writebacks of
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400763 * NFS requests, we avoid using GFP_KERNEL.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 */
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400765void *rpc_malloc(struct rpc_task *task, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766{
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400767 struct rpc_buffer *buf;
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400768 gfp_t gfp = RPC_IS_SWAPPER(task) ? GFP_ATOMIC : GFP_NOWAIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400770 size += sizeof(struct rpc_buffer);
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400771 if (size <= RPC_BUFFER_MAXSIZE)
772 buf = mempool_alloc(rpc_buffer_mempool, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 else
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400774 buf = kmalloc(size, gfp);
Peter Zijlstraddce40d2007-05-09 08:30:11 +0200775
776 if (!buf)
777 return NULL;
778
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400779 buf->len = size;
Geert Uytterhoeven215d0672007-05-08 11:37:26 +0200780 dprintk("RPC: %5u allocated buffer of size %zu at %p\n",
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400781 task->tk_pid, size, buf);
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400782 return &buf->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400784EXPORT_SYMBOL_GPL(rpc_malloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Chuck Lever02107142006-01-03 09:55:49 +0100786/**
787 * rpc_free - free buffer allocated via rpc_malloc
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400788 * @buffer: buffer to free
Chuck Lever02107142006-01-03 09:55:49 +0100789 *
790 */
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400791void rpc_free(void *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792{
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400793 size_t size;
794 struct rpc_buffer *buf;
Chuck Lever02107142006-01-03 09:55:49 +0100795
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400796 if (!buffer)
797 return;
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400798
799 buf = container_of(buffer, struct rpc_buffer, data);
800 size = buf->len;
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400801
Geert Uytterhoeven215d0672007-05-08 11:37:26 +0200802 dprintk("RPC: freeing buffer of size %zu at %p\n",
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400803 size, buf);
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400804
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400805 if (size <= RPC_BUFFER_MAXSIZE)
806 mempool_free(buf, rpc_buffer_mempool);
807 else
808 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400810EXPORT_SYMBOL_GPL(rpc_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
812/*
813 * Creation and deletion of RPC task structures
814 */
Trond Myklebust47fe0642007-10-25 18:42:55 -0400815static void rpc_init_task(struct rpc_task *task, const struct rpc_task_setup *task_setup_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816{
817 memset(task, 0, sizeof(*task));
Trond Myklebustfde95c72008-02-22 15:09:26 -0500818 setup_timer(&task->tk_timer, rpc_run_timer, (unsigned long)task);
Trond Myklebust44c28872006-01-03 09:55:06 +0100819 atomic_set(&task->tk_count, 1);
Trond Myklebust84115e12007-07-14 15:39:59 -0400820 task->tk_flags = task_setup_data->flags;
821 task->tk_ops = task_setup_data->callback_ops;
822 task->tk_calldata = task_setup_data->callback_data;
Trond Myklebust6529eba2007-06-14 16:40:14 -0400823 INIT_LIST_HEAD(&task->tk_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 /* Initialize retry counters */
826 task->tk_garb_retry = 2;
827 task->tk_cred_retry = 2;
828
Trond Myklebust3ff75762007-07-14 15:40:00 -0400829 task->tk_priority = task_setup_data->priority - RPC_PRIORITY_LOW;
830 task->tk_owner = current->tgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
832 /* Initialize workqueue for async tasks */
Trond Myklebust32bfb5c2008-02-19 20:04:21 -0500833 task->tk_workqueue = task_setup_data->workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
Trond Myklebust84115e12007-07-14 15:39:59 -0400835 task->tk_client = task_setup_data->rpc_client;
836 if (task->tk_client != NULL) {
837 kref_get(&task->tk_client->cl_kref);
838 if (task->tk_client->cl_softrtry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 task->tk_flags |= RPC_TASK_SOFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 }
841
Trond Myklebust84115e12007-07-14 15:39:59 -0400842 if (task->tk_ops->rpc_call_prepare != NULL)
843 task->tk_action = rpc_prepare_task;
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100844
Trond Myklebustb3ef8b32007-10-25 18:32:34 -0400845 if (task_setup_data->rpc_message != NULL) {
846 memcpy(&task->tk_msg, task_setup_data->rpc_message, sizeof(task->tk_msg));
847 /* Bind the user cred */
848 if (task->tk_msg.rpc_cred != NULL)
849 rpcauth_holdcred(task);
850 else
851 rpcauth_bindcred(task);
852 if (task->tk_action == NULL)
853 rpc_call_start(task);
854 }
855
Chuck Leveref759a22006-03-20 13:44:17 -0500856 /* starting timestamp */
857 task->tk_start = jiffies;
858
Chuck Lever46121cf2007-01-31 12:14:08 -0500859 dprintk("RPC: new task initialized, procpid %u\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -0700860 task_pid_nr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861}
862
863static struct rpc_task *
864rpc_alloc_task(void)
865{
866 return (struct rpc_task *)mempool_alloc(rpc_task_mempool, GFP_NOFS);
867}
868
Trond Myklebust32bfb5c2008-02-19 20:04:21 -0500869static void rpc_free_task_rcu(struct rcu_head *rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870{
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500871 struct rpc_task *task = container_of(rcu, struct rpc_task, u.tk_rcu);
Chuck Lever46121cf2007-01-31 12:14:08 -0500872 dprintk("RPC: %5u freeing task\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 mempool_free(task, rpc_task_mempool);
874}
875
876/*
Trond Myklebust90c57552007-06-09 19:49:36 -0400877 * Create a new task for the specified client.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 */
Trond Myklebust84115e12007-07-14 15:39:59 -0400879struct rpc_task *rpc_new_task(const struct rpc_task_setup *setup_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880{
Trond Myklebuste8f5d772007-10-25 18:42:53 -0400881 struct rpc_task *task = setup_data->task;
882 unsigned short flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Trond Myklebuste8f5d772007-10-25 18:42:53 -0400884 if (task == NULL) {
885 task = rpc_alloc_task();
886 if (task == NULL)
887 goto out;
888 flags = RPC_TASK_DYNAMIC;
889 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Trond Myklebust84115e12007-07-14 15:39:59 -0400891 rpc_init_task(task, setup_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
Trond Myklebuste8f5d772007-10-25 18:42:53 -0400893 task->tk_flags |= flags;
Chuck Lever46121cf2007-01-31 12:14:08 -0500894 dprintk("RPC: allocated task %p\n", task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895out:
896 return task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897}
898
Trond Myklebust32bfb5c2008-02-19 20:04:21 -0500899static void rpc_free_task(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900{
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100901 const struct rpc_call_ops *tk_ops = task->tk_ops;
902 void *calldata = task->tk_calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903
Trond Myklebust32bfb5c2008-02-19 20:04:21 -0500904 if (task->tk_flags & RPC_TASK_DYNAMIC)
905 call_rcu_bh(&task->u.tk_rcu, rpc_free_task_rcu);
906 rpc_release_calldata(tk_ops, calldata);
907}
908
909static void rpc_async_release(struct work_struct *work)
910{
911 rpc_free_task(container_of(work, struct rpc_task, u.tk_work));
912}
913
914void rpc_put_task(struct rpc_task *task)
915{
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500916 if (!atomic_dec_and_test(&task->tk_count))
917 return;
918 /* Release resources */
919 if (task->tk_rqstp)
920 xprt_release(task);
921 if (task->tk_msg.rpc_cred)
922 rpcauth_unbindcred(task);
923 if (task->tk_client) {
924 rpc_release_client(task->tk_client);
925 task->tk_client = NULL;
926 }
Trond Myklebust32bfb5c2008-02-19 20:04:21 -0500927 if (task->tk_workqueue != NULL) {
928 INIT_WORK(&task->u.tk_work, rpc_async_release);
929 queue_work(task->tk_workqueue, &task->u.tk_work);
930 } else
931 rpc_free_task(task);
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500932}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400933EXPORT_SYMBOL_GPL(rpc_put_task);
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500934
Trond Myklebustbde8f002007-01-24 11:54:53 -0800935static void rpc_release_task(struct rpc_task *task)
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500936{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937#ifdef RPC_DEBUG
938 BUG_ON(task->tk_magic != RPC_TASK_MAGIC_ID);
939#endif
Chuck Lever46121cf2007-01-31 12:14:08 -0500940 dprintk("RPC: %5u release task\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Trond Myklebust6529eba2007-06-14 16:40:14 -0400942 if (!list_empty(&task->tk_task)) {
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400943 struct rpc_clnt *clnt = task->tk_client;
Trond Myklebust6529eba2007-06-14 16:40:14 -0400944 /* Remove from client task list */
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400945 spin_lock(&clnt->cl_lock);
Trond Myklebust6529eba2007-06-14 16:40:14 -0400946 list_del(&task->tk_task);
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400947 spin_unlock(&clnt->cl_lock);
Trond Myklebust6529eba2007-06-14 16:40:14 -0400948 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 BUG_ON (RPC_IS_QUEUED(task));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
951 /* Synchronously delete any running timer */
952 rpc_delete_timer(task);
953
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954#ifdef RPC_DEBUG
955 task->tk_magic = 0;
956#endif
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500957 /* Wake up anyone who is waiting for task completion */
958 rpc_mark_complete_task(task);
959
960 rpc_put_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961}
962
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963/*
964 * Kill all tasks for the given client.
965 * XXX: kill their descendants as well?
966 */
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400967void rpc_killall_tasks(struct rpc_clnt *clnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968{
969 struct rpc_task *rovr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400972 if (list_empty(&clnt->cl_tasks))
973 return;
974 dprintk("RPC: killing all tasks for client %p\n", clnt);
975 /*
976 * Spin lock all_tasks to prevent changes...
977 */
978 spin_lock(&clnt->cl_lock);
979 list_for_each_entry(rovr, &clnt->cl_tasks, tk_task) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 if (! RPC_IS_ACTIVATED(rovr))
981 continue;
Trond Myklebust6529eba2007-06-14 16:40:14 -0400982 if (!(rovr->tk_flags & RPC_TASK_KILLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 rovr->tk_flags |= RPC_TASK_KILLED;
984 rpc_exit(rovr, -EIO);
985 rpc_wake_up_task(rovr);
986 }
987 }
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400988 spin_unlock(&clnt->cl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400990EXPORT_SYMBOL_GPL(rpc_killall_tasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
Trond Myklebustb247bbf2007-07-19 16:32:20 -0400992int rpciod_up(void)
993{
994 return try_module_get(THIS_MODULE) ? 0 : -EINVAL;
995}
996
997void rpciod_down(void)
998{
999 module_put(THIS_MODULE);
1000}
1001
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002/*
Trond Myklebustb247bbf2007-07-19 16:32:20 -04001003 * Start up the rpciod workqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 */
Trond Myklebustb247bbf2007-07-19 16:32:20 -04001005static int rpciod_start(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006{
1007 struct workqueue_struct *wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 /*
1010 * Create the rpciod thread and wait for it to start.
1011 */
Trond Myklebustab418d72007-06-14 17:08:36 -04001012 dprintk("RPC: creating workqueue rpciod\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 wq = create_workqueue("rpciod");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 rpciod_workqueue = wq;
Trond Myklebustb247bbf2007-07-19 16:32:20 -04001015 return rpciod_workqueue != NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016}
1017
Trond Myklebustb247bbf2007-07-19 16:32:20 -04001018static void rpciod_stop(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019{
Trond Myklebustb247bbf2007-07-19 16:32:20 -04001020 struct workqueue_struct *wq = NULL;
Trond Myklebustab418d72007-06-14 17:08:36 -04001021
Trond Myklebustb247bbf2007-07-19 16:32:20 -04001022 if (rpciod_workqueue == NULL)
1023 return;
Trond Myklebustab418d72007-06-14 17:08:36 -04001024 dprintk("RPC: destroying workqueue rpciod\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
Trond Myklebustb247bbf2007-07-19 16:32:20 -04001026 wq = rpciod_workqueue;
1027 rpciod_workqueue = NULL;
1028 destroy_workqueue(wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029}
1030
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031void
1032rpc_destroy_mempool(void)
1033{
Trond Myklebustb247bbf2007-07-19 16:32:20 -04001034 rpciod_stop();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 if (rpc_buffer_mempool)
1036 mempool_destroy(rpc_buffer_mempool);
1037 if (rpc_task_mempool)
1038 mempool_destroy(rpc_task_mempool);
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001039 if (rpc_task_slabp)
1040 kmem_cache_destroy(rpc_task_slabp);
1041 if (rpc_buffer_slabp)
1042 kmem_cache_destroy(rpc_buffer_slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043}
1044
1045int
1046rpc_init_mempool(void)
1047{
1048 rpc_task_slabp = kmem_cache_create("rpc_tasks",
1049 sizeof(struct rpc_task),
1050 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +09001051 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 if (!rpc_task_slabp)
1053 goto err_nomem;
1054 rpc_buffer_slabp = kmem_cache_create("rpc_buffers",
1055 RPC_BUFFER_MAXSIZE,
1056 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +09001057 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 if (!rpc_buffer_slabp)
1059 goto err_nomem;
Matthew Dobson93d23412006-03-26 01:37:50 -08001060 rpc_task_mempool = mempool_create_slab_pool(RPC_TASK_POOLSIZE,
1061 rpc_task_slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 if (!rpc_task_mempool)
1063 goto err_nomem;
Matthew Dobson93d23412006-03-26 01:37:50 -08001064 rpc_buffer_mempool = mempool_create_slab_pool(RPC_BUFFER_POOLSIZE,
1065 rpc_buffer_slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 if (!rpc_buffer_mempool)
1067 goto err_nomem;
Trond Myklebustb247bbf2007-07-19 16:32:20 -04001068 if (!rpciod_start())
1069 goto err_nomem;
Trond Myklebusta4a87492007-07-18 13:24:19 -04001070 /*
1071 * The following is not strictly a mempool initialisation,
1072 * but there is no harm in doing it here
1073 */
1074 rpc_init_wait_queue(&delay_queue, "delayq");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 return 0;
1076err_nomem:
1077 rpc_destroy_mempool();
1078 return -ENOMEM;
1079}