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