Merge branch 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[pandora-kernel.git] / include / linux / blk_types.h
1 /*
2  * Block data types and constants.  Directly include this file only to
3  * break include dependency loop.
4  */
5 #ifndef __LINUX_BLK_TYPES_H
6 #define __LINUX_BLK_TYPES_H
7
8 #ifdef CONFIG_BLOCK
9
10 #include <linux/types.h>
11
12 struct bio_set;
13 struct bio;
14 struct bio_integrity_payload;
15 struct page;
16 struct block_device;
17 struct io_context;
18 struct cgroup_subsys_state;
19 typedef void (bio_end_io_t) (struct bio *, int);
20 typedef void (bio_destructor_t) (struct bio *);
21
22 /*
23  * was unsigned short, but we might as well be ready for > 64kB I/O pages
24  */
25 struct bio_vec {
26         struct page     *bv_page;
27         unsigned int    bv_len;
28         unsigned int    bv_offset;
29 };
30
31 /*
32  * main unit of I/O for the block layer and lower layers (ie drivers and
33  * stacking drivers)
34  */
35 struct bio {
36         sector_t                bi_sector;      /* device address in 512 byte
37                                                    sectors */
38         struct bio              *bi_next;       /* request queue link */
39         struct block_device     *bi_bdev;
40         unsigned long           bi_flags;       /* status, command, etc */
41         unsigned long           bi_rw;          /* bottom bits READ/WRITE,
42                                                  * top bits priority
43                                                  */
44
45         unsigned short          bi_vcnt;        /* how many bio_vec's */
46         unsigned short          bi_idx;         /* current index into bvl_vec */
47
48         /* Number of segments in this BIO after
49          * physical address coalescing is performed.
50          */
51         unsigned int            bi_phys_segments;
52
53         unsigned int            bi_size;        /* residual I/O count */
54
55         /*
56          * To keep track of the max segment size, we account for the
57          * sizes of the first and last mergeable segments in this bio.
58          */
59         unsigned int            bi_seg_front_size;
60         unsigned int            bi_seg_back_size;
61
62         unsigned int            bi_max_vecs;    /* max bvl_vecs we can hold */
63
64         atomic_t                bi_cnt;         /* pin count */
65
66         struct bio_vec          *bi_io_vec;     /* the actual vec list */
67
68         bio_end_io_t            *bi_end_io;
69
70         void                    *bi_private;
71 #ifdef CONFIG_BLK_CGROUP
72         /*
73          * Optional ioc and css associated with this bio.  Put on bio
74          * release.  Read comment on top of bio_associate_current().
75          */
76         struct io_context       *bi_ioc;
77         struct cgroup_subsys_state *bi_css;
78 #endif
79 #if defined(CONFIG_BLK_DEV_INTEGRITY)
80         struct bio_integrity_payload *bi_integrity;  /* data integrity */
81 #endif
82
83         bio_destructor_t        *bi_destructor; /* destructor */
84
85         /*
86          * We can inline a number of vecs at the end of the bio, to avoid
87          * double allocations for a small number of bio_vecs. This member
88          * MUST obviously be kept at the very end of the bio.
89          */
90         struct bio_vec          bi_inline_vecs[0];
91 };
92
93 /*
94  * bio flags
95  */
96 #define BIO_UPTODATE    0       /* ok after I/O completion */
97 #define BIO_RW_BLOCK    1       /* RW_AHEAD set, and read/write would block */
98 #define BIO_EOF         2       /* out-out-bounds error */
99 #define BIO_SEG_VALID   3       /* bi_phys_segments valid */
100 #define BIO_CLONED      4       /* doesn't own data */
101 #define BIO_BOUNCED     5       /* bio is a bounce bio */
102 #define BIO_USER_MAPPED 6       /* contains user pages */
103 #define BIO_EOPNOTSUPP  7       /* not supported */
104 #define BIO_NULL_MAPPED 8       /* contains invalid user pages */
105 #define BIO_FS_INTEGRITY 9      /* fs owns integrity data, not block layer */
106 #define BIO_QUIET       10      /* Make BIO Quiet */
107 #define BIO_MAPPED_INTEGRITY 11/* integrity metadata has been remapped */
108 #define bio_flagged(bio, flag)  ((bio)->bi_flags & (1 << (flag)))
109
110 /*
111  * top 4 bits of bio flags indicate the pool this bio came from
112  */
113 #define BIO_POOL_BITS           (4)
114 #define BIO_POOL_NONE           ((1UL << BIO_POOL_BITS) - 1)
115 #define BIO_POOL_OFFSET         (BITS_PER_LONG - BIO_POOL_BITS)
116 #define BIO_POOL_MASK           (1UL << BIO_POOL_OFFSET)
117 #define BIO_POOL_IDX(bio)       ((bio)->bi_flags >> BIO_POOL_OFFSET)
118
119 #endif /* CONFIG_BLOCK */
120
121 /*
122  * Request flags.  For use in the cmd_flags field of struct request, and in
123  * bi_rw of struct bio.  Note that some flags are only valid in either one.
124  */
125 enum rq_flag_bits {
126         /* common flags */
127         __REQ_WRITE,            /* not set, read. set, write */
128         __REQ_FAILFAST_DEV,     /* no driver retries of device errors */
129         __REQ_FAILFAST_TRANSPORT, /* no driver retries of transport errors */
130         __REQ_FAILFAST_DRIVER,  /* no driver retries of driver errors */
131
132         __REQ_SYNC,             /* request is sync (sync write or read) */
133         __REQ_META,             /* metadata io request */
134         __REQ_PRIO,             /* boost priority in cfq */
135         __REQ_DISCARD,          /* request to discard sectors */
136         __REQ_SECURE,           /* secure discard (used with __REQ_DISCARD) */
137
138         __REQ_NOIDLE,           /* don't anticipate more IO after this one */
139         __REQ_FUA,              /* forced unit access */
140         __REQ_FLUSH,            /* request for cache flush */
141
142         /* bio only flags */
143         __REQ_RAHEAD,           /* read ahead, can fail anytime */
144         __REQ_THROTTLED,        /* This bio has already been subjected to
145                                  * throttling rules. Don't do it again. */
146
147         /* request only flags */
148         __REQ_SORTED,           /* elevator knows about this request */
149         __REQ_SOFTBARRIER,      /* may not be passed by ioscheduler */
150         __REQ_NOMERGE,          /* don't touch this for merging */
151         __REQ_STARTED,          /* drive already may have started this one */
152         __REQ_DONTPREP,         /* don't call prep for this one */
153         __REQ_QUEUED,           /* uses queueing */
154         __REQ_ELVPRIV,          /* elevator private data attached */
155         __REQ_FAILED,           /* set if the request failed */
156         __REQ_QUIET,            /* don't worry about errors */
157         __REQ_PREEMPT,          /* set for "ide_preempt" requests */
158         __REQ_ALLOCED,          /* request came from our alloc pool */
159         __REQ_COPY_USER,        /* contains copies of user pages */
160         __REQ_FLUSH_SEQ,        /* request for flush sequence */
161         __REQ_IO_STAT,          /* account I/O stat */
162         __REQ_MIXED_MERGE,      /* merge of different types, fail separately */
163         __REQ_NR_BITS,          /* stops here */
164 };
165
166 #define REQ_WRITE               (1 << __REQ_WRITE)
167 #define REQ_FAILFAST_DEV        (1 << __REQ_FAILFAST_DEV)
168 #define REQ_FAILFAST_TRANSPORT  (1 << __REQ_FAILFAST_TRANSPORT)
169 #define REQ_FAILFAST_DRIVER     (1 << __REQ_FAILFAST_DRIVER)
170 #define REQ_SYNC                (1 << __REQ_SYNC)
171 #define REQ_META                (1 << __REQ_META)
172 #define REQ_PRIO                (1 << __REQ_PRIO)
173 #define REQ_DISCARD             (1 << __REQ_DISCARD)
174 #define REQ_NOIDLE              (1 << __REQ_NOIDLE)
175
176 #define REQ_FAILFAST_MASK \
177         (REQ_FAILFAST_DEV | REQ_FAILFAST_TRANSPORT | REQ_FAILFAST_DRIVER)
178 #define REQ_COMMON_MASK \
179         (REQ_WRITE | REQ_FAILFAST_MASK | REQ_SYNC | REQ_META | REQ_PRIO | \
180          REQ_DISCARD | REQ_NOIDLE | REQ_FLUSH | REQ_FUA | REQ_SECURE)
181 #define REQ_CLONE_MASK          REQ_COMMON_MASK
182
183 #define REQ_RAHEAD              (1 << __REQ_RAHEAD)
184 #define REQ_THROTTLED           (1 << __REQ_THROTTLED)
185
186 #define REQ_SORTED              (1 << __REQ_SORTED)
187 #define REQ_SOFTBARRIER         (1 << __REQ_SOFTBARRIER)
188 #define REQ_FUA                 (1 << __REQ_FUA)
189 #define REQ_NOMERGE             (1 << __REQ_NOMERGE)
190 #define REQ_STARTED             (1 << __REQ_STARTED)
191 #define REQ_DONTPREP            (1 << __REQ_DONTPREP)
192 #define REQ_QUEUED              (1 << __REQ_QUEUED)
193 #define REQ_ELVPRIV             (1 << __REQ_ELVPRIV)
194 #define REQ_FAILED              (1 << __REQ_FAILED)
195 #define REQ_QUIET               (1 << __REQ_QUIET)
196 #define REQ_PREEMPT             (1 << __REQ_PREEMPT)
197 #define REQ_ALLOCED             (1 << __REQ_ALLOCED)
198 #define REQ_COPY_USER           (1 << __REQ_COPY_USER)
199 #define REQ_FLUSH               (1 << __REQ_FLUSH)
200 #define REQ_FLUSH_SEQ           (1 << __REQ_FLUSH_SEQ)
201 #define REQ_IO_STAT             (1 << __REQ_IO_STAT)
202 #define REQ_MIXED_MERGE         (1 << __REQ_MIXED_MERGE)
203 #define REQ_SECURE              (1 << __REQ_SECURE)
204
205 #endif /* __LINUX_BLK_TYPES_H */