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