blob: e30acaed8f8674048875ebee9ee5757cf6d4056c [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef _LINUX_BLKDEV_H
3#define _LINUX_BLKDEV_H
4
Russell King85fd0bc2012-05-14 08:29:23 +02005#include <linux/sched.h>
Ingo Molnare6017572017-02-01 16:36:40 +01006#include <linux/sched/clock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/major.h>
8#include <linux/genhd.h>
9#include <linux/list.h>
Jens Axboe320ae512013-10-24 09:20:05 +010010#include <linux/llist.h>
Andy Shevchenkob296a6d2020-10-15 20:10:21 -070011#include <linux/minmax.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/timer.h>
13#include <linux/workqueue.h>
14#include <linux/pagemap.h>
Tejun Heo66114ca2015-05-22 17:13:32 -040015#include <linux/backing-dev-defs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/wait.h>
17#include <linux/mempool.h>
Dan Williams34c0fd52016-01-15 16:56:14 -080018#include <linux/pfn.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/bio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/stringify.h>
Hugh Dickins3e6053d2008-09-11 10:57:55 +020021#include <linux/gfp.h>
FUJITA Tomonorid351af02007-07-09 12:40:35 +020022#include <linux/bsg.h>
Jens Axboec7c22e42008-09-13 20:26:01 +020023#include <linux/smp.h>
Tejun Heo548bc8e2013-01-09 08:05:13 -080024#include <linux/rcupdate.h>
Tejun Heoadd703f2014-07-01 10:34:38 -060025#include <linux/percpu-refcount.h>
Christoph Hellwig84be4562015-05-01 12:46:15 +020026#include <linux/scatterlist.h>
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +090027#include <linux/blkzoned.h>
Geert Uytterhoevendb04e182020-08-19 14:34:03 +020028#include <linux/pm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Paul Gortmakerde477252011-05-26 13:46:22 -040030struct module;
Christoph Hellwig21b2f0c2006-03-22 17:52:04 +010031struct scsi_ioctl_command;
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033struct request_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034struct elevator_queue;
Jens Axboe2056a782006-03-23 20:00:26 +010035struct blk_trace;
Jens Axboe3d6392c2007-07-09 12:38:05 +020036struct request;
37struct sg_io_hdr;
Mike Christieaa387cc2011-07-31 22:05:09 +020038struct bsg_job;
Tejun Heo3c798392012-04-16 13:57:25 -070039struct blkcg_gq;
Ming Lei7c94e1c2014-09-25 23:23:43 +080040struct blk_flush_queue;
Christoph Hellwigbbd3e062015-10-15 14:10:48 +020041struct pr_ops;
Josef Bacika7905042018-07-03 09:32:35 -060042struct rq_qos;
Omar Sandoval34dbad52017-03-21 08:56:08 -070043struct blk_queue_stats;
44struct blk_stat_callback;
Satya Tangirala1b262832020-05-14 00:37:17 +000045struct blk_keyslot_manager;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47#define BLKDEV_MIN_RQ 4
48#define BLKDEV_MAX_RQ 128 /* Default maximum */
49
Minwoo Im096392e2018-02-15 23:53:17 +090050/* Must be consistent with blk_mq_poll_stats_bkt() */
Stephen Bates02063192017-04-20 16:59:11 -060051#define BLK_MQ_POLL_STATS_BKTS 16
52
Yufen Yu29ece8b2019-03-18 22:44:41 +080053/* Doing classic polling */
54#define BLK_MQ_POLL_CLASSIC -1
55
Tejun Heo8bd435b2012-04-13 13:11:28 -070056/*
57 * Maximum number of blkcg policies allowed to be registered concurrently.
58 * Defined here to simplify include dependency.
59 */
Jens Axboe01c5f852018-09-11 10:59:53 -060060#define BLKCG_MAX_POLS 5
Tejun Heo8bd435b2012-04-13 13:11:28 -070061
Christoph Hellwig2a842ac2017-06-03 09:38:04 +020062typedef void (rq_end_io_fn)(struct request *, blk_status_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Jens Axboe4aff5e22006-08-10 08:44:47 +020064/*
Christoph Hellwige8064022016-10-20 15:12:13 +020065 * request flags */
66typedef __u32 __bitwise req_flags_t;
67
68/* elevator knows about this request */
69#define RQF_SORTED ((__force req_flags_t)(1 << 0))
70/* drive already may have started this one */
71#define RQF_STARTED ((__force req_flags_t)(1 << 1))
Christoph Hellwige8064022016-10-20 15:12:13 +020072/* may not be passed by ioscheduler */
73#define RQF_SOFTBARRIER ((__force req_flags_t)(1 << 3))
74/* request for flush sequence */
75#define RQF_FLUSH_SEQ ((__force req_flags_t)(1 << 4))
76/* merge of different types, fail separately */
77#define RQF_MIXED_MERGE ((__force req_flags_t)(1 << 5))
78/* track inflight for MQ */
79#define RQF_MQ_INFLIGHT ((__force req_flags_t)(1 << 6))
80/* don't call prep for this one */
81#define RQF_DONTPREP ((__force req_flags_t)(1 << 7))
Christoph Hellwige8064022016-10-20 15:12:13 +020082/* vaguely specified driver internal error. Ignored by the block layer */
83#define RQF_FAILED ((__force req_flags_t)(1 << 10))
84/* don't warn about errors */
85#define RQF_QUIET ((__force req_flags_t)(1 << 11))
86/* elevator private data attached */
87#define RQF_ELVPRIV ((__force req_flags_t)(1 << 12))
Konstantin Khlebnikov4822e902018-10-11 10:07:06 +030088/* account into disk and partition IO statistics */
Christoph Hellwige8064022016-10-20 15:12:13 +020089#define RQF_IO_STAT ((__force req_flags_t)(1 << 13))
90/* request came from our alloc pool */
91#define RQF_ALLOCED ((__force req_flags_t)(1 << 14))
92/* runtime pm request */
93#define RQF_PM ((__force req_flags_t)(1 << 15))
94/* on IO scheduler merge hash */
95#define RQF_HASHED ((__force req_flags_t)(1 << 16))
Konstantin Khlebnikov4822e902018-10-11 10:07:06 +030096/* track IO completion time */
Jens Axboecf43e6b2016-11-07 21:32:37 -070097#define RQF_STATS ((__force req_flags_t)(1 << 17))
Christoph Hellwigf9d03f92016-12-08 15:20:32 -070098/* Look at ->special_vec for the actual data payload instead of the
99 bio chain. */
100#define RQF_SPECIAL_PAYLOAD ((__force req_flags_t)(1 << 18))
Christoph Hellwig6cc77e92017-12-21 15:43:38 +0900101/* The per-zone write lock is held for this request */
102#define RQF_ZONE_WRITE_LOCKED ((__force req_flags_t)(1 << 19))
Jens Axboe76a86f92018-01-10 11:30:56 -0700103/* already slept for hybrid poll */
Keith Busch12f5b932018-05-29 15:52:28 +0200104#define RQF_MQ_POLL_SLEPT ((__force req_flags_t)(1 << 20))
Christoph Hellwigda661262018-06-14 13:58:45 +0200105/* ->timeout has been called, don't expire again */
106#define RQF_TIMED_OUT ((__force req_flags_t)(1 << 21))
Christoph Hellwige8064022016-10-20 15:12:13 +0200107
108/* flags that prevent us from merging requests: */
109#define RQF_NOMERGE_FLAGS \
Christoph Hellwigf9d03f92016-12-08 15:20:32 -0700110 (RQF_STARTED | RQF_SOFTBARRIER | RQF_FLUSH_SEQ | RQF_SPECIAL_PAYLOAD)
Christoph Hellwige8064022016-10-20 15:12:13 +0200111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112/*
Keith Busch12f5b932018-05-29 15:52:28 +0200113 * Request state for blk-mq.
114 */
115enum mq_rq_state {
116 MQ_RQ_IDLE = 0,
117 MQ_RQ_IN_FLIGHT = 1,
118 MQ_RQ_COMPLETE = 2,
119};
120
121/*
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200122 * Try to put the fields that are referenced together in the same cacheline.
123 *
124 * If you modify this structure, make sure to update blk_rq_init() and
125 * especially blk_mq_rq_ctx_init() to take care of the added fields.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 */
127struct request {
Jens Axboe165125e2007-07-24 09:28:11 +0200128 struct request_queue *q;
Jens Axboe320ae512013-10-24 09:20:05 +0100129 struct blk_mq_ctx *mq_ctx;
Jens Axboeea4f9952018-10-29 15:06:13 -0600130 struct blk_mq_hw_ctx *mq_hctx;
Jens Axboee6a1c872006-08-10 09:00:21 +0200131
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600132 unsigned int cmd_flags; /* op and common flags */
Christoph Hellwige8064022016-10-20 15:12:13 +0200133 req_flags_t rq_flags;
Jens Axboed486f1f2017-01-31 12:34:41 -0700134
Minwoo Im2f578aa2019-06-09 05:15:51 +0900135 int tag;
Jens Axboed486f1f2017-01-31 12:34:41 -0700136 int internal_tag;
137
Tejun Heoa2dec7b2009-05-07 22:24:44 +0900138 /* the following two fields are internal, NEVER access directly */
Tejun Heoa2dec7b2009-05-07 22:24:44 +0900139 unsigned int __data_len; /* total data len */
Richard Kennedy181fdde2010-03-19 08:58:16 +0100140 sector_t __sector; /* sector cursor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142 struct bio *bio;
143 struct bio *biotail;
144
Jens Axboe7c3fb702018-01-10 11:46:39 -0700145 struct list_head queuelist;
146
Jens Axboe360f92c2014-04-09 20:27:01 -0600147 /*
148 * The hash is used inside the scheduler, and killed once the
149 * request reaches the dispatch list. The ipi_list is only used
150 * to queue the request for softirq completion, which is long
151 * after the request has been unhashed (and even removed from
152 * the dispatch list).
153 */
154 union {
155 struct hlist_node hash; /* merge hash */
156 struct list_head ipi_list;
157 };
158
Jens Axboee6a1c872006-08-10 09:00:21 +0200159 /*
160 * The rb_node is only used inside the io scheduler, requests
161 * are pruned when moved to the dispatch queue. So let the
Mike Snitzerc1867942011-02-11 11:08:00 +0100162 * completion_data share space with the rb_node.
Jens Axboee6a1c872006-08-10 09:00:21 +0200163 */
164 union {
165 struct rb_node rb_node; /* sort/lookup */
Christoph Hellwigf9d03f92016-12-08 15:20:32 -0700166 struct bio_vec special_vec;
Mike Snitzerc1867942011-02-11 11:08:00 +0100167 void *completion_data;
Christoph Hellwige26738e2017-04-20 16:03:11 +0200168 int error_count; /* for legacy drivers, don't use */
Jens Axboee6a1c872006-08-10 09:00:21 +0200169 };
Jens Axboe98170642006-07-28 09:23:08 +0200170
Jens Axboeff7d1452006-07-12 14:04:37 +0200171 /*
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +0200172 * Three pointers are available for the IO schedulers, if they need
Mike Snitzerc1867942011-02-11 11:08:00 +0100173 * more they have to dynamically allocate it. Flush requests are
174 * never put on the IO scheduler. So let the flush fields share
Tejun Heoa612fdd2011-12-14 00:33:41 +0100175 * space with the elevator data.
Jens Axboeff7d1452006-07-12 14:04:37 +0200176 */
Mike Snitzerc1867942011-02-11 11:08:00 +0100177 union {
Tejun Heoa612fdd2011-12-14 00:33:41 +0100178 struct {
179 struct io_cq *icq;
180 void *priv[2];
181 } elv;
182
Mike Snitzerc1867942011-02-11 11:08:00 +0100183 struct {
184 unsigned int seq;
185 struct list_head list;
Jeff Moyer4853aba2011-08-15 21:37:25 +0200186 rq_end_io_fn *saved_end_io;
Mike Snitzerc1867942011-02-11 11:08:00 +0100187 } flush;
188 };
Jens Axboeff7d1452006-07-12 14:04:37 +0200189
Jens Axboe8f34ee72006-06-13 09:02:34 +0200190 struct gendisk *rq_disk;
Jerome Marchand09e099d2011-01-05 16:57:38 +0100191 struct hd_struct *part;
Tejun Heo6f816b42019-08-28 15:05:57 -0700192#ifdef CONFIG_BLK_RQ_ALLOC_TIME
193 /* Time that the first bio started allocating this request. */
194 u64 alloc_time_ns;
195#endif
196 /* Time that this request was allocated for this IO. */
Omar Sandoval522a7772018-05-09 02:08:53 -0700197 u64 start_time_ns;
Omar Sandoval544ccc8d2018-05-09 02:08:50 -0700198 /* Time that I/O was submitted to the device. */
199 u64 io_start_time_ns;
200
201#ifdef CONFIG_BLK_WBT
202 unsigned short wbt_flags;
203#endif
Hou Tao3d244302019-05-21 15:59:03 +0800204 /*
205 * rq sectors used for blk stats. It has the same value
206 * with blk_rq_sectors(rq), except that it never be zeroed
207 * by completion.
208 */
209 unsigned short stats_sectors;
Omar Sandoval544ccc8d2018-05-09 02:08:50 -0700210
211 /*
212 * Number of scatter-gather DMA addr+len pairs after
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 * physical address coalescing is performed.
214 */
215 unsigned short nr_phys_segments;
Jens Axboe7c3fb702018-01-10 11:46:39 -0700216
Martin K. Petersen13f05c82010-09-10 20:50:10 +0200217#if defined(CONFIG_BLK_DEV_INTEGRITY)
218 unsigned short nr_integrity_segments;
219#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Satya Tangiralaa892c8d2020-05-14 00:37:18 +0000221#ifdef CONFIG_BLK_INLINE_ENCRYPTION
222 struct bio_crypt_ctx *crypt_ctx;
223 struct blk_ksm_keyslot *crypt_keyslot;
224#endif
225
Jens Axboe7c3fb702018-01-10 11:46:39 -0700226 unsigned short write_hint;
Jens Axboe8f34ee72006-06-13 09:02:34 +0200227 unsigned short ioprio;
228
Keith Busch12f5b932018-05-29 15:52:28 +0200229 enum mq_rq_state state;
230 refcount_t ref;
Tejun Heo1d9bd512018-01-09 08:29:48 -0800231
Jens Axboe0b7576d2018-05-29 08:47:57 -0600232 unsigned int timeout;
Christoph Hellwig079076b2018-11-14 17:02:05 +0100233 unsigned long deadline;
Jens Axboe0a72e7f2018-01-09 14:23:42 -0700234
Jens Axboe7c3fb702018-01-10 11:46:39 -0700235 union {
Linus Torvalds0a4b6e22018-01-29 11:51:49 -0800236 struct __call_single_data csd;
Jens Axboe7c3fb702018-01-10 11:46:39 -0700237 u64 fifo_time;
238 };
239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 /*
Jens Axboec00895a2006-09-30 20:29:12 +0200241 * completion callback.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 */
243 rq_end_io_fn *end_io;
244 void *end_io_data;
245};
246
Ming Lei14cb0dc2017-12-18 15:40:43 +0800247static inline bool blk_op_is_scsi(unsigned int op)
248{
249 return op == REQ_OP_SCSI_IN || op == REQ_OP_SCSI_OUT;
250}
251
252static inline bool blk_op_is_private(unsigned int op)
253{
254 return op == REQ_OP_DRV_IN || op == REQ_OP_DRV_OUT;
255}
256
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100257static inline bool blk_rq_is_scsi(struct request *rq)
258{
Ming Lei14cb0dc2017-12-18 15:40:43 +0800259 return blk_op_is_scsi(req_op(rq));
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100260}
261
262static inline bool blk_rq_is_private(struct request *rq)
263{
Ming Lei14cb0dc2017-12-18 15:40:43 +0800264 return blk_op_is_private(req_op(rq));
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100265}
266
Christoph Hellwig57292b52017-01-31 16:57:29 +0100267static inline bool blk_rq_is_passthrough(struct request *rq)
268{
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100269 return blk_rq_is_scsi(rq) || blk_rq_is_private(rq);
Christoph Hellwig57292b52017-01-31 16:57:29 +0100270}
271
Ming Lei14cb0dc2017-12-18 15:40:43 +0800272static inline bool bio_is_passthrough(struct bio *bio)
273{
274 unsigned op = bio_op(bio);
275
276 return blk_op_is_scsi(op) || blk_op_is_private(op);
277}
278
Fernando Luis Vázquez Cao766ca442008-08-14 09:59:13 +0200279static inline unsigned short req_get_ioprio(struct request *req)
280{
281 return req->ioprio;
282}
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284#include <linux/elevator.h>
285
Jens Axboe320ae512013-10-24 09:20:05 +0100286struct blk_queue_ctx;
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288struct bio_vec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
Jens Axboe242f9dc2008-09-14 05:55:09 -0700290enum blk_eh_timer_return {
Christoph Hellwig88b0cfa2018-05-29 15:52:38 +0200291 BLK_EH_DONE, /* drivers has completed the command */
292 BLK_EH_RESET_TIMER, /* reset timer and try again */
Jens Axboe242f9dc2008-09-14 05:55:09 -0700293};
294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295enum blk_queue_state {
296 Queue_down,
297 Queue_up,
298};
299
Shaohua Liee1b6f72015-01-15 17:32:25 -0800300#define BLK_TAG_ALLOC_FIFO 0 /* allocate starting from 0 */
301#define BLK_TAG_ALLOC_RR 1 /* allocate starting from last allocated tag */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
FUJITA Tomonoriabf54392008-08-16 14:10:05 +0900303#define BLK_SCSI_MAX_CMDS (256)
304#define BLK_SCSI_CMD_PER_LONG (BLK_SCSI_MAX_CMDS / (sizeof(long) * 8))
305
Damien Le Moal797476b2016-10-18 15:40:29 +0900306/*
307 * Zoned block device models (zoned limit).
Christoph Hellwig3093a472020-07-20 08:12:49 +0200308 *
309 * Note: This needs to be ordered from the least to the most severe
310 * restrictions for the inheritance in blk_stack_limits() to work.
Damien Le Moal797476b2016-10-18 15:40:29 +0900311 */
312enum blk_zoned_model {
Christoph Hellwig3093a472020-07-20 08:12:49 +0200313 BLK_ZONED_NONE = 0, /* Regular block device */
314 BLK_ZONED_HA, /* Host-aware zoned block device */
315 BLK_ZONED_HM, /* Host-managed zoned block device */
Damien Le Moal797476b2016-10-18 15:40:29 +0900316};
317
Martin K. Petersen025146e2009-05-22 17:17:51 -0400318struct queue_limits {
Changheun Lee9458fa02021-05-03 18:52:03 +0900319 unsigned int bio_max_bytes;
320
Martin K. Petersen025146e2009-05-22 17:17:51 -0400321 unsigned long bounce_pfn;
322 unsigned long seg_boundary_mask;
Keith Busch03100aa2015-08-19 14:24:05 -0700323 unsigned long virt_boundary_mask;
Martin K. Petersen025146e2009-05-22 17:17:51 -0400324
325 unsigned int max_hw_sectors;
Martin K. Petersenca369d52015-11-13 16:46:48 -0500326 unsigned int max_dev_sectors;
Jens Axboe762380a2014-06-05 13:38:39 -0600327 unsigned int chunk_sectors;
Martin K. Petersen025146e2009-05-22 17:17:51 -0400328 unsigned int max_sectors;
329 unsigned int max_segment_size;
Martin K. Petersenc72758f2009-05-22 17:17:53 -0400330 unsigned int physical_block_size;
Mikulas Patockaad6bf882020-01-15 08:35:25 -0500331 unsigned int logical_block_size;
Martin K. Petersenc72758f2009-05-22 17:17:53 -0400332 unsigned int alignment_offset;
333 unsigned int io_min;
334 unsigned int io_opt;
Christoph Hellwig67efc922009-09-30 13:54:20 +0200335 unsigned int max_discard_sectors;
Jens Axboe0034af02015-07-16 09:14:26 -0600336 unsigned int max_hw_discard_sectors;
Martin K. Petersen4363ac72012-09-18 12:19:27 -0400337 unsigned int max_write_same_sectors;
Chaitanya Kulkarnia6f07882016-11-30 12:28:59 -0800338 unsigned int max_write_zeroes_sectors;
Keith Busch0512a752020-05-12 17:55:47 +0900339 unsigned int max_zone_append_sectors;
Martin K. Petersen86b37282009-11-10 11:50:21 +0100340 unsigned int discard_granularity;
341 unsigned int discard_alignment;
Martin K. Petersen025146e2009-05-22 17:17:51 -0400342
Martin K. Petersen8a783622010-02-26 00:20:39 -0500343 unsigned short max_segments;
Martin K. Petersen13f05c82010-09-10 20:50:10 +0200344 unsigned short max_integrity_segments;
Christoph Hellwig1e739732017-02-08 14:46:49 +0100345 unsigned short max_discard_segments;
Martin K. Petersen025146e2009-05-22 17:17:51 -0400346
Martin K. Petersenc72758f2009-05-22 17:17:53 -0400347 unsigned char misaligned;
Martin K. Petersen86b37282009-11-10 11:50:21 +0100348 unsigned char discard_misaligned;
Kent Overstreetc78afc62013-07-11 22:39:53 -0700349 unsigned char raid_partial_stripes_expensive;
Damien Le Moal797476b2016-10-18 15:40:29 +0900350 enum blk_zoned_model zoned;
Martin K. Petersen025146e2009-05-22 17:17:51 -0400351};
352
Christoph Hellwigd4100352019-11-11 11:39:30 +0900353typedef int (*report_zones_cb)(struct blk_zone *zone, unsigned int idx,
354 void *data);
355
Damien Le Moal27ba3e82020-09-15 16:33:46 +0900356void blk_queue_set_zoned(struct gendisk *disk, enum blk_zoned_model model);
357
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900358#ifdef CONFIG_BLK_DEV_ZONED
359
Christoph Hellwigd4100352019-11-11 11:39:30 +0900360#define BLK_ALL_ZONES ((unsigned int)-1)
361int blkdev_report_zones(struct block_device *bdev, sector_t sector,
362 unsigned int nr_zones, report_zones_cb cb, void *data);
Christoph Hellwig9b38bb42019-12-03 10:39:04 +0100363unsigned int blkdev_nr_zones(struct gendisk *disk);
Ajay Joshi6c1b1da2019-10-27 23:05:45 +0900364extern int blkdev_zone_mgmt(struct block_device *bdev, enum req_opf op,
365 sector_t sectors, sector_t nr_sectors,
366 gfp_t gfp_mask);
Damien Le Moale7326712020-05-12 17:55:49 +0900367int blk_revalidate_disk_zones(struct gendisk *disk,
368 void (*update_driver_data)(struct gendisk *disk));
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900369
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900370extern int blkdev_report_zones_ioctl(struct block_device *bdev, fmode_t mode,
371 unsigned int cmd, unsigned long arg);
Ajay Joshie876df12019-10-27 23:05:46 +0900372extern int blkdev_zone_mgmt_ioctl(struct block_device *bdev, fmode_t mode,
373 unsigned int cmd, unsigned long arg);
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900374
375#else /* CONFIG_BLK_DEV_ZONED */
376
Christoph Hellwig9b38bb42019-12-03 10:39:04 +0100377static inline unsigned int blkdev_nr_zones(struct gendisk *disk)
Damien Le Moala91e1382018-10-12 19:08:43 +0900378{
379 return 0;
380}
Damien Le Moalbf505452018-10-12 19:08:50 +0900381
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900382static inline int blkdev_report_zones_ioctl(struct block_device *bdev,
383 fmode_t mode, unsigned int cmd,
384 unsigned long arg)
385{
386 return -ENOTTY;
387}
388
Ajay Joshie876df12019-10-27 23:05:46 +0900389static inline int blkdev_zone_mgmt_ioctl(struct block_device *bdev,
390 fmode_t mode, unsigned int cmd,
391 unsigned long arg)
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900392{
393 return -ENOTTY;
394}
395
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900396#endif /* CONFIG_BLK_DEV_ZONED */
397
Richard Kennedyd7b76302011-07-13 21:17:23 +0200398struct request_queue {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 struct request *last_merge;
Jens Axboeb374d182008-10-31 10:05:07 +0100400 struct elevator_queue *elevator;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Ming Lei0549e872020-10-01 23:48:42 +0800402 struct percpu_ref q_usage_counter;
403
Omar Sandoval34dbad52017-03-21 08:56:08 -0700404 struct blk_queue_stats *stats;
Josef Bacika7905042018-07-03 09:32:35 -0600405 struct rq_qos *rq_qos;
Jens Axboe87760e52016-11-09 12:38:14 -0700406
Jens Axboef8a5b122016-12-13 09:24:51 -0700407 const struct blk_mq_ops *mq_ops;
Jens Axboe320ae512013-10-24 09:20:05 +0100408
Jens Axboe320ae512013-10-24 09:20:05 +0100409 /* sw queues */
Ming Leie6cdb092014-06-03 11:24:06 +0800410 struct blk_mq_ctx __percpu *queue_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100411
Jens Axboed278d4a2016-03-30 10:21:08 -0600412 unsigned int queue_depth;
413
Jens Axboe320ae512013-10-24 09:20:05 +0100414 /* hw dispatch queues */
415 struct blk_mq_hw_ctx **queue_hw_ctx;
416 unsigned int nr_hw_queues;
417
Jan Karadc3b17c2017-02-02 15:56:50 +0100418 struct backing_dev_info *backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420 /*
421 * The queue owner gets to use this for whatever they like.
422 * ll_rw_blk doesn't touch it.
423 */
424 void *queuedata;
425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 * various queue flags, see QUEUE_* below
428 */
429 unsigned long queue_flags;
Bart Van Asschecd84a622018-09-26 14:01:04 -0700430 /*
431 * Number of contexts that have called blk_set_pm_only(). If this
Bart Van Assche782c9ef2020-12-08 21:29:50 -0800432 * counter is above zero then only RQF_PM requests are processed.
Bart Van Asschecd84a622018-09-26 14:01:04 -0700433 */
434 atomic_t pm_only;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
436 /*
Tejun Heoa73f7302011-12-14 00:33:37 +0100437 * ida allocated id for this queue. Used to index queues from
438 * ioctx.
439 */
440 int id;
441
442 /*
Richard Kennedyd7b76302011-07-13 21:17:23 +0200443 * queue needs bounce pages for pages above this limit
444 */
445 gfp_t bounce_gfp;
446
Christoph Hellwig0d945c12018-11-15 12:17:28 -0700447 spinlock_t queue_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449 /*
450 * queue kobject
451 */
452 struct kobject kobj;
453
Jens Axboe320ae512013-10-24 09:20:05 +0100454 /*
455 * mq queue kobject
456 */
Ming Lei1db49092018-11-20 09:44:35 +0800457 struct kobject *mq_kobj;
Jens Axboe320ae512013-10-24 09:20:05 +0100458
Dan Williamsac6fc482015-10-21 13:20:18 -0400459#ifdef CONFIG_BLK_DEV_INTEGRITY
460 struct blk_integrity integrity;
461#endif /* CONFIG_BLK_DEV_INTEGRITY */
462
Rafael J. Wysocki47fafbc2014-12-04 01:00:23 +0100463#ifdef CONFIG_PM
Lin Ming6c954662013-03-23 11:42:26 +0800464 struct device *dev;
Geert Uytterhoevendb04e182020-08-19 14:34:03 +0200465 enum rpm_status rpm_status;
Lin Ming6c954662013-03-23 11:42:26 +0800466 unsigned int nr_pending;
467#endif
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 /*
470 * queue settings
471 */
472 unsigned long nr_requests; /* Max # of requests */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Tejun Heoe3790c72008-03-04 11:18:17 +0100474 unsigned int dma_pad_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 unsigned int dma_alignment;
476
Satya Tangirala1b262832020-05-14 00:37:17 +0000477#ifdef CONFIG_BLK_INLINE_ENCRYPTION
478 /* Inline crypto capabilities */
479 struct blk_keyslot_manager *ksm;
480#endif
481
Jens Axboe242f9dc2008-09-14 05:55:09 -0700482 unsigned int rq_timeout;
Jens Axboe64f1c212016-11-14 13:03:03 -0700483 int poll_nsec;
Omar Sandoval34dbad52017-03-21 08:56:08 -0700484
485 struct blk_stat_callback *poll_cb;
Stephen Bates02063192017-04-20 16:59:11 -0600486 struct blk_rq_stat poll_stat[BLK_MQ_POLL_STATS_BKTS];
Omar Sandoval34dbad52017-03-21 08:56:08 -0700487
Jens Axboe242f9dc2008-09-14 05:55:09 -0700488 struct timer_list timeout;
Christoph Hellwig287922e2015-10-30 20:57:30 +0800489 struct work_struct timeout_work;
Jens Axboe242f9dc2008-09-14 05:55:09 -0700490
John Garrybccf5e22020-08-19 23:20:26 +0800491 atomic_t nr_active_requests_shared_sbitmap;
492
Tejun Heoa612fdd2011-12-14 00:33:41 +0100493 struct list_head icq_list;
Tejun Heo4eef3042012-03-05 13:15:18 -0800494#ifdef CONFIG_BLK_CGROUP
Tejun Heoa2b16932012-04-13 13:11:33 -0700495 DECLARE_BITMAP (blkcg_pols, BLKCG_MAX_POLS);
Tejun Heo3c798392012-04-16 13:57:25 -0700496 struct blkcg_gq *root_blkg;
Tejun Heo03aa2642012-03-05 13:15:19 -0800497 struct list_head blkg_list;
Tejun Heo4eef3042012-03-05 13:15:18 -0800498#endif
Tejun Heoa612fdd2011-12-14 00:33:41 +0100499
Martin K. Petersen025146e2009-05-22 17:17:51 -0400500 struct queue_limits limits;
501
Damien Le Moal68c43f12019-09-05 18:51:31 +0900502 unsigned int required_elevator_features;
503
Bart Van Assche6a5ac982018-06-15 14:55:21 -0700504#ifdef CONFIG_BLK_DEV_ZONED
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 /*
Christoph Hellwig6cc77e92017-12-21 15:43:38 +0900506 * Zoned block device information for request dispatch control.
507 * nr_zones is the total number of zones of the device. This is always
Christoph Hellwigf216fdd2019-12-03 10:39:05 +0100508 * 0 for regular block devices. conv_zones_bitmap is a bitmap of nr_zones
509 * bits which indicates if a zone is conventional (bit set) or
510 * sequential (bit clear). seq_zones_wlock is a bitmap of nr_zones
Christoph Hellwig6cc77e92017-12-21 15:43:38 +0900511 * bits which indicates if a zone is write locked, that is, if a write
512 * request targeting the zone was dispatched. All three fields are
513 * initialized by the low level device driver (e.g. scsi/sd.c).
514 * Stacking drivers (device mappers) may or may not initialize
515 * these fields.
Bart Van Asscheccce20f2018-04-16 18:04:41 -0700516 *
517 * Reads of this information must be protected with blk_queue_enter() /
518 * blk_queue_exit(). Modifying this information is only allowed while
519 * no requests are being processed. See also blk_mq_freeze_queue() and
520 * blk_mq_unfreeze_queue().
Christoph Hellwig6cc77e92017-12-21 15:43:38 +0900521 */
522 unsigned int nr_zones;
Christoph Hellwigf216fdd2019-12-03 10:39:05 +0100523 unsigned long *conv_zones_bitmap;
Christoph Hellwig6cc77e92017-12-21 15:43:38 +0900524 unsigned long *seq_zones_wlock;
Niklas Cassele15864f2020-07-14 23:18:23 +0200525 unsigned int max_open_zones;
Niklas Cassel659bf822020-07-14 23:18:24 +0200526 unsigned int max_active_zones;
Bart Van Assche6a5ac982018-06-15 14:55:21 -0700527#endif /* CONFIG_BLK_DEV_ZONED */
Christoph Hellwig6cc77e92017-12-21 15:43:38 +0900528
529 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 * sg stuff
531 */
532 unsigned int sg_timeout;
533 unsigned int sg_reserved_size;
Christoph Lameter19460892005-06-23 00:08:19 -0700534 int node;
Luis Chamberlain85e0cbb2020-06-19 20:47:30 +0000535 struct mutex debugfs_mutex;
Alexey Dobriyan6c5c9342006-09-29 01:59:40 -0700536#ifdef CONFIG_BLK_DEV_IO_TRACE
Jan Karac780e862020-02-06 15:28:12 +0100537 struct blk_trace __rcu *blk_trace;
Alexey Dobriyan6c5c9342006-09-29 01:59:40 -0700538#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 /*
Tejun Heo4913efe2010-09-03 11:56:16 +0200540 * for flush operations
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 */
Ming Lei7c94e1c2014-09-25 23:23:43 +0800542 struct blk_flush_queue *fq;
Al Viro483f4af2006-03-18 18:34:37 -0500543
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600544 struct list_head requeue_list;
545 spinlock_t requeue_lock;
Mike Snitzer28494502016-09-14 13:28:30 -0400546 struct delayed_work requeue_work;
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600547
Al Viro483f4af2006-03-18 18:34:37 -0500548 struct mutex sysfs_lock;
Ming Leicecf5d82019-08-27 19:01:48 +0800549 struct mutex sysfs_dir_lock;
FUJITA Tomonorid351af02007-07-09 12:40:35 +0200550
Ming Lei2f8f1332019-04-30 09:52:27 +0800551 /*
552 * for reusing dead hctx instance in case of updating
553 * nr_hw_queues
554 */
555 struct list_head unused_hctx_list;
556 spinlock_t unused_hctx_lock;
557
Bob Liu7996a8b2019-05-21 11:25:55 +0800558 int mq_freeze_depth;
Tejun Heod7325802012-03-05 13:14:58 -0800559
FUJITA Tomonorid351af02007-07-09 12:40:35 +0200560#if defined(CONFIG_BLK_DEV_BSG)
561 struct bsg_class_device bsg_dev;
562#endif
Vivek Goyale43473b2010-09-15 17:06:35 -0400563
564#ifdef CONFIG_BLK_DEV_THROTTLING
565 /* Throttle data */
566 struct throtl_data *td;
567#endif
Tejun Heo548bc8e2013-01-09 08:05:13 -0800568 struct rcu_head rcu_head;
Jens Axboe320ae512013-10-24 09:20:05 +0100569 wait_queue_head_t mq_freeze_wq;
Bob Liu7996a8b2019-05-21 11:25:55 +0800570 /*
571 * Protect concurrent access to q_usage_counter by
572 * percpu_ref_kill() and percpu_ref_reinit().
573 */
574 struct mutex mq_freeze_lock;
Jens Axboe0d2602c2014-05-13 15:10:52 -0600575
576 struct blk_mq_tag_set *tag_set;
577 struct list_head tag_set_list;
Kent Overstreet338aa962018-05-20 18:25:47 -0400578 struct bio_set bio_split;
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900579
Omar Sandoval07e4fea2017-01-25 08:06:40 -0800580 struct dentry *debugfs_dir;
Luis Chamberlain85e0cbb2020-06-19 20:47:30 +0000581
582#ifdef CONFIG_BLK_DEBUG_FS
Omar Sandovald332ce02017-05-04 08:24:40 -0600583 struct dentry *sched_debugfs_dir;
Ming Leicc566942018-12-17 09:46:00 +0800584 struct dentry *rqos_debugfs_dir;
Omar Sandoval07e4fea2017-01-25 08:06:40 -0800585#endif
586
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900587 bool mq_sysfs_init_done;
Christoph Hellwig6d247d72017-01-27 09:51:45 -0700588
589 size_t cmd_size;
Bart Van Asschedc9edc42017-06-14 13:27:50 -0600590
Jens Axboef793dfd2017-06-26 08:15:27 -0600591#define BLK_MAX_WRITE_HINTS 5
592 u64 write_hints[BLK_MAX_WRITE_HINTS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593};
594
Hou Taobfe373f2020-04-28 09:54:56 +0800595/* Keep blk_queue_flag_name[] in sync with the definitions below */
Jens Axboeeca7abf2019-02-09 15:42:07 -0700596#define QUEUE_FLAG_STOPPED 0 /* queue is stopped */
597#define QUEUE_FLAG_DYING 1 /* queue being torn down */
Jens Axboeeca7abf2019-02-09 15:42:07 -0700598#define QUEUE_FLAG_NOMERGES 3 /* disable merge attempts */
599#define QUEUE_FLAG_SAME_COMP 4 /* complete on same CPU-group */
600#define QUEUE_FLAG_FAIL_IO 5 /* fake timeout */
601#define QUEUE_FLAG_NONROT 6 /* non-rotational device (SSD) */
602#define QUEUE_FLAG_VIRT QUEUE_FLAG_NONROT /* paravirt device */
603#define QUEUE_FLAG_IO_STAT 7 /* do disk/partitions IO accounting */
604#define QUEUE_FLAG_DISCARD 8 /* supports DISCARD */
605#define QUEUE_FLAG_NOXMERGES 9 /* No extended merges */
606#define QUEUE_FLAG_ADD_RANDOM 10 /* Contributes to random pool */
607#define QUEUE_FLAG_SECERASE 11 /* supports secure erase */
608#define QUEUE_FLAG_SAME_FORCE 12 /* force complete on same CPU */
609#define QUEUE_FLAG_DEAD 13 /* queue tear-down finished */
610#define QUEUE_FLAG_INIT_DONE 14 /* queue is initialized */
Christoph Hellwig1cb039f2020-09-24 08:51:38 +0200611#define QUEUE_FLAG_STABLE_WRITES 15 /* don't modify blks until WB is done */
Jens Axboeeca7abf2019-02-09 15:42:07 -0700612#define QUEUE_FLAG_POLL 16 /* IO polling enabled if set */
613#define QUEUE_FLAG_WC 17 /* Write back caching */
614#define QUEUE_FLAG_FUA 18 /* device supports FUA writes */
615#define QUEUE_FLAG_DAX 19 /* device supports DAX */
616#define QUEUE_FLAG_STATS 20 /* track IO start and completion times */
617#define QUEUE_FLAG_POLL_STATS 21 /* collecting stats for hybrid polling */
618#define QUEUE_FLAG_REGISTERED 22 /* queue has been registered to a disk */
619#define QUEUE_FLAG_SCSI_PASSTHROUGH 23 /* queue supports SCSI commands */
620#define QUEUE_FLAG_QUIESCED 24 /* queue has been quiesced */
621#define QUEUE_FLAG_PCI_P2PDMA 25 /* device supports PCI p2p requests */
Chaitanya Kulkarnie84e8f02019-08-01 10:26:35 -0700622#define QUEUE_FLAG_ZONE_RESETALL 26 /* supports Zone Reset All */
Tejun Heo6f816b42019-08-28 15:05:57 -0700623#define QUEUE_FLAG_RQ_ALLOC_TIME 27 /* record rq->alloc_time_ns */
Mike Snitzer021a2442020-09-23 16:06:51 -0400624#define QUEUE_FLAG_HCTX_ACTIVE 28 /* at least one blk-mq hctx is active */
625#define QUEUE_FLAG_NOWAIT 29 /* device supports NOWAIT */
Tejun Heo797e7db2006-01-06 09:51:03 +0100626
Jens Axboe94eddfb2013-11-19 09:25:07 -0700627#define QUEUE_FLAG_MQ_DEFAULT ((1 << QUEUE_FLAG_IO_STAT) | \
Mike Snitzer021a2442020-09-23 16:06:51 -0400628 (1 << QUEUE_FLAG_SAME_COMP) | \
629 (1 << QUEUE_FLAG_NOWAIT))
Jens Axboe94eddfb2013-11-19 09:25:07 -0700630
Bart Van Assche8814ce82018-03-07 17:10:04 -0800631void blk_queue_flag_set(unsigned int flag, struct request_queue *q);
632void blk_queue_flag_clear(unsigned int flag, struct request_queue *q);
633bool blk_queue_flag_test_and_set(unsigned int flag, struct request_queue *q);
Bart Van Assche8814ce82018-03-07 17:10:04 -0800634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635#define blk_queue_stopped(q) test_bit(QUEUE_FLAG_STOPPED, &(q)->queue_flags)
Bart Van Assche3f3299d2012-11-28 13:42:38 +0100636#define blk_queue_dying(q) test_bit(QUEUE_FLAG_DYING, &(q)->queue_flags)
Bart Van Asschec246e802012-12-06 14:32:01 +0100637#define blk_queue_dead(q) test_bit(QUEUE_FLAG_DEAD, &(q)->queue_flags)
Jens Axboe320ae512013-10-24 09:20:05 +0100638#define blk_queue_init_done(q) test_bit(QUEUE_FLAG_INIT_DONE, &(q)->queue_flags)
Alan D. Brunelleac9fafa2008-04-29 14:44:19 +0200639#define blk_queue_nomerges(q) test_bit(QUEUE_FLAG_NOMERGES, &(q)->queue_flags)
Alan D. Brunelle488991e2010-01-29 09:04:08 +0100640#define blk_queue_noxmerges(q) \
641 test_bit(QUEUE_FLAG_NOXMERGES, &(q)->queue_flags)
Jens Axboea68bbddba2008-09-24 13:03:33 +0200642#define blk_queue_nonrot(q) test_bit(QUEUE_FLAG_NONROT, &(q)->queue_flags)
Christoph Hellwig1cb039f2020-09-24 08:51:38 +0200643#define blk_queue_stable_writes(q) \
644 test_bit(QUEUE_FLAG_STABLE_WRITES, &(q)->queue_flags)
Jens Axboebc58ba92009-01-23 10:54:44 +0100645#define blk_queue_io_stat(q) test_bit(QUEUE_FLAG_IO_STAT, &(q)->queue_flags)
Jens Axboee2e1a142010-06-09 10:42:09 +0200646#define blk_queue_add_random(q) test_bit(QUEUE_FLAG_ADD_RANDOM, &(q)->queue_flags)
Christoph Hellwigc15227d2009-09-30 13:52:12 +0200647#define blk_queue_discard(q) test_bit(QUEUE_FLAG_DISCARD, &(q)->queue_flags)
Chaitanya Kulkarnie84e8f02019-08-01 10:26:35 -0700648#define blk_queue_zone_resetall(q) \
649 test_bit(QUEUE_FLAG_ZONE_RESETALL, &(q)->queue_flags)
Christoph Hellwig288dab82016-06-09 16:00:36 +0200650#define blk_queue_secure_erase(q) \
651 (test_bit(QUEUE_FLAG_SECERASE, &(q)->queue_flags))
Toshi Kani163d4ba2016-06-23 17:05:50 -0400652#define blk_queue_dax(q) test_bit(QUEUE_FLAG_DAX, &(q)->queue_flags)
Bart Van Assche9efc1602017-05-31 14:43:46 -0700653#define blk_queue_scsi_passthrough(q) \
654 test_bit(QUEUE_FLAG_SCSI_PASSTHROUGH, &(q)->queue_flags)
Logan Gunthorpe49d92c02018-10-04 15:27:41 -0600655#define blk_queue_pci_p2pdma(q) \
656 test_bit(QUEUE_FLAG_PCI_P2PDMA, &(q)->queue_flags)
Tejun Heo6f816b42019-08-28 15:05:57 -0700657#ifdef CONFIG_BLK_RQ_ALLOC_TIME
658#define blk_queue_rq_alloc_time(q) \
659 test_bit(QUEUE_FLAG_RQ_ALLOC_TIME, &(q)->queue_flags)
660#else
661#define blk_queue_rq_alloc_time(q) false
662#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200664#define blk_noretry_request(rq) \
665 ((rq)->cmd_flags & (REQ_FAILFAST_DEV|REQ_FAILFAST_TRANSPORT| \
666 REQ_FAILFAST_DRIVER))
Ming Leif4560ff2017-06-18 14:24:27 -0600667#define blk_queue_quiesced(q) test_bit(QUEUE_FLAG_QUIESCED, &(q)->queue_flags)
Bart Van Asschecd84a622018-09-26 14:01:04 -0700668#define blk_queue_pm_only(q) atomic_read(&(q)->pm_only)
Dave Chinner0ce91442018-04-18 14:08:27 +1000669#define blk_queue_fua(q) test_bit(QUEUE_FLAG_FUA, &(q)->queue_flags)
Ming Lei58c898b2019-08-27 19:01:47 +0800670#define blk_queue_registered(q) test_bit(QUEUE_FLAG_REGISTERED, &(q)->queue_flags)
Mike Snitzer021a2442020-09-23 16:06:51 -0400671#define blk_queue_nowait(q) test_bit(QUEUE_FLAG_NOWAIT, &(q)->queue_flags)
Bart Van Asschec9254f22017-11-09 10:49:57 -0800672
Bart Van Asschecd84a622018-09-26 14:01:04 -0700673extern void blk_set_pm_only(struct request_queue *q);
674extern void blk_clear_pm_only(struct request_queue *q);
Jens Axboe4aff5e22006-08-10 08:44:47 +0200675
Christoph Hellwig57292b52017-01-31 16:57:29 +0100676static inline bool blk_account_rq(struct request *rq)
677{
678 return (rq->rq_flags & RQF_STARTED) && !blk_rq_is_passthrough(rq);
679}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681#define list_entry_rq(ptr) list_entry((ptr), struct request, queuelist)
682
Mike Christie4e1b2d522016-06-05 14:32:22 -0500683#define rq_data_dir(rq) (op_is_write(req_op(rq)) ? WRITE : READ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Christoph Hellwig9d9de532019-03-03 08:18:30 -0700685#define rq_dma_dir(rq) \
686 (op_is_write(req_op(rq)) ? DMA_TO_DEVICE : DMA_FROM_DEVICE)
687
Christoph Hellwig3ab3a032019-03-03 08:40:36 -0700688#define dma_map_bvec(dev, bv, dir, attrs) \
689 dma_map_page_attrs(dev, (bv)->bv_page, (bv)->bv_offset, (bv)->bv_len, \
690 (dir), (attrs))
691
Jens Axboe344e9ff2018-11-15 12:22:51 -0700692static inline bool queue_is_mq(struct request_queue *q)
Jens Axboe49fd5242014-04-16 10:57:18 -0600693{
Jens Axboea1ce35f2018-10-29 10:23:51 -0600694 return q->mq_ops;
Jens Axboe49fd5242014-04-16 10:57:18 -0600695}
696
Alan Sternd55d15a2020-12-08 21:29:51 -0800697#ifdef CONFIG_PM
698static inline enum rpm_status queue_rpm_status(struct request_queue *q)
699{
700 return q->rpm_status;
701}
702#else
703static inline enum rpm_status queue_rpm_status(struct request_queue *q)
704{
705 return RPM_ACTIVE;
706}
707#endif
708
Damien Le Moal797476b2016-10-18 15:40:29 +0900709static inline enum blk_zoned_model
710blk_queue_zoned_model(struct request_queue *q)
711{
Christoph Hellwig6fcd6692020-08-20 09:56:58 +0200712 if (IS_ENABLED(CONFIG_BLK_DEV_ZONED))
713 return q->limits.zoned;
714 return BLK_ZONED_NONE;
Damien Le Moal797476b2016-10-18 15:40:29 +0900715}
716
717static inline bool blk_queue_is_zoned(struct request_queue *q)
718{
719 switch (blk_queue_zoned_model(q)) {
720 case BLK_ZONED_HA:
721 case BLK_ZONED_HM:
722 return true;
723 default:
724 return false;
725 }
726}
727
Damien Le Moal113ab722019-07-10 13:53:10 +0900728static inline sector_t blk_queue_zone_sectors(struct request_queue *q)
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900729{
730 return blk_queue_is_zoned(q) ? q->limits.chunk_sectors : 0;
731}
732
Bart Van Assche6a5ac982018-06-15 14:55:21 -0700733#ifdef CONFIG_BLK_DEV_ZONED
Damien Le Moal965b6522018-10-12 19:08:48 +0900734static inline unsigned int blk_queue_nr_zones(struct request_queue *q)
735{
736 return blk_queue_is_zoned(q) ? q->nr_zones : 0;
737}
738
Christoph Hellwig6cc77e92017-12-21 15:43:38 +0900739static inline unsigned int blk_queue_zone_no(struct request_queue *q,
740 sector_t sector)
741{
742 if (!blk_queue_is_zoned(q))
743 return 0;
744 return sector >> ilog2(q->limits.chunk_sectors);
745}
746
747static inline bool blk_queue_zone_is_seq(struct request_queue *q,
748 sector_t sector)
749{
Christoph Hellwigf216fdd2019-12-03 10:39:05 +0100750 if (!blk_queue_is_zoned(q))
Christoph Hellwig6cc77e92017-12-21 15:43:38 +0900751 return false;
Christoph Hellwigf216fdd2019-12-03 10:39:05 +0100752 if (!q->conv_zones_bitmap)
753 return true;
754 return !test_bit(blk_queue_zone_no(q, sector), q->conv_zones_bitmap);
Christoph Hellwig6cc77e92017-12-21 15:43:38 +0900755}
Niklas Cassele15864f2020-07-14 23:18:23 +0200756
757static inline void blk_queue_max_open_zones(struct request_queue *q,
758 unsigned int max_open_zones)
759{
760 q->max_open_zones = max_open_zones;
761}
762
763static inline unsigned int queue_max_open_zones(const struct request_queue *q)
764{
765 return q->max_open_zones;
766}
Niklas Cassel659bf822020-07-14 23:18:24 +0200767
768static inline void blk_queue_max_active_zones(struct request_queue *q,
769 unsigned int max_active_zones)
770{
771 q->max_active_zones = max_active_zones;
772}
773
774static inline unsigned int queue_max_active_zones(const struct request_queue *q)
775{
776 return q->max_active_zones;
777}
Damien Le Moal965b6522018-10-12 19:08:48 +0900778#else /* CONFIG_BLK_DEV_ZONED */
779static inline unsigned int blk_queue_nr_zones(struct request_queue *q)
780{
781 return 0;
782}
Johannes Thumshirn02992df82020-05-12 17:55:45 +0900783static inline bool blk_queue_zone_is_seq(struct request_queue *q,
784 sector_t sector)
785{
786 return false;
787}
788static inline unsigned int blk_queue_zone_no(struct request_queue *q,
789 sector_t sector)
790{
791 return 0;
792}
Niklas Cassele15864f2020-07-14 23:18:23 +0200793static inline unsigned int queue_max_open_zones(const struct request_queue *q)
794{
795 return 0;
796}
Niklas Cassel659bf822020-07-14 23:18:24 +0200797static inline unsigned int queue_max_active_zones(const struct request_queue *q)
798{
799 return 0;
800}
Bart Van Assche6a5ac982018-06-15 14:55:21 -0700801#endif /* CONFIG_BLK_DEV_ZONED */
Christoph Hellwig6cc77e92017-12-21 15:43:38 +0900802
Jens Axboe1faa16d2009-04-06 14:48:01 +0200803static inline bool rq_is_sync(struct request *rq)
804{
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600805 return op_is_sync(rq->cmd_flags);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200806}
807
Martin K. Petersene2a60da2012-09-18 12:19:25 -0400808static inline bool rq_mergeable(struct request *rq)
809{
Christoph Hellwig57292b52017-01-31 16:57:29 +0100810 if (blk_rq_is_passthrough(rq))
Martin K. Petersene2a60da2012-09-18 12:19:25 -0400811 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Mike Christie3a5e02c2016-06-05 14:32:23 -0500813 if (req_op(rq) == REQ_OP_FLUSH)
814 return false;
815
Chaitanya Kulkarnia6f07882016-11-30 12:28:59 -0800816 if (req_op(rq) == REQ_OP_WRITE_ZEROES)
817 return false;
818
Keith Busch0512a752020-05-12 17:55:47 +0900819 if (req_op(rq) == REQ_OP_ZONE_APPEND)
820 return false;
821
Martin K. Petersene2a60da2012-09-18 12:19:25 -0400822 if (rq->cmd_flags & REQ_NOMERGE_FLAGS)
823 return false;
Christoph Hellwige8064022016-10-20 15:12:13 +0200824 if (rq->rq_flags & RQF_NOMERGE_FLAGS)
825 return false;
Martin K. Petersene2a60da2012-09-18 12:19:25 -0400826
827 return true;
828}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
Martin K. Petersen4363ac72012-09-18 12:19:27 -0400830static inline bool blk_write_same_mergeable(struct bio *a, struct bio *b)
831{
Christoph Hellwigefbeccd2017-06-19 09:24:41 +0200832 if (bio_page(a) == bio_page(b) &&
833 bio_offset(a) == bio_offset(b))
Martin K. Petersen4363ac72012-09-18 12:19:27 -0400834 return true;
835
836 return false;
837}
838
Jens Axboed278d4a2016-03-30 10:21:08 -0600839static inline unsigned int blk_queue_depth(struct request_queue *q)
840{
841 if (q->queue_depth)
842 return q->queue_depth;
843
844 return q->nr_requests;
845}
846
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847extern unsigned long blk_max_low_pfn, blk_max_pfn;
848
849/*
850 * standard bounce addresses:
851 *
852 * BLK_BOUNCE_HIGH : bounce all highmem pages
853 * BLK_BOUNCE_ANY : don't bounce anything
854 * BLK_BOUNCE_ISA : bounce pages above ISA DMA boundary
855 */
Andi Kleen24728922008-04-21 09:51:05 +0200856
857#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858#define BLK_BOUNCE_HIGH ((u64)blk_max_low_pfn << PAGE_SHIFT)
Andi Kleen24728922008-04-21 09:51:05 +0200859#else
860#define BLK_BOUNCE_HIGH -1ULL
861#endif
862#define BLK_BOUNCE_ANY (-1ULL)
FUJITA Tomonoribfe17232010-05-31 15:59:03 +0900863#define BLK_BOUNCE_ISA (DMA_BIT_MASK(24))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Jens Axboe3d6392c2007-07-09 12:38:05 +0200865/*
866 * default timeout for SG_IO if none specified
867 */
868#define BLK_DEFAULT_SG_TIMEOUT (60 * HZ)
Linus Torvaldsf2f1fa72008-12-05 14:49:18 -0800869#define BLK_MIN_SG_TIMEOUT (7 * HZ)
Jens Axboe3d6392c2007-07-09 12:38:05 +0200870
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900871struct rq_map_data {
872 struct page **pages;
873 int page_order;
874 int nr_entries;
FUJITA Tomonori56c451f2008-12-18 14:49:37 +0900875 unsigned long offset;
FUJITA Tomonori97ae77a2008-12-18 14:49:38 +0900876 int null_mapped;
FUJITA Tomonoriecb554a2009-07-09 14:46:53 +0200877 int from_user;
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900878};
879
NeilBrown5705f702007-09-25 12:35:59 +0200880struct req_iterator {
Kent Overstreet79886132013-11-23 17:19:00 -0800881 struct bvec_iter iter;
NeilBrown5705f702007-09-25 12:35:59 +0200882 struct bio *bio;
883};
884
885/* This should not be used directly - use rq_for_each_segment */
Jens Axboe1e428072009-02-23 09:03:10 +0100886#define for_each_bio(_bio) \
887 for (; _bio; _bio = _bio->bi_next)
NeilBrown5705f702007-09-25 12:35:59 +0200888#define __rq_for_each_bio(_bio, rq) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 if ((rq->bio)) \
890 for (_bio = (rq)->bio; _bio; _bio = _bio->bi_next)
891
NeilBrown5705f702007-09-25 12:35:59 +0200892#define rq_for_each_segment(bvl, _rq, _iter) \
893 __rq_for_each_bio(_iter.bio, _rq) \
Kent Overstreet79886132013-11-23 17:19:00 -0800894 bio_for_each_segment(bvl, _iter.bio, _iter.iter)
NeilBrown5705f702007-09-25 12:35:59 +0200895
Ming Leid18d9172019-02-15 19:13:11 +0800896#define rq_for_each_bvec(bvl, _rq, _iter) \
897 __rq_for_each_bio(_iter.bio, _rq) \
898 bio_for_each_bvec(bvl, _iter.bio, _iter.iter)
899
Kent Overstreet4550dd62013-08-07 14:26:21 -0700900#define rq_iter_last(bvec, _iter) \
Kent Overstreet79886132013-11-23 17:19:00 -0800901 (_iter.bio->bi_next == NULL && \
Kent Overstreet4550dd62013-08-07 14:26:21 -0700902 bio_iter_last(bvec, _iter.iter))
NeilBrown5705f702007-09-25 12:35:59 +0200903
Ilya Loginov2d4dc892009-11-26 09:16:19 +0100904#ifndef ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
905# error "You should define ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE for your platform"
906#endif
907#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
908extern void rq_flush_dcache_pages(struct request *rq);
909#else
910static inline void rq_flush_dcache_pages(struct request *rq)
911{
912}
913#endif
914
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915extern int blk_register_queue(struct gendisk *disk);
916extern void blk_unregister_queue(struct gendisk *disk);
Christoph Hellwiged00aab2020-07-01 10:59:44 +0200917blk_qc_t submit_bio_noacct(struct bio *bio);
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200918extern void blk_rq_init(struct request_queue *q, struct request *rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919extern void blk_put_request(struct request *);
Bart Van Asschecd6ce142017-06-20 11:15:39 -0700920extern struct request *blk_get_request(struct request_queue *, unsigned int op,
Christoph Hellwigff005a02018-05-09 09:54:05 +0200921 blk_mq_req_flags_t flags);
Kiyoshi Uedaef9e3fa2008-10-01 16:12:15 +0200922extern int blk_lld_busy(struct request_queue *q);
Mike Snitzer78d8e582015-06-26 10:01:13 -0400923extern int blk_rq_prep_clone(struct request *rq, struct request *rq_src,
924 struct bio_set *bs, gfp_t gfp_mask,
925 int (*bio_ctr)(struct bio *, struct bio *, void *),
926 void *data);
927extern void blk_rq_unprep_clone(struct request *rq);
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200928extern blk_status_t blk_insert_cloned_request(struct request_queue *q,
Kiyoshi Ueda82124d62008-09-18 10:45:38 -0400929 struct request *rq);
Jens Axboe0abc2a12017-12-18 15:40:44 +0800930extern int blk_rq_append_bio(struct request *rq, struct bio **bio);
Christoph Hellwigf695ca32020-07-01 10:59:39 +0200931extern void blk_queue_split(struct bio **);
Paolo Bonzini0bfc96c2012-01-12 16:01:28 +0100932extern int scsi_verify_blk_ioctl(struct block_device *, unsigned int);
Paolo Bonzini577ebb32012-01-12 16:01:27 +0100933extern int scsi_cmd_blk_ioctl(struct block_device *, fmode_t,
934 unsigned int, void __user *);
Al Viro74f3c8a2007-08-27 15:38:10 -0400935extern int scsi_cmd_ioctl(struct request_queue *, struct gendisk *, fmode_t,
936 unsigned int, void __user *);
Al Viroe915e872008-09-02 17:16:41 -0400937extern int sg_scsi_ioctl(struct request_queue *, struct gendisk *, fmode_t,
938 struct scsi_ioctl_command __user *);
Arnd Bergmann98aaaec2019-03-14 17:45:18 +0100939extern int get_sg_io_hdr(struct sg_io_hdr *hdr, const void __user *argp);
940extern int put_sg_io_hdr(const struct sg_io_hdr *hdr, void __user *argp);
Andrew Morton3fcfab12006-10-19 23:28:16 -0700941
Bart Van Assche9a95e4e2017-11-09 10:49:59 -0800942extern int blk_queue_enter(struct request_queue *q, blk_mq_req_flags_t flags);
Dan Williams2e6edc952015-11-19 13:29:28 -0800943extern void blk_queue_exit(struct request_queue *q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944extern void blk_sync_queue(struct request_queue *q);
FUJITA Tomonoria3bce902008-08-28 16:17:05 +0900945extern int blk_rq_map_user(struct request_queue *, struct request *,
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900946 struct rq_map_data *, void __user *, unsigned long,
947 gfp_t);
Jens Axboe8e5cfc42006-12-19 11:12:46 +0100948extern int blk_rq_unmap_user(struct bio *);
Jens Axboe165125e2007-07-24 09:28:11 +0200949extern int blk_rq_map_kern(struct request_queue *, struct request *, void *, unsigned int, gfp_t);
950extern int blk_rq_map_user_iov(struct request_queue *, struct request *,
Kent Overstreet26e49cf2015-01-18 16:16:31 +0100951 struct rq_map_data *, const struct iov_iter *,
952 gfp_t);
Christoph Hellwigb7819b92017-04-20 16:02:55 +0200953extern void blk_execute_rq(struct request_queue *, struct gendisk *,
James Bottomley 994ca9a2005-06-20 14:11:09 +0200954 struct request *, int);
Jens Axboe165125e2007-07-24 09:28:11 +0200955extern void blk_execute_rq_nowait(struct request_queue *, struct gendisk *,
Jens Axboe15fc8582006-01-06 10:00:50 +0100956 struct request *, int, rq_end_io_fn *);
Mike Christie6e39b692005-11-11 05:30:24 -0600957
Chaitanya Kulkarnie47bc4e2019-06-20 10:59:16 -0700958/* Helper to convert REQ_OP_XXX to its string format XXX */
959extern const char *blk_op_str(unsigned int op);
960
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200961int blk_status_to_errno(blk_status_t status);
962blk_status_t errno_to_blk_status(int errno);
963
Jens Axboe0a1b8b82018-11-26 08:24:43 -0700964int blk_poll(struct request_queue *q, blk_qc_t cookie, bool spin);
Jens Axboe05229beed2015-11-05 10:44:55 -0700965
Jens Axboe165125e2007-07-24 09:28:11 +0200966static inline struct request_queue *bdev_get_queue(struct block_device *bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967{
Tejun Heoff9ea322014-09-08 08:03:56 +0900968 return bdev->bd_disk->queue; /* this is never NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969}
970
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971/*
Bart Van Assche233bde22018-03-14 15:48:06 -0700972 * The basic unit of block I/O is a sector. It is used in a number of contexts
973 * in Linux (blk, bio, genhd). The size of one sector is 512 = 2**9
974 * bytes. Variables of type sector_t represent an offset or size that is a
975 * multiple of 512 bytes. Hence these two constants.
976 */
977#ifndef SECTOR_SHIFT
978#define SECTOR_SHIFT 9
979#endif
980#ifndef SECTOR_SIZE
981#define SECTOR_SIZE (1 << SECTOR_SHIFT)
982#endif
983
984/*
Tejun Heo80a761f2009-07-03 17:48:17 +0900985 * blk_rq_pos() : the current sector
986 * blk_rq_bytes() : bytes left in the entire request
987 * blk_rq_cur_bytes() : bytes left in the current segment
988 * blk_rq_err_bytes() : bytes left till the next error boundary
989 * blk_rq_sectors() : sectors left in the entire request
990 * blk_rq_cur_sectors() : sectors left in the current segment
Hou Tao3d244302019-05-21 15:59:03 +0800991 * blk_rq_stats_sectors() : sectors of the entire request used for stats
Tejun Heo5efccd12009-04-23 11:05:18 +0900992 */
Tejun Heo5b936292009-05-07 22:24:38 +0900993static inline sector_t blk_rq_pos(const struct request *rq)
994{
Tejun Heoa2dec7b2009-05-07 22:24:44 +0900995 return rq->__sector;
Tejun Heo5b936292009-05-07 22:24:38 +0900996}
997
Tejun Heo2e46e8b2009-05-07 22:24:41 +0900998static inline unsigned int blk_rq_bytes(const struct request *rq)
999{
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001000 return rq->__data_len;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001001}
1002
1003static inline int blk_rq_cur_bytes(const struct request *rq)
1004{
1005 return rq->bio ? bio_cur_bytes(rq->bio) : 0;
1006}
Tejun Heo5efccd12009-04-23 11:05:18 +09001007
Tejun Heo80a761f2009-07-03 17:48:17 +09001008extern unsigned int blk_rq_err_bytes(const struct request *rq);
1009
Tejun Heo5b936292009-05-07 22:24:38 +09001010static inline unsigned int blk_rq_sectors(const struct request *rq)
1011{
Bart Van Assche233bde22018-03-14 15:48:06 -07001012 return blk_rq_bytes(rq) >> SECTOR_SHIFT;
Tejun Heo5b936292009-05-07 22:24:38 +09001013}
1014
1015static inline unsigned int blk_rq_cur_sectors(const struct request *rq)
1016{
Bart Van Assche233bde22018-03-14 15:48:06 -07001017 return blk_rq_cur_bytes(rq) >> SECTOR_SHIFT;
Tejun Heo5b936292009-05-07 22:24:38 +09001018}
1019
Hou Tao3d244302019-05-21 15:59:03 +08001020static inline unsigned int blk_rq_stats_sectors(const struct request *rq)
1021{
1022 return rq->stats_sectors;
1023}
1024
Bart Van Assche6a5ac982018-06-15 14:55:21 -07001025#ifdef CONFIG_BLK_DEV_ZONED
Chaitanya Kulkarni02694e82020-03-25 10:49:54 -07001026
1027/* Helper to convert BLK_ZONE_ZONE_XXX to its string format XXX */
1028const char *blk_zone_cond_str(enum blk_zone_cond zone_cond);
1029
Christoph Hellwig6cc77e92017-12-21 15:43:38 +09001030static inline unsigned int blk_rq_zone_no(struct request *rq)
1031{
1032 return blk_queue_zone_no(rq->q, blk_rq_pos(rq));
1033}
1034
1035static inline unsigned int blk_rq_zone_is_seq(struct request *rq)
1036{
1037 return blk_queue_zone_is_seq(rq->q, blk_rq_pos(rq));
1038}
Bart Van Assche6a5ac982018-06-15 14:55:21 -07001039#endif /* CONFIG_BLK_DEV_ZONED */
Christoph Hellwig6cc77e92017-12-21 15:43:38 +09001040
Christoph Hellwig2e3258e2017-01-13 12:29:10 +01001041/*
1042 * Some commands like WRITE SAME have a payload or data transfer size which
1043 * is different from the size of the request. Any driver that supports such
1044 * commands using the RQF_SPECIAL_PAYLOAD flag needs to use this helper to
1045 * calculate the data transfer size.
1046 */
1047static inline unsigned int blk_rq_payload_bytes(struct request *rq)
1048{
1049 if (rq->rq_flags & RQF_SPECIAL_PAYLOAD)
1050 return rq->special_vec.bv_len;
1051 return blk_rq_bytes(rq);
1052}
1053
Christoph Hellwig3aef3ca2019-03-03 09:14:01 -07001054/*
1055 * Return the first full biovec in the request. The caller needs to check that
1056 * there are any bvecs before calling this helper.
1057 */
1058static inline struct bio_vec req_bvec(struct request *rq)
1059{
1060 if (rq->rq_flags & RQF_SPECIAL_PAYLOAD)
1061 return rq->special_vec;
1062 return mp_bvec_iter_bvec(rq->bio->bi_io_vec, rq->bio->bi_iter);
1063}
1064
Martin K. Petersenf31dc1c2012-09-18 12:19:26 -04001065static inline unsigned int blk_queue_get_max_sectors(struct request_queue *q,
Mike Christie8fe0d472016-06-05 14:32:15 -05001066 int op)
Martin K. Petersenf31dc1c2012-09-18 12:19:26 -04001067{
Adrian Hunter7afafc82016-08-16 10:59:35 +03001068 if (unlikely(op == REQ_OP_DISCARD || op == REQ_OP_SECURE_ERASE))
Bart Van Assche233bde22018-03-14 15:48:06 -07001069 return min(q->limits.max_discard_sectors,
1070 UINT_MAX >> SECTOR_SHIFT);
Martin K. Petersenf31dc1c2012-09-18 12:19:26 -04001071
Mike Christie8fe0d472016-06-05 14:32:15 -05001072 if (unlikely(op == REQ_OP_WRITE_SAME))
Martin K. Petersen4363ac72012-09-18 12:19:27 -04001073 return q->limits.max_write_same_sectors;
1074
Chaitanya Kulkarnia6f07882016-11-30 12:28:59 -08001075 if (unlikely(op == REQ_OP_WRITE_ZEROES))
1076 return q->limits.max_write_zeroes_sectors;
1077
Martin K. Petersenf31dc1c2012-09-18 12:19:26 -04001078 return q->limits.max_sectors;
1079}
1080
Jens Axboe762380a2014-06-05 13:38:39 -06001081/*
1082 * Return maximum size of a request at given offset. Only valid for
1083 * file system requests.
1084 */
1085static inline unsigned int blk_max_size_offset(struct request_queue *q,
Mike Snitzer3ee16db2020-11-30 10:57:43 -05001086 sector_t offset,
1087 unsigned int chunk_sectors)
Jens Axboe762380a2014-06-05 13:38:39 -06001088{
Mike Snitzer65f33b32020-12-04 17:21:03 -05001089 if (!chunk_sectors) {
1090 if (q->limits.chunk_sectors)
1091 chunk_sectors = q->limits.chunk_sectors;
1092 else
1093 return q->limits.max_sectors;
1094 }
Jens Axboe762380a2014-06-05 13:38:39 -06001095
Mike Snitzer07d098e2020-09-21 22:32:49 -04001096 if (likely(is_power_of_2(chunk_sectors)))
1097 chunk_sectors -= offset & (chunk_sectors - 1);
1098 else
1099 chunk_sectors -= sector_div(offset, chunk_sectors);
1100
1101 return min(q->limits.max_sectors, chunk_sectors);
Jens Axboe762380a2014-06-05 13:38:39 -06001102}
1103
Damien Le Moal17007f32016-07-20 21:40:47 -06001104static inline unsigned int blk_rq_get_max_sectors(struct request *rq,
1105 sector_t offset)
Martin K. Petersenf31dc1c2012-09-18 12:19:26 -04001106{
1107 struct request_queue *q = rq->q;
1108
Christoph Hellwig57292b52017-01-31 16:57:29 +01001109 if (blk_rq_is_passthrough(rq))
Martin K. Petersenf31dc1c2012-09-18 12:19:26 -04001110 return q->limits.max_hw_sectors;
1111
Adrian Hunter7afafc82016-08-16 10:59:35 +03001112 if (!q->limits.chunk_sectors ||
1113 req_op(rq) == REQ_OP_DISCARD ||
1114 req_op(rq) == REQ_OP_SECURE_ERASE)
Mike Christie8fe0d472016-06-05 14:32:15 -05001115 return blk_queue_get_max_sectors(q, req_op(rq));
Jens Axboe762380a2014-06-05 13:38:39 -06001116
Mike Snitzer3ee16db2020-11-30 10:57:43 -05001117 return min(blk_max_size_offset(q, offset, 0),
Mike Christie8fe0d472016-06-05 14:32:15 -05001118 blk_queue_get_max_sectors(q, req_op(rq)));
Martin K. Petersenf31dc1c2012-09-18 12:19:26 -04001119}
1120
Jun'ichi Nomura75afb352013-09-21 13:57:47 -06001121static inline unsigned int blk_rq_count_bios(struct request *rq)
1122{
1123 unsigned int nr_bios = 0;
1124 struct bio *bio;
1125
1126 __rq_for_each_bio(bio, rq)
1127 nr_bios++;
1128
1129 return nr_bios;
1130}
1131
Christoph Hellwigef71de82017-11-02 21:29:51 +03001132void blk_steal_bios(struct bio_list *list, struct request *rq);
1133
Tejun Heo9934c8c2009-05-08 11:54:16 +09001134/*
Tejun Heo2e60e022009-04-23 11:05:18 +09001135 * Request completion related functions.
1136 *
1137 * blk_update_request() completes given number of bytes and updates
1138 * the request without completing it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 */
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001140extern bool blk_update_request(struct request *rq, blk_status_t error,
Tejun Heo2e60e022009-04-23 11:05:18 +09001141 unsigned int nr_bytes);
Tejun Heo2e60e022009-04-23 11:05:18 +09001142
Jens Axboe242f9dc2008-09-14 05:55:09 -07001143extern void blk_abort_request(struct request *);
Jens Axboeff856ba2006-01-09 16:02:34 +01001144
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 * Access functions for manipulating queue properties
1147 */
Jens Axboe165125e2007-07-24 09:28:11 +02001148extern void blk_cleanup_queue(struct request_queue *);
Jens Axboe165125e2007-07-24 09:28:11 +02001149extern void blk_queue_bounce_limit(struct request_queue *, u64);
Martin K. Petersen086fa5f2010-02-26 00:20:38 -05001150extern void blk_queue_max_hw_sectors(struct request_queue *, unsigned int);
Jens Axboe762380a2014-06-05 13:38:39 -06001151extern void blk_queue_chunk_sectors(struct request_queue *, unsigned int);
Martin K. Petersen8a783622010-02-26 00:20:39 -05001152extern void blk_queue_max_segments(struct request_queue *, unsigned short);
Christoph Hellwig1e739732017-02-08 14:46:49 +01001153extern void blk_queue_max_discard_segments(struct request_queue *,
1154 unsigned short);
Jens Axboe165125e2007-07-24 09:28:11 +02001155extern void blk_queue_max_segment_size(struct request_queue *, unsigned int);
Christoph Hellwig67efc922009-09-30 13:54:20 +02001156extern void blk_queue_max_discard_sectors(struct request_queue *q,
1157 unsigned int max_discard_sectors);
Martin K. Petersen4363ac72012-09-18 12:19:27 -04001158extern void blk_queue_max_write_same_sectors(struct request_queue *q,
1159 unsigned int max_write_same_sectors);
Chaitanya Kulkarnia6f07882016-11-30 12:28:59 -08001160extern void blk_queue_max_write_zeroes_sectors(struct request_queue *q,
1161 unsigned int max_write_same_sectors);
Mikulas Patockaad6bf882020-01-15 08:35:25 -05001162extern void blk_queue_logical_block_size(struct request_queue *, unsigned int);
Keith Busch0512a752020-05-12 17:55:47 +09001163extern void blk_queue_max_zone_append_sectors(struct request_queue *q,
1164 unsigned int max_zone_append_sectors);
Martin K. Petersen892b6f92010-10-13 21:18:03 +02001165extern void blk_queue_physical_block_size(struct request_queue *, unsigned int);
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001166extern void blk_queue_alignment_offset(struct request_queue *q,
1167 unsigned int alignment);
Christoph Hellwigc2e4cd52020-09-24 08:51:34 +02001168void blk_queue_update_readahead(struct request_queue *q);
Martin K. Petersen7c958e32009-07-31 11:49:11 -04001169extern void blk_limits_io_min(struct queue_limits *limits, unsigned int min);
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001170extern void blk_queue_io_min(struct request_queue *q, unsigned int min);
Martin K. Petersen3c5820c2009-09-11 21:54:52 +02001171extern void blk_limits_io_opt(struct queue_limits *limits, unsigned int opt);
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001172extern void blk_queue_io_opt(struct request_queue *q, unsigned int opt);
Jens Axboed278d4a2016-03-30 10:21:08 -06001173extern void blk_set_queue_depth(struct request_queue *q, unsigned int depth);
Martin K. Petersene475bba2009-06-16 08:23:52 +02001174extern void blk_set_default_limits(struct queue_limits *lim);
Martin K. Petersenb1bd0552012-01-11 16:27:11 +01001175extern void blk_set_stacking_limits(struct queue_limits *lim);
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001176extern int blk_stack_limits(struct queue_limits *t, struct queue_limits *b,
1177 sector_t offset);
1178extern void disk_stack_limits(struct gendisk *disk, struct block_device *bdev,
1179 sector_t offset);
FUJITA Tomonori27f82212008-07-04 09:30:03 +02001180extern void blk_queue_update_dma_pad(struct request_queue *, unsigned int);
Jens Axboe165125e2007-07-24 09:28:11 +02001181extern void blk_queue_segment_boundary(struct request_queue *, unsigned long);
Keith Busch03100aa2015-08-19 14:24:05 -07001182extern void blk_queue_virt_boundary(struct request_queue *, unsigned long);
Jens Axboe165125e2007-07-24 09:28:11 +02001183extern void blk_queue_dma_alignment(struct request_queue *, int);
James Bottomley11c3e682007-12-31 16:37:00 -06001184extern void blk_queue_update_dma_alignment(struct request_queue *, int);
Jens Axboe242f9dc2008-09-14 05:55:09 -07001185extern void blk_queue_rq_timeout(struct request_queue *, unsigned int);
Jens Axboe93e9d8e2016-04-12 12:32:46 -06001186extern void blk_queue_write_cache(struct request_queue *q, bool enabled, bool fua);
Damien Le Moal68c43f12019-09-05 18:51:31 +09001187extern void blk_queue_required_elevator_features(struct request_queue *q,
1188 unsigned int features);
Yoshihiro Shimoda45147fb2019-08-28 21:35:42 +09001189extern bool blk_queue_can_use_dma_map_merging(struct request_queue *q,
1190 struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Christoph Hellwig1e739732017-02-08 14:46:49 +01001192/*
1193 * Number of physical segments as sent to the device.
1194 *
1195 * Normally this is the number of discontiguous data segments sent by the
1196 * submitter. But for data-less command like discard we might have no
1197 * actual data segments submitted, but the driver might have to add it's
1198 * own special payload. In that case we still return 1 here so that this
1199 * special payload will be mapped.
1200 */
Christoph Hellwigf9d03f92016-12-08 15:20:32 -07001201static inline unsigned short blk_rq_nr_phys_segments(struct request *rq)
1202{
1203 if (rq->rq_flags & RQF_SPECIAL_PAYLOAD)
1204 return 1;
1205 return rq->nr_phys_segments;
1206}
1207
Christoph Hellwig1e739732017-02-08 14:46:49 +01001208/*
1209 * Number of discard segments (or ranges) the driver needs to fill in.
1210 * Each discard bio merged into a request is counted as one segment.
1211 */
1212static inline unsigned short blk_rq_nr_discard_segments(struct request *rq)
1213{
1214 return max_t(unsigned short, rq->nr_phys_segments, 1);
1215}
1216
Christoph Hellwig89de1502020-04-14 09:42:22 +02001217int __blk_rq_map_sg(struct request_queue *q, struct request *rq,
1218 struct scatterlist *sglist, struct scatterlist **last_sg);
1219static inline int blk_rq_map_sg(struct request_queue *q, struct request *rq,
1220 struct scatterlist *sglist)
1221{
1222 struct scatterlist *last_sg = NULL;
1223
1224 return __blk_rq_map_sg(q, rq, sglist, &last_sg);
1225}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226extern void blk_dump_rq_flags(struct request *, char *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
Tejun Heo09ac46c2011-12-14 00:33:38 +01001228bool __must_check blk_get_queue(struct request_queue *);
Christoph Hellwigc62b37d2020-07-01 10:59:43 +02001229struct request_queue *blk_alloc_queue(int node_id);
Jens Axboe165125e2007-07-24 09:28:11 +02001230extern void blk_put_queue(struct request_queue *);
Jens Axboe3f21c262015-06-05 10:57:37 -06001231extern void blk_set_queue_dying(struct request_queue *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Christoph Hellwig1a4dcfa2020-06-20 09:16:43 +02001233#ifdef CONFIG_BLOCK
Shaohua Li316cc672011-07-08 08:19:21 +02001234/*
Suresh Jayaraman75df7132011-09-21 10:00:16 +02001235 * blk_plug permits building a queue of related requests by holding the I/O
1236 * fragments for a short period. This allows merging of sequential requests
1237 * into single larger request. As the requests are moved from a per-task list to
1238 * the device's request_queue in a batch, this results in improved scalability
1239 * as the lock contention for request_queue lock is reduced.
1240 *
1241 * It is ok not to disable preemption when adding the request to the plug list
1242 * or when attempting a merge, because blk_schedule_flush_list() will only flush
1243 * the plug list when the task sleeps by itself. For details, please see
1244 * schedule() where blk_schedule_flush_plug() is called.
Shaohua Li316cc672011-07-08 08:19:21 +02001245 */
Jens Axboe73c10102011-03-08 13:19:51 +01001246struct blk_plug {
Jens Axboe320ae512013-10-24 09:20:05 +01001247 struct list_head mq_list; /* blk-mq requests */
Suresh Jayaraman75df7132011-09-21 10:00:16 +02001248 struct list_head cb_list; /* md requires an unplug callback */
Jens Axboe5f0ed772018-11-23 22:04:33 -07001249 unsigned short rq_count;
Jens Axboece5b0092018-11-27 17:13:56 -07001250 bool multiple_queues;
Jens Axboe5a473e82020-06-04 11:23:39 -06001251 bool nowait;
Jens Axboe73c10102011-03-08 13:19:51 +01001252};
Shaohua Li55c022b2011-07-08 08:19:20 +02001253#define BLK_MAX_REQUEST_COUNT 16
Shaohua Li50d24c32016-11-03 17:03:53 -07001254#define BLK_PLUG_FLUSH_SIZE (128 * 1024)
Shaohua Li55c022b2011-07-08 08:19:20 +02001255
NeilBrown9cbb1752012-07-31 09:08:14 +02001256struct blk_plug_cb;
NeilBrown74018dc2012-07-31 09:08:15 +02001257typedef void (*blk_plug_cb_fn)(struct blk_plug_cb *, bool);
NeilBrown048c9372011-04-18 09:52:22 +02001258struct blk_plug_cb {
1259 struct list_head list;
NeilBrown9cbb1752012-07-31 09:08:14 +02001260 blk_plug_cb_fn callback;
1261 void *data;
NeilBrown048c9372011-04-18 09:52:22 +02001262};
NeilBrown9cbb1752012-07-31 09:08:14 +02001263extern struct blk_plug_cb *blk_check_plugged(blk_plug_cb_fn unplug,
1264 void *data, int size);
Jens Axboe73c10102011-03-08 13:19:51 +01001265extern void blk_start_plug(struct blk_plug *);
1266extern void blk_finish_plug(struct blk_plug *);
Jens Axboef6603782011-04-15 15:49:07 +02001267extern void blk_flush_plug_list(struct blk_plug *, bool);
Jens Axboe73c10102011-03-08 13:19:51 +01001268
1269static inline void blk_flush_plug(struct task_struct *tsk)
1270{
1271 struct blk_plug *plug = tsk->plug;
1272
Christoph Hellwig88b996c2011-04-15 15:20:10 +02001273 if (plug)
Jens Axboea237c1c2011-04-16 13:27:55 +02001274 blk_flush_plug_list(plug, false);
1275}
1276
1277static inline void blk_schedule_flush_plug(struct task_struct *tsk)
1278{
1279 struct blk_plug *plug = tsk->plug;
1280
1281 if (plug)
Jens Axboef6603782011-04-15 15:49:07 +02001282 blk_flush_plug_list(plug, true);
Jens Axboe73c10102011-03-08 13:19:51 +01001283}
1284
1285static inline bool blk_needs_flush_plug(struct task_struct *tsk)
1286{
1287 struct blk_plug *plug = tsk->plug;
1288
Jens Axboe320ae512013-10-24 09:20:05 +01001289 return plug &&
Jens Axboea1ce35f2018-10-29 10:23:51 -06001290 (!list_empty(&plug->mq_list) ||
Jens Axboe320ae512013-10-24 09:20:05 +01001291 !list_empty(&plug->cb_list));
Jens Axboe73c10102011-03-08 13:19:51 +01001292}
1293
Christoph Hellwig1a4dcfa2020-06-20 09:16:43 +02001294int blkdev_issue_flush(struct block_device *, gfp_t);
1295long nr_blockdev_pages(void);
1296#else /* CONFIG_BLOCK */
1297struct blk_plug {
1298};
1299
1300static inline void blk_start_plug(struct blk_plug *plug)
1301{
1302}
1303
1304static inline void blk_finish_plug(struct blk_plug *plug)
1305{
1306}
1307
1308static inline void blk_flush_plug(struct task_struct *task)
1309{
1310}
1311
1312static inline void blk_schedule_flush_plug(struct task_struct *task)
1313{
1314}
1315
1316
1317static inline bool blk_needs_flush_plug(struct task_struct *tsk)
1318{
1319 return false;
1320}
1321
1322static inline int blkdev_issue_flush(struct block_device *bdev, gfp_t gfp_mask)
1323{
1324 return 0;
1325}
1326
1327static inline long nr_blockdev_pages(void)
1328{
1329 return 0;
1330}
1331#endif /* CONFIG_BLOCK */
1332
Ming Lei71ac8602020-05-14 16:45:09 +08001333extern void blk_io_schedule(void);
1334
Christoph Hellwigee472d82017-04-05 19:21:08 +02001335extern int blkdev_issue_write_same(struct block_device *bdev, sector_t sector,
1336 sector_t nr_sects, gfp_t gfp_mask, struct page *page);
Christoph Hellwige950fdf2016-07-19 11:23:33 +02001337
1338#define BLKDEV_DISCARD_SECURE (1 << 0) /* issue a secure erase */
Christoph Hellwigdd3932e2010-09-16 20:51:46 +02001339
Dmitry Monakhovfbd9b092010-04-28 17:55:06 +04001340extern int blkdev_issue_discard(struct block_device *bdev, sector_t sector,
1341 sector_t nr_sects, gfp_t gfp_mask, unsigned long flags);
Christoph Hellwig38f25252016-04-16 14:55:28 -04001342extern int __blkdev_issue_discard(struct block_device *bdev, sector_t sector,
Christoph Hellwig288dab82016-06-09 16:00:36 +02001343 sector_t nr_sects, gfp_t gfp_mask, int flags,
Mike Christie469e3212016-06-05 14:31:49 -05001344 struct bio **biop);
Christoph Hellwigee472d82017-04-05 19:21:08 +02001345
1346#define BLKDEV_ZERO_NOUNMAP (1 << 0) /* do not free blocks */
Christoph Hellwigcb365b92017-04-05 19:21:10 +02001347#define BLKDEV_ZERO_NOFALLBACK (1 << 1) /* don't write explicit zeroes */
Christoph Hellwigee472d82017-04-05 19:21:08 +02001348
Chaitanya Kulkarnie73c23f2016-11-30 12:28:58 -08001349extern int __blkdev_issue_zeroout(struct block_device *bdev, sector_t sector,
1350 sector_t nr_sects, gfp_t gfp_mask, struct bio **biop,
Christoph Hellwigee472d82017-04-05 19:21:08 +02001351 unsigned flags);
Dmitry Monakhov3f14d792010-04-28 17:55:09 +04001352extern int blkdev_issue_zeroout(struct block_device *bdev, sector_t sector,
Christoph Hellwigee472d82017-04-05 19:21:08 +02001353 sector_t nr_sects, gfp_t gfp_mask, unsigned flags);
1354
Christoph Hellwig2cf6d262010-08-18 05:29:10 -04001355static inline int sb_issue_discard(struct super_block *sb, sector_t block,
1356 sector_t nr_blocks, gfp_t gfp_mask, unsigned long flags)
David Woodhousefb2dce82008-08-05 18:01:53 +01001357{
Bart Van Assche233bde22018-03-14 15:48:06 -07001358 return blkdev_issue_discard(sb->s_bdev,
1359 block << (sb->s_blocksize_bits -
1360 SECTOR_SHIFT),
1361 nr_blocks << (sb->s_blocksize_bits -
1362 SECTOR_SHIFT),
Christoph Hellwig2cf6d262010-08-18 05:29:10 -04001363 gfp_mask, flags);
David Woodhousefb2dce82008-08-05 18:01:53 +01001364}
Lukas Czernere6fa0be2010-10-27 21:30:04 -04001365static inline int sb_issue_zeroout(struct super_block *sb, sector_t block,
Theodore Ts'oa107e5a2010-10-27 23:44:47 -04001366 sector_t nr_blocks, gfp_t gfp_mask)
Lukas Czernere6fa0be2010-10-27 21:30:04 -04001367{
1368 return blkdev_issue_zeroout(sb->s_bdev,
Bart Van Assche233bde22018-03-14 15:48:06 -07001369 block << (sb->s_blocksize_bits -
1370 SECTOR_SHIFT),
1371 nr_blocks << (sb->s_blocksize_bits -
1372 SECTOR_SHIFT),
Christoph Hellwigee472d82017-04-05 19:21:08 +02001373 gfp_mask, 0);
Lukas Czernere6fa0be2010-10-27 21:30:04 -04001374}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
Christoph Hellwigf00c4d82017-11-05 10:36:31 +03001376extern int blk_verify_command(unsigned char *cmd, fmode_t mode);
Adel Gadllah0b07de82008-06-26 13:48:27 +02001377
Christoph Hellwigfa01b1e2020-09-03 07:40:57 +02001378static inline bool bdev_is_partition(struct block_device *bdev)
1379{
1380 return bdev->bd_partno;
1381}
1382
Martin K. Peterseneb28d312010-02-26 00:20:37 -05001383enum blk_default_limits {
1384 BLK_MAX_SEGMENTS = 128,
1385 BLK_SAFE_MAX_SECTORS = 255,
Jeff Moyerd2be5372015-08-13 14:57:57 -04001386 BLK_DEF_MAX_SECTORS = 2560,
Martin K. Peterseneb28d312010-02-26 00:20:37 -05001387 BLK_MAX_SEGMENT_SIZE = 65536,
1388 BLK_SEG_BOUNDARY_MASK = 0xFFFFFFFFUL,
1389};
Milan Broz0e435ac2008-12-03 12:55:08 +01001390
Bart Van Asscheaf2c68f2019-08-01 15:50:40 -07001391static inline unsigned long queue_segment_boundary(const struct request_queue *q)
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001392{
Martin K. Petersen025146e2009-05-22 17:17:51 -04001393 return q->limits.seg_boundary_mask;
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001394}
1395
Bart Van Asscheaf2c68f2019-08-01 15:50:40 -07001396static inline unsigned long queue_virt_boundary(const struct request_queue *q)
Keith Busch03100aa2015-08-19 14:24:05 -07001397{
1398 return q->limits.virt_boundary_mask;
1399}
1400
Bart Van Asscheaf2c68f2019-08-01 15:50:40 -07001401static inline unsigned int queue_max_sectors(const struct request_queue *q)
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001402{
Martin K. Petersen025146e2009-05-22 17:17:51 -04001403 return q->limits.max_sectors;
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001404}
1405
Bart Van Asscheaf2c68f2019-08-01 15:50:40 -07001406static inline unsigned int queue_max_hw_sectors(const struct request_queue *q)
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001407{
Martin K. Petersen025146e2009-05-22 17:17:51 -04001408 return q->limits.max_hw_sectors;
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001409}
1410
Bart Van Asscheaf2c68f2019-08-01 15:50:40 -07001411static inline unsigned short queue_max_segments(const struct request_queue *q)
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001412{
Martin K. Petersen8a783622010-02-26 00:20:39 -05001413 return q->limits.max_segments;
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001414}
1415
Bart Van Asscheaf2c68f2019-08-01 15:50:40 -07001416static inline unsigned short queue_max_discard_segments(const struct request_queue *q)
Christoph Hellwig1e739732017-02-08 14:46:49 +01001417{
1418 return q->limits.max_discard_segments;
1419}
1420
Bart Van Asscheaf2c68f2019-08-01 15:50:40 -07001421static inline unsigned int queue_max_segment_size(const struct request_queue *q)
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001422{
Martin K. Petersen025146e2009-05-22 17:17:51 -04001423 return q->limits.max_segment_size;
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001424}
1425
Keith Busch0512a752020-05-12 17:55:47 +09001426static inline unsigned int queue_max_zone_append_sectors(const struct request_queue *q)
1427{
Johannes Thumshirnfe6f0cd2020-10-07 21:35:08 +09001428
1429 const struct queue_limits *l = &q->limits;
1430
1431 return min(l->max_zone_append_sectors, l->max_sectors);
Keith Busch0512a752020-05-12 17:55:47 +09001432}
1433
Mikulas Patockaad6bf882020-01-15 08:35:25 -05001434static inline unsigned queue_logical_block_size(const struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435{
1436 int retval = 512;
1437
Martin K. Petersen025146e2009-05-22 17:17:51 -04001438 if (q && q->limits.logical_block_size)
1439 retval = q->limits.logical_block_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
1441 return retval;
1442}
1443
Mikulas Patockaad6bf882020-01-15 08:35:25 -05001444static inline unsigned int bdev_logical_block_size(struct block_device *bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445{
Martin K. Petersene1defc42009-05-22 17:17:49 -04001446 return queue_logical_block_size(bdev_get_queue(bdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447}
1448
Bart Van Asscheaf2c68f2019-08-01 15:50:40 -07001449static inline unsigned int queue_physical_block_size(const struct request_queue *q)
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001450{
1451 return q->limits.physical_block_size;
1452}
1453
Martin K. Petersen892b6f92010-10-13 21:18:03 +02001454static inline unsigned int bdev_physical_block_size(struct block_device *bdev)
Martin K. Petersenac481c22009-10-03 20:52:01 +02001455{
1456 return queue_physical_block_size(bdev_get_queue(bdev));
1457}
1458
Bart Van Asscheaf2c68f2019-08-01 15:50:40 -07001459static inline unsigned int queue_io_min(const struct request_queue *q)
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001460{
1461 return q->limits.io_min;
1462}
1463
Martin K. Petersenac481c22009-10-03 20:52:01 +02001464static inline int bdev_io_min(struct block_device *bdev)
1465{
1466 return queue_io_min(bdev_get_queue(bdev));
1467}
1468
Bart Van Asscheaf2c68f2019-08-01 15:50:40 -07001469static inline unsigned int queue_io_opt(const struct request_queue *q)
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001470{
1471 return q->limits.io_opt;
1472}
1473
Martin K. Petersenac481c22009-10-03 20:52:01 +02001474static inline int bdev_io_opt(struct block_device *bdev)
1475{
1476 return queue_io_opt(bdev_get_queue(bdev));
1477}
1478
Bart Van Asscheaf2c68f2019-08-01 15:50:40 -07001479static inline int queue_alignment_offset(const struct request_queue *q)
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001480{
Martin K. Petersenac481c22009-10-03 20:52:01 +02001481 if (q->limits.misaligned)
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001482 return -1;
1483
Martin K. Petersenac481c22009-10-03 20:52:01 +02001484 return q->limits.alignment_offset;
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001485}
1486
Martin K. Petersene03a72e2010-01-11 03:21:51 -05001487static inline int queue_limit_alignment_offset(struct queue_limits *lim, sector_t sector)
Martin K. Petersen81744ee2009-12-29 08:35:35 +01001488{
1489 unsigned int granularity = max(lim->physical_block_size, lim->io_min);
Bart Van Assche233bde22018-03-14 15:48:06 -07001490 unsigned int alignment = sector_div(sector, granularity >> SECTOR_SHIFT)
1491 << SECTOR_SHIFT;
Martin K. Petersen81744ee2009-12-29 08:35:35 +01001492
Mike Snitzerb8839b82014-10-08 18:26:13 -04001493 return (granularity + lim->alignment_offset - alignment) % granularity;
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001494}
1495
Martin K. Petersenac481c22009-10-03 20:52:01 +02001496static inline int bdev_alignment_offset(struct block_device *bdev)
1497{
1498 struct request_queue *q = bdev_get_queue(bdev);
1499
1500 if (q->limits.misaligned)
1501 return -1;
Christoph Hellwigfa01b1e2020-09-03 07:40:57 +02001502 if (bdev_is_partition(bdev))
Christoph Hellwig7b8917f2020-08-31 20:02:33 +02001503 return queue_limit_alignment_offset(&q->limits,
1504 bdev->bd_part->start_sect);
Martin K. Petersenac481c22009-10-03 20:52:01 +02001505 return q->limits.alignment_offset;
1506}
1507
Bart Van Asscheaf2c68f2019-08-01 15:50:40 -07001508static inline int queue_discard_alignment(const struct request_queue *q)
Martin K. Petersen86b37282009-11-10 11:50:21 +01001509{
1510 if (q->limits.discard_misaligned)
1511 return -1;
1512
1513 return q->limits.discard_alignment;
1514}
1515
Martin K. Petersene03a72e2010-01-11 03:21:51 -05001516static inline int queue_limit_discard_alignment(struct queue_limits *lim, sector_t sector)
Martin K. Petersen86b37282009-11-10 11:50:21 +01001517{
Linus Torvalds59771072012-12-19 07:18:35 -08001518 unsigned int alignment, granularity, offset;
Martin K. Petersendd3d1452010-01-11 03:21:48 -05001519
Martin K. Petersena934a002011-05-18 10:37:35 +02001520 if (!lim->max_discard_sectors)
1521 return 0;
1522
Linus Torvalds59771072012-12-19 07:18:35 -08001523 /* Why are these in bytes, not sectors? */
Bart Van Assche233bde22018-03-14 15:48:06 -07001524 alignment = lim->discard_alignment >> SECTOR_SHIFT;
1525 granularity = lim->discard_granularity >> SECTOR_SHIFT;
Linus Torvalds59771072012-12-19 07:18:35 -08001526 if (!granularity)
1527 return 0;
1528
1529 /* Offset of the partition start in 'granularity' sectors */
1530 offset = sector_div(sector, granularity);
1531
1532 /* And why do we do this modulus *again* in blkdev_issue_discard()? */
1533 offset = (granularity + alignment - offset) % granularity;
1534
1535 /* Turn it back into bytes, gaah */
Bart Van Assche233bde22018-03-14 15:48:06 -07001536 return offset << SECTOR_SHIFT;
Martin K. Petersen86b37282009-11-10 11:50:21 +01001537}
1538
Paolo Bonzinic6e66632012-08-02 09:48:50 +02001539static inline int bdev_discard_alignment(struct block_device *bdev)
1540{
1541 struct request_queue *q = bdev_get_queue(bdev);
1542
Christoph Hellwigfa01b1e2020-09-03 07:40:57 +02001543 if (bdev_is_partition(bdev))
Christoph Hellwig7cf34d92020-08-31 20:02:34 +02001544 return queue_limit_discard_alignment(&q->limits,
1545 bdev->bd_part->start_sect);
Paolo Bonzinic6e66632012-08-02 09:48:50 +02001546 return q->limits.discard_alignment;
1547}
1548
Martin K. Petersen4363ac72012-09-18 12:19:27 -04001549static inline unsigned int bdev_write_same(struct block_device *bdev)
1550{
1551 struct request_queue *q = bdev_get_queue(bdev);
1552
1553 if (q)
1554 return q->limits.max_write_same_sectors;
1555
1556 return 0;
1557}
1558
Chaitanya Kulkarnia6f07882016-11-30 12:28:59 -08001559static inline unsigned int bdev_write_zeroes_sectors(struct block_device *bdev)
1560{
1561 struct request_queue *q = bdev_get_queue(bdev);
1562
1563 if (q)
1564 return q->limits.max_write_zeroes_sectors;
1565
1566 return 0;
1567}
1568
Damien Le Moal797476b2016-10-18 15:40:29 +09001569static inline enum blk_zoned_model bdev_zoned_model(struct block_device *bdev)
1570{
1571 struct request_queue *q = bdev_get_queue(bdev);
1572
1573 if (q)
1574 return blk_queue_zoned_model(q);
1575
1576 return BLK_ZONED_NONE;
1577}
1578
1579static inline bool bdev_is_zoned(struct block_device *bdev)
1580{
1581 struct request_queue *q = bdev_get_queue(bdev);
1582
1583 if (q)
1584 return blk_queue_is_zoned(q);
1585
1586 return false;
1587}
1588
Damien Le Moal113ab722019-07-10 13:53:10 +09001589static inline sector_t bdev_zone_sectors(struct block_device *bdev)
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +09001590{
1591 struct request_queue *q = bdev_get_queue(bdev);
1592
1593 if (q)
Damien Le Moalf99e8642017-01-12 07:58:32 -07001594 return blk_queue_zone_sectors(q);
Christoph Hellwig6cc77e92017-12-21 15:43:38 +09001595 return 0;
1596}
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +09001597
Niklas Cassele15864f2020-07-14 23:18:23 +02001598static inline unsigned int bdev_max_open_zones(struct block_device *bdev)
1599{
1600 struct request_queue *q = bdev_get_queue(bdev);
1601
1602 if (q)
1603 return queue_max_open_zones(q);
1604 return 0;
1605}
1606
Niklas Cassel659bf822020-07-14 23:18:24 +02001607static inline unsigned int bdev_max_active_zones(struct block_device *bdev)
1608{
1609 struct request_queue *q = bdev_get_queue(bdev);
1610
1611 if (q)
1612 return queue_max_active_zones(q);
1613 return 0;
1614}
1615
Bart Van Asscheaf2c68f2019-08-01 15:50:40 -07001616static inline int queue_dma_alignment(const struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617{
Pete Wyckoff482eb682008-01-01 10:23:02 -05001618 return q ? q->dma_alignment : 511;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619}
1620
Namhyung Kim14417792010-09-15 13:08:27 +02001621static inline int blk_rq_aligned(struct request_queue *q, unsigned long addr,
FUJITA Tomonori87904072008-08-28 15:05:58 +09001622 unsigned int len)
1623{
1624 unsigned int alignment = queue_dma_alignment(q) | q->dma_pad_mask;
Namhyung Kim14417792010-09-15 13:08:27 +02001625 return !(addr & alignment) && !(len & alignment);
FUJITA Tomonori87904072008-08-28 15:05:58 +09001626}
1627
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628/* assumes size > 256 */
1629static inline unsigned int blksize_bits(unsigned int size)
1630{
1631 unsigned int bits = 8;
1632 do {
1633 bits++;
1634 size >>= 1;
1635 } while (size > 256);
1636 return bits;
1637}
1638
Adrian Bunk2befb9e2005-09-10 00:27:17 -07001639static inline unsigned int block_size(struct block_device *bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640{
Christoph Hellwig6b7b1812020-06-26 10:01:55 +02001641 return 1 << bdev->bd_inode->i_blkbits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642}
1643
Jens Axboe59c3d452014-04-08 09:15:35 -06001644int kblockd_schedule_work(struct work_struct *work);
Jens Axboe818cd1c2017-04-10 09:54:55 -06001645int kblockd_mod_delayed_work_on(int cpu, struct delayed_work *dwork, unsigned long delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647#define MODULE_ALIAS_BLOCKDEV(major,minor) \
1648 MODULE_ALIAS("block-major-" __stringify(major) "-" __stringify(minor))
1649#define MODULE_ALIAS_BLOCKDEV_MAJOR(major) \
1650 MODULE_ALIAS("block-major-" __stringify(major) "-*")
1651
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001652#if defined(CONFIG_BLK_DEV_INTEGRITY)
1653
Martin K. Petersen8288f492014-09-26 19:20:02 -04001654enum blk_integrity_flags {
1655 BLK_INTEGRITY_VERIFY = 1 << 0,
1656 BLK_INTEGRITY_GENERATE = 1 << 1,
Martin K. Petersen3aec2f42014-09-26 19:20:03 -04001657 BLK_INTEGRITY_DEVICE_CAPABLE = 1 << 2,
Martin K. Petersenaae7df52014-09-26 19:20:05 -04001658 BLK_INTEGRITY_IP_CHECKSUM = 1 << 3,
Martin K. Petersen8288f492014-09-26 19:20:02 -04001659};
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001660
Martin K. Petersen18593082014-09-26 19:20:01 -04001661struct blk_integrity_iter {
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001662 void *prot_buf;
1663 void *data_buf;
Martin K. Petersen3be91c42014-09-26 19:19:59 -04001664 sector_t seed;
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001665 unsigned int data_size;
Martin K. Petersen3be91c42014-09-26 19:19:59 -04001666 unsigned short interval;
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001667 const char *disk_name;
1668};
1669
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001670typedef blk_status_t (integrity_processing_fn) (struct blk_integrity_iter *);
Max Gurtovoy54d4e6a2019-09-16 18:44:29 +03001671typedef void (integrity_prepare_fn) (struct request *);
1672typedef void (integrity_complete_fn) (struct request *, unsigned int);
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001673
Martin K. Petersen0f8087e2015-10-21 13:19:33 -04001674struct blk_integrity_profile {
1675 integrity_processing_fn *generate_fn;
1676 integrity_processing_fn *verify_fn;
Max Gurtovoy54d4e6a2019-09-16 18:44:29 +03001677 integrity_prepare_fn *prepare_fn;
1678 integrity_complete_fn *complete_fn;
Martin K. Petersen0f8087e2015-10-21 13:19:33 -04001679 const char *name;
1680};
1681
Martin K. Petersen25520d52015-10-21 13:19:49 -04001682extern void blk_integrity_register(struct gendisk *, struct blk_integrity *);
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001683extern void blk_integrity_unregister(struct gendisk *);
Martin K. Petersenad7fce92008-10-01 03:38:39 -04001684extern int blk_integrity_compare(struct gendisk *, struct gendisk *);
Martin K. Petersen13f05c82010-09-10 20:50:10 +02001685extern int blk_rq_map_integrity_sg(struct request_queue *, struct bio *,
1686 struct scatterlist *);
1687extern int blk_rq_count_integrity_sg(struct request_queue *, struct bio *);
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001688
Martin K. Petersen25520d52015-10-21 13:19:49 -04001689static inline struct blk_integrity *blk_get_integrity(struct gendisk *disk)
1690{
Dan Williamsac6fc482015-10-21 13:20:18 -04001691 struct blk_integrity *bi = &disk->queue->integrity;
Martin K. Petersen25520d52015-10-21 13:19:49 -04001692
1693 if (!bi->profile)
1694 return NULL;
1695
1696 return bi;
1697}
1698
Jens Axboeb04accc2008-10-02 12:53:22 +02001699static inline
1700struct blk_integrity *bdev_get_integrity(struct block_device *bdev)
1701{
Martin K. Petersen25520d52015-10-21 13:19:49 -04001702 return blk_get_integrity(bdev->bd_disk);
Martin K. Petersenb02739b2008-10-02 18:47:49 +02001703}
1704
Satya Tangiralad145dc22020-05-14 00:37:19 +00001705static inline bool
1706blk_integrity_queue_supports_integrity(struct request_queue *q)
1707{
1708 return q->integrity.profile;
1709}
1710
Martin K. Petersen180b2f92014-09-26 19:19:56 -04001711static inline bool blk_integrity_rq(struct request *rq)
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001712{
Martin K. Petersen180b2f92014-09-26 19:19:56 -04001713 return rq->cmd_flags & REQ_INTEGRITY;
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001714}
1715
Martin K. Petersen13f05c82010-09-10 20:50:10 +02001716static inline void blk_queue_max_integrity_segments(struct request_queue *q,
1717 unsigned int segs)
1718{
1719 q->limits.max_integrity_segments = segs;
1720}
1721
1722static inline unsigned short
Bart Van Asscheaf2c68f2019-08-01 15:50:40 -07001723queue_max_integrity_segments(const struct request_queue *q)
Martin K. Petersen13f05c82010-09-10 20:50:10 +02001724{
1725 return q->limits.max_integrity_segments;
1726}
1727
Greg Edwards359f6422018-07-25 10:22:58 -04001728/**
1729 * bio_integrity_intervals - Return number of integrity intervals for a bio
1730 * @bi: blk_integrity profile for device
1731 * @sectors: Size of the bio in 512-byte sectors
1732 *
1733 * Description: The block layer calculates everything in 512 byte
1734 * sectors but integrity metadata is done in terms of the data integrity
1735 * interval size of the storage device. Convert the block layer sectors
1736 * to the appropriate number of integrity intervals.
1737 */
1738static inline unsigned int bio_integrity_intervals(struct blk_integrity *bi,
1739 unsigned int sectors)
1740{
1741 return sectors >> (bi->interval_exp - 9);
1742}
1743
1744static inline unsigned int bio_integrity_bytes(struct blk_integrity *bi,
1745 unsigned int sectors)
1746{
1747 return bio_integrity_intervals(bi, sectors) * bi->tuple_size;
1748}
1749
Christoph Hellwig2a876f52019-03-03 08:38:29 -07001750/*
1751 * Return the first bvec that contains integrity data. Only drivers that are
1752 * limited to a single integrity segment should use this helper.
1753 */
1754static inline struct bio_vec *rq_integrity_vec(struct request *rq)
1755{
1756 if (WARN_ON_ONCE(queue_max_integrity_segments(rq->q) > 1))
1757 return NULL;
1758 return rq->bio->bi_integrity->bip_vec;
1759}
1760
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001761#else /* CONFIG_BLK_DEV_INTEGRITY */
1762
Stephen Rothwellfd832402012-01-12 09:17:30 +01001763struct bio;
1764struct block_device;
1765struct gendisk;
1766struct blk_integrity;
1767
1768static inline int blk_integrity_rq(struct request *rq)
1769{
1770 return 0;
1771}
1772static inline int blk_rq_count_integrity_sg(struct request_queue *q,
1773 struct bio *b)
1774{
1775 return 0;
1776}
1777static inline int blk_rq_map_integrity_sg(struct request_queue *q,
1778 struct bio *b,
1779 struct scatterlist *s)
1780{
1781 return 0;
1782}
1783static inline struct blk_integrity *bdev_get_integrity(struct block_device *b)
1784{
Michele Curti61a04e52014-10-09 15:30:17 -07001785 return NULL;
Stephen Rothwellfd832402012-01-12 09:17:30 +01001786}
1787static inline struct blk_integrity *blk_get_integrity(struct gendisk *disk)
1788{
1789 return NULL;
1790}
Satya Tangiralad145dc22020-05-14 00:37:19 +00001791static inline bool
1792blk_integrity_queue_supports_integrity(struct request_queue *q)
1793{
1794 return false;
1795}
Stephen Rothwellfd832402012-01-12 09:17:30 +01001796static inline int blk_integrity_compare(struct gendisk *a, struct gendisk *b)
1797{
1798 return 0;
1799}
Martin K. Petersen25520d52015-10-21 13:19:49 -04001800static inline void blk_integrity_register(struct gendisk *d,
Stephen Rothwellfd832402012-01-12 09:17:30 +01001801 struct blk_integrity *b)
1802{
Stephen Rothwellfd832402012-01-12 09:17:30 +01001803}
1804static inline void blk_integrity_unregister(struct gendisk *d)
1805{
1806}
1807static inline void blk_queue_max_integrity_segments(struct request_queue *q,
1808 unsigned int segs)
1809{
1810}
Bart Van Asscheaf2c68f2019-08-01 15:50:40 -07001811static inline unsigned short queue_max_integrity_segments(const struct request_queue *q)
Stephen Rothwellfd832402012-01-12 09:17:30 +01001812{
1813 return 0;
1814}
Martin K. Petersen25520d52015-10-21 13:19:49 -04001815
Greg Edwards359f6422018-07-25 10:22:58 -04001816static inline unsigned int bio_integrity_intervals(struct blk_integrity *bi,
1817 unsigned int sectors)
1818{
1819 return 0;
1820}
1821
1822static inline unsigned int bio_integrity_bytes(struct blk_integrity *bi,
1823 unsigned int sectors)
1824{
1825 return 0;
1826}
1827
Christoph Hellwig2a876f52019-03-03 08:38:29 -07001828static inline struct bio_vec *rq_integrity_vec(struct request *rq)
1829{
1830 return NULL;
1831}
1832
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001833#endif /* CONFIG_BLK_DEV_INTEGRITY */
1834
Satya Tangiralad145dc22020-05-14 00:37:19 +00001835#ifdef CONFIG_BLK_INLINE_ENCRYPTION
1836
1837bool blk_ksm_register(struct blk_keyslot_manager *ksm, struct request_queue *q);
1838
1839void blk_ksm_unregister(struct request_queue *q);
1840
1841#else /* CONFIG_BLK_INLINE_ENCRYPTION */
1842
1843static inline bool blk_ksm_register(struct blk_keyslot_manager *ksm,
1844 struct request_queue *q)
1845{
1846 return true;
1847}
1848
1849static inline void blk_ksm_unregister(struct request_queue *q) { }
1850
1851#endif /* CONFIG_BLK_INLINE_ENCRYPTION */
1852
1853
Al Viro08f85852007-10-08 13:26:20 -04001854struct block_device_operations {
Christoph Hellwigc62b37d2020-07-01 10:59:43 +02001855 blk_qc_t (*submit_bio) (struct bio *bio);
Al Virod4430d62008-03-02 09:09:22 -05001856 int (*open) (struct block_device *, fmode_t);
Al Virodb2a1442013-05-05 21:52:57 -04001857 void (*release) (struct gendisk *, fmode_t);
Tejun Heo3f289dc2018-07-18 04:47:36 -07001858 int (*rw_page)(struct block_device *, sector_t, struct page *, unsigned int);
Al Virod4430d62008-03-02 09:09:22 -05001859 int (*ioctl) (struct block_device *, fmode_t, unsigned, unsigned long);
1860 int (*compat_ioctl) (struct block_device *, fmode_t, unsigned, unsigned long);
Tejun Heo77ea8872010-12-08 20:57:37 +01001861 unsigned int (*check_events) (struct gendisk *disk,
1862 unsigned int clearing);
Tejun Heoc3e33e02010-05-15 20:09:29 +02001863 void (*unlock_native_capacity) (struct gendisk *);
Al Viro08f85852007-10-08 13:26:20 -04001864 int (*revalidate_disk) (struct gendisk *);
1865 int (*getgeo)(struct block_device *, struct hd_geometry *);
Nitin Guptab3a27d02010-05-17 11:02:43 +05301866 /* this callback is with swap_lock and sometimes page table lock held */
1867 void (*swap_slot_free_notify) (struct block_device *, unsigned long);
Christoph Hellwige76239a2018-10-12 19:08:49 +09001868 int (*report_zones)(struct gendisk *, sector_t sector,
Christoph Hellwigd4100352019-11-11 11:39:30 +09001869 unsigned int nr_zones, report_zones_cb cb, void *data);
Christoph Hellwig348e1142020-03-27 09:07:17 +01001870 char *(*devnode)(struct gendisk *disk, umode_t *mode);
Al Viro08f85852007-10-08 13:26:20 -04001871 struct module *owner;
Christoph Hellwigbbd3e062015-10-15 14:10:48 +02001872 const struct pr_ops *pr_ops;
Al Viro08f85852007-10-08 13:26:20 -04001873};
1874
Arnd Bergmannee6a1292019-11-28 15:48:10 +01001875#ifdef CONFIG_COMPAT
1876extern int blkdev_compat_ptr_ioctl(struct block_device *, fmode_t,
1877 unsigned int, unsigned long);
1878#else
1879#define blkdev_compat_ptr_ioctl NULL
1880#endif
1881
Al Viro633a08b2007-08-29 20:34:12 -04001882extern int __blkdev_driver_ioctl(struct block_device *, fmode_t, unsigned int,
1883 unsigned long);
Matthew Wilcox47a191f2014-06-04 16:07:46 -07001884extern int bdev_read_page(struct block_device *, sector_t, struct page *);
1885extern int bdev_write_page(struct block_device *, sector_t, struct page *,
1886 struct writeback_control *);
Christoph Hellwig6cc77e92017-12-21 15:43:38 +09001887
1888#ifdef CONFIG_BLK_DEV_ZONED
1889bool blk_req_needs_zone_write_lock(struct request *rq);
Johannes Thumshirn1392d372020-05-12 17:55:48 +09001890bool blk_req_zone_write_trylock(struct request *rq);
Christoph Hellwig6cc77e92017-12-21 15:43:38 +09001891void __blk_req_zone_write_lock(struct request *rq);
1892void __blk_req_zone_write_unlock(struct request *rq);
1893
1894static inline void blk_req_zone_write_lock(struct request *rq)
1895{
1896 if (blk_req_needs_zone_write_lock(rq))
1897 __blk_req_zone_write_lock(rq);
1898}
1899
1900static inline void blk_req_zone_write_unlock(struct request *rq)
1901{
1902 if (rq->rq_flags & RQF_ZONE_WRITE_LOCKED)
1903 __blk_req_zone_write_unlock(rq);
1904}
1905
1906static inline bool blk_req_zone_is_write_locked(struct request *rq)
1907{
1908 return rq->q->seq_zones_wlock &&
1909 test_bit(blk_rq_zone_no(rq), rq->q->seq_zones_wlock);
1910}
1911
1912static inline bool blk_req_can_dispatch_to_zone(struct request *rq)
1913{
1914 if (!blk_req_needs_zone_write_lock(rq))
1915 return true;
1916 return !blk_req_zone_is_write_locked(rq);
1917}
1918#else
1919static inline bool blk_req_needs_zone_write_lock(struct request *rq)
1920{
1921 return false;
1922}
1923
1924static inline void blk_req_zone_write_lock(struct request *rq)
1925{
1926}
1927
1928static inline void blk_req_zone_write_unlock(struct request *rq)
1929{
1930}
1931static inline bool blk_req_zone_is_write_locked(struct request *rq)
1932{
1933 return false;
1934}
1935
1936static inline bool blk_req_can_dispatch_to_zone(struct request *rq)
1937{
1938 return true;
1939}
1940#endif /* CONFIG_BLK_DEV_ZONED */
1941
Jens Axboe06193172018-11-13 21:16:54 -07001942static inline void blk_wake_io_task(struct task_struct *waiter)
1943{
1944 /*
1945 * If we're polling, the task itself is doing the completions. For
1946 * that case, we don't need to signal a wakeup, it's enough to just
1947 * mark us as RUNNING.
1948 */
1949 if (waiter == current)
1950 __set_current_state(TASK_RUNNING);
1951 else
1952 wake_up_process(waiter);
1953}
1954
Christoph Hellwig956d5102020-05-27 07:24:04 +02001955unsigned long disk_start_io_acct(struct gendisk *disk, unsigned int sectors,
1956 unsigned int op);
1957void disk_end_io_acct(struct gendisk *disk, unsigned int op,
1958 unsigned long start_time);
1959
Song Liu7b264102020-08-31 15:27:23 -07001960unsigned long part_start_io_acct(struct gendisk *disk, struct hd_struct **part,
1961 struct bio *bio);
1962void part_end_io_acct(struct hd_struct *part, struct bio *bio,
1963 unsigned long start_time);
1964
Christoph Hellwig956d5102020-05-27 07:24:04 +02001965/**
1966 * bio_start_io_acct - start I/O accounting for bio based drivers
1967 * @bio: bio to start account for
1968 *
1969 * Returns the start time that should be passed back to bio_end_io_acct().
1970 */
1971static inline unsigned long bio_start_io_acct(struct bio *bio)
1972{
1973 return disk_start_io_acct(bio->bi_disk, bio_sectors(bio), bio_op(bio));
1974}
1975
1976/**
1977 * bio_end_io_acct - end I/O accounting for bio based drivers
1978 * @bio: bio to end account for
1979 * @start: start time returned by bio_start_io_acct()
1980 */
1981static inline void bio_end_io_acct(struct bio *bio, unsigned long start_time)
1982{
1983 return disk_end_io_acct(bio->bi_disk, bio_op(bio), start_time);
1984}
Christoph Hellwig956d5102020-05-27 07:24:04 +02001985
Christoph Hellwig3f1266f2020-06-20 09:16:41 +02001986int bdev_read_only(struct block_device *bdev);
1987int set_blocksize(struct block_device *bdev, int size);
1988
1989const char *bdevname(struct block_device *bdev, char *buffer);
1990struct block_device *lookup_bdev(const char *);
1991
1992void blkdev_show(struct seq_file *seqf, off_t offset);
1993
1994#define BDEVNAME_SIZE 32 /* Largest string for a blockdev identifier */
1995#define BDEVT_SIZE 10 /* Largest string for MAJ:MIN for blkdev */
1996#ifdef CONFIG_BLOCK
1997#define BLKDEV_MAJOR_MAX 512
1998#else
1999#define BLKDEV_MAJOR_MAX 0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000#endif
Christoph Hellwig3f1266f2020-06-20 09:16:41 +02002001
Christoph Hellwig3f1266f2020-06-20 09:16:41 +02002002struct block_device *blkdev_get_by_path(const char *path, fmode_t mode,
2003 void *holder);
2004struct block_device *blkdev_get_by_dev(dev_t dev, fmode_t mode, void *holder);
Christoph Hellwigecbe6bc2020-07-16 16:33:09 +02002005int bd_prepare_to_claim(struct block_device *bdev, struct block_device *whole,
2006 void *holder);
Christoph Hellwig3f1266f2020-06-20 09:16:41 +02002007void bd_abort_claiming(struct block_device *bdev, struct block_device *whole,
2008 void *holder);
2009void blkdev_put(struct block_device *bdev, fmode_t mode);
2010
Christoph Hellwig621c1f42020-06-20 09:16:44 +02002011struct block_device *I_BDEV(struct inode *inode);
Christoph Hellwig10ed1662020-09-25 18:06:18 +02002012struct block_device *bdget_part(struct hd_struct *part);
Christoph Hellwig3f1266f2020-06-20 09:16:41 +02002013struct block_device *bdgrab(struct block_device *bdev);
2014void bdput(struct block_device *);
2015
2016#ifdef CONFIG_BLOCK
2017void invalidate_bdev(struct block_device *bdev);
Jan Kara384d87e2020-09-04 10:58:52 +02002018int truncate_bdev_range(struct block_device *bdev, fmode_t mode, loff_t lstart,
2019 loff_t lend);
Christoph Hellwig3f1266f2020-06-20 09:16:41 +02002020int sync_blockdev(struct block_device *bdev);
2021#else
2022static inline void invalidate_bdev(struct block_device *bdev)
2023{
2024}
Jan Kara384d87e2020-09-04 10:58:52 +02002025static inline int truncate_bdev_range(struct block_device *bdev, fmode_t mode,
2026 loff_t lstart, loff_t lend)
2027{
2028 return 0;
2029}
Christoph Hellwig3f1266f2020-06-20 09:16:41 +02002030static inline int sync_blockdev(struct block_device *bdev)
2031{
2032 return 0;
2033}
2034#endif
2035int fsync_bdev(struct block_device *bdev);
2036
Christoph Hellwigd96cd09a2020-11-24 11:54:06 +01002037int freeze_bdev(struct block_device *bdev);
2038int thaw_bdev(struct block_device *bdev);
Christoph Hellwig3f1266f2020-06-20 09:16:41 +02002039
2040#endif /* _LINUX_BLKDEV_H */