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