blob: 02fa42d24b52f5632500e2dd530a3b16be1f38d8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_BLKDEV_H
2#define _LINUX_BLKDEV_H
3
Russell King85fd0bc2012-05-14 08:29:23 +02004#include <linux/sched.h>
Ingo Molnare6017572017-02-01 16:36:40 +01005#include <linux/sched/clock.h>
Russell King85fd0bc2012-05-14 08:29:23 +02006
Jens Axboef5ff8422007-09-21 09:19:54 +02007#ifdef CONFIG_BLOCK
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/major.h>
10#include <linux/genhd.h>
11#include <linux/list.h>
Jens Axboe320ae512013-10-24 09:20:05 +010012#include <linux/llist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/timer.h>
14#include <linux/workqueue.h>
15#include <linux/pagemap.h>
Tejun Heo66114ca2015-05-22 17:13:32 -040016#include <linux/backing-dev-defs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/wait.h>
18#include <linux/mempool.h>
Dan Williams34c0fd52016-01-15 16:56:14 -080019#include <linux/pfn.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/bio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/stringify.h>
Hugh Dickins3e6053d2008-09-11 10:57:55 +020022#include <linux/gfp.h>
FUJITA Tomonorid351af02007-07-09 12:40:35 +020023#include <linux/bsg.h>
Jens Axboec7c22e42008-09-13 20:26:01 +020024#include <linux/smp.h>
Tejun Heo548bc8e2013-01-09 08:05:13 -080025#include <linux/rcupdate.h>
Tejun Heoadd703f2014-07-01 10:34:38 -060026#include <linux/percpu-refcount.h>
Christoph Hellwig84be4562015-05-01 12:46:15 +020027#include <linux/scatterlist.h>
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +090028#include <linux/blkzoned.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;
Jens Axboe87760e52016-11-09 12:38:14 -070042struct rq_wb;
Omar Sandoval34dbad52017-03-21 08:56:08 -070043struct blk_queue_stats;
44struct blk_stat_callback;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46#define BLKDEV_MIN_RQ 4
47#define BLKDEV_MAX_RQ 128 /* Default maximum */
48
Stephen Bates02063192017-04-20 16:59:11 -060049/* Must be consisitent with blk_mq_poll_stats_bkt() */
50#define BLK_MQ_POLL_STATS_BKTS 16
51
Tejun Heo8bd435b2012-04-13 13:11:28 -070052/*
53 * Maximum number of blkcg policies allowed to be registered concurrently.
54 * Defined here to simplify include dependency.
55 */
Arianna Avanzinie21b7a02017-04-12 18:23:08 +020056#define BLKCG_MAX_POLS 3
Tejun Heo8bd435b2012-04-13 13:11:28 -070057
Christoph Hellwig2a842ac2017-06-03 09:38:04 +020058typedef void (rq_end_io_fn)(struct request *, blk_status_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Tejun Heo5b788ce2012-06-04 20:40:59 -070060#define BLK_RL_SYNCFULL (1U << 0)
61#define BLK_RL_ASYNCFULL (1U << 1)
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063struct request_list {
Tejun Heo5b788ce2012-06-04 20:40:59 -070064 struct request_queue *q; /* the queue this rl belongs to */
Tejun Heoa0516612012-06-26 15:05:44 -070065#ifdef CONFIG_BLK_CGROUP
66 struct blkcg_gq *blkg; /* blkg this request pool belongs to */
67#endif
Jens Axboe1faa16d2009-04-06 14:48:01 +020068 /*
69 * count[], starved[], and wait[] are indexed by
70 * BLK_RW_SYNC/BLK_RW_ASYNC
71 */
Tejun Heo8a5ecdd2012-06-04 20:40:58 -070072 int count[2];
73 int starved[2];
74 mempool_t *rq_pool;
75 wait_queue_head_t wait[2];
Tejun Heo5b788ce2012-06-04 20:40:59 -070076 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077};
78
Jens Axboe4aff5e22006-08-10 08:44:47 +020079/*
Christoph Hellwige8064022016-10-20 15:12:13 +020080 * request flags */
81typedef __u32 __bitwise req_flags_t;
82
83/* elevator knows about this request */
84#define RQF_SORTED ((__force req_flags_t)(1 << 0))
85/* drive already may have started this one */
86#define RQF_STARTED ((__force req_flags_t)(1 << 1))
87/* uses tagged queueing */
88#define RQF_QUEUED ((__force req_flags_t)(1 << 2))
89/* may not be passed by ioscheduler */
90#define RQF_SOFTBARRIER ((__force req_flags_t)(1 << 3))
91/* request for flush sequence */
92#define RQF_FLUSH_SEQ ((__force req_flags_t)(1 << 4))
93/* merge of different types, fail separately */
94#define RQF_MIXED_MERGE ((__force req_flags_t)(1 << 5))
95/* track inflight for MQ */
96#define RQF_MQ_INFLIGHT ((__force req_flags_t)(1 << 6))
97/* don't call prep for this one */
98#define RQF_DONTPREP ((__force req_flags_t)(1 << 7))
99/* set for "ide_preempt" requests and also for requests for which the SCSI
100 "quiesce" state must be ignored. */
101#define RQF_PREEMPT ((__force req_flags_t)(1 << 8))
102/* contains copies of user pages */
103#define RQF_COPY_USER ((__force req_flags_t)(1 << 9))
104/* vaguely specified driver internal error. Ignored by the block layer */
105#define RQF_FAILED ((__force req_flags_t)(1 << 10))
106/* don't warn about errors */
107#define RQF_QUIET ((__force req_flags_t)(1 << 11))
108/* elevator private data attached */
109#define RQF_ELVPRIV ((__force req_flags_t)(1 << 12))
110/* account I/O stat */
111#define RQF_IO_STAT ((__force req_flags_t)(1 << 13))
112/* request came from our alloc pool */
113#define RQF_ALLOCED ((__force req_flags_t)(1 << 14))
114/* runtime pm request */
115#define RQF_PM ((__force req_flags_t)(1 << 15))
116/* on IO scheduler merge hash */
117#define RQF_HASHED ((__force req_flags_t)(1 << 16))
Jens Axboecf43e6b2016-11-07 21:32:37 -0700118/* IO stats tracking on */
119#define RQF_STATS ((__force req_flags_t)(1 << 17))
Christoph Hellwigf9d03f92016-12-08 15:20:32 -0700120/* Look at ->special_vec for the actual data payload instead of the
121 bio chain. */
122#define RQF_SPECIAL_PAYLOAD ((__force req_flags_t)(1 << 18))
Christoph Hellwige8064022016-10-20 15:12:13 +0200123
124/* flags that prevent us from merging requests: */
125#define RQF_NOMERGE_FLAGS \
Christoph Hellwigf9d03f92016-12-08 15:20:32 -0700126 (RQF_STARTED | RQF_SOFTBARRIER | RQF_FLUSH_SEQ | RQF_SPECIAL_PAYLOAD)
Christoph Hellwige8064022016-10-20 15:12:13 +0200127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128/*
Christoph Hellwigaf76e552014-05-06 12:12:45 +0200129 * Try to put the fields that are referenced together in the same cacheline.
130 *
131 * If you modify this structure, make sure to update blk_rq_init() and
132 * especially blk_mq_rq_ctx_init() to take care of the added fields.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 */
134struct request {
Christoph Hellwig6897fc22014-01-30 15:45:47 -0800135 struct list_head queuelist;
Jens Axboe320ae512013-10-24 09:20:05 +0100136 union {
Ying Huang966a9672017-08-08 12:30:00 +0800137 call_single_data_t csd;
Jan Kara9828c2c2016-06-28 09:03:59 +0200138 u64 fifo_time;
Jens Axboe320ae512013-10-24 09:20:05 +0100139 };
Jens Axboeff856ba2006-01-09 16:02:34 +0100140
Jens Axboe165125e2007-07-24 09:28:11 +0200141 struct request_queue *q;
Jens Axboe320ae512013-10-24 09:20:05 +0100142 struct blk_mq_ctx *mq_ctx;
Jens Axboee6a1c872006-08-10 09:00:21 +0200143
Richard Kennedy181fdde2010-03-19 08:58:16 +0100144 int cpu;
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600145 unsigned int cmd_flags; /* op and common flags */
Christoph Hellwige8064022016-10-20 15:12:13 +0200146 req_flags_t rq_flags;
Jens Axboed486f1f2017-01-31 12:34:41 -0700147
148 int internal_tag;
149
Christoph Hellwigca93e452016-06-09 16:00:35 +0200150 unsigned long atomic_flags;
Richard Kennedy181fdde2010-03-19 08:58:16 +0100151
Tejun Heoa2dec7b2009-05-07 22:24:44 +0900152 /* the following two fields are internal, NEVER access directly */
Tejun Heoa2dec7b2009-05-07 22:24:44 +0900153 unsigned int __data_len; /* total data len */
Jens Axboebd166ef2017-01-17 06:03:22 -0700154 int tag;
Richard Kennedy181fdde2010-03-19 08:58:16 +0100155 sector_t __sector; /* sector cursor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157 struct bio *bio;
158 struct bio *biotail;
159
Jens Axboe360f92c2014-04-09 20:27:01 -0600160 /*
161 * The hash is used inside the scheduler, and killed once the
162 * request reaches the dispatch list. The ipi_list is only used
163 * to queue the request for softirq completion, which is long
164 * after the request has been unhashed (and even removed from
165 * the dispatch list).
166 */
167 union {
168 struct hlist_node hash; /* merge hash */
169 struct list_head ipi_list;
170 };
171
Jens Axboee6a1c872006-08-10 09:00:21 +0200172 /*
173 * The rb_node is only used inside the io scheduler, requests
174 * are pruned when moved to the dispatch queue. So let the
Mike Snitzerc1867942011-02-11 11:08:00 +0100175 * completion_data share space with the rb_node.
Jens Axboee6a1c872006-08-10 09:00:21 +0200176 */
177 union {
178 struct rb_node rb_node; /* sort/lookup */
Christoph Hellwigf9d03f92016-12-08 15:20:32 -0700179 struct bio_vec special_vec;
Mike Snitzerc1867942011-02-11 11:08:00 +0100180 void *completion_data;
Christoph Hellwige26738e2017-04-20 16:03:11 +0200181 int error_count; /* for legacy drivers, don't use */
Jens Axboee6a1c872006-08-10 09:00:21 +0200182 };
Jens Axboe98170642006-07-28 09:23:08 +0200183
Jens Axboeff7d1452006-07-12 14:04:37 +0200184 /*
Vivek Goyal7f1dc8a2010-04-21 17:44:16 +0200185 * Three pointers are available for the IO schedulers, if they need
Mike Snitzerc1867942011-02-11 11:08:00 +0100186 * more they have to dynamically allocate it. Flush requests are
187 * never put on the IO scheduler. So let the flush fields share
Tejun Heoa612fdd2011-12-14 00:33:41 +0100188 * space with the elevator data.
Jens Axboeff7d1452006-07-12 14:04:37 +0200189 */
Mike Snitzerc1867942011-02-11 11:08:00 +0100190 union {
Tejun Heoa612fdd2011-12-14 00:33:41 +0100191 struct {
192 struct io_cq *icq;
193 void *priv[2];
194 } elv;
195
Mike Snitzerc1867942011-02-11 11:08:00 +0100196 struct {
197 unsigned int seq;
198 struct list_head list;
Jeff Moyer4853aba2011-08-15 21:37:25 +0200199 rq_end_io_fn *saved_end_io;
Mike Snitzerc1867942011-02-11 11:08:00 +0100200 } flush;
201 };
Jens Axboeff7d1452006-07-12 14:04:37 +0200202
Jens Axboe8f34ee72006-06-13 09:02:34 +0200203 struct gendisk *rq_disk;
Jerome Marchand09e099d2011-01-05 16:57:38 +0100204 struct hd_struct *part;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 unsigned long start_time;
Jens Axboecf43e6b2016-11-07 21:32:37 -0700206 struct blk_issue_stat issue_stat;
Divyesh Shah91952912010-04-01 15:01:41 -0700207#ifdef CONFIG_BLK_CGROUP
Tejun Heoa0516612012-06-26 15:05:44 -0700208 struct request_list *rl; /* rl this rq is alloced from */
Divyesh Shah91952912010-04-01 15:01:41 -0700209 unsigned long long start_time_ns;
210 unsigned long long io_start_time_ns; /* when passed to hardware */
211#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 /* Number of scatter-gather DMA addr+len pairs after
213 * physical address coalescing is performed.
214 */
215 unsigned short nr_phys_segments;
Martin K. Petersen13f05c82010-09-10 20:50:10 +0200216#if defined(CONFIG_BLK_DEV_INTEGRITY)
217 unsigned short nr_integrity_segments;
218#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Jens Axboe8f34ee72006-06-13 09:02:34 +0200220 unsigned short ioprio;
221
Jens Axboe1dd51982017-04-05 12:16:38 -0600222 unsigned int timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 void *special; /* opaque pointer available for LLD use */
Jens Axboecdd60262006-07-28 09:32:07 +0200225
FUJITA Tomonori7a85f882008-03-04 11:17:11 +0100226 unsigned int extra_len; /* length of alignment and padding */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Jens Axboecb6934f2017-06-27 09:22:02 -0600228 unsigned short write_hint;
229
Jens Axboe242f9dc2008-09-14 05:55:09 -0700230 unsigned long deadline;
231 struct list_head timeout_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233 /*
Jens Axboec00895a2006-09-30 20:29:12 +0200234 * completion callback.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 */
236 rq_end_io_fn *end_io;
237 void *end_io_data;
FUJITA Tomonoriabae1fd2007-07-16 08:52:14 +0200238
239 /* for bidi */
240 struct request *next_rq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241};
242
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100243static inline bool blk_rq_is_scsi(struct request *rq)
244{
245 return req_op(rq) == REQ_OP_SCSI_IN || req_op(rq) == REQ_OP_SCSI_OUT;
246}
247
248static inline bool blk_rq_is_private(struct request *rq)
249{
250 return req_op(rq) == REQ_OP_DRV_IN || req_op(rq) == REQ_OP_DRV_OUT;
251}
252
Christoph Hellwig57292b52017-01-31 16:57:29 +0100253static inline bool blk_rq_is_passthrough(struct request *rq)
254{
Christoph Hellwigaebf5262017-01-31 16:57:31 +0100255 return blk_rq_is_scsi(rq) || blk_rq_is_private(rq);
Christoph Hellwig57292b52017-01-31 16:57:29 +0100256}
257
Fernando Luis Vázquez Cao766ca442008-08-14 09:59:13 +0200258static inline unsigned short req_get_ioprio(struct request *req)
259{
260 return req->ioprio;
261}
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263#include <linux/elevator.h>
264
Jens Axboe320ae512013-10-24 09:20:05 +0100265struct blk_queue_ctx;
266
Jens Axboe165125e2007-07-24 09:28:11 +0200267typedef void (request_fn_proc) (struct request_queue *q);
Jens Axboedece1632015-11-05 10:41:16 -0700268typedef blk_qc_t (make_request_fn) (struct request_queue *q, struct bio *bio);
Jens Axboe165125e2007-07-24 09:28:11 +0200269typedef int (prep_rq_fn) (struct request_queue *, struct request *);
James Bottomley28018c22010-07-01 19:49:17 +0900270typedef void (unprep_rq_fn) (struct request_queue *, struct request *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272struct bio_vec;
Jens Axboeff856ba2006-01-09 16:02:34 +0100273typedef void (softirq_done_fn)(struct request *);
Tejun Heo2fb98e82008-02-19 11:36:53 +0100274typedef int (dma_drain_needed_fn)(struct request *);
Kiyoshi Uedaef9e3fa2008-10-01 16:12:15 +0200275typedef int (lld_busy_fn) (struct request_queue *q);
Mike Christieaa387cc2011-07-31 22:05:09 +0200276typedef int (bsg_job_fn) (struct bsg_job *);
Christoph Hellwig6d247d72017-01-27 09:51:45 -0700277typedef int (init_rq_fn)(struct request_queue *, struct request *, gfp_t);
278typedef void (exit_rq_fn)(struct request_queue *, struct request *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Jens Axboe242f9dc2008-09-14 05:55:09 -0700280enum blk_eh_timer_return {
281 BLK_EH_NOT_HANDLED,
282 BLK_EH_HANDLED,
283 BLK_EH_RESET_TIMER,
284};
285
286typedef enum blk_eh_timer_return (rq_timed_out_fn)(struct request *);
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288enum blk_queue_state {
289 Queue_down,
290 Queue_up,
291};
292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293struct blk_queue_tag {
294 struct request **tag_index; /* map of busy tags */
295 unsigned long *tag_map; /* bit map of free/busy tags */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 int max_depth; /* what we will send to device */
Tejun Heoba025082005-08-05 13:28:11 -0700297 int real_max_depth; /* what the array can hold */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 atomic_t refcnt; /* map can be shared */
Shaohua Liee1b6f72015-01-15 17:32:25 -0800299 int alloc_policy; /* tag allocation policy */
300 int next_tag; /* next tag */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301};
Shaohua Liee1b6f72015-01-15 17:32:25 -0800302#define BLK_TAG_ALLOC_FIFO 0 /* allocate starting from 0 */
303#define BLK_TAG_ALLOC_RR 1 /* allocate starting from last allocated tag */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
FUJITA Tomonoriabf54392008-08-16 14:10:05 +0900305#define BLK_SCSI_MAX_CMDS (256)
306#define BLK_SCSI_CMD_PER_LONG (BLK_SCSI_MAX_CMDS / (sizeof(long) * 8))
307
Damien Le Moal797476b2016-10-18 15:40:29 +0900308/*
309 * Zoned block device models (zoned limit).
310 */
311enum blk_zoned_model {
312 BLK_ZONED_NONE, /* Regular block device */
313 BLK_ZONED_HA, /* Host-aware zoned block device */
314 BLK_ZONED_HM, /* Host-managed zoned block device */
315};
316
Martin K. Petersen025146e2009-05-22 17:17:51 -0400317struct queue_limits {
318 unsigned long bounce_pfn;
319 unsigned long seg_boundary_mask;
Keith Busch03100aa2015-08-19 14:24:05 -0700320 unsigned long virt_boundary_mask;
Martin K. Petersen025146e2009-05-22 17:17:51 -0400321
322 unsigned int max_hw_sectors;
Martin K. Petersenca369d52015-11-13 16:46:48 -0500323 unsigned int max_dev_sectors;
Jens Axboe762380a2014-06-05 13:38:39 -0600324 unsigned int chunk_sectors;
Martin K. Petersen025146e2009-05-22 17:17:51 -0400325 unsigned int max_sectors;
326 unsigned int max_segment_size;
Martin K. Petersenc72758f2009-05-22 17:17:53 -0400327 unsigned int physical_block_size;
328 unsigned int alignment_offset;
329 unsigned int io_min;
330 unsigned int io_opt;
Christoph Hellwig67efc922009-09-30 13:54:20 +0200331 unsigned int max_discard_sectors;
Jens Axboe0034af02015-07-16 09:14:26 -0600332 unsigned int max_hw_discard_sectors;
Martin K. Petersen4363ac72012-09-18 12:19:27 -0400333 unsigned int max_write_same_sectors;
Chaitanya Kulkarnia6f07882016-11-30 12:28:59 -0800334 unsigned int max_write_zeroes_sectors;
Martin K. Petersen86b37282009-11-10 11:50:21 +0100335 unsigned int discard_granularity;
336 unsigned int discard_alignment;
Martin K. Petersen025146e2009-05-22 17:17:51 -0400337
338 unsigned short logical_block_size;
Martin K. Petersen8a783622010-02-26 00:20:39 -0500339 unsigned short max_segments;
Martin K. Petersen13f05c82010-09-10 20:50:10 +0200340 unsigned short max_integrity_segments;
Christoph Hellwig1e739732017-02-08 14:46:49 +0100341 unsigned short max_discard_segments;
Martin K. Petersen025146e2009-05-22 17:17:51 -0400342
Martin K. Petersenc72758f2009-05-22 17:17:53 -0400343 unsigned char misaligned;
Martin K. Petersen86b37282009-11-10 11:50:21 +0100344 unsigned char discard_misaligned;
Martin K. Petersene692cb62010-12-01 19:41:49 +0100345 unsigned char cluster;
Kent Overstreetc78afc62013-07-11 22:39:53 -0700346 unsigned char raid_partial_stripes_expensive;
Damien Le Moal797476b2016-10-18 15:40:29 +0900347 enum blk_zoned_model zoned;
Martin K. Petersen025146e2009-05-22 17:17:51 -0400348};
349
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900350#ifdef CONFIG_BLK_DEV_ZONED
351
352struct blk_zone_report_hdr {
353 unsigned int nr_zones;
354 u8 padding[60];
355};
356
357extern int blkdev_report_zones(struct block_device *bdev,
358 sector_t sector, struct blk_zone *zones,
359 unsigned int *nr_zones, gfp_t gfp_mask);
360extern int blkdev_reset_zones(struct block_device *bdev, sector_t sectors,
361 sector_t nr_sectors, gfp_t gfp_mask);
362
Shaun Tancheff3ed05a92016-10-18 15:40:35 +0900363extern int blkdev_report_zones_ioctl(struct block_device *bdev, fmode_t mode,
364 unsigned int cmd, unsigned long arg);
365extern int blkdev_reset_zones_ioctl(struct block_device *bdev, fmode_t mode,
366 unsigned int cmd, unsigned long arg);
367
368#else /* CONFIG_BLK_DEV_ZONED */
369
370static inline int blkdev_report_zones_ioctl(struct block_device *bdev,
371 fmode_t mode, unsigned int cmd,
372 unsigned long arg)
373{
374 return -ENOTTY;
375}
376
377static inline int blkdev_reset_zones_ioctl(struct block_device *bdev,
378 fmode_t mode, unsigned int cmd,
379 unsigned long arg)
380{
381 return -ENOTTY;
382}
383
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900384#endif /* CONFIG_BLK_DEV_ZONED */
385
Richard Kennedyd7b76302011-07-13 21:17:23 +0200386struct request_queue {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 /*
388 * Together with queue_head for cacheline sharing
389 */
390 struct list_head queue_head;
391 struct request *last_merge;
Jens Axboeb374d182008-10-31 10:05:07 +0100392 struct elevator_queue *elevator;
Tejun Heo8a5ecdd2012-06-04 20:40:58 -0700393 int nr_rqs[2]; /* # allocated [a]sync rqs */
394 int nr_rqs_elvpriv; /* # allocated rqs w/ elvpriv */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Jens Axboe8e8320c2017-06-20 17:56:13 -0600396 atomic_t shared_hctx_restart;
397
Omar Sandoval34dbad52017-03-21 08:56:08 -0700398 struct blk_queue_stats *stats;
Jens Axboe87760e52016-11-09 12:38:14 -0700399 struct rq_wb *rq_wb;
400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 /*
Tejun Heoa0516612012-06-26 15:05:44 -0700402 * If blkcg is not used, @q->root_rl serves all requests. If blkcg
403 * is used, root blkg allocates from @q->root_rl and all other
404 * blkgs from their own blkg->rl. Which one to use should be
405 * determined using bio_request_list().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 */
Tejun Heoa0516612012-06-26 15:05:44 -0700407 struct request_list root_rl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409 request_fn_proc *request_fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 make_request_fn *make_request_fn;
411 prep_rq_fn *prep_rq_fn;
James Bottomley28018c22010-07-01 19:49:17 +0900412 unprep_rq_fn *unprep_rq_fn;
Jens Axboeff856ba2006-01-09 16:02:34 +0100413 softirq_done_fn *softirq_done_fn;
Jens Axboe242f9dc2008-09-14 05:55:09 -0700414 rq_timed_out_fn *rq_timed_out_fn;
Tejun Heo2fb98e82008-02-19 11:36:53 +0100415 dma_drain_needed_fn *dma_drain_needed;
Kiyoshi Uedaef9e3fa2008-10-01 16:12:15 +0200416 lld_busy_fn *lld_busy_fn;
Bart Van Assched280bab2017-06-20 11:15:40 -0700417 /* Called just after a request is allocated */
Christoph Hellwig6d247d72017-01-27 09:51:45 -0700418 init_rq_fn *init_rq_fn;
Bart Van Assched280bab2017-06-20 11:15:40 -0700419 /* Called just before a request is freed */
Christoph Hellwig6d247d72017-01-27 09:51:45 -0700420 exit_rq_fn *exit_rq_fn;
Bart Van Assched280bab2017-06-20 11:15:40 -0700421 /* Called from inside blk_get_request() */
422 void (*initialize_rq_fn)(struct request *rq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Jens Axboef8a5b122016-12-13 09:24:51 -0700424 const struct blk_mq_ops *mq_ops;
Jens Axboe320ae512013-10-24 09:20:05 +0100425
426 unsigned int *mq_map;
427
428 /* sw queues */
Ming Leie6cdb092014-06-03 11:24:06 +0800429 struct blk_mq_ctx __percpu *queue_ctx;
Jens Axboe320ae512013-10-24 09:20:05 +0100430 unsigned int nr_queues;
431
Jens Axboed278d4a2016-03-30 10:21:08 -0600432 unsigned int queue_depth;
433
Jens Axboe320ae512013-10-24 09:20:05 +0100434 /* hw dispatch queues */
435 struct blk_mq_hw_ctx **queue_hw_ctx;
436 unsigned int nr_hw_queues;
437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 /*
Tejun Heo8922e162005-10-20 16:23:44 +0200439 * Dispatch queue sorting
440 */
Jens Axboe1b47f532005-10-20 16:37:00 +0200441 sector_t end_sector;
Tejun Heo8922e162005-10-20 16:23:44 +0200442 struct request *boundary_rq;
Tejun Heo8922e162005-10-20 16:23:44 +0200443
444 /*
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500445 * Delayed queue handling
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 */
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500447 struct delayed_work delay_work;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Jan Karadc3b17c2017-02-02 15:56:50 +0100449 struct backing_dev_info *backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 /*
452 * The queue owner gets to use this for whatever they like.
453 * ll_rw_blk doesn't touch it.
454 */
455 void *queuedata;
456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 * various queue flags, see QUEUE_* below
459 */
460 unsigned long queue_flags;
461
462 /*
Tejun Heoa73f7302011-12-14 00:33:37 +0100463 * ida allocated id for this queue. Used to index queues from
464 * ioctx.
465 */
466 int id;
467
468 /*
Richard Kennedyd7b76302011-07-13 21:17:23 +0200469 * queue needs bounce pages for pages above this limit
470 */
471 gfp_t bounce_gfp;
472
473 /*
152587d2005-04-12 16:22:06 -0500474 * protects queue structures from reentrancy. ->__queue_lock should
475 * _never_ be used directly, it is queue private. always use
476 * ->queue_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 */
152587d2005-04-12 16:22:06 -0500478 spinlock_t __queue_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 spinlock_t *queue_lock;
480
481 /*
482 * queue kobject
483 */
484 struct kobject kobj;
485
Jens Axboe320ae512013-10-24 09:20:05 +0100486 /*
487 * mq queue kobject
488 */
489 struct kobject mq_kobj;
490
Dan Williamsac6fc482015-10-21 13:20:18 -0400491#ifdef CONFIG_BLK_DEV_INTEGRITY
492 struct blk_integrity integrity;
493#endif /* CONFIG_BLK_DEV_INTEGRITY */
494
Rafael J. Wysocki47fafbc2014-12-04 01:00:23 +0100495#ifdef CONFIG_PM
Lin Ming6c954662013-03-23 11:42:26 +0800496 struct device *dev;
497 int rpm_status;
498 unsigned int nr_pending;
499#endif
500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 /*
502 * queue settings
503 */
504 unsigned long nr_requests; /* Max # of requests */
505 unsigned int nr_congestion_on;
506 unsigned int nr_congestion_off;
507 unsigned int nr_batching;
508
James Bottomleyfa0ccd82008-01-10 11:30:36 -0600509 unsigned int dma_drain_size;
Richard Kennedyd7b76302011-07-13 21:17:23 +0200510 void *dma_drain_buffer;
Tejun Heoe3790c72008-03-04 11:18:17 +0100511 unsigned int dma_pad_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 unsigned int dma_alignment;
513
514 struct blk_queue_tag *queue_tags;
Jens Axboe6eca9002007-10-25 10:14:47 +0200515 struct list_head tag_busy_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Tejun Heo15853af2005-11-10 08:52:05 +0100517 unsigned int nr_sorted;
Jens Axboe0a7ae2f2009-05-20 08:54:31 +0200518 unsigned int in_flight[2];
Jens Axboecf43e6b2016-11-07 21:32:37 -0700519
Bart Van Assche24faf6f2012-11-28 13:46:45 +0100520 /*
521 * Number of active block driver functions for which blk_drain_queue()
522 * must wait. Must be incremented around functions that unlock the
523 * queue_lock internally, e.g. scsi_request_fn().
524 */
525 unsigned int request_fn_active;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Jens Axboe242f9dc2008-09-14 05:55:09 -0700527 unsigned int rq_timeout;
Jens Axboe64f1c212016-11-14 13:03:03 -0700528 int poll_nsec;
Omar Sandoval34dbad52017-03-21 08:56:08 -0700529
530 struct blk_stat_callback *poll_cb;
Stephen Bates02063192017-04-20 16:59:11 -0600531 struct blk_rq_stat poll_stat[BLK_MQ_POLL_STATS_BKTS];
Omar Sandoval34dbad52017-03-21 08:56:08 -0700532
Jens Axboe242f9dc2008-09-14 05:55:09 -0700533 struct timer_list timeout;
Christoph Hellwig287922e2015-10-30 20:57:30 +0800534 struct work_struct timeout_work;
Jens Axboe242f9dc2008-09-14 05:55:09 -0700535 struct list_head timeout_list;
536
Tejun Heoa612fdd2011-12-14 00:33:41 +0100537 struct list_head icq_list;
Tejun Heo4eef3042012-03-05 13:15:18 -0800538#ifdef CONFIG_BLK_CGROUP
Tejun Heoa2b16932012-04-13 13:11:33 -0700539 DECLARE_BITMAP (blkcg_pols, BLKCG_MAX_POLS);
Tejun Heo3c798392012-04-16 13:57:25 -0700540 struct blkcg_gq *root_blkg;
Tejun Heo03aa2642012-03-05 13:15:19 -0800541 struct list_head blkg_list;
Tejun Heo4eef3042012-03-05 13:15:18 -0800542#endif
Tejun Heoa612fdd2011-12-14 00:33:41 +0100543
Martin K. Petersen025146e2009-05-22 17:17:51 -0400544 struct queue_limits limits;
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 /*
547 * sg stuff
548 */
549 unsigned int sg_timeout;
550 unsigned int sg_reserved_size;
Christoph Lameter19460892005-06-23 00:08:19 -0700551 int node;
Alexey Dobriyan6c5c9342006-09-29 01:59:40 -0700552#ifdef CONFIG_BLK_DEV_IO_TRACE
Jens Axboe2056a782006-03-23 20:00:26 +0100553 struct blk_trace *blk_trace;
Waiman Long5acb3cc2017-09-20 13:12:20 -0600554 struct mutex blk_trace_mutex;
Alexey Dobriyan6c5c9342006-09-29 01:59:40 -0700555#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 /*
Tejun Heo4913efe2010-09-03 11:56:16 +0200557 * for flush operations
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 */
Ming Lei7c94e1c2014-09-25 23:23:43 +0800559 struct blk_flush_queue *fq;
Al Viro483f4af2006-03-18 18:34:37 -0500560
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600561 struct list_head requeue_list;
562 spinlock_t requeue_lock;
Mike Snitzer28494502016-09-14 13:28:30 -0400563 struct delayed_work requeue_work;
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600564
Al Viro483f4af2006-03-18 18:34:37 -0500565 struct mutex sysfs_lock;
FUJITA Tomonorid351af02007-07-09 12:40:35 +0200566
Tejun Heod7325802012-03-05 13:14:58 -0800567 int bypass_depth;
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +0200568 atomic_t mq_freeze_depth;
Tejun Heod7325802012-03-05 13:14:58 -0800569
FUJITA Tomonorid351af02007-07-09 12:40:35 +0200570#if defined(CONFIG_BLK_DEV_BSG)
Mike Christieaa387cc2011-07-31 22:05:09 +0200571 bsg_job_fn *bsg_job_fn;
FUJITA Tomonorid351af02007-07-09 12:40:35 +0200572 struct bsg_class_device bsg_dev;
573#endif
Vivek Goyale43473b2010-09-15 17:06:35 -0400574
575#ifdef CONFIG_BLK_DEV_THROTTLING
576 /* Throttle data */
577 struct throtl_data *td;
578#endif
Tejun Heo548bc8e2013-01-09 08:05:13 -0800579 struct rcu_head rcu_head;
Jens Axboe320ae512013-10-24 09:20:05 +0100580 wait_queue_head_t mq_freeze_wq;
Dan Williams3ef28e82015-10-21 13:20:12 -0400581 struct percpu_ref q_usage_counter;
Jens Axboe320ae512013-10-24 09:20:05 +0100582 struct list_head all_q_node;
Jens Axboe0d2602c2014-05-13 15:10:52 -0600583
584 struct blk_mq_tag_set *tag_set;
585 struct list_head tag_set_list;
Kent Overstreet54efd502015-04-23 22:37:18 -0700586 struct bio_set *bio_split;
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900587
Omar Sandoval03796c12017-01-31 14:53:18 -0800588#ifdef CONFIG_BLK_DEBUG_FS
Omar Sandoval07e4fea2017-01-25 08:06:40 -0800589 struct dentry *debugfs_dir;
Omar Sandovald332ce02017-05-04 08:24:40 -0600590 struct dentry *sched_debugfs_dir;
Omar Sandoval07e4fea2017-01-25 08:06:40 -0800591#endif
592
Akinobu Mita4593fdb2015-09-27 02:09:20 +0900593 bool mq_sysfs_init_done;
Christoph Hellwig6d247d72017-01-27 09:51:45 -0700594
595 size_t cmd_size;
596 void *rq_alloc_data;
Bart Van Asschedc9edc42017-06-14 13:27:50 -0600597
598 struct work_struct release_work;
Jens Axboef793dfd2017-06-26 08:15:27 -0600599
600#define BLK_MAX_WRITE_HINTS 5
601 u64 write_hints[BLK_MAX_WRITE_HINTS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602};
603
Jens Axboee743eb12017-08-10 08:25:38 -0600604#define QUEUE_FLAG_QUEUED 0 /* uses generic tag queueing */
605#define QUEUE_FLAG_STOPPED 1 /* queue is stopped */
606#define QUEUE_FLAG_DYING 2 /* queue being torn down */
607#define QUEUE_FLAG_BYPASS 3 /* act as dumb FIFO queue */
608#define QUEUE_FLAG_BIDI 4 /* queue supports bidi requests */
609#define QUEUE_FLAG_NOMERGES 5 /* disable merge attempts */
610#define QUEUE_FLAG_SAME_COMP 6 /* complete on same CPU-group */
611#define QUEUE_FLAG_FAIL_IO 7 /* fake timeout */
612#define QUEUE_FLAG_STACKABLE 8 /* supports request stacking */
613#define QUEUE_FLAG_NONROT 9 /* non-rotational device (SSD) */
Fernando Luis Vázquez Cao88e740f2008-10-27 18:44:46 +0900614#define QUEUE_FLAG_VIRT QUEUE_FLAG_NONROT /* paravirt device */
Jens Axboee743eb12017-08-10 08:25:38 -0600615#define QUEUE_FLAG_IO_STAT 10 /* do IO stats */
616#define QUEUE_FLAG_DISCARD 11 /* supports DISCARD */
617#define QUEUE_FLAG_NOXMERGES 12 /* No extended merges */
618#define QUEUE_FLAG_ADD_RANDOM 13 /* Contributes to random pool */
619#define QUEUE_FLAG_SECERASE 14 /* supports secure erase */
620#define QUEUE_FLAG_SAME_FORCE 15 /* force complete on same CPU */
621#define QUEUE_FLAG_DEAD 16 /* queue tear-down finished */
622#define QUEUE_FLAG_INIT_DONE 17 /* queue is initialized */
623#define QUEUE_FLAG_NO_SG_MERGE 18 /* don't attempt to merge SG segments*/
624#define QUEUE_FLAG_POLL 19 /* IO polling enabled if set */
625#define QUEUE_FLAG_WC 20 /* Write back caching */
626#define QUEUE_FLAG_FUA 21 /* device supports FUA writes */
627#define QUEUE_FLAG_FLUSH_NQ 22 /* flush not queueuable */
628#define QUEUE_FLAG_DAX 23 /* device supports DAX */
629#define QUEUE_FLAG_STATS 24 /* track rq completion times */
630#define QUEUE_FLAG_POLL_STATS 25 /* collecting stats for hybrid polling */
631#define QUEUE_FLAG_REGISTERED 26 /* queue has been registered to a disk */
632#define QUEUE_FLAG_SCSI_PASSTHROUGH 27 /* queue supports SCSI commands */
633#define QUEUE_FLAG_QUIESCED 28 /* queue has been quiesced */
Jens Axboebc58ba92009-01-23 10:54:44 +0100634
635#define QUEUE_FLAG_DEFAULT ((1 << QUEUE_FLAG_IO_STAT) | \
Jens Axboe01e97f62009-09-03 20:06:47 +0200636 (1 << QUEUE_FLAG_STACKABLE) | \
Jens Axboee2e1a142010-06-09 10:42:09 +0200637 (1 << QUEUE_FLAG_SAME_COMP) | \
638 (1 << QUEUE_FLAG_ADD_RANDOM))
Tejun Heo797e7db2006-01-06 09:51:03 +0100639
Jens Axboe94eddfb2013-11-19 09:25:07 -0700640#define QUEUE_FLAG_MQ_DEFAULT ((1 << QUEUE_FLAG_IO_STAT) | \
Mike Snitzerad9cf3b2014-12-16 12:54:25 -0500641 (1 << QUEUE_FLAG_STACKABLE) | \
Christoph Hellwig8e0b60b2016-03-03 16:04:03 +0100642 (1 << QUEUE_FLAG_SAME_COMP) | \
643 (1 << QUEUE_FLAG_POLL))
Jens Axboe94eddfb2013-11-19 09:25:07 -0700644
Bart Van Assche9e0c8292017-06-20 11:15:44 -0700645/*
646 * @q->queue_lock is set while a queue is being initialized. Since we know
647 * that no other threads access the queue object before @q->queue_lock has
648 * been set, it is safe to manipulate queue flags without holding the
649 * queue_lock if @q->queue_lock == NULL. See also blk_alloc_queue_node() and
650 * blk_init_allocated_queue().
651 */
Andi Kleen8bcb6c72012-03-30 12:33:28 +0200652static inline void queue_lockdep_assert_held(struct request_queue *q)
Linus Torvalds8f45c1a2008-04-29 10:16:38 -0700653{
Andi Kleen8bcb6c72012-03-30 12:33:28 +0200654 if (q->queue_lock)
655 lockdep_assert_held(q->queue_lock);
Linus Torvalds8f45c1a2008-04-29 10:16:38 -0700656}
657
Nick Piggin75ad23b2008-04-29 14:48:33 +0200658static inline void queue_flag_set_unlocked(unsigned int flag,
659 struct request_queue *q)
660{
661 __set_bit(flag, &q->queue_flags);
662}
663
Jens Axboee48ec692008-07-03 13:18:54 +0200664static inline int queue_flag_test_and_clear(unsigned int flag,
665 struct request_queue *q)
666{
Andi Kleen8bcb6c72012-03-30 12:33:28 +0200667 queue_lockdep_assert_held(q);
Jens Axboee48ec692008-07-03 13:18:54 +0200668
669 if (test_bit(flag, &q->queue_flags)) {
670 __clear_bit(flag, &q->queue_flags);
671 return 1;
672 }
673
674 return 0;
675}
676
677static inline int queue_flag_test_and_set(unsigned int flag,
678 struct request_queue *q)
679{
Andi Kleen8bcb6c72012-03-30 12:33:28 +0200680 queue_lockdep_assert_held(q);
Jens Axboee48ec692008-07-03 13:18:54 +0200681
682 if (!test_bit(flag, &q->queue_flags)) {
683 __set_bit(flag, &q->queue_flags);
684 return 0;
685 }
686
687 return 1;
688}
689
Nick Piggin75ad23b2008-04-29 14:48:33 +0200690static inline void queue_flag_set(unsigned int flag, struct request_queue *q)
691{
Andi Kleen8bcb6c72012-03-30 12:33:28 +0200692 queue_lockdep_assert_held(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200693 __set_bit(flag, &q->queue_flags);
694}
695
696static inline void queue_flag_clear_unlocked(unsigned int flag,
697 struct request_queue *q)
698{
699 __clear_bit(flag, &q->queue_flags);
700}
701
Jens Axboe0a7ae2f2009-05-20 08:54:31 +0200702static inline int queue_in_flight(struct request_queue *q)
703{
704 return q->in_flight[0] + q->in_flight[1];
705}
706
Nick Piggin75ad23b2008-04-29 14:48:33 +0200707static inline void queue_flag_clear(unsigned int flag, struct request_queue *q)
708{
Andi Kleen8bcb6c72012-03-30 12:33:28 +0200709 queue_lockdep_assert_held(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200710 __clear_bit(flag, &q->queue_flags);
711}
712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713#define blk_queue_tagged(q) test_bit(QUEUE_FLAG_QUEUED, &(q)->queue_flags)
714#define blk_queue_stopped(q) test_bit(QUEUE_FLAG_STOPPED, &(q)->queue_flags)
Bart Van Assche3f3299d2012-11-28 13:42:38 +0100715#define blk_queue_dying(q) test_bit(QUEUE_FLAG_DYING, &(q)->queue_flags)
Bart Van Asschec246e802012-12-06 14:32:01 +0100716#define blk_queue_dead(q) test_bit(QUEUE_FLAG_DEAD, &(q)->queue_flags)
Tejun Heod7325802012-03-05 13:14:58 -0800717#define blk_queue_bypass(q) test_bit(QUEUE_FLAG_BYPASS, &(q)->queue_flags)
Jens Axboe320ae512013-10-24 09:20:05 +0100718#define blk_queue_init_done(q) test_bit(QUEUE_FLAG_INIT_DONE, &(q)->queue_flags)
Alan D. Brunelleac9fafa2008-04-29 14:44:19 +0200719#define blk_queue_nomerges(q) test_bit(QUEUE_FLAG_NOMERGES, &(q)->queue_flags)
Alan D. Brunelle488991e2010-01-29 09:04:08 +0100720#define blk_queue_noxmerges(q) \
721 test_bit(QUEUE_FLAG_NOXMERGES, &(q)->queue_flags)
Jens Axboea68bbddba2008-09-24 13:03:33 +0200722#define blk_queue_nonrot(q) test_bit(QUEUE_FLAG_NONROT, &(q)->queue_flags)
Jens Axboebc58ba92009-01-23 10:54:44 +0100723#define blk_queue_io_stat(q) test_bit(QUEUE_FLAG_IO_STAT, &(q)->queue_flags)
Jens Axboee2e1a142010-06-09 10:42:09 +0200724#define blk_queue_add_random(q) test_bit(QUEUE_FLAG_ADD_RANDOM, &(q)->queue_flags)
Kiyoshi Ueda4ee5eaf2008-09-18 10:46:13 -0400725#define blk_queue_stackable(q) \
726 test_bit(QUEUE_FLAG_STACKABLE, &(q)->queue_flags)
Christoph Hellwigc15227d2009-09-30 13:52:12 +0200727#define blk_queue_discard(q) test_bit(QUEUE_FLAG_DISCARD, &(q)->queue_flags)
Christoph Hellwig288dab82016-06-09 16:00:36 +0200728#define blk_queue_secure_erase(q) \
729 (test_bit(QUEUE_FLAG_SECERASE, &(q)->queue_flags))
Toshi Kani163d4ba2016-06-23 17:05:50 -0400730#define blk_queue_dax(q) test_bit(QUEUE_FLAG_DAX, &(q)->queue_flags)
Bart Van Assche9efc1602017-05-31 14:43:46 -0700731#define blk_queue_scsi_passthrough(q) \
732 test_bit(QUEUE_FLAG_SCSI_PASSTHROUGH, &(q)->queue_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200734#define blk_noretry_request(rq) \
735 ((rq)->cmd_flags & (REQ_FAILFAST_DEV|REQ_FAILFAST_TRANSPORT| \
736 REQ_FAILFAST_DRIVER))
Ming Leif4560ff2017-06-18 14:24:27 -0600737#define blk_queue_quiesced(q) test_bit(QUEUE_FLAG_QUIESCED, &(q)->queue_flags)
Jens Axboe4aff5e22006-08-10 08:44:47 +0200738
Christoph Hellwig57292b52017-01-31 16:57:29 +0100739static inline bool blk_account_rq(struct request *rq)
740{
741 return (rq->rq_flags & RQF_STARTED) && !blk_rq_is_passthrough(rq);
742}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Jens Axboeab780f12008-08-26 10:25:02 +0200744#define blk_rq_cpu_valid(rq) ((rq)->cpu != -1)
FUJITA Tomonoriabae1fd2007-07-16 08:52:14 +0200745#define blk_bidi_rq(rq) ((rq)->next_rq != NULL)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -0500746/* rq->queuelist of dequeued request must be list_empty() */
747#define blk_queued_rq(rq) (!list_empty(&(rq)->queuelist))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
749#define list_entry_rq(ptr) list_entry((ptr), struct request, queuelist)
750
Mike Christie4e1b2d522016-06-05 14:32:22 -0500751#define rq_data_dir(rq) (op_is_write(req_op(rq)) ? WRITE : READ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Jens Axboe49fd5242014-04-16 10:57:18 -0600753/*
754 * Driver can handle struct request, if it either has an old style
755 * request_fn defined, or is blk-mq based.
756 */
757static inline bool queue_is_rq_based(struct request_queue *q)
758{
759 return q->request_fn || q->mq_ops;
760}
761
Martin K. Petersene692cb62010-12-01 19:41:49 +0100762static inline unsigned int blk_queue_cluster(struct request_queue *q)
763{
764 return q->limits.cluster;
765}
766
Damien Le Moal797476b2016-10-18 15:40:29 +0900767static inline enum blk_zoned_model
768blk_queue_zoned_model(struct request_queue *q)
769{
770 return q->limits.zoned;
771}
772
773static inline bool blk_queue_is_zoned(struct request_queue *q)
774{
775 switch (blk_queue_zoned_model(q)) {
776 case BLK_ZONED_HA:
777 case BLK_ZONED_HM:
778 return true;
779 default:
780 return false;
781 }
782}
783
Damien Le Moalf99e8642017-01-12 07:58:32 -0700784static inline unsigned int blk_queue_zone_sectors(struct request_queue *q)
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900785{
786 return blk_queue_is_zoned(q) ? q->limits.chunk_sectors : 0;
787}
788
Jens Axboe1faa16d2009-04-06 14:48:01 +0200789static inline bool rq_is_sync(struct request *rq)
790{
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600791 return op_is_sync(rq->cmd_flags);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200792}
793
Tejun Heo5b788ce2012-06-04 20:40:59 -0700794static inline bool blk_rl_full(struct request_list *rl, bool sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
Tejun Heo5b788ce2012-06-04 20:40:59 -0700796 unsigned int flag = sync ? BLK_RL_SYNCFULL : BLK_RL_ASYNCFULL;
797
798 return rl->flags & flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799}
800
Tejun Heo5b788ce2012-06-04 20:40:59 -0700801static inline void blk_set_rl_full(struct request_list *rl, bool sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802{
Tejun Heo5b788ce2012-06-04 20:40:59 -0700803 unsigned int flag = sync ? BLK_RL_SYNCFULL : BLK_RL_ASYNCFULL;
804
805 rl->flags |= flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806}
807
Tejun Heo5b788ce2012-06-04 20:40:59 -0700808static inline void blk_clear_rl_full(struct request_list *rl, bool sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
Tejun Heo5b788ce2012-06-04 20:40:59 -0700810 unsigned int flag = sync ? BLK_RL_SYNCFULL : BLK_RL_ASYNCFULL;
811
812 rl->flags &= ~flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813}
814
Martin K. Petersene2a60da2012-09-18 12:19:25 -0400815static inline bool rq_mergeable(struct request *rq)
816{
Christoph Hellwig57292b52017-01-31 16:57:29 +0100817 if (blk_rq_is_passthrough(rq))
Martin K. Petersene2a60da2012-09-18 12:19:25 -0400818 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Mike Christie3a5e02c2016-06-05 14:32:23 -0500820 if (req_op(rq) == REQ_OP_FLUSH)
821 return false;
822
Chaitanya Kulkarnia6f07882016-11-30 12:28:59 -0800823 if (req_op(rq) == REQ_OP_WRITE_ZEROES)
824 return false;
825
Martin K. Petersene2a60da2012-09-18 12:19:25 -0400826 if (rq->cmd_flags & REQ_NOMERGE_FLAGS)
827 return false;
Christoph Hellwige8064022016-10-20 15:12:13 +0200828 if (rq->rq_flags & RQF_NOMERGE_FLAGS)
829 return false;
Martin K. Petersene2a60da2012-09-18 12:19:25 -0400830
831 return true;
832}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Martin K. Petersen4363ac72012-09-18 12:19:27 -0400834static inline bool blk_write_same_mergeable(struct bio *a, struct bio *b)
835{
Christoph Hellwigefbeccd2017-06-19 09:24:41 +0200836 if (bio_page(a) == bio_page(b) &&
837 bio_offset(a) == bio_offset(b))
Martin K. Petersen4363ac72012-09-18 12:19:27 -0400838 return true;
839
840 return false;
841}
842
Jens Axboed278d4a2016-03-30 10:21:08 -0600843static inline unsigned int blk_queue_depth(struct request_queue *q)
844{
845 if (q->queue_depth)
846 return q->queue_depth;
847
848 return q->nr_requests;
849}
850
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 * q->prep_rq_fn return values
853 */
Martin K. Petersen0fb5b1f2016-02-04 00:52:12 -0500854enum {
855 BLKPREP_OK, /* serve it */
856 BLKPREP_KILL, /* fatal error, kill, return -EIO */
857 BLKPREP_DEFER, /* leave on queue */
858 BLKPREP_INVALID, /* invalid command, kill, return -EREMOTEIO */
859};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
861extern unsigned long blk_max_low_pfn, blk_max_pfn;
862
863/*
864 * standard bounce addresses:
865 *
866 * BLK_BOUNCE_HIGH : bounce all highmem pages
867 * BLK_BOUNCE_ANY : don't bounce anything
868 * BLK_BOUNCE_ISA : bounce pages above ISA DMA boundary
869 */
Andi Kleen24728922008-04-21 09:51:05 +0200870
871#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872#define BLK_BOUNCE_HIGH ((u64)blk_max_low_pfn << PAGE_SHIFT)
Andi Kleen24728922008-04-21 09:51:05 +0200873#else
874#define BLK_BOUNCE_HIGH -1ULL
875#endif
876#define BLK_BOUNCE_ANY (-1ULL)
FUJITA Tomonoribfe17232010-05-31 15:59:03 +0900877#define BLK_BOUNCE_ISA (DMA_BIT_MASK(24))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
Jens Axboe3d6392c2007-07-09 12:38:05 +0200879/*
880 * default timeout for SG_IO if none specified
881 */
882#define BLK_DEFAULT_SG_TIMEOUT (60 * HZ)
Linus Torvaldsf2f1fa72008-12-05 14:49:18 -0800883#define BLK_MIN_SG_TIMEOUT (7 * HZ)
Jens Axboe3d6392c2007-07-09 12:38:05 +0200884
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900885struct rq_map_data {
886 struct page **pages;
887 int page_order;
888 int nr_entries;
FUJITA Tomonori56c451f2008-12-18 14:49:37 +0900889 unsigned long offset;
FUJITA Tomonori97ae77a2008-12-18 14:49:38 +0900890 int null_mapped;
FUJITA Tomonoriecb554a2009-07-09 14:46:53 +0200891 int from_user;
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900892};
893
NeilBrown5705f702007-09-25 12:35:59 +0200894struct req_iterator {
Kent Overstreet79886132013-11-23 17:19:00 -0800895 struct bvec_iter iter;
NeilBrown5705f702007-09-25 12:35:59 +0200896 struct bio *bio;
897};
898
899/* This should not be used directly - use rq_for_each_segment */
Jens Axboe1e428072009-02-23 09:03:10 +0100900#define for_each_bio(_bio) \
901 for (; _bio; _bio = _bio->bi_next)
NeilBrown5705f702007-09-25 12:35:59 +0200902#define __rq_for_each_bio(_bio, rq) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 if ((rq->bio)) \
904 for (_bio = (rq)->bio; _bio; _bio = _bio->bi_next)
905
NeilBrown5705f702007-09-25 12:35:59 +0200906#define rq_for_each_segment(bvl, _rq, _iter) \
907 __rq_for_each_bio(_iter.bio, _rq) \
Kent Overstreet79886132013-11-23 17:19:00 -0800908 bio_for_each_segment(bvl, _iter.bio, _iter.iter)
NeilBrown5705f702007-09-25 12:35:59 +0200909
Kent Overstreet4550dd62013-08-07 14:26:21 -0700910#define rq_iter_last(bvec, _iter) \
Kent Overstreet79886132013-11-23 17:19:00 -0800911 (_iter.bio->bi_next == NULL && \
Kent Overstreet4550dd62013-08-07 14:26:21 -0700912 bio_iter_last(bvec, _iter.iter))
NeilBrown5705f702007-09-25 12:35:59 +0200913
Ilya Loginov2d4dc892009-11-26 09:16:19 +0100914#ifndef ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
915# error "You should define ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE for your platform"
916#endif
917#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
918extern void rq_flush_dcache_pages(struct request *rq);
919#else
920static inline void rq_flush_dcache_pages(struct request *rq)
921{
922}
923#endif
924
Toshi Kani2af3a812016-05-10 10:23:52 -0600925#ifdef CONFIG_PRINTK
926#define vfs_msg(sb, level, fmt, ...) \
927 __vfs_msg(sb, level, fmt, ##__VA_ARGS__)
928#else
929#define vfs_msg(sb, level, fmt, ...) \
930do { \
931 no_printk(fmt, ##__VA_ARGS__); \
932 __vfs_msg(sb, "", " "); \
933} while (0)
934#endif
935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936extern int blk_register_queue(struct gendisk *disk);
937extern void blk_unregister_queue(struct gendisk *disk);
Jens Axboedece1632015-11-05 10:41:16 -0700938extern blk_qc_t generic_make_request(struct bio *bio);
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200939extern void blk_rq_init(struct request_queue *q, struct request *rq);
Bart Van Asscheda8d7f02017-04-19 14:01:24 -0700940extern void blk_init_request_from_bio(struct request *req, struct bio *bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941extern void blk_put_request(struct request *);
Jens Axboe165125e2007-07-24 09:28:11 +0200942extern void __blk_put_request(struct request_queue *, struct request *);
Bart Van Asschecd6ce142017-06-20 11:15:39 -0700943extern struct request *blk_get_request(struct request_queue *, unsigned int op,
944 gfp_t gfp_mask);
Jens Axboe165125e2007-07-24 09:28:11 +0200945extern void blk_requeue_request(struct request_queue *, struct request *);
Kiyoshi Uedaef9e3fa2008-10-01 16:12:15 +0200946extern int blk_lld_busy(struct request_queue *q);
Mike Snitzer78d8e582015-06-26 10:01:13 -0400947extern int blk_rq_prep_clone(struct request *rq, struct request *rq_src,
948 struct bio_set *bs, gfp_t gfp_mask,
949 int (*bio_ctr)(struct bio *, struct bio *, void *),
950 void *data);
951extern void blk_rq_unprep_clone(struct request *rq);
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200952extern blk_status_t blk_insert_cloned_request(struct request_queue *q,
Kiyoshi Ueda82124d62008-09-18 10:45:38 -0400953 struct request *rq);
Christoph Hellwig98d61d52016-07-19 11:31:51 +0200954extern int blk_rq_append_bio(struct request *rq, struct bio *bio);
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500955extern void blk_delay_queue(struct request_queue *, unsigned long);
NeilBrownaf67c312017-06-18 14:38:57 +1000956extern void blk_queue_split(struct request_queue *, struct bio **);
Jens Axboe165125e2007-07-24 09:28:11 +0200957extern void blk_recount_segments(struct request_queue *, struct bio *);
Paolo Bonzini0bfc96c2012-01-12 16:01:28 +0100958extern int scsi_verify_blk_ioctl(struct block_device *, unsigned int);
Paolo Bonzini577ebb32012-01-12 16:01:27 +0100959extern int scsi_cmd_blk_ioctl(struct block_device *, fmode_t,
960 unsigned int, void __user *);
Al Viro74f3c8a2007-08-27 15:38:10 -0400961extern int scsi_cmd_ioctl(struct request_queue *, struct gendisk *, fmode_t,
962 unsigned int, void __user *);
Al Viroe915e872008-09-02 17:16:41 -0400963extern int sg_scsi_ioctl(struct request_queue *, struct gendisk *, fmode_t,
964 struct scsi_ioctl_command __user *);
Andrew Morton3fcfab12006-10-19 23:28:16 -0700965
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100966extern int blk_queue_enter(struct request_queue *q, bool nowait);
Dan Williams2e6edc952015-11-19 13:29:28 -0800967extern void blk_queue_exit(struct request_queue *q);
Jens Axboe165125e2007-07-24 09:28:11 +0200968extern void blk_start_queue(struct request_queue *q);
Jens Axboe21491412015-12-28 13:01:22 -0700969extern void blk_start_queue_async(struct request_queue *q);
Jens Axboe165125e2007-07-24 09:28:11 +0200970extern void blk_stop_queue(struct request_queue *q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971extern void blk_sync_queue(struct request_queue *q);
Jens Axboe165125e2007-07-24 09:28:11 +0200972extern void __blk_stop_queue(struct request_queue *q);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200973extern void __blk_run_queue(struct request_queue *q);
Christoph Hellwiga7928c12015-04-17 22:37:20 +0200974extern void __blk_run_queue_uncond(struct request_queue *q);
Jens Axboe165125e2007-07-24 09:28:11 +0200975extern void blk_run_queue(struct request_queue *);
Jens Axboec21e6be2011-04-19 13:32:46 +0200976extern void blk_run_queue_async(struct request_queue *q);
FUJITA Tomonoria3bce902008-08-28 16:17:05 +0900977extern int blk_rq_map_user(struct request_queue *, struct request *,
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900978 struct rq_map_data *, void __user *, unsigned long,
979 gfp_t);
Jens Axboe8e5cfc42006-12-19 11:12:46 +0100980extern int blk_rq_unmap_user(struct bio *);
Jens Axboe165125e2007-07-24 09:28:11 +0200981extern int blk_rq_map_kern(struct request_queue *, struct request *, void *, unsigned int, gfp_t);
982extern int blk_rq_map_user_iov(struct request_queue *, struct request *,
Kent Overstreet26e49cf2015-01-18 16:16:31 +0100983 struct rq_map_data *, const struct iov_iter *,
984 gfp_t);
Christoph Hellwigb7819b92017-04-20 16:02:55 +0200985extern void blk_execute_rq(struct request_queue *, struct gendisk *,
James Bottomley 994ca9a2005-06-20 14:11:09 +0200986 struct request *, int);
Jens Axboe165125e2007-07-24 09:28:11 +0200987extern void blk_execute_rq_nowait(struct request_queue *, struct gendisk *,
Jens Axboe15fc8582006-01-06 10:00:50 +0100988 struct request *, int, rq_end_io_fn *);
Mike Christie6e39b692005-11-11 05:30:24 -0600989
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200990int blk_status_to_errno(blk_status_t status);
991blk_status_t errno_to_blk_status(int errno);
992
Jens Axboebbd7bb72016-11-04 09:34:34 -0600993bool blk_mq_poll(struct request_queue *q, blk_qc_t cookie);
Jens Axboe05229beed2015-11-05 10:44:55 -0700994
Jens Axboe165125e2007-07-24 09:28:11 +0200995static inline struct request_queue *bdev_get_queue(struct block_device *bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996{
Tejun Heoff9ea322014-09-08 08:03:56 +0900997 return bdev->bd_disk->queue; /* this is never NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998}
999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000/*
Tejun Heo80a761f2009-07-03 17:48:17 +09001001 * blk_rq_pos() : the current sector
1002 * blk_rq_bytes() : bytes left in the entire request
1003 * blk_rq_cur_bytes() : bytes left in the current segment
1004 * blk_rq_err_bytes() : bytes left till the next error boundary
1005 * blk_rq_sectors() : sectors left in the entire request
1006 * blk_rq_cur_sectors() : sectors left in the current segment
Tejun Heo5efccd12009-04-23 11:05:18 +09001007 */
Tejun Heo5b936292009-05-07 22:24:38 +09001008static inline sector_t blk_rq_pos(const struct request *rq)
1009{
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001010 return rq->__sector;
Tejun Heo5b936292009-05-07 22:24:38 +09001011}
1012
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001013static inline unsigned int blk_rq_bytes(const struct request *rq)
1014{
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001015 return rq->__data_len;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001016}
1017
1018static inline int blk_rq_cur_bytes(const struct request *rq)
1019{
1020 return rq->bio ? bio_cur_bytes(rq->bio) : 0;
1021}
Tejun Heo5efccd12009-04-23 11:05:18 +09001022
Tejun Heo80a761f2009-07-03 17:48:17 +09001023extern unsigned int blk_rq_err_bytes(const struct request *rq);
1024
Tejun Heo5b936292009-05-07 22:24:38 +09001025static inline unsigned int blk_rq_sectors(const struct request *rq)
1026{
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001027 return blk_rq_bytes(rq) >> 9;
Tejun Heo5b936292009-05-07 22:24:38 +09001028}
1029
1030static inline unsigned int blk_rq_cur_sectors(const struct request *rq)
1031{
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001032 return blk_rq_cur_bytes(rq) >> 9;
Tejun Heo5b936292009-05-07 22:24:38 +09001033}
1034
Christoph Hellwig2e3258e2017-01-13 12:29:10 +01001035/*
1036 * Some commands like WRITE SAME have a payload or data transfer size which
1037 * is different from the size of the request. Any driver that supports such
1038 * commands using the RQF_SPECIAL_PAYLOAD flag needs to use this helper to
1039 * calculate the data transfer size.
1040 */
1041static inline unsigned int blk_rq_payload_bytes(struct request *rq)
1042{
1043 if (rq->rq_flags & RQF_SPECIAL_PAYLOAD)
1044 return rq->special_vec.bv_len;
1045 return blk_rq_bytes(rq);
1046}
1047
Martin K. Petersenf31dc1c2012-09-18 12:19:26 -04001048static inline unsigned int blk_queue_get_max_sectors(struct request_queue *q,
Mike Christie8fe0d472016-06-05 14:32:15 -05001049 int op)
Martin K. Petersenf31dc1c2012-09-18 12:19:26 -04001050{
Adrian Hunter7afafc82016-08-16 10:59:35 +03001051 if (unlikely(op == REQ_OP_DISCARD || op == REQ_OP_SECURE_ERASE))
James Bottomley871dd922013-04-24 08:52:50 -06001052 return min(q->limits.max_discard_sectors, UINT_MAX >> 9);
Martin K. Petersenf31dc1c2012-09-18 12:19:26 -04001053
Mike Christie8fe0d472016-06-05 14:32:15 -05001054 if (unlikely(op == REQ_OP_WRITE_SAME))
Martin K. Petersen4363ac72012-09-18 12:19:27 -04001055 return q->limits.max_write_same_sectors;
1056
Chaitanya Kulkarnia6f07882016-11-30 12:28:59 -08001057 if (unlikely(op == REQ_OP_WRITE_ZEROES))
1058 return q->limits.max_write_zeroes_sectors;
1059
Martin K. Petersenf31dc1c2012-09-18 12:19:26 -04001060 return q->limits.max_sectors;
1061}
1062
Jens Axboe762380a2014-06-05 13:38:39 -06001063/*
1064 * Return maximum size of a request at given offset. Only valid for
1065 * file system requests.
1066 */
1067static inline unsigned int blk_max_size_offset(struct request_queue *q,
1068 sector_t offset)
1069{
1070 if (!q->limits.chunk_sectors)
Jens Axboe736ed4d2014-06-17 22:09:29 -07001071 return q->limits.max_sectors;
Jens Axboe762380a2014-06-05 13:38:39 -06001072
1073 return q->limits.chunk_sectors -
1074 (offset & (q->limits.chunk_sectors - 1));
1075}
1076
Damien Le Moal17007f32016-07-20 21:40:47 -06001077static inline unsigned int blk_rq_get_max_sectors(struct request *rq,
1078 sector_t offset)
Martin K. Petersenf31dc1c2012-09-18 12:19:26 -04001079{
1080 struct request_queue *q = rq->q;
1081
Christoph Hellwig57292b52017-01-31 16:57:29 +01001082 if (blk_rq_is_passthrough(rq))
Martin K. Petersenf31dc1c2012-09-18 12:19:26 -04001083 return q->limits.max_hw_sectors;
1084
Adrian Hunter7afafc82016-08-16 10:59:35 +03001085 if (!q->limits.chunk_sectors ||
1086 req_op(rq) == REQ_OP_DISCARD ||
1087 req_op(rq) == REQ_OP_SECURE_ERASE)
Mike Christie8fe0d472016-06-05 14:32:15 -05001088 return blk_queue_get_max_sectors(q, req_op(rq));
Jens Axboe762380a2014-06-05 13:38:39 -06001089
Damien Le Moal17007f32016-07-20 21:40:47 -06001090 return min(blk_max_size_offset(q, offset),
Mike Christie8fe0d472016-06-05 14:32:15 -05001091 blk_queue_get_max_sectors(q, req_op(rq)));
Martin K. Petersenf31dc1c2012-09-18 12:19:26 -04001092}
1093
Jun'ichi Nomura75afb352013-09-21 13:57:47 -06001094static inline unsigned int blk_rq_count_bios(struct request *rq)
1095{
1096 unsigned int nr_bios = 0;
1097 struct bio *bio;
1098
1099 __rq_for_each_bio(bio, rq)
1100 nr_bios++;
1101
1102 return nr_bios;
1103}
1104
Tejun Heo5efccd12009-04-23 11:05:18 +09001105/*
Tejun Heo9934c8c2009-05-08 11:54:16 +09001106 * Request issue related functions.
1107 */
1108extern struct request *blk_peek_request(struct request_queue *q);
1109extern void blk_start_request(struct request *rq);
1110extern struct request *blk_fetch_request(struct request_queue *q);
1111
1112/*
Tejun Heo2e60e022009-04-23 11:05:18 +09001113 * Request completion related functions.
1114 *
1115 * blk_update_request() completes given number of bytes and updates
1116 * the request without completing it.
1117 *
Tejun Heof06d9a22009-04-23 11:05:19 +09001118 * blk_end_request() and friends. __blk_end_request() must be called
1119 * with the request queue spinlock acquired.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 *
1121 * Several drivers define their own end_request and call
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001122 * blk_end_request() for parts of the original function.
1123 * This prevents code duplication in drivers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 */
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001125extern bool blk_update_request(struct request *rq, blk_status_t error,
Tejun Heo2e60e022009-04-23 11:05:18 +09001126 unsigned int nr_bytes);
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001127extern void blk_finish_request(struct request *rq, blk_status_t error);
1128extern bool blk_end_request(struct request *rq, blk_status_t error,
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09001129 unsigned int nr_bytes);
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001130extern void blk_end_request_all(struct request *rq, blk_status_t error);
1131extern bool __blk_end_request(struct request *rq, blk_status_t error,
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09001132 unsigned int nr_bytes);
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001133extern void __blk_end_request_all(struct request *rq, blk_status_t error);
1134extern bool __blk_end_request_cur(struct request *rq, blk_status_t error);
Tejun Heo2e60e022009-04-23 11:05:18 +09001135
Jens Axboeff856ba2006-01-09 16:02:34 +01001136extern void blk_complete_request(struct request *);
Jens Axboe242f9dc2008-09-14 05:55:09 -07001137extern void __blk_complete_request(struct request *);
1138extern void blk_abort_request(struct request *);
James Bottomley28018c22010-07-01 19:49:17 +09001139extern void blk_unprep_request(struct request *);
Jens Axboeff856ba2006-01-09 16:02:34 +01001140
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 * Access functions for manipulating queue properties
1143 */
Jens Axboe165125e2007-07-24 09:28:11 +02001144extern struct request_queue *blk_init_queue_node(request_fn_proc *rfn,
Christoph Lameter19460892005-06-23 00:08:19 -07001145 spinlock_t *lock, int node_id);
Jens Axboe165125e2007-07-24 09:28:11 +02001146extern struct request_queue *blk_init_queue(request_fn_proc *, spinlock_t *);
Christoph Hellwig5ea708d2017-01-03 14:52:44 +03001147extern int blk_init_allocated_queue(struct request_queue *);
Jens Axboe165125e2007-07-24 09:28:11 +02001148extern void blk_cleanup_queue(struct request_queue *);
1149extern void blk_queue_make_request(struct request_queue *, make_request_fn *);
1150extern void blk_queue_bounce_limit(struct request_queue *, u64);
Martin K. Petersen086fa5f2010-02-26 00:20:38 -05001151extern void blk_queue_max_hw_sectors(struct request_queue *, unsigned int);
Jens Axboe762380a2014-06-05 13:38:39 -06001152extern void blk_queue_chunk_sectors(struct request_queue *, unsigned int);
Martin K. Petersen8a783622010-02-26 00:20:39 -05001153extern void blk_queue_max_segments(struct request_queue *, unsigned short);
Christoph Hellwig1e739732017-02-08 14:46:49 +01001154extern void blk_queue_max_discard_segments(struct request_queue *,
1155 unsigned short);
Jens Axboe165125e2007-07-24 09:28:11 +02001156extern void blk_queue_max_segment_size(struct request_queue *, unsigned int);
Christoph Hellwig67efc922009-09-30 13:54:20 +02001157extern void blk_queue_max_discard_sectors(struct request_queue *q,
1158 unsigned int max_discard_sectors);
Martin K. Petersen4363ac72012-09-18 12:19:27 -04001159extern void blk_queue_max_write_same_sectors(struct request_queue *q,
1160 unsigned int max_write_same_sectors);
Chaitanya Kulkarnia6f07882016-11-30 12:28:59 -08001161extern void blk_queue_max_write_zeroes_sectors(struct request_queue *q,
1162 unsigned int max_write_same_sectors);
Martin K. Petersene1defc42009-05-22 17:17:49 -04001163extern void blk_queue_logical_block_size(struct request_queue *, unsigned short);
Martin K. Petersen892b6f92010-10-13 21:18:03 +02001164extern void blk_queue_physical_block_size(struct request_queue *, unsigned int);
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001165extern void blk_queue_alignment_offset(struct request_queue *q,
1166 unsigned int alignment);
Martin K. Petersen7c958e32009-07-31 11:49:11 -04001167extern void blk_limits_io_min(struct queue_limits *limits, unsigned int min);
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001168extern void blk_queue_io_min(struct request_queue *q, unsigned int min);
Martin K. Petersen3c5820c2009-09-11 21:54:52 +02001169extern void blk_limits_io_opt(struct queue_limits *limits, unsigned int opt);
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001170extern void blk_queue_io_opt(struct request_queue *q, unsigned int opt);
Jens Axboed278d4a2016-03-30 10:21:08 -06001171extern void blk_set_queue_depth(struct request_queue *q, unsigned int depth);
Martin K. Petersene475bba2009-06-16 08:23:52 +02001172extern void blk_set_default_limits(struct queue_limits *lim);
Martin K. Petersenb1bd0552012-01-11 16:27:11 +01001173extern void blk_set_stacking_limits(struct queue_limits *lim);
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001174extern int blk_stack_limits(struct queue_limits *t, struct queue_limits *b,
1175 sector_t offset);
Martin K. Petersen17be8c22010-01-11 03:21:49 -05001176extern int bdev_stack_limits(struct queue_limits *t, struct block_device *bdev,
1177 sector_t offset);
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001178extern void disk_stack_limits(struct gendisk *disk, struct block_device *bdev,
1179 sector_t offset);
Jens Axboe165125e2007-07-24 09:28:11 +02001180extern void blk_queue_stack_limits(struct request_queue *t, struct request_queue *b);
Tejun Heoe3790c72008-03-04 11:18:17 +01001181extern void blk_queue_dma_pad(struct request_queue *, unsigned int);
FUJITA Tomonori27f82212008-07-04 09:30:03 +02001182extern void blk_queue_update_dma_pad(struct request_queue *, unsigned int);
Tejun Heo2fb98e82008-02-19 11:36:53 +01001183extern int blk_queue_dma_drain(struct request_queue *q,
1184 dma_drain_needed_fn *dma_drain_needed,
1185 void *buf, unsigned int size);
Kiyoshi Uedaef9e3fa2008-10-01 16:12:15 +02001186extern void blk_queue_lld_busy(struct request_queue *q, lld_busy_fn *fn);
Jens Axboe165125e2007-07-24 09:28:11 +02001187extern void blk_queue_segment_boundary(struct request_queue *, unsigned long);
Keith Busch03100aa2015-08-19 14:24:05 -07001188extern void blk_queue_virt_boundary(struct request_queue *, unsigned long);
Jens Axboe165125e2007-07-24 09:28:11 +02001189extern void blk_queue_prep_rq(struct request_queue *, prep_rq_fn *pfn);
James Bottomley28018c22010-07-01 19:49:17 +09001190extern void blk_queue_unprep_rq(struct request_queue *, unprep_rq_fn *ufn);
Jens Axboe165125e2007-07-24 09:28:11 +02001191extern void blk_queue_dma_alignment(struct request_queue *, int);
James Bottomley11c3e682007-12-31 16:37:00 -06001192extern void blk_queue_update_dma_alignment(struct request_queue *, int);
Jens Axboe165125e2007-07-24 09:28:11 +02001193extern void blk_queue_softirq_done(struct request_queue *, softirq_done_fn *);
Jens Axboe242f9dc2008-09-14 05:55:09 -07001194extern void blk_queue_rq_timed_out(struct request_queue *, rq_timed_out_fn *);
1195extern void blk_queue_rq_timeout(struct request_queue *, unsigned int);
shaohua.li@intel.comf3876932011-05-06 11:34:32 -06001196extern void blk_queue_flush_queueable(struct request_queue *q, bool queueable);
Jens Axboe93e9d8e2016-04-12 12:32:46 -06001197extern void blk_queue_write_cache(struct request_queue *q, bool enabled, bool fua);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
Christoph Hellwig1e739732017-02-08 14:46:49 +01001199/*
1200 * Number of physical segments as sent to the device.
1201 *
1202 * Normally this is the number of discontiguous data segments sent by the
1203 * submitter. But for data-less command like discard we might have no
1204 * actual data segments submitted, but the driver might have to add it's
1205 * own special payload. In that case we still return 1 here so that this
1206 * special payload will be mapped.
1207 */
Christoph Hellwigf9d03f92016-12-08 15:20:32 -07001208static inline unsigned short blk_rq_nr_phys_segments(struct request *rq)
1209{
1210 if (rq->rq_flags & RQF_SPECIAL_PAYLOAD)
1211 return 1;
1212 return rq->nr_phys_segments;
1213}
1214
Christoph Hellwig1e739732017-02-08 14:46:49 +01001215/*
1216 * Number of discard segments (or ranges) the driver needs to fill in.
1217 * Each discard bio merged into a request is counted as one segment.
1218 */
1219static inline unsigned short blk_rq_nr_discard_segments(struct request *rq)
1220{
1221 return max_t(unsigned short, rq->nr_phys_segments, 1);
1222}
1223
Jens Axboe165125e2007-07-24 09:28:11 +02001224extern int blk_rq_map_sg(struct request_queue *, struct request *, struct scatterlist *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225extern void blk_dump_rq_flags(struct request *, char *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226extern long nr_blockdev_pages(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
Tejun Heo09ac46c2011-12-14 00:33:38 +01001228bool __must_check blk_get_queue(struct request_queue *);
Jens Axboe165125e2007-07-24 09:28:11 +02001229struct request_queue *blk_alloc_queue(gfp_t);
1230struct request_queue *blk_alloc_queue_node(gfp_t, int);
1231extern void blk_put_queue(struct request_queue *);
Jens Axboe3f21c262015-06-05 10:57:37 -06001232extern void blk_set_queue_dying(struct request_queue *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Shaohua Li316cc672011-07-08 08:19:21 +02001234/*
Lin Ming6c954662013-03-23 11:42:26 +08001235 * block layer runtime pm functions
1236 */
Rafael J. Wysocki47fafbc2014-12-04 01:00:23 +01001237#ifdef CONFIG_PM
Lin Ming6c954662013-03-23 11:42:26 +08001238extern void blk_pm_runtime_init(struct request_queue *q, struct device *dev);
1239extern int blk_pre_runtime_suspend(struct request_queue *q);
1240extern void blk_post_runtime_suspend(struct request_queue *q, int err);
1241extern void blk_pre_runtime_resume(struct request_queue *q);
1242extern void blk_post_runtime_resume(struct request_queue *q, int err);
Mika Westerbergd07ab6d2016-02-18 10:54:11 +02001243extern void blk_set_runtime_active(struct request_queue *q);
Lin Ming6c954662013-03-23 11:42:26 +08001244#else
1245static inline void blk_pm_runtime_init(struct request_queue *q,
1246 struct device *dev) {}
1247static inline int blk_pre_runtime_suspend(struct request_queue *q)
1248{
1249 return -ENOSYS;
1250}
1251static inline void blk_post_runtime_suspend(struct request_queue *q, int err) {}
1252static inline void blk_pre_runtime_resume(struct request_queue *q) {}
1253static inline void blk_post_runtime_resume(struct request_queue *q, int err) {}
Tobias Klauser9a05e752016-11-18 15:16:06 +01001254static inline void blk_set_runtime_active(struct request_queue *q) {}
Lin Ming6c954662013-03-23 11:42:26 +08001255#endif
1256
1257/*
Suresh Jayaraman75df7132011-09-21 10:00:16 +02001258 * blk_plug permits building a queue of related requests by holding the I/O
1259 * fragments for a short period. This allows merging of sequential requests
1260 * into single larger request. As the requests are moved from a per-task list to
1261 * the device's request_queue in a batch, this results in improved scalability
1262 * as the lock contention for request_queue lock is reduced.
1263 *
1264 * It is ok not to disable preemption when adding the request to the plug list
1265 * or when attempting a merge, because blk_schedule_flush_list() will only flush
1266 * the plug list when the task sleeps by itself. For details, please see
1267 * schedule() where blk_schedule_flush_plug() is called.
Shaohua Li316cc672011-07-08 08:19:21 +02001268 */
Jens Axboe73c10102011-03-08 13:19:51 +01001269struct blk_plug {
Suresh Jayaraman75df7132011-09-21 10:00:16 +02001270 struct list_head list; /* requests */
Jens Axboe320ae512013-10-24 09:20:05 +01001271 struct list_head mq_list; /* blk-mq requests */
Suresh Jayaraman75df7132011-09-21 10:00:16 +02001272 struct list_head cb_list; /* md requires an unplug callback */
Jens Axboe73c10102011-03-08 13:19:51 +01001273};
Shaohua Li55c022b2011-07-08 08:19:20 +02001274#define BLK_MAX_REQUEST_COUNT 16
Shaohua Li50d24c32016-11-03 17:03:53 -07001275#define BLK_PLUG_FLUSH_SIZE (128 * 1024)
Shaohua Li55c022b2011-07-08 08:19:20 +02001276
NeilBrown9cbb1752012-07-31 09:08:14 +02001277struct blk_plug_cb;
NeilBrown74018dc2012-07-31 09:08:15 +02001278typedef void (*blk_plug_cb_fn)(struct blk_plug_cb *, bool);
NeilBrown048c9372011-04-18 09:52:22 +02001279struct blk_plug_cb {
1280 struct list_head list;
NeilBrown9cbb1752012-07-31 09:08:14 +02001281 blk_plug_cb_fn callback;
1282 void *data;
NeilBrown048c9372011-04-18 09:52:22 +02001283};
NeilBrown9cbb1752012-07-31 09:08:14 +02001284extern struct blk_plug_cb *blk_check_plugged(blk_plug_cb_fn unplug,
1285 void *data, int size);
Jens Axboe73c10102011-03-08 13:19:51 +01001286extern void blk_start_plug(struct blk_plug *);
1287extern void blk_finish_plug(struct blk_plug *);
Jens Axboef6603782011-04-15 15:49:07 +02001288extern void blk_flush_plug_list(struct blk_plug *, bool);
Jens Axboe73c10102011-03-08 13:19:51 +01001289
1290static inline void blk_flush_plug(struct task_struct *tsk)
1291{
1292 struct blk_plug *plug = tsk->plug;
1293
Christoph Hellwig88b996c2011-04-15 15:20:10 +02001294 if (plug)
Jens Axboea237c1c2011-04-16 13:27:55 +02001295 blk_flush_plug_list(plug, false);
1296}
1297
1298static inline void blk_schedule_flush_plug(struct task_struct *tsk)
1299{
1300 struct blk_plug *plug = tsk->plug;
1301
1302 if (plug)
Jens Axboef6603782011-04-15 15:49:07 +02001303 blk_flush_plug_list(plug, true);
Jens Axboe73c10102011-03-08 13:19:51 +01001304}
1305
1306static inline bool blk_needs_flush_plug(struct task_struct *tsk)
1307{
1308 struct blk_plug *plug = tsk->plug;
1309
Jens Axboe320ae512013-10-24 09:20:05 +01001310 return plug &&
1311 (!list_empty(&plug->list) ||
1312 !list_empty(&plug->mq_list) ||
1313 !list_empty(&plug->cb_list));
Jens Axboe73c10102011-03-08 13:19:51 +01001314}
1315
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316/*
1317 * tag stuff
1318 */
Jens Axboe165125e2007-07-24 09:28:11 +02001319extern int blk_queue_start_tag(struct request_queue *, struct request *);
1320extern struct request *blk_queue_find_tag(struct request_queue *, int);
1321extern void blk_queue_end_tag(struct request_queue *, struct request *);
Shaohua Liee1b6f72015-01-15 17:32:25 -08001322extern int blk_queue_init_tags(struct request_queue *, int, struct blk_queue_tag *, int);
Jens Axboe165125e2007-07-24 09:28:11 +02001323extern void blk_queue_free_tags(struct request_queue *);
1324extern int blk_queue_resize_tags(struct request_queue *, int);
1325extern void blk_queue_invalidate_tags(struct request_queue *);
Shaohua Liee1b6f72015-01-15 17:32:25 -08001326extern struct blk_queue_tag *blk_init_tags(int, int);
James Bottomley492dfb42006-08-30 15:48:45 -04001327extern void blk_free_tags(struct blk_queue_tag *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
David C Somayajuluf583f492006-10-04 08:27:25 +02001329static inline struct request *blk_map_queue_find_tag(struct blk_queue_tag *bqt,
1330 int tag)
1331{
1332 if (unlikely(bqt == NULL || tag >= bqt->real_max_depth))
1333 return NULL;
1334 return bqt->tag_index[tag];
1335}
Christoph Hellwigdd3932e2010-09-16 20:51:46 +02001336
Christoph Hellwigee472d82017-04-05 19:21:08 +02001337extern int blkdev_issue_flush(struct block_device *, gfp_t, sector_t *);
1338extern int blkdev_issue_write_same(struct block_device *bdev, sector_t sector,
1339 sector_t nr_sects, gfp_t gfp_mask, struct page *page);
Christoph Hellwige950fdf2016-07-19 11:23:33 +02001340
1341#define BLKDEV_DISCARD_SECURE (1 << 0) /* issue a secure erase */
Christoph Hellwigdd3932e2010-09-16 20:51:46 +02001342
Dmitry Monakhovfbd9b092010-04-28 17:55:06 +04001343extern int blkdev_issue_discard(struct block_device *bdev, sector_t sector,
1344 sector_t nr_sects, gfp_t gfp_mask, unsigned long flags);
Christoph Hellwig38f25252016-04-16 14:55:28 -04001345extern int __blkdev_issue_discard(struct block_device *bdev, sector_t sector,
Christoph Hellwig288dab82016-06-09 16:00:36 +02001346 sector_t nr_sects, gfp_t gfp_mask, int flags,
Mike Christie469e3212016-06-05 14:31:49 -05001347 struct bio **biop);
Christoph Hellwigee472d82017-04-05 19:21:08 +02001348
1349#define BLKDEV_ZERO_NOUNMAP (1 << 0) /* do not free blocks */
Christoph Hellwigcb365b92017-04-05 19:21:10 +02001350#define BLKDEV_ZERO_NOFALLBACK (1 << 1) /* don't write explicit zeroes */
Christoph Hellwigee472d82017-04-05 19:21:08 +02001351
Chaitanya Kulkarnie73c23f2016-11-30 12:28:58 -08001352extern int __blkdev_issue_zeroout(struct block_device *bdev, sector_t sector,
1353 sector_t nr_sects, gfp_t gfp_mask, struct bio **biop,
Christoph Hellwigee472d82017-04-05 19:21:08 +02001354 unsigned flags);
Dmitry Monakhov3f14d792010-04-28 17:55:09 +04001355extern int blkdev_issue_zeroout(struct block_device *bdev, sector_t sector,
Christoph Hellwigee472d82017-04-05 19:21:08 +02001356 sector_t nr_sects, gfp_t gfp_mask, unsigned flags);
1357
Christoph Hellwig2cf6d262010-08-18 05:29:10 -04001358static inline int sb_issue_discard(struct super_block *sb, sector_t block,
1359 sector_t nr_blocks, gfp_t gfp_mask, unsigned long flags)
David Woodhousefb2dce82008-08-05 18:01:53 +01001360{
Christoph Hellwig2cf6d262010-08-18 05:29:10 -04001361 return blkdev_issue_discard(sb->s_bdev, block << (sb->s_blocksize_bits - 9),
1362 nr_blocks << (sb->s_blocksize_bits - 9),
1363 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,
1369 block << (sb->s_blocksize_bits - 9),
1370 nr_blocks << (sb->s_blocksize_bits - 9),
Christoph Hellwigee472d82017-04-05 19:21:08 +02001371 gfp_mask, 0);
Lukas Czernere6fa0be2010-10-27 21:30:04 -04001372}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
Jens Axboe018e0442009-06-26 16:27:10 +02001374extern int blk_verify_command(unsigned char *cmd, fmode_t has_write_perm);
Adel Gadllah0b07de82008-06-26 13:48:27 +02001375
Martin K. Peterseneb28d312010-02-26 00:20:37 -05001376enum blk_default_limits {
1377 BLK_MAX_SEGMENTS = 128,
1378 BLK_SAFE_MAX_SECTORS = 255,
Jeff Moyerd2be5372015-08-13 14:57:57 -04001379 BLK_DEF_MAX_SECTORS = 2560,
Martin K. Peterseneb28d312010-02-26 00:20:37 -05001380 BLK_MAX_SEGMENT_SIZE = 65536,
1381 BLK_SEG_BOUNDARY_MASK = 0xFFFFFFFFUL,
1382};
Milan Broz0e435ac2008-12-03 12:55:08 +01001383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384#define blkdev_entry_to_request(entry) list_entry((entry), struct request, queuelist)
1385
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001386static inline unsigned long queue_segment_boundary(struct request_queue *q)
1387{
Martin K. Petersen025146e2009-05-22 17:17:51 -04001388 return q->limits.seg_boundary_mask;
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001389}
1390
Keith Busch03100aa2015-08-19 14:24:05 -07001391static inline unsigned long queue_virt_boundary(struct request_queue *q)
1392{
1393 return q->limits.virt_boundary_mask;
1394}
1395
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001396static inline unsigned int queue_max_sectors(struct request_queue *q)
1397{
Martin K. Petersen025146e2009-05-22 17:17:51 -04001398 return q->limits.max_sectors;
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001399}
1400
1401static inline unsigned int queue_max_hw_sectors(struct request_queue *q)
1402{
Martin K. Petersen025146e2009-05-22 17:17:51 -04001403 return q->limits.max_hw_sectors;
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001404}
1405
Martin K. Petersen8a783622010-02-26 00:20:39 -05001406static inline unsigned short queue_max_segments(struct request_queue *q)
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001407{
Martin K. Petersen8a783622010-02-26 00:20:39 -05001408 return q->limits.max_segments;
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001409}
1410
Christoph Hellwig1e739732017-02-08 14:46:49 +01001411static inline unsigned short queue_max_discard_segments(struct request_queue *q)
1412{
1413 return q->limits.max_discard_segments;
1414}
1415
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001416static inline unsigned int queue_max_segment_size(struct request_queue *q)
1417{
Martin K. Petersen025146e2009-05-22 17:17:51 -04001418 return q->limits.max_segment_size;
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001419}
1420
Martin K. Petersene1defc42009-05-22 17:17:49 -04001421static inline unsigned short queue_logical_block_size(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422{
1423 int retval = 512;
1424
Martin K. Petersen025146e2009-05-22 17:17:51 -04001425 if (q && q->limits.logical_block_size)
1426 retval = q->limits.logical_block_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
1428 return retval;
1429}
1430
Martin K. Petersene1defc42009-05-22 17:17:49 -04001431static inline unsigned short bdev_logical_block_size(struct block_device *bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432{
Martin K. Petersene1defc42009-05-22 17:17:49 -04001433 return queue_logical_block_size(bdev_get_queue(bdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434}
1435
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001436static inline unsigned int queue_physical_block_size(struct request_queue *q)
1437{
1438 return q->limits.physical_block_size;
1439}
1440
Martin K. Petersen892b6f92010-10-13 21:18:03 +02001441static inline unsigned int bdev_physical_block_size(struct block_device *bdev)
Martin K. Petersenac481c22009-10-03 20:52:01 +02001442{
1443 return queue_physical_block_size(bdev_get_queue(bdev));
1444}
1445
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001446static inline unsigned int queue_io_min(struct request_queue *q)
1447{
1448 return q->limits.io_min;
1449}
1450
Martin K. Petersenac481c22009-10-03 20:52:01 +02001451static inline int bdev_io_min(struct block_device *bdev)
1452{
1453 return queue_io_min(bdev_get_queue(bdev));
1454}
1455
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001456static inline unsigned int queue_io_opt(struct request_queue *q)
1457{
1458 return q->limits.io_opt;
1459}
1460
Martin K. Petersenac481c22009-10-03 20:52:01 +02001461static inline int bdev_io_opt(struct block_device *bdev)
1462{
1463 return queue_io_opt(bdev_get_queue(bdev));
1464}
1465
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001466static inline int queue_alignment_offset(struct request_queue *q)
1467{
Martin K. Petersenac481c22009-10-03 20:52:01 +02001468 if (q->limits.misaligned)
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001469 return -1;
1470
Martin K. Petersenac481c22009-10-03 20:52:01 +02001471 return q->limits.alignment_offset;
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001472}
1473
Martin K. Petersene03a72e2010-01-11 03:21:51 -05001474static inline int queue_limit_alignment_offset(struct queue_limits *lim, sector_t sector)
Martin K. Petersen81744ee2009-12-29 08:35:35 +01001475{
1476 unsigned int granularity = max(lim->physical_block_size, lim->io_min);
Mike Snitzerb8839b82014-10-08 18:26:13 -04001477 unsigned int alignment = sector_div(sector, granularity >> 9) << 9;
Martin K. Petersen81744ee2009-12-29 08:35:35 +01001478
Mike Snitzerb8839b82014-10-08 18:26:13 -04001479 return (granularity + lim->alignment_offset - alignment) % granularity;
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001480}
1481
Martin K. Petersenac481c22009-10-03 20:52:01 +02001482static inline int bdev_alignment_offset(struct block_device *bdev)
1483{
1484 struct request_queue *q = bdev_get_queue(bdev);
1485
1486 if (q->limits.misaligned)
1487 return -1;
1488
1489 if (bdev != bdev->bd_contains)
1490 return bdev->bd_part->alignment_offset;
1491
1492 return q->limits.alignment_offset;
1493}
1494
Martin K. Petersen86b37282009-11-10 11:50:21 +01001495static inline int queue_discard_alignment(struct request_queue *q)
1496{
1497 if (q->limits.discard_misaligned)
1498 return -1;
1499
1500 return q->limits.discard_alignment;
1501}
1502
Martin K. Petersene03a72e2010-01-11 03:21:51 -05001503static inline int queue_limit_discard_alignment(struct queue_limits *lim, sector_t sector)
Martin K. Petersen86b37282009-11-10 11:50:21 +01001504{
Linus Torvalds59771072012-12-19 07:18:35 -08001505 unsigned int alignment, granularity, offset;
Martin K. Petersendd3d1452010-01-11 03:21:48 -05001506
Martin K. Petersena934a002011-05-18 10:37:35 +02001507 if (!lim->max_discard_sectors)
1508 return 0;
1509
Linus Torvalds59771072012-12-19 07:18:35 -08001510 /* Why are these in bytes, not sectors? */
1511 alignment = lim->discard_alignment >> 9;
1512 granularity = lim->discard_granularity >> 9;
1513 if (!granularity)
1514 return 0;
1515
1516 /* Offset of the partition start in 'granularity' sectors */
1517 offset = sector_div(sector, granularity);
1518
1519 /* And why do we do this modulus *again* in blkdev_issue_discard()? */
1520 offset = (granularity + alignment - offset) % granularity;
1521
1522 /* Turn it back into bytes, gaah */
1523 return offset << 9;
Martin K. Petersen86b37282009-11-10 11:50:21 +01001524}
1525
Paolo Bonzinic6e66632012-08-02 09:48:50 +02001526static inline int bdev_discard_alignment(struct block_device *bdev)
1527{
1528 struct request_queue *q = bdev_get_queue(bdev);
1529
1530 if (bdev != bdev->bd_contains)
1531 return bdev->bd_part->discard_alignment;
1532
1533 return q->limits.discard_alignment;
1534}
1535
Martin K. Petersen4363ac72012-09-18 12:19:27 -04001536static inline unsigned int bdev_write_same(struct block_device *bdev)
1537{
1538 struct request_queue *q = bdev_get_queue(bdev);
1539
1540 if (q)
1541 return q->limits.max_write_same_sectors;
1542
1543 return 0;
1544}
1545
Chaitanya Kulkarnia6f07882016-11-30 12:28:59 -08001546static inline unsigned int bdev_write_zeroes_sectors(struct block_device *bdev)
1547{
1548 struct request_queue *q = bdev_get_queue(bdev);
1549
1550 if (q)
1551 return q->limits.max_write_zeroes_sectors;
1552
1553 return 0;
1554}
1555
Damien Le Moal797476b2016-10-18 15:40:29 +09001556static inline enum blk_zoned_model bdev_zoned_model(struct block_device *bdev)
1557{
1558 struct request_queue *q = bdev_get_queue(bdev);
1559
1560 if (q)
1561 return blk_queue_zoned_model(q);
1562
1563 return BLK_ZONED_NONE;
1564}
1565
1566static inline bool bdev_is_zoned(struct block_device *bdev)
1567{
1568 struct request_queue *q = bdev_get_queue(bdev);
1569
1570 if (q)
1571 return blk_queue_is_zoned(q);
1572
1573 return false;
1574}
1575
Damien Le Moalf99e8642017-01-12 07:58:32 -07001576static inline unsigned int bdev_zone_sectors(struct block_device *bdev)
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +09001577{
1578 struct request_queue *q = bdev_get_queue(bdev);
1579
1580 if (q)
Damien Le Moalf99e8642017-01-12 07:58:32 -07001581 return blk_queue_zone_sectors(q);
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +09001582
1583 return 0;
1584}
1585
Jens Axboe165125e2007-07-24 09:28:11 +02001586static inline int queue_dma_alignment(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587{
Pete Wyckoff482eb682008-01-01 10:23:02 -05001588 return q ? q->dma_alignment : 511;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589}
1590
Namhyung Kim14417792010-09-15 13:08:27 +02001591static inline int blk_rq_aligned(struct request_queue *q, unsigned long addr,
FUJITA Tomonori87904072008-08-28 15:05:58 +09001592 unsigned int len)
1593{
1594 unsigned int alignment = queue_dma_alignment(q) | q->dma_pad_mask;
Namhyung Kim14417792010-09-15 13:08:27 +02001595 return !(addr & alignment) && !(len & alignment);
FUJITA Tomonori87904072008-08-28 15:05:58 +09001596}
1597
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598/* assumes size > 256 */
1599static inline unsigned int blksize_bits(unsigned int size)
1600{
1601 unsigned int bits = 8;
1602 do {
1603 bits++;
1604 size >>= 1;
1605 } while (size > 256);
1606 return bits;
1607}
1608
Adrian Bunk2befb9e2005-09-10 00:27:17 -07001609static inline unsigned int block_size(struct block_device *bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610{
1611 return bdev->bd_block_size;
1612}
1613
shaohua.li@intel.comf3876932011-05-06 11:34:32 -06001614static inline bool queue_flush_queueable(struct request_queue *q)
1615{
Jens Axboec888a8f2016-04-13 13:33:19 -06001616 return !test_bit(QUEUE_FLAG_FLUSH_NQ, &q->queue_flags);
shaohua.li@intel.comf3876932011-05-06 11:34:32 -06001617}
1618
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619typedef struct {struct page *v;} Sector;
1620
1621unsigned char *read_dev_sector(struct block_device *, sector_t, Sector *);
1622
1623static inline void put_dev_sector(Sector p)
1624{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001625 put_page(p.v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626}
1627
Ming Leie0af29172016-02-26 23:40:51 +08001628static inline bool __bvec_gap_to_prev(struct request_queue *q,
1629 struct bio_vec *bprv, unsigned int offset)
1630{
1631 return offset ||
1632 ((bprv->bv_offset + bprv->bv_len) & queue_virt_boundary(q));
1633}
1634
Keith Busch03100aa2015-08-19 14:24:05 -07001635/*
1636 * Check if adding a bio_vec after bprv with offset would create a gap in
1637 * the SG list. Most drivers don't care about this, but some do.
1638 */
1639static inline bool bvec_gap_to_prev(struct request_queue *q,
1640 struct bio_vec *bprv, unsigned int offset)
1641{
1642 if (!queue_virt_boundary(q))
1643 return false;
Ming Leie0af29172016-02-26 23:40:51 +08001644 return __bvec_gap_to_prev(q, bprv, offset);
Keith Busch03100aa2015-08-19 14:24:05 -07001645}
1646
Ming Lei729204e2016-12-17 18:49:09 +08001647/*
1648 * Check if the two bvecs from two bios can be merged to one segment.
1649 * If yes, no need to check gap between the two bios since the 1st bio
1650 * and the 1st bvec in the 2nd bio can be handled in one segment.
1651 */
1652static inline bool bios_segs_mergeable(struct request_queue *q,
1653 struct bio *prev, struct bio_vec *prev_last_bv,
1654 struct bio_vec *next_first_bv)
1655{
1656 if (!BIOVEC_PHYS_MERGEABLE(prev_last_bv, next_first_bv))
1657 return false;
1658 if (!BIOVEC_SEG_BOUNDARY(q, prev_last_bv, next_first_bv))
1659 return false;
1660 if (prev->bi_seg_back_size + next_first_bv->bv_len >
1661 queue_max_segment_size(q))
1662 return false;
1663 return true;
1664}
1665
Ming Lei5a8d75a2017-04-14 13:58:29 -06001666static inline bool bio_will_gap(struct request_queue *q,
1667 struct request *prev_rq,
1668 struct bio *prev,
1669 struct bio *next)
Jens Axboe5e7c4272015-09-03 19:28:20 +03001670{
Ming Lei25e71a92016-02-26 23:40:52 +08001671 if (bio_has_data(prev) && queue_virt_boundary(q)) {
1672 struct bio_vec pb, nb;
Jens Axboe5e7c4272015-09-03 19:28:20 +03001673
Ming Lei5a8d75a2017-04-14 13:58:29 -06001674 /*
1675 * don't merge if the 1st bio starts with non-zero
1676 * offset, otherwise it is quite difficult to respect
1677 * sg gap limit. We work hard to merge a huge number of small
1678 * single bios in case of mkfs.
1679 */
1680 if (prev_rq)
1681 bio_get_first_bvec(prev_rq->bio, &pb);
1682 else
1683 bio_get_first_bvec(prev, &pb);
1684 if (pb.bv_offset)
1685 return true;
1686
1687 /*
1688 * We don't need to worry about the situation that the
1689 * merged segment ends in unaligned virt boundary:
1690 *
1691 * - if 'pb' ends aligned, the merged segment ends aligned
1692 * - if 'pb' ends unaligned, the next bio must include
1693 * one single bvec of 'nb', otherwise the 'nb' can't
1694 * merge with 'pb'
1695 */
Ming Lei25e71a92016-02-26 23:40:52 +08001696 bio_get_last_bvec(prev, &pb);
1697 bio_get_first_bvec(next, &nb);
1698
Ming Lei729204e2016-12-17 18:49:09 +08001699 if (!bios_segs_mergeable(q, prev, &pb, &nb))
1700 return __bvec_gap_to_prev(q, &pb, nb.bv_offset);
Ming Lei25e71a92016-02-26 23:40:52 +08001701 }
1702
1703 return false;
Jens Axboe5e7c4272015-09-03 19:28:20 +03001704}
1705
1706static inline bool req_gap_back_merge(struct request *req, struct bio *bio)
1707{
Ming Lei5a8d75a2017-04-14 13:58:29 -06001708 return bio_will_gap(req->q, req, req->biotail, bio);
Jens Axboe5e7c4272015-09-03 19:28:20 +03001709}
1710
1711static inline bool req_gap_front_merge(struct request *req, struct bio *bio)
1712{
Ming Lei5a8d75a2017-04-14 13:58:29 -06001713 return bio_will_gap(req->q, NULL, bio, req->bio);
Jens Axboe5e7c4272015-09-03 19:28:20 +03001714}
1715
Jens Axboe59c3d452014-04-08 09:15:35 -06001716int kblockd_schedule_work(struct work_struct *work);
Jens Axboeee63cfa2016-08-24 15:52:48 -06001717int kblockd_schedule_work_on(int cpu, struct work_struct *work);
Jens Axboe59c3d452014-04-08 09:15:35 -06001718int kblockd_schedule_delayed_work(struct delayed_work *dwork, unsigned long delay);
Jens Axboe8ab14592014-04-08 09:17:40 -06001719int kblockd_schedule_delayed_work_on(int cpu, struct delayed_work *dwork, unsigned long delay);
Jens Axboe818cd1c2017-04-10 09:54:55 -06001720int kblockd_mod_delayed_work_on(int cpu, struct delayed_work *dwork, unsigned long delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
Divyesh Shah91952912010-04-01 15:01:41 -07001722#ifdef CONFIG_BLK_CGROUP
Jens Axboe28f41972010-06-01 12:23:18 +02001723/*
1724 * This should not be using sched_clock(). A real patch is in progress
1725 * to fix this up, until that is in place we need to disable preemption
1726 * around sched_clock() in this function and set_io_start_time_ns().
1727 */
Divyesh Shah91952912010-04-01 15:01:41 -07001728static inline void set_start_time_ns(struct request *req)
1729{
Jens Axboe28f41972010-06-01 12:23:18 +02001730 preempt_disable();
Divyesh Shah91952912010-04-01 15:01:41 -07001731 req->start_time_ns = sched_clock();
Jens Axboe28f41972010-06-01 12:23:18 +02001732 preempt_enable();
Divyesh Shah91952912010-04-01 15:01:41 -07001733}
1734
1735static inline void set_io_start_time_ns(struct request *req)
1736{
Jens Axboe28f41972010-06-01 12:23:18 +02001737 preempt_disable();
Divyesh Shah91952912010-04-01 15:01:41 -07001738 req->io_start_time_ns = sched_clock();
Jens Axboe28f41972010-06-01 12:23:18 +02001739 preempt_enable();
Divyesh Shah91952912010-04-01 15:01:41 -07001740}
Divyesh Shah84c124d2010-04-09 08:31:19 +02001741
1742static inline uint64_t rq_start_time_ns(struct request *req)
1743{
1744 return req->start_time_ns;
1745}
1746
1747static inline uint64_t rq_io_start_time_ns(struct request *req)
1748{
1749 return req->io_start_time_ns;
1750}
Divyesh Shah91952912010-04-01 15:01:41 -07001751#else
1752static inline void set_start_time_ns(struct request *req) {}
1753static inline void set_io_start_time_ns(struct request *req) {}
Divyesh Shah84c124d2010-04-09 08:31:19 +02001754static inline uint64_t rq_start_time_ns(struct request *req)
1755{
1756 return 0;
1757}
1758static inline uint64_t rq_io_start_time_ns(struct request *req)
1759{
1760 return 0;
1761}
Divyesh Shah91952912010-04-01 15:01:41 -07001762#endif
1763
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764#define MODULE_ALIAS_BLOCKDEV(major,minor) \
1765 MODULE_ALIAS("block-major-" __stringify(major) "-" __stringify(minor))
1766#define MODULE_ALIAS_BLOCKDEV_MAJOR(major) \
1767 MODULE_ALIAS("block-major-" __stringify(major) "-*")
1768
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001769#if defined(CONFIG_BLK_DEV_INTEGRITY)
1770
Martin K. Petersen8288f492014-09-26 19:20:02 -04001771enum blk_integrity_flags {
1772 BLK_INTEGRITY_VERIFY = 1 << 0,
1773 BLK_INTEGRITY_GENERATE = 1 << 1,
Martin K. Petersen3aec2f42014-09-26 19:20:03 -04001774 BLK_INTEGRITY_DEVICE_CAPABLE = 1 << 2,
Martin K. Petersenaae7df52014-09-26 19:20:05 -04001775 BLK_INTEGRITY_IP_CHECKSUM = 1 << 3,
Martin K. Petersen8288f492014-09-26 19:20:02 -04001776};
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001777
Martin K. Petersen18593082014-09-26 19:20:01 -04001778struct blk_integrity_iter {
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001779 void *prot_buf;
1780 void *data_buf;
Martin K. Petersen3be91c42014-09-26 19:19:59 -04001781 sector_t seed;
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001782 unsigned int data_size;
Martin K. Petersen3be91c42014-09-26 19:19:59 -04001783 unsigned short interval;
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001784 const char *disk_name;
1785};
1786
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001787typedef blk_status_t (integrity_processing_fn) (struct blk_integrity_iter *);
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001788
Martin K. Petersen0f8087e2015-10-21 13:19:33 -04001789struct blk_integrity_profile {
1790 integrity_processing_fn *generate_fn;
1791 integrity_processing_fn *verify_fn;
1792 const char *name;
1793};
1794
Martin K. Petersen25520d52015-10-21 13:19:49 -04001795extern void blk_integrity_register(struct gendisk *, struct blk_integrity *);
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001796extern void blk_integrity_unregister(struct gendisk *);
Martin K. Petersenad7fce92008-10-01 03:38:39 -04001797extern int blk_integrity_compare(struct gendisk *, struct gendisk *);
Martin K. Petersen13f05c82010-09-10 20:50:10 +02001798extern int blk_rq_map_integrity_sg(struct request_queue *, struct bio *,
1799 struct scatterlist *);
1800extern int blk_rq_count_integrity_sg(struct request_queue *, struct bio *);
Martin K. Petersen4eaf99b2014-09-26 19:20:06 -04001801extern bool blk_integrity_merge_rq(struct request_queue *, struct request *,
1802 struct request *);
1803extern bool blk_integrity_merge_bio(struct request_queue *, struct request *,
1804 struct bio *);
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001805
Martin K. Petersen25520d52015-10-21 13:19:49 -04001806static inline struct blk_integrity *blk_get_integrity(struct gendisk *disk)
1807{
Dan Williamsac6fc482015-10-21 13:20:18 -04001808 struct blk_integrity *bi = &disk->queue->integrity;
Martin K. Petersen25520d52015-10-21 13:19:49 -04001809
1810 if (!bi->profile)
1811 return NULL;
1812
1813 return bi;
1814}
1815
Jens Axboeb04accc2008-10-02 12:53:22 +02001816static inline
1817struct blk_integrity *bdev_get_integrity(struct block_device *bdev)
1818{
Martin K. Petersen25520d52015-10-21 13:19:49 -04001819 return blk_get_integrity(bdev->bd_disk);
Martin K. Petersenb02739b2008-10-02 18:47:49 +02001820}
1821
Martin K. Petersen180b2f92014-09-26 19:19:56 -04001822static inline bool blk_integrity_rq(struct request *rq)
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001823{
Martin K. Petersen180b2f92014-09-26 19:19:56 -04001824 return rq->cmd_flags & REQ_INTEGRITY;
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001825}
1826
Martin K. Petersen13f05c82010-09-10 20:50:10 +02001827static inline void blk_queue_max_integrity_segments(struct request_queue *q,
1828 unsigned int segs)
1829{
1830 q->limits.max_integrity_segments = segs;
1831}
1832
1833static inline unsigned short
1834queue_max_integrity_segments(struct request_queue *q)
1835{
1836 return q->limits.max_integrity_segments;
1837}
1838
Sagi Grimberg7f39add2015-09-11 09:03:04 -06001839static inline bool integrity_req_gap_back_merge(struct request *req,
1840 struct bio *next)
1841{
1842 struct bio_integrity_payload *bip = bio_integrity(req->bio);
1843 struct bio_integrity_payload *bip_next = bio_integrity(next);
1844
1845 return bvec_gap_to_prev(req->q, &bip->bip_vec[bip->bip_vcnt - 1],
1846 bip_next->bip_vec[0].bv_offset);
1847}
1848
1849static inline bool integrity_req_gap_front_merge(struct request *req,
1850 struct bio *bio)
1851{
1852 struct bio_integrity_payload *bip = bio_integrity(bio);
1853 struct bio_integrity_payload *bip_next = bio_integrity(req->bio);
1854
1855 return bvec_gap_to_prev(req->q, &bip->bip_vec[bip->bip_vcnt - 1],
1856 bip_next->bip_vec[0].bv_offset);
1857}
1858
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001859#else /* CONFIG_BLK_DEV_INTEGRITY */
1860
Stephen Rothwellfd832402012-01-12 09:17:30 +01001861struct bio;
1862struct block_device;
1863struct gendisk;
1864struct blk_integrity;
1865
1866static inline int blk_integrity_rq(struct request *rq)
1867{
1868 return 0;
1869}
1870static inline int blk_rq_count_integrity_sg(struct request_queue *q,
1871 struct bio *b)
1872{
1873 return 0;
1874}
1875static inline int blk_rq_map_integrity_sg(struct request_queue *q,
1876 struct bio *b,
1877 struct scatterlist *s)
1878{
1879 return 0;
1880}
1881static inline struct blk_integrity *bdev_get_integrity(struct block_device *b)
1882{
Michele Curti61a04e52014-10-09 15:30:17 -07001883 return NULL;
Stephen Rothwellfd832402012-01-12 09:17:30 +01001884}
1885static inline struct blk_integrity *blk_get_integrity(struct gendisk *disk)
1886{
1887 return NULL;
1888}
1889static inline int blk_integrity_compare(struct gendisk *a, struct gendisk *b)
1890{
1891 return 0;
1892}
Martin K. Petersen25520d52015-10-21 13:19:49 -04001893static inline void blk_integrity_register(struct gendisk *d,
Stephen Rothwellfd832402012-01-12 09:17:30 +01001894 struct blk_integrity *b)
1895{
Stephen Rothwellfd832402012-01-12 09:17:30 +01001896}
1897static inline void blk_integrity_unregister(struct gendisk *d)
1898{
1899}
1900static inline void blk_queue_max_integrity_segments(struct request_queue *q,
1901 unsigned int segs)
1902{
1903}
1904static inline unsigned short queue_max_integrity_segments(struct request_queue *q)
1905{
1906 return 0;
1907}
Martin K. Petersen4eaf99b2014-09-26 19:20:06 -04001908static inline bool blk_integrity_merge_rq(struct request_queue *rq,
1909 struct request *r1,
1910 struct request *r2)
Stephen Rothwellfd832402012-01-12 09:17:30 +01001911{
Martin K. Petersencb1a5ab2014-10-28 20:27:43 -06001912 return true;
Stephen Rothwellfd832402012-01-12 09:17:30 +01001913}
Martin K. Petersen4eaf99b2014-09-26 19:20:06 -04001914static inline bool blk_integrity_merge_bio(struct request_queue *rq,
1915 struct request *r,
1916 struct bio *b)
Stephen Rothwellfd832402012-01-12 09:17:30 +01001917{
Martin K. Petersencb1a5ab2014-10-28 20:27:43 -06001918 return true;
Stephen Rothwellfd832402012-01-12 09:17:30 +01001919}
Martin K. Petersen25520d52015-10-21 13:19:49 -04001920
Sagi Grimberg7f39add2015-09-11 09:03:04 -06001921static inline bool integrity_req_gap_back_merge(struct request *req,
1922 struct bio *next)
1923{
1924 return false;
1925}
1926static inline bool integrity_req_gap_front_merge(struct request *req,
1927 struct bio *bio)
1928{
1929 return false;
1930}
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001931
1932#endif /* CONFIG_BLK_DEV_INTEGRITY */
1933
Al Viro08f85852007-10-08 13:26:20 -04001934struct block_device_operations {
Al Virod4430d62008-03-02 09:09:22 -05001935 int (*open) (struct block_device *, fmode_t);
Al Virodb2a1442013-05-05 21:52:57 -04001936 void (*release) (struct gendisk *, fmode_t);
Jens Axboec11f0c02016-08-05 08:11:04 -06001937 int (*rw_page)(struct block_device *, sector_t, struct page *, bool);
Al Virod4430d62008-03-02 09:09:22 -05001938 int (*ioctl) (struct block_device *, fmode_t, unsigned, unsigned long);
1939 int (*compat_ioctl) (struct block_device *, fmode_t, unsigned, unsigned long);
Tejun Heo77ea8872010-12-08 20:57:37 +01001940 unsigned int (*check_events) (struct gendisk *disk,
1941 unsigned int clearing);
1942 /* ->media_changed() is DEPRECATED, use ->check_events() instead */
Al Viro08f85852007-10-08 13:26:20 -04001943 int (*media_changed) (struct gendisk *);
Tejun Heoc3e33e02010-05-15 20:09:29 +02001944 void (*unlock_native_capacity) (struct gendisk *);
Al Viro08f85852007-10-08 13:26:20 -04001945 int (*revalidate_disk) (struct gendisk *);
1946 int (*getgeo)(struct block_device *, struct hd_geometry *);
Nitin Guptab3a27d02010-05-17 11:02:43 +05301947 /* this callback is with swap_lock and sometimes page table lock held */
1948 void (*swap_slot_free_notify) (struct block_device *, unsigned long);
Al Viro08f85852007-10-08 13:26:20 -04001949 struct module *owner;
Christoph Hellwigbbd3e062015-10-15 14:10:48 +02001950 const struct pr_ops *pr_ops;
Al Viro08f85852007-10-08 13:26:20 -04001951};
1952
Al Viro633a08b2007-08-29 20:34:12 -04001953extern int __blkdev_driver_ioctl(struct block_device *, fmode_t, unsigned int,
1954 unsigned long);
Matthew Wilcox47a191f2014-06-04 16:07:46 -07001955extern int bdev_read_page(struct block_device *, sector_t, struct page *);
1956extern int bdev_write_page(struct block_device *, sector_t, struct page *,
1957 struct writeback_control *);
David Howells93614012006-09-30 20:45:40 +02001958#else /* CONFIG_BLOCK */
Fabian Frederickac13a822014-06-04 16:06:27 -07001959
1960struct block_device;
1961
David Howells93614012006-09-30 20:45:40 +02001962/*
1963 * stubs for when the block layer is configured out
1964 */
1965#define buffer_heads_over_limit 0
1966
David Howells93614012006-09-30 20:45:40 +02001967static inline long nr_blockdev_pages(void)
1968{
1969 return 0;
1970}
1971
Jens Axboe1f940bd2011-03-11 20:17:08 +01001972struct blk_plug {
1973};
1974
1975static inline void blk_start_plug(struct blk_plug *plug)
Jens Axboe73c10102011-03-08 13:19:51 +01001976{
1977}
1978
Jens Axboe1f940bd2011-03-11 20:17:08 +01001979static inline void blk_finish_plug(struct blk_plug *plug)
Jens Axboe73c10102011-03-08 13:19:51 +01001980{
1981}
1982
Jens Axboe1f940bd2011-03-11 20:17:08 +01001983static inline void blk_flush_plug(struct task_struct *task)
Jens Axboe73c10102011-03-08 13:19:51 +01001984{
1985}
1986
Jens Axboea237c1c2011-04-16 13:27:55 +02001987static inline void blk_schedule_flush_plug(struct task_struct *task)
1988{
1989}
1990
1991
Jens Axboe73c10102011-03-08 13:19:51 +01001992static inline bool blk_needs_flush_plug(struct task_struct *tsk)
1993{
1994 return false;
1995}
1996
Fabian Frederickac13a822014-06-04 16:06:27 -07001997static inline int blkdev_issue_flush(struct block_device *bdev, gfp_t gfp_mask,
1998 sector_t *error_sector)
1999{
2000 return 0;
2001}
2002
David Howells93614012006-09-30 20:45:40 +02002003#endif /* CONFIG_BLOCK */
2004
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005#endif