1
2
3
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>
10#include <linux/slab.h>
11#include <linux/sched/task.h>
12
13#include "blk.h"
14
15
16
17
18static struct kmem_cache *iocontext_cachep;
19
20
21
22
23
24
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}
31
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
39
40
41
42
43static void ioc_exit_icq(struct io_cq *icq)
44{
45 struct elevator_type *et = icq->q->elevator->type;
46
47 if (icq->flags & ICQ_EXITED)
48 return;
49
50 if (et->ops.exit_icq)
51 et->ops.exit_icq(icq);
52
53 icq->flags |= ICQ_EXITED;
54}
55
56
57
58
59
60static void ioc_destroy_icq(struct io_cq *icq)
61{
62 struct io_context *ioc = icq->ioc;
63 struct request_queue *q = icq->q;
64 struct elevator_type *et = q->elevator->type;
65
66 lockdep_assert_held(&ioc->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
74
75
76
77 if (rcu_access_pointer(ioc->icq_hint) == icq)
78 rcu_assign_pointer(ioc->icq_hint, NULL);
79
80 ioc_exit_icq(icq);
81
82
83
84
85
86 icq->__rcu_icq_cache = et->icq_cache;
87 icq->flags |= ICQ_DESTROYED;
88 call_rcu(&icq->__rcu_head, icq_free_icq_rcu);
89}
90
91
92
93
94
95static void ioc_release_fn(struct work_struct *work)
96{
97 struct io_context *ioc = container_of(work, struct io_context,
98 release_work);
99 spin_lock_irq(&ioc->lock);
100
101 while (!hlist_empty(&ioc->icq_list)) {
102 struct io_cq *icq = hlist_entry(ioc->icq_list.first,
103 struct io_cq, ioc_node);
104 struct request_queue *q = icq->q;
105
106 if (spin_trylock(&q->queue_lock)) {
107 ioc_destroy_icq(icq);
108 spin_unlock(&q->queue_lock);
109 } else {
110
111 rcu_read_lock();
112
113
114 spin_unlock(&ioc->lock);
115 spin_lock(&q->queue_lock);
116 spin_lock(&ioc->lock);
117
118
119
120
121
122 if (!(icq->flags & ICQ_DESTROYED))
123 ioc_destroy_icq(icq);
124
125 spin_unlock(&q->queue_lock);
126 rcu_read_unlock();
127 }
128 }
129
130 spin_unlock_irq(&ioc->lock);
131
132 kmem_cache_free(iocontext_cachep, ioc);
133}
134
135
136
137
138
139
140
141
142void put_io_context(struct io_context *ioc)
143{
144 unsigned long flags;
145 bool free_ioc = false;
146
147 if (ioc == NULL)
148 return;
149
150 BUG_ON(atomic_long_read(&ioc->refcount) <= 0);
151
152
153
154
155
156 if (atomic_long_dec_and_test(&ioc->refcount)) {
157 spin_lock_irqsave(&ioc->lock, flags);
158 if (!hlist_empty(&ioc->icq_list))
159 queue_work(system_power_efficient_wq,
160 &ioc->release_work);
161 else
162 free_ioc = true;
163 spin_unlock_irqrestore(&ioc->lock, flags);
164 }
165
166 if (free_ioc)
167 kmem_cache_free(iocontext_cachep, ioc);
168}
169
170
171
172
173
174
175
176
177void put_io_context_active(struct io_context *ioc)
178{
179 struct io_cq *icq;
180
181 if (!atomic_dec_and_test(&ioc->active_ref)) {
182 put_io_context(ioc);
183 return;
184 }
185
186 spin_lock_irq(&ioc->lock);
187 hlist_for_each_entry(icq, &ioc->icq_list, ioc_node) {
188 if (icq->flags & ICQ_EXITED)
189 continue;
190
191 ioc_exit_icq(icq);
192 }
193 spin_unlock_irq(&ioc->lock);
194
195 put_io_context(ioc);
196}
197
198
199void exit_io_context(struct task_struct *task)
200{
201 struct io_context *ioc;
202
203 task_lock(task);
204 ioc = task->io_context;
205 task->io_context = NULL;
206 task_unlock(task);
207
208 atomic_dec(&ioc->nr_tasks);
209 put_io_context_active(ioc);
210}
211
212static void __ioc_clear_queue(struct list_head *icq_list)
213{
214 unsigned long flags;
215
216 rcu_read_lock();
217 while (!list_empty(icq_list)) {
218 struct io_cq *icq = list_entry(icq_list->next,
219 struct io_cq, q_node);
220 struct io_context *ioc = icq->ioc;
221
222 spin_lock_irqsave(&ioc->lock, flags);
223 if (icq->flags & ICQ_DESTROYED) {
224 spin_unlock_irqrestore(&ioc->lock, flags);
225 continue;
226 }
227 ioc_destroy_icq(icq);
228 spin_unlock_irqrestore(&ioc->lock, flags);
229 }
230 rcu_read_unlock();
231}
232
233
234
235
236
237
238
239void ioc_clear_queue(struct request_queue *q)
240{
241 LIST_HEAD(icq_list);
242
243 spin_lock_irq(&q->queue_lock);
244 list_splice_init(&q->icq_list, &icq_list);
245 spin_unlock_irq(&q->queue_lock);
246
247 __ioc_clear_queue(&icq_list);
248}
249
250int create_task_io_context(struct task_struct *task, gfp_t gfp_flags, int node)
251{
252 struct io_context *ioc;
253 int ret;
254
255 ioc = kmem_cache_alloc_node(iocontext_cachep, gfp_flags | __GFP_ZERO,
256 node);
257 if (unlikely(!ioc))
258 return -ENOMEM;
259
260
261 atomic_long_set(&ioc->refcount, 1);
262 atomic_set(&ioc->nr_tasks, 1);
263 atomic_set(&ioc->active_ref, 1);
264 spin_lock_init(&ioc->lock);
265 INIT_RADIX_TREE(&ioc->icq_tree, GFP_ATOMIC);
266 INIT_HLIST_HEAD(&ioc->icq_list);
267 INIT_WORK(&ioc->release_work, ioc_release_fn);
268
269
270
271
272
273
274
275
276 task_lock(task);
277 if (!task->io_context &&
278 (task == current || !(task->flags & PF_EXITING)))
279 task->io_context = ioc;
280 else
281 kmem_cache_free(iocontext_cachep, ioc);
282
283 ret = task->io_context ? 0 : -EBUSY;
284
285 task_unlock(task);
286
287 return ret;
288}
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303struct io_context *get_task_io_context(struct task_struct *task,
304 gfp_t gfp_flags, int node)
305{
306 struct io_context *ioc;
307
308 might_sleep_if(gfpflags_allow_blocking(gfp_flags));
309
310 do {
311 task_lock(task);
312 ioc = task->io_context;
313 if (likely(ioc)) {
314 get_io_context(ioc);
315 task_unlock(task);
316 return ioc;
317 }
318 task_unlock(task);
319 } while (!create_task_io_context(task, gfp_flags, node));
320
321 return NULL;
322}
323
324
325
326
327
328
329
330
331
332struct io_cq *ioc_lookup_icq(struct io_context *ioc, struct request_queue *q)
333{
334 struct io_cq *icq;
335
336 lockdep_assert_held(&q->queue_lock);
337
338
339
340
341
342
343
344 rcu_read_lock();
345 icq = rcu_dereference(ioc->icq_hint);
346 if (icq && icq->q == q)
347 goto out;
348
349 icq = radix_tree_lookup(&ioc->icq_tree, q->id);
350 if (icq && icq->q == q)
351 rcu_assign_pointer(ioc->icq_hint, icq);
352 else
353 icq = NULL;
354out:
355 rcu_read_unlock();
356 return icq;
357}
358EXPORT_SYMBOL(ioc_lookup_icq);
359
360
361
362
363
364
365
366
367
368
369
370
371
372struct io_cq *ioc_create_icq(struct io_context *ioc, struct request_queue *q,
373 gfp_t gfp_mask)
374{
375 struct elevator_type *et = q->elevator->type;
376 struct io_cq *icq;
377
378
379 icq = kmem_cache_alloc_node(et->icq_cache, gfp_mask | __GFP_ZERO,
380 q->node);
381 if (!icq)
382 return NULL;
383
384 if (radix_tree_maybe_preload(gfp_mask) < 0) {
385 kmem_cache_free(et->icq_cache, icq);
386 return NULL;
387 }
388
389 icq->ioc = ioc;
390 icq->q = q;
391 INIT_LIST_HEAD(&icq->q_node);
392 INIT_HLIST_NODE(&icq->ioc_node);
393
394
395 spin_lock_irq(&q->queue_lock);
396 spin_lock(&ioc->lock);
397
398 if (likely(!radix_tree_insert(&ioc->icq_tree, q->id, icq))) {
399 hlist_add_head(&icq->ioc_node, &ioc->icq_list);
400 list_add(&icq->q_node, &q->icq_list);
401 if (et->ops.init_icq)
402 et->ops.init_icq(icq);
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
416static int __init blk_ioc_init(void)
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);
423