blob: b12f9c87b4c31cd76310dc56f8ec95c23086c7e0 [file] [log] [blame]
Jens Axboe86db1e22008-01-29 14:53:40 +01001/*
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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09009#include <linux/slab.h>
Jens Axboe86db1e22008-01-29 14:53:40 +010010
11#include "blk.h"
12
13/*
14 * For io context allocations
15 */
16static struct kmem_cache *iocontext_cachep;
17
Tejun Heo6e736be2011-12-14 00:33:38 +010018/**
19 * get_io_context - increment reference count to io_context
20 * @ioc: io_context to get
21 *
22 * Increment reference count to @ioc.
23 */
24void get_io_context(struct io_context *ioc)
25{
26 BUG_ON(atomic_long_read(&ioc->refcount) <= 0);
27 atomic_long_inc(&ioc->refcount);
28}
29EXPORT_SYMBOL(get_io_context);
30
Tejun Heo7e5a8792011-12-14 00:33:42 +010031static void icq_free_icq_rcu(struct rcu_head *head)
32{
33 struct io_cq *icq = container_of(head, struct io_cq, __rcu_head);
34
35 kmem_cache_free(icq->__rcu_icq_cache, icq);
36}
37
Omar Sandoval3d492c22017-02-10 10:32:34 -080038/*
39 * Exit an icq. Called with both ioc and q locked for sq, only ioc locked for
40 * mq.
41 */
Tejun Heo7e5a8792011-12-14 00:33:42 +010042static void ioc_exit_icq(struct io_cq *icq)
43{
Tejun Heo621032a2012-02-15 09:45:53 +010044 struct elevator_type *et = icq->q->elevator->type;
45
46 if (icq->flags & ICQ_EXITED)
47 return;
48
Jens Axboebd166ef2017-01-17 06:03:22 -070049 if (et->uses_mq && et->ops.mq.exit_icq)
50 et->ops.mq.exit_icq(icq);
51 else if (!et->uses_mq && et->ops.sq.elevator_exit_icq_fn)
Jens Axboec51ca6c2016-12-10 15:13:59 -070052 et->ops.sq.elevator_exit_icq_fn(icq);
Tejun Heo621032a2012-02-15 09:45:53 +010053
54 icq->flags |= ICQ_EXITED;
55}
56
57/* Release an icq. Called with both ioc and q locked. */
58static void ioc_destroy_icq(struct io_cq *icq)
59{
Tejun Heo7e5a8792011-12-14 00:33:42 +010060 struct io_context *ioc = icq->ioc;
61 struct request_queue *q = icq->q;
62 struct elevator_type *et = q->elevator->type;
63
64 lockdep_assert_held(&ioc->lock);
65 lockdep_assert_held(q->queue_lock);
66
67 radix_tree_delete(&ioc->icq_tree, icq->q->id);
68 hlist_del_init(&icq->ioc_node);
69 list_del_init(&icq->q_node);
70
71 /*
72 * Both setting lookup hint to and clearing it from @icq are done
73 * under queue_lock. If it's not pointing to @icq now, it never
74 * will. Hint assignment itself can race safely.
75 */
Paul E. McKenneyec6c6762014-02-17 13:35:57 -080076 if (rcu_access_pointer(ioc->icq_hint) == icq)
Tejun Heo7e5a8792011-12-14 00:33:42 +010077 rcu_assign_pointer(ioc->icq_hint, NULL);
78
Tejun Heo621032a2012-02-15 09:45:53 +010079 ioc_exit_icq(icq);
Tejun Heo7e5a8792011-12-14 00:33:42 +010080
81 /*
82 * @icq->q might have gone away by the time RCU callback runs
83 * making it impossible to determine icq_cache. Record it in @icq.
84 */
85 icq->__rcu_icq_cache = et->icq_cache;
86 call_rcu(&icq->__rcu_head, icq_free_icq_rcu);
87}
88
Tejun Heob2efa052011-12-14 00:33:39 +010089/*
90 * Slow path for ioc release in put_io_context(). Performs double-lock
Tejun Heoc5869802011-12-14 00:33:41 +010091 * dancing to unlink all icq's and then frees ioc.
Tejun Heob2efa052011-12-14 00:33:39 +010092 */
93static void ioc_release_fn(struct work_struct *work)
94{
95 struct io_context *ioc = container_of(work, struct io_context,
96 release_work);
Tejun Heod8c66c52012-02-11 12:37:25 +010097 unsigned long flags;
Tejun Heob2efa052011-12-14 00:33:39 +010098
Tejun Heod8c66c52012-02-11 12:37:25 +010099 /*
100 * Exiting icq may call into put_io_context() through elevator
101 * which will trigger lockdep warning. The ioc's are guaranteed to
102 * be different, use a different locking subclass here. Use
103 * irqsave variant as there's no spin_lock_irq_nested().
104 */
105 spin_lock_irqsave_nested(&ioc->lock, flags, 1);
Tejun Heob2efa052011-12-14 00:33:39 +0100106
Tejun Heoc5869802011-12-14 00:33:41 +0100107 while (!hlist_empty(&ioc->icq_list)) {
108 struct io_cq *icq = hlist_entry(ioc->icq_list.first,
109 struct io_cq, ioc_node);
Tejun Heo2274b022012-02-15 09:45:52 +0100110 struct request_queue *q = icq->q;
Tejun Heob2efa052011-12-14 00:33:39 +0100111
Tejun Heo2274b022012-02-15 09:45:52 +0100112 if (spin_trylock(q->queue_lock)) {
Tejun Heo621032a2012-02-15 09:45:53 +0100113 ioc_destroy_icq(icq);
Tejun Heo2274b022012-02-15 09:45:52 +0100114 spin_unlock(q->queue_lock);
115 } else {
116 spin_unlock_irqrestore(&ioc->lock, flags);
117 cpu_relax();
118 spin_lock_irqsave_nested(&ioc->lock, flags, 1);
Tejun Heob2efa052011-12-14 00:33:39 +0100119 }
Jens Axboeffc4e752008-02-19 10:02:29 +0100120 }
Tejun Heob2efa052011-12-14 00:33:39 +0100121
Tejun Heo2274b022012-02-15 09:45:52 +0100122 spin_unlock_irqrestore(&ioc->lock, flags);
Tejun Heob2efa052011-12-14 00:33:39 +0100123
124 kmem_cache_free(iocontext_cachep, ioc);
Jens Axboe86db1e22008-01-29 14:53:40 +0100125}
126
Tejun Heo42ec57a2011-12-14 00:33:37 +0100127/**
128 * put_io_context - put a reference of io_context
129 * @ioc: io_context to put
130 *
131 * Decrement reference count of @ioc and release it if the count reaches
Tejun Heo11a31222012-02-07 07:51:30 +0100132 * zero.
Jens Axboe86db1e22008-01-29 14:53:40 +0100133 */
Tejun Heo11a31222012-02-07 07:51:30 +0100134void put_io_context(struct io_context *ioc)
Jens Axboe86db1e22008-01-29 14:53:40 +0100135{
Tejun Heob2efa052011-12-14 00:33:39 +0100136 unsigned long flags;
Xiaotian Fengff8c1472012-03-14 15:34:48 +0100137 bool free_ioc = false;
Tejun Heob2efa052011-12-14 00:33:39 +0100138
Jens Axboe86db1e22008-01-29 14:53:40 +0100139 if (ioc == NULL)
Tejun Heo42ec57a2011-12-14 00:33:37 +0100140 return;
Jens Axboe86db1e22008-01-29 14:53:40 +0100141
Tejun Heo42ec57a2011-12-14 00:33:37 +0100142 BUG_ON(atomic_long_read(&ioc->refcount) <= 0);
Jens Axboe86db1e22008-01-29 14:53:40 +0100143
Tejun Heob2efa052011-12-14 00:33:39 +0100144 /*
Tejun Heo11a31222012-02-07 07:51:30 +0100145 * Releasing ioc requires reverse order double locking and we may
146 * already be holding a queue_lock. Do it asynchronously from wq.
Tejun Heob2efa052011-12-14 00:33:39 +0100147 */
Tejun Heo11a31222012-02-07 07:51:30 +0100148 if (atomic_long_dec_and_test(&ioc->refcount)) {
149 spin_lock_irqsave(&ioc->lock, flags);
150 if (!hlist_empty(&ioc->icq_list))
Viresh Kumar695588f2013-04-24 17:12:56 +0530151 queue_work(system_power_efficient_wq,
152 &ioc->release_work);
Xiaotian Fengff8c1472012-03-14 15:34:48 +0100153 else
154 free_ioc = true;
Tejun Heo11a31222012-02-07 07:51:30 +0100155 spin_unlock_irqrestore(&ioc->lock, flags);
Tejun Heob2efa052011-12-14 00:33:39 +0100156 }
Xiaotian Fengff8c1472012-03-14 15:34:48 +0100157
158 if (free_ioc)
159 kmem_cache_free(iocontext_cachep, ioc);
Jens Axboe86db1e22008-01-29 14:53:40 +0100160}
161EXPORT_SYMBOL(put_io_context);
162
Tejun Heof6e8d012012-03-05 13:15:26 -0800163/**
164 * put_io_context_active - put active reference on ioc
165 * @ioc: ioc of interest
166 *
167 * Undo get_io_context_active(). If active reference reaches zero after
168 * put, @ioc can never issue further IOs and ioscheds are notified.
169 */
170void put_io_context_active(struct io_context *ioc)
Jens Axboe86db1e22008-01-29 14:53:40 +0100171{
Omar Sandoval3d492c22017-02-10 10:32:34 -0800172 struct elevator_type *et;
Tejun Heo621032a2012-02-15 09:45:53 +0100173 unsigned long flags;
Tejun Heof6e8d012012-03-05 13:15:26 -0800174 struct io_cq *icq;
Jens Axboe86db1e22008-01-29 14:53:40 +0100175
Tejun Heof6e8d012012-03-05 13:15:26 -0800176 if (!atomic_dec_and_test(&ioc->active_ref)) {
Tejun Heo621032a2012-02-15 09:45:53 +0100177 put_io_context(ioc);
178 return;
179 }
180
181 /*
182 * Need ioc lock to walk icq_list and q lock to exit icq. Perform
183 * reverse double locking. Read comment in ioc_release_fn() for
184 * explanation on the nested locking annotation.
185 */
186retry:
187 spin_lock_irqsave_nested(&ioc->lock, flags, 1);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800188 hlist_for_each_entry(icq, &ioc->icq_list, ioc_node) {
Tejun Heo621032a2012-02-15 09:45:53 +0100189 if (icq->flags & ICQ_EXITED)
190 continue;
Omar Sandoval3d492c22017-02-10 10:32:34 -0800191
192 et = icq->q->elevator->type;
193 if (et->uses_mq) {
Tejun Heo621032a2012-02-15 09:45:53 +0100194 ioc_exit_icq(icq);
Tejun Heo621032a2012-02-15 09:45:53 +0100195 } else {
Omar Sandoval3d492c22017-02-10 10:32:34 -0800196 if (spin_trylock(icq->q->queue_lock)) {
197 ioc_exit_icq(icq);
198 spin_unlock(icq->q->queue_lock);
199 } else {
200 spin_unlock_irqrestore(&ioc->lock, flags);
201 cpu_relax();
202 goto retry;
203 }
Tejun Heo621032a2012-02-15 09:45:53 +0100204 }
205 }
206 spin_unlock_irqrestore(&ioc->lock, flags);
207
Tejun Heo11a31222012-02-07 07:51:30 +0100208 put_io_context(ioc);
Jens Axboe86db1e22008-01-29 14:53:40 +0100209}
210
Tejun Heof6e8d012012-03-05 13:15:26 -0800211/* Called by the exiting task */
212void exit_io_context(struct task_struct *task)
213{
214 struct io_context *ioc;
215
216 task_lock(task);
217 ioc = task->io_context;
218 task->io_context = NULL;
219 task_unlock(task);
220
221 atomic_dec(&ioc->nr_tasks);
222 put_io_context_active(ioc);
223}
224
Tejun Heo7e5a8792011-12-14 00:33:42 +0100225/**
226 * ioc_clear_queue - break any ioc association with the specified queue
227 * @q: request_queue being cleared
228 *
229 * Walk @q->icq_list and exit all io_cq's. Must be called with @q locked.
230 */
231void ioc_clear_queue(struct request_queue *q)
232{
233 lockdep_assert_held(q->queue_lock);
234
235 while (!list_empty(&q->icq_list)) {
236 struct io_cq *icq = list_entry(q->icq_list.next,
237 struct io_cq, q_node);
238 struct io_context *ioc = icq->ioc;
239
240 spin_lock(&ioc->lock);
Tejun Heo621032a2012-02-15 09:45:53 +0100241 ioc_destroy_icq(icq);
Tejun Heo7e5a8792011-12-14 00:33:42 +0100242 spin_unlock(&ioc->lock);
243 }
244}
245
Tejun Heo24acfc32012-03-05 13:15:24 -0800246int create_task_io_context(struct task_struct *task, gfp_t gfp_flags, int node)
Jens Axboe86db1e22008-01-29 14:53:40 +0100247{
Paul Bolledf415652011-06-06 05:11:34 +0200248 struct io_context *ioc;
Eric Dumazet3c9c7082012-05-31 13:39:05 +0200249 int ret;
Jens Axboe86db1e22008-01-29 14:53:40 +0100250
Tejun Heo42ec57a2011-12-14 00:33:37 +0100251 ioc = kmem_cache_alloc_node(iocontext_cachep, gfp_flags | __GFP_ZERO,
252 node);
253 if (unlikely(!ioc))
Tejun Heo24acfc32012-03-05 13:15:24 -0800254 return -ENOMEM;
Tejun Heo42ec57a2011-12-14 00:33:37 +0100255
256 /* initialize */
257 atomic_long_set(&ioc->refcount, 1);
Olof Johansson4638a832012-08-01 12:17:27 +0200258 atomic_set(&ioc->nr_tasks, 1);
Tejun Heof6e8d012012-03-05 13:15:26 -0800259 atomic_set(&ioc->active_ref, 1);
Tejun Heo42ec57a2011-12-14 00:33:37 +0100260 spin_lock_init(&ioc->lock);
Tejun Heoc5869802011-12-14 00:33:41 +0100261 INIT_RADIX_TREE(&ioc->icq_tree, GFP_ATOMIC | __GFP_HIGH);
262 INIT_HLIST_HEAD(&ioc->icq_list);
Tejun Heob2efa052011-12-14 00:33:39 +0100263 INIT_WORK(&ioc->release_work, ioc_release_fn);
Jens Axboe86db1e22008-01-29 14:53:40 +0100264
Tejun Heofd638362011-12-25 14:29:14 +0100265 /*
266 * Try to install. ioc shouldn't be installed if someone else
267 * already did or @task, which isn't %current, is exiting. Note
268 * that we need to allow ioc creation on exiting %current as exit
269 * path may issue IOs from e.g. exit_files(). The exit path is
270 * responsible for not issuing IO after exit_io_context().
271 */
Tejun Heo6e736be2011-12-14 00:33:38 +0100272 task_lock(task);
Tejun Heofd638362011-12-25 14:29:14 +0100273 if (!task->io_context &&
274 (task == current || !(task->flags & PF_EXITING)))
Tejun Heo6e736be2011-12-14 00:33:38 +0100275 task->io_context = ioc;
Tejun Heof2dbd762011-12-14 00:33:40 +0100276 else
Tejun Heo6e736be2011-12-14 00:33:38 +0100277 kmem_cache_free(iocontext_cachep, ioc);
Eric Dumazet3c9c7082012-05-31 13:39:05 +0200278
279 ret = task->io_context ? 0 : -EBUSY;
280
Tejun Heo6e736be2011-12-14 00:33:38 +0100281 task_unlock(task);
Tejun Heo24acfc32012-03-05 13:15:24 -0800282
Eric Dumazet3c9c7082012-05-31 13:39:05 +0200283 return ret;
Jens Axboe86db1e22008-01-29 14:53:40 +0100284}
Jens Axboe86db1e22008-01-29 14:53:40 +0100285
Tejun Heo6e736be2011-12-14 00:33:38 +0100286/**
287 * get_task_io_context - get io_context of a task
288 * @task: task of interest
289 * @gfp_flags: allocation flags, used if allocation is necessary
290 * @node: allocation node, used if allocation is necessary
Jens Axboe86db1e22008-01-29 14:53:40 +0100291 *
Tejun Heo6e736be2011-12-14 00:33:38 +0100292 * Return io_context of @task. If it doesn't exist, it is created with
293 * @gfp_flags and @node. The returned io_context has its reference count
294 * incremented.
295 *
296 * This function always goes through task_lock() and it's better to use
Tejun Heof2dbd762011-12-14 00:33:40 +0100297 * %current->io_context + get_io_context() for %current.
Jens Axboe86db1e22008-01-29 14:53:40 +0100298 */
Tejun Heo6e736be2011-12-14 00:33:38 +0100299struct io_context *get_task_io_context(struct task_struct *task,
300 gfp_t gfp_flags, int node)
Jens Axboe86db1e22008-01-29 14:53:40 +0100301{
Tejun Heo6e736be2011-12-14 00:33:38 +0100302 struct io_context *ioc;
Jens Axboe86db1e22008-01-29 14:53:40 +0100303
Mel Gormand0164ad2015-11-06 16:28:21 -0800304 might_sleep_if(gfpflags_allow_blocking(gfp_flags));
Jens Axboe86db1e22008-01-29 14:53:40 +0100305
Tejun Heof2dbd762011-12-14 00:33:40 +0100306 do {
307 task_lock(task);
308 ioc = task->io_context;
309 if (likely(ioc)) {
310 get_io_context(ioc);
311 task_unlock(task);
312 return ioc;
313 }
Tejun Heo6e736be2011-12-14 00:33:38 +0100314 task_unlock(task);
Tejun Heo24acfc32012-03-05 13:15:24 -0800315 } while (!create_task_io_context(task, gfp_flags, node));
Tejun Heo6e736be2011-12-14 00:33:38 +0100316
Tejun Heof2dbd762011-12-14 00:33:40 +0100317 return NULL;
Jens Axboe86db1e22008-01-29 14:53:40 +0100318}
Tejun Heo6e736be2011-12-14 00:33:38 +0100319EXPORT_SYMBOL(get_task_io_context);
Jens Axboe86db1e22008-01-29 14:53:40 +0100320
Tejun Heo47fdd4c2011-12-14 00:33:42 +0100321/**
322 * ioc_lookup_icq - lookup io_cq from ioc
323 * @ioc: the associated io_context
324 * @q: the associated request_queue
325 *
326 * Look up io_cq associated with @ioc - @q pair from @ioc. Must be called
327 * with @q->queue_lock held.
328 */
329struct io_cq *ioc_lookup_icq(struct io_context *ioc, struct request_queue *q)
330{
331 struct io_cq *icq;
332
333 lockdep_assert_held(q->queue_lock);
334
335 /*
336 * icq's are indexed from @ioc using radix tree and hint pointer,
337 * both of which are protected with RCU. All removals are done
338 * holding both q and ioc locks, and we're holding q lock - if we
339 * find a icq which points to us, it's guaranteed to be valid.
340 */
341 rcu_read_lock();
342 icq = rcu_dereference(ioc->icq_hint);
343 if (icq && icq->q == q)
344 goto out;
345
346 icq = radix_tree_lookup(&ioc->icq_tree, q->id);
347 if (icq && icq->q == q)
348 rcu_assign_pointer(ioc->icq_hint, icq); /* allowed to race */
349 else
350 icq = NULL;
351out:
352 rcu_read_unlock();
353 return icq;
354}
355EXPORT_SYMBOL(ioc_lookup_icq);
356
Tejun Heof1f8cc92011-12-14 00:33:42 +0100357/**
358 * ioc_create_icq - create and link io_cq
Tejun Heo24acfc32012-03-05 13:15:24 -0800359 * @ioc: io_context of interest
Tejun Heof1f8cc92011-12-14 00:33:42 +0100360 * @q: request_queue of interest
361 * @gfp_mask: allocation mask
362 *
Tejun Heo24acfc32012-03-05 13:15:24 -0800363 * Make sure io_cq linking @ioc and @q exists. If icq doesn't exist, they
364 * will be created using @gfp_mask.
Tejun Heof1f8cc92011-12-14 00:33:42 +0100365 *
366 * The caller is responsible for ensuring @ioc won't go away and @q is
367 * alive and will stay alive until this function returns.
368 */
Tejun Heo24acfc32012-03-05 13:15:24 -0800369struct io_cq *ioc_create_icq(struct io_context *ioc, struct request_queue *q,
370 gfp_t gfp_mask)
Tejun Heof1f8cc92011-12-14 00:33:42 +0100371{
372 struct elevator_type *et = q->elevator->type;
Tejun Heof1f8cc92011-12-14 00:33:42 +0100373 struct io_cq *icq;
374
375 /* allocate stuff */
Tejun Heof1f8cc92011-12-14 00:33:42 +0100376 icq = kmem_cache_alloc_node(et->icq_cache, gfp_mask | __GFP_ZERO,
377 q->node);
378 if (!icq)
379 return NULL;
380
Jan Kara5e4c0d972013-09-11 14:26:05 -0700381 if (radix_tree_maybe_preload(gfp_mask) < 0) {
Tejun Heof1f8cc92011-12-14 00:33:42 +0100382 kmem_cache_free(et->icq_cache, icq);
383 return NULL;
384 }
385
386 icq->ioc = ioc;
387 icq->q = q;
388 INIT_LIST_HEAD(&icq->q_node);
389 INIT_HLIST_NODE(&icq->ioc_node);
390
391 /* lock both q and ioc and try to link @icq */
392 spin_lock_irq(q->queue_lock);
393 spin_lock(&ioc->lock);
394
395 if (likely(!radix_tree_insert(&ioc->icq_tree, q->id, icq))) {
396 hlist_add_head(&icq->ioc_node, &ioc->icq_list);
397 list_add(&icq->q_node, &q->icq_list);
Jens Axboebd166ef2017-01-17 06:03:22 -0700398 if (et->uses_mq && et->ops.mq.init_icq)
399 et->ops.mq.init_icq(icq);
400 else if (!et->uses_mq && et->ops.sq.elevator_init_icq_fn)
Jens Axboec51ca6c2016-12-10 15:13:59 -0700401 et->ops.sq.elevator_init_icq_fn(icq);
Tejun Heof1f8cc92011-12-14 00:33:42 +0100402 } else {
403 kmem_cache_free(et->icq_cache, icq);
404 icq = ioc_lookup_icq(ioc, q);
405 if (!icq)
406 printk(KERN_ERR "cfq: icq link failed!\n");
407 }
408
409 spin_unlock(&ioc->lock);
410 spin_unlock_irq(q->queue_lock);
411 radix_tree_preload_end();
412 return icq;
413}
414
Adrian Bunk13341592008-02-18 13:45:53 +0100415static int __init blk_ioc_init(void)
Jens Axboe86db1e22008-01-29 14:53:40 +0100416{
417 iocontext_cachep = kmem_cache_create("blkdev_ioc",
418 sizeof(struct io_context), 0, SLAB_PANIC, NULL);
419 return 0;
420}
421subsys_initcall(blk_ioc_init);