]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - block/blk-ioc.c
Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[karo-tx-linux.git] / block / blk-ioc.c
1 /*
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>
9 #include <linux/bootmem.h>      /* for max_pfn/max_low_pfn */
10 #include <linux/slab.h>
11
12 #include "blk.h"
13
14 /*
15  * For io context allocations
16  */
17 static struct kmem_cache *iocontext_cachep;
18
19 /**
20  * get_io_context - increment reference count to io_context
21  * @ioc: io_context to get
22  *
23  * Increment reference count to @ioc.
24  */
25 void get_io_context(struct io_context *ioc)
26 {
27         BUG_ON(atomic_long_read(&ioc->refcount) <= 0);
28         atomic_long_inc(&ioc->refcount);
29 }
30 EXPORT_SYMBOL(get_io_context);
31
32 static 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 /* Exit an icq. Called with both ioc and q locked. */
40 static void ioc_exit_icq(struct io_cq *icq)
41 {
42         struct elevator_type *et = icq->q->elevator->type;
43
44         if (icq->flags & ICQ_EXITED)
45                 return;
46
47         if (et->ops.elevator_exit_icq_fn)
48                 et->ops.elevator_exit_icq_fn(icq);
49
50         icq->flags |= ICQ_EXITED;
51 }
52
53 /* Release an icq.  Called with both ioc and q locked. */
54 static void ioc_destroy_icq(struct io_cq *icq)
55 {
56         struct io_context *ioc = icq->ioc;
57         struct request_queue *q = icq->q;
58         struct elevator_type *et = q->elevator->type;
59
60         lockdep_assert_held(&ioc->lock);
61         lockdep_assert_held(q->queue_lock);
62
63         radix_tree_delete(&ioc->icq_tree, icq->q->id);
64         hlist_del_init(&icq->ioc_node);
65         list_del_init(&icq->q_node);
66
67         /*
68          * Both setting lookup hint to and clearing it from @icq are done
69          * under queue_lock.  If it's not pointing to @icq now, it never
70          * will.  Hint assignment itself can race safely.
71          */
72         if (rcu_dereference_raw(ioc->icq_hint) == icq)
73                 rcu_assign_pointer(ioc->icq_hint, NULL);
74
75         ioc_exit_icq(icq);
76
77         /*
78          * @icq->q might have gone away by the time RCU callback runs
79          * making it impossible to determine icq_cache.  Record it in @icq.
80          */
81         icq->__rcu_icq_cache = et->icq_cache;
82         call_rcu(&icq->__rcu_head, icq_free_icq_rcu);
83 }
84
85 /*
86  * Slow path for ioc release in put_io_context().  Performs double-lock
87  * dancing to unlink all icq's and then frees ioc.
88  */
89 static void ioc_release_fn(struct work_struct *work)
90 {
91         struct io_context *ioc = container_of(work, struct io_context,
92                                               release_work);
93         unsigned long flags;
94
95         /*
96          * Exiting icq may call into put_io_context() through elevator
97          * which will trigger lockdep warning.  The ioc's are guaranteed to
98          * be different, use a different locking subclass here.  Use
99          * irqsave variant as there's no spin_lock_irq_nested().
100          */
101         spin_lock_irqsave_nested(&ioc->lock, flags, 1);
102
103         while (!hlist_empty(&ioc->icq_list)) {
104                 struct io_cq *icq = hlist_entry(ioc->icq_list.first,
105                                                 struct io_cq, ioc_node);
106                 struct request_queue *q = icq->q;
107
108                 if (spin_trylock(q->queue_lock)) {
109                         ioc_destroy_icq(icq);
110                         spin_unlock(q->queue_lock);
111                 } else {
112                         spin_unlock_irqrestore(&ioc->lock, flags);
113                         cpu_relax();
114                         spin_lock_irqsave_nested(&ioc->lock, flags, 1);
115                 }
116         }
117
118         spin_unlock_irqrestore(&ioc->lock, flags);
119
120         kmem_cache_free(iocontext_cachep, ioc);
121 }
122
123 /**
124  * put_io_context - put a reference of io_context
125  * @ioc: io_context to put
126  *
127  * Decrement reference count of @ioc and release it if the count reaches
128  * zero.
129  */
130 void put_io_context(struct io_context *ioc)
131 {
132         unsigned long flags;
133         bool free_ioc = false;
134
135         if (ioc == NULL)
136                 return;
137
138         BUG_ON(atomic_long_read(&ioc->refcount) <= 0);
139
140         /*
141          * Releasing ioc requires reverse order double locking and we may
142          * already be holding a queue_lock.  Do it asynchronously from wq.
143          */
144         if (atomic_long_dec_and_test(&ioc->refcount)) {
145                 spin_lock_irqsave(&ioc->lock, flags);
146                 if (!hlist_empty(&ioc->icq_list))
147                         schedule_work(&ioc->release_work);
148                 else
149                         free_ioc = true;
150                 spin_unlock_irqrestore(&ioc->lock, flags);
151         }
152
153         if (free_ioc)
154                 kmem_cache_free(iocontext_cachep, ioc);
155 }
156 EXPORT_SYMBOL(put_io_context);
157
158 /**
159  * put_io_context_active - put active reference on ioc
160  * @ioc: ioc of interest
161  *
162  * Undo get_io_context_active().  If active reference reaches zero after
163  * put, @ioc can never issue further IOs and ioscheds are notified.
164  */
165 void put_io_context_active(struct io_context *ioc)
166 {
167         struct hlist_node *n;
168         unsigned long flags;
169         struct io_cq *icq;
170
171         if (!atomic_dec_and_test(&ioc->active_ref)) {
172                 put_io_context(ioc);
173                 return;
174         }
175
176         /*
177          * Need ioc lock to walk icq_list and q lock to exit icq.  Perform
178          * reverse double locking.  Read comment in ioc_release_fn() for
179          * explanation on the nested locking annotation.
180          */
181 retry:
182         spin_lock_irqsave_nested(&ioc->lock, flags, 1);
183         hlist_for_each_entry(icq, n, &ioc->icq_list, ioc_node) {
184                 if (icq->flags & ICQ_EXITED)
185                         continue;
186                 if (spin_trylock(icq->q->queue_lock)) {
187                         ioc_exit_icq(icq);
188                         spin_unlock(icq->q->queue_lock);
189                 } else {
190                         spin_unlock_irqrestore(&ioc->lock, flags);
191                         cpu_relax();
192                         goto retry;
193                 }
194         }
195         spin_unlock_irqrestore(&ioc->lock, flags);
196
197         put_io_context(ioc);
198 }
199
200 /* Called by the exiting task */
201 void exit_io_context(struct task_struct *task)
202 {
203         struct io_context *ioc;
204
205         task_lock(task);
206         ioc = task->io_context;
207         task->io_context = NULL;
208         task_unlock(task);
209
210         atomic_dec(&ioc->nr_tasks);
211         put_io_context_active(ioc);
212 }
213
214 /**
215  * ioc_clear_queue - break any ioc association with the specified queue
216  * @q: request_queue being cleared
217  *
218  * Walk @q->icq_list and exit all io_cq's.  Must be called with @q locked.
219  */
220 void ioc_clear_queue(struct request_queue *q)
221 {
222         lockdep_assert_held(q->queue_lock);
223
224         while (!list_empty(&q->icq_list)) {
225                 struct io_cq *icq = list_entry(q->icq_list.next,
226                                                struct io_cq, q_node);
227                 struct io_context *ioc = icq->ioc;
228
229                 spin_lock(&ioc->lock);
230                 ioc_destroy_icq(icq);
231                 spin_unlock(&ioc->lock);
232         }
233 }
234
235 int create_task_io_context(struct task_struct *task, gfp_t gfp_flags, int node)
236 {
237         struct io_context *ioc;
238
239         ioc = kmem_cache_alloc_node(iocontext_cachep, gfp_flags | __GFP_ZERO,
240                                     node);
241         if (unlikely(!ioc))
242                 return -ENOMEM;
243
244         /* initialize */
245         atomic_long_set(&ioc->refcount, 1);
246         atomic_set(&ioc->active_ref, 1);
247         spin_lock_init(&ioc->lock);
248         INIT_RADIX_TREE(&ioc->icq_tree, GFP_ATOMIC | __GFP_HIGH);
249         INIT_HLIST_HEAD(&ioc->icq_list);
250         INIT_WORK(&ioc->release_work, ioc_release_fn);
251
252         /*
253          * Try to install.  ioc shouldn't be installed if someone else
254          * already did or @task, which isn't %current, is exiting.  Note
255          * that we need to allow ioc creation on exiting %current as exit
256          * path may issue IOs from e.g. exit_files().  The exit path is
257          * responsible for not issuing IO after exit_io_context().
258          */
259         task_lock(task);
260         if (!task->io_context &&
261             (task == current || !(task->flags & PF_EXITING)))
262                 task->io_context = ioc;
263         else
264                 kmem_cache_free(iocontext_cachep, ioc);
265         task_unlock(task);
266
267         return 0;
268 }
269
270 /**
271  * get_task_io_context - get io_context of a task
272  * @task: task of interest
273  * @gfp_flags: allocation flags, used if allocation is necessary
274  * @node: allocation node, used if allocation is necessary
275  *
276  * Return io_context of @task.  If it doesn't exist, it is created with
277  * @gfp_flags and @node.  The returned io_context has its reference count
278  * incremented.
279  *
280  * This function always goes through task_lock() and it's better to use
281  * %current->io_context + get_io_context() for %current.
282  */
283 struct io_context *get_task_io_context(struct task_struct *task,
284                                        gfp_t gfp_flags, int node)
285 {
286         struct io_context *ioc;
287
288         might_sleep_if(gfp_flags & __GFP_WAIT);
289
290         do {
291                 task_lock(task);
292                 ioc = task->io_context;
293                 if (likely(ioc)) {
294                         get_io_context(ioc);
295                         task_unlock(task);
296                         return ioc;
297                 }
298                 task_unlock(task);
299         } while (!create_task_io_context(task, gfp_flags, node));
300
301         return NULL;
302 }
303 EXPORT_SYMBOL(get_task_io_context);
304
305 /**
306  * ioc_lookup_icq - lookup io_cq from ioc
307  * @ioc: the associated io_context
308  * @q: the associated request_queue
309  *
310  * Look up io_cq associated with @ioc - @q pair from @ioc.  Must be called
311  * with @q->queue_lock held.
312  */
313 struct io_cq *ioc_lookup_icq(struct io_context *ioc, struct request_queue *q)
314 {
315         struct io_cq *icq;
316
317         lockdep_assert_held(q->queue_lock);
318
319         /*
320          * icq's are indexed from @ioc using radix tree and hint pointer,
321          * both of which are protected with RCU.  All removals are done
322          * holding both q and ioc locks, and we're holding q lock - if we
323          * find a icq which points to us, it's guaranteed to be valid.
324          */
325         rcu_read_lock();
326         icq = rcu_dereference(ioc->icq_hint);
327         if (icq && icq->q == q)
328                 goto out;
329
330         icq = radix_tree_lookup(&ioc->icq_tree, q->id);
331         if (icq && icq->q == q)
332                 rcu_assign_pointer(ioc->icq_hint, icq); /* allowed to race */
333         else
334                 icq = NULL;
335 out:
336         rcu_read_unlock();
337         return icq;
338 }
339 EXPORT_SYMBOL(ioc_lookup_icq);
340
341 /**
342  * ioc_create_icq - create and link io_cq
343  * @ioc: io_context of interest
344  * @q: request_queue of interest
345  * @gfp_mask: allocation mask
346  *
347  * Make sure io_cq linking @ioc and @q exists.  If icq doesn't exist, they
348  * will be created using @gfp_mask.
349  *
350  * The caller is responsible for ensuring @ioc won't go away and @q is
351  * alive and will stay alive until this function returns.
352  */
353 struct io_cq *ioc_create_icq(struct io_context *ioc, struct request_queue *q,
354                              gfp_t gfp_mask)
355 {
356         struct elevator_type *et = q->elevator->type;
357         struct io_cq *icq;
358
359         /* allocate stuff */
360         icq = kmem_cache_alloc_node(et->icq_cache, gfp_mask | __GFP_ZERO,
361                                     q->node);
362         if (!icq)
363                 return NULL;
364
365         if (radix_tree_preload(gfp_mask) < 0) {
366                 kmem_cache_free(et->icq_cache, icq);
367                 return NULL;
368         }
369
370         icq->ioc = ioc;
371         icq->q = q;
372         INIT_LIST_HEAD(&icq->q_node);
373         INIT_HLIST_NODE(&icq->ioc_node);
374
375         /* lock both q and ioc and try to link @icq */
376         spin_lock_irq(q->queue_lock);
377         spin_lock(&ioc->lock);
378
379         if (likely(!radix_tree_insert(&ioc->icq_tree, q->id, icq))) {
380                 hlist_add_head(&icq->ioc_node, &ioc->icq_list);
381                 list_add(&icq->q_node, &q->icq_list);
382                 if (et->ops.elevator_init_icq_fn)
383                         et->ops.elevator_init_icq_fn(icq);
384         } else {
385                 kmem_cache_free(et->icq_cache, icq);
386                 icq = ioc_lookup_icq(ioc, q);
387                 if (!icq)
388                         printk(KERN_ERR "cfq: icq link failed!\n");
389         }
390
391         spin_unlock(&ioc->lock);
392         spin_unlock_irq(q->queue_lock);
393         radix_tree_preload_end();
394         return icq;
395 }
396
397 static int __init blk_ioc_init(void)
398 {
399         iocontext_cachep = kmem_cache_create("blkdev_ioc",
400                         sizeof(struct io_context), 0, SLAB_PANIC, NULL);
401         return 0;
402 }
403 subsys_initcall(blk_ioc_init);