blob: 954d7ec86c7e201be80f0e19c41f3597125059e8 [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
41static void __rpc_default_timer(struct rpc_task *task);
David Howells65f27f32006-11-22 14:55:48 +000042static void rpc_async_schedule(struct work_struct *);
Trond Myklebustbde8f002007-01-24 11:54:53 -080043static void rpc_release_task(struct rpc_task *task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * RPC tasks sit here while waiting for conditions to improve.
47 */
48static RPC_WAITQ(delay_queue, "delayq");
49
50/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 * rpciod-related stuff
52 */
Trond Myklebust24c5d9d2006-03-20 13:44:08 -050053struct workqueue_struct *rpciod_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 * Disable the timer for a given RPC task. Should be called with
57 * queue->lock and bh_disabled in order to avoid races within
58 * rpc_run_timer().
59 */
60static inline void
61__rpc_disable_timer(struct rpc_task *task)
62{
Chuck Lever46121cf2007-01-31 12:14:08 -050063 dprintk("RPC: %5u disabling timer\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 task->tk_timeout_fn = NULL;
65 task->tk_timeout = 0;
66}
67
68/*
69 * Run a timeout function.
70 * We use the callback in order to allow __rpc_wake_up_task()
71 * and friends to disable the timer synchronously on SMP systems
72 * without calling del_timer_sync(). The latter could cause a
73 * deadlock if called while we're holding spinlocks...
74 */
75static void rpc_run_timer(struct rpc_task *task)
76{
77 void (*callback)(struct rpc_task *);
78
79 callback = task->tk_timeout_fn;
80 task->tk_timeout_fn = NULL;
81 if (callback && RPC_IS_QUEUED(task)) {
Chuck Lever46121cf2007-01-31 12:14:08 -050082 dprintk("RPC: %5u running timer\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 callback(task);
84 }
85 smp_mb__before_clear_bit();
86 clear_bit(RPC_TASK_HAS_TIMER, &task->tk_runstate);
87 smp_mb__after_clear_bit();
88}
89
90/*
91 * Set up a timer for the current task.
92 */
93static inline void
94__rpc_add_timer(struct rpc_task *task, rpc_action timer)
95{
96 if (!task->tk_timeout)
97 return;
98
Chuck Lever46121cf2007-01-31 12:14:08 -050099 dprintk("RPC: %5u setting alarm for %lu ms\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 task->tk_pid, task->tk_timeout * 1000 / HZ);
101
102 if (timer)
103 task->tk_timeout_fn = timer;
104 else
105 task->tk_timeout_fn = __rpc_default_timer;
106 set_bit(RPC_TASK_HAS_TIMER, &task->tk_runstate);
107 mod_timer(&task->tk_timer, jiffies + task->tk_timeout);
108}
109
110/*
111 * Delete any timer for the current task. Because we use del_timer_sync(),
112 * this function should never be called while holding queue->lock.
113 */
114static void
115rpc_delete_timer(struct rpc_task *task)
116{
117 if (RPC_IS_QUEUED(task))
118 return;
119 if (test_and_clear_bit(RPC_TASK_HAS_TIMER, &task->tk_runstate)) {
120 del_singleshot_timer_sync(&task->tk_timer);
Chuck Lever46121cf2007-01-31 12:14:08 -0500121 dprintk("RPC: %5u deleting timer\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 }
123}
124
125/*
126 * Add new request to a priority queue.
127 */
128static void __rpc_add_wait_queue_priority(struct rpc_wait_queue *queue, struct rpc_task *task)
129{
130 struct list_head *q;
131 struct rpc_task *t;
132
133 INIT_LIST_HEAD(&task->u.tk_wait.links);
134 q = &queue->tasks[task->tk_priority];
135 if (unlikely(task->tk_priority > queue->maxpriority))
136 q = &queue->tasks[queue->maxpriority];
137 list_for_each_entry(t, q, u.tk_wait.list) {
138 if (t->tk_cookie == task->tk_cookie) {
139 list_add_tail(&task->u.tk_wait.list, &t->u.tk_wait.links);
140 return;
141 }
142 }
143 list_add_tail(&task->u.tk_wait.list, q);
144}
145
146/*
147 * Add new request to wait queue.
148 *
149 * Swapper tasks always get inserted at the head of the queue.
150 * This should avoid many nasty memory deadlocks and hopefully
151 * improve overall performance.
152 * Everyone else gets appended to the queue to ensure proper FIFO behavior.
153 */
154static void __rpc_add_wait_queue(struct rpc_wait_queue *queue, struct rpc_task *task)
155{
156 BUG_ON (RPC_IS_QUEUED(task));
157
158 if (RPC_IS_PRIORITY(queue))
159 __rpc_add_wait_queue_priority(queue, task);
160 else if (RPC_IS_SWAPPER(task))
161 list_add(&task->u.tk_wait.list, &queue->tasks[0]);
162 else
163 list_add_tail(&task->u.tk_wait.list, &queue->tasks[0]);
164 task->u.tk_wait.rpc_waitq = queue;
Chuck Levere19b63d2006-03-20 13:44:15 -0500165 queue->qlen++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 rpc_set_queued(task);
167
Chuck Lever46121cf2007-01-31 12:14:08 -0500168 dprintk("RPC: %5u added to queue %p \"%s\"\n",
169 task->tk_pid, queue, rpc_qname(queue));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
171
172/*
173 * Remove request from a priority queue.
174 */
175static void __rpc_remove_wait_queue_priority(struct rpc_task *task)
176{
177 struct rpc_task *t;
178
179 if (!list_empty(&task->u.tk_wait.links)) {
180 t = list_entry(task->u.tk_wait.links.next, struct rpc_task, u.tk_wait.list);
181 list_move(&t->u.tk_wait.list, &task->u.tk_wait.list);
182 list_splice_init(&task->u.tk_wait.links, &t->u.tk_wait.links);
183 }
184 list_del(&task->u.tk_wait.list);
185}
186
187/*
188 * Remove request from queue.
189 * Note: must be called with spin lock held.
190 */
191static void __rpc_remove_wait_queue(struct rpc_task *task)
192{
193 struct rpc_wait_queue *queue;
194 queue = task->u.tk_wait.rpc_waitq;
195
196 if (RPC_IS_PRIORITY(queue))
197 __rpc_remove_wait_queue_priority(task);
198 else
199 list_del(&task->u.tk_wait.list);
Chuck Levere19b63d2006-03-20 13:44:15 -0500200 queue->qlen--;
Chuck Lever46121cf2007-01-31 12:14:08 -0500201 dprintk("RPC: %5u removed from queue %p \"%s\"\n",
202 task->tk_pid, queue, rpc_qname(queue));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
204
205static inline void rpc_set_waitqueue_priority(struct rpc_wait_queue *queue, int priority)
206{
207 queue->priority = priority;
208 queue->count = 1 << (priority * 2);
209}
210
211static inline void rpc_set_waitqueue_cookie(struct rpc_wait_queue *queue, unsigned long cookie)
212{
213 queue->cookie = cookie;
214 queue->nr = RPC_BATCH_COUNT;
215}
216
217static inline void rpc_reset_waitqueue_priority(struct rpc_wait_queue *queue)
218{
219 rpc_set_waitqueue_priority(queue, queue->maxpriority);
220 rpc_set_waitqueue_cookie(queue, 0);
221}
222
223static void __rpc_init_priority_wait_queue(struct rpc_wait_queue *queue, const char *qname, int maxprio)
224{
225 int i;
226
227 spin_lock_init(&queue->lock);
228 for (i = 0; i < ARRAY_SIZE(queue->tasks); i++)
229 INIT_LIST_HEAD(&queue->tasks[i]);
230 queue->maxpriority = maxprio;
231 rpc_reset_waitqueue_priority(queue);
232#ifdef RPC_DEBUG
233 queue->name = qname;
234#endif
235}
236
237void rpc_init_priority_wait_queue(struct rpc_wait_queue *queue, const char *qname)
238{
239 __rpc_init_priority_wait_queue(queue, qname, RPC_PRIORITY_HIGH);
240}
241
242void rpc_init_wait_queue(struct rpc_wait_queue *queue, const char *qname)
243{
244 __rpc_init_priority_wait_queue(queue, qname, 0);
245}
246EXPORT_SYMBOL(rpc_init_wait_queue);
247
Trond Myklebust44c28872006-01-03 09:55:06 +0100248static int rpc_wait_bit_interruptible(void *word)
249{
250 if (signal_pending(current))
251 return -ERESTARTSYS;
252 schedule();
253 return 0;
254}
255
Trond Myklebustc44fe702007-06-16 14:17:01 -0400256#ifdef RPC_DEBUG
257static void rpc_task_set_debuginfo(struct rpc_task *task)
258{
259 static atomic_t rpc_pid;
260
261 task->tk_magic = RPC_TASK_MAGIC_ID;
262 task->tk_pid = atomic_inc_return(&rpc_pid);
263}
264#else
265static inline void rpc_task_set_debuginfo(struct rpc_task *task)
266{
267}
268#endif
269
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500270static void rpc_set_active(struct rpc_task *task)
271{
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400272 struct rpc_clnt *clnt;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500273 if (test_and_set_bit(RPC_TASK_ACTIVE, &task->tk_runstate) != 0)
274 return;
Trond Myklebustc44fe702007-06-16 14:17:01 -0400275 rpc_task_set_debuginfo(task);
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500276 /* Add to global list of all tasks */
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400277 clnt = task->tk_client;
278 if (clnt != NULL) {
279 spin_lock(&clnt->cl_lock);
280 list_add_tail(&task->tk_task, &clnt->cl_tasks);
281 spin_unlock(&clnt->cl_lock);
282 }
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500283}
284
Trond Myklebust44c28872006-01-03 09:55:06 +0100285/*
286 * Mark an RPC call as having completed by clearing the 'active' bit
287 */
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500288static void rpc_mark_complete_task(struct rpc_task *task)
Trond Myklebust44c28872006-01-03 09:55:06 +0100289{
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500290 smp_mb__before_clear_bit();
291 clear_bit(RPC_TASK_ACTIVE, &task->tk_runstate);
292 smp_mb__after_clear_bit();
Trond Myklebust44c28872006-01-03 09:55:06 +0100293 wake_up_bit(&task->tk_runstate, RPC_TASK_ACTIVE);
294}
295
296/*
297 * Allow callers to wait for completion of an RPC call
298 */
299int __rpc_wait_for_completion_task(struct rpc_task *task, int (*action)(void *))
300{
301 if (action == NULL)
302 action = rpc_wait_bit_interruptible;
303 return wait_on_bit(&task->tk_runstate, RPC_TASK_ACTIVE,
304 action, TASK_INTERRUPTIBLE);
305}
306EXPORT_SYMBOL(__rpc_wait_for_completion_task);
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308/*
309 * Make an RPC task runnable.
310 *
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800311 * Note: If the task is ASYNC, this must be called with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 * the spinlock held to protect the wait queue operation.
313 */
314static void rpc_make_runnable(struct rpc_task *task)
315{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 BUG_ON(task->tk_timeout_fn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 rpc_clear_queued(task);
Christophe Saoutcc4dc59e2006-11-05 18:42:48 +0100318 if (rpc_test_and_set_running(task))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 return;
Christophe Saoutcc4dc59e2006-11-05 18:42:48 +0100320 /* We might have raced */
321 if (RPC_IS_QUEUED(task)) {
322 rpc_clear_running(task);
323 return;
324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 if (RPC_IS_ASYNC(task)) {
326 int status;
327
David Howells65f27f32006-11-22 14:55:48 +0000328 INIT_WORK(&task->u.tk_work, rpc_async_schedule);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 status = queue_work(task->tk_workqueue, &task->u.tk_work);
330 if (status < 0) {
331 printk(KERN_WARNING "RPC: failed to add task to queue: error: %d!\n", status);
332 task->tk_status = status;
333 return;
334 }
335 } else
Trond Myklebust96651ab2005-06-22 17:16:21 +0000336 wake_up_bit(&task->tk_runstate, RPC_TASK_QUEUED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337}
338
339/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 * Prepare for sleeping on a wait queue.
341 * By always appending tasks to the list we ensure FIFO behavior.
342 * NB: An RPC task will only receive interrupt-driven events as long
343 * as it's on a wait queue.
344 */
345static void __rpc_sleep_on(struct rpc_wait_queue *q, struct rpc_task *task,
346 rpc_action action, rpc_action timer)
347{
Chuck Lever46121cf2007-01-31 12:14:08 -0500348 dprintk("RPC: %5u sleep_on(queue \"%s\" time %lu)\n",
349 task->tk_pid, rpc_qname(q), jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351 if (!RPC_IS_ASYNC(task) && !RPC_IS_ACTIVATED(task)) {
352 printk(KERN_ERR "RPC: Inactive synchronous task put to sleep!\n");
353 return;
354 }
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 __rpc_add_wait_queue(q, task);
357
358 BUG_ON(task->tk_callback != NULL);
359 task->tk_callback = action;
360 __rpc_add_timer(task, timer);
361}
362
363void rpc_sleep_on(struct rpc_wait_queue *q, struct rpc_task *task,
364 rpc_action action, rpc_action timer)
365{
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500366 /* Mark the task as being activated if so needed */
367 rpc_set_active(task);
368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 /*
370 * Protect the queue operations.
371 */
372 spin_lock_bh(&q->lock);
373 __rpc_sleep_on(q, task, action, timer);
374 spin_unlock_bh(&q->lock);
375}
376
377/**
378 * __rpc_do_wake_up_task - wake up a single rpc_task
379 * @task: task to be woken up
380 *
381 * Caller must hold queue->lock, and have cleared the task queued flag.
382 */
383static void __rpc_do_wake_up_task(struct rpc_task *task)
384{
Chuck Lever46121cf2007-01-31 12:14:08 -0500385 dprintk("RPC: %5u __rpc_wake_up_task (now %lu)\n",
386 task->tk_pid, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388#ifdef RPC_DEBUG
389 BUG_ON(task->tk_magic != RPC_TASK_MAGIC_ID);
390#endif
391 /* Has the task been executed yet? If not, we cannot wake it up! */
392 if (!RPC_IS_ACTIVATED(task)) {
393 printk(KERN_ERR "RPC: Inactive task (%p) being woken up!\n", task);
394 return;
395 }
396
397 __rpc_disable_timer(task);
398 __rpc_remove_wait_queue(task);
399
400 rpc_make_runnable(task);
401
Chuck Lever46121cf2007-01-31 12:14:08 -0500402 dprintk("RPC: __rpc_wake_up_task done\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403}
404
405/*
406 * Wake up the specified task
407 */
408static void __rpc_wake_up_task(struct rpc_task *task)
409{
410 if (rpc_start_wakeup(task)) {
411 if (RPC_IS_QUEUED(task))
412 __rpc_do_wake_up_task(task);
413 rpc_finish_wakeup(task);
414 }
415}
416
417/*
418 * Default timeout handler if none specified by user
419 */
420static void
421__rpc_default_timer(struct rpc_task *task)
422{
Chuck Lever46121cf2007-01-31 12:14:08 -0500423 dprintk("RPC: %5u timeout (default timer)\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 task->tk_status = -ETIMEDOUT;
425 rpc_wake_up_task(task);
426}
427
428/*
429 * Wake up the specified task
430 */
431void rpc_wake_up_task(struct rpc_task *task)
432{
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500433 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 if (rpc_start_wakeup(task)) {
435 if (RPC_IS_QUEUED(task)) {
436 struct rpc_wait_queue *queue = task->u.tk_wait.rpc_waitq;
437
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500438 /* Note: we're already in a bh-safe context */
439 spin_lock(&queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 __rpc_do_wake_up_task(task);
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500441 spin_unlock(&queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 }
443 rpc_finish_wakeup(task);
444 }
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500445 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446}
447
448/*
449 * Wake up the next task on a priority queue.
450 */
451static struct rpc_task * __rpc_wake_up_next_priority(struct rpc_wait_queue *queue)
452{
453 struct list_head *q;
454 struct rpc_task *task;
455
456 /*
457 * Service a batch of tasks from a single cookie.
458 */
459 q = &queue->tasks[queue->priority];
460 if (!list_empty(q)) {
461 task = list_entry(q->next, struct rpc_task, u.tk_wait.list);
462 if (queue->cookie == task->tk_cookie) {
463 if (--queue->nr)
464 goto out;
465 list_move_tail(&task->u.tk_wait.list, q);
466 }
467 /*
468 * Check if we need to switch queues.
469 */
470 if (--queue->count)
471 goto new_cookie;
472 }
473
474 /*
475 * Service the next queue.
476 */
477 do {
478 if (q == &queue->tasks[0])
479 q = &queue->tasks[queue->maxpriority];
480 else
481 q = q - 1;
482 if (!list_empty(q)) {
483 task = list_entry(q->next, struct rpc_task, u.tk_wait.list);
484 goto new_queue;
485 }
486 } while (q != &queue->tasks[queue->priority]);
487
488 rpc_reset_waitqueue_priority(queue);
489 return NULL;
490
491new_queue:
492 rpc_set_waitqueue_priority(queue, (unsigned int)(q - &queue->tasks[0]));
493new_cookie:
494 rpc_set_waitqueue_cookie(queue, task->tk_cookie);
495out:
496 __rpc_wake_up_task(task);
497 return task;
498}
499
500/*
501 * Wake up the next task on the wait queue.
502 */
503struct rpc_task * rpc_wake_up_next(struct rpc_wait_queue *queue)
504{
505 struct rpc_task *task = NULL;
506
Chuck Lever46121cf2007-01-31 12:14:08 -0500507 dprintk("RPC: wake_up_next(%p \"%s\")\n",
508 queue, rpc_qname(queue));
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500509 rcu_read_lock_bh();
510 spin_lock(&queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 if (RPC_IS_PRIORITY(queue))
512 task = __rpc_wake_up_next_priority(queue);
513 else {
514 task_for_first(task, &queue->tasks[0])
515 __rpc_wake_up_task(task);
516 }
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500517 spin_unlock(&queue->lock);
518 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520 return task;
521}
522
523/**
524 * rpc_wake_up - wake up all rpc_tasks
525 * @queue: rpc_wait_queue on which the tasks are sleeping
526 *
527 * Grabs queue->lock
528 */
529void rpc_wake_up(struct rpc_wait_queue *queue)
530{
Trond Myklebuste6d83d52006-03-13 21:20:48 -0800531 struct rpc_task *task, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 struct list_head *head;
Trond Myklebuste6d83d52006-03-13 21:20:48 -0800533
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500534 rcu_read_lock_bh();
535 spin_lock(&queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 head = &queue->tasks[queue->maxpriority];
537 for (;;) {
Trond Myklebuste6d83d52006-03-13 21:20:48 -0800538 list_for_each_entry_safe(task, next, head, u.tk_wait.list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 __rpc_wake_up_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 if (head == &queue->tasks[0])
541 break;
542 head--;
543 }
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500544 spin_unlock(&queue->lock);
545 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546}
547
548/**
549 * rpc_wake_up_status - wake up all rpc_tasks and set their status value.
550 * @queue: rpc_wait_queue on which the tasks are sleeping
551 * @status: status value to set
552 *
553 * Grabs queue->lock
554 */
555void rpc_wake_up_status(struct rpc_wait_queue *queue, int status)
556{
Trond Myklebuste6d83d52006-03-13 21:20:48 -0800557 struct rpc_task *task, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500560 rcu_read_lock_bh();
561 spin_lock(&queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 head = &queue->tasks[queue->maxpriority];
563 for (;;) {
Trond Myklebuste6d83d52006-03-13 21:20:48 -0800564 list_for_each_entry_safe(task, next, head, u.tk_wait.list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 task->tk_status = status;
566 __rpc_wake_up_task(task);
567 }
568 if (head == &queue->tasks[0])
569 break;
570 head--;
571 }
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500572 spin_unlock(&queue->lock);
573 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574}
575
Trond Myklebust80147932006-08-31 18:24:08 -0400576static void __rpc_atrun(struct rpc_task *task)
577{
578 rpc_wake_up_task(task);
579}
580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581/*
582 * Run a task at a later time
583 */
Trond Myklebust80147932006-08-31 18:24:08 -0400584void rpc_delay(struct rpc_task *task, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585{
586 task->tk_timeout = delay;
587 rpc_sleep_on(&delay_queue, task, NULL, __rpc_atrun);
588}
589
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590/*
Trond Myklebust4ce70ad2006-01-03 09:55:05 +0100591 * Helper to call task->tk_ops->rpc_call_prepare
592 */
593static void rpc_prepare_task(struct rpc_task *task)
594{
Trond Myklebust6d5fcb52006-10-18 16:01:06 -0400595 lock_kernel();
Trond Myklebust4ce70ad2006-01-03 09:55:05 +0100596 task->tk_ops->rpc_call_prepare(task, task->tk_calldata);
Trond Myklebust6d5fcb52006-10-18 16:01:06 -0400597 unlock_kernel();
Trond Myklebust4ce70ad2006-01-03 09:55:05 +0100598}
599
600/*
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100601 * Helper that calls task->tk_ops->rpc_call_done if it exists
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000602 */
Trond Myklebustabbcf282006-01-03 09:55:03 +0100603void rpc_exit_task(struct rpc_task *task)
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000604{
Trond Myklebustabbcf282006-01-03 09:55:03 +0100605 task->tk_action = NULL;
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100606 if (task->tk_ops->rpc_call_done != NULL) {
Trond Myklebust6d5fcb52006-10-18 16:01:06 -0400607 lock_kernel();
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100608 task->tk_ops->rpc_call_done(task, task->tk_calldata);
Trond Myklebust6d5fcb52006-10-18 16:01:06 -0400609 unlock_kernel();
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000610 if (task->tk_action != NULL) {
Trond Myklebustabbcf282006-01-03 09:55:03 +0100611 WARN_ON(RPC_ASSASSINATED(task));
612 /* Always release the RPC slot and buffer memory */
613 xprt_release(task);
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000614 }
615 }
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000616}
Trond Myklebustabbcf282006-01-03 09:55:03 +0100617EXPORT_SYMBOL(rpc_exit_task);
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000618
Trond Myklebustbbd5a1f2006-10-18 16:01:05 -0400619void rpc_release_calldata(const struct rpc_call_ops *ops, void *calldata)
620{
621 if (ops->rpc_release != NULL) {
622 lock_kernel();
623 ops->rpc_release(calldata);
624 unlock_kernel();
625 }
626}
627
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000628/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 * This is the RPC `scheduler' (or rather, the finite state machine).
630 */
Trond Myklebust2efef832007-02-03 13:38:41 -0800631static void __rpc_execute(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632{
633 int status = 0;
634
Chuck Lever46121cf2007-01-31 12:14:08 -0500635 dprintk("RPC: %5u __rpc_execute flags=0x%x\n",
636 task->tk_pid, task->tk_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
638 BUG_ON(RPC_IS_QUEUED(task));
639
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000640 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 /*
642 * Garbage collection of pending timers...
643 */
644 rpc_delete_timer(task);
645
646 /*
647 * Execute any pending callback.
648 */
649 if (RPC_DO_CALLBACK(task)) {
650 /* Define a callback save pointer */
651 void (*save_callback)(struct rpc_task *);
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800652
653 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 * If a callback exists, save it, reset it,
655 * call it.
656 * The save is needed to stop from resetting
657 * another callback set within the callback handler
658 * - Dave
659 */
660 save_callback=task->tk_callback;
661 task->tk_callback=NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 save_callback(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 }
664
665 /*
666 * Perform the next FSM step.
667 * tk_action may be NULL when the task has been killed
668 * by someone else.
669 */
670 if (!RPC_IS_QUEUED(task)) {
Trond Myklebustabbcf282006-01-03 09:55:03 +0100671 if (task->tk_action == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 break;
Trond Myklebustabbcf282006-01-03 09:55:03 +0100673 task->tk_action(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 }
675
676 /*
677 * Lockless check for whether task is sleeping or not.
678 */
679 if (!RPC_IS_QUEUED(task))
680 continue;
681 rpc_clear_running(task);
682 if (RPC_IS_ASYNC(task)) {
683 /* Careful! we may have raced... */
684 if (RPC_IS_QUEUED(task))
Trond Myklebust2efef832007-02-03 13:38:41 -0800685 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 if (rpc_test_and_set_running(task))
Trond Myklebust2efef832007-02-03 13:38:41 -0800687 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 continue;
689 }
690
691 /* sync task: sleep here */
Chuck Lever46121cf2007-01-31 12:14:08 -0500692 dprintk("RPC: %5u sync task going to sleep\n", task->tk_pid);
Trond Myklebust96651ab2005-06-22 17:16:21 +0000693 /* Note: Caller should be using rpc_clnt_sigmask() */
694 status = out_of_line_wait_on_bit(&task->tk_runstate,
695 RPC_TASK_QUEUED, rpc_wait_bit_interruptible,
696 TASK_INTERRUPTIBLE);
697 if (status == -ERESTARTSYS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 /*
699 * When a sync task receives a signal, it exits with
700 * -ERESTARTSYS. In order to catch any callbacks that
701 * clean up after sleeping on some queue, we don't
702 * break the loop here, but go around once more.
703 */
Chuck Lever46121cf2007-01-31 12:14:08 -0500704 dprintk("RPC: %5u got signal\n", task->tk_pid);
Trond Myklebust96651ab2005-06-22 17:16:21 +0000705 task->tk_flags |= RPC_TASK_KILLED;
706 rpc_exit(task, -ERESTARTSYS);
707 rpc_wake_up_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 }
709 rpc_set_running(task);
Chuck Lever46121cf2007-01-31 12:14:08 -0500710 dprintk("RPC: %5u sync task resuming\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 }
712
Chuck Lever46121cf2007-01-31 12:14:08 -0500713 dprintk("RPC: %5u return %d, status %d\n", task->tk_pid, status,
714 task->tk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 /* Release all resources associated with the task */
716 rpc_release_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717}
718
719/*
720 * User-visible entry point to the scheduler.
721 *
722 * This may be called recursively if e.g. an async NFS task updates
723 * the attributes and finds that dirty pages must be flushed.
724 * NOTE: Upon exit of this function the task is guaranteed to be
725 * released. In particular note that tk_release() will have
726 * been called, so your task memory may have been freed.
727 */
Trond Myklebust2efef832007-02-03 13:38:41 -0800728void rpc_execute(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729{
Trond Myklebust44c28872006-01-03 09:55:06 +0100730 rpc_set_active(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 rpc_set_running(task);
Trond Myklebust2efef832007-02-03 13:38:41 -0800732 __rpc_execute(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733}
734
David Howells65f27f32006-11-22 14:55:48 +0000735static void rpc_async_schedule(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736{
David Howells65f27f32006-11-22 14:55:48 +0000737 __rpc_execute(container_of(work, struct rpc_task, u.tk_work));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738}
739
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400740struct rpc_buffer {
741 size_t len;
742 char data[];
743};
744
Chuck Lever02107142006-01-03 09:55:49 +0100745/**
746 * rpc_malloc - allocate an RPC buffer
747 * @task: RPC task that will use this buffer
748 * @size: requested byte size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 *
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400750 * To prevent rpciod from hanging, this allocator never sleeps,
751 * returning NULL if the request cannot be serviced immediately.
752 * The caller can arrange to sleep in a way that is safe for rpciod.
753 *
754 * Most requests are 'small' (under 2KiB) and can be serviced from a
755 * mempool, ensuring that NFS reads and writes can always proceed,
756 * and that there is good locality of reference for these buffers.
757 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 * In order to avoid memory starvation triggering more writebacks of
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400759 * NFS requests, we avoid using GFP_KERNEL.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 */
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400761void *rpc_malloc(struct rpc_task *task, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762{
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400763 struct rpc_buffer *buf;
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400764 gfp_t gfp = RPC_IS_SWAPPER(task) ? GFP_ATOMIC : GFP_NOWAIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400766 size += sizeof(struct rpc_buffer);
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400767 if (size <= RPC_BUFFER_MAXSIZE)
768 buf = mempool_alloc(rpc_buffer_mempool, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 else
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400770 buf = kmalloc(size, gfp);
Peter Zijlstraddce40d2007-05-09 08:30:11 +0200771
772 if (!buf)
773 return NULL;
774
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400775 buf->len = size;
Geert Uytterhoeven215d0672007-05-08 11:37:26 +0200776 dprintk("RPC: %5u allocated buffer of size %zu at %p\n",
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400777 task->tk_pid, size, buf);
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400778 return &buf->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779}
780
Chuck Lever02107142006-01-03 09:55:49 +0100781/**
782 * rpc_free - free buffer allocated via rpc_malloc
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400783 * @buffer: buffer to free
Chuck Lever02107142006-01-03 09:55:49 +0100784 *
785 */
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400786void rpc_free(void *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787{
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400788 size_t size;
789 struct rpc_buffer *buf;
Chuck Lever02107142006-01-03 09:55:49 +0100790
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400791 if (!buffer)
792 return;
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400793
794 buf = container_of(buffer, struct rpc_buffer, data);
795 size = buf->len;
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400796
Geert Uytterhoeven215d0672007-05-08 11:37:26 +0200797 dprintk("RPC: freeing buffer of size %zu at %p\n",
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400798 size, buf);
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400799
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400800 if (size <= RPC_BUFFER_MAXSIZE)
801 mempool_free(buf, rpc_buffer_mempool);
802 else
803 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804}
805
806/*
807 * Creation and deletion of RPC task structures
808 */
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100809void rpc_init_task(struct rpc_task *task, struct rpc_clnt *clnt, int flags, const struct rpc_call_ops *tk_ops, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
811 memset(task, 0, sizeof(*task));
812 init_timer(&task->tk_timer);
813 task->tk_timer.data = (unsigned long) task;
814 task->tk_timer.function = (void (*)(unsigned long)) rpc_run_timer;
Trond Myklebust44c28872006-01-03 09:55:06 +0100815 atomic_set(&task->tk_count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 task->tk_client = clnt;
817 task->tk_flags = flags;
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100818 task->tk_ops = tk_ops;
Trond Myklebust4ce70ad2006-01-03 09:55:05 +0100819 if (tk_ops->rpc_call_prepare != NULL)
820 task->tk_action = rpc_prepare_task;
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100821 task->tk_calldata = calldata;
Trond Myklebust6529eba2007-06-14 16:40:14 -0400822 INIT_LIST_HEAD(&task->tk_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 /* Initialize retry counters */
825 task->tk_garb_retry = 2;
826 task->tk_cred_retry = 2;
827
828 task->tk_priority = RPC_PRIORITY_NORMAL;
829 task->tk_cookie = (unsigned long)current;
830
831 /* Initialize workqueue for async tasks */
832 task->tk_workqueue = rpciod_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
834 if (clnt) {
Trond Myklebust34f52e32007-06-14 16:40:31 -0400835 kref_get(&clnt->cl_kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 if (clnt->cl_softrtry)
837 task->tk_flags |= RPC_TASK_SOFT;
838 if (!clnt->cl_intr)
839 task->tk_flags |= RPC_TASK_NOINTR;
840 }
841
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100842 BUG_ON(task->tk_ops == NULL);
843
Chuck Leveref759a22006-03-20 13:44:17 -0500844 /* starting timestamp */
845 task->tk_start = jiffies;
846
Chuck Lever46121cf2007-01-31 12:14:08 -0500847 dprintk("RPC: new task initialized, procpid %u\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 current->pid);
849}
850
851static struct rpc_task *
852rpc_alloc_task(void)
853{
854 return (struct rpc_task *)mempool_alloc(rpc_task_mempool, GFP_NOFS);
855}
856
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500857static void rpc_free_task(struct rcu_head *rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858{
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500859 struct rpc_task *task = container_of(rcu, struct rpc_task, u.tk_rcu);
Chuck Lever46121cf2007-01-31 12:14:08 -0500860 dprintk("RPC: %5u freeing task\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 mempool_free(task, rpc_task_mempool);
862}
863
864/*
Trond Myklebust90c57552007-06-09 19:49:36 -0400865 * Create a new task for the specified client.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 */
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100867struct rpc_task *rpc_new_task(struct rpc_clnt *clnt, int flags, const struct rpc_call_ops *tk_ops, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868{
869 struct rpc_task *task;
870
871 task = rpc_alloc_task();
872 if (!task)
Trond Myklebust90c57552007-06-09 19:49:36 -0400873 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100875 rpc_init_task(task, clnt, flags, tk_ops, calldata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
Chuck Lever46121cf2007-01-31 12:14:08 -0500877 dprintk("RPC: allocated task %p\n", task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 task->tk_flags |= RPC_TASK_DYNAMIC;
879out:
880 return task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881}
882
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500883
884void rpc_put_task(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885{
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100886 const struct rpc_call_ops *tk_ops = task->tk_ops;
887 void *calldata = task->tk_calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500889 if (!atomic_dec_and_test(&task->tk_count))
890 return;
891 /* Release resources */
892 if (task->tk_rqstp)
893 xprt_release(task);
894 if (task->tk_msg.rpc_cred)
895 rpcauth_unbindcred(task);
896 if (task->tk_client) {
897 rpc_release_client(task->tk_client);
898 task->tk_client = NULL;
899 }
900 if (task->tk_flags & RPC_TASK_DYNAMIC)
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500901 call_rcu_bh(&task->u.tk_rcu, rpc_free_task);
Trond Myklebustbbd5a1f2006-10-18 16:01:05 -0400902 rpc_release_calldata(tk_ops, calldata);
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500903}
904EXPORT_SYMBOL(rpc_put_task);
905
Trond Myklebustbde8f002007-01-24 11:54:53 -0800906static void rpc_release_task(struct rpc_task *task)
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500907{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908#ifdef RPC_DEBUG
909 BUG_ON(task->tk_magic != RPC_TASK_MAGIC_ID);
910#endif
Chuck Lever46121cf2007-01-31 12:14:08 -0500911 dprintk("RPC: %5u release task\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
Trond Myklebust6529eba2007-06-14 16:40:14 -0400913 if (!list_empty(&task->tk_task)) {
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400914 struct rpc_clnt *clnt = task->tk_client;
Trond Myklebust6529eba2007-06-14 16:40:14 -0400915 /* Remove from client task list */
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400916 spin_lock(&clnt->cl_lock);
Trond Myklebust6529eba2007-06-14 16:40:14 -0400917 list_del(&task->tk_task);
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400918 spin_unlock(&clnt->cl_lock);
Trond Myklebust6529eba2007-06-14 16:40:14 -0400919 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 BUG_ON (RPC_IS_QUEUED(task));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
922 /* Synchronously delete any running timer */
923 rpc_delete_timer(task);
924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925#ifdef RPC_DEBUG
926 task->tk_magic = 0;
927#endif
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500928 /* Wake up anyone who is waiting for task completion */
929 rpc_mark_complete_task(task);
930
931 rpc_put_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932}
933
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934/*
935 * Kill all tasks for the given client.
936 * XXX: kill their descendants as well?
937 */
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400938void rpc_killall_tasks(struct rpc_clnt *clnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939{
940 struct rpc_task *rovr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400943 if (list_empty(&clnt->cl_tasks))
944 return;
945 dprintk("RPC: killing all tasks for client %p\n", clnt);
946 /*
947 * Spin lock all_tasks to prevent changes...
948 */
949 spin_lock(&clnt->cl_lock);
950 list_for_each_entry(rovr, &clnt->cl_tasks, tk_task) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 if (! RPC_IS_ACTIVATED(rovr))
952 continue;
Trond Myklebust6529eba2007-06-14 16:40:14 -0400953 if (!(rovr->tk_flags & RPC_TASK_KILLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 rovr->tk_flags |= RPC_TASK_KILLED;
955 rpc_exit(rovr, -EIO);
956 rpc_wake_up_task(rovr);
957 }
958 }
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400959 spin_unlock(&clnt->cl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960}
961
Trond Myklebustb247bbf2007-07-19 16:32:20 -0400962int rpciod_up(void)
963{
964 return try_module_get(THIS_MODULE) ? 0 : -EINVAL;
965}
966
967void rpciod_down(void)
968{
969 module_put(THIS_MODULE);
970}
971
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972/*
Trond Myklebustb247bbf2007-07-19 16:32:20 -0400973 * Start up the rpciod workqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 */
Trond Myklebustb247bbf2007-07-19 16:32:20 -0400975static int rpciod_start(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976{
977 struct workqueue_struct *wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 /*
980 * Create the rpciod thread and wait for it to start.
981 */
Trond Myklebustab418d72007-06-14 17:08:36 -0400982 dprintk("RPC: creating workqueue rpciod\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 wq = create_workqueue("rpciod");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 rpciod_workqueue = wq;
Trond Myklebustb247bbf2007-07-19 16:32:20 -0400985 return rpciod_workqueue != NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986}
987
Trond Myklebustb247bbf2007-07-19 16:32:20 -0400988static void rpciod_stop(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989{
Trond Myklebustb247bbf2007-07-19 16:32:20 -0400990 struct workqueue_struct *wq = NULL;
Trond Myklebustab418d72007-06-14 17:08:36 -0400991
Trond Myklebustb247bbf2007-07-19 16:32:20 -0400992 if (rpciod_workqueue == NULL)
993 return;
Trond Myklebustab418d72007-06-14 17:08:36 -0400994 dprintk("RPC: destroying workqueue rpciod\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Trond Myklebustb247bbf2007-07-19 16:32:20 -0400996 wq = rpciod_workqueue;
997 rpciod_workqueue = NULL;
998 destroy_workqueue(wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999}
1000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001void
1002rpc_destroy_mempool(void)
1003{
Trond Myklebustb247bbf2007-07-19 16:32:20 -04001004 rpciod_stop();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 if (rpc_buffer_mempool)
1006 mempool_destroy(rpc_buffer_mempool);
1007 if (rpc_task_mempool)
1008 mempool_destroy(rpc_task_mempool);
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001009 if (rpc_task_slabp)
1010 kmem_cache_destroy(rpc_task_slabp);
1011 if (rpc_buffer_slabp)
1012 kmem_cache_destroy(rpc_buffer_slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013}
1014
1015int
1016rpc_init_mempool(void)
1017{
1018 rpc_task_slabp = kmem_cache_create("rpc_tasks",
1019 sizeof(struct rpc_task),
1020 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +09001021 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 if (!rpc_task_slabp)
1023 goto err_nomem;
1024 rpc_buffer_slabp = kmem_cache_create("rpc_buffers",
1025 RPC_BUFFER_MAXSIZE,
1026 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +09001027 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 if (!rpc_buffer_slabp)
1029 goto err_nomem;
Matthew Dobson93d23412006-03-26 01:37:50 -08001030 rpc_task_mempool = mempool_create_slab_pool(RPC_TASK_POOLSIZE,
1031 rpc_task_slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 if (!rpc_task_mempool)
1033 goto err_nomem;
Matthew Dobson93d23412006-03-26 01:37:50 -08001034 rpc_buffer_mempool = mempool_create_slab_pool(RPC_BUFFER_POOLSIZE,
1035 rpc_buffer_slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 if (!rpc_buffer_mempool)
1037 goto err_nomem;
Trond Myklebustb247bbf2007-07-19 16:32:20 -04001038 if (!rpciod_start())
1039 goto err_nomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 return 0;
1041err_nomem:
1042 rpc_destroy_mempool();
1043 return -ENOMEM;
1044}