blob: bfc4d526f6261cab761f50aa4aeb2886f0337fde [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Jens Axboe8324aa92008-01-29 14:51:59 +01002#ifndef BLK_INTERNAL_H
3#define BLK_INTERNAL_H
4
Tejun Heoa73f7302011-12-14 00:33:37 +01005#include <linux/idr.h>
Ming Leif70ced02014-09-25 23:23:47 +08006#include <linux/blk-mq.h>
Christoph Hellwigc6a564ff2020-03-25 16:48:42 +01007#include <linux/part_stat.h>
Satya Tangiralaa892c8d2020-05-14 00:37:18 +00008#include <linux/blk-crypto.h>
Christoph Hellwigc39ae602018-09-25 13:30:08 -07009#include <xen/xen.h>
Satya Tangiralaa892c8d2020-05-14 00:37:18 +000010#include "blk-crypto-internal.h"
Ming Leif70ced02014-09-25 23:23:47 +080011#include "blk-mq.h"
Ming Leic3e22192019-06-04 21:08:02 +080012#include "blk-mq-sched.h"
Tejun Heoa73f7302011-12-14 00:33:37 +010013
Jens Axboe0d2602c2014-05-13 15:10:52 -060014/* Max future timer expiry for timeouts */
15#define BLK_MAX_TIMEOUT (5 * HZ)
16
Omar Sandoval18fbda92017-01-31 14:53:20 -080017extern struct dentry *blk_debugfs_root;
Omar Sandoval18fbda92017-01-31 14:53:20 -080018
Ming Lei7c94e1c2014-09-25 23:23:43 +080019struct blk_flush_queue {
Ming Lei7c94e1c2014-09-25 23:23:43 +080020 unsigned int flush_pending_idx:1;
21 unsigned int flush_running_idx:1;
Yufen Yu8d699662019-09-27 16:19:55 +080022 blk_status_t rq_status;
Ming Lei7c94e1c2014-09-25 23:23:43 +080023 unsigned long flush_pending_since;
24 struct list_head flush_queue[2];
25 struct list_head flush_data_in_flight;
26 struct request *flush_rq;
Ming Lei0048b482015-08-09 03:41:51 -040027
Ming Lei7c94e1c2014-09-25 23:23:43 +080028 spinlock_t mq_flush_lock;
29};
30
Jens Axboe8324aa92008-01-29 14:51:59 +010031extern struct kmem_cache *blk_requestq_cachep;
32extern struct kobj_type blk_queue_ktype;
Tejun Heoa73f7302011-12-14 00:33:37 +010033extern struct ida blk_queue_ida;
Jens Axboe8324aa92008-01-29 14:51:59 +010034
Jens Axboef9afca42018-10-29 13:11:38 -060035static inline struct blk_flush_queue *
36blk_get_flush_queue(struct request_queue *q, struct blk_mq_ctx *ctx)
Ming Lei7c94e1c2014-09-25 23:23:43 +080037{
Jianchao Wang8ccdf4a2019-01-24 18:25:32 +080038 return blk_mq_map_queue(q, REQ_OP_FLUSH, ctx)->fq;
Ming Lei7c94e1c2014-09-25 23:23:43 +080039}
40
Tejun Heo09ac46c2011-12-14 00:33:38 +010041static inline void __blk_get_queue(struct request_queue *q)
42{
43 kobject_get(&q->kobj);
44}
45
Yufen Yu8d699662019-09-27 16:19:55 +080046static inline bool
47is_flush_rq(struct request *req, struct blk_mq_hw_ctx *hctx)
48{
49 return hctx->fq->flush_rq == req;
50}
51
Guoqing Jiang754a1572020-03-09 22:41:37 +010052struct blk_flush_queue *blk_alloc_flush_queue(int node, int cmd_size,
53 gfp_t flags);
Ming Leif70ced02014-09-25 23:23:47 +080054void blk_free_flush_queue(struct blk_flush_queue *q);
Ming Leif3552652014-09-25 23:23:40 +080055
Dan Williams3ef28e82015-10-21 13:20:12 -040056void blk_freeze_queue(struct request_queue *q);
57
Christoph Hellwigdc0b8a572021-02-02 18:19:19 +010058#define BIO_INLINE_VECS 4
Christoph Hellwig7a800a22021-02-02 18:19:29 +010059struct bio_vec *bvec_alloc(mempool_t *pool, unsigned short *nr_vecs,
60 gfp_t gfp_mask);
61void bvec_free(mempool_t *pool, struct bio_vec *bv, unsigned short nr_vecs);
Ming Leieec716a2021-01-11 11:05:56 +080062
Christoph Hellwig3dccdae2018-09-24 09:43:52 +020063static inline bool biovec_phys_mergeable(struct request_queue *q,
64 struct bio_vec *vec1, struct bio_vec *vec2)
Christoph Hellwig6a9f5f22018-09-24 09:43:50 +020065{
Christoph Hellwig3dccdae2018-09-24 09:43:52 +020066 unsigned long mask = queue_segment_boundary(q);
Christoph Hellwig6e768462018-09-24 09:43:53 +020067 phys_addr_t addr1 = page_to_phys(vec1->bv_page) + vec1->bv_offset;
68 phys_addr_t addr2 = page_to_phys(vec2->bv_page) + vec2->bv_offset;
Christoph Hellwig3dccdae2018-09-24 09:43:52 +020069
70 if (addr1 + vec1->bv_len != addr2)
Christoph Hellwig6a9f5f22018-09-24 09:43:50 +020071 return false;
Ming Lei0383ad42019-03-29 15:07:54 +080072 if (xen_domain() && !xen_biovec_phys_mergeable(vec1, vec2->bv_page))
Christoph Hellwig6a9f5f22018-09-24 09:43:50 +020073 return false;
Christoph Hellwig3dccdae2018-09-24 09:43:52 +020074 if ((addr1 | mask) != ((addr2 + vec2->bv_len - 1) | mask))
75 return false;
Christoph Hellwig6a9f5f22018-09-24 09:43:50 +020076 return true;
77}
78
Christoph Hellwig27ca1d42018-09-24 09:43:49 +020079static inline bool __bvec_gap_to_prev(struct request_queue *q,
80 struct bio_vec *bprv, unsigned int offset)
81{
Johannes Thumshirndf376b22018-11-07 14:58:14 +010082 return (offset & queue_virt_boundary(q)) ||
Christoph Hellwig27ca1d42018-09-24 09:43:49 +020083 ((bprv->bv_offset + bprv->bv_len) & queue_virt_boundary(q));
84}
85
86/*
87 * Check if adding a bio_vec after bprv with offset would create a gap in
88 * the SG list. Most drivers don't care about this, but some do.
89 */
90static inline bool bvec_gap_to_prev(struct request_queue *q,
91 struct bio_vec *bprv, unsigned int offset)
92{
93 if (!queue_virt_boundary(q))
94 return false;
95 return __bvec_gap_to_prev(q, bprv, offset);
96}
97
Dan Williams5a48fc12015-10-21 13:20:23 -040098#ifdef CONFIG_BLK_DEV_INTEGRITY
99void blk_flush_integrity(void);
Christoph Hellwig7c20f112017-07-03 16:58:43 -0600100bool __bio_integrity_endio(struct bio *);
Justin Teeece841a2019-12-05 10:09:01 +0800101void bio_integrity_free(struct bio *bio);
Christoph Hellwig7c20f112017-07-03 16:58:43 -0600102static inline bool bio_integrity_endio(struct bio *bio)
103{
104 if (bio_integrity(bio))
105 return __bio_integrity_endio(bio);
106 return true;
107}
Christoph Hellwig43b729b2018-09-24 09:43:47 +0200108
Christoph Hellwig92cf2fd2020-10-06 09:07:17 +0200109bool blk_integrity_merge_rq(struct request_queue *, struct request *,
110 struct request *);
Christoph Hellwigd59da412020-10-06 09:07:18 +0200111bool blk_integrity_merge_bio(struct request_queue *, struct request *,
112 struct bio *);
Christoph Hellwig92cf2fd2020-10-06 09:07:17 +0200113
Christoph Hellwig43b729b2018-09-24 09:43:47 +0200114static inline bool integrity_req_gap_back_merge(struct request *req,
115 struct bio *next)
116{
117 struct bio_integrity_payload *bip = bio_integrity(req->bio);
118 struct bio_integrity_payload *bip_next = bio_integrity(next);
119
120 return bvec_gap_to_prev(req->q, &bip->bip_vec[bip->bip_vcnt - 1],
121 bip_next->bip_vec[0].bv_offset);
122}
123
124static inline bool integrity_req_gap_front_merge(struct request *req,
125 struct bio *bio)
126{
127 struct bio_integrity_payload *bip = bio_integrity(bio);
128 struct bio_integrity_payload *bip_next = bio_integrity(req->bio);
129
130 return bvec_gap_to_prev(req->q, &bip->bip_vec[bip->bip_vcnt - 1],
131 bip_next->bip_vec[0].bv_offset);
132}
Christoph Hellwig581e2602020-03-25 16:48:41 +0100133
134void blk_integrity_add(struct gendisk *);
135void blk_integrity_del(struct gendisk *);
Christoph Hellwig43b729b2018-09-24 09:43:47 +0200136#else /* CONFIG_BLK_DEV_INTEGRITY */
Christoph Hellwig92cf2fd2020-10-06 09:07:17 +0200137static inline bool blk_integrity_merge_rq(struct request_queue *rq,
138 struct request *r1, struct request *r2)
139{
140 return true;
141}
Christoph Hellwigd59da412020-10-06 09:07:18 +0200142static inline bool blk_integrity_merge_bio(struct request_queue *rq,
143 struct request *r, struct bio *b)
144{
145 return true;
146}
Christoph Hellwig43b729b2018-09-24 09:43:47 +0200147static inline bool integrity_req_gap_back_merge(struct request *req,
148 struct bio *next)
149{
150 return false;
151}
152static inline bool integrity_req_gap_front_merge(struct request *req,
153 struct bio *bio)
154{
155 return false;
156}
157
Dan Williams5a48fc12015-10-21 13:20:23 -0400158static inline void blk_flush_integrity(void)
159{
160}
Christoph Hellwig7c20f112017-07-03 16:58:43 -0600161static inline bool bio_integrity_endio(struct bio *bio)
162{
163 return true;
164}
Justin Teeece841a2019-12-05 10:09:01 +0800165static inline void bio_integrity_free(struct bio *bio)
166{
167}
Christoph Hellwig581e2602020-03-25 16:48:41 +0100168static inline void blk_integrity_add(struct gendisk *disk)
169{
170}
171static inline void blk_integrity_del(struct gendisk *disk)
172{
173}
Christoph Hellwig43b729b2018-09-24 09:43:47 +0200174#endif /* CONFIG_BLK_DEV_INTEGRITY */
Jens Axboe8324aa92008-01-29 14:51:59 +0100175
Jens Axboe0d2602c2014-05-13 15:10:52 -0600176unsigned long blk_rq_timeout(unsigned long timeout);
Jens Axboe87ee7b12014-04-24 08:51:47 -0600177void blk_add_timer(struct request *req);
Jens Axboe320ae512013-10-24 09:20:05 +0100178
Jens Axboe320ae512013-10-24 09:20:05 +0100179bool blk_attempt_plug_merge(struct request_queue *q, struct bio *bio,
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200180 unsigned int nr_segs, struct request **same_queue_rq);
Baolin Wangbdc6a2872020-08-28 10:52:55 +0800181bool blk_bio_list_merge(struct request_queue *q, struct list_head *list,
182 struct bio *bio, unsigned int nr_segs);
Jens Axboe320ae512013-10-24 09:20:05 +0100183
Konstantin Khlebnikovb5af37a2020-05-27 07:24:16 +0200184void blk_account_io_start(struct request *req);
Omar Sandoval522a7772018-05-09 02:08:53 -0700185void blk_account_io_done(struct request *req, u64 now);
Jens Axboe320ae512013-10-24 09:20:05 +0100186
Jens Axboe242f9dc2008-09-14 05:55:09 -0700187/*
Tejun Heo158dbda2009-04-23 11:05:18 +0900188 * Internal elevator interface
189 */
Christoph Hellwige8064022016-10-20 15:12:13 +0200190#define ELV_ON_HASH(rq) ((rq)->rq_flags & RQF_HASHED)
Tejun Heo158dbda2009-04-23 11:05:18 +0900191
Tejun Heoae1b1532011-01-25 12:43:54 +0100192void blk_insert_flush(struct request *rq);
Tejun Heodd831002010-09-03 11:56:16 +0200193
Damien Le Moal954b4a52019-09-05 18:51:30 +0900194void elevator_init_mq(struct request_queue *q);
Jianchao Wangd48ece22018-08-21 15:15:03 +0800195int elevator_switch_mq(struct request_queue *q,
196 struct elevator_type *new_e);
Ming Leic3e22192019-06-04 21:08:02 +0800197void __elevator_exit(struct request_queue *, struct elevator_queue *);
Ming Leicecf5d82019-08-27 19:01:48 +0800198int elv_register_queue(struct request_queue *q, bool uevent);
Bart Van Assche83d016a2018-01-17 11:48:08 -0800199void elv_unregister_queue(struct request_queue *q);
200
Ming Leic3e22192019-06-04 21:08:02 +0800201static inline void elevator_exit(struct request_queue *q,
202 struct elevator_queue *e)
203{
Ming Lei284b94b2019-09-26 06:23:54 +0800204 lockdep_assert_held(&q->sysfs_lock);
205
Ming Leic3e22192019-06-04 21:08:02 +0800206 blk_mq_sched_free_requests(q);
207 __elevator_exit(q, e);
208}
209
Christoph Hellwig3ad5cee2020-03-24 08:25:13 +0100210ssize_t part_size_show(struct device *dev, struct device_attribute *attr,
211 char *buf);
212ssize_t part_stat_show(struct device *dev, struct device_attribute *attr,
213 char *buf);
214ssize_t part_inflight_show(struct device *dev, struct device_attribute *attr,
215 char *buf);
216ssize_t part_fail_show(struct device *dev, struct device_attribute *attr,
217 char *buf);
218ssize_t part_fail_store(struct device *dev, struct device_attribute *attr,
219 const char *buf, size_t count);
Jens Axboe581d4e22008-09-14 05:56:33 -0700220ssize_t part_timeout_show(struct device *, struct device_attribute *, char *);
221ssize_t part_timeout_store(struct device *, struct device_attribute *,
222 const char *, size_t);
Jens Axboe581d4e22008-09-14 05:56:33 -0700223
Christoph Hellwigf695ca32020-07-01 10:59:39 +0200224void __blk_queue_split(struct bio **bio, unsigned int *nr_segs);
Christoph Hellwig14ccb662019-06-06 12:29:01 +0200225int ll_back_merge_fn(struct request *req, struct bio *bio,
226 unsigned int nr_segs);
Jens Axboe5e84ea32011-03-21 10:14:27 +0100227int blk_attempt_req_merge(struct request_queue *q, struct request *rq,
228 struct request *next);
Christoph Hellwige9cd19c2019-06-06 12:29:02 +0200229unsigned int blk_recalc_rq_segments(struct request *rq);
Tejun Heo80a761f2009-07-03 17:48:17 +0900230void blk_rq_set_mixed_merge(struct request *rq);
Tejun Heo050c8ea2012-02-08 09:19:38 +0100231bool blk_rq_merge_ok(struct request *rq, struct bio *bio);
Christoph Hellwig34fe7c02017-02-08 14:46:48 +0100232enum elv_merge blk_try_merge(struct request *rq, struct bio *bio);
Jens Axboed6d48192008-01-29 14:04:06 +0100233
Adrian Bunkff889722008-03-04 11:23:45 +0100234int blk_dev_init(void);
235
Jens Axboec2553b52009-04-24 08:10:11 +0200236/*
237 * Contribute to IO statistics IFF:
238 *
239 * a) it's attached to a gendisk, and
Logan Gunthorpe48d9b0d2019-10-10 17:36:26 -0600240 * b) the queue had IO stats enabled when this request was started
Jens Axboec2553b52009-04-24 08:10:11 +0200241 */
Chengguang Xu599d0672018-08-16 22:51:40 +0800242static inline bool blk_do_io_stat(struct request *rq)
Jens Axboefb8ec182009-02-02 08:42:32 +0100243{
Logan Gunthorpe48d9b0d2019-10-10 17:36:26 -0600244 return rq->rq_disk && (rq->rq_flags & RQF_IO_STAT);
Jens Axboefb8ec182009-02-02 08:42:32 +0100245}
246
Christoph Hellwig6cf76772017-02-08 14:46:47 +0100247static inline void req_set_nomerge(struct request_queue *q, struct request *req)
248{
249 req->cmd_flags |= REQ_NOMERGE;
250 if (req == q->last_merge)
251 q->last_merge = NULL;
252}
253
Tejun Heof2dbd762011-12-14 00:33:40 +0100254/*
Ming Lei1adfc5e2018-10-29 20:57:17 +0800255 * The max size one bio can handle is UINT_MAX becasue bvec_iter.bi_size
256 * is defined as 'unsigned int', meantime it has to aligned to with logical
257 * block size which is the minimum accepted unit by hardware.
258 */
259static inline unsigned int bio_allowed_max_sectors(struct request_queue *q)
260{
261 return round_down(UINT_MAX, queue_logical_block_size(q)) >> 9;
262}
263
264/*
Coly Li9b15d102020-07-17 10:42:30 +0800265 * The max bio size which is aligned to q->limits.discard_granularity. This
266 * is a hint to split large discard bio in generic block layer, then if device
267 * driver needs to split the discard bio into smaller ones, their bi_size can
268 * be very probably and easily aligned to discard_granularity of the device's
269 * queue.
270 */
271static inline unsigned int bio_aligned_discard_max_sectors(
272 struct request_queue *q)
273{
274 return round_down(UINT_MAX, q->limits.discard_granularity) >>
275 SECTOR_SHIFT;
276}
277
278/*
Tejun Heof2dbd762011-12-14 00:33:40 +0100279 * Internal io_context interface
280 */
281void get_io_context(struct io_context *ioc);
Tejun Heo47fdd4c2011-12-14 00:33:42 +0100282struct io_cq *ioc_lookup_icq(struct io_context *ioc, struct request_queue *q);
Tejun Heo24acfc32012-03-05 13:15:24 -0800283struct io_cq *ioc_create_icq(struct io_context *ioc, struct request_queue *q,
284 gfp_t gfp_mask);
Tejun Heo7e5a8792011-12-14 00:33:42 +0100285void ioc_clear_queue(struct request_queue *q);
Tejun Heof2dbd762011-12-14 00:33:40 +0100286
Tejun Heo24acfc32012-03-05 13:15:24 -0800287int create_task_io_context(struct task_struct *task, gfp_t gfp_mask, int node);
Tejun Heof2dbd762011-12-14 00:33:40 +0100288
Tejun Heof2dbd762011-12-14 00:33:40 +0100289/*
290 * Internal throttling interface
291 */
Tejun Heobc9fcbf2011-10-19 14:31:18 +0200292#ifdef CONFIG_BLK_DEV_THROTTLING
Tejun Heobc9fcbf2011-10-19 14:31:18 +0200293extern int blk_throtl_init(struct request_queue *q);
294extern void blk_throtl_exit(struct request_queue *q);
Shaohua Lid61fcfa2017-03-27 10:51:38 -0700295extern void blk_throtl_register_queue(struct request_queue *q);
Christoph Hellwigdb18a532020-06-27 09:31:58 +0200296bool blk_throtl_bio(struct bio *bio);
Tejun Heobc9fcbf2011-10-19 14:31:18 +0200297#else /* CONFIG_BLK_DEV_THROTTLING */
Tejun Heobc9fcbf2011-10-19 14:31:18 +0200298static inline int blk_throtl_init(struct request_queue *q) { return 0; }
299static inline void blk_throtl_exit(struct request_queue *q) { }
Shaohua Lid61fcfa2017-03-27 10:51:38 -0700300static inline void blk_throtl_register_queue(struct request_queue *q) { }
Christoph Hellwigdb18a532020-06-27 09:31:58 +0200301static inline bool blk_throtl_bio(struct bio *bio) { return false; }
Tejun Heobc9fcbf2011-10-19 14:31:18 +0200302#endif /* CONFIG_BLK_DEV_THROTTLING */
Shaohua Li297e3d82017-03-27 10:51:37 -0700303#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
304extern ssize_t blk_throtl_sample_time_show(struct request_queue *q, char *page);
305extern ssize_t blk_throtl_sample_time_store(struct request_queue *q,
306 const char *page, size_t count);
Shaohua Li9e234ee2017-03-27 10:51:41 -0700307extern void blk_throtl_bio_endio(struct bio *bio);
Shaohua Lib9147dd2017-03-27 15:19:42 -0700308extern void blk_throtl_stat_add(struct request *rq, u64 time);
Shaohua Li9e234ee2017-03-27 10:51:41 -0700309#else
310static inline void blk_throtl_bio_endio(struct bio *bio) { }
Shaohua Lib9147dd2017-03-27 15:19:42 -0700311static inline void blk_throtl_stat_add(struct request *rq, u64 time) { }
Shaohua Li297e3d82017-03-27 10:51:37 -0700312#endif
Tejun Heobc9fcbf2011-10-19 14:31:18 +0200313
Christoph Hellwig3bce0162017-06-19 09:26:21 +0200314#ifdef CONFIG_BOUNCE
315extern int init_emergency_isa_pool(void);
316extern void blk_queue_bounce(struct request_queue *q, struct bio **bio);
317#else
318static inline int init_emergency_isa_pool(void)
319{
320 return 0;
321}
322static inline void blk_queue_bounce(struct request_queue *q, struct bio **bio)
323{
324}
325#endif /* CONFIG_BOUNCE */
326
Josef Bacikd7067512018-07-03 11:15:01 -0400327#ifdef CONFIG_BLK_CGROUP_IOLATENCY
328extern int blk_iolatency_init(struct request_queue *q);
329#else
330static inline int blk_iolatency_init(struct request_queue *q) { return 0; }
331#endif
332
Damien Le Moala2d6b3a2018-10-12 19:08:47 +0900333struct bio *blk_next_bio(struct bio *bio, unsigned int nr_pages, gfp_t gfp);
334
Damien Le Moalbf505452018-10-12 19:08:50 +0900335#ifdef CONFIG_BLK_DEV_ZONED
336void blk_queue_free_zone_bitmaps(struct request_queue *q);
337#else
338static inline void blk_queue_free_zone_bitmaps(struct request_queue *q) {}
339#endif
340
Christoph Hellwig9fc995a2020-11-24 09:17:46 +0100341int blk_alloc_devt(struct block_device *part, dev_t *devt);
Christoph Hellwig581e2602020-03-25 16:48:41 +0100342void blk_free_devt(dev_t devt);
Christoph Hellwig581e2602020-03-25 16:48:41 +0100343char *disk_name(struct gendisk *hd, int partno, char *buf);
344#define ADDPART_FLAG_NONE 0
345#define ADDPART_FLAG_RAID 1
346#define ADDPART_FLAG_WHOLEDISK 2
Christoph Hellwig0d021292020-11-27 16:43:51 +0100347void delete_partition(struct block_device *part);
Christoph Hellwigfa9156a2020-04-14 09:28:53 +0200348int bdev_add_partition(struct block_device *bdev, int partno,
349 sector_t start, sector_t length);
350int bdev_del_partition(struct block_device *bdev, int partno);
351int bdev_resize_partition(struct block_device *bdev, int partno,
352 sector_t start, sector_t length);
Christoph Hellwig581e2602020-03-25 16:48:41 +0100353
Christoph Hellwige4581102020-05-12 17:55:46 +0900354int bio_add_hw_page(struct request_queue *q, struct bio *bio,
Christoph Hellwig130879f2020-03-27 18:48:37 +0100355 struct page *page, unsigned int len, unsigned int offset,
Christoph Hellwige4581102020-05-12 17:55:46 +0900356 unsigned int max_sectors, bool *same_page);
Christoph Hellwig130879f2020-03-27 18:48:37 +0100357
Tejun Heobc9fcbf2011-10-19 14:31:18 +0200358#endif /* BLK_INTERNAL_H */