blob: 548f0d8266792ed03e75b6d1e93552de2bb747f7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 1991, 1992 Linus Torvalds
3 * Copyright (C) 1994, Karl Keyte: Added support for disk statistics
4 * Elevator latency, (C) 2000 Andrea Arcangeli <andrea@suse.de> SuSE
5 * Queue request tables / lock, selectable elevator, Jens Axboe <axboe@suse.de>
6 * kernel-doc documentation started by NeilBrown <neilb@cse.unsw.edu.au> - July2000
7 * bio rewrite, highmem i/o, etc, Jens Axboe <axboe@suse.de> - may 2001
8 */
9
10/*
11 * This handles all read/write requests to block devices
12 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/kernel.h>
14#include <linux/module.h>
15#include <linux/backing-dev.h>
16#include <linux/bio.h>
17#include <linux/blkdev.h>
18#include <linux/highmem.h>
19#include <linux/mm.h>
20#include <linux/kernel_stat.h>
21#include <linux/string.h>
22#include <linux/init.h>
23#include <linux/bootmem.h> /* for max_pfn/max_low_pfn */
24#include <linux/completion.h>
25#include <linux/slab.h>
26#include <linux/swap.h>
27#include <linux/writeback.h>
Andrew Mortonfaccbd4b2006-12-10 02:19:35 -080028#include <linux/task_io_accounting_ops.h>
Jens Axboeff856ba2006-01-09 16:02:34 +010029#include <linux/interrupt.h>
30#include <linux/cpu.h>
Jens Axboe2056a782006-03-23 20:00:26 +010031#include <linux/blktrace_api.h>
Akinobu Mitac17bb492006-12-08 02:39:46 -080032#include <linux/fault-inject.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34/*
35 * for max sense size
36 */
37#include <scsi/scsi_cmnd.h>
38
David Howells65f27f32006-11-22 14:55:48 +000039static void blk_unplug_work(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040static void blk_unplug_timeout(unsigned long data);
Adrian Bunk93d17d32005-06-25 14:59:10 -070041static void drive_stat_acct(struct request *rq, int nr_sectors, int new_io);
Tejun Heo52d9e672006-01-06 09:49:58 +010042static void init_request_from_bio(struct request *req, struct bio *bio);
Jens Axboe165125e2007-07-24 09:28:11 +020043static int __make_request(struct request_queue *q, struct bio *bio);
Jens Axboeb5deef92006-07-19 23:39:40 +020044static struct io_context *current_io_context(gfp_t gfp_flags, int node);
NeilBrown9dfa5282007-08-16 13:27:52 +020045static void blk_recalc_rq_segments(struct request *rq);
NeilBrown66846572007-08-16 13:31:28 +020046static void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
47 struct bio *bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49/*
50 * For the allocated request tables
51 */
Christoph Lametere18b8902006-12-06 20:33:20 -080052static struct kmem_cache *request_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54/*
55 * For queue allocation
56 */
Christoph Lametere18b8902006-12-06 20:33:20 -080057static struct kmem_cache *requestq_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59/*
60 * For io context allocations
61 */
Christoph Lametere18b8902006-12-06 20:33:20 -080062static struct kmem_cache *iocontext_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Linus Torvalds1da177e2005-04-16 15:20:36 -070064/*
65 * Controlling structure to kblockd
66 */
Jens Axboeff856ba2006-01-09 16:02:34 +010067static struct workqueue_struct *kblockd_workqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69unsigned long blk_max_low_pfn, blk_max_pfn;
70
71EXPORT_SYMBOL(blk_max_low_pfn);
72EXPORT_SYMBOL(blk_max_pfn);
73
Jens Axboeff856ba2006-01-09 16:02:34 +010074static DEFINE_PER_CPU(struct list_head, blk_cpu_done);
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076/* Amount of time in which a process may batch requests */
77#define BLK_BATCH_TIME (HZ/50UL)
78
79/* Number of requests a "batching" process may submit */
80#define BLK_BATCH_REQ 32
81
82/*
83 * Return the threshold (number of used requests) at which the queue is
84 * considered to be congested. It include a little hysteresis to keep the
85 * context switch rate down.
86 */
87static inline int queue_congestion_on_threshold(struct request_queue *q)
88{
89 return q->nr_congestion_on;
90}
91
92/*
93 * The threshold at which a queue is considered to be uncongested
94 */
95static inline int queue_congestion_off_threshold(struct request_queue *q)
96{
97 return q->nr_congestion_off;
98}
99
100static void blk_queue_congestion_threshold(struct request_queue *q)
101{
102 int nr;
103
104 nr = q->nr_requests - (q->nr_requests / 8) + 1;
105 if (nr > q->nr_requests)
106 nr = q->nr_requests;
107 q->nr_congestion_on = nr;
108
109 nr = q->nr_requests - (q->nr_requests / 8) - (q->nr_requests / 16) - 1;
110 if (nr < 1)
111 nr = 1;
112 q->nr_congestion_off = nr;
113}
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115/**
116 * blk_get_backing_dev_info - get the address of a queue's backing_dev_info
117 * @bdev: device
118 *
119 * Locates the passed device's request queue and returns the address of its
120 * backing_dev_info
121 *
122 * Will return NULL if the request queue cannot be located.
123 */
124struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev)
125{
126 struct backing_dev_info *ret = NULL;
Jens Axboe165125e2007-07-24 09:28:11 +0200127 struct request_queue *q = bdev_get_queue(bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129 if (q)
130 ret = &q->backing_dev_info;
131 return ret;
132}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133EXPORT_SYMBOL(blk_get_backing_dev_info);
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135/**
136 * blk_queue_prep_rq - set a prepare_request function for queue
137 * @q: queue
138 * @pfn: prepare_request function
139 *
140 * It's possible for a queue to register a prepare_request callback which
141 * is invoked before the request is handed to the request_fn. The goal of
142 * the function is to prepare a request for I/O, it can be used to build a
143 * cdb from the request data for instance.
144 *
145 */
Jens Axboe165125e2007-07-24 09:28:11 +0200146void blk_queue_prep_rq(struct request_queue *q, prep_rq_fn *pfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
148 q->prep_rq_fn = pfn;
149}
150
151EXPORT_SYMBOL(blk_queue_prep_rq);
152
153/**
154 * blk_queue_merge_bvec - set a merge_bvec function for queue
155 * @q: queue
156 * @mbfn: merge_bvec_fn
157 *
158 * Usually queues have static limitations on the max sectors or segments that
159 * we can put in a request. Stacking drivers may have some settings that
160 * are dynamic, and thus we have to query the queue whether it is ok to
161 * add a new bio_vec to a bio at a given offset or not. If the block device
162 * has such limitations, it needs to register a merge_bvec_fn to control
163 * the size of bio's sent to it. Note that a block device *must* allow a
164 * single page to be added to an empty bio. The block device driver may want
165 * to use the bio_split() function to deal with these bio's. By default
166 * no merge_bvec_fn is defined for a queue, and only the fixed limits are
167 * honored.
168 */
Jens Axboe165125e2007-07-24 09:28:11 +0200169void blk_queue_merge_bvec(struct request_queue *q, merge_bvec_fn *mbfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
171 q->merge_bvec_fn = mbfn;
172}
173
174EXPORT_SYMBOL(blk_queue_merge_bvec);
175
Jens Axboe165125e2007-07-24 09:28:11 +0200176void blk_queue_softirq_done(struct request_queue *q, softirq_done_fn *fn)
Jens Axboeff856ba2006-01-09 16:02:34 +0100177{
178 q->softirq_done_fn = fn;
179}
180
181EXPORT_SYMBOL(blk_queue_softirq_done);
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183/**
184 * blk_queue_make_request - define an alternate make_request function for a device
185 * @q: the request queue for the device to be affected
186 * @mfn: the alternate make_request function
187 *
188 * Description:
189 * The normal way for &struct bios to be passed to a device
190 * driver is for them to be collected into requests on a request
191 * queue, and then to allow the device driver to select requests
192 * off that queue when it is ready. This works well for many block
193 * devices. However some block devices (typically virtual devices
194 * such as md or lvm) do not benefit from the processing on the
195 * request queue, and are served best by having the requests passed
196 * directly to them. This can be achieved by providing a function
197 * to blk_queue_make_request().
198 *
199 * Caveat:
200 * The driver that does this *must* be able to deal appropriately
201 * with buffers in "highmemory". This can be accomplished by either calling
202 * __bio_kmap_atomic() to get a temporary kernel mapping, or by calling
203 * blk_queue_bounce() to create a buffer in normal memory.
204 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200205void blk_queue_make_request(struct request_queue * q, make_request_fn * mfn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
207 /*
208 * set defaults
209 */
210 q->nr_requests = BLKDEV_MAX_RQ;
Stuart McLaren309c0a12005-09-06 15:17:47 -0700211 blk_queue_max_phys_segments(q, MAX_PHYS_SEGMENTS);
212 blk_queue_max_hw_segments(q, MAX_HW_SEGMENTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 q->make_request_fn = mfn;
214 q->backing_dev_info.ra_pages = (VM_MAX_READAHEAD * 1024) / PAGE_CACHE_SIZE;
215 q->backing_dev_info.state = 0;
216 q->backing_dev_info.capabilities = BDI_CAP_MAP_COPY;
Mike Christiedefd94b2005-12-05 02:37:06 -0600217 blk_queue_max_sectors(q, SAFE_MAX_SECTORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 blk_queue_hardsect_size(q, 512);
219 blk_queue_dma_alignment(q, 511);
220 blk_queue_congestion_threshold(q);
221 q->nr_batching = BLK_BATCH_REQ;
222
223 q->unplug_thresh = 4; /* hmm */
224 q->unplug_delay = (3 * HZ) / 1000; /* 3 milliseconds */
225 if (q->unplug_delay == 0)
226 q->unplug_delay = 1;
227
David Howells65f27f32006-11-22 14:55:48 +0000228 INIT_WORK(&q->unplug_work, blk_unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 q->unplug_timer.function = blk_unplug_timeout;
231 q->unplug_timer.data = (unsigned long)q;
232
233 /*
234 * by default assume old behaviour and bounce for any highmem page
235 */
236 blk_queue_bounce_limit(q, BLK_BOUNCE_HIGH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237}
238
239EXPORT_SYMBOL(blk_queue_make_request);
240
Jens Axboe165125e2007-07-24 09:28:11 +0200241static void rq_init(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
243 INIT_LIST_HEAD(&rq->queuelist);
Jens Axboeff856ba2006-01-09 16:02:34 +0100244 INIT_LIST_HEAD(&rq->donelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246 rq->errors = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 rq->bio = rq->biotail = NULL;
Jens Axboe2e662b62006-07-13 11:55:04 +0200248 INIT_HLIST_NODE(&rq->hash);
249 RB_CLEAR_NODE(&rq->rb_node);
Jens Axboe22e2c502005-06-27 10:55:12 +0200250 rq->ioprio = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 rq->buffer = NULL;
252 rq->ref_count = 1;
253 rq->q = q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 rq->special = NULL;
255 rq->data_len = 0;
256 rq->data = NULL;
Mike Christie df46b9a2005-06-20 14:04:44 +0200257 rq->nr_phys_segments = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 rq->sense = NULL;
259 rq->end_io = NULL;
260 rq->end_io_data = NULL;
Jens Axboeff856ba2006-01-09 16:02:34 +0100261 rq->completion_data = NULL;
FUJITA Tomonoriabae1fd2007-07-16 08:52:14 +0200262 rq->next_rq = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
265/**
266 * blk_queue_ordered - does this queue support ordered writes
Tejun Heo797e7db2006-01-06 09:51:03 +0100267 * @q: the request queue
268 * @ordered: one of QUEUE_ORDERED_*
Jens Axboefddfdea2006-01-31 15:24:34 +0100269 * @prepare_flush_fn: rq setup helper for cache flush ordered writes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 *
271 * Description:
272 * For journalled file systems, doing ordered writes on a commit
273 * block instead of explicitly doing wait_on_buffer (which is bad
274 * for performance) can be a big win. Block drivers supporting this
275 * feature should call this function and indicate so.
276 *
277 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200278int blk_queue_ordered(struct request_queue *q, unsigned ordered,
Tejun Heo797e7db2006-01-06 09:51:03 +0100279 prepare_flush_fn *prepare_flush_fn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
Tejun Heo797e7db2006-01-06 09:51:03 +0100281 if (ordered & (QUEUE_ORDERED_PREFLUSH | QUEUE_ORDERED_POSTFLUSH) &&
282 prepare_flush_fn == NULL) {
283 printk(KERN_ERR "blk_queue_ordered: prepare_flush_fn required\n");
284 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 }
Tejun Heo797e7db2006-01-06 09:51:03 +0100286
287 if (ordered != QUEUE_ORDERED_NONE &&
288 ordered != QUEUE_ORDERED_DRAIN &&
289 ordered != QUEUE_ORDERED_DRAIN_FLUSH &&
290 ordered != QUEUE_ORDERED_DRAIN_FUA &&
291 ordered != QUEUE_ORDERED_TAG &&
292 ordered != QUEUE_ORDERED_TAG_FLUSH &&
293 ordered != QUEUE_ORDERED_TAG_FUA) {
294 printk(KERN_ERR "blk_queue_ordered: bad value %d\n", ordered);
295 return -EINVAL;
296 }
297
Tetsuo Takata60481b12006-01-24 10:34:36 +0100298 q->ordered = ordered;
Tejun Heo797e7db2006-01-06 09:51:03 +0100299 q->next_ordered = ordered;
300 q->prepare_flush_fn = prepare_flush_fn;
301
302 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303}
304
305EXPORT_SYMBOL(blk_queue_ordered);
306
307/**
308 * blk_queue_issue_flush_fn - set function for issuing a flush
309 * @q: the request queue
310 * @iff: the function to be called issuing the flush
311 *
312 * Description:
313 * If a driver supports issuing a flush command, the support is notified
314 * to the block layer by defining it through this call.
315 *
316 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200317void blk_queue_issue_flush_fn(struct request_queue *q, issue_flush_fn *iff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
319 q->issue_flush_fn = iff;
320}
321
322EXPORT_SYMBOL(blk_queue_issue_flush_fn);
323
324/*
325 * Cache flushing for ordered writes handling
326 */
Jens Axboe165125e2007-07-24 09:28:11 +0200327inline unsigned blk_ordered_cur_seq(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
Tejun Heo797e7db2006-01-06 09:51:03 +0100329 if (!q->ordseq)
330 return 0;
331 return 1 << ffz(q->ordseq);
332}
333
334unsigned blk_ordered_req_seq(struct request *rq)
335{
Jens Axboe165125e2007-07-24 09:28:11 +0200336 struct request_queue *q = rq->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Tejun Heo797e7db2006-01-06 09:51:03 +0100338 BUG_ON(q->ordseq == 0);
Tejun Heo8922e162005-10-20 16:23:44 +0200339
Tejun Heo797e7db2006-01-06 09:51:03 +0100340 if (rq == &q->pre_flush_rq)
341 return QUEUE_ORDSEQ_PREFLUSH;
342 if (rq == &q->bar_rq)
343 return QUEUE_ORDSEQ_BAR;
344 if (rq == &q->post_flush_rq)
345 return QUEUE_ORDSEQ_POSTFLUSH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
Tejun Heobc90ba02007-06-15 13:24:28 +0200347 /*
348 * !fs requests don't need to follow barrier ordering. Always
349 * put them at the front. This fixes the following deadlock.
350 *
351 * http://thread.gmane.org/gmane.linux.kernel/537473
352 */
353 if (!blk_fs_request(rq))
354 return QUEUE_ORDSEQ_DRAIN;
355
Jens Axboe4aff5e22006-08-10 08:44:47 +0200356 if ((rq->cmd_flags & REQ_ORDERED_COLOR) ==
357 (q->orig_bar_rq->cmd_flags & REQ_ORDERED_COLOR))
Tejun Heo797e7db2006-01-06 09:51:03 +0100358 return QUEUE_ORDSEQ_DRAIN;
359 else
360 return QUEUE_ORDSEQ_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361}
362
Jens Axboe165125e2007-07-24 09:28:11 +0200363void blk_ordered_complete_seq(struct request_queue *q, unsigned seq, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
Tejun Heo797e7db2006-01-06 09:51:03 +0100365 struct request *rq;
366 int uptodate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Tejun Heo797e7db2006-01-06 09:51:03 +0100368 if (error && !q->orderr)
369 q->orderr = error;
Tejun Heo8922e162005-10-20 16:23:44 +0200370
Tejun Heo797e7db2006-01-06 09:51:03 +0100371 BUG_ON(q->ordseq & seq);
372 q->ordseq |= seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Tejun Heo797e7db2006-01-06 09:51:03 +0100374 if (blk_ordered_cur_seq(q) != QUEUE_ORDSEQ_DONE)
375 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377 /*
Tejun Heo797e7db2006-01-06 09:51:03 +0100378 * Okay, sequence complete.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 */
Jens Axboe4fa253f2007-07-18 13:13:10 +0200380 uptodate = 1;
381 if (q->orderr)
382 uptodate = q->orderr;
Tejun Heo797e7db2006-01-06 09:51:03 +0100383
384 q->ordseq = 0;
Jens Axboe4fa253f2007-07-18 13:13:10 +0200385 rq = q->orig_bar_rq;
Tejun Heo797e7db2006-01-06 09:51:03 +0100386
387 end_that_request_first(rq, uptodate, rq->hard_nr_sectors);
388 end_that_request_last(rq, uptodate);
389}
390
391static void pre_flush_end_io(struct request *rq, int error)
392{
393 elv_completed_request(rq->q, rq);
394 blk_ordered_complete_seq(rq->q, QUEUE_ORDSEQ_PREFLUSH, error);
395}
396
397static void bar_end_io(struct request *rq, int error)
398{
399 elv_completed_request(rq->q, rq);
400 blk_ordered_complete_seq(rq->q, QUEUE_ORDSEQ_BAR, error);
401}
402
403static void post_flush_end_io(struct request *rq, int error)
404{
405 elv_completed_request(rq->q, rq);
406 blk_ordered_complete_seq(rq->q, QUEUE_ORDSEQ_POSTFLUSH, error);
407}
408
Jens Axboe165125e2007-07-24 09:28:11 +0200409static void queue_flush(struct request_queue *q, unsigned which)
Tejun Heo797e7db2006-01-06 09:51:03 +0100410{
411 struct request *rq;
412 rq_end_io_fn *end_io;
413
414 if (which == QUEUE_ORDERED_PREFLUSH) {
415 rq = &q->pre_flush_rq;
416 end_io = pre_flush_end_io;
417 } else {
418 rq = &q->post_flush_rq;
419 end_io = post_flush_end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 }
421
Jens Axboe4aff5e22006-08-10 08:44:47 +0200422 rq->cmd_flags = REQ_HARDBARRIER;
Tejun Heo797e7db2006-01-06 09:51:03 +0100423 rq_init(q, rq);
Tejun Heo797e7db2006-01-06 09:51:03 +0100424 rq->elevator_private = NULL;
Jens Axboec00895a2006-09-30 20:29:12 +0200425 rq->elevator_private2 = NULL;
Tejun Heo797e7db2006-01-06 09:51:03 +0100426 rq->rq_disk = q->bar_rq.rq_disk;
Tejun Heo797e7db2006-01-06 09:51:03 +0100427 rq->end_io = end_io;
428 q->prepare_flush_fn(q, rq);
429
Tejun Heo30e96562006-02-08 01:01:31 -0800430 elv_insert(q, rq, ELEVATOR_INSERT_FRONT);
Tejun Heo797e7db2006-01-06 09:51:03 +0100431}
432
Jens Axboe165125e2007-07-24 09:28:11 +0200433static inline struct request *start_ordered(struct request_queue *q,
Tejun Heo797e7db2006-01-06 09:51:03 +0100434 struct request *rq)
435{
Tejun Heo797e7db2006-01-06 09:51:03 +0100436 q->orderr = 0;
437 q->ordered = q->next_ordered;
438 q->ordseq |= QUEUE_ORDSEQ_STARTED;
439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 /*
Tejun Heo797e7db2006-01-06 09:51:03 +0100441 * Prep proxy barrier request.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 */
Tejun Heo797e7db2006-01-06 09:51:03 +0100443 blkdev_dequeue_request(rq);
444 q->orig_bar_rq = rq;
445 rq = &q->bar_rq;
Jens Axboe4aff5e22006-08-10 08:44:47 +0200446 rq->cmd_flags = 0;
Tejun Heo797e7db2006-01-06 09:51:03 +0100447 rq_init(q, rq);
Jens Axboe4aff5e22006-08-10 08:44:47 +0200448 if (bio_data_dir(q->orig_bar_rq->bio) == WRITE)
449 rq->cmd_flags |= REQ_RW;
Jens Axboe4fa253f2007-07-18 13:13:10 +0200450 if (q->ordered & QUEUE_ORDERED_FUA)
451 rq->cmd_flags |= REQ_FUA;
Tejun Heo797e7db2006-01-06 09:51:03 +0100452 rq->elevator_private = NULL;
Jens Axboec00895a2006-09-30 20:29:12 +0200453 rq->elevator_private2 = NULL;
Tejun Heo797e7db2006-01-06 09:51:03 +0100454 init_request_from_bio(rq, q->orig_bar_rq->bio);
455 rq->end_io = bar_end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Tejun Heo797e7db2006-01-06 09:51:03 +0100457 /*
458 * Queue ordered sequence. As we stack them at the head, we
459 * need to queue in reverse order. Note that we rely on that
460 * no fs request uses ELEVATOR_INSERT_FRONT and thus no fs
461 * request gets inbetween ordered sequence.
462 */
463 if (q->ordered & QUEUE_ORDERED_POSTFLUSH)
464 queue_flush(q, QUEUE_ORDERED_POSTFLUSH);
465 else
466 q->ordseq |= QUEUE_ORDSEQ_POSTFLUSH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Tejun Heo30e96562006-02-08 01:01:31 -0800468 elv_insert(q, rq, ELEVATOR_INSERT_FRONT);
Tejun Heo797e7db2006-01-06 09:51:03 +0100469
470 if (q->ordered & QUEUE_ORDERED_PREFLUSH) {
471 queue_flush(q, QUEUE_ORDERED_PREFLUSH);
472 rq = &q->pre_flush_rq;
473 } else
474 q->ordseq |= QUEUE_ORDSEQ_PREFLUSH;
475
476 if ((q->ordered & QUEUE_ORDERED_TAG) || q->in_flight == 0)
477 q->ordseq |= QUEUE_ORDSEQ_DRAIN;
478 else
479 rq = NULL;
480
481 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482}
483
Jens Axboe165125e2007-07-24 09:28:11 +0200484int blk_do_ordered(struct request_queue *q, struct request **rqp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
Jens Axboe9a7a67a2006-02-04 23:27:38 -0800486 struct request *rq = *rqp;
Tejun Heo797e7db2006-01-06 09:51:03 +0100487 int is_barrier = blk_fs_request(rq) && blk_barrier_rq(rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Tejun Heo797e7db2006-01-06 09:51:03 +0100489 if (!q->ordseq) {
490 if (!is_barrier)
491 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Tejun Heo797e7db2006-01-06 09:51:03 +0100493 if (q->next_ordered != QUEUE_ORDERED_NONE) {
494 *rqp = start_ordered(q, rq);
495 return 1;
496 } else {
497 /*
498 * This can happen when the queue switches to
499 * ORDERED_NONE while this request is on it.
500 */
501 blkdev_dequeue_request(rq);
502 end_that_request_first(rq, -EOPNOTSUPP,
503 rq->hard_nr_sectors);
504 end_that_request_last(rq, -EOPNOTSUPP);
505 *rqp = NULL;
506 return 0;
507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Jens Axboe9a7a67a2006-02-04 23:27:38 -0800510 /*
511 * Ordered sequence in progress
512 */
513
514 /* Special requests are not subject to ordering rules. */
515 if (!blk_fs_request(rq) &&
516 rq != &q->pre_flush_rq && rq != &q->post_flush_rq)
517 return 1;
518
Tejun Heo797e7db2006-01-06 09:51:03 +0100519 if (q->ordered & QUEUE_ORDERED_TAG) {
Jens Axboe9a7a67a2006-02-04 23:27:38 -0800520 /* Ordered by tag. Blocking the next barrier is enough. */
Tejun Heo797e7db2006-01-06 09:51:03 +0100521 if (is_barrier && rq != &q->bar_rq)
522 *rqp = NULL;
Jens Axboe9a7a67a2006-02-04 23:27:38 -0800523 } else {
524 /* Ordered by draining. Wait for turn. */
525 WARN_ON(blk_ordered_req_seq(rq) < blk_ordered_cur_seq(q));
526 if (blk_ordered_req_seq(rq) > blk_ordered_cur_seq(q))
527 *rqp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 }
529
530 return 1;
531}
532
NeilBrown5bb23a62007-09-27 12:46:13 +0200533static void req_bio_endio(struct request *rq, struct bio *bio,
534 unsigned int nbytes, int error)
Tejun Heo797e7db2006-01-06 09:51:03 +0100535{
Jens Axboe165125e2007-07-24 09:28:11 +0200536 struct request_queue *q = rq->q;
Tejun Heo797e7db2006-01-06 09:51:03 +0100537
NeilBrown5bb23a62007-09-27 12:46:13 +0200538 if (&q->bar_rq != rq) {
539 if (error)
540 clear_bit(BIO_UPTODATE, &bio->bi_flags);
541 else if (!test_bit(BIO_UPTODATE, &bio->bi_flags))
542 error = -EIO;
Tejun Heo797e7db2006-01-06 09:51:03 +0100543
NeilBrown5bb23a62007-09-27 12:46:13 +0200544 if (unlikely(nbytes > bio->bi_size)) {
545 printk("%s: want %u bytes done, only %u left\n",
546 __FUNCTION__, nbytes, bio->bi_size);
547 nbytes = bio->bi_size;
548 }
Tejun Heo797e7db2006-01-06 09:51:03 +0100549
NeilBrown5bb23a62007-09-27 12:46:13 +0200550 bio->bi_size -= nbytes;
551 bio->bi_sector += (nbytes >> 9);
552 if (bio->bi_size == 0)
NeilBrown6712ecf2007-09-27 12:47:43 +0200553 bio_endio(bio, error);
NeilBrown5bb23a62007-09-27 12:46:13 +0200554 } else {
555
556 /*
557 * Okay, this is the barrier request in progress, just
558 * record the error;
559 */
560 if (error && !q->orderr)
561 q->orderr = error;
562 }
Tejun Heo797e7db2006-01-06 09:51:03 +0100563}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565/**
566 * blk_queue_bounce_limit - set bounce buffer limit for queue
567 * @q: the request queue for the device
568 * @dma_addr: bus address limit
569 *
570 * Description:
571 * Different hardware can have different requirements as to what pages
572 * it can do I/O directly to. A low level driver can call
573 * blk_queue_bounce_limit to have lower memory pages allocated as bounce
Andi Kleen5ee1af92006-03-08 17:57:26 -0800574 * buffers for doing I/O to pages residing above @page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200576void blk_queue_bounce_limit(struct request_queue *q, u64 dma_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577{
578 unsigned long bounce_pfn = dma_addr >> PAGE_SHIFT;
Andi Kleen5ee1af92006-03-08 17:57:26 -0800579 int dma = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Andi Kleen5ee1af92006-03-08 17:57:26 -0800581 q->bounce_gfp = GFP_NOIO;
582#if BITS_PER_LONG == 64
583 /* Assume anything <= 4GB can be handled by IOMMU.
584 Actually some IOMMUs can handle everything, but I don't
585 know of a way to test this here. */
Andi Kleen82697302006-06-21 14:48:09 +0200586 if (bounce_pfn < (min_t(u64,0xffffffff,BLK_BOUNCE_HIGH) >> PAGE_SHIFT))
Andi Kleen5ee1af92006-03-08 17:57:26 -0800587 dma = 1;
588 q->bounce_pfn = max_low_pfn;
589#else
590 if (bounce_pfn < blk_max_low_pfn)
591 dma = 1;
592 q->bounce_pfn = bounce_pfn;
593#endif
594 if (dma) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 init_emergency_isa_pool();
596 q->bounce_gfp = GFP_NOIO | GFP_DMA;
Andi Kleen5ee1af92006-03-08 17:57:26 -0800597 q->bounce_pfn = bounce_pfn;
598 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599}
600
601EXPORT_SYMBOL(blk_queue_bounce_limit);
602
603/**
604 * blk_queue_max_sectors - set max sectors for a request for this queue
605 * @q: the request queue for the device
606 * @max_sectors: max sectors in the usual 512b unit
607 *
608 * Description:
609 * Enables a low level driver to set an upper limit on the size of
610 * received requests.
611 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200612void blk_queue_max_sectors(struct request_queue *q, unsigned int max_sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613{
614 if ((max_sectors << 9) < PAGE_CACHE_SIZE) {
615 max_sectors = 1 << (PAGE_CACHE_SHIFT - 9);
616 printk("%s: set to minimum %d\n", __FUNCTION__, max_sectors);
617 }
618
Mike Christiedefd94b2005-12-05 02:37:06 -0600619 if (BLK_DEF_MAX_SECTORS > max_sectors)
620 q->max_hw_sectors = q->max_sectors = max_sectors;
621 else {
622 q->max_sectors = BLK_DEF_MAX_SECTORS;
623 q->max_hw_sectors = max_sectors;
624 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625}
626
627EXPORT_SYMBOL(blk_queue_max_sectors);
628
629/**
630 * blk_queue_max_phys_segments - set max phys segments for a request for this queue
631 * @q: the request queue for the device
632 * @max_segments: max number of segments
633 *
634 * Description:
635 * Enables a low level driver to set an upper limit on the number of
636 * physical data segments in a request. This would be the largest sized
637 * scatter list the driver could handle.
638 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200639void blk_queue_max_phys_segments(struct request_queue *q,
640 unsigned short max_segments)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641{
642 if (!max_segments) {
643 max_segments = 1;
644 printk("%s: set to minimum %d\n", __FUNCTION__, max_segments);
645 }
646
647 q->max_phys_segments = max_segments;
648}
649
650EXPORT_SYMBOL(blk_queue_max_phys_segments);
651
652/**
653 * blk_queue_max_hw_segments - set max hw segments for a request for this queue
654 * @q: the request queue for the device
655 * @max_segments: max number of segments
656 *
657 * Description:
658 * Enables a low level driver to set an upper limit on the number of
659 * hw data segments in a request. This would be the largest number of
660 * address/length pairs the host adapter can actually give as once
661 * to the device.
662 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200663void blk_queue_max_hw_segments(struct request_queue *q,
664 unsigned short max_segments)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
666 if (!max_segments) {
667 max_segments = 1;
668 printk("%s: set to minimum %d\n", __FUNCTION__, max_segments);
669 }
670
671 q->max_hw_segments = max_segments;
672}
673
674EXPORT_SYMBOL(blk_queue_max_hw_segments);
675
676/**
677 * blk_queue_max_segment_size - set max segment size for blk_rq_map_sg
678 * @q: the request queue for the device
679 * @max_size: max size of segment in bytes
680 *
681 * Description:
682 * Enables a low level driver to set an upper limit on the size of a
683 * coalesced segment
684 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200685void blk_queue_max_segment_size(struct request_queue *q, unsigned int max_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686{
687 if (max_size < PAGE_CACHE_SIZE) {
688 max_size = PAGE_CACHE_SIZE;
689 printk("%s: set to minimum %d\n", __FUNCTION__, max_size);
690 }
691
692 q->max_segment_size = max_size;
693}
694
695EXPORT_SYMBOL(blk_queue_max_segment_size);
696
697/**
698 * blk_queue_hardsect_size - set hardware sector size for the queue
699 * @q: the request queue for the device
700 * @size: the hardware sector size, in bytes
701 *
702 * Description:
703 * This should typically be set to the lowest possible sector size
704 * that the hardware can operate on (possible without reverting to
705 * even internal read-modify-write operations). Usually the default
706 * of 512 covers most hardware.
707 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200708void blk_queue_hardsect_size(struct request_queue *q, unsigned short size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709{
710 q->hardsect_size = size;
711}
712
713EXPORT_SYMBOL(blk_queue_hardsect_size);
714
715/*
716 * Returns the minimum that is _not_ zero, unless both are zero.
717 */
718#define min_not_zero(l, r) (l == 0) ? r : ((r == 0) ? l : min(l, r))
719
720/**
721 * blk_queue_stack_limits - inherit underlying queue limits for stacked drivers
722 * @t: the stacking driver (top)
723 * @b: the underlying device (bottom)
724 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200725void blk_queue_stack_limits(struct request_queue *t, struct request_queue *b)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
727 /* zero is "infinity" */
Mike Christiedefd94b2005-12-05 02:37:06 -0600728 t->max_sectors = min_not_zero(t->max_sectors,b->max_sectors);
729 t->max_hw_sectors = min_not_zero(t->max_hw_sectors,b->max_hw_sectors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
731 t->max_phys_segments = min(t->max_phys_segments,b->max_phys_segments);
732 t->max_hw_segments = min(t->max_hw_segments,b->max_hw_segments);
733 t->max_segment_size = min(t->max_segment_size,b->max_segment_size);
734 t->hardsect_size = max(t->hardsect_size,b->hardsect_size);
NeilBrown89e5c8b2006-03-27 01:18:02 -0800735 if (!test_bit(QUEUE_FLAG_CLUSTER, &b->queue_flags))
736 clear_bit(QUEUE_FLAG_CLUSTER, &t->queue_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737}
738
739EXPORT_SYMBOL(blk_queue_stack_limits);
740
741/**
742 * blk_queue_segment_boundary - set boundary rules for segment merging
743 * @q: the request queue for the device
744 * @mask: the memory boundary mask
745 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200746void blk_queue_segment_boundary(struct request_queue *q, unsigned long mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747{
748 if (mask < PAGE_CACHE_SIZE - 1) {
749 mask = PAGE_CACHE_SIZE - 1;
750 printk("%s: set to minimum %lx\n", __FUNCTION__, mask);
751 }
752
753 q->seg_boundary_mask = mask;
754}
755
756EXPORT_SYMBOL(blk_queue_segment_boundary);
757
758/**
759 * blk_queue_dma_alignment - set dma length and memory alignment
760 * @q: the request queue for the device
761 * @mask: alignment mask
762 *
763 * description:
764 * set required memory and length aligment for direct dma transactions.
765 * this is used when buiding direct io requests for the queue.
766 *
767 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200768void blk_queue_dma_alignment(struct request_queue *q, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
770 q->dma_alignment = mask;
771}
772
773EXPORT_SYMBOL(blk_queue_dma_alignment);
774
775/**
776 * blk_queue_find_tag - find a request by its tag and queue
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 * @q: The request queue for the device
778 * @tag: The tag of the request
779 *
780 * Notes:
781 * Should be used when a device returns a tag and you want to match
782 * it with a request.
783 *
784 * no locks need be held.
785 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200786struct request *blk_queue_find_tag(struct request_queue *q, int tag)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787{
David C Somayajuluf583f492006-10-04 08:27:25 +0200788 return blk_map_queue_find_tag(q->queue_tags, tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789}
790
791EXPORT_SYMBOL(blk_queue_find_tag);
792
793/**
James Bottomley492dfb42006-08-30 15:48:45 -0400794 * __blk_free_tags - release a given set of tag maintenance info
795 * @bqt: the tag map to free
796 *
797 * Tries to free the specified @bqt@. Returns true if it was
798 * actually freed and false if there are still references using it
799 */
800static int __blk_free_tags(struct blk_queue_tag *bqt)
801{
802 int retval;
803
804 retval = atomic_dec_and_test(&bqt->refcnt);
805 if (retval) {
806 BUG_ON(bqt->busy);
807 BUG_ON(!list_empty(&bqt->busy_list));
808
809 kfree(bqt->tag_index);
810 bqt->tag_index = NULL;
811
812 kfree(bqt->tag_map);
813 bqt->tag_map = NULL;
814
815 kfree(bqt);
816
817 }
818
819 return retval;
820}
821
822/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 * __blk_queue_free_tags - release tag maintenance info
824 * @q: the request queue for the device
825 *
826 * Notes:
827 * blk_cleanup_queue() will take care of calling this function, if tagging
828 * has been used. So there's no need to call this directly.
829 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200830static void __blk_queue_free_tags(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
832 struct blk_queue_tag *bqt = q->queue_tags;
833
834 if (!bqt)
835 return;
836
James Bottomley492dfb42006-08-30 15:48:45 -0400837 __blk_free_tags(bqt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
839 q->queue_tags = NULL;
840 q->queue_flags &= ~(1 << QUEUE_FLAG_QUEUED);
841}
842
James Bottomley492dfb42006-08-30 15:48:45 -0400843
844/**
845 * blk_free_tags - release a given set of tag maintenance info
846 * @bqt: the tag map to free
847 *
848 * For externally managed @bqt@ frees the map. Callers of this
849 * function must guarantee to have released all the queues that
850 * might have been using this tag map.
851 */
852void blk_free_tags(struct blk_queue_tag *bqt)
853{
854 if (unlikely(!__blk_free_tags(bqt)))
855 BUG();
856}
857EXPORT_SYMBOL(blk_free_tags);
858
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859/**
860 * blk_queue_free_tags - release tag maintenance info
861 * @q: the request queue for the device
862 *
863 * Notes:
864 * This is used to disabled tagged queuing to a device, yet leave
865 * queue in function.
866 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200867void blk_queue_free_tags(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868{
869 clear_bit(QUEUE_FLAG_QUEUED, &q->queue_flags);
870}
871
872EXPORT_SYMBOL(blk_queue_free_tags);
873
874static int
Jens Axboe165125e2007-07-24 09:28:11 +0200875init_tag_map(struct request_queue *q, struct blk_queue_tag *tags, int depth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 struct request **tag_index;
878 unsigned long *tag_map;
Tejun Heofa72b902005-06-23 00:08:49 -0700879 int nr_ulongs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
James Bottomley492dfb42006-08-30 15:48:45 -0400881 if (q && depth > q->nr_requests * 2) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 depth = q->nr_requests * 2;
883 printk(KERN_ERR "%s: adjusted depth to %d\n",
884 __FUNCTION__, depth);
885 }
886
Jens Axboef68110f2006-03-08 13:31:44 +0100887 tag_index = kzalloc(depth * sizeof(struct request *), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 if (!tag_index)
889 goto fail;
890
Tejun Heof7d37d02005-06-23 00:08:50 -0700891 nr_ulongs = ALIGN(depth, BITS_PER_LONG) / BITS_PER_LONG;
Jens Axboef68110f2006-03-08 13:31:44 +0100892 tag_map = kzalloc(nr_ulongs * sizeof(unsigned long), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 if (!tag_map)
894 goto fail;
895
Tejun Heoba025082005-08-05 13:28:11 -0700896 tags->real_max_depth = depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 tags->max_depth = depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 tags->tag_index = tag_index;
899 tags->tag_map = tag_map;
900
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 return 0;
902fail:
903 kfree(tag_index);
904 return -ENOMEM;
905}
906
James Bottomley492dfb42006-08-30 15:48:45 -0400907static struct blk_queue_tag *__blk_queue_init_tags(struct request_queue *q,
908 int depth)
909{
910 struct blk_queue_tag *tags;
911
912 tags = kmalloc(sizeof(struct blk_queue_tag), GFP_ATOMIC);
913 if (!tags)
914 goto fail;
915
916 if (init_tag_map(q, tags, depth))
917 goto fail;
918
919 INIT_LIST_HEAD(&tags->busy_list);
920 tags->busy = 0;
921 atomic_set(&tags->refcnt, 1);
922 return tags;
923fail:
924 kfree(tags);
925 return NULL;
926}
927
928/**
929 * blk_init_tags - initialize the tag info for an external tag map
930 * @depth: the maximum queue depth supported
931 * @tags: the tag to use
932 **/
933struct blk_queue_tag *blk_init_tags(int depth)
934{
935 return __blk_queue_init_tags(NULL, depth);
936}
937EXPORT_SYMBOL(blk_init_tags);
938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939/**
940 * blk_queue_init_tags - initialize the queue tag info
941 * @q: the request queue for the device
942 * @depth: the maximum queue depth supported
943 * @tags: the tag to use
944 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200945int blk_queue_init_tags(struct request_queue *q, int depth,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 struct blk_queue_tag *tags)
947{
948 int rc;
949
950 BUG_ON(tags && q->queue_tags && tags != q->queue_tags);
951
952 if (!tags && !q->queue_tags) {
James Bottomley492dfb42006-08-30 15:48:45 -0400953 tags = __blk_queue_init_tags(q, depth);
954
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 if (!tags)
956 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 } else if (q->queue_tags) {
958 if ((rc = blk_queue_resize_tags(q, depth)))
959 return rc;
960 set_bit(QUEUE_FLAG_QUEUED, &q->queue_flags);
961 return 0;
962 } else
963 atomic_inc(&tags->refcnt);
964
965 /*
966 * assign it, all done
967 */
968 q->queue_tags = tags;
969 q->queue_flags |= (1 << QUEUE_FLAG_QUEUED);
970 return 0;
971fail:
972 kfree(tags);
973 return -ENOMEM;
974}
975
976EXPORT_SYMBOL(blk_queue_init_tags);
977
978/**
979 * blk_queue_resize_tags - change the queueing depth
980 * @q: the request queue for the device
981 * @new_depth: the new max command queueing depth
982 *
983 * Notes:
984 * Must be called with the queue lock held.
985 **/
Jens Axboe165125e2007-07-24 09:28:11 +0200986int blk_queue_resize_tags(struct request_queue *q, int new_depth)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987{
988 struct blk_queue_tag *bqt = q->queue_tags;
989 struct request **tag_index;
990 unsigned long *tag_map;
Tejun Heofa72b902005-06-23 00:08:49 -0700991 int max_depth, nr_ulongs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
993 if (!bqt)
994 return -ENXIO;
995
996 /*
Tejun Heoba025082005-08-05 13:28:11 -0700997 * if we already have large enough real_max_depth. just
998 * adjust max_depth. *NOTE* as requests with tag value
999 * between new_depth and real_max_depth can be in-flight, tag
1000 * map can not be shrunk blindly here.
1001 */
1002 if (new_depth <= bqt->real_max_depth) {
1003 bqt->max_depth = new_depth;
1004 return 0;
1005 }
1006
1007 /*
James Bottomley492dfb42006-08-30 15:48:45 -04001008 * Currently cannot replace a shared tag map with a new
1009 * one, so error out if this is the case
1010 */
1011 if (atomic_read(&bqt->refcnt) != 1)
1012 return -EBUSY;
1013
1014 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 * save the old state info, so we can copy it back
1016 */
1017 tag_index = bqt->tag_index;
1018 tag_map = bqt->tag_map;
Tejun Heoba025082005-08-05 13:28:11 -07001019 max_depth = bqt->real_max_depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
1021 if (init_tag_map(q, bqt, new_depth))
1022 return -ENOMEM;
1023
1024 memcpy(bqt->tag_index, tag_index, max_depth * sizeof(struct request *));
Tejun Heof7d37d02005-06-23 00:08:50 -07001025 nr_ulongs = ALIGN(max_depth, BITS_PER_LONG) / BITS_PER_LONG;
Tejun Heofa72b902005-06-23 00:08:49 -07001026 memcpy(bqt->tag_map, tag_map, nr_ulongs * sizeof(unsigned long));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
1028 kfree(tag_index);
1029 kfree(tag_map);
1030 return 0;
1031}
1032
1033EXPORT_SYMBOL(blk_queue_resize_tags);
1034
1035/**
1036 * blk_queue_end_tag - end tag operations for a request
1037 * @q: the request queue for the device
1038 * @rq: the request that has completed
1039 *
1040 * Description:
1041 * Typically called when end_that_request_first() returns 0, meaning
1042 * all transfers have been done for a request. It's important to call
1043 * this function before end_that_request_last(), as that will put the
1044 * request back on the free list thus corrupting the internal tag list.
1045 *
1046 * Notes:
1047 * queue lock must be held.
1048 **/
Jens Axboe165125e2007-07-24 09:28:11 +02001049void blk_queue_end_tag(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050{
1051 struct blk_queue_tag *bqt = q->queue_tags;
1052 int tag = rq->tag;
1053
1054 BUG_ON(tag == -1);
1055
Tejun Heoba025082005-08-05 13:28:11 -07001056 if (unlikely(tag >= bqt->real_max_depth))
Tejun Heo040c9282005-06-23 00:08:51 -07001057 /*
1058 * This can happen after tag depth has been reduced.
1059 * FIXME: how about a warning or info message here?
1060 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 return;
1062
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 list_del_init(&rq->queuelist);
Jens Axboe4aff5e22006-08-10 08:44:47 +02001064 rq->cmd_flags &= ~REQ_QUEUED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 rq->tag = -1;
1066
1067 if (unlikely(bqt->tag_index[tag] == NULL))
Tejun Heo040c9282005-06-23 00:08:51 -07001068 printk(KERN_ERR "%s: tag %d is missing\n",
1069 __FUNCTION__, tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
1071 bqt->tag_index[tag] = NULL;
Jens Axboef3da54b2007-09-13 14:26:53 +02001072
Nick Piggindd941252007-09-14 08:41:12 +02001073 /*
1074 * We use test_and_clear_bit's memory ordering properties here.
1075 * The tag_map bit acts as a lock for tag_index[bit], so we need
1076 * a barrer before clearing the bit (precisely: release semantics).
1077 * Could use clear_bit_unlock when it is merged.
1078 */
Jens Axboef3da54b2007-09-13 14:26:53 +02001079 if (unlikely(!test_and_clear_bit(tag, bqt->tag_map))) {
1080 printk(KERN_ERR "%s: attempt to clear non-busy tag (%d)\n",
1081 __FUNCTION__, tag);
1082 return;
1083 }
1084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 bqt->busy--;
1086}
1087
1088EXPORT_SYMBOL(blk_queue_end_tag);
1089
1090/**
1091 * blk_queue_start_tag - find a free tag and assign it
1092 * @q: the request queue for the device
1093 * @rq: the block request that needs tagging
1094 *
1095 * Description:
1096 * This can either be used as a stand-alone helper, or possibly be
1097 * assigned as the queue &prep_rq_fn (in which case &struct request
1098 * automagically gets a tag assigned). Note that this function
1099 * assumes that any type of request can be queued! if this is not
1100 * true for your device, you must check the request type before
1101 * calling this function. The request will also be removed from
1102 * the request queue, so it's the drivers responsibility to readd
1103 * it if it should need to be restarted for some reason.
1104 *
1105 * Notes:
1106 * queue lock must be held.
1107 **/
Jens Axboe165125e2007-07-24 09:28:11 +02001108int blk_queue_start_tag(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109{
1110 struct blk_queue_tag *bqt = q->queue_tags;
Tejun Heo2bf0fda2005-06-23 00:08:48 -07001111 int tag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
Jens Axboe4aff5e22006-08-10 08:44:47 +02001113 if (unlikely((rq->cmd_flags & REQ_QUEUED))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 printk(KERN_ERR
Tejun Heo040c9282005-06-23 00:08:51 -07001115 "%s: request %p for device [%s] already tagged %d",
1116 __FUNCTION__, rq,
1117 rq->rq_disk ? rq->rq_disk->disk_name : "?", rq->tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 BUG();
1119 }
1120
Jens Axboe059af492006-09-21 20:37:22 +02001121 /*
1122 * Protect against shared tag maps, as we may not have exclusive
1123 * access to the tag map.
1124 */
1125 do {
1126 tag = find_first_zero_bit(bqt->tag_map, bqt->max_depth);
1127 if (tag >= bqt->max_depth)
1128 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
Jens Axboe059af492006-09-21 20:37:22 +02001130 } while (test_and_set_bit(tag, bqt->tag_map));
Nick Piggindd941252007-09-14 08:41:12 +02001131 /*
1132 * We rely on test_and_set_bit providing lock memory ordering semantics
1133 * (could use test_and_set_bit_lock when it is merged).
1134 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Jens Axboe4aff5e22006-08-10 08:44:47 +02001136 rq->cmd_flags |= REQ_QUEUED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 rq->tag = tag;
1138 bqt->tag_index[tag] = rq;
1139 blkdev_dequeue_request(rq);
1140 list_add(&rq->queuelist, &bqt->busy_list);
1141 bqt->busy++;
1142 return 0;
1143}
1144
1145EXPORT_SYMBOL(blk_queue_start_tag);
1146
1147/**
1148 * blk_queue_invalidate_tags - invalidate all pending tags
1149 * @q: the request queue for the device
1150 *
1151 * Description:
1152 * Hardware conditions may dictate a need to stop all pending requests.
1153 * In this case, we will safely clear the block side of the tag queue and
1154 * readd all requests to the request queue in the right order.
1155 *
1156 * Notes:
1157 * queue lock must be held.
1158 **/
Jens Axboe165125e2007-07-24 09:28:11 +02001159void blk_queue_invalidate_tags(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160{
1161 struct blk_queue_tag *bqt = q->queue_tags;
1162 struct list_head *tmp, *n;
1163 struct request *rq;
1164
1165 list_for_each_safe(tmp, n, &bqt->busy_list) {
1166 rq = list_entry_rq(tmp);
1167
1168 if (rq->tag == -1) {
Tejun Heo040c9282005-06-23 00:08:51 -07001169 printk(KERN_ERR
1170 "%s: bad tag found on list\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 list_del_init(&rq->queuelist);
Jens Axboe4aff5e22006-08-10 08:44:47 +02001172 rq->cmd_flags &= ~REQ_QUEUED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 } else
1174 blk_queue_end_tag(q, rq);
1175
Jens Axboe4aff5e22006-08-10 08:44:47 +02001176 rq->cmd_flags &= ~REQ_STARTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 __elv_add_request(q, rq, ELEVATOR_INSERT_BACK, 0);
1178 }
1179}
1180
1181EXPORT_SYMBOL(blk_queue_invalidate_tags);
1182
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183void blk_dump_rq_flags(struct request *rq, char *msg)
1184{
1185 int bit;
1186
Jens Axboe4aff5e22006-08-10 08:44:47 +02001187 printk("%s: dev %s: type=%x, flags=%x\n", msg,
1188 rq->rq_disk ? rq->rq_disk->disk_name : "?", rq->cmd_type,
1189 rq->cmd_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
1191 printk("\nsector %llu, nr/cnr %lu/%u\n", (unsigned long long)rq->sector,
1192 rq->nr_sectors,
1193 rq->current_nr_sectors);
1194 printk("bio %p, biotail %p, buffer %p, data %p, len %u\n", rq->bio, rq->biotail, rq->buffer, rq->data, rq->data_len);
1195
Jens Axboe4aff5e22006-08-10 08:44:47 +02001196 if (blk_pc_request(rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 printk("cdb: ");
1198 for (bit = 0; bit < sizeof(rq->cmd); bit++)
1199 printk("%02x ", rq->cmd[bit]);
1200 printk("\n");
1201 }
1202}
1203
1204EXPORT_SYMBOL(blk_dump_rq_flags);
1205
Jens Axboe165125e2007-07-24 09:28:11 +02001206void blk_recount_segments(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207{
NeilBrown9dfa5282007-08-16 13:27:52 +02001208 struct request rq;
1209 struct bio *nxt = bio->bi_next;
1210 rq.q = q;
1211 rq.bio = rq.biotail = bio;
1212 bio->bi_next = NULL;
1213 blk_recalc_rq_segments(&rq);
1214 bio->bi_next = nxt;
1215 bio->bi_phys_segments = rq.nr_phys_segments;
1216 bio->bi_hw_segments = rq.nr_hw_segments;
1217 bio->bi_flags |= (1 << BIO_SEG_VALID);
1218}
1219EXPORT_SYMBOL(blk_recount_segments);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
NeilBrown9dfa5282007-08-16 13:27:52 +02001221static void blk_recalc_rq_segments(struct request *rq)
1222{
1223 int nr_phys_segs;
1224 int nr_hw_segs;
1225 unsigned int phys_size;
1226 unsigned int hw_size;
1227 struct bio_vec *bv, *bvprv = NULL;
1228 int seg_size;
1229 int hw_seg_size;
1230 int cluster;
NeilBrown5705f702007-09-25 12:35:59 +02001231 struct req_iterator iter;
NeilBrown9dfa5282007-08-16 13:27:52 +02001232 int high, highprv = 1;
1233 struct request_queue *q = rq->q;
1234
1235 if (!rq->bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 return;
1237
1238 cluster = q->queue_flags & (1 << QUEUE_FLAG_CLUSTER);
NeilBrown9dfa5282007-08-16 13:27:52 +02001239 hw_seg_size = seg_size = 0;
1240 phys_size = hw_size = nr_phys_segs = nr_hw_segs = 0;
NeilBrown5705f702007-09-25 12:35:59 +02001241 rq_for_each_segment(bv, rq, iter) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 /*
1243 * the trick here is making sure that a high page is never
1244 * considered part of another segment, since that might
1245 * change with the bounce page.
1246 */
Vasily Tarasovf772b3d2007-03-27 08:52:47 +02001247 high = page_to_pfn(bv->bv_page) > q->bounce_pfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 if (high || highprv)
1249 goto new_hw_segment;
1250 if (cluster) {
1251 if (seg_size + bv->bv_len > q->max_segment_size)
1252 goto new_segment;
1253 if (!BIOVEC_PHYS_MERGEABLE(bvprv, bv))
1254 goto new_segment;
1255 if (!BIOVEC_SEG_BOUNDARY(q, bvprv, bv))
1256 goto new_segment;
1257 if (BIOVEC_VIRT_OVERSIZE(hw_seg_size + bv->bv_len))
1258 goto new_hw_segment;
1259
1260 seg_size += bv->bv_len;
1261 hw_seg_size += bv->bv_len;
1262 bvprv = bv;
1263 continue;
1264 }
1265new_segment:
1266 if (BIOVEC_VIRT_MERGEABLE(bvprv, bv) &&
NeilBrown9dfa5282007-08-16 13:27:52 +02001267 !BIOVEC_VIRT_OVERSIZE(hw_seg_size + bv->bv_len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 hw_seg_size += bv->bv_len;
NeilBrown9dfa5282007-08-16 13:27:52 +02001269 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270new_hw_segment:
NeilBrown9dfa5282007-08-16 13:27:52 +02001271 if (nr_hw_segs == 1 &&
1272 hw_seg_size > rq->bio->bi_hw_front_size)
1273 rq->bio->bi_hw_front_size = hw_seg_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 hw_seg_size = BIOVEC_VIRT_START_SIZE(bv) + bv->bv_len;
1275 nr_hw_segs++;
1276 }
1277
1278 nr_phys_segs++;
1279 bvprv = bv;
1280 seg_size = bv->bv_len;
1281 highprv = high;
1282 }
NeilBrown9dfa5282007-08-16 13:27:52 +02001283
1284 if (nr_hw_segs == 1 &&
1285 hw_seg_size > rq->bio->bi_hw_front_size)
1286 rq->bio->bi_hw_front_size = hw_seg_size;
1287 if (hw_seg_size > rq->biotail->bi_hw_back_size)
1288 rq->biotail->bi_hw_back_size = hw_seg_size;
1289 rq->nr_phys_segments = nr_phys_segs;
1290 rq->nr_hw_segments = nr_hw_segs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
Jens Axboe165125e2007-07-24 09:28:11 +02001293static int blk_phys_contig_segment(struct request_queue *q, struct bio *bio,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 struct bio *nxt)
1295{
1296 if (!(q->queue_flags & (1 << QUEUE_FLAG_CLUSTER)))
1297 return 0;
1298
1299 if (!BIOVEC_PHYS_MERGEABLE(__BVEC_END(bio), __BVEC_START(nxt)))
1300 return 0;
1301 if (bio->bi_size + nxt->bi_size > q->max_segment_size)
1302 return 0;
1303
1304 /*
1305 * bio and nxt are contigous in memory, check if the queue allows
1306 * these two to be merged into one
1307 */
1308 if (BIO_SEG_BOUNDARY(q, bio, nxt))
1309 return 1;
1310
1311 return 0;
1312}
1313
Jens Axboe165125e2007-07-24 09:28:11 +02001314static int blk_hw_contig_segment(struct request_queue *q, struct bio *bio,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 struct bio *nxt)
1316{
1317 if (unlikely(!bio_flagged(bio, BIO_SEG_VALID)))
1318 blk_recount_segments(q, bio);
1319 if (unlikely(!bio_flagged(nxt, BIO_SEG_VALID)))
1320 blk_recount_segments(q, nxt);
1321 if (!BIOVEC_VIRT_MERGEABLE(__BVEC_END(bio), __BVEC_START(nxt)) ||
Jens Axboe32eef962007-06-19 09:09:27 +02001322 BIOVEC_VIRT_OVERSIZE(bio->bi_hw_back_size + nxt->bi_hw_front_size))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 return 0;
Jens Axboe32eef962007-06-19 09:09:27 +02001324 if (bio->bi_hw_back_size + nxt->bi_hw_front_size > q->max_segment_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 return 0;
1326
1327 return 1;
1328}
1329
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330/*
1331 * map a request to scatterlist, return number of sg entries setup. Caller
1332 * must make sure sg can hold rq->nr_phys_segments entries
1333 */
Jens Axboe165125e2007-07-24 09:28:11 +02001334int blk_rq_map_sg(struct request_queue *q, struct request *rq,
1335 struct scatterlist *sg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336{
1337 struct bio_vec *bvec, *bvprv;
NeilBrown5705f702007-09-25 12:35:59 +02001338 struct req_iterator iter;
1339 int nsegs, cluster;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
1341 nsegs = 0;
1342 cluster = q->queue_flags & (1 << QUEUE_FLAG_CLUSTER);
1343
1344 /*
1345 * for each bio in rq
1346 */
1347 bvprv = NULL;
NeilBrown5705f702007-09-25 12:35:59 +02001348 rq_for_each_segment(bvec, rq, iter) {
Jens Axboe6c92e692007-08-16 13:43:12 +02001349 int nbytes = bvec->bv_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
Jens Axboe6c92e692007-08-16 13:43:12 +02001351 if (bvprv && cluster) {
1352 if (sg[nsegs - 1].length + nbytes > q->max_segment_size)
1353 goto new_segment;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Jens Axboe6c92e692007-08-16 13:43:12 +02001355 if (!BIOVEC_PHYS_MERGEABLE(bvprv, bvec))
1356 goto new_segment;
1357 if (!BIOVEC_SEG_BOUNDARY(q, bvprv, bvec))
1358 goto new_segment;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
Jens Axboe6c92e692007-08-16 13:43:12 +02001360 sg[nsegs - 1].length += nbytes;
1361 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362new_segment:
Jens Axboe6c92e692007-08-16 13:43:12 +02001363 memset(&sg[nsegs],0,sizeof(struct scatterlist));
1364 sg[nsegs].page = bvec->bv_page;
1365 sg[nsegs].length = nbytes;
1366 sg[nsegs].offset = bvec->bv_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
Jens Axboe6c92e692007-08-16 13:43:12 +02001368 nsegs++;
1369 }
1370 bvprv = bvec;
NeilBrown5705f702007-09-25 12:35:59 +02001371 } /* segments in rq */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
1373 return nsegs;
1374}
1375
1376EXPORT_SYMBOL(blk_rq_map_sg);
1377
1378/*
1379 * the standard queue merge functions, can be overridden with device
1380 * specific ones if so desired
1381 */
1382
Jens Axboe165125e2007-07-24 09:28:11 +02001383static inline int ll_new_mergeable(struct request_queue *q,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 struct request *req,
1385 struct bio *bio)
1386{
1387 int nr_phys_segs = bio_phys_segments(q, bio);
1388
1389 if (req->nr_phys_segments + nr_phys_segs > q->max_phys_segments) {
Jens Axboe4aff5e22006-08-10 08:44:47 +02001390 req->cmd_flags |= REQ_NOMERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 if (req == q->last_merge)
1392 q->last_merge = NULL;
1393 return 0;
1394 }
1395
1396 /*
1397 * A hw segment is just getting larger, bump just the phys
1398 * counter.
1399 */
1400 req->nr_phys_segments += nr_phys_segs;
1401 return 1;
1402}
1403
Jens Axboe165125e2007-07-24 09:28:11 +02001404static inline int ll_new_hw_segment(struct request_queue *q,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 struct request *req,
1406 struct bio *bio)
1407{
1408 int nr_hw_segs = bio_hw_segments(q, bio);
1409 int nr_phys_segs = bio_phys_segments(q, bio);
1410
1411 if (req->nr_hw_segments + nr_hw_segs > q->max_hw_segments
1412 || req->nr_phys_segments + nr_phys_segs > q->max_phys_segments) {
Jens Axboe4aff5e22006-08-10 08:44:47 +02001413 req->cmd_flags |= REQ_NOMERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 if (req == q->last_merge)
1415 q->last_merge = NULL;
1416 return 0;
1417 }
1418
1419 /*
1420 * This will form the start of a new hw segment. Bump both
1421 * counters.
1422 */
1423 req->nr_hw_segments += nr_hw_segs;
1424 req->nr_phys_segments += nr_phys_segs;
1425 return 1;
1426}
1427
NeilBrown3001ca72007-08-16 13:31:27 +02001428static int ll_back_merge_fn(struct request_queue *q, struct request *req,
1429 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430{
Mike Christiedefd94b2005-12-05 02:37:06 -06001431 unsigned short max_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 int len;
1433
Mike Christiedefd94b2005-12-05 02:37:06 -06001434 if (unlikely(blk_pc_request(req)))
1435 max_sectors = q->max_hw_sectors;
1436 else
1437 max_sectors = q->max_sectors;
1438
1439 if (req->nr_sectors + bio_sectors(bio) > max_sectors) {
Jens Axboe4aff5e22006-08-10 08:44:47 +02001440 req->cmd_flags |= REQ_NOMERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 if (req == q->last_merge)
1442 q->last_merge = NULL;
1443 return 0;
1444 }
1445 if (unlikely(!bio_flagged(req->biotail, BIO_SEG_VALID)))
1446 blk_recount_segments(q, req->biotail);
1447 if (unlikely(!bio_flagged(bio, BIO_SEG_VALID)))
1448 blk_recount_segments(q, bio);
1449 len = req->biotail->bi_hw_back_size + bio->bi_hw_front_size;
1450 if (BIOVEC_VIRT_MERGEABLE(__BVEC_END(req->biotail), __BVEC_START(bio)) &&
1451 !BIOVEC_VIRT_OVERSIZE(len)) {
1452 int mergeable = ll_new_mergeable(q, req, bio);
1453
1454 if (mergeable) {
1455 if (req->nr_hw_segments == 1)
1456 req->bio->bi_hw_front_size = len;
1457 if (bio->bi_hw_segments == 1)
1458 bio->bi_hw_back_size = len;
1459 }
1460 return mergeable;
1461 }
1462
1463 return ll_new_hw_segment(q, req, bio);
1464}
1465
Jens Axboe165125e2007-07-24 09:28:11 +02001466static int ll_front_merge_fn(struct request_queue *q, struct request *req,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 struct bio *bio)
1468{
Mike Christiedefd94b2005-12-05 02:37:06 -06001469 unsigned short max_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 int len;
1471
Mike Christiedefd94b2005-12-05 02:37:06 -06001472 if (unlikely(blk_pc_request(req)))
1473 max_sectors = q->max_hw_sectors;
1474 else
1475 max_sectors = q->max_sectors;
1476
1477
1478 if (req->nr_sectors + bio_sectors(bio) > max_sectors) {
Jens Axboe4aff5e22006-08-10 08:44:47 +02001479 req->cmd_flags |= REQ_NOMERGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 if (req == q->last_merge)
1481 q->last_merge = NULL;
1482 return 0;
1483 }
1484 len = bio->bi_hw_back_size + req->bio->bi_hw_front_size;
1485 if (unlikely(!bio_flagged(bio, BIO_SEG_VALID)))
1486 blk_recount_segments(q, bio);
1487 if (unlikely(!bio_flagged(req->bio, BIO_SEG_VALID)))
1488 blk_recount_segments(q, req->bio);
1489 if (BIOVEC_VIRT_MERGEABLE(__BVEC_END(bio), __BVEC_START(req->bio)) &&
1490 !BIOVEC_VIRT_OVERSIZE(len)) {
1491 int mergeable = ll_new_mergeable(q, req, bio);
1492
1493 if (mergeable) {
1494 if (bio->bi_hw_segments == 1)
1495 bio->bi_hw_front_size = len;
1496 if (req->nr_hw_segments == 1)
1497 req->biotail->bi_hw_back_size = len;
1498 }
1499 return mergeable;
1500 }
1501
1502 return ll_new_hw_segment(q, req, bio);
1503}
1504
Jens Axboe165125e2007-07-24 09:28:11 +02001505static int ll_merge_requests_fn(struct request_queue *q, struct request *req,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 struct request *next)
1507{
Nikita Danilovdfa1a552005-06-25 14:59:20 -07001508 int total_phys_segments;
1509 int total_hw_segments;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
1511 /*
1512 * First check if the either of the requests are re-queued
1513 * requests. Can't merge them if they are.
1514 */
1515 if (req->special || next->special)
1516 return 0;
1517
1518 /*
Nikita Danilovdfa1a552005-06-25 14:59:20 -07001519 * Will it become too large?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 */
1521 if ((req->nr_sectors + next->nr_sectors) > q->max_sectors)
1522 return 0;
1523
1524 total_phys_segments = req->nr_phys_segments + next->nr_phys_segments;
1525 if (blk_phys_contig_segment(q, req->biotail, next->bio))
1526 total_phys_segments--;
1527
1528 if (total_phys_segments > q->max_phys_segments)
1529 return 0;
1530
1531 total_hw_segments = req->nr_hw_segments + next->nr_hw_segments;
1532 if (blk_hw_contig_segment(q, req->biotail, next->bio)) {
1533 int len = req->biotail->bi_hw_back_size + next->bio->bi_hw_front_size;
1534 /*
1535 * propagate the combined length to the end of the requests
1536 */
1537 if (req->nr_hw_segments == 1)
1538 req->bio->bi_hw_front_size = len;
1539 if (next->nr_hw_segments == 1)
1540 next->biotail->bi_hw_back_size = len;
1541 total_hw_segments--;
1542 }
1543
1544 if (total_hw_segments > q->max_hw_segments)
1545 return 0;
1546
1547 /* Merge is OK... */
1548 req->nr_phys_segments = total_phys_segments;
1549 req->nr_hw_segments = total_hw_segments;
1550 return 1;
1551}
1552
1553/*
1554 * "plug" the device if there are no outstanding requests: this will
1555 * force the transfer to start only after we have put all the requests
1556 * on the list.
1557 *
1558 * This is called with interrupts off and no requests on the queue and
1559 * with the queue lock held.
1560 */
Jens Axboe165125e2007-07-24 09:28:11 +02001561void blk_plug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562{
1563 WARN_ON(!irqs_disabled());
1564
1565 /*
1566 * don't plug a stopped queue, it must be paired with blk_start_queue()
1567 * which will restart the queueing
1568 */
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +02001569 if (blk_queue_stopped(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 return;
1571
Jens Axboe2056a782006-03-23 20:00:26 +01001572 if (!test_and_set_bit(QUEUE_FLAG_PLUGGED, &q->queue_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 mod_timer(&q->unplug_timer, jiffies + q->unplug_delay);
Jens Axboe2056a782006-03-23 20:00:26 +01001574 blk_add_trace_generic(q, NULL, 0, BLK_TA_PLUG);
1575 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576}
1577
1578EXPORT_SYMBOL(blk_plug_device);
1579
1580/*
1581 * remove the queue from the plugged list, if present. called with
1582 * queue lock held and interrupts disabled.
1583 */
Jens Axboe165125e2007-07-24 09:28:11 +02001584int blk_remove_plug(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585{
1586 WARN_ON(!irqs_disabled());
1587
1588 if (!test_and_clear_bit(QUEUE_FLAG_PLUGGED, &q->queue_flags))
1589 return 0;
1590
1591 del_timer(&q->unplug_timer);
1592 return 1;
1593}
1594
1595EXPORT_SYMBOL(blk_remove_plug);
1596
1597/*
1598 * remove the plug and let it rip..
1599 */
Jens Axboe165125e2007-07-24 09:28:11 +02001600void __generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601{
Coywolf Qi Hunt7daac492006-04-19 10:14:49 +02001602 if (unlikely(blk_queue_stopped(q)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 return;
1604
1605 if (!blk_remove_plug(q))
1606 return;
1607
Jens Axboe22e2c502005-06-27 10:55:12 +02001608 q->request_fn(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609}
1610EXPORT_SYMBOL(__generic_unplug_device);
1611
1612/**
1613 * generic_unplug_device - fire a request queue
Jens Axboe165125e2007-07-24 09:28:11 +02001614 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 *
1616 * Description:
1617 * Linux uses plugging to build bigger requests queues before letting
1618 * the device have at them. If a queue is plugged, the I/O scheduler
1619 * is still adding and merging requests on the queue. Once the queue
1620 * gets unplugged, the request_fn defined for the queue is invoked and
1621 * transfers started.
1622 **/
Jens Axboe165125e2007-07-24 09:28:11 +02001623void generic_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624{
1625 spin_lock_irq(q->queue_lock);
1626 __generic_unplug_device(q);
1627 spin_unlock_irq(q->queue_lock);
1628}
1629EXPORT_SYMBOL(generic_unplug_device);
1630
1631static void blk_backing_dev_unplug(struct backing_dev_info *bdi,
1632 struct page *page)
1633{
Jens Axboe165125e2007-07-24 09:28:11 +02001634 struct request_queue *q = bdi->unplug_io_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635
1636 /*
1637 * devices don't necessarily have an ->unplug_fn defined
1638 */
Jens Axboe2056a782006-03-23 20:00:26 +01001639 if (q->unplug_fn) {
1640 blk_add_trace_pdu_int(q, BLK_TA_UNPLUG_IO, NULL,
1641 q->rq.count[READ] + q->rq.count[WRITE]);
1642
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 q->unplug_fn(q);
Jens Axboe2056a782006-03-23 20:00:26 +01001644 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645}
1646
David Howells65f27f32006-11-22 14:55:48 +00001647static void blk_unplug_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648{
Jens Axboe165125e2007-07-24 09:28:11 +02001649 struct request_queue *q =
1650 container_of(work, struct request_queue, unplug_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
Jens Axboe2056a782006-03-23 20:00:26 +01001652 blk_add_trace_pdu_int(q, BLK_TA_UNPLUG_IO, NULL,
1653 q->rq.count[READ] + q->rq.count[WRITE]);
1654
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 q->unplug_fn(q);
1656}
1657
1658static void blk_unplug_timeout(unsigned long data)
1659{
Jens Axboe165125e2007-07-24 09:28:11 +02001660 struct request_queue *q = (struct request_queue *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
Jens Axboe2056a782006-03-23 20:00:26 +01001662 blk_add_trace_pdu_int(q, BLK_TA_UNPLUG_TIMER, NULL,
1663 q->rq.count[READ] + q->rq.count[WRITE]);
1664
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 kblockd_schedule_work(&q->unplug_work);
1666}
1667
1668/**
1669 * blk_start_queue - restart a previously stopped queue
Jens Axboe165125e2007-07-24 09:28:11 +02001670 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 *
1672 * Description:
1673 * blk_start_queue() will clear the stop flag on the queue, and call
1674 * the request_fn for the queue if it was in a stopped state when
1675 * entered. Also see blk_stop_queue(). Queue lock must be held.
1676 **/
Jens Axboe165125e2007-07-24 09:28:11 +02001677void blk_start_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678{
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +02001679 WARN_ON(!irqs_disabled());
1680
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 clear_bit(QUEUE_FLAG_STOPPED, &q->queue_flags);
1682
1683 /*
1684 * one level of recursion is ok and is much faster than kicking
1685 * the unplug handling
1686 */
1687 if (!test_and_set_bit(QUEUE_FLAG_REENTER, &q->queue_flags)) {
1688 q->request_fn(q);
1689 clear_bit(QUEUE_FLAG_REENTER, &q->queue_flags);
1690 } else {
1691 blk_plug_device(q);
1692 kblockd_schedule_work(&q->unplug_work);
1693 }
1694}
1695
1696EXPORT_SYMBOL(blk_start_queue);
1697
1698/**
1699 * blk_stop_queue - stop a queue
Jens Axboe165125e2007-07-24 09:28:11 +02001700 * @q: The &struct request_queue in question
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 *
1702 * Description:
1703 * The Linux block layer assumes that a block driver will consume all
1704 * entries on the request queue when the request_fn strategy is called.
1705 * Often this will not happen, because of hardware limitations (queue
1706 * depth settings). If a device driver gets a 'queue full' response,
1707 * or if it simply chooses not to queue more I/O at one point, it can
1708 * call this function to prevent the request_fn from being called until
1709 * the driver has signalled it's ready to go again. This happens by calling
1710 * blk_start_queue() to restart queue operations. Queue lock must be held.
1711 **/
Jens Axboe165125e2007-07-24 09:28:11 +02001712void blk_stop_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713{
1714 blk_remove_plug(q);
1715 set_bit(QUEUE_FLAG_STOPPED, &q->queue_flags);
1716}
1717EXPORT_SYMBOL(blk_stop_queue);
1718
1719/**
1720 * blk_sync_queue - cancel any pending callbacks on a queue
1721 * @q: the queue
1722 *
1723 * Description:
1724 * The block layer may perform asynchronous callback activity
1725 * on a queue, such as calling the unplug function after a timeout.
1726 * A block device may call blk_sync_queue to ensure that any
1727 * such activity is cancelled, thus allowing it to release resources
Michael Opdenacker59c51592007-05-09 08:57:56 +02001728 * that the callbacks might use. The caller must already have made sure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 * that its ->make_request_fn will not re-add plugging prior to calling
1730 * this function.
1731 *
1732 */
1733void blk_sync_queue(struct request_queue *q)
1734{
1735 del_timer_sync(&q->unplug_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736}
1737EXPORT_SYMBOL(blk_sync_queue);
1738
1739/**
1740 * blk_run_queue - run a single device queue
1741 * @q: The queue to run
1742 */
1743void blk_run_queue(struct request_queue *q)
1744{
1745 unsigned long flags;
1746
1747 spin_lock_irqsave(q->queue_lock, flags);
1748 blk_remove_plug(q);
Jens Axboedac07ec2006-05-11 08:20:16 +02001749
1750 /*
1751 * Only recurse once to avoid overrunning the stack, let the unplug
1752 * handling reinvoke the handler shortly if we already got there.
1753 */
1754 if (!elv_queue_empty(q)) {
1755 if (!test_and_set_bit(QUEUE_FLAG_REENTER, &q->queue_flags)) {
1756 q->request_fn(q);
1757 clear_bit(QUEUE_FLAG_REENTER, &q->queue_flags);
1758 } else {
1759 blk_plug_device(q);
1760 kblockd_schedule_work(&q->unplug_work);
1761 }
1762 }
1763
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 spin_unlock_irqrestore(q->queue_lock, flags);
1765}
1766EXPORT_SYMBOL(blk_run_queue);
1767
1768/**
Jens Axboe165125e2007-07-24 09:28:11 +02001769 * blk_cleanup_queue: - release a &struct request_queue when it is no longer needed
Martin Waitza5802902006-04-02 13:59:55 +02001770 * @kobj: the kobj belonging of the request queue to be released
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 *
1772 * Description:
1773 * blk_cleanup_queue is the pair to blk_init_queue() or
1774 * blk_queue_make_request(). It should be called when a request queue is
1775 * being released; typically when a block device is being de-registered.
1776 * Currently, its primary task it to free all the &struct request
1777 * structures that were allocated to the queue and the queue itself.
1778 *
1779 * Caveat:
1780 * Hopefully the low level driver will have finished any
1781 * outstanding requests first...
1782 **/
Al Viro483f4af2006-03-18 18:34:37 -05001783static void blk_release_queue(struct kobject *kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784{
Jens Axboe165125e2007-07-24 09:28:11 +02001785 struct request_queue *q =
1786 container_of(kobj, struct request_queue, kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 struct request_list *rl = &q->rq;
1788
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 blk_sync_queue(q);
1790
1791 if (rl->rq_pool)
1792 mempool_destroy(rl->rq_pool);
1793
1794 if (q->queue_tags)
1795 __blk_queue_free_tags(q);
1796
Alexey Dobriyan6c5c9342006-09-29 01:59:40 -07001797 blk_trace_shutdown(q);
Jens Axboe2056a782006-03-23 20:00:26 +01001798
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 kmem_cache_free(requestq_cachep, q);
1800}
1801
Jens Axboe165125e2007-07-24 09:28:11 +02001802void blk_put_queue(struct request_queue *q)
Al Viro483f4af2006-03-18 18:34:37 -05001803{
1804 kobject_put(&q->kobj);
1805}
1806EXPORT_SYMBOL(blk_put_queue);
1807
Jens Axboe165125e2007-07-24 09:28:11 +02001808void blk_cleanup_queue(struct request_queue * q)
Al Viro483f4af2006-03-18 18:34:37 -05001809{
1810 mutex_lock(&q->sysfs_lock);
1811 set_bit(QUEUE_FLAG_DEAD, &q->queue_flags);
1812 mutex_unlock(&q->sysfs_lock);
1813
1814 if (q->elevator)
1815 elevator_exit(q->elevator);
1816
1817 blk_put_queue(q);
1818}
1819
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820EXPORT_SYMBOL(blk_cleanup_queue);
1821
Jens Axboe165125e2007-07-24 09:28:11 +02001822static int blk_init_free_list(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823{
1824 struct request_list *rl = &q->rq;
1825
1826 rl->count[READ] = rl->count[WRITE] = 0;
1827 rl->starved[READ] = rl->starved[WRITE] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +02001828 rl->elvpriv = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 init_waitqueue_head(&rl->wait[READ]);
1830 init_waitqueue_head(&rl->wait[WRITE]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
Christoph Lameter19460892005-06-23 00:08:19 -07001832 rl->rq_pool = mempool_create_node(BLKDEV_MIN_RQ, mempool_alloc_slab,
1833 mempool_free_slab, request_cachep, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
1835 if (!rl->rq_pool)
1836 return -ENOMEM;
1837
1838 return 0;
1839}
1840
Jens Axboe165125e2007-07-24 09:28:11 +02001841struct request_queue *blk_alloc_queue(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842{
Christoph Lameter19460892005-06-23 00:08:19 -07001843 return blk_alloc_queue_node(gfp_mask, -1);
1844}
1845EXPORT_SYMBOL(blk_alloc_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846
Al Viro483f4af2006-03-18 18:34:37 -05001847static struct kobj_type queue_ktype;
1848
Jens Axboe165125e2007-07-24 09:28:11 +02001849struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id)
Christoph Lameter19460892005-06-23 00:08:19 -07001850{
Jens Axboe165125e2007-07-24 09:28:11 +02001851 struct request_queue *q;
Christoph Lameter19460892005-06-23 00:08:19 -07001852
Christoph Lameter94f60302007-07-17 04:03:29 -07001853 q = kmem_cache_alloc_node(requestq_cachep,
1854 gfp_mask | __GFP_ZERO, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 if (!q)
1856 return NULL;
1857
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 init_timer(&q->unplug_timer);
Al Viro483f4af2006-03-18 18:34:37 -05001859
Greg Kroah-Hartman19c38de2007-09-12 15:06:57 -07001860 kobject_set_name(&q->kobj, "%s", "queue");
Al Viro483f4af2006-03-18 18:34:37 -05001861 q->kobj.ktype = &queue_ktype;
1862 kobject_init(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
1864 q->backing_dev_info.unplug_io_fn = blk_backing_dev_unplug;
1865 q->backing_dev_info.unplug_io_data = q;
1866
Al Viro483f4af2006-03-18 18:34:37 -05001867 mutex_init(&q->sysfs_lock);
1868
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 return q;
1870}
Christoph Lameter19460892005-06-23 00:08:19 -07001871EXPORT_SYMBOL(blk_alloc_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872
1873/**
1874 * blk_init_queue - prepare a request queue for use with a block device
1875 * @rfn: The function to be called to process requests that have been
1876 * placed on the queue.
1877 * @lock: Request queue spin lock
1878 *
1879 * Description:
1880 * If a block device wishes to use the standard request handling procedures,
1881 * which sorts requests and coalesces adjacent requests, then it must
1882 * call blk_init_queue(). The function @rfn will be called when there
1883 * are requests on the queue that need to be processed. If the device
1884 * supports plugging, then @rfn may not be called immediately when requests
1885 * are available on the queue, but may be called at some time later instead.
1886 * Plugged queues are generally unplugged when a buffer belonging to one
1887 * of the requests on the queue is needed, or due to memory pressure.
1888 *
1889 * @rfn is not required, or even expected, to remove all requests off the
1890 * queue, but only as many as it can handle at a time. If it does leave
1891 * requests on the queue, it is responsible for arranging that the requests
1892 * get dealt with eventually.
1893 *
1894 * The queue spin lock must be held while manipulating the requests on the
Paolo 'Blaisorblade' Giarrussoa038e252006-06-05 12:09:01 +02001895 * request queue; this lock will be taken also from interrupt context, so irq
1896 * disabling is needed for it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 *
1898 * Function returns a pointer to the initialized request queue, or NULL if
1899 * it didn't succeed.
1900 *
1901 * Note:
1902 * blk_init_queue() must be paired with a blk_cleanup_queue() call
1903 * when the block device is deactivated (such as at module unload).
1904 **/
Christoph Lameter19460892005-06-23 00:08:19 -07001905
Jens Axboe165125e2007-07-24 09:28:11 +02001906struct request_queue *blk_init_queue(request_fn_proc *rfn, spinlock_t *lock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907{
Christoph Lameter19460892005-06-23 00:08:19 -07001908 return blk_init_queue_node(rfn, lock, -1);
1909}
1910EXPORT_SYMBOL(blk_init_queue);
1911
Jens Axboe165125e2007-07-24 09:28:11 +02001912struct request_queue *
Christoph Lameter19460892005-06-23 00:08:19 -07001913blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id)
1914{
Jens Axboe165125e2007-07-24 09:28:11 +02001915 struct request_queue *q = blk_alloc_queue_node(GFP_KERNEL, node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916
1917 if (!q)
1918 return NULL;
1919
Christoph Lameter19460892005-06-23 00:08:19 -07001920 q->node = node_id;
Al Viro8669aaf2006-03-18 13:50:00 -05001921 if (blk_init_free_list(q)) {
1922 kmem_cache_free(requestq_cachep, q);
1923 return NULL;
1924 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
152587d2005-04-12 16:22:06 -05001926 /*
1927 * if caller didn't supply a lock, they get per-queue locking with
1928 * our embedded lock
1929 */
1930 if (!lock) {
1931 spin_lock_init(&q->__queue_lock);
1932 lock = &q->__queue_lock;
1933 }
1934
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 q->request_fn = rfn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 q->prep_rq_fn = NULL;
1937 q->unplug_fn = generic_unplug_device;
1938 q->queue_flags = (1 << QUEUE_FLAG_CLUSTER);
1939 q->queue_lock = lock;
1940
1941 blk_queue_segment_boundary(q, 0xffffffff);
1942
1943 blk_queue_make_request(q, __make_request);
1944 blk_queue_max_segment_size(q, MAX_SEGMENT_SIZE);
1945
1946 blk_queue_max_hw_segments(q, MAX_HW_SEGMENTS);
1947 blk_queue_max_phys_segments(q, MAX_PHYS_SEGMENTS);
1948
Alan Stern44ec9542007-02-20 11:01:57 -05001949 q->sg_reserved_size = INT_MAX;
1950
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 /*
1952 * all done
1953 */
1954 if (!elevator_init(q, NULL)) {
1955 blk_queue_congestion_threshold(q);
1956 return q;
1957 }
1958
Al Viro8669aaf2006-03-18 13:50:00 -05001959 blk_put_queue(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 return NULL;
1961}
Christoph Lameter19460892005-06-23 00:08:19 -07001962EXPORT_SYMBOL(blk_init_queue_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963
Jens Axboe165125e2007-07-24 09:28:11 +02001964int blk_get_queue(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965{
Nick Pigginfde6ad22005-06-23 00:08:53 -07001966 if (likely(!test_bit(QUEUE_FLAG_DEAD, &q->queue_flags))) {
Al Viro483f4af2006-03-18 18:34:37 -05001967 kobject_get(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 return 0;
1969 }
1970
1971 return 1;
1972}
1973
1974EXPORT_SYMBOL(blk_get_queue);
1975
Jens Axboe165125e2007-07-24 09:28:11 +02001976static inline void blk_free_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977{
Jens Axboe4aff5e22006-08-10 08:44:47 +02001978 if (rq->cmd_flags & REQ_ELVPRIV)
Tejun Heocb98fc82005-10-28 08:29:39 +02001979 elv_put_request(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 mempool_free(rq, q->rq.rq_pool);
1981}
1982
Jens Axboe1ea25ecb2006-07-18 22:24:11 +02001983static struct request *
Jens Axboe165125e2007-07-24 09:28:11 +02001984blk_alloc_request(struct request_queue *q, int rw, int priv, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985{
1986 struct request *rq = mempool_alloc(q->rq.rq_pool, gfp_mask);
1987
1988 if (!rq)
1989 return NULL;
1990
1991 /*
Jens Axboe4aff5e22006-08-10 08:44:47 +02001992 * first three bits are identical in rq->cmd_flags and bio->bi_rw,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 * see bio.h and blkdev.h
1994 */
Jens Axboe49171e52006-08-10 08:59:11 +02001995 rq->cmd_flags = rw | REQ_ALLOCED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996
Tejun Heocb98fc82005-10-28 08:29:39 +02001997 if (priv) {
Jens Axboecb78b282006-07-28 09:32:57 +02001998 if (unlikely(elv_set_request(q, rq, gfp_mask))) {
Tejun Heocb98fc82005-10-28 08:29:39 +02001999 mempool_free(rq, q->rq.rq_pool);
2000 return NULL;
2001 }
Jens Axboe4aff5e22006-08-10 08:44:47 +02002002 rq->cmd_flags |= REQ_ELVPRIV;
Tejun Heocb98fc82005-10-28 08:29:39 +02002003 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004
Tejun Heocb98fc82005-10-28 08:29:39 +02002005 return rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006}
2007
2008/*
2009 * ioc_batching returns true if the ioc is a valid batching request and
2010 * should be given priority access to a request.
2011 */
Jens Axboe165125e2007-07-24 09:28:11 +02002012static inline int ioc_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013{
2014 if (!ioc)
2015 return 0;
2016
2017 /*
2018 * Make sure the process is able to allocate at least 1 request
2019 * even if the batch times out, otherwise we could theoretically
2020 * lose wakeups.
2021 */
2022 return ioc->nr_batch_requests == q->nr_batching ||
2023 (ioc->nr_batch_requests > 0
2024 && time_before(jiffies, ioc->last_waited + BLK_BATCH_TIME));
2025}
2026
2027/*
2028 * ioc_set_batching sets ioc to be a new "batcher" if it is not one. This
2029 * will cause the process to be a "batcher" on all queues in the system. This
2030 * is the behaviour we want though - once it gets a wakeup it should be given
2031 * a nice run.
2032 */
Jens Axboe165125e2007-07-24 09:28:11 +02002033static void ioc_set_batching(struct request_queue *q, struct io_context *ioc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034{
2035 if (!ioc || ioc_batching(q, ioc))
2036 return;
2037
2038 ioc->nr_batch_requests = q->nr_batching;
2039 ioc->last_waited = jiffies;
2040}
2041
Jens Axboe165125e2007-07-24 09:28:11 +02002042static void __freed_request(struct request_queue *q, int rw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043{
2044 struct request_list *rl = &q->rq;
2045
2046 if (rl->count[rw] < queue_congestion_off_threshold(q))
Thomas Maier79e2de42006-10-19 23:28:15 -07002047 blk_clear_queue_congested(q, rw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048
2049 if (rl->count[rw] + 1 <= q->nr_requests) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 if (waitqueue_active(&rl->wait[rw]))
2051 wake_up(&rl->wait[rw]);
2052
2053 blk_clear_queue_full(q, rw);
2054 }
2055}
2056
2057/*
2058 * A request has just been released. Account for it, update the full and
2059 * congestion status, wake up any waiters. Called under q->queue_lock.
2060 */
Jens Axboe165125e2007-07-24 09:28:11 +02002061static void freed_request(struct request_queue *q, int rw, int priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062{
2063 struct request_list *rl = &q->rq;
2064
2065 rl->count[rw]--;
Tejun Heocb98fc82005-10-28 08:29:39 +02002066 if (priv)
2067 rl->elvpriv--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
2069 __freed_request(q, rw);
2070
2071 if (unlikely(rl->starved[rw ^ 1]))
2072 __freed_request(q, rw ^ 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073}
2074
2075#define blkdev_free_rq(list) list_entry((list)->next, struct request, queuelist)
2076/*
Nick Piggind6344532005-06-28 20:45:14 -07002077 * Get a free request, queue_lock must be held.
2078 * Returns NULL on failure, with queue_lock held.
2079 * Returns !NULL on success, with queue_lock *not held*.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 */
Jens Axboe165125e2007-07-24 09:28:11 +02002081static struct request *get_request(struct request_queue *q, int rw_flags,
Jens Axboe7749a8d2006-12-13 13:02:26 +01002082 struct bio *bio, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083{
2084 struct request *rq = NULL;
2085 struct request_list *rl = &q->rq;
Jens Axboe88ee5ef2005-11-12 11:09:12 +01002086 struct io_context *ioc = NULL;
Jens Axboe7749a8d2006-12-13 13:02:26 +01002087 const int rw = rw_flags & 0x01;
Jens Axboe88ee5ef2005-11-12 11:09:12 +01002088 int may_queue, priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
Jens Axboe7749a8d2006-12-13 13:02:26 +01002090 may_queue = elv_may_queue(q, rw_flags);
Jens Axboe88ee5ef2005-11-12 11:09:12 +01002091 if (may_queue == ELV_MQUEUE_NO)
2092 goto rq_starved;
2093
2094 if (rl->count[rw]+1 >= queue_congestion_on_threshold(q)) {
2095 if (rl->count[rw]+1 >= q->nr_requests) {
Jens Axboeb5deef92006-07-19 23:39:40 +02002096 ioc = current_io_context(GFP_ATOMIC, q->node);
Jens Axboe88ee5ef2005-11-12 11:09:12 +01002097 /*
2098 * The queue will fill after this allocation, so set
2099 * it as full, and mark this process as "batching".
2100 * This process will be allowed to complete a batch of
2101 * requests, others will be blocked.
2102 */
2103 if (!blk_queue_full(q, rw)) {
2104 ioc_set_batching(q, ioc);
2105 blk_set_queue_full(q, rw);
2106 } else {
2107 if (may_queue != ELV_MQUEUE_MUST
2108 && !ioc_batching(q, ioc)) {
2109 /*
2110 * The queue is full and the allocating
2111 * process is not a "batcher", and not
2112 * exempted by the IO scheduler
2113 */
2114 goto out;
2115 }
2116 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 }
Thomas Maier79e2de42006-10-19 23:28:15 -07002118 blk_set_queue_congested(q, rw);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 }
2120
Jens Axboe082cf692005-06-28 16:35:11 +02002121 /*
2122 * Only allow batching queuers to allocate up to 50% over the defined
2123 * limit of requests, otherwise we could have thousands of requests
2124 * allocated with any setting of ->nr_requests
2125 */
Hugh Dickinsfd782a42005-06-29 15:15:40 +01002126 if (rl->count[rw] >= (3 * q->nr_requests / 2))
Jens Axboe082cf692005-06-28 16:35:11 +02002127 goto out;
Hugh Dickinsfd782a42005-06-29 15:15:40 +01002128
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 rl->count[rw]++;
2130 rl->starved[rw] = 0;
Tejun Heocb98fc82005-10-28 08:29:39 +02002131
Jens Axboe64521d12005-10-28 08:30:39 +02002132 priv = !test_bit(QUEUE_FLAG_ELVSWITCH, &q->queue_flags);
Tejun Heocb98fc82005-10-28 08:29:39 +02002133 if (priv)
2134 rl->elvpriv++;
2135
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 spin_unlock_irq(q->queue_lock);
2137
Jens Axboe7749a8d2006-12-13 13:02:26 +01002138 rq = blk_alloc_request(q, rw_flags, priv, gfp_mask);
Jens Axboe88ee5ef2005-11-12 11:09:12 +01002139 if (unlikely(!rq)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 /*
2141 * Allocation failed presumably due to memory. Undo anything
2142 * we might have messed up.
2143 *
2144 * Allocating task should really be put onto the front of the
2145 * wait queue, but this is pretty rare.
2146 */
2147 spin_lock_irq(q->queue_lock);
Tejun Heocb98fc82005-10-28 08:29:39 +02002148 freed_request(q, rw, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
2150 /*
2151 * in the very unlikely event that allocation failed and no
2152 * requests for this direction was pending, mark us starved
2153 * so that freeing of a request in the other direction will
2154 * notice us. another possible fix would be to split the
2155 * rq mempool into READ and WRITE
2156 */
2157rq_starved:
2158 if (unlikely(rl->count[rw] == 0))
2159 rl->starved[rw] = 1;
2160
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 goto out;
2162 }
2163
Jens Axboe88ee5ef2005-11-12 11:09:12 +01002164 /*
2165 * ioc may be NULL here, and ioc_batching will be false. That's
2166 * OK, if the queue is under the request limit then requests need
2167 * not count toward the nr_batch_requests limit. There will always
2168 * be some limit enforced by BLK_BATCH_TIME.
2169 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 if (ioc_batching(q, ioc))
2171 ioc->nr_batch_requests--;
2172
2173 rq_init(q, rq);
Jens Axboe2056a782006-03-23 20:00:26 +01002174
2175 blk_add_trace_generic(q, bio, rw, BLK_TA_GETRQ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 return rq;
2178}
2179
2180/*
2181 * No available requests for this queue, unplug the device and wait for some
2182 * requests to become available.
Nick Piggind6344532005-06-28 20:45:14 -07002183 *
2184 * Called with q->queue_lock held, and returns with it unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 */
Jens Axboe165125e2007-07-24 09:28:11 +02002186static struct request *get_request_wait(struct request_queue *q, int rw_flags,
Jens Axboe22e2c502005-06-27 10:55:12 +02002187 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188{
Jens Axboe7749a8d2006-12-13 13:02:26 +01002189 const int rw = rw_flags & 0x01;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 struct request *rq;
2191
Jens Axboe7749a8d2006-12-13 13:02:26 +01002192 rq = get_request(q, rw_flags, bio, GFP_NOIO);
Nick Piggin450991b2005-06-28 20:45:13 -07002193 while (!rq) {
2194 DEFINE_WAIT(wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 struct request_list *rl = &q->rq;
2196
2197 prepare_to_wait_exclusive(&rl->wait[rw], &wait,
2198 TASK_UNINTERRUPTIBLE);
2199
Jens Axboe7749a8d2006-12-13 13:02:26 +01002200 rq = get_request(q, rw_flags, bio, GFP_NOIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201
2202 if (!rq) {
2203 struct io_context *ioc;
2204
Jens Axboe2056a782006-03-23 20:00:26 +01002205 blk_add_trace_generic(q, bio, rw, BLK_TA_SLEEPRQ);
2206
Nick Piggind6344532005-06-28 20:45:14 -07002207 __generic_unplug_device(q);
2208 spin_unlock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 io_schedule();
2210
2211 /*
2212 * After sleeping, we become a "batching" process and
2213 * will be able to allocate at least one request, and
2214 * up to a big batch of them for a small period time.
2215 * See ioc_batching, ioc_set_batching
2216 */
Jens Axboeb5deef92006-07-19 23:39:40 +02002217 ioc = current_io_context(GFP_NOIO, q->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 ioc_set_batching(q, ioc);
Nick Piggind6344532005-06-28 20:45:14 -07002219
2220 spin_lock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 }
2222 finish_wait(&rl->wait[rw], &wait);
Nick Piggin450991b2005-06-28 20:45:13 -07002223 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224
2225 return rq;
2226}
2227
Jens Axboe165125e2007-07-24 09:28:11 +02002228struct request *blk_get_request(struct request_queue *q, int rw, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229{
2230 struct request *rq;
2231
2232 BUG_ON(rw != READ && rw != WRITE);
2233
Nick Piggind6344532005-06-28 20:45:14 -07002234 spin_lock_irq(q->queue_lock);
2235 if (gfp_mask & __GFP_WAIT) {
Jens Axboe22e2c502005-06-27 10:55:12 +02002236 rq = get_request_wait(q, rw, NULL);
Nick Piggind6344532005-06-28 20:45:14 -07002237 } else {
Jens Axboe22e2c502005-06-27 10:55:12 +02002238 rq = get_request(q, rw, NULL, gfp_mask);
Nick Piggind6344532005-06-28 20:45:14 -07002239 if (!rq)
2240 spin_unlock_irq(q->queue_lock);
2241 }
2242 /* q->queue_lock is unlocked at this point */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
2244 return rq;
2245}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246EXPORT_SYMBOL(blk_get_request);
2247
2248/**
Jens Axboedc72ef42006-07-20 14:54:05 +02002249 * blk_start_queueing - initiate dispatch of requests to device
2250 * @q: request queue to kick into gear
2251 *
2252 * This is basically a helper to remove the need to know whether a queue
2253 * is plugged or not if someone just wants to initiate dispatch of requests
2254 * for this queue.
2255 *
2256 * The queue lock must be held with interrupts disabled.
2257 */
Jens Axboe165125e2007-07-24 09:28:11 +02002258void blk_start_queueing(struct request_queue *q)
Jens Axboedc72ef42006-07-20 14:54:05 +02002259{
2260 if (!blk_queue_plugged(q))
2261 q->request_fn(q);
2262 else
2263 __generic_unplug_device(q);
2264}
2265EXPORT_SYMBOL(blk_start_queueing);
2266
2267/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 * blk_requeue_request - put a request back on queue
2269 * @q: request queue where request should be inserted
2270 * @rq: request to be inserted
2271 *
2272 * Description:
2273 * Drivers often keep queueing requests until the hardware cannot accept
2274 * more, when that condition happens we need to put the request back
2275 * on the queue. Must be called with queue lock held.
2276 */
Jens Axboe165125e2007-07-24 09:28:11 +02002277void blk_requeue_request(struct request_queue *q, struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278{
Jens Axboe2056a782006-03-23 20:00:26 +01002279 blk_add_trace_rq(q, rq, BLK_TA_REQUEUE);
2280
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 if (blk_rq_tagged(rq))
2282 blk_queue_end_tag(q, rq);
2283
2284 elv_requeue_request(q, rq);
2285}
2286
2287EXPORT_SYMBOL(blk_requeue_request);
2288
2289/**
2290 * blk_insert_request - insert a special request in to a request queue
2291 * @q: request queue where request should be inserted
2292 * @rq: request to be inserted
2293 * @at_head: insert request at head or tail of queue
2294 * @data: private data
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 *
2296 * Description:
2297 * Many block devices need to execute commands asynchronously, so they don't
2298 * block the whole kernel from preemption during request execution. This is
2299 * accomplished normally by inserting aritficial requests tagged as
2300 * REQ_SPECIAL in to the corresponding request queue, and letting them be
2301 * scheduled for actual execution by the request queue.
2302 *
2303 * We have the option of inserting the head or the tail of the queue.
2304 * Typically we use the tail for new ioctls and so forth. We use the head
2305 * of the queue for things like a QUEUE_FULL message from a device, or a
2306 * host that is unable to accept a particular command.
2307 */
Jens Axboe165125e2007-07-24 09:28:11 +02002308void blk_insert_request(struct request_queue *q, struct request *rq,
Tejun Heo 867d1192005-04-24 02:06:05 -05002309 int at_head, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310{
Tejun Heo 867d1192005-04-24 02:06:05 -05002311 int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 unsigned long flags;
2313
2314 /*
2315 * tell I/O scheduler that this isn't a regular read/write (ie it
2316 * must not attempt merges on this) and that it acts as a soft
2317 * barrier
2318 */
Jens Axboe4aff5e22006-08-10 08:44:47 +02002319 rq->cmd_type = REQ_TYPE_SPECIAL;
2320 rq->cmd_flags |= REQ_SOFTBARRIER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321
2322 rq->special = data;
2323
2324 spin_lock_irqsave(q->queue_lock, flags);
2325
2326 /*
2327 * If command is tagged, release the tag
2328 */
Tejun Heo 867d1192005-04-24 02:06:05 -05002329 if (blk_rq_tagged(rq))
2330 blk_queue_end_tag(q, rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331
Tejun Heo 867d1192005-04-24 02:06:05 -05002332 drive_stat_acct(rq, rq->nr_sectors, 1);
2333 __elv_add_request(q, rq, where, 0);
Jens Axboedc72ef42006-07-20 14:54:05 +02002334 blk_start_queueing(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 spin_unlock_irqrestore(q->queue_lock, flags);
2336}
2337
2338EXPORT_SYMBOL(blk_insert_request);
2339
Mike Christie0e75f902006-12-01 10:40:55 +01002340static int __blk_rq_unmap_user(struct bio *bio)
2341{
2342 int ret = 0;
2343
2344 if (bio) {
2345 if (bio_flagged(bio, BIO_USER_MAPPED))
2346 bio_unmap_user(bio);
2347 else
2348 ret = bio_uncopy_user(bio);
2349 }
2350
2351 return ret;
2352}
2353
NeilBrown3001ca72007-08-16 13:31:27 +02002354int blk_rq_append_bio(struct request_queue *q, struct request *rq,
2355 struct bio *bio)
2356{
2357 if (!rq->bio)
2358 blk_rq_bio_prep(q, rq, bio);
2359 else if (!ll_back_merge_fn(q, rq, bio))
2360 return -EINVAL;
2361 else {
2362 rq->biotail->bi_next = bio;
2363 rq->biotail = bio;
2364
2365 rq->data_len += bio->bi_size;
2366 }
2367 return 0;
2368}
2369EXPORT_SYMBOL(blk_rq_append_bio);
2370
Jens Axboe165125e2007-07-24 09:28:11 +02002371static int __blk_rq_map_user(struct request_queue *q, struct request *rq,
Mike Christie0e75f902006-12-01 10:40:55 +01002372 void __user *ubuf, unsigned int len)
2373{
2374 unsigned long uaddr;
2375 struct bio *bio, *orig_bio;
2376 int reading, ret;
2377
2378 reading = rq_data_dir(rq) == READ;
2379
2380 /*
2381 * if alignment requirement is satisfied, map in user pages for
2382 * direct dma. else, set up kernel bounce buffers
2383 */
2384 uaddr = (unsigned long) ubuf;
2385 if (!(uaddr & queue_dma_alignment(q)) && !(len & queue_dma_alignment(q)))
2386 bio = bio_map_user(q, NULL, uaddr, len, reading);
2387 else
2388 bio = bio_copy_user(q, uaddr, len, reading);
2389
Jens Axboe29852592006-12-19 08:27:31 +01002390 if (IS_ERR(bio))
Mike Christie0e75f902006-12-01 10:40:55 +01002391 return PTR_ERR(bio);
Mike Christie0e75f902006-12-01 10:40:55 +01002392
2393 orig_bio = bio;
2394 blk_queue_bounce(q, &bio);
Jens Axboe29852592006-12-19 08:27:31 +01002395
Mike Christie0e75f902006-12-01 10:40:55 +01002396 /*
2397 * We link the bounce buffer in and could have to traverse it
2398 * later so we have to get a ref to prevent it from being freed
2399 */
2400 bio_get(bio);
2401
NeilBrown3001ca72007-08-16 13:31:27 +02002402 ret = blk_rq_append_bio(q, rq, bio);
2403 if (!ret)
2404 return bio->bi_size;
Mike Christie0e75f902006-12-01 10:40:55 +01002405
Mike Christie0e75f902006-12-01 10:40:55 +01002406 /* if it was boucned we must call the end io function */
NeilBrown6712ecf2007-09-27 12:47:43 +02002407 bio_endio(bio, 0);
Mike Christie0e75f902006-12-01 10:40:55 +01002408 __blk_rq_unmap_user(orig_bio);
2409 bio_put(bio);
2410 return ret;
2411}
2412
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413/**
2414 * blk_rq_map_user - map user data to a request, for REQ_BLOCK_PC usage
2415 * @q: request queue where request should be inserted
Christoph Hellwig 73747ae2005-06-20 14:21:01 +02002416 * @rq: request structure to fill
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 * @ubuf: the user buffer
2418 * @len: length of user data
2419 *
2420 * Description:
2421 * Data will be mapped directly for zero copy io, if possible. Otherwise
2422 * a kernel bounce buffer is used.
2423 *
2424 * A matching blk_rq_unmap_user() must be issued at the end of io, while
2425 * still in process context.
2426 *
2427 * Note: The mapped bio may need to be bounced through blk_queue_bounce()
2428 * before being submitted to the device, as pages mapped may be out of
2429 * reach. It's the callers responsibility to make sure this happens. The
2430 * original bio must be passed back in to blk_rq_unmap_user() for proper
2431 * unmapping.
2432 */
Jens Axboe165125e2007-07-24 09:28:11 +02002433int blk_rq_map_user(struct request_queue *q, struct request *rq,
2434 void __user *ubuf, unsigned long len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435{
Mike Christie0e75f902006-12-01 10:40:55 +01002436 unsigned long bytes_read = 0;
Jens Axboe8e5cfc42006-12-19 11:12:46 +01002437 struct bio *bio = NULL;
Mike Christie0e75f902006-12-01 10:40:55 +01002438 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439
Mike Christiedefd94b2005-12-05 02:37:06 -06002440 if (len > (q->max_hw_sectors << 9))
Jens Axboedd1cab92005-06-20 14:06:01 +02002441 return -EINVAL;
2442 if (!len || !ubuf)
2443 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444
Mike Christie0e75f902006-12-01 10:40:55 +01002445 while (bytes_read != len) {
2446 unsigned long map_len, end, start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447
Mike Christie0e75f902006-12-01 10:40:55 +01002448 map_len = min_t(unsigned long, len - bytes_read, BIO_MAX_SIZE);
2449 end = ((unsigned long)ubuf + map_len + PAGE_SIZE - 1)
2450 >> PAGE_SHIFT;
2451 start = (unsigned long)ubuf >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
Mike Christie0e75f902006-12-01 10:40:55 +01002453 /*
2454 * A bad offset could cause us to require BIO_MAX_PAGES + 1
2455 * pages. If this happens we just lower the requested
2456 * mapping len by a page so that we can fit
2457 */
2458 if (end - start > BIO_MAX_PAGES)
2459 map_len -= PAGE_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460
Mike Christie0e75f902006-12-01 10:40:55 +01002461 ret = __blk_rq_map_user(q, rq, ubuf, map_len);
2462 if (ret < 0)
2463 goto unmap_rq;
Jens Axboe8e5cfc42006-12-19 11:12:46 +01002464 if (!bio)
2465 bio = rq->bio;
Mike Christie0e75f902006-12-01 10:40:55 +01002466 bytes_read += ret;
2467 ubuf += ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 }
2469
Mike Christie0e75f902006-12-01 10:40:55 +01002470 rq->buffer = rq->data = NULL;
2471 return 0;
2472unmap_rq:
Jens Axboe8e5cfc42006-12-19 11:12:46 +01002473 blk_rq_unmap_user(bio);
Mike Christie0e75f902006-12-01 10:40:55 +01002474 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475}
2476
2477EXPORT_SYMBOL(blk_rq_map_user);
2478
2479/**
James Bottomley f1970ba2005-06-20 14:06:52 +02002480 * blk_rq_map_user_iov - map user data to a request, for REQ_BLOCK_PC usage
2481 * @q: request queue where request should be inserted
2482 * @rq: request to map data to
2483 * @iov: pointer to the iovec
2484 * @iov_count: number of elements in the iovec
Randy Dunlapaf9997e2006-12-22 01:06:52 -08002485 * @len: I/O byte count
James Bottomley f1970ba2005-06-20 14:06:52 +02002486 *
2487 * Description:
2488 * Data will be mapped directly for zero copy io, if possible. Otherwise
2489 * a kernel bounce buffer is used.
2490 *
2491 * A matching blk_rq_unmap_user() must be issued at the end of io, while
2492 * still in process context.
2493 *
2494 * Note: The mapped bio may need to be bounced through blk_queue_bounce()
2495 * before being submitted to the device, as pages mapped may be out of
2496 * reach. It's the callers responsibility to make sure this happens. The
2497 * original bio must be passed back in to blk_rq_unmap_user() for proper
2498 * unmapping.
2499 */
Jens Axboe165125e2007-07-24 09:28:11 +02002500int blk_rq_map_user_iov(struct request_queue *q, struct request *rq,
Mike Christie0e75f902006-12-01 10:40:55 +01002501 struct sg_iovec *iov, int iov_count, unsigned int len)
James Bottomley f1970ba2005-06-20 14:06:52 +02002502{
2503 struct bio *bio;
2504
2505 if (!iov || iov_count <= 0)
2506 return -EINVAL;
2507
2508 /* we don't allow misaligned data like bio_map_user() does. If the
2509 * user is using sg, they're expected to know the alignment constraints
2510 * and respect them accordingly */
2511 bio = bio_map_user_iov(q, NULL, iov, iov_count, rq_data_dir(rq)== READ);
2512 if (IS_ERR(bio))
2513 return PTR_ERR(bio);
2514
Mike Christie0e75f902006-12-01 10:40:55 +01002515 if (bio->bi_size != len) {
NeilBrown6712ecf2007-09-27 12:47:43 +02002516 bio_endio(bio, 0);
Mike Christie0e75f902006-12-01 10:40:55 +01002517 bio_unmap_user(bio);
2518 return -EINVAL;
2519 }
2520
2521 bio_get(bio);
James Bottomley f1970ba2005-06-20 14:06:52 +02002522 blk_rq_bio_prep(q, rq, bio);
2523 rq->buffer = rq->data = NULL;
James Bottomley f1970ba2005-06-20 14:06:52 +02002524 return 0;
2525}
2526
2527EXPORT_SYMBOL(blk_rq_map_user_iov);
2528
2529/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 * blk_rq_unmap_user - unmap a request with user data
Jens Axboe8e5cfc42006-12-19 11:12:46 +01002531 * @bio: start of bio list
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 *
2533 * Description:
Jens Axboe8e5cfc42006-12-19 11:12:46 +01002534 * Unmap a rq previously mapped by blk_rq_map_user(). The caller must
2535 * supply the original rq->bio from the blk_rq_map_user() return, since
2536 * the io completion may have changed rq->bio.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 */
Jens Axboe8e5cfc42006-12-19 11:12:46 +01002538int blk_rq_unmap_user(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539{
Jens Axboe8e5cfc42006-12-19 11:12:46 +01002540 struct bio *mapped_bio;
Jens Axboe48785bb2006-12-19 11:07:59 +01002541 int ret = 0, ret2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542
Jens Axboe8e5cfc42006-12-19 11:12:46 +01002543 while (bio) {
2544 mapped_bio = bio;
2545 if (unlikely(bio_flagged(bio, BIO_BOUNCED)))
Mike Christie0e75f902006-12-01 10:40:55 +01002546 mapped_bio = bio->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547
Jens Axboe48785bb2006-12-19 11:07:59 +01002548 ret2 = __blk_rq_unmap_user(mapped_bio);
2549 if (ret2 && !ret)
2550 ret = ret2;
2551
Jens Axboe8e5cfc42006-12-19 11:12:46 +01002552 mapped_bio = bio;
2553 bio = bio->bi_next;
2554 bio_put(mapped_bio);
Mike Christie0e75f902006-12-01 10:40:55 +01002555 }
Jens Axboe48785bb2006-12-19 11:07:59 +01002556
2557 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558}
2559
2560EXPORT_SYMBOL(blk_rq_unmap_user);
2561
2562/**
Mike Christie df46b9a2005-06-20 14:04:44 +02002563 * blk_rq_map_kern - map kernel data to a request, for REQ_BLOCK_PC usage
2564 * @q: request queue where request should be inserted
Christoph Hellwig 73747ae2005-06-20 14:21:01 +02002565 * @rq: request to fill
Mike Christie df46b9a2005-06-20 14:04:44 +02002566 * @kbuf: the kernel buffer
2567 * @len: length of user data
Christoph Hellwig 73747ae2005-06-20 14:21:01 +02002568 * @gfp_mask: memory allocation flags
Mike Christie df46b9a2005-06-20 14:04:44 +02002569 */
Jens Axboe165125e2007-07-24 09:28:11 +02002570int blk_rq_map_kern(struct request_queue *q, struct request *rq, void *kbuf,
Al Viro8267e262005-10-21 03:20:53 -04002571 unsigned int len, gfp_t gfp_mask)
Mike Christie df46b9a2005-06-20 14:04:44 +02002572{
Mike Christie df46b9a2005-06-20 14:04:44 +02002573 struct bio *bio;
2574
Mike Christiedefd94b2005-12-05 02:37:06 -06002575 if (len > (q->max_hw_sectors << 9))
Jens Axboedd1cab92005-06-20 14:06:01 +02002576 return -EINVAL;
2577 if (!len || !kbuf)
2578 return -EINVAL;
Mike Christie df46b9a2005-06-20 14:04:44 +02002579
2580 bio = bio_map_kern(q, kbuf, len, gfp_mask);
Jens Axboedd1cab92005-06-20 14:06:01 +02002581 if (IS_ERR(bio))
2582 return PTR_ERR(bio);
Mike Christie df46b9a2005-06-20 14:04:44 +02002583
Jens Axboedd1cab92005-06-20 14:06:01 +02002584 if (rq_data_dir(rq) == WRITE)
2585 bio->bi_rw |= (1 << BIO_RW);
Mike Christie df46b9a2005-06-20 14:04:44 +02002586
Jens Axboedd1cab92005-06-20 14:06:01 +02002587 blk_rq_bio_prep(q, rq, bio);
Mike Christie821de3a2007-05-08 19:12:23 +02002588 blk_queue_bounce(q, &rq->bio);
Jens Axboedd1cab92005-06-20 14:06:01 +02002589 rq->buffer = rq->data = NULL;
Jens Axboedd1cab92005-06-20 14:06:01 +02002590 return 0;
Mike Christie df46b9a2005-06-20 14:04:44 +02002591}
2592
2593EXPORT_SYMBOL(blk_rq_map_kern);
2594
Christoph Hellwig 73747ae2005-06-20 14:21:01 +02002595/**
2596 * blk_execute_rq_nowait - insert a request into queue for execution
2597 * @q: queue to insert the request in
2598 * @bd_disk: matching gendisk
2599 * @rq: request to insert
2600 * @at_head: insert request at head or tail of queue
2601 * @done: I/O completion handler
2602 *
2603 * Description:
2604 * Insert a fully prepared request at the back of the io scheduler queue
2605 * for execution. Don't wait for completion.
2606 */
Jens Axboe165125e2007-07-24 09:28:11 +02002607void blk_execute_rq_nowait(struct request_queue *q, struct gendisk *bd_disk,
James Bottomley f1970ba2005-06-20 14:06:52 +02002608 struct request *rq, int at_head,
Tejun Heo8ffdc652006-01-06 09:49:03 +01002609 rq_end_io_fn *done)
James Bottomley f1970ba2005-06-20 14:06:52 +02002610{
2611 int where = at_head ? ELEVATOR_INSERT_FRONT : ELEVATOR_INSERT_BACK;
2612
2613 rq->rq_disk = bd_disk;
Jens Axboe4aff5e22006-08-10 08:44:47 +02002614 rq->cmd_flags |= REQ_NOMERGE;
James Bottomley f1970ba2005-06-20 14:06:52 +02002615 rq->end_io = done;
Andrew Morton4c5d0bb2006-03-22 08:08:01 +01002616 WARN_ON(irqs_disabled());
2617 spin_lock_irq(q->queue_lock);
2618 __elv_add_request(q, rq, where, 1);
2619 __generic_unplug_device(q);
2620 spin_unlock_irq(q->queue_lock);
James Bottomley f1970ba2005-06-20 14:06:52 +02002621}
Mike Christie6e39b69e2005-11-11 05:30:24 -06002622EXPORT_SYMBOL_GPL(blk_execute_rq_nowait);
2623
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624/**
2625 * blk_execute_rq - insert a request into queue for execution
2626 * @q: queue to insert the request in
2627 * @bd_disk: matching gendisk
2628 * @rq: request to insert
James Bottomley 994ca9a2005-06-20 14:11:09 +02002629 * @at_head: insert request at head or tail of queue
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 *
2631 * Description:
2632 * Insert a fully prepared request at the back of the io scheduler queue
Christoph Hellwig 73747ae2005-06-20 14:21:01 +02002633 * for execution and wait for completion.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 */
Jens Axboe165125e2007-07-24 09:28:11 +02002635int blk_execute_rq(struct request_queue *q, struct gendisk *bd_disk,
James Bottomley 994ca9a2005-06-20 14:11:09 +02002636 struct request *rq, int at_head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637{
Ingo Molnar60be6b92006-07-03 00:25:26 -07002638 DECLARE_COMPLETION_ONSTACK(wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 char sense[SCSI_SENSE_BUFFERSIZE];
2640 int err = 0;
2641
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 /*
2643 * we need an extra reference to the request, so we can look at
2644 * it after io completion
2645 */
2646 rq->ref_count++;
2647
2648 if (!rq->sense) {
2649 memset(sense, 0, sizeof(sense));
2650 rq->sense = sense;
2651 rq->sense_len = 0;
2652 }
2653
Jens Axboec00895a2006-09-30 20:29:12 +02002654 rq->end_io_data = &wait;
James Bottomley 994ca9a2005-06-20 14:11:09 +02002655 blk_execute_rq_nowait(q, bd_disk, rq, at_head, blk_end_sync_rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 wait_for_completion(&wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657
2658 if (rq->errors)
2659 err = -EIO;
2660
2661 return err;
2662}
2663
2664EXPORT_SYMBOL(blk_execute_rq);
2665
2666/**
2667 * blkdev_issue_flush - queue a flush
2668 * @bdev: blockdev to issue flush for
2669 * @error_sector: error sector
2670 *
2671 * Description:
2672 * Issue a flush for the block device in question. Caller can supply
2673 * room for storing the error offset in case of a flush error, if they
2674 * wish to. Caller must run wait_for_completion() on its own.
2675 */
2676int blkdev_issue_flush(struct block_device *bdev, sector_t *error_sector)
2677{
Jens Axboe165125e2007-07-24 09:28:11 +02002678 struct request_queue *q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679
2680 if (bdev->bd_disk == NULL)
2681 return -ENXIO;
2682
2683 q = bdev_get_queue(bdev);
2684 if (!q)
2685 return -ENXIO;
2686 if (!q->issue_flush_fn)
2687 return -EOPNOTSUPP;
2688
2689 return q->issue_flush_fn(q, bdev->bd_disk, error_sector);
2690}
2691
2692EXPORT_SYMBOL(blkdev_issue_flush);
2693
Adrian Bunk93d17d32005-06-25 14:59:10 -07002694static void drive_stat_acct(struct request *rq, int nr_sectors, int new_io)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695{
2696 int rw = rq_data_dir(rq);
2697
2698 if (!blk_fs_request(rq) || !rq->rq_disk)
2699 return;
2700
Jens Axboed72d9042005-11-01 08:35:42 +01002701 if (!new_io) {
Jens Axboea3623572005-11-01 09:26:16 +01002702 __disk_stat_inc(rq->rq_disk, merges[rw]);
Jens Axboed72d9042005-11-01 08:35:42 +01002703 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 disk_round_stats(rq->rq_disk);
2705 rq->rq_disk->in_flight++;
2706 }
2707}
2708
2709/*
2710 * add-request adds a request to the linked list.
2711 * queue lock is held and interrupts disabled, as we muck with the
2712 * request queue list.
2713 */
Jens Axboe165125e2007-07-24 09:28:11 +02002714static inline void add_request(struct request_queue * q, struct request * req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715{
2716 drive_stat_acct(req, req->nr_sectors, 1);
2717
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 /*
2719 * elevator indicated where it wants this request to be
2720 * inserted at elevator_merge time
2721 */
2722 __elv_add_request(q, req, ELEVATOR_INSERT_SORT, 0);
2723}
2724
2725/*
2726 * disk_round_stats() - Round off the performance stats on a struct
2727 * disk_stats.
2728 *
2729 * The average IO queue length and utilisation statistics are maintained
2730 * by observing the current state of the queue length and the amount of
2731 * time it has been in this state for.
2732 *
2733 * Normally, that accounting is done on IO completion, but that can result
2734 * in more than a second's worth of IO being accounted for within any one
2735 * second, leading to >100% utilisation. To deal with that, we call this
2736 * function to do a round-off before returning the results when reading
2737 * /proc/diskstats. This accounts immediately for all queue usage up to
2738 * the current jiffies and restarts the counters again.
2739 */
2740void disk_round_stats(struct gendisk *disk)
2741{
2742 unsigned long now = jiffies;
2743
Chen, Kenneth Wb2982642005-10-13 21:49:29 +02002744 if (now == disk->stamp)
2745 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746
Chen, Kenneth W20e5c812005-10-13 21:48:42 +02002747 if (disk->in_flight) {
2748 __disk_stat_add(disk, time_in_queue,
2749 disk->in_flight * (now - disk->stamp));
2750 __disk_stat_add(disk, io_ticks, (now - disk->stamp));
2751 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 disk->stamp = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753}
2754
Jun'ichi "Nick" Nomura3eaf8402006-02-01 03:04:53 -08002755EXPORT_SYMBOL_GPL(disk_round_stats);
2756
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757/*
2758 * queue lock must be held
2759 */
Jens Axboe165125e2007-07-24 09:28:11 +02002760void __blk_put_request(struct request_queue *q, struct request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 if (unlikely(!q))
2763 return;
2764 if (unlikely(--req->ref_count))
2765 return;
2766
Tejun Heo8922e162005-10-20 16:23:44 +02002767 elv_completed_request(q, req);
2768
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 /*
2770 * Request may not have originated from ll_rw_blk. if not,
2771 * it didn't come out of our reserved rq pools
2772 */
Jens Axboe49171e52006-08-10 08:59:11 +02002773 if (req->cmd_flags & REQ_ALLOCED) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 int rw = rq_data_dir(req);
Jens Axboe4aff5e22006-08-10 08:44:47 +02002775 int priv = req->cmd_flags & REQ_ELVPRIV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 BUG_ON(!list_empty(&req->queuelist));
Jens Axboe98170642006-07-28 09:23:08 +02002778 BUG_ON(!hlist_unhashed(&req->hash));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779
2780 blk_free_request(q, req);
Tejun Heocb98fc82005-10-28 08:29:39 +02002781 freed_request(q, rw, priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 }
2783}
2784
Mike Christie6e39b69e2005-11-11 05:30:24 -06002785EXPORT_SYMBOL_GPL(__blk_put_request);
2786
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787void blk_put_request(struct request *req)
2788{
Tejun Heo8922e162005-10-20 16:23:44 +02002789 unsigned long flags;
Jens Axboe165125e2007-07-24 09:28:11 +02002790 struct request_queue *q = req->q;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791
Tejun Heo8922e162005-10-20 16:23:44 +02002792 /*
2793 * Gee, IDE calls in w/ NULL q. Fix IDE and remove the
2794 * following if (q) test.
2795 */
2796 if (q) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 spin_lock_irqsave(q->queue_lock, flags);
2798 __blk_put_request(q, req);
2799 spin_unlock_irqrestore(q->queue_lock, flags);
2800 }
2801}
2802
2803EXPORT_SYMBOL(blk_put_request);
2804
2805/**
2806 * blk_end_sync_rq - executes a completion event on a request
2807 * @rq: request to complete
Jens Axboefddfdea2006-01-31 15:24:34 +01002808 * @error: end io status of the request
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 */
Tejun Heo8ffdc652006-01-06 09:49:03 +01002810void blk_end_sync_rq(struct request *rq, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811{
Jens Axboec00895a2006-09-30 20:29:12 +02002812 struct completion *waiting = rq->end_io_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813
Jens Axboec00895a2006-09-30 20:29:12 +02002814 rq->end_io_data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 __blk_put_request(rq->q, rq);
2816
2817 /*
2818 * complete last, if this is a stack request the process (and thus
2819 * the rq pointer) could be invalid right after this complete()
2820 */
2821 complete(waiting);
2822}
2823EXPORT_SYMBOL(blk_end_sync_rq);
2824
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825/*
2826 * Has to be called with the request spinlock acquired
2827 */
Jens Axboe165125e2007-07-24 09:28:11 +02002828static int attempt_merge(struct request_queue *q, struct request *req,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 struct request *next)
2830{
2831 if (!rq_mergeable(req) || !rq_mergeable(next))
2832 return 0;
2833
2834 /*
Andreas Mohrd6e05ed2006-06-26 18:35:02 +02002835 * not contiguous
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 */
2837 if (req->sector + req->nr_sectors != next->sector)
2838 return 0;
2839
2840 if (rq_data_dir(req) != rq_data_dir(next)
2841 || req->rq_disk != next->rq_disk
Jens Axboec00895a2006-09-30 20:29:12 +02002842 || next->special)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 return 0;
2844
2845 /*
2846 * If we are allowed to merge, then append bio list
2847 * from next to rq and release next. merge_requests_fn
2848 * will have updated segment counts, update sector
2849 * counts here.
2850 */
Jens Axboe1aa4f242006-12-19 08:33:11 +01002851 if (!ll_merge_requests_fn(q, req, next))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 return 0;
2853
2854 /*
2855 * At this point we have either done a back merge
2856 * or front merge. We need the smaller start_time of
2857 * the merged requests to be the current request
2858 * for accounting purposes.
2859 */
2860 if (time_after(req->start_time, next->start_time))
2861 req->start_time = next->start_time;
2862
2863 req->biotail->bi_next = next->bio;
2864 req->biotail = next->biotail;
2865
2866 req->nr_sectors = req->hard_nr_sectors += next->hard_nr_sectors;
2867
2868 elv_merge_requests(q, req, next);
2869
2870 if (req->rq_disk) {
2871 disk_round_stats(req->rq_disk);
2872 req->rq_disk->in_flight--;
2873 }
2874
Jens Axboe22e2c502005-06-27 10:55:12 +02002875 req->ioprio = ioprio_best(req->ioprio, next->ioprio);
2876
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 __blk_put_request(q, next);
2878 return 1;
2879}
2880
Jens Axboe165125e2007-07-24 09:28:11 +02002881static inline int attempt_back_merge(struct request_queue *q,
2882 struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883{
2884 struct request *next = elv_latter_request(q, rq);
2885
2886 if (next)
2887 return attempt_merge(q, rq, next);
2888
2889 return 0;
2890}
2891
Jens Axboe165125e2007-07-24 09:28:11 +02002892static inline int attempt_front_merge(struct request_queue *q,
2893 struct request *rq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894{
2895 struct request *prev = elv_former_request(q, rq);
2896
2897 if (prev)
2898 return attempt_merge(q, prev, rq);
2899
2900 return 0;
2901}
2902
Tejun Heo52d9e672006-01-06 09:49:58 +01002903static void init_request_from_bio(struct request *req, struct bio *bio)
2904{
Jens Axboe4aff5e22006-08-10 08:44:47 +02002905 req->cmd_type = REQ_TYPE_FS;
Tejun Heo52d9e672006-01-06 09:49:58 +01002906
2907 /*
2908 * inherit FAILFAST from bio (for read-ahead, and explicit FAILFAST)
2909 */
2910 if (bio_rw_ahead(bio) || bio_failfast(bio))
Jens Axboe4aff5e22006-08-10 08:44:47 +02002911 req->cmd_flags |= REQ_FAILFAST;
Tejun Heo52d9e672006-01-06 09:49:58 +01002912
2913 /*
2914 * REQ_BARRIER implies no merging, but lets make it explicit
2915 */
2916 if (unlikely(bio_barrier(bio)))
Jens Axboe4aff5e22006-08-10 08:44:47 +02002917 req->cmd_flags |= (REQ_HARDBARRIER | REQ_NOMERGE);
Tejun Heo52d9e672006-01-06 09:49:58 +01002918
Jens Axboeb31dc662006-06-13 08:26:10 +02002919 if (bio_sync(bio))
Jens Axboe4aff5e22006-08-10 08:44:47 +02002920 req->cmd_flags |= REQ_RW_SYNC;
Jens Axboe5404bc72006-08-10 09:01:02 +02002921 if (bio_rw_meta(bio))
2922 req->cmd_flags |= REQ_RW_META;
Jens Axboeb31dc662006-06-13 08:26:10 +02002923
Tejun Heo52d9e672006-01-06 09:49:58 +01002924 req->errors = 0;
2925 req->hard_sector = req->sector = bio->bi_sector;
Tejun Heo52d9e672006-01-06 09:49:58 +01002926 req->ioprio = bio_prio(bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01002927 req->start_time = jiffies;
NeilBrownbc1c56f2007-08-16 13:31:30 +02002928 blk_rq_bio_prep(req->q, req, bio);
Tejun Heo52d9e672006-01-06 09:49:58 +01002929}
2930
Jens Axboe165125e2007-07-24 09:28:11 +02002931static int __make_request(struct request_queue *q, struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932{
Nick Piggin450991b2005-06-28 20:45:13 -07002933 struct request *req;
Jens Axboe51da90f2006-07-18 04:14:45 +02002934 int el_ret, nr_sectors, barrier, err;
2935 const unsigned short prio = bio_prio(bio);
2936 const int sync = bio_sync(bio);
Jens Axboe7749a8d2006-12-13 13:02:26 +01002937 int rw_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 nr_sectors = bio_sectors(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940
2941 /*
2942 * low level driver can indicate that it wants pages above a
2943 * certain limit bounced to low memory (ie for highmem, or even
2944 * ISA dma in theory)
2945 */
2946 blk_queue_bounce(q, &bio);
2947
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 barrier = bio_barrier(bio);
Tejun Heo797e7db2006-01-06 09:51:03 +01002949 if (unlikely(barrier) && (q->next_ordered == QUEUE_ORDERED_NONE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 err = -EOPNOTSUPP;
2951 goto end_io;
2952 }
2953
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 spin_lock_irq(q->queue_lock);
2955
Nick Piggin450991b2005-06-28 20:45:13 -07002956 if (unlikely(barrier) || elv_queue_empty(q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 goto get_rq;
2958
2959 el_ret = elv_merge(q, &req, bio);
2960 switch (el_ret) {
2961 case ELEVATOR_BACK_MERGE:
2962 BUG_ON(!rq_mergeable(req));
2963
Jens Axboe1aa4f242006-12-19 08:33:11 +01002964 if (!ll_back_merge_fn(q, req, bio))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 break;
2966
Jens Axboe2056a782006-03-23 20:00:26 +01002967 blk_add_trace_bio(q, bio, BLK_TA_BACKMERGE);
2968
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 req->biotail->bi_next = bio;
2970 req->biotail = bio;
2971 req->nr_sectors = req->hard_nr_sectors += nr_sectors;
Jens Axboe22e2c502005-06-27 10:55:12 +02002972 req->ioprio = ioprio_best(req->ioprio, prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 drive_stat_acct(req, nr_sectors, 0);
2974 if (!attempt_back_merge(q, req))
Jens Axboe2e662b62006-07-13 11:55:04 +02002975 elv_merged_request(q, req, el_ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 goto out;
2977
2978 case ELEVATOR_FRONT_MERGE:
2979 BUG_ON(!rq_mergeable(req));
2980
Jens Axboe1aa4f242006-12-19 08:33:11 +01002981 if (!ll_front_merge_fn(q, req, bio))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 break;
2983
Jens Axboe2056a782006-03-23 20:00:26 +01002984 blk_add_trace_bio(q, bio, BLK_TA_FRONTMERGE);
2985
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 bio->bi_next = req->bio;
2987 req->bio = bio;
2988
2989 /*
2990 * may not be valid. if the low level driver said
2991 * it didn't need a bounce buffer then it better
2992 * not touch req->buffer either...
2993 */
2994 req->buffer = bio_data(bio);
Jens Axboe51da90f2006-07-18 04:14:45 +02002995 req->current_nr_sectors = bio_cur_sectors(bio);
2996 req->hard_cur_sectors = req->current_nr_sectors;
2997 req->sector = req->hard_sector = bio->bi_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 req->nr_sectors = req->hard_nr_sectors += nr_sectors;
Jens Axboe22e2c502005-06-27 10:55:12 +02002999 req->ioprio = ioprio_best(req->ioprio, prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 drive_stat_acct(req, nr_sectors, 0);
3001 if (!attempt_front_merge(q, req))
Jens Axboe2e662b62006-07-13 11:55:04 +02003002 elv_merged_request(q, req, el_ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003 goto out;
3004
Nick Piggin450991b2005-06-28 20:45:13 -07003005 /* ELV_NO_MERGE: elevator says don't/can't merge. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 default:
Nick Piggin450991b2005-06-28 20:45:13 -07003007 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 }
3009
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010get_rq:
Nick Piggin450991b2005-06-28 20:45:13 -07003011 /*
Jens Axboe7749a8d2006-12-13 13:02:26 +01003012 * This sync check and mask will be re-done in init_request_from_bio(),
3013 * but we need to set it earlier to expose the sync flag to the
3014 * rq allocator and io schedulers.
3015 */
3016 rw_flags = bio_data_dir(bio);
3017 if (sync)
3018 rw_flags |= REQ_RW_SYNC;
3019
3020 /*
Nick Piggin450991b2005-06-28 20:45:13 -07003021 * Grab a free request. This is might sleep but can not fail.
Nick Piggind6344532005-06-28 20:45:14 -07003022 * Returns with the queue unlocked.
Nick Piggin450991b2005-06-28 20:45:13 -07003023 */
Jens Axboe7749a8d2006-12-13 13:02:26 +01003024 req = get_request_wait(q, rw_flags, bio);
Nick Piggind6344532005-06-28 20:45:14 -07003025
Nick Piggin450991b2005-06-28 20:45:13 -07003026 /*
3027 * After dropping the lock and possibly sleeping here, our request
3028 * may now be mergeable after it had proven unmergeable (above).
3029 * We don't worry about that case for efficiency. It won't happen
3030 * often, and the elevators are able to handle it.
3031 */
Tejun Heo52d9e672006-01-06 09:49:58 +01003032 init_request_from_bio(req, bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033
Nick Piggin450991b2005-06-28 20:45:13 -07003034 spin_lock_irq(q->queue_lock);
3035 if (elv_queue_empty(q))
3036 blk_plug_device(q);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 add_request(q, req);
3038out:
Jens Axboe4a534f92005-04-16 15:25:40 -07003039 if (sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 __generic_unplug_device(q);
3041
3042 spin_unlock_irq(q->queue_lock);
3043 return 0;
3044
3045end_io:
NeilBrown6712ecf2007-09-27 12:47:43 +02003046 bio_endio(bio, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 return 0;
3048}
3049
3050/*
3051 * If bio->bi_dev is a partition, remap the location
3052 */
3053static inline void blk_partition_remap(struct bio *bio)
3054{
3055 struct block_device *bdev = bio->bi_bdev;
3056
3057 if (bdev != bdev->bd_contains) {
3058 struct hd_struct *p = bdev->bd_part;
Jens Axboea3623572005-11-01 09:26:16 +01003059 const int rw = bio_data_dir(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060
Jens Axboea3623572005-11-01 09:26:16 +01003061 p->sectors[rw] += bio_sectors(bio);
3062 p->ios[rw]++;
3063
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 bio->bi_sector += p->start_sect;
3065 bio->bi_bdev = bdev->bd_contains;
Alan D. Brunellec7149d62007-08-07 15:30:23 +02003066
3067 blk_add_trace_remap(bdev_get_queue(bio->bi_bdev), bio,
3068 bdev->bd_dev, bio->bi_sector,
3069 bio->bi_sector - p->start_sect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 }
3071}
3072
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073static void handle_bad_sector(struct bio *bio)
3074{
3075 char b[BDEVNAME_SIZE];
3076
3077 printk(KERN_INFO "attempt to access beyond end of device\n");
3078 printk(KERN_INFO "%s: rw=%ld, want=%Lu, limit=%Lu\n",
3079 bdevname(bio->bi_bdev, b),
3080 bio->bi_rw,
3081 (unsigned long long)bio->bi_sector + bio_sectors(bio),
3082 (long long)(bio->bi_bdev->bd_inode->i_size >> 9));
3083
3084 set_bit(BIO_EOF, &bio->bi_flags);
3085}
3086
Akinobu Mitac17bb492006-12-08 02:39:46 -08003087#ifdef CONFIG_FAIL_MAKE_REQUEST
3088
3089static DECLARE_FAULT_ATTR(fail_make_request);
3090
3091static int __init setup_fail_make_request(char *str)
3092{
3093 return setup_fault_attr(&fail_make_request, str);
3094}
3095__setup("fail_make_request=", setup_fail_make_request);
3096
3097static int should_fail_request(struct bio *bio)
3098{
3099 if ((bio->bi_bdev->bd_disk->flags & GENHD_FL_FAIL) ||
3100 (bio->bi_bdev->bd_part && bio->bi_bdev->bd_part->make_it_fail))
3101 return should_fail(&fail_make_request, bio->bi_size);
3102
3103 return 0;
3104}
3105
3106static int __init fail_make_request_debugfs(void)
3107{
3108 return init_fault_attr_dentries(&fail_make_request,
3109 "fail_make_request");
3110}
3111
3112late_initcall(fail_make_request_debugfs);
3113
3114#else /* CONFIG_FAIL_MAKE_REQUEST */
3115
3116static inline int should_fail_request(struct bio *bio)
3117{
3118 return 0;
3119}
3120
3121#endif /* CONFIG_FAIL_MAKE_REQUEST */
3122
Jens Axboec07e2b42007-07-18 13:27:58 +02003123/*
3124 * Check whether this bio extends beyond the end of the device.
3125 */
3126static inline int bio_check_eod(struct bio *bio, unsigned int nr_sectors)
3127{
3128 sector_t maxsector;
3129
3130 if (!nr_sectors)
3131 return 0;
3132
3133 /* Test device or partition size, when known. */
3134 maxsector = bio->bi_bdev->bd_inode->i_size >> 9;
3135 if (maxsector) {
3136 sector_t sector = bio->bi_sector;
3137
3138 if (maxsector < nr_sectors || maxsector - nr_sectors < sector) {
3139 /*
3140 * This may well happen - the kernel calls bread()
3141 * without checking the size of the device, e.g., when
3142 * mounting a device.
3143 */
3144 handle_bad_sector(bio);
3145 return 1;
3146 }
3147 }
3148
3149 return 0;
3150}
3151
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152/**
3153 * generic_make_request: hand a buffer to its device driver for I/O
3154 * @bio: The bio describing the location in memory and on the device.
3155 *
3156 * generic_make_request() is used to make I/O requests of block
3157 * devices. It is passed a &struct bio, which describes the I/O that needs
3158 * to be done.
3159 *
3160 * generic_make_request() does not return any status. The
3161 * success/failure status of the request, along with notification of
3162 * completion, is delivered asynchronously through the bio->bi_end_io
3163 * function described (one day) else where.
3164 *
3165 * The caller of generic_make_request must make sure that bi_io_vec
3166 * are set to describe the memory buffer, and that bi_dev and bi_sector are
3167 * set to describe the device address, and the
3168 * bi_end_io and optionally bi_private are set to describe how
3169 * completion notification should be signaled.
3170 *
3171 * generic_make_request and the drivers it calls may use bi_next if this
3172 * bio happens to be merged with someone else, and may change bi_dev and
3173 * bi_sector for remaps as it sees fit. So the values of these fields
3174 * should NOT be depended on after the call to generic_make_request.
3175 */
Neil Brownd89d8792007-05-01 09:53:42 +02003176static inline void __generic_make_request(struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177{
Jens Axboe165125e2007-07-24 09:28:11 +02003178 struct request_queue *q;
NeilBrown5ddfe962006-10-30 22:07:21 -08003179 sector_t old_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 int ret, nr_sectors = bio_sectors(bio);
Jens Axboe2056a782006-03-23 20:00:26 +01003181 dev_t old_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182
3183 might_sleep();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184
Jens Axboec07e2b42007-07-18 13:27:58 +02003185 if (bio_check_eod(bio, nr_sectors))
3186 goto end_io;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187
3188 /*
3189 * Resolve the mapping until finished. (drivers are
3190 * still free to implement/resolve their own stacking
3191 * by explicitly returning 0)
3192 *
3193 * NOTE: we don't repeat the blk_size check for each new device.
3194 * Stacking drivers are expected to know what they are doing.
3195 */
NeilBrown5ddfe962006-10-30 22:07:21 -08003196 old_sector = -1;
Jens Axboe2056a782006-03-23 20:00:26 +01003197 old_dev = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 do {
3199 char b[BDEVNAME_SIZE];
3200
3201 q = bdev_get_queue(bio->bi_bdev);
3202 if (!q) {
3203 printk(KERN_ERR
3204 "generic_make_request: Trying to access "
3205 "nonexistent block-device %s (%Lu)\n",
3206 bdevname(bio->bi_bdev, b),
3207 (long long) bio->bi_sector);
3208end_io:
NeilBrown6712ecf2007-09-27 12:47:43 +02003209 bio_endio(bio, -EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210 break;
3211 }
3212
Jens Axboe4fa253f2007-07-18 13:13:10 +02003213 if (unlikely(nr_sectors > q->max_hw_sectors)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214 printk("bio too big device %s (%u > %u)\n",
3215 bdevname(bio->bi_bdev, b),
3216 bio_sectors(bio),
3217 q->max_hw_sectors);
3218 goto end_io;
3219 }
3220
Nick Pigginfde6ad22005-06-23 00:08:53 -07003221 if (unlikely(test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222 goto end_io;
3223
Akinobu Mitac17bb492006-12-08 02:39:46 -08003224 if (should_fail_request(bio))
3225 goto end_io;
3226
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 /*
3228 * If this device has partitions, remap block n
3229 * of partition p to block n+start(p) of the disk.
3230 */
3231 blk_partition_remap(bio);
3232
NeilBrown5ddfe962006-10-30 22:07:21 -08003233 if (old_sector != -1)
Jens Axboe4fa253f2007-07-18 13:13:10 +02003234 blk_add_trace_remap(q, bio, old_dev, bio->bi_sector,
NeilBrown5ddfe962006-10-30 22:07:21 -08003235 old_sector);
Jens Axboe2056a782006-03-23 20:00:26 +01003236
3237 blk_add_trace_bio(q, bio, BLK_TA_QUEUE);
3238
NeilBrown5ddfe962006-10-30 22:07:21 -08003239 old_sector = bio->bi_sector;
Jens Axboe2056a782006-03-23 20:00:26 +01003240 old_dev = bio->bi_bdev->bd_dev;
3241
Jens Axboec07e2b42007-07-18 13:27:58 +02003242 if (bio_check_eod(bio, nr_sectors))
3243 goto end_io;
NeilBrown5ddfe962006-10-30 22:07:21 -08003244
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 ret = q->make_request_fn(q, bio);
3246 } while (ret);
3247}
3248
Neil Brownd89d8792007-05-01 09:53:42 +02003249/*
3250 * We only want one ->make_request_fn to be active at a time,
3251 * else stack usage with stacked devices could be a problem.
3252 * So use current->bio_{list,tail} to keep a list of requests
3253 * submited by a make_request_fn function.
3254 * current->bio_tail is also used as a flag to say if
3255 * generic_make_request is currently active in this task or not.
3256 * If it is NULL, then no make_request is active. If it is non-NULL,
3257 * then a make_request is active, and new requests should be added
3258 * at the tail
3259 */
3260void generic_make_request(struct bio *bio)
3261{
3262 if (current->bio_tail) {
3263 /* make_request is active */
3264 *(current->bio_tail) = bio;
3265 bio->bi_next = NULL;
3266 current->bio_tail = &bio->bi_next;
3267 return;
3268 }
3269 /* following loop may be a bit non-obvious, and so deserves some
3270 * explanation.
3271 * Before entering the loop, bio->bi_next is NULL (as all callers
3272 * ensure that) so we have a list with a single bio.
3273 * We pretend that we have just taken it off a longer list, so
3274 * we assign bio_list to the next (which is NULL) and bio_tail
3275 * to &bio_list, thus initialising the bio_list of new bios to be
3276 * added. __generic_make_request may indeed add some more bios
3277 * through a recursive call to generic_make_request. If it
3278 * did, we find a non-NULL value in bio_list and re-enter the loop
3279 * from the top. In this case we really did just take the bio
3280 * of the top of the list (no pretending) and so fixup bio_list and
3281 * bio_tail or bi_next, and call into __generic_make_request again.
3282 *
3283 * The loop was structured like this to make only one call to
3284 * __generic_make_request (which is important as it is large and
3285 * inlined) and to keep the structure simple.
3286 */
3287 BUG_ON(bio->bi_next);
3288 do {
3289 current->bio_list = bio->bi_next;
3290 if (bio->bi_next == NULL)
3291 current->bio_tail = &current->bio_list;
3292 else
3293 bio->bi_next = NULL;
3294 __generic_make_request(bio);
3295 bio = current->bio_list;
3296 } while (bio);
3297 current->bio_tail = NULL; /* deactivate */
3298}
3299
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300EXPORT_SYMBOL(generic_make_request);
3301
3302/**
3303 * submit_bio: submit a bio to the block device layer for I/O
3304 * @rw: whether to %READ or %WRITE, or maybe to %READA (read ahead)
3305 * @bio: The &struct bio which describes the I/O
3306 *
3307 * submit_bio() is very similar in purpose to generic_make_request(), and
3308 * uses that function to do most of the work. Both are fairly rough
3309 * interfaces, @bio must be presetup and ready for I/O.
3310 *
3311 */
3312void submit_bio(int rw, struct bio *bio)
3313{
3314 int count = bio_sectors(bio);
3315
3316 BIO_BUG_ON(!bio->bi_size);
3317 BIO_BUG_ON(!bio->bi_io_vec);
Jens Axboe22e2c502005-06-27 10:55:12 +02003318 bio->bi_rw |= rw;
Andrew Mortonfaccbd4b2006-12-10 02:19:35 -08003319 if (rw & WRITE) {
Christoph Lameterf8891e52006-06-30 01:55:45 -07003320 count_vm_events(PGPGOUT, count);
Andrew Mortonfaccbd4b2006-12-10 02:19:35 -08003321 } else {
3322 task_io_account_read(bio->bi_size);
Christoph Lameterf8891e52006-06-30 01:55:45 -07003323 count_vm_events(PGPGIN, count);
Andrew Mortonfaccbd4b2006-12-10 02:19:35 -08003324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325
3326 if (unlikely(block_dump)) {
3327 char b[BDEVNAME_SIZE];
3328 printk(KERN_DEBUG "%s(%d): %s block %Lu on %s\n",
3329 current->comm, current->pid,
3330 (rw & WRITE) ? "WRITE" : "READ",
3331 (unsigned long long)bio->bi_sector,
3332 bdevname(bio->bi_bdev,b));
3333 }
3334
3335 generic_make_request(bio);
3336}
3337
3338EXPORT_SYMBOL(submit_bio);
3339
Adrian Bunk93d17d32005-06-25 14:59:10 -07003340static void blk_recalc_rq_sectors(struct request *rq, int nsect)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341{
3342 if (blk_fs_request(rq)) {
3343 rq->hard_sector += nsect;
3344 rq->hard_nr_sectors -= nsect;
3345
3346 /*
3347 * Move the I/O submission pointers ahead if required.
3348 */
3349 if ((rq->nr_sectors >= rq->hard_nr_sectors) &&
3350 (rq->sector <= rq->hard_sector)) {
3351 rq->sector = rq->hard_sector;
3352 rq->nr_sectors = rq->hard_nr_sectors;
3353 rq->hard_cur_sectors = bio_cur_sectors(rq->bio);
3354 rq->current_nr_sectors = rq->hard_cur_sectors;
3355 rq->buffer = bio_data(rq->bio);
3356 }
3357
3358 /*
3359 * if total number of sectors is less than the first segment
3360 * size, something has gone terribly wrong
3361 */
3362 if (rq->nr_sectors < rq->current_nr_sectors) {
3363 printk("blk: request botched\n");
3364 rq->nr_sectors = rq->current_nr_sectors;
3365 }
3366 }
3367}
3368
3369static int __end_that_request_first(struct request *req, int uptodate,
3370 int nr_bytes)
3371{
3372 int total_bytes, bio_nbytes, error, next_idx = 0;
3373 struct bio *bio;
3374
Jens Axboe2056a782006-03-23 20:00:26 +01003375 blk_add_trace_rq(req->q, req, BLK_TA_COMPLETE);
3376
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377 /*
3378 * extend uptodate bool to allow < 0 value to be direct io error
3379 */
3380 error = 0;
3381 if (end_io_error(uptodate))
3382 error = !uptodate ? -EIO : uptodate;
3383
3384 /*
3385 * for a REQ_BLOCK_PC request, we want to carry any eventual
3386 * sense key with us all the way through
3387 */
3388 if (!blk_pc_request(req))
3389 req->errors = 0;
3390
3391 if (!uptodate) {
Jens Axboe4aff5e22006-08-10 08:44:47 +02003392 if (blk_fs_request(req) && !(req->cmd_flags & REQ_QUIET))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393 printk("end_request: I/O error, dev %s, sector %llu\n",
3394 req->rq_disk ? req->rq_disk->disk_name : "?",
3395 (unsigned long long)req->sector);
3396 }
3397
Jens Axboed72d9042005-11-01 08:35:42 +01003398 if (blk_fs_request(req) && req->rq_disk) {
Jens Axboea3623572005-11-01 09:26:16 +01003399 const int rw = rq_data_dir(req);
3400
Jens Axboe53e86062006-01-17 11:09:27 +01003401 disk_stat_add(req->rq_disk, sectors[rw], nr_bytes >> 9);
Jens Axboed72d9042005-11-01 08:35:42 +01003402 }
3403
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404 total_bytes = bio_nbytes = 0;
3405 while ((bio = req->bio) != NULL) {
3406 int nbytes;
3407
3408 if (nr_bytes >= bio->bi_size) {
3409 req->bio = bio->bi_next;
3410 nbytes = bio->bi_size;
NeilBrown5bb23a62007-09-27 12:46:13 +02003411 req_bio_endio(req, bio, nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 next_idx = 0;
3413 bio_nbytes = 0;
3414 } else {
3415 int idx = bio->bi_idx + next_idx;
3416
3417 if (unlikely(bio->bi_idx >= bio->bi_vcnt)) {
3418 blk_dump_rq_flags(req, "__end_that");
3419 printk("%s: bio idx %d >= vcnt %d\n",
3420 __FUNCTION__,
3421 bio->bi_idx, bio->bi_vcnt);
3422 break;
3423 }
3424
3425 nbytes = bio_iovec_idx(bio, idx)->bv_len;
3426 BIO_BUG_ON(nbytes > bio->bi_size);
3427
3428 /*
3429 * not a complete bvec done
3430 */
3431 if (unlikely(nbytes > nr_bytes)) {
3432 bio_nbytes += nr_bytes;
3433 total_bytes += nr_bytes;
3434 break;
3435 }
3436
3437 /*
3438 * advance to the next vector
3439 */
3440 next_idx++;
3441 bio_nbytes += nbytes;
3442 }
3443
3444 total_bytes += nbytes;
3445 nr_bytes -= nbytes;
3446
3447 if ((bio = req->bio)) {
3448 /*
3449 * end more in this run, or just return 'not-done'
3450 */
3451 if (unlikely(nr_bytes <= 0))
3452 break;
3453 }
3454 }
3455
3456 /*
3457 * completely done
3458 */
3459 if (!req->bio)
3460 return 0;
3461
3462 /*
3463 * if the request wasn't completed, update state
3464 */
3465 if (bio_nbytes) {
NeilBrown5bb23a62007-09-27 12:46:13 +02003466 req_bio_endio(req, bio, bio_nbytes, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467 bio->bi_idx += next_idx;
3468 bio_iovec(bio)->bv_offset += nr_bytes;
3469 bio_iovec(bio)->bv_len -= nr_bytes;
3470 }
3471
3472 blk_recalc_rq_sectors(req, total_bytes >> 9);
3473 blk_recalc_rq_segments(req);
3474 return 1;
3475}
3476
3477/**
3478 * end_that_request_first - end I/O on a request
3479 * @req: the request being processed
3480 * @uptodate: 1 for success, 0 for I/O error, < 0 for specific error
3481 * @nr_sectors: number of sectors to end I/O on
3482 *
3483 * Description:
3484 * Ends I/O on a number of sectors attached to @req, and sets it up
3485 * for the next range of segments (if any) in the cluster.
3486 *
3487 * Return:
3488 * 0 - we are done with this request, call end_that_request_last()
3489 * 1 - still buffers pending for this request
3490 **/
3491int end_that_request_first(struct request *req, int uptodate, int nr_sectors)
3492{
3493 return __end_that_request_first(req, uptodate, nr_sectors << 9);
3494}
3495
3496EXPORT_SYMBOL(end_that_request_first);
3497
3498/**
3499 * end_that_request_chunk - end I/O on a request
3500 * @req: the request being processed
3501 * @uptodate: 1 for success, 0 for I/O error, < 0 for specific error
3502 * @nr_bytes: number of bytes to complete
3503 *
3504 * Description:
3505 * Ends I/O on a number of bytes attached to @req, and sets it up
3506 * for the next range of segments (if any). Like end_that_request_first(),
3507 * but deals with bytes instead of sectors.
3508 *
3509 * Return:
3510 * 0 - we are done with this request, call end_that_request_last()
3511 * 1 - still buffers pending for this request
3512 **/
3513int end_that_request_chunk(struct request *req, int uptodate, int nr_bytes)
3514{
3515 return __end_that_request_first(req, uptodate, nr_bytes);
3516}
3517
3518EXPORT_SYMBOL(end_that_request_chunk);
3519
3520/*
Jens Axboeff856ba2006-01-09 16:02:34 +01003521 * splice the completion data to a local structure and hand off to
3522 * process_completion_queue() to complete the requests
3523 */
3524static void blk_done_softirq(struct softirq_action *h)
3525{
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07003526 struct list_head *cpu_list, local_list;
Jens Axboeff856ba2006-01-09 16:02:34 +01003527
3528 local_irq_disable();
3529 cpu_list = &__get_cpu_var(blk_cpu_done);
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07003530 list_replace_init(cpu_list, &local_list);
Jens Axboeff856ba2006-01-09 16:02:34 +01003531 local_irq_enable();
3532
3533 while (!list_empty(&local_list)) {
3534 struct request *rq = list_entry(local_list.next, struct request, donelist);
3535
3536 list_del_init(&rq->donelist);
3537 rq->q->softirq_done_fn(rq);
3538 }
3539}
3540
Satyam Sharmadb47d472007-08-23 09:29:40 +02003541static int __cpuinit blk_cpu_notify(struct notifier_block *self, unsigned long action,
Jens Axboeff856ba2006-01-09 16:02:34 +01003542 void *hcpu)
3543{
3544 /*
3545 * If a CPU goes away, splice its entries to the current CPU
3546 * and trigger a run of the softirq
3547 */
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003548 if (action == CPU_DEAD || action == CPU_DEAD_FROZEN) {
Jens Axboeff856ba2006-01-09 16:02:34 +01003549 int cpu = (unsigned long) hcpu;
3550
3551 local_irq_disable();
3552 list_splice_init(&per_cpu(blk_cpu_done, cpu),
3553 &__get_cpu_var(blk_cpu_done));
3554 raise_softirq_irqoff(BLOCK_SOFTIRQ);
3555 local_irq_enable();
3556 }
3557
3558 return NOTIFY_OK;
3559}
3560
3561
Satyam Sharmadb47d472007-08-23 09:29:40 +02003562static struct notifier_block blk_cpu_notifier __cpuinitdata = {
Jens Axboeff856ba2006-01-09 16:02:34 +01003563 .notifier_call = blk_cpu_notify,
3564};
3565
Jens Axboeff856ba2006-01-09 16:02:34 +01003566/**
3567 * blk_complete_request - end I/O on a request
3568 * @req: the request being processed
3569 *
3570 * Description:
3571 * Ends all I/O on a request. It does not handle partial completions,
Andreas Mohrd6e05ed2006-06-26 18:35:02 +02003572 * unless the driver actually implements this in its completion callback
Jens Axboe4fa253f2007-07-18 13:13:10 +02003573 * through requeueing. The actual completion happens out-of-order,
Jens Axboeff856ba2006-01-09 16:02:34 +01003574 * through a softirq handler. The user must have registered a completion
3575 * callback through blk_queue_softirq_done().
3576 **/
3577
3578void blk_complete_request(struct request *req)
3579{
3580 struct list_head *cpu_list;
3581 unsigned long flags;
3582
3583 BUG_ON(!req->q->softirq_done_fn);
3584
3585 local_irq_save(flags);
3586
3587 cpu_list = &__get_cpu_var(blk_cpu_done);
3588 list_add_tail(&req->donelist, cpu_list);
3589 raise_softirq_irqoff(BLOCK_SOFTIRQ);
3590
3591 local_irq_restore(flags);
3592}
3593
3594EXPORT_SYMBOL(blk_complete_request);
3595
3596/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597 * queue lock must be held
3598 */
Tejun Heo8ffdc652006-01-06 09:49:03 +01003599void end_that_request_last(struct request *req, int uptodate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600{
3601 struct gendisk *disk = req->rq_disk;
Tejun Heo8ffdc652006-01-06 09:49:03 +01003602 int error;
3603
3604 /*
3605 * extend uptodate bool to allow < 0 value to be direct io error
3606 */
3607 error = 0;
3608 if (end_io_error(uptodate))
3609 error = !uptodate ? -EIO : uptodate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610
3611 if (unlikely(laptop_mode) && blk_fs_request(req))
3612 laptop_io_completion();
3613
Jens Axboefd0ff8a2006-05-23 11:23:49 +02003614 /*
3615 * Account IO completion. bar_rq isn't accounted as a normal
3616 * IO on queueing nor completion. Accounting the containing
3617 * request is enough.
3618 */
3619 if (disk && blk_fs_request(req) && req != &req->q->bar_rq) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620 unsigned long duration = jiffies - req->start_time;
Jens Axboea3623572005-11-01 09:26:16 +01003621 const int rw = rq_data_dir(req);
3622
3623 __disk_stat_inc(disk, ios[rw]);
3624 __disk_stat_add(disk, ticks[rw], duration);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625 disk_round_stats(disk);
3626 disk->in_flight--;
3627 }
3628 if (req->end_io)
Tejun Heo8ffdc652006-01-06 09:49:03 +01003629 req->end_io(req, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630 else
3631 __blk_put_request(req->q, req);
3632}
3633
3634EXPORT_SYMBOL(end_that_request_last);
3635
Jens Axboea0cd1282007-09-21 10:41:07 +02003636static inline void __end_request(struct request *rq, int uptodate,
3637 unsigned int nr_bytes, int dequeue)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638{
Jens Axboea0cd1282007-09-21 10:41:07 +02003639 if (!end_that_request_chunk(rq, uptodate, nr_bytes)) {
3640 if (dequeue)
3641 blkdev_dequeue_request(rq);
3642 add_disk_randomness(rq->rq_disk);
3643 end_that_request_last(rq, uptodate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644 }
3645}
3646
Jens Axboea0cd1282007-09-21 10:41:07 +02003647static unsigned int rq_byte_size(struct request *rq)
3648{
3649 if (blk_fs_request(rq))
3650 return rq->hard_nr_sectors << 9;
3651
3652 return rq->data_len;
3653}
3654
3655/**
3656 * end_queued_request - end all I/O on a queued request
3657 * @rq: the request being processed
3658 * @uptodate: error value or 0/1 uptodate flag
3659 *
3660 * Description:
3661 * Ends all I/O on a request, and removes it from the block layer queues.
3662 * Not suitable for normal IO completion, unless the driver still has
3663 * the request attached to the block layer.
3664 *
3665 **/
3666void end_queued_request(struct request *rq, int uptodate)
3667{
3668 __end_request(rq, uptodate, rq_byte_size(rq), 1);
3669}
3670EXPORT_SYMBOL(end_queued_request);
3671
3672/**
3673 * end_dequeued_request - end all I/O on a dequeued request
3674 * @rq: the request being processed
3675 * @uptodate: error value or 0/1 uptodate flag
3676 *
3677 * Description:
3678 * Ends all I/O on a request. The request must already have been
3679 * dequeued using blkdev_dequeue_request(), as is normally the case
3680 * for most drivers.
3681 *
3682 **/
3683void end_dequeued_request(struct request *rq, int uptodate)
3684{
3685 __end_request(rq, uptodate, rq_byte_size(rq), 0);
3686}
3687EXPORT_SYMBOL(end_dequeued_request);
3688
3689
3690/**
3691 * end_request - end I/O on the current segment of the request
3692 * @rq: the request being processed
3693 * @uptodate: error value or 0/1 uptodate flag
3694 *
3695 * Description:
3696 * Ends I/O on the current segment of a request. If that is the only
3697 * remaining segment, the request is also completed and freed.
3698 *
3699 * This is a remnant of how older block drivers handled IO completions.
3700 * Modern drivers typically end IO on the full request in one go, unless
3701 * they have a residual value to account for. For that case this function
3702 * isn't really useful, unless the residual just happens to be the
3703 * full current segment. In other words, don't use this function in new
3704 * code. Either use end_request_completely(), or the
3705 * end_that_request_chunk() (along with end_that_request_last()) for
3706 * partial completions.
3707 *
3708 **/
3709void end_request(struct request *req, int uptodate)
3710{
3711 __end_request(req, uptodate, req->hard_cur_sectors << 9, 1);
3712}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713EXPORT_SYMBOL(end_request);
3714
NeilBrown66846572007-08-16 13:31:28 +02003715static void blk_rq_bio_prep(struct request_queue *q, struct request *rq,
3716 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717{
Jens Axboe4aff5e22006-08-10 08:44:47 +02003718 /* first two bits are identical in rq->cmd_flags and bio->bi_rw */
3719 rq->cmd_flags |= (bio->bi_rw & 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720
3721 rq->nr_phys_segments = bio_phys_segments(q, bio);
3722 rq->nr_hw_segments = bio_hw_segments(q, bio);
3723 rq->current_nr_sectors = bio_cur_sectors(bio);
3724 rq->hard_cur_sectors = rq->current_nr_sectors;
3725 rq->hard_nr_sectors = rq->nr_sectors = bio_sectors(bio);
3726 rq->buffer = bio_data(bio);
Mike Christie0e75f902006-12-01 10:40:55 +01003727 rq->data_len = bio->bi_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728
3729 rq->bio = rq->biotail = bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003730
NeilBrown66846572007-08-16 13:31:28 +02003731 if (bio->bi_bdev)
3732 rq->rq_disk = bio->bi_bdev->bd_disk;
3733}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734
3735int kblockd_schedule_work(struct work_struct *work)
3736{
3737 return queue_work(kblockd_workqueue, work);
3738}
3739
3740EXPORT_SYMBOL(kblockd_schedule_work);
3741
Andrew Morton19a75d82007-05-09 02:33:56 -07003742void kblockd_flush_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743{
Oleg Nesterov28e53bd2007-05-09 02:34:22 -07003744 cancel_work_sync(work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745}
Andrew Morton19a75d82007-05-09 02:33:56 -07003746EXPORT_SYMBOL(kblockd_flush_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747
3748int __init blk_dev_init(void)
3749{
Jens Axboeff856ba2006-01-09 16:02:34 +01003750 int i;
3751
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752 kblockd_workqueue = create_workqueue("kblockd");
3753 if (!kblockd_workqueue)
3754 panic("Failed to create kblockd\n");
3755
3756 request_cachep = kmem_cache_create("blkdev_requests",
Paul Mundt20c2df82007-07-20 10:11:58 +09003757 sizeof(struct request), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758
3759 requestq_cachep = kmem_cache_create("blkdev_queue",
Jens Axboe165125e2007-07-24 09:28:11 +02003760 sizeof(struct request_queue), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761
3762 iocontext_cachep = kmem_cache_create("blkdev_ioc",
Paul Mundt20c2df82007-07-20 10:11:58 +09003763 sizeof(struct io_context), 0, SLAB_PANIC, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08003765 for_each_possible_cpu(i)
Jens Axboeff856ba2006-01-09 16:02:34 +01003766 INIT_LIST_HEAD(&per_cpu(blk_cpu_done, i));
3767
3768 open_softirq(BLOCK_SOFTIRQ, blk_done_softirq, NULL);
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07003769 register_hotcpu_notifier(&blk_cpu_notifier);
Jens Axboeff856ba2006-01-09 16:02:34 +01003770
Vasily Tarasovf772b3d2007-03-27 08:52:47 +02003771 blk_max_low_pfn = max_low_pfn - 1;
3772 blk_max_pfn = max_pfn - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773
3774 return 0;
3775}
3776
3777/*
3778 * IO Context helper functions
3779 */
3780void put_io_context(struct io_context *ioc)
3781{
3782 if (ioc == NULL)
3783 return;
3784
3785 BUG_ON(atomic_read(&ioc->refcount) == 0);
3786
3787 if (atomic_dec_and_test(&ioc->refcount)) {
Jens Axboee2d74ac2006-03-28 08:59:01 +02003788 struct cfq_io_context *cic;
3789
Al Viro334e94d2006-03-18 15:05:53 -05003790 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791 if (ioc->aic && ioc->aic->dtor)
3792 ioc->aic->dtor(ioc->aic);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003793 if (ioc->cic_root.rb_node != NULL) {
Jens Axboe7143dd42006-03-28 09:00:28 +02003794 struct rb_node *n = rb_first(&ioc->cic_root);
3795
3796 cic = rb_entry(n, struct cfq_io_context, rb_node);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003797 cic->dtor(ioc);
3798 }
Al Viro334e94d2006-03-18 15:05:53 -05003799 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800
3801 kmem_cache_free(iocontext_cachep, ioc);
3802 }
3803}
3804EXPORT_SYMBOL(put_io_context);
3805
3806/* Called by the exitting task */
3807void exit_io_context(void)
3808{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809 struct io_context *ioc;
Jens Axboee2d74ac2006-03-28 08:59:01 +02003810 struct cfq_io_context *cic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811
Jens Axboe22e2c502005-06-27 10:55:12 +02003812 task_lock(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813 ioc = current->io_context;
3814 current->io_context = NULL;
Jens Axboe22e2c502005-06-27 10:55:12 +02003815 task_unlock(current);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816
Oleg Nesterov25034d72006-08-29 09:15:14 +02003817 ioc->task = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818 if (ioc->aic && ioc->aic->exit)
3819 ioc->aic->exit(ioc->aic);
Jens Axboee2d74ac2006-03-28 08:59:01 +02003820 if (ioc->cic_root.rb_node != NULL) {
3821 cic = rb_entry(rb_first(&ioc->cic_root), struct cfq_io_context, rb_node);
3822 cic->exit(ioc);
3823 }
Oleg Nesterov25034d72006-08-29 09:15:14 +02003824
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825 put_io_context(ioc);
3826}
3827
3828/*
3829 * If the current task has no IO context then create one and initialise it.
Nick Pigginfb3cc432005-06-28 20:45:15 -07003830 * Otherwise, return its existing IO context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831 *
Nick Pigginfb3cc432005-06-28 20:45:15 -07003832 * This returned IO context doesn't have a specifically elevated refcount,
3833 * but since the current task itself holds a reference, the context can be
3834 * used in general code, so long as it stays within `current` context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835 */
Jens Axboeb5deef92006-07-19 23:39:40 +02003836static struct io_context *current_io_context(gfp_t gfp_flags, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837{
3838 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839 struct io_context *ret;
3840
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841 ret = tsk->io_context;
Nick Pigginfb3cc432005-06-28 20:45:15 -07003842 if (likely(ret))
3843 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844
Jens Axboeb5deef92006-07-19 23:39:40 +02003845 ret = kmem_cache_alloc_node(iocontext_cachep, gfp_flags, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846 if (ret) {
3847 atomic_set(&ret->refcount, 1);
Jens Axboe22e2c502005-06-27 10:55:12 +02003848 ret->task = current;
Jens Axboefc463792006-08-29 09:05:44 +02003849 ret->ioprio_changed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850 ret->last_waited = jiffies; /* doesn't matter... */
3851 ret->nr_batch_requests = 0; /* because this is 0 */
3852 ret->aic = NULL;
Jens Axboee2d74ac2006-03-28 08:59:01 +02003853 ret->cic_root.rb_node = NULL;
Jens Axboe4e521c22007-04-24 21:17:33 +02003854 ret->ioc_data = NULL;
Oleg Nesterov9f83e452006-08-21 08:34:15 +02003855 /* make sure set_task_ioprio() sees the settings above */
3856 smp_wmb();
Nick Pigginfb3cc432005-06-28 20:45:15 -07003857 tsk->io_context = ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858 }
3859
3860 return ret;
3861}
Nick Pigginfb3cc432005-06-28 20:45:15 -07003862
3863/*
3864 * If the current task has no IO context then create one and initialise it.
3865 * If it does have a context, take a ref on it.
3866 *
3867 * This is always called in the context of the task which submitted the I/O.
3868 */
Jens Axboeb5deef92006-07-19 23:39:40 +02003869struct io_context *get_io_context(gfp_t gfp_flags, int node)
Nick Pigginfb3cc432005-06-28 20:45:15 -07003870{
3871 struct io_context *ret;
Jens Axboeb5deef92006-07-19 23:39:40 +02003872 ret = current_io_context(gfp_flags, node);
Nick Pigginfb3cc432005-06-28 20:45:15 -07003873 if (likely(ret))
3874 atomic_inc(&ret->refcount);
3875 return ret;
3876}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877EXPORT_SYMBOL(get_io_context);
3878
3879void copy_io_context(struct io_context **pdst, struct io_context **psrc)
3880{
3881 struct io_context *src = *psrc;
3882 struct io_context *dst = *pdst;
3883
3884 if (src) {
3885 BUG_ON(atomic_read(&src->refcount) == 0);
3886 atomic_inc(&src->refcount);
3887 put_io_context(dst);
3888 *pdst = src;
3889 }
3890}
3891EXPORT_SYMBOL(copy_io_context);
3892
3893void swap_io_context(struct io_context **ioc1, struct io_context **ioc2)
3894{
3895 struct io_context *temp;
3896 temp = *ioc1;
3897 *ioc1 = *ioc2;
3898 *ioc2 = temp;
3899}
3900EXPORT_SYMBOL(swap_io_context);
3901
3902/*
3903 * sysfs parts below
3904 */
3905struct queue_sysfs_entry {
3906 struct attribute attr;
3907 ssize_t (*show)(struct request_queue *, char *);
3908 ssize_t (*store)(struct request_queue *, const char *, size_t);
3909};
3910
3911static ssize_t
3912queue_var_show(unsigned int var, char *page)
3913{
3914 return sprintf(page, "%d\n", var);
3915}
3916
3917static ssize_t
3918queue_var_store(unsigned long *var, const char *page, size_t count)
3919{
3920 char *p = (char *) page;
3921
3922 *var = simple_strtoul(p, &p, 10);
3923 return count;
3924}
3925
3926static ssize_t queue_requests_show(struct request_queue *q, char *page)
3927{
3928 return queue_var_show(q->nr_requests, (page));
3929}
3930
3931static ssize_t
3932queue_requests_store(struct request_queue *q, const char *page, size_t count)
3933{
3934 struct request_list *rl = &q->rq;
Al Viroc981ff92006-03-18 13:51:29 -05003935 unsigned long nr;
3936 int ret = queue_var_store(&nr, page, count);
3937 if (nr < BLKDEV_MIN_RQ)
3938 nr = BLKDEV_MIN_RQ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939
Al Viroc981ff92006-03-18 13:51:29 -05003940 spin_lock_irq(q->queue_lock);
3941 q->nr_requests = nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942 blk_queue_congestion_threshold(q);
3943
3944 if (rl->count[READ] >= queue_congestion_on_threshold(q))
Thomas Maier79e2de42006-10-19 23:28:15 -07003945 blk_set_queue_congested(q, READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946 else if (rl->count[READ] < queue_congestion_off_threshold(q))
Thomas Maier79e2de42006-10-19 23:28:15 -07003947 blk_clear_queue_congested(q, READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948
3949 if (rl->count[WRITE] >= queue_congestion_on_threshold(q))
Thomas Maier79e2de42006-10-19 23:28:15 -07003950 blk_set_queue_congested(q, WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951 else if (rl->count[WRITE] < queue_congestion_off_threshold(q))
Thomas Maier79e2de42006-10-19 23:28:15 -07003952 blk_clear_queue_congested(q, WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953
3954 if (rl->count[READ] >= q->nr_requests) {
3955 blk_set_queue_full(q, READ);
3956 } else if (rl->count[READ]+1 <= q->nr_requests) {
3957 blk_clear_queue_full(q, READ);
3958 wake_up(&rl->wait[READ]);
3959 }
3960
3961 if (rl->count[WRITE] >= q->nr_requests) {
3962 blk_set_queue_full(q, WRITE);
3963 } else if (rl->count[WRITE]+1 <= q->nr_requests) {
3964 blk_clear_queue_full(q, WRITE);
3965 wake_up(&rl->wait[WRITE]);
3966 }
Al Viroc981ff92006-03-18 13:51:29 -05003967 spin_unlock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968 return ret;
3969}
3970
3971static ssize_t queue_ra_show(struct request_queue *q, char *page)
3972{
3973 int ra_kb = q->backing_dev_info.ra_pages << (PAGE_CACHE_SHIFT - 10);
3974
3975 return queue_var_show(ra_kb, (page));
3976}
3977
3978static ssize_t
3979queue_ra_store(struct request_queue *q, const char *page, size_t count)
3980{
3981 unsigned long ra_kb;
3982 ssize_t ret = queue_var_store(&ra_kb, page, count);
3983
3984 spin_lock_irq(q->queue_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985 q->backing_dev_info.ra_pages = ra_kb >> (PAGE_CACHE_SHIFT - 10);
3986 spin_unlock_irq(q->queue_lock);
3987
3988 return ret;
3989}
3990
3991static ssize_t queue_max_sectors_show(struct request_queue *q, char *page)
3992{
3993 int max_sectors_kb = q->max_sectors >> 1;
3994
3995 return queue_var_show(max_sectors_kb, (page));
3996}
3997
3998static ssize_t
3999queue_max_sectors_store(struct request_queue *q, const char *page, size_t count)
4000{
4001 unsigned long max_sectors_kb,
4002 max_hw_sectors_kb = q->max_hw_sectors >> 1,
4003 page_kb = 1 << (PAGE_CACHE_SHIFT - 10);
4004 ssize_t ret = queue_var_store(&max_sectors_kb, page, count);
4005 int ra_kb;
4006
4007 if (max_sectors_kb > max_hw_sectors_kb || max_sectors_kb < page_kb)
4008 return -EINVAL;
4009 /*
4010 * Take the queue lock to update the readahead and max_sectors
4011 * values synchronously:
4012 */
4013 spin_lock_irq(q->queue_lock);
4014 /*
4015 * Trim readahead window as well, if necessary:
4016 */
4017 ra_kb = q->backing_dev_info.ra_pages << (PAGE_CACHE_SHIFT - 10);
4018 if (ra_kb > max_sectors_kb)
4019 q->backing_dev_info.ra_pages =
4020 max_sectors_kb >> (PAGE_CACHE_SHIFT - 10);
4021
4022 q->max_sectors = max_sectors_kb << 1;
4023 spin_unlock_irq(q->queue_lock);
4024
4025 return ret;
4026}
4027
4028static ssize_t queue_max_hw_sectors_show(struct request_queue *q, char *page)
4029{
4030 int max_hw_sectors_kb = q->max_hw_sectors >> 1;
4031
4032 return queue_var_show(max_hw_sectors_kb, (page));
4033}
4034
4035
4036static struct queue_sysfs_entry queue_requests_entry = {
4037 .attr = {.name = "nr_requests", .mode = S_IRUGO | S_IWUSR },
4038 .show = queue_requests_show,
4039 .store = queue_requests_store,
4040};
4041
4042static struct queue_sysfs_entry queue_ra_entry = {
4043 .attr = {.name = "read_ahead_kb", .mode = S_IRUGO | S_IWUSR },
4044 .show = queue_ra_show,
4045 .store = queue_ra_store,
4046};
4047
4048static struct queue_sysfs_entry queue_max_sectors_entry = {
4049 .attr = {.name = "max_sectors_kb", .mode = S_IRUGO | S_IWUSR },
4050 .show = queue_max_sectors_show,
4051 .store = queue_max_sectors_store,
4052};
4053
4054static struct queue_sysfs_entry queue_max_hw_sectors_entry = {
4055 .attr = {.name = "max_hw_sectors_kb", .mode = S_IRUGO },
4056 .show = queue_max_hw_sectors_show,
4057};
4058
4059static struct queue_sysfs_entry queue_iosched_entry = {
4060 .attr = {.name = "scheduler", .mode = S_IRUGO | S_IWUSR },
4061 .show = elv_iosched_show,
4062 .store = elv_iosched_store,
4063};
4064
4065static struct attribute *default_attrs[] = {
4066 &queue_requests_entry.attr,
4067 &queue_ra_entry.attr,
4068 &queue_max_hw_sectors_entry.attr,
4069 &queue_max_sectors_entry.attr,
4070 &queue_iosched_entry.attr,
4071 NULL,
4072};
4073
4074#define to_queue(atr) container_of((atr), struct queue_sysfs_entry, attr)
4075
4076static ssize_t
4077queue_attr_show(struct kobject *kobj, struct attribute *attr, char *page)
4078{
4079 struct queue_sysfs_entry *entry = to_queue(attr);
Jens Axboe165125e2007-07-24 09:28:11 +02004080 struct request_queue *q =
4081 container_of(kobj, struct request_queue, kobj);
Al Viro483f4af2006-03-18 18:34:37 -05004082 ssize_t res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084 if (!entry->show)
Dmitry Torokhov6c1852a2005-04-29 01:26:06 -05004085 return -EIO;
Al Viro483f4af2006-03-18 18:34:37 -05004086 mutex_lock(&q->sysfs_lock);
4087 if (test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)) {
4088 mutex_unlock(&q->sysfs_lock);
4089 return -ENOENT;
4090 }
4091 res = entry->show(q, page);
4092 mutex_unlock(&q->sysfs_lock);
4093 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094}
4095
4096static ssize_t
4097queue_attr_store(struct kobject *kobj, struct attribute *attr,
4098 const char *page, size_t length)
4099{
4100 struct queue_sysfs_entry *entry = to_queue(attr);
Jens Axboe165125e2007-07-24 09:28:11 +02004101 struct request_queue *q = container_of(kobj, struct request_queue, kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102
Al Viro483f4af2006-03-18 18:34:37 -05004103 ssize_t res;
4104
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105 if (!entry->store)
Dmitry Torokhov6c1852a2005-04-29 01:26:06 -05004106 return -EIO;
Al Viro483f4af2006-03-18 18:34:37 -05004107 mutex_lock(&q->sysfs_lock);
4108 if (test_bit(QUEUE_FLAG_DEAD, &q->queue_flags)) {
4109 mutex_unlock(&q->sysfs_lock);
4110 return -ENOENT;
4111 }
4112 res = entry->store(q, page, length);
4113 mutex_unlock(&q->sysfs_lock);
4114 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115}
4116
4117static struct sysfs_ops queue_sysfs_ops = {
4118 .show = queue_attr_show,
4119 .store = queue_attr_store,
4120};
4121
Adrian Bunk93d17d32005-06-25 14:59:10 -07004122static struct kobj_type queue_ktype = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123 .sysfs_ops = &queue_sysfs_ops,
4124 .default_attrs = default_attrs,
Al Viro483f4af2006-03-18 18:34:37 -05004125 .release = blk_release_queue,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126};
4127
4128int blk_register_queue(struct gendisk *disk)
4129{
4130 int ret;
4131
Jens Axboe165125e2007-07-24 09:28:11 +02004132 struct request_queue *q = disk->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133
4134 if (!q || !q->request_fn)
4135 return -ENXIO;
4136
4137 q->kobj.parent = kobject_get(&disk->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138
Al Viro483f4af2006-03-18 18:34:37 -05004139 ret = kobject_add(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140 if (ret < 0)
4141 return ret;
4142
Al Viro483f4af2006-03-18 18:34:37 -05004143 kobject_uevent(&q->kobj, KOBJ_ADD);
4144
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145 ret = elv_register_queue(q);
4146 if (ret) {
Al Viro483f4af2006-03-18 18:34:37 -05004147 kobject_uevent(&q->kobj, KOBJ_REMOVE);
4148 kobject_del(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149 return ret;
4150 }
4151
4152 return 0;
4153}
4154
4155void blk_unregister_queue(struct gendisk *disk)
4156{
Jens Axboe165125e2007-07-24 09:28:11 +02004157 struct request_queue *q = disk->queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158
4159 if (q && q->request_fn) {
4160 elv_unregister_queue(q);
4161
Al Viro483f4af2006-03-18 18:34:37 -05004162 kobject_uevent(&q->kobj, KOBJ_REMOVE);
4163 kobject_del(&q->kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164 kobject_put(&disk->kobj);
4165 }
4166}