blob: fa1abeb45b7602a4f0c1a4098f05f63d7a075281 [file] [log] [blame]
Tejun Heo7cc01582010-08-03 13:14:58 +02001/*
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
12struct bio_set;
13struct bio;
14struct bio_integrity_payload;
15struct page;
16struct block_device;
Tejun Heo852c7882012-03-05 13:15:27 -080017struct io_context;
18struct cgroup_subsys_state;
Tejun Heo7cc01582010-08-03 13:14:58 +020019typedef void (bio_end_io_t) (struct bio *, int);
20typedef 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 */
25struct 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 */
35struct 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
Tejun Heo7cc01582010-08-03 13:14:58 +020062 bio_end_io_t *bi_end_io;
63
64 void *bi_private;
Tejun Heo852c7882012-03-05 13:15:27 -080065#ifdef CONFIG_BLK_CGROUP
66 /*
67 * Optional ioc and css associated with this bio. Put on bio
68 * release. Read comment on top of bio_associate_current().
69 */
70 struct io_context *bi_ioc;
71 struct cgroup_subsys_state *bi_css;
72#endif
Tejun Heo7cc01582010-08-03 13:14:58 +020073#if defined(CONFIG_BLK_DEV_INTEGRITY)
74 struct bio_integrity_payload *bi_integrity; /* data integrity */
75#endif
76
Kent Overstreetf44b48c2012-09-06 15:34:58 -070077 /*
78 * Everything starting with bi_max_vecs will be preserved by bio_reset()
79 */
80
81 unsigned int bi_max_vecs; /* max bvl_vecs we can hold */
82
83 atomic_t bi_cnt; /* pin count */
84
85 struct bio_vec *bi_io_vec; /* the actual vec list */
86
Kent Overstreet395c72a2012-09-06 15:34:55 -070087 struct bio_set *bi_pool;
88
Tejun Heo7cc01582010-08-03 13:14:58 +020089 /*
90 * We can inline a number of vecs at the end of the bio, to avoid
91 * double allocations for a small number of bio_vecs. This member
92 * MUST obviously be kept at the very end of the bio.
93 */
94 struct bio_vec bi_inline_vecs[0];
95};
96
Kent Overstreetf44b48c2012-09-06 15:34:58 -070097#define BIO_RESET_BYTES offsetof(struct bio, bi_max_vecs)
98
Tejun Heo7cc01582010-08-03 13:14:58 +020099/*
100 * bio flags
101 */
102#define BIO_UPTODATE 0 /* ok after I/O completion */
103#define BIO_RW_BLOCK 1 /* RW_AHEAD set, and read/write would block */
104#define BIO_EOF 2 /* out-out-bounds error */
105#define BIO_SEG_VALID 3 /* bi_phys_segments valid */
106#define BIO_CLONED 4 /* doesn't own data */
107#define BIO_BOUNCED 5 /* bio is a bounce bio */
108#define BIO_USER_MAPPED 6 /* contains user pages */
109#define BIO_EOPNOTSUPP 7 /* not supported */
Tao Ma9562ad92011-10-24 16:11:30 +0200110#define BIO_NULL_MAPPED 8 /* contains invalid user pages */
111#define BIO_FS_INTEGRITY 9 /* fs owns integrity data, not block layer */
112#define BIO_QUIET 10 /* Make BIO Quiet */
113#define BIO_MAPPED_INTEGRITY 11/* integrity metadata has been remapped */
Darrick J. Wong7136851112013-04-29 15:07:25 -0700114#define BIO_SNAP_STABLE 12 /* bio data must be snapshotted during write */
Kent Overstreetf44b48c2012-09-06 15:34:58 -0700115
116/*
117 * Flags starting here get preserved by bio_reset() - this includes
118 * BIO_POOL_IDX()
119 */
Darrick J. Wong7136851112013-04-29 15:07:25 -0700120#define BIO_RESET_BITS 13
Linus Torvalds4de13d7a2013-05-08 10:13:35 -0700121#define BIO_OWNS_VEC 13 /* bio_free() should free bvec */
Kent Overstreetf44b48c2012-09-06 15:34:58 -0700122
Tejun Heo7cc01582010-08-03 13:14:58 +0200123#define bio_flagged(bio, flag) ((bio)->bi_flags & (1 << (flag)))
124
125/*
126 * top 4 bits of bio flags indicate the pool this bio came from
127 */
128#define BIO_POOL_BITS (4)
129#define BIO_POOL_NONE ((1UL << BIO_POOL_BITS) - 1)
130#define BIO_POOL_OFFSET (BITS_PER_LONG - BIO_POOL_BITS)
131#define BIO_POOL_MASK (1UL << BIO_POOL_OFFSET)
132#define BIO_POOL_IDX(bio) ((bio)->bi_flags >> BIO_POOL_OFFSET)
133
Jens Axboede75d602010-08-10 12:14:27 -0400134#endif /* CONFIG_BLOCK */
135
Tejun Heo7cc01582010-08-03 13:14:58 +0200136/*
137 * Request flags. For use in the cmd_flags field of struct request, and in
138 * bi_rw of struct bio. Note that some flags are only valid in either one.
139 */
140enum rq_flag_bits {
141 /* common flags */
142 __REQ_WRITE, /* not set, read. set, write */
143 __REQ_FAILFAST_DEV, /* no driver retries of device errors */
144 __REQ_FAILFAST_TRANSPORT, /* no driver retries of transport errors */
145 __REQ_FAILFAST_DRIVER, /* no driver retries of driver errors */
146
Tejun Heo7cc01582010-08-03 13:14:58 +0200147 __REQ_SYNC, /* request is sync (sync write or read) */
148 __REQ_META, /* metadata io request */
Christoph Hellwig65299a32011-08-23 14:50:29 +0200149 __REQ_PRIO, /* boost priority in cfq */
Tejun Heo7cc01582010-08-03 13:14:58 +0200150 __REQ_DISCARD, /* request to discard sectors */
Matthew Wilcox8e4bf842011-08-11 10:36:03 +0200151 __REQ_SECURE, /* secure discard (used with __REQ_DISCARD) */
Martin K. Petersen4363ac72012-09-18 12:19:27 -0400152 __REQ_WRITE_SAME, /* write same block many times */
Matthew Wilcox8e4bf842011-08-11 10:36:03 +0200153
Tejun Heo7cc01582010-08-03 13:14:58 +0200154 __REQ_NOIDLE, /* don't anticipate more IO after this one */
Matthew Wilcox8e4bf842011-08-11 10:36:03 +0200155 __REQ_FUA, /* forced unit access */
156 __REQ_FLUSH, /* request for cache flush */
Tejun Heo7cc01582010-08-03 13:14:58 +0200157
158 /* bio only flags */
Tejun Heo7cc01582010-08-03 13:14:58 +0200159 __REQ_RAHEAD, /* read ahead, can fail anytime */
Vivek Goyale43473b2010-09-15 17:06:35 -0400160 __REQ_THROTTLED, /* This bio has already been subjected to
161 * throttling rules. Don't do it again. */
Tejun Heo7cc01582010-08-03 13:14:58 +0200162
163 /* request only flags */
164 __REQ_SORTED, /* elevator knows about this request */
165 __REQ_SOFTBARRIER, /* may not be passed by ioscheduler */
Tejun Heo7cc01582010-08-03 13:14:58 +0200166 __REQ_NOMERGE, /* don't touch this for merging */
167 __REQ_STARTED, /* drive already may have started this one */
168 __REQ_DONTPREP, /* don't call prep for this one */
169 __REQ_QUEUED, /* uses queueing */
170 __REQ_ELVPRIV, /* elevator private data attached */
171 __REQ_FAILED, /* set if the request failed */
172 __REQ_QUIET, /* don't worry about errors */
173 __REQ_PREEMPT, /* set for "ide_preempt" requests */
Tejun Heo7cc01582010-08-03 13:14:58 +0200174 __REQ_ALLOCED, /* request came from our alloc pool */
175 __REQ_COPY_USER, /* contains copies of user pages */
Tejun Heo414b4ff2011-01-25 12:43:49 +0100176 __REQ_FLUSH_SEQ, /* request for flush sequence */
Tejun Heo7cc01582010-08-03 13:14:58 +0200177 __REQ_IO_STAT, /* account I/O stat */
178 __REQ_MIXED_MERGE, /* merge of different types, fail separately */
Mel Gorman18022c52012-07-31 16:44:51 -0700179 __REQ_KERNEL, /* direct IO to kernel pages */
Lin Ming66311272013-03-23 11:42:24 +0800180 __REQ_PM, /* runtime pm request */
Tejun Heo7cc01582010-08-03 13:14:58 +0200181 __REQ_NR_BITS, /* stops here */
182};
183
184#define REQ_WRITE (1 << __REQ_WRITE)
185#define REQ_FAILFAST_DEV (1 << __REQ_FAILFAST_DEV)
186#define REQ_FAILFAST_TRANSPORT (1 << __REQ_FAILFAST_TRANSPORT)
187#define REQ_FAILFAST_DRIVER (1 << __REQ_FAILFAST_DRIVER)
Tejun Heo7cc01582010-08-03 13:14:58 +0200188#define REQ_SYNC (1 << __REQ_SYNC)
189#define REQ_META (1 << __REQ_META)
Christoph Hellwig65299a32011-08-23 14:50:29 +0200190#define REQ_PRIO (1 << __REQ_PRIO)
Tejun Heo7cc01582010-08-03 13:14:58 +0200191#define REQ_DISCARD (1 << __REQ_DISCARD)
Martin K. Petersen4363ac72012-09-18 12:19:27 -0400192#define REQ_WRITE_SAME (1 << __REQ_WRITE_SAME)
Tejun Heo7cc01582010-08-03 13:14:58 +0200193#define REQ_NOIDLE (1 << __REQ_NOIDLE)
194
195#define REQ_FAILFAST_MASK \
196 (REQ_FAILFAST_DEV | REQ_FAILFAST_TRANSPORT | REQ_FAILFAST_DRIVER)
197#define REQ_COMMON_MASK \
Christoph Hellwig65299a32011-08-23 14:50:29 +0200198 (REQ_WRITE | REQ_FAILFAST_MASK | REQ_SYNC | REQ_META | REQ_PRIO | \
Martin K. Petersen4363ac72012-09-18 12:19:27 -0400199 REQ_DISCARD | REQ_WRITE_SAME | REQ_NOIDLE | REQ_FLUSH | REQ_FUA | \
200 REQ_SECURE)
Tejun Heo3a2edd02010-09-03 11:56:18 +0200201#define REQ_CLONE_MASK REQ_COMMON_MASK
Tejun Heo7cc01582010-08-03 13:14:58 +0200202
Kent Overstreet054bdf62012-09-28 13:17:55 -0700203#define BIO_NO_ADVANCE_ITER_MASK (REQ_DISCARD|REQ_WRITE_SAME)
204
Martin K. Petersene2a60da2012-09-18 12:19:25 -0400205/* This mask is used for both bio and request merge checking */
206#define REQ_NOMERGE_FLAGS \
207 (REQ_NOMERGE | REQ_STARTED | REQ_SOFTBARRIER | REQ_FLUSH | REQ_FUA)
208
Tejun Heo7cc01582010-08-03 13:14:58 +0200209#define REQ_RAHEAD (1 << __REQ_RAHEAD)
Vivek Goyale43473b2010-09-15 17:06:35 -0400210#define REQ_THROTTLED (1 << __REQ_THROTTLED)
Tejun Heo7cc01582010-08-03 13:14:58 +0200211
212#define REQ_SORTED (1 << __REQ_SORTED)
213#define REQ_SOFTBARRIER (1 << __REQ_SOFTBARRIER)
214#define REQ_FUA (1 << __REQ_FUA)
215#define REQ_NOMERGE (1 << __REQ_NOMERGE)
216#define REQ_STARTED (1 << __REQ_STARTED)
217#define REQ_DONTPREP (1 << __REQ_DONTPREP)
218#define REQ_QUEUED (1 << __REQ_QUEUED)
219#define REQ_ELVPRIV (1 << __REQ_ELVPRIV)
220#define REQ_FAILED (1 << __REQ_FAILED)
221#define REQ_QUIET (1 << __REQ_QUIET)
222#define REQ_PREEMPT (1 << __REQ_PREEMPT)
Tejun Heo7cc01582010-08-03 13:14:58 +0200223#define REQ_ALLOCED (1 << __REQ_ALLOCED)
224#define REQ_COPY_USER (1 << __REQ_COPY_USER)
Tejun Heo7cc01582010-08-03 13:14:58 +0200225#define REQ_FLUSH (1 << __REQ_FLUSH)
Tejun Heo414b4ff2011-01-25 12:43:49 +0100226#define REQ_FLUSH_SEQ (1 << __REQ_FLUSH_SEQ)
Tejun Heo7cc01582010-08-03 13:14:58 +0200227#define REQ_IO_STAT (1 << __REQ_IO_STAT)
228#define REQ_MIXED_MERGE (1 << __REQ_MIXED_MERGE)
Adrian Hunter8d57a982010-08-11 14:17:49 -0700229#define REQ_SECURE (1 << __REQ_SECURE)
Mel Gorman18022c52012-07-31 16:44:51 -0700230#define REQ_KERNEL (1 << __REQ_KERNEL)
Lin Ming66311272013-03-23 11:42:24 +0800231#define REQ_PM (1 << __REQ_PM)
Tejun Heo7cc01582010-08-03 13:14:58 +0200232
Tejun Heo7cc01582010-08-03 13:14:58 +0200233#endif /* __LINUX_BLK_TYPES_H */