linux/include/linux/blk_types.h
<<
>>
Prefs
   1/* SPDX-License-Identifier: GPL-2.0 */
   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
   9#include <linux/types.h>
  10#include <linux/bvec.h>
  11#include <linux/ktime.h>
  12#include <linux/rh_kabi.h>
  13
  14struct bio_set;
  15struct bio;
  16struct bio_integrity_payload;
  17struct page;
  18struct block_device;
  19struct io_context;
  20struct cgroup_subsys_state;
  21typedef void (bio_end_io_t) (struct bio *);
  22
  23/*
  24 * Block error status values.  See block/blk-core:blk_errors for the details.
  25 * Alpha cannot write a byte atomically, so we need to use 32-bit value.
  26 */
  27#if defined(CONFIG_ALPHA) && !defined(__alpha_bwx__)
  28typedef u32 __bitwise blk_status_t;
  29#else
  30typedef u8 __bitwise blk_status_t;
  31#endif
  32#define BLK_STS_OK 0
  33#define BLK_STS_NOTSUPP         ((__force blk_status_t)1)
  34#define BLK_STS_TIMEOUT         ((__force blk_status_t)2)
  35#define BLK_STS_NOSPC           ((__force blk_status_t)3)
  36#define BLK_STS_TRANSPORT       ((__force blk_status_t)4)
  37#define BLK_STS_TARGET          ((__force blk_status_t)5)
  38#define BLK_STS_NEXUS           ((__force blk_status_t)6)
  39#define BLK_STS_MEDIUM          ((__force blk_status_t)7)
  40#define BLK_STS_PROTECTION      ((__force blk_status_t)8)
  41#define BLK_STS_RESOURCE        ((__force blk_status_t)9)
  42#define BLK_STS_IOERR           ((__force blk_status_t)10)
  43
  44/* hack for device mapper, don't use elsewhere: */
  45#define BLK_STS_DM_REQUEUE    ((__force blk_status_t)11)
  46
  47#define BLK_STS_AGAIN           ((__force blk_status_t)12)
  48
  49/*
  50 * BLK_STS_DEV_RESOURCE is returned from the driver to the block layer if
  51 * device related resources are unavailable, but the driver can guarantee
  52 * that the queue will be rerun in the future once resources become
  53 * available again. This is typically the case for device specific
  54 * resources that are consumed for IO. If the driver fails allocating these
  55 * resources, we know that inflight (or pending) IO will free these
  56 * resource upon completion.
  57 *
  58 * This is different from BLK_STS_RESOURCE in that it explicitly references
  59 * a device specific resource. For resources of wider scope, allocation
  60 * failure can happen without having pending IO. This means that we can't
  61 * rely on request completions freeing these resources, as IO may not be in
  62 * flight. Examples of that are kernel memory allocations, DMA mappings, or
  63 * any other system wide resources.
  64 */
  65#define BLK_STS_DEV_RESOURCE    ((__force blk_status_t)13)
  66
  67/*
  68 * BLK_STS_ZONE_RESOURCE is returned from the driver to the block layer if zone
  69 * related resources are unavailable, but the driver can guarantee the queue
  70 * will be rerun in the future once the resources become available again.
  71 *
  72 * This is different from BLK_STS_DEV_RESOURCE in that it explicitly references
  73 * a zone specific resource and IO to a different zone on the same device could
  74 * still be served. Examples of that are zones that are write-locked, but a read
  75 * to the same zone could be served.
  76 */
  77#define BLK_STS_ZONE_RESOURCE   ((__force blk_status_t)14)
  78
  79/**
  80 * blk_path_error - returns true if error may be path related
  81 * @error: status the request was completed with
  82 *
  83 * Description:
  84 *     This classifies block error status into non-retryable errors and ones
  85 *     that may be successful if retried on a failover path.
  86 *
  87 * Return:
  88 *     %false - retrying failover path will not help
  89 *     %true  - may succeed if retried
  90 */
  91static inline bool blk_path_error(blk_status_t error)
  92{
  93        switch (error) {
  94        case BLK_STS_NOTSUPP:
  95        case BLK_STS_NOSPC:
  96        case BLK_STS_TARGET:
  97        case BLK_STS_NEXUS:
  98        case BLK_STS_MEDIUM:
  99        case BLK_STS_PROTECTION:
 100                return false;
 101        }
 102
 103        /* Anything else could be a path failure, so should be retried */
 104        return true;
 105}
 106
 107/*
 108 * From most significant bit:
 109 * 1 bit: reserved for other usage, see below
 110 * 12 bits: original size of bio
 111 * 51 bits: issue time of bio
 112 */
 113#define BIO_ISSUE_RES_BITS      1
 114#define BIO_ISSUE_SIZE_BITS     12
 115#define BIO_ISSUE_RES_SHIFT     (64 - BIO_ISSUE_RES_BITS)
 116#define BIO_ISSUE_SIZE_SHIFT    (BIO_ISSUE_RES_SHIFT - BIO_ISSUE_SIZE_BITS)
 117#define BIO_ISSUE_TIME_MASK     ((1ULL << BIO_ISSUE_SIZE_SHIFT) - 1)
 118#define BIO_ISSUE_SIZE_MASK     \
 119        (((1ULL << BIO_ISSUE_SIZE_BITS) - 1) << BIO_ISSUE_SIZE_SHIFT)
 120#define BIO_ISSUE_RES_MASK      (~((1ULL << BIO_ISSUE_RES_SHIFT) - 1))
 121
 122/* Reserved bit for blk-throtl */
 123#define BIO_ISSUE_THROTL_SKIP_LATENCY (1ULL << 63)
 124
 125struct bio_issue {
 126        u64 value;
 127};
 128
 129static inline u64 __bio_issue_time(u64 time)
 130{
 131        return time & BIO_ISSUE_TIME_MASK;
 132}
 133
 134static inline u64 bio_issue_time(struct bio_issue *issue)
 135{
 136        return __bio_issue_time(issue->value);
 137}
 138
 139static inline sector_t bio_issue_size(struct bio_issue *issue)
 140{
 141        return ((issue->value & BIO_ISSUE_SIZE_MASK) >> BIO_ISSUE_SIZE_SHIFT);
 142}
 143
 144static inline void bio_issue_init(struct bio_issue *issue,
 145                                       sector_t size)
 146{
 147        size &= (1ULL << BIO_ISSUE_SIZE_BITS) - 1;
 148        issue->value = ((issue->value & BIO_ISSUE_RES_MASK) |
 149                        (ktime_get_ns() & BIO_ISSUE_TIME_MASK) |
 150                        ((u64)size << BIO_ISSUE_SIZE_SHIFT));
 151}
 152
 153/*
 154 * main unit of I/O for the block layer and lower layers (ie drivers and
 155 * stacking drivers)
 156 */
 157struct bio {
 158        struct bio              *bi_next;       /* request queue link */
 159        struct gendisk          *bi_disk;
 160        unsigned int            bi_opf;         /* bottom bits req flags,
 161                                                 * top bits REQ_OP. Use
 162                                                 * accessors.
 163                                                 */
 164        unsigned short          bi_flags;       /* status, etc and bvec pool number */
 165        unsigned short          bi_ioprio;
 166        unsigned short          bi_write_hint;
 167        blk_status_t            bi_status;
 168        u8                      bi_partno;
 169
 170        /* Number of segments in this BIO after
 171         * physical address coalescing is performed.
 172         */
 173        unsigned int            bi_phys_segments;
 174
 175        /*
 176         * To keep track of the max segment size, we account for the
 177         * sizes of the first and last mergeable segments in this bio.
 178         */
 179        unsigned int            bi_seg_front_size;
 180        unsigned int            bi_seg_back_size;
 181
 182        struct bvec_iter        bi_iter;
 183
 184        atomic_t                __bi_remaining;
 185        bio_end_io_t            *bi_end_io;
 186
 187        void                    *bi_private;
 188#ifdef CONFIG_BLK_CGROUP
 189        /*
 190         * Represents the association of the css and request_queue for the bio.
 191         * If a bio goes direct to device, it will not have a blkg as it will
 192         * not have a request_queue associated with it.  The reference is put
 193         * on release of the bio.
 194         */
 195        struct blkcg_gq         *bi_blkg;
 196        struct bio_issue        bi_issue;
 197#endif
 198        union {
 199#if defined(CONFIG_BLK_DEV_INTEGRITY)
 200                struct bio_integrity_payload *bi_integrity; /* data integrity */
 201#endif
 202        };
 203
 204        unsigned short          bi_vcnt;        /* how many bio_vec's */
 205
 206        /*
 207         * Everything starting with bi_max_vecs will be preserved by bio_reset()
 208         */
 209
 210        unsigned short          bi_max_vecs;    /* max bvl_vecs we can hold */
 211
 212        atomic_t                __bi_cnt;       /* pin count */
 213
 214        struct bio_vec          *bi_io_vec;     /* the actual vec list */
 215
 216        struct bio_set          *bi_pool;
 217
 218        RH_KABI_USE(1, u64      bi_iocost_cost)
 219        RH_KABI_RESERVE(2)
 220        RH_KABI_RESERVE(3)
 221
 222        /*
 223         * We can inline a number of vecs at the end of the bio, to avoid
 224         * double allocations for a small number of bio_vecs. This member
 225         * MUST obviously be kept at the very end of the bio.
 226         */
 227        struct bio_vec          bi_inline_vecs[0];
 228};
 229
 230#define BIO_RESET_BYTES         offsetof(struct bio, bi_max_vecs)
 231
 232/*
 233 * bio flags
 234 */
 235#define BIO_NO_PAGE_REF 0       /* don't put release vec pages */
 236#define BIO_SEG_VALID   1       /* bi_phys_segments valid */
 237#define BIO_CLONED      2       /* doesn't own data */
 238#define BIO_BOUNCED     3       /* bio is a bounce bio */
 239#define BIO_USER_MAPPED 4       /* contains user pages */
 240#define BIO_NULL_MAPPED 5       /* contains invalid user pages */
 241#define BIO_QUIET       6       /* Make BIO Quiet */
 242#define BIO_CHAIN       7       /* chained bio, ->bi_remaining in effect */
 243#define BIO_REFFED      8       /* bio has elevated ->bi_cnt */
 244#define BIO_THROTTLED   9       /* This bio has already been subjected to
 245                                 * throttling rules. Don't do it again. */
 246#define BIO_TRACE_COMPLETION 10 /* bio_endio() should trace the final completion
 247                                 * of this bio. */
 248#define BIO_QUEUE_ENTERED 11    /* can use blk_queue_enter_live() */
 249#define BIO_TRACKED 12          /* set if bio goes through the rq_qos path */
 250#define BIO_CGROUP_ACCT BIO_QUEUE_ENTERED /* has been accounted to a cgroup */
 251
 252/* See BVEC_POOL_OFFSET below before adding new flags */
 253
 254/*
 255 * We support 6 different bvec pools, the last one is magic in that it
 256 * is backed by a mempool.
 257 */
 258#define BVEC_POOL_NR            6
 259#define BVEC_POOL_MAX           (BVEC_POOL_NR - 1)
 260
 261/*
 262 * Top 3 bits of bio flags indicate the pool the bvecs came from.  We add
 263 * 1 to the actual index so that 0 indicates that there are no bvecs to be
 264 * freed.
 265 */
 266#define BVEC_POOL_BITS          (3)
 267#define BVEC_POOL_OFFSET        (16 - BVEC_POOL_BITS)
 268#define BVEC_POOL_IDX(bio)      ((bio)->bi_flags >> BVEC_POOL_OFFSET)
 269#if (1<< BVEC_POOL_BITS) < (BVEC_POOL_NR+1)
 270# error "BVEC_POOL_BITS is too small"
 271#endif
 272
 273/*
 274 * Flags starting here get preserved by bio_reset() - this includes
 275 * only BVEC_POOL_IDX()
 276 */
 277#define BIO_RESET_BITS  BVEC_POOL_OFFSET
 278
 279typedef __u32 __bitwise blk_mq_req_flags_t;
 280
 281/*
 282 * Operations and flags common to the bio and request structures.
 283 * We use 8 bits for encoding the operation, and the remaining 24 for flags.
 284 *
 285 * The least significant bit of the operation number indicates the data
 286 * transfer direction:
 287 *
 288 *   - if the least significant bit is set transfers are TO the device
 289 *   - if the least significant bit is not set transfers are FROM the device
 290 *
 291 * If a operation does not transfer data the least significant bit has no
 292 * meaning.
 293 */
 294#define REQ_OP_BITS     8
 295#define REQ_OP_MASK     ((1 << REQ_OP_BITS) - 1)
 296#define REQ_FLAG_BITS   24
 297
 298enum req_opf {
 299        /* read sectors from the device */
 300        REQ_OP_READ             = 0,
 301        /* write sectors to the device */
 302        REQ_OP_WRITE            = 1,
 303        /* flush the volatile write cache */
 304        REQ_OP_FLUSH            = 2,
 305        /* discard sectors */
 306        REQ_OP_DISCARD          = 3,
 307        /* securely erase sectors */
 308        REQ_OP_SECURE_ERASE     = 5,
 309        /* seset a zone write pointer */
 310        REQ_OP_ZONE_RESET       = 6,
 311        /* write the same sector many times */
 312        REQ_OP_WRITE_SAME       = 7,
 313        /* reset all the zone present on the device */
 314        REQ_OP_ZONE_RESET_ALL   = 8,
 315        /* write the zero filled sector many times */
 316        REQ_OP_WRITE_ZEROES     = 9,
 317        /* Open a zone */
 318        REQ_OP_ZONE_OPEN        = 10,
 319        /* Close a zone */
 320        REQ_OP_ZONE_CLOSE       = 11,
 321        /* Transition a zone to full */
 322        REQ_OP_ZONE_FINISH      = 12,
 323        /* write data at the current zone write pointer */
 324        REQ_OP_ZONE_APPEND      = 13,
 325
 326        /* SCSI passthrough using struct scsi_request */
 327        REQ_OP_SCSI_IN          = 32,
 328        REQ_OP_SCSI_OUT         = 33,
 329        /* Driver private requests */
 330        REQ_OP_DRV_IN           = 34,
 331        REQ_OP_DRV_OUT          = 35,
 332
 333        REQ_OP_LAST,
 334};
 335
 336enum req_flag_bits {
 337        __REQ_FAILFAST_DEV =    /* no driver retries of device errors */
 338                REQ_OP_BITS,
 339        __REQ_FAILFAST_TRANSPORT, /* no driver retries of transport errors */
 340        __REQ_FAILFAST_DRIVER,  /* no driver retries of driver errors */
 341        __REQ_SYNC,             /* request is sync (sync write or read) */
 342        __REQ_META,             /* metadata io request */
 343        __REQ_PRIO,             /* boost priority in cfq */
 344        __REQ_NOMERGE,          /* don't touch this for merging */
 345        __REQ_IDLE,             /* anticipate more IO after this one */
 346        __REQ_INTEGRITY,        /* I/O includes block integrity payload */
 347        __REQ_FUA,              /* forced unit access */
 348        __REQ_PREFLUSH,         /* request for cache flush */
 349        __REQ_RAHEAD,           /* read ahead, can fail anytime */
 350        __REQ_BACKGROUND,       /* background IO */
 351        __REQ_NOWAIT,           /* Don't wait if request will block */
 352
 353        /* command specific flags for REQ_OP_WRITE_ZEROES: */
 354        __REQ_NOUNMAP,          /* do not free blocks when zeroing */
 355
 356        __REQ_HIPRI,
 357
 358        /* for driver use */
 359        __REQ_DRV,
 360        __REQ_SWAP,             /* swapping request. */
 361
 362        /*
 363         * When a shared kthread needs to issue a bio for a cgroup, doing
 364         * so synchronously can lead to priority inversions as the kthread
 365         * can be trapped waiting for that cgroup.  CGROUP_PUNT flag makes
 366         * submit_bio() punt the actual issuing to a dedicated per-blkcg
 367         * work item to avoid such priority inversions.
 368         */
 369        __REQ_CGROUP_PUNT,
 370        __REQ_NR_BITS,          /* stops here */
 371};
 372
 373#define REQ_FAILFAST_DEV        (1ULL << __REQ_FAILFAST_DEV)
 374#define REQ_FAILFAST_TRANSPORT  (1ULL << __REQ_FAILFAST_TRANSPORT)
 375#define REQ_FAILFAST_DRIVER     (1ULL << __REQ_FAILFAST_DRIVER)
 376#define REQ_SYNC                (1ULL << __REQ_SYNC)
 377#define REQ_META                (1ULL << __REQ_META)
 378#define REQ_PRIO                (1ULL << __REQ_PRIO)
 379#define REQ_NOMERGE             (1ULL << __REQ_NOMERGE)
 380#define REQ_IDLE                (1ULL << __REQ_IDLE)
 381#define REQ_INTEGRITY           (1ULL << __REQ_INTEGRITY)
 382#define REQ_FUA                 (1ULL << __REQ_FUA)
 383#define REQ_PREFLUSH            (1ULL << __REQ_PREFLUSH)
 384#define REQ_RAHEAD              (1ULL << __REQ_RAHEAD)
 385#define REQ_BACKGROUND          (1ULL << __REQ_BACKGROUND)
 386#define REQ_NOWAIT              (1ULL << __REQ_NOWAIT)
 387#define REQ_CGROUP_PUNT         (1ULL << __REQ_CGROUP_PUNT)
 388
 389#define REQ_NOUNMAP             (1ULL << __REQ_NOUNMAP)
 390#define REQ_HIPRI               (1ULL << __REQ_HIPRI)
 391
 392#define REQ_DRV                 (1ULL << __REQ_DRV)
 393#define REQ_SWAP                (1ULL << __REQ_SWAP)
 394
 395#define REQ_FAILFAST_MASK \
 396        (REQ_FAILFAST_DEV | REQ_FAILFAST_TRANSPORT | REQ_FAILFAST_DRIVER)
 397
 398#define REQ_NOMERGE_FLAGS \
 399        (REQ_NOMERGE | REQ_PREFLUSH | REQ_FUA)
 400
 401enum stat_group {
 402        STAT_READ,
 403        STAT_WRITE,
 404        STAT_DISCARD,
 405
 406        NR_STAT_GROUPS
 407};
 408
 409#define bio_op(bio) \
 410        ((bio)->bi_opf & REQ_OP_MASK)
 411#define req_op(req) \
 412        ((req)->cmd_flags & REQ_OP_MASK)
 413
 414/* obsolete, don't use in new code */
 415static inline void bio_set_op_attrs(struct bio *bio, unsigned op,
 416                unsigned op_flags)
 417{
 418        bio->bi_opf = op | op_flags;
 419}
 420
 421static inline bool op_is_write(unsigned int op)
 422{
 423        return (op & 1);
 424}
 425
 426/*
 427 * Check if the bio or request is one that needs special treatment in the
 428 * flush state machine.
 429 */
 430static inline bool op_is_flush(unsigned int op)
 431{
 432        return op & (REQ_FUA | REQ_PREFLUSH);
 433}
 434
 435/*
 436 * Reads are always treated as synchronous, as are requests with the FUA or
 437 * PREFLUSH flag.  Other operations may be marked as synchronous using the
 438 * REQ_SYNC flag.
 439 */
 440static inline bool op_is_sync(unsigned int op)
 441{
 442        return (op & REQ_OP_MASK) == REQ_OP_READ ||
 443                (op & (REQ_SYNC | REQ_FUA | REQ_PREFLUSH));
 444}
 445
 446static inline bool op_is_discard(unsigned int op)
 447{
 448        return (op & REQ_OP_MASK) == REQ_OP_DISCARD;
 449}
 450
 451/*
 452 * Check if a bio or request operation is a zone management operation, with
 453 * the exception of REQ_OP_ZONE_RESET_ALL which is treated as a special case
 454 * due to its different handling in the block layer and device response in
 455 * case of command failure.
 456 */
 457static inline bool op_is_zone_mgmt(enum req_opf op)
 458{
 459        switch (op & REQ_OP_MASK) {
 460        case REQ_OP_ZONE_RESET:
 461        case REQ_OP_ZONE_OPEN:
 462        case REQ_OP_ZONE_CLOSE:
 463        case REQ_OP_ZONE_FINISH:
 464                return true;
 465        default:
 466                return false;
 467        }
 468}
 469
 470static inline int op_stat_group(unsigned int op)
 471{
 472        if (op_is_discard(op))
 473                return STAT_DISCARD;
 474        return op_is_write(op);
 475}
 476
 477typedef unsigned int blk_qc_t;
 478#define BLK_QC_T_NONE           -1U
 479#define BLK_QC_T_SHIFT          16
 480#define BLK_QC_T_INTERNAL       (1U << 31)
 481
 482static inline bool blk_qc_t_valid(blk_qc_t cookie)
 483{
 484        return cookie != BLK_QC_T_NONE;
 485}
 486
 487static inline unsigned int blk_qc_t_to_queue_num(blk_qc_t cookie)
 488{
 489        return (cookie & ~BLK_QC_T_INTERNAL) >> BLK_QC_T_SHIFT;
 490}
 491
 492static inline unsigned int blk_qc_t_to_tag(blk_qc_t cookie)
 493{
 494        return cookie & ((1u << BLK_QC_T_SHIFT) - 1);
 495}
 496
 497static inline bool blk_qc_t_is_internal(blk_qc_t cookie)
 498{
 499        return (cookie & BLK_QC_T_INTERNAL) != 0;
 500}
 501
 502struct blk_rq_stat {
 503        u64 mean;
 504        u64 min;
 505        u64 max;
 506        u32 nr_samples;
 507        u64 batch;
 508};
 509
 510#endif /* __LINUX_BLK_TYPES_H */
 511