blob: 86aa897e7b08788dcb1a2c1ed22fa3610f645b8e [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
Trond Myklebustf6a1cc82008-02-22 17:06:55 -0500217void rpc_destroy_wait_queue(struct rpc_wait_queue *queue)
218{
219}
220EXPORT_SYMBOL_GPL(rpc_destroy_wait_queue);
221
Matthew Wilcox150030b2007-12-06 16:24:39 -0500222static int rpc_wait_bit_killable(void *word)
Trond Myklebust44c28872006-01-03 09:55:06 +0100223{
Matthew Wilcox150030b2007-12-06 16:24:39 -0500224 if (fatal_signal_pending(current))
Trond Myklebust44c28872006-01-03 09:55:06 +0100225 return -ERESTARTSYS;
226 schedule();
227 return 0;
228}
229
Trond Myklebustc44fe702007-06-16 14:17:01 -0400230#ifdef RPC_DEBUG
231static void rpc_task_set_debuginfo(struct rpc_task *task)
232{
233 static atomic_t rpc_pid;
234
235 task->tk_magic = RPC_TASK_MAGIC_ID;
236 task->tk_pid = atomic_inc_return(&rpc_pid);
237}
238#else
239static inline void rpc_task_set_debuginfo(struct rpc_task *task)
240{
241}
242#endif
243
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500244static void rpc_set_active(struct rpc_task *task)
245{
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400246 struct rpc_clnt *clnt;
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500247 if (test_and_set_bit(RPC_TASK_ACTIVE, &task->tk_runstate) != 0)
248 return;
Trond Myklebustc44fe702007-06-16 14:17:01 -0400249 rpc_task_set_debuginfo(task);
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500250 /* Add to global list of all tasks */
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400251 clnt = task->tk_client;
252 if (clnt != NULL) {
253 spin_lock(&clnt->cl_lock);
254 list_add_tail(&task->tk_task, &clnt->cl_tasks);
255 spin_unlock(&clnt->cl_lock);
256 }
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500257}
258
Trond Myklebust44c28872006-01-03 09:55:06 +0100259/*
260 * Mark an RPC call as having completed by clearing the 'active' bit
261 */
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500262static void rpc_mark_complete_task(struct rpc_task *task)
Trond Myklebust44c28872006-01-03 09:55:06 +0100263{
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500264 smp_mb__before_clear_bit();
265 clear_bit(RPC_TASK_ACTIVE, &task->tk_runstate);
266 smp_mb__after_clear_bit();
Trond Myklebust44c28872006-01-03 09:55:06 +0100267 wake_up_bit(&task->tk_runstate, RPC_TASK_ACTIVE);
268}
269
270/*
271 * Allow callers to wait for completion of an RPC call
272 */
273int __rpc_wait_for_completion_task(struct rpc_task *task, int (*action)(void *))
274{
275 if (action == NULL)
Matthew Wilcox150030b2007-12-06 16:24:39 -0500276 action = rpc_wait_bit_killable;
Trond Myklebust44c28872006-01-03 09:55:06 +0100277 return wait_on_bit(&task->tk_runstate, RPC_TASK_ACTIVE,
Matthew Wilcox150030b2007-12-06 16:24:39 -0500278 action, TASK_KILLABLE);
Trond Myklebust44c28872006-01-03 09:55:06 +0100279}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400280EXPORT_SYMBOL_GPL(__rpc_wait_for_completion_task);
Trond Myklebust44c28872006-01-03 09:55:06 +0100281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282/*
283 * Make an RPC task runnable.
284 *
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800285 * Note: If the task is ASYNC, this must be called with
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 * the spinlock held to protect the wait queue operation.
287 */
288static void rpc_make_runnable(struct rpc_task *task)
289{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 rpc_clear_queued(task);
Christophe Saoutcc4dc59e2006-11-05 18:42:48 +0100291 if (rpc_test_and_set_running(task))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 return;
Christophe Saoutcc4dc59e2006-11-05 18:42:48 +0100293 /* We might have raced */
294 if (RPC_IS_QUEUED(task)) {
295 rpc_clear_running(task);
296 return;
297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 if (RPC_IS_ASYNC(task)) {
299 int status;
300
David Howells65f27f32006-11-22 14:55:48 +0000301 INIT_WORK(&task->u.tk_work, rpc_async_schedule);
Trond Myklebust32bfb5c2008-02-19 20:04:21 -0500302 status = queue_work(rpciod_workqueue, &task->u.tk_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 if (status < 0) {
304 printk(KERN_WARNING "RPC: failed to add task to queue: error: %d!\n", status);
305 task->tk_status = status;
306 return;
307 }
308 } else
Trond Myklebust96651ab2005-06-22 17:16:21 +0000309 wake_up_bit(&task->tk_runstate, RPC_TASK_QUEUED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310}
311
312/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 * Prepare for sleeping on a wait queue.
314 * By always appending tasks to the list we ensure FIFO behavior.
315 * NB: An RPC task will only receive interrupt-driven events as long
316 * as it's on a wait queue.
317 */
318static void __rpc_sleep_on(struct rpc_wait_queue *q, struct rpc_task *task,
Trond Myklebust5d008372008-02-22 16:34:17 -0500319 rpc_action action)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
Chuck Lever46121cf2007-01-31 12:14:08 -0500321 dprintk("RPC: %5u sleep_on(queue \"%s\" time %lu)\n",
322 task->tk_pid, rpc_qname(q), jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 if (!RPC_IS_ASYNC(task) && !RPC_IS_ACTIVATED(task)) {
325 printk(KERN_ERR "RPC: Inactive synchronous task put to sleep!\n");
326 return;
327 }
328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 __rpc_add_wait_queue(q, task);
330
331 BUG_ON(task->tk_callback != NULL);
332 task->tk_callback = action;
Trond Myklebust5d008372008-02-22 16:34:17 -0500333 __rpc_add_timer(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334}
335
336void rpc_sleep_on(struct rpc_wait_queue *q, struct rpc_task *task,
Trond Myklebust5d008372008-02-22 16:34:17 -0500337 rpc_action action)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500339 /* Mark the task as being activated if so needed */
340 rpc_set_active(task);
341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 /*
343 * Protect the queue operations.
344 */
345 spin_lock_bh(&q->lock);
Trond Myklebust5d008372008-02-22 16:34:17 -0500346 __rpc_sleep_on(q, task, action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 spin_unlock_bh(&q->lock);
348}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400349EXPORT_SYMBOL_GPL(rpc_sleep_on);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351/**
352 * __rpc_do_wake_up_task - wake up a single rpc_task
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500353 * @queue: wait queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 * @task: task to be woken up
355 *
356 * Caller must hold queue->lock, and have cleared the task queued flag.
357 */
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500358static void __rpc_do_wake_up_task(struct rpc_wait_queue *queue, struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
Chuck Lever46121cf2007-01-31 12:14:08 -0500360 dprintk("RPC: %5u __rpc_wake_up_task (now %lu)\n",
361 task->tk_pid, jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
363#ifdef RPC_DEBUG
364 BUG_ON(task->tk_magic != RPC_TASK_MAGIC_ID);
365#endif
366 /* Has the task been executed yet? If not, we cannot wake it up! */
367 if (!RPC_IS_ACTIVATED(task)) {
368 printk(KERN_ERR "RPC: Inactive task (%p) being woken up!\n", task);
369 return;
370 }
371
372 __rpc_disable_timer(task);
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500373 __rpc_remove_wait_queue(queue, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
375 rpc_make_runnable(task);
376
Chuck Lever46121cf2007-01-31 12:14:08 -0500377 dprintk("RPC: __rpc_wake_up_task done\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378}
379
380/*
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500381 * Wake up a queued task while the queue lock is being held
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 */
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500383static void rpc_wake_up_task_queue_locked(struct rpc_wait_queue *queue, struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500385 if (!RPC_IS_QUEUED(task) || task->tk_waitqueue != queue)
386 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 if (rpc_start_wakeup(task)) {
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500388 __rpc_do_wake_up_task(queue, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 rpc_finish_wakeup(task);
390 }
391}
392
393/*
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500394 * Wake up a task on a specific queue
395 */
396void rpc_wake_up_queued_task(struct rpc_wait_queue *queue, struct rpc_task *task)
397{
398 rcu_read_lock_bh();
399 spin_lock(&queue->lock);
400 rpc_wake_up_task_queue_locked(queue, task);
401 spin_unlock(&queue->lock);
402 rcu_read_unlock_bh();
403}
404EXPORT_SYMBOL_GPL(rpc_wake_up_queued_task);
405
406/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 * Wake up the specified task
408 */
Trond Myklebustfda13932008-02-22 16:34:12 -0500409static void rpc_wake_up_task(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500411 rpc_wake_up_queued_task(task->tk_waitqueue, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412}
413
414/*
415 * Wake up the next task on a priority queue.
416 */
417static struct rpc_task * __rpc_wake_up_next_priority(struct rpc_wait_queue *queue)
418{
419 struct list_head *q;
420 struct rpc_task *task;
421
422 /*
Trond Myklebust3ff75762007-07-14 15:40:00 -0400423 * Service a batch of tasks from a single owner.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 */
425 q = &queue->tasks[queue->priority];
426 if (!list_empty(q)) {
427 task = list_entry(q->next, struct rpc_task, u.tk_wait.list);
Trond Myklebust3ff75762007-07-14 15:40:00 -0400428 if (queue->owner == task->tk_owner) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 if (--queue->nr)
430 goto out;
431 list_move_tail(&task->u.tk_wait.list, q);
432 }
433 /*
434 * Check if we need to switch queues.
435 */
436 if (--queue->count)
Trond Myklebust3ff75762007-07-14 15:40:00 -0400437 goto new_owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 }
439
440 /*
441 * Service the next queue.
442 */
443 do {
444 if (q == &queue->tasks[0])
445 q = &queue->tasks[queue->maxpriority];
446 else
447 q = q - 1;
448 if (!list_empty(q)) {
449 task = list_entry(q->next, struct rpc_task, u.tk_wait.list);
450 goto new_queue;
451 }
452 } while (q != &queue->tasks[queue->priority]);
453
454 rpc_reset_waitqueue_priority(queue);
455 return NULL;
456
457new_queue:
458 rpc_set_waitqueue_priority(queue, (unsigned int)(q - &queue->tasks[0]));
Trond Myklebust3ff75762007-07-14 15:40:00 -0400459new_owner:
460 rpc_set_waitqueue_owner(queue, task->tk_owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461out:
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500462 rpc_wake_up_task_queue_locked(queue, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 return task;
464}
465
466/*
467 * Wake up the next task on the wait queue.
468 */
469struct rpc_task * rpc_wake_up_next(struct rpc_wait_queue *queue)
470{
471 struct rpc_task *task = NULL;
472
Chuck Lever46121cf2007-01-31 12:14:08 -0500473 dprintk("RPC: wake_up_next(%p \"%s\")\n",
474 queue, rpc_qname(queue));
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500475 rcu_read_lock_bh();
476 spin_lock(&queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 if (RPC_IS_PRIORITY(queue))
478 task = __rpc_wake_up_next_priority(queue);
479 else {
480 task_for_first(task, &queue->tasks[0])
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500481 rpc_wake_up_task_queue_locked(queue, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 }
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500483 spin_unlock(&queue->lock);
484 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486 return task;
487}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400488EXPORT_SYMBOL_GPL(rpc_wake_up_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
490/**
491 * rpc_wake_up - wake up all rpc_tasks
492 * @queue: rpc_wait_queue on which the tasks are sleeping
493 *
494 * Grabs queue->lock
495 */
496void rpc_wake_up(struct rpc_wait_queue *queue)
497{
Trond Myklebuste6d83d52006-03-13 21:20:48 -0800498 struct rpc_task *task, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 struct list_head *head;
Trond Myklebuste6d83d52006-03-13 21:20:48 -0800500
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500501 rcu_read_lock_bh();
502 spin_lock(&queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 head = &queue->tasks[queue->maxpriority];
504 for (;;) {
Trond Myklebuste6d83d52006-03-13 21:20:48 -0800505 list_for_each_entry_safe(task, next, head, u.tk_wait.list)
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500506 rpc_wake_up_task_queue_locked(queue, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 if (head == &queue->tasks[0])
508 break;
509 head--;
510 }
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500511 spin_unlock(&queue->lock);
512 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400514EXPORT_SYMBOL_GPL(rpc_wake_up);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516/**
517 * rpc_wake_up_status - wake up all rpc_tasks and set their status value.
518 * @queue: rpc_wait_queue on which the tasks are sleeping
519 * @status: status value to set
520 *
521 * Grabs queue->lock
522 */
523void rpc_wake_up_status(struct rpc_wait_queue *queue, int status)
524{
Trond Myklebuste6d83d52006-03-13 21:20:48 -0800525 struct rpc_task *task, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 struct list_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500528 rcu_read_lock_bh();
529 spin_lock(&queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 head = &queue->tasks[queue->maxpriority];
531 for (;;) {
Trond Myklebuste6d83d52006-03-13 21:20:48 -0800532 list_for_each_entry_safe(task, next, head, u.tk_wait.list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 task->tk_status = status;
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500534 rpc_wake_up_task_queue_locked(queue, task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 }
536 if (head == &queue->tasks[0])
537 break;
538 head--;
539 }
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500540 spin_unlock(&queue->lock);
541 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400543EXPORT_SYMBOL_GPL(rpc_wake_up_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Trond Myklebustfde95c72008-02-22 15:09:26 -0500545/*
546 * Run a timeout function.
547 */
548static void rpc_run_timer(unsigned long ptr)
549{
550 struct rpc_task *task = (struct rpc_task *)ptr;
Trond Myklebust5d008372008-02-22 16:34:17 -0500551 struct rpc_wait_queue *queue = task->tk_waitqueue;
Trond Myklebustfde95c72008-02-22 15:09:26 -0500552
Trond Myklebust5d008372008-02-22 16:34:17 -0500553 spin_lock(&queue->lock);
554 if (RPC_IS_QUEUED(task) && task->tk_waitqueue == queue) {
555 dprintk("RPC: %5u timeout\n", task->tk_pid);
556 task->tk_status = -ETIMEDOUT;
Trond Myklebust96ef13b2008-02-22 15:46:41 -0500557 rpc_wake_up_task_queue_locked(queue, task);
Trond Myklebustfde95c72008-02-22 15:09:26 -0500558 }
Trond Myklebust5d008372008-02-22 16:34:17 -0500559 spin_unlock(&queue->lock);
Trond Myklebustfde95c72008-02-22 15:09:26 -0500560 smp_mb__before_clear_bit();
561 clear_bit(RPC_TASK_HAS_TIMER, &task->tk_runstate);
562 smp_mb__after_clear_bit();
563}
564
Trond Myklebust80147932006-08-31 18:24:08 -0400565static void __rpc_atrun(struct rpc_task *task)
566{
Trond Myklebust5d008372008-02-22 16:34:17 -0500567 task->tk_status = 0;
Trond Myklebust80147932006-08-31 18:24:08 -0400568}
569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570/*
571 * Run a task at a later time
572 */
Trond Myklebust80147932006-08-31 18:24:08 -0400573void rpc_delay(struct rpc_task *task, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574{
575 task->tk_timeout = delay;
Trond Myklebust5d008372008-02-22 16:34:17 -0500576 rpc_sleep_on(&delay_queue, task, __rpc_atrun);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400578EXPORT_SYMBOL_GPL(rpc_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580/*
Trond Myklebust4ce70ad2006-01-03 09:55:05 +0100581 * Helper to call task->tk_ops->rpc_call_prepare
582 */
583static void rpc_prepare_task(struct rpc_task *task)
584{
Trond Myklebust6d5fcb52006-10-18 16:01:06 -0400585 lock_kernel();
Trond Myklebust4ce70ad2006-01-03 09:55:05 +0100586 task->tk_ops->rpc_call_prepare(task, task->tk_calldata);
Trond Myklebust6d5fcb52006-10-18 16:01:06 -0400587 unlock_kernel();
Trond Myklebust4ce70ad2006-01-03 09:55:05 +0100588}
589
590/*
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100591 * Helper that calls task->tk_ops->rpc_call_done if it exists
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000592 */
Trond Myklebustabbcf282006-01-03 09:55:03 +0100593void rpc_exit_task(struct rpc_task *task)
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000594{
Trond Myklebustabbcf282006-01-03 09:55:03 +0100595 task->tk_action = NULL;
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100596 if (task->tk_ops->rpc_call_done != NULL) {
Trond Myklebust6d5fcb52006-10-18 16:01:06 -0400597 lock_kernel();
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100598 task->tk_ops->rpc_call_done(task, task->tk_calldata);
Trond Myklebust6d5fcb52006-10-18 16:01:06 -0400599 unlock_kernel();
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000600 if (task->tk_action != NULL) {
Trond Myklebustabbcf282006-01-03 09:55:03 +0100601 WARN_ON(RPC_ASSASSINATED(task));
602 /* Always release the RPC slot and buffer memory */
603 xprt_release(task);
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000604 }
605 }
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000606}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400607EXPORT_SYMBOL_GPL(rpc_exit_task);
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000608
Trond Myklebustbbd5a1f2006-10-18 16:01:05 -0400609void rpc_release_calldata(const struct rpc_call_ops *ops, void *calldata)
610{
611 if (ops->rpc_release != NULL) {
612 lock_kernel();
613 ops->rpc_release(calldata);
614 unlock_kernel();
615 }
616}
617
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000618/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 * This is the RPC `scheduler' (or rather, the finite state machine).
620 */
Trond Myklebust2efef832007-02-03 13:38:41 -0800621static void __rpc_execute(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622{
623 int status = 0;
624
Chuck Lever46121cf2007-01-31 12:14:08 -0500625 dprintk("RPC: %5u __rpc_execute flags=0x%x\n",
626 task->tk_pid, task->tk_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
628 BUG_ON(RPC_IS_QUEUED(task));
629
Trond Myklebustd05fdb02005-06-22 17:16:19 +0000630 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 /*
632 * Garbage collection of pending timers...
633 */
634 rpc_delete_timer(task);
635
636 /*
637 * Execute any pending callback.
638 */
639 if (RPC_DO_CALLBACK(task)) {
640 /* Define a callback save pointer */
641 void (*save_callback)(struct rpc_task *);
YOSHIFUJI Hideakicca51722007-02-09 15:38:13 -0800642
643 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 * If a callback exists, save it, reset it,
645 * call it.
646 * The save is needed to stop from resetting
647 * another callback set within the callback handler
648 * - Dave
649 */
650 save_callback=task->tk_callback;
651 task->tk_callback=NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 save_callback(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 }
654
655 /*
656 * Perform the next FSM step.
657 * tk_action may be NULL when the task has been killed
658 * by someone else.
659 */
660 if (!RPC_IS_QUEUED(task)) {
Trond Myklebustabbcf282006-01-03 09:55:03 +0100661 if (task->tk_action == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 break;
Trond Myklebustabbcf282006-01-03 09:55:03 +0100663 task->tk_action(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 }
665
666 /*
667 * Lockless check for whether task is sleeping or not.
668 */
669 if (!RPC_IS_QUEUED(task))
670 continue;
671 rpc_clear_running(task);
672 if (RPC_IS_ASYNC(task)) {
673 /* Careful! we may have raced... */
674 if (RPC_IS_QUEUED(task))
Trond Myklebust2efef832007-02-03 13:38:41 -0800675 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 if (rpc_test_and_set_running(task))
Trond Myklebust2efef832007-02-03 13:38:41 -0800677 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 continue;
679 }
680
681 /* sync task: sleep here */
Chuck Lever46121cf2007-01-31 12:14:08 -0500682 dprintk("RPC: %5u sync task going to sleep\n", task->tk_pid);
Trond Myklebust96651ab2005-06-22 17:16:21 +0000683 status = out_of_line_wait_on_bit(&task->tk_runstate,
Matthew Wilcox150030b2007-12-06 16:24:39 -0500684 RPC_TASK_QUEUED, rpc_wait_bit_killable,
685 TASK_KILLABLE);
Trond Myklebust96651ab2005-06-22 17:16:21 +0000686 if (status == -ERESTARTSYS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 /*
688 * When a sync task receives a signal, it exits with
689 * -ERESTARTSYS. In order to catch any callbacks that
690 * clean up after sleeping on some queue, we don't
691 * break the loop here, but go around once more.
692 */
Chuck Lever46121cf2007-01-31 12:14:08 -0500693 dprintk("RPC: %5u got signal\n", task->tk_pid);
Trond Myklebust96651ab2005-06-22 17:16:21 +0000694 task->tk_flags |= RPC_TASK_KILLED;
695 rpc_exit(task, -ERESTARTSYS);
696 rpc_wake_up_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 }
698 rpc_set_running(task);
Chuck Lever46121cf2007-01-31 12:14:08 -0500699 dprintk("RPC: %5u sync task resuming\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 }
701
Chuck Lever46121cf2007-01-31 12:14:08 -0500702 dprintk("RPC: %5u return %d, status %d\n", task->tk_pid, status,
703 task->tk_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 /* Release all resources associated with the task */
705 rpc_release_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706}
707
708/*
709 * User-visible entry point to the scheduler.
710 *
711 * This may be called recursively if e.g. an async NFS task updates
712 * the attributes and finds that dirty pages must be flushed.
713 * NOTE: Upon exit of this function the task is guaranteed to be
714 * released. In particular note that tk_release() will have
715 * been called, so your task memory may have been freed.
716 */
Trond Myklebust2efef832007-02-03 13:38:41 -0800717void rpc_execute(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718{
Trond Myklebust44c28872006-01-03 09:55:06 +0100719 rpc_set_active(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 rpc_set_running(task);
Trond Myklebust2efef832007-02-03 13:38:41 -0800721 __rpc_execute(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722}
723
David Howells65f27f32006-11-22 14:55:48 +0000724static void rpc_async_schedule(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725{
David Howells65f27f32006-11-22 14:55:48 +0000726 __rpc_execute(container_of(work, struct rpc_task, u.tk_work));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727}
728
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400729struct rpc_buffer {
730 size_t len;
731 char data[];
732};
733
Chuck Lever02107142006-01-03 09:55:49 +0100734/**
735 * rpc_malloc - allocate an RPC buffer
736 * @task: RPC task that will use this buffer
737 * @size: requested byte size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 *
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400739 * To prevent rpciod from hanging, this allocator never sleeps,
740 * returning NULL if the request cannot be serviced immediately.
741 * The caller can arrange to sleep in a way that is safe for rpciod.
742 *
743 * Most requests are 'small' (under 2KiB) and can be serviced from a
744 * mempool, ensuring that NFS reads and writes can always proceed,
745 * and that there is good locality of reference for these buffers.
746 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 * In order to avoid memory starvation triggering more writebacks of
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400748 * NFS requests, we avoid using GFP_KERNEL.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 */
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400750void *rpc_malloc(struct rpc_task *task, size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751{
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400752 struct rpc_buffer *buf;
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400753 gfp_t gfp = RPC_IS_SWAPPER(task) ? GFP_ATOMIC : GFP_NOWAIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400755 size += sizeof(struct rpc_buffer);
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400756 if (size <= RPC_BUFFER_MAXSIZE)
757 buf = mempool_alloc(rpc_buffer_mempool, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 else
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400759 buf = kmalloc(size, gfp);
Peter Zijlstraddce40d2007-05-09 08:30:11 +0200760
761 if (!buf)
762 return NULL;
763
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400764 buf->len = size;
Geert Uytterhoeven215d0672007-05-08 11:37:26 +0200765 dprintk("RPC: %5u allocated buffer of size %zu at %p\n",
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400766 task->tk_pid, size, buf);
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400767 return &buf->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400769EXPORT_SYMBOL_GPL(rpc_malloc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Chuck Lever02107142006-01-03 09:55:49 +0100771/**
772 * rpc_free - free buffer allocated via rpc_malloc
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400773 * @buffer: buffer to free
Chuck Lever02107142006-01-03 09:55:49 +0100774 *
775 */
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400776void rpc_free(void *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777{
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400778 size_t size;
779 struct rpc_buffer *buf;
Chuck Lever02107142006-01-03 09:55:49 +0100780
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400781 if (!buffer)
782 return;
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400783
784 buf = container_of(buffer, struct rpc_buffer, data);
785 size = buf->len;
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400786
Geert Uytterhoeven215d0672007-05-08 11:37:26 +0200787 dprintk("RPC: freeing buffer of size %zu at %p\n",
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400788 size, buf);
Chuck Leveraa3d1fa2007-05-08 18:23:28 -0400789
Chuck Leverc5a4dd82007-03-29 16:47:58 -0400790 if (size <= RPC_BUFFER_MAXSIZE)
791 mempool_free(buf, rpc_buffer_mempool);
792 else
793 kfree(buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794}
\"Talpey, Thomas\12444802007-09-10 13:45:36 -0400795EXPORT_SYMBOL_GPL(rpc_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
797/*
798 * Creation and deletion of RPC task structures
799 */
Trond Myklebust47fe0642007-10-25 18:42:55 -0400800static void rpc_init_task(struct rpc_task *task, const struct rpc_task_setup *task_setup_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801{
802 memset(task, 0, sizeof(*task));
Trond Myklebustfde95c72008-02-22 15:09:26 -0500803 setup_timer(&task->tk_timer, rpc_run_timer, (unsigned long)task);
Trond Myklebust44c28872006-01-03 09:55:06 +0100804 atomic_set(&task->tk_count, 1);
Trond Myklebust84115e12007-07-14 15:39:59 -0400805 task->tk_flags = task_setup_data->flags;
806 task->tk_ops = task_setup_data->callback_ops;
807 task->tk_calldata = task_setup_data->callback_data;
Trond Myklebust6529eba2007-06-14 16:40:14 -0400808 INIT_LIST_HEAD(&task->tk_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810 /* Initialize retry counters */
811 task->tk_garb_retry = 2;
812 task->tk_cred_retry = 2;
813
Trond Myklebust3ff75762007-07-14 15:40:00 -0400814 task->tk_priority = task_setup_data->priority - RPC_PRIORITY_LOW;
815 task->tk_owner = current->tgid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
817 /* Initialize workqueue for async tasks */
Trond Myklebust32bfb5c2008-02-19 20:04:21 -0500818 task->tk_workqueue = task_setup_data->workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Trond Myklebust84115e12007-07-14 15:39:59 -0400820 task->tk_client = task_setup_data->rpc_client;
821 if (task->tk_client != NULL) {
822 kref_get(&task->tk_client->cl_kref);
823 if (task->tk_client->cl_softrtry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 task->tk_flags |= RPC_TASK_SOFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 }
826
Trond Myklebust84115e12007-07-14 15:39:59 -0400827 if (task->tk_ops->rpc_call_prepare != NULL)
828 task->tk_action = rpc_prepare_task;
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100829
Trond Myklebustb3ef8b32007-10-25 18:32:34 -0400830 if (task_setup_data->rpc_message != NULL) {
831 memcpy(&task->tk_msg, task_setup_data->rpc_message, sizeof(task->tk_msg));
832 /* Bind the user cred */
833 if (task->tk_msg.rpc_cred != NULL)
834 rpcauth_holdcred(task);
835 else
836 rpcauth_bindcred(task);
837 if (task->tk_action == NULL)
838 rpc_call_start(task);
839 }
840
Chuck Leveref759a22006-03-20 13:44:17 -0500841 /* starting timestamp */
842 task->tk_start = jiffies;
843
Chuck Lever46121cf2007-01-31 12:14:08 -0500844 dprintk("RPC: new task initialized, procpid %u\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -0700845 task_pid_nr(current));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846}
847
848static struct rpc_task *
849rpc_alloc_task(void)
850{
851 return (struct rpc_task *)mempool_alloc(rpc_task_mempool, GFP_NOFS);
852}
853
Trond Myklebust32bfb5c2008-02-19 20:04:21 -0500854static void rpc_free_task_rcu(struct rcu_head *rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855{
Trond Myklebust8aca67f2006-11-13 16:23:44 -0500856 struct rpc_task *task = container_of(rcu, struct rpc_task, u.tk_rcu);
Chuck Lever46121cf2007-01-31 12:14:08 -0500857 dprintk("RPC: %5u freeing task\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 mempool_free(task, rpc_task_mempool);
859}
860
861/*
Trond Myklebust90c57552007-06-09 19:49:36 -0400862 * Create a new task for the specified client.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 */
Trond Myklebust84115e12007-07-14 15:39:59 -0400864struct rpc_task *rpc_new_task(const struct rpc_task_setup *setup_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865{
Trond Myklebuste8f5d772007-10-25 18:42:53 -0400866 struct rpc_task *task = setup_data->task;
867 unsigned short flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Trond Myklebuste8f5d772007-10-25 18:42:53 -0400869 if (task == NULL) {
870 task = rpc_alloc_task();
871 if (task == NULL)
872 goto out;
873 flags = RPC_TASK_DYNAMIC;
874 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Trond Myklebust84115e12007-07-14 15:39:59 -0400876 rpc_init_task(task, setup_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Trond Myklebuste8f5d772007-10-25 18:42:53 -0400878 task->tk_flags |= flags;
Chuck Lever46121cf2007-01-31 12:14:08 -0500879 dprintk("RPC: allocated task %p\n", task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880out:
881 return task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882}
883
Trond Myklebust32bfb5c2008-02-19 20:04:21 -0500884static void rpc_free_task(struct rpc_task *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885{
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100886 const struct rpc_call_ops *tk_ops = task->tk_ops;
887 void *calldata = task->tk_calldata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Trond Myklebust32bfb5c2008-02-19 20:04:21 -0500889 if (task->tk_flags & RPC_TASK_DYNAMIC)
890 call_rcu_bh(&task->u.tk_rcu, rpc_free_task_rcu);
891 rpc_release_calldata(tk_ops, calldata);
892}
893
894static void rpc_async_release(struct work_struct *work)
895{
896 rpc_free_task(container_of(work, struct rpc_task, u.tk_work));
897}
898
899void rpc_put_task(struct rpc_task *task)
900{
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500901 if (!atomic_dec_and_test(&task->tk_count))
902 return;
903 /* Release resources */
904 if (task->tk_rqstp)
905 xprt_release(task);
906 if (task->tk_msg.rpc_cred)
907 rpcauth_unbindcred(task);
908 if (task->tk_client) {
909 rpc_release_client(task->tk_client);
910 task->tk_client = NULL;
911 }
Trond Myklebust32bfb5c2008-02-19 20:04:21 -0500912 if (task->tk_workqueue != NULL) {
913 INIT_WORK(&task->u.tk_work, rpc_async_release);
914 queue_work(task->tk_workqueue, &task->u.tk_work);
915 } else
916 rpc_free_task(task);
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500917}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400918EXPORT_SYMBOL_GPL(rpc_put_task);
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500919
Trond Myklebustbde8f002007-01-24 11:54:53 -0800920static void rpc_release_task(struct rpc_task *task)
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500921{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922#ifdef RPC_DEBUG
923 BUG_ON(task->tk_magic != RPC_TASK_MAGIC_ID);
924#endif
Chuck Lever46121cf2007-01-31 12:14:08 -0500925 dprintk("RPC: %5u release task\n", task->tk_pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
Trond Myklebust6529eba2007-06-14 16:40:14 -0400927 if (!list_empty(&task->tk_task)) {
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400928 struct rpc_clnt *clnt = task->tk_client;
Trond Myklebust6529eba2007-06-14 16:40:14 -0400929 /* Remove from client task list */
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400930 spin_lock(&clnt->cl_lock);
Trond Myklebust6529eba2007-06-14 16:40:14 -0400931 list_del(&task->tk_task);
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400932 spin_unlock(&clnt->cl_lock);
Trond Myklebust6529eba2007-06-14 16:40:14 -0400933 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 BUG_ON (RPC_IS_QUEUED(task));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
936 /* Synchronously delete any running timer */
937 rpc_delete_timer(task);
938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939#ifdef RPC_DEBUG
940 task->tk_magic = 0;
941#endif
Trond Myklebuste6b3c4d2006-11-11 22:18:03 -0500942 /* Wake up anyone who is waiting for task completion */
943 rpc_mark_complete_task(task);
944
945 rpc_put_task(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946}
947
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948/*
949 * Kill all tasks for the given client.
950 * XXX: kill their descendants as well?
951 */
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400952void rpc_killall_tasks(struct rpc_clnt *clnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953{
954 struct rpc_task *rovr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400957 if (list_empty(&clnt->cl_tasks))
958 return;
959 dprintk("RPC: killing all tasks for client %p\n", clnt);
960 /*
961 * Spin lock all_tasks to prevent changes...
962 */
963 spin_lock(&clnt->cl_lock);
964 list_for_each_entry(rovr, &clnt->cl_tasks, tk_task) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 if (! RPC_IS_ACTIVATED(rovr))
966 continue;
Trond Myklebust6529eba2007-06-14 16:40:14 -0400967 if (!(rovr->tk_flags & RPC_TASK_KILLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 rovr->tk_flags |= RPC_TASK_KILLED;
969 rpc_exit(rovr, -EIO);
970 rpc_wake_up_task(rovr);
971 }
972 }
Trond Myklebust4bef61f2007-06-16 14:17:01 -0400973 spin_unlock(&clnt->cl_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974}
Trond Myklebuste8914c62007-07-14 15:39:59 -0400975EXPORT_SYMBOL_GPL(rpc_killall_tasks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
Trond Myklebustb247bbf2007-07-19 16:32:20 -0400977int rpciod_up(void)
978{
979 return try_module_get(THIS_MODULE) ? 0 : -EINVAL;
980}
981
982void rpciod_down(void)
983{
984 module_put(THIS_MODULE);
985}
986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987/*
Trond Myklebustb247bbf2007-07-19 16:32:20 -0400988 * Start up the rpciod workqueue.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 */
Trond Myklebustb247bbf2007-07-19 16:32:20 -0400990static int rpciod_start(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991{
992 struct workqueue_struct *wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 /*
995 * Create the rpciod thread and wait for it to start.
996 */
Trond Myklebustab418d72007-06-14 17:08:36 -0400997 dprintk("RPC: creating workqueue rpciod\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 wq = create_workqueue("rpciod");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 rpciod_workqueue = wq;
Trond Myklebustb247bbf2007-07-19 16:32:20 -04001000 return rpciod_workqueue != NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001}
1002
Trond Myklebustb247bbf2007-07-19 16:32:20 -04001003static void rpciod_stop(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004{
Trond Myklebustb247bbf2007-07-19 16:32:20 -04001005 struct workqueue_struct *wq = NULL;
Trond Myklebustab418d72007-06-14 17:08:36 -04001006
Trond Myklebustb247bbf2007-07-19 16:32:20 -04001007 if (rpciod_workqueue == NULL)
1008 return;
Trond Myklebustab418d72007-06-14 17:08:36 -04001009 dprintk("RPC: destroying workqueue rpciod\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
Trond Myklebustb247bbf2007-07-19 16:32:20 -04001011 wq = rpciod_workqueue;
1012 rpciod_workqueue = NULL;
1013 destroy_workqueue(wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014}
1015
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016void
1017rpc_destroy_mempool(void)
1018{
Trond Myklebustb247bbf2007-07-19 16:32:20 -04001019 rpciod_stop();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 if (rpc_buffer_mempool)
1021 mempool_destroy(rpc_buffer_mempool);
1022 if (rpc_task_mempool)
1023 mempool_destroy(rpc_task_mempool);
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -07001024 if (rpc_task_slabp)
1025 kmem_cache_destroy(rpc_task_slabp);
1026 if (rpc_buffer_slabp)
1027 kmem_cache_destroy(rpc_buffer_slabp);
Trond Myklebustf6a1cc82008-02-22 17:06:55 -05001028 rpc_destroy_wait_queue(&delay_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029}
1030
1031int
1032rpc_init_mempool(void)
1033{
Trond Myklebustf6a1cc82008-02-22 17:06:55 -05001034 /*
1035 * The following is not strictly a mempool initialisation,
1036 * but there is no harm in doing it here
1037 */
1038 rpc_init_wait_queue(&delay_queue, "delayq");
1039 if (!rpciod_start())
1040 goto err_nomem;
1041
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 rpc_task_slabp = kmem_cache_create("rpc_tasks",
1043 sizeof(struct rpc_task),
1044 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +09001045 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 if (!rpc_task_slabp)
1047 goto err_nomem;
1048 rpc_buffer_slabp = kmem_cache_create("rpc_buffers",
1049 RPC_BUFFER_MAXSIZE,
1050 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +09001051 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 if (!rpc_buffer_slabp)
1053 goto err_nomem;
Matthew Dobson93d23412006-03-26 01:37:50 -08001054 rpc_task_mempool = mempool_create_slab_pool(RPC_TASK_POOLSIZE,
1055 rpc_task_slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 if (!rpc_task_mempool)
1057 goto err_nomem;
Matthew Dobson93d23412006-03-26 01:37:50 -08001058 rpc_buffer_mempool = mempool_create_slab_pool(RPC_BUFFER_POOLSIZE,
1059 rpc_buffer_slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 if (!rpc_buffer_mempool)
1061 goto err_nomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 return 0;
1063err_nomem:
1064 rpc_destroy_mempool();
1065 return -ENOMEM;
1066}