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