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