blob: dc7fb064fd5f72386a728f6dccdef843e7863b46 [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>
Christoph Hellwiga411cd32021-12-09 07:31:27 +010011#include <linux/security.h>
Ingo Molnarf719ff9b2017-02-06 10:57:33 +010012#include <linux/sched/task.h>
Jens Axboe86db1e22008-01-29 14:53:40 +010013
14#include "blk.h"
Christoph Hellwig2aa77452021-11-23 19:53:08 +010015#include "blk-mq-sched.h"
Jens Axboe86db1e22008-01-29 14:53:40 +010016
17/*
18 * For io context allocations
19 */
20static struct kmem_cache *iocontext_cachep;
21
Tejun Heo6e736be2011-12-14 00:33:38 +010022/**
23 * get_io_context - increment reference count to io_context
24 * @ioc: io_context to get
25 *
26 * Increment reference count to @ioc.
27 */
Christoph Hellwig87dd1d62021-11-26 12:58:10 +010028static void get_io_context(struct io_context *ioc)
Tejun Heo6e736be2011-12-14 00:33:38 +010029{
30 BUG_ON(atomic_long_read(&ioc->refcount) <= 0);
31 atomic_long_inc(&ioc->refcount);
32}
Tejun Heo6e736be2011-12-14 00:33:38 +010033
Tejun Heo7e5a8792011-12-14 00:33:42 +010034static void icq_free_icq_rcu(struct rcu_head *head)
35{
36 struct io_cq *icq = container_of(head, struct io_cq, __rcu_head);
37
38 kmem_cache_free(icq->__rcu_icq_cache, icq);
39}
40
Omar Sandoval3d492c22017-02-10 10:32:34 -080041/*
Jens Axboe7b36a712017-03-02 13:59:08 -070042 * Exit an icq. Called with ioc locked for blk-mq, and with both ioc
43 * and queue locked for legacy.
Omar Sandoval3d492c22017-02-10 10:32:34 -080044 */
Tejun Heo7e5a8792011-12-14 00:33:42 +010045static void ioc_exit_icq(struct io_cq *icq)
46{
Tejun Heo621032a2012-02-15 09:45:53 +010047 struct elevator_type *et = icq->q->elevator->type;
48
49 if (icq->flags & ICQ_EXITED)
50 return;
51
Jens Axboef9cd4bf2018-11-01 16:41:41 -060052 if (et->ops.exit_icq)
53 et->ops.exit_icq(icq);
Tejun Heo621032a2012-02-15 09:45:53 +010054
55 icq->flags |= ICQ_EXITED;
56}
57
Christoph Hellwig4be8a2e2021-12-09 07:31:23 +010058static void ioc_exit_icqs(struct io_context *ioc)
59{
60 struct io_cq *icq;
61
62 spin_lock_irq(&ioc->lock);
63 hlist_for_each_entry(icq, &ioc->icq_list, ioc_node)
64 ioc_exit_icq(icq);
65 spin_unlock_irq(&ioc->lock);
66}
67
Jens Axboe7b36a712017-03-02 13:59:08 -070068/*
69 * Release an icq. Called with ioc locked for blk-mq, and with both ioc
70 * and queue locked for legacy.
71 */
Tejun Heo621032a2012-02-15 09:45:53 +010072static void ioc_destroy_icq(struct io_cq *icq)
73{
Tejun Heo7e5a8792011-12-14 00:33:42 +010074 struct io_context *ioc = icq->ioc;
75 struct request_queue *q = icq->q;
76 struct elevator_type *et = q->elevator->type;
77
78 lockdep_assert_held(&ioc->lock);
Tejun Heo7e5a8792011-12-14 00:33:42 +010079
80 radix_tree_delete(&ioc->icq_tree, icq->q->id);
81 hlist_del_init(&icq->ioc_node);
82 list_del_init(&icq->q_node);
83
84 /*
85 * Both setting lookup hint to and clearing it from @icq are done
86 * under queue_lock. If it's not pointing to @icq now, it never
87 * will. Hint assignment itself can race safely.
88 */
Paul E. McKenneyec6c676a2014-02-17 13:35:57 -080089 if (rcu_access_pointer(ioc->icq_hint) == icq)
Tejun Heo7e5a8792011-12-14 00:33:42 +010090 rcu_assign_pointer(ioc->icq_hint, NULL);
91
Tejun Heo621032a2012-02-15 09:45:53 +010092 ioc_exit_icq(icq);
Tejun Heo7e5a8792011-12-14 00:33:42 +010093
94 /*
95 * @icq->q might have gone away by the time RCU callback runs
96 * making it impossible to determine icq_cache. Record it in @icq.
97 */
98 icq->__rcu_icq_cache = et->icq_cache;
Sahitya Tummala30a2da72020-03-11 16:07:50 +053099 icq->flags |= ICQ_DESTROYED;
Tejun Heo7e5a8792011-12-14 00:33:42 +0100100 call_rcu(&icq->__rcu_head, icq_free_icq_rcu);
101}
102
Tejun Heob2efa052011-12-14 00:33:39 +0100103/*
104 * Slow path for ioc release in put_io_context(). Performs double-lock
Tejun Heoc5869802011-12-14 00:33:41 +0100105 * dancing to unlink all icq's and then frees ioc.
Tejun Heob2efa052011-12-14 00:33:39 +0100106 */
107static void ioc_release_fn(struct work_struct *work)
108{
109 struct io_context *ioc = container_of(work, struct io_context,
110 release_work);
John Ognessa43f0852020-06-19 17:23:17 +0206111 spin_lock_irq(&ioc->lock);
Tejun Heob2efa052011-12-14 00:33:39 +0100112
Tejun Heoc5869802011-12-14 00:33:41 +0100113 while (!hlist_empty(&ioc->icq_list)) {
114 struct io_cq *icq = hlist_entry(ioc->icq_list.first,
115 struct io_cq, ioc_node);
Tejun Heo2274b022012-02-15 09:45:52 +0100116 struct request_queue *q = icq->q;
Tejun Heob2efa052011-12-14 00:33:39 +0100117
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700118 if (spin_trylock(&q->queue_lock)) {
Tejun Heo621032a2012-02-15 09:45:53 +0100119 ioc_destroy_icq(icq);
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700120 spin_unlock(&q->queue_lock);
Tejun Heo2274b022012-02-15 09:45:52 +0100121 } else {
John Ognessab96bba2020-06-19 17:23:18 +0206122 /* Make sure q and icq cannot be freed. */
123 rcu_read_lock();
124
125 /* Re-acquire the locks in the correct order. */
126 spin_unlock(&ioc->lock);
127 spin_lock(&q->queue_lock);
128 spin_lock(&ioc->lock);
129
130 /*
131 * The icq may have been destroyed when the ioc lock
132 * was released.
133 */
134 if (!(icq->flags & ICQ_DESTROYED))
135 ioc_destroy_icq(icq);
136
137 spin_unlock(&q->queue_lock);
138 rcu_read_unlock();
Tejun Heob2efa052011-12-14 00:33:39 +0100139 }
Jens Axboeffc4e752008-02-19 10:02:29 +0100140 }
Tejun Heob2efa052011-12-14 00:33:39 +0100141
John Ognessa43f0852020-06-19 17:23:17 +0206142 spin_unlock_irq(&ioc->lock);
Tejun Heob2efa052011-12-14 00:33:39 +0100143
144 kmem_cache_free(iocontext_cachep, ioc);
Jens Axboe86db1e22008-01-29 14:53:40 +0100145}
146
Christoph Hellwigedf70ff2021-12-09 07:31:25 +0100147/*
148 * Releasing icqs requires reverse order double locking and we may already be
149 * holding a queue_lock. Do it asynchronously from a workqueue.
150 */
151static bool ioc_delay_free(struct io_context *ioc)
152{
153 unsigned long flags;
154
155 spin_lock_irqsave(&ioc->lock, flags);
156 if (!hlist_empty(&ioc->icq_list)) {
157 queue_work(system_power_efficient_wq, &ioc->release_work);
158 spin_unlock_irqrestore(&ioc->lock, flags);
159 return true;
160 }
161 spin_unlock_irqrestore(&ioc->lock, flags);
162 return false;
163}
164
Tejun Heo42ec57a2011-12-14 00:33:37 +0100165/**
166 * put_io_context - put a reference of io_context
167 * @ioc: io_context to put
168 *
169 * Decrement reference count of @ioc and release it if the count reaches
Tejun Heo11a31222012-02-07 07:51:30 +0100170 * zero.
Jens Axboe86db1e22008-01-29 14:53:40 +0100171 */
Tejun Heo11a31222012-02-07 07:51:30 +0100172void put_io_context(struct io_context *ioc)
Jens Axboe86db1e22008-01-29 14:53:40 +0100173{
Tejun Heo42ec57a2011-12-14 00:33:37 +0100174 BUG_ON(atomic_long_read(&ioc->refcount) <= 0);
Christoph Hellwigedf70ff2021-12-09 07:31:25 +0100175 if (atomic_long_dec_and_test(&ioc->refcount) && !ioc_delay_free(ioc))
Xiaotian Fengff8c1472012-03-14 15:34:48 +0100176 kmem_cache_free(iocontext_cachep, ioc);
Jens Axboe86db1e22008-01-29 14:53:40 +0100177}
Christoph Hellwig222ee582021-11-26 12:58:11 +0100178EXPORT_SYMBOL_GPL(put_io_context);
Jens Axboe86db1e22008-01-29 14:53:40 +0100179
Tejun Heof6e8d012012-03-05 13:15:26 -0800180/* Called by the exiting task */
181void exit_io_context(struct task_struct *task)
182{
183 struct io_context *ioc;
184
185 task_lock(task);
186 ioc = task->io_context;
187 task->io_context = NULL;
188 task_unlock(task);
189
Christoph Hellwig4be8a2e2021-12-09 07:31:23 +0100190 if (atomic_dec_and_test(&ioc->active_ref)) {
191 ioc_exit_icqs(ioc);
192 put_io_context(ioc);
193 }
Tejun Heof6e8d012012-03-05 13:15:26 -0800194}
195
Tejun Heo7e5a8792011-12-14 00:33:42 +0100196/**
197 * ioc_clear_queue - break any ioc association with the specified queue
198 * @q: request_queue being cleared
199 *
Jens Axboe7b36a712017-03-02 13:59:08 -0700200 * Walk @q->icq_list and exit all io_cq's.
Tejun Heo7e5a8792011-12-14 00:33:42 +0100201 */
202void ioc_clear_queue(struct request_queue *q)
203{
Jens Axboe7b36a712017-03-02 13:59:08 -0700204 LIST_HEAD(icq_list);
Tejun Heo7e5a8792011-12-14 00:33:42 +0100205
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700206 spin_lock_irq(&q->queue_lock);
Jens Axboe7b36a712017-03-02 13:59:08 -0700207 list_splice_init(&q->icq_list, &icq_list);
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700208 spin_unlock_irq(&q->queue_lock);
Tejun Heo7e5a8792011-12-14 00:33:42 +0100209
Christoph Hellwig091abcb2021-12-09 07:31:26 +0100210 rcu_read_lock();
211 while (!list_empty(&icq_list)) {
212 struct io_cq *icq =
213 list_entry(icq_list.next, struct io_cq, q_node);
214
215 spin_lock_irq(&icq->ioc->lock);
216 if (!(icq->flags & ICQ_DESTROYED))
217 ioc_destroy_icq(icq);
218 spin_unlock_irq(&icq->ioc->lock);
219 }
220 rcu_read_unlock();
Tejun Heo7e5a8792011-12-14 00:33:42 +0100221}
222
Christoph Hellwiga0f14d82021-11-26 12:58:13 +0100223static struct io_context *alloc_io_context(gfp_t gfp_flags, int node)
Jens Axboe86db1e22008-01-29 14:53:40 +0100224{
Paul Bolledf415652011-06-06 05:11:34 +0200225 struct io_context *ioc;
Jens Axboe86db1e22008-01-29 14:53:40 +0100226
Tejun Heo42ec57a2011-12-14 00:33:37 +0100227 ioc = kmem_cache_alloc_node(iocontext_cachep, gfp_flags | __GFP_ZERO,
228 node);
229 if (unlikely(!ioc))
Christoph Hellwiga0f14d82021-11-26 12:58:13 +0100230 return NULL;
Tejun Heo42ec57a2011-12-14 00:33:37 +0100231
Tejun Heo42ec57a2011-12-14 00:33:37 +0100232 atomic_long_set(&ioc->refcount, 1);
Tejun Heof6e8d012012-03-05 13:15:26 -0800233 atomic_set(&ioc->active_ref, 1);
Tejun Heo42ec57a2011-12-14 00:33:37 +0100234 spin_lock_init(&ioc->lock);
Shakeel Buttc1379692018-07-03 10:14:46 -0700235 INIT_RADIX_TREE(&ioc->icq_tree, GFP_ATOMIC);
Tejun Heoc5869802011-12-14 00:33:41 +0100236 INIT_HLIST_HEAD(&ioc->icq_list);
Tejun Heob2efa052011-12-14 00:33:39 +0100237 INIT_WORK(&ioc->release_work, ioc_release_fn);
Christoph Hellwiga0f14d82021-11-26 12:58:13 +0100238 return ioc;
239}
240
Christoph Hellwiga411cd32021-12-09 07:31:27 +0100241int set_task_ioprio(struct task_struct *task, int ioprio)
242{
243 int err;
Christoph Hellwiga411cd32021-12-09 07:31:27 +0100244 const struct cred *cred = current_cred(), *tcred;
245
246 rcu_read_lock();
247 tcred = __task_cred(task);
248 if (!uid_eq(tcred->uid, cred->euid) &&
249 !uid_eq(tcred->uid, cred->uid) && !capable(CAP_SYS_NICE)) {
250 rcu_read_unlock();
251 return -EPERM;
252 }
253 rcu_read_unlock();
254
255 err = security_task_setioprio(task, ioprio);
256 if (err)
257 return err;
258
Christoph Hellwig84721612021-12-09 07:31:28 +0100259 task_lock(task);
260 if (unlikely(!task->io_context)) {
261 struct io_context *ioc;
Christoph Hellwiga411cd32021-12-09 07:31:27 +0100262
Christoph Hellwig84721612021-12-09 07:31:28 +0100263 task_unlock(task);
Christoph Hellwig5fc11ee2021-12-09 07:31:29 +0100264
265 ioc = alloc_io_context(GFP_ATOMIC, NUMA_NO_NODE);
266 if (!ioc)
267 return -ENOMEM;
268
269 task_lock(task);
270 if (task->io_context || (task->flags & PF_EXITING)) {
271 kmem_cache_free(iocontext_cachep, ioc);
272 ioc = task->io_context;
273 } else {
274 task->io_context = ioc;
Christoph Hellwig84721612021-12-09 07:31:28 +0100275 }
Christoph Hellwig84721612021-12-09 07:31:28 +0100276 }
277 task->io_context->ioprio = ioprio;
278 task_unlock(task);
279 return 0;
Christoph Hellwiga411cd32021-12-09 07:31:27 +0100280}
281EXPORT_SYMBOL_GPL(set_task_ioprio);
282
Christoph Hellwig88c9a2c2021-11-26 12:58:05 +0100283int __copy_io(unsigned long clone_flags, struct task_struct *tsk)
284{
285 struct io_context *ioc = current->io_context;
Christoph Hellwig88c9a2c2021-11-26 12:58:05 +0100286
287 /*
288 * Share io context with parent, if CLONE_IO is set
289 */
290 if (clone_flags & CLONE_IO) {
Christoph Hellwig50569c22021-11-26 12:58:12 +0100291 atomic_inc(&ioc->active_ref);
Christoph Hellwig88c9a2c2021-11-26 12:58:05 +0100292 tsk->io_context = ioc;
293 } else if (ioprio_valid(ioc->ioprio)) {
Christoph Hellwig8ffc1362021-11-26 12:58:14 +0100294 tsk->io_context = alloc_io_context(GFP_KERNEL, NUMA_NO_NODE);
295 if (!tsk->io_context)
Christoph Hellwig88c9a2c2021-11-26 12:58:05 +0100296 return -ENOMEM;
Christoph Hellwig8ffc1362021-11-26 12:58:14 +0100297 tsk->io_context->ioprio = ioc->ioprio;
Christoph Hellwig88c9a2c2021-11-26 12:58:05 +0100298 }
299
300 return 0;
301}
302
Tejun Heo47fdd4c2011-12-14 00:33:42 +0100303/**
304 * ioc_lookup_icq - lookup io_cq from ioc
Tejun Heo47fdd4c2011-12-14 00:33:42 +0100305 * @q: the associated request_queue
306 *
307 * Look up io_cq associated with @ioc - @q pair from @ioc. Must be called
308 * with @q->queue_lock held.
309 */
Christoph Hellwigeca58922021-11-26 12:58:17 +0100310struct io_cq *ioc_lookup_icq(struct request_queue *q)
Tejun Heo47fdd4c2011-12-14 00:33:42 +0100311{
Christoph Hellwigeca58922021-11-26 12:58:17 +0100312 struct io_context *ioc = current->io_context;
Tejun Heo47fdd4c2011-12-14 00:33:42 +0100313 struct io_cq *icq;
314
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700315 lockdep_assert_held(&q->queue_lock);
Tejun Heo47fdd4c2011-12-14 00:33:42 +0100316
317 /*
318 * icq's are indexed from @ioc using radix tree and hint pointer,
319 * both of which are protected with RCU. All removals are done
320 * holding both q and ioc locks, and we're holding q lock - if we
321 * find a icq which points to us, it's guaranteed to be valid.
322 */
323 rcu_read_lock();
324 icq = rcu_dereference(ioc->icq_hint);
325 if (icq && icq->q == q)
326 goto out;
327
328 icq = radix_tree_lookup(&ioc->icq_tree, q->id);
329 if (icq && icq->q == q)
330 rcu_assign_pointer(ioc->icq_hint, icq); /* allowed to race */
331 else
332 icq = NULL;
333out:
334 rcu_read_unlock();
335 return icq;
336}
337EXPORT_SYMBOL(ioc_lookup_icq);
338
Tejun Heof1f8cc92011-12-14 00:33:42 +0100339/**
340 * ioc_create_icq - create and link io_cq
341 * @q: request_queue of interest
Tejun Heof1f8cc92011-12-14 00:33:42 +0100342 *
Tejun Heo24acfc32012-03-05 13:15:24 -0800343 * Make sure io_cq linking @ioc and @q exists. If icq doesn't exist, they
344 * will be created using @gfp_mask.
Tejun Heof1f8cc92011-12-14 00:33:42 +0100345 *
346 * The caller is responsible for ensuring @ioc won't go away and @q is
347 * alive and will stay alive until this function returns.
348 */
Christoph Hellwig18b74c42021-11-26 12:58:16 +0100349static struct io_cq *ioc_create_icq(struct request_queue *q)
Tejun Heof1f8cc92011-12-14 00:33:42 +0100350{
Christoph Hellwig18b74c42021-11-26 12:58:16 +0100351 struct io_context *ioc = current->io_context;
Tejun Heof1f8cc92011-12-14 00:33:42 +0100352 struct elevator_type *et = q->elevator->type;
Tejun Heof1f8cc92011-12-14 00:33:42 +0100353 struct io_cq *icq;
354
355 /* allocate stuff */
Christoph Hellwig18b74c42021-11-26 12:58:16 +0100356 icq = kmem_cache_alloc_node(et->icq_cache, GFP_ATOMIC | __GFP_ZERO,
Tejun Heof1f8cc92011-12-14 00:33:42 +0100357 q->node);
358 if (!icq)
359 return NULL;
360
Christoph Hellwig18b74c42021-11-26 12:58:16 +0100361 if (radix_tree_maybe_preload(GFP_ATOMIC) < 0) {
Tejun Heof1f8cc92011-12-14 00:33:42 +0100362 kmem_cache_free(et->icq_cache, icq);
363 return NULL;
364 }
365
366 icq->ioc = ioc;
367 icq->q = q;
368 INIT_LIST_HEAD(&icq->q_node);
369 INIT_HLIST_NODE(&icq->ioc_node);
370
371 /* lock both q and ioc and try to link @icq */
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700372 spin_lock_irq(&q->queue_lock);
Tejun Heof1f8cc92011-12-14 00:33:42 +0100373 spin_lock(&ioc->lock);
374
375 if (likely(!radix_tree_insert(&ioc->icq_tree, q->id, icq))) {
376 hlist_add_head(&icq->ioc_node, &ioc->icq_list);
377 list_add(&icq->q_node, &q->icq_list);
Jens Axboef9cd4bf2018-11-01 16:41:41 -0600378 if (et->ops.init_icq)
379 et->ops.init_icq(icq);
Tejun Heof1f8cc92011-12-14 00:33:42 +0100380 } else {
381 kmem_cache_free(et->icq_cache, icq);
Christoph Hellwigeca58922021-11-26 12:58:17 +0100382 icq = ioc_lookup_icq(q);
Tejun Heof1f8cc92011-12-14 00:33:42 +0100383 if (!icq)
384 printk(KERN_ERR "cfq: icq link failed!\n");
385 }
386
387 spin_unlock(&ioc->lock);
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700388 spin_unlock_irq(&q->queue_lock);
Tejun Heof1f8cc92011-12-14 00:33:42 +0100389 radix_tree_preload_end();
390 return icq;
391}
392
Christoph Hellwig87dd1d62021-11-26 12:58:10 +0100393struct io_cq *ioc_find_get_icq(struct request_queue *q)
394{
Christoph Hellwigd538ea42021-11-26 12:58:15 +0100395 struct io_context *ioc = current->io_context;
396 struct io_cq *icq = NULL;
Christoph Hellwig87dd1d62021-11-26 12:58:10 +0100397
Christoph Hellwigd538ea42021-11-26 12:58:15 +0100398 if (unlikely(!ioc)) {
Christoph Hellwig90b627f2021-12-09 07:31:30 +0100399 ioc = alloc_io_context(GFP_ATOMIC, q->node);
Christoph Hellwigd538ea42021-11-26 12:58:15 +0100400 if (!ioc)
401 return NULL;
Christoph Hellwig90b627f2021-12-09 07:31:30 +0100402
403 task_lock(current);
404 if (current->io_context) {
405 kmem_cache_free(iocontext_cachep, ioc);
406 ioc = current->io_context;
407 } else {
408 current->io_context = ioc;
409 }
410
411 get_io_context(ioc);
412 task_unlock(current);
Christoph Hellwigd538ea42021-11-26 12:58:15 +0100413 } else {
414 get_io_context(ioc);
Christoph Hellwig87dd1d62021-11-26 12:58:10 +0100415
Christoph Hellwigd538ea42021-11-26 12:58:15 +0100416 spin_lock_irq(&q->queue_lock);
Christoph Hellwigeca58922021-11-26 12:58:17 +0100417 icq = ioc_lookup_icq(q);
Christoph Hellwigd538ea42021-11-26 12:58:15 +0100418 spin_unlock_irq(&q->queue_lock);
419 }
Christoph Hellwig87dd1d62021-11-26 12:58:10 +0100420
421 if (!icq) {
Christoph Hellwig18b74c42021-11-26 12:58:16 +0100422 icq = ioc_create_icq(q);
Christoph Hellwigd538ea42021-11-26 12:58:15 +0100423 if (!icq) {
424 put_io_context(ioc);
Christoph Hellwig87dd1d62021-11-26 12:58:10 +0100425 return NULL;
Christoph Hellwigd538ea42021-11-26 12:58:15 +0100426 }
Christoph Hellwig87dd1d62021-11-26 12:58:10 +0100427 }
Christoph Hellwig87dd1d62021-11-26 12:58:10 +0100428 return icq;
429}
430EXPORT_SYMBOL_GPL(ioc_find_get_icq);
431
Adrian Bunk13341592008-02-18 13:45:53 +0100432static int __init blk_ioc_init(void)
Jens Axboe86db1e22008-01-29 14:53:40 +0100433{
434 iocontext_cachep = kmem_cache_create("blkdev_ioc",
435 sizeof(struct io_context), 0, SLAB_PANIC, NULL);
436 return 0;
437}
438subsys_initcall(blk_ioc_init);