blob: 9233ace076aabc7f6803fba4f85aaa877019e3b4 [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 Saoutcc4dc59e2006-11-05 18:42:48 +0100302 if (rpc_test_and_set_running(task))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 return;
Christophe Saoutcc4dc59e2006-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 */
420void rpc_wake_up_task(struct rpc_task *task)
421{
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}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400424EXPORT_SYMBOL_GPL(rpc_wake_up_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426/*
427 * Wake up the next task on a priority queue.
428 */
429static struct rpc_task * __rpc_wake_up_next_priority(struct rpc_wait_queue *queue)
430{
431 struct list_head *q;
432 struct rpc_task *task;
433
434 /*
Trond Myklebust3ff75762007-07-14 15:40:00 -0400435 * Service a batch of tasks from a single owner.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 */
437 q = &queue->tasks[queue->priority];
438 if (!list_empty(q)) {
439 task = list_entry(q->next, struct rpc_task, u.tk_wait.list);
Trond Myklebust3ff75762007-07-14 15:40:00 -0400440 if (queue->owner == task->tk_owner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 if (--queue->nr)
442 goto out;
443 list_move_tail(&task->u.tk_wait.list, q);
444 }
445 /*
446 * Check if we need to switch queues.
447 */
448 if (--queue->count)
Trond Myklebust3ff75762007-07-14 15:40:00 -0400449 goto new_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 }
451
452 /*
453 * Service the next queue.
454 */
455 do {
456 if (q == &queue->tasks[0])
457 q = &queue->tasks[queue->maxpriority];
458 else
459 q = q - 1;
460 if (!list_empty(q)) {
461 task = list_entry(q->next, struct rpc_task, u.tk_wait.list);
462 goto new_queue;
463 }
464 } while (q != &queue->tasks[queue->priority]);
465
466 rpc_reset_waitqueue_priority(queue);
467 return NULL;
468
469new_queue:
470 rpc_set_waitqueue_priority(queue, (unsigned int)(q - &queue->tasks[0]));
Trond Myklebust3ff75762007-07-14 15:40:00 -0400471new_owner:
472 rpc_set_waitqueue_owner(queue, task->tk_owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473out:
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500474 rpc_wake_up_task_queue_locked(queue, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 return task;
476}
477
478/*
479 * Wake up the next task on the wait queue.
480 */
481struct rpc_task * rpc_wake_up_next(struct rpc_wait_queue *queue)
482{
483 struct rpc_task *task = NULL;
484
Chuck Lever46121cf2007-01-31 12:14:08 -0500485 dprintk("RPC: wake_up_next(%p \"%s\")\n",
486 queue, rpc_qname(queue));
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500487 rcu_read_lock_bh();
488 spin_lock(&queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 if (RPC_IS_PRIORITY(queue))
490 task = __rpc_wake_up_next_priority(queue);
491 else {
492 task_for_first(task, &queue->tasks[0])
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500493 rpc_wake_up_task_queue_locked(queue, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 }
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500495 spin_unlock(&queue->lock);
496 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
498 return task;
499}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400500EXPORT_SYMBOL_GPL(rpc_wake_up_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
502/**
503 * rpc_wake_up - wake up all rpc_tasks
504 * @queue: rpc_wait_queue on which the tasks are sleeping
505 *
506 * Grabs queue->lock
507 */
508void rpc_wake_up(struct rpc_wait_queue *queue)
509{
Trond Myklebuste6d83d52006-03-13 21:20:48 -0800510 struct rpc_task *task, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 struct list_head *head;
Trond Myklebuste6d83d52006-03-13 21:20:48 -0800512
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500513 rcu_read_lock_bh();
514 spin_lock(&queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 head = &queue->tasks[queue->maxpriority];
516 for (;;) {
Trond Myklebuste6d83d52006-03-13 21:20:48 -0800517 list_for_each_entry_safe(task, next, head, u.tk_wait.list)
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500518 rpc_wake_up_task_queue_locked(queue, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 if (head == &queue->tasks[0])
520 break;
521 head--;
522 }
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500523 spin_unlock(&queue->lock);
524 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400526EXPORT_SYMBOL_GPL(rpc_wake_up);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528/**
529 * rpc_wake_up_status - wake up all rpc_tasks and set their status value.
530 * @queue: rpc_wait_queue on which the tasks are sleeping
531 * @status: status value to set
532 *
533 * Grabs queue->lock
534 */
535void rpc_wake_up_status(struct rpc_wait_queue *queue, int status)
536{
Trond Myklebuste6d83d52006-03-13 21:20:48 -0800537 struct rpc_task *task, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500540 rcu_read_lock_bh();
541 spin_lock(&queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 head = &queue->tasks[queue->maxpriority];
543 for (;;) {
Trond Myklebuste6d83d52006-03-13 21:20:48 -0800544 list_for_each_entry_safe(task, next, head, u.tk_wait.list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 task->tk_status = status;
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500546 rpc_wake_up_task_queue_locked(queue, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 }
548 if (head == &queue->tasks[0])
549 break;
550 head--;
551 }
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500552 spin_unlock(&queue->lock);
553 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400555EXPORT_SYMBOL_GPL(rpc_wake_up_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Trond Myklebustfde95c72008-02-22 15:09:26 -0500557/*
558 * Run a timeout function.
559 */
560static void rpc_run_timer(unsigned long ptr)
561{
562 struct rpc_task *task = (struct rpc_task *)ptr;
563 void (*callback)(struct rpc_task *);
564
Trond Myklebustfde95c72008-02-22 15:09:26 -0500565 if (RPC_IS_QUEUED(task)) {
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500566 struct rpc_wait_queue *queue = task->tk_waitqueue;
Trond Myklebustfde95c72008-02-22 15:09:26 -0500567 callback = task->tk_timeout_fn;
568
569 dprintk("RPC: %5u running timer\n", task->tk_pid);
570 if (callback != NULL)
571 callback(task);
572 /* Note: we're already in a bh-safe context */
573 spin_lock(&queue->lock);
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500574 rpc_wake_up_task_queue_locked(queue, task);
Trond Myklebustfde95c72008-02-22 15:09:26 -0500575 spin_unlock(&queue->lock);
576 }
Trond Myklebustfde95c72008-02-22 15:09:26 -0500577 smp_mb__before_clear_bit();
578 clear_bit(RPC_TASK_HAS_TIMER, &task->tk_runstate);
579 smp_mb__after_clear_bit();
580}
581
Trond Myklebust80147932006-08-31 18:24:08 -0400582static void __rpc_atrun(struct rpc_task *task)
583{
Trond Myklebust80147932006-08-31 18:24:08 -0400584}
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586/*
587 * Run a task at a later time
588 */
Trond Myklebust80147932006-08-31 18:24:08 -0400589void rpc_delay(struct rpc_task *task, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
591 task->tk_timeout = delay;
592 rpc_sleep_on(&delay_queue, task, NULL, __rpc_atrun);
593}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400594EXPORT_SYMBOL_GPL(rpc_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596/*
Trond Myklebust4ce70ad2006-01-03 09:55:05 +0100597 * Helper to call task->tk_ops->rpc_call_prepare
598 */
599static void rpc_prepare_task(struct rpc_task *task)
600{
Trond Myklebust6d5fcb52006-10-18 16:01:06 -0400601 lock_kernel();
Trond Myklebust4ce70ad2006-01-03 09:55:05 +0100602 task->tk_ops->rpc_call_prepare(task, task->tk_calldata);
Trond Myklebust6d5fcb52006-10-18 16:01:06 -0400603 unlock_kernel();
Trond Myklebust4ce70ad2006-01-03 09:55:05 +0100604}
605
606/*
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100607 * Helper that calls task->tk_ops->rpc_call_done if it exists
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000608 */
Trond Myklebustabbcf282006-01-03 09:55:03 +0100609void rpc_exit_task(struct rpc_task *task)
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000610{
Trond Myklebustabbcf282006-01-03 09:55:03 +0100611 task->tk_action = NULL;
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100612 if (task->tk_ops->rpc_call_done != NULL) {
Trond Myklebust6d5fcb52006-10-18 16:01:06 -0400613 lock_kernel();
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100614 task->tk_ops->rpc_call_done(task, task->tk_calldata);
Trond Myklebust6d5fcb52006-10-18 16:01:06 -0400615 unlock_kernel();
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000616 if (task->tk_action != NULL) {
Trond Myklebustabbcf282006-01-03 09:55:03 +0100617 WARN_ON(RPC_ASSASSINATED(task));
618 /* Always release the RPC slot and buffer memory */
619 xprt_release(task);
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000620 }
621 }
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000622}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400623EXPORT_SYMBOL_GPL(rpc_exit_task);
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000624
Trond Myklebustbbd5a1f2006-10-18 16:01:05 -0400625void rpc_release_calldata(const struct rpc_call_ops *ops, void *calldata)
626{
627 if (ops->rpc_release != NULL) {
628 lock_kernel();
629 ops->rpc_release(calldata);
630 unlock_kernel();
631 }
632}
633
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000634/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 * This is the RPC `scheduler' (or rather, the finite state machine).
636 */
Trond Myklebust2efef832007-02-03 13:38:41 -0800637static void __rpc_execute(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
639 int status = 0;
640
Chuck Lever46121cf2007-01-31 12:14:08 -0500641 dprintk("RPC: %5u __rpc_execute flags=0x%x\n",
642 task->tk_pid, task->tk_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
644 BUG_ON(RPC_IS_QUEUED(task));
645
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000646 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 /*
648 * Garbage collection of pending timers...
649 */
650 rpc_delete_timer(task);
651
652 /*
653 * Execute any pending callback.
654 */
655 if (RPC_DO_CALLBACK(task)) {
656 /* Define a callback save pointer */
657 void (*save_callback)(struct rpc_task *);
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800658
659 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 * If a callback exists, save it, reset it,
661 * call it.
662 * The save is needed to stop from resetting
663 * another callback set within the callback handler
664 * - Dave
665 */
666 save_callback=task->tk_callback;
667 task->tk_callback=NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 save_callback(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 }
670
671 /*
672 * Perform the next FSM step.
673 * tk_action may be NULL when the task has been killed
674 * by someone else.
675 */
676 if (!RPC_IS_QUEUED(task)) {
Trond Myklebustabbcf282006-01-03 09:55:03 +0100677 if (task->tk_action == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 break;
Trond Myklebustabbcf282006-01-03 09:55:03 +0100679 task->tk_action(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 }
681
682 /*
683 * Lockless check for whether task is sleeping or not.
684 */
685 if (!RPC_IS_QUEUED(task))
686 continue;
687 rpc_clear_running(task);
688 if (RPC_IS_ASYNC(task)) {
689 /* Careful! we may have raced... */
690 if (RPC_IS_QUEUED(task))
Trond Myklebust2efef832007-02-03 13:38:41 -0800691 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 if (rpc_test_and_set_running(task))
Trond Myklebust2efef832007-02-03 13:38:41 -0800693 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 continue;
695 }
696
697 /* sync task: sleep here */
Chuck Lever46121cf2007-01-31 12:14:08 -0500698 dprintk("RPC: %5u sync task going to sleep\n", task->tk_pid);
Trond Myklebust96651ab2005-06-22 17:16:21 +0000699 status = out_of_line_wait_on_bit(&task->tk_runstate,
Matthew Wilcox150030b2007-12-06 16:24:39 -0500700 RPC_TASK_QUEUED, rpc_wait_bit_killable,
701 TASK_KILLABLE);
Trond Myklebust96651ab2005-06-22 17:16:21 +0000702 if (status == -ERESTARTSYS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 /*
704 * When a sync task receives a signal, it exits with
705 * -ERESTARTSYS. In order to catch any callbacks that
706 * clean up after sleeping on some queue, we don't
707 * break the loop here, but go around once more.
708 */
Chuck Lever46121cf2007-01-31 12:14:08 -0500709 dprintk("RPC: %5u got signal\n", task->tk_pid);
Trond Myklebust96651ab2005-06-22 17:16:21 +0000710 task->tk_flags |= RPC_TASK_KILLED;
711 rpc_exit(task, -ERESTARTSYS);
712 rpc_wake_up_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 }
714 rpc_set_running(task);
Chuck Lever46121cf2007-01-31 12:14:08 -0500715 dprintk("RPC: %5u sync task resuming\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 }
717
Chuck Lever46121cf2007-01-31 12:14:08 -0500718 dprintk("RPC: %5u return %d, status %d\n", task->tk_pid, status,
719 task->tk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 /* Release all resources associated with the task */
721 rpc_release_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722}
723
724/*
725 * User-visible entry point to the scheduler.
726 *
727 * This may be called recursively if e.g. an async NFS task updates
728 * the attributes and finds that dirty pages must be flushed.
729 * NOTE: Upon exit of this function the task is guaranteed to be
730 * released. In particular note that tk_release() will have
731 * been called, so your task memory may have been freed.
732 */
Trond Myklebust2efef832007-02-03 13:38:41 -0800733void rpc_execute(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
Trond Myklebust44c28872006-01-03 09:55:06 +0100735 rpc_set_active(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 rpc_set_running(task);
Trond Myklebust2efef832007-02-03 13:38:41 -0800737 __rpc_execute(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738}
739
David Howells65f27f32006-11-22 14:55:48 +0000740static void rpc_async_schedule(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
David Howells65f27f32006-11-22 14:55:48 +0000742 __rpc_execute(container_of(work, struct rpc_task, u.tk_work));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
744
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400745struct rpc_buffer {
746 size_t len;
747 char data[];
748};
749
Chuck Lever02107142006-01-03 09:55:49 +0100750/**
751 * rpc_malloc - allocate an RPC buffer
752 * @task: RPC task that will use this buffer
753 * @size: requested byte size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 *
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400755 * To prevent rpciod from hanging, this allocator never sleeps,
756 * returning NULL if the request cannot be serviced immediately.
757 * The caller can arrange to sleep in a way that is safe for rpciod.
758 *
759 * Most requests are 'small' (under 2KiB) and can be serviced from a
760 * mempool, ensuring that NFS reads and writes can always proceed,
761 * and that there is good locality of reference for these buffers.
762 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 * In order to avoid memory starvation triggering more writebacks of
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400764 * NFS requests, we avoid using GFP_KERNEL.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 */
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400766void *rpc_malloc(struct rpc_task *task, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767{
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400768 struct rpc_buffer *buf;
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400769 gfp_t gfp = RPC_IS_SWAPPER(task) ? GFP_ATOMIC : GFP_NOWAIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400771 size += sizeof(struct rpc_buffer);
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400772 if (size <= RPC_BUFFER_MAXSIZE)
773 buf = mempool_alloc(rpc_buffer_mempool, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 else
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400775 buf = kmalloc(size, gfp);
Peter Zijlstraddce40d2007-05-09 08:30:11 +0200776
777 if (!buf)
778 return NULL;
779
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400780 buf->len = size;
Geert Uytterhoeven215d0672007-05-08 11:37:26 +0200781 dprintk("RPC: %5u allocated buffer of size %zu at %p\n",
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400782 task->tk_pid, size, buf);
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400783 return &buf->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400785EXPORT_SYMBOL_GPL(rpc_malloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
Chuck Lever02107142006-01-03 09:55:49 +0100787/**
788 * rpc_free - free buffer allocated via rpc_malloc
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400789 * @buffer: buffer to free
Chuck Lever02107142006-01-03 09:55:49 +0100790 *
791 */
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400792void rpc_free(void *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793{
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400794 size_t size;
795 struct rpc_buffer *buf;
Chuck Lever02107142006-01-03 09:55:49 +0100796
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400797 if (!buffer)
798 return;
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400799
800 buf = container_of(buffer, struct rpc_buffer, data);
801 size = buf->len;
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400802
Geert Uytterhoeven215d0672007-05-08 11:37:26 +0200803 dprintk("RPC: freeing buffer of size %zu at %p\n",
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400804 size, buf);
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400805
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400806 if (size <= RPC_BUFFER_MAXSIZE)
807 mempool_free(buf, rpc_buffer_mempool);
808 else
809 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400811EXPORT_SYMBOL_GPL(rpc_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
813/*
814 * Creation and deletion of RPC task structures
815 */
Trond Myklebust47fe0642007-10-25 18:42:55 -0400816static void rpc_init_task(struct rpc_task *task, const struct rpc_task_setup *task_setup_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
818 memset(task, 0, sizeof(*task));
Trond Myklebustfde95c72008-02-22 15:09:26 -0500819 setup_timer(&task->tk_timer, rpc_run_timer, (unsigned long)task);
Trond Myklebust44c28872006-01-03 09:55:06 +0100820 atomic_set(&task->tk_count, 1);
Trond Myklebust84115e12007-07-14 15:39:59 -0400821 task->tk_flags = task_setup_data->flags;
822 task->tk_ops = task_setup_data->callback_ops;
823 task->tk_calldata = task_setup_data->callback_data;
Trond Myklebust6529eba2007-06-14 16:40:14 -0400824 INIT_LIST_HEAD(&task->tk_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
826 /* Initialize retry counters */
827 task->tk_garb_retry = 2;
828 task->tk_cred_retry = 2;
829
Trond Myklebust3ff75762007-07-14 15:40:00 -0400830 task->tk_priority = task_setup_data->priority - RPC_PRIORITY_LOW;
831 task->tk_owner = current->tgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
833 /* Initialize workqueue for async tasks */
Trond Myklebust32bfb5c2008-02-19 20:04:21 -0500834 task->tk_workqueue = task_setup_data->workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
Trond Myklebust84115e12007-07-14 15:39:59 -0400836 task->tk_client = task_setup_data->rpc_client;
837 if (task->tk_client != NULL) {
838 kref_get(&task->tk_client->cl_kref);
839 if (task->tk_client->cl_softrtry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 task->tk_flags |= RPC_TASK_SOFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 }
842
Trond Myklebust84115e12007-07-14 15:39:59 -0400843 if (task->tk_ops->rpc_call_prepare != NULL)
844 task->tk_action = rpc_prepare_task;
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100845
Trond Myklebustb3ef8b32007-10-25 18:32:34 -0400846 if (task_setup_data->rpc_message != NULL) {
847 memcpy(&task->tk_msg, task_setup_data->rpc_message, sizeof(task->tk_msg));
848 /* Bind the user cred */
849 if (task->tk_msg.rpc_cred != NULL)
850 rpcauth_holdcred(task);
851 else
852 rpcauth_bindcred(task);
853 if (task->tk_action == NULL)
854 rpc_call_start(task);
855 }
856
Chuck Leveref759a22006-03-20 13:44:17 -0500857 /* starting timestamp */
858 task->tk_start = jiffies;
859
Chuck Lever46121cf2007-01-31 12:14:08 -0500860 dprintk("RPC: new task initialized, procpid %u\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -0700861 task_pid_nr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862}
863
864static struct rpc_task *
865rpc_alloc_task(void)
866{
867 return (struct rpc_task *)mempool_alloc(rpc_task_mempool, GFP_NOFS);
868}
869
Trond Myklebust32bfb5c2008-02-19 20:04:21 -0500870static void rpc_free_task_rcu(struct rcu_head *rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871{
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500872 struct rpc_task *task = container_of(rcu, struct rpc_task, u.tk_rcu);
Chuck Lever46121cf2007-01-31 12:14:08 -0500873 dprintk("RPC: %5u freeing task\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 mempool_free(task, rpc_task_mempool);
875}
876
877/*
Trond Myklebust90c57552007-06-09 19:49:36 -0400878 * Create a new task for the specified client.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 */
Trond Myklebust84115e12007-07-14 15:39:59 -0400880struct rpc_task *rpc_new_task(const struct rpc_task_setup *setup_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881{
Trond Myklebuste8f5d772007-10-25 18:42:53 -0400882 struct rpc_task *task = setup_data->task;
883 unsigned short flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Trond Myklebuste8f5d772007-10-25 18:42:53 -0400885 if (task == NULL) {
886 task = rpc_alloc_task();
887 if (task == NULL)
888 goto out;
889 flags = RPC_TASK_DYNAMIC;
890 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Trond Myklebust84115e12007-07-14 15:39:59 -0400892 rpc_init_task(task, setup_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
Trond Myklebuste8f5d772007-10-25 18:42:53 -0400894 task->tk_flags |= flags;
Chuck Lever46121cf2007-01-31 12:14:08 -0500895 dprintk("RPC: allocated task %p\n", task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896out:
897 return task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898}
899
Trond Myklebust32bfb5c2008-02-19 20:04:21 -0500900static void rpc_free_task(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901{
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100902 const struct rpc_call_ops *tk_ops = task->tk_ops;
903 void *calldata = task->tk_calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
Trond Myklebust32bfb5c2008-02-19 20:04:21 -0500905 if (task->tk_flags & RPC_TASK_DYNAMIC)
906 call_rcu_bh(&task->u.tk_rcu, rpc_free_task_rcu);
907 rpc_release_calldata(tk_ops, calldata);
908}
909
910static void rpc_async_release(struct work_struct *work)
911{
912 rpc_free_task(container_of(work, struct rpc_task, u.tk_work));
913}
914
915void rpc_put_task(struct rpc_task *task)
916{
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500917 if (!atomic_dec_and_test(&task->tk_count))
918 return;
919 /* Release resources */
920 if (task->tk_rqstp)
921 xprt_release(task);
922 if (task->tk_msg.rpc_cred)
923 rpcauth_unbindcred(task);
924 if (task->tk_client) {
925 rpc_release_client(task->tk_client);
926 task->tk_client = NULL;
927 }
Trond Myklebust32bfb5c2008-02-19 20:04:21 -0500928 if (task->tk_workqueue != NULL) {
929 INIT_WORK(&task->u.tk_work, rpc_async_release);
930 queue_work(task->tk_workqueue, &task->u.tk_work);
931 } else
932 rpc_free_task(task);
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500933}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400934EXPORT_SYMBOL_GPL(rpc_put_task);
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500935
Trond Myklebustbde8f002007-01-24 11:54:53 -0800936static void rpc_release_task(struct rpc_task *task)
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500937{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938#ifdef RPC_DEBUG
939 BUG_ON(task->tk_magic != RPC_TASK_MAGIC_ID);
940#endif
Chuck Lever46121cf2007-01-31 12:14:08 -0500941 dprintk("RPC: %5u release task\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Trond Myklebust6529eba2007-06-14 16:40:14 -0400943 if (!list_empty(&task->tk_task)) {
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400944 struct rpc_clnt *clnt = task->tk_client;
Trond Myklebust6529eba2007-06-14 16:40:14 -0400945 /* Remove from client task list */
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400946 spin_lock(&clnt->cl_lock);
Trond Myklebust6529eba2007-06-14 16:40:14 -0400947 list_del(&task->tk_task);
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400948 spin_unlock(&clnt->cl_lock);
Trond Myklebust6529eba2007-06-14 16:40:14 -0400949 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 BUG_ON (RPC_IS_QUEUED(task));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
952 /* Synchronously delete any running timer */
953 rpc_delete_timer(task);
954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955#ifdef RPC_DEBUG
956 task->tk_magic = 0;
957#endif
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500958 /* Wake up anyone who is waiting for task completion */
959 rpc_mark_complete_task(task);
960
961 rpc_put_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962}
963
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964/*
965 * Kill all tasks for the given client.
966 * XXX: kill their descendants as well?
967 */
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400968void rpc_killall_tasks(struct rpc_clnt *clnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969{
970 struct rpc_task *rovr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400973 if (list_empty(&clnt->cl_tasks))
974 return;
975 dprintk("RPC: killing all tasks for client %p\n", clnt);
976 /*
977 * Spin lock all_tasks to prevent changes...
978 */
979 spin_lock(&clnt->cl_lock);
980 list_for_each_entry(rovr, &clnt->cl_tasks, tk_task) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 if (! RPC_IS_ACTIVATED(rovr))
982 continue;
Trond Myklebust6529eba2007-06-14 16:40:14 -0400983 if (!(rovr->tk_flags & RPC_TASK_KILLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 rovr->tk_flags |= RPC_TASK_KILLED;
985 rpc_exit(rovr, -EIO);
986 rpc_wake_up_task(rovr);
987 }
988 }
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400989 spin_unlock(&clnt->cl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400991EXPORT_SYMBOL_GPL(rpc_killall_tasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
Trond Myklebustb247bbf2007-07-19 16:32:20 -0400993int rpciod_up(void)
994{
995 return try_module_get(THIS_MODULE) ? 0 : -EINVAL;
996}
997
998void rpciod_down(void)
999{
1000 module_put(THIS_MODULE);
1001}
1002
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003/*
Trond Myklebustb247bbf2007-07-19 16:32:20 -04001004 * Start up the rpciod workqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 */
Trond Myklebustb247bbf2007-07-19 16:32:20 -04001006static int rpciod_start(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007{
1008 struct workqueue_struct *wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 /*
1011 * Create the rpciod thread and wait for it to start.
1012 */
Trond Myklebustab418d72007-06-14 17:08:36 -04001013 dprintk("RPC: creating workqueue rpciod\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 wq = create_workqueue("rpciod");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 rpciod_workqueue = wq;
Trond Myklebustb247bbf2007-07-19 16:32:20 -04001016 return rpciod_workqueue != NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017}
1018
Trond Myklebustb247bbf2007-07-19 16:32:20 -04001019static void rpciod_stop(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020{
Trond Myklebustb247bbf2007-07-19 16:32:20 -04001021 struct workqueue_struct *wq = NULL;
Trond Myklebustab418d72007-06-14 17:08:36 -04001022
Trond Myklebustb247bbf2007-07-19 16:32:20 -04001023 if (rpciod_workqueue == NULL)
1024 return;
Trond Myklebustab418d72007-06-14 17:08:36 -04001025 dprintk("RPC: destroying workqueue rpciod\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
Trond Myklebustb247bbf2007-07-19 16:32:20 -04001027 wq = rpciod_workqueue;
1028 rpciod_workqueue = NULL;
1029 destroy_workqueue(wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030}
1031
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032void
1033rpc_destroy_mempool(void)
1034{
Trond Myklebustb247bbf2007-07-19 16:32:20 -04001035 rpciod_stop();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 if (rpc_buffer_mempool)
1037 mempool_destroy(rpc_buffer_mempool);
1038 if (rpc_task_mempool)
1039 mempool_destroy(rpc_task_mempool);
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001040 if (rpc_task_slabp)
1041 kmem_cache_destroy(rpc_task_slabp);
1042 if (rpc_buffer_slabp)
1043 kmem_cache_destroy(rpc_buffer_slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044}
1045
1046int
1047rpc_init_mempool(void)
1048{
1049 rpc_task_slabp = kmem_cache_create("rpc_tasks",
1050 sizeof(struct rpc_task),
1051 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +09001052 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 if (!rpc_task_slabp)
1054 goto err_nomem;
1055 rpc_buffer_slabp = kmem_cache_create("rpc_buffers",
1056 RPC_BUFFER_MAXSIZE,
1057 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +09001058 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 if (!rpc_buffer_slabp)
1060 goto err_nomem;
Matthew Dobson93d23412006-03-26 01:37:50 -08001061 rpc_task_mempool = mempool_create_slab_pool(RPC_TASK_POOLSIZE,
1062 rpc_task_slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 if (!rpc_task_mempool)
1064 goto err_nomem;
Matthew Dobson93d23412006-03-26 01:37:50 -08001065 rpc_buffer_mempool = mempool_create_slab_pool(RPC_BUFFER_POOLSIZE,
1066 rpc_buffer_slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 if (!rpc_buffer_mempool)
1068 goto err_nomem;
Trond Myklebustb247bbf2007-07-19 16:32:20 -04001069 if (!rpciod_start())
1070 goto err_nomem;
Trond Myklebusta4a87492007-07-18 13:24:19 -04001071 /*
1072 * The following is not strictly a mempool initialisation,
1073 * but there is no harm in doing it here
1074 */
1075 rpc_init_wait_queue(&delay_queue, "delayq");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 return 0;
1077err_nomem:
1078 rpc_destroy_mempool();
1079 return -ENOMEM;
1080}