xref: /linux-6.15/include/linux/blkdev.h (revision e03463d2)
1b2441318SGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 */
2322cbb50SChristoph Hellwig /*
3322cbb50SChristoph Hellwig  * Portions Copyright (C) 1992 Drew Eckhardt
4322cbb50SChristoph Hellwig  */
51da177e4SLinus Torvalds #ifndef _LINUX_BLKDEV_H
61da177e4SLinus Torvalds #define _LINUX_BLKDEV_H
71da177e4SLinus Torvalds 
8322cbb50SChristoph Hellwig #include <linux/types.h>
9322cbb50SChristoph Hellwig #include <linux/blk_types.h>
10322cbb50SChristoph Hellwig #include <linux/device.h>
111da177e4SLinus Torvalds #include <linux/list.h>
12320ae51fSJens Axboe #include <linux/llist.h>
13b296a6d5SAndy Shevchenko #include <linux/minmax.h>
141da177e4SLinus Torvalds #include <linux/timer.h>
151da177e4SLinus Torvalds #include <linux/workqueue.h>
161da177e4SLinus Torvalds #include <linux/wait.h>
171da177e4SLinus Torvalds #include <linux/bio.h>
183e6053d7SHugh Dickins #include <linux/gfp.h>
19322cbb50SChristoph Hellwig #include <linux/kdev_t.h>
20548bc8e1STejun Heo #include <linux/rcupdate.h>
21add703fdSTejun Heo #include <linux/percpu-refcount.h>
226a0cb1bcSHannes Reinecke #include <linux/blkzoned.h>
23322cbb50SChristoph Hellwig #include <linux/sched.h>
24d97e594cSJohn Garry #include <linux/sbitmap.h>
25322cbb50SChristoph Hellwig #include <linux/uuid.h>
26322cbb50SChristoph Hellwig #include <linux/xarray.h>
27f3a60882SChristian Brauner #include <linux/file.h>
28f1be1788SMing Lei #include <linux/lockdep.h>
291da177e4SLinus Torvalds 
30de477254SPaul Gortmaker struct module;
311da177e4SLinus Torvalds struct request_queue;
321da177e4SLinus Torvalds struct elevator_queue;
332056a782SJens Axboe struct blk_trace;
343d6392cfSJens Axboe struct request;
353d6392cfSJens Axboe struct sg_io_hdr;
363c798398STejun Heo struct blkcg_gq;
377c94e1c1SMing Lei struct blk_flush_queue;
383e08773cSChristoph Hellwig struct kiocb;
39bbd3e064SChristoph Hellwig struct pr_ops;
40a7905043SJosef Bacik struct rq_qos;
4134dbad5dSOmar Sandoval struct blk_queue_stats;
4234dbad5dSOmar Sandoval struct blk_stat_callback;
43cb77cb5aSEric Biggers struct blk_crypto_profile;
441da177e4SLinus Torvalds 
45322cbb50SChristoph Hellwig extern const struct device_type disk_type;
46cdb37f73SThomas Weißschuh extern const struct device_type part_type;
47f8c7511dSRicardo B. Marliere extern const struct class block_class;
48322cbb50SChristoph Hellwig 
498bd435b3STejun Heo /*
508bd435b3STejun Heo  * Maximum number of blkcg policies allowed to be registered concurrently.
518bd435b3STejun Heo  * Defined here to simplify include dependency.
528bd435b3STejun Heo  */
53ec645dc9SOleksandr Natalenko #define BLKCG_MAX_POLS		6
548bd435b3STejun Heo 
55322cbb50SChristoph Hellwig #define DISK_MAX_PARTS			256
56322cbb50SChristoph Hellwig #define DISK_NAME_LEN			32
57322cbb50SChristoph Hellwig 
58322cbb50SChristoph Hellwig #define PARTITION_META_INFO_VOLNAMELTH	64
59322cbb50SChristoph Hellwig /*
60322cbb50SChristoph Hellwig  * Enough for the string representation of any kind of UUID plus NULL.
61322cbb50SChristoph Hellwig  * EFI UUID is 36 characters. MSDOS UUID is 11 characters.
62322cbb50SChristoph Hellwig  */
63322cbb50SChristoph Hellwig #define PARTITION_META_INFO_UUIDLTH	(UUID_STRING_LEN + 1)
64322cbb50SChristoph Hellwig 
65322cbb50SChristoph Hellwig struct partition_meta_info {
66322cbb50SChristoph Hellwig 	char uuid[PARTITION_META_INFO_UUIDLTH];
67322cbb50SChristoph Hellwig 	u8 volname[PARTITION_META_INFO_VOLNAMELTH];
68322cbb50SChristoph Hellwig };
69322cbb50SChristoph Hellwig 
70322cbb50SChristoph Hellwig /**
71322cbb50SChristoph Hellwig  * DOC: genhd capability flags
72322cbb50SChristoph Hellwig  *
73322cbb50SChristoph Hellwig  * ``GENHD_FL_REMOVABLE``: indicates that the block device gives access to
74322cbb50SChristoph Hellwig  * removable media.  When set, the device remains present even when media is not
75322cbb50SChristoph Hellwig  * inserted.  Shall not be set for devices which are removed entirely when the
76322cbb50SChristoph Hellwig  * media is removed.
77322cbb50SChristoph Hellwig  *
78322cbb50SChristoph Hellwig  * ``GENHD_FL_HIDDEN``: the block device is hidden; it doesn't produce events,
79322cbb50SChristoph Hellwig  * doesn't appear in sysfs, and can't be opened from userspace or using
80322cbb50SChristoph Hellwig  * blkdev_get*. Used for the underlying components of multipath devices.
81322cbb50SChristoph Hellwig  *
82322cbb50SChristoph Hellwig  * ``GENHD_FL_NO_PART``: partition support is disabled.  The kernel will not
83322cbb50SChristoph Hellwig  * scan for partitions from add_disk, and users can't add partitions manually.
84322cbb50SChristoph Hellwig  *
85322cbb50SChristoph Hellwig  */
86322cbb50SChristoph Hellwig enum {
87322cbb50SChristoph Hellwig 	GENHD_FL_REMOVABLE			= 1 << 0,
88322cbb50SChristoph Hellwig 	GENHD_FL_HIDDEN				= 1 << 1,
89322cbb50SChristoph Hellwig 	GENHD_FL_NO_PART			= 1 << 2,
90322cbb50SChristoph Hellwig };
91322cbb50SChristoph Hellwig 
92322cbb50SChristoph Hellwig enum {
93322cbb50SChristoph Hellwig 	DISK_EVENT_MEDIA_CHANGE			= 1 << 0, /* media changed */
94322cbb50SChristoph Hellwig 	DISK_EVENT_EJECT_REQUEST		= 1 << 1, /* eject requested */
95322cbb50SChristoph Hellwig };
96322cbb50SChristoph Hellwig 
97322cbb50SChristoph Hellwig enum {
98322cbb50SChristoph Hellwig 	/* Poll even if events_poll_msecs is unset */
99322cbb50SChristoph Hellwig 	DISK_EVENT_FLAG_POLL			= 1 << 0,
100322cbb50SChristoph Hellwig 	/* Forward events to udev */
101322cbb50SChristoph Hellwig 	DISK_EVENT_FLAG_UEVENT			= 1 << 1,
102322cbb50SChristoph Hellwig 	/* Block event polling when open for exclusive write */
103322cbb50SChristoph Hellwig 	DISK_EVENT_FLAG_BLOCK_ON_EXCL_WRITE	= 1 << 2,
104322cbb50SChristoph Hellwig };
105322cbb50SChristoph Hellwig 
106322cbb50SChristoph Hellwig struct disk_events;
107322cbb50SChristoph Hellwig struct badblocks;
108322cbb50SChristoph Hellwig 
109e9f5f44aSChristoph Hellwig enum blk_integrity_checksum {
110e9f5f44aSChristoph Hellwig 	BLK_INTEGRITY_CSUM_NONE		= 0,
111e9f5f44aSChristoph Hellwig 	BLK_INTEGRITY_CSUM_IP		= 1,
112e9f5f44aSChristoph Hellwig 	BLK_INTEGRITY_CSUM_CRC		= 2,
113e9f5f44aSChristoph Hellwig 	BLK_INTEGRITY_CSUM_CRC64	= 3,
114e9f5f44aSChristoph Hellwig } __packed ;
115e9f5f44aSChristoph Hellwig 
116322cbb50SChristoph Hellwig struct blk_integrity {
117322cbb50SChristoph Hellwig 	unsigned char				flags;
118e9f5f44aSChristoph Hellwig 	enum blk_integrity_checksum		csum_type;
119322cbb50SChristoph Hellwig 	unsigned char				tuple_size;
12060d21aacSKanchan Joshi 	unsigned char				pi_offset;
121322cbb50SChristoph Hellwig 	unsigned char				interval_exp;
122322cbb50SChristoph Hellwig 	unsigned char				tag_size;
123322cbb50SChristoph Hellwig };
124322cbb50SChristoph Hellwig 
12505bdb996SChristoph Hellwig typedef unsigned int __bitwise blk_mode_t;
12605bdb996SChristoph Hellwig 
12705bdb996SChristoph Hellwig /* open for reading */
12805bdb996SChristoph Hellwig #define BLK_OPEN_READ		((__force blk_mode_t)(1 << 0))
12905bdb996SChristoph Hellwig /* open for writing */
13005bdb996SChristoph Hellwig #define BLK_OPEN_WRITE		((__force blk_mode_t)(1 << 1))
13105bdb996SChristoph Hellwig /* open exclusively (vs other exclusive openers */
13205bdb996SChristoph Hellwig #define BLK_OPEN_EXCL		((__force blk_mode_t)(1 << 2))
13305bdb996SChristoph Hellwig /* opened with O_NDELAY */
13405bdb996SChristoph Hellwig #define BLK_OPEN_NDELAY		((__force blk_mode_t)(1 << 3))
13505bdb996SChristoph Hellwig /* open for "writes" only for ioctls (specialy hack for floppy.c) */
13605bdb996SChristoph Hellwig #define BLK_OPEN_WRITE_IOCTL	((__force blk_mode_t)(1 << 4))
137ed5cc702SJan Kara /* open is exclusive wrt all other BLK_OPEN_WRITE opens to the device */
138ed5cc702SJan Kara #define BLK_OPEN_RESTRICT_WRITES	((__force blk_mode_t)(1 << 5))
139752863bdSChristoph Hellwig /* return partition scanning errors */
140752863bdSChristoph Hellwig #define BLK_OPEN_STRICT_SCAN	((__force blk_mode_t)(1 << 6))
14105bdb996SChristoph Hellwig 
142322cbb50SChristoph Hellwig struct gendisk {
143322cbb50SChristoph Hellwig 	/*
144322cbb50SChristoph Hellwig 	 * major/first_minor/minors should not be set by any new driver, the
145322cbb50SChristoph Hellwig 	 * block core will take care of allocating them automatically.
146322cbb50SChristoph Hellwig 	 */
147322cbb50SChristoph Hellwig 	int major;
148322cbb50SChristoph Hellwig 	int first_minor;
149322cbb50SChristoph Hellwig 	int minors;
150322cbb50SChristoph Hellwig 
151322cbb50SChristoph Hellwig 	char disk_name[DISK_NAME_LEN];	/* name of major driver */
152322cbb50SChristoph Hellwig 
153322cbb50SChristoph Hellwig 	unsigned short events;		/* supported events */
154322cbb50SChristoph Hellwig 	unsigned short event_flags;	/* flags related to event processing */
155322cbb50SChristoph Hellwig 
156322cbb50SChristoph Hellwig 	struct xarray part_tbl;
157322cbb50SChristoph Hellwig 	struct block_device *part0;
158322cbb50SChristoph Hellwig 
159322cbb50SChristoph Hellwig 	const struct block_device_operations *fops;
160322cbb50SChristoph Hellwig 	struct request_queue *queue;
161322cbb50SChristoph Hellwig 	void *private_data;
162322cbb50SChristoph Hellwig 
16346754bd0SChristoph Hellwig 	struct bio_set bio_split;
16446754bd0SChristoph Hellwig 
165322cbb50SChristoph Hellwig 	int flags;
166322cbb50SChristoph Hellwig 	unsigned long state;
167322cbb50SChristoph Hellwig #define GD_NEED_PART_SCAN		0
168322cbb50SChristoph Hellwig #define GD_READ_ONLY			1
169322cbb50SChristoph Hellwig #define GD_DEAD				2
170322cbb50SChristoph Hellwig #define GD_NATIVE_CAPACITY		3
17176792055SChristoph Hellwig #define GD_ADDED			4
172b9684a71SChristoph Hellwig #define GD_SUPPRESS_PART_SCAN		5
1736f8191fdSChristoph Hellwig #define GD_OWNS_QUEUE			6
174322cbb50SChristoph Hellwig 
175322cbb50SChristoph Hellwig 	struct mutex open_mutex;	/* open/close mutex */
176322cbb50SChristoph Hellwig 	unsigned open_partitions;	/* number of open partitions */
177322cbb50SChristoph Hellwig 
178322cbb50SChristoph Hellwig 	struct backing_dev_info	*bdi;
1792bd85221SChristoph Hellwig 	struct kobject queue_kobj;	/* the queue/ directory */
180322cbb50SChristoph Hellwig 	struct kobject *slave_dir;
181322cbb50SChristoph Hellwig #ifdef CONFIG_BLOCK_HOLDER_DEPRECATED
182322cbb50SChristoph Hellwig 	struct list_head slave_bdevs;
183322cbb50SChristoph Hellwig #endif
184322cbb50SChristoph Hellwig 	struct timer_rand_state *random;
185322cbb50SChristoph Hellwig 	atomic_t sync_io;		/* RAID */
186322cbb50SChristoph Hellwig 	struct disk_events *ev;
187d86e716aSChristoph Hellwig 
188d86e716aSChristoph Hellwig #ifdef CONFIG_BLK_DEV_ZONED
189d86e716aSChristoph Hellwig 	/*
19002ccd7c3SDamien Le Moal 	 * Zoned block device information. Reads of this information must be
19102ccd7c3SDamien Le Moal 	 * protected with blk_queue_enter() / blk_queue_exit(). Modifying this
19202ccd7c3SDamien Le Moal 	 * information is only allowed while no requests are being processed.
19302ccd7c3SDamien Le Moal 	 * See also blk_mq_freeze_queue() and blk_mq_unfreeze_queue().
194d86e716aSChristoph Hellwig 	 */
195d86e716aSChristoph Hellwig 	unsigned int		nr_zones;
196ecfe43b1SDamien Le Moal 	unsigned int		zone_capacity;
19729459c3eSDamien Le Moal 	unsigned int		last_zone_capacity;
198d7cb6d74SDamien Le Moal 	unsigned long __rcu	*conv_zones_bitmap;
199dd291d77SDamien Le Moal 	unsigned int		zone_wplugs_hash_bits;
200a6aa36e9SDamien Le Moal 	atomic_t		nr_zone_wplugs;
201dd291d77SDamien Le Moal 	spinlock_t		zone_wplugs_lock;
202dd291d77SDamien Le Moal 	struct mempool_s	*zone_wplugs_pool;
203dd291d77SDamien Le Moal 	struct hlist_head	*zone_wplugs_hash;
204a8f59e5aSDamien Le Moal 	struct workqueue_struct *zone_wplugs_wq;
205d86e716aSChristoph Hellwig #endif /* CONFIG_BLK_DEV_ZONED */
206d86e716aSChristoph Hellwig 
207322cbb50SChristoph Hellwig #if IS_ENABLED(CONFIG_CDROM)
208322cbb50SChristoph Hellwig 	struct cdrom_device_info *cdi;
209322cbb50SChristoph Hellwig #endif
210322cbb50SChristoph Hellwig 	int node_id;
211322cbb50SChristoph Hellwig 	struct badblocks *bb;
212322cbb50SChristoph Hellwig 	struct lockdep_map lockdep_map;
213322cbb50SChristoph Hellwig 	u64 diskseq;
21405bdb996SChristoph Hellwig 	blk_mode_t open_mode;
2156a27d28cSChristoph Hellwig 
2166a27d28cSChristoph Hellwig 	/*
2176a27d28cSChristoph Hellwig 	 * Independent sector access ranges. This is always NULL for
2186a27d28cSChristoph Hellwig 	 * devices that do not have multiple independent access ranges.
2196a27d28cSChristoph Hellwig 	 */
2206a27d28cSChristoph Hellwig 	struct blk_independent_access_ranges *ia_ranges;
221322cbb50SChristoph Hellwig };
222322cbb50SChristoph Hellwig 
223dbdc1be3SChristoph Hellwig /**
224dbdc1be3SChristoph Hellwig  * disk_openers - returns how many openers are there for a disk
225dbdc1be3SChristoph Hellwig  * @disk: disk to check
226dbdc1be3SChristoph Hellwig  *
227dbdc1be3SChristoph Hellwig  * This returns the number of openers for a disk.  Note that this value is only
228dbdc1be3SChristoph Hellwig  * stable if disk->open_mutex is held.
229dbdc1be3SChristoph Hellwig  *
230dbdc1be3SChristoph Hellwig  * Note: Due to a quirk in the block layer open code, each open partition is
231dbdc1be3SChristoph Hellwig  * only counted once even if there are multiple openers.
232dbdc1be3SChristoph Hellwig  */
233dbdc1be3SChristoph Hellwig static inline unsigned int disk_openers(struct gendisk *disk)
234dbdc1be3SChristoph Hellwig {
2359acf381fSChristoph Hellwig 	return atomic_read(&disk->part0->bd_openers);
236dbdc1be3SChristoph Hellwig }
237dbdc1be3SChristoph Hellwig 
238140ce28dSChristoph Hellwig /**
239140ce28dSChristoph Hellwig  * disk_has_partscan - return %true if partition scanning is enabled on a disk
240140ce28dSChristoph Hellwig  * @disk: disk to check
241140ce28dSChristoph Hellwig  *
242140ce28dSChristoph Hellwig  * Returns %true if partitions scanning is enabled for @disk, or %false if
243140ce28dSChristoph Hellwig  * partition scanning is disabled either permanently or temporarily.
244140ce28dSChristoph Hellwig  */
245140ce28dSChristoph Hellwig static inline bool disk_has_partscan(struct gendisk *disk)
246140ce28dSChristoph Hellwig {
247140ce28dSChristoph Hellwig 	return !(disk->flags & (GENHD_FL_NO_PART | GENHD_FL_HIDDEN)) &&
248140ce28dSChristoph Hellwig 		!test_bit(GD_SUPPRESS_PART_SCAN, &disk->state);
249140ce28dSChristoph Hellwig }
250140ce28dSChristoph Hellwig 
251322cbb50SChristoph Hellwig /*
252322cbb50SChristoph Hellwig  * The gendisk is refcounted by the part0 block_device, and the bd_device
253322cbb50SChristoph Hellwig  * therein is also used for device model presentation in sysfs.
254322cbb50SChristoph Hellwig  */
255322cbb50SChristoph Hellwig #define dev_to_disk(device) \
256322cbb50SChristoph Hellwig 	(dev_to_bdev(device)->bd_disk)
257322cbb50SChristoph Hellwig #define disk_to_dev(disk) \
258322cbb50SChristoph Hellwig 	(&((disk)->part0->bd_device))
259322cbb50SChristoph Hellwig 
260322cbb50SChristoph Hellwig #if IS_REACHABLE(CONFIG_CDROM)
261322cbb50SChristoph Hellwig #define disk_to_cdi(disk)	((disk)->cdi)
262322cbb50SChristoph Hellwig #else
263322cbb50SChristoph Hellwig #define disk_to_cdi(disk)	NULL
264322cbb50SChristoph Hellwig #endif
265322cbb50SChristoph Hellwig 
266322cbb50SChristoph Hellwig static inline dev_t disk_devt(struct gendisk *disk)
267322cbb50SChristoph Hellwig {
268322cbb50SChristoph Hellwig 	return MKDEV(disk->major, disk->first_minor);
269322cbb50SChristoph Hellwig }
270322cbb50SChristoph Hellwig 
27147dd6753SLuis Chamberlain /*
27247dd6753SLuis Chamberlain  * We should strive for 1 << (PAGE_SHIFT + MAX_PAGECACHE_ORDER)
27347dd6753SLuis Chamberlain  * however we constrain this to what we can validate and test.
27447dd6753SLuis Chamberlain  */
27547dd6753SLuis Chamberlain #define BLK_MAX_BLOCK_SIZE      SZ_64K
27647dd6753SLuis Chamberlain 
277fe3d508bSJohn Garry /* blk_validate_limits() validates bsize, so drivers don't usually need to */
27837ae5a0fSTetsuo Handa static inline int blk_validate_block_size(unsigned long bsize)
279570b1cacSXie Yongji {
28047dd6753SLuis Chamberlain 	if (bsize < 512 || bsize > BLK_MAX_BLOCK_SIZE || !is_power_of_2(bsize))
281570b1cacSXie Yongji 		return -EINVAL;
282570b1cacSXie Yongji 
283570b1cacSXie Yongji 	return 0;
284570b1cacSXie Yongji }
285570b1cacSXie Yongji 
28616458cf3SBart Van Assche static inline bool blk_op_is_passthrough(blk_opf_t op)
28714cb0dc6SMing Lei {
288da6269daSChristoph Hellwig 	op &= REQ_OP_MASK;
28914cb0dc6SMing Lei 	return op == REQ_OP_DRV_IN || op == REQ_OP_DRV_OUT;
29014cb0dc6SMing Lei }
29114cb0dc6SMing Lei 
2921122c0c1SChristoph Hellwig /* flags set by the driver in queue_limits.features */
293fcf865e3SChristoph Hellwig typedef unsigned int __bitwise blk_features_t;
294fcf865e3SChristoph Hellwig 
2951122c0c1SChristoph Hellwig /* supports a volatile write cache */
296fcf865e3SChristoph Hellwig #define BLK_FEAT_WRITE_CACHE		((__force blk_features_t)(1u << 0))
2971122c0c1SChristoph Hellwig 
2981122c0c1SChristoph Hellwig /* supports passing on the FUA bit */
299fcf865e3SChristoph Hellwig #define BLK_FEAT_FUA			((__force blk_features_t)(1u << 1))
300bd4a633bSChristoph Hellwig 
301bd4a633bSChristoph Hellwig /* rotational device (hard drive or floppy) */
302fcf865e3SChristoph Hellwig #define BLK_FEAT_ROTATIONAL		((__force blk_features_t)(1u << 2))
30339a9f1c3SChristoph Hellwig 
30439a9f1c3SChristoph Hellwig /* contributes to the random number pool */
305fcf865e3SChristoph Hellwig #define BLK_FEAT_ADD_RANDOM		((__force blk_features_t)(1u << 3))
306cdb24979SChristoph Hellwig 
307cdb24979SChristoph Hellwig /* do disk/partitions IO accounting */
308fcf865e3SChristoph Hellwig #define BLK_FEAT_IO_STAT		((__force blk_features_t)(1u << 4))
3091a02f3a7SChristoph Hellwig 
3101a02f3a7SChristoph Hellwig /* don't modify data until writeback is done */
311fcf865e3SChristoph Hellwig #define BLK_FEAT_STABLE_WRITES		((__force blk_features_t)(1u << 5))
312aadd5c59SChristoph Hellwig 
313aadd5c59SChristoph Hellwig /* always completes in submit context */
314fcf865e3SChristoph Hellwig #define BLK_FEAT_SYNCHRONOUS		((__force blk_features_t)(1u << 6))
315f76af42fSChristoph Hellwig 
316f76af42fSChristoph Hellwig /* supports REQ_NOWAIT */
317fcf865e3SChristoph Hellwig #define BLK_FEAT_NOWAIT			((__force blk_features_t)(1u << 7))
318f467fee4SChristoph Hellwig 
319f467fee4SChristoph Hellwig /* supports DAX */
320fcf865e3SChristoph Hellwig #define BLK_FEAT_DAX			((__force blk_features_t)(1u << 8))
3218023e144SChristoph Hellwig 
3228023e144SChristoph Hellwig /* supports I/O polling */
323fcf865e3SChristoph Hellwig #define BLK_FEAT_POLL			((__force blk_features_t)(1u << 9))
324b1fc937aSChristoph Hellwig 
325b1fc937aSChristoph Hellwig /* is a zoned device */
326fcf865e3SChristoph Hellwig #define BLK_FEAT_ZONED			((__force blk_features_t)(1u << 10))
327a52758a3SChristoph Hellwig 
3289c1e42e3SChristoph Hellwig /* supports PCI(e) p2p requests */
329fcf865e3SChristoph Hellwig #define BLK_FEAT_PCI_P2PDMA		((__force blk_features_t)(1u << 12))
3308c8f5c85SChristoph Hellwig 
3318c8f5c85SChristoph Hellwig /* skip this queue in blk_mq_(un)quiesce_tagset */
332fcf865e3SChristoph Hellwig #define BLK_FEAT_SKIP_TAGSET_QUIESCE	((__force blk_features_t)(1u << 13))
333339d3948SChristoph Hellwig 
334339d3948SChristoph Hellwig /* bounce all highmem pages */
335fcf865e3SChristoph Hellwig #define BLK_FEAT_BOUNCE_HIGH		((__force blk_features_t)(1u << 14))
3367d4dec52SChristoph Hellwig 
3377d4dec52SChristoph Hellwig /* undocumented magic for bcache */
338fcf865e3SChristoph Hellwig #define BLK_FEAT_RAID_PARTIAL_STRIPES_EXPENSIVE \
339fcf865e3SChristoph Hellwig 	((__force blk_features_t)(1u << 15))
3401122c0c1SChristoph Hellwig 
3416a7e17b2SJohn Garry /* atomic writes enabled */
3426a7e17b2SJohn Garry #define BLK_FEAT_ATOMIC_WRITES \
343d7f36dc4SJohn Garry 	((__force blk_features_t)(1u << 16))
344d7f36dc4SJohn Garry 
345797476b8SDamien Le Moal /*
3461122c0c1SChristoph Hellwig  * Flags automatically inherited when stacking limits.
3479bb33f24SChristoph Hellwig  */
3481122c0c1SChristoph Hellwig #define BLK_FEAT_INHERIT_MASK \
3491a02f3a7SChristoph Hellwig 	(BLK_FEAT_WRITE_CACHE | BLK_FEAT_FUA | BLK_FEAT_ROTATIONAL | \
3507d4dec52SChristoph Hellwig 	 BLK_FEAT_STABLE_WRITES | BLK_FEAT_ZONED | BLK_FEAT_BOUNCE_HIGH | \
3517d4dec52SChristoph Hellwig 	 BLK_FEAT_RAID_PARTIAL_STRIPES_EXPENSIVE)
3521122c0c1SChristoph Hellwig 
3531122c0c1SChristoph Hellwig /* internal flags in queue_limits.flags */
354fcf865e3SChristoph Hellwig typedef unsigned int __bitwise blk_flags_t;
355fcf865e3SChristoph Hellwig 
356bae1c743SChristoph Hellwig /* do not send FLUSH/FUA commands despite advertising a write cache */
357fcf865e3SChristoph Hellwig #define BLK_FLAG_WRITE_CACHE_DISABLED	((__force blk_flags_t)(1u << 0))
3581122c0c1SChristoph Hellwig 
3595543217bSChristoph Hellwig /* I/O topology is misaligned */
360fcf865e3SChristoph Hellwig #define BLK_FLAG_MISALIGNED		((__force blk_flags_t)(1u << 1))
3619bb33f24SChristoph Hellwig 
362110234daSKeith Busch /* passthrough command IO accounting */
363110234daSKeith Busch #define BLK_FLAG_IOSTATS_PASSTHROUGH	((__force blk_flags_t)(1u << 2))
364110234daSKeith Busch 
365025146e1SMartin K. Petersen struct queue_limits {
366fcf865e3SChristoph Hellwig 	blk_features_t		features;
367fcf865e3SChristoph Hellwig 	blk_flags_t		flags;
368025146e1SMartin K. Petersen 	unsigned long		seg_boundary_mask;
36903100aadSKeith Busch 	unsigned long		virt_boundary_mask;
370025146e1SMartin K. Petersen 
371025146e1SMartin K. Petersen 	unsigned int		max_hw_sectors;
372ca369d51SMartin K. Petersen 	unsigned int		max_dev_sectors;
373762380adSJens Axboe 	unsigned int		chunk_sectors;
374025146e1SMartin K. Petersen 	unsigned int		max_sectors;
375c9c77418SKeith Busch 	unsigned int		max_user_sectors;
376025146e1SMartin K. Petersen 	unsigned int		max_segment_size;
377889c5706SMing Lei 	unsigned int		min_segment_size;
378c72758f3SMartin K. Petersen 	unsigned int		physical_block_size;
379ad6bf88aSMikulas Patocka 	unsigned int		logical_block_size;
380c72758f3SMartin K. Petersen 	unsigned int		alignment_offset;
381c72758f3SMartin K. Petersen 	unsigned int		io_min;
382c72758f3SMartin K. Petersen 	unsigned int		io_opt;
38367efc925SChristoph Hellwig 	unsigned int		max_discard_sectors;
3840034af03SJens Axboe 	unsigned int		max_hw_discard_sectors;
3854f563a64SChristoph Hellwig 	unsigned int		max_user_discard_sectors;
38644abff2cSChristoph Hellwig 	unsigned int		max_secure_erase_sectors;
387a6f0788eSChaitanya Kulkarni 	unsigned int		max_write_zeroes_sectors;
388559218d4SChristoph Hellwig 	unsigned int		max_hw_zone_append_sectors;
3890512a75bSKeith Busch 	unsigned int		max_zone_append_sectors;
39086b37281SMartin K. Petersen 	unsigned int		discard_granularity;
39186b37281SMartin K. Petersen 	unsigned int		discard_alignment;
392a805a4faSDamien Le Moal 	unsigned int		zone_write_granularity;
393025146e1SMartin K. Petersen 
3949da3d1e9SJohn Garry 	/* atomic write limits */
3959da3d1e9SJohn Garry 	unsigned int		atomic_write_hw_max;
3969da3d1e9SJohn Garry 	unsigned int		atomic_write_max_sectors;
3979da3d1e9SJohn Garry 	unsigned int		atomic_write_hw_boundary;
3989da3d1e9SJohn Garry 	unsigned int		atomic_write_boundary_sectors;
3999da3d1e9SJohn Garry 	unsigned int		atomic_write_hw_unit_min;
4009da3d1e9SJohn Garry 	unsigned int		atomic_write_unit_min;
4019da3d1e9SJohn Garry 	unsigned int		atomic_write_hw_unit_max;
4029da3d1e9SJohn Garry 	unsigned int		atomic_write_unit_max;
4039da3d1e9SJohn Garry 
4048a78362cSMartin K. Petersen 	unsigned short		max_segments;
40513f05c8dSMartin K. Petersen 	unsigned short		max_integrity_segments;
4061e739730SChristoph Hellwig 	unsigned short		max_discard_segments;
407025146e1SMartin K. Petersen 
4088c4955c0SChristoph Hellwig 	unsigned int		max_open_zones;
4098c4955c0SChristoph Hellwig 	unsigned int		max_active_zones;
410c964d62fSKeith Busch 
411c964d62fSKeith Busch 	/*
412c964d62fSKeith Busch 	 * Drivers that set dma_alignment to less than 511 must be prepared to
413c964d62fSKeith Busch 	 * handle individual bvec's that are not a multiple of a SECTOR_SIZE
414c964d62fSKeith Busch 	 * due to possible offsets.
415c964d62fSKeith Busch 	 */
416c964d62fSKeith Busch 	unsigned int		dma_alignment;
417e94b45d0SChristoph Hellwig 	unsigned int		dma_pad_mask;
418c6e56cf6SChristoph Hellwig 
419c6e56cf6SChristoph Hellwig 	struct blk_integrity	integrity;
420025146e1SMartin K. Petersen };
421025146e1SMartin K. Petersen 
422d4100351SChristoph Hellwig typedef int (*report_zones_cb)(struct blk_zone *zone, unsigned int idx,
423d4100351SChristoph Hellwig 			       void *data);
424d4100351SChristoph Hellwig 
425d4100351SChristoph Hellwig #define BLK_ALL_ZONES  ((unsigned int)-1)
426d4100351SChristoph Hellwig int blkdev_report_zones(struct block_device *bdev, sector_t sector,
427d4100351SChristoph Hellwig 		unsigned int nr_zones, report_zones_cb cb, void *data);
428668bfeeaSChristoph Hellwig int blkdev_zone_mgmt(struct block_device *bdev, enum req_op op,
42971f4ecdbSJohannes Thumshirn 		sector_t sectors, sector_t nr_sectors);
4309b3c08b9SDamien Le Moal int blk_revalidate_disk_zones(struct gendisk *disk);
4316a0cb1bcSHannes Reinecke 
432a2247f19SDamien Le Moal /*
433a2247f19SDamien Le Moal  * Independent access ranges: struct blk_independent_access_range describes
434a2247f19SDamien Le Moal  * a range of contiguous sectors that can be accessed using device command
435a2247f19SDamien Le Moal  * execution resources that are independent from the resources used for
436a2247f19SDamien Le Moal  * other access ranges. This is typically found with single-LUN multi-actuator
437a2247f19SDamien Le Moal  * HDDs where each access range is served by a different set of heads.
438a2247f19SDamien Le Moal  * The set of independent ranges supported by the device is defined using
439a2247f19SDamien Le Moal  * struct blk_independent_access_ranges. The independent ranges must not overlap
440a2247f19SDamien Le Moal  * and must include all sectors within the disk capacity (no sector holes
441a2247f19SDamien Le Moal  * allowed).
442a2247f19SDamien Le Moal  * For a device with multiple ranges, requests targeting sectors in different
443a2247f19SDamien Le Moal  * ranges can be executed in parallel. A request can straddle an access range
444a2247f19SDamien Le Moal  * boundary.
445a2247f19SDamien Le Moal  */
446a2247f19SDamien Le Moal struct blk_independent_access_range {
447a2247f19SDamien Le Moal 	struct kobject		kobj;
448a2247f19SDamien Le Moal 	sector_t		sector;
449a2247f19SDamien Le Moal 	sector_t		nr_sectors;
450a2247f19SDamien Le Moal };
451a2247f19SDamien Le Moal 
452a2247f19SDamien Le Moal struct blk_independent_access_ranges {
453a2247f19SDamien Le Moal 	struct kobject				kobj;
454a2247f19SDamien Le Moal 	bool					sysfs_registered;
455a2247f19SDamien Le Moal 	unsigned int				nr_ia_ranges;
456a2247f19SDamien Le Moal 	struct blk_independent_access_range	ia_range[];
457a2247f19SDamien Le Moal };
458a2247f19SDamien Le Moal 
459d7b76301SRichard Kennedy struct request_queue {
4601da177e4SLinus Torvalds 	/*
4611da177e4SLinus Torvalds 	 * The queue owner gets to use this for whatever they like.
4621da177e4SLinus Torvalds 	 * ll_rw_blk doesn't touch it.
4631da177e4SLinus Torvalds 	 */
4641da177e4SLinus Torvalds 	void			*queuedata;
4651da177e4SLinus Torvalds 
4660c734c5eSJens Axboe 	struct elevator_queue	*elevator;
4670c734c5eSJens Axboe 
4680c734c5eSJens Axboe 	const struct blk_mq_ops	*mq_ops;
4690c734c5eSJens Axboe 
4700c734c5eSJens Axboe 	/* sw queues */
4710c734c5eSJens Axboe 	struct blk_mq_ctx __percpu	*queue_ctx;
4720c734c5eSJens Axboe 
4731da177e4SLinus Torvalds 	/*
4741da177e4SLinus Torvalds 	 * various queue flags, see QUEUE_* below
4751da177e4SLinus Torvalds 	 */
4761da177e4SLinus Torvalds 	unsigned long		queue_flags;
4771da177e4SLinus Torvalds 
4780c734c5eSJens Axboe 	unsigned int		rq_timeout;
4790c734c5eSJens Axboe 
4800c734c5eSJens Axboe 	unsigned int		queue_depth;
4810c734c5eSJens Axboe 
4820c734c5eSJens Axboe 	refcount_t		refs;
4830c734c5eSJens Axboe 
4840c734c5eSJens Axboe 	/* hw dispatch queues */
4850c734c5eSJens Axboe 	unsigned int		nr_hw_queues;
4860c734c5eSJens Axboe 	struct xarray		hctx_table;
4870c734c5eSJens Axboe 
4880c734c5eSJens Axboe 	struct percpu_ref	q_usage_counter;
489f1be1788SMing Lei 	struct lock_class_key	io_lock_cls_key;
490f1be1788SMing Lei 	struct lockdep_map	io_lockdep_map;
491f1be1788SMing Lei 
492f1be1788SMing Lei 	struct lock_class_key	q_lock_cls_key;
493f1be1788SMing Lei 	struct lockdep_map	q_lockdep_map;
4940c734c5eSJens Axboe 
4950c734c5eSJens Axboe 	struct request		*last_merge;
496a73f730dSTejun Heo 
4970d945c1fSChristoph Hellwig 	spinlock_t		queue_lock;
4981da177e4SLinus Torvalds 
4990c734c5eSJens Axboe 	int			quiesce_depth;
500d152c682SChristoph Hellwig 
5010c734c5eSJens Axboe 	struct gendisk		*disk;
5021da177e4SLinus Torvalds 
503320ae51fSJens Axboe 	/*
504320ae51fSJens Axboe 	 * mq queue kobject
505320ae51fSJens Axboe 	 */
5061db4909eSMing Lei 	struct kobject *mq_kobj;
507320ae51fSJens Axboe 
5080c734c5eSJens Axboe 	struct queue_limits	limits;
5090c734c5eSJens Axboe 
51047fafbc7SRafael J. Wysocki #ifdef CONFIG_PM
5116c954667SLin Ming 	struct device		*dev;
512db04e18dSGeert Uytterhoeven 	enum rpm_status		rpm_status;
5136c954667SLin Ming #endif
5146c954667SLin Ming 
5151da177e4SLinus Torvalds 	/*
5160c734c5eSJens Axboe 	 * Number of contexts that have called blk_set_pm_only(). If this
5170c734c5eSJens Axboe 	 * counter is above zero then only RQF_PM requests are processed.
5180c734c5eSJens Axboe 	 */
5190c734c5eSJens Axboe 	atomic_t		pm_only;
5200c734c5eSJens Axboe 
5210c734c5eSJens Axboe 	struct blk_queue_stats	*stats;
5220c734c5eSJens Axboe 	struct rq_qos		*rq_qos;
5230c734c5eSJens Axboe 	struct mutex		rq_qos_mutex;
5240c734c5eSJens Axboe 
5250c734c5eSJens Axboe 	/*
5260c734c5eSJens Axboe 	 * ida allocated id for this queue.  Used to index queues from
5270c734c5eSJens Axboe 	 * ioctx.
5280c734c5eSJens Axboe 	 */
5290c734c5eSJens Axboe 	int			id;
5300c734c5eSJens Axboe 
5310c734c5eSJens Axboe 	/*
5321da177e4SLinus Torvalds 	 * queue settings
5331da177e4SLinus Torvalds 	 */
5341da177e4SLinus Torvalds 	unsigned long		nr_requests;	/* Max # of requests */
5351da177e4SLinus Torvalds 
5361b262839SSatya Tangirala #ifdef CONFIG_BLK_INLINE_ENCRYPTION
537cb77cb5aSEric Biggers 	struct blk_crypto_profile *crypto_profile;
53820f01f16SEric Biggers 	struct kobject *crypto_kobject;
5391b262839SSatya Tangirala #endif
5401b262839SSatya Tangirala 
541242f9dcbSJens Axboe 	struct timer_list	timeout;
542287922ebSChristoph Hellwig 	struct work_struct	timeout_work;
543242f9dcbSJens Axboe 
544079a2e3eSJohn Garry 	atomic_t		nr_active_requests_shared_tags;
545bccf5e26SJohn Garry 
546079a2e3eSJohn Garry 	struct blk_mq_tags	*sched_shared_tags;
547d97e594cSJohn Garry 
548a612fddfSTejun Heo 	struct list_head	icq_list;
5491231039dSChristoph Hellwig #ifdef CONFIG_BLK_CGROUP
5501231039dSChristoph Hellwig 	DECLARE_BITMAP		(blkcg_pols, BLKCG_MAX_POLS);
5511231039dSChristoph Hellwig 	struct blkcg_gq		*root_blkg;
5521231039dSChristoph Hellwig 	struct list_head	blkg_list;
5531231039dSChristoph Hellwig 	struct mutex		blkcg_mutex;
5541231039dSChristoph Hellwig #endif
555a612fddfSTejun Heo 
5561946089aSChristoph Lameter 	int			node;
5570c734c5eSJens Axboe 
5580c734c5eSJens Axboe 	spinlock_t		requeue_lock;
5590c734c5eSJens Axboe 	struct list_head	requeue_list;
5600c734c5eSJens Axboe 	struct delayed_work	requeue_work;
5610c734c5eSJens Axboe 
5626c5c9341SAlexey Dobriyan #ifdef CONFIG_BLK_DEV_IO_TRACE
563c780e86dSJan Kara 	struct blk_trace __rcu	*blk_trace;
5646c5c9341SAlexey Dobriyan #endif
5651da177e4SLinus Torvalds 	/*
5664913efe4STejun Heo 	 * for flush operations
5671da177e4SLinus Torvalds 	 */
5687c94e1c1SMing Lei 	struct blk_flush_queue	*fq;
5699a67aa52SChristoph Hellwig 	struct list_head	flush_list;
570483f4afcSAl Viro 
5711bf70d08SNilay Shroff 	/*
5725abba4ceSNilay Shroff 	 * Protects against I/O scheduler switching, particularly when updating
5735abba4ceSNilay Shroff 	 * q->elevator. Since the elevator update code path may also modify q->
5745abba4ceSNilay Shroff 	 * nr_requests and wbt latency, this lock also protects the sysfs attrs
5755abba4ceSNilay Shroff 	 * nr_requests and wbt_lat_usec. Additionally the nr_hw_queues update
5765abba4ceSNilay Shroff 	 * may modify hctx tags, reserved-tags and cpumask, so this lock also
577a3996d11SNilay Shroff 	 * helps protect the hctx sysfs/debugfs attrs. To ensure proper locking
578a3996d11SNilay Shroff 	 * order during an elevator or nr_hw_queue update, first freeze the
579a3996d11SNilay Shroff 	 * queue, then acquire ->elevator_lock.
5801bf70d08SNilay Shroff 	 */
5811bf70d08SNilay Shroff 	struct mutex		elevator_lock;
5821bf70d08SNilay Shroff 
583483f4afcSAl Viro 	struct mutex		sysfs_lock;
5845e40f445SNilay Shroff 	/*
5855e40f445SNilay Shroff 	 * Protects queue limits and also sysfs attribute read_ahead_kb.
5865e40f445SNilay Shroff 	 */
587d690cb8aSChristoph Hellwig 	struct mutex		limits_lock;
588d351af01SFUJITA Tomonori 
5892f8f1336SMing Lei 	/*
5902f8f1336SMing Lei 	 * for reusing dead hctx instance in case of updating
5912f8f1336SMing Lei 	 * nr_hw_queues
5922f8f1336SMing Lei 	 */
5932f8f1336SMing Lei 	struct list_head	unused_hctx_list;
5942f8f1336SMing Lei 	spinlock_t		unused_hctx_lock;
5952f8f1336SMing Lei 
5967996a8b5SBob Liu 	int			mq_freeze_depth;
597d732580bSTejun Heo 
598e43473b7SVivek Goyal #ifdef CONFIG_BLK_DEV_THROTTLING
599e43473b7SVivek Goyal 	/* Throttle data */
600e43473b7SVivek Goyal 	struct throtl_data *td;
601e43473b7SVivek Goyal #endif
602548bc8e1STejun Heo 	struct rcu_head		rcu_head;
6036a786998SMing Lei #ifdef CONFIG_LOCKDEP
6046a786998SMing Lei 	struct task_struct	*mq_freeze_owner;
6056a786998SMing Lei 	int			mq_freeze_owner_depth;
606f6661b1dSMing Lei 	/*
607f6661b1dSMing Lei 	 * Records disk & queue state in current context, used in unfreeze
608f6661b1dSMing Lei 	 * queue
609f6661b1dSMing Lei 	 */
6106f491a8dSMing Lei 	bool			mq_freeze_disk_dead;
611f6661b1dSMing Lei 	bool			mq_freeze_queue_dying;
6126a786998SMing Lei #endif
613320ae51fSJens Axboe 	wait_queue_head_t	mq_freeze_wq;
6147996a8b5SBob Liu 	/*
6157996a8b5SBob Liu 	 * Protect concurrent access to q_usage_counter by
6167996a8b5SBob Liu 	 * percpu_ref_kill() and percpu_ref_reinit().
6177996a8b5SBob Liu 	 */
6187996a8b5SBob Liu 	struct mutex		mq_freeze_lock;
6190d2602caSJens Axboe 
6200d2602caSJens Axboe 	struct blk_mq_tag_set	*tag_set;
6210d2602caSJens Axboe 	struct list_head	tag_set_list;
6224593fdbeSAkinobu Mita 
62307e4feadSOmar Sandoval 	struct dentry		*debugfs_dir;
624d332ce09SOmar Sandoval 	struct dentry		*sched_debugfs_dir;
625cc56694fSMing Lei 	struct dentry		*rqos_debugfs_dir;
6265cf9c91bSChristoph Hellwig 	/*
6275cf9c91bSChristoph Hellwig 	 * Serializes all debugfs metadata operations using the above dentries.
6285cf9c91bSChristoph Hellwig 	 */
6295cf9c91bSChristoph Hellwig 	struct mutex		debugfs_mutex;
6301da177e4SLinus Torvalds };
6311da177e4SLinus Torvalds 
632bfe373f6SHou Tao /* Keep blk_queue_flag_name[] in sync with the definitions below */
63355177adfSJohn Garry enum {
63455177adfSJohn Garry 	QUEUE_FLAG_DYING,		/* queue being torn down */
63555177adfSJohn Garry 	QUEUE_FLAG_NOMERGES,		/* disable merge attempts */
63655177adfSJohn Garry 	QUEUE_FLAG_SAME_COMP,		/* complete on same CPU-group */
63755177adfSJohn Garry 	QUEUE_FLAG_FAIL_IO,		/* fake timeout */
63855177adfSJohn Garry 	QUEUE_FLAG_NOXMERGES,		/* No extended merges */
63955177adfSJohn Garry 	QUEUE_FLAG_SAME_FORCE,		/* force complete on same CPU */
64055177adfSJohn Garry 	QUEUE_FLAG_INIT_DONE,		/* queue is initialized */
64155177adfSJohn Garry 	QUEUE_FLAG_STATS,		/* track IO start and completion times */
64255177adfSJohn Garry 	QUEUE_FLAG_REGISTERED,		/* queue has been registered to a disk */
64355177adfSJohn Garry 	QUEUE_FLAG_QUIESCED,		/* queue has been quiesced */
64455177adfSJohn Garry 	QUEUE_FLAG_RQ_ALLOC_TIME,	/* record rq->alloc_time_ns */
64555177adfSJohn Garry 	QUEUE_FLAG_HCTX_ACTIVE,		/* at least one blk-mq hctx is active */
64655177adfSJohn Garry 	QUEUE_FLAG_SQ_SCHED,		/* single queue style io dispatch */
64755177adfSJohn Garry 	QUEUE_FLAG_MAX
64855177adfSJohn Garry };
649797e7dbbSTejun Heo 
650f76af42fSChristoph Hellwig #define QUEUE_FLAG_MQ_DEFAULT	(1UL << QUEUE_FLAG_SAME_COMP)
65194eddfbeSJens Axboe 
6528814ce8aSBart Van Assche void blk_queue_flag_set(unsigned int flag, struct request_queue *q);
6538814ce8aSBart Van Assche void blk_queue_flag_clear(unsigned int flag, struct request_queue *q);
6548814ce8aSBart Van Assche 
6553f3299d5SBart Van Assche #define blk_queue_dying(q)	test_bit(QUEUE_FLAG_DYING, &(q)->queue_flags)
656320ae51fSJens Axboe #define blk_queue_init_done(q)	test_bit(QUEUE_FLAG_INIT_DONE, &(q)->queue_flags)
657ac9fafa1SAlan D. Brunelle #define blk_queue_nomerges(q)	test_bit(QUEUE_FLAG_NOMERGES, &(q)->queue_flags)
658488991e2SAlan D. Brunelle #define blk_queue_noxmerges(q)	\
659488991e2SAlan D. Brunelle 	test_bit(QUEUE_FLAG_NOXMERGES, &(q)->queue_flags)
66044348870SChristoph Hellwig #define blk_queue_nonrot(q)	(!((q)->limits.features & BLK_FEAT_ROTATIONAL))
661cdb24979SChristoph Hellwig #define blk_queue_io_stat(q)	((q)->limits.features & BLK_FEAT_IO_STAT)
662110234daSKeith Busch #define blk_queue_passthrough_stat(q)	\
663110234daSKeith Busch 	((q)->limits.flags & BLK_FLAG_IOSTATS_PASSTHROUGH)
664f467fee4SChristoph Hellwig #define blk_queue_dax(q)	((q)->limits.features & BLK_FEAT_DAX)
6659c1e42e3SChristoph Hellwig #define blk_queue_pci_p2pdma(q)	((q)->limits.features & BLK_FEAT_PCI_P2PDMA)
6666f816b4bSTejun Heo #ifdef CONFIG_BLK_RQ_ALLOC_TIME
6676f816b4bSTejun Heo #define blk_queue_rq_alloc_time(q)	\
6686f816b4bSTejun Heo 	test_bit(QUEUE_FLAG_RQ_ALLOC_TIME, &(q)->queue_flags)
6696f816b4bSTejun Heo #else
6706f816b4bSTejun Heo #define blk_queue_rq_alloc_time(q)	false
6716f816b4bSTejun Heo #endif
6721da177e4SLinus Torvalds 
67333659ebbSChristoph Hellwig #define blk_noretry_request(rq) \
67433659ebbSChristoph Hellwig 	((rq)->cmd_flags & (REQ_FAILFAST_DEV|REQ_FAILFAST_TRANSPORT| \
67533659ebbSChristoph Hellwig 			     REQ_FAILFAST_DRIVER))
676f4560ffeSMing Lei #define blk_queue_quiesced(q)	test_bit(QUEUE_FLAG_QUIESCED, &(q)->queue_flags)
677cd84a62eSBart Van Assche #define blk_queue_pm_only(q)	atomic_read(&(q)->pm_only)
67858c898baSMing Lei #define blk_queue_registered(q)	test_bit(QUEUE_FLAG_REGISTERED, &(q)->queue_flags)
6794d337cebSMing Lei #define blk_queue_sq_sched(q)	test_bit(QUEUE_FLAG_SQ_SCHED, &(q)->queue_flags)
680414dd48eSChao Leng #define blk_queue_skip_tagset_quiesce(q) \
6818c8f5c85SChristoph Hellwig 	((q)->limits.features & BLK_FEAT_SKIP_TAGSET_QUIESCE)
682c9254f2dSBart Van Assche 
683cd84a62eSBart Van Assche extern void blk_set_pm_only(struct request_queue *q);
684cd84a62eSBart Van Assche extern void blk_clear_pm_only(struct request_queue *q);
6854aff5e23SJens Axboe 
6861da177e4SLinus Torvalds #define list_entry_rq(ptr)	list_entry((ptr), struct request, queuelist)
6871da177e4SLinus Torvalds 
6883ab3a031SChristoph Hellwig #define dma_map_bvec(dev, bv, dir, attrs) \
6893ab3a031SChristoph Hellwig 	dma_map_page_attrs(dev, (bv)->bv_page, (bv)->bv_offset, (bv)->bv_len, \
6903ab3a031SChristoph Hellwig 	(dir), (attrs))
6913ab3a031SChristoph Hellwig 
692344e9ffcSJens Axboe static inline bool queue_is_mq(struct request_queue *q)
69349fd524fSJens Axboe {
694a1ce35faSJens Axboe 	return q->mq_ops;
69549fd524fSJens Axboe }
69649fd524fSJens Axboe 
69752abca64SAlan Stern #ifdef CONFIG_PM
69852abca64SAlan Stern static inline enum rpm_status queue_rpm_status(struct request_queue *q)
69952abca64SAlan Stern {
70052abca64SAlan Stern 	return q->rpm_status;
70152abca64SAlan Stern }
70252abca64SAlan Stern #else
70352abca64SAlan Stern static inline enum rpm_status queue_rpm_status(struct request_queue *q)
70452abca64SAlan Stern {
70552abca64SAlan Stern 	return RPM_ACTIVE;
70652abca64SAlan Stern }
70752abca64SAlan Stern #endif
70852abca64SAlan Stern 
709797476b8SDamien Le Moal static inline bool blk_queue_is_zoned(struct request_queue *q)
710797476b8SDamien Le Moal {
711b1fc937aSChristoph Hellwig 	return IS_ENABLED(CONFIG_BLK_DEV_ZONED) &&
712b1fc937aSChristoph Hellwig 		(q->limits.features & BLK_FEAT_ZONED);
713797476b8SDamien Le Moal }
714797476b8SDamien Le Moal 
7156a5ac984SBart Van Assche #ifdef CONFIG_BLK_DEV_ZONED
716d86e716aSChristoph Hellwig static inline unsigned int disk_nr_zones(struct gendisk *disk)
717965b652eSDamien Le Moal {
718caaf7101SDamien Le Moal 	return disk->nr_zones;
719965b652eSDamien Le Moal }
720caaf7101SDamien Le Moal bool blk_zone_plug_bio(struct bio *bio, unsigned int nr_segs);
721caaf7101SDamien Le Moal #else /* CONFIG_BLK_DEV_ZONED */
722caaf7101SDamien Le Moal static inline unsigned int disk_nr_zones(struct gendisk *disk)
723caaf7101SDamien Le Moal {
724caaf7101SDamien Le Moal 	return 0;
725caaf7101SDamien Le Moal }
726caaf7101SDamien Le Moal static inline bool blk_zone_plug_bio(struct bio *bio, unsigned int nr_segs)
727caaf7101SDamien Le Moal {
728caaf7101SDamien Le Moal 	return false;
729caaf7101SDamien Le Moal }
730caaf7101SDamien Le Moal #endif /* CONFIG_BLK_DEV_ZONED */
731965b652eSDamien Le Moal 
732d86e716aSChristoph Hellwig static inline unsigned int disk_zone_no(struct gendisk *disk, sector_t sector)
7336cc77e9cSChristoph Hellwig {
734d86e716aSChristoph Hellwig 	if (!blk_queue_is_zoned(disk->queue))
7356cc77e9cSChristoph Hellwig 		return 0;
736d86e716aSChristoph Hellwig 	return sector >> ilog2(disk->queue->limits.chunk_sectors);
7376cc77e9cSChristoph Hellwig }
7386cc77e9cSChristoph Hellwig 
739b6cfe228SDamien Le Moal static inline unsigned int bdev_nr_zones(struct block_device *bdev)
740e15864f8SNiklas Cassel {
741b6cfe228SDamien Le Moal 	return disk_nr_zones(bdev->bd_disk);
742659bf827SNiklas Cassel }
743659bf827SNiklas Cassel 
7441dc01720SChristoph Hellwig static inline unsigned int bdev_max_open_zones(struct block_device *bdev)
745659bf827SNiklas Cassel {
7468c4955c0SChristoph Hellwig 	return bdev->bd_disk->queue->limits.max_open_zones;
747659bf827SNiklas Cassel }
7481dc01720SChristoph Hellwig 
7491dc01720SChristoph Hellwig static inline unsigned int bdev_max_active_zones(struct block_device *bdev)
7501dc01720SChristoph Hellwig {
7518c4955c0SChristoph Hellwig 	return bdev->bd_disk->queue->limits.max_active_zones;
7521dc01720SChristoph Hellwig }
7531dc01720SChristoph Hellwig 
754d278d4a8SJens Axboe static inline unsigned int blk_queue_depth(struct request_queue *q)
755d278d4a8SJens Axboe {
756d278d4a8SJens Axboe 	if (q->queue_depth)
757d278d4a8SJens Axboe 		return q->queue_depth;
758d278d4a8SJens Axboe 
759d278d4a8SJens Axboe 	return q->nr_requests;
760d278d4a8SJens Axboe }
761d278d4a8SJens Axboe 
7623d6392cfSJens Axboe /*
7633d6392cfSJens Axboe  * default timeout for SG_IO if none specified
7643d6392cfSJens Axboe  */
7653d6392cfSJens Axboe #define BLK_DEFAULT_SG_TIMEOUT	(60 * HZ)
766f2f1fa78SLinus Torvalds #define BLK_MIN_SG_TIMEOUT	(7 * HZ)
7673d6392cfSJens Axboe 
7685705f702SNeilBrown /* This should not be used directly - use rq_for_each_segment */
7691e428079SJens Axboe #define for_each_bio(_bio)		\
7701e428079SJens Axboe 	for (; _bio; _bio = _bio->bi_next)
7711da177e4SLinus Torvalds 
7729dfd9ea9SChristian Marangi int __must_check add_disk_fwnode(struct device *parent, struct gendisk *disk,
7739dfd9ea9SChristian Marangi 				 const struct attribute_group **groups,
7749dfd9ea9SChristian Marangi 				 struct fwnode_handle *fwnode);
775322cbb50SChristoph Hellwig int __must_check device_add_disk(struct device *parent, struct gendisk *disk,
776322cbb50SChristoph Hellwig 				 const struct attribute_group **groups);
777322cbb50SChristoph Hellwig static inline int __must_check add_disk(struct gendisk *disk)
778322cbb50SChristoph Hellwig {
779322cbb50SChristoph Hellwig 	return device_add_disk(NULL, disk, NULL);
780322cbb50SChristoph Hellwig }
781322cbb50SChristoph Hellwig void del_gendisk(struct gendisk *gp);
782322cbb50SChristoph Hellwig void invalidate_disk(struct gendisk *disk);
783322cbb50SChristoph Hellwig void set_disk_ro(struct gendisk *disk, bool read_only);
784322cbb50SChristoph Hellwig void disk_uevent(struct gendisk *disk, enum kobject_action action);
785322cbb50SChristoph Hellwig 
786b8c873edSAl Viro static inline u8 bdev_partno(const struct block_device *bdev)
787b8c873edSAl Viro {
7881116b9faSAl Viro 	return atomic_read(&bdev->__bd_flags) & BD_PARTNO;
7891116b9faSAl Viro }
7901116b9faSAl Viro 
7911116b9faSAl Viro static inline bool bdev_test_flag(const struct block_device *bdev, unsigned flag)
7921116b9faSAl Viro {
7931116b9faSAl Viro 	return atomic_read(&bdev->__bd_flags) & flag;
7941116b9faSAl Viro }
7951116b9faSAl Viro 
7961116b9faSAl Viro static inline void bdev_set_flag(struct block_device *bdev, unsigned flag)
7971116b9faSAl Viro {
7981116b9faSAl Viro 	atomic_or(flag, &bdev->__bd_flags);
7991116b9faSAl Viro }
8001116b9faSAl Viro 
8011116b9faSAl Viro static inline void bdev_clear_flag(struct block_device *bdev, unsigned flag)
8021116b9faSAl Viro {
8031116b9faSAl Viro 	atomic_andnot(flag, &bdev->__bd_flags);
804b8c873edSAl Viro }
805b8c873edSAl Viro 
806766a71efSChristoph Hellwig static inline bool get_disk_ro(struct gendisk *disk)
807322cbb50SChristoph Hellwig {
80801e198f0SAl Viro 	return bdev_test_flag(disk->part0, BD_READ_ONLY) ||
809322cbb50SChristoph Hellwig 		test_bit(GD_READ_ONLY, &disk->state);
810322cbb50SChristoph Hellwig }
811322cbb50SChristoph Hellwig 
812766a71efSChristoph Hellwig static inline bool bdev_read_only(struct block_device *bdev)
813322cbb50SChristoph Hellwig {
81401e198f0SAl Viro 	return bdev_test_flag(bdev, BD_READ_ONLY) || get_disk_ro(bdev->bd_disk);
815322cbb50SChristoph Hellwig }
816322cbb50SChristoph Hellwig 
817322cbb50SChristoph Hellwig bool set_capacity_and_notify(struct gendisk *disk, sector_t size);
818ab6860f6SChristoph Hellwig void disk_force_media_change(struct gendisk *disk);
819560e20e4SChristoph Hellwig void bdev_mark_dead(struct block_device *bdev, bool surprise);
820322cbb50SChristoph Hellwig 
821322cbb50SChristoph Hellwig void add_disk_randomness(struct gendisk *disk) __latent_entropy;
822322cbb50SChristoph Hellwig void rand_initialize_disk(struct gendisk *disk);
823322cbb50SChristoph Hellwig 
824322cbb50SChristoph Hellwig static inline sector_t get_start_sect(struct block_device *bdev)
825322cbb50SChristoph Hellwig {
826322cbb50SChristoph Hellwig 	return bdev->bd_start_sect;
827322cbb50SChristoph Hellwig }
828322cbb50SChristoph Hellwig 
829322cbb50SChristoph Hellwig static inline sector_t bdev_nr_sectors(struct block_device *bdev)
830322cbb50SChristoph Hellwig {
831322cbb50SChristoph Hellwig 	return bdev->bd_nr_sectors;
832322cbb50SChristoph Hellwig }
833322cbb50SChristoph Hellwig 
834322cbb50SChristoph Hellwig static inline loff_t bdev_nr_bytes(struct block_device *bdev)
835322cbb50SChristoph Hellwig {
836322cbb50SChristoph Hellwig 	return (loff_t)bdev_nr_sectors(bdev) << SECTOR_SHIFT;
837322cbb50SChristoph Hellwig }
838322cbb50SChristoph Hellwig 
839322cbb50SChristoph Hellwig static inline sector_t get_capacity(struct gendisk *disk)
840322cbb50SChristoph Hellwig {
841322cbb50SChristoph Hellwig 	return bdev_nr_sectors(disk->part0);
842322cbb50SChristoph Hellwig }
843322cbb50SChristoph Hellwig 
844322cbb50SChristoph Hellwig static inline u64 sb_bdev_nr_blocks(struct super_block *sb)
845322cbb50SChristoph Hellwig {
846322cbb50SChristoph Hellwig 	return bdev_nr_sectors(sb->s_bdev) >>
847322cbb50SChristoph Hellwig 		(sb->s_blocksize_bits - SECTOR_SHIFT);
848322cbb50SChristoph Hellwig }
849322cbb50SChristoph Hellwig 
850322cbb50SChristoph Hellwig int bdev_disk_changed(struct gendisk *disk, bool invalidate);
851322cbb50SChristoph Hellwig 
852322cbb50SChristoph Hellwig void put_disk(struct gendisk *disk);
85374fa8f9cSChristoph Hellwig struct gendisk *__blk_alloc_disk(struct queue_limits *lim, int node,
85474fa8f9cSChristoph Hellwig 		struct lock_class_key *lkclass);
855322cbb50SChristoph Hellwig 
856322cbb50SChristoph Hellwig /**
857322cbb50SChristoph Hellwig  * blk_alloc_disk - allocate a gendisk structure
85874fa8f9cSChristoph Hellwig  * @lim: queue limits to be used for this disk.
859322cbb50SChristoph Hellwig  * @node_id: numa node to allocate on
860322cbb50SChristoph Hellwig  *
861322cbb50SChristoph Hellwig  * Allocate and pre-initialize a gendisk structure for use with BIO based
862322cbb50SChristoph Hellwig  * drivers.
863322cbb50SChristoph Hellwig  *
86474fa8f9cSChristoph Hellwig  * Returns an ERR_PTR on error, else the allocated disk.
86574fa8f9cSChristoph Hellwig  *
866322cbb50SChristoph Hellwig  * Context: can sleep
867322cbb50SChristoph Hellwig  */
86874fa8f9cSChristoph Hellwig #define blk_alloc_disk(lim, node_id)					\
869322cbb50SChristoph Hellwig ({									\
870322cbb50SChristoph Hellwig 	static struct lock_class_key __key;				\
871322cbb50SChristoph Hellwig 									\
87274fa8f9cSChristoph Hellwig 	__blk_alloc_disk(lim, node_id, &__key);				\
873322cbb50SChristoph Hellwig })
874322cbb50SChristoph Hellwig 
875322cbb50SChristoph Hellwig int __register_blkdev(unsigned int major, const char *name,
876322cbb50SChristoph Hellwig 		void (*probe)(dev_t devt));
877322cbb50SChristoph Hellwig #define register_blkdev(major, name) \
878322cbb50SChristoph Hellwig 	__register_blkdev(major, name, NULL)
879322cbb50SChristoph Hellwig void unregister_blkdev(unsigned int major, const char *name);
880322cbb50SChristoph Hellwig 
881444aa2c5SChristoph Hellwig bool disk_check_media_change(struct gendisk *disk);
882322cbb50SChristoph Hellwig void set_capacity(struct gendisk *disk, sector_t size);
883322cbb50SChristoph Hellwig 
884322cbb50SChristoph Hellwig #ifdef CONFIG_BLOCK_HOLDER_DEPRECATED
885322cbb50SChristoph Hellwig int bd_link_disk_holder(struct block_device *bdev, struct gendisk *disk);
886322cbb50SChristoph Hellwig void bd_unlink_disk_holder(struct block_device *bdev, struct gendisk *disk);
887322cbb50SChristoph Hellwig #else
888322cbb50SChristoph Hellwig static inline int bd_link_disk_holder(struct block_device *bdev,
889322cbb50SChristoph Hellwig 				      struct gendisk *disk)
890322cbb50SChristoph Hellwig {
891322cbb50SChristoph Hellwig 	return 0;
892322cbb50SChristoph Hellwig }
893322cbb50SChristoph Hellwig static inline void bd_unlink_disk_holder(struct block_device *bdev,
894322cbb50SChristoph Hellwig 					 struct gendisk *disk)
895322cbb50SChristoph Hellwig {
896322cbb50SChristoph Hellwig }
897322cbb50SChristoph Hellwig #endif /* CONFIG_BLOCK_HOLDER_DEPRECATED */
898322cbb50SChristoph Hellwig 
899322cbb50SChristoph Hellwig dev_t part_devt(struct gendisk *disk, u8 partno);
900322cbb50SChristoph Hellwig void inc_diskseq(struct gendisk *disk);
901322cbb50SChristoph Hellwig void blk_request_module(dev_t devt);
9022d4dc890SIlya Loginov 
9031da177e4SLinus Torvalds extern int blk_register_queue(struct gendisk *disk);
9041da177e4SLinus Torvalds extern void blk_unregister_queue(struct gendisk *disk);
9053e08773cSChristoph Hellwig void submit_bio_noacct(struct bio *bio);
9065a97806fSChristoph Hellwig struct bio *bio_split_to_limits(struct bio *bio);
90724b83debSChristoph Hellwig 
908ef9e3facSKiyoshi Ueda extern int blk_lld_busy(struct request_queue *q);
9099a95e4efSBart Van Assche extern int blk_queue_enter(struct request_queue *q, blk_mq_req_flags_t flags);
9102e6edc95SDan Williams extern void blk_queue_exit(struct request_queue *q);
9111da177e4SLinus Torvalds extern void blk_sync_queue(struct request_queue *q);
912fb9b16e1SKeith Busch 
913e47bc4edSChaitanya Kulkarni /* Helper to convert REQ_OP_XXX to its string format XXX */
91477e7ffd7SBart Van Assche extern const char *blk_op_str(enum req_op op);
915e47bc4edSChaitanya Kulkarni 
9162a842acaSChristoph Hellwig int blk_status_to_errno(blk_status_t status);
9172a842acaSChristoph Hellwig blk_status_t errno_to_blk_status(int errno);
9187ba37927SKent Overstreet const char *blk_status_to_str(blk_status_t status);
9192a842acaSChristoph Hellwig 
920ef99b2d3SChristoph Hellwig /* only poll the hardware once, don't continue until a completion was found */
921ef99b2d3SChristoph Hellwig #define BLK_POLL_ONESHOT		(1 << 0)
9225a72e899SJens Axboe int bio_poll(struct bio *bio, struct io_comp_batch *iob, unsigned int flags);
9235a72e899SJens Axboe int iocb_bio_iopoll(struct kiocb *kiocb, struct io_comp_batch *iob,
9245a72e899SJens Axboe 			unsigned int flags);
92505229beeSJens Axboe 
926165125e1SJens Axboe static inline struct request_queue *bdev_get_queue(struct block_device *bdev)
9271da177e4SLinus Torvalds {
92817220ca5SPavel Begunkov 	return bdev->bd_queue;	/* this is never NULL */
9291da177e4SLinus Torvalds }
9301da177e4SLinus Torvalds 
93102694e86SChaitanya Kulkarni /* Helper to convert BLK_ZONE_ZONE_XXX to its string format XXX */
93202694e86SChaitanya Kulkarni const char *blk_zone_cond_str(enum blk_zone_cond zone_cond);
93302694e86SChaitanya Kulkarni 
934d0ea6bdeSDamien Le Moal static inline unsigned int bio_zone_no(struct bio *bio)
935d0ea6bdeSDamien Le Moal {
936d86e716aSChristoph Hellwig 	return disk_zone_no(bio->bi_bdev->bd_disk, bio->bi_iter.bi_sector);
937d0ea6bdeSDamien Le Moal }
938d0ea6bdeSDamien Le Moal 
939b85a3c1bSDamien Le Moal static inline bool bio_straddles_zones(struct bio *bio)
940d0ea6bdeSDamien Le Moal {
941b85a3c1bSDamien Le Moal 	return bio_sectors(bio) &&
942b85a3c1bSDamien Le Moal 		bio_zone_no(bio) !=
943b85a3c1bSDamien Le Moal 		disk_zone_no(bio->bi_bdev->bd_disk, bio_end_sector(bio) - 1);
944d0ea6bdeSDamien Le Moal }
9456cc77e9cSChristoph Hellwig 
946762380adSJens Axboe /*
947f70167a7SJohn Garry  * Return how much within the boundary is left to be used for I/O at a given
948f70167a7SJohn Garry  * offset.
9498689461bSChristoph Hellwig  */
950f70167a7SJohn Garry static inline unsigned int blk_boundary_sectors_left(sector_t offset,
951f70167a7SJohn Garry 		unsigned int boundary_sectors)
9528689461bSChristoph Hellwig {
953f70167a7SJohn Garry 	if (unlikely(!is_power_of_2(boundary_sectors)))
954f70167a7SJohn Garry 		return boundary_sectors - sector_div(offset, boundary_sectors);
955f70167a7SJohn Garry 	return boundary_sectors - (offset & (boundary_sectors - 1));
9568689461bSChristoph Hellwig }
9578689461bSChristoph Hellwig 
958d690cb8aSChristoph Hellwig /**
959d690cb8aSChristoph Hellwig  * queue_limits_start_update - start an atomic update of queue limits
960d690cb8aSChristoph Hellwig  * @q:		queue to update
961d690cb8aSChristoph Hellwig  *
962d690cb8aSChristoph Hellwig  * This functions starts an atomic update of the queue limits.  It takes a lock
963d690cb8aSChristoph Hellwig  * to prevent other updates and returns a snapshot of the current limits that
964d690cb8aSChristoph Hellwig  * the caller can modify.  The caller must call queue_limits_commit_update()
965d690cb8aSChristoph Hellwig  * to finish the update.
966d690cb8aSChristoph Hellwig  *
9679c96821bSChristoph Hellwig  * Context: process context.
968d690cb8aSChristoph Hellwig  */
969d690cb8aSChristoph Hellwig static inline struct queue_limits
970d690cb8aSChristoph Hellwig queue_limits_start_update(struct request_queue *q)
971d690cb8aSChristoph Hellwig {
972d690cb8aSChristoph Hellwig 	mutex_lock(&q->limits_lock);
973d690cb8aSChristoph Hellwig 	return q->limits;
974d690cb8aSChristoph Hellwig }
975aa427d7bSChristoph Hellwig int queue_limits_commit_update_frozen(struct request_queue *q,
976aa427d7bSChristoph Hellwig 		struct queue_limits *lim);
977d690cb8aSChristoph Hellwig int queue_limits_commit_update(struct request_queue *q,
978d690cb8aSChristoph Hellwig 		struct queue_limits *lim);
979631d4efbSChristoph Hellwig int queue_limits_set(struct request_queue *q, struct queue_limits *lim);
980470d2bc3SChristoph Hellwig int blk_validate_limits(struct queue_limits *lim);
981d690cb8aSChristoph Hellwig 
98229306626SChristoph Hellwig /**
98329306626SChristoph Hellwig  * queue_limits_cancel_update - cancel an atomic update of queue limits
98429306626SChristoph Hellwig  * @q:		queue to update
98529306626SChristoph Hellwig  *
98629306626SChristoph Hellwig  * This functions cancels an atomic update of the queue limits started by
98729306626SChristoph Hellwig  * queue_limits_start_update() and should be used when an error occurs after
98829306626SChristoph Hellwig  * starting update.
98929306626SChristoph Hellwig  */
99029306626SChristoph Hellwig static inline void queue_limits_cancel_update(struct request_queue *q)
99129306626SChristoph Hellwig {
99229306626SChristoph Hellwig 	mutex_unlock(&q->limits_lock);
99329306626SChristoph Hellwig }
99429306626SChristoph Hellwig 
9958689461bSChristoph Hellwig /*
99673e3715eSChristoph Hellwig  * These helpers are for drivers that have sloppy feature negotiation and might
99773e3715eSChristoph Hellwig  * have to disable DISCARD, WRITE_ZEROES or SECURE_DISCARD from the I/O
99873e3715eSChristoph Hellwig  * completion handler when the device returned an indicator that the respective
99973e3715eSChristoph Hellwig  * feature is not actually supported.  They are racy and the driver needs to
100073e3715eSChristoph Hellwig  * cope with that.  Try to avoid this scheme if you can.
100173e3715eSChristoph Hellwig  */
100273e3715eSChristoph Hellwig static inline void blk_queue_disable_discard(struct request_queue *q)
100373e3715eSChristoph Hellwig {
100473e3715eSChristoph Hellwig 	q->limits.max_discard_sectors = 0;
100573e3715eSChristoph Hellwig }
100673e3715eSChristoph Hellwig 
100773e3715eSChristoph Hellwig static inline void blk_queue_disable_secure_erase(struct request_queue *q)
100873e3715eSChristoph Hellwig {
100973e3715eSChristoph Hellwig 	q->limits.max_secure_erase_sectors = 0;
101073e3715eSChristoph Hellwig }
101173e3715eSChristoph Hellwig 
101273e3715eSChristoph Hellwig static inline void blk_queue_disable_write_zeroes(struct request_queue *q)
101373e3715eSChristoph Hellwig {
101473e3715eSChristoph Hellwig 	q->limits.max_write_zeroes_sectors = 0;
101573e3715eSChristoph Hellwig }
101673e3715eSChristoph Hellwig 
101773e3715eSChristoph Hellwig /*
10181da177e4SLinus Torvalds  * Access functions for manipulating queue properties
10191da177e4SLinus Torvalds  */
1020d278d4a8SJens Axboe extern void blk_set_queue_depth(struct request_queue *q, unsigned int depth);
1021b1bd055dSMartin K. Petersen extern void blk_set_stacking_limits(struct queue_limits *lim);
1022c72758f3SMartin K. Petersen extern int blk_stack_limits(struct queue_limits *t, struct queue_limits *b,
1023c72758f3SMartin K. Petersen 			    sector_t offset);
1024c1373f1cSChristoph Hellwig void queue_limits_stack_bdev(struct queue_limits *t, struct block_device *bdev,
1025c1373f1cSChristoph Hellwig 		sector_t offset, const char *pfx);
1026242f9dcbSJens Axboe extern void blk_queue_rq_timeout(struct request_queue *, unsigned int);
10272e9bc346SChristoph Hellwig 
1028a2247f19SDamien Le Moal struct blk_independent_access_ranges *
1029a2247f19SDamien Le Moal disk_alloc_independent_access_ranges(struct gendisk *disk, int nr_ia_ranges);
1030a2247f19SDamien Le Moal void disk_set_independent_access_ranges(struct gendisk *disk,
1031a2247f19SDamien Le Moal 				struct blk_independent_access_ranges *iars);
1032a2247f19SDamien Le Moal 
103309ac46c4STejun Heo bool __must_check blk_get_queue(struct request_queue *);
1034165125e1SJens Axboe extern void blk_put_queue(struct request_queue *);
10357a5428dcSChristoph Hellwig 
10367a5428dcSChristoph Hellwig void blk_mark_disk_dead(struct gendisk *disk);
10371da177e4SLinus Torvalds 
1038a3396b99SChristoph Hellwig struct rq_list {
1039a3396b99SChristoph Hellwig 	struct request *head;
1040a3396b99SChristoph Hellwig 	struct request *tail;
1041a3396b99SChristoph Hellwig };
1042a3396b99SChristoph Hellwig 
1043957860cbSJens Axboe #ifdef CONFIG_BLOCK
1044316cc67dSShaohua Li /*
104575df7136SSuresh Jayaraman  * blk_plug permits building a queue of related requests by holding the I/O
104675df7136SSuresh Jayaraman  * fragments for a short period. This allows merging of sequential requests
104775df7136SSuresh Jayaraman  * into single larger request. As the requests are moved from a per-task list to
104875df7136SSuresh Jayaraman  * the device's request_queue in a batch, this results in improved scalability
104975df7136SSuresh Jayaraman  * as the lock contention for request_queue lock is reduced.
105075df7136SSuresh Jayaraman  *
105175df7136SSuresh Jayaraman  * It is ok not to disable preemption when adding the request to the plug list
1052008f75a2SChristoph Hellwig  * or when attempting a merge. For details, please see schedule() where
1053008f75a2SChristoph Hellwig  * blk_flush_plug() is called.
1054316cc67dSShaohua Li  */
105573c10101SJens Axboe struct blk_plug {
1056a3396b99SChristoph Hellwig 	struct rq_list mq_list; /* blk-mq requests */
105747c122e3SJens Axboe 
105847c122e3SJens Axboe 	/* if ios_left is > 1, we can batch tag/rq allocations */
1059a3396b99SChristoph Hellwig 	struct rq_list cached_rqs;
1060da4c8c3dSJens Axboe 	u64 cur_ktime;
106147c122e3SJens Axboe 	unsigned short nr_ios;
106247c122e3SJens Axboe 
10635f0ed774SJens Axboe 	unsigned short rq_count;
106447c122e3SJens Axboe 
1065ce5b009cSJens Axboe 	bool multiple_queues;
1066dc5fc361SJens Axboe 	bool has_elevator;
106747c122e3SJens Axboe 
106847c122e3SJens Axboe 	struct list_head cb_list; /* md requires an unplug callback */
106973c10101SJens Axboe };
107055c022bbSShaohua Li 
10719cbb1750SNeilBrown struct blk_plug_cb;
107274018dc3SNeilBrown typedef void (*blk_plug_cb_fn)(struct blk_plug_cb *, bool);
1073048c9374SNeilBrown struct blk_plug_cb {
1074048c9374SNeilBrown 	struct list_head list;
10759cbb1750SNeilBrown 	blk_plug_cb_fn callback;
10769cbb1750SNeilBrown 	void *data;
1077048c9374SNeilBrown };
10789cbb1750SNeilBrown extern struct blk_plug_cb *blk_check_plugged(blk_plug_cb_fn unplug,
10799cbb1750SNeilBrown 					     void *data, int size);
108073c10101SJens Axboe extern void blk_start_plug(struct blk_plug *);
108147c122e3SJens Axboe extern void blk_start_plug_nr_ios(struct blk_plug *, unsigned short);
108273c10101SJens Axboe extern void blk_finish_plug(struct blk_plug *);
108373c10101SJens Axboe 
1084aa8dcccaSChristoph Hellwig void __blk_flush_plug(struct blk_plug *plug, bool from_schedule);
1085aa8dcccaSChristoph Hellwig static inline void blk_flush_plug(struct blk_plug *plug, bool async)
108673c10101SJens Axboe {
1087aa8dcccaSChristoph Hellwig 	if (plug)
1088aa8dcccaSChristoph Hellwig 		__blk_flush_plug(plug, async);
108973c10101SJens Axboe }
109073c10101SJens Axboe 
109106b23f92SJens Axboe /*
109206b23f92SJens Axboe  * tsk == current here
109306b23f92SJens Axboe  */
109406b23f92SJens Axboe static inline void blk_plug_invalidate_ts(struct task_struct *tsk)
109506b23f92SJens Axboe {
109606b23f92SJens Axboe 	struct blk_plug *plug = tsk->plug;
109706b23f92SJens Axboe 
109806b23f92SJens Axboe 	if (plug)
109906b23f92SJens Axboe 		plug->cur_ktime = 0;
110006b23f92SJens Axboe 	current->flags &= ~PF_BLOCK_TS;
110106b23f92SJens Axboe }
110206b23f92SJens Axboe 
1103c6bf3f0eSChristoph Hellwig int blkdev_issue_flush(struct block_device *bdev);
11041a4dcfa8SChristoph Hellwig long nr_blockdev_pages(void);
11051a4dcfa8SChristoph Hellwig #else /* CONFIG_BLOCK */
11061a4dcfa8SChristoph Hellwig struct blk_plug {
11071a4dcfa8SChristoph Hellwig };
11081a4dcfa8SChristoph Hellwig 
110947c122e3SJens Axboe static inline void blk_start_plug_nr_ios(struct blk_plug *plug,
111047c122e3SJens Axboe 					 unsigned short nr_ios)
111147c122e3SJens Axboe {
111247c122e3SJens Axboe }
111347c122e3SJens Axboe 
11141a4dcfa8SChristoph Hellwig static inline void blk_start_plug(struct blk_plug *plug)
11151a4dcfa8SChristoph Hellwig {
11161a4dcfa8SChristoph Hellwig }
11171a4dcfa8SChristoph Hellwig 
11181a4dcfa8SChristoph Hellwig static inline void blk_finish_plug(struct blk_plug *plug)
11191a4dcfa8SChristoph Hellwig {
11201a4dcfa8SChristoph Hellwig }
11211a4dcfa8SChristoph Hellwig 
1122008f75a2SChristoph Hellwig static inline void blk_flush_plug(struct blk_plug *plug, bool async)
11231a4dcfa8SChristoph Hellwig {
11241a4dcfa8SChristoph Hellwig }
11251a4dcfa8SChristoph Hellwig 
112606b23f92SJens Axboe static inline void blk_plug_invalidate_ts(struct task_struct *tsk)
112706b23f92SJens Axboe {
112806b23f92SJens Axboe }
112906b23f92SJens Axboe 
1130c6bf3f0eSChristoph Hellwig static inline int blkdev_issue_flush(struct block_device *bdev)
11311a4dcfa8SChristoph Hellwig {
11321a4dcfa8SChristoph Hellwig 	return 0;
11331a4dcfa8SChristoph Hellwig }
11341a4dcfa8SChristoph Hellwig 
11351a4dcfa8SChristoph Hellwig static inline long nr_blockdev_pages(void)
11361a4dcfa8SChristoph Hellwig {
11371a4dcfa8SChristoph Hellwig 	return 0;
11381a4dcfa8SChristoph Hellwig }
11391a4dcfa8SChristoph Hellwig #endif /* CONFIG_BLOCK */
11401a4dcfa8SChristoph Hellwig 
114171ac860aSMing Lei extern void blk_io_schedule(void);
114271ac860aSMing Lei 
114344abff2cSChristoph Hellwig int blkdev_issue_discard(struct block_device *bdev, sector_t sector,
114444abff2cSChristoph Hellwig 		sector_t nr_sects, gfp_t gfp_mask);
114544abff2cSChristoph Hellwig int __blkdev_issue_discard(struct block_device *bdev, sector_t sector,
114644abff2cSChristoph Hellwig 		sector_t nr_sects, gfp_t gfp_mask, struct bio **biop);
114744abff2cSChristoph Hellwig int blkdev_issue_secure_erase(struct block_device *bdev, sector_t sector,
114844abff2cSChristoph Hellwig 		sector_t nr_sects, gfp_t gfp);
1149ee472d83SChristoph Hellwig 
1150ee472d83SChristoph Hellwig #define BLKDEV_ZERO_NOUNMAP	(1 << 0)  /* do not free blocks */
1151cb365b96SChristoph Hellwig #define BLKDEV_ZERO_NOFALLBACK	(1 << 1)  /* don't write explicit zeroes */
1152bf86bcdbSChristoph Hellwig #define BLKDEV_ZERO_KILLABLE	(1 << 2)  /* interruptible by fatal signals */
1153ee472d83SChristoph Hellwig 
1154e73c23ffSChaitanya Kulkarni extern int __blkdev_issue_zeroout(struct block_device *bdev, sector_t sector,
1155e73c23ffSChaitanya Kulkarni 		sector_t nr_sects, gfp_t gfp_mask, struct bio **biop,
1156ee472d83SChristoph Hellwig 		unsigned flags);
11573f14d792SDmitry Monakhov extern int blkdev_issue_zeroout(struct block_device *bdev, sector_t sector,
1158ee472d83SChristoph Hellwig 		sector_t nr_sects, gfp_t gfp_mask, unsigned flags);
1159ee472d83SChristoph Hellwig 
11602cf6d26aSChristoph Hellwig static inline int sb_issue_discard(struct super_block *sb, sector_t block,
11612cf6d26aSChristoph Hellwig 		sector_t nr_blocks, gfp_t gfp_mask, unsigned long flags)
1162fb2dce86SDavid Woodhouse {
1163233bde21SBart Van Assche 	return blkdev_issue_discard(sb->s_bdev,
1164233bde21SBart Van Assche 				    block << (sb->s_blocksize_bits -
1165233bde21SBart Van Assche 					      SECTOR_SHIFT),
1166233bde21SBart Van Assche 				    nr_blocks << (sb->s_blocksize_bits -
1167233bde21SBart Van Assche 						  SECTOR_SHIFT),
116844abff2cSChristoph Hellwig 				    gfp_mask);
1169fb2dce86SDavid Woodhouse }
1170e6fa0be6SLukas Czerner static inline int sb_issue_zeroout(struct super_block *sb, sector_t block,
1171a107e5a3STheodore Ts'o 		sector_t nr_blocks, gfp_t gfp_mask)
1172e6fa0be6SLukas Czerner {
1173e6fa0be6SLukas Czerner 	return blkdev_issue_zeroout(sb->s_bdev,
1174233bde21SBart Van Assche 				    block << (sb->s_blocksize_bits -
1175233bde21SBart Van Assche 					      SECTOR_SHIFT),
1176233bde21SBart Van Assche 				    nr_blocks << (sb->s_blocksize_bits -
1177233bde21SBart Van Assche 						  SECTOR_SHIFT),
1178ee472d83SChristoph Hellwig 				    gfp_mask, 0);
1179e6fa0be6SLukas Czerner }
11801da177e4SLinus Torvalds 
1181fa01b1e9SChristoph Hellwig static inline bool bdev_is_partition(struct block_device *bdev)
1182fa01b1e9SChristoph Hellwig {
1183b8c873edSAl Viro 	return bdev_partno(bdev) != 0;
1184fa01b1e9SChristoph Hellwig }
1185fa01b1e9SChristoph Hellwig 
1186eb28d31bSMartin K. Petersen enum blk_default_limits {
1187eb28d31bSMartin K. Petersen 	BLK_MAX_SEGMENTS	= 128,
1188eb28d31bSMartin K. Petersen 	BLK_SAFE_MAX_SECTORS	= 255,
1189eb28d31bSMartin K. Petersen 	BLK_MAX_SEGMENT_SIZE	= 65536,
1190eb28d31bSMartin K. Petersen 	BLK_SEG_BOUNDARY_MASK	= 0xFFFFFFFFUL,
1191eb28d31bSMartin K. Petersen };
11920e435ac2SMilan Broz 
1193d6b9f4e6SChristoph Hellwig /*
1194d6b9f4e6SChristoph Hellwig  * Default upper limit for the software max_sectors limit used for
1195d6b9f4e6SChristoph Hellwig  * regular file system I/O.  This can be increased through sysfs.
1196d6b9f4e6SChristoph Hellwig  *
1197d6b9f4e6SChristoph Hellwig  * Not to be confused with the max_hw_sector limit that is entirely
1198d6b9f4e6SChristoph Hellwig  * controlled by the driver, usually based on hardware limits.
1199d6b9f4e6SChristoph Hellwig  */
1200d6b9f4e6SChristoph Hellwig #define BLK_DEF_MAX_SECTORS_CAP	2560u
12010a26f327SKeith Busch 
12022f5a65efSChristoph Hellwig static inline struct queue_limits *bdev_limits(struct block_device *bdev)
12032f5a65efSChristoph Hellwig {
12042f5a65efSChristoph Hellwig 	return &bdev_get_queue(bdev)->limits;
12052f5a65efSChristoph Hellwig }
12062f5a65efSChristoph Hellwig 
1207af2c68feSBart Van Assche static inline unsigned long queue_segment_boundary(const struct request_queue *q)
1208ae03bf63SMartin K. Petersen {
1209025146e1SMartin K. Petersen 	return q->limits.seg_boundary_mask;
1210ae03bf63SMartin K. Petersen }
1211ae03bf63SMartin K. Petersen 
1212af2c68feSBart Van Assche static inline unsigned long queue_virt_boundary(const struct request_queue *q)
121303100aadSKeith Busch {
121403100aadSKeith Busch 	return q->limits.virt_boundary_mask;
121503100aadSKeith Busch }
121603100aadSKeith Busch 
1217af2c68feSBart Van Assche static inline unsigned int queue_max_sectors(const struct request_queue *q)
1218ae03bf63SMartin K. Petersen {
1219025146e1SMartin K. Petersen 	return q->limits.max_sectors;
1220ae03bf63SMartin K. Petersen }
1221ae03bf63SMartin K. Petersen 
1222547e2f70SChristoph Hellwig static inline unsigned int queue_max_bytes(struct request_queue *q)
1223547e2f70SChristoph Hellwig {
1224547e2f70SChristoph Hellwig 	return min_t(unsigned int, queue_max_sectors(q), INT_MAX >> 9) << 9;
1225547e2f70SChristoph Hellwig }
1226547e2f70SChristoph Hellwig 
1227af2c68feSBart Van Assche static inline unsigned int queue_max_hw_sectors(const struct request_queue *q)
1228ae03bf63SMartin K. Petersen {
1229025146e1SMartin K. Petersen 	return q->limits.max_hw_sectors;
1230ae03bf63SMartin K. Petersen }
1231ae03bf63SMartin K. Petersen 
1232af2c68feSBart Van Assche static inline unsigned short queue_max_segments(const struct request_queue *q)
1233ae03bf63SMartin K. Petersen {
12348a78362cSMartin K. Petersen 	return q->limits.max_segments;
1235ae03bf63SMartin K. Petersen }
1236ae03bf63SMartin K. Petersen 
1237af2c68feSBart Van Assche static inline unsigned short queue_max_discard_segments(const struct request_queue *q)
12381e739730SChristoph Hellwig {
12391e739730SChristoph Hellwig 	return q->limits.max_discard_segments;
12401e739730SChristoph Hellwig }
12411e739730SChristoph Hellwig 
1242af2c68feSBart Van Assche static inline unsigned int queue_max_segment_size(const struct request_queue *q)
1243ae03bf63SMartin K. Petersen {
1244025146e1SMartin K. Petersen 	return q->limits.max_segment_size;
1245ae03bf63SMartin K. Petersen }
1246ae03bf63SMartin K. Petersen 
1247ccdbf0aaSDamien Le Moal static inline bool queue_emulates_zone_append(struct request_queue *q)
1248ccdbf0aaSDamien Le Moal {
1249559218d4SChristoph Hellwig 	return blk_queue_is_zoned(q) && !q->limits.max_hw_zone_append_sectors;
1250ccdbf0aaSDamien Le Moal }
1251ccdbf0aaSDamien Le Moal 
1252ccdbf0aaSDamien Le Moal static inline bool bdev_emulates_zone_append(struct block_device *bdev)
1253ccdbf0aaSDamien Le Moal {
1254ccdbf0aaSDamien Le Moal 	return queue_emulates_zone_append(bdev_get_queue(bdev));
12550512a75bSKeith Busch }
12560512a75bSKeith Busch 
12572aba0d19SChristoph Hellwig static inline unsigned int
12582aba0d19SChristoph Hellwig bdev_max_zone_append_sectors(struct block_device *bdev)
12592aba0d19SChristoph Hellwig {
1260559218d4SChristoph Hellwig 	return bdev_limits(bdev)->max_zone_append_sectors;
12612aba0d19SChristoph Hellwig }
12622aba0d19SChristoph Hellwig 
126365ea1b66SNaohiro Aota static inline unsigned int bdev_max_segments(struct block_device *bdev)
126465ea1b66SNaohiro Aota {
126565ea1b66SNaohiro Aota 	return queue_max_segments(bdev_get_queue(bdev));
126665ea1b66SNaohiro Aota }
126765ea1b66SNaohiro Aota 
1268ad6bf88aSMikulas Patocka static inline unsigned queue_logical_block_size(const struct request_queue *q)
12691da177e4SLinus Torvalds {
12705476394aSChristoph Hellwig 	return q->limits.logical_block_size;
12711da177e4SLinus Torvalds }
12721da177e4SLinus Torvalds 
1273ad6bf88aSMikulas Patocka static inline unsigned int bdev_logical_block_size(struct block_device *bdev)
12741da177e4SLinus Torvalds {
1275e1defc4fSMartin K. Petersen 	return queue_logical_block_size(bdev_get_queue(bdev));
12761da177e4SLinus Torvalds }
12771da177e4SLinus Torvalds 
1278af2c68feSBart Van Assche static inline unsigned int queue_physical_block_size(const struct request_queue *q)
1279c72758f3SMartin K. Petersen {
1280c72758f3SMartin K. Petersen 	return q->limits.physical_block_size;
1281c72758f3SMartin K. Petersen }
1282c72758f3SMartin K. Petersen 
1283892b6f90SMartin K. Petersen static inline unsigned int bdev_physical_block_size(struct block_device *bdev)
1284ac481c20SMartin K. Petersen {
1285ac481c20SMartin K. Petersen 	return queue_physical_block_size(bdev_get_queue(bdev));
1286ac481c20SMartin K. Petersen }
1287ac481c20SMartin K. Petersen 
1288af2c68feSBart Van Assche static inline unsigned int queue_io_min(const struct request_queue *q)
1289c72758f3SMartin K. Petersen {
1290c72758f3SMartin K. Petersen 	return q->limits.io_min;
1291c72758f3SMartin K. Petersen }
1292c72758f3SMartin K. Petersen 
129346fd48abSChristoph Hellwig static inline unsigned int bdev_io_min(struct block_device *bdev)
1294ac481c20SMartin K. Petersen {
1295ac481c20SMartin K. Petersen 	return queue_io_min(bdev_get_queue(bdev));
1296ac481c20SMartin K. Petersen }
1297ac481c20SMartin K. Petersen 
1298af2c68feSBart Van Assche static inline unsigned int queue_io_opt(const struct request_queue *q)
1299c72758f3SMartin K. Petersen {
1300c72758f3SMartin K. Petersen 	return q->limits.io_opt;
1301c72758f3SMartin K. Petersen }
1302c72758f3SMartin K. Petersen 
13035a9d1b83SChristoph Hellwig static inline unsigned int bdev_io_opt(struct block_device *bdev)
1304ac481c20SMartin K. Petersen {
1305ac481c20SMartin K. Petersen 	return queue_io_opt(bdev_get_queue(bdev));
1306ac481c20SMartin K. Petersen }
1307ac481c20SMartin K. Petersen 
1308a805a4faSDamien Le Moal static inline unsigned int
1309a805a4faSDamien Le Moal queue_zone_write_granularity(const struct request_queue *q)
1310a805a4faSDamien Le Moal {
1311a805a4faSDamien Le Moal 	return q->limits.zone_write_granularity;
1312a805a4faSDamien Le Moal }
1313a805a4faSDamien Le Moal 
1314a805a4faSDamien Le Moal static inline unsigned int
1315a805a4faSDamien Le Moal bdev_zone_write_granularity(struct block_device *bdev)
1316a805a4faSDamien Le Moal {
1317a805a4faSDamien Le Moal 	return queue_zone_write_granularity(bdev_get_queue(bdev));
1318a805a4faSDamien Le Moal }
1319a805a4faSDamien Le Moal 
132089098b07SChristoph Hellwig int bdev_alignment_offset(struct block_device *bdev);
13215c4b4a5cSChristoph Hellwig unsigned int bdev_discard_alignment(struct block_device *bdev);
1322c6e66634SPaolo Bonzini 
1323cf0fbf89SChristoph Hellwig static inline unsigned int bdev_max_discard_sectors(struct block_device *bdev)
1324cf0fbf89SChristoph Hellwig {
13252f5a65efSChristoph Hellwig 	return bdev_limits(bdev)->max_discard_sectors;
1326cf0fbf89SChristoph Hellwig }
1327cf0fbf89SChristoph Hellwig 
13287b47ef52SChristoph Hellwig static inline unsigned int bdev_discard_granularity(struct block_device *bdev)
13297b47ef52SChristoph Hellwig {
13302f5a65efSChristoph Hellwig 	return bdev_limits(bdev)->discard_granularity;
13317b47ef52SChristoph Hellwig }
13327b47ef52SChristoph Hellwig 
133344abff2cSChristoph Hellwig static inline unsigned int
133444abff2cSChristoph Hellwig bdev_max_secure_erase_sectors(struct block_device *bdev)
133544abff2cSChristoph Hellwig {
13362f5a65efSChristoph Hellwig 	return bdev_limits(bdev)->max_secure_erase_sectors;
133744abff2cSChristoph Hellwig }
133844abff2cSChristoph Hellwig 
1339a6f0788eSChaitanya Kulkarni static inline unsigned int bdev_write_zeroes_sectors(struct block_device *bdev)
1340a6f0788eSChaitanya Kulkarni {
13412f5a65efSChristoph Hellwig 	return bdev_limits(bdev)->max_write_zeroes_sectors;
1342a6f0788eSChaitanya Kulkarni }
1343a6f0788eSChaitanya Kulkarni 
134410f0d2a5SChristoph Hellwig static inline bool bdev_nonrot(struct block_device *bdev)
134510f0d2a5SChristoph Hellwig {
134610f0d2a5SChristoph Hellwig 	return blk_queue_nonrot(bdev_get_queue(bdev));
134710f0d2a5SChristoph Hellwig }
134810f0d2a5SChristoph Hellwig 
13493222d8c2SChristoph Hellwig static inline bool bdev_synchronous(struct block_device *bdev)
13503222d8c2SChristoph Hellwig {
1351aadd5c59SChristoph Hellwig 	return bdev->bd_disk->queue->limits.features & BLK_FEAT_SYNCHRONOUS;
13523222d8c2SChristoph Hellwig }
13533222d8c2SChristoph Hellwig 
135436d25489SChristoph Hellwig static inline bool bdev_stable_writes(struct block_device *bdev)
135536d25489SChristoph Hellwig {
13563c3e85ddSChristoph Hellwig 	struct request_queue *q = bdev_get_queue(bdev);
13573c3e85ddSChristoph Hellwig 
1358c6e56cf6SChristoph Hellwig 	if (IS_ENABLED(CONFIG_BLK_DEV_INTEGRITY) &&
1359c6e56cf6SChristoph Hellwig 	    q->limits.integrity.csum_type != BLK_INTEGRITY_CSUM_NONE)
13603c3e85ddSChristoph Hellwig 		return true;
13611a02f3a7SChristoph Hellwig 	return q->limits.features & BLK_FEAT_STABLE_WRITES;
136236d25489SChristoph Hellwig }
136336d25489SChristoph Hellwig 
13641122c0c1SChristoph Hellwig static inline bool blk_queue_write_cache(struct request_queue *q)
13651122c0c1SChristoph Hellwig {
13661122c0c1SChristoph Hellwig 	return (q->limits.features & BLK_FEAT_WRITE_CACHE) &&
1367bae1c743SChristoph Hellwig 		!(q->limits.flags & BLK_FLAG_WRITE_CACHE_DISABLED);
136808e688fdSChristoph Hellwig }
1369a557e82eSChristoph Hellwig 
1370a557e82eSChristoph Hellwig static inline bool bdev_write_cache(struct block_device *bdev)
1371a557e82eSChristoph Hellwig {
13721122c0c1SChristoph Hellwig 	return blk_queue_write_cache(bdev_get_queue(bdev));
1373797476b8SDamien Le Moal }
1374797476b8SDamien Le Moal 
1375a557e82eSChristoph Hellwig static inline bool bdev_fua(struct block_device *bdev)
1376a557e82eSChristoph Hellwig {
13772f5a65efSChristoph Hellwig 	return bdev_limits(bdev)->features & BLK_FEAT_FUA;
1378a557e82eSChristoph Hellwig }
1379a557e82eSChristoph Hellwig 
1380568ec936SChristoph Hellwig static inline bool bdev_nowait(struct block_device *bdev)
1381568ec936SChristoph Hellwig {
1382f76af42fSChristoph Hellwig 	return bdev->bd_disk->queue->limits.features & BLK_FEAT_NOWAIT;
1383568ec936SChristoph Hellwig }
1384568ec936SChristoph Hellwig 
1385797476b8SDamien Le Moal static inline bool bdev_is_zoned(struct block_device *bdev)
1386797476b8SDamien Le Moal {
1387fea127b3SPankaj Raghav 	return blk_queue_is_zoned(bdev_get_queue(bdev));
1388797476b8SDamien Le Moal }
1389797476b8SDamien Le Moal 
1390d67ea690SPankaj Raghav static inline unsigned int bdev_zone_no(struct block_device *bdev, sector_t sec)
1391d67ea690SPankaj Raghav {
1392d67ea690SPankaj Raghav 	return disk_zone_no(bdev->bd_disk, sec);
1393d67ea690SPankaj Raghav }
1394d67ea690SPankaj Raghav 
1395113ab72eSDamien Le Moal static inline sector_t bdev_zone_sectors(struct block_device *bdev)
13966a0cb1bcSHannes Reinecke {
13976a0cb1bcSHannes Reinecke 	struct request_queue *q = bdev_get_queue(bdev);
13986a0cb1bcSHannes Reinecke 
1399de71973cSChristoph Hellwig 	if (!blk_queue_is_zoned(q))
14006cc77e9cSChristoph Hellwig 		return 0;
1401de71973cSChristoph Hellwig 	return q->limits.chunk_sectors;
14026cc77e9cSChristoph Hellwig }
14036a0cb1bcSHannes Reinecke 
1404e29b2100SPankaj Raghav static inline sector_t bdev_offset_from_zone_start(struct block_device *bdev,
1405e29b2100SPankaj Raghav 						   sector_t sector)
1406e29b2100SPankaj Raghav {
1407e29b2100SPankaj Raghav 	return sector & (bdev_zone_sectors(bdev) - 1);
1408e29b2100SPankaj Raghav }
1409e29b2100SPankaj Raghav 
1410b85a3c1bSDamien Le Moal static inline sector_t bio_offset_from_zone_start(struct bio *bio)
1411b85a3c1bSDamien Le Moal {
1412b85a3c1bSDamien Le Moal 	return bdev_offset_from_zone_start(bio->bi_bdev,
1413b85a3c1bSDamien Le Moal 					   bio->bi_iter.bi_sector);
1414b85a3c1bSDamien Le Moal }
1415b85a3c1bSDamien Le Moal 
1416e29b2100SPankaj Raghav static inline bool bdev_is_zone_start(struct block_device *bdev,
1417e29b2100SPankaj Raghav 				      sector_t sector)
1418e29b2100SPankaj Raghav {
1419e29b2100SPankaj Raghav 	return bdev_offset_from_zone_start(bdev, sector) == 0;
1420e29b2100SPankaj Raghav }
1421e29b2100SPankaj Raghav 
1422f3d9bf05SDamien Le Moal /**
1423f3d9bf05SDamien Le Moal  * bdev_zone_is_seq - check if a sector belongs to a sequential write zone
1424f3d9bf05SDamien Le Moal  * @bdev:	block device to check
1425f3d9bf05SDamien Le Moal  * @sector:	sector number
1426f3d9bf05SDamien Le Moal  *
1427f3d9bf05SDamien Le Moal  * Check if @sector on @bdev is contained in a sequential write required zone.
1428f3d9bf05SDamien Le Moal  */
1429f3d9bf05SDamien Le Moal static inline bool bdev_zone_is_seq(struct block_device *bdev, sector_t sector)
1430f3d9bf05SDamien Le Moal {
1431f3d9bf05SDamien Le Moal 	bool is_seq = false;
1432f3d9bf05SDamien Le Moal 
1433f3d9bf05SDamien Le Moal #if IS_ENABLED(CONFIG_BLK_DEV_ZONED)
1434f3d9bf05SDamien Le Moal 	if (bdev_is_zoned(bdev)) {
1435f3d9bf05SDamien Le Moal 		struct gendisk *disk = bdev->bd_disk;
1436f3d9bf05SDamien Le Moal 		unsigned long *bitmap;
1437f3d9bf05SDamien Le Moal 
1438f3d9bf05SDamien Le Moal 		rcu_read_lock();
1439f3d9bf05SDamien Le Moal 		bitmap = rcu_dereference(disk->conv_zones_bitmap);
1440f3d9bf05SDamien Le Moal 		is_seq = !bitmap ||
1441f3d9bf05SDamien Le Moal 			!test_bit(disk_zone_no(disk, sector), bitmap);
1442f3d9bf05SDamien Le Moal 		rcu_read_unlock();
1443f3d9bf05SDamien Le Moal 	}
1444f3d9bf05SDamien Le Moal #endif
1445f3d9bf05SDamien Le Moal 
1446f3d9bf05SDamien Le Moal 	return is_seq;
1447f3d9bf05SDamien Le Moal }
1448f3d9bf05SDamien Le Moal 
1449b76b840fSDamien Le Moal int blk_zone_issue_zeroout(struct block_device *bdev, sector_t sector,
1450b76b840fSDamien Le Moal 			   sector_t nr_sects, gfp_t gfp_mask);
1451b76b840fSDamien Le Moal 
1452ed5db174SChristoph Hellwig static inline unsigned int queue_dma_alignment(const struct request_queue *q)
14531da177e4SLinus Torvalds {
1454abfc9d81SChristoph Hellwig 	return q->limits.dma_alignment;
14551da177e4SLinus Torvalds }
14561da177e4SLinus Torvalds 
14579da3d1e9SJohn Garry static inline unsigned int
14589da3d1e9SJohn Garry queue_atomic_write_unit_max_bytes(const struct request_queue *q)
14599da3d1e9SJohn Garry {
14609da3d1e9SJohn Garry 	return q->limits.atomic_write_unit_max;
14619da3d1e9SJohn Garry }
14629da3d1e9SJohn Garry 
14639da3d1e9SJohn Garry static inline unsigned int
14649da3d1e9SJohn Garry queue_atomic_write_unit_min_bytes(const struct request_queue *q)
14659da3d1e9SJohn Garry {
14669da3d1e9SJohn Garry 	return q->limits.atomic_write_unit_min;
14679da3d1e9SJohn Garry }
14689da3d1e9SJohn Garry 
14699da3d1e9SJohn Garry static inline unsigned int
14709da3d1e9SJohn Garry queue_atomic_write_boundary_bytes(const struct request_queue *q)
14719da3d1e9SJohn Garry {
14729da3d1e9SJohn Garry 	return q->limits.atomic_write_boundary_sectors << SECTOR_SHIFT;
14739da3d1e9SJohn Garry }
14749da3d1e9SJohn Garry 
14759da3d1e9SJohn Garry static inline unsigned int
14769da3d1e9SJohn Garry queue_atomic_write_max_bytes(const struct request_queue *q)
14779da3d1e9SJohn Garry {
14789da3d1e9SJohn Garry 	return q->limits.atomic_write_max_sectors << SECTOR_SHIFT;
14791da177e4SLinus Torvalds }
14801da177e4SLinus Torvalds 
14814a2dcc35SKeith Busch static inline unsigned int bdev_dma_alignment(struct block_device *bdev)
14824a2dcc35SKeith Busch {
14834a2dcc35SKeith Busch 	return queue_dma_alignment(bdev_get_queue(bdev));
14844a2dcc35SKeith Busch }
14854a2dcc35SKeith Busch 
14865debd969SKeith Busch static inline bool bdev_iter_is_aligned(struct block_device *bdev,
14875debd969SKeith Busch 					struct iov_iter *iter)
14885debd969SKeith Busch {
14895debd969SKeith Busch 	return iov_iter_is_aligned(iter, bdev_dma_alignment(bdev),
14905debd969SKeith Busch 				   bdev_logical_block_size(bdev) - 1);
14915debd969SKeith Busch }
14925debd969SKeith Busch 
1493e769489aSChristoph Hellwig static inline unsigned int
1494e769489aSChristoph Hellwig blk_lim_dma_alignment_and_pad(struct queue_limits *lim)
1495e94b45d0SChristoph Hellwig {
1496e94b45d0SChristoph Hellwig 	return lim->dma_alignment | lim->dma_pad_mask;
1497e94b45d0SChristoph Hellwig }
1498e94b45d0SChristoph Hellwig 
1499da77d9b2SChristoph Hellwig static inline bool blk_rq_aligned(struct request_queue *q, unsigned long addr,
150087904074SFUJITA Tomonori 				 unsigned int len)
150187904074SFUJITA Tomonori {
1502e94b45d0SChristoph Hellwig 	unsigned int alignment = blk_lim_dma_alignment_and_pad(&q->limits);
1503e94b45d0SChristoph Hellwig 
150414417799SNamhyung Kim 	return !(addr & alignment) && !(len & alignment);
150587904074SFUJITA Tomonori }
150687904074SFUJITA Tomonori 
15071da177e4SLinus Torvalds /* assumes size > 256 */
15081da177e4SLinus Torvalds static inline unsigned int blksize_bits(unsigned int size)
15091da177e4SLinus Torvalds {
1510adff2158SDawei Li 	return order_base_2(size >> SECTOR_SHIFT) + SECTOR_SHIFT;
15111da177e4SLinus Torvalds }
15121da177e4SLinus Torvalds 
151359c3d45eSJens Axboe int kblockd_schedule_work(struct work_struct *work);
1514818cd1cbSJens Axboe int kblockd_mod_delayed_work_on(int cpu, struct delayed_work *dwork, unsigned long delay);
15151da177e4SLinus Torvalds 
15161da177e4SLinus Torvalds #define MODULE_ALIAS_BLOCKDEV(major,minor) \
15171da177e4SLinus Torvalds 	MODULE_ALIAS("block-major-" __stringify(major) "-" __stringify(minor))
15181da177e4SLinus Torvalds #define MODULE_ALIAS_BLOCKDEV_MAJOR(major) \
15191da177e4SLinus Torvalds 	MODULE_ALIAS("block-major-" __stringify(major) "-*")
15201da177e4SLinus Torvalds 
1521d145dc23SSatya Tangirala #ifdef CONFIG_BLK_INLINE_ENCRYPTION
1522d145dc23SSatya Tangirala 
1523cb77cb5aSEric Biggers bool blk_crypto_register(struct blk_crypto_profile *profile,
1524cb77cb5aSEric Biggers 			 struct request_queue *q);
1525d145dc23SSatya Tangirala 
1526d145dc23SSatya Tangirala #else /* CONFIG_BLK_INLINE_ENCRYPTION */
1527d145dc23SSatya Tangirala 
1528cb77cb5aSEric Biggers static inline bool blk_crypto_register(struct blk_crypto_profile *profile,
1529d145dc23SSatya Tangirala 				       struct request_queue *q)
1530d145dc23SSatya Tangirala {
1531d145dc23SSatya Tangirala 	return true;
1532d145dc23SSatya Tangirala }
1533d145dc23SSatya Tangirala 
1534d145dc23SSatya Tangirala #endif /* CONFIG_BLK_INLINE_ENCRYPTION */
1535d145dc23SSatya Tangirala 
15369208d414SChristoph Hellwig enum blk_unique_id {
15379208d414SChristoph Hellwig 	/* these match the Designator Types specified in SPC */
15389208d414SChristoph Hellwig 	BLK_UID_T10	= 1,
15399208d414SChristoph Hellwig 	BLK_UID_EUI64	= 2,
15409208d414SChristoph Hellwig 	BLK_UID_NAA	= 3,
15419208d414SChristoph Hellwig };
15429208d414SChristoph Hellwig 
154308f85851SAl Viro struct block_device_operations {
15443e08773cSChristoph Hellwig 	void (*submit_bio)(struct bio *bio);
154569fe0f29SMing Lei 	int (*poll_bio)(struct bio *bio, struct io_comp_batch *iob,
154669fe0f29SMing Lei 			unsigned int flags);
154705bdb996SChristoph Hellwig 	int (*open)(struct gendisk *disk, blk_mode_t mode);
1548ae220766SChristoph Hellwig 	void (*release)(struct gendisk *disk);
154905bdb996SChristoph Hellwig 	int (*ioctl)(struct block_device *bdev, blk_mode_t mode,
155005bdb996SChristoph Hellwig 			unsigned cmd, unsigned long arg);
155105bdb996SChristoph Hellwig 	int (*compat_ioctl)(struct block_device *bdev, blk_mode_t mode,
155205bdb996SChristoph Hellwig 			unsigned cmd, unsigned long arg);
155377ea887eSTejun Heo 	unsigned int (*check_events) (struct gendisk *disk,
155477ea887eSTejun Heo 				      unsigned int clearing);
1555c3e33e04STejun Heo 	void (*unlock_native_capacity) (struct gendisk *);
155608f85851SAl Viro 	int (*getgeo)(struct block_device *, struct hd_geometry *);
1557e00adcadSChristoph Hellwig 	int (*set_read_only)(struct block_device *bdev, bool ro);
155876792055SChristoph Hellwig 	void (*free_disk)(struct gendisk *disk);
1559b3a27d05SNitin Gupta 	/* this callback is with swap_lock and sometimes page table lock held */
1560b3a27d05SNitin Gupta 	void (*swap_slot_free_notify) (struct block_device *, unsigned long);
1561e76239a3SChristoph Hellwig 	int (*report_zones)(struct gendisk *, sector_t sector,
1562d4100351SChristoph Hellwig 			unsigned int nr_zones, report_zones_cb cb, void *data);
1563050a4f34SJens Axboe 	char *(*devnode)(struct gendisk *disk, umode_t *mode);
15649208d414SChristoph Hellwig 	/* returns the length of the identifier or a negative errno: */
15659208d414SChristoph Hellwig 	int (*get_unique_id)(struct gendisk *disk, u8 id[16],
15669208d414SChristoph Hellwig 			enum blk_unique_id id_type);
156708f85851SAl Viro 	struct module *owner;
1568bbd3e064SChristoph Hellwig 	const struct pr_ops *pr_ops;
15690bdfbca8SDmitry Osipenko 
15700bdfbca8SDmitry Osipenko 	/*
15710bdfbca8SDmitry Osipenko 	 * Special callback for probing GPT entry at a given sector.
15720bdfbca8SDmitry Osipenko 	 * Needed by Android devices, used by GPT scanner and MMC blk
15730bdfbca8SDmitry Osipenko 	 * driver.
15740bdfbca8SDmitry Osipenko 	 */
15750bdfbca8SDmitry Osipenko 	int (*alternative_gpt_sector)(struct gendisk *disk, sector_t *sector);
157608f85851SAl Viro };
157708f85851SAl Viro 
1578ee6a129dSArnd Bergmann #ifdef CONFIG_COMPAT
157905bdb996SChristoph Hellwig extern int blkdev_compat_ptr_ioctl(struct block_device *, blk_mode_t,
1580ee6a129dSArnd Bergmann 				      unsigned int, unsigned long);
1581ee6a129dSArnd Bergmann #else
1582ee6a129dSArnd Bergmann #define blkdev_compat_ptr_ioctl NULL
1583ee6a129dSArnd Bergmann #endif
1584ee6a129dSArnd Bergmann 
15850619317fSJens Axboe static inline void blk_wake_io_task(struct task_struct *waiter)
15860619317fSJens Axboe {
15870619317fSJens Axboe 	/*
15880619317fSJens Axboe 	 * If we're polling, the task itself is doing the completions. For
15890619317fSJens Axboe 	 * that case, we don't need to signal a wakeup, it's enough to just
15900619317fSJens Axboe 	 * mark us as RUNNING.
15910619317fSJens Axboe 	 */
15920619317fSJens Axboe 	if (waiter == current)
15930619317fSJens Axboe 		__set_current_state(TASK_RUNNING);
15940619317fSJens Axboe 	else
15950619317fSJens Axboe 		wake_up_process(waiter);
15960619317fSJens Axboe }
15970619317fSJens Axboe 
15985f275713SYu Kuai unsigned long bdev_start_io_acct(struct block_device *bdev, enum req_op op,
15995f0614a5SMing Lei 				 unsigned long start_time);
160077e7ffd7SBart Van Assche void bdev_end_io_acct(struct block_device *bdev, enum req_op op,
16015f275713SYu Kuai 		      unsigned int sectors, unsigned long start_time);
1602956d510eSChristoph Hellwig 
160399dfc43eSChristoph Hellwig unsigned long bio_start_io_acct(struct bio *bio);
160499dfc43eSChristoph Hellwig void bio_end_io_acct_remapped(struct bio *bio, unsigned long start_time,
160599dfc43eSChristoph Hellwig 		struct block_device *orig_bdev);
1606956d510eSChristoph Hellwig 
1607956d510eSChristoph Hellwig /**
1608956d510eSChristoph Hellwig  * bio_end_io_acct - end I/O accounting for bio based drivers
1609956d510eSChristoph Hellwig  * @bio:	bio to end account for
1610b42c1fc3SChristoph Hellwig  * @start_time:	start time returned by bio_start_io_acct()
1611956d510eSChristoph Hellwig  */
1612956d510eSChristoph Hellwig static inline void bio_end_io_acct(struct bio *bio, unsigned long start_time)
1613956d510eSChristoph Hellwig {
161499dfc43eSChristoph Hellwig 	return bio_end_io_acct_remapped(bio, start_time, bio->bi_bdev);
1615956d510eSChristoph Hellwig }
1616956d510eSChristoph Hellwig 
1617*e03463d2SDarrick J. Wong int bdev_validate_blocksize(struct block_device *bdev, int block_size);
1618ead083aeSAl Viro int set_blocksize(struct file *file, int size);
16193f1266f1SChristoph Hellwig 
16204e7b5671SChristoph Hellwig int lookup_bdev(const char *pathname, dev_t *dev);
16213f1266f1SChristoph Hellwig 
16223f1266f1SChristoph Hellwig void blkdev_show(struct seq_file *seqf, off_t offset);
16233f1266f1SChristoph Hellwig 
16243f1266f1SChristoph Hellwig #define BDEVNAME_SIZE	32	/* Largest string for a blockdev identifier */
16253f1266f1SChristoph Hellwig #define BDEVT_SIZE	10	/* Largest string for MAJ:MIN for blkdev */
16263f1266f1SChristoph Hellwig #ifdef CONFIG_BLOCK
16273f1266f1SChristoph Hellwig #define BLKDEV_MAJOR_MAX	512
16283f1266f1SChristoph Hellwig #else
16293f1266f1SChristoph Hellwig #define BLKDEV_MAJOR_MAX	0
16301da177e4SLinus Torvalds #endif
16313f1266f1SChristoph Hellwig 
16320718afd4SChristoph Hellwig struct blk_holder_ops {
1633d8530de5SChristoph Hellwig 	void (*mark_dead)(struct block_device *bdev, bool surprise);
16342142b88cSChristoph Hellwig 
16352142b88cSChristoph Hellwig 	/*
16362142b88cSChristoph Hellwig 	 * Sync the file system mounted on the block device.
16372142b88cSChristoph Hellwig 	 */
16382142b88cSChristoph Hellwig 	void (*sync)(struct block_device *bdev);
1639a30561a9SChristian Brauner 
1640a30561a9SChristian Brauner 	/*
1641a30561a9SChristian Brauner 	 * Freeze the file system mounted on the block device.
1642a30561a9SChristian Brauner 	 */
1643a30561a9SChristian Brauner 	int (*freeze)(struct block_device *bdev);
1644a30561a9SChristian Brauner 
1645a30561a9SChristian Brauner 	/*
1646a30561a9SChristian Brauner 	 * Thaw the file system mounted on the block device.
1647a30561a9SChristian Brauner 	 */
1648a30561a9SChristian Brauner 	int (*thaw)(struct block_device *bdev);
16490718afd4SChristoph Hellwig };
16500718afd4SChristoph Hellwig 
1651e419cf3eSChristian Brauner /*
1652e419cf3eSChristian Brauner  * For filesystems using @fs_holder_ops, the @holder argument passed to
1653e419cf3eSChristian Brauner  * helpers used to open and claim block devices via
1654e419cf3eSChristian Brauner  * bd_prepare_to_claim() must point to a superblock.
1655e419cf3eSChristian Brauner  */
16567ecd0b6fSChristoph Hellwig extern const struct blk_holder_ops fs_holder_ops;
16577ecd0b6fSChristoph Hellwig 
16583f0b3e78SChristoph Hellwig /*
16593f0b3e78SChristoph Hellwig  * Return the correct open flags for blkdev_get_by_* for super block flags
16603f0b3e78SChristoph Hellwig  * as stored in sb->s_flags.
16613f0b3e78SChristoph Hellwig  */
16623f0b3e78SChristoph Hellwig #define sb_open_mode(flags) \
16636f861765SJan Kara 	(BLK_OPEN_READ | BLK_OPEN_RESTRICT_WRITES | \
16646f861765SJan Kara 	 (((flags) & SB_RDONLY) ? 0 : BLK_OPEN_WRITE))
16653f0b3e78SChristoph Hellwig 
1666f3a60882SChristian Brauner struct file *bdev_file_open_by_dev(dev_t dev, blk_mode_t mode, void *holder,
1667f3a60882SChristian Brauner 		const struct blk_holder_ops *hops);
1668f3a60882SChristian Brauner struct file *bdev_file_open_by_path(const char *path, blk_mode_t mode,
1669f3a60882SChristian Brauner 		void *holder, const struct blk_holder_ops *hops);
16700718afd4SChristoph Hellwig int bd_prepare_to_claim(struct block_device *bdev, void *holder,
16710718afd4SChristoph Hellwig 		const struct blk_holder_ops *hops);
167237c3fc9aSChristoph Hellwig void bd_abort_claiming(struct block_device *bdev, void *holder);
16733f1266f1SChristoph Hellwig 
167422ae8ce8SChristoph Hellwig /* just for blk-cgroup, don't use elsewhere */
167522ae8ce8SChristoph Hellwig struct block_device *blkdev_get_no_open(dev_t dev);
167622ae8ce8SChristoph Hellwig void blkdev_put_no_open(struct block_device *bdev);
167722ae8ce8SChristoph Hellwig 
1678621c1f42SChristoph Hellwig struct block_device *I_BDEV(struct inode *inode);
1679f3a60882SChristian Brauner struct block_device *file_bdev(struct file *bdev_file);
1680186ddac2SYu Kuai bool disk_live(struct gendisk *disk);
1681186ddac2SYu Kuai unsigned int block_size(struct block_device *bdev);
16823f1266f1SChristoph Hellwig 
16833f1266f1SChristoph Hellwig #ifdef CONFIG_BLOCK
16843f1266f1SChristoph Hellwig void invalidate_bdev(struct block_device *bdev);
16853f1266f1SChristoph Hellwig int sync_blockdev(struct block_device *bdev);
168697d6fb1bSYuezhang Mo int sync_blockdev_range(struct block_device *bdev, loff_t lstart, loff_t lend);
168770164eb6SChristoph Hellwig int sync_blockdev_nowait(struct block_device *bdev);
16881e03a36bSChristoph Hellwig void sync_bdevs(bool wait);
16893e781988SLinus Torvalds void bdev_statx(struct path *, struct kstat *, u32);
1690322cbb50SChristoph Hellwig void printk_all_partitions(void);
16912577f53fSChristoph Hellwig int __init early_lookup_bdev(const char *pathname, dev_t *dev);
16923f1266f1SChristoph Hellwig #else
16933f1266f1SChristoph Hellwig static inline void invalidate_bdev(struct block_device *bdev)
16943f1266f1SChristoph Hellwig {
16953f1266f1SChristoph Hellwig }
16963f1266f1SChristoph Hellwig static inline int sync_blockdev(struct block_device *bdev)
16973f1266f1SChristoph Hellwig {
16983f1266f1SChristoph Hellwig 	return 0;
16993f1266f1SChristoph Hellwig }
170070164eb6SChristoph Hellwig static inline int sync_blockdev_nowait(struct block_device *bdev)
170170164eb6SChristoph Hellwig {
170270164eb6SChristoph Hellwig 	return 0;
170370164eb6SChristoph Hellwig }
17041e03a36bSChristoph Hellwig static inline void sync_bdevs(bool wait)
17051e03a36bSChristoph Hellwig {
17061e03a36bSChristoph Hellwig }
17073e781988SLinus Torvalds static inline void bdev_statx(struct path *path, struct kstat *stat,
17089abcfbd2SPrasad Singamsetty 				u32 request_mask)
17092d985f8cSEric Biggers {
17102d985f8cSEric Biggers }
1711322cbb50SChristoph Hellwig static inline void printk_all_partitions(void)
1712322cbb50SChristoph Hellwig {
1713322cbb50SChristoph Hellwig }
1714cf056a43SChristoph Hellwig static inline int early_lookup_bdev(const char *pathname, dev_t *dev)
1715cf056a43SChristoph Hellwig {
1716cf056a43SChristoph Hellwig 	return -EINVAL;
1717cf056a43SChristoph Hellwig }
1718322cbb50SChristoph Hellwig #endif /* CONFIG_BLOCK */
1719322cbb50SChristoph Hellwig 
1720982c3b30SChristian Brauner int bdev_freeze(struct block_device *bdev);
1721982c3b30SChristian Brauner int bdev_thaw(struct block_device *bdev);
172222650a99SChristian Brauner void bdev_fput(struct file *bdev_file);
17233f1266f1SChristoph Hellwig 
17245a72e899SJens Axboe struct io_comp_batch {
1725a3396b99SChristoph Hellwig 	struct rq_list req_list;
17265a72e899SJens Axboe 	bool need_ts;
17275a72e899SJens Axboe 	void (*complete)(struct io_comp_batch *);
17285a72e899SJens Axboe };
17295a72e899SJens Axboe 
17306564862dSJohn Garry static inline bool blk_atomic_write_start_sect_aligned(sector_t sector,
17316564862dSJohn Garry 						struct queue_limits *limits)
17326564862dSJohn Garry {
17336564862dSJohn Garry 	unsigned int alignment = max(limits->atomic_write_hw_unit_min,
17346564862dSJohn Garry 				limits->atomic_write_hw_boundary);
17356564862dSJohn Garry 
17366564862dSJohn Garry 	return IS_ALIGNED(sector, alignment >> SECTOR_SHIFT);
17376564862dSJohn Garry }
17386564862dSJohn Garry 
17399da3d1e9SJohn Garry static inline bool bdev_can_atomic_write(struct block_device *bdev)
17409da3d1e9SJohn Garry {
17419da3d1e9SJohn Garry 	struct request_queue *bd_queue = bdev->bd_queue;
17429da3d1e9SJohn Garry 	struct queue_limits *limits = &bd_queue->limits;
17439da3d1e9SJohn Garry 
17449da3d1e9SJohn Garry 	if (!limits->atomic_write_unit_min)
17459da3d1e9SJohn Garry 		return false;
17469da3d1e9SJohn Garry 
17476564862dSJohn Garry 	if (bdev_is_partition(bdev))
17486564862dSJohn Garry 		return blk_atomic_write_start_sect_aligned(bdev->bd_start_sect,
17496564862dSJohn Garry 							limits);
17509da3d1e9SJohn Garry 
17519da3d1e9SJohn Garry 	return true;
17529da3d1e9SJohn Garry }
17539da3d1e9SJohn Garry 
17541eadb157SJohn Garry static inline unsigned int
17551eadb157SJohn Garry bdev_atomic_write_unit_min_bytes(struct block_device *bdev)
17561eadb157SJohn Garry {
17571eadb157SJohn Garry 	if (!bdev_can_atomic_write(bdev))
17581eadb157SJohn Garry 		return 0;
17591eadb157SJohn Garry 	return queue_atomic_write_unit_min_bytes(bdev_get_queue(bdev));
17601eadb157SJohn Garry }
17611eadb157SJohn Garry 
17621eadb157SJohn Garry static inline unsigned int
17631eadb157SJohn Garry bdev_atomic_write_unit_max_bytes(struct block_device *bdev)
17641eadb157SJohn Garry {
17651eadb157SJohn Garry 	if (!bdev_can_atomic_write(bdev))
17661eadb157SJohn Garry 		return 0;
17671eadb157SJohn Garry 	return queue_atomic_write_unit_max_bytes(bdev_get_queue(bdev));
17681eadb157SJohn Garry }
17691eadb157SJohn Garry 
17705a72e899SJens Axboe #define DEFINE_IO_COMP_BATCH(name)	struct io_comp_batch name = { }
17715a72e899SJens Axboe 
17723f1266f1SChristoph Hellwig #endif /* _LINUX_BLKDEV_H */
1773