1
2
3
4
5
6#ifndef __LINUX_BLK_TYPES_H
7#define __LINUX_BLK_TYPES_H
8
9#include <linux/types.h>
10#include <linux/bvec.h>
11#include <linux/ktime.h>
12
13struct bio_set;
14struct bio;
15struct bio_integrity_payload;
16struct page;
17struct block_device;
18struct io_context;
19struct cgroup_subsys_state;
20typedef void (bio_end_io_t) (struct bio *);
21
22
23
24
25
26#if defined(CONFIG_ALPHA) && !defined(__alpha_bwx__)
27typedef u32 __bitwise blk_status_t;
28#else
29typedef u8 __bitwise blk_status_t;
30#endif
31#define BLK_STS_OK 0
32#define BLK_STS_NOTSUPP ((__force blk_status_t)1)
33#define BLK_STS_TIMEOUT ((__force blk_status_t)2)
34#define BLK_STS_NOSPC ((__force blk_status_t)3)
35#define BLK_STS_TRANSPORT ((__force blk_status_t)4)
36#define BLK_STS_TARGET ((__force blk_status_t)5)
37#define BLK_STS_NEXUS ((__force blk_status_t)6)
38#define BLK_STS_MEDIUM ((__force blk_status_t)7)
39#define BLK_STS_PROTECTION ((__force blk_status_t)8)
40#define BLK_STS_RESOURCE ((__force blk_status_t)9)
41#define BLK_STS_IOERR ((__force blk_status_t)10)
42
43
44#define BLK_STS_DM_REQUEUE ((__force blk_status_t)11)
45
46#define BLK_STS_AGAIN ((__force blk_status_t)12)
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64#define BLK_STS_DEV_RESOURCE ((__force blk_status_t)13)
65
66
67
68
69
70
71
72
73
74
75
76
77
78static inline bool blk_path_error(blk_status_t error)
79{
80 switch (error) {
81 case BLK_STS_NOTSUPP:
82 case BLK_STS_NOSPC:
83 case BLK_STS_TARGET:
84 case BLK_STS_NEXUS:
85 case BLK_STS_MEDIUM:
86 case BLK_STS_PROTECTION:
87 return false;
88 }
89
90
91 return true;
92}
93
94
95
96
97
98
99
100#define BIO_ISSUE_RES_BITS 1
101#define BIO_ISSUE_SIZE_BITS 12
102#define BIO_ISSUE_RES_SHIFT (64 - BIO_ISSUE_RES_BITS)
103#define BIO_ISSUE_SIZE_SHIFT (BIO_ISSUE_RES_SHIFT - BIO_ISSUE_SIZE_BITS)
104#define BIO_ISSUE_TIME_MASK ((1ULL << BIO_ISSUE_SIZE_SHIFT) - 1)
105#define BIO_ISSUE_SIZE_MASK \
106 (((1ULL << BIO_ISSUE_SIZE_BITS) - 1) << BIO_ISSUE_SIZE_SHIFT)
107#define BIO_ISSUE_RES_MASK (~((1ULL << BIO_ISSUE_RES_SHIFT) - 1))
108
109
110#define BIO_ISSUE_THROTL_SKIP_LATENCY (1ULL << 63)
111
112struct bio_issue {
113 u64 value;
114};
115
116static inline u64 __bio_issue_time(u64 time)
117{
118 return time & BIO_ISSUE_TIME_MASK;
119}
120
121static inline u64 bio_issue_time(struct bio_issue *issue)
122{
123 return __bio_issue_time(issue->value);
124}
125
126static inline sector_t bio_issue_size(struct bio_issue *issue)
127{
128 return ((issue->value & BIO_ISSUE_SIZE_MASK) >> BIO_ISSUE_SIZE_SHIFT);
129}
130
131static inline void bio_issue_init(struct bio_issue *issue,
132 sector_t size)
133{
134 size &= (1ULL << BIO_ISSUE_SIZE_BITS) - 1;
135 issue->value = ((issue->value & BIO_ISSUE_RES_MASK) |
136 (ktime_get_ns() & BIO_ISSUE_TIME_MASK) |
137 ((u64)size << BIO_ISSUE_SIZE_SHIFT));
138}
139
140
141
142
143
144struct bio {
145 struct bio *bi_next;
146 struct gendisk *bi_disk;
147 unsigned int bi_opf;
148
149
150
151 unsigned short bi_flags;
152 unsigned short bi_ioprio;
153 unsigned short bi_write_hint;
154 blk_status_t bi_status;
155 u8 bi_partno;
156
157
158
159
160 unsigned int bi_phys_segments;
161
162
163
164
165
166 unsigned int bi_seg_front_size;
167 unsigned int bi_seg_back_size;
168
169 struct bvec_iter bi_iter;
170
171 atomic_t __bi_remaining;
172 bio_end_io_t *bi_end_io;
173
174 void *bi_private;
175#ifdef CONFIG_BLK_CGROUP
176
177
178
179
180 struct io_context *bi_ioc;
181 struct cgroup_subsys_state *bi_css;
182#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
183 void *bi_cg_private;
184 struct bio_issue bi_issue;
185#endif
186#endif
187 union {
188#if defined(CONFIG_BLK_DEV_INTEGRITY)
189 struct bio_integrity_payload *bi_integrity;
190#endif
191 };
192
193 unsigned short bi_vcnt;
194
195
196
197
198
199 unsigned short bi_max_vecs;
200
201 atomic_t __bi_cnt;
202
203 struct bio_vec *bi_io_vec;
204
205 struct bio_set *bi_pool;
206
207
208
209
210
211
212 struct bio_vec bi_inline_vecs[0];
213};
214
215#define BIO_RESET_BYTES offsetof(struct bio, bi_max_vecs)
216
217
218
219
220#define BIO_SEG_VALID 1
221#define BIO_CLONED 2
222#define BIO_BOUNCED 3
223#define BIO_USER_MAPPED 4
224#define BIO_NULL_MAPPED 5
225#define BIO_QUIET 6
226#define BIO_CHAIN 7
227#define BIO_REFFED 8
228#define BIO_THROTTLED 9
229
230#define BIO_TRACE_COMPLETION 10
231
232#define BIO_QUEUE_ENTERED 11
233
234
235
236
237
238
239
240#define BVEC_POOL_NR 6
241#define BVEC_POOL_MAX (BVEC_POOL_NR - 1)
242
243
244
245
246
247
248#define BVEC_POOL_BITS (3)
249#define BVEC_POOL_OFFSET (16 - BVEC_POOL_BITS)
250#define BVEC_POOL_IDX(bio) ((bio)->bi_flags >> BVEC_POOL_OFFSET)
251#if (1<< BVEC_POOL_BITS) < (BVEC_POOL_NR+1)
252# error "BVEC_POOL_BITS is too small"
253#endif
254
255
256
257
258
259#define BIO_RESET_BITS BVEC_POOL_OFFSET
260
261typedef __u32 __bitwise blk_mq_req_flags_t;
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276#define REQ_OP_BITS 8
277#define REQ_OP_MASK ((1 << REQ_OP_BITS) - 1)
278#define REQ_FLAG_BITS 24
279
280enum req_opf {
281
282 REQ_OP_READ = 0,
283
284 REQ_OP_WRITE = 1,
285
286 REQ_OP_FLUSH = 2,
287
288 REQ_OP_DISCARD = 3,
289
290 REQ_OP_ZONE_REPORT = 4,
291
292 REQ_OP_SECURE_ERASE = 5,
293
294 REQ_OP_ZONE_RESET = 6,
295
296 REQ_OP_WRITE_SAME = 7,
297
298 REQ_OP_WRITE_ZEROES = 9,
299
300
301 REQ_OP_SCSI_IN = 32,
302 REQ_OP_SCSI_OUT = 33,
303
304 REQ_OP_DRV_IN = 34,
305 REQ_OP_DRV_OUT = 35,
306
307 REQ_OP_LAST,
308};
309
310enum req_flag_bits {
311 __REQ_FAILFAST_DEV =
312 REQ_OP_BITS,
313 __REQ_FAILFAST_TRANSPORT,
314 __REQ_FAILFAST_DRIVER,
315 __REQ_SYNC,
316 __REQ_META,
317 __REQ_PRIO,
318 __REQ_NOMERGE,
319 __REQ_IDLE,
320 __REQ_INTEGRITY,
321 __REQ_FUA,
322 __REQ_PREFLUSH,
323 __REQ_RAHEAD,
324 __REQ_BACKGROUND,
325 __REQ_NOWAIT,
326
327
328 __REQ_NOUNMAP,
329
330
331 __REQ_DRV,
332
333 __REQ_NR_BITS,
334};
335
336#define REQ_FAILFAST_DEV (1ULL << __REQ_FAILFAST_DEV)
337#define REQ_FAILFAST_TRANSPORT (1ULL << __REQ_FAILFAST_TRANSPORT)
338#define REQ_FAILFAST_DRIVER (1ULL << __REQ_FAILFAST_DRIVER)
339#define REQ_SYNC (1ULL << __REQ_SYNC)
340#define REQ_META (1ULL << __REQ_META)
341#define REQ_PRIO (1ULL << __REQ_PRIO)
342#define REQ_NOMERGE (1ULL << __REQ_NOMERGE)
343#define REQ_IDLE (1ULL << __REQ_IDLE)
344#define REQ_INTEGRITY (1ULL << __REQ_INTEGRITY)
345#define REQ_FUA (1ULL << __REQ_FUA)
346#define REQ_PREFLUSH (1ULL << __REQ_PREFLUSH)
347#define REQ_RAHEAD (1ULL << __REQ_RAHEAD)
348#define REQ_BACKGROUND (1ULL << __REQ_BACKGROUND)
349#define REQ_NOWAIT (1ULL << __REQ_NOWAIT)
350
351#define REQ_NOUNMAP (1ULL << __REQ_NOUNMAP)
352
353#define REQ_DRV (1ULL << __REQ_DRV)
354
355#define REQ_FAILFAST_MASK \
356 (REQ_FAILFAST_DEV | REQ_FAILFAST_TRANSPORT | REQ_FAILFAST_DRIVER)
357
358#define REQ_NOMERGE_FLAGS \
359 (REQ_NOMERGE | REQ_PREFLUSH | REQ_FUA)
360
361#define bio_op(bio) \
362 ((bio)->bi_opf & REQ_OP_MASK)
363#define req_op(req) \
364 ((req)->cmd_flags & REQ_OP_MASK)
365
366
367static inline void bio_set_op_attrs(struct bio *bio, unsigned op,
368 unsigned op_flags)
369{
370 bio->bi_opf = op | op_flags;
371}
372
373static inline bool op_is_write(unsigned int op)
374{
375 return (op & 1);
376}
377
378
379
380
381
382static inline bool op_is_flush(unsigned int op)
383{
384 return op & (REQ_FUA | REQ_PREFLUSH);
385}
386
387
388
389
390
391
392static inline bool op_is_sync(unsigned int op)
393{
394 return (op & REQ_OP_MASK) == REQ_OP_READ ||
395 (op & (REQ_SYNC | REQ_FUA | REQ_PREFLUSH));
396}
397
398typedef unsigned int blk_qc_t;
399#define BLK_QC_T_NONE -1U
400#define BLK_QC_T_SHIFT 16
401#define BLK_QC_T_INTERNAL (1U << 31)
402
403static inline bool blk_qc_t_valid(blk_qc_t cookie)
404{
405 return cookie != BLK_QC_T_NONE;
406}
407
408static inline blk_qc_t blk_tag_to_qc_t(unsigned int tag, unsigned int queue_num,
409 bool internal)
410{
411 blk_qc_t ret = tag | (queue_num << BLK_QC_T_SHIFT);
412
413 if (internal)
414 ret |= BLK_QC_T_INTERNAL;
415
416 return ret;
417}
418
419static inline unsigned int blk_qc_t_to_queue_num(blk_qc_t cookie)
420{
421 return (cookie & ~BLK_QC_T_INTERNAL) >> BLK_QC_T_SHIFT;
422}
423
424static inline unsigned int blk_qc_t_to_tag(blk_qc_t cookie)
425{
426 return cookie & ((1u << BLK_QC_T_SHIFT) - 1);
427}
428
429static inline bool blk_qc_t_is_internal(blk_qc_t cookie)
430{
431 return (cookie & BLK_QC_T_INTERNAL) != 0;
432}
433
434struct blk_rq_stat {
435 u64 mean;
436 u64 min;
437 u64 max;
438 u32 nr_samples;
439 u64 batch;
440};
441
442#endif
443