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