blob: 25f6a0cb27d3e9644c1ef42e7f1ff2b5d817293d [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 {
137 struct call_single_data 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;
Alexey Dobriyan6c5c9342006-09-29 01:59:40 -0700554#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 /*
Tejun Heo4913efe2010-09-03 11:56:16 +0200556 * for flush operations
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 */
Ming Lei7c94e1c2014-09-25 23:23:43 +0800558 struct blk_flush_queue *fq;
Al Viro483f4af2006-03-18 18:34:37 -0500559
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600560 struct list_head requeue_list;
561 spinlock_t requeue_lock;
Mike Snitzer28494502016-09-14 13:28:30 -0400562 struct delayed_work requeue_work;
Christoph Hellwig6fca6a62014-05-28 08:08:02 -0600563
Al Viro483f4af2006-03-18 18:34:37 -0500564 struct mutex sysfs_lock;
FUJITA Tomonorid351af02007-07-09 12:40:35 +0200565
Tejun Heod7325802012-03-05 13:14:58 -0800566 int bypass_depth;
Christoph Hellwig4ecd4fe2015-05-07 09:38:13 +0200567 atomic_t mq_freeze_depth;
Tejun Heod7325802012-03-05 13:14:58 -0800568
FUJITA Tomonorid351af02007-07-09 12:40:35 +0200569#if defined(CONFIG_BLK_DEV_BSG)
Mike Christieaa387cc2011-07-31 22:05:09 +0200570 bsg_job_fn *bsg_job_fn;
571 int bsg_job_size;
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604#define QUEUE_FLAG_QUEUED 1 /* uses generic tag queueing */
605#define QUEUE_FLAG_STOPPED 2 /* queue is stopped */
Jens Axboe1faa16d2009-04-06 14:48:01 +0200606#define QUEUE_FLAG_SYNCFULL 3 /* read queue has been filled */
607#define QUEUE_FLAG_ASYNCFULL 4 /* write queue has been filled */
Bart Van Assche3f3299d2012-11-28 13:42:38 +0100608#define QUEUE_FLAG_DYING 5 /* queue being torn down */
Tejun Heod7325802012-03-05 13:14:58 -0800609#define QUEUE_FLAG_BYPASS 6 /* act as dumb FIFO queue */
Jens Axboec21e6be2011-04-19 13:32:46 +0200610#define QUEUE_FLAG_BIDI 7 /* queue supports bidi requests */
611#define QUEUE_FLAG_NOMERGES 8 /* disable merge attempts */
Dan Williams5757a6d2011-07-23 20:44:25 +0200612#define QUEUE_FLAG_SAME_COMP 9 /* complete on same CPU-group */
Jens Axboec21e6be2011-04-19 13:32:46 +0200613#define QUEUE_FLAG_FAIL_IO 10 /* fake timeout */
614#define QUEUE_FLAG_STACKABLE 11 /* supports request stacking */
615#define QUEUE_FLAG_NONROT 12 /* non-rotational device (SSD) */
Fernando Luis Vázquez Cao88e740f2008-10-27 18:44:46 +0900616#define QUEUE_FLAG_VIRT QUEUE_FLAG_NONROT /* paravirt device */
Jens Axboec21e6be2011-04-19 13:32:46 +0200617#define QUEUE_FLAG_IO_STAT 13 /* do IO stats */
618#define QUEUE_FLAG_DISCARD 14 /* supports DISCARD */
619#define QUEUE_FLAG_NOXMERGES 15 /* No extended merges */
620#define QUEUE_FLAG_ADD_RANDOM 16 /* Contributes to random pool */
Christoph Hellwig288dab82016-06-09 16:00:36 +0200621#define QUEUE_FLAG_SECERASE 17 /* supports secure erase */
Dan Williams5757a6d2011-07-23 20:44:25 +0200622#define QUEUE_FLAG_SAME_FORCE 18 /* force complete on same CPU */
Bart Van Asschec246e802012-12-06 14:32:01 +0100623#define QUEUE_FLAG_DEAD 19 /* queue tear-down finished */
Jens Axboe320ae512013-10-24 09:20:05 +0100624#define QUEUE_FLAG_INIT_DONE 20 /* queue is initialized */
Jens Axboe05f1dd52014-05-29 09:53:32 -0600625#define QUEUE_FLAG_NO_SG_MERGE 21 /* don't attempt to merge SG segments*/
Jens Axboe05229beed2015-11-05 10:44:55 -0700626#define QUEUE_FLAG_POLL 22 /* IO polling enabled if set */
Jens Axboe93e9d8e2016-04-12 12:32:46 -0600627#define QUEUE_FLAG_WC 23 /* Write back caching */
628#define QUEUE_FLAG_FUA 24 /* device supports FUA writes */
Jens Axboec888a8f92016-04-13 13:33:19 -0600629#define QUEUE_FLAG_FLUSH_NQ 25 /* flush not queueuable */
Toshi Kani163d4ba2016-06-23 17:05:50 -0400630#define QUEUE_FLAG_DAX 26 /* device supports DAX */
Jens Axboecf43e6b2016-11-07 21:32:37 -0700631#define QUEUE_FLAG_STATS 27 /* track rq completion times */
Jens Axboe65f619d2017-04-07 12:45:20 -0600632#define QUEUE_FLAG_POLL_STATS 28 /* collecting stats for hybrid polling */
633#define QUEUE_FLAG_REGISTERED 29 /* queue has been registered to a disk */
Bart Van Assche9efc1602017-05-31 14:43:46 -0700634#define QUEUE_FLAG_SCSI_PASSTHROUGH 30 /* queue supports SCSI commands */
Ming Leif4560ff2017-06-18 14:24:27 -0600635#define QUEUE_FLAG_QUIESCED 31 /* queue has been quiesced */
Jens Axboebc58ba92009-01-23 10:54:44 +0100636
637#define QUEUE_FLAG_DEFAULT ((1 << QUEUE_FLAG_IO_STAT) | \
Jens Axboe01e97f62009-09-03 20:06:47 +0200638 (1 << QUEUE_FLAG_STACKABLE) | \
Jens Axboee2e1a142010-06-09 10:42:09 +0200639 (1 << QUEUE_FLAG_SAME_COMP) | \
640 (1 << QUEUE_FLAG_ADD_RANDOM))
Tejun Heo797e7db2006-01-06 09:51:03 +0100641
Jens Axboe94eddfb2013-11-19 09:25:07 -0700642#define QUEUE_FLAG_MQ_DEFAULT ((1 << QUEUE_FLAG_IO_STAT) | \
Mike Snitzerad9cf3b2014-12-16 12:54:25 -0500643 (1 << QUEUE_FLAG_STACKABLE) | \
Christoph Hellwig8e0b60b2016-03-03 16:04:03 +0100644 (1 << QUEUE_FLAG_SAME_COMP) | \
645 (1 << QUEUE_FLAG_POLL))
Jens Axboe94eddfb2013-11-19 09:25:07 -0700646
Bart Van Assche9e0c8292017-06-20 11:15:44 -0700647/*
648 * @q->queue_lock is set while a queue is being initialized. Since we know
649 * that no other threads access the queue object before @q->queue_lock has
650 * been set, it is safe to manipulate queue flags without holding the
651 * queue_lock if @q->queue_lock == NULL. See also blk_alloc_queue_node() and
652 * blk_init_allocated_queue().
653 */
Andi Kleen8bcb6c72012-03-30 12:33:28 +0200654static inline void queue_lockdep_assert_held(struct request_queue *q)
Linus Torvalds8f45c1a2008-04-29 10:16:38 -0700655{
Andi Kleen8bcb6c72012-03-30 12:33:28 +0200656 if (q->queue_lock)
657 lockdep_assert_held(q->queue_lock);
Linus Torvalds8f45c1a2008-04-29 10:16:38 -0700658}
659
Nick Piggin75ad23b2008-04-29 14:48:33 +0200660static inline void queue_flag_set_unlocked(unsigned int flag,
661 struct request_queue *q)
662{
663 __set_bit(flag, &q->queue_flags);
664}
665
Jens Axboee48ec692008-07-03 13:18:54 +0200666static inline int queue_flag_test_and_clear(unsigned int flag,
667 struct request_queue *q)
668{
Andi Kleen8bcb6c72012-03-30 12:33:28 +0200669 queue_lockdep_assert_held(q);
Jens Axboee48ec692008-07-03 13:18:54 +0200670
671 if (test_bit(flag, &q->queue_flags)) {
672 __clear_bit(flag, &q->queue_flags);
673 return 1;
674 }
675
676 return 0;
677}
678
679static inline int queue_flag_test_and_set(unsigned int flag,
680 struct request_queue *q)
681{
Andi Kleen8bcb6c72012-03-30 12:33:28 +0200682 queue_lockdep_assert_held(q);
Jens Axboee48ec692008-07-03 13:18:54 +0200683
684 if (!test_bit(flag, &q->queue_flags)) {
685 __set_bit(flag, &q->queue_flags);
686 return 0;
687 }
688
689 return 1;
690}
691
Nick Piggin75ad23b2008-04-29 14:48:33 +0200692static inline void queue_flag_set(unsigned int flag, struct request_queue *q)
693{
Andi Kleen8bcb6c72012-03-30 12:33:28 +0200694 queue_lockdep_assert_held(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200695 __set_bit(flag, &q->queue_flags);
696}
697
698static inline void queue_flag_clear_unlocked(unsigned int flag,
699 struct request_queue *q)
700{
701 __clear_bit(flag, &q->queue_flags);
702}
703
Jens Axboe0a7ae2f2009-05-20 08:54:31 +0200704static inline int queue_in_flight(struct request_queue *q)
705{
706 return q->in_flight[0] + q->in_flight[1];
707}
708
Nick Piggin75ad23b2008-04-29 14:48:33 +0200709static inline void queue_flag_clear(unsigned int flag, struct request_queue *q)
710{
Andi Kleen8bcb6c72012-03-30 12:33:28 +0200711 queue_lockdep_assert_held(q);
Nick Piggin75ad23b2008-04-29 14:48:33 +0200712 __clear_bit(flag, &q->queue_flags);
713}
714
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715#define blk_queue_tagged(q) test_bit(QUEUE_FLAG_QUEUED, &(q)->queue_flags)
716#define blk_queue_stopped(q) test_bit(QUEUE_FLAG_STOPPED, &(q)->queue_flags)
Bart Van Assche3f3299d2012-11-28 13:42:38 +0100717#define blk_queue_dying(q) test_bit(QUEUE_FLAG_DYING, &(q)->queue_flags)
Bart Van Asschec246e802012-12-06 14:32:01 +0100718#define blk_queue_dead(q) test_bit(QUEUE_FLAG_DEAD, &(q)->queue_flags)
Tejun Heod7325802012-03-05 13:14:58 -0800719#define blk_queue_bypass(q) test_bit(QUEUE_FLAG_BYPASS, &(q)->queue_flags)
Jens Axboe320ae512013-10-24 09:20:05 +0100720#define blk_queue_init_done(q) test_bit(QUEUE_FLAG_INIT_DONE, &(q)->queue_flags)
Alan D. Brunelleac9fafa2008-04-29 14:44:19 +0200721#define blk_queue_nomerges(q) test_bit(QUEUE_FLAG_NOMERGES, &(q)->queue_flags)
Alan D. Brunelle488991e2010-01-29 09:04:08 +0100722#define blk_queue_noxmerges(q) \
723 test_bit(QUEUE_FLAG_NOXMERGES, &(q)->queue_flags)
Jens Axboea68bbddba2008-09-24 13:03:33 +0200724#define blk_queue_nonrot(q) test_bit(QUEUE_FLAG_NONROT, &(q)->queue_flags)
Jens Axboebc58ba92009-01-23 10:54:44 +0100725#define blk_queue_io_stat(q) test_bit(QUEUE_FLAG_IO_STAT, &(q)->queue_flags)
Jens Axboee2e1a142010-06-09 10:42:09 +0200726#define blk_queue_add_random(q) test_bit(QUEUE_FLAG_ADD_RANDOM, &(q)->queue_flags)
Kiyoshi Ueda4ee5eaf2008-09-18 10:46:13 -0400727#define blk_queue_stackable(q) \
728 test_bit(QUEUE_FLAG_STACKABLE, &(q)->queue_flags)
Christoph Hellwigc15227d2009-09-30 13:52:12 +0200729#define blk_queue_discard(q) test_bit(QUEUE_FLAG_DISCARD, &(q)->queue_flags)
Christoph Hellwig288dab82016-06-09 16:00:36 +0200730#define blk_queue_secure_erase(q) \
731 (test_bit(QUEUE_FLAG_SECERASE, &(q)->queue_flags))
Toshi Kani163d4ba2016-06-23 17:05:50 -0400732#define blk_queue_dax(q) test_bit(QUEUE_FLAG_DAX, &(q)->queue_flags)
Bart Van Assche9efc1602017-05-31 14:43:46 -0700733#define blk_queue_scsi_passthrough(q) \
734 test_bit(QUEUE_FLAG_SCSI_PASSTHROUGH, &(q)->queue_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Christoph Hellwig33659eb2010-08-07 18:17:56 +0200736#define blk_noretry_request(rq) \
737 ((rq)->cmd_flags & (REQ_FAILFAST_DEV|REQ_FAILFAST_TRANSPORT| \
738 REQ_FAILFAST_DRIVER))
Ming Leif4560ff2017-06-18 14:24:27 -0600739#define blk_queue_quiesced(q) test_bit(QUEUE_FLAG_QUIESCED, &(q)->queue_flags)
Jens Axboe4aff5e22006-08-10 08:44:47 +0200740
Christoph Hellwig57292b52017-01-31 16:57:29 +0100741static inline bool blk_account_rq(struct request *rq)
742{
743 return (rq->rq_flags & RQF_STARTED) && !blk_rq_is_passthrough(rq);
744}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Jens Axboeab780f12008-08-26 10:25:02 +0200746#define blk_rq_cpu_valid(rq) ((rq)->cpu != -1)
FUJITA Tomonoriabae1fd2007-07-16 08:52:14 +0200747#define blk_bidi_rq(rq) ((rq)->next_rq != NULL)
Kiyoshi Ueda336cdb42007-12-11 17:40:30 -0500748/* rq->queuelist of dequeued request must be list_empty() */
749#define blk_queued_rq(rq) (!list_empty(&(rq)->queuelist))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
751#define list_entry_rq(ptr) list_entry((ptr), struct request, queuelist)
752
Mike Christie4e1b2d522016-06-05 14:32:22 -0500753#define rq_data_dir(rq) (op_is_write(req_op(rq)) ? WRITE : READ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Jens Axboe49fd5242014-04-16 10:57:18 -0600755/*
756 * Driver can handle struct request, if it either has an old style
757 * request_fn defined, or is blk-mq based.
758 */
759static inline bool queue_is_rq_based(struct request_queue *q)
760{
761 return q->request_fn || q->mq_ops;
762}
763
Martin K. Petersene692cb62010-12-01 19:41:49 +0100764static inline unsigned int blk_queue_cluster(struct request_queue *q)
765{
766 return q->limits.cluster;
767}
768
Damien Le Moal797476b2016-10-18 15:40:29 +0900769static inline enum blk_zoned_model
770blk_queue_zoned_model(struct request_queue *q)
771{
772 return q->limits.zoned;
773}
774
775static inline bool blk_queue_is_zoned(struct request_queue *q)
776{
777 switch (blk_queue_zoned_model(q)) {
778 case BLK_ZONED_HA:
779 case BLK_ZONED_HM:
780 return true;
781 default:
782 return false;
783 }
784}
785
Damien Le Moalf99e8642017-01-12 07:58:32 -0700786static inline unsigned int blk_queue_zone_sectors(struct request_queue *q)
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +0900787{
788 return blk_queue_is_zoned(q) ? q->limits.chunk_sectors : 0;
789}
790
Jens Axboe1faa16d2009-04-06 14:48:01 +0200791static inline bool rq_is_sync(struct request *rq)
792{
Christoph Hellwigef295ec2016-10-28 08:48:16 -0600793 return op_is_sync(rq->cmd_flags);
Jens Axboe1faa16d2009-04-06 14:48:01 +0200794}
795
Tejun Heo5b788ce2012-06-04 20:40:59 -0700796static inline bool blk_rl_full(struct request_list *rl, bool sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797{
Tejun Heo5b788ce2012-06-04 20:40:59 -0700798 unsigned int flag = sync ? BLK_RL_SYNCFULL : BLK_RL_ASYNCFULL;
799
800 return rl->flags & flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801}
802
Tejun Heo5b788ce2012-06-04 20:40:59 -0700803static inline void blk_set_rl_full(struct request_list *rl, bool sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804{
Tejun Heo5b788ce2012-06-04 20:40:59 -0700805 unsigned int flag = sync ? BLK_RL_SYNCFULL : BLK_RL_ASYNCFULL;
806
807 rl->flags |= flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808}
809
Tejun Heo5b788ce2012-06-04 20:40:59 -0700810static inline void blk_clear_rl_full(struct request_list *rl, bool sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
Tejun Heo5b788ce2012-06-04 20:40:59 -0700812 unsigned int flag = sync ? BLK_RL_SYNCFULL : BLK_RL_ASYNCFULL;
813
814 rl->flags &= ~flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815}
816
Martin K. Petersene2a60da2012-09-18 12:19:25 -0400817static inline bool rq_mergeable(struct request *rq)
818{
Christoph Hellwig57292b52017-01-31 16:57:29 +0100819 if (blk_rq_is_passthrough(rq))
Martin K. Petersene2a60da2012-09-18 12:19:25 -0400820 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
Mike Christie3a5e02c2016-06-05 14:32:23 -0500822 if (req_op(rq) == REQ_OP_FLUSH)
823 return false;
824
Chaitanya Kulkarnia6f07882016-11-30 12:28:59 -0800825 if (req_op(rq) == REQ_OP_WRITE_ZEROES)
826 return false;
827
Martin K. Petersene2a60da2012-09-18 12:19:25 -0400828 if (rq->cmd_flags & REQ_NOMERGE_FLAGS)
829 return false;
Christoph Hellwige8064022016-10-20 15:12:13 +0200830 if (rq->rq_flags & RQF_NOMERGE_FLAGS)
831 return false;
Martin K. Petersene2a60da2012-09-18 12:19:25 -0400832
833 return true;
834}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835
Martin K. Petersen4363ac72012-09-18 12:19:27 -0400836static inline bool blk_write_same_mergeable(struct bio *a, struct bio *b)
837{
Christoph Hellwigefbeccd2017-06-19 09:24:41 +0200838 if (bio_page(a) == bio_page(b) &&
839 bio_offset(a) == bio_offset(b))
Martin K. Petersen4363ac72012-09-18 12:19:27 -0400840 return true;
841
842 return false;
843}
844
Jens Axboed278d4a2016-03-30 10:21:08 -0600845static inline unsigned int blk_queue_depth(struct request_queue *q)
846{
847 if (q->queue_depth)
848 return q->queue_depth;
849
850 return q->nr_requests;
851}
852
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 * q->prep_rq_fn return values
855 */
Martin K. Petersen0fb5b1f2016-02-04 00:52:12 -0500856enum {
857 BLKPREP_OK, /* serve it */
858 BLKPREP_KILL, /* fatal error, kill, return -EIO */
859 BLKPREP_DEFER, /* leave on queue */
860 BLKPREP_INVALID, /* invalid command, kill, return -EREMOTEIO */
861};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
863extern unsigned long blk_max_low_pfn, blk_max_pfn;
864
865/*
866 * standard bounce addresses:
867 *
868 * BLK_BOUNCE_HIGH : bounce all highmem pages
869 * BLK_BOUNCE_ANY : don't bounce anything
870 * BLK_BOUNCE_ISA : bounce pages above ISA DMA boundary
871 */
Andi Kleen24728922008-04-21 09:51:05 +0200872
873#if BITS_PER_LONG == 32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874#define BLK_BOUNCE_HIGH ((u64)blk_max_low_pfn << PAGE_SHIFT)
Andi Kleen24728922008-04-21 09:51:05 +0200875#else
876#define BLK_BOUNCE_HIGH -1ULL
877#endif
878#define BLK_BOUNCE_ANY (-1ULL)
FUJITA Tomonoribfe17232010-05-31 15:59:03 +0900879#define BLK_BOUNCE_ISA (DMA_BIT_MASK(24))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Jens Axboe3d6392c2007-07-09 12:38:05 +0200881/*
882 * default timeout for SG_IO if none specified
883 */
884#define BLK_DEFAULT_SG_TIMEOUT (60 * HZ)
Linus Torvaldsf2f1fa72008-12-05 14:49:18 -0800885#define BLK_MIN_SG_TIMEOUT (7 * HZ)
Jens Axboe3d6392c2007-07-09 12:38:05 +0200886
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900887struct rq_map_data {
888 struct page **pages;
889 int page_order;
890 int nr_entries;
FUJITA Tomonori56c451f2008-12-18 14:49:37 +0900891 unsigned long offset;
FUJITA Tomonori97ae77a2008-12-18 14:49:38 +0900892 int null_mapped;
FUJITA Tomonoriecb554a2009-07-09 14:46:53 +0200893 int from_user;
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900894};
895
NeilBrown5705f702007-09-25 12:35:59 +0200896struct req_iterator {
Kent Overstreet79886132013-11-23 17:19:00 -0800897 struct bvec_iter iter;
NeilBrown5705f702007-09-25 12:35:59 +0200898 struct bio *bio;
899};
900
901/* This should not be used directly - use rq_for_each_segment */
Jens Axboe1e428072009-02-23 09:03:10 +0100902#define for_each_bio(_bio) \
903 for (; _bio; _bio = _bio->bi_next)
NeilBrown5705f702007-09-25 12:35:59 +0200904#define __rq_for_each_bio(_bio, rq) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 if ((rq->bio)) \
906 for (_bio = (rq)->bio; _bio; _bio = _bio->bi_next)
907
NeilBrown5705f702007-09-25 12:35:59 +0200908#define rq_for_each_segment(bvl, _rq, _iter) \
909 __rq_for_each_bio(_iter.bio, _rq) \
Kent Overstreet79886132013-11-23 17:19:00 -0800910 bio_for_each_segment(bvl, _iter.bio, _iter.iter)
NeilBrown5705f702007-09-25 12:35:59 +0200911
Kent Overstreet4550dd62013-08-07 14:26:21 -0700912#define rq_iter_last(bvec, _iter) \
Kent Overstreet79886132013-11-23 17:19:00 -0800913 (_iter.bio->bi_next == NULL && \
Kent Overstreet4550dd62013-08-07 14:26:21 -0700914 bio_iter_last(bvec, _iter.iter))
NeilBrown5705f702007-09-25 12:35:59 +0200915
Ilya Loginov2d4dc892009-11-26 09:16:19 +0100916#ifndef ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
917# error "You should define ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE for your platform"
918#endif
919#if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
920extern void rq_flush_dcache_pages(struct request *rq);
921#else
922static inline void rq_flush_dcache_pages(struct request *rq)
923{
924}
925#endif
926
Toshi Kani2af3a812016-05-10 10:23:52 -0600927#ifdef CONFIG_PRINTK
928#define vfs_msg(sb, level, fmt, ...) \
929 __vfs_msg(sb, level, fmt, ##__VA_ARGS__)
930#else
931#define vfs_msg(sb, level, fmt, ...) \
932do { \
933 no_printk(fmt, ##__VA_ARGS__); \
934 __vfs_msg(sb, "", " "); \
935} while (0)
936#endif
937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938extern int blk_register_queue(struct gendisk *disk);
939extern void blk_unregister_queue(struct gendisk *disk);
Jens Axboedece1632015-11-05 10:41:16 -0700940extern blk_qc_t generic_make_request(struct bio *bio);
FUJITA Tomonori2a4aa302008-04-29 09:54:36 +0200941extern void blk_rq_init(struct request_queue *q, struct request *rq);
Bart Van Asscheda8d7f02017-04-19 14:01:24 -0700942extern void blk_init_request_from_bio(struct request *req, struct bio *bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943extern void blk_put_request(struct request *);
Jens Axboe165125e2007-07-24 09:28:11 +0200944extern void __blk_put_request(struct request_queue *, struct request *);
Bart Van Asschecd6ce142017-06-20 11:15:39 -0700945extern struct request *blk_get_request(struct request_queue *, unsigned int op,
946 gfp_t gfp_mask);
Jens Axboe165125e2007-07-24 09:28:11 +0200947extern void blk_requeue_request(struct request_queue *, struct request *);
Kiyoshi Uedaef9e3fa2008-10-01 16:12:15 +0200948extern int blk_lld_busy(struct request_queue *q);
Mike Snitzer78d8e582015-06-26 10:01:13 -0400949extern int blk_rq_prep_clone(struct request *rq, struct request *rq_src,
950 struct bio_set *bs, gfp_t gfp_mask,
951 int (*bio_ctr)(struct bio *, struct bio *, void *),
952 void *data);
953extern void blk_rq_unprep_clone(struct request *rq);
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200954extern blk_status_t blk_insert_cloned_request(struct request_queue *q,
Kiyoshi Ueda82124d62008-09-18 10:45:38 -0400955 struct request *rq);
Christoph Hellwig98d61d52016-07-19 11:31:51 +0200956extern int blk_rq_append_bio(struct request *rq, struct bio *bio);
Jens Axboe3cca6dc2011-03-02 11:08:00 -0500957extern void blk_delay_queue(struct request_queue *, unsigned long);
NeilBrownaf67c312017-06-18 14:38:57 +1000958extern void blk_queue_split(struct request_queue *, struct bio **);
Jens Axboe165125e2007-07-24 09:28:11 +0200959extern void blk_recount_segments(struct request_queue *, struct bio *);
Paolo Bonzini0bfc96c2012-01-12 16:01:28 +0100960extern int scsi_verify_blk_ioctl(struct block_device *, unsigned int);
Paolo Bonzini577ebb32012-01-12 16:01:27 +0100961extern int scsi_cmd_blk_ioctl(struct block_device *, fmode_t,
962 unsigned int, void __user *);
Al Viro74f3c8a2007-08-27 15:38:10 -0400963extern int scsi_cmd_ioctl(struct request_queue *, struct gendisk *, fmode_t,
964 unsigned int, void __user *);
Al Viroe915e872008-09-02 17:16:41 -0400965extern int sg_scsi_ioctl(struct request_queue *, struct gendisk *, fmode_t,
966 struct scsi_ioctl_command __user *);
Andrew Morton3fcfab12006-10-19 23:28:16 -0700967
Christoph Hellwig6f3b0e82015-11-26 09:13:05 +0100968extern int blk_queue_enter(struct request_queue *q, bool nowait);
Dan Williams2e6edc92015-11-19 13:29:28 -0800969extern void blk_queue_exit(struct request_queue *q);
Jens Axboe165125e2007-07-24 09:28:11 +0200970extern void blk_start_queue(struct request_queue *q);
Jens Axboe21491412015-12-28 13:01:22 -0700971extern void blk_start_queue_async(struct request_queue *q);
Jens Axboe165125e2007-07-24 09:28:11 +0200972extern void blk_stop_queue(struct request_queue *q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973extern void blk_sync_queue(struct request_queue *q);
Jens Axboe165125e2007-07-24 09:28:11 +0200974extern void __blk_stop_queue(struct request_queue *q);
Christoph Hellwig24ecfbe2011-04-18 11:41:33 +0200975extern void __blk_run_queue(struct request_queue *q);
Christoph Hellwiga7928c12015-04-17 22:37:20 +0200976extern void __blk_run_queue_uncond(struct request_queue *q);
Jens Axboe165125e2007-07-24 09:28:11 +0200977extern void blk_run_queue(struct request_queue *);
Jens Axboec21e6be2011-04-19 13:32:46 +0200978extern void blk_run_queue_async(struct request_queue *q);
FUJITA Tomonoria3bce902008-08-28 16:17:05 +0900979extern int blk_rq_map_user(struct request_queue *, struct request *,
FUJITA Tomonori152e2832008-08-28 16:17:06 +0900980 struct rq_map_data *, void __user *, unsigned long,
981 gfp_t);
Jens Axboe8e5cfc42006-12-19 11:12:46 +0100982extern int blk_rq_unmap_user(struct bio *);
Jens Axboe165125e2007-07-24 09:28:11 +0200983extern int blk_rq_map_kern(struct request_queue *, struct request *, void *, unsigned int, gfp_t);
984extern int blk_rq_map_user_iov(struct request_queue *, struct request *,
Kent Overstreet26e49cf2015-01-18 16:16:31 +0100985 struct rq_map_data *, const struct iov_iter *,
986 gfp_t);
Christoph Hellwigb7819b92017-04-20 16:02:55 +0200987extern void blk_execute_rq(struct request_queue *, struct gendisk *,
James Bottomley 994ca9a2005-06-20 14:11:09 +0200988 struct request *, int);
Jens Axboe165125e2007-07-24 09:28:11 +0200989extern void blk_execute_rq_nowait(struct request_queue *, struct gendisk *,
Jens Axboe15fc8582006-01-06 10:00:50 +0100990 struct request *, int, rq_end_io_fn *);
Mike Christie6e39b692005-11-11 05:30:24 -0600991
Christoph Hellwig2a842ac2017-06-03 09:38:04 +0200992int blk_status_to_errno(blk_status_t status);
993blk_status_t errno_to_blk_status(int errno);
994
Jens Axboebbd7bb72016-11-04 09:34:34 -0600995bool blk_mq_poll(struct request_queue *q, blk_qc_t cookie);
Jens Axboe05229beed2015-11-05 10:44:55 -0700996
Jens Axboe165125e2007-07-24 09:28:11 +0200997static inline struct request_queue *bdev_get_queue(struct block_device *bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998{
Tejun Heoff9ea322014-09-08 08:03:56 +0900999 return bdev->bd_disk->queue; /* this is never NULL */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000}
1001
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002/*
Tejun Heo80a761f2009-07-03 17:48:17 +09001003 * blk_rq_pos() : the current sector
1004 * blk_rq_bytes() : bytes left in the entire request
1005 * blk_rq_cur_bytes() : bytes left in the current segment
1006 * blk_rq_err_bytes() : bytes left till the next error boundary
1007 * blk_rq_sectors() : sectors left in the entire request
1008 * blk_rq_cur_sectors() : sectors left in the current segment
Tejun Heo5efccd12009-04-23 11:05:18 +09001009 */
Tejun Heo5b936292009-05-07 22:24:38 +09001010static inline sector_t blk_rq_pos(const struct request *rq)
1011{
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001012 return rq->__sector;
Tejun Heo5b936292009-05-07 22:24:38 +09001013}
1014
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001015static inline unsigned int blk_rq_bytes(const struct request *rq)
1016{
Tejun Heoa2dec7b2009-05-07 22:24:44 +09001017 return rq->__data_len;
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001018}
1019
1020static inline int blk_rq_cur_bytes(const struct request *rq)
1021{
1022 return rq->bio ? bio_cur_bytes(rq->bio) : 0;
1023}
Tejun Heo5efccd12009-04-23 11:05:18 +09001024
Tejun Heo80a761f2009-07-03 17:48:17 +09001025extern unsigned int blk_rq_err_bytes(const struct request *rq);
1026
Tejun Heo5b936292009-05-07 22:24:38 +09001027static inline unsigned int blk_rq_sectors(const struct request *rq)
1028{
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001029 return blk_rq_bytes(rq) >> 9;
Tejun Heo5b936292009-05-07 22:24:38 +09001030}
1031
1032static inline unsigned int blk_rq_cur_sectors(const struct request *rq)
1033{
Tejun Heo2e46e8b2009-05-07 22:24:41 +09001034 return blk_rq_cur_bytes(rq) >> 9;
Tejun Heo5b936292009-05-07 22:24:38 +09001035}
1036
Christoph Hellwig2e3258e2017-01-13 12:29:10 +01001037/*
1038 * Some commands like WRITE SAME have a payload or data transfer size which
1039 * is different from the size of the request. Any driver that supports such
1040 * commands using the RQF_SPECIAL_PAYLOAD flag needs to use this helper to
1041 * calculate the data transfer size.
1042 */
1043static inline unsigned int blk_rq_payload_bytes(struct request *rq)
1044{
1045 if (rq->rq_flags & RQF_SPECIAL_PAYLOAD)
1046 return rq->special_vec.bv_len;
1047 return blk_rq_bytes(rq);
1048}
1049
Martin K. Petersenf31dc1c2012-09-18 12:19:26 -04001050static inline unsigned int blk_queue_get_max_sectors(struct request_queue *q,
Mike Christie8fe0d472016-06-05 14:32:15 -05001051 int op)
Martin K. Petersenf31dc1c2012-09-18 12:19:26 -04001052{
Adrian Hunter7afafc82016-08-16 10:59:35 +03001053 if (unlikely(op == REQ_OP_DISCARD || op == REQ_OP_SECURE_ERASE))
James Bottomley871dd922013-04-24 08:52:50 -06001054 return min(q->limits.max_discard_sectors, UINT_MAX >> 9);
Martin K. Petersenf31dc1c2012-09-18 12:19:26 -04001055
Mike Christie8fe0d472016-06-05 14:32:15 -05001056 if (unlikely(op == REQ_OP_WRITE_SAME))
Martin K. Petersen4363ac72012-09-18 12:19:27 -04001057 return q->limits.max_write_same_sectors;
1058
Chaitanya Kulkarnia6f07882016-11-30 12:28:59 -08001059 if (unlikely(op == REQ_OP_WRITE_ZEROES))
1060 return q->limits.max_write_zeroes_sectors;
1061
Martin K. Petersenf31dc1c2012-09-18 12:19:26 -04001062 return q->limits.max_sectors;
1063}
1064
Jens Axboe762380a2014-06-05 13:38:39 -06001065/*
1066 * Return maximum size of a request at given offset. Only valid for
1067 * file system requests.
1068 */
1069static inline unsigned int blk_max_size_offset(struct request_queue *q,
1070 sector_t offset)
1071{
1072 if (!q->limits.chunk_sectors)
Jens Axboe736ed4d2014-06-17 22:09:29 -07001073 return q->limits.max_sectors;
Jens Axboe762380a2014-06-05 13:38:39 -06001074
1075 return q->limits.chunk_sectors -
1076 (offset & (q->limits.chunk_sectors - 1));
1077}
1078
Damien Le Moal17007f32016-07-20 21:40:47 -06001079static inline unsigned int blk_rq_get_max_sectors(struct request *rq,
1080 sector_t offset)
Martin K. Petersenf31dc1c2012-09-18 12:19:26 -04001081{
1082 struct request_queue *q = rq->q;
1083
Christoph Hellwig57292b52017-01-31 16:57:29 +01001084 if (blk_rq_is_passthrough(rq))
Martin K. Petersenf31dc1c2012-09-18 12:19:26 -04001085 return q->limits.max_hw_sectors;
1086
Adrian Hunter7afafc82016-08-16 10:59:35 +03001087 if (!q->limits.chunk_sectors ||
1088 req_op(rq) == REQ_OP_DISCARD ||
1089 req_op(rq) == REQ_OP_SECURE_ERASE)
Mike Christie8fe0d472016-06-05 14:32:15 -05001090 return blk_queue_get_max_sectors(q, req_op(rq));
Jens Axboe762380a2014-06-05 13:38:39 -06001091
Damien Le Moal17007f32016-07-20 21:40:47 -06001092 return min(blk_max_size_offset(q, offset),
Mike Christie8fe0d472016-06-05 14:32:15 -05001093 blk_queue_get_max_sectors(q, req_op(rq)));
Martin K. Petersenf31dc1c2012-09-18 12:19:26 -04001094}
1095
Jun'ichi Nomura75afb352013-09-21 13:57:47 -06001096static inline unsigned int blk_rq_count_bios(struct request *rq)
1097{
1098 unsigned int nr_bios = 0;
1099 struct bio *bio;
1100
1101 __rq_for_each_bio(bio, rq)
1102 nr_bios++;
1103
1104 return nr_bios;
1105}
1106
Tejun Heo5efccd12009-04-23 11:05:18 +09001107/*
Tejun Heo9934c8c2009-05-08 11:54:16 +09001108 * Request issue related functions.
1109 */
1110extern struct request *blk_peek_request(struct request_queue *q);
1111extern void blk_start_request(struct request *rq);
1112extern struct request *blk_fetch_request(struct request_queue *q);
1113
1114/*
Tejun Heo2e60e022009-04-23 11:05:18 +09001115 * Request completion related functions.
1116 *
1117 * blk_update_request() completes given number of bytes and updates
1118 * the request without completing it.
1119 *
Tejun Heof06d9a22009-04-23 11:05:19 +09001120 * blk_end_request() and friends. __blk_end_request() must be called
1121 * with the request queue spinlock acquired.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 *
1123 * Several drivers define their own end_request and call
Kiyoshi Ueda3bcddea2007-12-11 17:52:28 -05001124 * blk_end_request() for parts of the original function.
1125 * This prevents code duplication in drivers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 */
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001127extern bool blk_update_request(struct request *rq, blk_status_t error,
Tejun Heo2e60e022009-04-23 11:05:18 +09001128 unsigned int nr_bytes);
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001129extern void blk_finish_request(struct request *rq, blk_status_t error);
1130extern bool blk_end_request(struct request *rq, blk_status_t error,
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09001131 unsigned int nr_bytes);
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001132extern void blk_end_request_all(struct request *rq, blk_status_t error);
1133extern bool __blk_end_request(struct request *rq, blk_status_t error,
FUJITA Tomonorib1f74492009-05-11 17:56:09 +09001134 unsigned int nr_bytes);
Christoph Hellwig2a842ac2017-06-03 09:38:04 +02001135extern void __blk_end_request_all(struct request *rq, blk_status_t error);
1136extern bool __blk_end_request_cur(struct request *rq, blk_status_t error);
Tejun Heo2e60e022009-04-23 11:05:18 +09001137
Jens Axboeff856ba2006-01-09 16:02:34 +01001138extern void blk_complete_request(struct request *);
Jens Axboe242f9dc2008-09-14 05:55:09 -07001139extern void __blk_complete_request(struct request *);
1140extern void blk_abort_request(struct request *);
James Bottomley28018c22010-07-01 19:49:17 +09001141extern void blk_unprep_request(struct request *);
Jens Axboeff856ba2006-01-09 16:02:34 +01001142
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 * Access functions for manipulating queue properties
1145 */
Jens Axboe165125e2007-07-24 09:28:11 +02001146extern struct request_queue *blk_init_queue_node(request_fn_proc *rfn,
Christoph Lameter19460892005-06-23 00:08:19 -07001147 spinlock_t *lock, int node_id);
Jens Axboe165125e2007-07-24 09:28:11 +02001148extern struct request_queue *blk_init_queue(request_fn_proc *, spinlock_t *);
Christoph Hellwig5ea708d2017-01-03 14:52:44 +03001149extern int blk_init_allocated_queue(struct request_queue *);
Jens Axboe165125e2007-07-24 09:28:11 +02001150extern void blk_cleanup_queue(struct request_queue *);
1151extern void blk_queue_make_request(struct request_queue *, make_request_fn *);
1152extern void blk_queue_bounce_limit(struct request_queue *, u64);
Martin K. Petersen086fa5f2010-02-26 00:20:38 -05001153extern void blk_queue_max_hw_sectors(struct request_queue *, unsigned int);
Jens Axboe762380a2014-06-05 13:38:39 -06001154extern void blk_queue_chunk_sectors(struct request_queue *, unsigned int);
Martin K. Petersen8a783622010-02-26 00:20:39 -05001155extern void blk_queue_max_segments(struct request_queue *, unsigned short);
Christoph Hellwig1e739732017-02-08 14:46:49 +01001156extern void blk_queue_max_discard_segments(struct request_queue *,
1157 unsigned short);
Jens Axboe165125e2007-07-24 09:28:11 +02001158extern void blk_queue_max_segment_size(struct request_queue *, unsigned int);
Christoph Hellwig67efc922009-09-30 13:54:20 +02001159extern void blk_queue_max_discard_sectors(struct request_queue *q,
1160 unsigned int max_discard_sectors);
Martin K. Petersen4363ac72012-09-18 12:19:27 -04001161extern void blk_queue_max_write_same_sectors(struct request_queue *q,
1162 unsigned int max_write_same_sectors);
Chaitanya Kulkarnia6f07882016-11-30 12:28:59 -08001163extern void blk_queue_max_write_zeroes_sectors(struct request_queue *q,
1164 unsigned int max_write_same_sectors);
Martin K. Petersene1defc42009-05-22 17:17:49 -04001165extern void blk_queue_logical_block_size(struct request_queue *, unsigned short);
Martin K. Petersen892b6f92010-10-13 21:18:03 +02001166extern void blk_queue_physical_block_size(struct request_queue *, unsigned int);
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001167extern void blk_queue_alignment_offset(struct request_queue *q,
1168 unsigned int alignment);
Martin K. Petersen7c958e32009-07-31 11:49:11 -04001169extern void blk_limits_io_min(struct queue_limits *limits, unsigned int min);
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001170extern void blk_queue_io_min(struct request_queue *q, unsigned int min);
Martin K. Petersen3c5820c2009-09-11 21:54:52 +02001171extern void blk_limits_io_opt(struct queue_limits *limits, unsigned int opt);
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001172extern void blk_queue_io_opt(struct request_queue *q, unsigned int opt);
Jens Axboed278d4a2016-03-30 10:21:08 -06001173extern void blk_set_queue_depth(struct request_queue *q, unsigned int depth);
Martin K. Petersene475bba2009-06-16 08:23:52 +02001174extern void blk_set_default_limits(struct queue_limits *lim);
Martin K. Petersenb1bd0552012-01-11 16:27:11 +01001175extern void blk_set_stacking_limits(struct queue_limits *lim);
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001176extern int blk_stack_limits(struct queue_limits *t, struct queue_limits *b,
1177 sector_t offset);
Martin K. Petersen17be8c22010-01-11 03:21:49 -05001178extern int bdev_stack_limits(struct queue_limits *t, struct block_device *bdev,
1179 sector_t offset);
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001180extern void disk_stack_limits(struct gendisk *disk, struct block_device *bdev,
1181 sector_t offset);
Jens Axboe165125e2007-07-24 09:28:11 +02001182extern void blk_queue_stack_limits(struct request_queue *t, struct request_queue *b);
Tejun Heoe3790c72008-03-04 11:18:17 +01001183extern void blk_queue_dma_pad(struct request_queue *, unsigned int);
FUJITA Tomonori27f82212008-07-04 09:30:03 +02001184extern void blk_queue_update_dma_pad(struct request_queue *, unsigned int);
Tejun Heo2fb98e82008-02-19 11:36:53 +01001185extern int blk_queue_dma_drain(struct request_queue *q,
1186 dma_drain_needed_fn *dma_drain_needed,
1187 void *buf, unsigned int size);
Kiyoshi Uedaef9e3fa2008-10-01 16:12:15 +02001188extern void blk_queue_lld_busy(struct request_queue *q, lld_busy_fn *fn);
Jens Axboe165125e2007-07-24 09:28:11 +02001189extern void blk_queue_segment_boundary(struct request_queue *, unsigned long);
Keith Busch03100aa2015-08-19 14:24:05 -07001190extern void blk_queue_virt_boundary(struct request_queue *, unsigned long);
Jens Axboe165125e2007-07-24 09:28:11 +02001191extern void blk_queue_prep_rq(struct request_queue *, prep_rq_fn *pfn);
James Bottomley28018c22010-07-01 19:49:17 +09001192extern void blk_queue_unprep_rq(struct request_queue *, unprep_rq_fn *ufn);
Jens Axboe165125e2007-07-24 09:28:11 +02001193extern void blk_queue_dma_alignment(struct request_queue *, int);
James Bottomley11c3e682007-12-31 16:37:00 -06001194extern void blk_queue_update_dma_alignment(struct request_queue *, int);
Jens Axboe165125e2007-07-24 09:28:11 +02001195extern void blk_queue_softirq_done(struct request_queue *, softirq_done_fn *);
Jens Axboe242f9dc2008-09-14 05:55:09 -07001196extern void blk_queue_rq_timed_out(struct request_queue *, rq_timed_out_fn *);
1197extern void blk_queue_rq_timeout(struct request_queue *, unsigned int);
shaohua.li@intel.comf3876932011-05-06 11:34:32 -06001198extern void blk_queue_flush_queueable(struct request_queue *q, bool queueable);
Jens Axboe93e9d8e2016-04-12 12:32:46 -06001199extern void blk_queue_write_cache(struct request_queue *q, bool enabled, bool fua);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
Christoph Hellwig1e739732017-02-08 14:46:49 +01001201/*
1202 * Number of physical segments as sent to the device.
1203 *
1204 * Normally this is the number of discontiguous data segments sent by the
1205 * submitter. But for data-less command like discard we might have no
1206 * actual data segments submitted, but the driver might have to add it's
1207 * own special payload. In that case we still return 1 here so that this
1208 * special payload will be mapped.
1209 */
Christoph Hellwigf9d03f92016-12-08 15:20:32 -07001210static inline unsigned short blk_rq_nr_phys_segments(struct request *rq)
1211{
1212 if (rq->rq_flags & RQF_SPECIAL_PAYLOAD)
1213 return 1;
1214 return rq->nr_phys_segments;
1215}
1216
Christoph Hellwig1e739732017-02-08 14:46:49 +01001217/*
1218 * Number of discard segments (or ranges) the driver needs to fill in.
1219 * Each discard bio merged into a request is counted as one segment.
1220 */
1221static inline unsigned short blk_rq_nr_discard_segments(struct request *rq)
1222{
1223 return max_t(unsigned short, rq->nr_phys_segments, 1);
1224}
1225
Jens Axboe165125e2007-07-24 09:28:11 +02001226extern int blk_rq_map_sg(struct request_queue *, struct request *, struct scatterlist *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227extern void blk_dump_rq_flags(struct request *, char *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228extern long nr_blockdev_pages(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
Tejun Heo09ac46c2011-12-14 00:33:38 +01001230bool __must_check blk_get_queue(struct request_queue *);
Jens Axboe165125e2007-07-24 09:28:11 +02001231struct request_queue *blk_alloc_queue(gfp_t);
1232struct request_queue *blk_alloc_queue_node(gfp_t, int);
1233extern void blk_put_queue(struct request_queue *);
Jens Axboe3f21c262015-06-05 10:57:37 -06001234extern void blk_set_queue_dying(struct request_queue *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Shaohua Li316cc672011-07-08 08:19:21 +02001236/*
Lin Ming6c954662013-03-23 11:42:26 +08001237 * block layer runtime pm functions
1238 */
Rafael J. Wysocki47fafbc2014-12-04 01:00:23 +01001239#ifdef CONFIG_PM
Lin Ming6c954662013-03-23 11:42:26 +08001240extern void blk_pm_runtime_init(struct request_queue *q, struct device *dev);
1241extern int blk_pre_runtime_suspend(struct request_queue *q);
1242extern void blk_post_runtime_suspend(struct request_queue *q, int err);
1243extern void blk_pre_runtime_resume(struct request_queue *q);
1244extern void blk_post_runtime_resume(struct request_queue *q, int err);
Mika Westerbergd07ab6d2016-02-18 10:54:11 +02001245extern void blk_set_runtime_active(struct request_queue *q);
Lin Ming6c954662013-03-23 11:42:26 +08001246#else
1247static inline void blk_pm_runtime_init(struct request_queue *q,
1248 struct device *dev) {}
1249static inline int blk_pre_runtime_suspend(struct request_queue *q)
1250{
1251 return -ENOSYS;
1252}
1253static inline void blk_post_runtime_suspend(struct request_queue *q, int err) {}
1254static inline void blk_pre_runtime_resume(struct request_queue *q) {}
1255static inline void blk_post_runtime_resume(struct request_queue *q, int err) {}
Tobias Klauser9a05e752016-11-18 15:16:06 +01001256static inline void blk_set_runtime_active(struct request_queue *q) {}
Lin Ming6c954662013-03-23 11:42:26 +08001257#endif
1258
1259/*
Suresh Jayaraman75df7132011-09-21 10:00:16 +02001260 * blk_plug permits building a queue of related requests by holding the I/O
1261 * fragments for a short period. This allows merging of sequential requests
1262 * into single larger request. As the requests are moved from a per-task list to
1263 * the device's request_queue in a batch, this results in improved scalability
1264 * as the lock contention for request_queue lock is reduced.
1265 *
1266 * It is ok not to disable preemption when adding the request to the plug list
1267 * or when attempting a merge, because blk_schedule_flush_list() will only flush
1268 * the plug list when the task sleeps by itself. For details, please see
1269 * schedule() where blk_schedule_flush_plug() is called.
Shaohua Li316cc672011-07-08 08:19:21 +02001270 */
Jens Axboe73c10102011-03-08 13:19:51 +01001271struct blk_plug {
Suresh Jayaraman75df7132011-09-21 10:00:16 +02001272 struct list_head list; /* requests */
Jens Axboe320ae512013-10-24 09:20:05 +01001273 struct list_head mq_list; /* blk-mq requests */
Suresh Jayaraman75df7132011-09-21 10:00:16 +02001274 struct list_head cb_list; /* md requires an unplug callback */
Jens Axboe73c10102011-03-08 13:19:51 +01001275};
Shaohua Li55c022b2011-07-08 08:19:20 +02001276#define BLK_MAX_REQUEST_COUNT 16
Shaohua Li50d24c32016-11-03 17:03:53 -07001277#define BLK_PLUG_FLUSH_SIZE (128 * 1024)
Shaohua Li55c022b2011-07-08 08:19:20 +02001278
NeilBrown9cbb1752012-07-31 09:08:14 +02001279struct blk_plug_cb;
NeilBrown74018dc2012-07-31 09:08:15 +02001280typedef void (*blk_plug_cb_fn)(struct blk_plug_cb *, bool);
NeilBrown048c9372011-04-18 09:52:22 +02001281struct blk_plug_cb {
1282 struct list_head list;
NeilBrown9cbb1752012-07-31 09:08:14 +02001283 blk_plug_cb_fn callback;
1284 void *data;
NeilBrown048c9372011-04-18 09:52:22 +02001285};
NeilBrown9cbb1752012-07-31 09:08:14 +02001286extern struct blk_plug_cb *blk_check_plugged(blk_plug_cb_fn unplug,
1287 void *data, int size);
Jens Axboe73c10102011-03-08 13:19:51 +01001288extern void blk_start_plug(struct blk_plug *);
1289extern void blk_finish_plug(struct blk_plug *);
Jens Axboef6603782011-04-15 15:49:07 +02001290extern void blk_flush_plug_list(struct blk_plug *, bool);
Jens Axboe73c10102011-03-08 13:19:51 +01001291
1292static inline void blk_flush_plug(struct task_struct *tsk)
1293{
1294 struct blk_plug *plug = tsk->plug;
1295
Christoph Hellwig88b996c2011-04-15 15:20:10 +02001296 if (plug)
Jens Axboea237c1c2011-04-16 13:27:55 +02001297 blk_flush_plug_list(plug, false);
1298}
1299
1300static inline void blk_schedule_flush_plug(struct task_struct *tsk)
1301{
1302 struct blk_plug *plug = tsk->plug;
1303
1304 if (plug)
Jens Axboef6603782011-04-15 15:49:07 +02001305 blk_flush_plug_list(plug, true);
Jens Axboe73c10102011-03-08 13:19:51 +01001306}
1307
1308static inline bool blk_needs_flush_plug(struct task_struct *tsk)
1309{
1310 struct blk_plug *plug = tsk->plug;
1311
Jens Axboe320ae512013-10-24 09:20:05 +01001312 return plug &&
1313 (!list_empty(&plug->list) ||
1314 !list_empty(&plug->mq_list) ||
1315 !list_empty(&plug->cb_list));
Jens Axboe73c10102011-03-08 13:19:51 +01001316}
1317
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318/*
1319 * tag stuff
1320 */
Jens Axboe165125e2007-07-24 09:28:11 +02001321extern int blk_queue_start_tag(struct request_queue *, struct request *);
1322extern struct request *blk_queue_find_tag(struct request_queue *, int);
1323extern void blk_queue_end_tag(struct request_queue *, struct request *);
Shaohua Liee1b6f72015-01-15 17:32:25 -08001324extern int blk_queue_init_tags(struct request_queue *, int, struct blk_queue_tag *, int);
Jens Axboe165125e2007-07-24 09:28:11 +02001325extern void blk_queue_free_tags(struct request_queue *);
1326extern int blk_queue_resize_tags(struct request_queue *, int);
1327extern void blk_queue_invalidate_tags(struct request_queue *);
Shaohua Liee1b6f72015-01-15 17:32:25 -08001328extern struct blk_queue_tag *blk_init_tags(int, int);
James Bottomley492dfb42006-08-30 15:48:45 -04001329extern void blk_free_tags(struct blk_queue_tag *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
David C Somayajuluf583f492006-10-04 08:27:25 +02001331static inline struct request *blk_map_queue_find_tag(struct blk_queue_tag *bqt,
1332 int tag)
1333{
1334 if (unlikely(bqt == NULL || tag >= bqt->real_max_depth))
1335 return NULL;
1336 return bqt->tag_index[tag];
1337}
Christoph Hellwigdd3932e2010-09-16 20:51:46 +02001338
Christoph Hellwigee472d82017-04-05 19:21:08 +02001339extern int blkdev_issue_flush(struct block_device *, gfp_t, sector_t *);
1340extern int blkdev_issue_write_same(struct block_device *bdev, sector_t sector,
1341 sector_t nr_sects, gfp_t gfp_mask, struct page *page);
Christoph Hellwige950fdf2016-07-19 11:23:33 +02001342
1343#define BLKDEV_DISCARD_SECURE (1 << 0) /* issue a secure erase */
Christoph Hellwigdd3932e2010-09-16 20:51:46 +02001344
Dmitry Monakhovfbd9b092010-04-28 17:55:06 +04001345extern int blkdev_issue_discard(struct block_device *bdev, sector_t sector,
1346 sector_t nr_sects, gfp_t gfp_mask, unsigned long flags);
Christoph Hellwig38f25252016-04-16 14:55:28 -04001347extern int __blkdev_issue_discard(struct block_device *bdev, sector_t sector,
Christoph Hellwig288dab82016-06-09 16:00:36 +02001348 sector_t nr_sects, gfp_t gfp_mask, int flags,
Mike Christie469e3212016-06-05 14:31:49 -05001349 struct bio **biop);
Christoph Hellwigee472d82017-04-05 19:21:08 +02001350
1351#define BLKDEV_ZERO_NOUNMAP (1 << 0) /* do not free blocks */
Christoph Hellwigcb365b92017-04-05 19:21:10 +02001352#define BLKDEV_ZERO_NOFALLBACK (1 << 1) /* don't write explicit zeroes */
Christoph Hellwigee472d82017-04-05 19:21:08 +02001353
Chaitanya Kulkarnie73c23f2016-11-30 12:28:58 -08001354extern int __blkdev_issue_zeroout(struct block_device *bdev, sector_t sector,
1355 sector_t nr_sects, gfp_t gfp_mask, struct bio **biop,
Christoph Hellwigee472d82017-04-05 19:21:08 +02001356 unsigned flags);
Dmitry Monakhov3f14d792010-04-28 17:55:09 +04001357extern int blkdev_issue_zeroout(struct block_device *bdev, sector_t sector,
Christoph Hellwigee472d82017-04-05 19:21:08 +02001358 sector_t nr_sects, gfp_t gfp_mask, unsigned flags);
1359
Christoph Hellwig2cf6d262010-08-18 05:29:10 -04001360static inline int sb_issue_discard(struct super_block *sb, sector_t block,
1361 sector_t nr_blocks, gfp_t gfp_mask, unsigned long flags)
David Woodhousefb2dce82008-08-05 18:01:53 +01001362{
Christoph Hellwig2cf6d262010-08-18 05:29:10 -04001363 return blkdev_issue_discard(sb->s_bdev, block << (sb->s_blocksize_bits - 9),
1364 nr_blocks << (sb->s_blocksize_bits - 9),
1365 gfp_mask, flags);
David Woodhousefb2dce82008-08-05 18:01:53 +01001366}
Lukas Czernere6fa0be2010-10-27 21:30:04 -04001367static inline int sb_issue_zeroout(struct super_block *sb, sector_t block,
Theodore Ts'oa107e5a2010-10-27 23:44:47 -04001368 sector_t nr_blocks, gfp_t gfp_mask)
Lukas Czernere6fa0be2010-10-27 21:30:04 -04001369{
1370 return blkdev_issue_zeroout(sb->s_bdev,
1371 block << (sb->s_blocksize_bits - 9),
1372 nr_blocks << (sb->s_blocksize_bits - 9),
Christoph Hellwigee472d82017-04-05 19:21:08 +02001373 gfp_mask, 0);
Lukas Czernere6fa0be2010-10-27 21:30:04 -04001374}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
Jens Axboe018e0442009-06-26 16:27:10 +02001376extern int blk_verify_command(unsigned char *cmd, fmode_t has_write_perm);
Adel Gadllah0b07de82008-06-26 13:48:27 +02001377
Martin K. Peterseneb28d312010-02-26 00:20:37 -05001378enum blk_default_limits {
1379 BLK_MAX_SEGMENTS = 128,
1380 BLK_SAFE_MAX_SECTORS = 255,
Jeff Moyerd2be5372015-08-13 14:57:57 -04001381 BLK_DEF_MAX_SECTORS = 2560,
Martin K. Peterseneb28d312010-02-26 00:20:37 -05001382 BLK_MAX_SEGMENT_SIZE = 65536,
1383 BLK_SEG_BOUNDARY_MASK = 0xFFFFFFFFUL,
1384};
Milan Broz0e435ac2008-12-03 12:55:08 +01001385
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386#define blkdev_entry_to_request(entry) list_entry((entry), struct request, queuelist)
1387
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001388static inline unsigned long queue_segment_boundary(struct request_queue *q)
1389{
Martin K. Petersen025146e2009-05-22 17:17:51 -04001390 return q->limits.seg_boundary_mask;
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001391}
1392
Keith Busch03100aa2015-08-19 14:24:05 -07001393static inline unsigned long queue_virt_boundary(struct request_queue *q)
1394{
1395 return q->limits.virt_boundary_mask;
1396}
1397
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001398static inline unsigned int queue_max_sectors(struct request_queue *q)
1399{
Martin K. Petersen025146e2009-05-22 17:17:51 -04001400 return q->limits.max_sectors;
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001401}
1402
1403static inline unsigned int queue_max_hw_sectors(struct request_queue *q)
1404{
Martin K. Petersen025146e2009-05-22 17:17:51 -04001405 return q->limits.max_hw_sectors;
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001406}
1407
Martin K. Petersen8a783622010-02-26 00:20:39 -05001408static inline unsigned short queue_max_segments(struct request_queue *q)
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001409{
Martin K. Petersen8a783622010-02-26 00:20:39 -05001410 return q->limits.max_segments;
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001411}
1412
Christoph Hellwig1e739732017-02-08 14:46:49 +01001413static inline unsigned short queue_max_discard_segments(struct request_queue *q)
1414{
1415 return q->limits.max_discard_segments;
1416}
1417
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001418static inline unsigned int queue_max_segment_size(struct request_queue *q)
1419{
Martin K. Petersen025146e2009-05-22 17:17:51 -04001420 return q->limits.max_segment_size;
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001421}
1422
Martin K. Petersene1defc42009-05-22 17:17:49 -04001423static inline unsigned short queue_logical_block_size(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424{
1425 int retval = 512;
1426
Martin K. Petersen025146e2009-05-22 17:17:51 -04001427 if (q && q->limits.logical_block_size)
1428 retval = q->limits.logical_block_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
1430 return retval;
1431}
1432
Martin K. Petersene1defc42009-05-22 17:17:49 -04001433static inline unsigned short bdev_logical_block_size(struct block_device *bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434{
Martin K. Petersene1defc42009-05-22 17:17:49 -04001435 return queue_logical_block_size(bdev_get_queue(bdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436}
1437
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001438static inline unsigned int queue_physical_block_size(struct request_queue *q)
1439{
1440 return q->limits.physical_block_size;
1441}
1442
Martin K. Petersen892b6f92010-10-13 21:18:03 +02001443static inline unsigned int bdev_physical_block_size(struct block_device *bdev)
Martin K. Petersenac481c22009-10-03 20:52:01 +02001444{
1445 return queue_physical_block_size(bdev_get_queue(bdev));
1446}
1447
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001448static inline unsigned int queue_io_min(struct request_queue *q)
1449{
1450 return q->limits.io_min;
1451}
1452
Martin K. Petersenac481c22009-10-03 20:52:01 +02001453static inline int bdev_io_min(struct block_device *bdev)
1454{
1455 return queue_io_min(bdev_get_queue(bdev));
1456}
1457
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001458static inline unsigned int queue_io_opt(struct request_queue *q)
1459{
1460 return q->limits.io_opt;
1461}
1462
Martin K. Petersenac481c22009-10-03 20:52:01 +02001463static inline int bdev_io_opt(struct block_device *bdev)
1464{
1465 return queue_io_opt(bdev_get_queue(bdev));
1466}
1467
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001468static inline int queue_alignment_offset(struct request_queue *q)
1469{
Martin K. Petersenac481c22009-10-03 20:52:01 +02001470 if (q->limits.misaligned)
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001471 return -1;
1472
Martin K. Petersenac481c22009-10-03 20:52:01 +02001473 return q->limits.alignment_offset;
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001474}
1475
Martin K. Petersene03a72e2010-01-11 03:21:51 -05001476static inline int queue_limit_alignment_offset(struct queue_limits *lim, sector_t sector)
Martin K. Petersen81744ee2009-12-29 08:35:35 +01001477{
1478 unsigned int granularity = max(lim->physical_block_size, lim->io_min);
Mike Snitzerb8839b82014-10-08 18:26:13 -04001479 unsigned int alignment = sector_div(sector, granularity >> 9) << 9;
Martin K. Petersen81744ee2009-12-29 08:35:35 +01001480
Mike Snitzerb8839b82014-10-08 18:26:13 -04001481 return (granularity + lim->alignment_offset - alignment) % granularity;
Martin K. Petersenc72758f2009-05-22 17:17:53 -04001482}
1483
Martin K. Petersenac481c22009-10-03 20:52:01 +02001484static inline int bdev_alignment_offset(struct block_device *bdev)
1485{
1486 struct request_queue *q = bdev_get_queue(bdev);
1487
1488 if (q->limits.misaligned)
1489 return -1;
1490
1491 if (bdev != bdev->bd_contains)
1492 return bdev->bd_part->alignment_offset;
1493
1494 return q->limits.alignment_offset;
1495}
1496
Martin K. Petersen86b37282009-11-10 11:50:21 +01001497static inline int queue_discard_alignment(struct request_queue *q)
1498{
1499 if (q->limits.discard_misaligned)
1500 return -1;
1501
1502 return q->limits.discard_alignment;
1503}
1504
Martin K. Petersene03a72e2010-01-11 03:21:51 -05001505static inline int queue_limit_discard_alignment(struct queue_limits *lim, sector_t sector)
Martin K. Petersen86b37282009-11-10 11:50:21 +01001506{
Linus Torvalds59771072012-12-19 07:18:35 -08001507 unsigned int alignment, granularity, offset;
Martin K. Petersendd3d1452010-01-11 03:21:48 -05001508
Martin K. Petersena934a002011-05-18 10:37:35 +02001509 if (!lim->max_discard_sectors)
1510 return 0;
1511
Linus Torvalds59771072012-12-19 07:18:35 -08001512 /* Why are these in bytes, not sectors? */
1513 alignment = lim->discard_alignment >> 9;
1514 granularity = lim->discard_granularity >> 9;
1515 if (!granularity)
1516 return 0;
1517
1518 /* Offset of the partition start in 'granularity' sectors */
1519 offset = sector_div(sector, granularity);
1520
1521 /* And why do we do this modulus *again* in blkdev_issue_discard()? */
1522 offset = (granularity + alignment - offset) % granularity;
1523
1524 /* Turn it back into bytes, gaah */
1525 return offset << 9;
Martin K. Petersen86b37282009-11-10 11:50:21 +01001526}
1527
Paolo Bonzinic6e66632012-08-02 09:48:50 +02001528static inline int bdev_discard_alignment(struct block_device *bdev)
1529{
1530 struct request_queue *q = bdev_get_queue(bdev);
1531
1532 if (bdev != bdev->bd_contains)
1533 return bdev->bd_part->discard_alignment;
1534
1535 return q->limits.discard_alignment;
1536}
1537
Martin K. Petersen4363ac72012-09-18 12:19:27 -04001538static inline unsigned int bdev_write_same(struct block_device *bdev)
1539{
1540 struct request_queue *q = bdev_get_queue(bdev);
1541
1542 if (q)
1543 return q->limits.max_write_same_sectors;
1544
1545 return 0;
1546}
1547
Chaitanya Kulkarnia6f07882016-11-30 12:28:59 -08001548static inline unsigned int bdev_write_zeroes_sectors(struct block_device *bdev)
1549{
1550 struct request_queue *q = bdev_get_queue(bdev);
1551
1552 if (q)
1553 return q->limits.max_write_zeroes_sectors;
1554
1555 return 0;
1556}
1557
Damien Le Moal797476b2016-10-18 15:40:29 +09001558static inline enum blk_zoned_model bdev_zoned_model(struct block_device *bdev)
1559{
1560 struct request_queue *q = bdev_get_queue(bdev);
1561
1562 if (q)
1563 return blk_queue_zoned_model(q);
1564
1565 return BLK_ZONED_NONE;
1566}
1567
1568static inline bool bdev_is_zoned(struct block_device *bdev)
1569{
1570 struct request_queue *q = bdev_get_queue(bdev);
1571
1572 if (q)
1573 return blk_queue_is_zoned(q);
1574
1575 return false;
1576}
1577
Damien Le Moalf99e8642017-01-12 07:58:32 -07001578static inline unsigned int bdev_zone_sectors(struct block_device *bdev)
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +09001579{
1580 struct request_queue *q = bdev_get_queue(bdev);
1581
1582 if (q)
Damien Le Moalf99e8642017-01-12 07:58:32 -07001583 return blk_queue_zone_sectors(q);
Hannes Reinecke6a0cb1b2016-10-18 15:40:33 +09001584
1585 return 0;
1586}
1587
Jens Axboe165125e2007-07-24 09:28:11 +02001588static inline int queue_dma_alignment(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589{
Pete Wyckoff482eb682008-01-01 10:23:02 -05001590 return q ? q->dma_alignment : 511;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591}
1592
Namhyung Kim14417792010-09-15 13:08:27 +02001593static inline int blk_rq_aligned(struct request_queue *q, unsigned long addr,
FUJITA Tomonori87904072008-08-28 15:05:58 +09001594 unsigned int len)
1595{
1596 unsigned int alignment = queue_dma_alignment(q) | q->dma_pad_mask;
Namhyung Kim14417792010-09-15 13:08:27 +02001597 return !(addr & alignment) && !(len & alignment);
FUJITA Tomonori87904072008-08-28 15:05:58 +09001598}
1599
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600/* assumes size > 256 */
1601static inline unsigned int blksize_bits(unsigned int size)
1602{
1603 unsigned int bits = 8;
1604 do {
1605 bits++;
1606 size >>= 1;
1607 } while (size > 256);
1608 return bits;
1609}
1610
Adrian Bunk2befb9e2005-09-10 00:27:17 -07001611static inline unsigned int block_size(struct block_device *bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612{
1613 return bdev->bd_block_size;
1614}
1615
shaohua.li@intel.comf3876932011-05-06 11:34:32 -06001616static inline bool queue_flush_queueable(struct request_queue *q)
1617{
Jens Axboec888a8f92016-04-13 13:33:19 -06001618 return !test_bit(QUEUE_FLAG_FLUSH_NQ, &q->queue_flags);
shaohua.li@intel.comf3876932011-05-06 11:34:32 -06001619}
1620
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621typedef struct {struct page *v;} Sector;
1622
1623unsigned char *read_dev_sector(struct block_device *, sector_t, Sector *);
1624
1625static inline void put_dev_sector(Sector p)
1626{
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001627 put_page(p.v);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628}
1629
Ming Leie0af2912016-02-26 23:40:51 +08001630static inline bool __bvec_gap_to_prev(struct request_queue *q,
1631 struct bio_vec *bprv, unsigned int offset)
1632{
1633 return offset ||
1634 ((bprv->bv_offset + bprv->bv_len) & queue_virt_boundary(q));
1635}
1636
Keith Busch03100aa2015-08-19 14:24:05 -07001637/*
1638 * Check if adding a bio_vec after bprv with offset would create a gap in
1639 * the SG list. Most drivers don't care about this, but some do.
1640 */
1641static inline bool bvec_gap_to_prev(struct request_queue *q,
1642 struct bio_vec *bprv, unsigned int offset)
1643{
1644 if (!queue_virt_boundary(q))
1645 return false;
Ming Leie0af2912016-02-26 23:40:51 +08001646 return __bvec_gap_to_prev(q, bprv, offset);
Keith Busch03100aa2015-08-19 14:24:05 -07001647}
1648
Ming Lei729204e2016-12-17 18:49:09 +08001649/*
1650 * Check if the two bvecs from two bios can be merged to one segment.
1651 * If yes, no need to check gap between the two bios since the 1st bio
1652 * and the 1st bvec in the 2nd bio can be handled in one segment.
1653 */
1654static inline bool bios_segs_mergeable(struct request_queue *q,
1655 struct bio *prev, struct bio_vec *prev_last_bv,
1656 struct bio_vec *next_first_bv)
1657{
1658 if (!BIOVEC_PHYS_MERGEABLE(prev_last_bv, next_first_bv))
1659 return false;
1660 if (!BIOVEC_SEG_BOUNDARY(q, prev_last_bv, next_first_bv))
1661 return false;
1662 if (prev->bi_seg_back_size + next_first_bv->bv_len >
1663 queue_max_segment_size(q))
1664 return false;
1665 return true;
1666}
1667
Ming Lei5a8d75a2017-04-14 13:58:29 -06001668static inline bool bio_will_gap(struct request_queue *q,
1669 struct request *prev_rq,
1670 struct bio *prev,
1671 struct bio *next)
Jens Axboe5e7c4272015-09-03 19:28:20 +03001672{
Ming Lei25e71a92016-02-26 23:40:52 +08001673 if (bio_has_data(prev) && queue_virt_boundary(q)) {
1674 struct bio_vec pb, nb;
Jens Axboe5e7c4272015-09-03 19:28:20 +03001675
Ming Lei5a8d75a2017-04-14 13:58:29 -06001676 /*
1677 * don't merge if the 1st bio starts with non-zero
1678 * offset, otherwise it is quite difficult to respect
1679 * sg gap limit. We work hard to merge a huge number of small
1680 * single bios in case of mkfs.
1681 */
1682 if (prev_rq)
1683 bio_get_first_bvec(prev_rq->bio, &pb);
1684 else
1685 bio_get_first_bvec(prev, &pb);
1686 if (pb.bv_offset)
1687 return true;
1688
1689 /*
1690 * We don't need to worry about the situation that the
1691 * merged segment ends in unaligned virt boundary:
1692 *
1693 * - if 'pb' ends aligned, the merged segment ends aligned
1694 * - if 'pb' ends unaligned, the next bio must include
1695 * one single bvec of 'nb', otherwise the 'nb' can't
1696 * merge with 'pb'
1697 */
Ming Lei25e71a92016-02-26 23:40:52 +08001698 bio_get_last_bvec(prev, &pb);
1699 bio_get_first_bvec(next, &nb);
1700
Ming Lei729204e2016-12-17 18:49:09 +08001701 if (!bios_segs_mergeable(q, prev, &pb, &nb))
1702 return __bvec_gap_to_prev(q, &pb, nb.bv_offset);
Ming Lei25e71a92016-02-26 23:40:52 +08001703 }
1704
1705 return false;
Jens Axboe5e7c4272015-09-03 19:28:20 +03001706}
1707
1708static inline bool req_gap_back_merge(struct request *req, struct bio *bio)
1709{
Ming Lei5a8d75a2017-04-14 13:58:29 -06001710 return bio_will_gap(req->q, req, req->biotail, bio);
Jens Axboe5e7c4272015-09-03 19:28:20 +03001711}
1712
1713static inline bool req_gap_front_merge(struct request *req, struct bio *bio)
1714{
Ming Lei5a8d75a2017-04-14 13:58:29 -06001715 return bio_will_gap(req->q, NULL, bio, req->bio);
Jens Axboe5e7c4272015-09-03 19:28:20 +03001716}
1717
Jens Axboe59c3d452014-04-08 09:15:35 -06001718int kblockd_schedule_work(struct work_struct *work);
Jens Axboeee63cfa2016-08-24 15:52:48 -06001719int kblockd_schedule_work_on(int cpu, struct work_struct *work);
Jens Axboe59c3d452014-04-08 09:15:35 -06001720int kblockd_schedule_delayed_work(struct delayed_work *dwork, unsigned long delay);
Jens Axboe8ab14592014-04-08 09:17:40 -06001721int kblockd_schedule_delayed_work_on(int cpu, struct delayed_work *dwork, unsigned long delay);
Jens Axboe818cd1c2017-04-10 09:54:55 -06001722int kblockd_mod_delayed_work_on(int cpu, struct delayed_work *dwork, unsigned long delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
Divyesh Shah91952912010-04-01 15:01:41 -07001724#ifdef CONFIG_BLK_CGROUP
Jens Axboe28f41972010-06-01 12:23:18 +02001725/*
1726 * This should not be using sched_clock(). A real patch is in progress
1727 * to fix this up, until that is in place we need to disable preemption
1728 * around sched_clock() in this function and set_io_start_time_ns().
1729 */
Divyesh Shah91952912010-04-01 15:01:41 -07001730static inline void set_start_time_ns(struct request *req)
1731{
Jens Axboe28f41972010-06-01 12:23:18 +02001732 preempt_disable();
Divyesh Shah91952912010-04-01 15:01:41 -07001733 req->start_time_ns = sched_clock();
Jens Axboe28f41972010-06-01 12:23:18 +02001734 preempt_enable();
Divyesh Shah91952912010-04-01 15:01:41 -07001735}
1736
1737static inline void set_io_start_time_ns(struct request *req)
1738{
Jens Axboe28f41972010-06-01 12:23:18 +02001739 preempt_disable();
Divyesh Shah91952912010-04-01 15:01:41 -07001740 req->io_start_time_ns = sched_clock();
Jens Axboe28f41972010-06-01 12:23:18 +02001741 preempt_enable();
Divyesh Shah91952912010-04-01 15:01:41 -07001742}
Divyesh Shah84c124d2010-04-09 08:31:19 +02001743
1744static inline uint64_t rq_start_time_ns(struct request *req)
1745{
1746 return req->start_time_ns;
1747}
1748
1749static inline uint64_t rq_io_start_time_ns(struct request *req)
1750{
1751 return req->io_start_time_ns;
1752}
Divyesh Shah91952912010-04-01 15:01:41 -07001753#else
1754static inline void set_start_time_ns(struct request *req) {}
1755static inline void set_io_start_time_ns(struct request *req) {}
Divyesh Shah84c124d2010-04-09 08:31:19 +02001756static inline uint64_t rq_start_time_ns(struct request *req)
1757{
1758 return 0;
1759}
1760static inline uint64_t rq_io_start_time_ns(struct request *req)
1761{
1762 return 0;
1763}
Divyesh Shah91952912010-04-01 15:01:41 -07001764#endif
1765
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766#define MODULE_ALIAS_BLOCKDEV(major,minor) \
1767 MODULE_ALIAS("block-major-" __stringify(major) "-" __stringify(minor))
1768#define MODULE_ALIAS_BLOCKDEV_MAJOR(major) \
1769 MODULE_ALIAS("block-major-" __stringify(major) "-*")
1770
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001771#if defined(CONFIG_BLK_DEV_INTEGRITY)
1772
Martin K. Petersen8288f492014-09-26 19:20:02 -04001773enum blk_integrity_flags {
1774 BLK_INTEGRITY_VERIFY = 1 << 0,
1775 BLK_INTEGRITY_GENERATE = 1 << 1,
Martin K. Petersen3aec2f42014-09-26 19:20:03 -04001776 BLK_INTEGRITY_DEVICE_CAPABLE = 1 << 2,
Martin K. Petersenaae7df52014-09-26 19:20:05 -04001777 BLK_INTEGRITY_IP_CHECKSUM = 1 << 3,
Martin K. Petersen8288f492014-09-26 19:20:02 -04001778};
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001779
Martin K. Petersen18593082014-09-26 19:20:01 -04001780struct blk_integrity_iter {
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001781 void *prot_buf;
1782 void *data_buf;
Martin K. Petersen3be91c42014-09-26 19:19:59 -04001783 sector_t seed;
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001784 unsigned int data_size;
Martin K. Petersen3be91c42014-09-26 19:19:59 -04001785 unsigned short interval;
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001786 const char *disk_name;
1787};
1788
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001789typedef blk_status_t (integrity_processing_fn) (struct blk_integrity_iter *);
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001790
Martin K. Petersen0f8087e2015-10-21 13:19:33 -04001791struct blk_integrity_profile {
1792 integrity_processing_fn *generate_fn;
1793 integrity_processing_fn *verify_fn;
1794 const char *name;
1795};
1796
Martin K. Petersen25520d52015-10-21 13:19:49 -04001797extern void blk_integrity_register(struct gendisk *, struct blk_integrity *);
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001798extern void blk_integrity_unregister(struct gendisk *);
Martin K. Petersenad7fce92008-10-01 03:38:39 -04001799extern int blk_integrity_compare(struct gendisk *, struct gendisk *);
Martin K. Petersen13f05c82010-09-10 20:50:10 +02001800extern int blk_rq_map_integrity_sg(struct request_queue *, struct bio *,
1801 struct scatterlist *);
1802extern int blk_rq_count_integrity_sg(struct request_queue *, struct bio *);
Martin K. Petersen4eaf99b2014-09-26 19:20:06 -04001803extern bool blk_integrity_merge_rq(struct request_queue *, struct request *,
1804 struct request *);
1805extern bool blk_integrity_merge_bio(struct request_queue *, struct request *,
1806 struct bio *);
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001807
Martin K. Petersen25520d52015-10-21 13:19:49 -04001808static inline struct blk_integrity *blk_get_integrity(struct gendisk *disk)
1809{
Dan Williamsac6fc482015-10-21 13:20:18 -04001810 struct blk_integrity *bi = &disk->queue->integrity;
Martin K. Petersen25520d52015-10-21 13:19:49 -04001811
1812 if (!bi->profile)
1813 return NULL;
1814
1815 return bi;
1816}
1817
Jens Axboeb04accc2008-10-02 12:53:22 +02001818static inline
1819struct blk_integrity *bdev_get_integrity(struct block_device *bdev)
1820{
Martin K. Petersen25520d52015-10-21 13:19:49 -04001821 return blk_get_integrity(bdev->bd_disk);
Martin K. Petersenb02739b2008-10-02 18:47:49 +02001822}
1823
Martin K. Petersen180b2f92014-09-26 19:19:56 -04001824static inline bool blk_integrity_rq(struct request *rq)
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001825{
Martin K. Petersen180b2f92014-09-26 19:19:56 -04001826 return rq->cmd_flags & REQ_INTEGRITY;
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001827}
1828
Martin K. Petersen13f05c82010-09-10 20:50:10 +02001829static inline void blk_queue_max_integrity_segments(struct request_queue *q,
1830 unsigned int segs)
1831{
1832 q->limits.max_integrity_segments = segs;
1833}
1834
1835static inline unsigned short
1836queue_max_integrity_segments(struct request_queue *q)
1837{
1838 return q->limits.max_integrity_segments;
1839}
1840
Sagi Grimberg7f39add2015-09-11 09:03:04 -06001841static inline bool integrity_req_gap_back_merge(struct request *req,
1842 struct bio *next)
1843{
1844 struct bio_integrity_payload *bip = bio_integrity(req->bio);
1845 struct bio_integrity_payload *bip_next = bio_integrity(next);
1846
1847 return bvec_gap_to_prev(req->q, &bip->bip_vec[bip->bip_vcnt - 1],
1848 bip_next->bip_vec[0].bv_offset);
1849}
1850
1851static inline bool integrity_req_gap_front_merge(struct request *req,
1852 struct bio *bio)
1853{
1854 struct bio_integrity_payload *bip = bio_integrity(bio);
1855 struct bio_integrity_payload *bip_next = bio_integrity(req->bio);
1856
1857 return bvec_gap_to_prev(req->q, &bip->bip_vec[bip->bip_vcnt - 1],
1858 bip_next->bip_vec[0].bv_offset);
1859}
1860
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001861#else /* CONFIG_BLK_DEV_INTEGRITY */
1862
Stephen Rothwellfd832402012-01-12 09:17:30 +01001863struct bio;
1864struct block_device;
1865struct gendisk;
1866struct blk_integrity;
1867
1868static inline int blk_integrity_rq(struct request *rq)
1869{
1870 return 0;
1871}
1872static inline int blk_rq_count_integrity_sg(struct request_queue *q,
1873 struct bio *b)
1874{
1875 return 0;
1876}
1877static inline int blk_rq_map_integrity_sg(struct request_queue *q,
1878 struct bio *b,
1879 struct scatterlist *s)
1880{
1881 return 0;
1882}
1883static inline struct blk_integrity *bdev_get_integrity(struct block_device *b)
1884{
Michele Curti61a04e52014-10-09 15:30:17 -07001885 return NULL;
Stephen Rothwellfd832402012-01-12 09:17:30 +01001886}
1887static inline struct blk_integrity *blk_get_integrity(struct gendisk *disk)
1888{
1889 return NULL;
1890}
1891static inline int blk_integrity_compare(struct gendisk *a, struct gendisk *b)
1892{
1893 return 0;
1894}
Martin K. Petersen25520d52015-10-21 13:19:49 -04001895static inline void blk_integrity_register(struct gendisk *d,
Stephen Rothwellfd832402012-01-12 09:17:30 +01001896 struct blk_integrity *b)
1897{
Stephen Rothwellfd832402012-01-12 09:17:30 +01001898}
1899static inline void blk_integrity_unregister(struct gendisk *d)
1900{
1901}
1902static inline void blk_queue_max_integrity_segments(struct request_queue *q,
1903 unsigned int segs)
1904{
1905}
1906static inline unsigned short queue_max_integrity_segments(struct request_queue *q)
1907{
1908 return 0;
1909}
Martin K. Petersen4eaf99b2014-09-26 19:20:06 -04001910static inline bool blk_integrity_merge_rq(struct request_queue *rq,
1911 struct request *r1,
1912 struct request *r2)
Stephen Rothwellfd832402012-01-12 09:17:30 +01001913{
Martin K. Petersencb1a5ab2014-10-28 20:27:43 -06001914 return true;
Stephen Rothwellfd832402012-01-12 09:17:30 +01001915}
Martin K. Petersen4eaf99b2014-09-26 19:20:06 -04001916static inline bool blk_integrity_merge_bio(struct request_queue *rq,
1917 struct request *r,
1918 struct bio *b)
Stephen Rothwellfd832402012-01-12 09:17:30 +01001919{
Martin K. Petersencb1a5ab2014-10-28 20:27:43 -06001920 return true;
Stephen Rothwellfd832402012-01-12 09:17:30 +01001921}
Martin K. Petersen25520d52015-10-21 13:19:49 -04001922
Sagi Grimberg7f39add2015-09-11 09:03:04 -06001923static inline bool integrity_req_gap_back_merge(struct request *req,
1924 struct bio *next)
1925{
1926 return false;
1927}
1928static inline bool integrity_req_gap_front_merge(struct request *req,
1929 struct bio *bio)
1930{
1931 return false;
1932}
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +02001933
1934#endif /* CONFIG_BLK_DEV_INTEGRITY */
1935
Al Viro08f85852007-10-08 13:26:20 -04001936struct block_device_operations {
Al Virod4430d62008-03-02 09:09:22 -05001937 int (*open) (struct block_device *, fmode_t);
Al Virodb2a1442013-05-05 21:52:57 -04001938 void (*release) (struct gendisk *, fmode_t);
Jens Axboec11f0c02016-08-05 08:11:04 -06001939 int (*rw_page)(struct block_device *, sector_t, struct page *, bool);
Al Virod4430d62008-03-02 09:09:22 -05001940 int (*ioctl) (struct block_device *, fmode_t, unsigned, unsigned long);
1941 int (*compat_ioctl) (struct block_device *, fmode_t, unsigned, unsigned long);
Tejun Heo77ea8872010-12-08 20:57:37 +01001942 unsigned int (*check_events) (struct gendisk *disk,
1943 unsigned int clearing);
1944 /* ->media_changed() is DEPRECATED, use ->check_events() instead */
Al Viro08f85852007-10-08 13:26:20 -04001945 int (*media_changed) (struct gendisk *);
Tejun Heoc3e33e02010-05-15 20:09:29 +02001946 void (*unlock_native_capacity) (struct gendisk *);
Al Viro08f85852007-10-08 13:26:20 -04001947 int (*revalidate_disk) (struct gendisk *);
1948 int (*getgeo)(struct block_device *, struct hd_geometry *);
Nitin Guptab3a27d02010-05-17 11:02:43 +05301949 /* this callback is with swap_lock and sometimes page table lock held */
1950 void (*swap_slot_free_notify) (struct block_device *, unsigned long);
Al Viro08f85852007-10-08 13:26:20 -04001951 struct module *owner;
Christoph Hellwigbbd3e062015-10-15 14:10:48 +02001952 const struct pr_ops *pr_ops;
Al Viro08f85852007-10-08 13:26:20 -04001953};
1954
Al Viro633a08b2007-08-29 20:34:12 -04001955extern int __blkdev_driver_ioctl(struct block_device *, fmode_t, unsigned int,
1956 unsigned long);
Matthew Wilcox47a191f2014-06-04 16:07:46 -07001957extern int bdev_read_page(struct block_device *, sector_t, struct page *);
1958extern int bdev_write_page(struct block_device *, sector_t, struct page *,
1959 struct writeback_control *);
David Howells93614012006-09-30 20:45:40 +02001960#else /* CONFIG_BLOCK */
Fabian Frederickac13a822014-06-04 16:06:27 -07001961
1962struct block_device;
1963
David Howells93614012006-09-30 20:45:40 +02001964/*
1965 * stubs for when the block layer is configured out
1966 */
1967#define buffer_heads_over_limit 0
1968
David Howells93614012006-09-30 20:45:40 +02001969static inline long nr_blockdev_pages(void)
1970{
1971 return 0;
1972}
1973
Jens Axboe1f940bd2011-03-11 20:17:08 +01001974struct blk_plug {
1975};
1976
1977static inline void blk_start_plug(struct blk_plug *plug)
Jens Axboe73c10102011-03-08 13:19:51 +01001978{
1979}
1980
Jens Axboe1f940bd2011-03-11 20:17:08 +01001981static inline void blk_finish_plug(struct blk_plug *plug)
Jens Axboe73c10102011-03-08 13:19:51 +01001982{
1983}
1984
Jens Axboe1f940bd2011-03-11 20:17:08 +01001985static inline void blk_flush_plug(struct task_struct *task)
Jens Axboe73c10102011-03-08 13:19:51 +01001986{
1987}
1988
Jens Axboea237c1c2011-04-16 13:27:55 +02001989static inline void blk_schedule_flush_plug(struct task_struct *task)
1990{
1991}
1992
1993
Jens Axboe73c10102011-03-08 13:19:51 +01001994static inline bool blk_needs_flush_plug(struct task_struct *tsk)
1995{
1996 return false;
1997}
1998
Fabian Frederickac13a822014-06-04 16:06:27 -07001999static inline int blkdev_issue_flush(struct block_device *bdev, gfp_t gfp_mask,
2000 sector_t *error_sector)
2001{
2002 return 0;
2003}
2004
David Howells93614012006-09-30 20:45:40 +02002005#endif /* CONFIG_BLOCK */
2006
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007#endif