blob: caf12fd6b6af0102e92c14b7ba1684014db58054 [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 */
Trond Myklebust5d008372008-02-22 16:34:17 -050059static void
Linus Torvalds1da177e2005-04-16 15:20:36 -070060__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 = 0;
64}
65
66/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 * Set up a timer for the current task.
68 */
Trond Myklebust5d008372008-02-22 16:34:17 -050069static void
70__rpc_add_timer(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
72 if (!task->tk_timeout)
73 return;
74
Chuck Lever46121cf2007-01-31 12:14:08 -050075 dprintk("RPC: %5u setting alarm for %lu ms\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 task->tk_pid, task->tk_timeout * 1000 / HZ);
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 set_bit(RPC_TASK_HAS_TIMER, &task->tk_runstate);
79 mod_timer(&task->tk_timer, jiffies + task->tk_timeout);
80}
81
82/*
83 * Delete any timer for the current task. Because we use del_timer_sync(),
84 * this function should never be called while holding queue->lock.
85 */
86static void
87rpc_delete_timer(struct rpc_task *task)
88{
89 if (RPC_IS_QUEUED(task))
90 return;
91 if (test_and_clear_bit(RPC_TASK_HAS_TIMER, &task->tk_runstate)) {
92 del_singleshot_timer_sync(&task->tk_timer);
Chuck Lever46121cf2007-01-31 12:14:08 -050093 dprintk("RPC: %5u deleting timer\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 }
95}
96
97/*
98 * Add new request to a priority queue.
99 */
100static void __rpc_add_wait_queue_priority(struct rpc_wait_queue *queue, struct rpc_task *task)
101{
102 struct list_head *q;
103 struct rpc_task *t;
104
105 INIT_LIST_HEAD(&task->u.tk_wait.links);
106 q = &queue->tasks[task->tk_priority];
107 if (unlikely(task->tk_priority > queue->maxpriority))
108 q = &queue->tasks[queue->maxpriority];
109 list_for_each_entry(t, q, u.tk_wait.list) {
Trond Myklebust3ff75762007-07-14 15:40:00 -0400110 if (t->tk_owner == task->tk_owner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 list_add_tail(&task->u.tk_wait.list, &t->u.tk_wait.links);
112 return;
113 }
114 }
115 list_add_tail(&task->u.tk_wait.list, q);
116}
117
118/*
119 * Add new request to wait queue.
120 *
121 * Swapper tasks always get inserted at the head of the queue.
122 * This should avoid many nasty memory deadlocks and hopefully
123 * improve overall performance.
124 * Everyone else gets appended to the queue to ensure proper FIFO behavior.
125 */
126static void __rpc_add_wait_queue(struct rpc_wait_queue *queue, struct rpc_task *task)
127{
128 BUG_ON (RPC_IS_QUEUED(task));
129
130 if (RPC_IS_PRIORITY(queue))
131 __rpc_add_wait_queue_priority(queue, task);
132 else if (RPC_IS_SWAPPER(task))
133 list_add(&task->u.tk_wait.list, &queue->tasks[0]);
134 else
135 list_add_tail(&task->u.tk_wait.list, &queue->tasks[0]);
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500136 task->tk_waitqueue = queue;
Chuck Levere19b63d2006-03-20 13:44:15 -0500137 queue->qlen++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 rpc_set_queued(task);
139
Chuck Lever46121cf2007-01-31 12:14:08 -0500140 dprintk("RPC: %5u added to queue %p \"%s\"\n",
141 task->tk_pid, queue, rpc_qname(queue));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
143
144/*
145 * Remove request from a priority queue.
146 */
147static void __rpc_remove_wait_queue_priority(struct rpc_task *task)
148{
149 struct rpc_task *t;
150
151 if (!list_empty(&task->u.tk_wait.links)) {
152 t = list_entry(task->u.tk_wait.links.next, struct rpc_task, u.tk_wait.list);
153 list_move(&t->u.tk_wait.list, &task->u.tk_wait.list);
154 list_splice_init(&task->u.tk_wait.links, &t->u.tk_wait.links);
155 }
156 list_del(&task->u.tk_wait.list);
157}
158
159/*
160 * Remove request from queue.
161 * Note: must be called with spin lock held.
162 */
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500163static void __rpc_remove_wait_queue(struct rpc_wait_queue *queue, struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 if (RPC_IS_PRIORITY(queue))
166 __rpc_remove_wait_queue_priority(task);
167 else
168 list_del(&task->u.tk_wait.list);
Chuck Levere19b63d2006-03-20 13:44:15 -0500169 queue->qlen--;
Chuck Lever46121cf2007-01-31 12:14:08 -0500170 dprintk("RPC: %5u removed from queue %p \"%s\"\n",
171 task->tk_pid, queue, rpc_qname(queue));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172}
173
174static inline void rpc_set_waitqueue_priority(struct rpc_wait_queue *queue, int priority)
175{
176 queue->priority = priority;
177 queue->count = 1 << (priority * 2);
178}
179
Trond Myklebust3ff75762007-07-14 15:40:00 -0400180static inline void rpc_set_waitqueue_owner(struct rpc_wait_queue *queue, pid_t pid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
Trond Myklebust3ff75762007-07-14 15:40:00 -0400182 queue->owner = pid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 queue->nr = RPC_BATCH_COUNT;
184}
185
186static inline void rpc_reset_waitqueue_priority(struct rpc_wait_queue *queue)
187{
188 rpc_set_waitqueue_priority(queue, queue->maxpriority);
Trond Myklebust3ff75762007-07-14 15:40:00 -0400189 rpc_set_waitqueue_owner(queue, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
191
Trond Myklebust3ff75762007-07-14 15:40:00 -0400192static 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 -0700193{
194 int i;
195
196 spin_lock_init(&queue->lock);
197 for (i = 0; i < ARRAY_SIZE(queue->tasks); i++)
198 INIT_LIST_HEAD(&queue->tasks[i]);
Trond Myklebust3ff75762007-07-14 15:40:00 -0400199 queue->maxpriority = nr_queues - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 rpc_reset_waitqueue_priority(queue);
201#ifdef RPC_DEBUG
202 queue->name = qname;
203#endif
204}
205
206void rpc_init_priority_wait_queue(struct rpc_wait_queue *queue, const char *qname)
207{
Trond Myklebust3ff75762007-07-14 15:40:00 -0400208 __rpc_init_priority_wait_queue(queue, qname, RPC_NR_PRIORITY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209}
210
211void rpc_init_wait_queue(struct rpc_wait_queue *queue, const char *qname)
212{
Trond Myklebust3ff75762007-07-14 15:40:00 -0400213 __rpc_init_priority_wait_queue(queue, qname, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400215EXPORT_SYMBOL_GPL(rpc_init_wait_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Matthew Wilcox150030b2007-12-06 16:24:39 -0500217static int rpc_wait_bit_killable(void *word)
Trond Myklebust44c28872006-01-03 09:55:06 +0100218{
Matthew Wilcox150030b2007-12-06 16:24:39 -0500219 if (fatal_signal_pending(current))
Trond Myklebust44c28872006-01-03 09:55:06 +0100220 return -ERESTARTSYS;
221 schedule();
222 return 0;
223}
224
Trond Myklebustc44fe702007-06-16 14:17:01 -0400225#ifdef RPC_DEBUG
226static void rpc_task_set_debuginfo(struct rpc_task *task)
227{
228 static atomic_t rpc_pid;
229
230 task->tk_magic = RPC_TASK_MAGIC_ID;
231 task->tk_pid = atomic_inc_return(&rpc_pid);
232}
233#else
234static inline void rpc_task_set_debuginfo(struct rpc_task *task)
235{
236}
237#endif
238
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500239static void rpc_set_active(struct rpc_task *task)
240{
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400241 struct rpc_clnt *clnt;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500242 if (test_and_set_bit(RPC_TASK_ACTIVE, &task->tk_runstate) != 0)
243 return;
Trond Myklebustc44fe702007-06-16 14:17:01 -0400244 rpc_task_set_debuginfo(task);
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500245 /* Add to global list of all tasks */
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400246 clnt = task->tk_client;
247 if (clnt != NULL) {
248 spin_lock(&clnt->cl_lock);
249 list_add_tail(&task->tk_task, &clnt->cl_tasks);
250 spin_unlock(&clnt->cl_lock);
251 }
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500252}
253
Trond Myklebust44c28872006-01-03 09:55:06 +0100254/*
255 * Mark an RPC call as having completed by clearing the 'active' bit
256 */
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500257static void rpc_mark_complete_task(struct rpc_task *task)
Trond Myklebust44c28872006-01-03 09:55:06 +0100258{
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500259 smp_mb__before_clear_bit();
260 clear_bit(RPC_TASK_ACTIVE, &task->tk_runstate);
261 smp_mb__after_clear_bit();
Trond Myklebust44c28872006-01-03 09:55:06 +0100262 wake_up_bit(&task->tk_runstate, RPC_TASK_ACTIVE);
263}
264
265/*
266 * Allow callers to wait for completion of an RPC call
267 */
268int __rpc_wait_for_completion_task(struct rpc_task *task, int (*action)(void *))
269{
270 if (action == NULL)
Matthew Wilcox150030b2007-12-06 16:24:39 -0500271 action = rpc_wait_bit_killable;
Trond Myklebust44c28872006-01-03 09:55:06 +0100272 return wait_on_bit(&task->tk_runstate, RPC_TASK_ACTIVE,
Matthew Wilcox150030b2007-12-06 16:24:39 -0500273 action, TASK_KILLABLE);
Trond Myklebust44c28872006-01-03 09:55:06 +0100274}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400275EXPORT_SYMBOL_GPL(__rpc_wait_for_completion_task);
Trond Myklebust44c28872006-01-03 09:55:06 +0100276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277/*
278 * Make an RPC task runnable.
279 *
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800280 * Note: If the task is ASYNC, this must be called with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 * the spinlock held to protect the wait queue operation.
282 */
283static void rpc_make_runnable(struct rpc_task *task)
284{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 rpc_clear_queued(task);
Christophe Saoutcc4dc59e2006-11-05 18:42:48 +0100286 if (rpc_test_and_set_running(task))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 return;
Christophe Saoutcc4dc59e2006-11-05 18:42:48 +0100288 /* We might have raced */
289 if (RPC_IS_QUEUED(task)) {
290 rpc_clear_running(task);
291 return;
292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 if (RPC_IS_ASYNC(task)) {
294 int status;
295
David Howells65f27f32006-11-22 14:55:48 +0000296 INIT_WORK(&task->u.tk_work, rpc_async_schedule);
Trond Myklebust32bfb5c2008-02-19 20:04:21 -0500297 status = queue_work(rpciod_workqueue, &task->u.tk_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 if (status < 0) {
299 printk(KERN_WARNING "RPC: failed to add task to queue: error: %d!\n", status);
300 task->tk_status = status;
301 return;
302 }
303 } else
Trond Myklebust96651ab2005-06-22 17:16:21 +0000304 wake_up_bit(&task->tk_runstate, RPC_TASK_QUEUED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
307/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 * Prepare for sleeping on a wait queue.
309 * By always appending tasks to the list we ensure FIFO behavior.
310 * NB: An RPC task will only receive interrupt-driven events as long
311 * as it's on a wait queue.
312 */
313static void __rpc_sleep_on(struct rpc_wait_queue *q, struct rpc_task *task,
Trond Myklebust5d008372008-02-22 16:34:17 -0500314 rpc_action action)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
Chuck Lever46121cf2007-01-31 12:14:08 -0500316 dprintk("RPC: %5u sleep_on(queue \"%s\" time %lu)\n",
317 task->tk_pid, rpc_qname(q), jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319 if (!RPC_IS_ASYNC(task) && !RPC_IS_ACTIVATED(task)) {
320 printk(KERN_ERR "RPC: Inactive synchronous task put to sleep!\n");
321 return;
322 }
323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 __rpc_add_wait_queue(q, task);
325
326 BUG_ON(task->tk_callback != NULL);
327 task->tk_callback = action;
Trond Myklebust5d008372008-02-22 16:34:17 -0500328 __rpc_add_timer(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329}
330
331void rpc_sleep_on(struct rpc_wait_queue *q, struct rpc_task *task,
Trond Myklebust5d008372008-02-22 16:34:17 -0500332 rpc_action action)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500334 /* Mark the task as being activated if so needed */
335 rpc_set_active(task);
336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 /*
338 * Protect the queue operations.
339 */
340 spin_lock_bh(&q->lock);
Trond Myklebust5d008372008-02-22 16:34:17 -0500341 __rpc_sleep_on(q, task, action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 spin_unlock_bh(&q->lock);
343}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400344EXPORT_SYMBOL_GPL(rpc_sleep_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
346/**
347 * __rpc_do_wake_up_task - wake up a single rpc_task
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500348 * @queue: wait queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 * @task: task to be woken up
350 *
351 * Caller must hold queue->lock, and have cleared the task queued flag.
352 */
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500353static void __rpc_do_wake_up_task(struct rpc_wait_queue *queue, struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
Chuck Lever46121cf2007-01-31 12:14:08 -0500355 dprintk("RPC: %5u __rpc_wake_up_task (now %lu)\n",
356 task->tk_pid, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358#ifdef RPC_DEBUG
359 BUG_ON(task->tk_magic != RPC_TASK_MAGIC_ID);
360#endif
361 /* Has the task been executed yet? If not, we cannot wake it up! */
362 if (!RPC_IS_ACTIVATED(task)) {
363 printk(KERN_ERR "RPC: Inactive task (%p) being woken up!\n", task);
364 return;
365 }
366
367 __rpc_disable_timer(task);
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500368 __rpc_remove_wait_queue(queue, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370 rpc_make_runnable(task);
371
Chuck Lever46121cf2007-01-31 12:14:08 -0500372 dprintk("RPC: __rpc_wake_up_task done\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373}
374
375/*
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500376 * Wake up a queued task while the queue lock is being held
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 */
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500378static void rpc_wake_up_task_queue_locked(struct rpc_wait_queue *queue, struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500380 if (!RPC_IS_QUEUED(task) || task->tk_waitqueue != queue)
381 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 if (rpc_start_wakeup(task)) {
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500383 __rpc_do_wake_up_task(queue, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 rpc_finish_wakeup(task);
385 }
386}
387
388/*
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500389 * Wake up a task on a specific queue
390 */
391void rpc_wake_up_queued_task(struct rpc_wait_queue *queue, struct rpc_task *task)
392{
393 rcu_read_lock_bh();
394 spin_lock(&queue->lock);
395 rpc_wake_up_task_queue_locked(queue, task);
396 spin_unlock(&queue->lock);
397 rcu_read_unlock_bh();
398}
399EXPORT_SYMBOL_GPL(rpc_wake_up_queued_task);
400
401/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 * Wake up the specified task
403 */
Trond Myklebustfda13932008-02-22 16:34:12 -0500404static void rpc_wake_up_task(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405{
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500406 rpc_wake_up_queued_task(task->tk_waitqueue, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407}
408
409/*
410 * Wake up the next task on a priority queue.
411 */
412static struct rpc_task * __rpc_wake_up_next_priority(struct rpc_wait_queue *queue)
413{
414 struct list_head *q;
415 struct rpc_task *task;
416
417 /*
Trond Myklebust3ff75762007-07-14 15:40:00 -0400418 * Service a batch of tasks from a single owner.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 */
420 q = &queue->tasks[queue->priority];
421 if (!list_empty(q)) {
422 task = list_entry(q->next, struct rpc_task, u.tk_wait.list);
Trond Myklebust3ff75762007-07-14 15:40:00 -0400423 if (queue->owner == task->tk_owner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 if (--queue->nr)
425 goto out;
426 list_move_tail(&task->u.tk_wait.list, q);
427 }
428 /*
429 * Check if we need to switch queues.
430 */
431 if (--queue->count)
Trond Myklebust3ff75762007-07-14 15:40:00 -0400432 goto new_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 }
434
435 /*
436 * Service the next queue.
437 */
438 do {
439 if (q == &queue->tasks[0])
440 q = &queue->tasks[queue->maxpriority];
441 else
442 q = q - 1;
443 if (!list_empty(q)) {
444 task = list_entry(q->next, struct rpc_task, u.tk_wait.list);
445 goto new_queue;
446 }
447 } while (q != &queue->tasks[queue->priority]);
448
449 rpc_reset_waitqueue_priority(queue);
450 return NULL;
451
452new_queue:
453 rpc_set_waitqueue_priority(queue, (unsigned int)(q - &queue->tasks[0]));
Trond Myklebust3ff75762007-07-14 15:40:00 -0400454new_owner:
455 rpc_set_waitqueue_owner(queue, task->tk_owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456out:
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500457 rpc_wake_up_task_queue_locked(queue, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 return task;
459}
460
461/*
462 * Wake up the next task on the wait queue.
463 */
464struct rpc_task * rpc_wake_up_next(struct rpc_wait_queue *queue)
465{
466 struct rpc_task *task = NULL;
467
Chuck Lever46121cf2007-01-31 12:14:08 -0500468 dprintk("RPC: wake_up_next(%p \"%s\")\n",
469 queue, rpc_qname(queue));
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500470 rcu_read_lock_bh();
471 spin_lock(&queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 if (RPC_IS_PRIORITY(queue))
473 task = __rpc_wake_up_next_priority(queue);
474 else {
475 task_for_first(task, &queue->tasks[0])
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500476 rpc_wake_up_task_queue_locked(queue, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 }
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500478 spin_unlock(&queue->lock);
479 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
481 return task;
482}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400483EXPORT_SYMBOL_GPL(rpc_wake_up_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
485/**
486 * rpc_wake_up - wake up all rpc_tasks
487 * @queue: rpc_wait_queue on which the tasks are sleeping
488 *
489 * Grabs queue->lock
490 */
491void rpc_wake_up(struct rpc_wait_queue *queue)
492{
Trond Myklebuste6d83d52006-03-13 21:20:48 -0800493 struct rpc_task *task, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 struct list_head *head;
Trond Myklebuste6d83d52006-03-13 21:20:48 -0800495
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500496 rcu_read_lock_bh();
497 spin_lock(&queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 head = &queue->tasks[queue->maxpriority];
499 for (;;) {
Trond Myklebuste6d83d52006-03-13 21:20:48 -0800500 list_for_each_entry_safe(task, next, head, u.tk_wait.list)
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500501 rpc_wake_up_task_queue_locked(queue, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 if (head == &queue->tasks[0])
503 break;
504 head--;
505 }
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500506 spin_unlock(&queue->lock);
507 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400509EXPORT_SYMBOL_GPL(rpc_wake_up);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
511/**
512 * rpc_wake_up_status - wake up all rpc_tasks and set their status value.
513 * @queue: rpc_wait_queue on which the tasks are sleeping
514 * @status: status value to set
515 *
516 * Grabs queue->lock
517 */
518void rpc_wake_up_status(struct rpc_wait_queue *queue, int status)
519{
Trond Myklebuste6d83d52006-03-13 21:20:48 -0800520 struct rpc_task *task, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500523 rcu_read_lock_bh();
524 spin_lock(&queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 head = &queue->tasks[queue->maxpriority];
526 for (;;) {
Trond Myklebuste6d83d52006-03-13 21:20:48 -0800527 list_for_each_entry_safe(task, next, head, u.tk_wait.list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 task->tk_status = status;
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500529 rpc_wake_up_task_queue_locked(queue, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 }
531 if (head == &queue->tasks[0])
532 break;
533 head--;
534 }
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500535 spin_unlock(&queue->lock);
536 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400538EXPORT_SYMBOL_GPL(rpc_wake_up_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Trond Myklebustfde95c72008-02-22 15:09:26 -0500540/*
541 * Run a timeout function.
542 */
543static void rpc_run_timer(unsigned long ptr)
544{
545 struct rpc_task *task = (struct rpc_task *)ptr;
Trond Myklebust5d008372008-02-22 16:34:17 -0500546 struct rpc_wait_queue *queue = task->tk_waitqueue;
Trond Myklebustfde95c72008-02-22 15:09:26 -0500547
Trond Myklebust5d008372008-02-22 16:34:17 -0500548 spin_lock(&queue->lock);
549 if (RPC_IS_QUEUED(task) && task->tk_waitqueue == queue) {
550 dprintk("RPC: %5u timeout\n", task->tk_pid);
551 task->tk_status = -ETIMEDOUT;
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500552 rpc_wake_up_task_queue_locked(queue, task);
Trond Myklebustfde95c72008-02-22 15:09:26 -0500553 }
Trond Myklebust5d008372008-02-22 16:34:17 -0500554 spin_unlock(&queue->lock);
Trond Myklebustfde95c72008-02-22 15:09:26 -0500555 smp_mb__before_clear_bit();
556 clear_bit(RPC_TASK_HAS_TIMER, &task->tk_runstate);
557 smp_mb__after_clear_bit();
558}
559
Trond Myklebust80147932006-08-31 18:24:08 -0400560static void __rpc_atrun(struct rpc_task *task)
561{
Trond Myklebust5d008372008-02-22 16:34:17 -0500562 task->tk_status = 0;
Trond Myklebust80147932006-08-31 18:24:08 -0400563}
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565/*
566 * Run a task at a later time
567 */
Trond Myklebust80147932006-08-31 18:24:08 -0400568void rpc_delay(struct rpc_task *task, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
570 task->tk_timeout = delay;
Trond Myklebust5d008372008-02-22 16:34:17 -0500571 rpc_sleep_on(&delay_queue, task, __rpc_atrun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400573EXPORT_SYMBOL_GPL(rpc_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575/*
Trond Myklebust4ce70ad2006-01-03 09:55:05 +0100576 * Helper to call task->tk_ops->rpc_call_prepare
577 */
578static void rpc_prepare_task(struct rpc_task *task)
579{
Trond Myklebust6d5fcb52006-10-18 16:01:06 -0400580 lock_kernel();
Trond Myklebust4ce70ad2006-01-03 09:55:05 +0100581 task->tk_ops->rpc_call_prepare(task, task->tk_calldata);
Trond Myklebust6d5fcb52006-10-18 16:01:06 -0400582 unlock_kernel();
Trond Myklebust4ce70ad2006-01-03 09:55:05 +0100583}
584
585/*
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100586 * Helper that calls task->tk_ops->rpc_call_done if it exists
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000587 */
Trond Myklebustabbcf282006-01-03 09:55:03 +0100588void rpc_exit_task(struct rpc_task *task)
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000589{
Trond Myklebustabbcf282006-01-03 09:55:03 +0100590 task->tk_action = NULL;
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100591 if (task->tk_ops->rpc_call_done != NULL) {
Trond Myklebust6d5fcb52006-10-18 16:01:06 -0400592 lock_kernel();
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100593 task->tk_ops->rpc_call_done(task, task->tk_calldata);
Trond Myklebust6d5fcb52006-10-18 16:01:06 -0400594 unlock_kernel();
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000595 if (task->tk_action != NULL) {
Trond Myklebustabbcf282006-01-03 09:55:03 +0100596 WARN_ON(RPC_ASSASSINATED(task));
597 /* Always release the RPC slot and buffer memory */
598 xprt_release(task);
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000599 }
600 }
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000601}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400602EXPORT_SYMBOL_GPL(rpc_exit_task);
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000603
Trond Myklebustbbd5a1f2006-10-18 16:01:05 -0400604void rpc_release_calldata(const struct rpc_call_ops *ops, void *calldata)
605{
606 if (ops->rpc_release != NULL) {
607 lock_kernel();
608 ops->rpc_release(calldata);
609 unlock_kernel();
610 }
611}
612
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000613/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 * This is the RPC `scheduler' (or rather, the finite state machine).
615 */
Trond Myklebust2efef832007-02-03 13:38:41 -0800616static void __rpc_execute(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{
618 int status = 0;
619
Chuck Lever46121cf2007-01-31 12:14:08 -0500620 dprintk("RPC: %5u __rpc_execute flags=0x%x\n",
621 task->tk_pid, task->tk_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623 BUG_ON(RPC_IS_QUEUED(task));
624
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000625 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 /*
627 * Garbage collection of pending timers...
628 */
629 rpc_delete_timer(task);
630
631 /*
632 * Execute any pending callback.
633 */
634 if (RPC_DO_CALLBACK(task)) {
635 /* Define a callback save pointer */
636 void (*save_callback)(struct rpc_task *);
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800637
638 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 * If a callback exists, save it, reset it,
640 * call it.
641 * The save is needed to stop from resetting
642 * another callback set within the callback handler
643 * - Dave
644 */
645 save_callback=task->tk_callback;
646 task->tk_callback=NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 save_callback(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 }
649
650 /*
651 * Perform the next FSM step.
652 * tk_action may be NULL when the task has been killed
653 * by someone else.
654 */
655 if (!RPC_IS_QUEUED(task)) {
Trond Myklebustabbcf282006-01-03 09:55:03 +0100656 if (task->tk_action == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 break;
Trond Myklebustabbcf282006-01-03 09:55:03 +0100658 task->tk_action(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 }
660
661 /*
662 * Lockless check for whether task is sleeping or not.
663 */
664 if (!RPC_IS_QUEUED(task))
665 continue;
666 rpc_clear_running(task);
667 if (RPC_IS_ASYNC(task)) {
668 /* Careful! we may have raced... */
669 if (RPC_IS_QUEUED(task))
Trond Myklebust2efef832007-02-03 13:38:41 -0800670 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 if (rpc_test_and_set_running(task))
Trond Myklebust2efef832007-02-03 13:38:41 -0800672 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 continue;
674 }
675
676 /* sync task: sleep here */
Chuck Lever46121cf2007-01-31 12:14:08 -0500677 dprintk("RPC: %5u sync task going to sleep\n", task->tk_pid);
Trond Myklebust96651ab2005-06-22 17:16:21 +0000678 status = out_of_line_wait_on_bit(&task->tk_runstate,
Matthew Wilcox150030b2007-12-06 16:24:39 -0500679 RPC_TASK_QUEUED, rpc_wait_bit_killable,
680 TASK_KILLABLE);
Trond Myklebust96651ab2005-06-22 17:16:21 +0000681 if (status == -ERESTARTSYS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 /*
683 * When a sync task receives a signal, it exits with
684 * -ERESTARTSYS. In order to catch any callbacks that
685 * clean up after sleeping on some queue, we don't
686 * break the loop here, but go around once more.
687 */
Chuck Lever46121cf2007-01-31 12:14:08 -0500688 dprintk("RPC: %5u got signal\n", task->tk_pid);
Trond Myklebust96651ab2005-06-22 17:16:21 +0000689 task->tk_flags |= RPC_TASK_KILLED;
690 rpc_exit(task, -ERESTARTSYS);
691 rpc_wake_up_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 }
693 rpc_set_running(task);
Chuck Lever46121cf2007-01-31 12:14:08 -0500694 dprintk("RPC: %5u sync task resuming\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 }
696
Chuck Lever46121cf2007-01-31 12:14:08 -0500697 dprintk("RPC: %5u return %d, status %d\n", task->tk_pid, status,
698 task->tk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 /* Release all resources associated with the task */
700 rpc_release_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701}
702
703/*
704 * User-visible entry point to the scheduler.
705 *
706 * This may be called recursively if e.g. an async NFS task updates
707 * the attributes and finds that dirty pages must be flushed.
708 * NOTE: Upon exit of this function the task is guaranteed to be
709 * released. In particular note that tk_release() will have
710 * been called, so your task memory may have been freed.
711 */
Trond Myklebust2efef832007-02-03 13:38:41 -0800712void rpc_execute(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
Trond Myklebust44c28872006-01-03 09:55:06 +0100714 rpc_set_active(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 rpc_set_running(task);
Trond Myklebust2efef832007-02-03 13:38:41 -0800716 __rpc_execute(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717}
718
David Howells65f27f32006-11-22 14:55:48 +0000719static void rpc_async_schedule(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
David Howells65f27f32006-11-22 14:55:48 +0000721 __rpc_execute(container_of(work, struct rpc_task, u.tk_work));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722}
723
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400724struct rpc_buffer {
725 size_t len;
726 char data[];
727};
728
Chuck Lever02107142006-01-03 09:55:49 +0100729/**
730 * rpc_malloc - allocate an RPC buffer
731 * @task: RPC task that will use this buffer
732 * @size: requested byte size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 *
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400734 * To prevent rpciod from hanging, this allocator never sleeps,
735 * returning NULL if the request cannot be serviced immediately.
736 * The caller can arrange to sleep in a way that is safe for rpciod.
737 *
738 * Most requests are 'small' (under 2KiB) and can be serviced from a
739 * mempool, ensuring that NFS reads and writes can always proceed,
740 * and that there is good locality of reference for these buffers.
741 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 * In order to avoid memory starvation triggering more writebacks of
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400743 * NFS requests, we avoid using GFP_KERNEL.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 */
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400745void *rpc_malloc(struct rpc_task *task, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746{
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400747 struct rpc_buffer *buf;
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400748 gfp_t gfp = RPC_IS_SWAPPER(task) ? GFP_ATOMIC : GFP_NOWAIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400750 size += sizeof(struct rpc_buffer);
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400751 if (size <= RPC_BUFFER_MAXSIZE)
752 buf = mempool_alloc(rpc_buffer_mempool, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 else
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400754 buf = kmalloc(size, gfp);
Peter Zijlstraddce40d2007-05-09 08:30:11 +0200755
756 if (!buf)
757 return NULL;
758
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400759 buf->len = size;
Geert Uytterhoeven215d0672007-05-08 11:37:26 +0200760 dprintk("RPC: %5u allocated buffer of size %zu at %p\n",
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400761 task->tk_pid, size, buf);
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400762 return &buf->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400764EXPORT_SYMBOL_GPL(rpc_malloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Chuck Lever02107142006-01-03 09:55:49 +0100766/**
767 * rpc_free - free buffer allocated via rpc_malloc
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400768 * @buffer: buffer to free
Chuck Lever02107142006-01-03 09:55:49 +0100769 *
770 */
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400771void rpc_free(void *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772{
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400773 size_t size;
774 struct rpc_buffer *buf;
Chuck Lever02107142006-01-03 09:55:49 +0100775
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400776 if (!buffer)
777 return;
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400778
779 buf = container_of(buffer, struct rpc_buffer, data);
780 size = buf->len;
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400781
Geert Uytterhoeven215d0672007-05-08 11:37:26 +0200782 dprintk("RPC: freeing buffer of size %zu at %p\n",
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400783 size, buf);
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400784
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400785 if (size <= RPC_BUFFER_MAXSIZE)
786 mempool_free(buf, rpc_buffer_mempool);
787 else
788 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400790EXPORT_SYMBOL_GPL(rpc_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
792/*
793 * Creation and deletion of RPC task structures
794 */
Trond Myklebust47fe0642007-10-25 18:42:55 -0400795static void rpc_init_task(struct rpc_task *task, const struct rpc_task_setup *task_setup_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796{
797 memset(task, 0, sizeof(*task));
Trond Myklebustfde95c72008-02-22 15:09:26 -0500798 setup_timer(&task->tk_timer, rpc_run_timer, (unsigned long)task);
Trond Myklebust44c28872006-01-03 09:55:06 +0100799 atomic_set(&task->tk_count, 1);
Trond Myklebust84115e12007-07-14 15:39:59 -0400800 task->tk_flags = task_setup_data->flags;
801 task->tk_ops = task_setup_data->callback_ops;
802 task->tk_calldata = task_setup_data->callback_data;
Trond Myklebust6529eba2007-06-14 16:40:14 -0400803 INIT_LIST_HEAD(&task->tk_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
805 /* Initialize retry counters */
806 task->tk_garb_retry = 2;
807 task->tk_cred_retry = 2;
808
Trond Myklebust3ff75762007-07-14 15:40:00 -0400809 task->tk_priority = task_setup_data->priority - RPC_PRIORITY_LOW;
810 task->tk_owner = current->tgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
812 /* Initialize workqueue for async tasks */
Trond Myklebust32bfb5c2008-02-19 20:04:21 -0500813 task->tk_workqueue = task_setup_data->workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
Trond Myklebust84115e12007-07-14 15:39:59 -0400815 task->tk_client = task_setup_data->rpc_client;
816 if (task->tk_client != NULL) {
817 kref_get(&task->tk_client->cl_kref);
818 if (task->tk_client->cl_softrtry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 task->tk_flags |= RPC_TASK_SOFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 }
821
Trond Myklebust84115e12007-07-14 15:39:59 -0400822 if (task->tk_ops->rpc_call_prepare != NULL)
823 task->tk_action = rpc_prepare_task;
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100824
Trond Myklebustb3ef8b32007-10-25 18:32:34 -0400825 if (task_setup_data->rpc_message != NULL) {
826 memcpy(&task->tk_msg, task_setup_data->rpc_message, sizeof(task->tk_msg));
827 /* Bind the user cred */
828 if (task->tk_msg.rpc_cred != NULL)
829 rpcauth_holdcred(task);
830 else
831 rpcauth_bindcred(task);
832 if (task->tk_action == NULL)
833 rpc_call_start(task);
834 }
835
Chuck Leveref759a22006-03-20 13:44:17 -0500836 /* starting timestamp */
837 task->tk_start = jiffies;
838
Chuck Lever46121cf2007-01-31 12:14:08 -0500839 dprintk("RPC: new task initialized, procpid %u\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -0700840 task_pid_nr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841}
842
843static struct rpc_task *
844rpc_alloc_task(void)
845{
846 return (struct rpc_task *)mempool_alloc(rpc_task_mempool, GFP_NOFS);
847}
848
Trond Myklebust32bfb5c2008-02-19 20:04:21 -0500849static void rpc_free_task_rcu(struct rcu_head *rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850{
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500851 struct rpc_task *task = container_of(rcu, struct rpc_task, u.tk_rcu);
Chuck Lever46121cf2007-01-31 12:14:08 -0500852 dprintk("RPC: %5u freeing task\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 mempool_free(task, rpc_task_mempool);
854}
855
856/*
Trond Myklebust90c57552007-06-09 19:49:36 -0400857 * Create a new task for the specified client.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 */
Trond Myklebust84115e12007-07-14 15:39:59 -0400859struct rpc_task *rpc_new_task(const struct rpc_task_setup *setup_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860{
Trond Myklebuste8f5d772007-10-25 18:42:53 -0400861 struct rpc_task *task = setup_data->task;
862 unsigned short flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863
Trond Myklebuste8f5d772007-10-25 18:42:53 -0400864 if (task == NULL) {
865 task = rpc_alloc_task();
866 if (task == NULL)
867 goto out;
868 flags = RPC_TASK_DYNAMIC;
869 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Trond Myklebust84115e12007-07-14 15:39:59 -0400871 rpc_init_task(task, setup_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Trond Myklebuste8f5d772007-10-25 18:42:53 -0400873 task->tk_flags |= flags;
Chuck Lever46121cf2007-01-31 12:14:08 -0500874 dprintk("RPC: allocated task %p\n", task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875out:
876 return task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877}
878
Trond Myklebust32bfb5c2008-02-19 20:04:21 -0500879static void rpc_free_task(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880{
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100881 const struct rpc_call_ops *tk_ops = task->tk_ops;
882 void *calldata = task->tk_calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Trond Myklebust32bfb5c2008-02-19 20:04:21 -0500884 if (task->tk_flags & RPC_TASK_DYNAMIC)
885 call_rcu_bh(&task->u.tk_rcu, rpc_free_task_rcu);
886 rpc_release_calldata(tk_ops, calldata);
887}
888
889static void rpc_async_release(struct work_struct *work)
890{
891 rpc_free_task(container_of(work, struct rpc_task, u.tk_work));
892}
893
894void rpc_put_task(struct rpc_task *task)
895{
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500896 if (!atomic_dec_and_test(&task->tk_count))
897 return;
898 /* Release resources */
899 if (task->tk_rqstp)
900 xprt_release(task);
901 if (task->tk_msg.rpc_cred)
902 rpcauth_unbindcred(task);
903 if (task->tk_client) {
904 rpc_release_client(task->tk_client);
905 task->tk_client = NULL;
906 }
Trond Myklebust32bfb5c2008-02-19 20:04:21 -0500907 if (task->tk_workqueue != NULL) {
908 INIT_WORK(&task->u.tk_work, rpc_async_release);
909 queue_work(task->tk_workqueue, &task->u.tk_work);
910 } else
911 rpc_free_task(task);
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500912}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400913EXPORT_SYMBOL_GPL(rpc_put_task);
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500914
Trond Myklebustbde8f002007-01-24 11:54:53 -0800915static void rpc_release_task(struct rpc_task *task)
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500916{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917#ifdef RPC_DEBUG
918 BUG_ON(task->tk_magic != RPC_TASK_MAGIC_ID);
919#endif
Chuck Lever46121cf2007-01-31 12:14:08 -0500920 dprintk("RPC: %5u release task\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Trond Myklebust6529eba2007-06-14 16:40:14 -0400922 if (!list_empty(&task->tk_task)) {
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400923 struct rpc_clnt *clnt = task->tk_client;
Trond Myklebust6529eba2007-06-14 16:40:14 -0400924 /* Remove from client task list */
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400925 spin_lock(&clnt->cl_lock);
Trond Myklebust6529eba2007-06-14 16:40:14 -0400926 list_del(&task->tk_task);
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400927 spin_unlock(&clnt->cl_lock);
Trond Myklebust6529eba2007-06-14 16:40:14 -0400928 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 BUG_ON (RPC_IS_QUEUED(task));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
931 /* Synchronously delete any running timer */
932 rpc_delete_timer(task);
933
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934#ifdef RPC_DEBUG
935 task->tk_magic = 0;
936#endif
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500937 /* Wake up anyone who is waiting for task completion */
938 rpc_mark_complete_task(task);
939
940 rpc_put_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941}
942
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943/*
944 * Kill all tasks for the given client.
945 * XXX: kill their descendants as well?
946 */
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400947void rpc_killall_tasks(struct rpc_clnt *clnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948{
949 struct rpc_task *rovr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400952 if (list_empty(&clnt->cl_tasks))
953 return;
954 dprintk("RPC: killing all tasks for client %p\n", clnt);
955 /*
956 * Spin lock all_tasks to prevent changes...
957 */
958 spin_lock(&clnt->cl_lock);
959 list_for_each_entry(rovr, &clnt->cl_tasks, tk_task) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 if (! RPC_IS_ACTIVATED(rovr))
961 continue;
Trond Myklebust6529eba2007-06-14 16:40:14 -0400962 if (!(rovr->tk_flags & RPC_TASK_KILLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 rovr->tk_flags |= RPC_TASK_KILLED;
964 rpc_exit(rovr, -EIO);
965 rpc_wake_up_task(rovr);
966 }
967 }
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400968 spin_unlock(&clnt->cl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400970EXPORT_SYMBOL_GPL(rpc_killall_tasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
Trond Myklebustb247bbf2007-07-19 16:32:20 -0400972int rpciod_up(void)
973{
974 return try_module_get(THIS_MODULE) ? 0 : -EINVAL;
975}
976
977void rpciod_down(void)
978{
979 module_put(THIS_MODULE);
980}
981
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982/*
Trond Myklebustb247bbf2007-07-19 16:32:20 -0400983 * Start up the rpciod workqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 */
Trond Myklebustb247bbf2007-07-19 16:32:20 -0400985static int rpciod_start(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986{
987 struct workqueue_struct *wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 /*
990 * Create the rpciod thread and wait for it to start.
991 */
Trond Myklebustab418d72007-06-14 17:08:36 -0400992 dprintk("RPC: creating workqueue rpciod\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 wq = create_workqueue("rpciod");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 rpciod_workqueue = wq;
Trond Myklebustb247bbf2007-07-19 16:32:20 -0400995 return rpciod_workqueue != NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996}
997
Trond Myklebustb247bbf2007-07-19 16:32:20 -0400998static void rpciod_stop(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999{
Trond Myklebustb247bbf2007-07-19 16:32:20 -04001000 struct workqueue_struct *wq = NULL;
Trond Myklebustab418d72007-06-14 17:08:36 -04001001
Trond Myklebustb247bbf2007-07-19 16:32:20 -04001002 if (rpciod_workqueue == NULL)
1003 return;
Trond Myklebustab418d72007-06-14 17:08:36 -04001004 dprintk("RPC: destroying workqueue rpciod\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Trond Myklebustb247bbf2007-07-19 16:32:20 -04001006 wq = rpciod_workqueue;
1007 rpciod_workqueue = NULL;
1008 destroy_workqueue(wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009}
1010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011void
1012rpc_destroy_mempool(void)
1013{
Trond Myklebustb247bbf2007-07-19 16:32:20 -04001014 rpciod_stop();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 if (rpc_buffer_mempool)
1016 mempool_destroy(rpc_buffer_mempool);
1017 if (rpc_task_mempool)
1018 mempool_destroy(rpc_task_mempool);
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001019 if (rpc_task_slabp)
1020 kmem_cache_destroy(rpc_task_slabp);
1021 if (rpc_buffer_slabp)
1022 kmem_cache_destroy(rpc_buffer_slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023}
1024
1025int
1026rpc_init_mempool(void)
1027{
1028 rpc_task_slabp = kmem_cache_create("rpc_tasks",
1029 sizeof(struct rpc_task),
1030 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +09001031 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 if (!rpc_task_slabp)
1033 goto err_nomem;
1034 rpc_buffer_slabp = kmem_cache_create("rpc_buffers",
1035 RPC_BUFFER_MAXSIZE,
1036 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +09001037 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 if (!rpc_buffer_slabp)
1039 goto err_nomem;
Matthew Dobson93d23412006-03-26 01:37:50 -08001040 rpc_task_mempool = mempool_create_slab_pool(RPC_TASK_POOLSIZE,
1041 rpc_task_slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 if (!rpc_task_mempool)
1043 goto err_nomem;
Matthew Dobson93d23412006-03-26 01:37:50 -08001044 rpc_buffer_mempool = mempool_create_slab_pool(RPC_BUFFER_POOLSIZE,
1045 rpc_buffer_slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 if (!rpc_buffer_mempool)
1047 goto err_nomem;
Trond Myklebustb247bbf2007-07-19 16:32:20 -04001048 if (!rpciod_start())
1049 goto err_nomem;
Trond Myklebusta4a87492007-07-18 13:24:19 -04001050 /*
1051 * The following is not strictly a mempool initialisation,
1052 * but there is no harm in doing it here
1053 */
1054 rpc_init_wait_queue(&delay_queue, "delayq");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 return 0;
1056err_nomem:
1057 rpc_destroy_mempool();
1058 return -ENOMEM;
1059}