block: get rid of QUEUE_FLAG_REENTER
[pandora-kernel.git] / block / blk-core.c
1 /*
2  * Copyright (C) 1991, 1992 Linus Torvalds
3  * Copyright (C) 1994,      Karl Keyte: Added support for disk statistics
4  * Elevator latency, (C) 2000  Andrea Arcangeli <andrea@suse.de> SuSE
5  * Queue request tables / lock, selectable elevator, Jens Axboe <axboe@suse.de>
6  * kernel-doc documentation started by NeilBrown <neilb@cse.unsw.edu.au>
7  *      -  July2000
8  * bio rewrite, highmem i/o, etc, Jens Axboe <axboe@suse.de> - may 2001
9  */
10
11 /*
12  * This handles all read/write requests to block devices
13  */
14 #include <linux/kernel.h>
15 #include <linux/module.h>
16 #include <linux/backing-dev.h>
17 #include <linux/bio.h>
18 #include <linux/blkdev.h>
19 #include <linux/highmem.h>
20 #include <linux/mm.h>
21 #include <linux/kernel_stat.h>
22 #include <linux/string.h>
23 #include <linux/init.h>
24 #include <linux/completion.h>
25 #include <linux/slab.h>
26 #include <linux/swap.h>
27 #include <linux/writeback.h>
28 #include <linux/task_io_accounting_ops.h>
29 #include <linux/fault-inject.h>
30 #include <linux/list_sort.h>
31
32 #define CREATE_TRACE_POINTS
33 #include <trace/events/block.h>
34
35 #include "blk.h"
36
37 EXPORT_TRACEPOINT_SYMBOL_GPL(block_bio_remap);
38 EXPORT_TRACEPOINT_SYMBOL_GPL(block_rq_remap);
39 EXPORT_TRACEPOINT_SYMBOL_GPL(block_bio_complete);
40
41 static int __make_request(struct request_queue *q, struct bio *bio);
42
43 /*
44  * For the allocated request tables
45  */
46 static struct kmem_cache *request_cachep;
47
48 /*
49  * For queue allocation
50  */
51 struct kmem_cache *blk_requestq_cachep;
52
53 /*
54  * Controlling structure to kblockd
55  */
56 static struct workqueue_struct *kblockd_workqueue;
57
58 static void drive_stat_acct(struct request *rq, int new_io)
59 {
60         struct hd_struct *part;
61         int rw = rq_data_dir(rq);
62         int cpu;
63
64         if (!blk_do_io_stat(rq))
65                 return;
66
67         cpu = part_stat_lock();
68
69         if (!new_io) {
70                 part = rq->part;
71                 part_stat_inc(cpu, part, merges[rw]);
72         } else {
73                 part = disk_map_sector_rcu(rq->rq_disk, blk_rq_pos(rq));
74                 if (!hd_struct_try_get(part)) {
75                         /*
76                          * The partition is already being removed,
77                          * the request will be accounted on the disk only
78                          *
79                          * We take a reference on disk->part0 although that
80                          * partition will never be deleted, so we can treat
81                          * it as any other partition.
82                          */
83                         part = &rq->rq_disk->part0;
84                         hd_struct_get(part);
85                 }
86                 part_round_stats(cpu, part);
87                 part_inc_in_flight(part, rw);
88                 rq->part = part;
89         }
90
91         part_stat_unlock();
92 }
93
94 void blk_queue_congestion_threshold(struct request_queue *q)
95 {
96         int nr;
97
98         nr = q->nr_requests - (q->nr_requests / 8) + 1;
99         if (nr > q->nr_requests)
100                 nr = q->nr_requests;
101         q->nr_congestion_on = nr;
102
103         nr = q->nr_requests - (q->nr_requests / 8) - (q->nr_requests / 16) - 1;
104         if (nr < 1)
105                 nr = 1;
106         q->nr_congestion_off = nr;
107 }
108
109 /**
110  * blk_get_backing_dev_info - get the address of a queue's backing_dev_info
111  * @bdev:       device
112  *
113  * Locates the passed device's request queue and returns the address of its
114  * backing_dev_info
115  *
116  * Will return NULL if the request queue cannot be located.
117  */
118 struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev)
119 {
120         struct backing_dev_info *ret = NULL;
121         struct request_queue *q = bdev_get_queue(bdev);
122
123         if (q)
124                 ret = &q->backing_dev_info;
125         return ret;
126 }
127 EXPORT_SYMBOL(blk_get_backing_dev_info);
128
129 void blk_rq_init(struct request_queue *q, struct request *rq)
130 {
131         memset(rq, 0, sizeof(*rq));
132
133         INIT_LIST_HEAD(&rq->queuelist);
134         INIT_LIST_HEAD(&rq->timeout_list);
135         rq->cpu = -1;
136         rq->q = q;
137         rq->__sector = (sector_t) -1;
138         INIT_HLIST_NODE(&rq->hash);
139         RB_CLEAR_NODE(&rq->rb_node);
140         rq->cmd = rq->__cmd;
141         rq->cmd_len = BLK_MAX_CDB;
142         rq->tag = -1;
143         rq->ref_count = 1;
144         rq->start_time = jiffies;
145         set_start_time_ns(rq);
146         rq->part = NULL;
147 }
148 EXPORT_SYMBOL(blk_rq_init);
149
150 static void req_bio_endio(struct request *rq, struct bio *bio,
151                           unsigned int nbytes, int error)
152 {
153         if (error)
154                 clear_bit(BIO_UPTODATE, &bio->bi_flags);
155         else if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
156                 error = -EIO;
157
158         if (unlikely(nbytes > bio->bi_size)) {
159                 printk(KERN_ERR "%s: want %u bytes done, %u left\n",
160                        __func__, nbytes, bio->bi_size);
161                 nbytes = bio->bi_size;
162         }
163
164         if (unlikely(rq->cmd_flags & REQ_QUIET))
165                 set_bit(BIO_QUIET, &bio->bi_flags);
166
167         bio->bi_size -= nbytes;
168         bio->bi_sector += (nbytes >> 9);
169
170         if (bio_integrity(bio))
171                 bio_integrity_advance(bio, nbytes);
172
173         /* don't actually finish bio if it's part of flush sequence */
174         if (bio->bi_size == 0 && !(rq->cmd_flags & REQ_FLUSH_SEQ))
175                 bio_endio(bio, error);
176 }
177
178 void blk_dump_rq_flags(struct request *rq, char *msg)
179 {
180         int bit;
181
182         printk(KERN_INFO "%s: dev %s: type=%x, flags=%x\n", msg,
183                 rq->rq_disk ? rq->rq_disk->disk_name : "?", rq->cmd_type,
184                 rq->cmd_flags);
185
186         printk(KERN_INFO "  sector %llu, nr/cnr %u/%u\n",
187                (unsigned long long)blk_rq_pos(rq),
188                blk_rq_sectors(rq), blk_rq_cur_sectors(rq));
189         printk(KERN_INFO "  bio %p, biotail %p, buffer %p, len %u\n",
190                rq->bio, rq->biotail, rq->buffer, blk_rq_bytes(rq));
191
192         if (rq->cmd_type == REQ_TYPE_BLOCK_PC) {
193                 printk(KERN_INFO "  cdb: ");
194                 for (bit = 0; bit < BLK_MAX_CDB; bit++)
195                         printk("%02x ", rq->cmd[bit]);
196                 printk("\n");
197         }
198 }
199 EXPORT_SYMBOL(blk_dump_rq_flags);
200
201 static void blk_delay_work(struct work_struct *work)
202 {
203         struct request_queue *q;
204
205         q = container_of(work, struct request_queue, delay_work.work);
206         spin_lock_irq(q->queue_lock);
207         __blk_run_queue(q);
208         spin_unlock_irq(q->queue_lock);
209 }
210
211 /**
212  * blk_delay_queue - restart queueing after defined interval
213  * @q:          The &struct request_queue in question
214  * @msecs:      Delay in msecs
215  *
216  * Description:
217  *   Sometimes queueing needs to be postponed for a little while, to allow
218  *   resources to come back. This function will make sure that queueing is
219  *   restarted around the specified time.
220  */
221 void blk_delay_queue(struct request_queue *q, unsigned long msecs)
222 {
223         queue_delayed_work(kblockd_workqueue, &q->delay_work,
224                                 msecs_to_jiffies(msecs));
225 }
226 EXPORT_SYMBOL(blk_delay_queue);
227
228 /**
229  * blk_start_queue - restart a previously stopped queue
230  * @q:    The &struct request_queue in question
231  *
232  * Description:
233  *   blk_start_queue() will clear the stop flag on the queue, and call
234  *   the request_fn for the queue if it was in a stopped state when
235  *   entered. Also see blk_stop_queue(). Queue lock must be held.
236  **/
237 void blk_start_queue(struct request_queue *q)
238 {
239         WARN_ON(!irqs_disabled());
240
241         queue_flag_clear(QUEUE_FLAG_STOPPED, q);
242         __blk_run_queue(q);
243 }
244 EXPORT_SYMBOL(blk_start_queue);
245
246 /**
247  * blk_stop_queue - stop a queue
248  * @q:    The &struct request_queue in question
249  *
250  * Description:
251  *   The Linux block layer assumes that a block driver will consume all
252  *   entries on the request queue when the request_fn strategy is called.
253  *   Often this will not happen, because of hardware limitations (queue
254  *   depth settings). If a device driver gets a 'queue full' response,
255  *   or if it simply chooses not to queue more I/O at one point, it can
256  *   call this function to prevent the request_fn from being called until
257  *   the driver has signalled it's ready to go again. This happens by calling
258  *   blk_start_queue() to restart queue operations. Queue lock must be held.
259  **/
260 void blk_stop_queue(struct request_queue *q)
261 {
262         __cancel_delayed_work(&q->delay_work);
263         queue_flag_set(QUEUE_FLAG_STOPPED, q);
264 }
265 EXPORT_SYMBOL(blk_stop_queue);
266
267 /**
268  * blk_sync_queue - cancel any pending callbacks on a queue
269  * @q: the queue
270  *
271  * Description:
272  *     The block layer may perform asynchronous callback activity
273  *     on a queue, such as calling the unplug function after a timeout.
274  *     A block device may call blk_sync_queue to ensure that any
275  *     such activity is cancelled, thus allowing it to release resources
276  *     that the callbacks might use. The caller must already have made sure
277  *     that its ->make_request_fn will not re-add plugging prior to calling
278  *     this function.
279  *
280  *     This function does not cancel any asynchronous activity arising
281  *     out of elevator or throttling code. That would require elevaotor_exit()
282  *     and blk_throtl_exit() to be called with queue lock initialized.
283  *
284  */
285 void blk_sync_queue(struct request_queue *q)
286 {
287         del_timer_sync(&q->timeout);
288         cancel_delayed_work_sync(&q->delay_work);
289 }
290 EXPORT_SYMBOL(blk_sync_queue);
291
292 /**
293  * __blk_run_queue - run a single device queue
294  * @q:  The queue to run
295  * @force_kblockd: Don't run @q->request_fn directly.  Use kblockd.
296  *
297  * Description:
298  *    See @blk_run_queue. This variant must be called with the queue lock
299  *    held and interrupts disabled.
300  */
301 void __blk_run_queue(struct request_queue *q)
302 {
303         if (unlikely(blk_queue_stopped(q)))
304                 return;
305
306         q->request_fn(q);
307 }
308 EXPORT_SYMBOL(__blk_run_queue);
309
310 /**
311  * blk_run_queue_async - run a single device queue in workqueue context
312  * @q:  The queue to run
313  *
314  * Description:
315  *    Tells kblockd to perform the equivalent of @blk_run_queue on behalf
316  *    of us.
317  */
318 void blk_run_queue_async(struct request_queue *q)
319 {
320         if (likely(!blk_queue_stopped(q)))
321                 queue_delayed_work(kblockd_workqueue, &q->delay_work, 0);
322 }
323 EXPORT_SYMBOL(blk_run_queue_async);
324
325 /**
326  * blk_run_queue - run a single device queue
327  * @q: The queue to run
328  *
329  * Description:
330  *    Invoke request handling on this queue, if it has pending work to do.
331  *    May be used to restart queueing when a request has completed.
332  */
333 void blk_run_queue(struct request_queue *q)
334 {
335         unsigned long flags;
336
337         spin_lock_irqsave(q->queue_lock, flags);
338         __blk_run_queue(q);
339         spin_unlock_irqrestore(q->queue_lock, flags);
340 }
341 EXPORT_SYMBOL(blk_run_queue);
342
343 void blk_put_queue(struct request_queue *q)
344 {
345         kobject_put(&q->kobj);
346 }
347
348 /*
349  * Note: If a driver supplied the queue lock, it should not zap that lock
350  * unexpectedly as some queue cleanup components like elevator_exit() and
351  * blk_throtl_exit() need queue lock.
352  */
353 void blk_cleanup_queue(struct request_queue *q)
354 {
355         /*
356          * We know we have process context here, so we can be a little
357          * cautious and ensure that pending block actions on this device
358          * are done before moving on. Going into this function, we should
359          * not have processes doing IO to this device.
360          */
361         blk_sync_queue(q);
362
363         del_timer_sync(&q->backing_dev_info.laptop_mode_wb_timer);
364         mutex_lock(&q->sysfs_lock);
365         queue_flag_set_unlocked(QUEUE_FLAG_DEAD, q);
366         mutex_unlock(&q->sysfs_lock);
367
368         if (q->elevator)
369                 elevator_exit(q->elevator);
370
371         blk_throtl_exit(q);
372
373         blk_put_queue(q);
374 }
375 EXPORT_SYMBOL(blk_cleanup_queue);
376
377 static int blk_init_free_list(struct request_queue *q)
378 {
379         struct request_list *rl = &q->rq;
380
381         if (unlikely(rl->rq_pool))
382                 return 0;
383
384         rl->count[BLK_RW_SYNC] = rl->count[BLK_RW_ASYNC] = 0;
385         rl->starved[BLK_RW_SYNC] = rl->starved[BLK_RW_ASYNC] = 0;
386         rl->elvpriv = 0;
387         init_waitqueue_head(&rl->wait[BLK_RW_SYNC]);
388         init_waitqueue_head(&rl->wait[BLK_RW_ASYNC]);
389
390         rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ, mempool_alloc_slab,
391                                 mempool_free_slab, request_cachep, q->node);
392
393         if (!rl->rq_pool)
394                 return -ENOMEM;
395
396         return 0;
397 }
398
399 struct request_queue *blk_alloc_queue(gfp_t gfp_mask)
400 {
401         return blk_alloc_queue_node(gfp_mask, -1);
402 }
403 EXPORT_SYMBOL(blk_alloc_queue);
404
405 struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id)
406 {
407         struct request_queue *q;
408         int err;
409
410         q = kmem_cache_alloc_node(blk_requestq_cachep,
411                                 gfp_mask | __GFP_ZERO, node_id);
412         if (!q)
413                 return NULL;
414
415         q->backing_dev_info.ra_pages =
416                         (VM_MAX_READAHEAD * 1024) / PAGE_CACHE_SIZE;
417         q->backing_dev_info.state = 0;
418         q->backing_dev_info.capabilities = BDI_CAP_MAP_COPY;
419         q->backing_dev_info.name = "block";
420
421         err = bdi_init(&q->backing_dev_info);
422         if (err) {
423                 kmem_cache_free(blk_requestq_cachep, q);
424                 return NULL;
425         }
426
427         if (blk_throtl_init(q)) {
428                 kmem_cache_free(blk_requestq_cachep, q);
429                 return NULL;
430         }
431
432         setup_timer(&q->backing_dev_info.laptop_mode_wb_timer,
433                     laptop_mode_timer_fn, (unsigned long) q);
434         setup_timer(&q->timeout, blk_rq_timed_out_timer, (unsigned long) q);
435         INIT_LIST_HEAD(&q->timeout_list);
436         INIT_LIST_HEAD(&q->flush_queue[0]);
437         INIT_LIST_HEAD(&q->flush_queue[1]);
438         INIT_LIST_HEAD(&q->flush_data_in_flight);
439         INIT_DELAYED_WORK(&q->delay_work, blk_delay_work);
440
441         kobject_init(&q->kobj, &blk_queue_ktype);
442
443         mutex_init(&q->sysfs_lock);
444         spin_lock_init(&q->__queue_lock);
445
446         /*
447          * By default initialize queue_lock to internal lock and driver can
448          * override it later if need be.
449          */
450         q->queue_lock = &q->__queue_lock;
451
452         return q;
453 }
454 EXPORT_SYMBOL(blk_alloc_queue_node);
455
456 /**
457  * blk_init_queue  - prepare a request queue for use with a block device
458  * @rfn:  The function to be called to process requests that have been
459  *        placed on the queue.
460  * @lock: Request queue spin lock
461  *
462  * Description:
463  *    If a block device wishes to use the standard request handling procedures,
464  *    which sorts requests and coalesces adjacent requests, then it must
465  *    call blk_init_queue().  The function @rfn will be called when there
466  *    are requests on the queue that need to be processed.  If the device
467  *    supports plugging, then @rfn may not be called immediately when requests
468  *    are available on the queue, but may be called at some time later instead.
469  *    Plugged queues are generally unplugged when a buffer belonging to one
470  *    of the requests on the queue is needed, or due to memory pressure.
471  *
472  *    @rfn is not required, or even expected, to remove all requests off the
473  *    queue, but only as many as it can handle at a time.  If it does leave
474  *    requests on the queue, it is responsible for arranging that the requests
475  *    get dealt with eventually.
476  *
477  *    The queue spin lock must be held while manipulating the requests on the
478  *    request queue; this lock will be taken also from interrupt context, so irq
479  *    disabling is needed for it.
480  *
481  *    Function returns a pointer to the initialized request queue, or %NULL if
482  *    it didn't succeed.
483  *
484  * Note:
485  *    blk_init_queue() must be paired with a blk_cleanup_queue() call
486  *    when the block device is deactivated (such as at module unload).
487  **/
488
489 struct request_queue *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
490 {
491         return blk_init_queue_node(rfn, lock, -1);
492 }
493 EXPORT_SYMBOL(blk_init_queue);
494
495 struct request_queue *
496 blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
497 {
498         struct request_queue *uninit_q, *q;
499
500         uninit_q = blk_alloc_queue_node(GFP_KERNEL, node_id);
501         if (!uninit_q)
502                 return NULL;
503
504         q = blk_init_allocated_queue_node(uninit_q, rfn, lock, node_id);
505         if (!q)
506                 blk_cleanup_queue(uninit_q);
507
508         return q;
509 }
510 EXPORT_SYMBOL(blk_init_queue_node);
511
512 struct request_queue *
513 blk_init_allocated_queue(struct request_queue *q, request_fn_proc *rfn,
514                          spinlock_t *lock)
515 {
516         return blk_init_allocated_queue_node(q, rfn, lock, -1);
517 }
518 EXPORT_SYMBOL(blk_init_allocated_queue);
519
520 struct request_queue *
521 blk_init_allocated_queue_node(struct request_queue *q, request_fn_proc *rfn,
522                               spinlock_t *lock, int node_id)
523 {
524         if (!q)
525                 return NULL;
526
527         q->node = node_id;
528         if (blk_init_free_list(q))
529                 return NULL;
530
531         q->request_fn           = rfn;
532         q->prep_rq_fn           = NULL;
533         q->unprep_rq_fn         = NULL;
534         q->queue_flags          = QUEUE_FLAG_DEFAULT;
535
536         /* Override internal queue lock with supplied lock pointer */
537         if (lock)
538                 q->queue_lock           = lock;
539
540         /*
541          * This also sets hw/phys segments, boundary and size
542          */
543         blk_queue_make_request(q, __make_request);
544
545         q->sg_reserved_size = INT_MAX;
546
547         /*
548          * all done
549          */
550         if (!elevator_init(q, NULL)) {
551                 blk_queue_congestion_threshold(q);
552                 return q;
553         }
554
555         return NULL;
556 }
557 EXPORT_SYMBOL(blk_init_allocated_queue_node);
558
559 int blk_get_queue(struct request_queue *q)
560 {
561         if (likely(!test_bit(QUEUE_FLAG_DEAD, &q->queue_flags))) {
562                 kobject_get(&q->kobj);
563                 return 0;
564         }
565
566         return 1;
567 }
568
569 static inline void blk_free_request(struct request_queue *q, struct request *rq)
570 {
571         BUG_ON(rq->cmd_flags & REQ_ON_PLUG);
572
573         if (rq->cmd_flags & REQ_ELVPRIV)
574                 elv_put_request(q, rq);
575         mempool_free(rq, q->rq.rq_pool);
576 }
577
578 static struct request *
579 blk_alloc_request(struct request_queue *q, int flags, int priv, gfp_t gfp_mask)
580 {
581         struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask);
582
583         if (!rq)
584                 return NULL;
585
586         blk_rq_init(q, rq);
587
588         rq->cmd_flags = flags | REQ_ALLOCED;
589
590         if (priv) {
591                 if (unlikely(elv_set_request(q, rq, gfp_mask))) {
592                         mempool_free(rq, q->rq.rq_pool);
593                         return NULL;
594                 }
595                 rq->cmd_flags |= REQ_ELVPRIV;
596         }
597
598         return rq;
599 }
600
601 /*
602  * ioc_batching returns true if the ioc is a valid batching request and
603  * should be given priority access to a request.
604  */
605 static inline int ioc_batching(struct request_queue *q, struct io_context *ioc)
606 {
607         if (!ioc)
608                 return 0;
609
610         /*
611          * Make sure the process is able to allocate at least 1 request
612          * even if the batch times out, otherwise we could theoretically
613          * lose wakeups.
614          */
615         return ioc->nr_batch_requests == q->nr_batching ||
616                 (ioc->nr_batch_requests > 0
617                 && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
618 }
619
620 /*
621  * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
622  * will cause the process to be a "batcher" on all queues in the system. This
623  * is the behaviour we want though - once it gets a wakeup it should be given
624  * a nice run.
625  */
626 static void ioc_set_batching(struct request_queue *q, struct io_context *ioc)
627 {
628         if (!ioc || ioc_batching(q, ioc))
629                 return;
630
631         ioc->nr_batch_requests = q->nr_batching;
632         ioc->last_waited = jiffies;
633 }
634
635 static void __freed_request(struct request_queue *q, int sync)
636 {
637         struct request_list *rl = &q->rq;
638
639         if (rl->count[sync] < queue_congestion_off_threshold(q))
640                 blk_clear_queue_congested(q, sync);
641
642         if (rl->count[sync] + 1 <= q->nr_requests) {
643                 if (waitqueue_active(&rl->wait[sync]))
644                         wake_up(&rl->wait[sync]);
645
646                 blk_clear_queue_full(q, sync);
647         }
648 }
649
650 /*
651  * A request has just been released.  Account for it, update the full and
652  * congestion status, wake up any waiters.   Called under q->queue_lock.
653  */
654 static void freed_request(struct request_queue *q, int sync, int priv)
655 {
656         struct request_list *rl = &q->rq;
657
658         rl->count[sync]--;
659         if (priv)
660                 rl->elvpriv--;
661
662         __freed_request(q, sync);
663
664         if (unlikely(rl->starved[sync ^ 1]))
665                 __freed_request(q, sync ^ 1);
666 }
667
668 /*
669  * Determine if elevator data should be initialized when allocating the
670  * request associated with @bio.
671  */
672 static bool blk_rq_should_init_elevator(struct bio *bio)
673 {
674         if (!bio)
675                 return true;
676
677         /*
678          * Flush requests do not use the elevator so skip initialization.
679          * This allows a request to share the flush and elevator data.
680          */
681         if (bio->bi_rw & (REQ_FLUSH | REQ_FUA))
682                 return false;
683
684         return true;
685 }
686
687 /*
688  * Get a free request, queue_lock must be held.
689  * Returns NULL on failure, with queue_lock held.
690  * Returns !NULL on success, with queue_lock *not held*.
691  */
692 static struct request *get_request(struct request_queue *q, int rw_flags,
693                                    struct bio *bio, gfp_t gfp_mask)
694 {
695         struct request *rq = NULL;
696         struct request_list *rl = &q->rq;
697         struct io_context *ioc = NULL;
698         const bool is_sync = rw_is_sync(rw_flags) != 0;
699         int may_queue, priv = 0;
700
701         may_queue = elv_may_queue(q, rw_flags);
702         if (may_queue == ELV_MQUEUE_NO)
703                 goto rq_starved;
704
705         if (rl->count[is_sync]+1 >= queue_congestion_on_threshold(q)) {
706                 if (rl->count[is_sync]+1 >= q->nr_requests) {
707                         ioc = current_io_context(GFP_ATOMIC, q->node);
708                         /*
709                          * The queue will fill after this allocation, so set
710                          * it as full, and mark this process as "batching".
711                          * This process will be allowed to complete a batch of
712                          * requests, others will be blocked.
713                          */
714                         if (!blk_queue_full(q, is_sync)) {
715                                 ioc_set_batching(q, ioc);
716                                 blk_set_queue_full(q, is_sync);
717                         } else {
718                                 if (may_queue != ELV_MQUEUE_MUST
719                                                 && !ioc_batching(q, ioc)) {
720                                         /*
721                                          * The queue is full and the allocating
722                                          * process is not a "batcher", and not
723                                          * exempted by the IO scheduler
724                                          */
725                                         goto out;
726                                 }
727                         }
728                 }
729                 blk_set_queue_congested(q, is_sync);
730         }
731
732         /*
733          * Only allow batching queuers to allocate up to 50% over the defined
734          * limit of requests, otherwise we could have thousands of requests
735          * allocated with any setting of ->nr_requests
736          */
737         if (rl->count[is_sync] >= (3 * q->nr_requests / 2))
738                 goto out;
739
740         rl->count[is_sync]++;
741         rl->starved[is_sync] = 0;
742
743         if (blk_rq_should_init_elevator(bio)) {
744                 priv = !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags);
745                 if (priv)
746                         rl->elvpriv++;
747         }
748
749         if (blk_queue_io_stat(q))
750                 rw_flags |= REQ_IO_STAT;
751         spin_unlock_irq(q->queue_lock);
752
753         rq = blk_alloc_request(q, rw_flags, priv, gfp_mask);
754         if (unlikely(!rq)) {
755                 /*
756                  * Allocation failed presumably due to memory. Undo anything
757                  * we might have messed up.
758                  *
759                  * Allocating task should really be put onto the front of the
760                  * wait queue, but this is pretty rare.
761                  */
762                 spin_lock_irq(q->queue_lock);
763                 freed_request(q, is_sync, priv);
764
765                 /*
766                  * in the very unlikely event that allocation failed and no
767                  * requests for this direction was pending, mark us starved
768                  * so that freeing of a request in the other direction will
769                  * notice us. another possible fix would be to split the
770                  * rq mempool into READ and WRITE
771                  */
772 rq_starved:
773                 if (unlikely(rl->count[is_sync] == 0))
774                         rl->starved[is_sync] = 1;
775
776                 goto out;
777         }
778
779         /*
780          * ioc may be NULL here, and ioc_batching will be false. That's
781          * OK, if the queue is under the request limit then requests need
782          * not count toward the nr_batch_requests limit. There will always
783          * be some limit enforced by BLK_BATCH_TIME.
784          */
785         if (ioc_batching(q, ioc))
786                 ioc->nr_batch_requests--;
787
788         trace_block_getrq(q, bio, rw_flags & 1);
789 out:
790         return rq;
791 }
792
793 /*
794  * No available requests for this queue, wait for some requests to become
795  * available.
796  *
797  * Called with q->queue_lock held, and returns with it unlocked.
798  */
799 static struct request *get_request_wait(struct request_queue *q, int rw_flags,
800                                         struct bio *bio)
801 {
802         const bool is_sync = rw_is_sync(rw_flags) != 0;
803         struct request *rq;
804
805         rq = get_request(q, rw_flags, bio, GFP_NOIO);
806         while (!rq) {
807                 DEFINE_WAIT(wait);
808                 struct io_context *ioc;
809                 struct request_list *rl = &q->rq;
810
811                 prepare_to_wait_exclusive(&rl->wait[is_sync], &wait,
812                                 TASK_UNINTERRUPTIBLE);
813
814                 trace_block_sleeprq(q, bio, rw_flags & 1);
815
816                 spin_unlock_irq(q->queue_lock);
817                 io_schedule();
818
819                 /*
820                  * After sleeping, we become a "batching" process and
821                  * will be able to allocate at least one request, and
822                  * up to a big batch of them for a small period time.
823                  * See ioc_batching, ioc_set_batching
824                  */
825                 ioc = current_io_context(GFP_NOIO, q->node);
826                 ioc_set_batching(q, ioc);
827
828                 spin_lock_irq(q->queue_lock);
829                 finish_wait(&rl->wait[is_sync], &wait);
830
831                 rq = get_request(q, rw_flags, bio, GFP_NOIO);
832         };
833
834         return rq;
835 }
836
837 struct request *blk_get_request(struct request_queue *q, int rw, gfp_t gfp_mask)
838 {
839         struct request *rq;
840
841         BUG_ON(rw != READ && rw != WRITE);
842
843         spin_lock_irq(q->queue_lock);
844         if (gfp_mask & __GFP_WAIT) {
845                 rq = get_request_wait(q, rw, NULL);
846         } else {
847                 rq = get_request(q, rw, NULL, gfp_mask);
848                 if (!rq)
849                         spin_unlock_irq(q->queue_lock);
850         }
851         /* q->queue_lock is unlocked at this point */
852
853         return rq;
854 }
855 EXPORT_SYMBOL(blk_get_request);
856
857 /**
858  * blk_make_request - given a bio, allocate a corresponding struct request.
859  * @q: target request queue
860  * @bio:  The bio describing the memory mappings that will be submitted for IO.
861  *        It may be a chained-bio properly constructed by block/bio layer.
862  * @gfp_mask: gfp flags to be used for memory allocation
863  *
864  * blk_make_request is the parallel of generic_make_request for BLOCK_PC
865  * type commands. Where the struct request needs to be farther initialized by
866  * the caller. It is passed a &struct bio, which describes the memory info of
867  * the I/O transfer.
868  *
869  * The caller of blk_make_request must make sure that bi_io_vec
870  * are set to describe the memory buffers. That bio_data_dir() will return
871  * the needed direction of the request. (And all bio's in the passed bio-chain
872  * are properly set accordingly)
873  *
874  * If called under none-sleepable conditions, mapped bio buffers must not
875  * need bouncing, by calling the appropriate masked or flagged allocator,
876  * suitable for the target device. Otherwise the call to blk_queue_bounce will
877  * BUG.
878  *
879  * WARNING: When allocating/cloning a bio-chain, careful consideration should be
880  * given to how you allocate bios. In particular, you cannot use __GFP_WAIT for
881  * anything but the first bio in the chain. Otherwise you risk waiting for IO
882  * completion of a bio that hasn't been submitted yet, thus resulting in a
883  * deadlock. Alternatively bios should be allocated using bio_kmalloc() instead
884  * of bio_alloc(), as that avoids the mempool deadlock.
885  * If possible a big IO should be split into smaller parts when allocation
886  * fails. Partial allocation should not be an error, or you risk a live-lock.
887  */
888 struct request *blk_make_request(struct request_queue *q, struct bio *bio,
889                                  gfp_t gfp_mask)
890 {
891         struct request *rq = blk_get_request(q, bio_data_dir(bio), gfp_mask);
892
893         if (unlikely(!rq))
894                 return ERR_PTR(-ENOMEM);
895
896         for_each_bio(bio) {
897                 struct bio *bounce_bio = bio;
898                 int ret;
899
900                 blk_queue_bounce(q, &bounce_bio);
901                 ret = blk_rq_append_bio(q, rq, bounce_bio);
902                 if (unlikely(ret)) {
903                         blk_put_request(rq);
904                         return ERR_PTR(ret);
905                 }
906         }
907
908         return rq;
909 }
910 EXPORT_SYMBOL(blk_make_request);
911
912 /**
913  * blk_requeue_request - put a request back on queue
914  * @q:          request queue where request should be inserted
915  * @rq:         request to be inserted
916  *
917  * Description:
918  *    Drivers often keep queueing requests until the hardware cannot accept
919  *    more, when that condition happens we need to put the request back
920  *    on the queue. Must be called with queue lock held.
921  */
922 void blk_requeue_request(struct request_queue *q, struct request *rq)
923 {
924         blk_delete_timer(rq);
925         blk_clear_rq_complete(rq);
926         trace_block_rq_requeue(q, rq);
927
928         if (blk_rq_tagged(rq))
929                 blk_queue_end_tag(q, rq);
930
931         BUG_ON(blk_queued_rq(rq));
932
933         elv_requeue_request(q, rq);
934 }
935 EXPORT_SYMBOL(blk_requeue_request);
936
937 static void add_acct_request(struct request_queue *q, struct request *rq,
938                              int where)
939 {
940         drive_stat_acct(rq, 1);
941         __elv_add_request(q, rq, where);
942 }
943
944 /**
945  * blk_insert_request - insert a special request into a request queue
946  * @q:          request queue where request should be inserted
947  * @rq:         request to be inserted
948  * @at_head:    insert request at head or tail of queue
949  * @data:       private data
950  *
951  * Description:
952  *    Many block devices need to execute commands asynchronously, so they don't
953  *    block the whole kernel from preemption during request execution.  This is
954  *    accomplished normally by inserting aritficial requests tagged as
955  *    REQ_TYPE_SPECIAL in to the corresponding request queue, and letting them
956  *    be scheduled for actual execution by the request queue.
957  *
958  *    We have the option of inserting the head or the tail of the queue.
959  *    Typically we use the tail for new ioctls and so forth.  We use the head
960  *    of the queue for things like a QUEUE_FULL message from a device, or a
961  *    host that is unable to accept a particular command.
962  */
963 void blk_insert_request(struct request_queue *q, struct request *rq,
964                         int at_head, void *data)
965 {
966         int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK;
967         unsigned long flags;
968
969         /*
970          * tell I/O scheduler that this isn't a regular read/write (ie it
971          * must not attempt merges on this) and that it acts as a soft
972          * barrier
973          */
974         rq->cmd_type = REQ_TYPE_SPECIAL;
975
976         rq->special = data;
977
978         spin_lock_irqsave(q->queue_lock, flags);
979
980         /*
981          * If command is tagged, release the tag
982          */
983         if (blk_rq_tagged(rq))
984                 blk_queue_end_tag(q, rq);
985
986         add_acct_request(q, rq, where);
987         __blk_run_queue(q);
988         spin_unlock_irqrestore(q->queue_lock, flags);
989 }
990 EXPORT_SYMBOL(blk_insert_request);
991
992 static void part_round_stats_single(int cpu, struct hd_struct *part,
993                                     unsigned long now)
994 {
995         if (now == part->stamp)
996                 return;
997
998         if (part_in_flight(part)) {
999                 __part_stat_add(cpu, part, time_in_queue,
1000                                 part_in_flight(part) * (now - part->stamp));
1001                 __part_stat_add(cpu, part, io_ticks, (now - part->stamp));
1002         }
1003         part->stamp = now;
1004 }
1005
1006 /**
1007  * part_round_stats() - Round off the performance stats on a struct disk_stats.
1008  * @cpu: cpu number for stats access
1009  * @part: target partition
1010  *
1011  * The average IO queue length and utilisation statistics are maintained
1012  * by observing the current state of the queue length and the amount of
1013  * time it has been in this state for.
1014  *
1015  * Normally, that accounting is done on IO completion, but that can result
1016  * in more than a second's worth of IO being accounted for within any one
1017  * second, leading to >100% utilisation.  To deal with that, we call this
1018  * function to do a round-off before returning the results when reading
1019  * /proc/diskstats.  This accounts immediately for all queue usage up to
1020  * the current jiffies and restarts the counters again.
1021  */
1022 void part_round_stats(int cpu, struct hd_struct *part)
1023 {
1024         unsigned long now = jiffies;
1025
1026         if (part->partno)
1027                 part_round_stats_single(cpu, &part_to_disk(part)->part0, now);
1028         part_round_stats_single(cpu, part, now);
1029 }
1030 EXPORT_SYMBOL_GPL(part_round_stats);
1031
1032 /*
1033  * queue lock must be held
1034  */
1035 void __blk_put_request(struct request_queue *q, struct request *req)
1036 {
1037         if (unlikely(!q))
1038                 return;
1039         if (unlikely(--req->ref_count))
1040                 return;
1041
1042         elv_completed_request(q, req);
1043
1044         /* this is a bio leak */
1045         WARN_ON(req->bio != NULL);
1046
1047         /*
1048          * Request may not have originated from ll_rw_blk. if not,
1049          * it didn't come out of our reserved rq pools
1050          */
1051         if (req->cmd_flags & REQ_ALLOCED) {
1052                 int is_sync = rq_is_sync(req) != 0;
1053                 int priv = req->cmd_flags & REQ_ELVPRIV;
1054
1055                 BUG_ON(!list_empty(&req->queuelist));
1056                 BUG_ON(!hlist_unhashed(&req->hash));
1057
1058                 blk_free_request(q, req);
1059                 freed_request(q, is_sync, priv);
1060         }
1061 }
1062 EXPORT_SYMBOL_GPL(__blk_put_request);
1063
1064 void blk_put_request(struct request *req)
1065 {
1066         unsigned long flags;
1067         struct request_queue *q = req->q;
1068
1069         spin_lock_irqsave(q->queue_lock, flags);
1070         __blk_put_request(q, req);
1071         spin_unlock_irqrestore(q->queue_lock, flags);
1072 }
1073 EXPORT_SYMBOL(blk_put_request);
1074
1075 /**
1076  * blk_add_request_payload - add a payload to a request
1077  * @rq: request to update
1078  * @page: page backing the payload
1079  * @len: length of the payload.
1080  *
1081  * This allows to later add a payload to an already submitted request by
1082  * a block driver.  The driver needs to take care of freeing the payload
1083  * itself.
1084  *
1085  * Note that this is a quite horrible hack and nothing but handling of
1086  * discard requests should ever use it.
1087  */
1088 void blk_add_request_payload(struct request *rq, struct page *page,
1089                 unsigned int len)
1090 {
1091         struct bio *bio = rq->bio;
1092
1093         bio->bi_io_vec->bv_page = page;
1094         bio->bi_io_vec->bv_offset = 0;
1095         bio->bi_io_vec->bv_len = len;
1096
1097         bio->bi_size = len;
1098         bio->bi_vcnt = 1;
1099         bio->bi_phys_segments = 1;
1100
1101         rq->__data_len = rq->resid_len = len;
1102         rq->nr_phys_segments = 1;
1103         rq->buffer = bio_data(bio);
1104 }
1105 EXPORT_SYMBOL_GPL(blk_add_request_payload);
1106
1107 static bool bio_attempt_back_merge(struct request_queue *q, struct request *req,
1108                                    struct bio *bio)
1109 {
1110         const int ff = bio->bi_rw & REQ_FAILFAST_MASK;
1111
1112         /*
1113          * Debug stuff, kill later
1114          */
1115         if (!rq_mergeable(req)) {
1116                 blk_dump_rq_flags(req, "back");
1117                 return false;
1118         }
1119
1120         if (!ll_back_merge_fn(q, req, bio))
1121                 return false;
1122
1123         trace_block_bio_backmerge(q, bio);
1124
1125         if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff)
1126                 blk_rq_set_mixed_merge(req);
1127
1128         req->biotail->bi_next = bio;
1129         req->biotail = bio;
1130         req->__data_len += bio->bi_size;
1131         req->ioprio = ioprio_best(req->ioprio, bio_prio(bio));
1132
1133         drive_stat_acct(req, 0);
1134         return true;
1135 }
1136
1137 static bool bio_attempt_front_merge(struct request_queue *q,
1138                                     struct request *req, struct bio *bio)
1139 {
1140         const int ff = bio->bi_rw & REQ_FAILFAST_MASK;
1141         sector_t sector;
1142
1143         /*
1144          * Debug stuff, kill later
1145          */
1146         if (!rq_mergeable(req)) {
1147                 blk_dump_rq_flags(req, "front");
1148                 return false;
1149         }
1150
1151         if (!ll_front_merge_fn(q, req, bio))
1152                 return false;
1153
1154         trace_block_bio_frontmerge(q, bio);
1155
1156         if ((req->cmd_flags & REQ_FAILFAST_MASK) != ff)
1157                 blk_rq_set_mixed_merge(req);
1158
1159         sector = bio->bi_sector;
1160
1161         bio->bi_next = req->bio;
1162         req->bio = bio;
1163
1164         /*
1165          * may not be valid. if the low level driver said
1166          * it didn't need a bounce buffer then it better
1167          * not touch req->buffer either...
1168          */
1169         req->buffer = bio_data(bio);
1170         req->__sector = bio->bi_sector;
1171         req->__data_len += bio->bi_size;
1172         req->ioprio = ioprio_best(req->ioprio, bio_prio(bio));
1173
1174         drive_stat_acct(req, 0);
1175         return true;
1176 }
1177
1178 /*
1179  * Attempts to merge with the plugged list in the current process. Returns
1180  * true if merge was successful, otherwise false.
1181  */
1182 static bool attempt_plug_merge(struct task_struct *tsk, struct request_queue *q,
1183                                struct bio *bio)
1184 {
1185         struct blk_plug *plug;
1186         struct request *rq;
1187         bool ret = false;
1188
1189         plug = tsk->plug;
1190         if (!plug)
1191                 goto out;
1192
1193         list_for_each_entry_reverse(rq, &plug->list, queuelist) {
1194                 int el_ret;
1195
1196                 if (rq->q != q)
1197                         continue;
1198
1199                 el_ret = elv_try_merge(rq, bio);
1200                 if (el_ret == ELEVATOR_BACK_MERGE) {
1201                         ret = bio_attempt_back_merge(q, rq, bio);
1202                         if (ret)
1203                                 break;
1204                 } else if (el_ret == ELEVATOR_FRONT_MERGE) {
1205                         ret = bio_attempt_front_merge(q, rq, bio);
1206                         if (ret)
1207                                 break;
1208                 }
1209         }
1210 out:
1211         return ret;
1212 }
1213
1214 void init_request_from_bio(struct request *req, struct bio *bio)
1215 {
1216         req->cpu = bio->bi_comp_cpu;
1217         req->cmd_type = REQ_TYPE_FS;
1218
1219         req->cmd_flags |= bio->bi_rw & REQ_COMMON_MASK;
1220         if (bio->bi_rw & REQ_RAHEAD)
1221                 req->cmd_flags |= REQ_FAILFAST_MASK;
1222
1223         req->errors = 0;
1224         req->__sector = bio->bi_sector;
1225         req->ioprio = bio_prio(bio);
1226         blk_rq_bio_prep(req->q, req, bio);
1227 }
1228
1229 static int __make_request(struct request_queue *q, struct bio *bio)
1230 {
1231         const bool sync = !!(bio->bi_rw & REQ_SYNC);
1232         struct blk_plug *plug;
1233         int el_ret, rw_flags, where = ELEVATOR_INSERT_SORT;
1234         struct request *req;
1235
1236         /*
1237          * low level driver can indicate that it wants pages above a
1238          * certain limit bounced to low memory (ie for highmem, or even
1239          * ISA dma in theory)
1240          */
1241         blk_queue_bounce(q, &bio);
1242
1243         if (bio->bi_rw & (REQ_FLUSH | REQ_FUA)) {
1244                 spin_lock_irq(q->queue_lock);
1245                 where = ELEVATOR_INSERT_FLUSH;
1246                 goto get_rq;
1247         }
1248
1249         /*
1250          * Check if we can merge with the plugged list before grabbing
1251          * any locks.
1252          */
1253         if (attempt_plug_merge(current, q, bio))
1254                 goto out;
1255
1256         spin_lock_irq(q->queue_lock);
1257
1258         el_ret = elv_merge(q, &req, bio);
1259         if (el_ret == ELEVATOR_BACK_MERGE) {
1260                 BUG_ON(req->cmd_flags & REQ_ON_PLUG);
1261                 if (bio_attempt_back_merge(q, req, bio)) {
1262                         if (!attempt_back_merge(q, req))
1263                                 elv_merged_request(q, req, el_ret);
1264                         goto out_unlock;
1265                 }
1266         } else if (el_ret == ELEVATOR_FRONT_MERGE) {
1267                 BUG_ON(req->cmd_flags & REQ_ON_PLUG);
1268                 if (bio_attempt_front_merge(q, req, bio)) {
1269                         if (!attempt_front_merge(q, req))
1270                                 elv_merged_request(q, req, el_ret);
1271                         goto out_unlock;
1272                 }
1273         }
1274
1275 get_rq:
1276         /*
1277          * This sync check and mask will be re-done in init_request_from_bio(),
1278          * but we need to set it earlier to expose the sync flag to the
1279          * rq allocator and io schedulers.
1280          */
1281         rw_flags = bio_data_dir(bio);
1282         if (sync)
1283                 rw_flags |= REQ_SYNC;
1284
1285         /*
1286          * Grab a free request. This is might sleep but can not fail.
1287          * Returns with the queue unlocked.
1288          */
1289         req = get_request_wait(q, rw_flags, bio);
1290
1291         /*
1292          * After dropping the lock and possibly sleeping here, our request
1293          * may now be mergeable after it had proven unmergeable (above).
1294          * We don't worry about that case for efficiency. It won't happen
1295          * often, and the elevators are able to handle it.
1296          */
1297         init_request_from_bio(req, bio);
1298
1299         if (test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags) ||
1300             bio_flagged(bio, BIO_CPU_AFFINE)) {
1301                 req->cpu = blk_cpu_to_group(get_cpu());
1302                 put_cpu();
1303         }
1304
1305         plug = current->plug;
1306         if (plug) {
1307                 /*
1308                  * If this is the first request added after a plug, fire
1309                  * of a plug trace. If others have been added before, check
1310                  * if we have multiple devices in this plug. If so, make a
1311                  * note to sort the list before dispatch.
1312                  */
1313                 if (list_empty(&plug->list))
1314                         trace_block_plug(q);
1315                 else if (!plug->should_sort) {
1316                         struct request *__rq;
1317
1318                         __rq = list_entry_rq(plug->list.prev);
1319                         if (__rq->q != q)
1320                                 plug->should_sort = 1;
1321                 }
1322                 /*
1323                  * Debug flag, kill later
1324                  */
1325                 req->cmd_flags |= REQ_ON_PLUG;
1326                 list_add_tail(&req->queuelist, &plug->list);
1327                 drive_stat_acct(req, 1);
1328         } else {
1329                 spin_lock_irq(q->queue_lock);
1330                 add_acct_request(q, req, where);
1331                 __blk_run_queue(q);
1332 out_unlock:
1333                 spin_unlock_irq(q->queue_lock);
1334         }
1335 out:
1336         return 0;
1337 }
1338
1339 /*
1340  * If bio->bi_dev is a partition, remap the location
1341  */
1342 static inline void blk_partition_remap(struct bio *bio)
1343 {
1344         struct block_device *bdev = bio->bi_bdev;
1345
1346         if (bio_sectors(bio) && bdev != bdev->bd_contains) {
1347                 struct hd_struct *p = bdev->bd_part;
1348
1349                 bio->bi_sector += p->start_sect;
1350                 bio->bi_bdev = bdev->bd_contains;
1351
1352                 trace_block_bio_remap(bdev_get_queue(bio->bi_bdev), bio,
1353                                       bdev->bd_dev,
1354                                       bio->bi_sector - p->start_sect);
1355         }
1356 }
1357
1358 static void handle_bad_sector(struct bio *bio)
1359 {
1360         char b[BDEVNAME_SIZE];
1361
1362         printk(KERN_INFO "attempt to access beyond end of device\n");
1363         printk(KERN_INFO "%s: rw=%ld, want=%Lu, limit=%Lu\n",
1364                         bdevname(bio->bi_bdev, b),
1365                         bio->bi_rw,
1366                         (unsigned long long)bio->bi_sector + bio_sectors(bio),
1367                         (long long)(i_size_read(bio->bi_bdev->bd_inode) >> 9));
1368
1369         set_bit(BIO_EOF, &bio->bi_flags);
1370 }
1371
1372 #ifdef CONFIG_FAIL_MAKE_REQUEST
1373
1374 static DECLARE_FAULT_ATTR(fail_make_request);
1375
1376 static int __init setup_fail_make_request(char *str)
1377 {
1378         return setup_fault_attr(&fail_make_request, str);
1379 }
1380 __setup("fail_make_request=", setup_fail_make_request);
1381
1382 static int should_fail_request(struct bio *bio)
1383 {
1384         struct hd_struct *part = bio->bi_bdev->bd_part;
1385
1386         if (part_to_disk(part)->part0.make_it_fail || part->make_it_fail)
1387                 return should_fail(&fail_make_request, bio->bi_size);
1388
1389         return 0;
1390 }
1391
1392 static int __init fail_make_request_debugfs(void)
1393 {
1394         return init_fault_attr_dentries(&fail_make_request,
1395                                         "fail_make_request");
1396 }
1397
1398 late_initcall(fail_make_request_debugfs);
1399
1400 #else /* CONFIG_FAIL_MAKE_REQUEST */
1401
1402 static inline int should_fail_request(struct bio *bio)
1403 {
1404         return 0;
1405 }
1406
1407 #endif /* CONFIG_FAIL_MAKE_REQUEST */
1408
1409 /*
1410  * Check whether this bio extends beyond the end of the device.
1411  */
1412 static inline int bio_check_eod(struct bio *bio, unsigned int nr_sectors)
1413 {
1414         sector_t maxsector;
1415
1416         if (!nr_sectors)
1417                 return 0;
1418
1419         /* Test device or partition size, when known. */
1420         maxsector = i_size_read(bio->bi_bdev->bd_inode) >> 9;
1421         if (maxsector) {
1422                 sector_t sector = bio->bi_sector;
1423
1424                 if (maxsector < nr_sectors || maxsector - nr_sectors < sector) {
1425                         /*
1426                          * This may well happen - the kernel calls bread()
1427                          * without checking the size of the device, e.g., when
1428                          * mounting a device.
1429                          */
1430                         handle_bad_sector(bio);
1431                         return 1;
1432                 }
1433         }
1434
1435         return 0;
1436 }
1437
1438 /**
1439  * generic_make_request - hand a buffer to its device driver for I/O
1440  * @bio:  The bio describing the location in memory and on the device.
1441  *
1442  * generic_make_request() is used to make I/O requests of block
1443  * devices. It is passed a &struct bio, which describes the I/O that needs
1444  * to be done.
1445  *
1446  * generic_make_request() does not return any status.  The
1447  * success/failure status of the request, along with notification of
1448  * completion, is delivered asynchronously through the bio->bi_end_io
1449  * function described (one day) else where.
1450  *
1451  * The caller of generic_make_request must make sure that bi_io_vec
1452  * are set to describe the memory buffer, and that bi_dev and bi_sector are
1453  * set to describe the device address, and the
1454  * bi_end_io and optionally bi_private are set to describe how
1455  * completion notification should be signaled.
1456  *
1457  * generic_make_request and the drivers it calls may use bi_next if this
1458  * bio happens to be merged with someone else, and may change bi_dev and
1459  * bi_sector for remaps as it sees fit.  So the values of these fields
1460  * should NOT be depended on after the call to generic_make_request.
1461  */
1462 static inline void __generic_make_request(struct bio *bio)
1463 {
1464         struct request_queue *q;
1465         sector_t old_sector;
1466         int ret, nr_sectors = bio_sectors(bio);
1467         dev_t old_dev;
1468         int err = -EIO;
1469
1470         might_sleep();
1471
1472         if (bio_check_eod(bio, nr_sectors))
1473                 goto end_io;
1474
1475         /*
1476          * Resolve the mapping until finished. (drivers are
1477          * still free to implement/resolve their own stacking
1478          * by explicitly returning 0)
1479          *
1480          * NOTE: we don't repeat the blk_size check for each new device.
1481          * Stacking drivers are expected to know what they are doing.
1482          */
1483         old_sector = -1;
1484         old_dev = 0;
1485         do {
1486                 char b[BDEVNAME_SIZE];
1487
1488                 q = bdev_get_queue(bio->bi_bdev);
1489                 if (unlikely(!q)) {
1490                         printk(KERN_ERR
1491                                "generic_make_request: Trying to access "
1492                                 "nonexistent block-device %s (%Lu)\n",
1493                                 bdevname(bio->bi_bdev, b),
1494                                 (long long) bio->bi_sector);
1495                         goto end_io;
1496                 }
1497
1498                 if (unlikely(!(bio->bi_rw & REQ_DISCARD) &&
1499                              nr_sectors > queue_max_hw_sectors(q))) {
1500                         printk(KERN_ERR "bio too big device %s (%u > %u)\n",
1501                                bdevname(bio->bi_bdev, b),
1502                                bio_sectors(bio),
1503                                queue_max_hw_sectors(q));
1504                         goto end_io;
1505                 }
1506
1507                 if (unlikely(test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)))
1508                         goto end_io;
1509
1510                 if (should_fail_request(bio))
1511                         goto end_io;
1512
1513                 /*
1514                  * If this device has partitions, remap block n
1515                  * of partition p to block n+start(p) of the disk.
1516                  */
1517                 blk_partition_remap(bio);
1518
1519                 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio))
1520                         goto end_io;
1521
1522                 if (old_sector != -1)
1523                         trace_block_bio_remap(q, bio, old_dev, old_sector);
1524
1525                 old_sector = bio->bi_sector;
1526                 old_dev = bio->bi_bdev->bd_dev;
1527
1528                 if (bio_check_eod(bio, nr_sectors))
1529                         goto end_io;
1530
1531                 /*
1532                  * Filter flush bio's early so that make_request based
1533                  * drivers without flush support don't have to worry
1534                  * about them.
1535                  */
1536                 if ((bio->bi_rw & (REQ_FLUSH | REQ_FUA)) && !q->flush_flags) {
1537                         bio->bi_rw &= ~(REQ_FLUSH | REQ_FUA);
1538                         if (!nr_sectors) {
1539                                 err = 0;
1540                                 goto end_io;
1541                         }
1542                 }
1543
1544                 if ((bio->bi_rw & REQ_DISCARD) &&
1545                     (!blk_queue_discard(q) ||
1546                      ((bio->bi_rw & REQ_SECURE) &&
1547                       !blk_queue_secdiscard(q)))) {
1548                         err = -EOPNOTSUPP;
1549                         goto end_io;
1550                 }
1551
1552                 blk_throtl_bio(q, &bio);
1553
1554                 /*
1555                  * If bio = NULL, bio has been throttled and will be submitted
1556                  * later.
1557                  */
1558                 if (!bio)
1559                         break;
1560
1561                 trace_block_bio_queue(q, bio);
1562
1563                 ret = q->make_request_fn(q, bio);
1564         } while (ret);
1565
1566         return;
1567
1568 end_io:
1569         bio_endio(bio, err);
1570 }
1571
1572 /*
1573  * We only want one ->make_request_fn to be active at a time,
1574  * else stack usage with stacked devices could be a problem.
1575  * So use current->bio_list to keep a list of requests
1576  * submited by a make_request_fn function.
1577  * current->bio_list is also used as a flag to say if
1578  * generic_make_request is currently active in this task or not.
1579  * If it is NULL, then no make_request is active.  If it is non-NULL,
1580  * then a make_request is active, and new requests should be added
1581  * at the tail
1582  */
1583 void generic_make_request(struct bio *bio)
1584 {
1585         struct bio_list bio_list_on_stack;
1586
1587         if (current->bio_list) {
1588                 /* make_request is active */
1589                 bio_list_add(current->bio_list, bio);
1590                 return;
1591         }
1592         /* following loop may be a bit non-obvious, and so deserves some
1593          * explanation.
1594          * Before entering the loop, bio->bi_next is NULL (as all callers
1595          * ensure that) so we have a list with a single bio.
1596          * We pretend that we have just taken it off a longer list, so
1597          * we assign bio_list to a pointer to the bio_list_on_stack,
1598          * thus initialising the bio_list of new bios to be
1599          * added.  __generic_make_request may indeed add some more bios
1600          * through a recursive call to generic_make_request.  If it
1601          * did, we find a non-NULL value in bio_list and re-enter the loop
1602          * from the top.  In this case we really did just take the bio
1603          * of the top of the list (no pretending) and so remove it from
1604          * bio_list, and call into __generic_make_request again.
1605          *
1606          * The loop was structured like this to make only one call to
1607          * __generic_make_request (which is important as it is large and
1608          * inlined) and to keep the structure simple.
1609          */
1610         BUG_ON(bio->bi_next);
1611         bio_list_init(&bio_list_on_stack);
1612         current->bio_list = &bio_list_on_stack;
1613         do {
1614                 __generic_make_request(bio);
1615                 bio = bio_list_pop(current->bio_list);
1616         } while (bio);
1617         current->bio_list = NULL; /* deactivate */
1618 }
1619 EXPORT_SYMBOL(generic_make_request);
1620
1621 /**
1622  * submit_bio - submit a bio to the block device layer for I/O
1623  * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead)
1624  * @bio: The &struct bio which describes the I/O
1625  *
1626  * submit_bio() is very similar in purpose to generic_make_request(), and
1627  * uses that function to do most of the work. Both are fairly rough
1628  * interfaces; @bio must be presetup and ready for I/O.
1629  *
1630  */
1631 void submit_bio(int rw, struct bio *bio)
1632 {
1633         int count = bio_sectors(bio);
1634
1635         bio->bi_rw |= rw;
1636
1637         /*
1638          * If it's a regular read/write or a barrier with data attached,
1639          * go through the normal accounting stuff before submission.
1640          */
1641         if (bio_has_data(bio) && !(rw & REQ_DISCARD)) {
1642                 if (rw & WRITE) {
1643                         count_vm_events(PGPGOUT, count);
1644                 } else {
1645                         task_io_account_read(bio->bi_size);
1646                         count_vm_events(PGPGIN, count);
1647                 }
1648
1649                 if (unlikely(block_dump)) {
1650                         char b[BDEVNAME_SIZE];
1651                         printk(KERN_DEBUG "%s(%d): %s block %Lu on %s (%u sectors)\n",
1652                         current->comm, task_pid_nr(current),
1653                                 (rw & WRITE) ? "WRITE" : "READ",
1654                                 (unsigned long long)bio->bi_sector,
1655                                 bdevname(bio->bi_bdev, b),
1656                                 count);
1657                 }
1658         }
1659
1660         generic_make_request(bio);
1661 }
1662 EXPORT_SYMBOL(submit_bio);
1663
1664 /**
1665  * blk_rq_check_limits - Helper function to check a request for the queue limit
1666  * @q:  the queue
1667  * @rq: the request being checked
1668  *
1669  * Description:
1670  *    @rq may have been made based on weaker limitations of upper-level queues
1671  *    in request stacking drivers, and it may violate the limitation of @q.
1672  *    Since the block layer and the underlying device driver trust @rq
1673  *    after it is inserted to @q, it should be checked against @q before
1674  *    the insertion using this generic function.
1675  *
1676  *    This function should also be useful for request stacking drivers
1677  *    in some cases below, so export this function.
1678  *    Request stacking drivers like request-based dm may change the queue
1679  *    limits while requests are in the queue (e.g. dm's table swapping).
1680  *    Such request stacking drivers should check those requests agaist
1681  *    the new queue limits again when they dispatch those requests,
1682  *    although such checkings are also done against the old queue limits
1683  *    when submitting requests.
1684  */
1685 int blk_rq_check_limits(struct request_queue *q, struct request *rq)
1686 {
1687         if (rq->cmd_flags & REQ_DISCARD)
1688                 return 0;
1689
1690         if (blk_rq_sectors(rq) > queue_max_sectors(q) ||
1691             blk_rq_bytes(rq) > queue_max_hw_sectors(q) << 9) {
1692                 printk(KERN_ERR "%s: over max size limit.\n", __func__);
1693                 return -EIO;
1694         }
1695
1696         /*
1697          * queue's settings related to segment counting like q->bounce_pfn
1698          * may differ from that of other stacking queues.
1699          * Recalculate it to check the request correctly on this queue's
1700          * limitation.
1701          */
1702         blk_recalc_rq_segments(rq);
1703         if (rq->nr_phys_segments > queue_max_segments(q)) {
1704                 printk(KERN_ERR "%s: over max segments limit.\n", __func__);
1705                 return -EIO;
1706         }
1707
1708         return 0;
1709 }
1710 EXPORT_SYMBOL_GPL(blk_rq_check_limits);
1711
1712 /**
1713  * blk_insert_cloned_request - Helper for stacking drivers to submit a request
1714  * @q:  the queue to submit the request
1715  * @rq: the request being queued
1716  */
1717 int blk_insert_cloned_request(struct request_queue *q, struct request *rq)
1718 {
1719         unsigned long flags;
1720
1721         if (blk_rq_check_limits(q, rq))
1722                 return -EIO;
1723
1724 #ifdef CONFIG_FAIL_MAKE_REQUEST
1725         if (rq->rq_disk && rq->rq_disk->part0.make_it_fail &&
1726             should_fail(&fail_make_request, blk_rq_bytes(rq)))
1727                 return -EIO;
1728 #endif
1729
1730         spin_lock_irqsave(q->queue_lock, flags);
1731
1732         /*
1733          * Submitting request must be dequeued before calling this function
1734          * because it will be linked to another request_queue
1735          */
1736         BUG_ON(blk_queued_rq(rq));
1737
1738         add_acct_request(q, rq, ELEVATOR_INSERT_BACK);
1739         spin_unlock_irqrestore(q->queue_lock, flags);
1740
1741         return 0;
1742 }
1743 EXPORT_SYMBOL_GPL(blk_insert_cloned_request);
1744
1745 /**
1746  * blk_rq_err_bytes - determine number of bytes till the next failure boundary
1747  * @rq: request to examine
1748  *
1749  * Description:
1750  *     A request could be merge of IOs which require different failure
1751  *     handling.  This function determines the number of bytes which
1752  *     can be failed from the beginning of the request without
1753  *     crossing into area which need to be retried further.
1754  *
1755  * Return:
1756  *     The number of bytes to fail.
1757  *
1758  * Context:
1759  *     queue_lock must be held.
1760  */
1761 unsigned int blk_rq_err_bytes(const struct request *rq)
1762 {
1763         unsigned int ff = rq->cmd_flags & REQ_FAILFAST_MASK;
1764         unsigned int bytes = 0;
1765         struct bio *bio;
1766
1767         if (!(rq->cmd_flags & REQ_MIXED_MERGE))
1768                 return blk_rq_bytes(rq);
1769
1770         /*
1771          * Currently the only 'mixing' which can happen is between
1772          * different fastfail types.  We can safely fail portions
1773          * which have all the failfast bits that the first one has -
1774          * the ones which are at least as eager to fail as the first
1775          * one.
1776          */
1777         for (bio = rq->bio; bio; bio = bio->bi_next) {
1778                 if ((bio->bi_rw & ff) != ff)
1779                         break;
1780                 bytes += bio->bi_size;
1781         }
1782
1783         /* this could lead to infinite loop */
1784         BUG_ON(blk_rq_bytes(rq) && !bytes);
1785         return bytes;
1786 }
1787 EXPORT_SYMBOL_GPL(blk_rq_err_bytes);
1788
1789 static void blk_account_io_completion(struct request *req, unsigned int bytes)
1790 {
1791         if (blk_do_io_stat(req)) {
1792                 const int rw = rq_data_dir(req);
1793                 struct hd_struct *part;
1794                 int cpu;
1795
1796                 cpu = part_stat_lock();
1797                 part = req->part;
1798                 part_stat_add(cpu, part, sectors[rw], bytes >> 9);
1799                 part_stat_unlock();
1800         }
1801 }
1802
1803 static void blk_account_io_done(struct request *req)
1804 {
1805         /*
1806          * Account IO completion.  flush_rq isn't accounted as a
1807          * normal IO on queueing nor completion.  Accounting the
1808          * containing request is enough.
1809          */
1810         if (blk_do_io_stat(req) && !(req->cmd_flags & REQ_FLUSH_SEQ)) {
1811                 unsigned long duration = jiffies - req->start_time;
1812                 const int rw = rq_data_dir(req);
1813                 struct hd_struct *part;
1814                 int cpu;
1815
1816                 cpu = part_stat_lock();
1817                 part = req->part;
1818
1819                 part_stat_inc(cpu, part, ios[rw]);
1820                 part_stat_add(cpu, part, ticks[rw], duration);
1821                 part_round_stats(cpu, part);
1822                 part_dec_in_flight(part, rw);
1823
1824                 hd_struct_put(part);
1825                 part_stat_unlock();
1826         }
1827 }
1828
1829 /**
1830  * blk_peek_request - peek at the top of a request queue
1831  * @q: request queue to peek at
1832  *
1833  * Description:
1834  *     Return the request at the top of @q.  The returned request
1835  *     should be started using blk_start_request() before LLD starts
1836  *     processing it.
1837  *
1838  * Return:
1839  *     Pointer to the request at the top of @q if available.  Null
1840  *     otherwise.
1841  *
1842  * Context:
1843  *     queue_lock must be held.
1844  */
1845 struct request *blk_peek_request(struct request_queue *q)
1846 {
1847         struct request *rq;
1848         int ret;
1849
1850         while ((rq = __elv_next_request(q)) != NULL) {
1851                 if (!(rq->cmd_flags & REQ_STARTED)) {
1852                         /*
1853                          * This is the first time the device driver
1854                          * sees this request (possibly after
1855                          * requeueing).  Notify IO scheduler.
1856                          */
1857                         if (rq->cmd_flags & REQ_SORTED)
1858                                 elv_activate_rq(q, rq);
1859
1860                         /*
1861                          * just mark as started even if we don't start
1862                          * it, a request that has been delayed should
1863                          * not be passed by new incoming requests
1864                          */
1865                         rq->cmd_flags |= REQ_STARTED;
1866                         trace_block_rq_issue(q, rq);
1867                 }
1868
1869                 if (!q->boundary_rq || q->boundary_rq == rq) {
1870                         q->end_sector = rq_end_sector(rq);
1871                         q->boundary_rq = NULL;
1872                 }
1873
1874                 if (rq->cmd_flags & REQ_DONTPREP)
1875                         break;
1876
1877                 if (q->dma_drain_size && blk_rq_bytes(rq)) {
1878                         /*
1879                          * make sure space for the drain appears we
1880                          * know we can do this because max_hw_segments
1881                          * has been adjusted to be one fewer than the
1882                          * device can handle
1883                          */
1884                         rq->nr_phys_segments++;
1885                 }
1886
1887                 if (!q->prep_rq_fn)
1888                         break;
1889
1890                 ret = q->prep_rq_fn(q, rq);
1891                 if (ret == BLKPREP_OK) {
1892                         break;
1893                 } else if (ret == BLKPREP_DEFER) {
1894                         /*
1895                          * the request may have been (partially) prepped.
1896                          * we need to keep this request in the front to
1897                          * avoid resource deadlock.  REQ_STARTED will
1898                          * prevent other fs requests from passing this one.
1899                          */
1900                         if (q->dma_drain_size && blk_rq_bytes(rq) &&
1901                             !(rq->cmd_flags & REQ_DONTPREP)) {
1902                                 /*
1903                                  * remove the space for the drain we added
1904                                  * so that we don't add it again
1905                                  */
1906                                 --rq->nr_phys_segments;
1907                         }
1908
1909                         rq = NULL;
1910                         break;
1911                 } else if (ret == BLKPREP_KILL) {
1912                         rq->cmd_flags |= REQ_QUIET;
1913                         /*
1914                          * Mark this request as started so we don't trigger
1915                          * any debug logic in the end I/O path.
1916                          */
1917                         blk_start_request(rq);
1918                         __blk_end_request_all(rq, -EIO);
1919                 } else {
1920                         printk(KERN_ERR "%s: bad return=%d\n", __func__, ret);
1921                         break;
1922                 }
1923         }
1924
1925         return rq;
1926 }
1927 EXPORT_SYMBOL(blk_peek_request);
1928
1929 void blk_dequeue_request(struct request *rq)
1930 {
1931         struct request_queue *q = rq->q;
1932
1933         BUG_ON(list_empty(&rq->queuelist));
1934         BUG_ON(ELV_ON_HASH(rq));
1935
1936         list_del_init(&rq->queuelist);
1937
1938         /*
1939          * the time frame between a request being removed from the lists
1940          * and to it is freed is accounted as io that is in progress at
1941          * the driver side.
1942          */
1943         if (blk_account_rq(rq)) {
1944                 q->in_flight[rq_is_sync(rq)]++;
1945                 set_io_start_time_ns(rq);
1946         }
1947 }
1948
1949 /**
1950  * blk_start_request - start request processing on the driver
1951  * @req: request to dequeue
1952  *
1953  * Description:
1954  *     Dequeue @req and start timeout timer on it.  This hands off the
1955  *     request to the driver.
1956  *
1957  *     Block internal functions which don't want to start timer should
1958  *     call blk_dequeue_request().
1959  *
1960  * Context:
1961  *     queue_lock must be held.
1962  */
1963 void blk_start_request(struct request *req)
1964 {
1965         blk_dequeue_request(req);
1966
1967         /*
1968          * We are now handing the request to the hardware, initialize
1969          * resid_len to full count and add the timeout handler.
1970          */
1971         req->resid_len = blk_rq_bytes(req);
1972         if (unlikely(blk_bidi_rq(req)))
1973                 req->next_rq->resid_len = blk_rq_bytes(req->next_rq);
1974
1975         blk_add_timer(req);
1976 }
1977 EXPORT_SYMBOL(blk_start_request);
1978
1979 /**
1980  * blk_fetch_request - fetch a request from a request queue
1981  * @q: request queue to fetch a request from
1982  *
1983  * Description:
1984  *     Return the request at the top of @q.  The request is started on
1985  *     return and LLD can start processing it immediately.
1986  *
1987  * Return:
1988  *     Pointer to the request at the top of @q if available.  Null
1989  *     otherwise.
1990  *
1991  * Context:
1992  *     queue_lock must be held.
1993  */
1994 struct request *blk_fetch_request(struct request_queue *q)
1995 {
1996         struct request *rq;
1997
1998         rq = blk_peek_request(q);
1999         if (rq)
2000                 blk_start_request(rq);
2001         return rq;
2002 }
2003 EXPORT_SYMBOL(blk_fetch_request);
2004
2005 /**
2006  * blk_update_request - Special helper function for request stacking drivers
2007  * @req:      the request being processed
2008  * @error:    %0 for success, < %0 for error
2009  * @nr_bytes: number of bytes to complete @req
2010  *
2011  * Description:
2012  *     Ends I/O on a number of bytes attached to @req, but doesn't complete
2013  *     the request structure even if @req doesn't have leftover.
2014  *     If @req has leftover, sets it up for the next range of segments.
2015  *
2016  *     This special helper function is only for request stacking drivers
2017  *     (e.g. request-based dm) so that they can handle partial completion.
2018  *     Actual device drivers should use blk_end_request instead.
2019  *
2020  *     Passing the result of blk_rq_bytes() as @nr_bytes guarantees
2021  *     %false return from this function.
2022  *
2023  * Return:
2024  *     %false - this request doesn't have any more data
2025  *     %true  - this request has more data
2026  **/
2027 bool blk_update_request(struct request *req, int error, unsigned int nr_bytes)
2028 {
2029         int total_bytes, bio_nbytes, next_idx = 0;
2030         struct bio *bio;
2031
2032         if (!req->bio)
2033                 return false;
2034
2035         trace_block_rq_complete(req->q, req);
2036
2037         /*
2038          * For fs requests, rq is just carrier of independent bio's
2039          * and each partial completion should be handled separately.
2040          * Reset per-request error on each partial completion.
2041          *
2042          * TODO: tj: This is too subtle.  It would be better to let
2043          * low level drivers do what they see fit.
2044          */
2045         if (req->cmd_type == REQ_TYPE_FS)
2046                 req->errors = 0;
2047
2048         if (error && req->cmd_type == REQ_TYPE_FS &&
2049             !(req->cmd_flags & REQ_QUIET)) {
2050                 char *error_type;
2051
2052                 switch (error) {
2053                 case -ENOLINK:
2054                         error_type = "recoverable transport";
2055                         break;
2056                 case -EREMOTEIO:
2057                         error_type = "critical target";
2058                         break;
2059                 case -EBADE:
2060                         error_type = "critical nexus";
2061                         break;
2062                 case -EIO:
2063                 default:
2064                         error_type = "I/O";
2065                         break;
2066                 }
2067                 printk(KERN_ERR "end_request: %s error, dev %s, sector %llu\n",
2068                        error_type, req->rq_disk ? req->rq_disk->disk_name : "?",
2069                        (unsigned long long)blk_rq_pos(req));
2070         }
2071
2072         blk_account_io_completion(req, nr_bytes);
2073
2074         total_bytes = bio_nbytes = 0;
2075         while ((bio = req->bio) != NULL) {
2076                 int nbytes;
2077
2078                 if (nr_bytes >= bio->bi_size) {
2079                         req->bio = bio->bi_next;
2080                         nbytes = bio->bi_size;
2081                         req_bio_endio(req, bio, nbytes, error);
2082                         next_idx = 0;
2083                         bio_nbytes = 0;
2084                 } else {
2085                         int idx = bio->bi_idx + next_idx;
2086
2087                         if (unlikely(idx >= bio->bi_vcnt)) {
2088                                 blk_dump_rq_flags(req, "__end_that");
2089                                 printk(KERN_ERR "%s: bio idx %d >= vcnt %d\n",
2090                                        __func__, idx, bio->bi_vcnt);
2091                                 break;
2092                         }
2093
2094                         nbytes = bio_iovec_idx(bio, idx)->bv_len;
2095                         BIO_BUG_ON(nbytes > bio->bi_size);
2096
2097                         /*
2098                          * not a complete bvec done
2099                          */
2100                         if (unlikely(nbytes > nr_bytes)) {
2101                                 bio_nbytes += nr_bytes;
2102                                 total_bytes += nr_bytes;
2103                                 break;
2104                         }
2105
2106                         /*
2107                          * advance to the next vector
2108                          */
2109                         next_idx++;
2110                         bio_nbytes += nbytes;
2111                 }
2112
2113                 total_bytes += nbytes;
2114                 nr_bytes -= nbytes;
2115
2116                 bio = req->bio;
2117                 if (bio) {
2118                         /*
2119                          * end more in this run, or just return 'not-done'
2120                          */
2121                         if (unlikely(nr_bytes <= 0))
2122                                 break;
2123                 }
2124         }
2125
2126         /*
2127          * completely done
2128          */
2129         if (!req->bio) {
2130                 /*
2131                  * Reset counters so that the request stacking driver
2132                  * can find how many bytes remain in the request
2133                  * later.
2134                  */
2135                 req->__data_len = 0;
2136                 return false;
2137         }
2138
2139         /*
2140          * if the request wasn't completed, update state
2141          */
2142         if (bio_nbytes) {
2143                 req_bio_endio(req, bio, bio_nbytes, error);
2144                 bio->bi_idx += next_idx;
2145                 bio_iovec(bio)->bv_offset += nr_bytes;
2146                 bio_iovec(bio)->bv_len -= nr_bytes;
2147         }
2148
2149         req->__data_len -= total_bytes;
2150         req->buffer = bio_data(req->bio);
2151
2152         /* update sector only for requests with clear definition of sector */
2153         if (req->cmd_type == REQ_TYPE_FS || (req->cmd_flags & REQ_DISCARD))
2154                 req->__sector += total_bytes >> 9;
2155
2156         /* mixed attributes always follow the first bio */
2157         if (req->cmd_flags & REQ_MIXED_MERGE) {
2158                 req->cmd_flags &= ~REQ_FAILFAST_MASK;
2159                 req->cmd_flags |= req->bio->bi_rw & REQ_FAILFAST_MASK;
2160         }
2161
2162         /*
2163          * If total number of sectors is less than the first segment
2164          * size, something has gone terribly wrong.
2165          */
2166         if (blk_rq_bytes(req) < blk_rq_cur_bytes(req)) {
2167                 blk_dump_rq_flags(req, "request botched");
2168                 req->__data_len = blk_rq_cur_bytes(req);
2169         }
2170
2171         /* recalculate the number of segments */
2172         blk_recalc_rq_segments(req);
2173
2174         return true;
2175 }
2176 EXPORT_SYMBOL_GPL(blk_update_request);
2177
2178 static bool blk_update_bidi_request(struct request *rq, int error,
2179                                     unsigned int nr_bytes,
2180                                     unsigned int bidi_bytes)
2181 {
2182         if (blk_update_request(rq, error, nr_bytes))
2183                 return true;
2184
2185         /* Bidi request must be completed as a whole */
2186         if (unlikely(blk_bidi_rq(rq)) &&
2187             blk_update_request(rq->next_rq, error, bidi_bytes))
2188                 return true;
2189
2190         if (blk_queue_add_random(rq->q))
2191                 add_disk_randomness(rq->rq_disk);
2192
2193         return false;
2194 }
2195
2196 /**
2197  * blk_unprep_request - unprepare a request
2198  * @req:        the request
2199  *
2200  * This function makes a request ready for complete resubmission (or
2201  * completion).  It happens only after all error handling is complete,
2202  * so represents the appropriate moment to deallocate any resources
2203  * that were allocated to the request in the prep_rq_fn.  The queue
2204  * lock is held when calling this.
2205  */
2206 void blk_unprep_request(struct request *req)
2207 {
2208         struct request_queue *q = req->q;
2209
2210         req->cmd_flags &= ~REQ_DONTPREP;
2211         if (q->unprep_rq_fn)
2212                 q->unprep_rq_fn(q, req);
2213 }
2214 EXPORT_SYMBOL_GPL(blk_unprep_request);
2215
2216 /*
2217  * queue lock must be held
2218  */
2219 static void blk_finish_request(struct request *req, int error)
2220 {
2221         if (blk_rq_tagged(req))
2222                 blk_queue_end_tag(req->q, req);
2223
2224         BUG_ON(blk_queued_rq(req));
2225
2226         if (unlikely(laptop_mode) && req->cmd_type == REQ_TYPE_FS)
2227                 laptop_io_completion(&req->q->backing_dev_info);
2228
2229         blk_delete_timer(req);
2230
2231         if (req->cmd_flags & REQ_DONTPREP)
2232                 blk_unprep_request(req);
2233
2234
2235         blk_account_io_done(req);
2236
2237         if (req->end_io)
2238                 req->end_io(req, error);
2239         else {
2240                 if (blk_bidi_rq(req))
2241                         __blk_put_request(req->next_rq->q, req->next_rq);
2242
2243                 __blk_put_request(req->q, req);
2244         }
2245 }
2246
2247 /**
2248  * blk_end_bidi_request - Complete a bidi request
2249  * @rq:         the request to complete
2250  * @error:      %0 for success, < %0 for error
2251  * @nr_bytes:   number of bytes to complete @rq
2252  * @bidi_bytes: number of bytes to complete @rq->next_rq
2253  *
2254  * Description:
2255  *     Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
2256  *     Drivers that supports bidi can safely call this member for any
2257  *     type of request, bidi or uni.  In the later case @bidi_bytes is
2258  *     just ignored.
2259  *
2260  * Return:
2261  *     %false - we are done with this request
2262  *     %true  - still buffers pending for this request
2263  **/
2264 static bool blk_end_bidi_request(struct request *rq, int error,
2265                                  unsigned int nr_bytes, unsigned int bidi_bytes)
2266 {
2267         struct request_queue *q = rq->q;
2268         unsigned long flags;
2269
2270         if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2271                 return true;
2272
2273         spin_lock_irqsave(q->queue_lock, flags);
2274         blk_finish_request(rq, error);
2275         spin_unlock_irqrestore(q->queue_lock, flags);
2276
2277         return false;
2278 }
2279
2280 /**
2281  * __blk_end_bidi_request - Complete a bidi request with queue lock held
2282  * @rq:         the request to complete
2283  * @error:      %0 for success, < %0 for error
2284  * @nr_bytes:   number of bytes to complete @rq
2285  * @bidi_bytes: number of bytes to complete @rq->next_rq
2286  *
2287  * Description:
2288  *     Identical to blk_end_bidi_request() except that queue lock is
2289  *     assumed to be locked on entry and remains so on return.
2290  *
2291  * Return:
2292  *     %false - we are done with this request
2293  *     %true  - still buffers pending for this request
2294  **/
2295 static bool __blk_end_bidi_request(struct request *rq, int error,
2296                                    unsigned int nr_bytes, unsigned int bidi_bytes)
2297 {
2298         if (blk_update_bidi_request(rq, error, nr_bytes, bidi_bytes))
2299                 return true;
2300
2301         blk_finish_request(rq, error);
2302
2303         return false;
2304 }
2305
2306 /**
2307  * blk_end_request - Helper function for drivers to complete the request.
2308  * @rq:       the request being processed
2309  * @error:    %0 for success, < %0 for error
2310  * @nr_bytes: number of bytes to complete
2311  *
2312  * Description:
2313  *     Ends I/O on a number of bytes attached to @rq.
2314  *     If @rq has leftover, sets it up for the next range of segments.
2315  *
2316  * Return:
2317  *     %false - we are done with this request
2318  *     %true  - still buffers pending for this request
2319  **/
2320 bool blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
2321 {
2322         return blk_end_bidi_request(rq, error, nr_bytes, 0);
2323 }
2324 EXPORT_SYMBOL(blk_end_request);
2325
2326 /**
2327  * blk_end_request_all - Helper function for drives to finish the request.
2328  * @rq: the request to finish
2329  * @error: %0 for success, < %0 for error
2330  *
2331  * Description:
2332  *     Completely finish @rq.
2333  */
2334 void blk_end_request_all(struct request *rq, int error)
2335 {
2336         bool pending;
2337         unsigned int bidi_bytes = 0;
2338
2339         if (unlikely(blk_bidi_rq(rq)))
2340                 bidi_bytes = blk_rq_bytes(rq->next_rq);
2341
2342         pending = blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2343         BUG_ON(pending);
2344 }
2345 EXPORT_SYMBOL(blk_end_request_all);
2346
2347 /**
2348  * blk_end_request_cur - Helper function to finish the current request chunk.
2349  * @rq: the request to finish the current chunk for
2350  * @error: %0 for success, < %0 for error
2351  *
2352  * Description:
2353  *     Complete the current consecutively mapped chunk from @rq.
2354  *
2355  * Return:
2356  *     %false - we are done with this request
2357  *     %true  - still buffers pending for this request
2358  */
2359 bool blk_end_request_cur(struct request *rq, int error)
2360 {
2361         return blk_end_request(rq, error, blk_rq_cur_bytes(rq));
2362 }
2363 EXPORT_SYMBOL(blk_end_request_cur);
2364
2365 /**
2366  * blk_end_request_err - Finish a request till the next failure boundary.
2367  * @rq: the request to finish till the next failure boundary for
2368  * @error: must be negative errno
2369  *
2370  * Description:
2371  *     Complete @rq till the next failure boundary.
2372  *
2373  * Return:
2374  *     %false - we are done with this request
2375  *     %true  - still buffers pending for this request
2376  */
2377 bool blk_end_request_err(struct request *rq, int error)
2378 {
2379         WARN_ON(error >= 0);
2380         return blk_end_request(rq, error, blk_rq_err_bytes(rq));
2381 }
2382 EXPORT_SYMBOL_GPL(blk_end_request_err);
2383
2384 /**
2385  * __blk_end_request - Helper function for drivers to complete the request.
2386  * @rq:       the request being processed
2387  * @error:    %0 for success, < %0 for error
2388  * @nr_bytes: number of bytes to complete
2389  *
2390  * Description:
2391  *     Must be called with queue lock held unlike blk_end_request().
2392  *
2393  * Return:
2394  *     %false - we are done with this request
2395  *     %true  - still buffers pending for this request
2396  **/
2397 bool __blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
2398 {
2399         return __blk_end_bidi_request(rq, error, nr_bytes, 0);
2400 }
2401 EXPORT_SYMBOL(__blk_end_request);
2402
2403 /**
2404  * __blk_end_request_all - Helper function for drives to finish the request.
2405  * @rq: the request to finish
2406  * @error: %0 for success, < %0 for error
2407  *
2408  * Description:
2409  *     Completely finish @rq.  Must be called with queue lock held.
2410  */
2411 void __blk_end_request_all(struct request *rq, int error)
2412 {
2413         bool pending;
2414         unsigned int bidi_bytes = 0;
2415
2416         if (unlikely(blk_bidi_rq(rq)))
2417                 bidi_bytes = blk_rq_bytes(rq->next_rq);
2418
2419         pending = __blk_end_bidi_request(rq, error, blk_rq_bytes(rq), bidi_bytes);
2420         BUG_ON(pending);
2421 }
2422 EXPORT_SYMBOL(__blk_end_request_all);
2423
2424 /**
2425  * __blk_end_request_cur - Helper function to finish the current request chunk.
2426  * @rq: the request to finish the current chunk for
2427  * @error: %0 for success, < %0 for error
2428  *
2429  * Description:
2430  *     Complete the current consecutively mapped chunk from @rq.  Must
2431  *     be called with queue lock held.
2432  *
2433  * Return:
2434  *     %false - we are done with this request
2435  *     %true  - still buffers pending for this request
2436  */
2437 bool __blk_end_request_cur(struct request *rq, int error)
2438 {
2439         return __blk_end_request(rq, error, blk_rq_cur_bytes(rq));
2440 }
2441 EXPORT_SYMBOL(__blk_end_request_cur);
2442
2443 /**
2444  * __blk_end_request_err - Finish a request till the next failure boundary.
2445  * @rq: the request to finish till the next failure boundary for
2446  * @error: must be negative errno
2447  *
2448  * Description:
2449  *     Complete @rq till the next failure boundary.  Must be called
2450  *     with queue lock held.
2451  *
2452  * Return:
2453  *     %false - we are done with this request
2454  *     %true  - still buffers pending for this request
2455  */
2456 bool __blk_end_request_err(struct request *rq, int error)
2457 {
2458         WARN_ON(error >= 0);
2459         return __blk_end_request(rq, error, blk_rq_err_bytes(rq));
2460 }
2461 EXPORT_SYMBOL_GPL(__blk_end_request_err);
2462
2463 void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
2464                      struct bio *bio)
2465 {
2466         /* Bit 0 (R/W) is identical in rq->cmd_flags and bio->bi_rw */
2467         rq->cmd_flags |= bio->bi_rw & REQ_WRITE;
2468
2469         if (bio_has_data(bio)) {
2470                 rq->nr_phys_segments = bio_phys_segments(q, bio);
2471                 rq->buffer = bio_data(bio);
2472         }
2473         rq->__data_len = bio->bi_size;
2474         rq->bio = rq->biotail = bio;
2475
2476         if (bio->bi_bdev)
2477                 rq->rq_disk = bio->bi_bdev->bd_disk;
2478 }
2479
2480 #if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
2481 /**
2482  * rq_flush_dcache_pages - Helper function to flush all pages in a request
2483  * @rq: the request to be flushed
2484  *
2485  * Description:
2486  *     Flush all pages in @rq.
2487  */
2488 void rq_flush_dcache_pages(struct request *rq)
2489 {
2490         struct req_iterator iter;
2491         struct bio_vec *bvec;
2492
2493         rq_for_each_segment(bvec, rq, iter)
2494                 flush_dcache_page(bvec->bv_page);
2495 }
2496 EXPORT_SYMBOL_GPL(rq_flush_dcache_pages);
2497 #endif
2498
2499 /**
2500  * blk_lld_busy - Check if underlying low-level drivers of a device are busy
2501  * @q : the queue of the device being checked
2502  *
2503  * Description:
2504  *    Check if underlying low-level drivers of a device are busy.
2505  *    If the drivers want to export their busy state, they must set own
2506  *    exporting function using blk_queue_lld_busy() first.
2507  *
2508  *    Basically, this function is used only by request stacking drivers
2509  *    to stop dispatching requests to underlying devices when underlying
2510  *    devices are busy.  This behavior helps more I/O merging on the queue
2511  *    of the request stacking driver and prevents I/O throughput regression
2512  *    on burst I/O load.
2513  *
2514  * Return:
2515  *    0 - Not busy (The request stacking driver should dispatch request)
2516  *    1 - Busy (The request stacking driver should stop dispatching request)
2517  */
2518 int blk_lld_busy(struct request_queue *q)
2519 {
2520         if (q->lld_busy_fn)
2521                 return q->lld_busy_fn(q);
2522
2523         return 0;
2524 }
2525 EXPORT_SYMBOL_GPL(blk_lld_busy);
2526
2527 /**
2528  * blk_rq_unprep_clone - Helper function to free all bios in a cloned request
2529  * @rq: the clone request to be cleaned up
2530  *
2531  * Description:
2532  *     Free all bios in @rq for a cloned request.
2533  */
2534 void blk_rq_unprep_clone(struct request *rq)
2535 {
2536         struct bio *bio;
2537
2538         while ((bio = rq->bio) != NULL) {
2539                 rq->bio = bio->bi_next;
2540
2541                 bio_put(bio);
2542         }
2543 }
2544 EXPORT_SYMBOL_GPL(blk_rq_unprep_clone);
2545
2546 /*
2547  * Copy attributes of the original request to the clone request.
2548  * The actual data parts (e.g. ->cmd, ->buffer, ->sense) are not copied.
2549  */
2550 static void __blk_rq_prep_clone(struct request *dst, struct request *src)
2551 {
2552         dst->cpu = src->cpu;
2553         dst->cmd_flags = (src->cmd_flags & REQ_CLONE_MASK) | REQ_NOMERGE;
2554         dst->cmd_type = src->cmd_type;
2555         dst->__sector = blk_rq_pos(src);
2556         dst->__data_len = blk_rq_bytes(src);
2557         dst->nr_phys_segments = src->nr_phys_segments;
2558         dst->ioprio = src->ioprio;
2559         dst->extra_len = src->extra_len;
2560 }
2561
2562 /**
2563  * blk_rq_prep_clone - Helper function to setup clone request
2564  * @rq: the request to be setup
2565  * @rq_src: original request to be cloned
2566  * @bs: bio_set that bios for clone are allocated from
2567  * @gfp_mask: memory allocation mask for bio
2568  * @bio_ctr: setup function to be called for each clone bio.
2569  *           Returns %0 for success, non %0 for failure.
2570  * @data: private data to be passed to @bio_ctr
2571  *
2572  * Description:
2573  *     Clones bios in @rq_src to @rq, and copies attributes of @rq_src to @rq.
2574  *     The actual data parts of @rq_src (e.g. ->cmd, ->buffer, ->sense)
2575  *     are not copied, and copying such parts is the caller's responsibility.
2576  *     Also, pages which the original bios are pointing to are not copied
2577  *     and the cloned bios just point same pages.
2578  *     So cloned bios must be completed before original bios, which means
2579  *     the caller must complete @rq before @rq_src.
2580  */
2581 int blk_rq_prep_clone(struct request *rq, struct request *rq_src,
2582                       struct bio_set *bs, gfp_t gfp_mask,
2583                       int (*bio_ctr)(struct bio *, struct bio *, void *),
2584                       void *data)
2585 {
2586         struct bio *bio, *bio_src;
2587
2588         if (!bs)
2589                 bs = fs_bio_set;
2590
2591         blk_rq_init(NULL, rq);
2592
2593         __rq_for_each_bio(bio_src, rq_src) {
2594                 bio = bio_alloc_bioset(gfp_mask, bio_src->bi_max_vecs, bs);
2595                 if (!bio)
2596                         goto free_and_out;
2597
2598                 __bio_clone(bio, bio_src);
2599
2600                 if (bio_integrity(bio_src) &&
2601                     bio_integrity_clone(bio, bio_src, gfp_mask, bs))
2602                         goto free_and_out;
2603
2604                 if (bio_ctr && bio_ctr(bio, bio_src, data))
2605                         goto free_and_out;
2606
2607                 if (rq->bio) {
2608                         rq->biotail->bi_next = bio;
2609                         rq->biotail = bio;
2610                 } else
2611                         rq->bio = rq->biotail = bio;
2612         }
2613
2614         __blk_rq_prep_clone(rq, rq_src);
2615
2616         return 0;
2617
2618 free_and_out:
2619         if (bio)
2620                 bio_free(bio, bs);
2621         blk_rq_unprep_clone(rq);
2622
2623         return -ENOMEM;
2624 }
2625 EXPORT_SYMBOL_GPL(blk_rq_prep_clone);
2626
2627 int kblockd_schedule_work(struct request_queue *q, struct work_struct *work)
2628 {
2629         return queue_work(kblockd_workqueue, work);
2630 }
2631 EXPORT_SYMBOL(kblockd_schedule_work);
2632
2633 int kblockd_schedule_delayed_work(struct request_queue *q,
2634                         struct delayed_work *dwork, unsigned long delay)
2635 {
2636         return queue_delayed_work(kblockd_workqueue, dwork, delay);
2637 }
2638 EXPORT_SYMBOL(kblockd_schedule_delayed_work);
2639
2640 #define PLUG_MAGIC      0x91827364
2641
2642 void blk_start_plug(struct blk_plug *plug)
2643 {
2644         struct task_struct *tsk = current;
2645
2646         plug->magic = PLUG_MAGIC;
2647         INIT_LIST_HEAD(&plug->list);
2648         INIT_LIST_HEAD(&plug->cb_list);
2649         plug->should_sort = 0;
2650
2651         /*
2652          * If this is a nested plug, don't actually assign it. It will be
2653          * flushed on its own.
2654          */
2655         if (!tsk->plug) {
2656                 /*
2657                  * Store ordering should not be needed here, since a potential
2658                  * preempt will imply a full memory barrier
2659                  */
2660                 tsk->plug = plug;
2661         }
2662 }
2663 EXPORT_SYMBOL(blk_start_plug);
2664
2665 static int plug_rq_cmp(void *priv, struct list_head *a, struct list_head *b)
2666 {
2667         struct request *rqa = container_of(a, struct request, queuelist);
2668         struct request *rqb = container_of(b, struct request, queuelist);
2669
2670         return !(rqa->q <= rqb->q);
2671 }
2672
2673 /*
2674  * If 'from_schedule' is true, then postpone the dispatch of requests
2675  * until a safe kblockd context. We due this to avoid accidental big
2676  * additional stack usage in driver dispatch, in places where the originally
2677  * plugger did not intend it.
2678  */
2679 static void queue_unplugged(struct request_queue *q, unsigned int depth,
2680                             bool from_schedule)
2681         __releases(q->queue_lock)
2682 {
2683         trace_block_unplug(q, depth, !from_schedule);
2684
2685         /*
2686          * If we are punting this to kblockd, then we can safely drop
2687          * the queue_lock before waking kblockd (which needs to take
2688          * this lock).
2689          */
2690         if (from_schedule) {
2691                 spin_unlock(q->queue_lock);
2692                 blk_run_queue_async(q);
2693         } else {
2694                 __blk_run_queue(q);
2695                 spin_unlock(q->queue_lock);
2696         }
2697
2698 }
2699
2700 static void flush_plug_callbacks(struct blk_plug *plug)
2701 {
2702         LIST_HEAD(callbacks);
2703
2704         if (list_empty(&plug->cb_list))
2705                 return;
2706
2707         list_splice_init(&plug->cb_list, &callbacks);
2708
2709         while (!list_empty(&callbacks)) {
2710                 struct blk_plug_cb *cb = list_first_entry(&callbacks,
2711                                                           struct blk_plug_cb,
2712                                                           list);
2713                 list_del(&cb->list);
2714                 cb->callback(cb);
2715         }
2716 }
2717
2718 void blk_flush_plug_list(struct blk_plug *plug, bool from_schedule)
2719 {
2720         struct request_queue *q;
2721         unsigned long flags;
2722         struct request *rq;
2723         LIST_HEAD(list);
2724         unsigned int depth;
2725
2726         BUG_ON(plug->magic != PLUG_MAGIC);
2727
2728         flush_plug_callbacks(plug);
2729         if (list_empty(&plug->list))
2730                 return;
2731
2732         list_splice_init(&plug->list, &list);
2733
2734         if (plug->should_sort) {
2735                 list_sort(NULL, &list, plug_rq_cmp);
2736                 plug->should_sort = 0;
2737         }
2738
2739         q = NULL;
2740         depth = 0;
2741
2742         /*
2743          * Save and disable interrupts here, to avoid doing it for every
2744          * queue lock we have to take.
2745          */
2746         local_irq_save(flags);
2747         while (!list_empty(&list)) {
2748                 rq = list_entry_rq(list.next);
2749                 list_del_init(&rq->queuelist);
2750                 BUG_ON(!(rq->cmd_flags & REQ_ON_PLUG));
2751                 BUG_ON(!rq->q);
2752                 if (rq->q != q) {
2753                         /*
2754                          * This drops the queue lock
2755                          */
2756                         if (q)
2757                                 queue_unplugged(q, depth, from_schedule);
2758                         q = rq->q;
2759                         depth = 0;
2760                         spin_lock(q->queue_lock);
2761                 }
2762                 rq->cmd_flags &= ~REQ_ON_PLUG;
2763
2764                 /*
2765                  * rq is already accounted, so use raw insert
2766                  */
2767                 if (rq->cmd_flags & (REQ_FLUSH | REQ_FUA))
2768                         __elv_add_request(q, rq, ELEVATOR_INSERT_FLUSH);
2769                 else
2770                         __elv_add_request(q, rq, ELEVATOR_INSERT_SORT_MERGE);
2771
2772                 depth++;
2773         }
2774
2775         /*
2776          * This drops the queue lock
2777          */
2778         if (q)
2779                 queue_unplugged(q, depth, from_schedule);
2780
2781         local_irq_restore(flags);
2782 }
2783
2784 void blk_finish_plug(struct blk_plug *plug)
2785 {
2786         blk_flush_plug_list(plug, false);
2787
2788         if (plug == current->plug)
2789                 current->plug = NULL;
2790 }
2791 EXPORT_SYMBOL(blk_finish_plug);
2792
2793 int __init blk_dev_init(void)
2794 {
2795         BUILD_BUG_ON(__REQ_NR_BITS > 8 *
2796                         sizeof(((struct request *)0)->cmd_flags));
2797
2798         /* used for unplugging and affects IO latency/throughput - HIGHPRI */
2799         kblockd_workqueue = alloc_workqueue("kblockd",
2800                                             WQ_MEM_RECLAIM | WQ_HIGHPRI, 0);
2801         if (!kblockd_workqueue)
2802                 panic("Failed to create kblockd\n");
2803
2804         request_cachep = kmem_cache_create("blkdev_requests",
2805                         sizeof(struct request), 0, SLAB_PANIC, NULL);
2806
2807         blk_requestq_cachep = kmem_cache_create("blkdev_queue",
2808                         sizeof(struct request_queue), 0, SLAB_PANIC, NULL);
2809
2810         return 0;
2811 }