blob: 4c810969c3e2fb77657b895e740e1796a4e6c79e [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Jens Axboe86db1e22008-01-29 14:53:40 +01002/*
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 Heo5a0e3ad2010-03-24 17:04:11 +090010#include <linux/slab.h>
Ingo Molnarf719ff92017-02-06 10:57:33 +010011#include <linux/sched/task.h>
Jens Axboe86db1e22008-01-29 14:53:40 +010012
13#include "blk.h"
14
15/*
16 * For io context allocations
17 */
18static struct kmem_cache *iocontext_cachep;
19
Tejun Heo6e736be2011-12-14 00:33:38 +010020/**
21 * get_io_context - increment reference count to io_context
22 * @ioc: io_context to get
23 *
24 * Increment reference count to @ioc.
25 */
26void get_io_context(struct io_context *ioc)
27{
28 BUG_ON(atomic_long_read(&ioc->refcount) <= 0);
29 atomic_long_inc(&ioc->refcount);
30}
31EXPORT_SYMBOL(get_io_context);
32
Tejun Heo7e5a8792011-12-14 00:33:42 +010033static 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 Sandoval3d492c22017-02-10 10:32:34 -080040/*
Jens Axboe7b36a712017-03-02 13:59:08 -070041 * Exit an icq. Called with ioc locked for blk-mq, and with both ioc
42 * and queue locked for legacy.
Omar Sandoval3d492c22017-02-10 10:32:34 -080043 */
Tejun Heo7e5a8792011-12-14 00:33:42 +010044static void ioc_exit_icq(struct io_cq *icq)
45{
Tejun Heo621032a2012-02-15 09:45:53 +010046 struct elevator_type *et = icq->q->elevator->type;
47
48 if (icq->flags & ICQ_EXITED)
49 return;
50
Jens Axboebd166ef2017-01-17 06:03:22 -070051 if (et->uses_mq && et->ops.mq.exit_icq)
52 et->ops.mq.exit_icq(icq);
53 else if (!et->uses_mq && et->ops.sq.elevator_exit_icq_fn)
Jens Axboec51ca6c2016-12-10 15:13:59 -070054 et->ops.sq.elevator_exit_icq_fn(icq);
Tejun Heo621032a2012-02-15 09:45:53 +010055
56 icq->flags |= ICQ_EXITED;
57}
58
Jens Axboe7b36a712017-03-02 13:59:08 -070059/*
60 * Release an icq. Called with ioc locked for blk-mq, and with both ioc
61 * and queue locked for legacy.
62 */
Tejun Heo621032a2012-02-15 09:45:53 +010063static void ioc_destroy_icq(struct io_cq *icq)
64{
Tejun Heo7e5a8792011-12-14 00:33:42 +010065 struct io_context *ioc = icq->ioc;
66 struct request_queue *q = icq->q;
67 struct elevator_type *et = q->elevator->type;
68
69 lockdep_assert_held(&ioc->lock);
Tejun Heo7e5a8792011-12-14 00:33:42 +010070
71 radix_tree_delete(&ioc->icq_tree, icq->q->id);
72 hlist_del_init(&icq->ioc_node);
73 list_del_init(&icq->q_node);
74
75 /*
76 * Both setting lookup hint to and clearing it from @icq are done
77 * under queue_lock. If it's not pointing to @icq now, it never
78 * will. Hint assignment itself can race safely.
79 */
Paul E. McKenneyec6c6762014-02-17 13:35:57 -080080 if (rcu_access_pointer(ioc->icq_hint) == icq)
Tejun Heo7e5a8792011-12-14 00:33:42 +010081 rcu_assign_pointer(ioc->icq_hint, NULL);
82
Tejun Heo621032a2012-02-15 09:45:53 +010083 ioc_exit_icq(icq);
Tejun Heo7e5a8792011-12-14 00:33:42 +010084
85 /*
86 * @icq->q might have gone away by the time RCU callback runs
87 * making it impossible to determine icq_cache. Record it in @icq.
88 */
89 icq->__rcu_icq_cache = et->icq_cache;
Sahitya Tummalacf5356592020-03-11 16:07:50 +053090 icq->flags |= ICQ_DESTROYED;
Tejun Heo7e5a8792011-12-14 00:33:42 +010091 call_rcu(&icq->__rcu_head, icq_free_icq_rcu);
92}
93
Tejun Heob2efa052011-12-14 00:33:39 +010094/*
95 * Slow path for ioc release in put_io_context(). Performs double-lock
Tejun Heoc5869802011-12-14 00:33:41 +010096 * dancing to unlink all icq's and then frees ioc.
Tejun Heob2efa052011-12-14 00:33:39 +010097 */
98static void ioc_release_fn(struct work_struct *work)
99{
100 struct io_context *ioc = container_of(work, struct io_context,
101 release_work);
Tejun Heod8c66c52012-02-11 12:37:25 +0100102 unsigned long flags;
Tejun Heob2efa052011-12-14 00:33:39 +0100103
Tejun Heod8c66c52012-02-11 12:37:25 +0100104 /*
105 * Exiting icq may call into put_io_context() through elevator
106 * which will trigger lockdep warning. The ioc's are guaranteed to
107 * be different, use a different locking subclass here. Use
108 * irqsave variant as there's no spin_lock_irq_nested().
109 */
110 spin_lock_irqsave_nested(&ioc->lock, flags, 1);
Tejun Heob2efa052011-12-14 00:33:39 +0100111
Tejun Heoc5869802011-12-14 00:33:41 +0100112 while (!hlist_empty(&ioc->icq_list)) {
113 struct io_cq *icq = hlist_entry(ioc->icq_list.first,
114 struct io_cq, ioc_node);
Tejun Heo2274b022012-02-15 09:45:52 +0100115 struct request_queue *q = icq->q;
Tejun Heob2efa052011-12-14 00:33:39 +0100116
Tejun Heo2274b022012-02-15 09:45:52 +0100117 if (spin_trylock(q->queue_lock)) {
Tejun Heo621032a2012-02-15 09:45:53 +0100118 ioc_destroy_icq(icq);
Tejun Heo2274b022012-02-15 09:45:52 +0100119 spin_unlock(q->queue_lock);
120 } else {
121 spin_unlock_irqrestore(&ioc->lock, flags);
122 cpu_relax();
123 spin_lock_irqsave_nested(&ioc->lock, flags, 1);
Tejun Heob2efa052011-12-14 00:33:39 +0100124 }
Jens Axboeffc4e752008-02-19 10:02:29 +0100125 }
Tejun Heob2efa052011-12-14 00:33:39 +0100126
Tejun Heo2274b022012-02-15 09:45:52 +0100127 spin_unlock_irqrestore(&ioc->lock, flags);
Tejun Heob2efa052011-12-14 00:33:39 +0100128
129 kmem_cache_free(iocontext_cachep, ioc);
Jens Axboe86db1e22008-01-29 14:53:40 +0100130}
131
Tejun Heo42ec57a2011-12-14 00:33:37 +0100132/**
133 * put_io_context - put a reference of io_context
134 * @ioc: io_context to put
135 *
136 * Decrement reference count of @ioc and release it if the count reaches
Tejun Heo11a31222012-02-07 07:51:30 +0100137 * zero.
Jens Axboe86db1e22008-01-29 14:53:40 +0100138 */
Tejun Heo11a31222012-02-07 07:51:30 +0100139void put_io_context(struct io_context *ioc)
Jens Axboe86db1e22008-01-29 14:53:40 +0100140{
Tejun Heob2efa052011-12-14 00:33:39 +0100141 unsigned long flags;
Xiaotian Fengff8c1472012-03-14 15:34:48 +0100142 bool free_ioc = false;
Tejun Heob2efa052011-12-14 00:33:39 +0100143
Jens Axboe86db1e22008-01-29 14:53:40 +0100144 if (ioc == NULL)
Tejun Heo42ec57a2011-12-14 00:33:37 +0100145 return;
Jens Axboe86db1e22008-01-29 14:53:40 +0100146
Tejun Heo42ec57a2011-12-14 00:33:37 +0100147 BUG_ON(atomic_long_read(&ioc->refcount) <= 0);
Jens Axboe86db1e22008-01-29 14:53:40 +0100148
Tejun Heob2efa052011-12-14 00:33:39 +0100149 /*
Tejun Heo11a31222012-02-07 07:51:30 +0100150 * Releasing ioc requires reverse order double locking and we may
151 * already be holding a queue_lock. Do it asynchronously from wq.
Tejun Heob2efa052011-12-14 00:33:39 +0100152 */
Tejun Heo11a31222012-02-07 07:51:30 +0100153 if (atomic_long_dec_and_test(&ioc->refcount)) {
154 spin_lock_irqsave(&ioc->lock, flags);
155 if (!hlist_empty(&ioc->icq_list))
Viresh Kumar695588f2013-04-24 17:12:56 +0530156 queue_work(system_power_efficient_wq,
157 &ioc->release_work);
Xiaotian Fengff8c1472012-03-14 15:34:48 +0100158 else
159 free_ioc = true;
Tejun Heo11a31222012-02-07 07:51:30 +0100160 spin_unlock_irqrestore(&ioc->lock, flags);
Tejun Heob2efa052011-12-14 00:33:39 +0100161 }
Xiaotian Fengff8c1472012-03-14 15:34:48 +0100162
163 if (free_ioc)
164 kmem_cache_free(iocontext_cachep, ioc);
Jens Axboe86db1e22008-01-29 14:53:40 +0100165}
166EXPORT_SYMBOL(put_io_context);
167
Tejun Heof6e8d012012-03-05 13:15:26 -0800168/**
169 * put_io_context_active - put active reference on ioc
170 * @ioc: ioc of interest
171 *
172 * Undo get_io_context_active(). If active reference reaches zero after
173 * put, @ioc can never issue further IOs and ioscheds are notified.
174 */
175void put_io_context_active(struct io_context *ioc)
Jens Axboe86db1e22008-01-29 14:53:40 +0100176{
Omar Sandoval3d492c22017-02-10 10:32:34 -0800177 struct elevator_type *et;
Tejun Heo621032a2012-02-15 09:45:53 +0100178 unsigned long flags;
Tejun Heof6e8d012012-03-05 13:15:26 -0800179 struct io_cq *icq;
Jens Axboe86db1e22008-01-29 14:53:40 +0100180
Tejun Heof6e8d012012-03-05 13:15:26 -0800181 if (!atomic_dec_and_test(&ioc->active_ref)) {
Tejun Heo621032a2012-02-15 09:45:53 +0100182 put_io_context(ioc);
183 return;
184 }
185
186 /*
187 * Need ioc lock to walk icq_list and q lock to exit icq. Perform
188 * reverse double locking. Read comment in ioc_release_fn() for
189 * explanation on the nested locking annotation.
190 */
191retry:
192 spin_lock_irqsave_nested(&ioc->lock, flags, 1);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800193 hlist_for_each_entry(icq, &ioc->icq_list, ioc_node) {
Tejun Heo621032a2012-02-15 09:45:53 +0100194 if (icq->flags & ICQ_EXITED)
195 continue;
Omar Sandoval3d492c22017-02-10 10:32:34 -0800196
197 et = icq->q->elevator->type;
198 if (et->uses_mq) {
Tejun Heo621032a2012-02-15 09:45:53 +0100199 ioc_exit_icq(icq);
Tejun Heo621032a2012-02-15 09:45:53 +0100200 } else {
Omar Sandoval3d492c22017-02-10 10:32:34 -0800201 if (spin_trylock(icq->q->queue_lock)) {
202 ioc_exit_icq(icq);
203 spin_unlock(icq->q->queue_lock);
204 } else {
205 spin_unlock_irqrestore(&ioc->lock, flags);
206 cpu_relax();
207 goto retry;
208 }
Tejun Heo621032a2012-02-15 09:45:53 +0100209 }
210 }
211 spin_unlock_irqrestore(&ioc->lock, flags);
212
Tejun Heo11a31222012-02-07 07:51:30 +0100213 put_io_context(ioc);
Jens Axboe86db1e22008-01-29 14:53:40 +0100214}
215
Tejun Heof6e8d012012-03-05 13:15:26 -0800216/* Called by the exiting task */
217void exit_io_context(struct task_struct *task)
218{
219 struct io_context *ioc;
220
221 task_lock(task);
222 ioc = task->io_context;
223 task->io_context = NULL;
224 task_unlock(task);
225
226 atomic_dec(&ioc->nr_tasks);
227 put_io_context_active(ioc);
228}
229
Jens Axboe7b36a712017-03-02 13:59:08 -0700230static void __ioc_clear_queue(struct list_head *icq_list)
231{
232 unsigned long flags;
233
Sahitya Tummalacf5356592020-03-11 16:07:50 +0530234 rcu_read_lock();
Jens Axboe7b36a712017-03-02 13:59:08 -0700235 while (!list_empty(icq_list)) {
236 struct io_cq *icq = list_entry(icq_list->next,
237 struct io_cq, q_node);
238 struct io_context *ioc = icq->ioc;
239
240 spin_lock_irqsave(&ioc->lock, flags);
Sahitya Tummalacf5356592020-03-11 16:07:50 +0530241 if (icq->flags & ICQ_DESTROYED) {
242 spin_unlock_irqrestore(&ioc->lock, flags);
243 continue;
244 }
Jens Axboe7b36a712017-03-02 13:59:08 -0700245 ioc_destroy_icq(icq);
246 spin_unlock_irqrestore(&ioc->lock, flags);
247 }
Sahitya Tummalacf5356592020-03-11 16:07:50 +0530248 rcu_read_unlock();
Jens Axboe7b36a712017-03-02 13:59:08 -0700249}
250
Tejun Heo7e5a8792011-12-14 00:33:42 +0100251/**
252 * ioc_clear_queue - break any ioc association with the specified queue
253 * @q: request_queue being cleared
254 *
Jens Axboe7b36a712017-03-02 13:59:08 -0700255 * Walk @q->icq_list and exit all io_cq's.
Tejun Heo7e5a8792011-12-14 00:33:42 +0100256 */
257void ioc_clear_queue(struct request_queue *q)
258{
Jens Axboe7b36a712017-03-02 13:59:08 -0700259 LIST_HEAD(icq_list);
Tejun Heo7e5a8792011-12-14 00:33:42 +0100260
Jens Axboe7b36a712017-03-02 13:59:08 -0700261 spin_lock_irq(q->queue_lock);
262 list_splice_init(&q->icq_list, &icq_list);
Tejun Heo7e5a8792011-12-14 00:33:42 +0100263
Jens Axboe7b36a712017-03-02 13:59:08 -0700264 if (q->mq_ops) {
265 spin_unlock_irq(q->queue_lock);
266 __ioc_clear_queue(&icq_list);
267 } else {
268 __ioc_clear_queue(&icq_list);
269 spin_unlock_irq(q->queue_lock);
Tejun Heo7e5a8792011-12-14 00:33:42 +0100270 }
271}
272
Tejun Heo24acfc32012-03-05 13:15:24 -0800273int create_task_io_context(struct task_struct *task, gfp_t gfp_flags, int node)
Jens Axboe86db1e22008-01-29 14:53:40 +0100274{
Paul Bolledf415652011-06-06 05:11:34 +0200275 struct io_context *ioc;
Eric Dumazet3c9c7082012-05-31 13:39:05 +0200276 int ret;
Jens Axboe86db1e22008-01-29 14:53:40 +0100277
Tejun Heo42ec57a2011-12-14 00:33:37 +0100278 ioc = kmem_cache_alloc_node(iocontext_cachep, gfp_flags | __GFP_ZERO,
279 node);
280 if (unlikely(!ioc))
Tejun Heo24acfc32012-03-05 13:15:24 -0800281 return -ENOMEM;
Tejun Heo42ec57a2011-12-14 00:33:37 +0100282
283 /* initialize */
284 atomic_long_set(&ioc->refcount, 1);
Olof Johansson4638a832012-08-01 12:17:27 +0200285 atomic_set(&ioc->nr_tasks, 1);
Tejun Heof6e8d012012-03-05 13:15:26 -0800286 atomic_set(&ioc->active_ref, 1);
Tejun Heo42ec57a2011-12-14 00:33:37 +0100287 spin_lock_init(&ioc->lock);
Shakeel Buttc1379692018-07-03 10:14:46 -0700288 INIT_RADIX_TREE(&ioc->icq_tree, GFP_ATOMIC);
Tejun Heoc5869802011-12-14 00:33:41 +0100289 INIT_HLIST_HEAD(&ioc->icq_list);
Tejun Heob2efa052011-12-14 00:33:39 +0100290 INIT_WORK(&ioc->release_work, ioc_release_fn);
Jens Axboe86db1e22008-01-29 14:53:40 +0100291
Tejun Heofd638362011-12-25 14:29:14 +0100292 /*
293 * Try to install. ioc shouldn't be installed if someone else
294 * already did or @task, which isn't %current, is exiting. Note
295 * that we need to allow ioc creation on exiting %current as exit
296 * path may issue IOs from e.g. exit_files(). The exit path is
297 * responsible for not issuing IO after exit_io_context().
298 */
Tejun Heo6e736be2011-12-14 00:33:38 +0100299 task_lock(task);
Tejun Heofd638362011-12-25 14:29:14 +0100300 if (!task->io_context &&
301 (task == current || !(task->flags & PF_EXITING)))
Tejun Heo6e736be2011-12-14 00:33:38 +0100302 task->io_context = ioc;
Tejun Heof2dbd762011-12-14 00:33:40 +0100303 else
Tejun Heo6e736be2011-12-14 00:33:38 +0100304 kmem_cache_free(iocontext_cachep, ioc);
Eric Dumazet3c9c7082012-05-31 13:39:05 +0200305
306 ret = task->io_context ? 0 : -EBUSY;
307
Tejun Heo6e736be2011-12-14 00:33:38 +0100308 task_unlock(task);
Tejun Heo24acfc32012-03-05 13:15:24 -0800309
Eric Dumazet3c9c7082012-05-31 13:39:05 +0200310 return ret;
Jens Axboe86db1e22008-01-29 14:53:40 +0100311}
Jens Axboe86db1e22008-01-29 14:53:40 +0100312
Tejun Heo6e736be2011-12-14 00:33:38 +0100313/**
314 * get_task_io_context - get io_context of a task
315 * @task: task of interest
316 * @gfp_flags: allocation flags, used if allocation is necessary
317 * @node: allocation node, used if allocation is necessary
Jens Axboe86db1e22008-01-29 14:53:40 +0100318 *
Tejun Heo6e736be2011-12-14 00:33:38 +0100319 * Return io_context of @task. If it doesn't exist, it is created with
320 * @gfp_flags and @node. The returned io_context has its reference count
321 * incremented.
322 *
323 * This function always goes through task_lock() and it's better to use
Tejun Heof2dbd762011-12-14 00:33:40 +0100324 * %current->io_context + get_io_context() for %current.
Jens Axboe86db1e22008-01-29 14:53:40 +0100325 */
Tejun Heo6e736be2011-12-14 00:33:38 +0100326struct io_context *get_task_io_context(struct task_struct *task,
327 gfp_t gfp_flags, int node)
Jens Axboe86db1e22008-01-29 14:53:40 +0100328{
Tejun Heo6e736be2011-12-14 00:33:38 +0100329 struct io_context *ioc;
Jens Axboe86db1e22008-01-29 14:53:40 +0100330
Mel Gormand0164ad2015-11-06 16:28:21 -0800331 might_sleep_if(gfpflags_allow_blocking(gfp_flags));
Jens Axboe86db1e22008-01-29 14:53:40 +0100332
Tejun Heof2dbd762011-12-14 00:33:40 +0100333 do {
334 task_lock(task);
335 ioc = task->io_context;
336 if (likely(ioc)) {
337 get_io_context(ioc);
338 task_unlock(task);
339 return ioc;
340 }
Tejun Heo6e736be2011-12-14 00:33:38 +0100341 task_unlock(task);
Tejun Heo24acfc32012-03-05 13:15:24 -0800342 } while (!create_task_io_context(task, gfp_flags, node));
Tejun Heo6e736be2011-12-14 00:33:38 +0100343
Tejun Heof2dbd762011-12-14 00:33:40 +0100344 return NULL;
Jens Axboe86db1e22008-01-29 14:53:40 +0100345}
Tejun Heo6e736be2011-12-14 00:33:38 +0100346EXPORT_SYMBOL(get_task_io_context);
Jens Axboe86db1e22008-01-29 14:53:40 +0100347
Tejun Heo47fdd4c2011-12-14 00:33:42 +0100348/**
349 * ioc_lookup_icq - lookup io_cq from ioc
350 * @ioc: the associated io_context
351 * @q: the associated request_queue
352 *
353 * Look up io_cq associated with @ioc - @q pair from @ioc. Must be called
354 * with @q->queue_lock held.
355 */
356struct io_cq *ioc_lookup_icq(struct io_context *ioc, struct request_queue *q)
357{
358 struct io_cq *icq;
359
360 lockdep_assert_held(q->queue_lock);
361
362 /*
363 * icq's are indexed from @ioc using radix tree and hint pointer,
364 * both of which are protected with RCU. All removals are done
365 * holding both q and ioc locks, and we're holding q lock - if we
366 * find a icq which points to us, it's guaranteed to be valid.
367 */
368 rcu_read_lock();
369 icq = rcu_dereference(ioc->icq_hint);
370 if (icq && icq->q == q)
371 goto out;
372
373 icq = radix_tree_lookup(&ioc->icq_tree, q->id);
374 if (icq && icq->q == q)
375 rcu_assign_pointer(ioc->icq_hint, icq); /* allowed to race */
376 else
377 icq = NULL;
378out:
379 rcu_read_unlock();
380 return icq;
381}
382EXPORT_SYMBOL(ioc_lookup_icq);
383
Tejun Heof1f8cc92011-12-14 00:33:42 +0100384/**
385 * ioc_create_icq - create and link io_cq
Tejun Heo24acfc32012-03-05 13:15:24 -0800386 * @ioc: io_context of interest
Tejun Heof1f8cc92011-12-14 00:33:42 +0100387 * @q: request_queue of interest
388 * @gfp_mask: allocation mask
389 *
Tejun Heo24acfc32012-03-05 13:15:24 -0800390 * Make sure io_cq linking @ioc and @q exists. If icq doesn't exist, they
391 * will be created using @gfp_mask.
Tejun Heof1f8cc92011-12-14 00:33:42 +0100392 *
393 * The caller is responsible for ensuring @ioc won't go away and @q is
394 * alive and will stay alive until this function returns.
395 */
Tejun Heo24acfc32012-03-05 13:15:24 -0800396struct io_cq *ioc_create_icq(struct io_context *ioc, struct request_queue *q,
397 gfp_t gfp_mask)
Tejun Heof1f8cc92011-12-14 00:33:42 +0100398{
399 struct elevator_type *et = q->elevator->type;
Tejun Heof1f8cc92011-12-14 00:33:42 +0100400 struct io_cq *icq;
401
402 /* allocate stuff */
Tejun Heof1f8cc92011-12-14 00:33:42 +0100403 icq = kmem_cache_alloc_node(et->icq_cache, gfp_mask | __GFP_ZERO,
404 q->node);
405 if (!icq)
406 return NULL;
407
Jan Kara5e4c0d972013-09-11 14:26:05 -0700408 if (radix_tree_maybe_preload(gfp_mask) < 0) {
Tejun Heof1f8cc92011-12-14 00:33:42 +0100409 kmem_cache_free(et->icq_cache, icq);
410 return NULL;
411 }
412
413 icq->ioc = ioc;
414 icq->q = q;
415 INIT_LIST_HEAD(&icq->q_node);
416 INIT_HLIST_NODE(&icq->ioc_node);
417
418 /* lock both q and ioc and try to link @icq */
419 spin_lock_irq(q->queue_lock);
420 spin_lock(&ioc->lock);
421
422 if (likely(!radix_tree_insert(&ioc->icq_tree, q->id, icq))) {
423 hlist_add_head(&icq->ioc_node, &ioc->icq_list);
424 list_add(&icq->q_node, &q->icq_list);
Jens Axboebd166ef2017-01-17 06:03:22 -0700425 if (et->uses_mq && et->ops.mq.init_icq)
426 et->ops.mq.init_icq(icq);
427 else if (!et->uses_mq && et->ops.sq.elevator_init_icq_fn)
Jens Axboec51ca6c2016-12-10 15:13:59 -0700428 et->ops.sq.elevator_init_icq_fn(icq);
Tejun Heof1f8cc92011-12-14 00:33:42 +0100429 } else {
430 kmem_cache_free(et->icq_cache, icq);
431 icq = ioc_lookup_icq(ioc, q);
432 if (!icq)
433 printk(KERN_ERR "cfq: icq link failed!\n");
434 }
435
436 spin_unlock(&ioc->lock);
437 spin_unlock_irq(q->queue_lock);
438 radix_tree_preload_end();
439 return icq;
440}
441
Adrian Bunk13341592008-02-18 13:45:53 +0100442static int __init blk_ioc_init(void)
Jens Axboe86db1e22008-01-29 14:53:40 +0100443{
444 iocontext_cachep = kmem_cache_create("blkdev_ioc",
445 sizeof(struct io_context), 0, SLAB_PANIC, NULL);
446 return 0;
447}
448subsys_initcall(blk_ioc_init);