block: re-arrange the struct block_device fields for better layout
[linux-block.git] / include / linux / blk_types.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
7cc01581
TH
2/*
3 * Block data types and constants. Directly include this file only to
4 * break include dependency loop.
5 */
6#ifndef __LINUX_BLK_TYPES_H
7#define __LINUX_BLK_TYPES_H
8
7cc01581 9#include <linux/types.h>
0781e79e 10#include <linux/bvec.h>
0d02129e 11#include <linux/device.h>
5238dcf4 12#include <linux/ktime.h>
7cc01581
TH
13
14struct bio_set;
15struct bio;
16struct bio_integrity_payload;
17struct page;
852c788f
TH
18struct io_context;
19struct cgroup_subsys_state;
4246a0b6 20typedef void (bio_end_io_t) (struct bio *);
a892c8d5 21struct bio_crypt_ctx;
7cc01581 22
99457db8
CH
23/*
24 * The basic unit of block I/O is a sector. It is used in a number of contexts
25 * in Linux (blk, bio, genhd). The size of one sector is 512 = 2**9
26 * bytes. Variables of type sector_t represent an offset or size that is a
27 * multiple of 512 bytes. Hence these two constants.
28 */
29#ifndef SECTOR_SHIFT
30#define SECTOR_SHIFT 9
31#endif
32#ifndef SECTOR_SIZE
33#define SECTOR_SIZE (1 << SECTOR_SHIFT)
34#endif
35
36#define PAGE_SECTORS_SHIFT (PAGE_SHIFT - SECTOR_SHIFT)
37#define PAGE_SECTORS (1 << PAGE_SECTORS_SHIFT)
38#define SECTOR_MASK (PAGE_SECTORS - 1)
39
621c1f42 40struct block_device {
29ff57c6 41 sector_t bd_start_sect;
f09313c5 42 sector_t bd_nr_sectors;
3838c406
JA
43 struct gendisk * bd_disk;
44 struct request_queue * bd_queue;
15e3d2c5
CH
45 struct disk_stats __percpu *bd_stats;
46 unsigned long bd_stamp;
83950d35 47 bool bd_read_only; /* read-only policy */
3838c406
JA
48 u8 bd_partno;
49 bool bd_write_holder;
46d40cfa 50 dev_t bd_dev;
9acf381f 51 atomic_t bd_openers;
3838c406 52 spinlock_t bd_size_lock; /* for bd_inode->i_size updates */
621c1f42
CH
53 struct inode * bd_inode; /* will die */
54 struct super_block * bd_super;
621c1f42
CH
55 void * bd_claiming;
56 void * bd_holder;
3838c406
JA
57 /* The counter of freeze processes */
58 int bd_fsfreeze_count;
621c1f42 59 int bd_holders;
1bdd5ae0 60 struct kobject *bd_holder_dir;
621c1f42 61
621c1f42
CH
62 /* Mutex for freeze */
63 struct mutex bd_fsfreeze_mutex;
040f04bd 64 struct super_block *bd_fsfreeze_sb;
231926db
CH
65
66 struct partition_meta_info *bd_meta_info;
b309e993
CH
67#ifdef CONFIG_FAIL_MAKE_REQUEST
68 bool bd_make_it_fail;
69#endif
3838c406
JA
70 /*
71 * keep this out-of-line as it's both big and not needed in the fast
72 * path
73 */
74 struct device bd_device;
621c1f42
CH
75} __randomize_layout;
76
a954ea81 77#define bdev_whole(_bdev) \
cb8432d6 78 ((_bdev)->bd_disk->part0)
a954ea81 79
0d02129e
CH
80#define dev_to_bdev(device) \
81 container_of((device), struct block_device, bd_device)
82
8d65269f 83#define bdev_kobj(_bdev) \
0d02129e 84 (&((_bdev)->bd_device.kobj))
8d65269f 85
2a842aca
CH
86/*
87 * Block error status values. See block/blk-core:blk_errors for the details.
6e2fb221 88 * Alpha cannot write a byte atomically, so we need to use 32-bit value.
2a842aca 89 */
6e2fb221
MP
90#if defined(CONFIG_ALPHA) && !defined(__alpha_bwx__)
91typedef u32 __bitwise blk_status_t;
aad5b23e 92typedef u32 blk_short_t;
6e2fb221 93#else
2a842aca 94typedef u8 __bitwise blk_status_t;
aad5b23e 95typedef u16 blk_short_t;
6e2fb221 96#endif
2a842aca
CH
97#define BLK_STS_OK 0
98#define BLK_STS_NOTSUPP ((__force blk_status_t)1)
99#define BLK_STS_TIMEOUT ((__force blk_status_t)2)
100#define BLK_STS_NOSPC ((__force blk_status_t)3)
101#define BLK_STS_TRANSPORT ((__force blk_status_t)4)
102#define BLK_STS_TARGET ((__force blk_status_t)5)
103#define BLK_STS_NEXUS ((__force blk_status_t)6)
104#define BLK_STS_MEDIUM ((__force blk_status_t)7)
105#define BLK_STS_PROTECTION ((__force blk_status_t)8)
106#define BLK_STS_RESOURCE ((__force blk_status_t)9)
107#define BLK_STS_IOERR ((__force blk_status_t)10)
108
4e4cbee9
CH
109/* hack for device mapper, don't use elsewhere: */
110#define BLK_STS_DM_REQUEUE ((__force blk_status_t)11)
111
98d40e76
HR
112/*
113 * BLK_STS_AGAIN should only be returned if RQF_NOWAIT is set
114 * and the bio would block (cf bio_wouldblock_error())
115 */
03a07c92
GR
116#define BLK_STS_AGAIN ((__force blk_status_t)12)
117
86ff7c2a
ML
118/*
119 * BLK_STS_DEV_RESOURCE is returned from the driver to the block layer if
120 * device related resources are unavailable, but the driver can guarantee
121 * that the queue will be rerun in the future once resources become
122 * available again. This is typically the case for device specific
123 * resources that are consumed for IO. If the driver fails allocating these
124 * resources, we know that inflight (or pending) IO will free these
125 * resource upon completion.
126 *
127 * This is different from BLK_STS_RESOURCE in that it explicitly references
128 * a device specific resource. For resources of wider scope, allocation
129 * failure can happen without having pending IO. This means that we can't
130 * rely on request completions freeing these resources, as IO may not be in
131 * flight. Examples of that are kernel memory allocations, DMA mappings, or
132 * any other system wide resources.
133 */
134#define BLK_STS_DEV_RESOURCE ((__force blk_status_t)13)
135
0512a75b
KB
136/*
137 * BLK_STS_ZONE_RESOURCE is returned from the driver to the block layer if zone
138 * related resources are unavailable, but the driver can guarantee the queue
139 * will be rerun in the future once the resources become available again.
140 *
141 * This is different from BLK_STS_DEV_RESOURCE in that it explicitly references
142 * a zone specific resource and IO to a different zone on the same device could
143 * still be served. Examples of that are zones that are write-locked, but a read
144 * to the same zone could be served.
145 */
146#define BLK_STS_ZONE_RESOURCE ((__force blk_status_t)14)
147
3b481d91
KB
148/*
149 * BLK_STS_ZONE_OPEN_RESOURCE is returned from the driver in the completion
150 * path if the device returns a status indicating that too many zone resources
151 * are currently open. The same command should be successful if resubmitted
152 * after the number of open zones decreases below the device's limits, which is
153 * reported in the request_queue's max_open_zones.
154 */
155#define BLK_STS_ZONE_OPEN_RESOURCE ((__force blk_status_t)15)
156
157/*
158 * BLK_STS_ZONE_ACTIVE_RESOURCE is returned from the driver in the completion
159 * path if the device returns a status indicating that too many zone resources
160 * are currently active. The same command should be successful if resubmitted
161 * after the number of active zones decreases below the device's limits, which
162 * is reported in the request_queue's max_active_zones.
163 */
164#define BLK_STS_ZONE_ACTIVE_RESOURCE ((__force blk_status_t)16)
165
2651bf68
SL
166/*
167 * BLK_STS_OFFLINE is returned from the driver when the target device is offline
168 * or is being taken offline. This could help differentiate the case where a
169 * device is intentionally being shut down from a real I/O error.
170 */
171#define BLK_STS_OFFLINE ((__force blk_status_t)17)
172
9111e568
KB
173/**
174 * blk_path_error - returns true if error may be path related
175 * @error: status the request was completed with
176 *
177 * Description:
178 * This classifies block error status into non-retryable errors and ones
179 * that may be successful if retried on a failover path.
180 *
181 * Return:
182 * %false - retrying failover path will not help
183 * %true - may succeed if retried
184 */
185static inline bool blk_path_error(blk_status_t error)
186{
187 switch (error) {
188 case BLK_STS_NOTSUPP:
189 case BLK_STS_NOSPC:
190 case BLK_STS_TARGET:
191 case BLK_STS_NEXUS:
192 case BLK_STS_MEDIUM:
193 case BLK_STS_PROTECTION:
194 return false;
195 }
196
197 /* Anything else could be a path failure, so should be retried */
198 return true;
199}
200
5238dcf4
OS
201/*
202 * From most significant bit:
203 * 1 bit: reserved for other usage, see below
204 * 12 bits: original size of bio
205 * 51 bits: issue time of bio
206 */
207#define BIO_ISSUE_RES_BITS 1
208#define BIO_ISSUE_SIZE_BITS 12
209#define BIO_ISSUE_RES_SHIFT (64 - BIO_ISSUE_RES_BITS)
210#define BIO_ISSUE_SIZE_SHIFT (BIO_ISSUE_RES_SHIFT - BIO_ISSUE_SIZE_BITS)
211#define BIO_ISSUE_TIME_MASK ((1ULL << BIO_ISSUE_SIZE_SHIFT) - 1)
212#define BIO_ISSUE_SIZE_MASK \
213 (((1ULL << BIO_ISSUE_SIZE_BITS) - 1) << BIO_ISSUE_SIZE_SHIFT)
214#define BIO_ISSUE_RES_MASK (~((1ULL << BIO_ISSUE_RES_SHIFT) - 1))
215
216/* Reserved bit for blk-throtl */
217#define BIO_ISSUE_THROTL_SKIP_LATENCY (1ULL << 63)
218
219struct bio_issue {
220 u64 value;
221};
222
223static inline u64 __bio_issue_time(u64 time)
224{
225 return time & BIO_ISSUE_TIME_MASK;
226}
227
228static inline u64 bio_issue_time(struct bio_issue *issue)
229{
230 return __bio_issue_time(issue->value);
231}
232
233static inline sector_t bio_issue_size(struct bio_issue *issue)
234{
235 return ((issue->value & BIO_ISSUE_SIZE_MASK) >> BIO_ISSUE_SIZE_SHIFT);
236}
237
238static inline void bio_issue_init(struct bio_issue *issue,
239 sector_t size)
240{
241 size &= (1ULL << BIO_ISSUE_SIZE_BITS) - 1;
242 issue->value = ((issue->value & BIO_ISSUE_RES_MASK) |
243 (ktime_get_ns() & BIO_ISSUE_TIME_MASK) |
244 ((u64)size << BIO_ISSUE_SIZE_SHIFT));
245}
246
342a72a3
BVA
247typedef __u32 __bitwise blk_opf_t;
248
3e08773c
CH
249typedef unsigned int blk_qc_t;
250#define BLK_QC_T_NONE -1U
251
7cc01581
TH
252/*
253 * main unit of I/O for the block layer and lower layers (ie drivers and
254 * stacking drivers)
255 */
256struct bio {
7cc01581 257 struct bio *bi_next; /* request queue link */
309dca30 258 struct block_device *bi_bdev;
342a72a3 259 blk_opf_t bi_opf; /* bottom bits REQ_OP, top bits
5d2ae142 260 * req_flags.
4e1b2d52 261 */
7a800a20 262 unsigned short bi_flags; /* BIO_* below */
43b62ce3 263 unsigned short bi_ioprio;
111be883 264 blk_status_t bi_status;
993e4cde 265 atomic_t __bi_remaining;
7cc01581 266
111be883 267 struct bvec_iter bi_iter;
196d38bc 268
3e08773c 269 blk_qc_t bi_cookie;
7cc01581 270 bio_end_io_t *bi_end_io;
7cc01581 271 void *bi_private;
852c788f
TH
272#ifdef CONFIG_BLK_CGROUP
273 /*
db6638d7
DZ
274 * Represents the association of the css and request_queue for the bio.
275 * If a bio goes direct to device, it will not have a blkg as it will
276 * not have a request_queue associated with it. The reference is put
277 * on release of the bio.
852c788f 278 */
08e18eab 279 struct blkcg_gq *bi_blkg;
5238dcf4 280 struct bio_issue bi_issue;
7caa4715
TH
281#ifdef CONFIG_BLK_CGROUP_IOCOST
282 u64 bi_iocost_cost;
283#endif
852c788f 284#endif
a892c8d5
ST
285
286#ifdef CONFIG_BLK_INLINE_ENCRYPTION
287 struct bio_crypt_ctx *bi_crypt_context;
288#endif
289
180b2f95 290 union {
7cc01581 291#if defined(CONFIG_BLK_DEV_INTEGRITY)
180b2f95 292 struct bio_integrity_payload *bi_integrity; /* data integrity */
7cc01581 293#endif
180b2f95 294 };
7cc01581 295
4f024f37
KO
296 unsigned short bi_vcnt; /* how many bio_vec's */
297
f44b48c7
KO
298 /*
299 * Everything starting with bi_max_vecs will be preserved by bio_reset()
300 */
301
4f024f37 302 unsigned short bi_max_vecs; /* max bvl_vecs we can hold */
f44b48c7 303
dac56212 304 atomic_t __bi_cnt; /* pin count */
f44b48c7
KO
305
306 struct bio_vec *bi_io_vec; /* the actual vec list */
307
395c72a7
KO
308 struct bio_set *bi_pool;
309
7cc01581
TH
310 /*
311 * We can inline a number of vecs at the end of the bio, to avoid
312 * double allocations for a small number of bio_vecs. This member
313 * MUST obviously be kept at the very end of the bio.
314 */
5a58ec8c 315 struct bio_vec bi_inline_vecs[];
7cc01581
TH
316};
317
f44b48c7 318#define BIO_RESET_BYTES offsetof(struct bio, bi_max_vecs)
e83502ca 319#define BIO_MAX_SECTORS (UINT_MAX >> SECTOR_SHIFT)
f44b48c7 320
7cc01581
TH
321/*
322 * bio flags
323 */
2b24e6f6
JT
324enum {
325 BIO_NO_PAGE_REF, /* don't put release vec pages */
2b24e6f6
JT
326 BIO_CLONED, /* doesn't own data */
327 BIO_BOUNCED, /* bio is a bounce bio */
2b24e6f6
JT
328 BIO_QUIET, /* Make BIO Quiet */
329 BIO_CHAIN, /* chained bio, ->bi_remaining in effect */
330 BIO_REFFED, /* bio has elevated ->bi_cnt */
320fb0f9 331 BIO_BPS_THROTTLED, /* This bio has already been subjected to
8d2bbd4c 332 * throttling rules. Don't do it again. */
2b24e6f6 333 BIO_TRACE_COMPLETION, /* bio_endio() should trace the final completion
fbbaf700 334 * of this bio. */
0376e9ef 335 BIO_CGROUP_ACCT, /* has been accounted to a cgroup */
aa1b46dc
TH
336 BIO_QOS_THROTTLED, /* bio went through rq_qos throttle path */
337 BIO_QOS_MERGED, /* but went through rq_qos merge path */
30c5d345 338 BIO_REMAPPED,
9ffbbb43 339 BIO_ZONE_WRITE_LOCKED, /* Owns a zoned device zone write lock */
2b24e6f6
JT
340 BIO_FLAG_LAST
341};
cd4a4ae4 342
9a95e4ef
BVA
343typedef __u32 __bitwise blk_mq_req_flags_t;
344
ff07a02e 345#define REQ_OP_BITS 8
342a72a3 346#define REQ_OP_MASK (__force blk_opf_t)((1 << REQ_OP_BITS) - 1)
ff07a02e
BVA
347#define REQ_FLAG_BITS 24
348
349/**
350 * enum req_op - Operations common to the bio and request structures.
ef295ecf 351 * We use 8 bits for encoding the operation, and the remaining 24 for flags.
87374179
CH
352 *
353 * The least significant bit of the operation number indicates the data
354 * transfer direction:
355 *
356 * - if the least significant bit is set transfers are TO the device
357 * - if the least significant bit is not set transfers are FROM the device
358 *
359 * If a operation does not transfer data the least significant bit has no
360 * meaning.
7cc01581 361 */
ff07a02e 362enum req_op {
87374179 363 /* read sectors from the device */
342a72a3 364 REQ_OP_READ = (__force blk_opf_t)0,
87374179 365 /* write sectors to the device */
342a72a3 366 REQ_OP_WRITE = (__force blk_opf_t)1,
87374179 367 /* flush the volatile write cache */
342a72a3 368 REQ_OP_FLUSH = (__force blk_opf_t)2,
87374179 369 /* discard sectors */
342a72a3 370 REQ_OP_DISCARD = (__force blk_opf_t)3,
87374179 371 /* securely erase sectors */
342a72a3 372 REQ_OP_SECURE_ERASE = (__force blk_opf_t)5,
a6f0788e 373 /* write the zero filled sector many times */
342a72a3 374 REQ_OP_WRITE_ZEROES = (__force blk_opf_t)9,
6c1b1da5 375 /* Open a zone */
342a72a3 376 REQ_OP_ZONE_OPEN = (__force blk_opf_t)10,
6c1b1da5 377 /* Close a zone */
342a72a3 378 REQ_OP_ZONE_CLOSE = (__force blk_opf_t)11,
6c1b1da5 379 /* Transition a zone to full */
342a72a3 380 REQ_OP_ZONE_FINISH = (__force blk_opf_t)12,
0512a75b 381 /* write data at the current zone write pointer */
342a72a3 382 REQ_OP_ZONE_APPEND = (__force blk_opf_t)13,
ecdef9f4 383 /* reset a zone write pointer */
342a72a3 384 REQ_OP_ZONE_RESET = (__force blk_opf_t)15,
ecdef9f4 385 /* reset all the zone present on the device */
342a72a3 386 REQ_OP_ZONE_RESET_ALL = (__force blk_opf_t)17,
ef295ecf 387
aebf526b 388 /* Driver private requests */
342a72a3
BVA
389 REQ_OP_DRV_IN = (__force blk_opf_t)34,
390 REQ_OP_DRV_OUT = (__force blk_opf_t)35,
aebf526b 391
342a72a3 392 REQ_OP_LAST = (__force blk_opf_t)36,
ef295ecf
CH
393};
394
395enum req_flag_bits {
396 __REQ_FAILFAST_DEV = /* no driver retries of device errors */
397 REQ_OP_BITS,
7cc01581
TH
398 __REQ_FAILFAST_TRANSPORT, /* no driver retries of transport errors */
399 __REQ_FAILFAST_DRIVER, /* no driver retries of driver errors */
7cc01581
TH
400 __REQ_SYNC, /* request is sync (sync write or read) */
401 __REQ_META, /* metadata io request */
65299a3b 402 __REQ_PRIO, /* boost priority in cfq */
bd1c1c21 403 __REQ_NOMERGE, /* don't touch this for merging */
a2b80967 404 __REQ_IDLE, /* anticipate more IO after this one */
180b2f95 405 __REQ_INTEGRITY, /* I/O includes block integrity payload */
8e4bf844 406 __REQ_FUA, /* forced unit access */
28a8f0d3 407 __REQ_PREFLUSH, /* request for cache flush */
188bd2b1 408 __REQ_RAHEAD, /* read ahead, can fail anytime */
1d796d6a 409 __REQ_BACKGROUND, /* background IO */
8977f563 410 __REQ_NOWAIT, /* Don't wait if request will block */
d3f77dfd
TH
411 /*
412 * When a shared kthread needs to issue a bio for a cgroup, doing
413 * so synchronously can lead to priority inversions as the kthread
414 * can be trapped waiting for that cgroup. CGROUP_PUNT flag makes
415 * submit_bio() punt the actual issuing to a dedicated per-blkcg
416 * work item to avoid such priority inversions.
417 */
418 __REQ_CGROUP_PUNT,
3e08773c 419 __REQ_POLLED, /* caller polls for completion using bio_poll */
0df71650 420 __REQ_ALLOC_CACHE, /* allocate IO from cache if available */
5ce7729f
CH
421 __REQ_SWAP, /* swap I/O */
422 __REQ_DRV, /* for driver use */
423
424 /*
425 * Command specific flags, keep last:
426 */
427 /* for REQ_OP_WRITE_ZEROES: */
428 __REQ_NOUNMAP, /* do not free blocks when zeroing */
d1e36282 429
7cc01581
TH
430 __REQ_NR_BITS, /* stops here */
431};
432
342a72a3
BVA
433#define REQ_FAILFAST_DEV \
434 (__force blk_opf_t)(1ULL << __REQ_FAILFAST_DEV)
435#define REQ_FAILFAST_TRANSPORT \
436 (__force blk_opf_t)(1ULL << __REQ_FAILFAST_TRANSPORT)
437#define REQ_FAILFAST_DRIVER \
438 (__force blk_opf_t)(1ULL << __REQ_FAILFAST_DRIVER)
439#define REQ_SYNC (__force blk_opf_t)(1ULL << __REQ_SYNC)
440#define REQ_META (__force blk_opf_t)(1ULL << __REQ_META)
441#define REQ_PRIO (__force blk_opf_t)(1ULL << __REQ_PRIO)
442#define REQ_NOMERGE (__force blk_opf_t)(1ULL << __REQ_NOMERGE)
443#define REQ_IDLE (__force blk_opf_t)(1ULL << __REQ_IDLE)
444#define REQ_INTEGRITY (__force blk_opf_t)(1ULL << __REQ_INTEGRITY)
445#define REQ_FUA (__force blk_opf_t)(1ULL << __REQ_FUA)
446#define REQ_PREFLUSH (__force blk_opf_t)(1ULL << __REQ_PREFLUSH)
447#define REQ_RAHEAD (__force blk_opf_t)(1ULL << __REQ_RAHEAD)
448#define REQ_BACKGROUND (__force blk_opf_t)(1ULL << __REQ_BACKGROUND)
449#define REQ_NOWAIT (__force blk_opf_t)(1ULL << __REQ_NOWAIT)
450#define REQ_CGROUP_PUNT (__force blk_opf_t)(1ULL << __REQ_CGROUP_PUNT)
451
452#define REQ_NOUNMAP (__force blk_opf_t)(1ULL << __REQ_NOUNMAP)
453#define REQ_POLLED (__force blk_opf_t)(1ULL << __REQ_POLLED)
454#define REQ_ALLOC_CACHE (__force blk_opf_t)(1ULL << __REQ_ALLOC_CACHE)
455
456#define REQ_DRV (__force blk_opf_t)(1ULL << __REQ_DRV)
457#define REQ_SWAP (__force blk_opf_t)(1ULL << __REQ_SWAP)
d928be9f 458
7cc01581
TH
459#define REQ_FAILFAST_MASK \
460 (REQ_FAILFAST_DEV | REQ_FAILFAST_TRANSPORT | REQ_FAILFAST_DRIVER)
7cc01581 461
e2a60da7 462#define REQ_NOMERGE_FLAGS \
e8064021 463 (REQ_NOMERGE | REQ_PREFLUSH | REQ_FUA)
e2a60da7 464
dbae2c55
MC
465enum stat_group {
466 STAT_READ,
467 STAT_WRITE,
bdca3c87 468 STAT_DISCARD,
b6866318 469 STAT_FLUSH,
dbae2c55
MC
470
471 NR_STAT_GROUPS
472};
473
2d9b02be
BVA
474static inline enum req_op bio_op(const struct bio *bio)
475{
476 return bio->bi_opf & REQ_OP_MASK;
477}
7cc01581 478
342a72a3 479static inline bool op_is_write(blk_opf_t op)
87374179 480{
342a72a3 481 return !!(op & (__force blk_opf_t)1);
87374179
CH
482}
483
f73f44eb
CH
484/*
485 * Check if the bio or request is one that needs special treatment in the
486 * flush state machine.
487 */
342a72a3 488static inline bool op_is_flush(blk_opf_t op)
f73f44eb
CH
489{
490 return op & (REQ_FUA | REQ_PREFLUSH);
491}
492
b685d3d6
CH
493/*
494 * Reads are always treated as synchronous, as are requests with the FUA or
495 * PREFLUSH flag. Other operations may be marked as synchronous using the
496 * REQ_SYNC flag.
497 */
342a72a3 498static inline bool op_is_sync(blk_opf_t op)
ef295ecf 499{
b685d3d6
CH
500 return (op & REQ_OP_MASK) == REQ_OP_READ ||
501 (op & (REQ_SYNC | REQ_FUA | REQ_PREFLUSH));
ef295ecf 502}
c11f0c0b 503
342a72a3 504static inline bool op_is_discard(blk_opf_t op)
bdca3c87
MC
505{
506 return (op & REQ_OP_MASK) == REQ_OP_DISCARD;
507}
508
6c1b1da5
AJ
509/*
510 * Check if a bio or request operation is a zone management operation, with
511 * the exception of REQ_OP_ZONE_RESET_ALL which is treated as a special case
512 * due to its different handling in the block layer and device response in
513 * case of command failure.
514 */
ff07a02e 515static inline bool op_is_zone_mgmt(enum req_op op)
6c1b1da5
AJ
516{
517 switch (op & REQ_OP_MASK) {
518 case REQ_OP_ZONE_RESET:
519 case REQ_OP_ZONE_OPEN:
520 case REQ_OP_ZONE_CLOSE:
521 case REQ_OP_ZONE_FINISH:
522 return true;
523 default:
524 return false;
525 }
526}
527
77e7ffd7 528static inline int op_stat_group(enum req_op op)
ddcf35d3 529{
bdca3c87
MC
530 if (op_is_discard(op))
531 return STAT_DISCARD;
ddcf35d3
MC
532 return op_is_write(op);
533}
534
cf43e6be 535struct blk_rq_stat {
eca8b53a 536 u64 mean;
cf43e6be
JA
537 u64 min;
538 u64 max;
eca8b53a 539 u32 nr_samples;
cf43e6be 540 u64 batch;
cf43e6be
JA
541};
542
7cc01581 543#endif /* __LINUX_BLK_TYPES_H */