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