Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Functions related to io context handling |
| 3 | */ |
| 4 | #include <linux/kernel.h> |
| 5 | #include <linux/module.h> |
| 6 | #include <linux/init.h> |
| 7 | #include <linux/bio.h> |
| 8 | #include <linux/blkdev.h> |
| 9 | #include <linux/bootmem.h> /* for max_pfn/max_low_pfn */ |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 10 | #include <linux/slab.h> |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 11 | |
| 12 | #include "blk.h" |
| 13 | |
| 14 | /* |
| 15 | * For io context allocations |
| 16 | */ |
| 17 | static struct kmem_cache *iocontext_cachep; |
| 18 | |
Tejun Heo | 6e736be | 2011-12-14 00:33:38 +0100 | [diff] [blame] | 19 | /** |
| 20 | * get_io_context - increment reference count to io_context |
| 21 | * @ioc: io_context to get |
| 22 | * |
| 23 | * Increment reference count to @ioc. |
| 24 | */ |
| 25 | void get_io_context(struct io_context *ioc) |
| 26 | { |
| 27 | BUG_ON(atomic_long_read(&ioc->refcount) <= 0); |
| 28 | atomic_long_inc(&ioc->refcount); |
| 29 | } |
| 30 | EXPORT_SYMBOL(get_io_context); |
| 31 | |
Tejun Heo | 7e5a879 | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 32 | static void icq_free_icq_rcu(struct rcu_head *head) |
| 33 | { |
| 34 | struct io_cq *icq = container_of(head, struct io_cq, __rcu_head); |
| 35 | |
| 36 | kmem_cache_free(icq->__rcu_icq_cache, icq); |
| 37 | } |
| 38 | |
Tejun Heo | 621032a | 2012-02-15 09:45:53 +0100 | [diff] [blame] | 39 | /* Exit an icq. Called with both ioc and q locked. */ |
Tejun Heo | 7e5a879 | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 40 | static void ioc_exit_icq(struct io_cq *icq) |
| 41 | { |
Tejun Heo | 621032a | 2012-02-15 09:45:53 +0100 | [diff] [blame] | 42 | struct elevator_type *et = icq->q->elevator->type; |
| 43 | |
| 44 | if (icq->flags & ICQ_EXITED) |
| 45 | return; |
| 46 | |
| 47 | if (et->ops.elevator_exit_icq_fn) |
| 48 | et->ops.elevator_exit_icq_fn(icq); |
| 49 | |
| 50 | icq->flags |= ICQ_EXITED; |
| 51 | } |
| 52 | |
| 53 | /* Release an icq. Called with both ioc and q locked. */ |
| 54 | static void ioc_destroy_icq(struct io_cq *icq) |
| 55 | { |
Tejun Heo | 7e5a879 | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 56 | struct io_context *ioc = icq->ioc; |
| 57 | struct request_queue *q = icq->q; |
| 58 | struct elevator_type *et = q->elevator->type; |
| 59 | |
| 60 | lockdep_assert_held(&ioc->lock); |
| 61 | lockdep_assert_held(q->queue_lock); |
| 62 | |
| 63 | radix_tree_delete(&ioc->icq_tree, icq->q->id); |
| 64 | hlist_del_init(&icq->ioc_node); |
| 65 | list_del_init(&icq->q_node); |
| 66 | |
| 67 | /* |
| 68 | * Both setting lookup hint to and clearing it from @icq are done |
| 69 | * under queue_lock. If it's not pointing to @icq now, it never |
| 70 | * will. Hint assignment itself can race safely. |
| 71 | */ |
| 72 | if (rcu_dereference_raw(ioc->icq_hint) == icq) |
| 73 | rcu_assign_pointer(ioc->icq_hint, NULL); |
| 74 | |
Tejun Heo | 621032a | 2012-02-15 09:45:53 +0100 | [diff] [blame] | 75 | ioc_exit_icq(icq); |
Tejun Heo | 7e5a879 | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 76 | |
| 77 | /* |
| 78 | * @icq->q might have gone away by the time RCU callback runs |
| 79 | * making it impossible to determine icq_cache. Record it in @icq. |
| 80 | */ |
| 81 | icq->__rcu_icq_cache = et->icq_cache; |
| 82 | call_rcu(&icq->__rcu_head, icq_free_icq_rcu); |
| 83 | } |
| 84 | |
Tejun Heo | b2efa05 | 2011-12-14 00:33:39 +0100 | [diff] [blame] | 85 | /* |
| 86 | * Slow path for ioc release in put_io_context(). Performs double-lock |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 87 | * dancing to unlink all icq's and then frees ioc. |
Tejun Heo | b2efa05 | 2011-12-14 00:33:39 +0100 | [diff] [blame] | 88 | */ |
| 89 | static void ioc_release_fn(struct work_struct *work) |
| 90 | { |
| 91 | struct io_context *ioc = container_of(work, struct io_context, |
| 92 | release_work); |
Tejun Heo | d8c66c5 | 2012-02-11 12:37:25 +0100 | [diff] [blame] | 93 | unsigned long flags; |
Tejun Heo | b2efa05 | 2011-12-14 00:33:39 +0100 | [diff] [blame] | 94 | |
Tejun Heo | d8c66c5 | 2012-02-11 12:37:25 +0100 | [diff] [blame] | 95 | /* |
| 96 | * Exiting icq may call into put_io_context() through elevator |
| 97 | * which will trigger lockdep warning. The ioc's are guaranteed to |
| 98 | * be different, use a different locking subclass here. Use |
| 99 | * irqsave variant as there's no spin_lock_irq_nested(). |
| 100 | */ |
| 101 | spin_lock_irqsave_nested(&ioc->lock, flags, 1); |
Tejun Heo | b2efa05 | 2011-12-14 00:33:39 +0100 | [diff] [blame] | 102 | |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 103 | while (!hlist_empty(&ioc->icq_list)) { |
| 104 | struct io_cq *icq = hlist_entry(ioc->icq_list.first, |
| 105 | struct io_cq, ioc_node); |
Tejun Heo | 2274b02 | 2012-02-15 09:45:52 +0100 | [diff] [blame] | 106 | struct request_queue *q = icq->q; |
Tejun Heo | b2efa05 | 2011-12-14 00:33:39 +0100 | [diff] [blame] | 107 | |
Tejun Heo | 2274b02 | 2012-02-15 09:45:52 +0100 | [diff] [blame] | 108 | if (spin_trylock(q->queue_lock)) { |
Tejun Heo | 621032a | 2012-02-15 09:45:53 +0100 | [diff] [blame] | 109 | ioc_destroy_icq(icq); |
Tejun Heo | 2274b02 | 2012-02-15 09:45:52 +0100 | [diff] [blame] | 110 | spin_unlock(q->queue_lock); |
| 111 | } else { |
| 112 | spin_unlock_irqrestore(&ioc->lock, flags); |
| 113 | cpu_relax(); |
| 114 | spin_lock_irqsave_nested(&ioc->lock, flags, 1); |
Tejun Heo | b2efa05 | 2011-12-14 00:33:39 +0100 | [diff] [blame] | 115 | } |
Jens Axboe | ffc4e75 | 2008-02-19 10:02:29 +0100 | [diff] [blame] | 116 | } |
Tejun Heo | b2efa05 | 2011-12-14 00:33:39 +0100 | [diff] [blame] | 117 | |
Tejun Heo | 2274b02 | 2012-02-15 09:45:52 +0100 | [diff] [blame] | 118 | spin_unlock_irqrestore(&ioc->lock, flags); |
Tejun Heo | b2efa05 | 2011-12-14 00:33:39 +0100 | [diff] [blame] | 119 | |
| 120 | kmem_cache_free(iocontext_cachep, ioc); |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 121 | } |
| 122 | |
Tejun Heo | 42ec57a | 2011-12-14 00:33:37 +0100 | [diff] [blame] | 123 | /** |
| 124 | * put_io_context - put a reference of io_context |
| 125 | * @ioc: io_context to put |
| 126 | * |
| 127 | * Decrement reference count of @ioc and release it if the count reaches |
Tejun Heo | 11a3122 | 2012-02-07 07:51:30 +0100 | [diff] [blame] | 128 | * zero. |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 129 | */ |
Tejun Heo | 11a3122 | 2012-02-07 07:51:30 +0100 | [diff] [blame] | 130 | void put_io_context(struct io_context *ioc) |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 131 | { |
Tejun Heo | b2efa05 | 2011-12-14 00:33:39 +0100 | [diff] [blame] | 132 | unsigned long flags; |
Xiaotian Feng | ff8c147 | 2012-03-14 15:34:48 +0100 | [diff] [blame] | 133 | bool free_ioc = false; |
Tejun Heo | b2efa05 | 2011-12-14 00:33:39 +0100 | [diff] [blame] | 134 | |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 135 | if (ioc == NULL) |
Tejun Heo | 42ec57a | 2011-12-14 00:33:37 +0100 | [diff] [blame] | 136 | return; |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 137 | |
Tejun Heo | 42ec57a | 2011-12-14 00:33:37 +0100 | [diff] [blame] | 138 | BUG_ON(atomic_long_read(&ioc->refcount) <= 0); |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 139 | |
Tejun Heo | b2efa05 | 2011-12-14 00:33:39 +0100 | [diff] [blame] | 140 | /* |
Tejun Heo | 11a3122 | 2012-02-07 07:51:30 +0100 | [diff] [blame] | 141 | * Releasing ioc requires reverse order double locking and we may |
| 142 | * already be holding a queue_lock. Do it asynchronously from wq. |
Tejun Heo | b2efa05 | 2011-12-14 00:33:39 +0100 | [diff] [blame] | 143 | */ |
Tejun Heo | 11a3122 | 2012-02-07 07:51:30 +0100 | [diff] [blame] | 144 | if (atomic_long_dec_and_test(&ioc->refcount)) { |
| 145 | spin_lock_irqsave(&ioc->lock, flags); |
| 146 | if (!hlist_empty(&ioc->icq_list)) |
| 147 | schedule_work(&ioc->release_work); |
Xiaotian Feng | ff8c147 | 2012-03-14 15:34:48 +0100 | [diff] [blame] | 148 | else |
| 149 | free_ioc = true; |
Tejun Heo | 11a3122 | 2012-02-07 07:51:30 +0100 | [diff] [blame] | 150 | spin_unlock_irqrestore(&ioc->lock, flags); |
Tejun Heo | b2efa05 | 2011-12-14 00:33:39 +0100 | [diff] [blame] | 151 | } |
Xiaotian Feng | ff8c147 | 2012-03-14 15:34:48 +0100 | [diff] [blame] | 152 | |
| 153 | if (free_ioc) |
| 154 | kmem_cache_free(iocontext_cachep, ioc); |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 155 | } |
| 156 | EXPORT_SYMBOL(put_io_context); |
| 157 | |
Bart Van Assche | 27667c9 | 2010-12-21 15:07:45 +0100 | [diff] [blame] | 158 | /* Called by the exiting task */ |
Louis Rilling | b69f229 | 2009-12-04 14:52:42 +0100 | [diff] [blame] | 159 | void exit_io_context(struct task_struct *task) |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 160 | { |
| 161 | struct io_context *ioc; |
Tejun Heo | 621032a | 2012-02-15 09:45:53 +0100 | [diff] [blame] | 162 | struct io_cq *icq; |
| 163 | struct hlist_node *n; |
| 164 | unsigned long flags; |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 165 | |
Louis Rilling | b69f229 | 2009-12-04 14:52:42 +0100 | [diff] [blame] | 166 | task_lock(task); |
| 167 | ioc = task->io_context; |
| 168 | task->io_context = NULL; |
| 169 | task_unlock(task); |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 170 | |
Tejun Heo | 621032a | 2012-02-15 09:45:53 +0100 | [diff] [blame] | 171 | if (!atomic_dec_and_test(&ioc->nr_tasks)) { |
| 172 | put_io_context(ioc); |
| 173 | return; |
| 174 | } |
| 175 | |
| 176 | /* |
| 177 | * Need ioc lock to walk icq_list and q lock to exit icq. Perform |
| 178 | * reverse double locking. Read comment in ioc_release_fn() for |
| 179 | * explanation on the nested locking annotation. |
| 180 | */ |
| 181 | retry: |
| 182 | spin_lock_irqsave_nested(&ioc->lock, flags, 1); |
| 183 | hlist_for_each_entry(icq, n, &ioc->icq_list, ioc_node) { |
| 184 | if (icq->flags & ICQ_EXITED) |
| 185 | continue; |
| 186 | if (spin_trylock(icq->q->queue_lock)) { |
| 187 | ioc_exit_icq(icq); |
| 188 | spin_unlock(icq->q->queue_lock); |
| 189 | } else { |
| 190 | spin_unlock_irqrestore(&ioc->lock, flags); |
| 191 | cpu_relax(); |
| 192 | goto retry; |
| 193 | } |
| 194 | } |
| 195 | spin_unlock_irqrestore(&ioc->lock, flags); |
| 196 | |
Tejun Heo | 11a3122 | 2012-02-07 07:51:30 +0100 | [diff] [blame] | 197 | put_io_context(ioc); |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 198 | } |
| 199 | |
Tejun Heo | 7e5a879 | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 200 | /** |
| 201 | * ioc_clear_queue - break any ioc association with the specified queue |
| 202 | * @q: request_queue being cleared |
| 203 | * |
| 204 | * Walk @q->icq_list and exit all io_cq's. Must be called with @q locked. |
| 205 | */ |
| 206 | void ioc_clear_queue(struct request_queue *q) |
| 207 | { |
| 208 | lockdep_assert_held(q->queue_lock); |
| 209 | |
| 210 | while (!list_empty(&q->icq_list)) { |
| 211 | struct io_cq *icq = list_entry(q->icq_list.next, |
| 212 | struct io_cq, q_node); |
| 213 | struct io_context *ioc = icq->ioc; |
| 214 | |
| 215 | spin_lock(&ioc->lock); |
Tejun Heo | 621032a | 2012-02-15 09:45:53 +0100 | [diff] [blame] | 216 | ioc_destroy_icq(icq); |
Tejun Heo | 7e5a879 | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 217 | spin_unlock(&ioc->lock); |
| 218 | } |
| 219 | } |
| 220 | |
Tejun Heo | f2dbd76 | 2011-12-14 00:33:40 +0100 | [diff] [blame] | 221 | void create_io_context_slowpath(struct task_struct *task, gfp_t gfp_flags, |
| 222 | int node) |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 223 | { |
Paul Bolle | df41565 | 2011-06-06 05:11:34 +0200 | [diff] [blame] | 224 | struct io_context *ioc; |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 225 | |
Tejun Heo | 42ec57a | 2011-12-14 00:33:37 +0100 | [diff] [blame] | 226 | ioc = kmem_cache_alloc_node(iocontext_cachep, gfp_flags | __GFP_ZERO, |
| 227 | node); |
| 228 | if (unlikely(!ioc)) |
Tejun Heo | f2dbd76 | 2011-12-14 00:33:40 +0100 | [diff] [blame] | 229 | return; |
Tejun Heo | 42ec57a | 2011-12-14 00:33:37 +0100 | [diff] [blame] | 230 | |
| 231 | /* initialize */ |
| 232 | atomic_long_set(&ioc->refcount, 1); |
| 233 | atomic_set(&ioc->nr_tasks, 1); |
| 234 | spin_lock_init(&ioc->lock); |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 235 | INIT_RADIX_TREE(&ioc->icq_tree, GFP_ATOMIC | __GFP_HIGH); |
| 236 | INIT_HLIST_HEAD(&ioc->icq_list); |
Tejun Heo | b2efa05 | 2011-12-14 00:33:39 +0100 | [diff] [blame] | 237 | INIT_WORK(&ioc->release_work, ioc_release_fn); |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 238 | |
Tejun Heo | fd63836 | 2011-12-25 14:29:14 +0100 | [diff] [blame] | 239 | /* |
| 240 | * Try to install. ioc shouldn't be installed if someone else |
| 241 | * already did or @task, which isn't %current, is exiting. Note |
| 242 | * that we need to allow ioc creation on exiting %current as exit |
| 243 | * path may issue IOs from e.g. exit_files(). The exit path is |
| 244 | * responsible for not issuing IO after exit_io_context(). |
| 245 | */ |
Tejun Heo | 6e736be | 2011-12-14 00:33:38 +0100 | [diff] [blame] | 246 | task_lock(task); |
Tejun Heo | fd63836 | 2011-12-25 14:29:14 +0100 | [diff] [blame] | 247 | if (!task->io_context && |
| 248 | (task == current || !(task->flags & PF_EXITING))) |
Tejun Heo | 6e736be | 2011-12-14 00:33:38 +0100 | [diff] [blame] | 249 | task->io_context = ioc; |
Tejun Heo | f2dbd76 | 2011-12-14 00:33:40 +0100 | [diff] [blame] | 250 | else |
Tejun Heo | 6e736be | 2011-12-14 00:33:38 +0100 | [diff] [blame] | 251 | kmem_cache_free(iocontext_cachep, ioc); |
Tejun Heo | 6e736be | 2011-12-14 00:33:38 +0100 | [diff] [blame] | 252 | task_unlock(task); |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 253 | } |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 254 | |
Tejun Heo | 6e736be | 2011-12-14 00:33:38 +0100 | [diff] [blame] | 255 | /** |
| 256 | * get_task_io_context - get io_context of a task |
| 257 | * @task: task of interest |
| 258 | * @gfp_flags: allocation flags, used if allocation is necessary |
| 259 | * @node: allocation node, used if allocation is necessary |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 260 | * |
Tejun Heo | 6e736be | 2011-12-14 00:33:38 +0100 | [diff] [blame] | 261 | * Return io_context of @task. If it doesn't exist, it is created with |
| 262 | * @gfp_flags and @node. The returned io_context has its reference count |
| 263 | * incremented. |
| 264 | * |
| 265 | * This function always goes through task_lock() and it's better to use |
Tejun Heo | f2dbd76 | 2011-12-14 00:33:40 +0100 | [diff] [blame] | 266 | * %current->io_context + get_io_context() for %current. |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 267 | */ |
Tejun Heo | 6e736be | 2011-12-14 00:33:38 +0100 | [diff] [blame] | 268 | struct io_context *get_task_io_context(struct task_struct *task, |
| 269 | gfp_t gfp_flags, int node) |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 270 | { |
Tejun Heo | 6e736be | 2011-12-14 00:33:38 +0100 | [diff] [blame] | 271 | struct io_context *ioc; |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 272 | |
Tejun Heo | 6e736be | 2011-12-14 00:33:38 +0100 | [diff] [blame] | 273 | might_sleep_if(gfp_flags & __GFP_WAIT); |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 274 | |
Tejun Heo | f2dbd76 | 2011-12-14 00:33:40 +0100 | [diff] [blame] | 275 | do { |
| 276 | task_lock(task); |
| 277 | ioc = task->io_context; |
| 278 | if (likely(ioc)) { |
| 279 | get_io_context(ioc); |
| 280 | task_unlock(task); |
| 281 | return ioc; |
| 282 | } |
Tejun Heo | 6e736be | 2011-12-14 00:33:38 +0100 | [diff] [blame] | 283 | task_unlock(task); |
Tejun Heo | f2dbd76 | 2011-12-14 00:33:40 +0100 | [diff] [blame] | 284 | } while (create_io_context(task, gfp_flags, node)); |
Tejun Heo | 6e736be | 2011-12-14 00:33:38 +0100 | [diff] [blame] | 285 | |
Tejun Heo | f2dbd76 | 2011-12-14 00:33:40 +0100 | [diff] [blame] | 286 | return NULL; |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 287 | } |
Tejun Heo | 6e736be | 2011-12-14 00:33:38 +0100 | [diff] [blame] | 288 | EXPORT_SYMBOL(get_task_io_context); |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 289 | |
Tejun Heo | 47fdd4c | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 290 | /** |
| 291 | * ioc_lookup_icq - lookup io_cq from ioc |
| 292 | * @ioc: the associated io_context |
| 293 | * @q: the associated request_queue |
| 294 | * |
| 295 | * Look up io_cq associated with @ioc - @q pair from @ioc. Must be called |
| 296 | * with @q->queue_lock held. |
| 297 | */ |
| 298 | struct io_cq *ioc_lookup_icq(struct io_context *ioc, struct request_queue *q) |
| 299 | { |
| 300 | struct io_cq *icq; |
| 301 | |
| 302 | lockdep_assert_held(q->queue_lock); |
| 303 | |
| 304 | /* |
| 305 | * icq's are indexed from @ioc using radix tree and hint pointer, |
| 306 | * both of which are protected with RCU. All removals are done |
| 307 | * holding both q and ioc locks, and we're holding q lock - if we |
| 308 | * find a icq which points to us, it's guaranteed to be valid. |
| 309 | */ |
| 310 | rcu_read_lock(); |
| 311 | icq = rcu_dereference(ioc->icq_hint); |
| 312 | if (icq && icq->q == q) |
| 313 | goto out; |
| 314 | |
| 315 | icq = radix_tree_lookup(&ioc->icq_tree, q->id); |
| 316 | if (icq && icq->q == q) |
| 317 | rcu_assign_pointer(ioc->icq_hint, icq); /* allowed to race */ |
| 318 | else |
| 319 | icq = NULL; |
| 320 | out: |
| 321 | rcu_read_unlock(); |
| 322 | return icq; |
| 323 | } |
| 324 | EXPORT_SYMBOL(ioc_lookup_icq); |
| 325 | |
Tejun Heo | f1f8cc9 | 2011-12-14 00:33:42 +0100 | [diff] [blame] | 326 | /** |
| 327 | * ioc_create_icq - create and link io_cq |
| 328 | * @q: request_queue of interest |
| 329 | * @gfp_mask: allocation mask |
| 330 | * |
| 331 | * Make sure io_cq linking %current->io_context and @q exists. If either |
| 332 | * io_context and/or icq don't exist, they will be created using @gfp_mask. |
| 333 | * |
| 334 | * The caller is responsible for ensuring @ioc won't go away and @q is |
| 335 | * alive and will stay alive until this function returns. |
| 336 | */ |
| 337 | struct io_cq *ioc_create_icq(struct request_queue *q, gfp_t gfp_mask) |
| 338 | { |
| 339 | struct elevator_type *et = q->elevator->type; |
| 340 | struct io_context *ioc; |
| 341 | struct io_cq *icq; |
| 342 | |
| 343 | /* allocate stuff */ |
| 344 | ioc = create_io_context(current, gfp_mask, q->node); |
| 345 | if (!ioc) |
| 346 | return NULL; |
| 347 | |
| 348 | icq = kmem_cache_alloc_node(et->icq_cache, gfp_mask | __GFP_ZERO, |
| 349 | q->node); |
| 350 | if (!icq) |
| 351 | return NULL; |
| 352 | |
| 353 | if (radix_tree_preload(gfp_mask) < 0) { |
| 354 | kmem_cache_free(et->icq_cache, icq); |
| 355 | return NULL; |
| 356 | } |
| 357 | |
| 358 | icq->ioc = ioc; |
| 359 | icq->q = q; |
| 360 | INIT_LIST_HEAD(&icq->q_node); |
| 361 | INIT_HLIST_NODE(&icq->ioc_node); |
| 362 | |
| 363 | /* lock both q and ioc and try to link @icq */ |
| 364 | spin_lock_irq(q->queue_lock); |
| 365 | spin_lock(&ioc->lock); |
| 366 | |
| 367 | if (likely(!radix_tree_insert(&ioc->icq_tree, q->id, icq))) { |
| 368 | hlist_add_head(&icq->ioc_node, &ioc->icq_list); |
| 369 | list_add(&icq->q_node, &q->icq_list); |
| 370 | if (et->ops.elevator_init_icq_fn) |
| 371 | et->ops.elevator_init_icq_fn(icq); |
| 372 | } else { |
| 373 | kmem_cache_free(et->icq_cache, icq); |
| 374 | icq = ioc_lookup_icq(ioc, q); |
| 375 | if (!icq) |
| 376 | printk(KERN_ERR "cfq: icq link failed!\n"); |
| 377 | } |
| 378 | |
| 379 | spin_unlock(&ioc->lock); |
| 380 | spin_unlock_irq(q->queue_lock); |
| 381 | radix_tree_preload_end(); |
| 382 | return icq; |
| 383 | } |
| 384 | |
Tejun Heo | d705ae6 | 2012-02-15 09:45:49 +0100 | [diff] [blame] | 385 | void ioc_set_icq_flags(struct io_context *ioc, unsigned int flags) |
Tejun Heo | dc86900 | 2011-12-14 00:33:38 +0100 | [diff] [blame] | 386 | { |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 387 | struct io_cq *icq; |
Tejun Heo | dc86900 | 2011-12-14 00:33:38 +0100 | [diff] [blame] | 388 | struct hlist_node *n; |
| 389 | |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 390 | hlist_for_each_entry(icq, n, &ioc->icq_list, ioc_node) |
Tejun Heo | d705ae6 | 2012-02-15 09:45:49 +0100 | [diff] [blame] | 391 | icq->flags |= flags; |
Tejun Heo | dc86900 | 2011-12-14 00:33:38 +0100 | [diff] [blame] | 392 | } |
| 393 | |
| 394 | /** |
| 395 | * ioc_ioprio_changed - notify ioprio change |
| 396 | * @ioc: io_context of interest |
| 397 | * @ioprio: new ioprio |
| 398 | * |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 399 | * @ioc's ioprio has changed to @ioprio. Set %ICQ_IOPRIO_CHANGED for all |
| 400 | * icq's. iosched is responsible for checking the bit and applying it on |
Tejun Heo | dc86900 | 2011-12-14 00:33:38 +0100 | [diff] [blame] | 401 | * request issue path. |
| 402 | */ |
| 403 | void ioc_ioprio_changed(struct io_context *ioc, int ioprio) |
| 404 | { |
| 405 | unsigned long flags; |
| 406 | |
| 407 | spin_lock_irqsave(&ioc->lock, flags); |
| 408 | ioc->ioprio = ioprio; |
Tejun Heo | d705ae6 | 2012-02-15 09:45:49 +0100 | [diff] [blame] | 409 | ioc_set_icq_flags(ioc, ICQ_IOPRIO_CHANGED); |
Tejun Heo | dc86900 | 2011-12-14 00:33:38 +0100 | [diff] [blame] | 410 | spin_unlock_irqrestore(&ioc->lock, flags); |
| 411 | } |
| 412 | |
| 413 | /** |
| 414 | * ioc_cgroup_changed - notify cgroup change |
| 415 | * @ioc: io_context of interest |
| 416 | * |
Tejun Heo | c586980 | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 417 | * @ioc's cgroup has changed. Set %ICQ_CGROUP_CHANGED for all icq's. |
Tejun Heo | dc86900 | 2011-12-14 00:33:38 +0100 | [diff] [blame] | 418 | * iosched is responsible for checking the bit and applying it on request |
| 419 | * issue path. |
| 420 | */ |
| 421 | void ioc_cgroup_changed(struct io_context *ioc) |
| 422 | { |
| 423 | unsigned long flags; |
| 424 | |
| 425 | spin_lock_irqsave(&ioc->lock, flags); |
Tejun Heo | d705ae6 | 2012-02-15 09:45:49 +0100 | [diff] [blame] | 426 | ioc_set_icq_flags(ioc, ICQ_CGROUP_CHANGED); |
Tejun Heo | dc86900 | 2011-12-14 00:33:38 +0100 | [diff] [blame] | 427 | spin_unlock_irqrestore(&ioc->lock, flags); |
| 428 | } |
Jens Axboe | 64c4299 | 2011-12-19 10:36:44 +0100 | [diff] [blame] | 429 | EXPORT_SYMBOL(ioc_cgroup_changed); |
Tejun Heo | dc86900 | 2011-12-14 00:33:38 +0100 | [diff] [blame] | 430 | |
Tejun Heo | d705ae6 | 2012-02-15 09:45:49 +0100 | [diff] [blame] | 431 | /** |
| 432 | * icq_get_changed - fetch and clear icq changed mask |
| 433 | * @icq: icq of interest |
| 434 | * |
| 435 | * Fetch and clear ICQ_*_CHANGED bits from @icq. Grabs and releases |
| 436 | * @icq->ioc->lock. |
| 437 | */ |
| 438 | unsigned icq_get_changed(struct io_cq *icq) |
| 439 | { |
| 440 | unsigned int changed = 0; |
| 441 | unsigned long flags; |
| 442 | |
| 443 | if (unlikely(icq->flags & ICQ_CHANGED_MASK)) { |
| 444 | spin_lock_irqsave(&icq->ioc->lock, flags); |
| 445 | changed = icq->flags & ICQ_CHANGED_MASK; |
| 446 | icq->flags &= ~ICQ_CHANGED_MASK; |
| 447 | spin_unlock_irqrestore(&icq->ioc->lock, flags); |
| 448 | } |
| 449 | return changed; |
| 450 | } |
| 451 | EXPORT_SYMBOL(icq_get_changed); |
| 452 | |
Adrian Bunk | 1334159 | 2008-02-18 13:45:53 +0100 | [diff] [blame] | 453 | static int __init blk_ioc_init(void) |
Jens Axboe | 86db1e2 | 2008-01-29 14:53:40 +0100 | [diff] [blame] | 454 | { |
| 455 | iocontext_cachep = kmem_cache_create("blkdev_ioc", |
| 456 | sizeof(struct io_context), 0, SLAB_PANIC, NULL); |
| 457 | return 0; |
| 458 | } |
| 459 | subsys_initcall(blk_ioc_init); |