]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - block/blk-core.c
include blktrace_api.h in headers_install
[mirror_ubuntu-artful-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>
2056a782 29#include <linux/blktrace_api.h>
c17bb495 30#include <linux/fault-inject.h>
1da177e4 31
8324aa91
JA
32#include "blk.h"
33
165125e1 34static int __make_request(struct request_queue *q, struct bio *bio);
1da177e4
LT
35
36/*
37 * For the allocated request tables
38 */
5ece6c52 39static struct kmem_cache *request_cachep;
1da177e4
LT
40
41/*
42 * For queue allocation
43 */
6728cb0e 44struct kmem_cache *blk_requestq_cachep;
1da177e4 45
1da177e4
LT
46/*
47 * Controlling structure to kblockd
48 */
ff856bad 49static struct workqueue_struct *kblockd_workqueue;
1da177e4 50
26b8256e
JA
51static void drive_stat_acct(struct request *rq, int new_io)
52{
28f13702 53 struct hd_struct *part;
26b8256e 54 int rw = rq_data_dir(rq);
c9959059 55 int cpu;
26b8256e
JA
56
57 if (!blk_fs_request(rq) || !rq->rq_disk)
58 return;
59
074a7aca 60 cpu = part_stat_lock();
e71bf0d0 61 part = disk_map_sector_rcu(rq->rq_disk, rq->sector);
c9959059 62
28f13702 63 if (!new_io)
074a7aca 64 part_stat_inc(cpu, part, merges[rw]);
28f13702 65 else {
074a7aca
TH
66 part_round_stats(cpu, part);
67 part_inc_in_flight(part);
26b8256e 68 }
e71bf0d0 69
074a7aca 70 part_stat_unlock();
26b8256e
JA
71}
72
8324aa91 73void blk_queue_congestion_threshold(struct request_queue *q)
1da177e4
LT
74{
75 int nr;
76
77 nr = q->nr_requests - (q->nr_requests / 8) + 1;
78 if (nr > q->nr_requests)
79 nr = q->nr_requests;
80 q->nr_congestion_on = nr;
81
82 nr = q->nr_requests - (q->nr_requests / 8) - (q->nr_requests / 16) - 1;
83 if (nr < 1)
84 nr = 1;
85 q->nr_congestion_off = nr;
86}
87
1da177e4
LT
88/**
89 * blk_get_backing_dev_info - get the address of a queue's backing_dev_info
90 * @bdev: device
91 *
92 * Locates the passed device's request queue and returns the address of its
93 * backing_dev_info
94 *
95 * Will return NULL if the request queue cannot be located.
96 */
97struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev)
98{
99 struct backing_dev_info *ret = NULL;
165125e1 100 struct request_queue *q = bdev_get_queue(bdev);
1da177e4
LT
101
102 if (q)
103 ret = &q->backing_dev_info;
104 return ret;
105}
1da177e4
LT
106EXPORT_SYMBOL(blk_get_backing_dev_info);
107
2a4aa30c 108void blk_rq_init(struct request_queue *q, struct request *rq)
1da177e4 109{
1afb20f3
FT
110 memset(rq, 0, sizeof(*rq));
111
1da177e4 112 INIT_LIST_HEAD(&rq->queuelist);
242f9dcb 113 INIT_LIST_HEAD(&rq->timeout_list);
c7c22e4d 114 rq->cpu = -1;
63a71386
JA
115 rq->q = q;
116 rq->sector = rq->hard_sector = (sector_t) -1;
2e662b65
JA
117 INIT_HLIST_NODE(&rq->hash);
118 RB_CLEAR_NODE(&rq->rb_node);
d7e3c324 119 rq->cmd = rq->__cmd;
63a71386 120 rq->tag = -1;
1da177e4 121 rq->ref_count = 1;
1da177e4 122}
2a4aa30c 123EXPORT_SYMBOL(blk_rq_init);
1da177e4 124
5bb23a68
N
125static void req_bio_endio(struct request *rq, struct bio *bio,
126 unsigned int nbytes, int error)
1da177e4 127{
165125e1 128 struct request_queue *q = rq->q;
797e7dbb 129
5bb23a68
N
130 if (&q->bar_rq != rq) {
131 if (error)
132 clear_bit(BIO_UPTODATE, &bio->bi_flags);
133 else if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
134 error = -EIO;
797e7dbb 135
5bb23a68 136 if (unlikely(nbytes > bio->bi_size)) {
6728cb0e 137 printk(KERN_ERR "%s: want %u bytes done, %u left\n",
24c03d47 138 __func__, nbytes, bio->bi_size);
5bb23a68
N
139 nbytes = bio->bi_size;
140 }
797e7dbb 141
5bb23a68
N
142 bio->bi_size -= nbytes;
143 bio->bi_sector += (nbytes >> 9);
7ba1ba12
MP
144
145 if (bio_integrity(bio))
146 bio_integrity_advance(bio, nbytes);
147
5bb23a68 148 if (bio->bi_size == 0)
6712ecf8 149 bio_endio(bio, error);
5bb23a68
N
150 } else {
151
152 /*
153 * Okay, this is the barrier request in progress, just
154 * record the error;
155 */
156 if (error && !q->orderr)
157 q->orderr = error;
158 }
1da177e4 159}
1da177e4 160
1da177e4
LT
161void blk_dump_rq_flags(struct request *rq, char *msg)
162{
163 int bit;
164
6728cb0e 165 printk(KERN_INFO "%s: dev %s: type=%x, flags=%x\n", msg,
4aff5e23
JA
166 rq->rq_disk ? rq->rq_disk->disk_name : "?", rq->cmd_type,
167 rq->cmd_flags);
1da177e4 168
6728cb0e
JA
169 printk(KERN_INFO " sector %llu, nr/cnr %lu/%u\n",
170 (unsigned long long)rq->sector,
171 rq->nr_sectors,
172 rq->current_nr_sectors);
173 printk(KERN_INFO " bio %p, biotail %p, buffer %p, data %p, len %u\n",
174 rq->bio, rq->biotail,
175 rq->buffer, rq->data,
176 rq->data_len);
1da177e4 177
4aff5e23 178 if (blk_pc_request(rq)) {
6728cb0e 179 printk(KERN_INFO " cdb: ");
d34c87e4 180 for (bit = 0; bit < BLK_MAX_CDB; bit++)
1da177e4
LT
181 printk("%02x ", rq->cmd[bit]);
182 printk("\n");
183 }
184}
1da177e4
LT
185EXPORT_SYMBOL(blk_dump_rq_flags);
186
1da177e4
LT
187/*
188 * "plug" the device if there are no outstanding requests: this will
189 * force the transfer to start only after we have put all the requests
190 * on the list.
191 *
192 * This is called with interrupts off and no requests on the queue and
193 * with the queue lock held.
194 */
165125e1 195void blk_plug_device(struct request_queue *q)
1da177e4
LT
196{
197 WARN_ON(!irqs_disabled());
198
199 /*
200 * don't plug a stopped queue, it must be paired with blk_start_queue()
201 * which will restart the queueing
202 */
7daac490 203 if (blk_queue_stopped(q))
1da177e4
LT
204 return;
205
e48ec690 206 if (!queue_flag_test_and_set(QUEUE_FLAG_PLUGGED, q)) {
1da177e4 207 mod_timer(&q->unplug_timer, jiffies + q->unplug_delay);
2056a782
JA
208 blk_add_trace_generic(q, NULL, 0, BLK_TA_PLUG);
209 }
1da177e4 210}
1da177e4
LT
211EXPORT_SYMBOL(blk_plug_device);
212
6c5e0c4d
JA
213/**
214 * blk_plug_device_unlocked - plug a device without queue lock held
215 * @q: The &struct request_queue to plug
216 *
217 * Description:
218 * Like @blk_plug_device(), but grabs the queue lock and disables
219 * interrupts.
220 **/
221void blk_plug_device_unlocked(struct request_queue *q)
222{
223 unsigned long flags;
224
225 spin_lock_irqsave(q->queue_lock, flags);
226 blk_plug_device(q);
227 spin_unlock_irqrestore(q->queue_lock, flags);
228}
229EXPORT_SYMBOL(blk_plug_device_unlocked);
230
1da177e4
LT
231/*
232 * remove the queue from the plugged list, if present. called with
233 * queue lock held and interrupts disabled.
234 */
165125e1 235int blk_remove_plug(struct request_queue *q)
1da177e4
LT
236{
237 WARN_ON(!irqs_disabled());
238
e48ec690 239 if (!queue_flag_test_and_clear(QUEUE_FLAG_PLUGGED, q))
1da177e4
LT
240 return 0;
241
242 del_timer(&q->unplug_timer);
243 return 1;
244}
1da177e4
LT
245EXPORT_SYMBOL(blk_remove_plug);
246
247/*
248 * remove the plug and let it rip..
249 */
165125e1 250void __generic_unplug_device(struct request_queue *q)
1da177e4 251{
7daac490 252 if (unlikely(blk_queue_stopped(q)))
1da177e4
LT
253 return;
254
255 if (!blk_remove_plug(q))
256 return;
257
22e2c507 258 q->request_fn(q);
1da177e4
LT
259}
260EXPORT_SYMBOL(__generic_unplug_device);
261
262/**
263 * generic_unplug_device - fire a request queue
165125e1 264 * @q: The &struct request_queue in question
1da177e4
LT
265 *
266 * Description:
267 * Linux uses plugging to build bigger requests queues before letting
268 * the device have at them. If a queue is plugged, the I/O scheduler
269 * is still adding and merging requests on the queue. Once the queue
270 * gets unplugged, the request_fn defined for the queue is invoked and
271 * transfers started.
272 **/
165125e1 273void generic_unplug_device(struct request_queue *q)
1da177e4 274{
dbaf2c00
JA
275 if (blk_queue_plugged(q)) {
276 spin_lock_irq(q->queue_lock);
277 __generic_unplug_device(q);
278 spin_unlock_irq(q->queue_lock);
279 }
1da177e4
LT
280}
281EXPORT_SYMBOL(generic_unplug_device);
282
283static void blk_backing_dev_unplug(struct backing_dev_info *bdi,
284 struct page *page)
285{
165125e1 286 struct request_queue *q = bdi->unplug_io_data;
1da177e4 287
2ad8b1ef 288 blk_unplug(q);
1da177e4
LT
289}
290
86db1e29 291void blk_unplug_work(struct work_struct *work)
1da177e4 292{
165125e1
JA
293 struct request_queue *q =
294 container_of(work, struct request_queue, unplug_work);
1da177e4 295
2056a782
JA
296 blk_add_trace_pdu_int(q, BLK_TA_UNPLUG_IO, NULL,
297 q->rq.count[READ] + q->rq.count[WRITE]);
298
1da177e4
LT
299 q->unplug_fn(q);
300}
301
86db1e29 302void blk_unplug_timeout(unsigned long data)
1da177e4 303{
165125e1 304 struct request_queue *q = (struct request_queue *)data;
1da177e4 305
2056a782
JA
306 blk_add_trace_pdu_int(q, BLK_TA_UNPLUG_TIMER, NULL,
307 q->rq.count[READ] + q->rq.count[WRITE]);
308
18887ad9 309 kblockd_schedule_work(q, &q->unplug_work);
1da177e4
LT
310}
311
2ad8b1ef
AB
312void blk_unplug(struct request_queue *q)
313{
314 /*
315 * devices don't necessarily have an ->unplug_fn defined
316 */
317 if (q->unplug_fn) {
318 blk_add_trace_pdu_int(q, BLK_TA_UNPLUG_IO, NULL,
319 q->rq.count[READ] + q->rq.count[WRITE]);
320
321 q->unplug_fn(q);
322 }
323}
324EXPORT_SYMBOL(blk_unplug);
325
c7c22e4d
JA
326static void blk_invoke_request_fn(struct request_queue *q)
327{
328 /*
329 * one level of recursion is ok and is much faster than kicking
330 * the unplug handling
331 */
332 if (!queue_flag_test_and_set(QUEUE_FLAG_REENTER, q)) {
333 q->request_fn(q);
334 queue_flag_clear(QUEUE_FLAG_REENTER, q);
335 } else {
336 queue_flag_set(QUEUE_FLAG_PLUGGED, q);
337 kblockd_schedule_work(q, &q->unplug_work);
338 }
339}
340
1da177e4
LT
341/**
342 * blk_start_queue - restart a previously stopped queue
165125e1 343 * @q: The &struct request_queue in question
1da177e4
LT
344 *
345 * Description:
346 * blk_start_queue() will clear the stop flag on the queue, and call
347 * the request_fn for the queue if it was in a stopped state when
348 * entered. Also see blk_stop_queue(). Queue lock must be held.
349 **/
165125e1 350void blk_start_queue(struct request_queue *q)
1da177e4 351{
a038e253
PBG
352 WARN_ON(!irqs_disabled());
353
75ad23bc 354 queue_flag_clear(QUEUE_FLAG_STOPPED, q);
c7c22e4d 355 blk_invoke_request_fn(q);
1da177e4 356}
1da177e4
LT
357EXPORT_SYMBOL(blk_start_queue);
358
359/**
360 * blk_stop_queue - stop a queue
165125e1 361 * @q: The &struct request_queue in question
1da177e4
LT
362 *
363 * Description:
364 * The Linux block layer assumes that a block driver will consume all
365 * entries on the request queue when the request_fn strategy is called.
366 * Often this will not happen, because of hardware limitations (queue
367 * depth settings). If a device driver gets a 'queue full' response,
368 * or if it simply chooses not to queue more I/O at one point, it can
369 * call this function to prevent the request_fn from being called until
370 * the driver has signalled it's ready to go again. This happens by calling
371 * blk_start_queue() to restart queue operations. Queue lock must be held.
372 **/
165125e1 373void blk_stop_queue(struct request_queue *q)
1da177e4
LT
374{
375 blk_remove_plug(q);
75ad23bc 376 queue_flag_set(QUEUE_FLAG_STOPPED, q);
1da177e4
LT
377}
378EXPORT_SYMBOL(blk_stop_queue);
379
380/**
381 * blk_sync_queue - cancel any pending callbacks on a queue
382 * @q: the queue
383 *
384 * Description:
385 * The block layer may perform asynchronous callback activity
386 * on a queue, such as calling the unplug function after a timeout.
387 * A block device may call blk_sync_queue to ensure that any
388 * such activity is cancelled, thus allowing it to release resources
59c51591 389 * that the callbacks might use. The caller must already have made sure
1da177e4
LT
390 * that its ->make_request_fn will not re-add plugging prior to calling
391 * this function.
392 *
393 */
394void blk_sync_queue(struct request_queue *q)
395{
396 del_timer_sync(&q->unplug_timer);
abbeb88d 397 kblockd_flush_work(&q->unplug_work);
1da177e4
LT
398}
399EXPORT_SYMBOL(blk_sync_queue);
400
401/**
402 * blk_run_queue - run a single device queue
403 * @q: The queue to run
404 */
75ad23bc 405void __blk_run_queue(struct request_queue *q)
1da177e4 406{
1da177e4 407 blk_remove_plug(q);
dac07ec1
JA
408
409 /*
410 * Only recurse once to avoid overrunning the stack, let the unplug
411 * handling reinvoke the handler shortly if we already got there.
412 */
c7c22e4d
JA
413 if (!elv_queue_empty(q))
414 blk_invoke_request_fn(q);
75ad23bc
NP
415}
416EXPORT_SYMBOL(__blk_run_queue);
dac07ec1 417
75ad23bc
NP
418/**
419 * blk_run_queue - run a single device queue
420 * @q: The queue to run
421 */
422void blk_run_queue(struct request_queue *q)
423{
424 unsigned long flags;
425
426 spin_lock_irqsave(q->queue_lock, flags);
427 __blk_run_queue(q);
1da177e4
LT
428 spin_unlock_irqrestore(q->queue_lock, flags);
429}
430EXPORT_SYMBOL(blk_run_queue);
431
165125e1 432void blk_put_queue(struct request_queue *q)
483f4afc
AV
433{
434 kobject_put(&q->kobj);
435}
483f4afc 436
6728cb0e 437void blk_cleanup_queue(struct request_queue *q)
483f4afc 438{
e3335de9
JA
439 /*
440 * We know we have process context here, so we can be a little
441 * cautious and ensure that pending block actions on this device
442 * are done before moving on. Going into this function, we should
443 * not have processes doing IO to this device.
444 */
445 blk_sync_queue(q);
446
483f4afc 447 mutex_lock(&q->sysfs_lock);
75ad23bc 448 queue_flag_set_unlocked(QUEUE_FLAG_DEAD, q);
483f4afc
AV
449 mutex_unlock(&q->sysfs_lock);
450
451 if (q->elevator)
452 elevator_exit(q->elevator);
453
454 blk_put_queue(q);
455}
1da177e4
LT
456EXPORT_SYMBOL(blk_cleanup_queue);
457
165125e1 458static int blk_init_free_list(struct request_queue *q)
1da177e4
LT
459{
460 struct request_list *rl = &q->rq;
461
462 rl->count[READ] = rl->count[WRITE] = 0;
463 rl->starved[READ] = rl->starved[WRITE] = 0;
cb98fc8b 464 rl->elvpriv = 0;
1da177e4
LT
465 init_waitqueue_head(&rl->wait[READ]);
466 init_waitqueue_head(&rl->wait[WRITE]);
1da177e4 467
1946089a
CL
468 rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ, mempool_alloc_slab,
469 mempool_free_slab, request_cachep, q->node);
1da177e4
LT
470
471 if (!rl->rq_pool)
472 return -ENOMEM;
473
474 return 0;
475}
476
165125e1 477struct request_queue *blk_alloc_queue(gfp_t gfp_mask)
1da177e4 478{
1946089a
CL
479 return blk_alloc_queue_node(gfp_mask, -1);
480}
481EXPORT_SYMBOL(blk_alloc_queue);
1da177e4 482
165125e1 483struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id)
1946089a 484{
165125e1 485 struct request_queue *q;
e0bf68dd 486 int err;
1946089a 487
8324aa91 488 q = kmem_cache_alloc_node(blk_requestq_cachep,
94f6030c 489 gfp_mask | __GFP_ZERO, node_id);
1da177e4
LT
490 if (!q)
491 return NULL;
492
e0bf68dd
PZ
493 q->backing_dev_info.unplug_io_fn = blk_backing_dev_unplug;
494 q->backing_dev_info.unplug_io_data = q;
495 err = bdi_init(&q->backing_dev_info);
496 if (err) {
8324aa91 497 kmem_cache_free(blk_requestq_cachep, q);
e0bf68dd
PZ
498 return NULL;
499 }
500
1da177e4 501 init_timer(&q->unplug_timer);
242f9dcb
JA
502 setup_timer(&q->timeout, blk_rq_timed_out_timer, (unsigned long) q);
503 INIT_LIST_HEAD(&q->timeout_list);
483f4afc 504
8324aa91 505 kobject_init(&q->kobj, &blk_queue_ktype);
1da177e4 506
483f4afc 507 mutex_init(&q->sysfs_lock);
e7e72bf6 508 spin_lock_init(&q->__queue_lock);
483f4afc 509
1da177e4
LT
510 return q;
511}
1946089a 512EXPORT_SYMBOL(blk_alloc_queue_node);
1da177e4
LT
513
514/**
515 * blk_init_queue - prepare a request queue for use with a block device
516 * @rfn: The function to be called to process requests that have been
517 * placed on the queue.
518 * @lock: Request queue spin lock
519 *
520 * Description:
521 * If a block device wishes to use the standard request handling procedures,
522 * which sorts requests and coalesces adjacent requests, then it must
523 * call blk_init_queue(). The function @rfn will be called when there
524 * are requests on the queue that need to be processed. If the device
525 * supports plugging, then @rfn may not be called immediately when requests
526 * are available on the queue, but may be called at some time later instead.
527 * Plugged queues are generally unplugged when a buffer belonging to one
528 * of the requests on the queue is needed, or due to memory pressure.
529 *
530 * @rfn is not required, or even expected, to remove all requests off the
531 * queue, but only as many as it can handle at a time. If it does leave
532 * requests on the queue, it is responsible for arranging that the requests
533 * get dealt with eventually.
534 *
535 * The queue spin lock must be held while manipulating the requests on the
a038e253
PBG
536 * request queue; this lock will be taken also from interrupt context, so irq
537 * disabling is needed for it.
1da177e4 538 *
710027a4 539 * Function returns a pointer to the initialized request queue, or %NULL if
1da177e4
LT
540 * it didn't succeed.
541 *
542 * Note:
543 * blk_init_queue() must be paired with a blk_cleanup_queue() call
544 * when the block device is deactivated (such as at module unload).
545 **/
1946089a 546
165125e1 547struct request_queue *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
1da177e4 548{
1946089a
CL
549 return blk_init_queue_node(rfn, lock, -1);
550}
551EXPORT_SYMBOL(blk_init_queue);
552
165125e1 553struct request_queue *
1946089a
CL
554blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
555{
165125e1 556 struct request_queue *q = blk_alloc_queue_node(GFP_KERNEL, node_id);
1da177e4
LT
557
558 if (!q)
559 return NULL;
560
1946089a 561 q->node = node_id;
8669aafd 562 if (blk_init_free_list(q)) {
8324aa91 563 kmem_cache_free(blk_requestq_cachep, q);
8669aafd
AV
564 return NULL;
565 }
1da177e4 566
152587de
JA
567 /*
568 * if caller didn't supply a lock, they get per-queue locking with
569 * our embedded lock
570 */
e7e72bf6 571 if (!lock)
152587de 572 lock = &q->__queue_lock;
152587de 573
1da177e4 574 q->request_fn = rfn;
1da177e4
LT
575 q->prep_rq_fn = NULL;
576 q->unplug_fn = generic_unplug_device;
4ee5eaf4
KU
577 q->queue_flags = (1 << QUEUE_FLAG_CLUSTER |
578 1 << QUEUE_FLAG_STACKABLE);
1da177e4
LT
579 q->queue_lock = lock;
580
581 blk_queue_segment_boundary(q, 0xffffffff);
582
583 blk_queue_make_request(q, __make_request);
584 blk_queue_max_segment_size(q, MAX_SEGMENT_SIZE);
585
586 blk_queue_max_hw_segments(q, MAX_HW_SEGMENTS);
587 blk_queue_max_phys_segments(q, MAX_PHYS_SEGMENTS);
588
44ec9542
AS
589 q->sg_reserved_size = INT_MAX;
590
abf54393
FT
591 blk_set_cmd_filter_defaults(&q->cmd_filter);
592
1da177e4
LT
593 /*
594 * all done
595 */
596 if (!elevator_init(q, NULL)) {
597 blk_queue_congestion_threshold(q);
598 return q;
599 }
600
8669aafd 601 blk_put_queue(q);
1da177e4
LT
602 return NULL;
603}
1946089a 604EXPORT_SYMBOL(blk_init_queue_node);
1da177e4 605
165125e1 606int blk_get_queue(struct request_queue *q)
1da177e4 607{
fde6ad22 608 if (likely(!test_bit(QUEUE_FLAG_DEAD, &q->queue_flags))) {
483f4afc 609 kobject_get(&q->kobj);
1da177e4
LT
610 return 0;
611 }
612
613 return 1;
614}
1da177e4 615
165125e1 616static inline void blk_free_request(struct request_queue *q, struct request *rq)
1da177e4 617{
4aff5e23 618 if (rq->cmd_flags & REQ_ELVPRIV)
cb98fc8b 619 elv_put_request(q, rq);
1da177e4
LT
620 mempool_free(rq, q->rq.rq_pool);
621}
622
1ea25ecb 623static struct request *
165125e1 624blk_alloc_request(struct request_queue *q, int rw, int priv, gfp_t gfp_mask)
1da177e4
LT
625{
626 struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask);
627
628 if (!rq)
629 return NULL;
630
2a4aa30c 631 blk_rq_init(q, rq);
1afb20f3 632
49171e5c 633 rq->cmd_flags = rw | REQ_ALLOCED;
1da177e4 634
cb98fc8b 635 if (priv) {
cb78b285 636 if (unlikely(elv_set_request(q, rq, gfp_mask))) {
cb98fc8b
TH
637 mempool_free(rq, q->rq.rq_pool);
638 return NULL;
639 }
4aff5e23 640 rq->cmd_flags |= REQ_ELVPRIV;
cb98fc8b 641 }
1da177e4 642
cb98fc8b 643 return rq;
1da177e4
LT
644}
645
646/*
647 * ioc_batching returns true if the ioc is a valid batching request and
648 * should be given priority access to a request.
649 */
165125e1 650static inline int ioc_batching(struct request_queue *q, struct io_context *ioc)
1da177e4
LT
651{
652 if (!ioc)
653 return 0;
654
655 /*
656 * Make sure the process is able to allocate at least 1 request
657 * even if the batch times out, otherwise we could theoretically
658 * lose wakeups.
659 */
660 return ioc->nr_batch_requests == q->nr_batching ||
661 (ioc->nr_batch_requests > 0
662 && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
663}
664
665/*
666 * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
667 * will cause the process to be a "batcher" on all queues in the system. This
668 * is the behaviour we want though - once it gets a wakeup it should be given
669 * a nice run.
670 */
165125e1 671static void ioc_set_batching(struct request_queue *q, struct io_context *ioc)
1da177e4
LT
672{
673 if (!ioc || ioc_batching(q, ioc))
674 return;
675
676 ioc->nr_batch_requests = q->nr_batching;
677 ioc->last_waited = jiffies;
678}
679
165125e1 680static void __freed_request(struct request_queue *q, int rw)
1da177e4
LT
681{
682 struct request_list *rl = &q->rq;
683
684 if (rl->count[rw] < queue_congestion_off_threshold(q))
79e2de4b 685 blk_clear_queue_congested(q, rw);
1da177e4
LT
686
687 if (rl->count[rw] + 1 <= q->nr_requests) {
1da177e4
LT
688 if (waitqueue_active(&rl->wait[rw]))
689 wake_up(&rl->wait[rw]);
690
691 blk_clear_queue_full(q, rw);
692 }
693}
694
695/*
696 * A request has just been released. Account for it, update the full and
697 * congestion status, wake up any waiters. Called under q->queue_lock.
698 */
165125e1 699static void freed_request(struct request_queue *q, int rw, int priv)
1da177e4
LT
700{
701 struct request_list *rl = &q->rq;
702
703 rl->count[rw]--;
cb98fc8b
TH
704 if (priv)
705 rl->elvpriv--;
1da177e4
LT
706
707 __freed_request(q, rw);
708
709 if (unlikely(rl->starved[rw ^ 1]))
710 __freed_request(q, rw ^ 1);
1da177e4
LT
711}
712
713#define blkdev_free_rq(list) list_entry((list)->next, struct request, queuelist)
714/*
d6344532
NP
715 * Get a free request, queue_lock must be held.
716 * Returns NULL on failure, with queue_lock held.
717 * Returns !NULL on success, with queue_lock *not held*.
1da177e4 718 */
165125e1 719static struct request *get_request(struct request_queue *q, int rw_flags,
7749a8d4 720 struct bio *bio, gfp_t gfp_mask)
1da177e4
LT
721{
722 struct request *rq = NULL;
723 struct request_list *rl = &q->rq;
88ee5ef1 724 struct io_context *ioc = NULL;
7749a8d4 725 const int rw = rw_flags & 0x01;
88ee5ef1
JA
726 int may_queue, priv;
727
7749a8d4 728 may_queue = elv_may_queue(q, rw_flags);
88ee5ef1
JA
729 if (may_queue == ELV_MQUEUE_NO)
730 goto rq_starved;
731
732 if (rl->count[rw]+1 >= queue_congestion_on_threshold(q)) {
733 if (rl->count[rw]+1 >= q->nr_requests) {
b5deef90 734 ioc = current_io_context(GFP_ATOMIC, q->node);
88ee5ef1
JA
735 /*
736 * The queue will fill after this allocation, so set
737 * it as full, and mark this process as "batching".
738 * This process will be allowed to complete a batch of
739 * requests, others will be blocked.
740 */
741 if (!blk_queue_full(q, rw)) {
742 ioc_set_batching(q, ioc);
743 blk_set_queue_full(q, rw);
744 } else {
745 if (may_queue != ELV_MQUEUE_MUST
746 && !ioc_batching(q, ioc)) {
747 /*
748 * The queue is full and the allocating
749 * process is not a "batcher", and not
750 * exempted by the IO scheduler
751 */
752 goto out;
753 }
754 }
1da177e4 755 }
79e2de4b 756 blk_set_queue_congested(q, rw);
1da177e4
LT
757 }
758
082cf69e
JA
759 /*
760 * Only allow batching queuers to allocate up to 50% over the defined
761 * limit of requests, otherwise we could have thousands of requests
762 * allocated with any setting of ->nr_requests
763 */
fd782a4a 764 if (rl->count[rw] >= (3 * q->nr_requests / 2))
082cf69e 765 goto out;
fd782a4a 766
1da177e4
LT
767 rl->count[rw]++;
768 rl->starved[rw] = 0;
cb98fc8b 769
64521d1a 770 priv = !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags);
cb98fc8b
TH
771 if (priv)
772 rl->elvpriv++;
773
1da177e4
LT
774 spin_unlock_irq(q->queue_lock);
775
7749a8d4 776 rq = blk_alloc_request(q, rw_flags, priv, gfp_mask);
88ee5ef1 777 if (unlikely(!rq)) {
1da177e4
LT
778 /*
779 * Allocation failed presumably due to memory. Undo anything
780 * we might have messed up.
781 *
782 * Allocating task should really be put onto the front of the
783 * wait queue, but this is pretty rare.
784 */
785 spin_lock_irq(q->queue_lock);
cb98fc8b 786 freed_request(q, rw, priv);
1da177e4
LT
787
788 /*
789 * in the very unlikely event that allocation failed and no
790 * requests for this direction was pending, mark us starved
791 * so that freeing of a request in the other direction will
792 * notice us. another possible fix would be to split the
793 * rq mempool into READ and WRITE
794 */
795rq_starved:
796 if (unlikely(rl->count[rw] == 0))
797 rl->starved[rw] = 1;
798
1da177e4
LT
799 goto out;
800 }
801
88ee5ef1
JA
802 /*
803 * ioc may be NULL here, and ioc_batching will be false. That's
804 * OK, if the queue is under the request limit then requests need
805 * not count toward the nr_batch_requests limit. There will always
806 * be some limit enforced by BLK_BATCH_TIME.
807 */
1da177e4
LT
808 if (ioc_batching(q, ioc))
809 ioc->nr_batch_requests--;
6728cb0e 810
2056a782 811 blk_add_trace_generic(q, bio, rw, BLK_TA_GETRQ);
1da177e4 812out:
1da177e4
LT
813 return rq;
814}
815
816/*
817 * No available requests for this queue, unplug the device and wait for some
818 * requests to become available.
d6344532
NP
819 *
820 * Called with q->queue_lock held, and returns with it unlocked.
1da177e4 821 */
165125e1 822static struct request *get_request_wait(struct request_queue *q, int rw_flags,
22e2c507 823 struct bio *bio)
1da177e4 824{
7749a8d4 825 const int rw = rw_flags & 0x01;
1da177e4
LT
826 struct request *rq;
827
7749a8d4 828 rq = get_request(q, rw_flags, bio, GFP_NOIO);
450991bc
NP
829 while (!rq) {
830 DEFINE_WAIT(wait);
05caf8db 831 struct io_context *ioc;
1da177e4
LT
832 struct request_list *rl = &q->rq;
833
834 prepare_to_wait_exclusive(&rl->wait[rw], &wait,
835 TASK_UNINTERRUPTIBLE);
836
05caf8db 837 blk_add_trace_generic(q, bio, rw, BLK_TA_SLEEPRQ);
1da177e4 838
05caf8db
ZY
839 __generic_unplug_device(q);
840 spin_unlock_irq(q->queue_lock);
841 io_schedule();
1da177e4 842
05caf8db
ZY
843 /*
844 * After sleeping, we become a "batching" process and
845 * will be able to allocate at least one request, and
846 * up to a big batch of them for a small period time.
847 * See ioc_batching, ioc_set_batching
848 */
849 ioc = current_io_context(GFP_NOIO, q->node);
850 ioc_set_batching(q, ioc);
d6344532 851
05caf8db 852 spin_lock_irq(q->queue_lock);
1da177e4 853 finish_wait(&rl->wait[rw], &wait);
05caf8db
ZY
854
855 rq = get_request(q, rw_flags, bio, GFP_NOIO);
856 };
1da177e4
LT
857
858 return rq;
859}
860
165125e1 861struct request *blk_get_request(struct request_queue *q, int rw, gfp_t gfp_mask)
1da177e4
LT
862{
863 struct request *rq;
864
865 BUG_ON(rw != READ && rw != WRITE);
866
d6344532
NP
867 spin_lock_irq(q->queue_lock);
868 if (gfp_mask & __GFP_WAIT) {
22e2c507 869 rq = get_request_wait(q, rw, NULL);
d6344532 870 } else {
22e2c507 871 rq = get_request(q, rw, NULL, gfp_mask);
d6344532
NP
872 if (!rq)
873 spin_unlock_irq(q->queue_lock);
874 }
875 /* q->queue_lock is unlocked at this point */
1da177e4
LT
876
877 return rq;
878}
1da177e4
LT
879EXPORT_SYMBOL(blk_get_request);
880
dc72ef4a
JA
881/**
882 * blk_start_queueing - initiate dispatch of requests to device
883 * @q: request queue to kick into gear
884 *
885 * This is basically a helper to remove the need to know whether a queue
886 * is plugged or not if someone just wants to initiate dispatch of requests
887 * for this queue.
888 *
889 * The queue lock must be held with interrupts disabled.
890 */
165125e1 891void blk_start_queueing(struct request_queue *q)
dc72ef4a
JA
892{
893 if (!blk_queue_plugged(q))
894 q->request_fn(q);
895 else
896 __generic_unplug_device(q);
897}
898EXPORT_SYMBOL(blk_start_queueing);
899
1da177e4
LT
900/**
901 * blk_requeue_request - put a request back on queue
902 * @q: request queue where request should be inserted
903 * @rq: request to be inserted
904 *
905 * Description:
906 * Drivers often keep queueing requests until the hardware cannot accept
907 * more, when that condition happens we need to put the request back
908 * on the queue. Must be called with queue lock held.
909 */
165125e1 910void blk_requeue_request(struct request_queue *q, struct request *rq)
1da177e4 911{
242f9dcb
JA
912 blk_delete_timer(rq);
913 blk_clear_rq_complete(rq);
2056a782
JA
914 blk_add_trace_rq(q, rq, BLK_TA_REQUEUE);
915
1da177e4
LT
916 if (blk_rq_tagged(rq))
917 blk_queue_end_tag(q, rq);
918
919 elv_requeue_request(q, rq);
920}
1da177e4
LT
921EXPORT_SYMBOL(blk_requeue_request);
922
923/**
710027a4 924 * blk_insert_request - insert a special request into a request queue
1da177e4
LT
925 * @q: request queue where request should be inserted
926 * @rq: request to be inserted
927 * @at_head: insert request at head or tail of queue
928 * @data: private data
1da177e4
LT
929 *
930 * Description:
931 * Many block devices need to execute commands asynchronously, so they don't
932 * block the whole kernel from preemption during request execution. This is
933 * accomplished normally by inserting aritficial requests tagged as
710027a4
RD
934 * REQ_TYPE_SPECIAL in to the corresponding request queue, and letting them
935 * be scheduled for actual execution by the request queue.
1da177e4
LT
936 *
937 * We have the option of inserting the head or the tail of the queue.
938 * Typically we use the tail for new ioctls and so forth. We use the head
939 * of the queue for things like a QUEUE_FULL message from a device, or a
940 * host that is unable to accept a particular command.
941 */
165125e1 942void blk_insert_request(struct request_queue *q, struct request *rq,
867d1191 943 int at_head, void *data)
1da177e4 944{
867d1191 945 int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK;
1da177e4
LT
946 unsigned long flags;
947
948 /*
949 * tell I/O scheduler that this isn't a regular read/write (ie it
950 * must not attempt merges on this) and that it acts as a soft
951 * barrier
952 */
4aff5e23
JA
953 rq->cmd_type = REQ_TYPE_SPECIAL;
954 rq->cmd_flags |= REQ_SOFTBARRIER;
1da177e4
LT
955
956 rq->special = data;
957
958 spin_lock_irqsave(q->queue_lock, flags);
959
960 /*
961 * If command is tagged, release the tag
962 */
867d1191
TH
963 if (blk_rq_tagged(rq))
964 blk_queue_end_tag(q, rq);
1da177e4 965
b238b3d4 966 drive_stat_acct(rq, 1);
867d1191 967 __elv_add_request(q, rq, where, 0);
dc72ef4a 968 blk_start_queueing(q);
1da177e4
LT
969 spin_unlock_irqrestore(q->queue_lock, flags);
970}
1da177e4
LT
971EXPORT_SYMBOL(blk_insert_request);
972
1da177e4
LT
973/*
974 * add-request adds a request to the linked list.
975 * queue lock is held and interrupts disabled, as we muck with the
976 * request queue list.
977 */
6728cb0e 978static inline void add_request(struct request_queue *q, struct request *req)
1da177e4 979{
b238b3d4 980 drive_stat_acct(req, 1);
1da177e4 981
1da177e4
LT
982 /*
983 * elevator indicated where it wants this request to be
984 * inserted at elevator_merge time
985 */
986 __elv_add_request(q, req, ELEVATOR_INSERT_SORT, 0);
987}
6728cb0e 988
074a7aca
TH
989static void part_round_stats_single(int cpu, struct hd_struct *part,
990 unsigned long now)
991{
992 if (now == part->stamp)
993 return;
994
995 if (part->in_flight) {
996 __part_stat_add(cpu, part, time_in_queue,
997 part->in_flight * (now - part->stamp));
998 __part_stat_add(cpu, part, io_ticks, (now - part->stamp));
999 }
1000 part->stamp = now;
1001}
1002
1003/**
1004 * part_round_stats() - Round off the performance stats on a struct
1da177e4
LT
1005 * disk_stats.
1006 *
1007 * The average IO queue length and utilisation statistics are maintained
1008 * by observing the current state of the queue length and the amount of
1009 * time it has been in this state for.
1010 *
1011 * Normally, that accounting is done on IO completion, but that can result
1012 * in more than a second's worth of IO being accounted for within any one
1013 * second, leading to >100% utilisation. To deal with that, we call this
1014 * function to do a round-off before returning the results when reading
1015 * /proc/diskstats. This accounts immediately for all queue usage up to
1016 * the current jiffies and restarts the counters again.
1017 */
c9959059 1018void part_round_stats(int cpu, struct hd_struct *part)
6f2576af
JM
1019{
1020 unsigned long now = jiffies;
1021
074a7aca
TH
1022 if (part->partno)
1023 part_round_stats_single(cpu, &part_to_disk(part)->part0, now);
1024 part_round_stats_single(cpu, part, now);
6f2576af 1025}
074a7aca 1026EXPORT_SYMBOL_GPL(part_round_stats);
6f2576af 1027
1da177e4
LT
1028/*
1029 * queue lock must be held
1030 */
165125e1 1031void __blk_put_request(struct request_queue *q, struct request *req)
1da177e4 1032{
1da177e4
LT
1033 if (unlikely(!q))
1034 return;
1035 if (unlikely(--req->ref_count))
1036 return;
1037
8922e16c
TH
1038 elv_completed_request(q, req);
1039
1da177e4
LT
1040 /*
1041 * Request may not have originated from ll_rw_blk. if not,
1042 * it didn't come out of our reserved rq pools
1043 */
49171e5c 1044 if (req->cmd_flags & REQ_ALLOCED) {
1da177e4 1045 int rw = rq_data_dir(req);
4aff5e23 1046 int priv = req->cmd_flags & REQ_ELVPRIV;
1da177e4 1047
1da177e4 1048 BUG_ON(!list_empty(&req->queuelist));
9817064b 1049 BUG_ON(!hlist_unhashed(&req->hash));
1da177e4
LT
1050
1051 blk_free_request(q, req);
cb98fc8b 1052 freed_request(q, rw, priv);
1da177e4
LT
1053 }
1054}
6e39b69e
MC
1055EXPORT_SYMBOL_GPL(__blk_put_request);
1056
1da177e4
LT
1057void blk_put_request(struct request *req)
1058{
8922e16c 1059 unsigned long flags;
165125e1 1060 struct request_queue *q = req->q;
8922e16c 1061
52a93ba8
FT
1062 spin_lock_irqsave(q->queue_lock, flags);
1063 __blk_put_request(q, req);
1064 spin_unlock_irqrestore(q->queue_lock, flags);
1da177e4 1065}
1da177e4
LT
1066EXPORT_SYMBOL(blk_put_request);
1067
86db1e29 1068void init_request_from_bio(struct request *req, struct bio *bio)
52d9e675 1069{
c7c22e4d 1070 req->cpu = bio->bi_comp_cpu;
4aff5e23 1071 req->cmd_type = REQ_TYPE_FS;
52d9e675
TH
1072
1073 /*
1074 * inherit FAILFAST from bio (for read-ahead, and explicit FAILFAST)
1075 */
1076 if (bio_rw_ahead(bio) || bio_failfast(bio))
4aff5e23 1077 req->cmd_flags |= REQ_FAILFAST;
52d9e675
TH
1078
1079 /*
1080 * REQ_BARRIER implies no merging, but lets make it explicit
1081 */
fb2dce86 1082 if (unlikely(bio_discard(bio))) {
e17fc0a1
DW
1083 req->cmd_flags |= REQ_DISCARD;
1084 if (bio_barrier(bio))
1085 req->cmd_flags |= REQ_SOFTBARRIER;
fb2dce86 1086 req->q->prepare_discard_fn(req->q, req);
e17fc0a1
DW
1087 } else if (unlikely(bio_barrier(bio)))
1088 req->cmd_flags |= (REQ_HARDBARRIER | REQ_NOMERGE);
52d9e675 1089
b31dc66a 1090 if (bio_sync(bio))
4aff5e23 1091 req->cmd_flags |= REQ_RW_SYNC;
5404bc7a
JA
1092 if (bio_rw_meta(bio))
1093 req->cmd_flags |= REQ_RW_META;
b31dc66a 1094
52d9e675
TH
1095 req->errors = 0;
1096 req->hard_sector = req->sector = bio->bi_sector;
52d9e675 1097 req->ioprio = bio_prio(bio);
52d9e675 1098 req->start_time = jiffies;
bc1c56fd 1099 blk_rq_bio_prep(req->q, req, bio);
52d9e675
TH
1100}
1101
165125e1 1102static int __make_request(struct request_queue *q, struct bio *bio)
1da177e4 1103{
450991bc 1104 struct request *req;
fb2dce86 1105 int el_ret, nr_sectors, barrier, discard, err;
51da90fc
JA
1106 const unsigned short prio = bio_prio(bio);
1107 const int sync = bio_sync(bio);
7749a8d4 1108 int rw_flags;
1da177e4 1109
1da177e4 1110 nr_sectors = bio_sectors(bio);
1da177e4
LT
1111
1112 /*
1113 * low level driver can indicate that it wants pages above a
1114 * certain limit bounced to low memory (ie for highmem, or even
1115 * ISA dma in theory)
1116 */
1117 blk_queue_bounce(q, &bio);
1118
1da177e4 1119 barrier = bio_barrier(bio);
e17fc0a1
DW
1120 if (unlikely(barrier) && bio_has_data(bio) &&
1121 (q->next_ordered == QUEUE_ORDERED_NONE)) {
1da177e4
LT
1122 err = -EOPNOTSUPP;
1123 goto end_io;
1124 }
1125
fb2dce86
DW
1126 discard = bio_discard(bio);
1127 if (unlikely(discard) && !q->prepare_discard_fn) {
1128 err = -EOPNOTSUPP;
1129 goto end_io;
1130 }
1131
1da177e4
LT
1132 spin_lock_irq(q->queue_lock);
1133
450991bc 1134 if (unlikely(barrier) || elv_queue_empty(q))
1da177e4
LT
1135 goto get_rq;
1136
1137 el_ret = elv_merge(q, &req, bio);
1138 switch (el_ret) {
6728cb0e
JA
1139 case ELEVATOR_BACK_MERGE:
1140 BUG_ON(!rq_mergeable(req));
1da177e4 1141
6728cb0e
JA
1142 if (!ll_back_merge_fn(q, req, bio))
1143 break;
1da177e4 1144
6728cb0e 1145 blk_add_trace_bio(q, bio, BLK_TA_BACKMERGE);
2056a782 1146
6728cb0e
JA
1147 req->biotail->bi_next = bio;
1148 req->biotail = bio;
1149 req->nr_sectors = req->hard_nr_sectors += nr_sectors;
1150 req->ioprio = ioprio_best(req->ioprio, prio);
ab780f1e
JA
1151 if (!blk_rq_cpu_valid(req))
1152 req->cpu = bio->bi_comp_cpu;
6728cb0e
JA
1153 drive_stat_acct(req, 0);
1154 if (!attempt_back_merge(q, req))
1155 elv_merged_request(q, req, el_ret);
1156 goto out;
1da177e4 1157
6728cb0e
JA
1158 case ELEVATOR_FRONT_MERGE:
1159 BUG_ON(!rq_mergeable(req));
1da177e4 1160
6728cb0e
JA
1161 if (!ll_front_merge_fn(q, req, bio))
1162 break;
1da177e4 1163
6728cb0e 1164 blk_add_trace_bio(q, bio, BLK_TA_FRONTMERGE);
2056a782 1165
6728cb0e
JA
1166 bio->bi_next = req->bio;
1167 req->bio = bio;
1da177e4 1168
6728cb0e
JA
1169 /*
1170 * may not be valid. if the low level driver said
1171 * it didn't need a bounce buffer then it better
1172 * not touch req->buffer either...
1173 */
1174 req->buffer = bio_data(bio);
1175 req->current_nr_sectors = bio_cur_sectors(bio);
1176 req->hard_cur_sectors = req->current_nr_sectors;
1177 req->sector = req->hard_sector = bio->bi_sector;
1178 req->nr_sectors = req->hard_nr_sectors += nr_sectors;
1179 req->ioprio = ioprio_best(req->ioprio, prio);
ab780f1e
JA
1180 if (!blk_rq_cpu_valid(req))
1181 req->cpu = bio->bi_comp_cpu;
6728cb0e
JA
1182 drive_stat_acct(req, 0);
1183 if (!attempt_front_merge(q, req))
1184 elv_merged_request(q, req, el_ret);
1185 goto out;
1186
1187 /* ELV_NO_MERGE: elevator says don't/can't merge. */
1188 default:
1189 ;
1da177e4
LT
1190 }
1191
450991bc 1192get_rq:
7749a8d4
JA
1193 /*
1194 * This sync check and mask will be re-done in init_request_from_bio(),
1195 * but we need to set it earlier to expose the sync flag to the
1196 * rq allocator and io schedulers.
1197 */
1198 rw_flags = bio_data_dir(bio);
1199 if (sync)
1200 rw_flags |= REQ_RW_SYNC;
1201
1da177e4 1202 /*
450991bc 1203 * Grab a free request. This is might sleep but can not fail.
d6344532 1204 * Returns with the queue unlocked.
450991bc 1205 */
7749a8d4 1206 req = get_request_wait(q, rw_flags, bio);
d6344532 1207
450991bc
NP
1208 /*
1209 * After dropping the lock and possibly sleeping here, our request
1210 * may now be mergeable after it had proven unmergeable (above).
1211 * We don't worry about that case for efficiency. It won't happen
1212 * often, and the elevators are able to handle it.
1da177e4 1213 */
52d9e675 1214 init_request_from_bio(req, bio);
1da177e4 1215
450991bc 1216 spin_lock_irq(q->queue_lock);
c7c22e4d
JA
1217 if (test_bit(QUEUE_FLAG_SAME_COMP, &q->queue_flags) ||
1218 bio_flagged(bio, BIO_CPU_AFFINE))
1219 req->cpu = blk_cpu_to_group(smp_processor_id());
450991bc
NP
1220 if (elv_queue_empty(q))
1221 blk_plug_device(q);
1da177e4
LT
1222 add_request(q, req);
1223out:
4a534f93 1224 if (sync)
1da177e4 1225 __generic_unplug_device(q);
1da177e4
LT
1226 spin_unlock_irq(q->queue_lock);
1227 return 0;
1228
1229end_io:
6712ecf8 1230 bio_endio(bio, err);
1da177e4
LT
1231 return 0;
1232}
1233
1234/*
1235 * If bio->bi_dev is a partition, remap the location
1236 */
1237static inline void blk_partition_remap(struct bio *bio)
1238{
1239 struct block_device *bdev = bio->bi_bdev;
1240
bf2de6f5 1241 if (bio_sectors(bio) && bdev != bdev->bd_contains) {
1da177e4
LT
1242 struct hd_struct *p = bdev->bd_part;
1243
1da177e4
LT
1244 bio->bi_sector += p->start_sect;
1245 bio->bi_bdev = bdev->bd_contains;
c7149d6b
AB
1246
1247 blk_add_trace_remap(bdev_get_queue(bio->bi_bdev), bio,
1248 bdev->bd_dev, bio->bi_sector,
1249 bio->bi_sector - p->start_sect);
1da177e4
LT
1250 }
1251}
1252
1da177e4
LT
1253static void handle_bad_sector(struct bio *bio)
1254{
1255 char b[BDEVNAME_SIZE];
1256
1257 printk(KERN_INFO "attempt to access beyond end of device\n");
1258 printk(KERN_INFO "%s: rw=%ld, want=%Lu, limit=%Lu\n",
1259 bdevname(bio->bi_bdev, b),
1260 bio->bi_rw,
1261 (unsigned long long)bio->bi_sector + bio_sectors(bio),
1262 (long long)(bio->bi_bdev->bd_inode->i_size >> 9));
1263
1264 set_bit(BIO_EOF, &bio->bi_flags);
1265}
1266
c17bb495
AM
1267#ifdef CONFIG_FAIL_MAKE_REQUEST
1268
1269static DECLARE_FAULT_ATTR(fail_make_request);
1270
1271static int __init setup_fail_make_request(char *str)
1272{
1273 return setup_fault_attr(&fail_make_request, str);
1274}
1275__setup("fail_make_request=", setup_fail_make_request);
1276
1277static int should_fail_request(struct bio *bio)
1278{
eddb2e26
TH
1279 struct hd_struct *part = bio->bi_bdev->bd_part;
1280
1281 if (part_to_disk(part)->part0.make_it_fail || part->make_it_fail)
c17bb495
AM
1282 return should_fail(&fail_make_request, bio->bi_size);
1283
1284 return 0;
1285}
1286
1287static int __init fail_make_request_debugfs(void)
1288{
1289 return init_fault_attr_dentries(&fail_make_request,
1290 "fail_make_request");
1291}
1292
1293late_initcall(fail_make_request_debugfs);
1294
1295#else /* CONFIG_FAIL_MAKE_REQUEST */
1296
1297static inline int should_fail_request(struct bio *bio)
1298{
1299 return 0;
1300}
1301
1302#endif /* CONFIG_FAIL_MAKE_REQUEST */
1303
c07e2b41
JA
1304/*
1305 * Check whether this bio extends beyond the end of the device.
1306 */
1307static inline int bio_check_eod(struct bio *bio, unsigned int nr_sectors)
1308{
1309 sector_t maxsector;
1310
1311 if (!nr_sectors)
1312 return 0;
1313
1314 /* Test device or partition size, when known. */
1315 maxsector = bio->bi_bdev->bd_inode->i_size >> 9;
1316 if (maxsector) {
1317 sector_t sector = bio->bi_sector;
1318
1319 if (maxsector < nr_sectors || maxsector - nr_sectors < sector) {
1320 /*
1321 * This may well happen - the kernel calls bread()
1322 * without checking the size of the device, e.g., when
1323 * mounting a device.
1324 */
1325 handle_bad_sector(bio);
1326 return 1;
1327 }
1328 }
1329
1330 return 0;
1331}
1332
1da177e4 1333/**
710027a4 1334 * generic_make_request - hand a buffer to its device driver for I/O
1da177e4
LT
1335 * @bio: The bio describing the location in memory and on the device.
1336 *
1337 * generic_make_request() is used to make I/O requests of block
1338 * devices. It is passed a &struct bio, which describes the I/O that needs
1339 * to be done.
1340 *
1341 * generic_make_request() does not return any status. The
1342 * success/failure status of the request, along with notification of
1343 * completion, is delivered asynchronously through the bio->bi_end_io
1344 * function described (one day) else where.
1345 *
1346 * The caller of generic_make_request must make sure that bi_io_vec
1347 * are set to describe the memory buffer, and that bi_dev and bi_sector are
1348 * set to describe the device address, and the
1349 * bi_end_io and optionally bi_private are set to describe how
1350 * completion notification should be signaled.
1351 *
1352 * generic_make_request and the drivers it calls may use bi_next if this
1353 * bio happens to be merged with someone else, and may change bi_dev and
1354 * bi_sector for remaps as it sees fit. So the values of these fields
1355 * should NOT be depended on after the call to generic_make_request.
1356 */
d89d8796 1357static inline void __generic_make_request(struct bio *bio)
1da177e4 1358{
165125e1 1359 struct request_queue *q;
5ddfe969 1360 sector_t old_sector;
1da177e4 1361 int ret, nr_sectors = bio_sectors(bio);
2056a782 1362 dev_t old_dev;
51fd77bd 1363 int err = -EIO;
1da177e4
LT
1364
1365 might_sleep();
1da177e4 1366
c07e2b41
JA
1367 if (bio_check_eod(bio, nr_sectors))
1368 goto end_io;
1da177e4
LT
1369
1370 /*
1371 * Resolve the mapping until finished. (drivers are
1372 * still free to implement/resolve their own stacking
1373 * by explicitly returning 0)
1374 *
1375 * NOTE: we don't repeat the blk_size check for each new device.
1376 * Stacking drivers are expected to know what they are doing.
1377 */
5ddfe969 1378 old_sector = -1;
2056a782 1379 old_dev = 0;
1da177e4
LT
1380 do {
1381 char b[BDEVNAME_SIZE];
1382
1383 q = bdev_get_queue(bio->bi_bdev);
1384 if (!q) {
1385 printk(KERN_ERR
1386 "generic_make_request: Trying to access "
1387 "nonexistent block-device %s (%Lu)\n",
1388 bdevname(bio->bi_bdev, b),
1389 (long long) bio->bi_sector);
1390end_io:
51fd77bd 1391 bio_endio(bio, err);
1da177e4
LT
1392 break;
1393 }
1394
4fa253f3 1395 if (unlikely(nr_sectors > q->max_hw_sectors)) {
6728cb0e 1396 printk(KERN_ERR "bio too big device %s (%u > %u)\n",
1da177e4
LT
1397 bdevname(bio->bi_bdev, b),
1398 bio_sectors(bio),
1399 q->max_hw_sectors);
1400 goto end_io;
1401 }
1402
fde6ad22 1403 if (unlikely(test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)))
1da177e4
LT
1404 goto end_io;
1405
c17bb495
AM
1406 if (should_fail_request(bio))
1407 goto end_io;
1408
1da177e4
LT
1409 /*
1410 * If this device has partitions, remap block n
1411 * of partition p to block n+start(p) of the disk.
1412 */
1413 blk_partition_remap(bio);
1414
7ba1ba12
MP
1415 if (bio_integrity_enabled(bio) && bio_integrity_prep(bio))
1416 goto end_io;
1417
5ddfe969 1418 if (old_sector != -1)
4fa253f3 1419 blk_add_trace_remap(q, bio, old_dev, bio->bi_sector,
5ddfe969 1420 old_sector);
2056a782
JA
1421
1422 blk_add_trace_bio(q, bio, BLK_TA_QUEUE);
1423
5ddfe969 1424 old_sector = bio->bi_sector;
2056a782
JA
1425 old_dev = bio->bi_bdev->bd_dev;
1426
c07e2b41
JA
1427 if (bio_check_eod(bio, nr_sectors))
1428 goto end_io;
fb2dce86
DW
1429 if ((bio_empty_barrier(bio) && !q->prepare_flush_fn) ||
1430 (bio_discard(bio) && !q->prepare_discard_fn)) {
51fd77bd
JA
1431 err = -EOPNOTSUPP;
1432 goto end_io;
1433 }
5ddfe969 1434
1da177e4
LT
1435 ret = q->make_request_fn(q, bio);
1436 } while (ret);
1437}
1438
d89d8796
NB
1439/*
1440 * We only want one ->make_request_fn to be active at a time,
1441 * else stack usage with stacked devices could be a problem.
1442 * So use current->bio_{list,tail} to keep a list of requests
1443 * submited by a make_request_fn function.
1444 * current->bio_tail is also used as a flag to say if
1445 * generic_make_request is currently active in this task or not.
1446 * If it is NULL, then no make_request is active. If it is non-NULL,
1447 * then a make_request is active, and new requests should be added
1448 * at the tail
1449 */
1450void generic_make_request(struct bio *bio)
1451{
1452 if (current->bio_tail) {
1453 /* make_request is active */
1454 *(current->bio_tail) = bio;
1455 bio->bi_next = NULL;
1456 current->bio_tail = &bio->bi_next;
1457 return;
1458 }
1459 /* following loop may be a bit non-obvious, and so deserves some
1460 * explanation.
1461 * Before entering the loop, bio->bi_next is NULL (as all callers
1462 * ensure that) so we have a list with a single bio.
1463 * We pretend that we have just taken it off a longer list, so
1464 * we assign bio_list to the next (which is NULL) and bio_tail
1465 * to &bio_list, thus initialising the bio_list of new bios to be
1466 * added. __generic_make_request may indeed add some more bios
1467 * through a recursive call to generic_make_request. If it
1468 * did, we find a non-NULL value in bio_list and re-enter the loop
1469 * from the top. In this case we really did just take the bio
1470 * of the top of the list (no pretending) and so fixup bio_list and
1471 * bio_tail or bi_next, and call into __generic_make_request again.
1472 *
1473 * The loop was structured like this to make only one call to
1474 * __generic_make_request (which is important as it is large and
1475 * inlined) and to keep the structure simple.
1476 */
1477 BUG_ON(bio->bi_next);
1478 do {
1479 current->bio_list = bio->bi_next;
1480 if (bio->bi_next == NULL)
1481 current->bio_tail = &current->bio_list;
1482 else
1483 bio->bi_next = NULL;
1484 __generic_make_request(bio);
1485 bio = current->bio_list;
1486 } while (bio);
1487 current->bio_tail = NULL; /* deactivate */
1488}
1da177e4
LT
1489EXPORT_SYMBOL(generic_make_request);
1490
1491/**
710027a4 1492 * submit_bio - submit a bio to the block device layer for I/O
1da177e4
LT
1493 * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead)
1494 * @bio: The &struct bio which describes the I/O
1495 *
1496 * submit_bio() is very similar in purpose to generic_make_request(), and
1497 * uses that function to do most of the work. Both are fairly rough
710027a4 1498 * interfaces; @bio must be presetup and ready for I/O.
1da177e4
LT
1499 *
1500 */
1501void submit_bio(int rw, struct bio *bio)
1502{
1503 int count = bio_sectors(bio);
1504
22e2c507 1505 bio->bi_rw |= rw;
1da177e4 1506
bf2de6f5
JA
1507 /*
1508 * If it's a regular read/write or a barrier with data attached,
1509 * go through the normal accounting stuff before submission.
1510 */
a9c701e5 1511 if (bio_has_data(bio)) {
bf2de6f5
JA
1512 if (rw & WRITE) {
1513 count_vm_events(PGPGOUT, count);
1514 } else {
1515 task_io_account_read(bio->bi_size);
1516 count_vm_events(PGPGIN, count);
1517 }
1518
1519 if (unlikely(block_dump)) {
1520 char b[BDEVNAME_SIZE];
1521 printk(KERN_DEBUG "%s(%d): %s block %Lu on %s\n",
ba25f9dc 1522 current->comm, task_pid_nr(current),
bf2de6f5
JA
1523 (rw & WRITE) ? "WRITE" : "READ",
1524 (unsigned long long)bio->bi_sector,
6728cb0e 1525 bdevname(bio->bi_bdev, b));
bf2de6f5 1526 }
1da177e4
LT
1527 }
1528
1529 generic_make_request(bio);
1530}
1da177e4
LT
1531EXPORT_SYMBOL(submit_bio);
1532
82124d60
KU
1533/**
1534 * blk_rq_check_limits - Helper function to check a request for the queue limit
1535 * @q: the queue
1536 * @rq: the request being checked
1537 *
1538 * Description:
1539 * @rq may have been made based on weaker limitations of upper-level queues
1540 * in request stacking drivers, and it may violate the limitation of @q.
1541 * Since the block layer and the underlying device driver trust @rq
1542 * after it is inserted to @q, it should be checked against @q before
1543 * the insertion using this generic function.
1544 *
1545 * This function should also be useful for request stacking drivers
1546 * in some cases below, so export this fuction.
1547 * Request stacking drivers like request-based dm may change the queue
1548 * limits while requests are in the queue (e.g. dm's table swapping).
1549 * Such request stacking drivers should check those requests agaist
1550 * the new queue limits again when they dispatch those requests,
1551 * although such checkings are also done against the old queue limits
1552 * when submitting requests.
1553 */
1554int blk_rq_check_limits(struct request_queue *q, struct request *rq)
1555{
1556 if (rq->nr_sectors > q->max_sectors ||
1557 rq->data_len > q->max_hw_sectors << 9) {
1558 printk(KERN_ERR "%s: over max size limit.\n", __func__);
1559 return -EIO;
1560 }
1561
1562 /*
1563 * queue's settings related to segment counting like q->bounce_pfn
1564 * may differ from that of other stacking queues.
1565 * Recalculate it to check the request correctly on this queue's
1566 * limitation.
1567 */
1568 blk_recalc_rq_segments(rq);
1569 if (rq->nr_phys_segments > q->max_phys_segments ||
1570 rq->nr_phys_segments > q->max_hw_segments) {
1571 printk(KERN_ERR "%s: over max segments limit.\n", __func__);
1572 return -EIO;
1573 }
1574
1575 return 0;
1576}
1577EXPORT_SYMBOL_GPL(blk_rq_check_limits);
1578
1579/**
1580 * blk_insert_cloned_request - Helper for stacking drivers to submit a request
1581 * @q: the queue to submit the request
1582 * @rq: the request being queued
1583 */
1584int blk_insert_cloned_request(struct request_queue *q, struct request *rq)
1585{
1586 unsigned long flags;
1587
1588 if (blk_rq_check_limits(q, rq))
1589 return -EIO;
1590
1591#ifdef CONFIG_FAIL_MAKE_REQUEST
1592 if (rq->rq_disk && rq->rq_disk->part0.make_it_fail &&
1593 should_fail(&fail_make_request, blk_rq_bytes(rq)))
1594 return -EIO;
1595#endif
1596
1597 spin_lock_irqsave(q->queue_lock, flags);
1598
1599 /*
1600 * Submitting request must be dequeued before calling this function
1601 * because it will be linked to another request_queue
1602 */
1603 BUG_ON(blk_queued_rq(rq));
1604
1605 drive_stat_acct(rq, 1);
1606 __elv_add_request(q, rq, ELEVATOR_INSERT_BACK, 0);
1607
1608 spin_unlock_irqrestore(q->queue_lock, flags);
1609
1610 return 0;
1611}
1612EXPORT_SYMBOL_GPL(blk_insert_cloned_request);
1613
3bcddeac
KU
1614/**
1615 * __end_that_request_first - end I/O on a request
1616 * @req: the request being processed
710027a4 1617 * @error: %0 for success, < %0 for error
3bcddeac
KU
1618 * @nr_bytes: number of bytes to complete
1619 *
1620 * Description:
1621 * Ends I/O on a number of bytes attached to @req, and sets it up
1622 * for the next range of segments (if any) in the cluster.
1623 *
1624 * Return:
710027a4
RD
1625 * %0 - we are done with this request, call end_that_request_last()
1626 * %1 - still buffers pending for this request
3bcddeac 1627 **/
5450d3e1 1628static int __end_that_request_first(struct request *req, int error,
1da177e4
LT
1629 int nr_bytes)
1630{
5450d3e1 1631 int total_bytes, bio_nbytes, next_idx = 0;
1da177e4
LT
1632 struct bio *bio;
1633
2056a782
JA
1634 blk_add_trace_rq(req->q, req, BLK_TA_COMPLETE);
1635
1da177e4 1636 /*
710027a4 1637 * for a REQ_TYPE_BLOCK_PC request, we want to carry any eventual
1da177e4
LT
1638 * sense key with us all the way through
1639 */
1640 if (!blk_pc_request(req))
1641 req->errors = 0;
1642
6728cb0e
JA
1643 if (error && (blk_fs_request(req) && !(req->cmd_flags & REQ_QUIET))) {
1644 printk(KERN_ERR "end_request: I/O error, dev %s, sector %llu\n",
1da177e4
LT
1645 req->rq_disk ? req->rq_disk->disk_name : "?",
1646 (unsigned long long)req->sector);
1647 }
1648
d72d904a 1649 if (blk_fs_request(req) && req->rq_disk) {
a362357b 1650 const int rw = rq_data_dir(req);
e71bf0d0 1651 struct hd_struct *part;
c9959059 1652 int cpu;
a362357b 1653
074a7aca 1654 cpu = part_stat_lock();
e71bf0d0 1655 part = disk_map_sector_rcu(req->rq_disk, req->sector);
074a7aca
TH
1656 part_stat_add(cpu, part, sectors[rw], nr_bytes >> 9);
1657 part_stat_unlock();
d72d904a
JA
1658 }
1659
1da177e4
LT
1660 total_bytes = bio_nbytes = 0;
1661 while ((bio = req->bio) != NULL) {
1662 int nbytes;
1663
bf2de6f5
JA
1664 /*
1665 * For an empty barrier request, the low level driver must
1666 * store a potential error location in ->sector. We pass
1667 * that back up in ->bi_sector.
1668 */
1669 if (blk_empty_barrier(req))
1670 bio->bi_sector = req->sector;
1671
1da177e4
LT
1672 if (nr_bytes >= bio->bi_size) {
1673 req->bio = bio->bi_next;
1674 nbytes = bio->bi_size;
5bb23a68 1675 req_bio_endio(req, bio, nbytes, error);
1da177e4
LT
1676 next_idx = 0;
1677 bio_nbytes = 0;
1678 } else {
1679 int idx = bio->bi_idx + next_idx;
1680
1681 if (unlikely(bio->bi_idx >= bio->bi_vcnt)) {
1682 blk_dump_rq_flags(req, "__end_that");
6728cb0e 1683 printk(KERN_ERR "%s: bio idx %d >= vcnt %d\n",
24c03d47 1684 __func__, bio->bi_idx, bio->bi_vcnt);
1da177e4
LT
1685 break;
1686 }
1687
1688 nbytes = bio_iovec_idx(bio, idx)->bv_len;
1689 BIO_BUG_ON(nbytes > bio->bi_size);
1690
1691 /*
1692 * not a complete bvec done
1693 */
1694 if (unlikely(nbytes > nr_bytes)) {
1695 bio_nbytes += nr_bytes;
1696 total_bytes += nr_bytes;
1697 break;
1698 }
1699
1700 /*
1701 * advance to the next vector
1702 */
1703 next_idx++;
1704 bio_nbytes += nbytes;
1705 }
1706
1707 total_bytes += nbytes;
1708 nr_bytes -= nbytes;
1709
6728cb0e
JA
1710 bio = req->bio;
1711 if (bio) {
1da177e4
LT
1712 /*
1713 * end more in this run, or just return 'not-done'
1714 */
1715 if (unlikely(nr_bytes <= 0))
1716 break;
1717 }
1718 }
1719
1720 /*
1721 * completely done
1722 */
1723 if (!req->bio)
1724 return 0;
1725
1726 /*
1727 * if the request wasn't completed, update state
1728 */
1729 if (bio_nbytes) {
5bb23a68 1730 req_bio_endio(req, bio, bio_nbytes, error);
1da177e4
LT
1731 bio->bi_idx += next_idx;
1732 bio_iovec(bio)->bv_offset += nr_bytes;
1733 bio_iovec(bio)->bv_len -= nr_bytes;
1734 }
1735
1736 blk_recalc_rq_sectors(req, total_bytes >> 9);
1737 blk_recalc_rq_segments(req);
1738 return 1;
1739}
1740
1da177e4
LT
1741/*
1742 * queue lock must be held
1743 */
5450d3e1 1744static void end_that_request_last(struct request *req, int error)
1da177e4
LT
1745{
1746 struct gendisk *disk = req->rq_disk;
8ffdc655 1747
242f9dcb
JA
1748 blk_delete_timer(req);
1749
b8286239
KU
1750 if (blk_rq_tagged(req))
1751 blk_queue_end_tag(req->q, req);
1752
1753 if (blk_queued_rq(req))
1754 blkdev_dequeue_request(req);
1da177e4
LT
1755
1756 if (unlikely(laptop_mode) && blk_fs_request(req))
1757 laptop_io_completion();
1758
fd0ff8aa
JA
1759 /*
1760 * Account IO completion. bar_rq isn't accounted as a normal
1761 * IO on queueing nor completion. Accounting the containing
1762 * request is enough.
1763 */
1764 if (disk && blk_fs_request(req) && req != &req->q->bar_rq) {
1da177e4 1765 unsigned long duration = jiffies - req->start_time;
a362357b 1766 const int rw = rq_data_dir(req);
e71bf0d0 1767 struct hd_struct *part;
c9959059 1768 int cpu;
e71bf0d0 1769
074a7aca 1770 cpu = part_stat_lock();
e71bf0d0 1771 part = disk_map_sector_rcu(disk, req->sector);
a362357b 1772
074a7aca
TH
1773 part_stat_inc(cpu, part, ios[rw]);
1774 part_stat_add(cpu, part, ticks[rw], duration);
1775 part_round_stats(cpu, part);
1776 part_dec_in_flight(part);
e71bf0d0 1777
074a7aca 1778 part_stat_unlock();
1da177e4 1779 }
b8286239 1780
1da177e4 1781 if (req->end_io)
8ffdc655 1782 req->end_io(req, error);
b8286239
KU
1783 else {
1784 if (blk_bidi_rq(req))
1785 __blk_put_request(req->next_rq->q, req->next_rq);
1786
1da177e4 1787 __blk_put_request(req->q, req);
b8286239 1788 }
1da177e4
LT
1789}
1790
a0cd1285 1791static inline void __end_request(struct request *rq, int uptodate,
9e6e39f2 1792 unsigned int nr_bytes)
1da177e4 1793{
9e6e39f2
KU
1794 int error = 0;
1795
1796 if (uptodate <= 0)
1797 error = uptodate ? uptodate : -EIO;
1798
1799 __blk_end_request(rq, error, nr_bytes);
1da177e4
LT
1800}
1801
3b11313a
KU
1802/**
1803 * blk_rq_bytes - Returns bytes left to complete in the entire request
5d87a052 1804 * @rq: the request being processed
3b11313a
KU
1805 **/
1806unsigned int blk_rq_bytes(struct request *rq)
a0cd1285
JA
1807{
1808 if (blk_fs_request(rq))
1809 return rq->hard_nr_sectors << 9;
1810
1811 return rq->data_len;
1812}
3b11313a
KU
1813EXPORT_SYMBOL_GPL(blk_rq_bytes);
1814
1815/**
1816 * blk_rq_cur_bytes - Returns bytes left to complete in the current segment
5d87a052 1817 * @rq: the request being processed
3b11313a
KU
1818 **/
1819unsigned int blk_rq_cur_bytes(struct request *rq)
1820{
1821 if (blk_fs_request(rq))
1822 return rq->current_nr_sectors << 9;
1823
1824 if (rq->bio)
1825 return rq->bio->bi_size;
1826
1827 return rq->data_len;
1828}
1829EXPORT_SYMBOL_GPL(blk_rq_cur_bytes);
a0cd1285
JA
1830
1831/**
1832 * end_queued_request - end all I/O on a queued request
1833 * @rq: the request being processed
710027a4 1834 * @uptodate: error value or %0/%1 uptodate flag
a0cd1285
JA
1835 *
1836 * Description:
1837 * Ends all I/O on a request, and removes it from the block layer queues.
710027a4 1838 * Not suitable for normal I/O completion, unless the driver still has
a0cd1285
JA
1839 * the request attached to the block layer.
1840 *
1841 **/
1842void end_queued_request(struct request *rq, int uptodate)
1843{
9e6e39f2 1844 __end_request(rq, uptodate, blk_rq_bytes(rq));
a0cd1285
JA
1845}
1846EXPORT_SYMBOL(end_queued_request);
1847
1848/**
1849 * end_dequeued_request - end all I/O on a dequeued request
1850 * @rq: the request being processed
710027a4 1851 * @uptodate: error value or %0/%1 uptodate flag
a0cd1285
JA
1852 *
1853 * Description:
1854 * Ends all I/O on a request. The request must already have been
1855 * dequeued using blkdev_dequeue_request(), as is normally the case
1856 * for most drivers.
1857 *
1858 **/
1859void end_dequeued_request(struct request *rq, int uptodate)
1860{
9e6e39f2 1861 __end_request(rq, uptodate, blk_rq_bytes(rq));
a0cd1285
JA
1862}
1863EXPORT_SYMBOL(end_dequeued_request);
1864
1865
1866/**
1867 * end_request - end I/O on the current segment of the request
8f731f7d 1868 * @req: the request being processed
710027a4 1869 * @uptodate: error value or %0/%1 uptodate flag
a0cd1285
JA
1870 *
1871 * Description:
1872 * Ends I/O on the current segment of a request. If that is the only
1873 * remaining segment, the request is also completed and freed.
1874 *
710027a4
RD
1875 * This is a remnant of how older block drivers handled I/O completions.
1876 * Modern drivers typically end I/O on the full request in one go, unless
a0cd1285
JA
1877 * they have a residual value to account for. For that case this function
1878 * isn't really useful, unless the residual just happens to be the
1879 * full current segment. In other words, don't use this function in new
839e96af
JA
1880 * code. Use blk_end_request() or __blk_end_request() to end partial parts
1881 * of a request, or end_dequeued_request() and end_queued_request() to
1882 * completely end IO on a dequeued/queued request.
a0cd1285
JA
1883 *
1884 **/
1885void end_request(struct request *req, int uptodate)
1886{
9e6e39f2 1887 __end_request(req, uptodate, req->hard_cur_sectors << 9);
a0cd1285 1888}
1da177e4
LT
1889EXPORT_SYMBOL(end_request);
1890
32fab448
KU
1891static int end_that_request_data(struct request *rq, int error,
1892 unsigned int nr_bytes, unsigned int bidi_bytes)
1893{
1894 if (rq->bio) {
1895 if (__end_that_request_first(rq, error, nr_bytes))
1896 return 1;
1897
1898 /* Bidi request must be completed as a whole */
1899 if (blk_bidi_rq(rq) &&
1900 __end_that_request_first(rq->next_rq, error, bidi_bytes))
1901 return 1;
1902 }
1903
1904 return 0;
1905}
1906
336cdb40 1907/**
e19a3ab0
KU
1908 * blk_end_io - Generic end_io function to complete a request.
1909 * @rq: the request being processed
710027a4 1910 * @error: %0 for success, < %0 for error
e3a04fe3
KU
1911 * @nr_bytes: number of bytes to complete @rq
1912 * @bidi_bytes: number of bytes to complete @rq->next_rq
e19a3ab0
KU
1913 * @drv_callback: function called between completion of bios in the request
1914 * and completion of the request.
710027a4 1915 * If the callback returns non %0, this helper returns without
e19a3ab0 1916 * completion of the request.
336cdb40
KU
1917 *
1918 * Description:
e3a04fe3 1919 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
336cdb40
KU
1920 * If @rq has leftover, sets it up for the next range of segments.
1921 *
1922 * Return:
710027a4
RD
1923 * %0 - we are done with this request
1924 * %1 - this request is not freed yet, it still has pending buffers.
336cdb40 1925 **/
22b13210
JA
1926static int blk_end_io(struct request *rq, int error, unsigned int nr_bytes,
1927 unsigned int bidi_bytes,
1928 int (drv_callback)(struct request *))
336cdb40
KU
1929{
1930 struct request_queue *q = rq->q;
1931 unsigned long flags = 0UL;
336cdb40 1932
32fab448
KU
1933 if (end_that_request_data(rq, error, nr_bytes, bidi_bytes))
1934 return 1;
336cdb40 1935
e19a3ab0
KU
1936 /* Special feature for tricky drivers */
1937 if (drv_callback && drv_callback(rq))
1938 return 1;
1939
336cdb40
KU
1940 add_disk_randomness(rq->rq_disk);
1941
1942 spin_lock_irqsave(q->queue_lock, flags);
b8286239 1943 end_that_request_last(rq, error);
336cdb40
KU
1944 spin_unlock_irqrestore(q->queue_lock, flags);
1945
1946 return 0;
1947}
e19a3ab0
KU
1948
1949/**
1950 * blk_end_request - Helper function for drivers to complete the request.
1951 * @rq: the request being processed
710027a4 1952 * @error: %0 for success, < %0 for error
e19a3ab0
KU
1953 * @nr_bytes: number of bytes to complete
1954 *
1955 * Description:
1956 * Ends I/O on a number of bytes attached to @rq.
1957 * If @rq has leftover, sets it up for the next range of segments.
1958 *
1959 * Return:
710027a4
RD
1960 * %0 - we are done with this request
1961 * %1 - still buffers pending for this request
e19a3ab0 1962 **/
22b13210 1963int blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
e19a3ab0 1964{
e3a04fe3 1965 return blk_end_io(rq, error, nr_bytes, 0, NULL);
e19a3ab0 1966}
336cdb40
KU
1967EXPORT_SYMBOL_GPL(blk_end_request);
1968
1969/**
1970 * __blk_end_request - Helper function for drivers to complete the request.
1971 * @rq: the request being processed
710027a4 1972 * @error: %0 for success, < %0 for error
336cdb40
KU
1973 * @nr_bytes: number of bytes to complete
1974 *
1975 * Description:
1976 * Must be called with queue lock held unlike blk_end_request().
1977 *
1978 * Return:
710027a4
RD
1979 * %0 - we are done with this request
1980 * %1 - still buffers pending for this request
336cdb40 1981 **/
22b13210 1982int __blk_end_request(struct request *rq, int error, unsigned int nr_bytes)
336cdb40 1983{
60540161 1984 if (rq->bio && __end_that_request_first(rq, error, nr_bytes))
051cc395 1985 return 1;
336cdb40
KU
1986
1987 add_disk_randomness(rq->rq_disk);
1988
b8286239 1989 end_that_request_last(rq, error);
336cdb40
KU
1990
1991 return 0;
1992}
1993EXPORT_SYMBOL_GPL(__blk_end_request);
1994
e3a04fe3
KU
1995/**
1996 * blk_end_bidi_request - Helper function for drivers to complete bidi request.
1997 * @rq: the bidi request being processed
710027a4 1998 * @error: %0 for success, < %0 for error
e3a04fe3
KU
1999 * @nr_bytes: number of bytes to complete @rq
2000 * @bidi_bytes: number of bytes to complete @rq->next_rq
2001 *
2002 * Description:
2003 * Ends I/O on a number of bytes attached to @rq and @rq->next_rq.
2004 *
2005 * Return:
710027a4
RD
2006 * %0 - we are done with this request
2007 * %1 - still buffers pending for this request
e3a04fe3 2008 **/
22b13210
JA
2009int blk_end_bidi_request(struct request *rq, int error, unsigned int nr_bytes,
2010 unsigned int bidi_bytes)
e3a04fe3
KU
2011{
2012 return blk_end_io(rq, error, nr_bytes, bidi_bytes, NULL);
2013}
2014EXPORT_SYMBOL_GPL(blk_end_bidi_request);
2015
32fab448
KU
2016/**
2017 * blk_update_request - Special helper function for request stacking drivers
2018 * @rq: the request being processed
2019 * @error: %0 for success, < %0 for error
2020 * @nr_bytes: number of bytes to complete @rq
2021 *
2022 * Description:
2023 * Ends I/O on a number of bytes attached to @rq, but doesn't complete
2024 * the request structure even if @rq doesn't have leftover.
2025 * If @rq has leftover, sets it up for the next range of segments.
2026 *
2027 * This special helper function is only for request stacking drivers
2028 * (e.g. request-based dm) so that they can handle partial completion.
2029 * Actual device drivers should use blk_end_request instead.
2030 */
2031void blk_update_request(struct request *rq, int error, unsigned int nr_bytes)
2032{
2033 if (!end_that_request_data(rq, error, nr_bytes, 0)) {
2034 /*
2035 * These members are not updated in end_that_request_data()
2036 * when all bios are completed.
2037 * Update them so that the request stacking driver can find
2038 * how many bytes remain in the request later.
2039 */
2040 rq->nr_sectors = rq->hard_nr_sectors = 0;
2041 rq->current_nr_sectors = rq->hard_cur_sectors = 0;
2042 }
2043}
2044EXPORT_SYMBOL_GPL(blk_update_request);
2045
e19a3ab0
KU
2046/**
2047 * blk_end_request_callback - Special helper function for tricky drivers
2048 * @rq: the request being processed
710027a4 2049 * @error: %0 for success, < %0 for error
e19a3ab0
KU
2050 * @nr_bytes: number of bytes to complete
2051 * @drv_callback: function called between completion of bios in the request
2052 * and completion of the request.
710027a4 2053 * If the callback returns non %0, this helper returns without
e19a3ab0
KU
2054 * completion of the request.
2055 *
2056 * Description:
2057 * Ends I/O on a number of bytes attached to @rq.
2058 * If @rq has leftover, sets it up for the next range of segments.
2059 *
2060 * This special helper function is used only for existing tricky drivers.
2061 * (e.g. cdrom_newpc_intr() of ide-cd)
2062 * This interface will be removed when such drivers are rewritten.
2063 * Don't use this interface in other places anymore.
2064 *
2065 * Return:
710027a4
RD
2066 * %0 - we are done with this request
2067 * %1 - this request is not freed yet.
2068 * this request still has pending buffers or
2069 * the driver doesn't want to finish this request yet.
e19a3ab0 2070 **/
22b13210
JA
2071int blk_end_request_callback(struct request *rq, int error,
2072 unsigned int nr_bytes,
e19a3ab0
KU
2073 int (drv_callback)(struct request *))
2074{
e3a04fe3 2075 return blk_end_io(rq, error, nr_bytes, 0, drv_callback);
e19a3ab0
KU
2076}
2077EXPORT_SYMBOL_GPL(blk_end_request_callback);
2078
86db1e29
JA
2079void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
2080 struct bio *bio)
1da177e4 2081{
d628eaef
DW
2082 /* Bit 0 (R/W) is identical in rq->cmd_flags and bio->bi_rw, and
2083 we want BIO_RW_AHEAD (bit 1) to imply REQ_FAILFAST (bit 1). */
4aff5e23 2084 rq->cmd_flags |= (bio->bi_rw & 3);
1da177e4 2085
fb2dce86
DW
2086 if (bio_has_data(bio)) {
2087 rq->nr_phys_segments = bio_phys_segments(q, bio);
fb2dce86
DW
2088 rq->buffer = bio_data(bio);
2089 }
1da177e4
LT
2090 rq->current_nr_sectors = bio_cur_sectors(bio);
2091 rq->hard_cur_sectors = rq->current_nr_sectors;
2092 rq->hard_nr_sectors = rq->nr_sectors = bio_sectors(bio);
0e75f906 2093 rq->data_len = bio->bi_size;
1da177e4
LT
2094
2095 rq->bio = rq->biotail = bio;
1da177e4 2096
66846572
N
2097 if (bio->bi_bdev)
2098 rq->rq_disk = bio->bi_bdev->bd_disk;
2099}
1da177e4 2100
18887ad9 2101int kblockd_schedule_work(struct request_queue *q, struct work_struct *work)
1da177e4
LT
2102{
2103 return queue_work(kblockd_workqueue, work);
2104}
1da177e4
LT
2105EXPORT_SYMBOL(kblockd_schedule_work);
2106
19a75d83 2107void kblockd_flush_work(struct work_struct *work)
1da177e4 2108{
28e53bdd 2109 cancel_work_sync(work);
1da177e4 2110}
19a75d83 2111EXPORT_SYMBOL(kblockd_flush_work);
1da177e4
LT
2112
2113int __init blk_dev_init(void)
2114{
2115 kblockd_workqueue = create_workqueue("kblockd");
2116 if (!kblockd_workqueue)
2117 panic("Failed to create kblockd\n");
2118
2119 request_cachep = kmem_cache_create("blkdev_requests",
20c2df83 2120 sizeof(struct request), 0, SLAB_PANIC, NULL);
1da177e4 2121
8324aa91 2122 blk_requestq_cachep = kmem_cache_create("blkdev_queue",
165125e1 2123 sizeof(struct request_queue), 0, SLAB_PANIC, NULL);
1da177e4 2124
d38ecf93 2125 return 0;
1da177e4 2126}
1da177e4 2127