]> git.ipfire.org Git - thirdparty/linux.git/blame - include/linux/blkdev.h
[PATCH] Split struct request ->flags into two parts
[thirdparty/linux.git] / include / linux / blkdev.h
CommitLineData
1da177e4
LT
1#ifndef _LINUX_BLKDEV_H
2#define _LINUX_BLKDEV_H
3
1da177e4
LT
4#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
21b2f0c8
CH
19struct scsi_ioctl_command;
20
1da177e4
LT
21struct request_queue;
22typedef struct request_queue request_queue_t;
23struct elevator_queue;
24typedef struct elevator_queue elevator_t;
25struct request_pm_state;
2056a782 26struct blk_trace;
1da177e4
LT
27
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 {
e2d74ac0 59 struct rb_node rb_node;
22e2c507
JA
60 void *key;
61
e2d74ac0
JA
62 struct cfq_queue *cfqq[2];
63
22e2c507
JA
64 struct io_context *ioc;
65
66 unsigned long last_end_request;
206dc69b
JA
67 sector_t last_request_pos;
68 unsigned long last_queue;
69
22e2c507
JA
70 unsigned long ttime_total;
71 unsigned long ttime_samples;
72 unsigned long ttime_mean;
73
206dc69b
JA
74 unsigned int seek_samples;
75 u64 seek_total;
76 sector_t seek_mean;
77
d9ff4187
AV
78 struct list_head queue_list;
79
e2d74ac0
JA
80 void (*dtor)(struct io_context *); /* destructor */
81 void (*exit)(struct io_context *); /* called on task exit */
1da177e4
LT
82};
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;
22e2c507
JA
91 struct task_struct *task;
92
93 int (*set_ioprio)(struct io_context *, unsigned int);
1da177e4
LT
94
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
1da177e4 101 struct as_io_context *aic;
e2d74ac0 102 struct rb_root cic_root;
1da177e4
LT
103};
104
105void put_io_context(struct io_context *ioc);
106void exit_io_context(void);
8267e268
AV
107struct io_context *current_io_context(gfp_t gfp_flags);
108struct io_context *get_io_context(gfp_t gfp_flags);
1da177e4
LT
109void copy_io_context(struct io_context **pdst, struct io_context **psrc);
110void swap_io_context(struct io_context **ioc1, struct io_context **ioc2);
111
112struct request;
8ffdc655 113typedef void (rq_end_io_fn)(struct request *, int);
1da177e4
LT
114
115struct request_list {
116 int count[2];
117 int starved[2];
cb98fc8b 118 int elvpriv;
1da177e4
LT
119 mempool_t *rq_pool;
120 wait_queue_head_t wait[2];
1da177e4
LT
121};
122
4aff5e23
JA
123/*
124 * request command types
125 */
126enum rq_cmd_type_bits {
127 REQ_TYPE_FS = 1, /* fs request */
128 REQ_TYPE_BLOCK_PC, /* scsi command */
129 REQ_TYPE_SENSE, /* sense request */
130 REQ_TYPE_PM_SUSPEND, /* suspend request */
131 REQ_TYPE_PM_RESUME, /* resume request */
132 REQ_TYPE_PM_SHUTDOWN, /* shutdown request */
133 REQ_TYPE_FLUSH, /* flush request */
134 REQ_TYPE_SPECIAL, /* driver defined type */
135 REQ_TYPE_LINUX_BLOCK, /* generic block layer message */
136 /*
137 * for ATA/ATAPI devices. this really doesn't belong here, ide should
138 * use REQ_TYPE_SPECIAL and use rq->cmd[0] with the range of driver
139 * private REQ_LB opcodes to differentiate what type of request this is
140 */
141 REQ_TYPE_ATA_CMD,
142 REQ_TYPE_ATA_TASK,
143 REQ_TYPE_ATA_TASKFILE,
144};
145
146/*
147 * For request of type REQ_TYPE_LINUX_BLOCK, rq->cmd[0] is the opcode being
148 * sent down (similar to how REQ_TYPE_BLOCK_PC means that ->cmd[] holds a
149 * SCSI cdb.
150 *
151 * 0x00 -> 0x3f are driver private, to be used for whatever purpose they need,
152 * typically to differentiate REQ_TYPE_SPECIAL requests.
153 *
154 */
155enum {
156 /*
157 * just examples for now
158 */
159 REQ_LB_OP_EJECT = 0x40, /* eject request */
160 REQ_LB_OP_FLUSH = 0x41, /* flush device */
161};
162
163/*
164 * request type modified bits. first three bits match BIO_RW* bits, important
165 */
166enum rq_flag_bits {
167 __REQ_RW, /* not set, read. set, write */
168 __REQ_FAILFAST, /* no low level driver retries */
169 __REQ_SORTED, /* elevator knows about this request */
170 __REQ_SOFTBARRIER, /* may not be passed by ioscheduler */
171 __REQ_HARDBARRIER, /* may not be passed by drive either */
172 __REQ_FUA, /* forced unit access */
173 __REQ_NOMERGE, /* don't touch this for merging */
174 __REQ_STARTED, /* drive already may have started this one */
175 __REQ_DONTPREP, /* don't call prep for this one */
176 __REQ_QUEUED, /* uses queueing */
177 __REQ_ELVPRIV, /* elevator private data attached */
178 __REQ_FAILED, /* set if the request failed */
179 __REQ_QUIET, /* don't worry about errors */
180 __REQ_PREEMPT, /* set for "ide_preempt" requests */
181 __REQ_ORDERED_COLOR, /* is before or after barrier */
182 __REQ_RW_SYNC, /* request is sync (O_DIRECT) */
183 __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)
202
1da177e4
LT
203#define BLK_MAX_CDB 16
204
205/*
206 * try to put the fields that are referenced together in the same cacheline
207 */
208struct request {
ff856bad
JA
209 struct list_head queuelist;
210 struct list_head donelist;
211
4aff5e23
JA
212 unsigned int cmd_flags;
213 enum rq_cmd_type_bits cmd_type;
1da177e4
LT
214
215 /* Maintain bio traversal state for part by part I/O submission.
216 * hard_* are block layer internals, no driver should touch them!
217 */
218
219 sector_t sector; /* next sector to submit */
220 unsigned long nr_sectors; /* no. of sectors left to submit */
221 /* no. of sectors left to submit in the current segment */
222 unsigned int current_nr_sectors;
223
224 sector_t hard_sector; /* next sector to complete */
225 unsigned long hard_nr_sectors; /* no. of sectors left to complete */
226 /* no. of sectors left to complete in the current segment */
227 unsigned int hard_cur_sectors;
228
229 struct bio *bio;
230 struct bio *biotail;
231
232 void *elevator_private;
ff856bad 233 void *completion_data;
1da177e4
LT
234
235 int rq_status; /* should split this into a few status bits */
1da177e4 236 int errors;
8f34ee75 237 struct gendisk *rq_disk;
1da177e4
LT
238 unsigned long start_time;
239
240 /* Number of scatter-gather DMA addr+len pairs after
241 * physical address coalescing is performed.
242 */
243 unsigned short nr_phys_segments;
244
245 /* Number of scatter-gather addr+len pairs after
246 * physical and DMA remapping hardware coalescing is performed.
247 * This is the number of scatter-gather entries the driver
248 * will actually have to deal with after DMA mapping is done.
249 */
250 unsigned short nr_hw_segments;
251
8f34ee75
JA
252 unsigned short ioprio;
253
1da177e4 254 int tag;
1da177e4
LT
255
256 int ref_count;
257 request_queue_t *q;
258 struct request_list *rl;
259
260 struct completion *waiting;
261 void *special;
8f34ee75 262 char *buffer;
1da177e4
LT
263
264 /*
265 * when request is used as a packet command carrier
266 */
267 unsigned int cmd_len;
268 unsigned char cmd[BLK_MAX_CDB];
269
270 unsigned int data_len;
1da177e4 271 unsigned int sense_len;
8f34ee75 272 void *data;
1da177e4
LT
273 void *sense;
274
275 unsigned int timeout;
17e01f21 276 int retries;
1da177e4 277
1da177e4
LT
278 /*
279 * completion callback. end_io_data should be folded in with waiting
280 */
281 rq_end_io_fn *end_io;
282 void *end_io_data;
283};
284
285/*
4aff5e23 286 * State information carried for REQ_TYPE_PM_SUSPEND and REQ_TYPE_PM_RESUME
1da177e4
LT
287 * requests. Some step values could eventually be made generic.
288 */
289struct request_pm_state
290{
291 /* PM state machine step value, currently driver specific */
292 int pm_step;
293 /* requested PM state value (S1, S2, S3, S4, ...) */
294 u32 pm_state;
295 void* data; /* for driver use */
296};
297
298#include <linux/elevator.h>
299
300typedef int (merge_request_fn) (request_queue_t *, struct request *,
301 struct bio *);
302typedef int (merge_requests_fn) (request_queue_t *, struct request *,
303 struct request *);
304typedef void (request_fn_proc) (request_queue_t *q);
305typedef int (make_request_fn) (request_queue_t *q, struct bio *bio);
306typedef int (prep_rq_fn) (request_queue_t *, struct request *);
307typedef void (unplug_fn) (request_queue_t *);
308
309struct bio_vec;
310typedef int (merge_bvec_fn) (request_queue_t *, struct bio *, struct bio_vec *);
311typedef void (activity_fn) (void *data, int rw);
312typedef int (issue_flush_fn) (request_queue_t *, struct gendisk *, sector_t *);
797e7dbb 313typedef void (prepare_flush_fn) (request_queue_t *, struct request *);
ff856bad 314typedef void (softirq_done_fn)(struct request *);
1da177e4
LT
315
316enum blk_queue_state {
317 Queue_down,
318 Queue_up,
319};
320
1da177e4
LT
321struct blk_queue_tag {
322 struct request **tag_index; /* map of busy tags */
323 unsigned long *tag_map; /* bit map of free/busy tags */
324 struct list_head busy_list; /* fifo list of busy tags */
325 int busy; /* current depth */
326 int max_depth; /* what we will send to device */
ba025082 327 int real_max_depth; /* what the array can hold */
1da177e4
LT
328 atomic_t refcnt; /* map can be shared */
329};
330
331struct request_queue
332{
333 /*
334 * Together with queue_head for cacheline sharing
335 */
336 struct list_head queue_head;
337 struct request *last_merge;
338 elevator_t *elevator;
339
340 /*
341 * the queue request freelist, one for reads and one for writes
342 */
343 struct request_list rq;
344
345 request_fn_proc *request_fn;
346 merge_request_fn *back_merge_fn;
347 merge_request_fn *front_merge_fn;
348 merge_requests_fn *merge_requests_fn;
349 make_request_fn *make_request_fn;
350 prep_rq_fn *prep_rq_fn;
351 unplug_fn *unplug_fn;
352 merge_bvec_fn *merge_bvec_fn;
353 activity_fn *activity_fn;
354 issue_flush_fn *issue_flush_fn;
355 prepare_flush_fn *prepare_flush_fn;
ff856bad 356 softirq_done_fn *softirq_done_fn;
1da177e4 357
8922e16c
TH
358 /*
359 * Dispatch queue sorting
360 */
1b47f531 361 sector_t end_sector;
8922e16c 362 struct request *boundary_rq;
8922e16c 363
1da177e4
LT
364 /*
365 * Auto-unplugging state
366 */
367 struct timer_list unplug_timer;
368 int unplug_thresh; /* After this many requests */
369 unsigned long unplug_delay; /* After this many jiffies */
370 struct work_struct unplug_work;
371
372 struct backing_dev_info backing_dev_info;
373
374 /*
375 * The queue owner gets to use this for whatever they like.
376 * ll_rw_blk doesn't touch it.
377 */
378 void *queuedata;
379
380 void *activity_data;
381
382 /*
383 * queue needs bounce pages for pages above this limit
384 */
385 unsigned long bounce_pfn;
8267e268 386 gfp_t bounce_gfp;
1da177e4
LT
387
388 /*
389 * various queue flags, see QUEUE_* below
390 */
391 unsigned long queue_flags;
392
393 /*
152587de
JA
394 * protects queue structures from reentrancy. ->__queue_lock should
395 * _never_ be used directly, it is queue private. always use
396 * ->queue_lock.
1da177e4 397 */
152587de 398 spinlock_t __queue_lock;
1da177e4
LT
399 spinlock_t *queue_lock;
400
401 /*
402 * queue kobject
403 */
404 struct kobject kobj;
405
406 /*
407 * queue settings
408 */
409 unsigned long nr_requests; /* Max # of requests */
410 unsigned int nr_congestion_on;
411 unsigned int nr_congestion_off;
412 unsigned int nr_batching;
413
2cb2e147
JA
414 unsigned int max_sectors;
415 unsigned int max_hw_sectors;
1da177e4
LT
416 unsigned short max_phys_segments;
417 unsigned short max_hw_segments;
418 unsigned short hardsect_size;
419 unsigned int max_segment_size;
420
421 unsigned long seg_boundary_mask;
422 unsigned int dma_alignment;
423
424 struct blk_queue_tag *queue_tags;
425
15853af9 426 unsigned int nr_sorted;
1da177e4
LT
427 unsigned int in_flight;
428
429 /*
430 * sg stuff
431 */
432 unsigned int sg_timeout;
433 unsigned int sg_reserved_size;
1946089a 434 int node;
6c5c9341 435#ifdef CONFIG_BLK_DEV_IO_TRACE
2056a782 436 struct blk_trace *blk_trace;
6c5c9341 437#endif
1da177e4
LT
438 /*
439 * reserved for flush operations
440 */
797e7dbb
TH
441 unsigned int ordered, next_ordered, ordseq;
442 int orderr, ordcolor;
443 struct request pre_flush_rq, bar_rq, post_flush_rq;
444 struct request *orig_bar_rq;
445 unsigned int bi_size;
483f4afc
AV
446
447 struct mutex sysfs_lock;
1da177e4
LT
448};
449
450#define RQ_INACTIVE (-1)
451#define RQ_ACTIVE 1
1da177e4
LT
452
453#define QUEUE_FLAG_CLUSTER 0 /* cluster several segments into 1 */
454#define QUEUE_FLAG_QUEUED 1 /* uses generic tag queueing */
455#define QUEUE_FLAG_STOPPED 2 /* queue is stopped */
456#define QUEUE_FLAG_READFULL 3 /* write queue has been filled */
457#define QUEUE_FLAG_WRITEFULL 4 /* read queue has been filled */
458#define QUEUE_FLAG_DEAD 5 /* queue being torn down */
459#define QUEUE_FLAG_REENTER 6 /* Re-entrancy avoidance */
460#define QUEUE_FLAG_PLUGGED 7 /* queue is plugged */
64521d1a 461#define QUEUE_FLAG_ELVSWITCH 8 /* don't use elevator, just do FIFO */
797e7dbb
TH
462
463enum {
464 /*
465 * Hardbarrier is supported with one of the following methods.
466 *
467 * NONE : hardbarrier unsupported
468 * DRAIN : ordering by draining is enough
469 * DRAIN_FLUSH : ordering by draining w/ pre and post flushes
470 * DRAIN_FUA : ordering by draining w/ pre flush and FUA write
471 * TAG : ordering by tag is enough
472 * TAG_FLUSH : ordering by tag w/ pre and post flushes
473 * TAG_FUA : ordering by tag w/ pre flush and FUA write
474 */
475 QUEUE_ORDERED_NONE = 0x00,
476 QUEUE_ORDERED_DRAIN = 0x01,
477 QUEUE_ORDERED_TAG = 0x02,
478
479 QUEUE_ORDERED_PREFLUSH = 0x10,
480 QUEUE_ORDERED_POSTFLUSH = 0x20,
481 QUEUE_ORDERED_FUA = 0x40,
482
483 QUEUE_ORDERED_DRAIN_FLUSH = QUEUE_ORDERED_DRAIN |
484 QUEUE_ORDERED_PREFLUSH | QUEUE_ORDERED_POSTFLUSH,
485 QUEUE_ORDERED_DRAIN_FUA = QUEUE_ORDERED_DRAIN |
486 QUEUE_ORDERED_PREFLUSH | QUEUE_ORDERED_FUA,
487 QUEUE_ORDERED_TAG_FLUSH = QUEUE_ORDERED_TAG |
488 QUEUE_ORDERED_PREFLUSH | QUEUE_ORDERED_POSTFLUSH,
489 QUEUE_ORDERED_TAG_FUA = QUEUE_ORDERED_TAG |
490 QUEUE_ORDERED_PREFLUSH | QUEUE_ORDERED_FUA,
491
492 /*
493 * Ordered operation sequence
494 */
495 QUEUE_ORDSEQ_STARTED = 0x01, /* flushing in progress */
496 QUEUE_ORDSEQ_DRAIN = 0x02, /* waiting for the queue to be drained */
497 QUEUE_ORDSEQ_PREFLUSH = 0x04, /* pre-flushing in progress */
498 QUEUE_ORDSEQ_BAR = 0x08, /* original barrier req in progress */
499 QUEUE_ORDSEQ_POSTFLUSH = 0x10, /* post-flushing in progress */
500 QUEUE_ORDSEQ_DONE = 0x20,
501};
1da177e4
LT
502
503#define blk_queue_plugged(q) test_bit(QUEUE_FLAG_PLUGGED, &(q)->queue_flags)
504#define blk_queue_tagged(q) test_bit(QUEUE_FLAG_QUEUED, &(q)->queue_flags)
505#define blk_queue_stopped(q) test_bit(QUEUE_FLAG_STOPPED, &(q)->queue_flags)
797e7dbb 506#define blk_queue_flushing(q) ((q)->ordseq)
1da177e4 507
4aff5e23
JA
508#define blk_fs_request(rq) ((rq)->cmd_type == REQ_TYPE_FS)
509#define blk_pc_request(rq) ((rq)->cmd_type == REQ_TYPE_BLOCK_PC)
510#define blk_special_request(rq) ((rq)->cmd_type == REQ_TYPE_SPECIAL)
511#define blk_sense_request(rq) ((rq)->cmd_type == REQ_TYPE_SENSE)
512
513#define blk_noretry_request(rq) ((rq)->cmd_flags & REQ_FAILFAST)
514#define blk_rq_started(rq) ((rq)->cmd_flags & REQ_STARTED)
1da177e4
LT
515
516#define blk_account_rq(rq) (blk_rq_started(rq) && blk_fs_request(rq))
517
4aff5e23
JA
518#define blk_pm_suspend_request(rq) ((rq)->cmd_type == REQ_TYPE_PM_SUSPEND)
519#define blk_pm_resume_request(rq) ((rq)->cmd_type == REQ_TYPE_PM_RESUME)
1da177e4 520#define blk_pm_request(rq) \
4aff5e23 521 (blk_pm_suspend_request(rq) || blk_pm_resume_request(rq))
1da177e4 522
4aff5e23
JA
523#define blk_sorted_rq(rq) ((rq)->cmd_flags & REQ_SORTED)
524#define blk_barrier_rq(rq) ((rq)->cmd_flags & REQ_HARDBARRIER)
525#define blk_fua_rq(rq) ((rq)->cmd_flags & REQ_FUA)
1da177e4
LT
526
527#define list_entry_rq(ptr) list_entry((ptr), struct request, queuelist)
528
4aff5e23 529#define rq_data_dir(rq) ((rq)->cmd_flags & 1)
1da177e4
LT
530
531static inline int blk_queue_full(struct request_queue *q, int rw)
532{
533 if (rw == READ)
534 return test_bit(QUEUE_FLAG_READFULL, &q->queue_flags);
535 return test_bit(QUEUE_FLAG_WRITEFULL, &q->queue_flags);
536}
537
538static inline void blk_set_queue_full(struct request_queue *q, int rw)
539{
540 if (rw == READ)
541 set_bit(QUEUE_FLAG_READFULL, &q->queue_flags);
542 else
543 set_bit(QUEUE_FLAG_WRITEFULL, &q->queue_flags);
544}
545
546static inline void blk_clear_queue_full(struct request_queue *q, int rw)
547{
548 if (rw == READ)
549 clear_bit(QUEUE_FLAG_READFULL, &q->queue_flags);
550 else
551 clear_bit(QUEUE_FLAG_WRITEFULL, &q->queue_flags);
552}
553
554
555/*
556 * mergeable request must not have _NOMERGE or _BARRIER bit set, nor may
557 * it already be started by driver.
558 */
559#define RQ_NOMERGE_FLAGS \
560 (REQ_NOMERGE | REQ_STARTED | REQ_HARDBARRIER | REQ_SOFTBARRIER)
561#define rq_mergeable(rq) \
4aff5e23 562 (!((rq)->cmd_flags & RQ_NOMERGE_FLAGS) && blk_fs_request((rq)))
1da177e4
LT
563
564/*
565 * noop, requests are automagically marked as active/inactive by I/O
566 * scheduler -- see elv_next_request
567 */
568#define blk_queue_headactive(q, head_active)
569
570/*
571 * q->prep_rq_fn return values
572 */
573#define BLKPREP_OK 0 /* serve it */
574#define BLKPREP_KILL 1 /* fatal error, kill */
575#define BLKPREP_DEFER 2 /* leave on queue */
576
577extern unsigned long blk_max_low_pfn, blk_max_pfn;
578
579/*
580 * standard bounce addresses:
581 *
582 * BLK_BOUNCE_HIGH : bounce all highmem pages
583 * BLK_BOUNCE_ANY : don't bounce anything
584 * BLK_BOUNCE_ISA : bounce pages above ISA DMA boundary
585 */
586#define BLK_BOUNCE_HIGH ((u64)blk_max_low_pfn << PAGE_SHIFT)
587#define BLK_BOUNCE_ANY ((u64)blk_max_pfn << PAGE_SHIFT)
588#define BLK_BOUNCE_ISA (ISA_DMA_THRESHOLD)
589
590#ifdef CONFIG_MMU
591extern int init_emergency_isa_pool(void);
592extern void blk_queue_bounce(request_queue_t *q, struct bio **bio);
593#else
594static inline int init_emergency_isa_pool(void)
595{
596 return 0;
597}
598static inline void blk_queue_bounce(request_queue_t *q, struct bio **bio)
599{
600}
601#endif /* CONFIG_MMU */
602
603#define rq_for_each_bio(_bio, rq) \
604 if ((rq->bio)) \
605 for (_bio = (rq)->bio; _bio; _bio = _bio->bi_next)
606
607struct sec_size {
608 unsigned block_size;
609 unsigned block_size_bits;
610};
611
612extern int blk_register_queue(struct gendisk *disk);
613extern void blk_unregister_queue(struct gendisk *disk);
614extern void register_disk(struct gendisk *dev);
615extern void generic_make_request(struct bio *bio);
616extern void blk_put_request(struct request *);
6e39b69e 617extern void __blk_put_request(request_queue_t *, struct request *);
8ffdc655 618extern void blk_end_sync_rq(struct request *rq, int error);
8267e268 619extern struct request *blk_get_request(request_queue_t *, int, gfp_t);
867d1191 620extern void blk_insert_request(request_queue_t *, struct request *, int, void *);
1da177e4
LT
621extern void blk_requeue_request(request_queue_t *, struct request *);
622extern void blk_plug_device(request_queue_t *);
623extern int blk_remove_plug(request_queue_t *);
624extern void blk_recount_segments(request_queue_t *, struct bio *);
1da177e4 625extern int scsi_cmd_ioctl(struct file *, struct gendisk *, unsigned int, void __user *);
21b2f0c8
CH
626extern int sg_scsi_ioctl(struct file *, struct request_queue *,
627 struct gendisk *, struct scsi_ioctl_command __user *);
1da177e4
LT
628extern void blk_start_queue(request_queue_t *q);
629extern void blk_stop_queue(request_queue_t *q);
630extern void blk_sync_queue(struct request_queue *q);
631extern void __blk_stop_queue(request_queue_t *q);
632extern void blk_run_queue(request_queue_t *);
633extern void blk_queue_activity_fn(request_queue_t *, activity_fn *, void *);
dd1cab95
JA
634extern int blk_rq_map_user(request_queue_t *, struct request *, void __user *, unsigned int);
635extern int blk_rq_unmap_user(struct bio *, unsigned int);
8267e268 636extern int blk_rq_map_kern(request_queue_t *, struct request *, void *, unsigned int, gfp_t);
f1970baf 637extern int blk_rq_map_user_iov(request_queue_t *, struct request *, struct sg_iovec *, int);
994ca9a1
JB
638extern int blk_execute_rq(request_queue_t *, struct gendisk *,
639 struct request *, int);
6e39b69e 640extern void blk_execute_rq_nowait(request_queue_t *, struct gendisk *,
15fc858a 641 struct request *, int, rq_end_io_fn *);
6e39b69e 642
1da177e4
LT
643static inline request_queue_t *bdev_get_queue(struct block_device *bdev)
644{
645 return bdev->bd_disk->queue;
646}
647
648static inline void blk_run_backing_dev(struct backing_dev_info *bdi,
649 struct page *page)
650{
651 if (bdi && bdi->unplug_io_fn)
652 bdi->unplug_io_fn(bdi, page);
653}
654
655static inline void blk_run_address_space(struct address_space *mapping)
656{
657 if (mapping)
658 blk_run_backing_dev(mapping->backing_dev_info, NULL);
659}
660
661/*
662 * end_request() and friends. Must be called with the request queue spinlock
663 * acquired. All functions called within end_request() _must_be_ atomic.
664 *
665 * Several drivers define their own end_request and call
666 * end_that_request_first() and end_that_request_last()
667 * for parts of the original function. This prevents
668 * code duplication in drivers.
669 */
670extern int end_that_request_first(struct request *, int, int);
671extern int end_that_request_chunk(struct request *, int, int);
8ffdc655 672extern void end_that_request_last(struct request *, int);
1da177e4 673extern void end_request(struct request *req, int uptodate);
ff856bad
JA
674extern void blk_complete_request(struct request *);
675
676static inline int rq_all_done(struct request *rq, unsigned int nr_bytes)
677{
678 if (blk_fs_request(rq))
679 return (nr_bytes >= (rq->hard_nr_sectors << 9));
680 else if (blk_pc_request(rq))
681 return nr_bytes >= rq->data_len;
682
683 return 0;
684}
1da177e4
LT
685
686/*
687 * end_that_request_first/chunk() takes an uptodate argument. we account
688 * any value <= as an io error. 0 means -EIO for compatability reasons,
689 * any other < 0 value is the direct error type. An uptodate value of
690 * 1 indicates successful io completion
691 */
692#define end_io_error(uptodate) (unlikely((uptodate) <= 0))
693
694static inline void blkdev_dequeue_request(struct request *req)
695{
8922e16c 696 elv_dequeue_request(req->q, req);
1da177e4 697}
1da177e4 698
1b47f531
JA
699/*
700 * This should be in elevator.h, but that requires pulling in rq and q
701 */
702static inline void elv_dispatch_add_tail(struct request_queue *q,
703 struct request *rq)
704{
06b86245
TH
705 if (q->last_merge == rq)
706 q->last_merge = NULL;
15853af9 707 q->nr_sorted--;
1da177e4 708
1b47f531
JA
709 q->end_sector = rq_end_sector(rq);
710 q->boundary_rq = rq;
711 list_add_tail(&rq->queuelist, &q->queue_head);
1da177e4
LT
712}
713
714/*
715 * Access functions for manipulating queue properties
716 */
1946089a
CL
717extern request_queue_t *blk_init_queue_node(request_fn_proc *rfn,
718 spinlock_t *lock, int node_id);
1da177e4
LT
719extern request_queue_t *blk_init_queue(request_fn_proc *, spinlock_t *);
720extern void blk_cleanup_queue(request_queue_t *);
721extern void blk_queue_make_request(request_queue_t *, make_request_fn *);
722extern void blk_queue_bounce_limit(request_queue_t *, u64);
2cb2e147 723extern void blk_queue_max_sectors(request_queue_t *, unsigned int);
1da177e4
LT
724extern void blk_queue_max_phys_segments(request_queue_t *, unsigned short);
725extern void blk_queue_max_hw_segments(request_queue_t *, unsigned short);
726extern void blk_queue_max_segment_size(request_queue_t *, unsigned int);
727extern void blk_queue_hardsect_size(request_queue_t *, unsigned short);
728extern void blk_queue_stack_limits(request_queue_t *t, request_queue_t *b);
729extern void blk_queue_segment_boundary(request_queue_t *, unsigned long);
730extern void blk_queue_prep_rq(request_queue_t *, prep_rq_fn *pfn);
731extern void blk_queue_merge_bvec(request_queue_t *, merge_bvec_fn *);
732extern void blk_queue_dma_alignment(request_queue_t *, int);
ff856bad 733extern void blk_queue_softirq_done(request_queue_t *, softirq_done_fn *);
1da177e4 734extern struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev);
797e7dbb 735extern int blk_queue_ordered(request_queue_t *, unsigned, prepare_flush_fn *);
1da177e4 736extern void blk_queue_issue_flush_fn(request_queue_t *, issue_flush_fn *);
797e7dbb
TH
737extern int blk_do_ordered(request_queue_t *, struct request **);
738extern unsigned blk_ordered_cur_seq(request_queue_t *);
739extern unsigned blk_ordered_req_seq(struct request *);
740extern void blk_ordered_complete_seq(request_queue_t *, unsigned, int);
1da177e4
LT
741
742extern int blk_rq_map_sg(request_queue_t *, struct request *, struct scatterlist *);
743extern void blk_dump_rq_flags(struct request *, char *);
744extern void generic_unplug_device(request_queue_t *);
745extern void __generic_unplug_device(request_queue_t *);
746extern long nr_blockdev_pages(void);
1da177e4
LT
747
748int blk_get_queue(request_queue_t *);
8267e268
AV
749request_queue_t *blk_alloc_queue(gfp_t);
750request_queue_t *blk_alloc_queue_node(gfp_t, int);
483f4afc 751extern void blk_put_queue(request_queue_t *);
1da177e4
LT
752
753/*
754 * tag stuff
755 */
756#define blk_queue_tag_depth(q) ((q)->queue_tags->busy)
757#define blk_queue_tag_queue(q) ((q)->queue_tags->busy < (q)->queue_tags->max_depth)
4aff5e23 758#define blk_rq_tagged(rq) ((rq)->cmd_flags & REQ_QUEUED)
1da177e4
LT
759extern int blk_queue_start_tag(request_queue_t *, struct request *);
760extern struct request *blk_queue_find_tag(request_queue_t *, int);
761extern void blk_queue_end_tag(request_queue_t *, struct request *);
762extern int blk_queue_init_tags(request_queue_t *, int, struct blk_queue_tag *);
763extern void blk_queue_free_tags(request_queue_t *);
764extern int blk_queue_resize_tags(request_queue_t *, int);
765extern void blk_queue_invalidate_tags(request_queue_t *);
766extern long blk_congestion_wait(int rw, long timeout);
492dfb48
JB
767extern struct blk_queue_tag *blk_init_tags(int);
768extern void blk_free_tags(struct blk_queue_tag *);
275a082f 769extern void blk_congestion_end(int rw);
1da177e4
LT
770
771extern void blk_rq_bio_prep(request_queue_t *, struct request *, struct bio *);
772extern int blkdev_issue_flush(struct block_device *, sector_t *);
773
774#define MAX_PHYS_SEGMENTS 128
775#define MAX_HW_SEGMENTS 128
defd94b7
MC
776#define SAFE_MAX_SECTORS 255
777#define BLK_DEF_MAX_SECTORS 1024
1da177e4
LT
778
779#define MAX_SEGMENT_SIZE 65536
780
781#define blkdev_entry_to_request(entry) list_entry((entry), struct request, queuelist)
782
1da177e4
LT
783static inline int queue_hardsect_size(request_queue_t *q)
784{
785 int retval = 512;
786
787 if (q && q->hardsect_size)
788 retval = q->hardsect_size;
789
790 return retval;
791}
792
793static inline int bdev_hardsect_size(struct block_device *bdev)
794{
795 return queue_hardsect_size(bdev_get_queue(bdev));
796}
797
798static inline int queue_dma_alignment(request_queue_t *q)
799{
800 int retval = 511;
801
802 if (q && q->dma_alignment)
803 retval = q->dma_alignment;
804
805 return retval;
806}
807
808static inline int bdev_dma_aligment(struct block_device *bdev)
809{
810 return queue_dma_alignment(bdev_get_queue(bdev));
811}
812
813#define blk_finished_io(nsects) do { } while (0)
814#define blk_started_io(nsects) do { } while (0)
815
816/* assumes size > 256 */
817static inline unsigned int blksize_bits(unsigned int size)
818{
819 unsigned int bits = 8;
820 do {
821 bits++;
822 size >>= 1;
823 } while (size > 256);
824 return bits;
825}
826
2befb9e3 827static inline unsigned int block_size(struct block_device *bdev)
1da177e4
LT
828{
829 return bdev->bd_block_size;
830}
831
832typedef struct {struct page *v;} Sector;
833
834unsigned char *read_dev_sector(struct block_device *, sector_t, Sector *);
835
836static inline void put_dev_sector(Sector p)
837{
838 page_cache_release(p.v);
839}
840
841struct work_struct;
842int kblockd_schedule_work(struct work_struct *work);
843void kblockd_flush(void);
844
845#ifdef CONFIG_LBD
846# include <asm/div64.h>
847# define sector_div(a, b) do_div(a, b)
848#else
849# define sector_div(n, b)( \
850{ \
851 int _res; \
852 _res = (n) % (b); \
853 (n) /= (b); \
854 _res; \
855} \
856)
857#endif
858
859#define MODULE_ALIAS_BLOCKDEV(major,minor) \
860 MODULE_ALIAS("block-major-" __stringify(major) "-" __stringify(minor))
861#define MODULE_ALIAS_BLOCKDEV_MAJOR(major) \
862 MODULE_ALIAS("block-major-" __stringify(major) "-*")
863
864
865#endif