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>
8 * bio rewrite, highmem i/o, etc, Jens Axboe <axboe@suse.de> - may 2001
12 * This handles all read/write requests to block devices
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>
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>
31 #define CREATE_TRACE_POINTS
32 #include <trace/events/block.h>
36 EXPORT_TRACEPOINT_SYMBOL_GPL(block_remap
);
37 EXPORT_TRACEPOINT_SYMBOL_GPL(block_rq_remap
);
38 EXPORT_TRACEPOINT_SYMBOL_GPL(block_bio_complete
);
40 static int __make_request(struct request_queue
*q
, struct bio
*bio
);
43 * For the allocated request tables
45 static struct kmem_cache
*request_cachep
;
48 * For queue allocation
50 struct kmem_cache
*blk_requestq_cachep
;
53 * Controlling structure to kblockd
55 static struct workqueue_struct
*kblockd_workqueue
;
57 static void drive_stat_acct(struct request
*rq
, int new_io
)
59 struct hd_struct
*part
;
60 int rw
= rq_data_dir(rq
);
63 if (!blk_do_io_stat(rq
))
66 cpu
= part_stat_lock();
67 part
= disk_map_sector_rcu(rq
->rq_disk
, blk_rq_pos(rq
));
70 part_stat_inc(cpu
, part
, merges
[rw
]);
72 part_round_stats(cpu
, part
);
73 part_inc_in_flight(part
, rw
);
79 void blk_queue_congestion_threshold(struct request_queue
*q
)
83 nr
= q
->nr_requests
- (q
->nr_requests
/ 8) + 1;
84 if (nr
> q
->nr_requests
)
86 q
->nr_congestion_on
= nr
;
88 nr
= q
->nr_requests
- (q
->nr_requests
/ 8) - (q
->nr_requests
/ 16) - 1;
91 q
->nr_congestion_off
= nr
;
95 * blk_get_backing_dev_info - get the address of a queue's backing_dev_info
98 * Locates the passed device's request queue and returns the address of its
101 * Will return NULL if the request queue cannot be located.
103 struct backing_dev_info
*blk_get_backing_dev_info(struct block_device
*bdev
)
105 struct backing_dev_info
*ret
= NULL
;
106 struct request_queue
*q
= bdev_get_queue(bdev
);
109 ret
= &q
->backing_dev_info
;
112 EXPORT_SYMBOL(blk_get_backing_dev_info
);
114 void blk_rq_init(struct request_queue
*q
, struct request
*rq
)
116 memset(rq
, 0, sizeof(*rq
));
118 INIT_LIST_HEAD(&rq
->queuelist
);
119 INIT_LIST_HEAD(&rq
->timeout_list
);
122 rq
->__sector
= (sector_t
) -1;
123 INIT_HLIST_NODE(&rq
->hash
);
124 RB_CLEAR_NODE(&rq
->rb_node
);
126 rq
->cmd_len
= BLK_MAX_CDB
;
129 rq
->start_time
= jiffies
;
130 set_start_time_ns(rq
);
132 EXPORT_SYMBOL(blk_rq_init
);
134 static void req_bio_endio(struct request
*rq
, struct bio
*bio
,
135 unsigned int nbytes
, int error
)
137 struct request_queue
*q
= rq
->q
;
139 if (&q
->bar_rq
!= rq
) {
141 clear_bit(BIO_UPTODATE
, &bio
->bi_flags
);
142 else if (!test_bit(BIO_UPTODATE
, &bio
->bi_flags
))
145 if (unlikely(nbytes
> bio
->bi_size
)) {
146 printk(KERN_ERR
"%s: want %u bytes done, %u left\n",
147 __func__
, nbytes
, bio
->bi_size
);
148 nbytes
= bio
->bi_size
;
151 if (unlikely(rq
->cmd_flags
& REQ_QUIET
))
152 set_bit(BIO_QUIET
, &bio
->bi_flags
);
154 bio
->bi_size
-= nbytes
;
155 bio
->bi_sector
+= (nbytes
>> 9);
157 if (bio_integrity(bio
))
158 bio_integrity_advance(bio
, nbytes
);
160 if (bio
->bi_size
== 0)
161 bio_endio(bio
, error
);
165 * Okay, this is the barrier request in progress, just
168 if (error
&& !q
->orderr
)
173 void blk_dump_rq_flags(struct request
*rq
, char *msg
)
177 printk(KERN_INFO
"%s: dev %s: type=%x, flags=%x\n", msg
,
178 rq
->rq_disk
? rq
->rq_disk
->disk_name
: "?", rq
->cmd_type
,
181 printk(KERN_INFO
" sector %llu, nr/cnr %u/%u\n",
182 (unsigned long long)blk_rq_pos(rq
),
183 blk_rq_sectors(rq
), blk_rq_cur_sectors(rq
));
184 printk(KERN_INFO
" bio %p, biotail %p, buffer %p, len %u\n",
185 rq
->bio
, rq
->biotail
, rq
->buffer
, blk_rq_bytes(rq
));
187 if (blk_pc_request(rq
)) {
188 printk(KERN_INFO
" cdb: ");
189 for (bit
= 0; bit
< BLK_MAX_CDB
; bit
++)
190 printk("%02x ", rq
->cmd
[bit
]);
194 EXPORT_SYMBOL(blk_dump_rq_flags
);
197 * "plug" the device if there are no outstanding requests: this will
198 * force the transfer to start only after we have put all the requests
201 * This is called with interrupts off and no requests on the queue and
202 * with the queue lock held.
204 void blk_plug_device(struct request_queue
*q
)
206 WARN_ON(!irqs_disabled());
209 * don't plug a stopped queue, it must be paired with blk_start_queue()
210 * which will restart the queueing
212 if (blk_queue_stopped(q
))
215 if (!queue_flag_test_and_set(QUEUE_FLAG_PLUGGED
, q
)) {
216 mod_timer(&q
->unplug_timer
, jiffies
+ q
->unplug_delay
);
220 EXPORT_SYMBOL(blk_plug_device
);
223 * blk_plug_device_unlocked - plug a device without queue lock held
224 * @q: The &struct request_queue to plug
227 * Like @blk_plug_device(), but grabs the queue lock and disables
230 void blk_plug_device_unlocked(struct request_queue
*q
)
234 spin_lock_irqsave(q
->queue_lock
, flags
);
236 spin_unlock_irqrestore(q
->queue_lock
, flags
);
238 EXPORT_SYMBOL(blk_plug_device_unlocked
);
241 * remove the queue from the plugged list, if present. called with
242 * queue lock held and interrupts disabled.
244 int blk_remove_plug(struct request_queue
*q
)
246 WARN_ON(!irqs_disabled());
248 if (!queue_flag_test_and_clear(QUEUE_FLAG_PLUGGED
, q
))
251 del_timer(&q
->unplug_timer
);
254 EXPORT_SYMBOL(blk_remove_plug
);
257 * remove the plug and let it rip..
259 void __generic_unplug_device(struct request_queue
*q
)
261 if (unlikely(blk_queue_stopped(q
)))
263 if (!blk_remove_plug(q
) && !blk_queue_nonrot(q
))
270 * generic_unplug_device - fire a request queue
271 * @q: The &struct request_queue in question
274 * Linux uses plugging to build bigger requests queues before letting
275 * the device have at them. If a queue is plugged, the I/O scheduler
276 * is still adding and merging requests on the queue. Once the queue
277 * gets unplugged, the request_fn defined for the queue is invoked and
280 void generic_unplug_device(struct request_queue
*q
)
282 if (blk_queue_plugged(q
)) {
283 spin_lock_irq(q
->queue_lock
);
284 __generic_unplug_device(q
);
285 spin_unlock_irq(q
->queue_lock
);
288 EXPORT_SYMBOL(generic_unplug_device
);
290 static void blk_backing_dev_unplug(struct backing_dev_info
*bdi
,
293 struct request_queue
*q
= bdi
->unplug_io_data
;
298 void blk_unplug_work(struct work_struct
*work
)
300 struct request_queue
*q
=
301 container_of(work
, struct request_queue
, unplug_work
);
303 trace_block_unplug_io(q
);
307 void blk_unplug_timeout(unsigned long data
)
309 struct request_queue
*q
= (struct request_queue
*)data
;
311 trace_block_unplug_timer(q
);
312 kblockd_schedule_work(q
, &q
->unplug_work
);
314 EXPORT_SYMBOL(blk_put_queue
);
316 void blk_unplug(struct request_queue
*q
)
319 * devices don't necessarily have an ->unplug_fn defined
322 trace_block_unplug_io(q
);
326 EXPORT_SYMBOL(blk_unplug
);
329 * blk_start_queue - restart a previously stopped queue
330 * @q: The &struct request_queue in question
333 * blk_start_queue() will clear the stop flag on the queue, and call
334 * the request_fn for the queue if it was in a stopped state when
335 * entered. Also see blk_stop_queue(). Queue lock must be held.
337 void blk_start_queue(struct request_queue
*q
)
339 WARN_ON(!irqs_disabled());
341 queue_flag_clear(QUEUE_FLAG_STOPPED
, q
);
344 EXPORT_SYMBOL(blk_start_queue
);
347 * blk_stop_queue - stop a queue
348 * @q: The &struct request_queue in question
351 * The Linux block layer assumes that a block driver will consume all
352 * entries on the request queue when the request_fn strategy is called.
353 * Often this will not happen, because of hardware limitations (queue
354 * depth settings). If a device driver gets a 'queue full' response,
355 * or if it simply chooses not to queue more I/O at one point, it can
356 * call this function to prevent the request_fn from being called until
357 * the driver has signalled it's ready to go again. This happens by calling
358 * blk_start_queue() to restart queue operations. Queue lock must be held.
360 void blk_stop_queue(struct request_queue
*q
)
363 queue_flag_set(QUEUE_FLAG_STOPPED
, q
);
365 EXPORT_SYMBOL(blk_stop_queue
);
368 * blk_sync_queue - cancel any pending callbacks on a queue
372 * The block layer may perform asynchronous callback activity
373 * on a queue, such as calling the unplug function after a timeout.
374 * A block device may call blk_sync_queue to ensure that any
375 * such activity is cancelled, thus allowing it to release resources
376 * that the callbacks might use. The caller must already have made sure
377 * that its ->make_request_fn will not re-add plugging prior to calling
381 void blk_sync_queue(struct request_queue
*q
)
383 del_timer_sync(&q
->unplug_timer
);
384 del_timer_sync(&q
->timeout
);
385 cancel_work_sync(&q
->unplug_work
);
387 EXPORT_SYMBOL(blk_sync_queue
);
390 * __blk_run_queue - run a single device queue
391 * @q: The queue to run
394 * See @blk_run_queue. This variant must be called with the queue lock
395 * held and interrupts disabled.
398 void __blk_run_queue(struct request_queue
*q
)
402 if (unlikely(blk_queue_stopped(q
)))
405 if (elv_queue_empty(q
))
409 * Only recurse once to avoid overrunning the stack, let the unplug
410 * handling reinvoke the handler shortly if we already got there.
412 if (!queue_flag_test_and_set(QUEUE_FLAG_REENTER
, q
)) {
414 queue_flag_clear(QUEUE_FLAG_REENTER
, q
);
416 queue_flag_set(QUEUE_FLAG_PLUGGED
, q
);
417 kblockd_schedule_work(q
, &q
->unplug_work
);
420 EXPORT_SYMBOL(__blk_run_queue
);
423 * blk_run_queue - run a single device queue
424 * @q: The queue to run
427 * Invoke request handling on this queue, if it has pending work to do.
428 * May be used to restart queueing when a request has completed.
430 void blk_run_queue(struct request_queue
*q
)
434 spin_lock_irqsave(q
->queue_lock
, flags
);
436 spin_unlock_irqrestore(q
->queue_lock
, flags
);
438 EXPORT_SYMBOL(blk_run_queue
);
440 void blk_put_queue(struct request_queue
*q
)
442 kobject_put(&q
->kobj
);
445 void blk_cleanup_queue(struct request_queue
*q
)
448 * We know we have process context here, so we can be a little
449 * cautious and ensure that pending block actions on this device
450 * are done before moving on. Going into this function, we should
451 * not have processes doing IO to this device.
455 del_timer_sync(&q
->backing_dev_info
.laptop_mode_wb_timer
);
456 mutex_lock(&q
->sysfs_lock
);
457 queue_flag_set_unlocked(QUEUE_FLAG_DEAD
, q
);
458 mutex_unlock(&q
->sysfs_lock
);
461 elevator_exit(q
->elevator
);
465 EXPORT_SYMBOL(blk_cleanup_queue
);
467 static int blk_init_free_list(struct request_queue
*q
)
469 struct request_list
*rl
= &q
->rq
;
471 if (unlikely(rl
->rq_pool
))
474 rl
->count
[BLK_RW_SYNC
] = rl
->count
[BLK_RW_ASYNC
] = 0;
475 rl
->starved
[BLK_RW_SYNC
] = rl
->starved
[BLK_RW_ASYNC
] = 0;
477 init_waitqueue_head(&rl
->wait
[BLK_RW_SYNC
]);
478 init_waitqueue_head(&rl
->wait
[BLK_RW_ASYNC
]);
480 rl
->rq_pool
= mempool_create_node(BLKDEV_MIN_RQ
, mempool_alloc_slab
,
481 mempool_free_slab
, request_cachep
, q
->node
);
489 struct request_queue
*blk_alloc_queue(gfp_t gfp_mask
)
491 return blk_alloc_queue_node(gfp_mask
, -1);
493 EXPORT_SYMBOL(blk_alloc_queue
);
495 struct request_queue
*blk_alloc_queue_node(gfp_t gfp_mask
, int node_id
)
497 struct request_queue
*q
;
500 q
= kmem_cache_alloc_node(blk_requestq_cachep
,
501 gfp_mask
| __GFP_ZERO
, node_id
);
505 q
->backing_dev_info
.unplug_io_fn
= blk_backing_dev_unplug
;
506 q
->backing_dev_info
.unplug_io_data
= q
;
507 q
->backing_dev_info
.ra_pages
=
508 (VM_MAX_READAHEAD
* 1024) / PAGE_CACHE_SIZE
;
509 q
->backing_dev_info
.state
= 0;
510 q
->backing_dev_info
.capabilities
= BDI_CAP_MAP_COPY
;
511 q
->backing_dev_info
.name
= "block";
513 err
= bdi_init(&q
->backing_dev_info
);
515 kmem_cache_free(blk_requestq_cachep
, q
);
519 setup_timer(&q
->backing_dev_info
.laptop_mode_wb_timer
,
520 laptop_mode_timer_fn
, (unsigned long) q
);
521 init_timer(&q
->unplug_timer
);
522 setup_timer(&q
->timeout
, blk_rq_timed_out_timer
, (unsigned long) q
);
523 INIT_LIST_HEAD(&q
->timeout_list
);
524 INIT_WORK(&q
->unplug_work
, blk_unplug_work
);
526 kobject_init(&q
->kobj
, &blk_queue_ktype
);
528 mutex_init(&q
->sysfs_lock
);
529 spin_lock_init(&q
->__queue_lock
);
533 EXPORT_SYMBOL(blk_alloc_queue_node
);
536 * blk_init_queue - prepare a request queue for use with a block device
537 * @rfn: The function to be called to process requests that have been
538 * placed on the queue.
539 * @lock: Request queue spin lock
542 * If a block device wishes to use the standard request handling procedures,
543 * which sorts requests and coalesces adjacent requests, then it must
544 * call blk_init_queue(). The function @rfn will be called when there
545 * are requests on the queue that need to be processed. If the device
546 * supports plugging, then @rfn may not be called immediately when requests
547 * are available on the queue, but may be called at some time later instead.
548 * Plugged queues are generally unplugged when a buffer belonging to one
549 * of the requests on the queue is needed, or due to memory pressure.
551 * @rfn is not required, or even expected, to remove all requests off the
552 * queue, but only as many as it can handle at a time. If it does leave
553 * requests on the queue, it is responsible for arranging that the requests
554 * get dealt with eventually.
556 * The queue spin lock must be held while manipulating the requests on the
557 * request queue; this lock will be taken also from interrupt context, so irq
558 * disabling is needed for it.
560 * Function returns a pointer to the initialized request queue, or %NULL if
564 * blk_init_queue() must be paired with a blk_cleanup_queue() call
565 * when the block device is deactivated (such as at module unload).
568 struct request_queue
*blk_init_queue(request_fn_proc
*rfn
, spinlock_t
*lock
)
570 return blk_init_queue_node(rfn
, lock
, -1);
572 EXPORT_SYMBOL(blk_init_queue
);
574 struct request_queue
*
575 blk_init_queue_node(request_fn_proc
*rfn
, spinlock_t
*lock
, int node_id
)
577 struct request_queue
*uninit_q
, *q
;
579 uninit_q
= blk_alloc_queue_node(GFP_KERNEL
, node_id
);
583 q
= blk_init_allocated_queue_node(uninit_q
, rfn
, lock
, node_id
);
585 blk_cleanup_queue(uninit_q
);
589 EXPORT_SYMBOL(blk_init_queue_node
);
591 struct request_queue
*
592 blk_init_allocated_queue(struct request_queue
*q
, request_fn_proc
*rfn
,
595 return blk_init_allocated_queue_node(q
, rfn
, lock
, -1);
597 EXPORT_SYMBOL(blk_init_allocated_queue
);
599 struct request_queue
*
600 blk_init_allocated_queue_node(struct request_queue
*q
, request_fn_proc
*rfn
,
601 spinlock_t
*lock
, int node_id
)
607 if (blk_init_free_list(q
))
611 q
->prep_rq_fn
= NULL
;
612 q
->unplug_fn
= generic_unplug_device
;
613 q
->queue_flags
= QUEUE_FLAG_DEFAULT
;
614 q
->queue_lock
= lock
;
617 * This also sets hw/phys segments, boundary and size
619 blk_queue_make_request(q
, __make_request
);
621 q
->sg_reserved_size
= INT_MAX
;
626 if (!elevator_init(q
, NULL
)) {
627 blk_queue_congestion_threshold(q
);
633 EXPORT_SYMBOL(blk_init_allocated_queue_node
);
635 int blk_get_queue(struct request_queue
*q
)
637 if (likely(!test_bit(QUEUE_FLAG_DEAD
, &q
->queue_flags
))) {
638 kobject_get(&q
->kobj
);
644 EXPORT_SYMBOL(blk_get_queue
);
646 static inline void blk_free_request(struct request_queue
*q
, struct request
*rq
)
648 if (rq
->cmd_flags
& REQ_ELVPRIV
)
649 elv_put_request(q
, rq
);
650 mempool_free(rq
, q
->rq
.rq_pool
);
653 static struct request
*
654 blk_alloc_request(struct request_queue
*q
, int flags
, int priv
, gfp_t gfp_mask
)
656 struct request
*rq
= mempool_alloc(q
->rq
.rq_pool
, gfp_mask
);
663 rq
->cmd_flags
= flags
| REQ_ALLOCED
;
666 if (unlikely(elv_set_request(q
, rq
, gfp_mask
))) {
667 mempool_free(rq
, q
->rq
.rq_pool
);
670 rq
->cmd_flags
|= REQ_ELVPRIV
;
677 * ioc_batching returns true if the ioc is a valid batching request and
678 * should be given priority access to a request.
680 static inline int ioc_batching(struct request_queue
*q
, struct io_context
*ioc
)
686 * Make sure the process is able to allocate at least 1 request
687 * even if the batch times out, otherwise we could theoretically
690 return ioc
->nr_batch_requests
== q
->nr_batching
||
691 (ioc
->nr_batch_requests
> 0
692 && time_before(jiffies
, ioc
->last_waited
+ BLK_BATCH_TIME
));
696 * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
697 * will cause the process to be a "batcher" on all queues in the system. This
698 * is the behaviour we want though - once it gets a wakeup it should be given
701 static void ioc_set_batching(struct request_queue
*q
, struct io_context
*ioc
)
703 if (!ioc
|| ioc_batching(q
, ioc
))
706 ioc
->nr_batch_requests
= q
->nr_batching
;
707 ioc
->last_waited
= jiffies
;
710 static void __freed_request(struct request_queue
*q
, int sync
)
712 struct request_list
*rl
= &q
->rq
;
714 if (rl
->count
[sync
] < queue_congestion_off_threshold(q
))
715 blk_clear_queue_congested(q
, sync
);
717 if (rl
->count
[sync
] + 1 <= q
->nr_requests
) {
718 if (waitqueue_active(&rl
->wait
[sync
]))
719 wake_up(&rl
->wait
[sync
]);
721 blk_clear_queue_full(q
, sync
);
726 * A request has just been released. Account for it, update the full and
727 * congestion status, wake up any waiters. Called under q->queue_lock.
729 static void freed_request(struct request_queue
*q
, int sync
, int priv
)
731 struct request_list
*rl
= &q
->rq
;
737 __freed_request(q
, sync
);
739 if (unlikely(rl
->starved
[sync
^ 1]))
740 __freed_request(q
, sync
^ 1);
744 * Get a free request, queue_lock must be held.
745 * Returns NULL on failure, with queue_lock held.
746 * Returns !NULL on success, with queue_lock *not held*.
748 static struct request
*get_request(struct request_queue
*q
, int rw_flags
,
749 struct bio
*bio
, gfp_t gfp_mask
)
751 struct request
*rq
= NULL
;
752 struct request_list
*rl
= &q
->rq
;
753 struct io_context
*ioc
= NULL
;
754 const bool is_sync
= rw_is_sync(rw_flags
) != 0;
757 may_queue
= elv_may_queue(q
, rw_flags
);
758 if (may_queue
== ELV_MQUEUE_NO
)
761 if (rl
->count
[is_sync
]+1 >= queue_congestion_on_threshold(q
)) {
762 if (rl
->count
[is_sync
]+1 >= q
->nr_requests
) {
763 ioc
= current_io_context(GFP_ATOMIC
, q
->node
);
765 * The queue will fill after this allocation, so set
766 * it as full, and mark this process as "batching".
767 * This process will be allowed to complete a batch of
768 * requests, others will be blocked.
770 if (!blk_queue_full(q
, is_sync
)) {
771 ioc_set_batching(q
, ioc
);
772 blk_set_queue_full(q
, is_sync
);
774 if (may_queue
!= ELV_MQUEUE_MUST
775 && !ioc_batching(q
, ioc
)) {
777 * The queue is full and the allocating
778 * process is not a "batcher", and not
779 * exempted by the IO scheduler
785 blk_set_queue_congested(q
, is_sync
);
789 * Only allow batching queuers to allocate up to 50% over the defined
790 * limit of requests, otherwise we could have thousands of requests
791 * allocated with any setting of ->nr_requests
793 if (rl
->count
[is_sync
] >= (3 * q
->nr_requests
/ 2))
796 rl
->count
[is_sync
]++;
797 rl
->starved
[is_sync
] = 0;
799 priv
= !test_bit(QUEUE_FLAG_ELVSWITCH
, &q
->queue_flags
);
803 if (blk_queue_io_stat(q
))
804 rw_flags
|= REQ_IO_STAT
;
805 spin_unlock_irq(q
->queue_lock
);
807 rq
= blk_alloc_request(q
, rw_flags
, priv
, gfp_mask
);
810 * Allocation failed presumably due to memory. Undo anything
811 * we might have messed up.
813 * Allocating task should really be put onto the front of the
814 * wait queue, but this is pretty rare.
816 spin_lock_irq(q
->queue_lock
);
817 freed_request(q
, is_sync
, priv
);
820 * in the very unlikely event that allocation failed and no
821 * requests for this direction was pending, mark us starved
822 * so that freeing of a request in the other direction will
823 * notice us. another possible fix would be to split the
824 * rq mempool into READ and WRITE
827 if (unlikely(rl
->count
[is_sync
] == 0))
828 rl
->starved
[is_sync
] = 1;
834 * ioc may be NULL here, and ioc_batching will be false. That's
835 * OK, if the queue is under the request limit then requests need
836 * not count toward the nr_batch_requests limit. There will always
837 * be some limit enforced by BLK_BATCH_TIME.
839 if (ioc_batching(q
, ioc
))
840 ioc
->nr_batch_requests
--;
842 trace_block_getrq(q
, bio
, rw_flags
& 1);
848 * No available requests for this queue, unplug the device and wait for some
849 * requests to become available.
851 * Called with q->queue_lock held, and returns with it unlocked.
853 static struct request
*get_request_wait(struct request_queue
*q
, int rw_flags
,
856 const bool is_sync
= rw_is_sync(rw_flags
) != 0;
859 rq
= get_request(q
, rw_flags
, bio
, GFP_NOIO
);
862 struct io_context
*ioc
;
863 struct request_list
*rl
= &q
->rq
;
865 prepare_to_wait_exclusive(&rl
->wait
[is_sync
], &wait
,
866 TASK_UNINTERRUPTIBLE
);
868 trace_block_sleeprq(q
, bio
, rw_flags
& 1);
870 __generic_unplug_device(q
);
871 spin_unlock_irq(q
->queue_lock
);
875 * After sleeping, we become a "batching" process and
876 * will be able to allocate at least one request, and
877 * up to a big batch of them for a small period time.
878 * See ioc_batching, ioc_set_batching
880 ioc
= current_io_context(GFP_NOIO
, q
->node
);
881 ioc_set_batching(q
, ioc
);
883 spin_lock_irq(q
->queue_lock
);
884 finish_wait(&rl
->wait
[is_sync
], &wait
);
886 rq
= get_request(q
, rw_flags
, bio
, GFP_NOIO
);
892 struct request
*blk_get_request(struct request_queue
*q
, int rw
, gfp_t gfp_mask
)
896 if (unlikely(test_bit(QUEUE_FLAG_DEAD
, &q
->queue_flags
)))
899 BUG_ON(rw
!= READ
&& rw
!= WRITE
);
901 spin_lock_irq(q
->queue_lock
);
902 if (gfp_mask
& __GFP_WAIT
) {
903 rq
= get_request_wait(q
, rw
, NULL
);
905 rq
= get_request(q
, rw
, NULL
, gfp_mask
);
907 spin_unlock_irq(q
->queue_lock
);
909 /* q->queue_lock is unlocked at this point */
913 EXPORT_SYMBOL(blk_get_request
);
916 * blk_make_request - given a bio, allocate a corresponding struct request.
917 * @q: target request queue
918 * @bio: The bio describing the memory mappings that will be submitted for IO.
919 * It may be a chained-bio properly constructed by block/bio layer.
920 * @gfp_mask: gfp flags to be used for memory allocation
922 * blk_make_request is the parallel of generic_make_request for BLOCK_PC
923 * type commands. Where the struct request needs to be farther initialized by
924 * the caller. It is passed a &struct bio, which describes the memory info of
927 * The caller of blk_make_request must make sure that bi_io_vec
928 * are set to describe the memory buffers. That bio_data_dir() will return
929 * the needed direction of the request. (And all bio's in the passed bio-chain
930 * are properly set accordingly)
932 * If called under none-sleepable conditions, mapped bio buffers must not
933 * need bouncing, by calling the appropriate masked or flagged allocator,
934 * suitable for the target device. Otherwise the call to blk_queue_bounce will
937 * WARNING: When allocating/cloning a bio-chain, careful consideration should be
938 * given to how you allocate bios. In particular, you cannot use __GFP_WAIT for
939 * anything but the first bio in the chain. Otherwise you risk waiting for IO
940 * completion of a bio that hasn't been submitted yet, thus resulting in a
941 * deadlock. Alternatively bios should be allocated using bio_kmalloc() instead
942 * of bio_alloc(), as that avoids the mempool deadlock.
943 * If possible a big IO should be split into smaller parts when allocation
944 * fails. Partial allocation should not be an error, or you risk a live-lock.
946 struct request
*blk_make_request(struct request_queue
*q
, struct bio
*bio
,
949 struct request
*rq
= blk_get_request(q
, bio_data_dir(bio
), gfp_mask
);
952 return ERR_PTR(-ENOMEM
);
955 struct bio
*bounce_bio
= bio
;
958 blk_queue_bounce(q
, &bounce_bio
);
959 ret
= blk_rq_append_bio(q
, rq
, bounce_bio
);
968 EXPORT_SYMBOL(blk_make_request
);
971 * blk_requeue_request - put a request back on queue
972 * @q: request queue where request should be inserted
973 * @rq: request to be inserted
976 * Drivers often keep queueing requests until the hardware cannot accept
977 * more, when that condition happens we need to put the request back
978 * on the queue. Must be called with queue lock held.
980 void blk_requeue_request(struct request_queue
*q
, struct request
*rq
)
982 blk_delete_timer(rq
);
983 blk_clear_rq_complete(rq
);
984 trace_block_rq_requeue(q
, rq
);
986 if (blk_rq_tagged(rq
))
987 blk_queue_end_tag(q
, rq
);
989 BUG_ON(blk_queued_rq(rq
));
991 elv_requeue_request(q
, rq
);
993 EXPORT_SYMBOL(blk_requeue_request
);
996 * blk_insert_request - insert a special request into a request queue
997 * @q: request queue where request should be inserted
998 * @rq: request to be inserted
999 * @at_head: insert request at head or tail of queue
1000 * @data: private data
1003 * Many block devices need to execute commands asynchronously, so they don't
1004 * block the whole kernel from preemption during request execution. This is
1005 * accomplished normally by inserting aritficial requests tagged as
1006 * REQ_TYPE_SPECIAL in to the corresponding request queue, and letting them
1007 * be scheduled for actual execution by the request queue.
1009 * We have the option of inserting the head or the tail of the queue.
1010 * Typically we use the tail for new ioctls and so forth. We use the head
1011 * of the queue for things like a QUEUE_FULL message from a device, or a
1012 * host that is unable to accept a particular command.
1014 void blk_insert_request(struct request_queue
*q
, struct request
*rq
,
1015 int at_head
, void *data
)
1017 int where
= at_head
? ELEVATOR_INSERT_FRONT
: ELEVATOR_INSERT_BACK
;
1018 unsigned long flags
;
1021 * tell I/O scheduler that this isn't a regular read/write (ie it
1022 * must not attempt merges on this) and that it acts as a soft
1025 rq
->cmd_type
= REQ_TYPE_SPECIAL
;
1029 spin_lock_irqsave(q
->queue_lock
, flags
);
1032 * If command is tagged, release the tag
1034 if (blk_rq_tagged(rq
))
1035 blk_queue_end_tag(q
, rq
);
1037 drive_stat_acct(rq
, 1);
1038 __elv_add_request(q
, rq
, where
, 0);
1040 spin_unlock_irqrestore(q
->queue_lock
, flags
);
1042 EXPORT_SYMBOL(blk_insert_request
);
1045 * add-request adds a request to the linked list.
1046 * queue lock is held and interrupts disabled, as we muck with the
1047 * request queue list.
1049 static inline void add_request(struct request_queue
*q
, struct request
*req
)
1051 drive_stat_acct(req
, 1);
1054 * elevator indicated where it wants this request to be
1055 * inserted at elevator_merge time
1057 __elv_add_request(q
, req
, ELEVATOR_INSERT_SORT
, 0);
1060 static void part_round_stats_single(int cpu
, struct hd_struct
*part
,
1063 if (now
== part
->stamp
)
1066 if (part_in_flight(part
)) {
1067 __part_stat_add(cpu
, part
, time_in_queue
,
1068 part_in_flight(part
) * (now
- part
->stamp
));
1069 __part_stat_add(cpu
, part
, io_ticks
, (now
- part
->stamp
));
1075 * part_round_stats() - Round off the performance stats on a struct disk_stats.
1076 * @cpu: cpu number for stats access
1077 * @part: target partition
1079 * The average IO queue length and utilisation statistics are maintained
1080 * by observing the current state of the queue length and the amount of
1081 * time it has been in this state for.
1083 * Normally, that accounting is done on IO completion, but that can result
1084 * in more than a second's worth of IO being accounted for within any one
1085 * second, leading to >100% utilisation. To deal with that, we call this
1086 * function to do a round-off before returning the results when reading
1087 * /proc/diskstats. This accounts immediately for all queue usage up to
1088 * the current jiffies and restarts the counters again.
1090 void part_round_stats(int cpu
, struct hd_struct
*part
)
1092 unsigned long now
= jiffies
;
1095 part_round_stats_single(cpu
, &part_to_disk(part
)->part0
, now
);
1096 part_round_stats_single(cpu
, part
, now
);
1098 EXPORT_SYMBOL_GPL(part_round_stats
);
1101 * queue lock must be held
1103 void __blk_put_request(struct request_queue
*q
, struct request
*req
)
1107 if (unlikely(--req
->ref_count
))
1110 elv_completed_request(q
, req
);
1112 /* this is a bio leak */
1113 WARN_ON(req
->bio
!= NULL
);
1116 * Request may not have originated from ll_rw_blk. if not,
1117 * it didn't come out of our reserved rq pools
1119 if (req
->cmd_flags
& REQ_ALLOCED
) {
1120 int is_sync
= rq_is_sync(req
) != 0;
1121 int priv
= req
->cmd_flags
& REQ_ELVPRIV
;
1123 BUG_ON(!list_empty(&req
->queuelist
));
1124 BUG_ON(!hlist_unhashed(&req
->hash
));
1126 blk_free_request(q
, req
);
1127 freed_request(q
, is_sync
, priv
);
1130 EXPORT_SYMBOL_GPL(__blk_put_request
);
1132 void blk_put_request(struct request
*req
)
1134 unsigned long flags
;
1135 struct request_queue
*q
= req
->q
;
1137 spin_lock_irqsave(q
->queue_lock
, flags
);
1138 __blk_put_request(q
, req
);
1139 spin_unlock_irqrestore(q
->queue_lock
, flags
);
1141 EXPORT_SYMBOL(blk_put_request
);
1143 void init_request_from_bio(struct request
*req
, struct bio
*bio
)
1145 req
->cpu
= bio
->bi_comp_cpu
;
1146 req
->cmd_type
= REQ_TYPE_FS
;
1149 * Inherit FAILFAST from bio (for read-ahead, and explicit
1150 * FAILFAST). FAILFAST flags are identical for req and bio.
1152 if (bio_rw_flagged(bio
, BIO_RW_AHEAD
))
1153 req
->cmd_flags
|= REQ_FAILFAST_MASK
;
1155 req
->cmd_flags
|= bio
->bi_rw
& REQ_FAILFAST_MASK
;
1157 if (bio_rw_flagged(bio
, BIO_RW_DISCARD
))
1158 req
->cmd_flags
|= REQ_DISCARD
;
1159 if (bio_rw_flagged(bio
, BIO_RW_BARRIER
))
1160 req
->cmd_flags
|= REQ_HARDBARRIER
;
1161 if (bio_rw_flagged(bio
, BIO_RW_SYNCIO
))
1162 req
->cmd_flags
|= REQ_RW_SYNC
;
1163 if (bio_rw_flagged(bio
, BIO_RW_META
))
1164 req
->cmd_flags
|= REQ_RW_META
;
1165 if (bio_rw_flagged(bio
, BIO_RW_NOIDLE
))
1166 req
->cmd_flags
|= REQ_NOIDLE
;
1169 req
->__sector
= bio
->bi_sector
;
1170 req
->ioprio
= bio_prio(bio
);
1171 blk_rq_bio_prep(req
->q
, req
, bio
);
1175 * Only disabling plugging for non-rotational devices if it does tagging
1176 * as well, otherwise we do need the proper merging
1178 static inline bool queue_should_plug(struct request_queue
*q
)
1180 return !(blk_queue_nonrot(q
) && blk_queue_tagged(q
));
1183 static int __make_request(struct request_queue
*q
, struct bio
*bio
)
1185 struct request
*req
;
1187 unsigned int bytes
= bio
->bi_size
;
1188 const unsigned short prio
= bio_prio(bio
);
1189 const bool sync
= bio_rw_flagged(bio
, BIO_RW_SYNCIO
);
1190 const bool unplug
= bio_rw_flagged(bio
, BIO_RW_UNPLUG
);
1191 const unsigned int ff
= bio
->bi_rw
& REQ_FAILFAST_MASK
;
1194 if (bio_rw_flagged(bio
, BIO_RW_BARRIER
) &&
1195 (q
->next_ordered
== QUEUE_ORDERED_NONE
)) {
1196 bio_endio(bio
, -EOPNOTSUPP
);
1200 * low level driver can indicate that it wants pages above a
1201 * certain limit bounced to low memory (ie for highmem, or even
1202 * ISA dma in theory)
1204 blk_queue_bounce(q
, &bio
);
1206 spin_lock_irq(q
->queue_lock
);
1208 if (unlikely(bio_rw_flagged(bio
, BIO_RW_BARRIER
)) || elv_queue_empty(q
))
1211 el_ret
= elv_merge(q
, &req
, bio
);
1213 case ELEVATOR_BACK_MERGE
:
1214 BUG_ON(!rq_mergeable(req
));
1216 if (!ll_back_merge_fn(q
, req
, bio
))
1219 trace_block_bio_backmerge(q
, bio
);
1221 if ((req
->cmd_flags
& REQ_FAILFAST_MASK
) != ff
)
1222 blk_rq_set_mixed_merge(req
);
1224 req
->biotail
->bi_next
= bio
;
1226 req
->__data_len
+= bytes
;
1227 req
->ioprio
= ioprio_best(req
->ioprio
, prio
);
1228 if (!blk_rq_cpu_valid(req
))
1229 req
->cpu
= bio
->bi_comp_cpu
;
1230 drive_stat_acct(req
, 0);
1231 elv_bio_merged(q
, req
, bio
);
1232 if (!attempt_back_merge(q
, req
))
1233 elv_merged_request(q
, req
, el_ret
);
1236 case ELEVATOR_FRONT_MERGE
:
1237 BUG_ON(!rq_mergeable(req
));
1239 if (!ll_front_merge_fn(q
, req
, bio
))
1242 trace_block_bio_frontmerge(q
, bio
);
1244 if ((req
->cmd_flags
& REQ_FAILFAST_MASK
) != ff
) {
1245 blk_rq_set_mixed_merge(req
);
1246 req
->cmd_flags
&= ~REQ_FAILFAST_MASK
;
1247 req
->cmd_flags
|= ff
;
1250 bio
->bi_next
= req
->bio
;
1254 * may not be valid. if the low level driver said
1255 * it didn't need a bounce buffer then it better
1256 * not touch req->buffer either...
1258 req
->buffer
= bio_data(bio
);
1259 req
->__sector
= bio
->bi_sector
;
1260 req
->__data_len
+= bytes
;
1261 req
->ioprio
= ioprio_best(req
->ioprio
, prio
);
1262 if (!blk_rq_cpu_valid(req
))
1263 req
->cpu
= bio
->bi_comp_cpu
;
1264 drive_stat_acct(req
, 0);
1265 elv_bio_merged(q
, req
, bio
);
1266 if (!attempt_front_merge(q
, req
))
1267 elv_merged_request(q
, req
, el_ret
);
1270 /* ELV_NO_MERGE: elevator says don't/can't merge. */
1277 * This sync check and mask will be re-done in init_request_from_bio(),
1278 * but we need to set it earlier to expose the sync flag to the
1279 * rq allocator and io schedulers.
1281 rw_flags
= bio_data_dir(bio
);
1283 rw_flags
|= REQ_RW_SYNC
;
1286 * Grab a free request. This is might sleep but can not fail.
1287 * Returns with the queue unlocked.
1289 req
= get_request_wait(q
, rw_flags
, bio
);
1292 * After dropping the lock and possibly sleeping here, our request
1293 * may now be mergeable after it had proven unmergeable (above).
1294 * We don't worry about that case for efficiency. It won't happen
1295 * often, and the elevators are able to handle it.
1297 init_request_from_bio(req
, bio
);
1299 spin_lock_irq(q
->queue_lock
);
1300 if (test_bit(QUEUE_FLAG_SAME_COMP
, &q
->queue_flags
) ||
1301 bio_flagged(bio
, BIO_CPU_AFFINE
))
1302 req
->cpu
= blk_cpu_to_group(smp_processor_id());
1303 if (queue_should_plug(q
) && elv_queue_empty(q
))
1305 add_request(q
, req
);
1307 if (unplug
|| !queue_should_plug(q
))
1308 __generic_unplug_device(q
);
1309 spin_unlock_irq(q
->queue_lock
);
1314 * If bio->bi_dev is a partition, remap the location
1316 static inline void blk_partition_remap(struct bio
*bio
)
1318 struct block_device
*bdev
= bio
->bi_bdev
;
1320 if (bio_sectors(bio
) && bdev
!= bdev
->bd_contains
) {
1321 struct hd_struct
*p
= bdev
->bd_part
;
1323 bio
->bi_sector
+= p
->start_sect
;
1324 bio
->bi_bdev
= bdev
->bd_contains
;
1326 trace_block_remap(bdev_get_queue(bio
->bi_bdev
), bio
,
1328 bio
->bi_sector
- p
->start_sect
);
1332 static void handle_bad_sector(struct bio
*bio
)
1334 char b
[BDEVNAME_SIZE
];
1336 printk(KERN_INFO
"attempt to access beyond end of device\n");
1337 printk(KERN_INFO
"%s: rw=%ld, want=%Lu, limit=%Lu\n",
1338 bdevname(bio
->bi_bdev
, b
),
1340 (unsigned long long)bio
->bi_sector
+ bio_sectors(bio
),
1341 (long long)(bio
->bi_bdev
->bd_inode
->i_size
>> 9));
1343 set_bit(BIO_EOF
, &bio
->bi_flags
);
1346 #ifdef CONFIG_FAIL_MAKE_REQUEST
1348 static DECLARE_FAULT_ATTR(fail_make_request
);
1350 static int __init
setup_fail_make_request(char *str
)
1352 return setup_fault_attr(&fail_make_request
, str
);
1354 __setup("fail_make_request=", setup_fail_make_request
);
1356 static int should_fail_request(struct bio
*bio
)
1358 struct hd_struct
*part
= bio
->bi_bdev
->bd_part
;
1360 if (part_to_disk(part
)->part0
.make_it_fail
|| part
->make_it_fail
)
1361 return should_fail(&fail_make_request
, bio
->bi_size
);
1366 static int __init
fail_make_request_debugfs(void)
1368 return init_fault_attr_dentries(&fail_make_request
,
1369 "fail_make_request");
1372 late_initcall(fail_make_request_debugfs
);
1374 #else /* CONFIG_FAIL_MAKE_REQUEST */
1376 static inline int should_fail_request(struct bio
*bio
)
1381 #endif /* CONFIG_FAIL_MAKE_REQUEST */
1384 * Check whether this bio extends beyond the end of the device.
1386 static inline int bio_check_eod(struct bio
*bio
, unsigned int nr_sectors
)
1393 /* Test device or partition size, when known. */
1394 maxsector
= bio
->bi_bdev
->bd_inode
->i_size
>> 9;
1396 sector_t sector
= bio
->bi_sector
;
1398 if (maxsector
< nr_sectors
|| maxsector
- nr_sectors
< sector
) {
1400 * This may well happen - the kernel calls bread()
1401 * without checking the size of the device, e.g., when
1402 * mounting a device.
1404 handle_bad_sector(bio
);
1413 * generic_make_request - hand a buffer to its device driver for I/O
1414 * @bio: The bio describing the location in memory and on the device.
1416 * generic_make_request() is used to make I/O requests of block
1417 * devices. It is passed a &struct bio, which describes the I/O that needs
1420 * generic_make_request() does not return any status. The
1421 * success/failure status of the request, along with notification of
1422 * completion, is delivered asynchronously through the bio->bi_end_io
1423 * function described (one day) else where.
1425 * The caller of generic_make_request must make sure that bi_io_vec
1426 * are set to describe the memory buffer, and that bi_dev and bi_sector are
1427 * set to describe the device address, and the
1428 * bi_end_io and optionally bi_private are set to describe how
1429 * completion notification should be signaled.
1431 * generic_make_request and the drivers it calls may use bi_next if this
1432 * bio happens to be merged with someone else, and may change bi_dev and
1433 * bi_sector for remaps as it sees fit. So the values of these fields
1434 * should NOT be depended on after the call to generic_make_request.
1436 static inline void __generic_make_request(struct bio
*bio
)
1438 struct request_queue
*q
;
1439 sector_t old_sector
;
1440 int ret
, nr_sectors
= bio_sectors(bio
);
1446 if (bio_check_eod(bio
, nr_sectors
))
1450 * Resolve the mapping until finished. (drivers are
1451 * still free to implement/resolve their own stacking
1452 * by explicitly returning 0)
1454 * NOTE: we don't repeat the blk_size check for each new device.
1455 * Stacking drivers are expected to know what they are doing.
1460 char b
[BDEVNAME_SIZE
];
1462 q
= bdev_get_queue(bio
->bi_bdev
);
1465 "generic_make_request: Trying to access "
1466 "nonexistent block-device %s (%Lu)\n",
1467 bdevname(bio
->bi_bdev
, b
),
1468 (long long) bio
->bi_sector
);
1472 if (unlikely(!bio_rw_flagged(bio
, BIO_RW_DISCARD
) &&
1473 nr_sectors
> queue_max_hw_sectors(q
))) {
1474 printk(KERN_ERR
"bio too big device %s (%u > %u)\n",
1475 bdevname(bio
->bi_bdev
, b
),
1477 queue_max_hw_sectors(q
));
1481 if (unlikely(test_bit(QUEUE_FLAG_DEAD
, &q
->queue_flags
)))
1484 if (should_fail_request(bio
))
1488 * If this device has partitions, remap block n
1489 * of partition p to block n+start(p) of the disk.
1491 blk_partition_remap(bio
);
1493 if (bio_integrity_enabled(bio
) && bio_integrity_prep(bio
))
1496 if (old_sector
!= -1)
1497 trace_block_remap(q
, bio
, old_dev
, old_sector
);
1499 old_sector
= bio
->bi_sector
;
1500 old_dev
= bio
->bi_bdev
->bd_dev
;
1502 if (bio_check_eod(bio
, nr_sectors
))
1505 if (bio_rw_flagged(bio
, BIO_RW_DISCARD
) &&
1506 !blk_queue_discard(q
)) {
1511 trace_block_bio_queue(q
, bio
);
1513 ret
= q
->make_request_fn(q
, bio
);
1519 bio_endio(bio
, err
);
1523 * We only want one ->make_request_fn to be active at a time,
1524 * else stack usage with stacked devices could be a problem.
1525 * So use current->bio_list to keep a list of requests
1526 * submited by a make_request_fn function.
1527 * current->bio_list is also used as a flag to say if
1528 * generic_make_request is currently active in this task or not.
1529 * If it is NULL, then no make_request is active. If it is non-NULL,
1530 * then a make_request is active, and new requests should be added
1533 void generic_make_request(struct bio
*bio
)
1535 struct bio_list bio_list_on_stack
;
1537 if (current
->bio_list
) {
1538 /* make_request is active */
1539 bio_list_add(current
->bio_list
, bio
);
1542 /* following loop may be a bit non-obvious, and so deserves some
1544 * Before entering the loop, bio->bi_next is NULL (as all callers
1545 * ensure that) so we have a list with a single bio.
1546 * We pretend that we have just taken it off a longer list, so
1547 * we assign bio_list to a pointer to the bio_list_on_stack,
1548 * thus initialising the bio_list of new bios to be
1549 * added. __generic_make_request may indeed add some more bios
1550 * through a recursive call to generic_make_request. If it
1551 * did, we find a non-NULL value in bio_list and re-enter the loop
1552 * from the top. In this case we really did just take the bio
1553 * of the top of the list (no pretending) and so remove it from
1554 * bio_list, and call into __generic_make_request again.
1556 * The loop was structured like this to make only one call to
1557 * __generic_make_request (which is important as it is large and
1558 * inlined) and to keep the structure simple.
1560 BUG_ON(bio
->bi_next
);
1561 bio_list_init(&bio_list_on_stack
);
1562 current
->bio_list
= &bio_list_on_stack
;
1564 __generic_make_request(bio
);
1565 bio
= bio_list_pop(current
->bio_list
);
1567 current
->bio_list
= NULL
; /* deactivate */
1569 EXPORT_SYMBOL(generic_make_request
);
1572 * submit_bio - submit a bio to the block device layer for I/O
1573 * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead)
1574 * @bio: The &struct bio which describes the I/O
1576 * submit_bio() is very similar in purpose to generic_make_request(), and
1577 * uses that function to do most of the work. Both are fairly rough
1578 * interfaces; @bio must be presetup and ready for I/O.
1581 void submit_bio(int rw
, struct bio
*bio
)
1583 int count
= bio_sectors(bio
);
1588 * If it's a regular read/write or a barrier with data attached,
1589 * go through the normal accounting stuff before submission.
1591 if (bio_has_data(bio
) && !(rw
& (1 << BIO_RW_DISCARD
))) {
1593 count_vm_events(PGPGOUT
, count
);
1595 task_io_account_read(bio
->bi_size
);
1596 count_vm_events(PGPGIN
, count
);
1599 if (unlikely(block_dump
)) {
1600 char b
[BDEVNAME_SIZE
];
1601 printk(KERN_DEBUG
"%s(%d): %s block %Lu on %s\n",
1602 current
->comm
, task_pid_nr(current
),
1603 (rw
& WRITE
) ? "WRITE" : "READ",
1604 (unsigned long long)bio
->bi_sector
,
1605 bdevname(bio
->bi_bdev
, b
));
1609 generic_make_request(bio
);
1611 EXPORT_SYMBOL(submit_bio
);
1614 * blk_rq_check_limits - Helper function to check a request for the queue limit
1616 * @rq: the request being checked
1619 * @rq may have been made based on weaker limitations of upper-level queues
1620 * in request stacking drivers, and it may violate the limitation of @q.
1621 * Since the block layer and the underlying device driver trust @rq
1622 * after it is inserted to @q, it should be checked against @q before
1623 * the insertion using this generic function.
1625 * This function should also be useful for request stacking drivers
1626 * in some cases below, so export this fuction.
1627 * Request stacking drivers like request-based dm may change the queue
1628 * limits while requests are in the queue (e.g. dm's table swapping).
1629 * Such request stacking drivers should check those requests agaist
1630 * the new queue limits again when they dispatch those requests,
1631 * although such checkings are also done against the old queue limits
1632 * when submitting requests.
1634 int blk_rq_check_limits(struct request_queue
*q
, struct request
*rq
)
1636 if (blk_rq_sectors(rq
) > queue_max_sectors(q
) ||
1637 blk_rq_bytes(rq
) > queue_max_hw_sectors(q
) << 9) {
1638 printk(KERN_ERR
"%s: over max size limit.\n", __func__
);
1643 * queue's settings related to segment counting like q->bounce_pfn
1644 * may differ from that of other stacking queues.
1645 * Recalculate it to check the request correctly on this queue's
1648 blk_recalc_rq_segments(rq
);
1649 if (rq
->nr_phys_segments
> queue_max_segments(q
)) {
1650 printk(KERN_ERR
"%s: over max segments limit.\n", __func__
);
1656 EXPORT_SYMBOL_GPL(blk_rq_check_limits
);
1659 * blk_insert_cloned_request - Helper for stacking drivers to submit a request
1660 * @q: the queue to submit the request
1661 * @rq: the request being queued
1663 int blk_insert_cloned_request(struct request_queue
*q
, struct request
*rq
)
1665 unsigned long flags
;
1667 if (blk_rq_check_limits(q
, rq
))
1670 #ifdef CONFIG_FAIL_MAKE_REQUEST
1671 if (rq
->rq_disk
&& rq
->rq_disk
->part0
.make_it_fail
&&
1672 should_fail(&fail_make_request
, blk_rq_bytes(rq
)))
1676 spin_lock_irqsave(q
->queue_lock
, flags
);
1679 * Submitting request must be dequeued before calling this function
1680 * because it will be linked to another request_queue
1682 BUG_ON(blk_queued_rq(rq
));
1684 drive_stat_acct(rq
, 1);
1685 __elv_add_request(q
, rq
, ELEVATOR_INSERT_BACK
, 0);
1687 spin_unlock_irqrestore(q
->queue_lock
, flags
);
1691 EXPORT_SYMBOL_GPL(blk_insert_cloned_request
);
1694 * blk_rq_err_bytes - determine number of bytes till the next failure boundary
1695 * @rq: request to examine
1698 * A request could be merge of IOs which require different failure
1699 * handling. This function determines the number of bytes which
1700 * can be failed from the beginning of the request without
1701 * crossing into area which need to be retried further.
1704 * The number of bytes to fail.
1707 * queue_lock must be held.
1709 unsigned int blk_rq_err_bytes(const struct request
*rq
)
1711 unsigned int ff
= rq
->cmd_flags
& REQ_FAILFAST_MASK
;
1712 unsigned int bytes
= 0;
1715 if (!(rq
->cmd_flags
& REQ_MIXED_MERGE
))
1716 return blk_rq_bytes(rq
);
1719 * Currently the only 'mixing' which can happen is between
1720 * different fastfail types. We can safely fail portions
1721 * which have all the failfast bits that the first one has -
1722 * the ones which are at least as eager to fail as the first
1725 for (bio
= rq
->bio
; bio
; bio
= bio
->bi_next
) {
1726 if ((bio
->bi_rw
& ff
) != ff
)
1728 bytes
+= bio
->bi_size
;
1731 /* this could lead to infinite loop */
1732 BUG_ON(blk_rq_bytes(rq
) && !bytes
);
1735 EXPORT_SYMBOL_GPL(blk_rq_err_bytes
);
1737 static void blk_account_io_completion(struct request
*req
, unsigned int bytes
)
1739 if (blk_do_io_stat(req
)) {
1740 const int rw
= rq_data_dir(req
);
1741 struct hd_struct
*part
;
1744 cpu
= part_stat_lock();
1745 part
= disk_map_sector_rcu(req
->rq_disk
, blk_rq_pos(req
));
1746 part_stat_add(cpu
, part
, sectors
[rw
], bytes
>> 9);
1751 static void blk_account_io_done(struct request
*req
)
1754 * Account IO completion. bar_rq isn't accounted as a normal
1755 * IO on queueing nor completion. Accounting the containing
1756 * request is enough.
1758 if (blk_do_io_stat(req
) && req
!= &req
->q
->bar_rq
) {
1759 unsigned long duration
= jiffies
- req
->start_time
;
1760 const int rw
= rq_data_dir(req
);
1761 struct hd_struct
*part
;
1764 cpu
= part_stat_lock();
1765 part
= disk_map_sector_rcu(req
->rq_disk
, blk_rq_pos(req
));
1767 part_stat_inc(cpu
, part
, ios
[rw
]);
1768 part_stat_add(cpu
, part
, ticks
[rw
], duration
);
1769 part_round_stats(cpu
, part
);
1770 part_dec_in_flight(part
, rw
);
1777 * blk_peek_request - peek at the top of a request queue
1778 * @q: request queue to peek at
1781 * Return the request at the top of @q. The returned request
1782 * should be started using blk_start_request() before LLD starts
1786 * Pointer to the request at the top of @q if available. Null
1790 * queue_lock must be held.
1792 struct request
*blk_peek_request(struct request_queue
*q
)
1797 while ((rq
= __elv_next_request(q
)) != NULL
) {
1798 if (!(rq
->cmd_flags
& REQ_STARTED
)) {
1800 * This is the first time the device driver
1801 * sees this request (possibly after
1802 * requeueing). Notify IO scheduler.
1804 if (blk_sorted_rq(rq
))
1805 elv_activate_rq(q
, rq
);
1808 * just mark as started even if we don't start
1809 * it, a request that has been delayed should
1810 * not be passed by new incoming requests
1812 rq
->cmd_flags
|= REQ_STARTED
;
1813 trace_block_rq_issue(q
, rq
);
1816 if (!q
->boundary_rq
|| q
->boundary_rq
== rq
) {
1817 q
->end_sector
= rq_end_sector(rq
);
1818 q
->boundary_rq
= NULL
;
1821 if (rq
->cmd_flags
& REQ_DONTPREP
)
1824 if (q
->dma_drain_size
&& blk_rq_bytes(rq
)) {
1826 * make sure space for the drain appears we
1827 * know we can do this because max_hw_segments
1828 * has been adjusted to be one fewer than the
1831 rq
->nr_phys_segments
++;
1837 ret
= q
->prep_rq_fn(q
, rq
);
1838 if (ret
== BLKPREP_OK
) {
1840 } else if (ret
== BLKPREP_DEFER
) {
1842 * the request may have been (partially) prepped.
1843 * we need to keep this request in the front to
1844 * avoid resource deadlock. REQ_STARTED will
1845 * prevent other fs requests from passing this one.
1847 if (q
->dma_drain_size
&& blk_rq_bytes(rq
) &&
1848 !(rq
->cmd_flags
& REQ_DONTPREP
)) {
1850 * remove the space for the drain we added
1851 * so that we don't add it again
1853 --rq
->nr_phys_segments
;
1858 } else if (ret
== BLKPREP_KILL
) {
1859 rq
->cmd_flags
|= REQ_QUIET
;
1861 * Mark this request as started so we don't trigger
1862 * any debug logic in the end I/O path.
1864 blk_start_request(rq
);
1865 __blk_end_request_all(rq
, -EIO
);
1867 printk(KERN_ERR
"%s: bad return=%d\n", __func__
, ret
);
1874 EXPORT_SYMBOL(blk_peek_request
);
1876 void blk_dequeue_request(struct request
*rq
)
1878 struct request_queue
*q
= rq
->q
;
1880 BUG_ON(list_empty(&rq
->queuelist
));
1881 BUG_ON(ELV_ON_HASH(rq
));
1883 list_del_init(&rq
->queuelist
);
1886 * the time frame between a request being removed from the lists
1887 * and to it is freed is accounted as io that is in progress at
1890 if (blk_account_rq(rq
)) {
1891 q
->in_flight
[rq_is_sync(rq
)]++;
1892 set_io_start_time_ns(rq
);
1897 * blk_start_request - start request processing on the driver
1898 * @req: request to dequeue
1901 * Dequeue @req and start timeout timer on it. This hands off the
1902 * request to the driver.
1904 * Block internal functions which don't want to start timer should
1905 * call blk_dequeue_request().
1908 * queue_lock must be held.
1910 void blk_start_request(struct request
*req
)
1912 blk_dequeue_request(req
);
1915 * We are now handing the request to the hardware, initialize
1916 * resid_len to full count and add the timeout handler.
1918 req
->resid_len
= blk_rq_bytes(req
);
1919 if (unlikely(blk_bidi_rq(req
)))
1920 req
->next_rq
->resid_len
= blk_rq_bytes(req
->next_rq
);
1924 EXPORT_SYMBOL(blk_start_request
);
1927 * blk_fetch_request - fetch a request from a request queue
1928 * @q: request queue to fetch a request from
1931 * Return the request at the top of @q. The request is started on
1932 * return and LLD can start processing it immediately.
1935 * Pointer to the request at the top of @q if available. Null
1939 * queue_lock must be held.
1941 struct request
*blk_fetch_request(struct request_queue
*q
)
1945 rq
= blk_peek_request(q
);
1947 blk_start_request(rq
);
1950 EXPORT_SYMBOL(blk_fetch_request
);
1953 * blk_update_request - Special helper function for request stacking drivers
1954 * @req: the request being processed
1955 * @error: %0 for success, < %0 for error
1956 * @nr_bytes: number of bytes to complete @req
1959 * Ends I/O on a number of bytes attached to @req, but doesn't complete
1960 * the request structure even if @req doesn't have leftover.
1961 * If @req has leftover, sets it up for the next range of segments.
1963 * This special helper function is only for request stacking drivers
1964 * (e.g. request-based dm) so that they can handle partial completion.
1965 * Actual device drivers should use blk_end_request instead.
1967 * Passing the result of blk_rq_bytes() as @nr_bytes guarantees
1968 * %false return from this function.
1971 * %false - this request doesn't have any more data
1972 * %true - this request has more data
1974 bool blk_update_request(struct request
*req
, int error
, unsigned int nr_bytes
)
1976 int total_bytes
, bio_nbytes
, next_idx
= 0;
1982 trace_block_rq_complete(req
->q
, req
);
1985 * For fs requests, rq is just carrier of independent bio's
1986 * and each partial completion should be handled separately.
1987 * Reset per-request error on each partial completion.
1989 * TODO: tj: This is too subtle. It would be better to let
1990 * low level drivers do what they see fit.
1992 if (blk_fs_request(req
))
1995 if (error
&& (blk_fs_request(req
) && !(req
->cmd_flags
& REQ_QUIET
))) {
1996 printk(KERN_ERR
"end_request: I/O error, dev %s, sector %llu\n",
1997 req
->rq_disk
? req
->rq_disk
->disk_name
: "?",
1998 (unsigned long long)blk_rq_pos(req
));
2001 blk_account_io_completion(req
, nr_bytes
);
2003 total_bytes
= bio_nbytes
= 0;
2004 while ((bio
= req
->bio
) != NULL
) {
2007 if (nr_bytes
>= bio
->bi_size
) {
2008 req
->bio
= bio
->bi_next
;
2009 nbytes
= bio
->bi_size
;
2010 req_bio_endio(req
, bio
, nbytes
, error
);
2014 int idx
= bio
->bi_idx
+ next_idx
;
2016 if (unlikely(idx
>= bio
->bi_vcnt
)) {
2017 blk_dump_rq_flags(req
, "__end_that");
2018 printk(KERN_ERR
"%s: bio idx %d >= vcnt %d\n",
2019 __func__
, idx
, bio
->bi_vcnt
);
2023 nbytes
= bio_iovec_idx(bio
, idx
)->bv_len
;
2024 BIO_BUG_ON(nbytes
> bio
->bi_size
);
2027 * not a complete bvec done
2029 if (unlikely(nbytes
> nr_bytes
)) {
2030 bio_nbytes
+= nr_bytes
;
2031 total_bytes
+= nr_bytes
;
2036 * advance to the next vector
2039 bio_nbytes
+= nbytes
;
2042 total_bytes
+= nbytes
;
2048 * end more in this run, or just return 'not-done'
2050 if (unlikely(nr_bytes
<= 0))
2060 * Reset counters so that the request stacking driver
2061 * can find how many bytes remain in the request
2064 req
->__data_len
= 0;
2069 * if the request wasn't completed, update state
2072 req_bio_endio(req
, bio
, bio_nbytes
, error
);
2073 bio
->bi_idx
+= next_idx
;
2074 bio_iovec(bio
)->bv_offset
+= nr_bytes
;
2075 bio_iovec(bio
)->bv_len
-= nr_bytes
;
2078 req
->__data_len
-= total_bytes
;
2079 req
->buffer
= bio_data(req
->bio
);
2081 /* update sector only for requests with clear definition of sector */
2082 if (blk_fs_request(req
) || blk_discard_rq(req
))
2083 req
->__sector
+= total_bytes
>> 9;
2085 /* mixed attributes always follow the first bio */
2086 if (req
->cmd_flags
& REQ_MIXED_MERGE
) {
2087 req
->cmd_flags
&= ~REQ_FAILFAST_MASK
;
2088 req
->cmd_flags
|= req
->bio
->bi_rw
& REQ_FAILFAST_MASK
;
2092 * If total number of sectors is less than the first segment
2093 * size, something has gone terribly wrong.
2095 if (blk_rq_bytes(req
) < blk_rq_cur_bytes(req
)) {
2096 printk(KERN_ERR
"blk: request botched\n");
2097 req
->__data_len
= blk_rq_cur_bytes(req
);
2100 /* recalculate the number of segments */
2101 blk_recalc_rq_segments(req
);
2105 EXPORT_SYMBOL_GPL(blk_update_request
);
2107 static bool blk_update_bidi_request(struct request
*rq
, int error
,
2108 unsigned int nr_bytes
,
2109 unsigned int bidi_bytes
)
2111 if (blk_update_request(rq
, error
, nr_bytes
))
2114 /* Bidi request must be completed as a whole */
2115 if (unlikely(blk_bidi_rq(rq
)) &&
2116 blk_update_request(rq
->next_rq
, error
, bidi_bytes
))
2119 add_disk_randomness(rq
->rq_disk
);
2125 * queue lock must be held
2127 static void blk_finish_request(struct request
*req
, int error
)
2129 if (blk_rq_tagged(req
))
2130 blk_queue_end_tag(req
->q
, req
);
2132 BUG_ON(blk_queued_rq(req
));
2134 if (unlikely(laptop_mode
) && blk_fs_request(req
))
2135 laptop_io_completion(&req
->q
->backing_dev_info
);
2137 blk_delete_timer(req
);
2139 blk_account_io_done(req
);
2142 req
->end_io(req
, error
);
2144 if (blk_bidi_rq(req
))
2145 __blk_put_request(req
->next_rq
->q
, req
->next_rq
);
2147 __blk_put_request(req
->q
, req
);
2152 * blk_end_bidi_request - Complete a bidi request
2153 * @rq: the request to complete
2154 * @error: %0 for success, < %0 for error
2155 * @nr_bytes: number of bytes to complete @rq
2156 * @bidi_bytes: number of bytes to complete @rq->next_rq
2159 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
2160 * Drivers that supports bidi can safely call this member for any
2161 * type of request, bidi or uni. In the later case @bidi_bytes is
2165 * %false - we are done with this request
2166 * %true - still buffers pending for this request
2168 static bool blk_end_bidi_request(struct request
*rq
, int error
,
2169 unsigned int nr_bytes
, unsigned int bidi_bytes
)
2171 struct request_queue
*q
= rq
->q
;
2172 unsigned long flags
;
2174 if (blk_update_bidi_request(rq
, error
, nr_bytes
, bidi_bytes
))
2177 spin_lock_irqsave(q
->queue_lock
, flags
);
2178 blk_finish_request(rq
, error
);
2179 spin_unlock_irqrestore(q
->queue_lock
, flags
);
2185 * __blk_end_bidi_request - Complete a bidi request with queue lock held
2186 * @rq: the request to complete
2187 * @error: %0 for success, < %0 for error
2188 * @nr_bytes: number of bytes to complete @rq
2189 * @bidi_bytes: number of bytes to complete @rq->next_rq
2192 * Identical to blk_end_bidi_request() except that queue lock is
2193 * assumed to be locked on entry and remains so on return.
2196 * %false - we are done with this request
2197 * %true - still buffers pending for this request
2199 static bool __blk_end_bidi_request(struct request
*rq
, int error
,
2200 unsigned int nr_bytes
, unsigned int bidi_bytes
)
2202 if (blk_update_bidi_request(rq
, error
, nr_bytes
, bidi_bytes
))
2205 blk_finish_request(rq
, error
);
2211 * blk_end_request - Helper function for drivers to complete the request.
2212 * @rq: the request being processed
2213 * @error: %0 for success, < %0 for error
2214 * @nr_bytes: number of bytes to complete
2217 * Ends I/O on a number of bytes attached to @rq.
2218 * If @rq has leftover, sets it up for the next range of segments.
2221 * %false - we are done with this request
2222 * %true - still buffers pending for this request
2224 bool blk_end_request(struct request
*rq
, int error
, unsigned int nr_bytes
)
2226 return blk_end_bidi_request(rq
, error
, nr_bytes
, 0);
2228 EXPORT_SYMBOL(blk_end_request
);
2231 * blk_end_request_all - Helper function for drives to finish the request.
2232 * @rq: the request to finish
2233 * @error: %0 for success, < %0 for error
2236 * Completely finish @rq.
2238 void blk_end_request_all(struct request
*rq
, int error
)
2241 unsigned int bidi_bytes
= 0;
2243 if (unlikely(blk_bidi_rq(rq
)))
2244 bidi_bytes
= blk_rq_bytes(rq
->next_rq
);
2246 pending
= blk_end_bidi_request(rq
, error
, blk_rq_bytes(rq
), bidi_bytes
);
2249 EXPORT_SYMBOL(blk_end_request_all
);
2252 * blk_end_request_cur - Helper function to finish the current request chunk.
2253 * @rq: the request to finish the current chunk for
2254 * @error: %0 for success, < %0 for error
2257 * Complete the current consecutively mapped chunk from @rq.
2260 * %false - we are done with this request
2261 * %true - still buffers pending for this request
2263 bool blk_end_request_cur(struct request
*rq
, int error
)
2265 return blk_end_request(rq
, error
, blk_rq_cur_bytes(rq
));
2267 EXPORT_SYMBOL(blk_end_request_cur
);
2270 * blk_end_request_err - Finish a request till the next failure boundary.
2271 * @rq: the request to finish till the next failure boundary for
2272 * @error: must be negative errno
2275 * Complete @rq till the next failure boundary.
2278 * %false - we are done with this request
2279 * %true - still buffers pending for this request
2281 bool blk_end_request_err(struct request
*rq
, int error
)
2283 WARN_ON(error
>= 0);
2284 return blk_end_request(rq
, error
, blk_rq_err_bytes(rq
));
2286 EXPORT_SYMBOL_GPL(blk_end_request_err
);
2289 * __blk_end_request - Helper function for drivers to complete the request.
2290 * @rq: the request being processed
2291 * @error: %0 for success, < %0 for error
2292 * @nr_bytes: number of bytes to complete
2295 * Must be called with queue lock held unlike blk_end_request().
2298 * %false - we are done with this request
2299 * %true - still buffers pending for this request
2301 bool __blk_end_request(struct request
*rq
, int error
, unsigned int nr_bytes
)
2303 return __blk_end_bidi_request(rq
, error
, nr_bytes
, 0);
2305 EXPORT_SYMBOL(__blk_end_request
);
2308 * __blk_end_request_all - Helper function for drives to finish the request.
2309 * @rq: the request to finish
2310 * @error: %0 for success, < %0 for error
2313 * Completely finish @rq. Must be called with queue lock held.
2315 void __blk_end_request_all(struct request
*rq
, int error
)
2318 unsigned int bidi_bytes
= 0;
2320 if (unlikely(blk_bidi_rq(rq
)))
2321 bidi_bytes
= blk_rq_bytes(rq
->next_rq
);
2323 pending
= __blk_end_bidi_request(rq
, error
, blk_rq_bytes(rq
), bidi_bytes
);
2326 EXPORT_SYMBOL(__blk_end_request_all
);
2329 * __blk_end_request_cur - Helper function to finish the current request chunk.
2330 * @rq: the request to finish the current chunk for
2331 * @error: %0 for success, < %0 for error
2334 * Complete the current consecutively mapped chunk from @rq. Must
2335 * be called with queue lock held.
2338 * %false - we are done with this request
2339 * %true - still buffers pending for this request
2341 bool __blk_end_request_cur(struct request
*rq
, int error
)
2343 return __blk_end_request(rq
, error
, blk_rq_cur_bytes(rq
));
2345 EXPORT_SYMBOL(__blk_end_request_cur
);
2348 * __blk_end_request_err - Finish a request till the next failure boundary.
2349 * @rq: the request to finish till the next failure boundary for
2350 * @error: must be negative errno
2353 * Complete @rq till the next failure boundary. Must be called
2354 * with queue lock held.
2357 * %false - we are done with this request
2358 * %true - still buffers pending for this request
2360 bool __blk_end_request_err(struct request
*rq
, int error
)
2362 WARN_ON(error
>= 0);
2363 return __blk_end_request(rq
, error
, blk_rq_err_bytes(rq
));
2365 EXPORT_SYMBOL_GPL(__blk_end_request_err
);
2367 void blk_rq_bio_prep(struct request_queue
*q
, struct request
*rq
,
2370 /* Bit 0 (R/W) is identical in rq->cmd_flags and bio->bi_rw */
2371 rq
->cmd_flags
|= bio
->bi_rw
& REQ_RW
;
2373 if (bio_has_data(bio
)) {
2374 rq
->nr_phys_segments
= bio_phys_segments(q
, bio
);
2375 rq
->buffer
= bio_data(bio
);
2377 rq
->__data_len
= bio
->bi_size
;
2378 rq
->bio
= rq
->biotail
= bio
;
2381 rq
->rq_disk
= bio
->bi_bdev
->bd_disk
;
2384 #if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
2386 * rq_flush_dcache_pages - Helper function to flush all pages in a request
2387 * @rq: the request to be flushed
2390 * Flush all pages in @rq.
2392 void rq_flush_dcache_pages(struct request
*rq
)
2394 struct req_iterator iter
;
2395 struct bio_vec
*bvec
;
2397 rq_for_each_segment(bvec
, rq
, iter
)
2398 flush_dcache_page(bvec
->bv_page
);
2400 EXPORT_SYMBOL_GPL(rq_flush_dcache_pages
);
2404 * blk_lld_busy - Check if underlying low-level drivers of a device are busy
2405 * @q : the queue of the device being checked
2408 * Check if underlying low-level drivers of a device are busy.
2409 * If the drivers want to export their busy state, they must set own
2410 * exporting function using blk_queue_lld_busy() first.
2412 * Basically, this function is used only by request stacking drivers
2413 * to stop dispatching requests to underlying devices when underlying
2414 * devices are busy. This behavior helps more I/O merging on the queue
2415 * of the request stacking driver and prevents I/O throughput regression
2416 * on burst I/O load.
2419 * 0 - Not busy (The request stacking driver should dispatch request)
2420 * 1 - Busy (The request stacking driver should stop dispatching request)
2422 int blk_lld_busy(struct request_queue
*q
)
2425 return q
->lld_busy_fn(q
);
2429 EXPORT_SYMBOL_GPL(blk_lld_busy
);
2432 * blk_rq_unprep_clone - Helper function to free all bios in a cloned request
2433 * @rq: the clone request to be cleaned up
2436 * Free all bios in @rq for a cloned request.
2438 void blk_rq_unprep_clone(struct request
*rq
)
2442 while ((bio
= rq
->bio
) != NULL
) {
2443 rq
->bio
= bio
->bi_next
;
2448 EXPORT_SYMBOL_GPL(blk_rq_unprep_clone
);
2451 * Copy attributes of the original request to the clone request.
2452 * The actual data parts (e.g. ->cmd, ->buffer, ->sense) are not copied.
2454 static void __blk_rq_prep_clone(struct request
*dst
, struct request
*src
)
2456 dst
->cpu
= src
->cpu
;
2457 dst
->cmd_flags
= (rq_data_dir(src
) | REQ_NOMERGE
);
2458 dst
->cmd_type
= src
->cmd_type
;
2459 dst
->__sector
= blk_rq_pos(src
);
2460 dst
->__data_len
= blk_rq_bytes(src
);
2461 dst
->nr_phys_segments
= src
->nr_phys_segments
;
2462 dst
->ioprio
= src
->ioprio
;
2463 dst
->extra_len
= src
->extra_len
;
2467 * blk_rq_prep_clone - Helper function to setup clone request
2468 * @rq: the request to be setup
2469 * @rq_src: original request to be cloned
2470 * @bs: bio_set that bios for clone are allocated from
2471 * @gfp_mask: memory allocation mask for bio
2472 * @bio_ctr: setup function to be called for each clone bio.
2473 * Returns %0 for success, non %0 for failure.
2474 * @data: private data to be passed to @bio_ctr
2477 * Clones bios in @rq_src to @rq, and copies attributes of @rq_src to @rq.
2478 * The actual data parts of @rq_src (e.g. ->cmd, ->buffer, ->sense)
2479 * are not copied, and copying such parts is the caller's responsibility.
2480 * Also, pages which the original bios are pointing to are not copied
2481 * and the cloned bios just point same pages.
2482 * So cloned bios must be completed before original bios, which means
2483 * the caller must complete @rq before @rq_src.
2485 int blk_rq_prep_clone(struct request
*rq
, struct request
*rq_src
,
2486 struct bio_set
*bs
, gfp_t gfp_mask
,
2487 int (*bio_ctr
)(struct bio
*, struct bio
*, void *),
2490 struct bio
*bio
, *bio_src
;
2495 blk_rq_init(NULL
, rq
);
2497 __rq_for_each_bio(bio_src
, rq_src
) {
2498 bio
= bio_alloc_bioset(gfp_mask
, bio_src
->bi_max_vecs
, bs
);
2502 __bio_clone(bio
, bio_src
);
2504 if (bio_integrity(bio_src
) &&
2505 bio_integrity_clone(bio
, bio_src
, gfp_mask
, bs
))
2508 if (bio_ctr
&& bio_ctr(bio
, bio_src
, data
))
2512 rq
->biotail
->bi_next
= bio
;
2515 rq
->bio
= rq
->biotail
= bio
;
2518 __blk_rq_prep_clone(rq
, rq_src
);
2525 blk_rq_unprep_clone(rq
);
2529 EXPORT_SYMBOL_GPL(blk_rq_prep_clone
);
2531 int kblockd_schedule_work(struct request_queue
*q
, struct work_struct
*work
)
2533 return queue_work(kblockd_workqueue
, work
);
2535 EXPORT_SYMBOL(kblockd_schedule_work
);
2537 int __init
blk_dev_init(void)
2539 BUILD_BUG_ON(__REQ_NR_BITS
> 8 *
2540 sizeof(((struct request
*)0)->cmd_flags
));
2542 kblockd_workqueue
= create_workqueue("kblockd");
2543 if (!kblockd_workqueue
)
2544 panic("Failed to create kblockd\n");
2546 request_cachep
= kmem_cache_create("blkdev_requests",
2547 sizeof(struct request
), 0, SLAB_PANIC
, NULL
);
2549 blk_requestq_cachep
= kmem_cache_create("blkdev_queue",
2550 sizeof(struct request_queue
), 0, SLAB_PANIC
, NULL
);