Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 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 Hideaki | cca5172 | 2007-02-09 15:38:13 -0800 | [diff] [blame] | 7 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | * 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> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/spinlock.h> |
Arjan van de Ven | 4a3e2f7 | 2006-03-20 22:33:17 -0800 | [diff] [blame] | 20 | #include <linux/mutex.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
| 22 | #include <linux/sunrpc/clnt.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
| 24 | #ifdef RPC_DEBUG |
| 25 | #define RPCDBG_FACILITY RPCDBG_SCHED |
| 26 | #define RPC_TASK_MAGIC_ID 0xf00baa |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #endif |
| 28 | |
| 29 | /* |
| 30 | * RPC slabs and memory pools |
| 31 | */ |
| 32 | #define RPC_BUFFER_MAXSIZE (2048) |
| 33 | #define RPC_BUFFER_POOLSIZE (8) |
| 34 | #define RPC_TASK_POOLSIZE (8) |
Christoph Lameter | e18b890 | 2006-12-06 20:33:20 -0800 | [diff] [blame] | 35 | static struct kmem_cache *rpc_task_slabp __read_mostly; |
| 36 | static struct kmem_cache *rpc_buffer_slabp __read_mostly; |
Eric Dumazet | ba89966 | 2005-08-26 12:05:31 -0700 | [diff] [blame] | 37 | static mempool_t *rpc_task_mempool __read_mostly; |
| 38 | static mempool_t *rpc_buffer_mempool __read_mostly; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 40 | static void rpc_async_schedule(struct work_struct *); |
Trond Myklebust | bde8f00 | 2007-01-24 11:54:53 -0800 | [diff] [blame] | 41 | static void rpc_release_task(struct rpc_task *task); |
Trond Myklebust | 36df9aa | 2007-07-18 16:18:52 -0400 | [diff] [blame] | 42 | static void __rpc_queue_timer_fn(unsigned long ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
| 44 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | * RPC tasks sit here while waiting for conditions to improve. |
| 46 | */ |
Trond Myklebust | a4a8749 | 2007-07-18 13:24:19 -0400 | [diff] [blame] | 47 | static struct rpc_wait_queue delay_queue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
| 49 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | * rpciod-related stuff |
| 51 | */ |
Trond Myklebust | 24c5d9d | 2006-03-20 13:44:08 -0500 | [diff] [blame] | 52 | struct workqueue_struct *rpciod_workqueue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
| 54 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | * 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 Myklebust | 5d00837 | 2008-02-22 16:34:17 -0500 | [diff] [blame] | 59 | static void |
Trond Myklebust | eb276c0 | 2008-02-22 17:27:59 -0500 | [diff] [blame] | 60 | __rpc_disable_timer(struct rpc_wait_queue *queue, struct rpc_task *task) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | { |
Trond Myklebust | 36df9aa | 2007-07-18 16:18:52 -0400 | [diff] [blame] | 62 | if (task->tk_timeout == 0) |
| 63 | return; |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 64 | dprintk("RPC: %5u disabling timer\n", task->tk_pid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | task->tk_timeout = 0; |
Trond Myklebust | 36df9aa | 2007-07-18 16:18:52 -0400 | [diff] [blame] | 66 | list_del(&task->u.tk_wait.timer_list); |
Trond Myklebust | eb276c0 | 2008-02-22 17:27:59 -0500 | [diff] [blame] | 67 | if (list_empty(&queue->timer_list.list)) |
| 68 | del_timer(&queue->timer_list.timer); |
Trond Myklebust | 36df9aa | 2007-07-18 16:18:52 -0400 | [diff] [blame] | 69 | } |
| 70 | |
| 71 | static void |
| 72 | rpc_set_queue_timer(struct rpc_wait_queue *queue, unsigned long expires) |
| 73 | { |
| 74 | queue->timer_list.expires = expires; |
| 75 | mod_timer(&queue->timer_list.timer, expires); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | } |
| 77 | |
| 78 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | * Set up a timer for the current task. |
| 80 | */ |
Trond Myklebust | 5d00837 | 2008-02-22 16:34:17 -0500 | [diff] [blame] | 81 | static void |
Trond Myklebust | eb276c0 | 2008-02-22 17:27:59 -0500 | [diff] [blame] | 82 | __rpc_add_timer(struct rpc_wait_queue *queue, struct rpc_task *task) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | { |
| 84 | if (!task->tk_timeout) |
| 85 | return; |
| 86 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 87 | dprintk("RPC: %5u setting alarm for %lu ms\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | task->tk_pid, task->tk_timeout * 1000 / HZ); |
| 89 | |
Trond Myklebust | eb276c0 | 2008-02-22 17:27:59 -0500 | [diff] [blame] | 90 | task->u.tk_wait.expires = jiffies + task->tk_timeout; |
| 91 | if (list_empty(&queue->timer_list.list) || time_before(task->u.tk_wait.expires, queue->timer_list.expires)) |
| 92 | rpc_set_queue_timer(queue, task->u.tk_wait.expires); |
| 93 | list_add(&task->u.tk_wait.timer_list, &queue->timer_list.list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | /* |
| 97 | * Add new request to a priority queue. |
| 98 | */ |
| 99 | static void __rpc_add_wait_queue_priority(struct rpc_wait_queue *queue, struct rpc_task *task) |
| 100 | { |
| 101 | struct list_head *q; |
| 102 | struct rpc_task *t; |
| 103 | |
| 104 | INIT_LIST_HEAD(&task->u.tk_wait.links); |
| 105 | q = &queue->tasks[task->tk_priority]; |
| 106 | if (unlikely(task->tk_priority > queue->maxpriority)) |
| 107 | q = &queue->tasks[queue->maxpriority]; |
| 108 | list_for_each_entry(t, q, u.tk_wait.list) { |
Trond Myklebust | 3ff7576 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 109 | if (t->tk_owner == task->tk_owner) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | list_add_tail(&task->u.tk_wait.list, &t->u.tk_wait.links); |
| 111 | return; |
| 112 | } |
| 113 | } |
| 114 | list_add_tail(&task->u.tk_wait.list, q); |
| 115 | } |
| 116 | |
| 117 | /* |
| 118 | * Add new request to wait queue. |
| 119 | * |
| 120 | * Swapper tasks always get inserted at the head of the queue. |
| 121 | * This should avoid many nasty memory deadlocks and hopefully |
| 122 | * improve overall performance. |
| 123 | * Everyone else gets appended to the queue to ensure proper FIFO behavior. |
| 124 | */ |
| 125 | static void __rpc_add_wait_queue(struct rpc_wait_queue *queue, struct rpc_task *task) |
| 126 | { |
| 127 | BUG_ON (RPC_IS_QUEUED(task)); |
| 128 | |
| 129 | if (RPC_IS_PRIORITY(queue)) |
| 130 | __rpc_add_wait_queue_priority(queue, task); |
| 131 | else if (RPC_IS_SWAPPER(task)) |
| 132 | list_add(&task->u.tk_wait.list, &queue->tasks[0]); |
| 133 | else |
| 134 | list_add_tail(&task->u.tk_wait.list, &queue->tasks[0]); |
Trond Myklebust | 96ef13b | 2008-02-22 15:46:41 -0500 | [diff] [blame] | 135 | task->tk_waitqueue = queue; |
Chuck Lever | e19b63d | 2006-03-20 13:44:15 -0500 | [diff] [blame] | 136 | queue->qlen++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | rpc_set_queued(task); |
| 138 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 139 | dprintk("RPC: %5u added to queue %p \"%s\"\n", |
| 140 | task->tk_pid, queue, rpc_qname(queue)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | } |
| 142 | |
| 143 | /* |
| 144 | * Remove request from a priority queue. |
| 145 | */ |
| 146 | static void __rpc_remove_wait_queue_priority(struct rpc_task *task) |
| 147 | { |
| 148 | struct rpc_task *t; |
| 149 | |
| 150 | if (!list_empty(&task->u.tk_wait.links)) { |
| 151 | t = list_entry(task->u.tk_wait.links.next, struct rpc_task, u.tk_wait.list); |
| 152 | list_move(&t->u.tk_wait.list, &task->u.tk_wait.list); |
| 153 | list_splice_init(&task->u.tk_wait.links, &t->u.tk_wait.links); |
| 154 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | } |
| 156 | |
| 157 | /* |
| 158 | * Remove request from queue. |
| 159 | * Note: must be called with spin lock held. |
| 160 | */ |
Trond Myklebust | 96ef13b | 2008-02-22 15:46:41 -0500 | [diff] [blame] | 161 | static void __rpc_remove_wait_queue(struct rpc_wait_queue *queue, struct rpc_task *task) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | { |
Trond Myklebust | eb276c0 | 2008-02-22 17:27:59 -0500 | [diff] [blame] | 163 | __rpc_disable_timer(queue, task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | if (RPC_IS_PRIORITY(queue)) |
| 165 | __rpc_remove_wait_queue_priority(task); |
Trond Myklebust | 36df9aa | 2007-07-18 16:18:52 -0400 | [diff] [blame] | 166 | list_del(&task->u.tk_wait.list); |
Chuck Lever | e19b63d | 2006-03-20 13:44:15 -0500 | [diff] [blame] | 167 | queue->qlen--; |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 168 | dprintk("RPC: %5u removed from queue %p \"%s\"\n", |
| 169 | task->tk_pid, queue, rpc_qname(queue)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | } |
| 171 | |
| 172 | static inline void rpc_set_waitqueue_priority(struct rpc_wait_queue *queue, int priority) |
| 173 | { |
| 174 | queue->priority = priority; |
| 175 | queue->count = 1 << (priority * 2); |
| 176 | } |
| 177 | |
Trond Myklebust | 3ff7576 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 178 | static inline void rpc_set_waitqueue_owner(struct rpc_wait_queue *queue, pid_t pid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | { |
Trond Myklebust | 3ff7576 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 180 | queue->owner = pid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | queue->nr = RPC_BATCH_COUNT; |
| 182 | } |
| 183 | |
| 184 | static inline void rpc_reset_waitqueue_priority(struct rpc_wait_queue *queue) |
| 185 | { |
| 186 | rpc_set_waitqueue_priority(queue, queue->maxpriority); |
Trond Myklebust | 3ff7576 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 187 | rpc_set_waitqueue_owner(queue, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | } |
| 189 | |
Trond Myklebust | 3ff7576 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 190 | static void __rpc_init_priority_wait_queue(struct rpc_wait_queue *queue, const char *qname, unsigned char nr_queues) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | { |
| 192 | int i; |
| 193 | |
| 194 | spin_lock_init(&queue->lock); |
| 195 | for (i = 0; i < ARRAY_SIZE(queue->tasks); i++) |
| 196 | INIT_LIST_HEAD(&queue->tasks[i]); |
Trond Myklebust | 3ff7576 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 197 | queue->maxpriority = nr_queues - 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | rpc_reset_waitqueue_priority(queue); |
Trond Myklebust | 36df9aa | 2007-07-18 16:18:52 -0400 | [diff] [blame] | 199 | queue->qlen = 0; |
| 200 | setup_timer(&queue->timer_list.timer, __rpc_queue_timer_fn, (unsigned long)queue); |
| 201 | INIT_LIST_HEAD(&queue->timer_list.list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | #ifdef RPC_DEBUG |
| 203 | queue->name = qname; |
| 204 | #endif |
| 205 | } |
| 206 | |
| 207 | void rpc_init_priority_wait_queue(struct rpc_wait_queue *queue, const char *qname) |
| 208 | { |
Trond Myklebust | 3ff7576 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 209 | __rpc_init_priority_wait_queue(queue, qname, RPC_NR_PRIORITY); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | } |
| 211 | |
| 212 | void rpc_init_wait_queue(struct rpc_wait_queue *queue, const char *qname) |
| 213 | { |
Trond Myklebust | 3ff7576 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 214 | __rpc_init_priority_wait_queue(queue, qname, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | } |
Trond Myklebust | e8914c6 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 216 | EXPORT_SYMBOL_GPL(rpc_init_wait_queue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | |
Trond Myklebust | f6a1cc8 | 2008-02-22 17:06:55 -0500 | [diff] [blame] | 218 | void rpc_destroy_wait_queue(struct rpc_wait_queue *queue) |
| 219 | { |
Trond Myklebust | 36df9aa | 2007-07-18 16:18:52 -0400 | [diff] [blame] | 220 | del_timer_sync(&queue->timer_list.timer); |
Trond Myklebust | f6a1cc8 | 2008-02-22 17:06:55 -0500 | [diff] [blame] | 221 | } |
| 222 | EXPORT_SYMBOL_GPL(rpc_destroy_wait_queue); |
| 223 | |
Matthew Wilcox | 150030b | 2007-12-06 16:24:39 -0500 | [diff] [blame] | 224 | static int rpc_wait_bit_killable(void *word) |
Trond Myklebust | 44c2887 | 2006-01-03 09:55:06 +0100 | [diff] [blame] | 225 | { |
Matthew Wilcox | 150030b | 2007-12-06 16:24:39 -0500 | [diff] [blame] | 226 | if (fatal_signal_pending(current)) |
Trond Myklebust | 44c2887 | 2006-01-03 09:55:06 +0100 | [diff] [blame] | 227 | return -ERESTARTSYS; |
| 228 | schedule(); |
| 229 | return 0; |
| 230 | } |
| 231 | |
Trond Myklebust | c44fe70 | 2007-06-16 14:17:01 -0400 | [diff] [blame] | 232 | #ifdef RPC_DEBUG |
| 233 | static void rpc_task_set_debuginfo(struct rpc_task *task) |
| 234 | { |
| 235 | static atomic_t rpc_pid; |
| 236 | |
| 237 | task->tk_magic = RPC_TASK_MAGIC_ID; |
| 238 | task->tk_pid = atomic_inc_return(&rpc_pid); |
| 239 | } |
| 240 | #else |
| 241 | static inline void rpc_task_set_debuginfo(struct rpc_task *task) |
| 242 | { |
| 243 | } |
| 244 | #endif |
| 245 | |
Trond Myklebust | e6b3c4d | 2006-11-11 22:18:03 -0500 | [diff] [blame] | 246 | static void rpc_set_active(struct rpc_task *task) |
| 247 | { |
Trond Myklebust | 4bef61f | 2007-06-16 14:17:01 -0400 | [diff] [blame] | 248 | struct rpc_clnt *clnt; |
Trond Myklebust | e6b3c4d | 2006-11-11 22:18:03 -0500 | [diff] [blame] | 249 | if (test_and_set_bit(RPC_TASK_ACTIVE, &task->tk_runstate) != 0) |
| 250 | return; |
Trond Myklebust | c44fe70 | 2007-06-16 14:17:01 -0400 | [diff] [blame] | 251 | rpc_task_set_debuginfo(task); |
Trond Myklebust | e6b3c4d | 2006-11-11 22:18:03 -0500 | [diff] [blame] | 252 | /* Add to global list of all tasks */ |
Trond Myklebust | 4bef61f | 2007-06-16 14:17:01 -0400 | [diff] [blame] | 253 | clnt = task->tk_client; |
| 254 | if (clnt != NULL) { |
| 255 | spin_lock(&clnt->cl_lock); |
| 256 | list_add_tail(&task->tk_task, &clnt->cl_tasks); |
| 257 | spin_unlock(&clnt->cl_lock); |
| 258 | } |
Trond Myklebust | e6b3c4d | 2006-11-11 22:18:03 -0500 | [diff] [blame] | 259 | } |
| 260 | |
Trond Myklebust | 44c2887 | 2006-01-03 09:55:06 +0100 | [diff] [blame] | 261 | /* |
| 262 | * Mark an RPC call as having completed by clearing the 'active' bit |
| 263 | */ |
Trond Myklebust | e6b3c4d | 2006-11-11 22:18:03 -0500 | [diff] [blame] | 264 | static void rpc_mark_complete_task(struct rpc_task *task) |
Trond Myklebust | 44c2887 | 2006-01-03 09:55:06 +0100 | [diff] [blame] | 265 | { |
Trond Myklebust | e6b3c4d | 2006-11-11 22:18:03 -0500 | [diff] [blame] | 266 | smp_mb__before_clear_bit(); |
| 267 | clear_bit(RPC_TASK_ACTIVE, &task->tk_runstate); |
| 268 | smp_mb__after_clear_bit(); |
Trond Myklebust | 44c2887 | 2006-01-03 09:55:06 +0100 | [diff] [blame] | 269 | wake_up_bit(&task->tk_runstate, RPC_TASK_ACTIVE); |
| 270 | } |
| 271 | |
| 272 | /* |
| 273 | * Allow callers to wait for completion of an RPC call |
| 274 | */ |
| 275 | int __rpc_wait_for_completion_task(struct rpc_task *task, int (*action)(void *)) |
| 276 | { |
| 277 | if (action == NULL) |
Matthew Wilcox | 150030b | 2007-12-06 16:24:39 -0500 | [diff] [blame] | 278 | action = rpc_wait_bit_killable; |
Trond Myklebust | 44c2887 | 2006-01-03 09:55:06 +0100 | [diff] [blame] | 279 | return wait_on_bit(&task->tk_runstate, RPC_TASK_ACTIVE, |
Matthew Wilcox | 150030b | 2007-12-06 16:24:39 -0500 | [diff] [blame] | 280 | action, TASK_KILLABLE); |
Trond Myklebust | 44c2887 | 2006-01-03 09:55:06 +0100 | [diff] [blame] | 281 | } |
Trond Myklebust | e8914c6 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 282 | EXPORT_SYMBOL_GPL(__rpc_wait_for_completion_task); |
Trond Myklebust | 44c2887 | 2006-01-03 09:55:06 +0100 | [diff] [blame] | 283 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | /* |
| 285 | * Make an RPC task runnable. |
| 286 | * |
YOSHIFUJI Hideaki | cca5172 | 2007-02-09 15:38:13 -0800 | [diff] [blame] | 287 | * Note: If the task is ASYNC, this must be called with |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | * the spinlock held to protect the wait queue operation. |
| 289 | */ |
| 290 | static void rpc_make_runnable(struct rpc_task *task) |
| 291 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | rpc_clear_queued(task); |
Christophe Saout | cc4dc59e | 2006-11-05 18:42:48 +0100 | [diff] [blame] | 293 | if (rpc_test_and_set_running(task)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | return; |
| 295 | if (RPC_IS_ASYNC(task)) { |
| 296 | int status; |
| 297 | |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 298 | INIT_WORK(&task->u.tk_work, rpc_async_schedule); |
Trond Myklebust | 32bfb5c | 2008-02-19 20:04:21 -0500 | [diff] [blame] | 299 | status = queue_work(rpciod_workqueue, &task->u.tk_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | if (status < 0) { |
| 301 | printk(KERN_WARNING "RPC: failed to add task to queue: error: %d!\n", status); |
| 302 | task->tk_status = status; |
| 303 | return; |
| 304 | } |
| 305 | } else |
Trond Myklebust | 96651ab | 2005-06-22 17:16:21 +0000 | [diff] [blame] | 306 | wake_up_bit(&task->tk_runstate, RPC_TASK_QUEUED); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | } |
| 308 | |
| 309 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | * Prepare for sleeping on a wait queue. |
| 311 | * By always appending tasks to the list we ensure FIFO behavior. |
| 312 | * NB: An RPC task will only receive interrupt-driven events as long |
| 313 | * as it's on a wait queue. |
| 314 | */ |
| 315 | static void __rpc_sleep_on(struct rpc_wait_queue *q, struct rpc_task *task, |
Trond Myklebust | 5d00837 | 2008-02-22 16:34:17 -0500 | [diff] [blame] | 316 | rpc_action action) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | { |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 318 | dprintk("RPC: %5u sleep_on(queue \"%s\" time %lu)\n", |
| 319 | task->tk_pid, rpc_qname(q), jiffies); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | |
| 321 | if (!RPC_IS_ASYNC(task) && !RPC_IS_ACTIVATED(task)) { |
| 322 | printk(KERN_ERR "RPC: Inactive synchronous task put to sleep!\n"); |
| 323 | return; |
| 324 | } |
| 325 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | __rpc_add_wait_queue(q, task); |
| 327 | |
| 328 | BUG_ON(task->tk_callback != NULL); |
| 329 | task->tk_callback = action; |
Trond Myklebust | eb276c0 | 2008-02-22 17:27:59 -0500 | [diff] [blame] | 330 | __rpc_add_timer(q, task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | } |
| 332 | |
| 333 | void rpc_sleep_on(struct rpc_wait_queue *q, struct rpc_task *task, |
Trond Myklebust | 5d00837 | 2008-02-22 16:34:17 -0500 | [diff] [blame] | 334 | rpc_action action) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | { |
Trond Myklebust | e6b3c4d | 2006-11-11 22:18:03 -0500 | [diff] [blame] | 336 | /* Mark the task as being activated if so needed */ |
| 337 | rpc_set_active(task); |
| 338 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | /* |
| 340 | * Protect the queue operations. |
| 341 | */ |
| 342 | spin_lock_bh(&q->lock); |
Trond Myklebust | 5d00837 | 2008-02-22 16:34:17 -0500 | [diff] [blame] | 343 | __rpc_sleep_on(q, task, action); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | spin_unlock_bh(&q->lock); |
| 345 | } |
Trond Myklebust | e8914c6 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 346 | EXPORT_SYMBOL_GPL(rpc_sleep_on); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | |
| 348 | /** |
| 349 | * __rpc_do_wake_up_task - wake up a single rpc_task |
Trond Myklebust | 96ef13b | 2008-02-22 15:46:41 -0500 | [diff] [blame] | 350 | * @queue: wait queue |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | * @task: task to be woken up |
| 352 | * |
| 353 | * Caller must hold queue->lock, and have cleared the task queued flag. |
| 354 | */ |
Trond Myklebust | 96ef13b | 2008-02-22 15:46:41 -0500 | [diff] [blame] | 355 | static void __rpc_do_wake_up_task(struct rpc_wait_queue *queue, struct rpc_task *task) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | { |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 357 | dprintk("RPC: %5u __rpc_wake_up_task (now %lu)\n", |
| 358 | task->tk_pid, jiffies); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | |
| 360 | #ifdef RPC_DEBUG |
| 361 | BUG_ON(task->tk_magic != RPC_TASK_MAGIC_ID); |
| 362 | #endif |
| 363 | /* Has the task been executed yet? If not, we cannot wake it up! */ |
| 364 | if (!RPC_IS_ACTIVATED(task)) { |
| 365 | printk(KERN_ERR "RPC: Inactive task (%p) being woken up!\n", task); |
| 366 | return; |
| 367 | } |
| 368 | |
Trond Myklebust | 96ef13b | 2008-02-22 15:46:41 -0500 | [diff] [blame] | 369 | __rpc_remove_wait_queue(queue, task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | |
| 371 | rpc_make_runnable(task); |
| 372 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 373 | dprintk("RPC: __rpc_wake_up_task done\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | } |
| 375 | |
| 376 | /* |
Trond Myklebust | 96ef13b | 2008-02-22 15:46:41 -0500 | [diff] [blame] | 377 | * Wake up a queued task while the queue lock is being held |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | */ |
Trond Myklebust | 96ef13b | 2008-02-22 15:46:41 -0500 | [diff] [blame] | 379 | static void rpc_wake_up_task_queue_locked(struct rpc_wait_queue *queue, struct rpc_task *task) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | { |
Trond Myklebust | f5fb7b06 | 2008-02-25 21:40:50 -0800 | [diff] [blame] | 381 | if (RPC_IS_QUEUED(task) && task->tk_waitqueue == queue) |
| 382 | __rpc_do_wake_up_task(queue, task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | } |
| 384 | |
| 385 | /* |
Trond Myklebust | 96ef13b | 2008-02-22 15:46:41 -0500 | [diff] [blame] | 386 | * Wake up a task on a specific queue |
| 387 | */ |
| 388 | void rpc_wake_up_queued_task(struct rpc_wait_queue *queue, struct rpc_task *task) |
| 389 | { |
Trond Myklebust | 5e4424a | 2008-02-25 21:53:49 -0800 | [diff] [blame] | 390 | spin_lock_bh(&queue->lock); |
Trond Myklebust | 96ef13b | 2008-02-22 15:46:41 -0500 | [diff] [blame] | 391 | rpc_wake_up_task_queue_locked(queue, task); |
Trond Myklebust | 5e4424a | 2008-02-25 21:53:49 -0800 | [diff] [blame] | 392 | spin_unlock_bh(&queue->lock); |
Trond Myklebust | 96ef13b | 2008-02-22 15:46:41 -0500 | [diff] [blame] | 393 | } |
| 394 | EXPORT_SYMBOL_GPL(rpc_wake_up_queued_task); |
| 395 | |
| 396 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | * Wake up the specified task |
| 398 | */ |
Trond Myklebust | fda1393 | 2008-02-22 16:34:12 -0500 | [diff] [blame] | 399 | static void rpc_wake_up_task(struct rpc_task *task) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | { |
Trond Myklebust | 96ef13b | 2008-02-22 15:46:41 -0500 | [diff] [blame] | 401 | rpc_wake_up_queued_task(task->tk_waitqueue, task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | } |
| 403 | |
| 404 | /* |
| 405 | * Wake up the next task on a priority queue. |
| 406 | */ |
| 407 | static struct rpc_task * __rpc_wake_up_next_priority(struct rpc_wait_queue *queue) |
| 408 | { |
| 409 | struct list_head *q; |
| 410 | struct rpc_task *task; |
| 411 | |
| 412 | /* |
Trond Myklebust | 3ff7576 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 413 | * Service a batch of tasks from a single owner. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | */ |
| 415 | q = &queue->tasks[queue->priority]; |
| 416 | if (!list_empty(q)) { |
| 417 | task = list_entry(q->next, struct rpc_task, u.tk_wait.list); |
Trond Myklebust | 3ff7576 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 418 | if (queue->owner == task->tk_owner) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | if (--queue->nr) |
| 420 | goto out; |
| 421 | list_move_tail(&task->u.tk_wait.list, q); |
| 422 | } |
| 423 | /* |
| 424 | * Check if we need to switch queues. |
| 425 | */ |
| 426 | if (--queue->count) |
Trond Myklebust | 3ff7576 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 427 | goto new_owner; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | } |
| 429 | |
| 430 | /* |
| 431 | * Service the next queue. |
| 432 | */ |
| 433 | do { |
| 434 | if (q == &queue->tasks[0]) |
| 435 | q = &queue->tasks[queue->maxpriority]; |
| 436 | else |
| 437 | q = q - 1; |
| 438 | if (!list_empty(q)) { |
| 439 | task = list_entry(q->next, struct rpc_task, u.tk_wait.list); |
| 440 | goto new_queue; |
| 441 | } |
| 442 | } while (q != &queue->tasks[queue->priority]); |
| 443 | |
| 444 | rpc_reset_waitqueue_priority(queue); |
| 445 | return NULL; |
| 446 | |
| 447 | new_queue: |
| 448 | rpc_set_waitqueue_priority(queue, (unsigned int)(q - &queue->tasks[0])); |
Trond Myklebust | 3ff7576 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 449 | new_owner: |
| 450 | rpc_set_waitqueue_owner(queue, task->tk_owner); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | out: |
Trond Myklebust | 96ef13b | 2008-02-22 15:46:41 -0500 | [diff] [blame] | 452 | rpc_wake_up_task_queue_locked(queue, task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | return task; |
| 454 | } |
| 455 | |
| 456 | /* |
| 457 | * Wake up the next task on the wait queue. |
| 458 | */ |
| 459 | struct rpc_task * rpc_wake_up_next(struct rpc_wait_queue *queue) |
| 460 | { |
| 461 | struct rpc_task *task = NULL; |
| 462 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 463 | dprintk("RPC: wake_up_next(%p \"%s\")\n", |
| 464 | queue, rpc_qname(queue)); |
Trond Myklebust | 5e4424a | 2008-02-25 21:53:49 -0800 | [diff] [blame] | 465 | spin_lock_bh(&queue->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | if (RPC_IS_PRIORITY(queue)) |
| 467 | task = __rpc_wake_up_next_priority(queue); |
| 468 | else { |
| 469 | task_for_first(task, &queue->tasks[0]) |
Trond Myklebust | 96ef13b | 2008-02-22 15:46:41 -0500 | [diff] [blame] | 470 | rpc_wake_up_task_queue_locked(queue, task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | } |
Trond Myklebust | 5e4424a | 2008-02-25 21:53:49 -0800 | [diff] [blame] | 472 | spin_unlock_bh(&queue->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | |
| 474 | return task; |
| 475 | } |
Trond Myklebust | e8914c6 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 476 | EXPORT_SYMBOL_GPL(rpc_wake_up_next); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | |
| 478 | /** |
| 479 | * rpc_wake_up - wake up all rpc_tasks |
| 480 | * @queue: rpc_wait_queue on which the tasks are sleeping |
| 481 | * |
| 482 | * Grabs queue->lock |
| 483 | */ |
| 484 | void rpc_wake_up(struct rpc_wait_queue *queue) |
| 485 | { |
Trond Myklebust | e6d83d5 | 2006-03-13 21:20:48 -0800 | [diff] [blame] | 486 | struct rpc_task *task, *next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | struct list_head *head; |
Trond Myklebust | e6d83d5 | 2006-03-13 21:20:48 -0800 | [diff] [blame] | 488 | |
Trond Myklebust | 5e4424a | 2008-02-25 21:53:49 -0800 | [diff] [blame] | 489 | spin_lock_bh(&queue->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | head = &queue->tasks[queue->maxpriority]; |
| 491 | for (;;) { |
Trond Myklebust | e6d83d5 | 2006-03-13 21:20:48 -0800 | [diff] [blame] | 492 | list_for_each_entry_safe(task, next, head, u.tk_wait.list) |
Trond Myklebust | 96ef13b | 2008-02-22 15:46:41 -0500 | [diff] [blame] | 493 | rpc_wake_up_task_queue_locked(queue, task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | if (head == &queue->tasks[0]) |
| 495 | break; |
| 496 | head--; |
| 497 | } |
Trond Myklebust | 5e4424a | 2008-02-25 21:53:49 -0800 | [diff] [blame] | 498 | spin_unlock_bh(&queue->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | } |
Trond Myklebust | e8914c6 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 500 | EXPORT_SYMBOL_GPL(rpc_wake_up); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 501 | |
| 502 | /** |
| 503 | * rpc_wake_up_status - wake up all rpc_tasks and set their status value. |
| 504 | * @queue: rpc_wait_queue on which the tasks are sleeping |
| 505 | * @status: status value to set |
| 506 | * |
| 507 | * Grabs queue->lock |
| 508 | */ |
| 509 | void rpc_wake_up_status(struct rpc_wait_queue *queue, int status) |
| 510 | { |
Trond Myklebust | e6d83d5 | 2006-03-13 21:20:48 -0800 | [diff] [blame] | 511 | struct rpc_task *task, *next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | struct list_head *head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | |
Trond Myklebust | 5e4424a | 2008-02-25 21:53:49 -0800 | [diff] [blame] | 514 | spin_lock_bh(&queue->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | head = &queue->tasks[queue->maxpriority]; |
| 516 | for (;;) { |
Trond Myklebust | e6d83d5 | 2006-03-13 21:20:48 -0800 | [diff] [blame] | 517 | list_for_each_entry_safe(task, next, head, u.tk_wait.list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | task->tk_status = status; |
Trond Myklebust | 96ef13b | 2008-02-22 15:46:41 -0500 | [diff] [blame] | 519 | rpc_wake_up_task_queue_locked(queue, task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | } |
| 521 | if (head == &queue->tasks[0]) |
| 522 | break; |
| 523 | head--; |
| 524 | } |
Trond Myklebust | 5e4424a | 2008-02-25 21:53:49 -0800 | [diff] [blame] | 525 | spin_unlock_bh(&queue->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | } |
Trond Myklebust | e8914c6 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 527 | EXPORT_SYMBOL_GPL(rpc_wake_up_status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | |
Trond Myklebust | 36df9aa | 2007-07-18 16:18:52 -0400 | [diff] [blame] | 529 | static void __rpc_queue_timer_fn(unsigned long ptr) |
| 530 | { |
| 531 | struct rpc_wait_queue *queue = (struct rpc_wait_queue *)ptr; |
| 532 | struct rpc_task *task, *n; |
| 533 | unsigned long expires, now, timeo; |
| 534 | |
| 535 | spin_lock(&queue->lock); |
| 536 | expires = now = jiffies; |
| 537 | list_for_each_entry_safe(task, n, &queue->timer_list.list, u.tk_wait.timer_list) { |
| 538 | timeo = task->u.tk_wait.expires; |
| 539 | if (time_after_eq(now, timeo)) { |
Trond Myklebust | 36df9aa | 2007-07-18 16:18:52 -0400 | [diff] [blame] | 540 | dprintk("RPC: %5u timeout\n", task->tk_pid); |
| 541 | task->tk_status = -ETIMEDOUT; |
| 542 | rpc_wake_up_task_queue_locked(queue, task); |
| 543 | continue; |
| 544 | } |
| 545 | if (expires == now || time_after(expires, timeo)) |
| 546 | expires = timeo; |
| 547 | } |
| 548 | if (!list_empty(&queue->timer_list.list)) |
| 549 | rpc_set_queue_timer(queue, expires); |
| 550 | spin_unlock(&queue->lock); |
| 551 | } |
| 552 | |
Trond Myklebust | 8014793 | 2006-08-31 18:24:08 -0400 | [diff] [blame] | 553 | static void __rpc_atrun(struct rpc_task *task) |
| 554 | { |
Trond Myklebust | 5d00837 | 2008-02-22 16:34:17 -0500 | [diff] [blame] | 555 | task->tk_status = 0; |
Trond Myklebust | 8014793 | 2006-08-31 18:24:08 -0400 | [diff] [blame] | 556 | } |
| 557 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | /* |
| 559 | * Run a task at a later time |
| 560 | */ |
Trond Myklebust | 8014793 | 2006-08-31 18:24:08 -0400 | [diff] [blame] | 561 | void rpc_delay(struct rpc_task *task, unsigned long delay) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | { |
| 563 | task->tk_timeout = delay; |
Trond Myklebust | 5d00837 | 2008-02-22 16:34:17 -0500 | [diff] [blame] | 564 | rpc_sleep_on(&delay_queue, task, __rpc_atrun); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | } |
Trond Myklebust | e8914c6 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 566 | EXPORT_SYMBOL_GPL(rpc_delay); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 568 | /* |
Trond Myklebust | 4ce70ad | 2006-01-03 09:55:05 +0100 | [diff] [blame] | 569 | * Helper to call task->tk_ops->rpc_call_prepare |
| 570 | */ |
Andy Adamson | aae2006 | 2009-04-01 09:22:40 -0400 | [diff] [blame] | 571 | void rpc_prepare_task(struct rpc_task *task) |
Trond Myklebust | 4ce70ad | 2006-01-03 09:55:05 +0100 | [diff] [blame] | 572 | { |
| 573 | task->tk_ops->rpc_call_prepare(task, task->tk_calldata); |
| 574 | } |
| 575 | |
| 576 | /* |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 577 | * Helper that calls task->tk_ops->rpc_call_done if it exists |
Trond Myklebust | d05fdb0 | 2005-06-22 17:16:19 +0000 | [diff] [blame] | 578 | */ |
Trond Myklebust | abbcf28 | 2006-01-03 09:55:03 +0100 | [diff] [blame] | 579 | void rpc_exit_task(struct rpc_task *task) |
Trond Myklebust | d05fdb0 | 2005-06-22 17:16:19 +0000 | [diff] [blame] | 580 | { |
Trond Myklebust | abbcf28 | 2006-01-03 09:55:03 +0100 | [diff] [blame] | 581 | task->tk_action = NULL; |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 582 | if (task->tk_ops->rpc_call_done != NULL) { |
| 583 | task->tk_ops->rpc_call_done(task, task->tk_calldata); |
Trond Myklebust | d05fdb0 | 2005-06-22 17:16:19 +0000 | [diff] [blame] | 584 | if (task->tk_action != NULL) { |
Trond Myklebust | abbcf28 | 2006-01-03 09:55:03 +0100 | [diff] [blame] | 585 | WARN_ON(RPC_ASSASSINATED(task)); |
| 586 | /* Always release the RPC slot and buffer memory */ |
| 587 | xprt_release(task); |
Trond Myklebust | d05fdb0 | 2005-06-22 17:16:19 +0000 | [diff] [blame] | 588 | } |
| 589 | } |
Trond Myklebust | d05fdb0 | 2005-06-22 17:16:19 +0000 | [diff] [blame] | 590 | } |
Trond Myklebust | e8914c6 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 591 | EXPORT_SYMBOL_GPL(rpc_exit_task); |
Trond Myklebust | d05fdb0 | 2005-06-22 17:16:19 +0000 | [diff] [blame] | 592 | |
Trond Myklebust | bbd5a1f | 2006-10-18 16:01:05 -0400 | [diff] [blame] | 593 | void rpc_release_calldata(const struct rpc_call_ops *ops, void *calldata) |
| 594 | { |
Trond Myklebust | a86dc49 | 2008-06-11 13:37:09 -0400 | [diff] [blame] | 595 | if (ops->rpc_release != NULL) |
Trond Myklebust | bbd5a1f | 2006-10-18 16:01:05 -0400 | [diff] [blame] | 596 | ops->rpc_release(calldata); |
Trond Myklebust | bbd5a1f | 2006-10-18 16:01:05 -0400 | [diff] [blame] | 597 | } |
| 598 | |
Trond Myklebust | d05fdb0 | 2005-06-22 17:16:19 +0000 | [diff] [blame] | 599 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 600 | * This is the RPC `scheduler' (or rather, the finite state machine). |
| 601 | */ |
Trond Myklebust | 2efef83 | 2007-02-03 13:38:41 -0800 | [diff] [blame] | 602 | static void __rpc_execute(struct rpc_task *task) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | { |
Trond Myklebust | eb9b55a | 2009-03-10 20:33:16 -0400 | [diff] [blame] | 604 | struct rpc_wait_queue *queue; |
| 605 | int task_is_async = RPC_IS_ASYNC(task); |
| 606 | int status = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 608 | dprintk("RPC: %5u __rpc_execute flags=0x%x\n", |
| 609 | task->tk_pid, task->tk_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | |
| 611 | BUG_ON(RPC_IS_QUEUED(task)); |
| 612 | |
Trond Myklebust | d05fdb0 | 2005-06-22 17:16:19 +0000 | [diff] [blame] | 613 | for (;;) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 614 | |
| 615 | /* |
| 616 | * Execute any pending callback. |
| 617 | */ |
\\\"J. Bruce Fields\\\ | a486aed | 2008-06-09 16:51:35 -0400 | [diff] [blame] | 618 | if (task->tk_callback) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | void (*save_callback)(struct rpc_task *); |
YOSHIFUJI Hideaki | cca5172 | 2007-02-09 15:38:13 -0800 | [diff] [blame] | 620 | |
| 621 | /* |
\\\"J. Bruce Fields\\\ | a486aed | 2008-06-09 16:51:35 -0400 | [diff] [blame] | 622 | * We set tk_callback to NULL before calling it, |
| 623 | * in case it sets the tk_callback field itself: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | */ |
\\\"J. Bruce Fields\\\ | a486aed | 2008-06-09 16:51:35 -0400 | [diff] [blame] | 625 | save_callback = task->tk_callback; |
| 626 | task->tk_callback = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 627 | save_callback(task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | } |
| 629 | |
| 630 | /* |
| 631 | * Perform the next FSM step. |
| 632 | * tk_action may be NULL when the task has been killed |
| 633 | * by someone else. |
| 634 | */ |
| 635 | if (!RPC_IS_QUEUED(task)) { |
Trond Myklebust | abbcf28 | 2006-01-03 09:55:03 +0100 | [diff] [blame] | 636 | if (task->tk_action == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | break; |
Trond Myklebust | abbcf28 | 2006-01-03 09:55:03 +0100 | [diff] [blame] | 638 | task->tk_action(task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 639 | } |
| 640 | |
| 641 | /* |
| 642 | * Lockless check for whether task is sleeping or not. |
| 643 | */ |
| 644 | if (!RPC_IS_QUEUED(task)) |
| 645 | continue; |
Trond Myklebust | eb9b55a | 2009-03-10 20:33:16 -0400 | [diff] [blame] | 646 | /* |
| 647 | * The queue->lock protects against races with |
| 648 | * rpc_make_runnable(). |
| 649 | * |
| 650 | * Note that once we clear RPC_TASK_RUNNING on an asynchronous |
| 651 | * rpc_task, rpc_make_runnable() can assign it to a |
| 652 | * different workqueue. We therefore cannot assume that the |
| 653 | * rpc_task pointer may still be dereferenced. |
| 654 | */ |
| 655 | queue = task->tk_waitqueue; |
| 656 | spin_lock_bh(&queue->lock); |
| 657 | if (!RPC_IS_QUEUED(task)) { |
| 658 | spin_unlock_bh(&queue->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | continue; |
| 660 | } |
Trond Myklebust | eb9b55a | 2009-03-10 20:33:16 -0400 | [diff] [blame] | 661 | rpc_clear_running(task); |
| 662 | spin_unlock_bh(&queue->lock); |
| 663 | if (task_is_async) |
| 664 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | |
| 666 | /* sync task: sleep here */ |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 667 | dprintk("RPC: %5u sync task going to sleep\n", task->tk_pid); |
Trond Myklebust | 96651ab | 2005-06-22 17:16:21 +0000 | [diff] [blame] | 668 | status = out_of_line_wait_on_bit(&task->tk_runstate, |
Matthew Wilcox | 150030b | 2007-12-06 16:24:39 -0500 | [diff] [blame] | 669 | RPC_TASK_QUEUED, rpc_wait_bit_killable, |
| 670 | TASK_KILLABLE); |
Trond Myklebust | 96651ab | 2005-06-22 17:16:21 +0000 | [diff] [blame] | 671 | if (status == -ERESTARTSYS) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | /* |
| 673 | * When a sync task receives a signal, it exits with |
| 674 | * -ERESTARTSYS. In order to catch any callbacks that |
| 675 | * clean up after sleeping on some queue, we don't |
| 676 | * break the loop here, but go around once more. |
| 677 | */ |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 678 | dprintk("RPC: %5u got signal\n", task->tk_pid); |
Trond Myklebust | 96651ab | 2005-06-22 17:16:21 +0000 | [diff] [blame] | 679 | task->tk_flags |= RPC_TASK_KILLED; |
| 680 | rpc_exit(task, -ERESTARTSYS); |
| 681 | rpc_wake_up_task(task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | } |
| 683 | rpc_set_running(task); |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 684 | dprintk("RPC: %5u sync task resuming\n", task->tk_pid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 685 | } |
| 686 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 687 | dprintk("RPC: %5u return %d, status %d\n", task->tk_pid, status, |
| 688 | task->tk_status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | /* Release all resources associated with the task */ |
| 690 | rpc_release_task(task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | } |
| 692 | |
| 693 | /* |
| 694 | * User-visible entry point to the scheduler. |
| 695 | * |
| 696 | * This may be called recursively if e.g. an async NFS task updates |
| 697 | * the attributes and finds that dirty pages must be flushed. |
| 698 | * NOTE: Upon exit of this function the task is guaranteed to be |
| 699 | * released. In particular note that tk_release() will have |
| 700 | * been called, so your task memory may have been freed. |
| 701 | */ |
Trond Myklebust | 2efef83 | 2007-02-03 13:38:41 -0800 | [diff] [blame] | 702 | void rpc_execute(struct rpc_task *task) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 703 | { |
Trond Myklebust | 44c2887 | 2006-01-03 09:55:06 +0100 | [diff] [blame] | 704 | rpc_set_active(task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | rpc_set_running(task); |
Trond Myklebust | 2efef83 | 2007-02-03 13:38:41 -0800 | [diff] [blame] | 706 | __rpc_execute(task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | } |
| 708 | |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 709 | static void rpc_async_schedule(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | { |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 711 | __rpc_execute(container_of(work, struct rpc_task, u.tk_work)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | } |
| 713 | |
Chuck Lever | aa3d1fa | 2007-05-08 18:23:28 -0400 | [diff] [blame] | 714 | struct rpc_buffer { |
| 715 | size_t len; |
| 716 | char data[]; |
| 717 | }; |
| 718 | |
Chuck Lever | 0210714 | 2006-01-03 09:55:49 +0100 | [diff] [blame] | 719 | /** |
| 720 | * rpc_malloc - allocate an RPC buffer |
| 721 | * @task: RPC task that will use this buffer |
| 722 | * @size: requested byte size |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | * |
Chuck Lever | c5a4dd8 | 2007-03-29 16:47:58 -0400 | [diff] [blame] | 724 | * To prevent rpciod from hanging, this allocator never sleeps, |
| 725 | * returning NULL if the request cannot be serviced immediately. |
| 726 | * The caller can arrange to sleep in a way that is safe for rpciod. |
| 727 | * |
| 728 | * Most requests are 'small' (under 2KiB) and can be serviced from a |
| 729 | * mempool, ensuring that NFS reads and writes can always proceed, |
| 730 | * and that there is good locality of reference for these buffers. |
| 731 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 732 | * In order to avoid memory starvation triggering more writebacks of |
Chuck Lever | c5a4dd8 | 2007-03-29 16:47:58 -0400 | [diff] [blame] | 733 | * NFS requests, we avoid using GFP_KERNEL. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | */ |
Chuck Lever | c5a4dd8 | 2007-03-29 16:47:58 -0400 | [diff] [blame] | 735 | void *rpc_malloc(struct rpc_task *task, size_t size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | { |
Chuck Lever | aa3d1fa | 2007-05-08 18:23:28 -0400 | [diff] [blame] | 737 | struct rpc_buffer *buf; |
Chuck Lever | c5a4dd8 | 2007-03-29 16:47:58 -0400 | [diff] [blame] | 738 | gfp_t gfp = RPC_IS_SWAPPER(task) ? GFP_ATOMIC : GFP_NOWAIT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | |
Chuck Lever | aa3d1fa | 2007-05-08 18:23:28 -0400 | [diff] [blame] | 740 | size += sizeof(struct rpc_buffer); |
Chuck Lever | c5a4dd8 | 2007-03-29 16:47:58 -0400 | [diff] [blame] | 741 | if (size <= RPC_BUFFER_MAXSIZE) |
| 742 | buf = mempool_alloc(rpc_buffer_mempool, gfp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 743 | else |
Chuck Lever | c5a4dd8 | 2007-03-29 16:47:58 -0400 | [diff] [blame] | 744 | buf = kmalloc(size, gfp); |
Peter Zijlstra | ddce40d | 2007-05-09 08:30:11 +0200 | [diff] [blame] | 745 | |
| 746 | if (!buf) |
| 747 | return NULL; |
| 748 | |
Chuck Lever | aa3d1fa | 2007-05-08 18:23:28 -0400 | [diff] [blame] | 749 | buf->len = size; |
Geert Uytterhoeven | 215d067 | 2007-05-08 11:37:26 +0200 | [diff] [blame] | 750 | dprintk("RPC: %5u allocated buffer of size %zu at %p\n", |
Chuck Lever | c5a4dd8 | 2007-03-29 16:47:58 -0400 | [diff] [blame] | 751 | task->tk_pid, size, buf); |
Chuck Lever | aa3d1fa | 2007-05-08 18:23:28 -0400 | [diff] [blame] | 752 | return &buf->data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 753 | } |
\"Talpey, Thomas\ | 1244480 | 2007-09-10 13:45:36 -0400 | [diff] [blame] | 754 | EXPORT_SYMBOL_GPL(rpc_malloc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | |
Chuck Lever | 0210714 | 2006-01-03 09:55:49 +0100 | [diff] [blame] | 756 | /** |
| 757 | * rpc_free - free buffer allocated via rpc_malloc |
Chuck Lever | c5a4dd8 | 2007-03-29 16:47:58 -0400 | [diff] [blame] | 758 | * @buffer: buffer to free |
Chuck Lever | 0210714 | 2006-01-03 09:55:49 +0100 | [diff] [blame] | 759 | * |
| 760 | */ |
Chuck Lever | c5a4dd8 | 2007-03-29 16:47:58 -0400 | [diff] [blame] | 761 | void rpc_free(void *buffer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 762 | { |
Chuck Lever | aa3d1fa | 2007-05-08 18:23:28 -0400 | [diff] [blame] | 763 | size_t size; |
| 764 | struct rpc_buffer *buf; |
Chuck Lever | 0210714 | 2006-01-03 09:55:49 +0100 | [diff] [blame] | 765 | |
Chuck Lever | c5a4dd8 | 2007-03-29 16:47:58 -0400 | [diff] [blame] | 766 | if (!buffer) |
| 767 | return; |
Chuck Lever | aa3d1fa | 2007-05-08 18:23:28 -0400 | [diff] [blame] | 768 | |
| 769 | buf = container_of(buffer, struct rpc_buffer, data); |
| 770 | size = buf->len; |
Chuck Lever | c5a4dd8 | 2007-03-29 16:47:58 -0400 | [diff] [blame] | 771 | |
Geert Uytterhoeven | 215d067 | 2007-05-08 11:37:26 +0200 | [diff] [blame] | 772 | dprintk("RPC: freeing buffer of size %zu at %p\n", |
Chuck Lever | c5a4dd8 | 2007-03-29 16:47:58 -0400 | [diff] [blame] | 773 | size, buf); |
Chuck Lever | aa3d1fa | 2007-05-08 18:23:28 -0400 | [diff] [blame] | 774 | |
Chuck Lever | c5a4dd8 | 2007-03-29 16:47:58 -0400 | [diff] [blame] | 775 | if (size <= RPC_BUFFER_MAXSIZE) |
| 776 | mempool_free(buf, rpc_buffer_mempool); |
| 777 | else |
| 778 | kfree(buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | } |
\"Talpey, Thomas\ | 1244480 | 2007-09-10 13:45:36 -0400 | [diff] [blame] | 780 | EXPORT_SYMBOL_GPL(rpc_free); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | |
| 782 | /* |
| 783 | * Creation and deletion of RPC task structures |
| 784 | */ |
Trond Myklebust | 47fe064 | 2007-10-25 18:42:55 -0400 | [diff] [blame] | 785 | static void rpc_init_task(struct rpc_task *task, const struct rpc_task_setup *task_setup_data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | { |
| 787 | memset(task, 0, sizeof(*task)); |
Trond Myklebust | 44c2887 | 2006-01-03 09:55:06 +0100 | [diff] [blame] | 788 | atomic_set(&task->tk_count, 1); |
Trond Myklebust | 84115e1 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 789 | task->tk_flags = task_setup_data->flags; |
| 790 | task->tk_ops = task_setup_data->callback_ops; |
| 791 | task->tk_calldata = task_setup_data->callback_data; |
Trond Myklebust | 6529eba | 2007-06-14 16:40:14 -0400 | [diff] [blame] | 792 | INIT_LIST_HEAD(&task->tk_task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | |
| 794 | /* Initialize retry counters */ |
| 795 | task->tk_garb_retry = 2; |
| 796 | task->tk_cred_retry = 2; |
| 797 | |
Trond Myklebust | 3ff7576 | 2007-07-14 15:40:00 -0400 | [diff] [blame] | 798 | task->tk_priority = task_setup_data->priority - RPC_PRIORITY_LOW; |
| 799 | task->tk_owner = current->tgid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | |
| 801 | /* Initialize workqueue for async tasks */ |
Trond Myklebust | 32bfb5c | 2008-02-19 20:04:21 -0500 | [diff] [blame] | 802 | task->tk_workqueue = task_setup_data->workqueue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 803 | |
Trond Myklebust | 84115e1 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 804 | task->tk_client = task_setup_data->rpc_client; |
| 805 | if (task->tk_client != NULL) { |
| 806 | kref_get(&task->tk_client->cl_kref); |
| 807 | if (task->tk_client->cl_softrtry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | task->tk_flags |= RPC_TASK_SOFT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | } |
| 810 | |
Trond Myklebust | 84115e1 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 811 | if (task->tk_ops->rpc_call_prepare != NULL) |
| 812 | task->tk_action = rpc_prepare_task; |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 813 | |
Trond Myklebust | b3ef8b3 | 2007-10-25 18:32:34 -0400 | [diff] [blame] | 814 | if (task_setup_data->rpc_message != NULL) { |
Trond Myklebust | 4ccda2c | 2008-03-12 16:20:55 -0400 | [diff] [blame] | 815 | task->tk_msg.rpc_proc = task_setup_data->rpc_message->rpc_proc; |
| 816 | task->tk_msg.rpc_argp = task_setup_data->rpc_message->rpc_argp; |
| 817 | task->tk_msg.rpc_resp = task_setup_data->rpc_message->rpc_resp; |
Trond Myklebust | b3ef8b3 | 2007-10-25 18:32:34 -0400 | [diff] [blame] | 818 | /* Bind the user cred */ |
Trond Myklebust | 4ccda2c | 2008-03-12 16:20:55 -0400 | [diff] [blame] | 819 | rpcauth_bindcred(task, task_setup_data->rpc_message->rpc_cred, task_setup_data->flags); |
Trond Myklebust | b3ef8b3 | 2007-10-25 18:32:34 -0400 | [diff] [blame] | 820 | if (task->tk_action == NULL) |
| 821 | rpc_call_start(task); |
| 822 | } |
| 823 | |
Chuck Lever | ef759a2 | 2006-03-20 13:44:17 -0500 | [diff] [blame] | 824 | /* starting timestamp */ |
| 825 | task->tk_start = jiffies; |
| 826 | |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 827 | dprintk("RPC: new task initialized, procpid %u\n", |
Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 828 | task_pid_nr(current)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | } |
| 830 | |
| 831 | static struct rpc_task * |
| 832 | rpc_alloc_task(void) |
| 833 | { |
| 834 | return (struct rpc_task *)mempool_alloc(rpc_task_mempool, GFP_NOFS); |
| 835 | } |
| 836 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | /* |
Trond Myklebust | 90c5755 | 2007-06-09 19:49:36 -0400 | [diff] [blame] | 838 | * Create a new task for the specified client. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 | */ |
Trond Myklebust | 84115e1 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 840 | struct rpc_task *rpc_new_task(const struct rpc_task_setup *setup_data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | { |
Trond Myklebust | e8f5d77 | 2007-10-25 18:42:53 -0400 | [diff] [blame] | 842 | struct rpc_task *task = setup_data->task; |
| 843 | unsigned short flags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 844 | |
Trond Myklebust | e8f5d77 | 2007-10-25 18:42:53 -0400 | [diff] [blame] | 845 | if (task == NULL) { |
| 846 | task = rpc_alloc_task(); |
| 847 | if (task == NULL) |
| 848 | goto out; |
| 849 | flags = RPC_TASK_DYNAMIC; |
| 850 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | |
Trond Myklebust | 84115e1 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 852 | rpc_init_task(task, setup_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | |
Trond Myklebust | e8f5d77 | 2007-10-25 18:42:53 -0400 | [diff] [blame] | 854 | task->tk_flags |= flags; |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 855 | dprintk("RPC: allocated task %p\n", task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 856 | out: |
| 857 | return task; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | } |
| 859 | |
Trond Myklebust | 32bfb5c | 2008-02-19 20:04:21 -0500 | [diff] [blame] | 860 | static void rpc_free_task(struct rpc_task *task) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 861 | { |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 862 | const struct rpc_call_ops *tk_ops = task->tk_ops; |
| 863 | void *calldata = task->tk_calldata; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 864 | |
Trond Myklebust | 5e4424a | 2008-02-25 21:53:49 -0800 | [diff] [blame] | 865 | if (task->tk_flags & RPC_TASK_DYNAMIC) { |
| 866 | dprintk("RPC: %5u freeing task\n", task->tk_pid); |
| 867 | mempool_free(task, rpc_task_mempool); |
| 868 | } |
Trond Myklebust | 32bfb5c | 2008-02-19 20:04:21 -0500 | [diff] [blame] | 869 | rpc_release_calldata(tk_ops, calldata); |
| 870 | } |
| 871 | |
| 872 | static void rpc_async_release(struct work_struct *work) |
| 873 | { |
| 874 | rpc_free_task(container_of(work, struct rpc_task, u.tk_work)); |
| 875 | } |
| 876 | |
| 877 | void rpc_put_task(struct rpc_task *task) |
| 878 | { |
Trond Myklebust | e6b3c4d | 2006-11-11 22:18:03 -0500 | [diff] [blame] | 879 | if (!atomic_dec_and_test(&task->tk_count)) |
| 880 | return; |
| 881 | /* Release resources */ |
| 882 | if (task->tk_rqstp) |
| 883 | xprt_release(task); |
| 884 | if (task->tk_msg.rpc_cred) |
| 885 | rpcauth_unbindcred(task); |
| 886 | if (task->tk_client) { |
| 887 | rpc_release_client(task->tk_client); |
| 888 | task->tk_client = NULL; |
| 889 | } |
Trond Myklebust | 32bfb5c | 2008-02-19 20:04:21 -0500 | [diff] [blame] | 890 | if (task->tk_workqueue != NULL) { |
| 891 | INIT_WORK(&task->u.tk_work, rpc_async_release); |
| 892 | queue_work(task->tk_workqueue, &task->u.tk_work); |
| 893 | } else |
| 894 | rpc_free_task(task); |
Trond Myklebust | e6b3c4d | 2006-11-11 22:18:03 -0500 | [diff] [blame] | 895 | } |
Trond Myklebust | e8914c6 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 896 | EXPORT_SYMBOL_GPL(rpc_put_task); |
Trond Myklebust | e6b3c4d | 2006-11-11 22:18:03 -0500 | [diff] [blame] | 897 | |
Trond Myklebust | bde8f00 | 2007-01-24 11:54:53 -0800 | [diff] [blame] | 898 | static void rpc_release_task(struct rpc_task *task) |
Trond Myklebust | e6b3c4d | 2006-11-11 22:18:03 -0500 | [diff] [blame] | 899 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 900 | #ifdef RPC_DEBUG |
| 901 | BUG_ON(task->tk_magic != RPC_TASK_MAGIC_ID); |
| 902 | #endif |
Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 903 | dprintk("RPC: %5u release task\n", task->tk_pid); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 | |
Trond Myklebust | 6529eba | 2007-06-14 16:40:14 -0400 | [diff] [blame] | 905 | if (!list_empty(&task->tk_task)) { |
Trond Myklebust | 4bef61f | 2007-06-16 14:17:01 -0400 | [diff] [blame] | 906 | struct rpc_clnt *clnt = task->tk_client; |
Trond Myklebust | 6529eba | 2007-06-14 16:40:14 -0400 | [diff] [blame] | 907 | /* Remove from client task list */ |
Trond Myklebust | 4bef61f | 2007-06-16 14:17:01 -0400 | [diff] [blame] | 908 | spin_lock(&clnt->cl_lock); |
Trond Myklebust | 6529eba | 2007-06-14 16:40:14 -0400 | [diff] [blame] | 909 | list_del(&task->tk_task); |
Trond Myklebust | 4bef61f | 2007-06-16 14:17:01 -0400 | [diff] [blame] | 910 | spin_unlock(&clnt->cl_lock); |
Trond Myklebust | 6529eba | 2007-06-14 16:40:14 -0400 | [diff] [blame] | 911 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 912 | BUG_ON (RPC_IS_QUEUED(task)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 913 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | #ifdef RPC_DEBUG |
| 915 | task->tk_magic = 0; |
| 916 | #endif |
Trond Myklebust | e6b3c4d | 2006-11-11 22:18:03 -0500 | [diff] [blame] | 917 | /* Wake up anyone who is waiting for task completion */ |
| 918 | rpc_mark_complete_task(task); |
| 919 | |
| 920 | rpc_put_task(task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 921 | } |
| 922 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 923 | /* |
| 924 | * Kill all tasks for the given client. |
| 925 | * XXX: kill their descendants as well? |
| 926 | */ |
Trond Myklebust | 4bef61f | 2007-06-16 14:17:01 -0400 | [diff] [blame] | 927 | void rpc_killall_tasks(struct rpc_clnt *clnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | { |
| 929 | struct rpc_task *rovr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | |
Trond Myklebust | 4bef61f | 2007-06-16 14:17:01 -0400 | [diff] [blame] | 932 | if (list_empty(&clnt->cl_tasks)) |
| 933 | return; |
| 934 | dprintk("RPC: killing all tasks for client %p\n", clnt); |
| 935 | /* |
| 936 | * Spin lock all_tasks to prevent changes... |
| 937 | */ |
| 938 | spin_lock(&clnt->cl_lock); |
| 939 | list_for_each_entry(rovr, &clnt->cl_tasks, tk_task) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | if (! RPC_IS_ACTIVATED(rovr)) |
| 941 | continue; |
Trond Myklebust | 6529eba | 2007-06-14 16:40:14 -0400 | [diff] [blame] | 942 | if (!(rovr->tk_flags & RPC_TASK_KILLED)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 943 | rovr->tk_flags |= RPC_TASK_KILLED; |
| 944 | rpc_exit(rovr, -EIO); |
| 945 | rpc_wake_up_task(rovr); |
| 946 | } |
| 947 | } |
Trond Myklebust | 4bef61f | 2007-06-16 14:17:01 -0400 | [diff] [blame] | 948 | spin_unlock(&clnt->cl_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 949 | } |
Trond Myklebust | e8914c6 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 950 | EXPORT_SYMBOL_GPL(rpc_killall_tasks); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | |
Trond Myklebust | b247bbf | 2007-07-19 16:32:20 -0400 | [diff] [blame] | 952 | int rpciod_up(void) |
| 953 | { |
| 954 | return try_module_get(THIS_MODULE) ? 0 : -EINVAL; |
| 955 | } |
| 956 | |
| 957 | void rpciod_down(void) |
| 958 | { |
| 959 | module_put(THIS_MODULE); |
| 960 | } |
| 961 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 962 | /* |
Trond Myklebust | b247bbf | 2007-07-19 16:32:20 -0400 | [diff] [blame] | 963 | * Start up the rpciod workqueue. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 964 | */ |
Trond Myklebust | b247bbf | 2007-07-19 16:32:20 -0400 | [diff] [blame] | 965 | static int rpciod_start(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | { |
| 967 | struct workqueue_struct *wq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | /* |
| 970 | * Create the rpciod thread and wait for it to start. |
| 971 | */ |
Trond Myklebust | ab418d7 | 2007-06-14 17:08:36 -0400 | [diff] [blame] | 972 | dprintk("RPC: creating workqueue rpciod\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | wq = create_workqueue("rpciod"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 974 | rpciod_workqueue = wq; |
Trond Myklebust | b247bbf | 2007-07-19 16:32:20 -0400 | [diff] [blame] | 975 | return rpciod_workqueue != NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 976 | } |
| 977 | |
Trond Myklebust | b247bbf | 2007-07-19 16:32:20 -0400 | [diff] [blame] | 978 | static void rpciod_stop(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | { |
Trond Myklebust | b247bbf | 2007-07-19 16:32:20 -0400 | [diff] [blame] | 980 | struct workqueue_struct *wq = NULL; |
Trond Myklebust | ab418d7 | 2007-06-14 17:08:36 -0400 | [diff] [blame] | 981 | |
Trond Myklebust | b247bbf | 2007-07-19 16:32:20 -0400 | [diff] [blame] | 982 | if (rpciod_workqueue == NULL) |
| 983 | return; |
Trond Myklebust | ab418d7 | 2007-06-14 17:08:36 -0400 | [diff] [blame] | 984 | dprintk("RPC: destroying workqueue rpciod\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 985 | |
Trond Myklebust | b247bbf | 2007-07-19 16:32:20 -0400 | [diff] [blame] | 986 | wq = rpciod_workqueue; |
| 987 | rpciod_workqueue = NULL; |
| 988 | destroy_workqueue(wq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | } |
| 990 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 991 | void |
| 992 | rpc_destroy_mempool(void) |
| 993 | { |
Trond Myklebust | b247bbf | 2007-07-19 16:32:20 -0400 | [diff] [blame] | 994 | rpciod_stop(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 995 | if (rpc_buffer_mempool) |
| 996 | mempool_destroy(rpc_buffer_mempool); |
| 997 | if (rpc_task_mempool) |
| 998 | mempool_destroy(rpc_task_mempool); |
Alexey Dobriyan | 1a1d92c | 2006-09-27 01:49:40 -0700 | [diff] [blame] | 999 | if (rpc_task_slabp) |
| 1000 | kmem_cache_destroy(rpc_task_slabp); |
| 1001 | if (rpc_buffer_slabp) |
| 1002 | kmem_cache_destroy(rpc_buffer_slabp); |
Trond Myklebust | f6a1cc8 | 2008-02-22 17:06:55 -0500 | [diff] [blame] | 1003 | rpc_destroy_wait_queue(&delay_queue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1004 | } |
| 1005 | |
| 1006 | int |
| 1007 | rpc_init_mempool(void) |
| 1008 | { |
Trond Myklebust | f6a1cc8 | 2008-02-22 17:06:55 -0500 | [diff] [blame] | 1009 | /* |
| 1010 | * The following is not strictly a mempool initialisation, |
| 1011 | * but there is no harm in doing it here |
| 1012 | */ |
| 1013 | rpc_init_wait_queue(&delay_queue, "delayq"); |
| 1014 | if (!rpciod_start()) |
| 1015 | goto err_nomem; |
| 1016 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | rpc_task_slabp = kmem_cache_create("rpc_tasks", |
| 1018 | sizeof(struct rpc_task), |
| 1019 | 0, SLAB_HWCACHE_ALIGN, |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 1020 | NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1021 | if (!rpc_task_slabp) |
| 1022 | goto err_nomem; |
| 1023 | rpc_buffer_slabp = kmem_cache_create("rpc_buffers", |
| 1024 | RPC_BUFFER_MAXSIZE, |
| 1025 | 0, SLAB_HWCACHE_ALIGN, |
Paul Mundt | 20c2df8 | 2007-07-20 10:11:58 +0900 | [diff] [blame] | 1026 | NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1027 | if (!rpc_buffer_slabp) |
| 1028 | goto err_nomem; |
Matthew Dobson | 93d2341 | 2006-03-26 01:37:50 -0800 | [diff] [blame] | 1029 | rpc_task_mempool = mempool_create_slab_pool(RPC_TASK_POOLSIZE, |
| 1030 | rpc_task_slabp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1031 | if (!rpc_task_mempool) |
| 1032 | goto err_nomem; |
Matthew Dobson | 93d2341 | 2006-03-26 01:37:50 -0800 | [diff] [blame] | 1033 | rpc_buffer_mempool = mempool_create_slab_pool(RPC_BUFFER_POOLSIZE, |
| 1034 | rpc_buffer_slabp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1035 | if (!rpc_buffer_mempool) |
| 1036 | goto err_nomem; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1037 | return 0; |
| 1038 | err_nomem: |
| 1039 | rpc_destroy_mempool(); |
| 1040 | return -ENOMEM; |
| 1041 | } |