]> bbs.cooldavid.org Git - net-next-2.6.git/blame_incremental - include/linux/blkdev.h
block: fix an address space warning in blk-map.c
[net-next-2.6.git] / include / linux / blkdev.h
... / ...
CommitLineData
1#ifndef _LINUX_BLKDEV_H
2#define _LINUX_BLKDEV_H
3
4#ifdef CONFIG_BLOCK
5
6#include <linux/sched.h>
7#include <linux/major.h>
8#include <linux/genhd.h>
9#include <linux/list.h>
10#include <linux/timer.h>
11#include <linux/workqueue.h>
12#include <linux/pagemap.h>
13#include <linux/backing-dev.h>
14#include <linux/wait.h>
15#include <linux/mempool.h>
16#include <linux/bio.h>
17#include <linux/module.h>
18#include <linux/stringify.h>
19#include <linux/gfp.h>
20#include <linux/bsg.h>
21#include <linux/smp.h>
22
23#include <asm/scatterlist.h>
24
25struct scsi_ioctl_command;
26
27struct request_queue;
28struct elevator_queue;
29struct request_pm_state;
30struct blk_trace;
31struct request;
32struct sg_io_hdr;
33
34#define BLKDEV_MIN_RQ 4
35#define BLKDEV_MAX_RQ 128 /* Default maximum */
36
37struct request;
38typedef void (rq_end_io_fn)(struct request *, int);
39
40struct request_list {
41 /*
42 * count[], starved[], and wait[] are indexed by
43 * BLK_RW_SYNC/BLK_RW_ASYNC
44 */
45 int count[2];
46 int starved[2];
47 int elvpriv;
48 mempool_t *rq_pool;
49 wait_queue_head_t wait[2];
50};
51
52/*
53 * request command types
54 */
55enum rq_cmd_type_bits {
56 REQ_TYPE_FS = 1, /* fs request */
57 REQ_TYPE_BLOCK_PC, /* scsi command */
58 REQ_TYPE_SENSE, /* sense request */
59 REQ_TYPE_PM_SUSPEND, /* suspend request */
60 REQ_TYPE_PM_RESUME, /* resume request */
61 REQ_TYPE_PM_SHUTDOWN, /* shutdown request */
62 REQ_TYPE_SPECIAL, /* driver defined type */
63 /*
64 * for ATA/ATAPI devices. this really doesn't belong here, ide should
65 * use REQ_TYPE_SPECIAL and use rq->cmd[0] with the range of driver
66 * private REQ_LB opcodes to differentiate what type of request this is
67 */
68 REQ_TYPE_ATA_TASKFILE,
69 REQ_TYPE_ATA_PC,
70};
71
72#define BLK_MAX_CDB 16
73
74/*
75 * try to put the fields that are referenced together in the same cacheline.
76 * if you modify this structure, be sure to check block/blk-core.c:rq_init()
77 * as well!
78 */
79struct request {
80 struct list_head queuelist;
81 struct call_single_data csd;
82
83 struct request_queue *q;
84
85 unsigned int cmd_flags;
86 enum rq_cmd_type_bits cmd_type;
87 unsigned long atomic_flags;
88
89 int cpu;
90
91 /* the following two fields are internal, NEVER access directly */
92 unsigned int __data_len; /* total data len */
93 sector_t __sector; /* sector cursor */
94
95 struct bio *bio;
96 struct bio *biotail;
97
98 struct hlist_node hash; /* merge hash */
99 /*
100 * The rb_node is only used inside the io scheduler, requests
101 * are pruned when moved to the dispatch queue. So let the
102 * completion_data share space with the rb_node.
103 */
104 union {
105 struct rb_node rb_node; /* sort/lookup */
106 void *completion_data;
107 };
108
109 /*
110 * Three pointers are available for the IO schedulers, if they need
111 * more they have to dynamically allocate it.
112 */
113 void *elevator_private;
114 void *elevator_private2;
115 void *elevator_private3;
116
117 struct gendisk *rq_disk;
118 unsigned long start_time;
119#ifdef CONFIG_BLK_CGROUP
120 unsigned long long start_time_ns;
121 unsigned long long io_start_time_ns; /* when passed to hardware */
122#endif
123 /* Number of scatter-gather DMA addr+len pairs after
124 * physical address coalescing is performed.
125 */
126 unsigned short nr_phys_segments;
127#if defined(CONFIG_BLK_DEV_INTEGRITY)
128 unsigned short nr_integrity_segments;
129#endif
130
131 unsigned short ioprio;
132
133 int ref_count;
134
135 void *special; /* opaque pointer available for LLD use */
136 char *buffer; /* kaddr of the current segment if available */
137
138 int tag;
139 int errors;
140
141 /*
142 * when request is used as a packet command carrier
143 */
144 unsigned char __cmd[BLK_MAX_CDB];
145 unsigned char *cmd;
146 unsigned short cmd_len;
147
148 unsigned int extra_len; /* length of alignment and padding */
149 unsigned int sense_len;
150 unsigned int resid_len; /* residual count */
151 void *sense;
152
153 unsigned long deadline;
154 struct list_head timeout_list;
155 unsigned int timeout;
156 int retries;
157
158 /*
159 * completion callback.
160 */
161 rq_end_io_fn *end_io;
162 void *end_io_data;
163
164 /* for bidi */
165 struct request *next_rq;
166};
167
168static inline unsigned short req_get_ioprio(struct request *req)
169{
170 return req->ioprio;
171}
172
173/*
174 * State information carried for REQ_TYPE_PM_SUSPEND and REQ_TYPE_PM_RESUME
175 * requests. Some step values could eventually be made generic.
176 */
177struct request_pm_state
178{
179 /* PM state machine step value, currently driver specific */
180 int pm_step;
181 /* requested PM state value (S1, S2, S3, S4, ...) */
182 u32 pm_state;
183 void* data; /* for driver use */
184};
185
186#include <linux/elevator.h>
187
188typedef void (request_fn_proc) (struct request_queue *q);
189typedef int (make_request_fn) (struct request_queue *q, struct bio *bio);
190typedef int (prep_rq_fn) (struct request_queue *, struct request *);
191typedef void (unprep_rq_fn) (struct request_queue *, struct request *);
192typedef void (unplug_fn) (struct request_queue *);
193
194struct bio_vec;
195struct bvec_merge_data {
196 struct block_device *bi_bdev;
197 sector_t bi_sector;
198 unsigned bi_size;
199 unsigned long bi_rw;
200};
201typedef int (merge_bvec_fn) (struct request_queue *, struct bvec_merge_data *,
202 struct bio_vec *);
203typedef void (softirq_done_fn)(struct request *);
204typedef int (dma_drain_needed_fn)(struct request *);
205typedef int (lld_busy_fn) (struct request_queue *q);
206
207enum blk_eh_timer_return {
208 BLK_EH_NOT_HANDLED,
209 BLK_EH_HANDLED,
210 BLK_EH_RESET_TIMER,
211};
212
213typedef enum blk_eh_timer_return (rq_timed_out_fn)(struct request *);
214
215enum blk_queue_state {
216 Queue_down,
217 Queue_up,
218};
219
220struct blk_queue_tag {
221 struct request **tag_index; /* map of busy tags */
222 unsigned long *tag_map; /* bit map of free/busy tags */
223 int busy; /* current depth */
224 int max_depth; /* what we will send to device */
225 int real_max_depth; /* what the array can hold */
226 atomic_t refcnt; /* map can be shared */
227};
228
229#define BLK_SCSI_MAX_CMDS (256)
230#define BLK_SCSI_CMD_PER_LONG (BLK_SCSI_MAX_CMDS / (sizeof(long) * 8))
231
232struct queue_limits {
233 unsigned long bounce_pfn;
234 unsigned long seg_boundary_mask;
235
236 unsigned int max_hw_sectors;
237 unsigned int max_sectors;
238 unsigned int max_segment_size;
239 unsigned int physical_block_size;
240 unsigned int alignment_offset;
241 unsigned int io_min;
242 unsigned int io_opt;
243 unsigned int max_discard_sectors;
244 unsigned int discard_granularity;
245 unsigned int discard_alignment;
246
247 unsigned short logical_block_size;
248 unsigned short max_segments;
249 unsigned short max_integrity_segments;
250
251 unsigned char misaligned;
252 unsigned char discard_misaligned;
253 unsigned char no_cluster;
254 signed char discard_zeroes_data;
255};
256
257struct request_queue
258{
259 /*
260 * Together with queue_head for cacheline sharing
261 */
262 struct list_head queue_head;
263 struct request *last_merge;
264 struct elevator_queue *elevator;
265
266 /*
267 * the queue request freelist, one for reads and one for writes
268 */
269 struct request_list rq;
270
271 request_fn_proc *request_fn;
272 make_request_fn *make_request_fn;
273 prep_rq_fn *prep_rq_fn;
274 unprep_rq_fn *unprep_rq_fn;
275 unplug_fn *unplug_fn;
276 merge_bvec_fn *merge_bvec_fn;
277 softirq_done_fn *softirq_done_fn;
278 rq_timed_out_fn *rq_timed_out_fn;
279 dma_drain_needed_fn *dma_drain_needed;
280 lld_busy_fn *lld_busy_fn;
281
282 /*
283 * Dispatch queue sorting
284 */
285 sector_t end_sector;
286 struct request *boundary_rq;
287
288 /*
289 * Auto-unplugging state
290 */
291 struct timer_list unplug_timer;
292 int unplug_thresh; /* After this many requests */
293 unsigned long unplug_delay; /* After this many jiffies */
294 struct work_struct unplug_work;
295
296 struct backing_dev_info backing_dev_info;
297
298 /*
299 * The queue owner gets to use this for whatever they like.
300 * ll_rw_blk doesn't touch it.
301 */
302 void *queuedata;
303
304 /*
305 * queue needs bounce pages for pages above this limit
306 */
307 gfp_t bounce_gfp;
308
309 /*
310 * various queue flags, see QUEUE_* below
311 */
312 unsigned long queue_flags;
313
314 /*
315 * protects queue structures from reentrancy. ->__queue_lock should
316 * _never_ be used directly, it is queue private. always use
317 * ->queue_lock.
318 */
319 spinlock_t __queue_lock;
320 spinlock_t *queue_lock;
321
322 /*
323 * queue kobject
324 */
325 struct kobject kobj;
326
327 /*
328 * queue settings
329 */
330 unsigned long nr_requests; /* Max # of requests */
331 unsigned int nr_congestion_on;
332 unsigned int nr_congestion_off;
333 unsigned int nr_batching;
334
335 void *dma_drain_buffer;
336 unsigned int dma_drain_size;
337 unsigned int dma_pad_mask;
338 unsigned int dma_alignment;
339
340 struct blk_queue_tag *queue_tags;
341 struct list_head tag_busy_list;
342
343 unsigned int nr_sorted;
344 unsigned int in_flight[2];
345
346 unsigned int rq_timeout;
347 struct timer_list timeout;
348 struct list_head timeout_list;
349
350 struct queue_limits limits;
351
352 /*
353 * sg stuff
354 */
355 unsigned int sg_timeout;
356 unsigned int sg_reserved_size;
357 int node;
358#ifdef CONFIG_BLK_DEV_IO_TRACE
359 struct blk_trace *blk_trace;
360#endif
361 /*
362 * reserved for flush operations
363 */
364 unsigned int ordered, next_ordered, ordseq;
365 int orderr, ordcolor;
366 struct request pre_flush_rq, bar_rq, post_flush_rq;
367 struct request *orig_bar_rq;
368
369 struct mutex sysfs_lock;
370
371#if defined(CONFIG_BLK_DEV_BSG)
372 struct bsg_class_device bsg_dev;
373#endif
374};
375
376#define QUEUE_FLAG_CLUSTER 0 /* cluster several segments into 1 */
377#define QUEUE_FLAG_QUEUED 1 /* uses generic tag queueing */
378#define QUEUE_FLAG_STOPPED 2 /* queue is stopped */
379#define QUEUE_FLAG_SYNCFULL 3 /* read queue has been filled */
380#define QUEUE_FLAG_ASYNCFULL 4 /* write queue has been filled */
381#define QUEUE_FLAG_DEAD 5 /* queue being torn down */
382#define QUEUE_FLAG_REENTER 6 /* Re-entrancy avoidance */
383#define QUEUE_FLAG_PLUGGED 7 /* queue is plugged */
384#define QUEUE_FLAG_ELVSWITCH 8 /* don't use elevator, just do FIFO */
385#define QUEUE_FLAG_BIDI 9 /* queue supports bidi requests */
386#define QUEUE_FLAG_NOMERGES 10 /* disable merge attempts */
387#define QUEUE_FLAG_SAME_COMP 11 /* force complete on same CPU */
388#define QUEUE_FLAG_FAIL_IO 12 /* fake timeout */
389#define QUEUE_FLAG_STACKABLE 13 /* supports request stacking */
390#define QUEUE_FLAG_NONROT 14 /* non-rotational device (SSD) */
391#define QUEUE_FLAG_VIRT QUEUE_FLAG_NONROT /* paravirt device */
392#define QUEUE_FLAG_IO_STAT 15 /* do IO stats */
393#define QUEUE_FLAG_DISCARD 16 /* supports DISCARD */
394#define QUEUE_FLAG_NOXMERGES 17 /* No extended merges */
395#define QUEUE_FLAG_ADD_RANDOM 18 /* Contributes to random pool */
396#define QUEUE_FLAG_SECDISCARD 19 /* supports SECDISCARD */
397
398#define QUEUE_FLAG_DEFAULT ((1 << QUEUE_FLAG_IO_STAT) | \
399 (1 << QUEUE_FLAG_CLUSTER) | \
400 (1 << QUEUE_FLAG_STACKABLE) | \
401 (1 << QUEUE_FLAG_SAME_COMP) | \
402 (1 << QUEUE_FLAG_ADD_RANDOM))
403
404static inline int queue_is_locked(struct request_queue *q)
405{
406#ifdef CONFIG_SMP
407 spinlock_t *lock = q->queue_lock;
408 return lock && spin_is_locked(lock);
409#else
410 return 1;
411#endif
412}
413
414static inline void queue_flag_set_unlocked(unsigned int flag,
415 struct request_queue *q)
416{
417 __set_bit(flag, &q->queue_flags);
418}
419
420static inline int queue_flag_test_and_clear(unsigned int flag,
421 struct request_queue *q)
422{
423 WARN_ON_ONCE(!queue_is_locked(q));
424
425 if (test_bit(flag, &q->queue_flags)) {
426 __clear_bit(flag, &q->queue_flags);
427 return 1;
428 }
429
430 return 0;
431}
432
433static inline int queue_flag_test_and_set(unsigned int flag,
434 struct request_queue *q)
435{
436 WARN_ON_ONCE(!queue_is_locked(q));
437
438 if (!test_bit(flag, &q->queue_flags)) {
439 __set_bit(flag, &q->queue_flags);
440 return 0;
441 }
442
443 return 1;
444}
445
446static inline void queue_flag_set(unsigned int flag, struct request_queue *q)
447{
448 WARN_ON_ONCE(!queue_is_locked(q));
449 __set_bit(flag, &q->queue_flags);
450}
451
452static inline void queue_flag_clear_unlocked(unsigned int flag,
453 struct request_queue *q)
454{
455 __clear_bit(flag, &q->queue_flags);
456}
457
458static inline int queue_in_flight(struct request_queue *q)
459{
460 return q->in_flight[0] + q->in_flight[1];
461}
462
463static inline void queue_flag_clear(unsigned int flag, struct request_queue *q)
464{
465 WARN_ON_ONCE(!queue_is_locked(q));
466 __clear_bit(flag, &q->queue_flags);
467}
468
469enum {
470 /*
471 * Hardbarrier is supported with one of the following methods.
472 *
473 * NONE : hardbarrier unsupported
474 * DRAIN : ordering by draining is enough
475 * DRAIN_FLUSH : ordering by draining w/ pre and post flushes
476 * DRAIN_FUA : ordering by draining w/ pre flush and FUA write
477 * TAG : ordering by tag is enough
478 * TAG_FLUSH : ordering by tag w/ pre and post flushes
479 * TAG_FUA : ordering by tag w/ pre flush and FUA write
480 */
481 QUEUE_ORDERED_BY_DRAIN = 0x01,
482 QUEUE_ORDERED_BY_TAG = 0x02,
483 QUEUE_ORDERED_DO_PREFLUSH = 0x10,
484 QUEUE_ORDERED_DO_BAR = 0x20,
485 QUEUE_ORDERED_DO_POSTFLUSH = 0x40,
486 QUEUE_ORDERED_DO_FUA = 0x80,
487
488 QUEUE_ORDERED_NONE = 0x00,
489
490 QUEUE_ORDERED_DRAIN = QUEUE_ORDERED_BY_DRAIN |
491 QUEUE_ORDERED_DO_BAR,
492 QUEUE_ORDERED_DRAIN_FLUSH = QUEUE_ORDERED_DRAIN |
493 QUEUE_ORDERED_DO_PREFLUSH |
494 QUEUE_ORDERED_DO_POSTFLUSH,
495 QUEUE_ORDERED_DRAIN_FUA = QUEUE_ORDERED_DRAIN |
496 QUEUE_ORDERED_DO_PREFLUSH |
497 QUEUE_ORDERED_DO_FUA,
498
499 QUEUE_ORDERED_TAG = QUEUE_ORDERED_BY_TAG |
500 QUEUE_ORDERED_DO_BAR,
501 QUEUE_ORDERED_TAG_FLUSH = QUEUE_ORDERED_TAG |
502 QUEUE_ORDERED_DO_PREFLUSH |
503 QUEUE_ORDERED_DO_POSTFLUSH,
504 QUEUE_ORDERED_TAG_FUA = QUEUE_ORDERED_TAG |
505 QUEUE_ORDERED_DO_PREFLUSH |
506 QUEUE_ORDERED_DO_FUA,
507
508 /*
509 * Ordered operation sequence
510 */
511 QUEUE_ORDSEQ_STARTED = 0x01, /* flushing in progress */
512 QUEUE_ORDSEQ_DRAIN = 0x02, /* waiting for the queue to be drained */
513 QUEUE_ORDSEQ_PREFLUSH = 0x04, /* pre-flushing in progress */
514 QUEUE_ORDSEQ_BAR = 0x08, /* original barrier req in progress */
515 QUEUE_ORDSEQ_POSTFLUSH = 0x10, /* post-flushing in progress */
516 QUEUE_ORDSEQ_DONE = 0x20,
517};
518
519#define blk_queue_plugged(q) test_bit(QUEUE_FLAG_PLUGGED, &(q)->queue_flags)
520#define blk_queue_tagged(q) test_bit(QUEUE_FLAG_QUEUED, &(q)->queue_flags)
521#define blk_queue_stopped(q) test_bit(QUEUE_FLAG_STOPPED, &(q)->queue_flags)
522#define blk_queue_nomerges(q) test_bit(QUEUE_FLAG_NOMERGES, &(q)->queue_flags)
523#define blk_queue_noxmerges(q) \
524 test_bit(QUEUE_FLAG_NOXMERGES, &(q)->queue_flags)
525#define blk_queue_nonrot(q) test_bit(QUEUE_FLAG_NONROT, &(q)->queue_flags)
526#define blk_queue_io_stat(q) test_bit(QUEUE_FLAG_IO_STAT, &(q)->queue_flags)
527#define blk_queue_add_random(q) test_bit(QUEUE_FLAG_ADD_RANDOM, &(q)->queue_flags)
528#define blk_queue_flushing(q) ((q)->ordseq)
529#define blk_queue_stackable(q) \
530 test_bit(QUEUE_FLAG_STACKABLE, &(q)->queue_flags)
531#define blk_queue_discard(q) test_bit(QUEUE_FLAG_DISCARD, &(q)->queue_flags)
532#define blk_queue_secdiscard(q) (blk_queue_discard(q) && \
533 test_bit(QUEUE_FLAG_SECDISCARD, &(q)->queue_flags))
534
535#define blk_noretry_request(rq) \
536 ((rq)->cmd_flags & (REQ_FAILFAST_DEV|REQ_FAILFAST_TRANSPORT| \
537 REQ_FAILFAST_DRIVER))
538
539#define blk_account_rq(rq) \
540 (((rq)->cmd_flags & REQ_STARTED) && \
541 ((rq)->cmd_type == REQ_TYPE_FS || \
542 ((rq)->cmd_flags & REQ_DISCARD)))
543
544#define blk_pm_request(rq) \
545 ((rq)->cmd_type == REQ_TYPE_PM_SUSPEND || \
546 (rq)->cmd_type == REQ_TYPE_PM_RESUME)
547
548#define blk_rq_cpu_valid(rq) ((rq)->cpu != -1)
549#define blk_bidi_rq(rq) ((rq)->next_rq != NULL)
550/* rq->queuelist of dequeued request must be list_empty() */
551#define blk_queued_rq(rq) (!list_empty(&(rq)->queuelist))
552
553#define list_entry_rq(ptr) list_entry((ptr), struct request, queuelist)
554
555#define rq_data_dir(rq) ((rq)->cmd_flags & 1)
556
557/*
558 * We regard a request as sync, if either a read or a sync write
559 */
560static inline bool rw_is_sync(unsigned int rw_flags)
561{
562 return !(rw_flags & REQ_WRITE) || (rw_flags & REQ_SYNC);
563}
564
565static inline bool rq_is_sync(struct request *rq)
566{
567 return rw_is_sync(rq->cmd_flags);
568}
569
570static inline int blk_queue_full(struct request_queue *q, int sync)
571{
572 if (sync)
573 return test_bit(QUEUE_FLAG_SYNCFULL, &q->queue_flags);
574 return test_bit(QUEUE_FLAG_ASYNCFULL, &q->queue_flags);
575}
576
577static inline void blk_set_queue_full(struct request_queue *q, int sync)
578{
579 if (sync)
580 queue_flag_set(QUEUE_FLAG_SYNCFULL, q);
581 else
582 queue_flag_set(QUEUE_FLAG_ASYNCFULL, q);
583}
584
585static inline void blk_clear_queue_full(struct request_queue *q, int sync)
586{
587 if (sync)
588 queue_flag_clear(QUEUE_FLAG_SYNCFULL, q);
589 else
590 queue_flag_clear(QUEUE_FLAG_ASYNCFULL, q);
591}
592
593
594/*
595 * mergeable request must not have _NOMERGE or _BARRIER bit set, nor may
596 * it already be started by driver.
597 */
598#define RQ_NOMERGE_FLAGS \
599 (REQ_NOMERGE | REQ_STARTED | REQ_HARDBARRIER | REQ_SOFTBARRIER)
600#define rq_mergeable(rq) \
601 (!((rq)->cmd_flags & RQ_NOMERGE_FLAGS) && \
602 (((rq)->cmd_flags & REQ_DISCARD) || \
603 (rq)->cmd_type == REQ_TYPE_FS))
604
605/*
606 * q->prep_rq_fn return values
607 */
608#define BLKPREP_OK 0 /* serve it */
609#define BLKPREP_KILL 1 /* fatal error, kill */
610#define BLKPREP_DEFER 2 /* leave on queue */
611
612extern unsigned long blk_max_low_pfn, blk_max_pfn;
613
614/*
615 * standard bounce addresses:
616 *
617 * BLK_BOUNCE_HIGH : bounce all highmem pages
618 * BLK_BOUNCE_ANY : don't bounce anything
619 * BLK_BOUNCE_ISA : bounce pages above ISA DMA boundary
620 */
621
622#if BITS_PER_LONG == 32
623#define BLK_BOUNCE_HIGH ((u64)blk_max_low_pfn << PAGE_SHIFT)
624#else
625#define BLK_BOUNCE_HIGH -1ULL
626#endif
627#define BLK_BOUNCE_ANY (-1ULL)
628#define BLK_BOUNCE_ISA (DMA_BIT_MASK(24))
629
630/*
631 * default timeout for SG_IO if none specified
632 */
633#define BLK_DEFAULT_SG_TIMEOUT (60 * HZ)
634#define BLK_MIN_SG_TIMEOUT (7 * HZ)
635
636#ifdef CONFIG_BOUNCE
637extern int init_emergency_isa_pool(void);
638extern void blk_queue_bounce(struct request_queue *q, struct bio **bio);
639#else
640static inline int init_emergency_isa_pool(void)
641{
642 return 0;
643}
644static inline void blk_queue_bounce(struct request_queue *q, struct bio **bio)
645{
646}
647#endif /* CONFIG_MMU */
648
649struct rq_map_data {
650 struct page **pages;
651 int page_order;
652 int nr_entries;
653 unsigned long offset;
654 int null_mapped;
655 int from_user;
656};
657
658struct req_iterator {
659 int i;
660 struct bio *bio;
661};
662
663/* This should not be used directly - use rq_for_each_segment */
664#define for_each_bio(_bio) \
665 for (; _bio; _bio = _bio->bi_next)
666#define __rq_for_each_bio(_bio, rq) \
667 if ((rq->bio)) \
668 for (_bio = (rq)->bio; _bio; _bio = _bio->bi_next)
669
670#define rq_for_each_segment(bvl, _rq, _iter) \
671 __rq_for_each_bio(_iter.bio, _rq) \
672 bio_for_each_segment(bvl, _iter.bio, _iter.i)
673
674#define rq_iter_last(rq, _iter) \
675 (_iter.bio->bi_next == NULL && _iter.i == _iter.bio->bi_vcnt-1)
676
677#ifndef ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
678# error "You should define ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE for your platform"
679#endif
680#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
681extern void rq_flush_dcache_pages(struct request *rq);
682#else
683static inline void rq_flush_dcache_pages(struct request *rq)
684{
685}
686#endif
687
688extern int blk_register_queue(struct gendisk *disk);
689extern void blk_unregister_queue(struct gendisk *disk);
690extern void register_disk(struct gendisk *dev);
691extern void generic_make_request(struct bio *bio);
692extern void blk_rq_init(struct request_queue *q, struct request *rq);
693extern void blk_put_request(struct request *);
694extern void __blk_put_request(struct request_queue *, struct request *);
695extern struct request *blk_get_request(struct request_queue *, int, gfp_t);
696extern struct request *blk_make_request(struct request_queue *, struct bio *,
697 gfp_t);
698extern void blk_insert_request(struct request_queue *, struct request *, int, void *);
699extern void blk_requeue_request(struct request_queue *, struct request *);
700extern void blk_add_request_payload(struct request *rq, struct page *page,
701 unsigned int len);
702extern int blk_rq_check_limits(struct request_queue *q, struct request *rq);
703extern int blk_lld_busy(struct request_queue *q);
704extern int blk_rq_prep_clone(struct request *rq, struct request *rq_src,
705 struct bio_set *bs, gfp_t gfp_mask,
706 int (*bio_ctr)(struct bio *, struct bio *, void *),
707 void *data);
708extern void blk_rq_unprep_clone(struct request *rq);
709extern int blk_insert_cloned_request(struct request_queue *q,
710 struct request *rq);
711extern void blk_plug_device(struct request_queue *);
712extern void blk_plug_device_unlocked(struct request_queue *);
713extern int blk_remove_plug(struct request_queue *);
714extern void blk_recount_segments(struct request_queue *, struct bio *);
715extern int scsi_cmd_ioctl(struct request_queue *, struct gendisk *, fmode_t,
716 unsigned int, void __user *);
717extern int sg_scsi_ioctl(struct request_queue *, struct gendisk *, fmode_t,
718 struct scsi_ioctl_command __user *);
719
720/*
721 * A queue has just exitted congestion. Note this in the global counter of
722 * congested queues, and wake up anyone who was waiting for requests to be
723 * put back.
724 */
725static inline void blk_clear_queue_congested(struct request_queue *q, int sync)
726{
727 clear_bdi_congested(&q->backing_dev_info, sync);
728}
729
730/*
731 * A queue has just entered congestion. Flag that in the queue's VM-visible
732 * state flags and increment the global gounter of congested queues.
733 */
734static inline void blk_set_queue_congested(struct request_queue *q, int sync)
735{
736 set_bdi_congested(&q->backing_dev_info, sync);
737}
738
739extern void blk_start_queue(struct request_queue *q);
740extern void blk_stop_queue(struct request_queue *q);
741extern void blk_sync_queue(struct request_queue *q);
742extern void __blk_stop_queue(struct request_queue *q);
743extern void __blk_run_queue(struct request_queue *);
744extern void blk_run_queue(struct request_queue *);
745extern int blk_rq_map_user(struct request_queue *, struct request *,
746 struct rq_map_data *, void __user *, unsigned long,
747 gfp_t);
748extern int blk_rq_unmap_user(struct bio *);
749extern int blk_rq_map_kern(struct request_queue *, struct request *, void *, unsigned int, gfp_t);
750extern int blk_rq_map_user_iov(struct request_queue *, struct request *,
751 struct rq_map_data *, struct sg_iovec *, int,
752 unsigned int, gfp_t);
753extern int blk_execute_rq(struct request_queue *, struct gendisk *,
754 struct request *, int);
755extern void blk_execute_rq_nowait(struct request_queue *, struct gendisk *,
756 struct request *, int, rq_end_io_fn *);
757extern void blk_unplug(struct request_queue *q);
758
759static inline struct request_queue *bdev_get_queue(struct block_device *bdev)
760{
761 return bdev->bd_disk->queue;
762}
763
764/*
765 * blk_rq_pos() : the current sector
766 * blk_rq_bytes() : bytes left in the entire request
767 * blk_rq_cur_bytes() : bytes left in the current segment
768 * blk_rq_err_bytes() : bytes left till the next error boundary
769 * blk_rq_sectors() : sectors left in the entire request
770 * blk_rq_cur_sectors() : sectors left in the current segment
771 */
772static inline sector_t blk_rq_pos(const struct request *rq)
773{
774 return rq->__sector;
775}
776
777static inline unsigned int blk_rq_bytes(const struct request *rq)
778{
779 return rq->__data_len;
780}
781
782static inline int blk_rq_cur_bytes(const struct request *rq)
783{
784 return rq->bio ? bio_cur_bytes(rq->bio) : 0;
785}
786
787extern unsigned int blk_rq_err_bytes(const struct request *rq);
788
789static inline unsigned int blk_rq_sectors(const struct request *rq)
790{
791 return blk_rq_bytes(rq) >> 9;
792}
793
794static inline unsigned int blk_rq_cur_sectors(const struct request *rq)
795{
796 return blk_rq_cur_bytes(rq) >> 9;
797}
798
799/*
800 * Request issue related functions.
801 */
802extern struct request *blk_peek_request(struct request_queue *q);
803extern void blk_start_request(struct request *rq);
804extern struct request *blk_fetch_request(struct request_queue *q);
805
806/*
807 * Request completion related functions.
808 *
809 * blk_update_request() completes given number of bytes and updates
810 * the request without completing it.
811 *
812 * blk_end_request() and friends. __blk_end_request() must be called
813 * with the request queue spinlock acquired.
814 *
815 * Several drivers define their own end_request and call
816 * blk_end_request() for parts of the original function.
817 * This prevents code duplication in drivers.
818 */
819extern bool blk_update_request(struct request *rq, int error,
820 unsigned int nr_bytes);
821extern bool blk_end_request(struct request *rq, int error,
822 unsigned int nr_bytes);
823extern void blk_end_request_all(struct request *rq, int error);
824extern bool blk_end_request_cur(struct request *rq, int error);
825extern bool blk_end_request_err(struct request *rq, int error);
826extern bool __blk_end_request(struct request *rq, int error,
827 unsigned int nr_bytes);
828extern void __blk_end_request_all(struct request *rq, int error);
829extern bool __blk_end_request_cur(struct request *rq, int error);
830extern bool __blk_end_request_err(struct request *rq, int error);
831
832extern void blk_complete_request(struct request *);
833extern void __blk_complete_request(struct request *);
834extern void blk_abort_request(struct request *);
835extern void blk_abort_queue(struct request_queue *);
836extern void blk_unprep_request(struct request *);
837
838/*
839 * Access functions for manipulating queue properties
840 */
841extern struct request_queue *blk_init_queue_node(request_fn_proc *rfn,
842 spinlock_t *lock, int node_id);
843extern struct request_queue *blk_init_allocated_queue_node(struct request_queue *,
844 request_fn_proc *,
845 spinlock_t *, int node_id);
846extern struct request_queue *blk_init_queue(request_fn_proc *, spinlock_t *);
847extern struct request_queue *blk_init_allocated_queue(struct request_queue *,
848 request_fn_proc *, spinlock_t *);
849extern void blk_cleanup_queue(struct request_queue *);
850extern void blk_queue_make_request(struct request_queue *, make_request_fn *);
851extern void blk_queue_bounce_limit(struct request_queue *, u64);
852extern void blk_queue_max_hw_sectors(struct request_queue *, unsigned int);
853extern void blk_queue_max_segments(struct request_queue *, unsigned short);
854extern void blk_queue_max_segment_size(struct request_queue *, unsigned int);
855extern void blk_queue_max_discard_sectors(struct request_queue *q,
856 unsigned int max_discard_sectors);
857extern void blk_queue_logical_block_size(struct request_queue *, unsigned short);
858extern void blk_queue_physical_block_size(struct request_queue *, unsigned short);
859extern void blk_queue_alignment_offset(struct request_queue *q,
860 unsigned int alignment);
861extern void blk_limits_io_min(struct queue_limits *limits, unsigned int min);
862extern void blk_queue_io_min(struct request_queue *q, unsigned int min);
863extern void blk_limits_io_opt(struct queue_limits *limits, unsigned int opt);
864extern void blk_queue_io_opt(struct request_queue *q, unsigned int opt);
865extern void blk_set_default_limits(struct queue_limits *lim);
866extern int blk_stack_limits(struct queue_limits *t, struct queue_limits *b,
867 sector_t offset);
868extern int bdev_stack_limits(struct queue_limits *t, struct block_device *bdev,
869 sector_t offset);
870extern void disk_stack_limits(struct gendisk *disk, struct block_device *bdev,
871 sector_t offset);
872extern void blk_queue_stack_limits(struct request_queue *t, struct request_queue *b);
873extern void blk_queue_dma_pad(struct request_queue *, unsigned int);
874extern void blk_queue_update_dma_pad(struct request_queue *, unsigned int);
875extern int blk_queue_dma_drain(struct request_queue *q,
876 dma_drain_needed_fn *dma_drain_needed,
877 void *buf, unsigned int size);
878extern void blk_queue_lld_busy(struct request_queue *q, lld_busy_fn *fn);
879extern void blk_queue_segment_boundary(struct request_queue *, unsigned long);
880extern void blk_queue_prep_rq(struct request_queue *, prep_rq_fn *pfn);
881extern void blk_queue_unprep_rq(struct request_queue *, unprep_rq_fn *ufn);
882extern void blk_queue_merge_bvec(struct request_queue *, merge_bvec_fn *);
883extern void blk_queue_dma_alignment(struct request_queue *, int);
884extern void blk_queue_update_dma_alignment(struct request_queue *, int);
885extern void blk_queue_softirq_done(struct request_queue *, softirq_done_fn *);
886extern void blk_queue_rq_timed_out(struct request_queue *, rq_timed_out_fn *);
887extern void blk_queue_rq_timeout(struct request_queue *, unsigned int);
888extern struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev);
889extern int blk_queue_ordered(struct request_queue *, unsigned);
890extern bool blk_do_ordered(struct request_queue *, struct request **);
891extern unsigned blk_ordered_cur_seq(struct request_queue *);
892extern unsigned blk_ordered_req_seq(struct request *);
893extern bool blk_ordered_complete_seq(struct request_queue *, unsigned, int);
894
895extern int blk_rq_map_sg(struct request_queue *, struct request *, struct scatterlist *);
896extern void blk_dump_rq_flags(struct request *, char *);
897extern void generic_unplug_device(struct request_queue *);
898extern long nr_blockdev_pages(void);
899
900int blk_get_queue(struct request_queue *);
901struct request_queue *blk_alloc_queue(gfp_t);
902struct request_queue *blk_alloc_queue_node(gfp_t, int);
903extern void blk_put_queue(struct request_queue *);
904
905/*
906 * tag stuff
907 */
908#define blk_rq_tagged(rq) ((rq)->cmd_flags & REQ_QUEUED)
909extern int blk_queue_start_tag(struct request_queue *, struct request *);
910extern struct request *blk_queue_find_tag(struct request_queue *, int);
911extern void blk_queue_end_tag(struct request_queue *, struct request *);
912extern int blk_queue_init_tags(struct request_queue *, int, struct blk_queue_tag *);
913extern void blk_queue_free_tags(struct request_queue *);
914extern int blk_queue_resize_tags(struct request_queue *, int);
915extern void blk_queue_invalidate_tags(struct request_queue *);
916extern struct blk_queue_tag *blk_init_tags(int);
917extern void blk_free_tags(struct blk_queue_tag *);
918
919static inline struct request *blk_map_queue_find_tag(struct blk_queue_tag *bqt,
920 int tag)
921{
922 if (unlikely(bqt == NULL || tag >= bqt->real_max_depth))
923 return NULL;
924 return bqt->tag_index[tag];
925}
926enum{
927 BLKDEV_WAIT, /* wait for completion */
928 BLKDEV_BARRIER, /* issue request with barrier */
929 BLKDEV_SECURE, /* secure discard */
930};
931#define BLKDEV_IFL_WAIT (1 << BLKDEV_WAIT)
932#define BLKDEV_IFL_BARRIER (1 << BLKDEV_BARRIER)
933#define BLKDEV_IFL_SECURE (1 << BLKDEV_SECURE)
934extern int blkdev_issue_flush(struct block_device *, gfp_t, sector_t *,
935 unsigned long);
936extern int blkdev_issue_discard(struct block_device *bdev, sector_t sector,
937 sector_t nr_sects, gfp_t gfp_mask, unsigned long flags);
938extern int blkdev_issue_zeroout(struct block_device *bdev, sector_t sector,
939 sector_t nr_sects, gfp_t gfp_mask, unsigned long flags);
940static inline int sb_issue_discard(struct super_block *sb,
941 sector_t block, sector_t nr_blocks)
942{
943 block <<= (sb->s_blocksize_bits - 9);
944 nr_blocks <<= (sb->s_blocksize_bits - 9);
945 return blkdev_issue_discard(sb->s_bdev, block, nr_blocks, GFP_NOFS,
946 BLKDEV_IFL_WAIT | BLKDEV_IFL_BARRIER);
947}
948
949extern int blk_verify_command(unsigned char *cmd, fmode_t has_write_perm);
950
951enum blk_default_limits {
952 BLK_MAX_SEGMENTS = 128,
953 BLK_SAFE_MAX_SECTORS = 255,
954 BLK_DEF_MAX_SECTORS = 1024,
955 BLK_MAX_SEGMENT_SIZE = 65536,
956 BLK_SEG_BOUNDARY_MASK = 0xFFFFFFFFUL,
957};
958
959#define blkdev_entry_to_request(entry) list_entry((entry), struct request, queuelist)
960
961static inline unsigned long queue_bounce_pfn(struct request_queue *q)
962{
963 return q->limits.bounce_pfn;
964}
965
966static inline unsigned long queue_segment_boundary(struct request_queue *q)
967{
968 return q->limits.seg_boundary_mask;
969}
970
971static inline unsigned int queue_max_sectors(struct request_queue *q)
972{
973 return q->limits.max_sectors;
974}
975
976static inline unsigned int queue_max_hw_sectors(struct request_queue *q)
977{
978 return q->limits.max_hw_sectors;
979}
980
981static inline unsigned short queue_max_segments(struct request_queue *q)
982{
983 return q->limits.max_segments;
984}
985
986static inline unsigned int queue_max_segment_size(struct request_queue *q)
987{
988 return q->limits.max_segment_size;
989}
990
991static inline unsigned short queue_logical_block_size(struct request_queue *q)
992{
993 int retval = 512;
994
995 if (q && q->limits.logical_block_size)
996 retval = q->limits.logical_block_size;
997
998 return retval;
999}
1000
1001static inline unsigned short bdev_logical_block_size(struct block_device *bdev)
1002{
1003 return queue_logical_block_size(bdev_get_queue(bdev));
1004}
1005
1006static inline unsigned int queue_physical_block_size(struct request_queue *q)
1007{
1008 return q->limits.physical_block_size;
1009}
1010
1011static inline int bdev_physical_block_size(struct block_device *bdev)
1012{
1013 return queue_physical_block_size(bdev_get_queue(bdev));
1014}
1015
1016static inline unsigned int queue_io_min(struct request_queue *q)
1017{
1018 return q->limits.io_min;
1019}
1020
1021static inline int bdev_io_min(struct block_device *bdev)
1022{
1023 return queue_io_min(bdev_get_queue(bdev));
1024}
1025
1026static inline unsigned int queue_io_opt(struct request_queue *q)
1027{
1028 return q->limits.io_opt;
1029}
1030
1031static inline int bdev_io_opt(struct block_device *bdev)
1032{
1033 return queue_io_opt(bdev_get_queue(bdev));
1034}
1035
1036static inline int queue_alignment_offset(struct request_queue *q)
1037{
1038 if (q->limits.misaligned)
1039 return -1;
1040
1041 return q->limits.alignment_offset;
1042}
1043
1044static inline int queue_limit_alignment_offset(struct queue_limits *lim, sector_t sector)
1045{
1046 unsigned int granularity = max(lim->physical_block_size, lim->io_min);
1047 unsigned int alignment = (sector << 9) & (granularity - 1);
1048
1049 return (granularity + lim->alignment_offset - alignment)
1050 & (granularity - 1);
1051}
1052
1053static inline int bdev_alignment_offset(struct block_device *bdev)
1054{
1055 struct request_queue *q = bdev_get_queue(bdev);
1056
1057 if (q->limits.misaligned)
1058 return -1;
1059
1060 if (bdev != bdev->bd_contains)
1061 return bdev->bd_part->alignment_offset;
1062
1063 return q->limits.alignment_offset;
1064}
1065
1066static inline int queue_discard_alignment(struct request_queue *q)
1067{
1068 if (q->limits.discard_misaligned)
1069 return -1;
1070
1071 return q->limits.discard_alignment;
1072}
1073
1074static inline int queue_limit_discard_alignment(struct queue_limits *lim, sector_t sector)
1075{
1076 unsigned int alignment = (sector << 9) & (lim->discard_granularity - 1);
1077
1078 return (lim->discard_granularity + lim->discard_alignment - alignment)
1079 & (lim->discard_granularity - 1);
1080}
1081
1082static inline unsigned int queue_discard_zeroes_data(struct request_queue *q)
1083{
1084 if (q->limits.discard_zeroes_data == 1)
1085 return 1;
1086
1087 return 0;
1088}
1089
1090static inline unsigned int bdev_discard_zeroes_data(struct block_device *bdev)
1091{
1092 return queue_discard_zeroes_data(bdev_get_queue(bdev));
1093}
1094
1095static inline int queue_dma_alignment(struct request_queue *q)
1096{
1097 return q ? q->dma_alignment : 511;
1098}
1099
1100static inline int blk_rq_aligned(struct request_queue *q, unsigned long addr,
1101 unsigned int len)
1102{
1103 unsigned int alignment = queue_dma_alignment(q) | q->dma_pad_mask;
1104 return !(addr & alignment) && !(len & alignment);
1105}
1106
1107/* assumes size > 256 */
1108static inline unsigned int blksize_bits(unsigned int size)
1109{
1110 unsigned int bits = 8;
1111 do {
1112 bits++;
1113 size >>= 1;
1114 } while (size > 256);
1115 return bits;
1116}
1117
1118static inline unsigned int block_size(struct block_device *bdev)
1119{
1120 return bdev->bd_block_size;
1121}
1122
1123typedef struct {struct page *v;} Sector;
1124
1125unsigned char *read_dev_sector(struct block_device *, sector_t, Sector *);
1126
1127static inline void put_dev_sector(Sector p)
1128{
1129 page_cache_release(p.v);
1130}
1131
1132struct work_struct;
1133int kblockd_schedule_work(struct request_queue *q, struct work_struct *work);
1134
1135#ifdef CONFIG_BLK_CGROUP
1136/*
1137 * This should not be using sched_clock(). A real patch is in progress
1138 * to fix this up, until that is in place we need to disable preemption
1139 * around sched_clock() in this function and set_io_start_time_ns().
1140 */
1141static inline void set_start_time_ns(struct request *req)
1142{
1143 preempt_disable();
1144 req->start_time_ns = sched_clock();
1145 preempt_enable();
1146}
1147
1148static inline void set_io_start_time_ns(struct request *req)
1149{
1150 preempt_disable();
1151 req->io_start_time_ns = sched_clock();
1152 preempt_enable();
1153}
1154
1155static inline uint64_t rq_start_time_ns(struct request *req)
1156{
1157 return req->start_time_ns;
1158}
1159
1160static inline uint64_t rq_io_start_time_ns(struct request *req)
1161{
1162 return req->io_start_time_ns;
1163}
1164#else
1165static inline void set_start_time_ns(struct request *req) {}
1166static inline void set_io_start_time_ns(struct request *req) {}
1167static inline uint64_t rq_start_time_ns(struct request *req)
1168{
1169 return 0;
1170}
1171static inline uint64_t rq_io_start_time_ns(struct request *req)
1172{
1173 return 0;
1174}
1175#endif
1176
1177#define MODULE_ALIAS_BLOCKDEV(major,minor) \
1178 MODULE_ALIAS("block-major-" __stringify(major) "-" __stringify(minor))
1179#define MODULE_ALIAS_BLOCKDEV_MAJOR(major) \
1180 MODULE_ALIAS("block-major-" __stringify(major) "-*")
1181
1182#if defined(CONFIG_BLK_DEV_INTEGRITY)
1183
1184#define INTEGRITY_FLAG_READ 2 /* verify data integrity on read */
1185#define INTEGRITY_FLAG_WRITE 4 /* generate data integrity on write */
1186
1187struct blk_integrity_exchg {
1188 void *prot_buf;
1189 void *data_buf;
1190 sector_t sector;
1191 unsigned int data_size;
1192 unsigned short sector_size;
1193 const char *disk_name;
1194};
1195
1196typedef void (integrity_gen_fn) (struct blk_integrity_exchg *);
1197typedef int (integrity_vrfy_fn) (struct blk_integrity_exchg *);
1198typedef void (integrity_set_tag_fn) (void *, void *, unsigned int);
1199typedef void (integrity_get_tag_fn) (void *, void *, unsigned int);
1200
1201struct blk_integrity {
1202 integrity_gen_fn *generate_fn;
1203 integrity_vrfy_fn *verify_fn;
1204 integrity_set_tag_fn *set_tag_fn;
1205 integrity_get_tag_fn *get_tag_fn;
1206
1207 unsigned short flags;
1208 unsigned short tuple_size;
1209 unsigned short sector_size;
1210 unsigned short tag_size;
1211
1212 const char *name;
1213
1214 struct kobject kobj;
1215};
1216
1217extern int blk_integrity_register(struct gendisk *, struct blk_integrity *);
1218extern void blk_integrity_unregister(struct gendisk *);
1219extern int blk_integrity_compare(struct gendisk *, struct gendisk *);
1220extern int blk_rq_map_integrity_sg(struct request_queue *, struct bio *,
1221 struct scatterlist *);
1222extern int blk_rq_count_integrity_sg(struct request_queue *, struct bio *);
1223extern int blk_integrity_merge_rq(struct request_queue *, struct request *,
1224 struct request *);
1225extern int blk_integrity_merge_bio(struct request_queue *, struct request *,
1226 struct bio *);
1227
1228static inline
1229struct blk_integrity *bdev_get_integrity(struct block_device *bdev)
1230{
1231 return bdev->bd_disk->integrity;
1232}
1233
1234static inline struct blk_integrity *blk_get_integrity(struct gendisk *disk)
1235{
1236 return disk->integrity;
1237}
1238
1239static inline int blk_integrity_rq(struct request *rq)
1240{
1241 if (rq->bio == NULL)
1242 return 0;
1243
1244 return bio_integrity(rq->bio);
1245}
1246
1247static inline void blk_queue_max_integrity_segments(struct request_queue *q,
1248 unsigned int segs)
1249{
1250 q->limits.max_integrity_segments = segs;
1251}
1252
1253static inline unsigned short
1254queue_max_integrity_segments(struct request_queue *q)
1255{
1256 return q->limits.max_integrity_segments;
1257}
1258
1259#else /* CONFIG_BLK_DEV_INTEGRITY */
1260
1261#define blk_integrity_rq(rq) (0)
1262#define blk_rq_count_integrity_sg(a, b) (0)
1263#define blk_rq_map_integrity_sg(a, b, c) (0)
1264#define bdev_get_integrity(a) (0)
1265#define blk_get_integrity(a) (0)
1266#define blk_integrity_compare(a, b) (0)
1267#define blk_integrity_register(a, b) (0)
1268#define blk_integrity_unregister(a) do { } while (0);
1269#define blk_queue_max_integrity_segments(a, b) do { } while (0);
1270#define queue_max_integrity_segments(a) (0)
1271#define blk_integrity_merge_rq(a, b, c) (0)
1272#define blk_integrity_merge_bio(a, b, c) (0)
1273
1274#endif /* CONFIG_BLK_DEV_INTEGRITY */
1275
1276struct block_device_operations {
1277 int (*open) (struct block_device *, fmode_t);
1278 int (*release) (struct gendisk *, fmode_t);
1279 int (*ioctl) (struct block_device *, fmode_t, unsigned, unsigned long);
1280 int (*compat_ioctl) (struct block_device *, fmode_t, unsigned, unsigned long);
1281 int (*direct_access) (struct block_device *, sector_t,
1282 void **, unsigned long *);
1283 int (*media_changed) (struct gendisk *);
1284 void (*unlock_native_capacity) (struct gendisk *);
1285 int (*revalidate_disk) (struct gendisk *);
1286 int (*getgeo)(struct block_device *, struct hd_geometry *);
1287 /* this callback is with swap_lock and sometimes page table lock held */
1288 void (*swap_slot_free_notify) (struct block_device *, unsigned long);
1289 struct module *owner;
1290};
1291
1292extern int __blkdev_driver_ioctl(struct block_device *, fmode_t, unsigned int,
1293 unsigned long);
1294#else /* CONFIG_BLOCK */
1295/*
1296 * stubs for when the block layer is configured out
1297 */
1298#define buffer_heads_over_limit 0
1299
1300static inline long nr_blockdev_pages(void)
1301{
1302 return 0;
1303}
1304
1305#endif /* CONFIG_BLOCK */
1306
1307#endif