sched/headers: Prepare to move the task_lock()/unlock() APIs to <linux/sched/task.h>
[GitHub/LineageOS/android_kernel_motorola_exynos9610.git] / block / blk-ioc.c
CommitLineData
86db1e29
JA
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>
5a0e3ad6 9#include <linux/slab.h>
f719ff9b 10#include <linux/sched/task.h>
86db1e29
JA
11
12#include "blk.h"
13
14/*
15 * For io context allocations
16 */
17static struct kmem_cache *iocontext_cachep;
18
6e736be7
TH
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 */
25void get_io_context(struct io_context *ioc)
26{
27 BUG_ON(atomic_long_read(&ioc->refcount) <= 0);
28 atomic_long_inc(&ioc->refcount);
29}
30EXPORT_SYMBOL(get_io_context);
31
7e5a8794
TH
32static 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
3d492c2e
OS
39/*
40 * Exit an icq. Called with both ioc and q locked for sq, only ioc locked for
41 * mq.
42 */
7e5a8794 43static void ioc_exit_icq(struct io_cq *icq)
621032ad
TH
44{
45 struct elevator_type *et = icq->q->elevator->type;
46
47 if (icq->flags & ICQ_EXITED)
48 return;
49
bd166ef1
JA
50 if (et->uses_mq && et->ops.mq.exit_icq)
51 et->ops.mq.exit_icq(icq);
52 else if (!et->uses_mq && et->ops.sq.elevator_exit_icq_fn)
c51ca6cf 53 et->ops.sq.elevator_exit_icq_fn(icq);
621032ad
TH
54
55 icq->flags |= ICQ_EXITED;
56}
57
58/* Release an icq. Called with both ioc and q locked. */
59static void ioc_destroy_icq(struct io_cq *icq)
7e5a8794
TH
60{
61 struct io_context *ioc = icq->ioc;
62 struct request_queue *q = icq->q;
63 struct elevator_type *et = q->elevator->type;
64
65 lockdep_assert_held(&ioc->lock);
66 lockdep_assert_held(q->queue_lock);
67
68 radix_tree_delete(&ioc->icq_tree, icq->q->id);
69 hlist_del_init(&icq->ioc_node);
70 list_del_init(&icq->q_node);
71
72 /*
73 * Both setting lookup hint to and clearing it from @icq are done
74 * under queue_lock. If it's not pointing to @icq now, it never
75 * will. Hint assignment itself can race safely.
76 */
ec6c676a 77 if (rcu_access_pointer(ioc->icq_hint) == icq)
7e5a8794
TH
78 rcu_assign_pointer(ioc->icq_hint, NULL);
79
621032ad 80 ioc_exit_icq(icq);
7e5a8794
TH
81
82 /*
83 * @icq->q might have gone away by the time RCU callback runs
84 * making it impossible to determine icq_cache. Record it in @icq.
85 */
86 icq->__rcu_icq_cache = et->icq_cache;
87 call_rcu(&icq->__rcu_head, icq_free_icq_rcu);
88}
89
b2efa052
TH
90/*
91 * Slow path for ioc release in put_io_context(). Performs double-lock
c5869807 92 * dancing to unlink all icq's and then frees ioc.
b2efa052
TH
93 */
94static void ioc_release_fn(struct work_struct *work)
86db1e29 95{
b2efa052
TH
96 struct io_context *ioc = container_of(work, struct io_context,
97 release_work);
d8c66c5d 98 unsigned long flags;
b2efa052 99
d8c66c5d
TH
100 /*
101 * Exiting icq may call into put_io_context() through elevator
102 * which will trigger lockdep warning. The ioc's are guaranteed to
103 * be different, use a different locking subclass here. Use
104 * irqsave variant as there's no spin_lock_irq_nested().
105 */
106 spin_lock_irqsave_nested(&ioc->lock, flags, 1);
b2efa052 107
c5869807
TH
108 while (!hlist_empty(&ioc->icq_list)) {
109 struct io_cq *icq = hlist_entry(ioc->icq_list.first,
110 struct io_cq, ioc_node);
2274b029
TH
111 struct request_queue *q = icq->q;
112
113 if (spin_trylock(q->queue_lock)) {
621032ad 114 ioc_destroy_icq(icq);
2274b029
TH
115 spin_unlock(q->queue_lock);
116 } else {
117 spin_unlock_irqrestore(&ioc->lock, flags);
118 cpu_relax();
119 spin_lock_irqsave_nested(&ioc->lock, flags, 1);
b2efa052 120 }
b2efa052 121 }
ffc4e759 122
2274b029 123 spin_unlock_irqrestore(&ioc->lock, flags);
b2efa052
TH
124
125 kmem_cache_free(iocontext_cachep, ioc);
86db1e29
JA
126}
127
42ec57a8
TH
128/**
129 * put_io_context - put a reference of io_context
130 * @ioc: io_context to put
131 *
132 * Decrement reference count of @ioc and release it if the count reaches
11a3122f 133 * zero.
86db1e29 134 */
11a3122f 135void put_io_context(struct io_context *ioc)
86db1e29 136{
b2efa052 137 unsigned long flags;
ff8c1474 138 bool free_ioc = false;
b2efa052 139
86db1e29 140 if (ioc == NULL)
42ec57a8 141 return;
86db1e29 142
42ec57a8 143 BUG_ON(atomic_long_read(&ioc->refcount) <= 0);
86db1e29 144
b2efa052 145 /*
11a3122f
TH
146 * Releasing ioc requires reverse order double locking and we may
147 * already be holding a queue_lock. Do it asynchronously from wq.
b2efa052 148 */
11a3122f
TH
149 if (atomic_long_dec_and_test(&ioc->refcount)) {
150 spin_lock_irqsave(&ioc->lock, flags);
151 if (!hlist_empty(&ioc->icq_list))
695588f9
VK
152 queue_work(system_power_efficient_wq,
153 &ioc->release_work);
ff8c1474
XF
154 else
155 free_ioc = true;
11a3122f 156 spin_unlock_irqrestore(&ioc->lock, flags);
b2efa052 157 }
ff8c1474
XF
158
159 if (free_ioc)
160 kmem_cache_free(iocontext_cachep, ioc);
86db1e29 161}
b2efa052 162EXPORT_SYMBOL(put_io_context);
86db1e29 163
f6e8d01b
TH
164/**
165 * put_io_context_active - put active reference on ioc
166 * @ioc: ioc of interest
167 *
168 * Undo get_io_context_active(). If active reference reaches zero after
169 * put, @ioc can never issue further IOs and ioscheds are notified.
170 */
171void put_io_context_active(struct io_context *ioc)
86db1e29 172{
3d492c2e 173 struct elevator_type *et;
621032ad 174 unsigned long flags;
f6e8d01b 175 struct io_cq *icq;
86db1e29 176
f6e8d01b 177 if (!atomic_dec_and_test(&ioc->active_ref)) {
621032ad
TH
178 put_io_context(ioc);
179 return;
180 }
181
182 /*
183 * Need ioc lock to walk icq_list and q lock to exit icq. Perform
184 * reverse double locking. Read comment in ioc_release_fn() for
185 * explanation on the nested locking annotation.
186 */
187retry:
188 spin_lock_irqsave_nested(&ioc->lock, flags, 1);
b67bfe0d 189 hlist_for_each_entry(icq, &ioc->icq_list, ioc_node) {
621032ad
TH
190 if (icq->flags & ICQ_EXITED)
191 continue;
3d492c2e
OS
192
193 et = icq->q->elevator->type;
194 if (et->uses_mq) {
621032ad 195 ioc_exit_icq(icq);
621032ad 196 } else {
3d492c2e
OS
197 if (spin_trylock(icq->q->queue_lock)) {
198 ioc_exit_icq(icq);
199 spin_unlock(icq->q->queue_lock);
200 } else {
201 spin_unlock_irqrestore(&ioc->lock, flags);
202 cpu_relax();
203 goto retry;
204 }
621032ad
TH
205 }
206 }
207 spin_unlock_irqrestore(&ioc->lock, flags);
208
11a3122f 209 put_io_context(ioc);
86db1e29
JA
210}
211
f6e8d01b
TH
212/* Called by the exiting task */
213void exit_io_context(struct task_struct *task)
214{
215 struct io_context *ioc;
216
217 task_lock(task);
218 ioc = task->io_context;
219 task->io_context = NULL;
220 task_unlock(task);
221
222 atomic_dec(&ioc->nr_tasks);
223 put_io_context_active(ioc);
224}
225
7e5a8794
TH
226/**
227 * ioc_clear_queue - break any ioc association with the specified queue
228 * @q: request_queue being cleared
229 *
230 * Walk @q->icq_list and exit all io_cq's. Must be called with @q locked.
231 */
232void ioc_clear_queue(struct request_queue *q)
233{
234 lockdep_assert_held(q->queue_lock);
235
236 while (!list_empty(&q->icq_list)) {
237 struct io_cq *icq = list_entry(q->icq_list.next,
238 struct io_cq, q_node);
239 struct io_context *ioc = icq->ioc;
240
241 spin_lock(&ioc->lock);
621032ad 242 ioc_destroy_icq(icq);
7e5a8794
TH
243 spin_unlock(&ioc->lock);
244 }
245}
246
24acfc34 247int create_task_io_context(struct task_struct *task, gfp_t gfp_flags, int node)
86db1e29 248{
df415656 249 struct io_context *ioc;
3c9c708c 250 int ret;
86db1e29 251
42ec57a8
TH
252 ioc = kmem_cache_alloc_node(iocontext_cachep, gfp_flags | __GFP_ZERO,
253 node);
254 if (unlikely(!ioc))
24acfc34 255 return -ENOMEM;
42ec57a8
TH
256
257 /* initialize */
258 atomic_long_set(&ioc->refcount, 1);
4638a83e 259 atomic_set(&ioc->nr_tasks, 1);
f6e8d01b 260 atomic_set(&ioc->active_ref, 1);
42ec57a8 261 spin_lock_init(&ioc->lock);
c5869807
TH
262 INIT_RADIX_TREE(&ioc->icq_tree, GFP_ATOMIC | __GFP_HIGH);
263 INIT_HLIST_HEAD(&ioc->icq_list);
b2efa052 264 INIT_WORK(&ioc->release_work, ioc_release_fn);
86db1e29 265
fd638368
TH
266 /*
267 * Try to install. ioc shouldn't be installed if someone else
268 * already did or @task, which isn't %current, is exiting. Note
269 * that we need to allow ioc creation on exiting %current as exit
270 * path may issue IOs from e.g. exit_files(). The exit path is
271 * responsible for not issuing IO after exit_io_context().
272 */
6e736be7 273 task_lock(task);
fd638368
TH
274 if (!task->io_context &&
275 (task == current || !(task->flags & PF_EXITING)))
6e736be7 276 task->io_context = ioc;
f2dbd76a 277 else
6e736be7 278 kmem_cache_free(iocontext_cachep, ioc);
3c9c708c
ED
279
280 ret = task->io_context ? 0 : -EBUSY;
281
6e736be7 282 task_unlock(task);
24acfc34 283
3c9c708c 284 return ret;
86db1e29 285}
86db1e29 286
6e736be7
TH
287/**
288 * get_task_io_context - get io_context of a task
289 * @task: task of interest
290 * @gfp_flags: allocation flags, used if allocation is necessary
291 * @node: allocation node, used if allocation is necessary
292 *
293 * Return io_context of @task. If it doesn't exist, it is created with
294 * @gfp_flags and @node. The returned io_context has its reference count
295 * incremented.
86db1e29 296 *
6e736be7 297 * This function always goes through task_lock() and it's better to use
f2dbd76a 298 * %current->io_context + get_io_context() for %current.
86db1e29 299 */
6e736be7
TH
300struct io_context *get_task_io_context(struct task_struct *task,
301 gfp_t gfp_flags, int node)
86db1e29 302{
6e736be7 303 struct io_context *ioc;
86db1e29 304
d0164adc 305 might_sleep_if(gfpflags_allow_blocking(gfp_flags));
6e736be7 306
f2dbd76a
TH
307 do {
308 task_lock(task);
309 ioc = task->io_context;
310 if (likely(ioc)) {
311 get_io_context(ioc);
312 task_unlock(task);
313 return ioc;
314 }
6e736be7 315 task_unlock(task);
24acfc34 316 } while (!create_task_io_context(task, gfp_flags, node));
6e736be7 317
f2dbd76a 318 return NULL;
86db1e29 319}
6e736be7 320EXPORT_SYMBOL(get_task_io_context);
86db1e29 321
47fdd4ca
TH
322/**
323 * ioc_lookup_icq - lookup io_cq from ioc
324 * @ioc: the associated io_context
325 * @q: the associated request_queue
326 *
327 * Look up io_cq associated with @ioc - @q pair from @ioc. Must be called
328 * with @q->queue_lock held.
329 */
330struct io_cq *ioc_lookup_icq(struct io_context *ioc, struct request_queue *q)
331{
332 struct io_cq *icq;
333
334 lockdep_assert_held(q->queue_lock);
335
336 /*
337 * icq's are indexed from @ioc using radix tree and hint pointer,
338 * both of which are protected with RCU. All removals are done
339 * holding both q and ioc locks, and we're holding q lock - if we
340 * find a icq which points to us, it's guaranteed to be valid.
341 */
342 rcu_read_lock();
343 icq = rcu_dereference(ioc->icq_hint);
344 if (icq && icq->q == q)
345 goto out;
346
347 icq = radix_tree_lookup(&ioc->icq_tree, q->id);
348 if (icq && icq->q == q)
349 rcu_assign_pointer(ioc->icq_hint, icq); /* allowed to race */
350 else
351 icq = NULL;
352out:
353 rcu_read_unlock();
354 return icq;
355}
356EXPORT_SYMBOL(ioc_lookup_icq);
357
f1f8cc94
TH
358/**
359 * ioc_create_icq - create and link io_cq
24acfc34 360 * @ioc: io_context of interest
f1f8cc94
TH
361 * @q: request_queue of interest
362 * @gfp_mask: allocation mask
363 *
24acfc34
TH
364 * Make sure io_cq linking @ioc and @q exists. If icq doesn't exist, they
365 * will be created using @gfp_mask.
f1f8cc94
TH
366 *
367 * The caller is responsible for ensuring @ioc won't go away and @q is
368 * alive and will stay alive until this function returns.
369 */
24acfc34
TH
370struct io_cq *ioc_create_icq(struct io_context *ioc, struct request_queue *q,
371 gfp_t gfp_mask)
f1f8cc94
TH
372{
373 struct elevator_type *et = q->elevator->type;
f1f8cc94
TH
374 struct io_cq *icq;
375
376 /* allocate stuff */
f1f8cc94
TH
377 icq = kmem_cache_alloc_node(et->icq_cache, gfp_mask | __GFP_ZERO,
378 q->node);
379 if (!icq)
380 return NULL;
381
5e4c0d97 382 if (radix_tree_maybe_preload(gfp_mask) < 0) {
f1f8cc94
TH
383 kmem_cache_free(et->icq_cache, icq);
384 return NULL;
385 }
386
387 icq->ioc = ioc;
388 icq->q = q;
389 INIT_LIST_HEAD(&icq->q_node);
390 INIT_HLIST_NODE(&icq->ioc_node);
391
392 /* lock both q and ioc and try to link @icq */
393 spin_lock_irq(q->queue_lock);
394 spin_lock(&ioc->lock);
395
396 if (likely(!radix_tree_insert(&ioc->icq_tree, q->id, icq))) {
397 hlist_add_head(&icq->ioc_node, &ioc->icq_list);
398 list_add(&icq->q_node, &q->icq_list);
bd166ef1
JA
399 if (et->uses_mq && et->ops.mq.init_icq)
400 et->ops.mq.init_icq(icq);
401 else if (!et->uses_mq && et->ops.sq.elevator_init_icq_fn)
c51ca6cf 402 et->ops.sq.elevator_init_icq_fn(icq);
f1f8cc94
TH
403 } else {
404 kmem_cache_free(et->icq_cache, icq);
405 icq = ioc_lookup_icq(ioc, q);
406 if (!icq)
407 printk(KERN_ERR "cfq: icq link failed!\n");
408 }
409
410 spin_unlock(&ioc->lock);
411 spin_unlock_irq(q->queue_lock);
412 radix_tree_preload_end();
413 return icq;
414}
415
13341598 416static int __init blk_ioc_init(void)
86db1e29
JA
417{
418 iocontext_cachep = kmem_cache_create("blkdev_ioc",
419 sizeof(struct io_context), 0, SLAB_PANIC, NULL);
420 return 0;
421}
422subsys_initcall(blk_ioc_init);