blob: fe186a9eade98bf65f38070f72508619bf2d3f2b [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
Tejun Heo621032a2012-02-15 09:45:53 +010038/* Exit an icq. Called with both ioc and q locked. */
Tejun Heo7e5a8792011-12-14 00:33:42 +010039static void ioc_exit_icq(struct io_cq *icq)
40{
Tejun Heo621032a2012-02-15 09:45:53 +010041 struct elevator_type *et = icq->q->elevator->type;
42
43 if (icq->flags & ICQ_EXITED)
44 return;
45
Jens Axboebd166ef2017-01-17 06:03:22 -070046 if (et->uses_mq && et->ops.mq.exit_icq)
47 et->ops.mq.exit_icq(icq);
48 else if (!et->uses_mq && et->ops.sq.elevator_exit_icq_fn)
Jens Axboec51ca6c2016-12-10 15:13:59 -070049 et->ops.sq.elevator_exit_icq_fn(icq);
Tejun Heo621032a2012-02-15 09:45:53 +010050
51 icq->flags |= ICQ_EXITED;
52}
53
54/* Release an icq. Called with both ioc and q locked. */
55static void ioc_destroy_icq(struct io_cq *icq)
56{
Tejun Heo7e5a8792011-12-14 00:33:42 +010057 struct io_context *ioc = icq->ioc;
58 struct request_queue *q = icq->q;
59 struct elevator_type *et = q->elevator->type;
60
61 lockdep_assert_held(&ioc->lock);
62 lockdep_assert_held(q->queue_lock);
63
64 radix_tree_delete(&ioc->icq_tree, icq->q->id);
65 hlist_del_init(&icq->ioc_node);
66 list_del_init(&icq->q_node);
67
68 /*
69 * Both setting lookup hint to and clearing it from @icq are done
70 * under queue_lock. If it's not pointing to @icq now, it never
71 * will. Hint assignment itself can race safely.
72 */
Paul E. McKenneyec6c6762014-02-17 13:35:57 -080073 if (rcu_access_pointer(ioc->icq_hint) == icq)
Tejun Heo7e5a8792011-12-14 00:33:42 +010074 rcu_assign_pointer(ioc->icq_hint, NULL);
75
Tejun Heo621032a2012-02-15 09:45:53 +010076 ioc_exit_icq(icq);
Tejun Heo7e5a8792011-12-14 00:33:42 +010077
78 /*
79 * @icq->q might have gone away by the time RCU callback runs
80 * making it impossible to determine icq_cache. Record it in @icq.
81 */
82 icq->__rcu_icq_cache = et->icq_cache;
83 call_rcu(&icq->__rcu_head, icq_free_icq_rcu);
84}
85
Tejun Heob2efa052011-12-14 00:33:39 +010086/*
87 * Slow path for ioc release in put_io_context(). Performs double-lock
Tejun Heoc5869802011-12-14 00:33:41 +010088 * dancing to unlink all icq's and then frees ioc.
Tejun Heob2efa052011-12-14 00:33:39 +010089 */
90static void ioc_release_fn(struct work_struct *work)
91{
92 struct io_context *ioc = container_of(work, struct io_context,
93 release_work);
Tejun Heod8c66c52012-02-11 12:37:25 +010094 unsigned long flags;
Tejun Heob2efa052011-12-14 00:33:39 +010095
Tejun Heod8c66c52012-02-11 12:37:25 +010096 /*
97 * Exiting icq may call into put_io_context() through elevator
98 * which will trigger lockdep warning. The ioc's are guaranteed to
99 * be different, use a different locking subclass here. Use
100 * irqsave variant as there's no spin_lock_irq_nested().
101 */
102 spin_lock_irqsave_nested(&ioc->lock, flags, 1);
Tejun Heob2efa052011-12-14 00:33:39 +0100103
Tejun Heoc5869802011-12-14 00:33:41 +0100104 while (!hlist_empty(&ioc->icq_list)) {
105 struct io_cq *icq = hlist_entry(ioc->icq_list.first,
106 struct io_cq, ioc_node);
Tejun Heo2274b022012-02-15 09:45:52 +0100107 struct request_queue *q = icq->q;
Tejun Heob2efa052011-12-14 00:33:39 +0100108
Tejun Heo2274b022012-02-15 09:45:52 +0100109 if (spin_trylock(q->queue_lock)) {
Tejun Heo621032a2012-02-15 09:45:53 +0100110 ioc_destroy_icq(icq);
Tejun Heo2274b022012-02-15 09:45:52 +0100111 spin_unlock(q->queue_lock);
112 } else {
113 spin_unlock_irqrestore(&ioc->lock, flags);
114 cpu_relax();
115 spin_lock_irqsave_nested(&ioc->lock, flags, 1);
Tejun Heob2efa052011-12-14 00:33:39 +0100116 }
Jens Axboeffc4e752008-02-19 10:02:29 +0100117 }
Tejun Heob2efa052011-12-14 00:33:39 +0100118
Tejun Heo2274b022012-02-15 09:45:52 +0100119 spin_unlock_irqrestore(&ioc->lock, flags);
Tejun Heob2efa052011-12-14 00:33:39 +0100120
121 kmem_cache_free(iocontext_cachep, ioc);
Jens Axboe86db1e22008-01-29 14:53:40 +0100122}
123
Tejun Heo42ec57a2011-12-14 00:33:37 +0100124/**
125 * put_io_context - put a reference of io_context
126 * @ioc: io_context to put
127 *
128 * Decrement reference count of @ioc and release it if the count reaches
Tejun Heo11a31222012-02-07 07:51:30 +0100129 * zero.
Jens Axboe86db1e22008-01-29 14:53:40 +0100130 */
Tejun Heo11a31222012-02-07 07:51:30 +0100131void put_io_context(struct io_context *ioc)
Jens Axboe86db1e22008-01-29 14:53:40 +0100132{
Tejun Heob2efa052011-12-14 00:33:39 +0100133 unsigned long flags;
Xiaotian Fengff8c1472012-03-14 15:34:48 +0100134 bool free_ioc = false;
Tejun Heob2efa052011-12-14 00:33:39 +0100135
Jens Axboe86db1e22008-01-29 14:53:40 +0100136 if (ioc == NULL)
Tejun Heo42ec57a2011-12-14 00:33:37 +0100137 return;
Jens Axboe86db1e22008-01-29 14:53:40 +0100138
Tejun Heo42ec57a2011-12-14 00:33:37 +0100139 BUG_ON(atomic_long_read(&ioc->refcount) <= 0);
Jens Axboe86db1e22008-01-29 14:53:40 +0100140
Tejun Heob2efa052011-12-14 00:33:39 +0100141 /*
Tejun Heo11a31222012-02-07 07:51:30 +0100142 * Releasing ioc requires reverse order double locking and we may
143 * already be holding a queue_lock. Do it asynchronously from wq.
Tejun Heob2efa052011-12-14 00:33:39 +0100144 */
Tejun Heo11a31222012-02-07 07:51:30 +0100145 if (atomic_long_dec_and_test(&ioc->refcount)) {
146 spin_lock_irqsave(&ioc->lock, flags);
147 if (!hlist_empty(&ioc->icq_list))
Viresh Kumar695588f2013-04-24 17:12:56 +0530148 queue_work(system_power_efficient_wq,
149 &ioc->release_work);
Xiaotian Fengff8c1472012-03-14 15:34:48 +0100150 else
151 free_ioc = true;
Tejun Heo11a31222012-02-07 07:51:30 +0100152 spin_unlock_irqrestore(&ioc->lock, flags);
Tejun Heob2efa052011-12-14 00:33:39 +0100153 }
Xiaotian Fengff8c1472012-03-14 15:34:48 +0100154
155 if (free_ioc)
156 kmem_cache_free(iocontext_cachep, ioc);
Jens Axboe86db1e22008-01-29 14:53:40 +0100157}
158EXPORT_SYMBOL(put_io_context);
159
Tejun Heof6e8d012012-03-05 13:15:26 -0800160/**
161 * put_io_context_active - put active reference on ioc
162 * @ioc: ioc of interest
163 *
164 * Undo get_io_context_active(). If active reference reaches zero after
165 * put, @ioc can never issue further IOs and ioscheds are notified.
166 */
167void put_io_context_active(struct io_context *ioc)
Jens Axboe86db1e22008-01-29 14:53:40 +0100168{
Tejun Heo621032a2012-02-15 09:45:53 +0100169 unsigned long flags;
Tejun Heof6e8d012012-03-05 13:15:26 -0800170 struct io_cq *icq;
Jens Axboe86db1e22008-01-29 14:53:40 +0100171
Tejun Heof6e8d012012-03-05 13:15:26 -0800172 if (!atomic_dec_and_test(&ioc->active_ref)) {
Tejun Heo621032a2012-02-15 09:45:53 +0100173 put_io_context(ioc);
174 return;
175 }
176
177 /*
178 * Need ioc lock to walk icq_list and q lock to exit icq. Perform
179 * reverse double locking. Read comment in ioc_release_fn() for
180 * explanation on the nested locking annotation.
181 */
182retry:
183 spin_lock_irqsave_nested(&ioc->lock, flags, 1);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800184 hlist_for_each_entry(icq, &ioc->icq_list, ioc_node) {
Tejun Heo621032a2012-02-15 09:45:53 +0100185 if (icq->flags & ICQ_EXITED)
186 continue;
187 if (spin_trylock(icq->q->queue_lock)) {
188 ioc_exit_icq(icq);
189 spin_unlock(icq->q->queue_lock);
190 } else {
191 spin_unlock_irqrestore(&ioc->lock, flags);
192 cpu_relax();
193 goto retry;
194 }
195 }
196 spin_unlock_irqrestore(&ioc->lock, flags);
197
Tejun Heo11a31222012-02-07 07:51:30 +0100198 put_io_context(ioc);
Jens Axboe86db1e22008-01-29 14:53:40 +0100199}
200
Tejun Heof6e8d012012-03-05 13:15:26 -0800201/* Called by the exiting task */
202void exit_io_context(struct task_struct *task)
203{
204 struct io_context *ioc;
205
206 task_lock(task);
207 ioc = task->io_context;
208 task->io_context = NULL;
209 task_unlock(task);
210
211 atomic_dec(&ioc->nr_tasks);
212 put_io_context_active(ioc);
213}
214
Tejun Heo7e5a8792011-12-14 00:33:42 +0100215/**
216 * ioc_clear_queue - break any ioc association with the specified queue
217 * @q: request_queue being cleared
218 *
219 * Walk @q->icq_list and exit all io_cq's. Must be called with @q locked.
220 */
221void ioc_clear_queue(struct request_queue *q)
222{
223 lockdep_assert_held(q->queue_lock);
224
225 while (!list_empty(&q->icq_list)) {
226 struct io_cq *icq = list_entry(q->icq_list.next,
227 struct io_cq, q_node);
228 struct io_context *ioc = icq->ioc;
229
230 spin_lock(&ioc->lock);
Tejun Heo621032a2012-02-15 09:45:53 +0100231 ioc_destroy_icq(icq);
Tejun Heo7e5a8792011-12-14 00:33:42 +0100232 spin_unlock(&ioc->lock);
233 }
234}
235
Tejun Heo24acfc32012-03-05 13:15:24 -0800236int create_task_io_context(struct task_struct *task, gfp_t gfp_flags, int node)
Jens Axboe86db1e22008-01-29 14:53:40 +0100237{
Paul Bolledf415652011-06-06 05:11:34 +0200238 struct io_context *ioc;
Eric Dumazet3c9c7082012-05-31 13:39:05 +0200239 int ret;
Jens Axboe86db1e22008-01-29 14:53:40 +0100240
Tejun Heo42ec57a2011-12-14 00:33:37 +0100241 ioc = kmem_cache_alloc_node(iocontext_cachep, gfp_flags | __GFP_ZERO,
242 node);
243 if (unlikely(!ioc))
Tejun Heo24acfc32012-03-05 13:15:24 -0800244 return -ENOMEM;
Tejun Heo42ec57a2011-12-14 00:33:37 +0100245
246 /* initialize */
247 atomic_long_set(&ioc->refcount, 1);
Olof Johansson4638a832012-08-01 12:17:27 +0200248 atomic_set(&ioc->nr_tasks, 1);
Tejun Heof6e8d012012-03-05 13:15:26 -0800249 atomic_set(&ioc->active_ref, 1);
Tejun Heo42ec57a2011-12-14 00:33:37 +0100250 spin_lock_init(&ioc->lock);
Tejun Heoc5869802011-12-14 00:33:41 +0100251 INIT_RADIX_TREE(&ioc->icq_tree, GFP_ATOMIC | __GFP_HIGH);
252 INIT_HLIST_HEAD(&ioc->icq_list);
Tejun Heob2efa052011-12-14 00:33:39 +0100253 INIT_WORK(&ioc->release_work, ioc_release_fn);
Jens Axboe86db1e22008-01-29 14:53:40 +0100254
Tejun Heofd638362011-12-25 14:29:14 +0100255 /*
256 * Try to install. ioc shouldn't be installed if someone else
257 * already did or @task, which isn't %current, is exiting. Note
258 * that we need to allow ioc creation on exiting %current as exit
259 * path may issue IOs from e.g. exit_files(). The exit path is
260 * responsible for not issuing IO after exit_io_context().
261 */
Tejun Heo6e736be2011-12-14 00:33:38 +0100262 task_lock(task);
Tejun Heofd638362011-12-25 14:29:14 +0100263 if (!task->io_context &&
264 (task == current || !(task->flags & PF_EXITING)))
Tejun Heo6e736be2011-12-14 00:33:38 +0100265 task->io_context = ioc;
Tejun Heof2dbd762011-12-14 00:33:40 +0100266 else
Tejun Heo6e736be2011-12-14 00:33:38 +0100267 kmem_cache_free(iocontext_cachep, ioc);
Eric Dumazet3c9c7082012-05-31 13:39:05 +0200268
269 ret = task->io_context ? 0 : -EBUSY;
270
Tejun Heo6e736be2011-12-14 00:33:38 +0100271 task_unlock(task);
Tejun Heo24acfc32012-03-05 13:15:24 -0800272
Eric Dumazet3c9c7082012-05-31 13:39:05 +0200273 return ret;
Jens Axboe86db1e22008-01-29 14:53:40 +0100274}
Jens Axboe86db1e22008-01-29 14:53:40 +0100275
Tejun Heo6e736be2011-12-14 00:33:38 +0100276/**
277 * get_task_io_context - get io_context of a task
278 * @task: task of interest
279 * @gfp_flags: allocation flags, used if allocation is necessary
280 * @node: allocation node, used if allocation is necessary
Jens Axboe86db1e22008-01-29 14:53:40 +0100281 *
Tejun Heo6e736be2011-12-14 00:33:38 +0100282 * Return io_context of @task. If it doesn't exist, it is created with
283 * @gfp_flags and @node. The returned io_context has its reference count
284 * incremented.
285 *
286 * This function always goes through task_lock() and it's better to use
Tejun Heof2dbd762011-12-14 00:33:40 +0100287 * %current->io_context + get_io_context() for %current.
Jens Axboe86db1e22008-01-29 14:53:40 +0100288 */
Tejun Heo6e736be2011-12-14 00:33:38 +0100289struct io_context *get_task_io_context(struct task_struct *task,
290 gfp_t gfp_flags, int node)
Jens Axboe86db1e22008-01-29 14:53:40 +0100291{
Tejun Heo6e736be2011-12-14 00:33:38 +0100292 struct io_context *ioc;
Jens Axboe86db1e22008-01-29 14:53:40 +0100293
Mel Gormand0164ad2015-11-06 16:28:21 -0800294 might_sleep_if(gfpflags_allow_blocking(gfp_flags));
Jens Axboe86db1e22008-01-29 14:53:40 +0100295
Tejun Heof2dbd762011-12-14 00:33:40 +0100296 do {
297 task_lock(task);
298 ioc = task->io_context;
299 if (likely(ioc)) {
300 get_io_context(ioc);
301 task_unlock(task);
302 return ioc;
303 }
Tejun Heo6e736be2011-12-14 00:33:38 +0100304 task_unlock(task);
Tejun Heo24acfc32012-03-05 13:15:24 -0800305 } while (!create_task_io_context(task, gfp_flags, node));
Tejun Heo6e736be2011-12-14 00:33:38 +0100306
Tejun Heof2dbd762011-12-14 00:33:40 +0100307 return NULL;
Jens Axboe86db1e22008-01-29 14:53:40 +0100308}
Tejun Heo6e736be2011-12-14 00:33:38 +0100309EXPORT_SYMBOL(get_task_io_context);
Jens Axboe86db1e22008-01-29 14:53:40 +0100310
Tejun Heo47fdd4c2011-12-14 00:33:42 +0100311/**
312 * ioc_lookup_icq - lookup io_cq from ioc
313 * @ioc: the associated io_context
314 * @q: the associated request_queue
315 *
316 * Look up io_cq associated with @ioc - @q pair from @ioc. Must be called
317 * with @q->queue_lock held.
318 */
319struct io_cq *ioc_lookup_icq(struct io_context *ioc, struct request_queue *q)
320{
321 struct io_cq *icq;
322
323 lockdep_assert_held(q->queue_lock);
324
325 /*
326 * icq's are indexed from @ioc using radix tree and hint pointer,
327 * both of which are protected with RCU. All removals are done
328 * holding both q and ioc locks, and we're holding q lock - if we
329 * find a icq which points to us, it's guaranteed to be valid.
330 */
331 rcu_read_lock();
332 icq = rcu_dereference(ioc->icq_hint);
333 if (icq && icq->q == q)
334 goto out;
335
336 icq = radix_tree_lookup(&ioc->icq_tree, q->id);
337 if (icq && icq->q == q)
338 rcu_assign_pointer(ioc->icq_hint, icq); /* allowed to race */
339 else
340 icq = NULL;
341out:
342 rcu_read_unlock();
343 return icq;
344}
345EXPORT_SYMBOL(ioc_lookup_icq);
346
Tejun Heof1f8cc92011-12-14 00:33:42 +0100347/**
348 * ioc_create_icq - create and link io_cq
Tejun Heo24acfc32012-03-05 13:15:24 -0800349 * @ioc: io_context of interest
Tejun Heof1f8cc92011-12-14 00:33:42 +0100350 * @q: request_queue of interest
351 * @gfp_mask: allocation mask
352 *
Tejun Heo24acfc32012-03-05 13:15:24 -0800353 * Make sure io_cq linking @ioc and @q exists. If icq doesn't exist, they
354 * will be created using @gfp_mask.
Tejun Heof1f8cc92011-12-14 00:33:42 +0100355 *
356 * The caller is responsible for ensuring @ioc won't go away and @q is
357 * alive and will stay alive until this function returns.
358 */
Tejun Heo24acfc32012-03-05 13:15:24 -0800359struct io_cq *ioc_create_icq(struct io_context *ioc, struct request_queue *q,
360 gfp_t gfp_mask)
Tejun Heof1f8cc92011-12-14 00:33:42 +0100361{
362 struct elevator_type *et = q->elevator->type;
Tejun Heof1f8cc92011-12-14 00:33:42 +0100363 struct io_cq *icq;
364
365 /* allocate stuff */
Tejun Heof1f8cc92011-12-14 00:33:42 +0100366 icq = kmem_cache_alloc_node(et->icq_cache, gfp_mask | __GFP_ZERO,
367 q->node);
368 if (!icq)
369 return NULL;
370
Jan Kara5e4c0d972013-09-11 14:26:05 -0700371 if (radix_tree_maybe_preload(gfp_mask) < 0) {
Tejun Heof1f8cc92011-12-14 00:33:42 +0100372 kmem_cache_free(et->icq_cache, icq);
373 return NULL;
374 }
375
376 icq->ioc = ioc;
377 icq->q = q;
378 INIT_LIST_HEAD(&icq->q_node);
379 INIT_HLIST_NODE(&icq->ioc_node);
380
381 /* lock both q and ioc and try to link @icq */
382 spin_lock_irq(q->queue_lock);
383 spin_lock(&ioc->lock);
384
385 if (likely(!radix_tree_insert(&ioc->icq_tree, q->id, icq))) {
386 hlist_add_head(&icq->ioc_node, &ioc->icq_list);
387 list_add(&icq->q_node, &q->icq_list);
Jens Axboebd166ef2017-01-17 06:03:22 -0700388 if (et->uses_mq && et->ops.mq.init_icq)
389 et->ops.mq.init_icq(icq);
390 else if (!et->uses_mq && et->ops.sq.elevator_init_icq_fn)
Jens Axboec51ca6c2016-12-10 15:13:59 -0700391 et->ops.sq.elevator_init_icq_fn(icq);
Tejun Heof1f8cc92011-12-14 00:33:42 +0100392 } else {
393 kmem_cache_free(et->icq_cache, icq);
394 icq = ioc_lookup_icq(ioc, q);
395 if (!icq)
396 printk(KERN_ERR "cfq: icq link failed!\n");
397 }
398
399 spin_unlock(&ioc->lock);
400 spin_unlock_irq(q->queue_lock);
401 radix_tree_preload_end();
402 return icq;
403}
404
Adrian Bunk13341592008-02-18 13:45:53 +0100405static int __init blk_ioc_init(void)
Jens Axboe86db1e22008-01-29 14:53:40 +0100406{
407 iocontext_cachep = kmem_cache_create("blkdev_ioc",
408 sizeof(struct io_context), 0, SLAB_PANIC, NULL);
409 return 0;
410}
411subsys_initcall(blk_ioc_init);