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