blob: 6609371c303ee9714182a4b1a67c3c68eb84eed8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_BLKDEV_H
2#define _LINUX_BLKDEV_H
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#include <linux/major.h>
5#include <linux/genhd.h>
6#include <linux/list.h>
7#include <linux/timer.h>
8#include <linux/workqueue.h>
9#include <linux/pagemap.h>
10#include <linux/backing-dev.h>
11#include <linux/wait.h>
12#include <linux/mempool.h>
13#include <linux/bio.h>
14#include <linux/module.h>
15#include <linux/stringify.h>
16
17#include <asm/scatterlist.h>
18
Christoph Hellwig21b2f0c2006-03-22 17:52:04 +010019struct scsi_ioctl_command;
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021struct request_queue;
22typedef struct request_queue request_queue_t;
23struct elevator_queue;
24typedef struct elevator_queue elevator_t;
25struct request_pm_state;
Jens Axboe2056a782006-03-23 20:00:26 +010026struct blk_trace;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28#define BLKDEV_MIN_RQ 4
29#define BLKDEV_MAX_RQ 128 /* Default maximum */
30
31/*
32 * This is the per-process anticipatory I/O scheduler state.
33 */
34struct as_io_context {
35 spinlock_t lock;
36
37 void (*dtor)(struct as_io_context *aic); /* destructor */
38 void (*exit)(struct as_io_context *aic); /* called on task exit */
39
40 unsigned long state;
41 atomic_t nr_queued; /* queued reads & sync writes */
42 atomic_t nr_dispatched; /* number of requests gone to the drivers */
43
44 /* IO History tracking */
45 /* Thinktime */
46 unsigned long last_end_request;
47 unsigned long ttime_total;
48 unsigned long ttime_samples;
49 unsigned long ttime_mean;
50 /* Layout pattern */
51 unsigned int seek_samples;
52 sector_t last_request_pos;
53 u64 seek_total;
54 sector_t seek_mean;
55};
56
57struct cfq_queue;
58struct cfq_io_context {
Jens Axboee2d74ac2006-03-28 08:59:01 +020059 struct rb_node rb_node;
Jens Axboe22e2c502005-06-27 10:55:12 +020060 void *key;
61
Jens Axboee2d74ac2006-03-28 08:59:01 +020062 struct cfq_queue *cfqq[2];
63
Jens Axboe22e2c502005-06-27 10:55:12 +020064 struct io_context *ioc;
65
66 unsigned long last_end_request;
Jens Axboe206dc692006-03-28 13:03:44 +020067 sector_t last_request_pos;
68 unsigned long last_queue;
69
Jens Axboe22e2c502005-06-27 10:55:12 +020070 unsigned long ttime_total;
71 unsigned long ttime_samples;
72 unsigned long ttime_mean;
73
Jens Axboe206dc692006-03-28 13:03:44 +020074 unsigned int seek_samples;
75 u64 seek_total;
76 sector_t seek_mean;
77
Al Virod9ff4182006-03-18 13:51:22 -050078 struct list_head queue_list;
79
Jens Axboee2d74ac2006-03-28 08:59:01 +020080 void (*dtor)(struct io_context *); /* destructor */
81 void (*exit)(struct io_context *); /* called on task exit */
Linus Torvalds1da177e2005-04-16 15:20:36 -070082};
83
84/*
85 * This is the per-process I/O subsystem state. It is refcounted and
86 * kmalloc'ed. Currently all fields are modified in process io context
87 * (apart from the atomic refcount), so require no locking.
88 */
89struct io_context {
90 atomic_t refcount;
Jens Axboe22e2c502005-06-27 10:55:12 +020091 struct task_struct *task;
92
Jens Axboefc463792006-08-29 09:05:44 +020093 unsigned int ioprio_changed;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95 /*
96 * For request batching
97 */
98 unsigned long last_waited; /* Time last woken after wait for request */
99 int nr_batch_requests; /* Number of requests left in the batch */
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 struct as_io_context *aic;
Jens Axboee2d74ac2006-03-28 08:59:01 +0200102 struct rb_root cic_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103};
104
105void put_io_context(struct io_context *ioc);
106void exit_io_context(void);
Jens Axboeb5deef92006-07-19 23:39:40 +0200107struct io_context *get_io_context(gfp_t gfp_flags, int node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108void copy_io_context(struct io_context **pdst, struct io_context **psrc);
109void swap_io_context(struct io_context **ioc1, struct io_context **ioc2);
110
111struct request;
Tejun Heo8ffdc652006-01-06 09:49:03 +0100112typedef void (rq_end_io_fn)(struct request *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114struct request_list {
115 int count[2];
116 int starved[2];
Tejun Heocb98fc82005-10-28 08:29:39 +0200117 int elvpriv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 mempool_t *rq_pool;
119 wait_queue_head_t wait[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120};
121
Jens Axboe4aff5e22006-08-10 08:44:47 +0200122/*
123 * request command types
124 */
125enum rq_cmd_type_bits {
126 REQ_TYPE_FS = 1, /* fs request */
127 REQ_TYPE_BLOCK_PC, /* scsi command */
128 REQ_TYPE_SENSE, /* sense request */
129 REQ_TYPE_PM_SUSPEND, /* suspend request */
130 REQ_TYPE_PM_RESUME, /* resume request */
131 REQ_TYPE_PM_SHUTDOWN, /* shutdown request */
132 REQ_TYPE_FLUSH, /* flush request */
133 REQ_TYPE_SPECIAL, /* driver defined type */
134 REQ_TYPE_LINUX_BLOCK, /* generic block layer message */
135 /*
136 * for ATA/ATAPI devices. this really doesn't belong here, ide should
137 * use REQ_TYPE_SPECIAL and use rq->cmd[0] with the range of driver
138 * private REQ_LB opcodes to differentiate what type of request this is
139 */
140 REQ_TYPE_ATA_CMD,
141 REQ_TYPE_ATA_TASK,
142 REQ_TYPE_ATA_TASKFILE,
143};
144
145/*
146 * For request of type REQ_TYPE_LINUX_BLOCK, rq->cmd[0] is the opcode being
147 * sent down (similar to how REQ_TYPE_BLOCK_PC means that ->cmd[] holds a
148 * SCSI cdb.
149 *
150 * 0x00 -> 0x3f are driver private, to be used for whatever purpose they need,
151 * typically to differentiate REQ_TYPE_SPECIAL requests.
152 *
153 */
154enum {
155 /*
156 * just examples for now
157 */
158 REQ_LB_OP_EJECT = 0x40, /* eject request */
159 REQ_LB_OP_FLUSH = 0x41, /* flush device */
160};
161
162/*
163 * request type modified bits. first three bits match BIO_RW* bits, important
164 */
165enum rq_flag_bits {
166 __REQ_RW, /* not set, read. set, write */
167 __REQ_FAILFAST, /* no low level driver retries */
168 __REQ_SORTED, /* elevator knows about this request */
169 __REQ_SOFTBARRIER, /* may not be passed by ioscheduler */
170 __REQ_HARDBARRIER, /* may not be passed by drive either */
171 __REQ_FUA, /* forced unit access */
172 __REQ_NOMERGE, /* don't touch this for merging */
173 __REQ_STARTED, /* drive already may have started this one */
174 __REQ_DONTPREP, /* don't call prep for this one */
175 __REQ_QUEUED, /* uses queueing */
176 __REQ_ELVPRIV, /* elevator private data attached */
177 __REQ_FAILED, /* set if the request failed */
178 __REQ_QUIET, /* don't worry about errors */
179 __REQ_PREEMPT, /* set for "ide_preempt" requests */
180 __REQ_ORDERED_COLOR, /* is before or after barrier */
181 __REQ_RW_SYNC, /* request is sync (O_DIRECT) */
Jens Axboe49171e52006-08-10 08:59:11 +0200182 __REQ_ALLOCED, /* request came from our alloc pool */
Jens Axboe4aff5e22006-08-10 08:44:47 +0200183 __REQ_NR_BITS, /* stops here */
184};
185
186#define REQ_RW (1 << __REQ_RW)
187#define REQ_FAILFAST (1 << __REQ_FAILFAST)
188#define REQ_SORTED (1 << __REQ_SORTED)
189#define REQ_SOFTBARRIER (1 << __REQ_SOFTBARRIER)
190#define REQ_HARDBARRIER (1 << __REQ_HARDBARRIER)
191#define REQ_FUA (1 << __REQ_FUA)
192#define REQ_NOMERGE (1 << __REQ_NOMERGE)
193#define REQ_STARTED (1 << __REQ_STARTED)
194#define REQ_DONTPREP (1 << __REQ_DONTPREP)
195#define REQ_QUEUED (1 << __REQ_QUEUED)
196#define REQ_ELVPRIV (1 << __REQ_ELVPRIV)
197#define REQ_FAILED (1 << __REQ_FAILED)
198#define REQ_QUIET (1 << __REQ_QUIET)
199#define REQ_PREEMPT (1 << __REQ_PREEMPT)
200#define REQ_ORDERED_COLOR (1 << __REQ_ORDERED_COLOR)
201#define REQ_RW_SYNC (1 << __REQ_RW_SYNC)
Jens Axboe49171e52006-08-10 08:59:11 +0200202#define REQ_ALLOCED (1 << __REQ_ALLOCED)
Jens Axboe4aff5e22006-08-10 08:44:47 +0200203
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204#define BLK_MAX_CDB 16
205
206/*
207 * try to put the fields that are referenced together in the same cacheline
208 */
209struct request {
Jens Axboeff856ba2006-01-09 16:02:34 +0100210 struct list_head queuelist;
211 struct list_head donelist;
212
Jens Axboee6a1c872006-08-10 09:00:21 +0200213 request_queue_t *q;
214
Jens Axboe4aff5e22006-08-10 08:44:47 +0200215 unsigned int cmd_flags;
216 enum rq_cmd_type_bits cmd_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218 /* Maintain bio traversal state for part by part I/O submission.
219 * hard_* are block layer internals, no driver should touch them!
220 */
221
222 sector_t sector; /* next sector to submit */
Jens Axboee6a1c872006-08-10 09:00:21 +0200223 sector_t hard_sector; /* next sector to complete */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 unsigned long nr_sectors; /* no. of sectors left to submit */
Jens Axboee6a1c872006-08-10 09:00:21 +0200225 unsigned long hard_nr_sectors; /* no. of sectors left to complete */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 /* no. of sectors left to submit in the current segment */
227 unsigned int current_nr_sectors;
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 /* no. of sectors left to complete in the current segment */
230 unsigned int hard_cur_sectors;
231
232 struct bio *bio;
233 struct bio *biotail;
234
Jens Axboe98170642006-07-28 09:23:08 +0200235 struct hlist_node hash; /* merge hash */
Jens Axboee6a1c872006-08-10 09:00:21 +0200236 /*
237 * The rb_node is only used inside the io scheduler, requests
238 * are pruned when moved to the dispatch queue. So let the
239 * completion_data share space with the rb_node.
240 */
241 union {
242 struct rb_node rb_node; /* sort/lookup */
243 void *completion_data;
244 };
Jens Axboe98170642006-07-28 09:23:08 +0200245
Jens Axboeff7d1452006-07-12 14:04:37 +0200246 /*
247 * two pointers are available for the IO schedulers, if they need
248 * more they have to dynamically allocate it.
249 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 void *elevator_private;
Jens Axboeff7d1452006-07-12 14:04:37 +0200251 void *elevator_private2;
252
Jens Axboe8f34ee72006-06-13 09:02:34 +0200253 struct gendisk *rq_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 unsigned long start_time;
255
256 /* Number of scatter-gather DMA addr+len pairs after
257 * physical address coalescing is performed.
258 */
259 unsigned short nr_phys_segments;
260
261 /* Number of scatter-gather addr+len pairs after
262 * physical and DMA remapping hardware coalescing is performed.
263 * This is the number of scatter-gather entries the driver
264 * will actually have to deal with after DMA mapping is done.
265 */
266 unsigned short nr_hw_segments;
267
Jens Axboe8f34ee72006-06-13 09:02:34 +0200268 unsigned short ioprio;
269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 void *special;
Jens Axboe8f34ee72006-06-13 09:02:34 +0200271 char *buffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Jens Axboecdd60262006-07-28 09:32:07 +0200273 int tag;
274 int errors;
275
276 int ref_count;
277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 /*
279 * when request is used as a packet command carrier
280 */
281 unsigned int cmd_len;
282 unsigned char cmd[BLK_MAX_CDB];
283
284 unsigned int data_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 unsigned int sense_len;
Jens Axboe8f34ee72006-06-13 09:02:34 +0200286 void *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 void *sense;
288
289 unsigned int timeout;
Mike Christie17e01f22005-11-11 05:31:37 -0600290 int retries;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292 /*
Jens Axboec00895a2006-09-30 20:29:12 +0200293 * completion callback.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 */
295 rq_end_io_fn *end_io;
296 void *end_io_data;
297};
298
299/*
Jens Axboe4aff5e22006-08-10 08:44:47 +0200300 * State information carried for REQ_TYPE_PM_SUSPEND and REQ_TYPE_PM_RESUME
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 * requests. Some step values could eventually be made generic.
302 */
303struct request_pm_state
304{
305 /* PM state machine step value, currently driver specific */
306 int pm_step;
307 /* requested PM state value (S1, S2, S3, S4, ...) */
308 u32 pm_state;
309 void* data; /* for driver use */
310};
311
312#include <linux/elevator.h>
313
314typedef int (merge_request_fn) (request_queue_t *, struct request *,
315 struct bio *);
316typedef int (merge_requests_fn) (request_queue_t *, struct request *,
317 struct request *);
318typedef void (request_fn_proc) (request_queue_t *q);
319typedef int (make_request_fn) (request_queue_t *q, struct bio *bio);
320typedef int (prep_rq_fn) (request_queue_t *, struct request *);
321typedef void (unplug_fn) (request_queue_t *);
322
323struct bio_vec;
324typedef int (merge_bvec_fn) (request_queue_t *, struct bio *, struct bio_vec *);
325typedef void (activity_fn) (void *data, int rw);
326typedef int (issue_flush_fn) (request_queue_t *, struct gendisk *, sector_t *);
Tejun Heo797e7db2006-01-06 09:51:03 +0100327typedef void (prepare_flush_fn) (request_queue_t *, struct request *);
Jens Axboeff856ba2006-01-09 16:02:34 +0100328typedef void (softirq_done_fn)(struct request *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
330enum blk_queue_state {
331 Queue_down,
332 Queue_up,
333};
334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335struct blk_queue_tag {
336 struct request **tag_index; /* map of busy tags */
337 unsigned long *tag_map; /* bit map of free/busy tags */
338 struct list_head busy_list; /* fifo list of busy tags */
339 int busy; /* current depth */
340 int max_depth; /* what we will send to device */
Tejun Heoba025082005-08-05 13:28:11 -0700341 int real_max_depth; /* what the array can hold */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 atomic_t refcnt; /* map can be shared */
343};
344
345struct request_queue
346{
347 /*
348 * Together with queue_head for cacheline sharing
349 */
350 struct list_head queue_head;
351 struct request *last_merge;
352 elevator_t *elevator;
353
354 /*
355 * the queue request freelist, one for reads and one for writes
356 */
357 struct request_list rq;
358
359 request_fn_proc *request_fn;
360 merge_request_fn *back_merge_fn;
361 merge_request_fn *front_merge_fn;
362 merge_requests_fn *merge_requests_fn;
363 make_request_fn *make_request_fn;
364 prep_rq_fn *prep_rq_fn;
365 unplug_fn *unplug_fn;
366 merge_bvec_fn *merge_bvec_fn;
367 activity_fn *activity_fn;
368 issue_flush_fn *issue_flush_fn;
369 prepare_flush_fn *prepare_flush_fn;
Jens Axboeff856ba2006-01-09 16:02:34 +0100370 softirq_done_fn *softirq_done_fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
372 /*
Tejun Heo8922e162005-10-20 16:23:44 +0200373 * Dispatch queue sorting
374 */
Jens Axboe1b47f532005-10-20 16:37:00 +0200375 sector_t end_sector;
Tejun Heo8922e162005-10-20 16:23:44 +0200376 struct request *boundary_rq;
Tejun Heo8922e162005-10-20 16:23:44 +0200377
378 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 * Auto-unplugging state
380 */
381 struct timer_list unplug_timer;
382 int unplug_thresh; /* After this many requests */
383 unsigned long unplug_delay; /* After this many jiffies */
384 struct work_struct unplug_work;
385
386 struct backing_dev_info backing_dev_info;
387
388 /*
389 * The queue owner gets to use this for whatever they like.
390 * ll_rw_blk doesn't touch it.
391 */
392 void *queuedata;
393
394 void *activity_data;
395
396 /*
397 * queue needs bounce pages for pages above this limit
398 */
399 unsigned long bounce_pfn;
Al Viro8267e262005-10-21 03:20:53 -0400400 gfp_t bounce_gfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402 /*
403 * various queue flags, see QUEUE_* below
404 */
405 unsigned long queue_flags;
406
407 /*
152587d2005-04-12 16:22:06 -0500408 * protects queue structures from reentrancy. ->__queue_lock should
409 * _never_ be used directly, it is queue private. always use
410 * ->queue_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 */
152587d2005-04-12 16:22:06 -0500412 spinlock_t __queue_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 spinlock_t *queue_lock;
414
415 /*
416 * queue kobject
417 */
418 struct kobject kobj;
419
420 /*
421 * queue settings
422 */
423 unsigned long nr_requests; /* Max # of requests */
424 unsigned int nr_congestion_on;
425 unsigned int nr_congestion_off;
426 unsigned int nr_batching;
427
Jens Axboe2cb2e142006-01-17 09:04:32 +0100428 unsigned int max_sectors;
429 unsigned int max_hw_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 unsigned short max_phys_segments;
431 unsigned short max_hw_segments;
432 unsigned short hardsect_size;
433 unsigned int max_segment_size;
434
435 unsigned long seg_boundary_mask;
436 unsigned int dma_alignment;
437
438 struct blk_queue_tag *queue_tags;
439
Tejun Heo15853af2005-11-10 08:52:05 +0100440 unsigned int nr_sorted;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 unsigned int in_flight;
442
443 /*
444 * sg stuff
445 */
446 unsigned int sg_timeout;
447 unsigned int sg_reserved_size;
Christoph Lameter19460892005-06-23 00:08:19 -0700448 int node;
Alexey Dobriyan6c5c9342006-09-29 01:59:40 -0700449#ifdef CONFIG_BLK_DEV_IO_TRACE
Jens Axboe2056a782006-03-23 20:00:26 +0100450 struct blk_trace *blk_trace;
Alexey Dobriyan6c5c9342006-09-29 01:59:40 -0700451#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 /*
453 * reserved for flush operations
454 */
Tejun Heo797e7db2006-01-06 09:51:03 +0100455 unsigned int ordered, next_ordered, ordseq;
456 int orderr, ordcolor;
457 struct request pre_flush_rq, bar_rq, post_flush_rq;
458 struct request *orig_bar_rq;
459 unsigned int bi_size;
Al Viro483f4af2006-03-18 18:34:37 -0500460
461 struct mutex sysfs_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462};
463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464#define QUEUE_FLAG_CLUSTER 0 /* cluster several segments into 1 */
465#define QUEUE_FLAG_QUEUED 1 /* uses generic tag queueing */
466#define QUEUE_FLAG_STOPPED 2 /* queue is stopped */
467#define QUEUE_FLAG_READFULL 3 /* write queue has been filled */
468#define QUEUE_FLAG_WRITEFULL 4 /* read queue has been filled */
469#define QUEUE_FLAG_DEAD 5 /* queue being torn down */
470#define QUEUE_FLAG_REENTER 6 /* Re-entrancy avoidance */
471#define QUEUE_FLAG_PLUGGED 7 /* queue is plugged */
Jens Axboe64521d12005-10-28 08:30:39 +0200472#define QUEUE_FLAG_ELVSWITCH 8 /* don't use elevator, just do FIFO */
Tejun Heo797e7db2006-01-06 09:51:03 +0100473
474enum {
475 /*
476 * Hardbarrier is supported with one of the following methods.
477 *
478 * NONE : hardbarrier unsupported
479 * DRAIN : ordering by draining is enough
480 * DRAIN_FLUSH : ordering by draining w/ pre and post flushes
481 * DRAIN_FUA : ordering by draining w/ pre flush and FUA write
482 * TAG : ordering by tag is enough
483 * TAG_FLUSH : ordering by tag w/ pre and post flushes
484 * TAG_FUA : ordering by tag w/ pre flush and FUA write
485 */
486 QUEUE_ORDERED_NONE = 0x00,
487 QUEUE_ORDERED_DRAIN = 0x01,
488 QUEUE_ORDERED_TAG = 0x02,
489
490 QUEUE_ORDERED_PREFLUSH = 0x10,
491 QUEUE_ORDERED_POSTFLUSH = 0x20,
492 QUEUE_ORDERED_FUA = 0x40,
493
494 QUEUE_ORDERED_DRAIN_FLUSH = QUEUE_ORDERED_DRAIN |
495 QUEUE_ORDERED_PREFLUSH | QUEUE_ORDERED_POSTFLUSH,
496 QUEUE_ORDERED_DRAIN_FUA = QUEUE_ORDERED_DRAIN |
497 QUEUE_ORDERED_PREFLUSH | QUEUE_ORDERED_FUA,
498 QUEUE_ORDERED_TAG_FLUSH = QUEUE_ORDERED_TAG |
499 QUEUE_ORDERED_PREFLUSH | QUEUE_ORDERED_POSTFLUSH,
500 QUEUE_ORDERED_TAG_FUA = QUEUE_ORDERED_TAG |
501 QUEUE_ORDERED_PREFLUSH | QUEUE_ORDERED_FUA,
502
503 /*
504 * Ordered operation sequence
505 */
506 QUEUE_ORDSEQ_STARTED = 0x01, /* flushing in progress */
507 QUEUE_ORDSEQ_DRAIN = 0x02, /* waiting for the queue to be drained */
508 QUEUE_ORDSEQ_PREFLUSH = 0x04, /* pre-flushing in progress */
509 QUEUE_ORDSEQ_BAR = 0x08, /* original barrier req in progress */
510 QUEUE_ORDSEQ_POSTFLUSH = 0x10, /* post-flushing in progress */
511 QUEUE_ORDSEQ_DONE = 0x20,
512};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514#define blk_queue_plugged(q) test_bit(QUEUE_FLAG_PLUGGED, &(q)->queue_flags)
515#define blk_queue_tagged(q) test_bit(QUEUE_FLAG_QUEUED, &(q)->queue_flags)
516#define blk_queue_stopped(q) test_bit(QUEUE_FLAG_STOPPED, &(q)->queue_flags)
Tejun Heo797e7db2006-01-06 09:51:03 +0100517#define blk_queue_flushing(q) ((q)->ordseq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Jens Axboe4aff5e22006-08-10 08:44:47 +0200519#define blk_fs_request(rq) ((rq)->cmd_type == REQ_TYPE_FS)
520#define blk_pc_request(rq) ((rq)->cmd_type == REQ_TYPE_BLOCK_PC)
521#define blk_special_request(rq) ((rq)->cmd_type == REQ_TYPE_SPECIAL)
522#define blk_sense_request(rq) ((rq)->cmd_type == REQ_TYPE_SENSE)
523
524#define blk_noretry_request(rq) ((rq)->cmd_flags & REQ_FAILFAST)
525#define blk_rq_started(rq) ((rq)->cmd_flags & REQ_STARTED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
527#define blk_account_rq(rq) (blk_rq_started(rq) && blk_fs_request(rq))
528
Jens Axboe4aff5e22006-08-10 08:44:47 +0200529#define blk_pm_suspend_request(rq) ((rq)->cmd_type == REQ_TYPE_PM_SUSPEND)
530#define blk_pm_resume_request(rq) ((rq)->cmd_type == REQ_TYPE_PM_RESUME)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531#define blk_pm_request(rq) \
Jens Axboe4aff5e22006-08-10 08:44:47 +0200532 (blk_pm_suspend_request(rq) || blk_pm_resume_request(rq))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Jens Axboe4aff5e22006-08-10 08:44:47 +0200534#define blk_sorted_rq(rq) ((rq)->cmd_flags & REQ_SORTED)
535#define blk_barrier_rq(rq) ((rq)->cmd_flags & REQ_HARDBARRIER)
536#define blk_fua_rq(rq) ((rq)->cmd_flags & REQ_FUA)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
538#define list_entry_rq(ptr) list_entry((ptr), struct request, queuelist)
539
Jens Axboe4aff5e22006-08-10 08:44:47 +0200540#define rq_data_dir(rq) ((rq)->cmd_flags & 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Jens Axboe9e2585a2006-07-28 09:26:13 +0200542/*
543 * We regard a request as sync, if it's a READ or a SYNC write.
544 */
545#define rq_is_sync(rq) (rq_data_dir((rq)) == READ || (rq)->cmd_flags & REQ_RW_SYNC)
546
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547static inline int blk_queue_full(struct request_queue *q, int rw)
548{
549 if (rw == READ)
550 return test_bit(QUEUE_FLAG_READFULL, &q->queue_flags);
551 return test_bit(QUEUE_FLAG_WRITEFULL, &q->queue_flags);
552}
553
554static inline void blk_set_queue_full(struct request_queue *q, int rw)
555{
556 if (rw == READ)
557 set_bit(QUEUE_FLAG_READFULL, &q->queue_flags);
558 else
559 set_bit(QUEUE_FLAG_WRITEFULL, &q->queue_flags);
560}
561
562static inline void blk_clear_queue_full(struct request_queue *q, int rw)
563{
564 if (rw == READ)
565 clear_bit(QUEUE_FLAG_READFULL, &q->queue_flags);
566 else
567 clear_bit(QUEUE_FLAG_WRITEFULL, &q->queue_flags);
568}
569
570
571/*
572 * mergeable request must not have _NOMERGE or _BARRIER bit set, nor may
573 * it already be started by driver.
574 */
575#define RQ_NOMERGE_FLAGS \
576 (REQ_NOMERGE | REQ_STARTED | REQ_HARDBARRIER | REQ_SOFTBARRIER)
577#define rq_mergeable(rq) \
Jens Axboe4aff5e22006-08-10 08:44:47 +0200578 (!((rq)->cmd_flags & RQ_NOMERGE_FLAGS) && blk_fs_request((rq)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 * q->prep_rq_fn return values
582 */
583#define BLKPREP_OK 0 /* serve it */
584#define BLKPREP_KILL 1 /* fatal error, kill */
585#define BLKPREP_DEFER 2 /* leave on queue */
586
587extern unsigned long blk_max_low_pfn, blk_max_pfn;
588
589/*
590 * standard bounce addresses:
591 *
592 * BLK_BOUNCE_HIGH : bounce all highmem pages
593 * BLK_BOUNCE_ANY : don't bounce anything
594 * BLK_BOUNCE_ISA : bounce pages above ISA DMA boundary
595 */
596#define BLK_BOUNCE_HIGH ((u64)blk_max_low_pfn << PAGE_SHIFT)
597#define BLK_BOUNCE_ANY ((u64)blk_max_pfn << PAGE_SHIFT)
598#define BLK_BOUNCE_ISA (ISA_DMA_THRESHOLD)
599
600#ifdef CONFIG_MMU
601extern int init_emergency_isa_pool(void);
602extern void blk_queue_bounce(request_queue_t *q, struct bio **bio);
603#else
604static inline int init_emergency_isa_pool(void)
605{
606 return 0;
607}
608static inline void blk_queue_bounce(request_queue_t *q, struct bio **bio)
609{
610}
611#endif /* CONFIG_MMU */
612
613#define rq_for_each_bio(_bio, rq) \
614 if ((rq->bio)) \
615 for (_bio = (rq)->bio; _bio; _bio = _bio->bi_next)
616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617extern int blk_register_queue(struct gendisk *disk);
618extern void blk_unregister_queue(struct gendisk *disk);
619extern void register_disk(struct gendisk *dev);
620extern void generic_make_request(struct bio *bio);
621extern void blk_put_request(struct request *);
Mike Christie6e39b692005-11-11 05:30:24 -0600622extern void __blk_put_request(request_queue_t *, struct request *);
Tejun Heo8ffdc652006-01-06 09:49:03 +0100623extern void blk_end_sync_rq(struct request *rq, int error);
Al Viro8267e262005-10-21 03:20:53 -0400624extern struct request *blk_get_request(request_queue_t *, int, gfp_t);
Tejun Heo 867d1192005-04-24 02:06:05 -0500625extern void blk_insert_request(request_queue_t *, struct request *, int, void *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626extern void blk_requeue_request(request_queue_t *, struct request *);
627extern void blk_plug_device(request_queue_t *);
628extern int blk_remove_plug(request_queue_t *);
629extern void blk_recount_segments(request_queue_t *, struct bio *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630extern int scsi_cmd_ioctl(struct file *, struct gendisk *, unsigned int, void __user *);
Christoph Hellwig21b2f0c2006-03-22 17:52:04 +0100631extern int sg_scsi_ioctl(struct file *, struct request_queue *,
632 struct gendisk *, struct scsi_ioctl_command __user *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633extern void blk_start_queue(request_queue_t *q);
634extern void blk_stop_queue(request_queue_t *q);
635extern void blk_sync_queue(struct request_queue *q);
636extern void __blk_stop_queue(request_queue_t *q);
637extern void blk_run_queue(request_queue_t *);
638extern void blk_queue_activity_fn(request_queue_t *, activity_fn *, void *);
Jens Axboedd1cab92005-06-20 14:06:01 +0200639extern int blk_rq_map_user(request_queue_t *, struct request *, void __user *, unsigned int);
640extern int blk_rq_unmap_user(struct bio *, unsigned int);
Al Viro8267e262005-10-21 03:20:53 -0400641extern int blk_rq_map_kern(request_queue_t *, struct request *, void *, unsigned int, gfp_t);
James Bottomley f1970ba2005-06-20 14:06:52 +0200642extern int blk_rq_map_user_iov(request_queue_t *, struct request *, struct sg_iovec *, int);
James Bottomley 994ca9a2005-06-20 14:11:09 +0200643extern int blk_execute_rq(request_queue_t *, struct gendisk *,
644 struct request *, int);
Mike Christie6e39b692005-11-11 05:30:24 -0600645extern void blk_execute_rq_nowait(request_queue_t *, struct gendisk *,
Jens Axboe15fc8582006-01-06 10:00:50 +0100646 struct request *, int, rq_end_io_fn *);
Mike Christie6e39b692005-11-11 05:30:24 -0600647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648static inline request_queue_t *bdev_get_queue(struct block_device *bdev)
649{
650 return bdev->bd_disk->queue;
651}
652
653static inline void blk_run_backing_dev(struct backing_dev_info *bdi,
654 struct page *page)
655{
656 if (bdi && bdi->unplug_io_fn)
657 bdi->unplug_io_fn(bdi, page);
658}
659
660static inline void blk_run_address_space(struct address_space *mapping)
661{
662 if (mapping)
663 blk_run_backing_dev(mapping->backing_dev_info, NULL);
664}
665
666/*
667 * end_request() and friends. Must be called with the request queue spinlock
668 * acquired. All functions called within end_request() _must_be_ atomic.
669 *
670 * Several drivers define their own end_request and call
671 * end_that_request_first() and end_that_request_last()
672 * for parts of the original function. This prevents
673 * code duplication in drivers.
674 */
675extern int end_that_request_first(struct request *, int, int);
676extern int end_that_request_chunk(struct request *, int, int);
Tejun Heo8ffdc652006-01-06 09:49:03 +0100677extern void end_that_request_last(struct request *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678extern void end_request(struct request *req, int uptodate);
Jens Axboeff856ba2006-01-09 16:02:34 +0100679extern void blk_complete_request(struct request *);
680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681/*
682 * end_that_request_first/chunk() takes an uptodate argument. we account
683 * any value <= as an io error. 0 means -EIO for compatability reasons,
684 * any other < 0 value is the direct error type. An uptodate value of
685 * 1 indicates successful io completion
686 */
687#define end_io_error(uptodate) (unlikely((uptodate) <= 0))
688
689static inline void blkdev_dequeue_request(struct request *req)
690{
Tejun Heo8922e162005-10-20 16:23:44 +0200691 elv_dequeue_request(req->q, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694/*
695 * Access functions for manipulating queue properties
696 */
Christoph Lameter19460892005-06-23 00:08:19 -0700697extern request_queue_t *blk_init_queue_node(request_fn_proc *rfn,
698 spinlock_t *lock, int node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699extern request_queue_t *blk_init_queue(request_fn_proc *, spinlock_t *);
700extern void blk_cleanup_queue(request_queue_t *);
701extern void blk_queue_make_request(request_queue_t *, make_request_fn *);
702extern void blk_queue_bounce_limit(request_queue_t *, u64);
Jens Axboe2cb2e142006-01-17 09:04:32 +0100703extern void blk_queue_max_sectors(request_queue_t *, unsigned int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704extern void blk_queue_max_phys_segments(request_queue_t *, unsigned short);
705extern void blk_queue_max_hw_segments(request_queue_t *, unsigned short);
706extern void blk_queue_max_segment_size(request_queue_t *, unsigned int);
707extern void blk_queue_hardsect_size(request_queue_t *, unsigned short);
708extern void blk_queue_stack_limits(request_queue_t *t, request_queue_t *b);
709extern void blk_queue_segment_boundary(request_queue_t *, unsigned long);
710extern void blk_queue_prep_rq(request_queue_t *, prep_rq_fn *pfn);
711extern void blk_queue_merge_bvec(request_queue_t *, merge_bvec_fn *);
712extern void blk_queue_dma_alignment(request_queue_t *, int);
Jens Axboeff856ba2006-01-09 16:02:34 +0100713extern void blk_queue_softirq_done(request_queue_t *, softirq_done_fn *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714extern struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev);
Tejun Heo797e7db2006-01-06 09:51:03 +0100715extern int blk_queue_ordered(request_queue_t *, unsigned, prepare_flush_fn *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716extern void blk_queue_issue_flush_fn(request_queue_t *, issue_flush_fn *);
Tejun Heo797e7db2006-01-06 09:51:03 +0100717extern int blk_do_ordered(request_queue_t *, struct request **);
718extern unsigned blk_ordered_cur_seq(request_queue_t *);
719extern unsigned blk_ordered_req_seq(struct request *);
720extern void blk_ordered_complete_seq(request_queue_t *, unsigned, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
722extern int blk_rq_map_sg(request_queue_t *, struct request *, struct scatterlist *);
723extern void blk_dump_rq_flags(struct request *, char *);
724extern void generic_unplug_device(request_queue_t *);
725extern void __generic_unplug_device(request_queue_t *);
726extern long nr_blockdev_pages(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
728int blk_get_queue(request_queue_t *);
Al Viro8267e262005-10-21 03:20:53 -0400729request_queue_t *blk_alloc_queue(gfp_t);
730request_queue_t *blk_alloc_queue_node(gfp_t, int);
Al Viro483f4af2006-03-18 18:34:37 -0500731extern void blk_put_queue(request_queue_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
733/*
734 * tag stuff
735 */
736#define blk_queue_tag_depth(q) ((q)->queue_tags->busy)
737#define blk_queue_tag_queue(q) ((q)->queue_tags->busy < (q)->queue_tags->max_depth)
Jens Axboe4aff5e22006-08-10 08:44:47 +0200738#define blk_rq_tagged(rq) ((rq)->cmd_flags & REQ_QUEUED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739extern int blk_queue_start_tag(request_queue_t *, struct request *);
740extern struct request *blk_queue_find_tag(request_queue_t *, int);
741extern void blk_queue_end_tag(request_queue_t *, struct request *);
742extern int blk_queue_init_tags(request_queue_t *, int, struct blk_queue_tag *);
743extern void blk_queue_free_tags(request_queue_t *);
744extern int blk_queue_resize_tags(request_queue_t *, int);
745extern void blk_queue_invalidate_tags(request_queue_t *);
746extern long blk_congestion_wait(int rw, long timeout);
James Bottomley492dfb42006-08-30 15:48:45 -0400747extern struct blk_queue_tag *blk_init_tags(int);
748extern void blk_free_tags(struct blk_queue_tag *);
Trond Myklebust275a0822006-08-22 20:06:24 -0400749extern void blk_congestion_end(int rw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
751extern void blk_rq_bio_prep(request_queue_t *, struct request *, struct bio *);
752extern int blkdev_issue_flush(struct block_device *, sector_t *);
753
754#define MAX_PHYS_SEGMENTS 128
755#define MAX_HW_SEGMENTS 128
Mike Christiedefd94b2005-12-05 02:37:06 -0600756#define SAFE_MAX_SECTORS 255
757#define BLK_DEF_MAX_SECTORS 1024
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
759#define MAX_SEGMENT_SIZE 65536
760
761#define blkdev_entry_to_request(entry) list_entry((entry), struct request, queuelist)
762
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763static inline int queue_hardsect_size(request_queue_t *q)
764{
765 int retval = 512;
766
767 if (q && q->hardsect_size)
768 retval = q->hardsect_size;
769
770 return retval;
771}
772
773static inline int bdev_hardsect_size(struct block_device *bdev)
774{
775 return queue_hardsect_size(bdev_get_queue(bdev));
776}
777
778static inline int queue_dma_alignment(request_queue_t *q)
779{
780 int retval = 511;
781
782 if (q && q->dma_alignment)
783 retval = q->dma_alignment;
784
785 return retval;
786}
787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788/* assumes size > 256 */
789static inline unsigned int blksize_bits(unsigned int size)
790{
791 unsigned int bits = 8;
792 do {
793 bits++;
794 size >>= 1;
795 } while (size > 256);
796 return bits;
797}
798
Adrian Bunk2befb9e2005-09-10 00:27:17 -0700799static inline unsigned int block_size(struct block_device *bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800{
801 return bdev->bd_block_size;
802}
803
804typedef struct {struct page *v;} Sector;
805
806unsigned char *read_dev_sector(struct block_device *, sector_t, Sector *);
807
808static inline void put_dev_sector(Sector p)
809{
810 page_cache_release(p.v);
811}
812
813struct work_struct;
814int kblockd_schedule_work(struct work_struct *work);
815void kblockd_flush(void);
816
817#ifdef CONFIG_LBD
818# include <asm/div64.h>
819# define sector_div(a, b) do_div(a, b)
820#else
821# define sector_div(n, b)( \
822{ \
823 int _res; \
824 _res = (n) % (b); \
825 (n) /= (b); \
826 _res; \
827} \
828)
829#endif
830
831#define MODULE_ALIAS_BLOCKDEV(major,minor) \
832 MODULE_ALIAS("block-major-" __stringify(major) "-" __stringify(minor))
833#define MODULE_ALIAS_BLOCKDEV_MAJOR(major) \
834 MODULE_ALIAS("block-major-" __stringify(major) "-*")
835
836
837#endif