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