Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | #ifndef _LINUX_BLKDEV_H |
| 3 | #define _LINUX_BLKDEV_H |
| 4 | |
Russell King | 85fd0bc | 2012-05-14 08:29:23 +0200 | [diff] [blame] | 5 | #include <linux/sched.h> |
Ingo Molnar | e601757 | 2017-02-01 16:36:40 +0100 | [diff] [blame] | 6 | #include <linux/sched/clock.h> |
Russell King | 85fd0bc | 2012-05-14 08:29:23 +0200 | [diff] [blame] | 7 | |
Jens Axboe | f5ff842 | 2007-09-21 09:19:54 +0200 | [diff] [blame] | 8 | #ifdef CONFIG_BLOCK |
| 9 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/major.h> |
| 11 | #include <linux/genhd.h> |
| 12 | #include <linux/list.h> |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 13 | #include <linux/llist.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/timer.h> |
| 15 | #include <linux/workqueue.h> |
| 16 | #include <linux/pagemap.h> |
Tejun Heo | 66114ca | 2015-05-22 17:13:32 -0400 | [diff] [blame] | 17 | #include <linux/backing-dev-defs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/wait.h> |
| 19 | #include <linux/mempool.h> |
Dan Williams | 34c0fd5 | 2016-01-15 16:56:14 -0800 | [diff] [blame] | 20 | #include <linux/pfn.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/bio.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/stringify.h> |
Hugh Dickins | 3e6053d | 2008-09-11 10:57:55 +0200 | [diff] [blame] | 23 | #include <linux/gfp.h> |
FUJITA Tomonori | d351af0 | 2007-07-09 12:40:35 +0200 | [diff] [blame] | 24 | #include <linux/bsg.h> |
Jens Axboe | c7c22e4 | 2008-09-13 20:26:01 +0200 | [diff] [blame] | 25 | #include <linux/smp.h> |
Tejun Heo | 548bc8e | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 26 | #include <linux/rcupdate.h> |
Tejun Heo | add703f | 2014-07-01 10:34:38 -0600 | [diff] [blame] | 27 | #include <linux/percpu-refcount.h> |
Christoph Hellwig | 84be456 | 2015-05-01 12:46:15 +0200 | [diff] [blame] | 28 | #include <linux/scatterlist.h> |
Hannes Reinecke | 6a0cb1b | 2016-10-18 15:40:33 +0900 | [diff] [blame] | 29 | #include <linux/blkzoned.h> |
Ming Lei | e6249cd | 2020-05-03 09:54:22 +0800 | [diff] [blame] | 30 | #include <linux/sched/sysctl.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | |
Paul Gortmaker | de47725 | 2011-05-26 13:46:22 -0400 | [diff] [blame] | 32 | struct module; |
Christoph Hellwig | 21b2f0c | 2006-03-22 17:52:04 +0100 | [diff] [blame] | 33 | struct scsi_ioctl_command; |
| 34 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | struct request_queue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | struct elevator_queue; |
Jens Axboe | 2056a78 | 2006-03-23 20:00:26 +0100 | [diff] [blame] | 37 | struct blk_trace; |
Jens Axboe | 3d6392c | 2007-07-09 12:38:05 +0200 | [diff] [blame] | 38 | struct request; |
| 39 | struct sg_io_hdr; |
Mike Christie | aa387cc | 2011-07-31 22:05:09 +0200 | [diff] [blame] | 40 | struct bsg_job; |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 41 | struct blkcg_gq; |
Ming Lei | 7c94e1c | 2014-09-25 23:23:43 +0800 | [diff] [blame] | 42 | struct blk_flush_queue; |
Christoph Hellwig | bbd3e06 | 2015-10-15 14:10:48 +0200 | [diff] [blame] | 43 | struct pr_ops; |
Josef Bacik | a790504 | 2018-07-03 09:32:35 -0600 | [diff] [blame] | 44 | struct rq_qos; |
Omar Sandoval | 34dbad5 | 2017-03-21 08:56:08 -0700 | [diff] [blame] | 45 | struct blk_queue_stats; |
| 46 | struct blk_stat_callback; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
| 48 | #define BLKDEV_MIN_RQ 4 |
| 49 | #define BLKDEV_MAX_RQ 128 /* Default maximum */ |
| 50 | |
Minwoo Im | 096392e | 2018-02-15 23:53:17 +0900 | [diff] [blame] | 51 | /* Must be consistent with blk_mq_poll_stats_bkt() */ |
Stephen Bates | 0206319 | 2017-04-20 16:59:11 -0600 | [diff] [blame] | 52 | #define BLK_MQ_POLL_STATS_BKTS 16 |
| 53 | |
Yufen Yu | 29ece8b | 2019-03-18 22:44:41 +0800 | [diff] [blame] | 54 | /* Doing classic polling */ |
| 55 | #define BLK_MQ_POLL_CLASSIC -1 |
| 56 | |
Tejun Heo | 8bd435b | 2012-04-13 13:11:28 -0700 | [diff] [blame] | 57 | /* |
| 58 | * Maximum number of blkcg policies allowed to be registered concurrently. |
| 59 | * Defined here to simplify include dependency. |
| 60 | */ |
Jens Axboe | 01c5f85 | 2018-09-11 10:59:53 -0600 | [diff] [blame] | 61 | #define BLKCG_MAX_POLS 5 |
Tejun Heo | 8bd435b | 2012-04-13 13:11:28 -0700 | [diff] [blame] | 62 | |
Christoph Hellwig | 2a842ac | 2017-06-03 09:38:04 +0200 | [diff] [blame] | 63 | typedef void (rq_end_io_fn)(struct request *, blk_status_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 65 | /* |
Christoph Hellwig | e806402 | 2016-10-20 15:12:13 +0200 | [diff] [blame] | 66 | * request flags */ |
| 67 | typedef __u32 __bitwise req_flags_t; |
| 68 | |
| 69 | /* elevator knows about this request */ |
| 70 | #define RQF_SORTED ((__force req_flags_t)(1 << 0)) |
| 71 | /* drive already may have started this one */ |
| 72 | #define RQF_STARTED ((__force req_flags_t)(1 << 1)) |
Christoph Hellwig | e806402 | 2016-10-20 15:12:13 +0200 | [diff] [blame] | 73 | /* may not be passed by ioscheduler */ |
| 74 | #define RQF_SOFTBARRIER ((__force req_flags_t)(1 << 3)) |
| 75 | /* request for flush sequence */ |
| 76 | #define RQF_FLUSH_SEQ ((__force req_flags_t)(1 << 4)) |
| 77 | /* merge of different types, fail separately */ |
| 78 | #define RQF_MIXED_MERGE ((__force req_flags_t)(1 << 5)) |
| 79 | /* track inflight for MQ */ |
| 80 | #define RQF_MQ_INFLIGHT ((__force req_flags_t)(1 << 6)) |
| 81 | /* don't call prep for this one */ |
| 82 | #define RQF_DONTPREP ((__force req_flags_t)(1 << 7)) |
| 83 | /* set for "ide_preempt" requests and also for requests for which the SCSI |
| 84 | "quiesce" state must be ignored. */ |
| 85 | #define RQF_PREEMPT ((__force req_flags_t)(1 << 8)) |
Christoph Hellwig | e806402 | 2016-10-20 15:12:13 +0200 | [diff] [blame] | 86 | /* vaguely specified driver internal error. Ignored by the block layer */ |
| 87 | #define RQF_FAILED ((__force req_flags_t)(1 << 10)) |
| 88 | /* don't warn about errors */ |
| 89 | #define RQF_QUIET ((__force req_flags_t)(1 << 11)) |
| 90 | /* elevator private data attached */ |
| 91 | #define RQF_ELVPRIV ((__force req_flags_t)(1 << 12)) |
Konstantin Khlebnikov | 4822e90 | 2018-10-11 10:07:06 +0300 | [diff] [blame] | 92 | /* account into disk and partition IO statistics */ |
Christoph Hellwig | e806402 | 2016-10-20 15:12:13 +0200 | [diff] [blame] | 93 | #define RQF_IO_STAT ((__force req_flags_t)(1 << 13)) |
| 94 | /* request came from our alloc pool */ |
| 95 | #define RQF_ALLOCED ((__force req_flags_t)(1 << 14)) |
| 96 | /* runtime pm request */ |
| 97 | #define RQF_PM ((__force req_flags_t)(1 << 15)) |
| 98 | /* on IO scheduler merge hash */ |
| 99 | #define RQF_HASHED ((__force req_flags_t)(1 << 16)) |
Konstantin Khlebnikov | 4822e90 | 2018-10-11 10:07:06 +0300 | [diff] [blame] | 100 | /* track IO completion time */ |
Jens Axboe | cf43e6b | 2016-11-07 21:32:37 -0700 | [diff] [blame] | 101 | #define RQF_STATS ((__force req_flags_t)(1 << 17)) |
Christoph Hellwig | f9d03f9 | 2016-12-08 15:20:32 -0700 | [diff] [blame] | 102 | /* Look at ->special_vec for the actual data payload instead of the |
| 103 | bio chain. */ |
| 104 | #define RQF_SPECIAL_PAYLOAD ((__force req_flags_t)(1 << 18)) |
Christoph Hellwig | 6cc77e9 | 2017-12-21 15:43:38 +0900 | [diff] [blame] | 105 | /* The per-zone write lock is held for this request */ |
| 106 | #define RQF_ZONE_WRITE_LOCKED ((__force req_flags_t)(1 << 19)) |
Jens Axboe | 76a86f9 | 2018-01-10 11:30:56 -0700 | [diff] [blame] | 107 | /* already slept for hybrid poll */ |
Keith Busch | 12f5b93 | 2018-05-29 15:52:28 +0200 | [diff] [blame] | 108 | #define RQF_MQ_POLL_SLEPT ((__force req_flags_t)(1 << 20)) |
Christoph Hellwig | da66126 | 2018-06-14 13:58:45 +0200 | [diff] [blame] | 109 | /* ->timeout has been called, don't expire again */ |
| 110 | #define RQF_TIMED_OUT ((__force req_flags_t)(1 << 21)) |
Christoph Hellwig | e806402 | 2016-10-20 15:12:13 +0200 | [diff] [blame] | 111 | |
| 112 | /* flags that prevent us from merging requests: */ |
| 113 | #define RQF_NOMERGE_FLAGS \ |
Christoph Hellwig | f9d03f9 | 2016-12-08 15:20:32 -0700 | [diff] [blame] | 114 | (RQF_STARTED | RQF_SOFTBARRIER | RQF_FLUSH_SEQ | RQF_SPECIAL_PAYLOAD) |
Christoph Hellwig | e806402 | 2016-10-20 15:12:13 +0200 | [diff] [blame] | 115 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | /* |
Keith Busch | 12f5b93 | 2018-05-29 15:52:28 +0200 | [diff] [blame] | 117 | * Request state for blk-mq. |
| 118 | */ |
| 119 | enum mq_rq_state { |
| 120 | MQ_RQ_IDLE = 0, |
| 121 | MQ_RQ_IN_FLIGHT = 1, |
| 122 | MQ_RQ_COMPLETE = 2, |
| 123 | }; |
| 124 | |
| 125 | /* |
Christoph Hellwig | af76e55 | 2014-05-06 12:12:45 +0200 | [diff] [blame] | 126 | * Try to put the fields that are referenced together in the same cacheline. |
| 127 | * |
| 128 | * If you modify this structure, make sure to update blk_rq_init() and |
| 129 | * especially blk_mq_rq_ctx_init() to take care of the added fields. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | */ |
| 131 | struct request { |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 132 | struct request_queue *q; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 133 | struct blk_mq_ctx *mq_ctx; |
Jens Axboe | ea4f995 | 2018-10-29 15:06:13 -0600 | [diff] [blame] | 134 | struct blk_mq_hw_ctx *mq_hctx; |
Jens Axboe | e6a1c87 | 2006-08-10 09:00:21 +0200 | [diff] [blame] | 135 | |
Christoph Hellwig | ef295ec | 2016-10-28 08:48:16 -0600 | [diff] [blame] | 136 | unsigned int cmd_flags; /* op and common flags */ |
Christoph Hellwig | e806402 | 2016-10-20 15:12:13 +0200 | [diff] [blame] | 137 | req_flags_t rq_flags; |
Jens Axboe | d486f1f | 2017-01-31 12:34:41 -0700 | [diff] [blame] | 138 | |
Minwoo Im | 2f578aa | 2019-06-09 05:15:51 +0900 | [diff] [blame] | 139 | int tag; |
Jens Axboe | d486f1f | 2017-01-31 12:34:41 -0700 | [diff] [blame] | 140 | int internal_tag; |
| 141 | |
Tejun Heo | a2dec7b | 2009-05-07 22:24:44 +0900 | [diff] [blame] | 142 | /* the following two fields are internal, NEVER access directly */ |
Tejun Heo | a2dec7b | 2009-05-07 22:24:44 +0900 | [diff] [blame] | 143 | unsigned int __data_len; /* total data len */ |
Richard Kennedy | 181fdde | 2010-03-19 08:58:16 +0100 | [diff] [blame] | 144 | sector_t __sector; /* sector cursor */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | |
| 146 | struct bio *bio; |
| 147 | struct bio *biotail; |
| 148 | |
Jens Axboe | 7c3fb70 | 2018-01-10 11:46:39 -0700 | [diff] [blame] | 149 | struct list_head queuelist; |
| 150 | |
Jens Axboe | 360f92c | 2014-04-09 20:27:01 -0600 | [diff] [blame] | 151 | /* |
| 152 | * The hash is used inside the scheduler, and killed once the |
| 153 | * request reaches the dispatch list. The ipi_list is only used |
| 154 | * to queue the request for softirq completion, which is long |
| 155 | * after the request has been unhashed (and even removed from |
| 156 | * the dispatch list). |
| 157 | */ |
| 158 | union { |
| 159 | struct hlist_node hash; /* merge hash */ |
| 160 | struct list_head ipi_list; |
| 161 | }; |
| 162 | |
Jens Axboe | e6a1c87 | 2006-08-10 09:00:21 +0200 | [diff] [blame] | 163 | /* |
| 164 | * The rb_node is only used inside the io scheduler, requests |
| 165 | * are pruned when moved to the dispatch queue. So let the |
Mike Snitzer | c186794 | 2011-02-11 11:08:00 +0100 | [diff] [blame] | 166 | * completion_data share space with the rb_node. |
Jens Axboe | e6a1c87 | 2006-08-10 09:00:21 +0200 | [diff] [blame] | 167 | */ |
| 168 | union { |
| 169 | struct rb_node rb_node; /* sort/lookup */ |
Christoph Hellwig | f9d03f9 | 2016-12-08 15:20:32 -0700 | [diff] [blame] | 170 | struct bio_vec special_vec; |
Mike Snitzer | c186794 | 2011-02-11 11:08:00 +0100 | [diff] [blame] | 171 | void *completion_data; |
Christoph Hellwig | e26738e | 2017-04-20 16:03:11 +0200 | [diff] [blame] | 172 | int error_count; /* for legacy drivers, don't use */ |
Jens Axboe | e6a1c87 | 2006-08-10 09:00:21 +0200 | [diff] [blame] | 173 | }; |
Jens Axboe | 9817064 | 2006-07-28 09:23:08 +0200 | [diff] [blame] | 174 | |
Jens Axboe | ff7d145 | 2006-07-12 14:04:37 +0200 | [diff] [blame] | 175 | /* |
Vivek Goyal | 7f1dc8a | 2010-04-21 17:44:16 +0200 | [diff] [blame] | 176 | * Three pointers are available for the IO schedulers, if they need |
Mike Snitzer | c186794 | 2011-02-11 11:08:00 +0100 | [diff] [blame] | 177 | * more they have to dynamically allocate it. Flush requests are |
| 178 | * never put on the IO scheduler. So let the flush fields share |
Tejun Heo | a612fdd | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 179 | * space with the elevator data. |
Jens Axboe | ff7d145 | 2006-07-12 14:04:37 +0200 | [diff] [blame] | 180 | */ |
Mike Snitzer | c186794 | 2011-02-11 11:08:00 +0100 | [diff] [blame] | 181 | union { |
Tejun Heo | a612fdd | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 182 | struct { |
| 183 | struct io_cq *icq; |
| 184 | void *priv[2]; |
| 185 | } elv; |
| 186 | |
Mike Snitzer | c186794 | 2011-02-11 11:08:00 +0100 | [diff] [blame] | 187 | struct { |
| 188 | unsigned int seq; |
| 189 | struct list_head list; |
Jeff Moyer | 4853aba | 2011-08-15 21:37:25 +0200 | [diff] [blame] | 190 | rq_end_io_fn *saved_end_io; |
Mike Snitzer | c186794 | 2011-02-11 11:08:00 +0100 | [diff] [blame] | 191 | } flush; |
| 192 | }; |
Jens Axboe | ff7d145 | 2006-07-12 14:04:37 +0200 | [diff] [blame] | 193 | |
Jens Axboe | 8f34ee7 | 2006-06-13 09:02:34 +0200 | [diff] [blame] | 194 | struct gendisk *rq_disk; |
Jerome Marchand | 09e099d | 2011-01-05 16:57:38 +0100 | [diff] [blame] | 195 | struct hd_struct *part; |
Tejun Heo | 6f816b4 | 2019-08-28 15:05:57 -0700 | [diff] [blame] | 196 | #ifdef CONFIG_BLK_RQ_ALLOC_TIME |
| 197 | /* Time that the first bio started allocating this request. */ |
| 198 | u64 alloc_time_ns; |
| 199 | #endif |
| 200 | /* Time that this request was allocated for this IO. */ |
Omar Sandoval | 522a777 | 2018-05-09 02:08:53 -0700 | [diff] [blame] | 201 | u64 start_time_ns; |
Omar Sandoval | 544ccc8d | 2018-05-09 02:08:50 -0700 | [diff] [blame] | 202 | /* Time that I/O was submitted to the device. */ |
| 203 | u64 io_start_time_ns; |
| 204 | |
| 205 | #ifdef CONFIG_BLK_WBT |
| 206 | unsigned short wbt_flags; |
| 207 | #endif |
Hou Tao | 3d24430 | 2019-05-21 15:59:03 +0800 | [diff] [blame] | 208 | /* |
| 209 | * rq sectors used for blk stats. It has the same value |
| 210 | * with blk_rq_sectors(rq), except that it never be zeroed |
| 211 | * by completion. |
| 212 | */ |
| 213 | unsigned short stats_sectors; |
Omar Sandoval | 544ccc8d | 2018-05-09 02:08:50 -0700 | [diff] [blame] | 214 | |
| 215 | /* |
| 216 | * Number of scatter-gather DMA addr+len pairs after |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | * physical address coalescing is performed. |
| 218 | */ |
| 219 | unsigned short nr_phys_segments; |
Jens Axboe | 7c3fb70 | 2018-01-10 11:46:39 -0700 | [diff] [blame] | 220 | |
Martin K. Petersen | 13f05c8 | 2010-09-10 20:50:10 +0200 | [diff] [blame] | 221 | #if defined(CONFIG_BLK_DEV_INTEGRITY) |
| 222 | unsigned short nr_integrity_segments; |
| 223 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | |
Jens Axboe | 7c3fb70 | 2018-01-10 11:46:39 -0700 | [diff] [blame] | 225 | unsigned short write_hint; |
Jens Axboe | 8f34ee7 | 2006-06-13 09:02:34 +0200 | [diff] [blame] | 226 | unsigned short ioprio; |
| 227 | |
Keith Busch | 12f5b93 | 2018-05-29 15:52:28 +0200 | [diff] [blame] | 228 | enum mq_rq_state state; |
| 229 | refcount_t ref; |
Tejun Heo | 1d9bd51 | 2018-01-09 08:29:48 -0800 | [diff] [blame] | 230 | |
Jens Axboe | 0b7576d | 2018-05-29 08:47:57 -0600 | [diff] [blame] | 231 | unsigned int timeout; |
Christoph Hellwig | 079076b | 2018-11-14 17:02:05 +0100 | [diff] [blame] | 232 | unsigned long deadline; |
Jens Axboe | 0a72e7f | 2018-01-09 14:23:42 -0700 | [diff] [blame] | 233 | |
Jens Axboe | 7c3fb70 | 2018-01-10 11:46:39 -0700 | [diff] [blame] | 234 | union { |
Linus Torvalds | 0a4b6e2 | 2018-01-29 11:51:49 -0800 | [diff] [blame] | 235 | struct __call_single_data csd; |
Jens Axboe | 7c3fb70 | 2018-01-10 11:46:39 -0700 | [diff] [blame] | 236 | u64 fifo_time; |
| 237 | }; |
| 238 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | /* |
Jens Axboe | c00895a | 2006-09-30 20:29:12 +0200 | [diff] [blame] | 240 | * completion callback. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | */ |
| 242 | rq_end_io_fn *end_io; |
| 243 | void *end_io_data; |
| 244 | }; |
| 245 | |
Ming Lei | 14cb0dc | 2017-12-18 15:40:43 +0800 | [diff] [blame] | 246 | static inline bool blk_op_is_scsi(unsigned int op) |
| 247 | { |
| 248 | return op == REQ_OP_SCSI_IN || op == REQ_OP_SCSI_OUT; |
| 249 | } |
| 250 | |
| 251 | static inline bool blk_op_is_private(unsigned int op) |
| 252 | { |
| 253 | return op == REQ_OP_DRV_IN || op == REQ_OP_DRV_OUT; |
| 254 | } |
| 255 | |
Christoph Hellwig | aebf526 | 2017-01-31 16:57:31 +0100 | [diff] [blame] | 256 | static inline bool blk_rq_is_scsi(struct request *rq) |
| 257 | { |
Ming Lei | 14cb0dc | 2017-12-18 15:40:43 +0800 | [diff] [blame] | 258 | return blk_op_is_scsi(req_op(rq)); |
Christoph Hellwig | aebf526 | 2017-01-31 16:57:31 +0100 | [diff] [blame] | 259 | } |
| 260 | |
| 261 | static inline bool blk_rq_is_private(struct request *rq) |
| 262 | { |
Ming Lei | 14cb0dc | 2017-12-18 15:40:43 +0800 | [diff] [blame] | 263 | return blk_op_is_private(req_op(rq)); |
Christoph Hellwig | aebf526 | 2017-01-31 16:57:31 +0100 | [diff] [blame] | 264 | } |
| 265 | |
Christoph Hellwig | 57292b5 | 2017-01-31 16:57:29 +0100 | [diff] [blame] | 266 | static inline bool blk_rq_is_passthrough(struct request *rq) |
| 267 | { |
Christoph Hellwig | aebf526 | 2017-01-31 16:57:31 +0100 | [diff] [blame] | 268 | return blk_rq_is_scsi(rq) || blk_rq_is_private(rq); |
Christoph Hellwig | 57292b5 | 2017-01-31 16:57:29 +0100 | [diff] [blame] | 269 | } |
| 270 | |
Ming Lei | 14cb0dc | 2017-12-18 15:40:43 +0800 | [diff] [blame] | 271 | static inline bool bio_is_passthrough(struct bio *bio) |
| 272 | { |
| 273 | unsigned op = bio_op(bio); |
| 274 | |
| 275 | return blk_op_is_scsi(op) || blk_op_is_private(op); |
| 276 | } |
| 277 | |
Fernando Luis Vázquez Cao | 766ca44 | 2008-08-14 09:59:13 +0200 | [diff] [blame] | 278 | static inline unsigned short req_get_ioprio(struct request *req) |
| 279 | { |
| 280 | return req->ioprio; |
| 281 | } |
| 282 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | #include <linux/elevator.h> |
| 284 | |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 285 | struct blk_queue_ctx; |
| 286 | |
Jens Axboe | dece163 | 2015-11-05 10:41:16 -0700 | [diff] [blame] | 287 | typedef blk_qc_t (make_request_fn) (struct request_queue *q, struct bio *bio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | |
| 289 | struct bio_vec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | |
Jens Axboe | 242f9dc | 2008-09-14 05:55:09 -0700 | [diff] [blame] | 291 | enum blk_eh_timer_return { |
Christoph Hellwig | 88b0cfa | 2018-05-29 15:52:38 +0200 | [diff] [blame] | 292 | BLK_EH_DONE, /* drivers has completed the command */ |
| 293 | BLK_EH_RESET_TIMER, /* reset timer and try again */ |
Jens Axboe | 242f9dc | 2008-09-14 05:55:09 -0700 | [diff] [blame] | 294 | }; |
| 295 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | enum blk_queue_state { |
| 297 | Queue_down, |
| 298 | Queue_up, |
| 299 | }; |
| 300 | |
Shaohua Li | ee1b6f7 | 2015-01-15 17:32:25 -0800 | [diff] [blame] | 301 | #define BLK_TAG_ALLOC_FIFO 0 /* allocate starting from 0 */ |
| 302 | #define BLK_TAG_ALLOC_RR 1 /* allocate starting from last allocated tag */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | |
FUJITA Tomonori | abf5439 | 2008-08-16 14:10:05 +0900 | [diff] [blame] | 304 | #define BLK_SCSI_MAX_CMDS (256) |
| 305 | #define BLK_SCSI_CMD_PER_LONG (BLK_SCSI_MAX_CMDS / (sizeof(long) * 8)) |
| 306 | |
Damien Le Moal | 797476b | 2016-10-18 15:40:29 +0900 | [diff] [blame] | 307 | /* |
| 308 | * Zoned block device models (zoned limit). |
| 309 | */ |
| 310 | enum blk_zoned_model { |
| 311 | BLK_ZONED_NONE, /* Regular block device */ |
| 312 | BLK_ZONED_HA, /* Host-aware zoned block device */ |
| 313 | BLK_ZONED_HM, /* Host-managed zoned block device */ |
| 314 | }; |
| 315 | |
Martin K. Petersen | 025146e | 2009-05-22 17:17:51 -0400 | [diff] [blame] | 316 | struct queue_limits { |
| 317 | unsigned long bounce_pfn; |
| 318 | unsigned long seg_boundary_mask; |
Keith Busch | 03100aa | 2015-08-19 14:24:05 -0700 | [diff] [blame] | 319 | unsigned long virt_boundary_mask; |
Martin K. Petersen | 025146e | 2009-05-22 17:17:51 -0400 | [diff] [blame] | 320 | |
| 321 | unsigned int max_hw_sectors; |
Martin K. Petersen | ca369d5 | 2015-11-13 16:46:48 -0500 | [diff] [blame] | 322 | unsigned int max_dev_sectors; |
Jens Axboe | 762380a | 2014-06-05 13:38:39 -0600 | [diff] [blame] | 323 | unsigned int chunk_sectors; |
Martin K. Petersen | 025146e | 2009-05-22 17:17:51 -0400 | [diff] [blame] | 324 | unsigned int max_sectors; |
| 325 | unsigned int max_segment_size; |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 326 | unsigned int physical_block_size; |
Mikulas Patocka | ad6bf88 | 2020-01-15 08:35:25 -0500 | [diff] [blame] | 327 | unsigned int logical_block_size; |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 328 | unsigned int alignment_offset; |
| 329 | unsigned int io_min; |
| 330 | unsigned int io_opt; |
Christoph Hellwig | 67efc92 | 2009-09-30 13:54:20 +0200 | [diff] [blame] | 331 | unsigned int max_discard_sectors; |
Jens Axboe | 0034af0 | 2015-07-16 09:14:26 -0600 | [diff] [blame] | 332 | unsigned int max_hw_discard_sectors; |
Martin K. Petersen | 4363ac7 | 2012-09-18 12:19:27 -0400 | [diff] [blame] | 333 | unsigned int max_write_same_sectors; |
Chaitanya Kulkarni | a6f0788 | 2016-11-30 12:28:59 -0800 | [diff] [blame] | 334 | unsigned int max_write_zeroes_sectors; |
Keith Busch | 0512a75 | 2020-05-12 17:55:47 +0900 | [diff] [blame] | 335 | unsigned int max_zone_append_sectors; |
Martin K. Petersen | 86b3728 | 2009-11-10 11:50:21 +0100 | [diff] [blame] | 336 | unsigned int discard_granularity; |
| 337 | unsigned int discard_alignment; |
Martin K. Petersen | 025146e | 2009-05-22 17:17:51 -0400 | [diff] [blame] | 338 | |
Martin K. Petersen | 8a78362 | 2010-02-26 00:20:39 -0500 | [diff] [blame] | 339 | unsigned short max_segments; |
Martin K. Petersen | 13f05c8 | 2010-09-10 20:50:10 +0200 | [diff] [blame] | 340 | unsigned short max_integrity_segments; |
Christoph Hellwig | 1e73973 | 2017-02-08 14:46:49 +0100 | [diff] [blame] | 341 | unsigned short max_discard_segments; |
Martin K. Petersen | 025146e | 2009-05-22 17:17:51 -0400 | [diff] [blame] | 342 | |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 343 | unsigned char misaligned; |
Martin K. Petersen | 86b3728 | 2009-11-10 11:50:21 +0100 | [diff] [blame] | 344 | unsigned char discard_misaligned; |
Kent Overstreet | c78afc6 | 2013-07-11 22:39:53 -0700 | [diff] [blame] | 345 | unsigned char raid_partial_stripes_expensive; |
Damien Le Moal | 797476b | 2016-10-18 15:40:29 +0900 | [diff] [blame] | 346 | enum blk_zoned_model zoned; |
Martin K. Petersen | 025146e | 2009-05-22 17:17:51 -0400 | [diff] [blame] | 347 | }; |
| 348 | |
Christoph Hellwig | d410035 | 2019-11-11 11:39:30 +0900 | [diff] [blame] | 349 | typedef int (*report_zones_cb)(struct blk_zone *zone, unsigned int idx, |
| 350 | void *data); |
| 351 | |
Hannes Reinecke | 6a0cb1b | 2016-10-18 15:40:33 +0900 | [diff] [blame] | 352 | #ifdef CONFIG_BLK_DEV_ZONED |
| 353 | |
Christoph Hellwig | d410035 | 2019-11-11 11:39:30 +0900 | [diff] [blame] | 354 | #define BLK_ALL_ZONES ((unsigned int)-1) |
| 355 | int blkdev_report_zones(struct block_device *bdev, sector_t sector, |
| 356 | unsigned int nr_zones, report_zones_cb cb, void *data); |
Christoph Hellwig | 9b38bb4 | 2019-12-03 10:39:04 +0100 | [diff] [blame] | 357 | unsigned int blkdev_nr_zones(struct gendisk *disk); |
Ajay Joshi | 6c1b1da | 2019-10-27 23:05:45 +0900 | [diff] [blame] | 358 | extern int blkdev_zone_mgmt(struct block_device *bdev, enum req_opf op, |
| 359 | sector_t sectors, sector_t nr_sectors, |
| 360 | gfp_t gfp_mask); |
Damien Le Moal | bf50545 | 2018-10-12 19:08:50 +0900 | [diff] [blame] | 361 | extern int blk_revalidate_disk_zones(struct gendisk *disk); |
Hannes Reinecke | 6a0cb1b | 2016-10-18 15:40:33 +0900 | [diff] [blame] | 362 | |
Shaun Tancheff | 3ed05a9 | 2016-10-18 15:40:35 +0900 | [diff] [blame] | 363 | extern int blkdev_report_zones_ioctl(struct block_device *bdev, fmode_t mode, |
| 364 | unsigned int cmd, unsigned long arg); |
Ajay Joshi | e876df1 | 2019-10-27 23:05:46 +0900 | [diff] [blame] | 365 | extern int blkdev_zone_mgmt_ioctl(struct block_device *bdev, fmode_t mode, |
| 366 | unsigned int cmd, unsigned long arg); |
Shaun Tancheff | 3ed05a9 | 2016-10-18 15:40:35 +0900 | [diff] [blame] | 367 | |
| 368 | #else /* CONFIG_BLK_DEV_ZONED */ |
| 369 | |
Christoph Hellwig | 9b38bb4 | 2019-12-03 10:39:04 +0100 | [diff] [blame] | 370 | static inline unsigned int blkdev_nr_zones(struct gendisk *disk) |
Damien Le Moal | a91e138 | 2018-10-12 19:08:43 +0900 | [diff] [blame] | 371 | { |
| 372 | return 0; |
| 373 | } |
Damien Le Moal | bf50545 | 2018-10-12 19:08:50 +0900 | [diff] [blame] | 374 | |
Shaun Tancheff | 3ed05a9 | 2016-10-18 15:40:35 +0900 | [diff] [blame] | 375 | static inline int blkdev_report_zones_ioctl(struct block_device *bdev, |
| 376 | fmode_t mode, unsigned int cmd, |
| 377 | unsigned long arg) |
| 378 | { |
| 379 | return -ENOTTY; |
| 380 | } |
| 381 | |
Ajay Joshi | e876df1 | 2019-10-27 23:05:46 +0900 | [diff] [blame] | 382 | static inline int blkdev_zone_mgmt_ioctl(struct block_device *bdev, |
| 383 | fmode_t mode, unsigned int cmd, |
| 384 | unsigned long arg) |
Shaun Tancheff | 3ed05a9 | 2016-10-18 15:40:35 +0900 | [diff] [blame] | 385 | { |
| 386 | return -ENOTTY; |
| 387 | } |
| 388 | |
Hannes Reinecke | 6a0cb1b | 2016-10-18 15:40:33 +0900 | [diff] [blame] | 389 | #endif /* CONFIG_BLK_DEV_ZONED */ |
| 390 | |
Richard Kennedy | d7b7630 | 2011-07-13 21:17:23 +0200 | [diff] [blame] | 391 | struct request_queue { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | struct request *last_merge; |
Jens Axboe | b374d18 | 2008-10-31 10:05:07 +0100 | [diff] [blame] | 393 | struct elevator_queue *elevator; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | |
Omar Sandoval | 34dbad5 | 2017-03-21 08:56:08 -0700 | [diff] [blame] | 395 | struct blk_queue_stats *stats; |
Josef Bacik | a790504 | 2018-07-03 09:32:35 -0600 | [diff] [blame] | 396 | struct rq_qos *rq_qos; |
Jens Axboe | 87760e5 | 2016-11-09 12:38:14 -0700 | [diff] [blame] | 397 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | make_request_fn *make_request_fn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | |
Jens Axboe | f8a5b12 | 2016-12-13 09:24:51 -0700 | [diff] [blame] | 400 | const struct blk_mq_ops *mq_ops; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 401 | |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 402 | /* sw queues */ |
Ming Lei | e6cdb09 | 2014-06-03 11:24:06 +0800 | [diff] [blame] | 403 | struct blk_mq_ctx __percpu *queue_ctx; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 404 | |
Jens Axboe | d278d4a | 2016-03-30 10:21:08 -0600 | [diff] [blame] | 405 | unsigned int queue_depth; |
| 406 | |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 407 | /* hw dispatch queues */ |
| 408 | struct blk_mq_hw_ctx **queue_hw_ctx; |
| 409 | unsigned int nr_hw_queues; |
| 410 | |
Jan Kara | dc3b17c | 2017-02-02 15:56:50 +0100 | [diff] [blame] | 411 | struct backing_dev_info *backing_dev_info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | |
| 413 | /* |
| 414 | * The queue owner gets to use this for whatever they like. |
| 415 | * ll_rw_blk doesn't touch it. |
| 416 | */ |
| 417 | void *queuedata; |
| 418 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | * various queue flags, see QUEUE_* below |
| 421 | */ |
| 422 | unsigned long queue_flags; |
Bart Van Assche | cd84a62 | 2018-09-26 14:01:04 -0700 | [diff] [blame] | 423 | /* |
| 424 | * Number of contexts that have called blk_set_pm_only(). If this |
| 425 | * counter is above zero then only RQF_PM and RQF_PREEMPT requests are |
| 426 | * processed. |
| 427 | */ |
| 428 | atomic_t pm_only; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | |
| 430 | /* |
Tejun Heo | a73f730 | 2011-12-14 00:33:37 +0100 | [diff] [blame] | 431 | * ida allocated id for this queue. Used to index queues from |
| 432 | * ioctx. |
| 433 | */ |
| 434 | int id; |
| 435 | |
| 436 | /* |
Richard Kennedy | d7b7630 | 2011-07-13 21:17:23 +0200 | [diff] [blame] | 437 | * queue needs bounce pages for pages above this limit |
| 438 | */ |
| 439 | gfp_t bounce_gfp; |
| 440 | |
Christoph Hellwig | 0d945c1 | 2018-11-15 12:17:28 -0700 | [diff] [blame] | 441 | spinlock_t queue_lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | |
| 443 | /* |
| 444 | * queue kobject |
| 445 | */ |
| 446 | struct kobject kobj; |
| 447 | |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 448 | /* |
| 449 | * mq queue kobject |
| 450 | */ |
Ming Lei | 1db4909 | 2018-11-20 09:44:35 +0800 | [diff] [blame] | 451 | struct kobject *mq_kobj; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 452 | |
Dan Williams | ac6fc48 | 2015-10-21 13:20:18 -0400 | [diff] [blame] | 453 | #ifdef CONFIG_BLK_DEV_INTEGRITY |
| 454 | struct blk_integrity integrity; |
| 455 | #endif /* CONFIG_BLK_DEV_INTEGRITY */ |
| 456 | |
Rafael J. Wysocki | 47fafbc | 2014-12-04 01:00:23 +0100 | [diff] [blame] | 457 | #ifdef CONFIG_PM |
Lin Ming | 6c95466 | 2013-03-23 11:42:26 +0800 | [diff] [blame] | 458 | struct device *dev; |
| 459 | int rpm_status; |
| 460 | unsigned int nr_pending; |
| 461 | #endif |
| 462 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | /* |
| 464 | * queue settings |
| 465 | */ |
| 466 | unsigned long nr_requests; /* Max # of requests */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 467 | |
Tejun Heo | e3790c7 | 2008-03-04 11:18:17 +0100 | [diff] [blame] | 468 | unsigned int dma_pad_mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | unsigned int dma_alignment; |
| 470 | |
Jens Axboe | 242f9dc | 2008-09-14 05:55:09 -0700 | [diff] [blame] | 471 | unsigned int rq_timeout; |
Jens Axboe | 64f1c21 | 2016-11-14 13:03:03 -0700 | [diff] [blame] | 472 | int poll_nsec; |
Omar Sandoval | 34dbad5 | 2017-03-21 08:56:08 -0700 | [diff] [blame] | 473 | |
| 474 | struct blk_stat_callback *poll_cb; |
Stephen Bates | 0206319 | 2017-04-20 16:59:11 -0600 | [diff] [blame] | 475 | struct blk_rq_stat poll_stat[BLK_MQ_POLL_STATS_BKTS]; |
Omar Sandoval | 34dbad5 | 2017-03-21 08:56:08 -0700 | [diff] [blame] | 476 | |
Jens Axboe | 242f9dc | 2008-09-14 05:55:09 -0700 | [diff] [blame] | 477 | struct timer_list timeout; |
Christoph Hellwig | 287922e | 2015-10-30 20:57:30 +0800 | [diff] [blame] | 478 | struct work_struct timeout_work; |
Jens Axboe | 242f9dc | 2008-09-14 05:55:09 -0700 | [diff] [blame] | 479 | |
Tejun Heo | a612fdd | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 480 | struct list_head icq_list; |
Tejun Heo | 4eef304 | 2012-03-05 13:15:18 -0800 | [diff] [blame] | 481 | #ifdef CONFIG_BLK_CGROUP |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 482 | DECLARE_BITMAP (blkcg_pols, BLKCG_MAX_POLS); |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame] | 483 | struct blkcg_gq *root_blkg; |
Tejun Heo | 03aa264 | 2012-03-05 13:15:19 -0800 | [diff] [blame] | 484 | struct list_head blkg_list; |
Tejun Heo | 4eef304 | 2012-03-05 13:15:18 -0800 | [diff] [blame] | 485 | #endif |
Tejun Heo | a612fdd | 2011-12-14 00:33:41 +0100 | [diff] [blame] | 486 | |
Martin K. Petersen | 025146e | 2009-05-22 17:17:51 -0400 | [diff] [blame] | 487 | struct queue_limits limits; |
| 488 | |
Damien Le Moal | 68c43f1 | 2019-09-05 18:51:31 +0900 | [diff] [blame] | 489 | unsigned int required_elevator_features; |
| 490 | |
Bart Van Assche | 6a5ac98 | 2018-06-15 14:55:21 -0700 | [diff] [blame] | 491 | #ifdef CONFIG_BLK_DEV_ZONED |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | /* |
Christoph Hellwig | 6cc77e9 | 2017-12-21 15:43:38 +0900 | [diff] [blame] | 493 | * Zoned block device information for request dispatch control. |
| 494 | * nr_zones is the total number of zones of the device. This is always |
Christoph Hellwig | f216fdd | 2019-12-03 10:39:05 +0100 | [diff] [blame] | 495 | * 0 for regular block devices. conv_zones_bitmap is a bitmap of nr_zones |
| 496 | * bits which indicates if a zone is conventional (bit set) or |
| 497 | * sequential (bit clear). seq_zones_wlock is a bitmap of nr_zones |
Christoph Hellwig | 6cc77e9 | 2017-12-21 15:43:38 +0900 | [diff] [blame] | 498 | * bits which indicates if a zone is write locked, that is, if a write |
| 499 | * request targeting the zone was dispatched. All three fields are |
| 500 | * initialized by the low level device driver (e.g. scsi/sd.c). |
| 501 | * Stacking drivers (device mappers) may or may not initialize |
| 502 | * these fields. |
Bart Van Assche | ccce20f | 2018-04-16 18:04:41 -0700 | [diff] [blame] | 503 | * |
| 504 | * Reads of this information must be protected with blk_queue_enter() / |
| 505 | * blk_queue_exit(). Modifying this information is only allowed while |
| 506 | * no requests are being processed. See also blk_mq_freeze_queue() and |
| 507 | * blk_mq_unfreeze_queue(). |
Christoph Hellwig | 6cc77e9 | 2017-12-21 15:43:38 +0900 | [diff] [blame] | 508 | */ |
| 509 | unsigned int nr_zones; |
Christoph Hellwig | f216fdd | 2019-12-03 10:39:05 +0100 | [diff] [blame] | 510 | unsigned long *conv_zones_bitmap; |
Christoph Hellwig | 6cc77e9 | 2017-12-21 15:43:38 +0900 | [diff] [blame] | 511 | unsigned long *seq_zones_wlock; |
Bart Van Assche | 6a5ac98 | 2018-06-15 14:55:21 -0700 | [diff] [blame] | 512 | #endif /* CONFIG_BLK_DEV_ZONED */ |
Christoph Hellwig | 6cc77e9 | 2017-12-21 15:43:38 +0900 | [diff] [blame] | 513 | |
| 514 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | * sg stuff |
| 516 | */ |
| 517 | unsigned int sg_timeout; |
| 518 | unsigned int sg_reserved_size; |
Christoph Lameter | 1946089 | 2005-06-23 00:08:19 -0700 | [diff] [blame] | 519 | int node; |
Alexey Dobriyan | 6c5c934 | 2006-09-29 01:59:40 -0700 | [diff] [blame] | 520 | #ifdef CONFIG_BLK_DEV_IO_TRACE |
Jan Kara | c780e86 | 2020-02-06 15:28:12 +0100 | [diff] [blame] | 521 | struct blk_trace __rcu *blk_trace; |
Waiman Long | 5acb3cc | 2017-09-20 13:12:20 -0600 | [diff] [blame] | 522 | struct mutex blk_trace_mutex; |
Alexey Dobriyan | 6c5c934 | 2006-09-29 01:59:40 -0700 | [diff] [blame] | 523 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 524 | /* |
Tejun Heo | 4913efe | 2010-09-03 11:56:16 +0200 | [diff] [blame] | 525 | * for flush operations |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | */ |
Ming Lei | 7c94e1c | 2014-09-25 23:23:43 +0800 | [diff] [blame] | 527 | struct blk_flush_queue *fq; |
Al Viro | 483f4af | 2006-03-18 18:34:37 -0500 | [diff] [blame] | 528 | |
Christoph Hellwig | 6fca6a6 | 2014-05-28 08:08:02 -0600 | [diff] [blame] | 529 | struct list_head requeue_list; |
| 530 | spinlock_t requeue_lock; |
Mike Snitzer | 2849450 | 2016-09-14 13:28:30 -0400 | [diff] [blame] | 531 | struct delayed_work requeue_work; |
Christoph Hellwig | 6fca6a6 | 2014-05-28 08:08:02 -0600 | [diff] [blame] | 532 | |
Al Viro | 483f4af | 2006-03-18 18:34:37 -0500 | [diff] [blame] | 533 | struct mutex sysfs_lock; |
Ming Lei | cecf5d8 | 2019-08-27 19:01:48 +0800 | [diff] [blame] | 534 | struct mutex sysfs_dir_lock; |
FUJITA Tomonori | d351af0 | 2007-07-09 12:40:35 +0200 | [diff] [blame] | 535 | |
Ming Lei | 2f8f133 | 2019-04-30 09:52:27 +0800 | [diff] [blame] | 536 | /* |
| 537 | * for reusing dead hctx instance in case of updating |
| 538 | * nr_hw_queues |
| 539 | */ |
| 540 | struct list_head unused_hctx_list; |
| 541 | spinlock_t unused_hctx_lock; |
| 542 | |
Bob Liu | 7996a8b | 2019-05-21 11:25:55 +0800 | [diff] [blame] | 543 | int mq_freeze_depth; |
Tejun Heo | d732580 | 2012-03-05 13:14:58 -0800 | [diff] [blame] | 544 | |
FUJITA Tomonori | d351af0 | 2007-07-09 12:40:35 +0200 | [diff] [blame] | 545 | #if defined(CONFIG_BLK_DEV_BSG) |
| 546 | struct bsg_class_device bsg_dev; |
| 547 | #endif |
Vivek Goyal | e43473b | 2010-09-15 17:06:35 -0400 | [diff] [blame] | 548 | |
| 549 | #ifdef CONFIG_BLK_DEV_THROTTLING |
| 550 | /* Throttle data */ |
| 551 | struct throtl_data *td; |
| 552 | #endif |
Tejun Heo | 548bc8e | 2013-01-09 08:05:13 -0800 | [diff] [blame] | 553 | struct rcu_head rcu_head; |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 554 | wait_queue_head_t mq_freeze_wq; |
Bob Liu | 7996a8b | 2019-05-21 11:25:55 +0800 | [diff] [blame] | 555 | /* |
| 556 | * Protect concurrent access to q_usage_counter by |
| 557 | * percpu_ref_kill() and percpu_ref_reinit(). |
| 558 | */ |
| 559 | struct mutex mq_freeze_lock; |
Dan Williams | 3ef28e8 | 2015-10-21 13:20:12 -0400 | [diff] [blame] | 560 | struct percpu_ref q_usage_counter; |
Jens Axboe | 0d2602c | 2014-05-13 15:10:52 -0600 | [diff] [blame] | 561 | |
| 562 | struct blk_mq_tag_set *tag_set; |
| 563 | struct list_head tag_set_list; |
Kent Overstreet | 338aa96 | 2018-05-20 18:25:47 -0400 | [diff] [blame] | 564 | struct bio_set bio_split; |
Akinobu Mita | 4593fdb | 2015-09-27 02:09:20 +0900 | [diff] [blame] | 565 | |
Omar Sandoval | 03796c1 | 2017-01-31 14:53:18 -0800 | [diff] [blame] | 566 | #ifdef CONFIG_BLK_DEBUG_FS |
Omar Sandoval | 07e4fea | 2017-01-25 08:06:40 -0800 | [diff] [blame] | 567 | struct dentry *debugfs_dir; |
Omar Sandoval | d332ce0 | 2017-05-04 08:24:40 -0600 | [diff] [blame] | 568 | struct dentry *sched_debugfs_dir; |
Ming Lei | cc56694 | 2018-12-17 09:46:00 +0800 | [diff] [blame] | 569 | struct dentry *rqos_debugfs_dir; |
Omar Sandoval | 07e4fea | 2017-01-25 08:06:40 -0800 | [diff] [blame] | 570 | #endif |
| 571 | |
Akinobu Mita | 4593fdb | 2015-09-27 02:09:20 +0900 | [diff] [blame] | 572 | bool mq_sysfs_init_done; |
Christoph Hellwig | 6d247d7 | 2017-01-27 09:51:45 -0700 | [diff] [blame] | 573 | |
| 574 | size_t cmd_size; |
Bart Van Assche | dc9edc4 | 2017-06-14 13:27:50 -0600 | [diff] [blame] | 575 | |
| 576 | struct work_struct release_work; |
Jens Axboe | f793dfd | 2017-06-26 08:15:27 -0600 | [diff] [blame] | 577 | |
| 578 | #define BLK_MAX_WRITE_HINTS 5 |
| 579 | u64 write_hints[BLK_MAX_WRITE_HINTS]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | }; |
| 581 | |
Jens Axboe | eca7abf | 2019-02-09 15:42:07 -0700 | [diff] [blame] | 582 | #define QUEUE_FLAG_STOPPED 0 /* queue is stopped */ |
| 583 | #define QUEUE_FLAG_DYING 1 /* queue being torn down */ |
Jens Axboe | eca7abf | 2019-02-09 15:42:07 -0700 | [diff] [blame] | 584 | #define QUEUE_FLAG_NOMERGES 3 /* disable merge attempts */ |
| 585 | #define QUEUE_FLAG_SAME_COMP 4 /* complete on same CPU-group */ |
| 586 | #define QUEUE_FLAG_FAIL_IO 5 /* fake timeout */ |
| 587 | #define QUEUE_FLAG_NONROT 6 /* non-rotational device (SSD) */ |
| 588 | #define QUEUE_FLAG_VIRT QUEUE_FLAG_NONROT /* paravirt device */ |
| 589 | #define QUEUE_FLAG_IO_STAT 7 /* do disk/partitions IO accounting */ |
| 590 | #define QUEUE_FLAG_DISCARD 8 /* supports DISCARD */ |
| 591 | #define QUEUE_FLAG_NOXMERGES 9 /* No extended merges */ |
| 592 | #define QUEUE_FLAG_ADD_RANDOM 10 /* Contributes to random pool */ |
| 593 | #define QUEUE_FLAG_SECERASE 11 /* supports secure erase */ |
| 594 | #define QUEUE_FLAG_SAME_FORCE 12 /* force complete on same CPU */ |
| 595 | #define QUEUE_FLAG_DEAD 13 /* queue tear-down finished */ |
| 596 | #define QUEUE_FLAG_INIT_DONE 14 /* queue is initialized */ |
Jens Axboe | eca7abf | 2019-02-09 15:42:07 -0700 | [diff] [blame] | 597 | #define QUEUE_FLAG_POLL 16 /* IO polling enabled if set */ |
| 598 | #define QUEUE_FLAG_WC 17 /* Write back caching */ |
| 599 | #define QUEUE_FLAG_FUA 18 /* device supports FUA writes */ |
| 600 | #define QUEUE_FLAG_DAX 19 /* device supports DAX */ |
| 601 | #define QUEUE_FLAG_STATS 20 /* track IO start and completion times */ |
| 602 | #define QUEUE_FLAG_POLL_STATS 21 /* collecting stats for hybrid polling */ |
| 603 | #define QUEUE_FLAG_REGISTERED 22 /* queue has been registered to a disk */ |
| 604 | #define QUEUE_FLAG_SCSI_PASSTHROUGH 23 /* queue supports SCSI commands */ |
| 605 | #define QUEUE_FLAG_QUIESCED 24 /* queue has been quiesced */ |
| 606 | #define QUEUE_FLAG_PCI_P2PDMA 25 /* device supports PCI p2p requests */ |
Chaitanya Kulkarni | e84e8f0 | 2019-08-01 10:26:35 -0700 | [diff] [blame] | 607 | #define QUEUE_FLAG_ZONE_RESETALL 26 /* supports Zone Reset All */ |
Tejun Heo | 6f816b4 | 2019-08-28 15:05:57 -0700 | [diff] [blame] | 608 | #define QUEUE_FLAG_RQ_ALLOC_TIME 27 /* record rq->alloc_time_ns */ |
Tejun Heo | 797e7db | 2006-01-06 09:51:03 +0100 | [diff] [blame] | 609 | |
Jens Axboe | 94eddfb | 2013-11-19 09:25:07 -0700 | [diff] [blame] | 610 | #define QUEUE_FLAG_MQ_DEFAULT ((1 << QUEUE_FLAG_IO_STAT) | \ |
Jens Axboe | 6e0de61 | 2018-12-05 06:50:40 -0700 | [diff] [blame] | 611 | (1 << QUEUE_FLAG_SAME_COMP)) |
Jens Axboe | 94eddfb | 2013-11-19 09:25:07 -0700 | [diff] [blame] | 612 | |
Bart Van Assche | 8814ce8 | 2018-03-07 17:10:04 -0800 | [diff] [blame] | 613 | void blk_queue_flag_set(unsigned int flag, struct request_queue *q); |
| 614 | void blk_queue_flag_clear(unsigned int flag, struct request_queue *q); |
| 615 | bool blk_queue_flag_test_and_set(unsigned int flag, struct request_queue *q); |
Bart Van Assche | 8814ce8 | 2018-03-07 17:10:04 -0800 | [diff] [blame] | 616 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | #define blk_queue_stopped(q) test_bit(QUEUE_FLAG_STOPPED, &(q)->queue_flags) |
Bart Van Assche | 3f3299d | 2012-11-28 13:42:38 +0100 | [diff] [blame] | 618 | #define blk_queue_dying(q) test_bit(QUEUE_FLAG_DYING, &(q)->queue_flags) |
Bart Van Assche | c246e80 | 2012-12-06 14:32:01 +0100 | [diff] [blame] | 619 | #define blk_queue_dead(q) test_bit(QUEUE_FLAG_DEAD, &(q)->queue_flags) |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 620 | #define blk_queue_init_done(q) test_bit(QUEUE_FLAG_INIT_DONE, &(q)->queue_flags) |
Alan D. Brunelle | ac9fafa | 2008-04-29 14:44:19 +0200 | [diff] [blame] | 621 | #define blk_queue_nomerges(q) test_bit(QUEUE_FLAG_NOMERGES, &(q)->queue_flags) |
Alan D. Brunelle | 488991e | 2010-01-29 09:04:08 +0100 | [diff] [blame] | 622 | #define blk_queue_noxmerges(q) \ |
| 623 | test_bit(QUEUE_FLAG_NOXMERGES, &(q)->queue_flags) |
Jens Axboe | a68bbddba | 2008-09-24 13:03:33 +0200 | [diff] [blame] | 624 | #define blk_queue_nonrot(q) test_bit(QUEUE_FLAG_NONROT, &(q)->queue_flags) |
Jens Axboe | bc58ba9 | 2009-01-23 10:54:44 +0100 | [diff] [blame] | 625 | #define blk_queue_io_stat(q) test_bit(QUEUE_FLAG_IO_STAT, &(q)->queue_flags) |
Jens Axboe | e2e1a14 | 2010-06-09 10:42:09 +0200 | [diff] [blame] | 626 | #define blk_queue_add_random(q) test_bit(QUEUE_FLAG_ADD_RANDOM, &(q)->queue_flags) |
Christoph Hellwig | c15227d | 2009-09-30 13:52:12 +0200 | [diff] [blame] | 627 | #define blk_queue_discard(q) test_bit(QUEUE_FLAG_DISCARD, &(q)->queue_flags) |
Chaitanya Kulkarni | e84e8f0 | 2019-08-01 10:26:35 -0700 | [diff] [blame] | 628 | #define blk_queue_zone_resetall(q) \ |
| 629 | test_bit(QUEUE_FLAG_ZONE_RESETALL, &(q)->queue_flags) |
Christoph Hellwig | 288dab8 | 2016-06-09 16:00:36 +0200 | [diff] [blame] | 630 | #define blk_queue_secure_erase(q) \ |
| 631 | (test_bit(QUEUE_FLAG_SECERASE, &(q)->queue_flags)) |
Toshi Kani | 163d4ba | 2016-06-23 17:05:50 -0400 | [diff] [blame] | 632 | #define blk_queue_dax(q) test_bit(QUEUE_FLAG_DAX, &(q)->queue_flags) |
Bart Van Assche | 9efc160 | 2017-05-31 14:43:46 -0700 | [diff] [blame] | 633 | #define blk_queue_scsi_passthrough(q) \ |
| 634 | test_bit(QUEUE_FLAG_SCSI_PASSTHROUGH, &(q)->queue_flags) |
Logan Gunthorpe | 49d92c0 | 2018-10-04 15:27:41 -0600 | [diff] [blame] | 635 | #define blk_queue_pci_p2pdma(q) \ |
| 636 | test_bit(QUEUE_FLAG_PCI_P2PDMA, &(q)->queue_flags) |
Tejun Heo | 6f816b4 | 2019-08-28 15:05:57 -0700 | [diff] [blame] | 637 | #ifdef CONFIG_BLK_RQ_ALLOC_TIME |
| 638 | #define blk_queue_rq_alloc_time(q) \ |
| 639 | test_bit(QUEUE_FLAG_RQ_ALLOC_TIME, &(q)->queue_flags) |
| 640 | #else |
| 641 | #define blk_queue_rq_alloc_time(q) false |
| 642 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | |
Christoph Hellwig | 33659eb | 2010-08-07 18:17:56 +0200 | [diff] [blame] | 644 | #define blk_noretry_request(rq) \ |
| 645 | ((rq)->cmd_flags & (REQ_FAILFAST_DEV|REQ_FAILFAST_TRANSPORT| \ |
| 646 | REQ_FAILFAST_DRIVER)) |
Ming Lei | f4560ff | 2017-06-18 14:24:27 -0600 | [diff] [blame] | 647 | #define blk_queue_quiesced(q) test_bit(QUEUE_FLAG_QUIESCED, &(q)->queue_flags) |
Bart Van Assche | cd84a62 | 2018-09-26 14:01:04 -0700 | [diff] [blame] | 648 | #define blk_queue_pm_only(q) atomic_read(&(q)->pm_only) |
Dave Chinner | 0ce9144 | 2018-04-18 14:08:27 +1000 | [diff] [blame] | 649 | #define blk_queue_fua(q) test_bit(QUEUE_FLAG_FUA, &(q)->queue_flags) |
Ming Lei | 58c898b | 2019-08-27 19:01:47 +0800 | [diff] [blame] | 650 | #define blk_queue_registered(q) test_bit(QUEUE_FLAG_REGISTERED, &(q)->queue_flags) |
Bart Van Assche | c9254f2 | 2017-11-09 10:49:57 -0800 | [diff] [blame] | 651 | |
Bart Van Assche | cd84a62 | 2018-09-26 14:01:04 -0700 | [diff] [blame] | 652 | extern void blk_set_pm_only(struct request_queue *q); |
| 653 | extern void blk_clear_pm_only(struct request_queue *q); |
Jens Axboe | 4aff5e2 | 2006-08-10 08:44:47 +0200 | [diff] [blame] | 654 | |
Christoph Hellwig | 57292b5 | 2017-01-31 16:57:29 +0100 | [diff] [blame] | 655 | static inline bool blk_account_rq(struct request *rq) |
| 656 | { |
| 657 | return (rq->rq_flags & RQF_STARTED) && !blk_rq_is_passthrough(rq); |
| 658 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | #define list_entry_rq(ptr) list_entry((ptr), struct request, queuelist) |
| 661 | |
Mike Christie | 4e1b2d52 | 2016-06-05 14:32:22 -0500 | [diff] [blame] | 662 | #define rq_data_dir(rq) (op_is_write(req_op(rq)) ? WRITE : READ) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | |
Christoph Hellwig | 9d9de53 | 2019-03-03 08:18:30 -0700 | [diff] [blame] | 664 | #define rq_dma_dir(rq) \ |
| 665 | (op_is_write(req_op(rq)) ? DMA_TO_DEVICE : DMA_FROM_DEVICE) |
| 666 | |
Christoph Hellwig | 3ab3a03 | 2019-03-03 08:40:36 -0700 | [diff] [blame] | 667 | #define dma_map_bvec(dev, bv, dir, attrs) \ |
| 668 | dma_map_page_attrs(dev, (bv)->bv_page, (bv)->bv_offset, (bv)->bv_len, \ |
| 669 | (dir), (attrs)) |
| 670 | |
Jens Axboe | 344e9ff | 2018-11-15 12:22:51 -0700 | [diff] [blame] | 671 | static inline bool queue_is_mq(struct request_queue *q) |
Jens Axboe | 49fd524 | 2014-04-16 10:57:18 -0600 | [diff] [blame] | 672 | { |
Jens Axboe | a1ce35f | 2018-10-29 10:23:51 -0600 | [diff] [blame] | 673 | return q->mq_ops; |
Jens Axboe | 49fd524 | 2014-04-16 10:57:18 -0600 | [diff] [blame] | 674 | } |
| 675 | |
Damien Le Moal | 797476b | 2016-10-18 15:40:29 +0900 | [diff] [blame] | 676 | static inline enum blk_zoned_model |
| 677 | blk_queue_zoned_model(struct request_queue *q) |
| 678 | { |
| 679 | return q->limits.zoned; |
| 680 | } |
| 681 | |
| 682 | static inline bool blk_queue_is_zoned(struct request_queue *q) |
| 683 | { |
| 684 | switch (blk_queue_zoned_model(q)) { |
| 685 | case BLK_ZONED_HA: |
| 686 | case BLK_ZONED_HM: |
| 687 | return true; |
| 688 | default: |
| 689 | return false; |
| 690 | } |
| 691 | } |
| 692 | |
Damien Le Moal | 113ab72 | 2019-07-10 13:53:10 +0900 | [diff] [blame] | 693 | static inline sector_t blk_queue_zone_sectors(struct request_queue *q) |
Hannes Reinecke | 6a0cb1b | 2016-10-18 15:40:33 +0900 | [diff] [blame] | 694 | { |
| 695 | return blk_queue_is_zoned(q) ? q->limits.chunk_sectors : 0; |
| 696 | } |
| 697 | |
Bart Van Assche | 6a5ac98 | 2018-06-15 14:55:21 -0700 | [diff] [blame] | 698 | #ifdef CONFIG_BLK_DEV_ZONED |
Damien Le Moal | 965b652 | 2018-10-12 19:08:48 +0900 | [diff] [blame] | 699 | static inline unsigned int blk_queue_nr_zones(struct request_queue *q) |
| 700 | { |
| 701 | return blk_queue_is_zoned(q) ? q->nr_zones : 0; |
| 702 | } |
| 703 | |
Christoph Hellwig | 6cc77e9 | 2017-12-21 15:43:38 +0900 | [diff] [blame] | 704 | static inline unsigned int blk_queue_zone_no(struct request_queue *q, |
| 705 | sector_t sector) |
| 706 | { |
| 707 | if (!blk_queue_is_zoned(q)) |
| 708 | return 0; |
| 709 | return sector >> ilog2(q->limits.chunk_sectors); |
| 710 | } |
| 711 | |
| 712 | static inline bool blk_queue_zone_is_seq(struct request_queue *q, |
| 713 | sector_t sector) |
| 714 | { |
Christoph Hellwig | f216fdd | 2019-12-03 10:39:05 +0100 | [diff] [blame] | 715 | if (!blk_queue_is_zoned(q)) |
Christoph Hellwig | 6cc77e9 | 2017-12-21 15:43:38 +0900 | [diff] [blame] | 716 | return false; |
Christoph Hellwig | f216fdd | 2019-12-03 10:39:05 +0100 | [diff] [blame] | 717 | if (!q->conv_zones_bitmap) |
| 718 | return true; |
| 719 | return !test_bit(blk_queue_zone_no(q, sector), q->conv_zones_bitmap); |
Christoph Hellwig | 6cc77e9 | 2017-12-21 15:43:38 +0900 | [diff] [blame] | 720 | } |
Damien Le Moal | 965b652 | 2018-10-12 19:08:48 +0900 | [diff] [blame] | 721 | #else /* CONFIG_BLK_DEV_ZONED */ |
| 722 | static inline unsigned int blk_queue_nr_zones(struct request_queue *q) |
| 723 | { |
| 724 | return 0; |
| 725 | } |
Johannes Thumshirn | 02992df8 | 2020-05-12 17:55:45 +0900 | [diff] [blame] | 726 | static inline bool blk_queue_zone_is_seq(struct request_queue *q, |
| 727 | sector_t sector) |
| 728 | { |
| 729 | return false; |
| 730 | } |
| 731 | static inline unsigned int blk_queue_zone_no(struct request_queue *q, |
| 732 | sector_t sector) |
| 733 | { |
| 734 | return 0; |
| 735 | } |
Bart Van Assche | 6a5ac98 | 2018-06-15 14:55:21 -0700 | [diff] [blame] | 736 | #endif /* CONFIG_BLK_DEV_ZONED */ |
Christoph Hellwig | 6cc77e9 | 2017-12-21 15:43:38 +0900 | [diff] [blame] | 737 | |
Jens Axboe | 1faa16d | 2009-04-06 14:48:01 +0200 | [diff] [blame] | 738 | static inline bool rq_is_sync(struct request *rq) |
| 739 | { |
Christoph Hellwig | ef295ec | 2016-10-28 08:48:16 -0600 | [diff] [blame] | 740 | return op_is_sync(rq->cmd_flags); |
Jens Axboe | 1faa16d | 2009-04-06 14:48:01 +0200 | [diff] [blame] | 741 | } |
| 742 | |
Martin K. Petersen | e2a60da | 2012-09-18 12:19:25 -0400 | [diff] [blame] | 743 | static inline bool rq_mergeable(struct request *rq) |
| 744 | { |
Christoph Hellwig | 57292b5 | 2017-01-31 16:57:29 +0100 | [diff] [blame] | 745 | if (blk_rq_is_passthrough(rq)) |
Martin K. Petersen | e2a60da | 2012-09-18 12:19:25 -0400 | [diff] [blame] | 746 | return false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | |
Mike Christie | 3a5e02c | 2016-06-05 14:32:23 -0500 | [diff] [blame] | 748 | if (req_op(rq) == REQ_OP_FLUSH) |
| 749 | return false; |
| 750 | |
Chaitanya Kulkarni | a6f0788 | 2016-11-30 12:28:59 -0800 | [diff] [blame] | 751 | if (req_op(rq) == REQ_OP_WRITE_ZEROES) |
| 752 | return false; |
| 753 | |
Keith Busch | 0512a75 | 2020-05-12 17:55:47 +0900 | [diff] [blame] | 754 | if (req_op(rq) == REQ_OP_ZONE_APPEND) |
| 755 | return false; |
| 756 | |
Martin K. Petersen | e2a60da | 2012-09-18 12:19:25 -0400 | [diff] [blame] | 757 | if (rq->cmd_flags & REQ_NOMERGE_FLAGS) |
| 758 | return false; |
Christoph Hellwig | e806402 | 2016-10-20 15:12:13 +0200 | [diff] [blame] | 759 | if (rq->rq_flags & RQF_NOMERGE_FLAGS) |
| 760 | return false; |
Martin K. Petersen | e2a60da | 2012-09-18 12:19:25 -0400 | [diff] [blame] | 761 | |
| 762 | return true; |
| 763 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | |
Martin K. Petersen | 4363ac7 | 2012-09-18 12:19:27 -0400 | [diff] [blame] | 765 | static inline bool blk_write_same_mergeable(struct bio *a, struct bio *b) |
| 766 | { |
Christoph Hellwig | efbeccd | 2017-06-19 09:24:41 +0200 | [diff] [blame] | 767 | if (bio_page(a) == bio_page(b) && |
| 768 | bio_offset(a) == bio_offset(b)) |
Martin K. Petersen | 4363ac7 | 2012-09-18 12:19:27 -0400 | [diff] [blame] | 769 | return true; |
| 770 | |
| 771 | return false; |
| 772 | } |
| 773 | |
Jens Axboe | d278d4a | 2016-03-30 10:21:08 -0600 | [diff] [blame] | 774 | static inline unsigned int blk_queue_depth(struct request_queue *q) |
| 775 | { |
| 776 | if (q->queue_depth) |
| 777 | return q->queue_depth; |
| 778 | |
| 779 | return q->nr_requests; |
| 780 | } |
| 781 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | extern unsigned long blk_max_low_pfn, blk_max_pfn; |
| 783 | |
| 784 | /* |
| 785 | * standard bounce addresses: |
| 786 | * |
| 787 | * BLK_BOUNCE_HIGH : bounce all highmem pages |
| 788 | * BLK_BOUNCE_ANY : don't bounce anything |
| 789 | * BLK_BOUNCE_ISA : bounce pages above ISA DMA boundary |
| 790 | */ |
Andi Kleen | 2472892 | 2008-04-21 09:51:05 +0200 | [diff] [blame] | 791 | |
| 792 | #if BITS_PER_LONG == 32 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | #define BLK_BOUNCE_HIGH ((u64)blk_max_low_pfn << PAGE_SHIFT) |
Andi Kleen | 2472892 | 2008-04-21 09:51:05 +0200 | [diff] [blame] | 794 | #else |
| 795 | #define BLK_BOUNCE_HIGH -1ULL |
| 796 | #endif |
| 797 | #define BLK_BOUNCE_ANY (-1ULL) |
FUJITA Tomonori | bfe1723 | 2010-05-31 15:59:03 +0900 | [diff] [blame] | 798 | #define BLK_BOUNCE_ISA (DMA_BIT_MASK(24)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | |
Jens Axboe | 3d6392c | 2007-07-09 12:38:05 +0200 | [diff] [blame] | 800 | /* |
| 801 | * default timeout for SG_IO if none specified |
| 802 | */ |
| 803 | #define BLK_DEFAULT_SG_TIMEOUT (60 * HZ) |
Linus Torvalds | f2f1fa7 | 2008-12-05 14:49:18 -0800 | [diff] [blame] | 804 | #define BLK_MIN_SG_TIMEOUT (7 * HZ) |
Jens Axboe | 3d6392c | 2007-07-09 12:38:05 +0200 | [diff] [blame] | 805 | |
FUJITA Tomonori | 152e283 | 2008-08-28 16:17:06 +0900 | [diff] [blame] | 806 | struct rq_map_data { |
| 807 | struct page **pages; |
| 808 | int page_order; |
| 809 | int nr_entries; |
FUJITA Tomonori | 56c451f | 2008-12-18 14:49:37 +0900 | [diff] [blame] | 810 | unsigned long offset; |
FUJITA Tomonori | 97ae77a | 2008-12-18 14:49:38 +0900 | [diff] [blame] | 811 | int null_mapped; |
FUJITA Tomonori | ecb554a | 2009-07-09 14:46:53 +0200 | [diff] [blame] | 812 | int from_user; |
FUJITA Tomonori | 152e283 | 2008-08-28 16:17:06 +0900 | [diff] [blame] | 813 | }; |
| 814 | |
NeilBrown | 5705f70 | 2007-09-25 12:35:59 +0200 | [diff] [blame] | 815 | struct req_iterator { |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 816 | struct bvec_iter iter; |
NeilBrown | 5705f70 | 2007-09-25 12:35:59 +0200 | [diff] [blame] | 817 | struct bio *bio; |
| 818 | }; |
| 819 | |
| 820 | /* This should not be used directly - use rq_for_each_segment */ |
Jens Axboe | 1e42807 | 2009-02-23 09:03:10 +0100 | [diff] [blame] | 821 | #define for_each_bio(_bio) \ |
| 822 | for (; _bio; _bio = _bio->bi_next) |
NeilBrown | 5705f70 | 2007-09-25 12:35:59 +0200 | [diff] [blame] | 823 | #define __rq_for_each_bio(_bio, rq) \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | if ((rq->bio)) \ |
| 825 | for (_bio = (rq)->bio; _bio; _bio = _bio->bi_next) |
| 826 | |
NeilBrown | 5705f70 | 2007-09-25 12:35:59 +0200 | [diff] [blame] | 827 | #define rq_for_each_segment(bvl, _rq, _iter) \ |
| 828 | __rq_for_each_bio(_iter.bio, _rq) \ |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 829 | bio_for_each_segment(bvl, _iter.bio, _iter.iter) |
NeilBrown | 5705f70 | 2007-09-25 12:35:59 +0200 | [diff] [blame] | 830 | |
Ming Lei | d18d917 | 2019-02-15 19:13:11 +0800 | [diff] [blame] | 831 | #define rq_for_each_bvec(bvl, _rq, _iter) \ |
| 832 | __rq_for_each_bio(_iter.bio, _rq) \ |
| 833 | bio_for_each_bvec(bvl, _iter.bio, _iter.iter) |
| 834 | |
Kent Overstreet | 4550dd6 | 2013-08-07 14:26:21 -0700 | [diff] [blame] | 835 | #define rq_iter_last(bvec, _iter) \ |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 836 | (_iter.bio->bi_next == NULL && \ |
Kent Overstreet | 4550dd6 | 2013-08-07 14:26:21 -0700 | [diff] [blame] | 837 | bio_iter_last(bvec, _iter.iter)) |
NeilBrown | 5705f70 | 2007-09-25 12:35:59 +0200 | [diff] [blame] | 838 | |
Ilya Loginov | 2d4dc89 | 2009-11-26 09:16:19 +0100 | [diff] [blame] | 839 | #ifndef ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE |
| 840 | # error "You should define ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE for your platform" |
| 841 | #endif |
| 842 | #if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE |
| 843 | extern void rq_flush_dcache_pages(struct request *rq); |
| 844 | #else |
| 845 | static inline void rq_flush_dcache_pages(struct request *rq) |
| 846 | { |
| 847 | } |
| 848 | #endif |
| 849 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | extern int blk_register_queue(struct gendisk *disk); |
| 851 | extern void blk_unregister_queue(struct gendisk *disk); |
Jens Axboe | dece163 | 2015-11-05 10:41:16 -0700 | [diff] [blame] | 852 | extern blk_qc_t generic_make_request(struct bio *bio); |
Christoph Hellwig | f421e1d | 2017-11-02 21:29:50 +0300 | [diff] [blame] | 853 | extern blk_qc_t direct_make_request(struct bio *bio); |
FUJITA Tomonori | 2a4aa30 | 2008-04-29 09:54:36 +0200 | [diff] [blame] | 854 | extern void blk_rq_init(struct request_queue *q, struct request *rq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | extern void blk_put_request(struct request *); |
Bart Van Assche | cd6ce14 | 2017-06-20 11:15:39 -0700 | [diff] [blame] | 856 | extern struct request *blk_get_request(struct request_queue *, unsigned int op, |
Christoph Hellwig | ff005a0 | 2018-05-09 09:54:05 +0200 | [diff] [blame] | 857 | blk_mq_req_flags_t flags); |
Kiyoshi Ueda | ef9e3fa | 2008-10-01 16:12:15 +0200 | [diff] [blame] | 858 | extern int blk_lld_busy(struct request_queue *q); |
Mike Snitzer | 78d8e58 | 2015-06-26 10:01:13 -0400 | [diff] [blame] | 859 | extern int blk_rq_prep_clone(struct request *rq, struct request *rq_src, |
| 860 | struct bio_set *bs, gfp_t gfp_mask, |
| 861 | int (*bio_ctr)(struct bio *, struct bio *, void *), |
| 862 | void *data); |
| 863 | extern void blk_rq_unprep_clone(struct request *rq); |
Christoph Hellwig | 2a842ac | 2017-06-03 09:38:04 +0200 | [diff] [blame] | 864 | extern blk_status_t blk_insert_cloned_request(struct request_queue *q, |
Kiyoshi Ueda | 82124d6 | 2008-09-18 10:45:38 -0400 | [diff] [blame] | 865 | struct request *rq); |
Jens Axboe | 0abc2a1 | 2017-12-18 15:40:44 +0800 | [diff] [blame] | 866 | extern int blk_rq_append_bio(struct request *rq, struct bio **bio); |
NeilBrown | af67c31 | 2017-06-18 14:38:57 +1000 | [diff] [blame] | 867 | extern void blk_queue_split(struct request_queue *, struct bio **); |
Paolo Bonzini | 0bfc96c | 2012-01-12 16:01:28 +0100 | [diff] [blame] | 868 | extern int scsi_verify_blk_ioctl(struct block_device *, unsigned int); |
Paolo Bonzini | 577ebb3 | 2012-01-12 16:01:27 +0100 | [diff] [blame] | 869 | extern int scsi_cmd_blk_ioctl(struct block_device *, fmode_t, |
| 870 | unsigned int, void __user *); |
Al Viro | 74f3c8a | 2007-08-27 15:38:10 -0400 | [diff] [blame] | 871 | extern int scsi_cmd_ioctl(struct request_queue *, struct gendisk *, fmode_t, |
| 872 | unsigned int, void __user *); |
Al Viro | e915e87 | 2008-09-02 17:16:41 -0400 | [diff] [blame] | 873 | extern int sg_scsi_ioctl(struct request_queue *, struct gendisk *, fmode_t, |
| 874 | struct scsi_ioctl_command __user *); |
Arnd Bergmann | 98aaaec | 2019-03-14 17:45:18 +0100 | [diff] [blame] | 875 | extern int get_sg_io_hdr(struct sg_io_hdr *hdr, const void __user *argp); |
| 876 | extern int put_sg_io_hdr(const struct sg_io_hdr *hdr, void __user *argp); |
Andrew Morton | 3fcfab1 | 2006-10-19 23:28:16 -0700 | [diff] [blame] | 877 | |
Bart Van Assche | 9a95e4e | 2017-11-09 10:49:59 -0800 | [diff] [blame] | 878 | extern int blk_queue_enter(struct request_queue *q, blk_mq_req_flags_t flags); |
Dan Williams | 2e6edc95 | 2015-11-19 13:29:28 -0800 | [diff] [blame] | 879 | extern void blk_queue_exit(struct request_queue *q); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | extern void blk_sync_queue(struct request_queue *q); |
FUJITA Tomonori | a3bce90 | 2008-08-28 16:17:05 +0900 | [diff] [blame] | 881 | extern int blk_rq_map_user(struct request_queue *, struct request *, |
FUJITA Tomonori | 152e283 | 2008-08-28 16:17:06 +0900 | [diff] [blame] | 882 | struct rq_map_data *, void __user *, unsigned long, |
| 883 | gfp_t); |
Jens Axboe | 8e5cfc4 | 2006-12-19 11:12:46 +0100 | [diff] [blame] | 884 | extern int blk_rq_unmap_user(struct bio *); |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 885 | extern int blk_rq_map_kern(struct request_queue *, struct request *, void *, unsigned int, gfp_t); |
| 886 | extern int blk_rq_map_user_iov(struct request_queue *, struct request *, |
Kent Overstreet | 26e49cf | 2015-01-18 16:16:31 +0100 | [diff] [blame] | 887 | struct rq_map_data *, const struct iov_iter *, |
| 888 | gfp_t); |
Christoph Hellwig | b7819b9 | 2017-04-20 16:02:55 +0200 | [diff] [blame] | 889 | extern void blk_execute_rq(struct request_queue *, struct gendisk *, |
James Bottomley | 994ca9a | 2005-06-20 14:11:09 +0200 | [diff] [blame] | 890 | struct request *, int); |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 891 | extern void blk_execute_rq_nowait(struct request_queue *, struct gendisk *, |
Jens Axboe | 15fc858 | 2006-01-06 10:00:50 +0100 | [diff] [blame] | 892 | struct request *, int, rq_end_io_fn *); |
Mike Christie | 6e39b69 | 2005-11-11 05:30:24 -0600 | [diff] [blame] | 893 | |
Chaitanya Kulkarni | e47bc4e | 2019-06-20 10:59:16 -0700 | [diff] [blame] | 894 | /* Helper to convert REQ_OP_XXX to its string format XXX */ |
| 895 | extern const char *blk_op_str(unsigned int op); |
| 896 | |
Christoph Hellwig | 2a842ac | 2017-06-03 09:38:04 +0200 | [diff] [blame] | 897 | int blk_status_to_errno(blk_status_t status); |
| 898 | blk_status_t errno_to_blk_status(int errno); |
| 899 | |
Jens Axboe | 0a1b8b8 | 2018-11-26 08:24:43 -0700 | [diff] [blame] | 900 | int blk_poll(struct request_queue *q, blk_qc_t cookie, bool spin); |
Jens Axboe | 05229beed | 2015-11-05 10:44:55 -0700 | [diff] [blame] | 901 | |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 902 | static inline struct request_queue *bdev_get_queue(struct block_device *bdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 903 | { |
Tejun Heo | ff9ea32 | 2014-09-08 08:03:56 +0900 | [diff] [blame] | 904 | return bdev->bd_disk->queue; /* this is never NULL */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 | } |
| 906 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 907 | /* |
Bart Van Assche | 233bde2 | 2018-03-14 15:48:06 -0700 | [diff] [blame] | 908 | * The basic unit of block I/O is a sector. It is used in a number of contexts |
| 909 | * in Linux (blk, bio, genhd). The size of one sector is 512 = 2**9 |
| 910 | * bytes. Variables of type sector_t represent an offset or size that is a |
| 911 | * multiple of 512 bytes. Hence these two constants. |
| 912 | */ |
| 913 | #ifndef SECTOR_SHIFT |
| 914 | #define SECTOR_SHIFT 9 |
| 915 | #endif |
| 916 | #ifndef SECTOR_SIZE |
| 917 | #define SECTOR_SIZE (1 << SECTOR_SHIFT) |
| 918 | #endif |
| 919 | |
| 920 | /* |
Tejun Heo | 80a761f | 2009-07-03 17:48:17 +0900 | [diff] [blame] | 921 | * blk_rq_pos() : the current sector |
| 922 | * blk_rq_bytes() : bytes left in the entire request |
| 923 | * blk_rq_cur_bytes() : bytes left in the current segment |
| 924 | * blk_rq_err_bytes() : bytes left till the next error boundary |
| 925 | * blk_rq_sectors() : sectors left in the entire request |
| 926 | * blk_rq_cur_sectors() : sectors left in the current segment |
Hou Tao | 3d24430 | 2019-05-21 15:59:03 +0800 | [diff] [blame] | 927 | * blk_rq_stats_sectors() : sectors of the entire request used for stats |
Tejun Heo | 5efccd1 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 928 | */ |
Tejun Heo | 5b93629 | 2009-05-07 22:24:38 +0900 | [diff] [blame] | 929 | static inline sector_t blk_rq_pos(const struct request *rq) |
| 930 | { |
Tejun Heo | a2dec7b | 2009-05-07 22:24:44 +0900 | [diff] [blame] | 931 | return rq->__sector; |
Tejun Heo | 5b93629 | 2009-05-07 22:24:38 +0900 | [diff] [blame] | 932 | } |
| 933 | |
Tejun Heo | 2e46e8b | 2009-05-07 22:24:41 +0900 | [diff] [blame] | 934 | static inline unsigned int blk_rq_bytes(const struct request *rq) |
| 935 | { |
Tejun Heo | a2dec7b | 2009-05-07 22:24:44 +0900 | [diff] [blame] | 936 | return rq->__data_len; |
Tejun Heo | 2e46e8b | 2009-05-07 22:24:41 +0900 | [diff] [blame] | 937 | } |
| 938 | |
| 939 | static inline int blk_rq_cur_bytes(const struct request *rq) |
| 940 | { |
| 941 | return rq->bio ? bio_cur_bytes(rq->bio) : 0; |
| 942 | } |
Tejun Heo | 5efccd1 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 943 | |
Tejun Heo | 80a761f | 2009-07-03 17:48:17 +0900 | [diff] [blame] | 944 | extern unsigned int blk_rq_err_bytes(const struct request *rq); |
| 945 | |
Tejun Heo | 5b93629 | 2009-05-07 22:24:38 +0900 | [diff] [blame] | 946 | static inline unsigned int blk_rq_sectors(const struct request *rq) |
| 947 | { |
Bart Van Assche | 233bde2 | 2018-03-14 15:48:06 -0700 | [diff] [blame] | 948 | return blk_rq_bytes(rq) >> SECTOR_SHIFT; |
Tejun Heo | 5b93629 | 2009-05-07 22:24:38 +0900 | [diff] [blame] | 949 | } |
| 950 | |
| 951 | static inline unsigned int blk_rq_cur_sectors(const struct request *rq) |
| 952 | { |
Bart Van Assche | 233bde2 | 2018-03-14 15:48:06 -0700 | [diff] [blame] | 953 | return blk_rq_cur_bytes(rq) >> SECTOR_SHIFT; |
Tejun Heo | 5b93629 | 2009-05-07 22:24:38 +0900 | [diff] [blame] | 954 | } |
| 955 | |
Hou Tao | 3d24430 | 2019-05-21 15:59:03 +0800 | [diff] [blame] | 956 | static inline unsigned int blk_rq_stats_sectors(const struct request *rq) |
| 957 | { |
| 958 | return rq->stats_sectors; |
| 959 | } |
| 960 | |
Bart Van Assche | 6a5ac98 | 2018-06-15 14:55:21 -0700 | [diff] [blame] | 961 | #ifdef CONFIG_BLK_DEV_ZONED |
Chaitanya Kulkarni | 02694e8 | 2020-03-25 10:49:54 -0700 | [diff] [blame] | 962 | |
| 963 | /* Helper to convert BLK_ZONE_ZONE_XXX to its string format XXX */ |
| 964 | const char *blk_zone_cond_str(enum blk_zone_cond zone_cond); |
| 965 | |
Christoph Hellwig | 6cc77e9 | 2017-12-21 15:43:38 +0900 | [diff] [blame] | 966 | static inline unsigned int blk_rq_zone_no(struct request *rq) |
| 967 | { |
| 968 | return blk_queue_zone_no(rq->q, blk_rq_pos(rq)); |
| 969 | } |
| 970 | |
| 971 | static inline unsigned int blk_rq_zone_is_seq(struct request *rq) |
| 972 | { |
| 973 | return blk_queue_zone_is_seq(rq->q, blk_rq_pos(rq)); |
| 974 | } |
Bart Van Assche | 6a5ac98 | 2018-06-15 14:55:21 -0700 | [diff] [blame] | 975 | #endif /* CONFIG_BLK_DEV_ZONED */ |
Christoph Hellwig | 6cc77e9 | 2017-12-21 15:43:38 +0900 | [diff] [blame] | 976 | |
Christoph Hellwig | 2e3258e | 2017-01-13 12:29:10 +0100 | [diff] [blame] | 977 | /* |
| 978 | * Some commands like WRITE SAME have a payload or data transfer size which |
| 979 | * is different from the size of the request. Any driver that supports such |
| 980 | * commands using the RQF_SPECIAL_PAYLOAD flag needs to use this helper to |
| 981 | * calculate the data transfer size. |
| 982 | */ |
| 983 | static inline unsigned int blk_rq_payload_bytes(struct request *rq) |
| 984 | { |
| 985 | if (rq->rq_flags & RQF_SPECIAL_PAYLOAD) |
| 986 | return rq->special_vec.bv_len; |
| 987 | return blk_rq_bytes(rq); |
| 988 | } |
| 989 | |
Christoph Hellwig | 3aef3ca | 2019-03-03 09:14:01 -0700 | [diff] [blame] | 990 | /* |
| 991 | * Return the first full biovec in the request. The caller needs to check that |
| 992 | * there are any bvecs before calling this helper. |
| 993 | */ |
| 994 | static inline struct bio_vec req_bvec(struct request *rq) |
| 995 | { |
| 996 | if (rq->rq_flags & RQF_SPECIAL_PAYLOAD) |
| 997 | return rq->special_vec; |
| 998 | return mp_bvec_iter_bvec(rq->bio->bi_io_vec, rq->bio->bi_iter); |
| 999 | } |
| 1000 | |
Martin K. Petersen | f31dc1c | 2012-09-18 12:19:26 -0400 | [diff] [blame] | 1001 | static inline unsigned int blk_queue_get_max_sectors(struct request_queue *q, |
Mike Christie | 8fe0d47 | 2016-06-05 14:32:15 -0500 | [diff] [blame] | 1002 | int op) |
Martin K. Petersen | f31dc1c | 2012-09-18 12:19:26 -0400 | [diff] [blame] | 1003 | { |
Adrian Hunter | 7afafc8 | 2016-08-16 10:59:35 +0300 | [diff] [blame] | 1004 | if (unlikely(op == REQ_OP_DISCARD || op == REQ_OP_SECURE_ERASE)) |
Bart Van Assche | 233bde2 | 2018-03-14 15:48:06 -0700 | [diff] [blame] | 1005 | return min(q->limits.max_discard_sectors, |
| 1006 | UINT_MAX >> SECTOR_SHIFT); |
Martin K. Petersen | f31dc1c | 2012-09-18 12:19:26 -0400 | [diff] [blame] | 1007 | |
Mike Christie | 8fe0d47 | 2016-06-05 14:32:15 -0500 | [diff] [blame] | 1008 | if (unlikely(op == REQ_OP_WRITE_SAME)) |
Martin K. Petersen | 4363ac7 | 2012-09-18 12:19:27 -0400 | [diff] [blame] | 1009 | return q->limits.max_write_same_sectors; |
| 1010 | |
Chaitanya Kulkarni | a6f0788 | 2016-11-30 12:28:59 -0800 | [diff] [blame] | 1011 | if (unlikely(op == REQ_OP_WRITE_ZEROES)) |
| 1012 | return q->limits.max_write_zeroes_sectors; |
| 1013 | |
Martin K. Petersen | f31dc1c | 2012-09-18 12:19:26 -0400 | [diff] [blame] | 1014 | return q->limits.max_sectors; |
| 1015 | } |
| 1016 | |
Jens Axboe | 762380a | 2014-06-05 13:38:39 -0600 | [diff] [blame] | 1017 | /* |
| 1018 | * Return maximum size of a request at given offset. Only valid for |
| 1019 | * file system requests. |
| 1020 | */ |
| 1021 | static inline unsigned int blk_max_size_offset(struct request_queue *q, |
| 1022 | sector_t offset) |
| 1023 | { |
| 1024 | if (!q->limits.chunk_sectors) |
Jens Axboe | 736ed4d | 2014-06-17 22:09:29 -0700 | [diff] [blame] | 1025 | return q->limits.max_sectors; |
Jens Axboe | 762380a | 2014-06-05 13:38:39 -0600 | [diff] [blame] | 1026 | |
Keith Busch | 15bfd21 | 2018-06-26 09:14:58 -0600 | [diff] [blame] | 1027 | return min(q->limits.max_sectors, (unsigned int)(q->limits.chunk_sectors - |
| 1028 | (offset & (q->limits.chunk_sectors - 1)))); |
Jens Axboe | 762380a | 2014-06-05 13:38:39 -0600 | [diff] [blame] | 1029 | } |
| 1030 | |
Damien Le Moal | 17007f3 | 2016-07-20 21:40:47 -0600 | [diff] [blame] | 1031 | static inline unsigned int blk_rq_get_max_sectors(struct request *rq, |
| 1032 | sector_t offset) |
Martin K. Petersen | f31dc1c | 2012-09-18 12:19:26 -0400 | [diff] [blame] | 1033 | { |
| 1034 | struct request_queue *q = rq->q; |
| 1035 | |
Christoph Hellwig | 57292b5 | 2017-01-31 16:57:29 +0100 | [diff] [blame] | 1036 | if (blk_rq_is_passthrough(rq)) |
Martin K. Petersen | f31dc1c | 2012-09-18 12:19:26 -0400 | [diff] [blame] | 1037 | return q->limits.max_hw_sectors; |
| 1038 | |
Adrian Hunter | 7afafc8 | 2016-08-16 10:59:35 +0300 | [diff] [blame] | 1039 | if (!q->limits.chunk_sectors || |
| 1040 | req_op(rq) == REQ_OP_DISCARD || |
| 1041 | req_op(rq) == REQ_OP_SECURE_ERASE) |
Mike Christie | 8fe0d47 | 2016-06-05 14:32:15 -0500 | [diff] [blame] | 1042 | return blk_queue_get_max_sectors(q, req_op(rq)); |
Jens Axboe | 762380a | 2014-06-05 13:38:39 -0600 | [diff] [blame] | 1043 | |
Damien Le Moal | 17007f3 | 2016-07-20 21:40:47 -0600 | [diff] [blame] | 1044 | return min(blk_max_size_offset(q, offset), |
Mike Christie | 8fe0d47 | 2016-06-05 14:32:15 -0500 | [diff] [blame] | 1045 | blk_queue_get_max_sectors(q, req_op(rq))); |
Martin K. Petersen | f31dc1c | 2012-09-18 12:19:26 -0400 | [diff] [blame] | 1046 | } |
| 1047 | |
Jun'ichi Nomura | 75afb35 | 2013-09-21 13:57:47 -0600 | [diff] [blame] | 1048 | static inline unsigned int blk_rq_count_bios(struct request *rq) |
| 1049 | { |
| 1050 | unsigned int nr_bios = 0; |
| 1051 | struct bio *bio; |
| 1052 | |
| 1053 | __rq_for_each_bio(bio, rq) |
| 1054 | nr_bios++; |
| 1055 | |
| 1056 | return nr_bios; |
| 1057 | } |
| 1058 | |
Christoph Hellwig | ef71de8 | 2017-11-02 21:29:51 +0300 | [diff] [blame] | 1059 | void blk_steal_bios(struct bio_list *list, struct request *rq); |
| 1060 | |
Tejun Heo | 9934c8c | 2009-05-08 11:54:16 +0900 | [diff] [blame] | 1061 | /* |
Tejun Heo | 2e60e02 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 1062 | * Request completion related functions. |
| 1063 | * |
| 1064 | * blk_update_request() completes given number of bytes and updates |
| 1065 | * the request without completing it. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1066 | */ |
Christoph Hellwig | 2a842ac | 2017-06-03 09:38:04 +0200 | [diff] [blame] | 1067 | extern bool blk_update_request(struct request *rq, blk_status_t error, |
Tejun Heo | 2e60e02 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 1068 | unsigned int nr_bytes); |
Tejun Heo | 2e60e02 | 2009-04-23 11:05:18 +0900 | [diff] [blame] | 1069 | |
Jens Axboe | 242f9dc | 2008-09-14 05:55:09 -0700 | [diff] [blame] | 1070 | extern void __blk_complete_request(struct request *); |
| 1071 | extern void blk_abort_request(struct request *); |
Jens Axboe | ff856ba | 2006-01-09 16:02:34 +0100 | [diff] [blame] | 1072 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1073 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1074 | * Access functions for manipulating queue properties |
| 1075 | */ |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1076 | extern void blk_cleanup_queue(struct request_queue *); |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1077 | extern void blk_queue_bounce_limit(struct request_queue *, u64); |
Martin K. Petersen | 086fa5f | 2010-02-26 00:20:38 -0500 | [diff] [blame] | 1078 | extern void blk_queue_max_hw_sectors(struct request_queue *, unsigned int); |
Jens Axboe | 762380a | 2014-06-05 13:38:39 -0600 | [diff] [blame] | 1079 | extern void blk_queue_chunk_sectors(struct request_queue *, unsigned int); |
Martin K. Petersen | 8a78362 | 2010-02-26 00:20:39 -0500 | [diff] [blame] | 1080 | extern void blk_queue_max_segments(struct request_queue *, unsigned short); |
Christoph Hellwig | 1e73973 | 2017-02-08 14:46:49 +0100 | [diff] [blame] | 1081 | extern void blk_queue_max_discard_segments(struct request_queue *, |
| 1082 | unsigned short); |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1083 | extern void blk_queue_max_segment_size(struct request_queue *, unsigned int); |
Christoph Hellwig | 67efc92 | 2009-09-30 13:54:20 +0200 | [diff] [blame] | 1084 | extern void blk_queue_max_discard_sectors(struct request_queue *q, |
| 1085 | unsigned int max_discard_sectors); |
Martin K. Petersen | 4363ac7 | 2012-09-18 12:19:27 -0400 | [diff] [blame] | 1086 | extern void blk_queue_max_write_same_sectors(struct request_queue *q, |
| 1087 | unsigned int max_write_same_sectors); |
Chaitanya Kulkarni | a6f0788 | 2016-11-30 12:28:59 -0800 | [diff] [blame] | 1088 | extern void blk_queue_max_write_zeroes_sectors(struct request_queue *q, |
| 1089 | unsigned int max_write_same_sectors); |
Mikulas Patocka | ad6bf88 | 2020-01-15 08:35:25 -0500 | [diff] [blame] | 1090 | extern void blk_queue_logical_block_size(struct request_queue *, unsigned int); |
Keith Busch | 0512a75 | 2020-05-12 17:55:47 +0900 | [diff] [blame] | 1091 | extern void blk_queue_max_zone_append_sectors(struct request_queue *q, |
| 1092 | unsigned int max_zone_append_sectors); |
Martin K. Petersen | 892b6f9 | 2010-10-13 21:18:03 +0200 | [diff] [blame] | 1093 | extern void blk_queue_physical_block_size(struct request_queue *, unsigned int); |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 1094 | extern void blk_queue_alignment_offset(struct request_queue *q, |
| 1095 | unsigned int alignment); |
Martin K. Petersen | 7c958e3 | 2009-07-31 11:49:11 -0400 | [diff] [blame] | 1096 | extern void blk_limits_io_min(struct queue_limits *limits, unsigned int min); |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 1097 | extern void blk_queue_io_min(struct request_queue *q, unsigned int min); |
Martin K. Petersen | 3c5820c | 2009-09-11 21:54:52 +0200 | [diff] [blame] | 1098 | extern void blk_limits_io_opt(struct queue_limits *limits, unsigned int opt); |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 1099 | extern void blk_queue_io_opt(struct request_queue *q, unsigned int opt); |
Jens Axboe | d278d4a | 2016-03-30 10:21:08 -0600 | [diff] [blame] | 1100 | extern void blk_set_queue_depth(struct request_queue *q, unsigned int depth); |
Martin K. Petersen | e475bba | 2009-06-16 08:23:52 +0200 | [diff] [blame] | 1101 | extern void blk_set_default_limits(struct queue_limits *lim); |
Martin K. Petersen | b1bd055 | 2012-01-11 16:27:11 +0100 | [diff] [blame] | 1102 | extern void blk_set_stacking_limits(struct queue_limits *lim); |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 1103 | extern int blk_stack_limits(struct queue_limits *t, struct queue_limits *b, |
| 1104 | sector_t offset); |
Martin K. Petersen | 17be8c2 | 2010-01-11 03:21:49 -0500 | [diff] [blame] | 1105 | extern int bdev_stack_limits(struct queue_limits *t, struct block_device *bdev, |
| 1106 | sector_t offset); |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 1107 | extern void disk_stack_limits(struct gendisk *disk, struct block_device *bdev, |
| 1108 | sector_t offset); |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1109 | extern void blk_queue_stack_limits(struct request_queue *t, struct request_queue *b); |
FUJITA Tomonori | 27f8221 | 2008-07-04 09:30:03 +0200 | [diff] [blame] | 1110 | extern void blk_queue_update_dma_pad(struct request_queue *, unsigned int); |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1111 | extern void blk_queue_segment_boundary(struct request_queue *, unsigned long); |
Keith Busch | 03100aa | 2015-08-19 14:24:05 -0700 | [diff] [blame] | 1112 | extern void blk_queue_virt_boundary(struct request_queue *, unsigned long); |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1113 | extern void blk_queue_dma_alignment(struct request_queue *, int); |
James Bottomley | 11c3e68 | 2007-12-31 16:37:00 -0600 | [diff] [blame] | 1114 | extern void blk_queue_update_dma_alignment(struct request_queue *, int); |
Jens Axboe | 242f9dc | 2008-09-14 05:55:09 -0700 | [diff] [blame] | 1115 | extern void blk_queue_rq_timeout(struct request_queue *, unsigned int); |
Jens Axboe | 93e9d8e | 2016-04-12 12:32:46 -0600 | [diff] [blame] | 1116 | extern void blk_queue_write_cache(struct request_queue *q, bool enabled, bool fua); |
Damien Le Moal | 68c43f1 | 2019-09-05 18:51:31 +0900 | [diff] [blame] | 1117 | extern void blk_queue_required_elevator_features(struct request_queue *q, |
| 1118 | unsigned int features); |
Yoshihiro Shimoda | 45147fb | 2019-08-28 21:35:42 +0900 | [diff] [blame] | 1119 | extern bool blk_queue_can_use_dma_map_merging(struct request_queue *q, |
| 1120 | struct device *dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1121 | |
Christoph Hellwig | 1e73973 | 2017-02-08 14:46:49 +0100 | [diff] [blame] | 1122 | /* |
| 1123 | * Number of physical segments as sent to the device. |
| 1124 | * |
| 1125 | * Normally this is the number of discontiguous data segments sent by the |
| 1126 | * submitter. But for data-less command like discard we might have no |
| 1127 | * actual data segments submitted, but the driver might have to add it's |
| 1128 | * own special payload. In that case we still return 1 here so that this |
| 1129 | * special payload will be mapped. |
| 1130 | */ |
Christoph Hellwig | f9d03f9 | 2016-12-08 15:20:32 -0700 | [diff] [blame] | 1131 | static inline unsigned short blk_rq_nr_phys_segments(struct request *rq) |
| 1132 | { |
| 1133 | if (rq->rq_flags & RQF_SPECIAL_PAYLOAD) |
| 1134 | return 1; |
| 1135 | return rq->nr_phys_segments; |
| 1136 | } |
| 1137 | |
Christoph Hellwig | 1e73973 | 2017-02-08 14:46:49 +0100 | [diff] [blame] | 1138 | /* |
| 1139 | * Number of discard segments (or ranges) the driver needs to fill in. |
| 1140 | * Each discard bio merged into a request is counted as one segment. |
| 1141 | */ |
| 1142 | static inline unsigned short blk_rq_nr_discard_segments(struct request *rq) |
| 1143 | { |
| 1144 | return max_t(unsigned short, rq->nr_phys_segments, 1); |
| 1145 | } |
| 1146 | |
Christoph Hellwig | 89de150 | 2020-04-14 09:42:22 +0200 | [diff] [blame] | 1147 | int __blk_rq_map_sg(struct request_queue *q, struct request *rq, |
| 1148 | struct scatterlist *sglist, struct scatterlist **last_sg); |
| 1149 | static inline int blk_rq_map_sg(struct request_queue *q, struct request *rq, |
| 1150 | struct scatterlist *sglist) |
| 1151 | { |
| 1152 | struct scatterlist *last_sg = NULL; |
| 1153 | |
| 1154 | return __blk_rq_map_sg(q, rq, sglist, &last_sg); |
| 1155 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1156 | extern void blk_dump_rq_flags(struct request *, char *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1157 | extern long nr_blockdev_pages(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1158 | |
Tejun Heo | 09ac46c | 2011-12-14 00:33:38 +0100 | [diff] [blame] | 1159 | bool __must_check blk_get_queue(struct request_queue *); |
Christoph Hellwig | 3d745ea | 2020-03-27 09:30:11 +0100 | [diff] [blame] | 1160 | struct request_queue *blk_alloc_queue(make_request_fn make_request, int node_id); |
Jens Axboe | 165125e | 2007-07-24 09:28:11 +0200 | [diff] [blame] | 1161 | extern void blk_put_queue(struct request_queue *); |
Jens Axboe | 3f21c26 | 2015-06-05 10:57:37 -0600 | [diff] [blame] | 1162 | extern void blk_set_queue_dying(struct request_queue *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1163 | |
Shaohua Li | 316cc67 | 2011-07-08 08:19:21 +0200 | [diff] [blame] | 1164 | /* |
Suresh Jayaraman | 75df713 | 2011-09-21 10:00:16 +0200 | [diff] [blame] | 1165 | * blk_plug permits building a queue of related requests by holding the I/O |
| 1166 | * fragments for a short period. This allows merging of sequential requests |
| 1167 | * into single larger request. As the requests are moved from a per-task list to |
| 1168 | * the device's request_queue in a batch, this results in improved scalability |
| 1169 | * as the lock contention for request_queue lock is reduced. |
| 1170 | * |
| 1171 | * It is ok not to disable preemption when adding the request to the plug list |
| 1172 | * or when attempting a merge, because blk_schedule_flush_list() will only flush |
| 1173 | * the plug list when the task sleeps by itself. For details, please see |
| 1174 | * schedule() where blk_schedule_flush_plug() is called. |
Shaohua Li | 316cc67 | 2011-07-08 08:19:21 +0200 | [diff] [blame] | 1175 | */ |
Jens Axboe | 73c1010 | 2011-03-08 13:19:51 +0100 | [diff] [blame] | 1176 | struct blk_plug { |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1177 | struct list_head mq_list; /* blk-mq requests */ |
Suresh Jayaraman | 75df713 | 2011-09-21 10:00:16 +0200 | [diff] [blame] | 1178 | struct list_head cb_list; /* md requires an unplug callback */ |
Jens Axboe | 5f0ed77 | 2018-11-23 22:04:33 -0700 | [diff] [blame] | 1179 | unsigned short rq_count; |
Jens Axboe | ce5b009 | 2018-11-27 17:13:56 -0700 | [diff] [blame] | 1180 | bool multiple_queues; |
Jens Axboe | 73c1010 | 2011-03-08 13:19:51 +0100 | [diff] [blame] | 1181 | }; |
Shaohua Li | 55c022b | 2011-07-08 08:19:20 +0200 | [diff] [blame] | 1182 | #define BLK_MAX_REQUEST_COUNT 16 |
Shaohua Li | 50d24c3 | 2016-11-03 17:03:53 -0700 | [diff] [blame] | 1183 | #define BLK_PLUG_FLUSH_SIZE (128 * 1024) |
Shaohua Li | 55c022b | 2011-07-08 08:19:20 +0200 | [diff] [blame] | 1184 | |
NeilBrown | 9cbb175 | 2012-07-31 09:08:14 +0200 | [diff] [blame] | 1185 | struct blk_plug_cb; |
NeilBrown | 74018dc | 2012-07-31 09:08:15 +0200 | [diff] [blame] | 1186 | typedef void (*blk_plug_cb_fn)(struct blk_plug_cb *, bool); |
NeilBrown | 048c937 | 2011-04-18 09:52:22 +0200 | [diff] [blame] | 1187 | struct blk_plug_cb { |
| 1188 | struct list_head list; |
NeilBrown | 9cbb175 | 2012-07-31 09:08:14 +0200 | [diff] [blame] | 1189 | blk_plug_cb_fn callback; |
| 1190 | void *data; |
NeilBrown | 048c937 | 2011-04-18 09:52:22 +0200 | [diff] [blame] | 1191 | }; |
NeilBrown | 9cbb175 | 2012-07-31 09:08:14 +0200 | [diff] [blame] | 1192 | extern struct blk_plug_cb *blk_check_plugged(blk_plug_cb_fn unplug, |
| 1193 | void *data, int size); |
Jens Axboe | 73c1010 | 2011-03-08 13:19:51 +0100 | [diff] [blame] | 1194 | extern void blk_start_plug(struct blk_plug *); |
| 1195 | extern void blk_finish_plug(struct blk_plug *); |
Jens Axboe | f660378 | 2011-04-15 15:49:07 +0200 | [diff] [blame] | 1196 | extern void blk_flush_plug_list(struct blk_plug *, bool); |
Jens Axboe | 73c1010 | 2011-03-08 13:19:51 +0100 | [diff] [blame] | 1197 | |
| 1198 | static inline void blk_flush_plug(struct task_struct *tsk) |
| 1199 | { |
| 1200 | struct blk_plug *plug = tsk->plug; |
| 1201 | |
Christoph Hellwig | 88b996c | 2011-04-15 15:20:10 +0200 | [diff] [blame] | 1202 | if (plug) |
Jens Axboe | a237c1c | 2011-04-16 13:27:55 +0200 | [diff] [blame] | 1203 | blk_flush_plug_list(plug, false); |
| 1204 | } |
| 1205 | |
| 1206 | static inline void blk_schedule_flush_plug(struct task_struct *tsk) |
| 1207 | { |
| 1208 | struct blk_plug *plug = tsk->plug; |
| 1209 | |
| 1210 | if (plug) |
Jens Axboe | f660378 | 2011-04-15 15:49:07 +0200 | [diff] [blame] | 1211 | blk_flush_plug_list(plug, true); |
Jens Axboe | 73c1010 | 2011-03-08 13:19:51 +0100 | [diff] [blame] | 1212 | } |
| 1213 | |
| 1214 | static inline bool blk_needs_flush_plug(struct task_struct *tsk) |
| 1215 | { |
| 1216 | struct blk_plug *plug = tsk->plug; |
| 1217 | |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1218 | return plug && |
Jens Axboe | a1ce35f | 2018-10-29 10:23:51 -0600 | [diff] [blame] | 1219 | (!list_empty(&plug->mq_list) || |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 1220 | !list_empty(&plug->cb_list)); |
Jens Axboe | 73c1010 | 2011-03-08 13:19:51 +0100 | [diff] [blame] | 1221 | } |
| 1222 | |
Christoph Hellwig | ee472d8 | 2017-04-05 19:21:08 +0200 | [diff] [blame] | 1223 | extern int blkdev_issue_flush(struct block_device *, gfp_t, sector_t *); |
| 1224 | extern int blkdev_issue_write_same(struct block_device *bdev, sector_t sector, |
| 1225 | sector_t nr_sects, gfp_t gfp_mask, struct page *page); |
Christoph Hellwig | e950fdf | 2016-07-19 11:23:33 +0200 | [diff] [blame] | 1226 | |
| 1227 | #define BLKDEV_DISCARD_SECURE (1 << 0) /* issue a secure erase */ |
Christoph Hellwig | dd3932e | 2010-09-16 20:51:46 +0200 | [diff] [blame] | 1228 | |
Dmitry Monakhov | fbd9b09 | 2010-04-28 17:55:06 +0400 | [diff] [blame] | 1229 | extern int blkdev_issue_discard(struct block_device *bdev, sector_t sector, |
| 1230 | sector_t nr_sects, gfp_t gfp_mask, unsigned long flags); |
Christoph Hellwig | 38f2525 | 2016-04-16 14:55:28 -0400 | [diff] [blame] | 1231 | extern int __blkdev_issue_discard(struct block_device *bdev, sector_t sector, |
Christoph Hellwig | 288dab8 | 2016-06-09 16:00:36 +0200 | [diff] [blame] | 1232 | sector_t nr_sects, gfp_t gfp_mask, int flags, |
Mike Christie | 469e321 | 2016-06-05 14:31:49 -0500 | [diff] [blame] | 1233 | struct bio **biop); |
Christoph Hellwig | ee472d8 | 2017-04-05 19:21:08 +0200 | [diff] [blame] | 1234 | |
| 1235 | #define BLKDEV_ZERO_NOUNMAP (1 << 0) /* do not free blocks */ |
Christoph Hellwig | cb365b9 | 2017-04-05 19:21:10 +0200 | [diff] [blame] | 1236 | #define BLKDEV_ZERO_NOFALLBACK (1 << 1) /* don't write explicit zeroes */ |
Christoph Hellwig | ee472d8 | 2017-04-05 19:21:08 +0200 | [diff] [blame] | 1237 | |
Chaitanya Kulkarni | e73c23f | 2016-11-30 12:28:58 -0800 | [diff] [blame] | 1238 | extern int __blkdev_issue_zeroout(struct block_device *bdev, sector_t sector, |
| 1239 | sector_t nr_sects, gfp_t gfp_mask, struct bio **biop, |
Christoph Hellwig | ee472d8 | 2017-04-05 19:21:08 +0200 | [diff] [blame] | 1240 | unsigned flags); |
Dmitry Monakhov | 3f14d79 | 2010-04-28 17:55:09 +0400 | [diff] [blame] | 1241 | extern int blkdev_issue_zeroout(struct block_device *bdev, sector_t sector, |
Christoph Hellwig | ee472d8 | 2017-04-05 19:21:08 +0200 | [diff] [blame] | 1242 | sector_t nr_sects, gfp_t gfp_mask, unsigned flags); |
| 1243 | |
Christoph Hellwig | 2cf6d26 | 2010-08-18 05:29:10 -0400 | [diff] [blame] | 1244 | static inline int sb_issue_discard(struct super_block *sb, sector_t block, |
| 1245 | sector_t nr_blocks, gfp_t gfp_mask, unsigned long flags) |
David Woodhouse | fb2dce8 | 2008-08-05 18:01:53 +0100 | [diff] [blame] | 1246 | { |
Bart Van Assche | 233bde2 | 2018-03-14 15:48:06 -0700 | [diff] [blame] | 1247 | return blkdev_issue_discard(sb->s_bdev, |
| 1248 | block << (sb->s_blocksize_bits - |
| 1249 | SECTOR_SHIFT), |
| 1250 | nr_blocks << (sb->s_blocksize_bits - |
| 1251 | SECTOR_SHIFT), |
Christoph Hellwig | 2cf6d26 | 2010-08-18 05:29:10 -0400 | [diff] [blame] | 1252 | gfp_mask, flags); |
David Woodhouse | fb2dce8 | 2008-08-05 18:01:53 +0100 | [diff] [blame] | 1253 | } |
Lukas Czerner | e6fa0be | 2010-10-27 21:30:04 -0400 | [diff] [blame] | 1254 | static inline int sb_issue_zeroout(struct super_block *sb, sector_t block, |
Theodore Ts'o | a107e5a | 2010-10-27 23:44:47 -0400 | [diff] [blame] | 1255 | sector_t nr_blocks, gfp_t gfp_mask) |
Lukas Czerner | e6fa0be | 2010-10-27 21:30:04 -0400 | [diff] [blame] | 1256 | { |
| 1257 | return blkdev_issue_zeroout(sb->s_bdev, |
Bart Van Assche | 233bde2 | 2018-03-14 15:48:06 -0700 | [diff] [blame] | 1258 | block << (sb->s_blocksize_bits - |
| 1259 | SECTOR_SHIFT), |
| 1260 | nr_blocks << (sb->s_blocksize_bits - |
| 1261 | SECTOR_SHIFT), |
Christoph Hellwig | ee472d8 | 2017-04-05 19:21:08 +0200 | [diff] [blame] | 1262 | gfp_mask, 0); |
Lukas Czerner | e6fa0be | 2010-10-27 21:30:04 -0400 | [diff] [blame] | 1263 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1264 | |
Christoph Hellwig | f00c4d8 | 2017-11-05 10:36:31 +0300 | [diff] [blame] | 1265 | extern int blk_verify_command(unsigned char *cmd, fmode_t mode); |
Adel Gadllah | 0b07de8 | 2008-06-26 13:48:27 +0200 | [diff] [blame] | 1266 | |
Martin K. Petersen | eb28d31 | 2010-02-26 00:20:37 -0500 | [diff] [blame] | 1267 | enum blk_default_limits { |
| 1268 | BLK_MAX_SEGMENTS = 128, |
| 1269 | BLK_SAFE_MAX_SECTORS = 255, |
Jeff Moyer | d2be537 | 2015-08-13 14:57:57 -0400 | [diff] [blame] | 1270 | BLK_DEF_MAX_SECTORS = 2560, |
Martin K. Petersen | eb28d31 | 2010-02-26 00:20:37 -0500 | [diff] [blame] | 1271 | BLK_MAX_SEGMENT_SIZE = 65536, |
| 1272 | BLK_SEG_BOUNDARY_MASK = 0xFFFFFFFFUL, |
| 1273 | }; |
Milan Broz | 0e435ac | 2008-12-03 12:55:08 +0100 | [diff] [blame] | 1274 | |
Bart Van Assche | af2c68f | 2019-08-01 15:50:40 -0700 | [diff] [blame] | 1275 | static inline unsigned long queue_segment_boundary(const struct request_queue *q) |
Martin K. Petersen | ae03bf6 | 2009-05-22 17:17:50 -0400 | [diff] [blame] | 1276 | { |
Martin K. Petersen | 025146e | 2009-05-22 17:17:51 -0400 | [diff] [blame] | 1277 | return q->limits.seg_boundary_mask; |
Martin K. Petersen | ae03bf6 | 2009-05-22 17:17:50 -0400 | [diff] [blame] | 1278 | } |
| 1279 | |
Bart Van Assche | af2c68f | 2019-08-01 15:50:40 -0700 | [diff] [blame] | 1280 | static inline unsigned long queue_virt_boundary(const struct request_queue *q) |
Keith Busch | 03100aa | 2015-08-19 14:24:05 -0700 | [diff] [blame] | 1281 | { |
| 1282 | return q->limits.virt_boundary_mask; |
| 1283 | } |
| 1284 | |
Bart Van Assche | af2c68f | 2019-08-01 15:50:40 -0700 | [diff] [blame] | 1285 | static inline unsigned int queue_max_sectors(const struct request_queue *q) |
Martin K. Petersen | ae03bf6 | 2009-05-22 17:17:50 -0400 | [diff] [blame] | 1286 | { |
Martin K. Petersen | 025146e | 2009-05-22 17:17:51 -0400 | [diff] [blame] | 1287 | return q->limits.max_sectors; |
Martin K. Petersen | ae03bf6 | 2009-05-22 17:17:50 -0400 | [diff] [blame] | 1288 | } |
| 1289 | |
Bart Van Assche | af2c68f | 2019-08-01 15:50:40 -0700 | [diff] [blame] | 1290 | static inline unsigned int queue_max_hw_sectors(const struct request_queue *q) |
Martin K. Petersen | ae03bf6 | 2009-05-22 17:17:50 -0400 | [diff] [blame] | 1291 | { |
Martin K. Petersen | 025146e | 2009-05-22 17:17:51 -0400 | [diff] [blame] | 1292 | return q->limits.max_hw_sectors; |
Martin K. Petersen | ae03bf6 | 2009-05-22 17:17:50 -0400 | [diff] [blame] | 1293 | } |
| 1294 | |
Bart Van Assche | af2c68f | 2019-08-01 15:50:40 -0700 | [diff] [blame] | 1295 | static inline unsigned short queue_max_segments(const struct request_queue *q) |
Martin K. Petersen | ae03bf6 | 2009-05-22 17:17:50 -0400 | [diff] [blame] | 1296 | { |
Martin K. Petersen | 8a78362 | 2010-02-26 00:20:39 -0500 | [diff] [blame] | 1297 | return q->limits.max_segments; |
Martin K. Petersen | ae03bf6 | 2009-05-22 17:17:50 -0400 | [diff] [blame] | 1298 | } |
| 1299 | |
Bart Van Assche | af2c68f | 2019-08-01 15:50:40 -0700 | [diff] [blame] | 1300 | static inline unsigned short queue_max_discard_segments(const struct request_queue *q) |
Christoph Hellwig | 1e73973 | 2017-02-08 14:46:49 +0100 | [diff] [blame] | 1301 | { |
| 1302 | return q->limits.max_discard_segments; |
| 1303 | } |
| 1304 | |
Bart Van Assche | af2c68f | 2019-08-01 15:50:40 -0700 | [diff] [blame] | 1305 | static inline unsigned int queue_max_segment_size(const struct request_queue *q) |
Martin K. Petersen | ae03bf6 | 2009-05-22 17:17:50 -0400 | [diff] [blame] | 1306 | { |
Martin K. Petersen | 025146e | 2009-05-22 17:17:51 -0400 | [diff] [blame] | 1307 | return q->limits.max_segment_size; |
Martin K. Petersen | ae03bf6 | 2009-05-22 17:17:50 -0400 | [diff] [blame] | 1308 | } |
| 1309 | |
Keith Busch | 0512a75 | 2020-05-12 17:55:47 +0900 | [diff] [blame] | 1310 | static inline unsigned int queue_max_zone_append_sectors(const struct request_queue *q) |
| 1311 | { |
| 1312 | return q->limits.max_zone_append_sectors; |
| 1313 | } |
| 1314 | |
Mikulas Patocka | ad6bf88 | 2020-01-15 08:35:25 -0500 | [diff] [blame] | 1315 | static inline unsigned queue_logical_block_size(const struct request_queue *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1316 | { |
| 1317 | int retval = 512; |
| 1318 | |
Martin K. Petersen | 025146e | 2009-05-22 17:17:51 -0400 | [diff] [blame] | 1319 | if (q && q->limits.logical_block_size) |
| 1320 | retval = q->limits.logical_block_size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1321 | |
| 1322 | return retval; |
| 1323 | } |
| 1324 | |
Mikulas Patocka | ad6bf88 | 2020-01-15 08:35:25 -0500 | [diff] [blame] | 1325 | static inline unsigned int bdev_logical_block_size(struct block_device *bdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1326 | { |
Martin K. Petersen | e1defc4 | 2009-05-22 17:17:49 -0400 | [diff] [blame] | 1327 | return queue_logical_block_size(bdev_get_queue(bdev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1328 | } |
| 1329 | |
Bart Van Assche | af2c68f | 2019-08-01 15:50:40 -0700 | [diff] [blame] | 1330 | static inline unsigned int queue_physical_block_size(const struct request_queue *q) |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 1331 | { |
| 1332 | return q->limits.physical_block_size; |
| 1333 | } |
| 1334 | |
Martin K. Petersen | 892b6f9 | 2010-10-13 21:18:03 +0200 | [diff] [blame] | 1335 | static inline unsigned int bdev_physical_block_size(struct block_device *bdev) |
Martin K. Petersen | ac481c2 | 2009-10-03 20:52:01 +0200 | [diff] [blame] | 1336 | { |
| 1337 | return queue_physical_block_size(bdev_get_queue(bdev)); |
| 1338 | } |
| 1339 | |
Bart Van Assche | af2c68f | 2019-08-01 15:50:40 -0700 | [diff] [blame] | 1340 | static inline unsigned int queue_io_min(const struct request_queue *q) |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 1341 | { |
| 1342 | return q->limits.io_min; |
| 1343 | } |
| 1344 | |
Martin K. Petersen | ac481c2 | 2009-10-03 20:52:01 +0200 | [diff] [blame] | 1345 | static inline int bdev_io_min(struct block_device *bdev) |
| 1346 | { |
| 1347 | return queue_io_min(bdev_get_queue(bdev)); |
| 1348 | } |
| 1349 | |
Bart Van Assche | af2c68f | 2019-08-01 15:50:40 -0700 | [diff] [blame] | 1350 | static inline unsigned int queue_io_opt(const struct request_queue *q) |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 1351 | { |
| 1352 | return q->limits.io_opt; |
| 1353 | } |
| 1354 | |
Martin K. Petersen | ac481c2 | 2009-10-03 20:52:01 +0200 | [diff] [blame] | 1355 | static inline int bdev_io_opt(struct block_device *bdev) |
| 1356 | { |
| 1357 | return queue_io_opt(bdev_get_queue(bdev)); |
| 1358 | } |
| 1359 | |
Bart Van Assche | af2c68f | 2019-08-01 15:50:40 -0700 | [diff] [blame] | 1360 | static inline int queue_alignment_offset(const struct request_queue *q) |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 1361 | { |
Martin K. Petersen | ac481c2 | 2009-10-03 20:52:01 +0200 | [diff] [blame] | 1362 | if (q->limits.misaligned) |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 1363 | return -1; |
| 1364 | |
Martin K. Petersen | ac481c2 | 2009-10-03 20:52:01 +0200 | [diff] [blame] | 1365 | return q->limits.alignment_offset; |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 1366 | } |
| 1367 | |
Martin K. Petersen | e03a72e | 2010-01-11 03:21:51 -0500 | [diff] [blame] | 1368 | static inline int queue_limit_alignment_offset(struct queue_limits *lim, sector_t sector) |
Martin K. Petersen | 81744ee | 2009-12-29 08:35:35 +0100 | [diff] [blame] | 1369 | { |
| 1370 | unsigned int granularity = max(lim->physical_block_size, lim->io_min); |
Bart Van Assche | 233bde2 | 2018-03-14 15:48:06 -0700 | [diff] [blame] | 1371 | unsigned int alignment = sector_div(sector, granularity >> SECTOR_SHIFT) |
| 1372 | << SECTOR_SHIFT; |
Martin K. Petersen | 81744ee | 2009-12-29 08:35:35 +0100 | [diff] [blame] | 1373 | |
Mike Snitzer | b8839b8 | 2014-10-08 18:26:13 -0400 | [diff] [blame] | 1374 | return (granularity + lim->alignment_offset - alignment) % granularity; |
Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 1375 | } |
| 1376 | |
Martin K. Petersen | ac481c2 | 2009-10-03 20:52:01 +0200 | [diff] [blame] | 1377 | static inline int bdev_alignment_offset(struct block_device *bdev) |
| 1378 | { |
| 1379 | struct request_queue *q = bdev_get_queue(bdev); |
| 1380 | |
| 1381 | if (q->limits.misaligned) |
| 1382 | return -1; |
| 1383 | |
| 1384 | if (bdev != bdev->bd_contains) |
| 1385 | return bdev->bd_part->alignment_offset; |
| 1386 | |
| 1387 | return q->limits.alignment_offset; |
| 1388 | } |
| 1389 | |
Bart Van Assche | af2c68f | 2019-08-01 15:50:40 -0700 | [diff] [blame] | 1390 | static inline int queue_discard_alignment(const struct request_queue *q) |
Martin K. Petersen | 86b3728 | 2009-11-10 11:50:21 +0100 | [diff] [blame] | 1391 | { |
| 1392 | if (q->limits.discard_misaligned) |
| 1393 | return -1; |
| 1394 | |
| 1395 | return q->limits.discard_alignment; |
| 1396 | } |
| 1397 | |
Martin K. Petersen | e03a72e | 2010-01-11 03:21:51 -0500 | [diff] [blame] | 1398 | static inline int queue_limit_discard_alignment(struct queue_limits *lim, sector_t sector) |
Martin K. Petersen | 86b3728 | 2009-11-10 11:50:21 +0100 | [diff] [blame] | 1399 | { |
Linus Torvalds | 5977107 | 2012-12-19 07:18:35 -0800 | [diff] [blame] | 1400 | unsigned int alignment, granularity, offset; |
Martin K. Petersen | dd3d145 | 2010-01-11 03:21:48 -0500 | [diff] [blame] | 1401 | |
Martin K. Petersen | a934a00 | 2011-05-18 10:37:35 +0200 | [diff] [blame] | 1402 | if (!lim->max_discard_sectors) |
| 1403 | return 0; |
| 1404 | |
Linus Torvalds | 5977107 | 2012-12-19 07:18:35 -0800 | [diff] [blame] | 1405 | /* Why are these in bytes, not sectors? */ |
Bart Van Assche | 233bde2 | 2018-03-14 15:48:06 -0700 | [diff] [blame] | 1406 | alignment = lim->discard_alignment >> SECTOR_SHIFT; |
| 1407 | granularity = lim->discard_granularity >> SECTOR_SHIFT; |
Linus Torvalds | 5977107 | 2012-12-19 07:18:35 -0800 | [diff] [blame] | 1408 | if (!granularity) |
| 1409 | return 0; |
| 1410 | |
| 1411 | /* Offset of the partition start in 'granularity' sectors */ |
| 1412 | offset = sector_div(sector, granularity); |
| 1413 | |
| 1414 | /* And why do we do this modulus *again* in blkdev_issue_discard()? */ |
| 1415 | offset = (granularity + alignment - offset) % granularity; |
| 1416 | |
| 1417 | /* Turn it back into bytes, gaah */ |
Bart Van Assche | 233bde2 | 2018-03-14 15:48:06 -0700 | [diff] [blame] | 1418 | return offset << SECTOR_SHIFT; |
Martin K. Petersen | 86b3728 | 2009-11-10 11:50:21 +0100 | [diff] [blame] | 1419 | } |
| 1420 | |
Paolo Bonzini | c6e6663 | 2012-08-02 09:48:50 +0200 | [diff] [blame] | 1421 | static inline int bdev_discard_alignment(struct block_device *bdev) |
| 1422 | { |
| 1423 | struct request_queue *q = bdev_get_queue(bdev); |
| 1424 | |
| 1425 | if (bdev != bdev->bd_contains) |
| 1426 | return bdev->bd_part->discard_alignment; |
| 1427 | |
| 1428 | return q->limits.discard_alignment; |
| 1429 | } |
| 1430 | |
Martin K. Petersen | 4363ac7 | 2012-09-18 12:19:27 -0400 | [diff] [blame] | 1431 | static inline unsigned int bdev_write_same(struct block_device *bdev) |
| 1432 | { |
| 1433 | struct request_queue *q = bdev_get_queue(bdev); |
| 1434 | |
| 1435 | if (q) |
| 1436 | return q->limits.max_write_same_sectors; |
| 1437 | |
| 1438 | return 0; |
| 1439 | } |
| 1440 | |
Chaitanya Kulkarni | a6f0788 | 2016-11-30 12:28:59 -0800 | [diff] [blame] | 1441 | static inline unsigned int bdev_write_zeroes_sectors(struct block_device *bdev) |
| 1442 | { |
| 1443 | struct request_queue *q = bdev_get_queue(bdev); |
| 1444 | |
| 1445 | if (q) |
| 1446 | return q->limits.max_write_zeroes_sectors; |
| 1447 | |
| 1448 | return 0; |
| 1449 | } |
| 1450 | |
Damien Le Moal | 797476b | 2016-10-18 15:40:29 +0900 | [diff] [blame] | 1451 | static inline enum blk_zoned_model bdev_zoned_model(struct block_device *bdev) |
| 1452 | { |
| 1453 | struct request_queue *q = bdev_get_queue(bdev); |
| 1454 | |
| 1455 | if (q) |
| 1456 | return blk_queue_zoned_model(q); |
| 1457 | |
| 1458 | return BLK_ZONED_NONE; |
| 1459 | } |
| 1460 | |
| 1461 | static inline bool bdev_is_zoned(struct block_device *bdev) |
| 1462 | { |
| 1463 | struct request_queue *q = bdev_get_queue(bdev); |
| 1464 | |
| 1465 | if (q) |
| 1466 | return blk_queue_is_zoned(q); |
| 1467 | |
| 1468 | return false; |
| 1469 | } |
| 1470 | |
Damien Le Moal | 113ab72 | 2019-07-10 13:53:10 +0900 | [diff] [blame] | 1471 | static inline sector_t bdev_zone_sectors(struct block_device *bdev) |
Hannes Reinecke | 6a0cb1b | 2016-10-18 15:40:33 +0900 | [diff] [blame] | 1472 | { |
| 1473 | struct request_queue *q = bdev_get_queue(bdev); |
| 1474 | |
| 1475 | if (q) |
Damien Le Moal | f99e864 | 2017-01-12 07:58:32 -0700 | [diff] [blame] | 1476 | return blk_queue_zone_sectors(q); |
Christoph Hellwig | 6cc77e9 | 2017-12-21 15:43:38 +0900 | [diff] [blame] | 1477 | return 0; |
| 1478 | } |
Hannes Reinecke | 6a0cb1b | 2016-10-18 15:40:33 +0900 | [diff] [blame] | 1479 | |
Bart Van Assche | af2c68f | 2019-08-01 15:50:40 -0700 | [diff] [blame] | 1480 | static inline int queue_dma_alignment(const struct request_queue *q) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1481 | { |
Pete Wyckoff | 482eb68 | 2008-01-01 10:23:02 -0500 | [diff] [blame] | 1482 | return q ? q->dma_alignment : 511; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1483 | } |
| 1484 | |
Namhyung Kim | 1441779 | 2010-09-15 13:08:27 +0200 | [diff] [blame] | 1485 | static inline int blk_rq_aligned(struct request_queue *q, unsigned long addr, |
FUJITA Tomonori | 8790407 | 2008-08-28 15:05:58 +0900 | [diff] [blame] | 1486 | unsigned int len) |
| 1487 | { |
| 1488 | unsigned int alignment = queue_dma_alignment(q) | q->dma_pad_mask; |
Namhyung Kim | 1441779 | 2010-09-15 13:08:27 +0200 | [diff] [blame] | 1489 | return !(addr & alignment) && !(len & alignment); |
FUJITA Tomonori | 8790407 | 2008-08-28 15:05:58 +0900 | [diff] [blame] | 1490 | } |
| 1491 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1492 | /* assumes size > 256 */ |
| 1493 | static inline unsigned int blksize_bits(unsigned int size) |
| 1494 | { |
| 1495 | unsigned int bits = 8; |
| 1496 | do { |
| 1497 | bits++; |
| 1498 | size >>= 1; |
| 1499 | } while (size > 256); |
| 1500 | return bits; |
| 1501 | } |
| 1502 | |
Adrian Bunk | 2befb9e | 2005-09-10 00:27:17 -0700 | [diff] [blame] | 1503 | static inline unsigned int block_size(struct block_device *bdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1504 | { |
| 1505 | return bdev->bd_block_size; |
| 1506 | } |
| 1507 | |
Jens Axboe | 59c3d45 | 2014-04-08 09:15:35 -0600 | [diff] [blame] | 1508 | int kblockd_schedule_work(struct work_struct *work); |
Jens Axboe | 818cd1c | 2017-04-10 09:54:55 -0600 | [diff] [blame] | 1509 | int kblockd_mod_delayed_work_on(int cpu, struct delayed_work *dwork, unsigned long delay); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1510 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1511 | #define MODULE_ALIAS_BLOCKDEV(major,minor) \ |
| 1512 | MODULE_ALIAS("block-major-" __stringify(major) "-" __stringify(minor)) |
| 1513 | #define MODULE_ALIAS_BLOCKDEV_MAJOR(major) \ |
| 1514 | MODULE_ALIAS("block-major-" __stringify(major) "-*") |
| 1515 | |
Martin K. Petersen | 7ba1ba1 | 2008-06-30 20:04:41 +0200 | [diff] [blame] | 1516 | #if defined(CONFIG_BLK_DEV_INTEGRITY) |
| 1517 | |
Martin K. Petersen | 8288f49 | 2014-09-26 19:20:02 -0400 | [diff] [blame] | 1518 | enum blk_integrity_flags { |
| 1519 | BLK_INTEGRITY_VERIFY = 1 << 0, |
| 1520 | BLK_INTEGRITY_GENERATE = 1 << 1, |
Martin K. Petersen | 3aec2f4 | 2014-09-26 19:20:03 -0400 | [diff] [blame] | 1521 | BLK_INTEGRITY_DEVICE_CAPABLE = 1 << 2, |
Martin K. Petersen | aae7df5 | 2014-09-26 19:20:05 -0400 | [diff] [blame] | 1522 | BLK_INTEGRITY_IP_CHECKSUM = 1 << 3, |
Martin K. Petersen | 8288f49 | 2014-09-26 19:20:02 -0400 | [diff] [blame] | 1523 | }; |
Martin K. Petersen | 7ba1ba1 | 2008-06-30 20:04:41 +0200 | [diff] [blame] | 1524 | |
Martin K. Petersen | 1859308 | 2014-09-26 19:20:01 -0400 | [diff] [blame] | 1525 | struct blk_integrity_iter { |
Martin K. Petersen | 7ba1ba1 | 2008-06-30 20:04:41 +0200 | [diff] [blame] | 1526 | void *prot_buf; |
| 1527 | void *data_buf; |
Martin K. Petersen | 3be91c4 | 2014-09-26 19:19:59 -0400 | [diff] [blame] | 1528 | sector_t seed; |
Martin K. Petersen | 7ba1ba1 | 2008-06-30 20:04:41 +0200 | [diff] [blame] | 1529 | unsigned int data_size; |
Martin K. Petersen | 3be91c4 | 2014-09-26 19:19:59 -0400 | [diff] [blame] | 1530 | unsigned short interval; |
Martin K. Petersen | 7ba1ba1 | 2008-06-30 20:04:41 +0200 | [diff] [blame] | 1531 | const char *disk_name; |
| 1532 | }; |
| 1533 | |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 1534 | typedef blk_status_t (integrity_processing_fn) (struct blk_integrity_iter *); |
Max Gurtovoy | 54d4e6a | 2019-09-16 18:44:29 +0300 | [diff] [blame] | 1535 | typedef void (integrity_prepare_fn) (struct request *); |
| 1536 | typedef void (integrity_complete_fn) (struct request *, unsigned int); |
Martin K. Petersen | 7ba1ba1 | 2008-06-30 20:04:41 +0200 | [diff] [blame] | 1537 | |
Martin K. Petersen | 0f8087e | 2015-10-21 13:19:33 -0400 | [diff] [blame] | 1538 | struct blk_integrity_profile { |
| 1539 | integrity_processing_fn *generate_fn; |
| 1540 | integrity_processing_fn *verify_fn; |
Max Gurtovoy | 54d4e6a | 2019-09-16 18:44:29 +0300 | [diff] [blame] | 1541 | integrity_prepare_fn *prepare_fn; |
| 1542 | integrity_complete_fn *complete_fn; |
Martin K. Petersen | 0f8087e | 2015-10-21 13:19:33 -0400 | [diff] [blame] | 1543 | const char *name; |
| 1544 | }; |
| 1545 | |
Martin K. Petersen | 25520d5 | 2015-10-21 13:19:49 -0400 | [diff] [blame] | 1546 | extern void blk_integrity_register(struct gendisk *, struct blk_integrity *); |
Martin K. Petersen | 7ba1ba1 | 2008-06-30 20:04:41 +0200 | [diff] [blame] | 1547 | extern void blk_integrity_unregister(struct gendisk *); |
Martin K. Petersen | ad7fce9 | 2008-10-01 03:38:39 -0400 | [diff] [blame] | 1548 | extern int blk_integrity_compare(struct gendisk *, struct gendisk *); |
Martin K. Petersen | 13f05c8 | 2010-09-10 20:50:10 +0200 | [diff] [blame] | 1549 | extern int blk_rq_map_integrity_sg(struct request_queue *, struct bio *, |
| 1550 | struct scatterlist *); |
| 1551 | extern int blk_rq_count_integrity_sg(struct request_queue *, struct bio *); |
Martin K. Petersen | 4eaf99b | 2014-09-26 19:20:06 -0400 | [diff] [blame] | 1552 | extern bool blk_integrity_merge_rq(struct request_queue *, struct request *, |
| 1553 | struct request *); |
| 1554 | extern bool blk_integrity_merge_bio(struct request_queue *, struct request *, |
| 1555 | struct bio *); |
Martin K. Petersen | 7ba1ba1 | 2008-06-30 20:04:41 +0200 | [diff] [blame] | 1556 | |
Martin K. Petersen | 25520d5 | 2015-10-21 13:19:49 -0400 | [diff] [blame] | 1557 | static inline struct blk_integrity *blk_get_integrity(struct gendisk *disk) |
| 1558 | { |
Dan Williams | ac6fc48 | 2015-10-21 13:20:18 -0400 | [diff] [blame] | 1559 | struct blk_integrity *bi = &disk->queue->integrity; |
Martin K. Petersen | 25520d5 | 2015-10-21 13:19:49 -0400 | [diff] [blame] | 1560 | |
| 1561 | if (!bi->profile) |
| 1562 | return NULL; |
| 1563 | |
| 1564 | return bi; |
| 1565 | } |
| 1566 | |
Jens Axboe | b04accc | 2008-10-02 12:53:22 +0200 | [diff] [blame] | 1567 | static inline |
| 1568 | struct blk_integrity *bdev_get_integrity(struct block_device *bdev) |
| 1569 | { |
Martin K. Petersen | 25520d5 | 2015-10-21 13:19:49 -0400 | [diff] [blame] | 1570 | return blk_get_integrity(bdev->bd_disk); |
Martin K. Petersen | b02739b | 2008-10-02 18:47:49 +0200 | [diff] [blame] | 1571 | } |
| 1572 | |
Martin K. Petersen | 180b2f9 | 2014-09-26 19:19:56 -0400 | [diff] [blame] | 1573 | static inline bool blk_integrity_rq(struct request *rq) |
Martin K. Petersen | 7ba1ba1 | 2008-06-30 20:04:41 +0200 | [diff] [blame] | 1574 | { |
Martin K. Petersen | 180b2f9 | 2014-09-26 19:19:56 -0400 | [diff] [blame] | 1575 | return rq->cmd_flags & REQ_INTEGRITY; |
Martin K. Petersen | 7ba1ba1 | 2008-06-30 20:04:41 +0200 | [diff] [blame] | 1576 | } |
| 1577 | |
Martin K. Petersen | 13f05c8 | 2010-09-10 20:50:10 +0200 | [diff] [blame] | 1578 | static inline void blk_queue_max_integrity_segments(struct request_queue *q, |
| 1579 | unsigned int segs) |
| 1580 | { |
| 1581 | q->limits.max_integrity_segments = segs; |
| 1582 | } |
| 1583 | |
| 1584 | static inline unsigned short |
Bart Van Assche | af2c68f | 2019-08-01 15:50:40 -0700 | [diff] [blame] | 1585 | queue_max_integrity_segments(const struct request_queue *q) |
Martin K. Petersen | 13f05c8 | 2010-09-10 20:50:10 +0200 | [diff] [blame] | 1586 | { |
| 1587 | return q->limits.max_integrity_segments; |
| 1588 | } |
| 1589 | |
Greg Edwards | 359f642 | 2018-07-25 10:22:58 -0400 | [diff] [blame] | 1590 | /** |
| 1591 | * bio_integrity_intervals - Return number of integrity intervals for a bio |
| 1592 | * @bi: blk_integrity profile for device |
| 1593 | * @sectors: Size of the bio in 512-byte sectors |
| 1594 | * |
| 1595 | * Description: The block layer calculates everything in 512 byte |
| 1596 | * sectors but integrity metadata is done in terms of the data integrity |
| 1597 | * interval size of the storage device. Convert the block layer sectors |
| 1598 | * to the appropriate number of integrity intervals. |
| 1599 | */ |
| 1600 | static inline unsigned int bio_integrity_intervals(struct blk_integrity *bi, |
| 1601 | unsigned int sectors) |
| 1602 | { |
| 1603 | return sectors >> (bi->interval_exp - 9); |
| 1604 | } |
| 1605 | |
| 1606 | static inline unsigned int bio_integrity_bytes(struct blk_integrity *bi, |
| 1607 | unsigned int sectors) |
| 1608 | { |
| 1609 | return bio_integrity_intervals(bi, sectors) * bi->tuple_size; |
| 1610 | } |
| 1611 | |
Christoph Hellwig | 2a876f5 | 2019-03-03 08:38:29 -0700 | [diff] [blame] | 1612 | /* |
| 1613 | * Return the first bvec that contains integrity data. Only drivers that are |
| 1614 | * limited to a single integrity segment should use this helper. |
| 1615 | */ |
| 1616 | static inline struct bio_vec *rq_integrity_vec(struct request *rq) |
| 1617 | { |
| 1618 | if (WARN_ON_ONCE(queue_max_integrity_segments(rq->q) > 1)) |
| 1619 | return NULL; |
| 1620 | return rq->bio->bi_integrity->bip_vec; |
| 1621 | } |
| 1622 | |
Martin K. Petersen | 7ba1ba1 | 2008-06-30 20:04:41 +0200 | [diff] [blame] | 1623 | #else /* CONFIG_BLK_DEV_INTEGRITY */ |
| 1624 | |
Stephen Rothwell | fd83240 | 2012-01-12 09:17:30 +0100 | [diff] [blame] | 1625 | struct bio; |
| 1626 | struct block_device; |
| 1627 | struct gendisk; |
| 1628 | struct blk_integrity; |
| 1629 | |
| 1630 | static inline int blk_integrity_rq(struct request *rq) |
| 1631 | { |
| 1632 | return 0; |
| 1633 | } |
| 1634 | static inline int blk_rq_count_integrity_sg(struct request_queue *q, |
| 1635 | struct bio *b) |
| 1636 | { |
| 1637 | return 0; |
| 1638 | } |
| 1639 | static inline int blk_rq_map_integrity_sg(struct request_queue *q, |
| 1640 | struct bio *b, |
| 1641 | struct scatterlist *s) |
| 1642 | { |
| 1643 | return 0; |
| 1644 | } |
| 1645 | static inline struct blk_integrity *bdev_get_integrity(struct block_device *b) |
| 1646 | { |
Michele Curti | 61a04e5 | 2014-10-09 15:30:17 -0700 | [diff] [blame] | 1647 | return NULL; |
Stephen Rothwell | fd83240 | 2012-01-12 09:17:30 +0100 | [diff] [blame] | 1648 | } |
| 1649 | static inline struct blk_integrity *blk_get_integrity(struct gendisk *disk) |
| 1650 | { |
| 1651 | return NULL; |
| 1652 | } |
| 1653 | static inline int blk_integrity_compare(struct gendisk *a, struct gendisk *b) |
| 1654 | { |
| 1655 | return 0; |
| 1656 | } |
Martin K. Petersen | 25520d5 | 2015-10-21 13:19:49 -0400 | [diff] [blame] | 1657 | static inline void blk_integrity_register(struct gendisk *d, |
Stephen Rothwell | fd83240 | 2012-01-12 09:17:30 +0100 | [diff] [blame] | 1658 | struct blk_integrity *b) |
| 1659 | { |
Stephen Rothwell | fd83240 | 2012-01-12 09:17:30 +0100 | [diff] [blame] | 1660 | } |
| 1661 | static inline void blk_integrity_unregister(struct gendisk *d) |
| 1662 | { |
| 1663 | } |
| 1664 | static inline void blk_queue_max_integrity_segments(struct request_queue *q, |
| 1665 | unsigned int segs) |
| 1666 | { |
| 1667 | } |
Bart Van Assche | af2c68f | 2019-08-01 15:50:40 -0700 | [diff] [blame] | 1668 | static inline unsigned short queue_max_integrity_segments(const struct request_queue *q) |
Stephen Rothwell | fd83240 | 2012-01-12 09:17:30 +0100 | [diff] [blame] | 1669 | { |
| 1670 | return 0; |
| 1671 | } |
Martin K. Petersen | 4eaf99b | 2014-09-26 19:20:06 -0400 | [diff] [blame] | 1672 | static inline bool blk_integrity_merge_rq(struct request_queue *rq, |
| 1673 | struct request *r1, |
| 1674 | struct request *r2) |
Stephen Rothwell | fd83240 | 2012-01-12 09:17:30 +0100 | [diff] [blame] | 1675 | { |
Martin K. Petersen | cb1a5ab | 2014-10-28 20:27:43 -0600 | [diff] [blame] | 1676 | return true; |
Stephen Rothwell | fd83240 | 2012-01-12 09:17:30 +0100 | [diff] [blame] | 1677 | } |
Martin K. Petersen | 4eaf99b | 2014-09-26 19:20:06 -0400 | [diff] [blame] | 1678 | static inline bool blk_integrity_merge_bio(struct request_queue *rq, |
| 1679 | struct request *r, |
| 1680 | struct bio *b) |
Stephen Rothwell | fd83240 | 2012-01-12 09:17:30 +0100 | [diff] [blame] | 1681 | { |
Martin K. Petersen | cb1a5ab | 2014-10-28 20:27:43 -0600 | [diff] [blame] | 1682 | return true; |
Stephen Rothwell | fd83240 | 2012-01-12 09:17:30 +0100 | [diff] [blame] | 1683 | } |
Martin K. Petersen | 25520d5 | 2015-10-21 13:19:49 -0400 | [diff] [blame] | 1684 | |
Greg Edwards | 359f642 | 2018-07-25 10:22:58 -0400 | [diff] [blame] | 1685 | static inline unsigned int bio_integrity_intervals(struct blk_integrity *bi, |
| 1686 | unsigned int sectors) |
| 1687 | { |
| 1688 | return 0; |
| 1689 | } |
| 1690 | |
| 1691 | static inline unsigned int bio_integrity_bytes(struct blk_integrity *bi, |
| 1692 | unsigned int sectors) |
| 1693 | { |
| 1694 | return 0; |
| 1695 | } |
| 1696 | |
Christoph Hellwig | 2a876f5 | 2019-03-03 08:38:29 -0700 | [diff] [blame] | 1697 | static inline struct bio_vec *rq_integrity_vec(struct request *rq) |
| 1698 | { |
| 1699 | return NULL; |
| 1700 | } |
| 1701 | |
Martin K. Petersen | 7ba1ba1 | 2008-06-30 20:04:41 +0200 | [diff] [blame] | 1702 | #endif /* CONFIG_BLK_DEV_INTEGRITY */ |
| 1703 | |
Al Viro | 08f8585 | 2007-10-08 13:26:20 -0400 | [diff] [blame] | 1704 | struct block_device_operations { |
Al Viro | d4430d6 | 2008-03-02 09:09:22 -0500 | [diff] [blame] | 1705 | int (*open) (struct block_device *, fmode_t); |
Al Viro | db2a144 | 2013-05-05 21:52:57 -0400 | [diff] [blame] | 1706 | void (*release) (struct gendisk *, fmode_t); |
Tejun Heo | 3f289dc | 2018-07-18 04:47:36 -0700 | [diff] [blame] | 1707 | int (*rw_page)(struct block_device *, sector_t, struct page *, unsigned int); |
Al Viro | d4430d6 | 2008-03-02 09:09:22 -0500 | [diff] [blame] | 1708 | int (*ioctl) (struct block_device *, fmode_t, unsigned, unsigned long); |
| 1709 | int (*compat_ioctl) (struct block_device *, fmode_t, unsigned, unsigned long); |
Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 1710 | unsigned int (*check_events) (struct gendisk *disk, |
| 1711 | unsigned int clearing); |
| 1712 | /* ->media_changed() is DEPRECATED, use ->check_events() instead */ |
Al Viro | 08f8585 | 2007-10-08 13:26:20 -0400 | [diff] [blame] | 1713 | int (*media_changed) (struct gendisk *); |
Tejun Heo | c3e33e0 | 2010-05-15 20:09:29 +0200 | [diff] [blame] | 1714 | void (*unlock_native_capacity) (struct gendisk *); |
Al Viro | 08f8585 | 2007-10-08 13:26:20 -0400 | [diff] [blame] | 1715 | int (*revalidate_disk) (struct gendisk *); |
| 1716 | int (*getgeo)(struct block_device *, struct hd_geometry *); |
Nitin Gupta | b3a27d0 | 2010-05-17 11:02:43 +0530 | [diff] [blame] | 1717 | /* this callback is with swap_lock and sometimes page table lock held */ |
| 1718 | void (*swap_slot_free_notify) (struct block_device *, unsigned long); |
Christoph Hellwig | e76239a | 2018-10-12 19:08:49 +0900 | [diff] [blame] | 1719 | int (*report_zones)(struct gendisk *, sector_t sector, |
Christoph Hellwig | d410035 | 2019-11-11 11:39:30 +0900 | [diff] [blame] | 1720 | unsigned int nr_zones, report_zones_cb cb, void *data); |
Christoph Hellwig | 348e114 | 2020-03-27 09:07:17 +0100 | [diff] [blame] | 1721 | char *(*devnode)(struct gendisk *disk, umode_t *mode); |
Al Viro | 08f8585 | 2007-10-08 13:26:20 -0400 | [diff] [blame] | 1722 | struct module *owner; |
Christoph Hellwig | bbd3e06 | 2015-10-15 14:10:48 +0200 | [diff] [blame] | 1723 | const struct pr_ops *pr_ops; |
Al Viro | 08f8585 | 2007-10-08 13:26:20 -0400 | [diff] [blame] | 1724 | }; |
| 1725 | |
Arnd Bergmann | ee6a129 | 2019-11-28 15:48:10 +0100 | [diff] [blame] | 1726 | #ifdef CONFIG_COMPAT |
| 1727 | extern int blkdev_compat_ptr_ioctl(struct block_device *, fmode_t, |
| 1728 | unsigned int, unsigned long); |
| 1729 | #else |
| 1730 | #define blkdev_compat_ptr_ioctl NULL |
| 1731 | #endif |
| 1732 | |
Al Viro | 633a08b | 2007-08-29 20:34:12 -0400 | [diff] [blame] | 1733 | extern int __blkdev_driver_ioctl(struct block_device *, fmode_t, unsigned int, |
| 1734 | unsigned long); |
Matthew Wilcox | 47a191f | 2014-06-04 16:07:46 -0700 | [diff] [blame] | 1735 | extern int bdev_read_page(struct block_device *, sector_t, struct page *); |
| 1736 | extern int bdev_write_page(struct block_device *, sector_t, struct page *, |
| 1737 | struct writeback_control *); |
Christoph Hellwig | 6cc77e9 | 2017-12-21 15:43:38 +0900 | [diff] [blame] | 1738 | |
| 1739 | #ifdef CONFIG_BLK_DEV_ZONED |
| 1740 | bool blk_req_needs_zone_write_lock(struct request *rq); |
Johannes Thumshirn | 1392d37 | 2020-05-12 17:55:48 +0900 | [diff] [blame^] | 1741 | bool blk_req_zone_write_trylock(struct request *rq); |
Christoph Hellwig | 6cc77e9 | 2017-12-21 15:43:38 +0900 | [diff] [blame] | 1742 | void __blk_req_zone_write_lock(struct request *rq); |
| 1743 | void __blk_req_zone_write_unlock(struct request *rq); |
| 1744 | |
| 1745 | static inline void blk_req_zone_write_lock(struct request *rq) |
| 1746 | { |
| 1747 | if (blk_req_needs_zone_write_lock(rq)) |
| 1748 | __blk_req_zone_write_lock(rq); |
| 1749 | } |
| 1750 | |
| 1751 | static inline void blk_req_zone_write_unlock(struct request *rq) |
| 1752 | { |
| 1753 | if (rq->rq_flags & RQF_ZONE_WRITE_LOCKED) |
| 1754 | __blk_req_zone_write_unlock(rq); |
| 1755 | } |
| 1756 | |
| 1757 | static inline bool blk_req_zone_is_write_locked(struct request *rq) |
| 1758 | { |
| 1759 | return rq->q->seq_zones_wlock && |
| 1760 | test_bit(blk_rq_zone_no(rq), rq->q->seq_zones_wlock); |
| 1761 | } |
| 1762 | |
| 1763 | static inline bool blk_req_can_dispatch_to_zone(struct request *rq) |
| 1764 | { |
| 1765 | if (!blk_req_needs_zone_write_lock(rq)) |
| 1766 | return true; |
| 1767 | return !blk_req_zone_is_write_locked(rq); |
| 1768 | } |
| 1769 | #else |
| 1770 | static inline bool blk_req_needs_zone_write_lock(struct request *rq) |
| 1771 | { |
| 1772 | return false; |
| 1773 | } |
| 1774 | |
| 1775 | static inline void blk_req_zone_write_lock(struct request *rq) |
| 1776 | { |
| 1777 | } |
| 1778 | |
| 1779 | static inline void blk_req_zone_write_unlock(struct request *rq) |
| 1780 | { |
| 1781 | } |
| 1782 | static inline bool blk_req_zone_is_write_locked(struct request *rq) |
| 1783 | { |
| 1784 | return false; |
| 1785 | } |
| 1786 | |
| 1787 | static inline bool blk_req_can_dispatch_to_zone(struct request *rq) |
| 1788 | { |
| 1789 | return true; |
| 1790 | } |
| 1791 | #endif /* CONFIG_BLK_DEV_ZONED */ |
| 1792 | |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 1793 | #else /* CONFIG_BLOCK */ |
Fabian Frederick | ac13a82 | 2014-06-04 16:06:27 -0700 | [diff] [blame] | 1794 | |
| 1795 | struct block_device; |
| 1796 | |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 1797 | /* |
| 1798 | * stubs for when the block layer is configured out |
| 1799 | */ |
| 1800 | #define buffer_heads_over_limit 0 |
| 1801 | |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 1802 | static inline long nr_blockdev_pages(void) |
| 1803 | { |
| 1804 | return 0; |
| 1805 | } |
| 1806 | |
Jens Axboe | 1f940bd | 2011-03-11 20:17:08 +0100 | [diff] [blame] | 1807 | struct blk_plug { |
| 1808 | }; |
| 1809 | |
| 1810 | static inline void blk_start_plug(struct blk_plug *plug) |
Jens Axboe | 73c1010 | 2011-03-08 13:19:51 +0100 | [diff] [blame] | 1811 | { |
| 1812 | } |
| 1813 | |
Jens Axboe | 1f940bd | 2011-03-11 20:17:08 +0100 | [diff] [blame] | 1814 | static inline void blk_finish_plug(struct blk_plug *plug) |
Jens Axboe | 73c1010 | 2011-03-08 13:19:51 +0100 | [diff] [blame] | 1815 | { |
| 1816 | } |
| 1817 | |
Jens Axboe | 1f940bd | 2011-03-11 20:17:08 +0100 | [diff] [blame] | 1818 | static inline void blk_flush_plug(struct task_struct *task) |
Jens Axboe | 73c1010 | 2011-03-08 13:19:51 +0100 | [diff] [blame] | 1819 | { |
| 1820 | } |
| 1821 | |
Jens Axboe | a237c1c | 2011-04-16 13:27:55 +0200 | [diff] [blame] | 1822 | static inline void blk_schedule_flush_plug(struct task_struct *task) |
| 1823 | { |
| 1824 | } |
| 1825 | |
| 1826 | |
Jens Axboe | 73c1010 | 2011-03-08 13:19:51 +0100 | [diff] [blame] | 1827 | static inline bool blk_needs_flush_plug(struct task_struct *tsk) |
| 1828 | { |
| 1829 | return false; |
| 1830 | } |
| 1831 | |
Fabian Frederick | ac13a82 | 2014-06-04 16:06:27 -0700 | [diff] [blame] | 1832 | static inline int blkdev_issue_flush(struct block_device *bdev, gfp_t gfp_mask, |
| 1833 | sector_t *error_sector) |
| 1834 | { |
| 1835 | return 0; |
| 1836 | } |
| 1837 | |
David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 1838 | #endif /* CONFIG_BLOCK */ |
| 1839 | |
Jens Axboe | 0619317 | 2018-11-13 21:16:54 -0700 | [diff] [blame] | 1840 | static inline void blk_wake_io_task(struct task_struct *waiter) |
| 1841 | { |
| 1842 | /* |
| 1843 | * If we're polling, the task itself is doing the completions. For |
| 1844 | * that case, we don't need to signal a wakeup, it's enough to just |
| 1845 | * mark us as RUNNING. |
| 1846 | */ |
| 1847 | if (waiter == current) |
| 1848 | __set_current_state(TASK_RUNNING); |
| 1849 | else |
| 1850 | wake_up_process(waiter); |
| 1851 | } |
| 1852 | |
Ming Lei | e6249cd | 2020-05-03 09:54:22 +0800 | [diff] [blame] | 1853 | static inline void blk_io_schedule(void) |
| 1854 | { |
| 1855 | /* Prevent hang_check timer from firing at us during very long I/O */ |
| 1856 | unsigned long timeout = sysctl_hung_task_timeout_secs * HZ / 2; |
| 1857 | |
| 1858 | if (timeout) |
| 1859 | io_schedule_timeout(timeout); |
| 1860 | else |
| 1861 | io_schedule(); |
| 1862 | } |
| 1863 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1864 | #endif |