xref: /linux-6.15/include/linux/blkdev.h (revision bf86bcdb)
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>
281da177e4SLinus Torvalds 
29de477254SPaul Gortmaker struct module;
301da177e4SLinus Torvalds struct request_queue;
311da177e4SLinus Torvalds struct elevator_queue;
322056a782SJens Axboe struct blk_trace;
333d6392cfSJens Axboe struct request;
343d6392cfSJens Axboe struct sg_io_hdr;
353c798398STejun Heo struct blkcg_gq;
367c94e1c1SMing Lei struct blk_flush_queue;
373e08773cSChristoph Hellwig struct kiocb;
38bbd3e064SChristoph Hellwig struct pr_ops;
39a7905043SJosef Bacik struct rq_qos;
4034dbad5dSOmar Sandoval struct blk_queue_stats;
4134dbad5dSOmar Sandoval struct blk_stat_callback;
42cb77cb5aSEric Biggers struct blk_crypto_profile;
431da177e4SLinus Torvalds 
44322cbb50SChristoph Hellwig extern const struct device_type disk_type;
45cdb37f73SThomas Weißschuh extern const struct device_type part_type;
46f8c7511dSRicardo B. Marliere extern const struct class block_class;
47322cbb50SChristoph Hellwig 
488bd435b3STejun Heo /*
498bd435b3STejun Heo  * Maximum number of blkcg policies allowed to be registered concurrently.
508bd435b3STejun Heo  * Defined here to simplify include dependency.
518bd435b3STejun Heo  */
52ec645dc9SOleksandr Natalenko #define BLKCG_MAX_POLS		6
538bd435b3STejun Heo 
54322cbb50SChristoph Hellwig #define DISK_MAX_PARTS			256
55322cbb50SChristoph Hellwig #define DISK_NAME_LEN			32
56322cbb50SChristoph Hellwig 
57322cbb50SChristoph Hellwig #define PARTITION_META_INFO_VOLNAMELTH	64
58322cbb50SChristoph Hellwig /*
59322cbb50SChristoph Hellwig  * Enough for the string representation of any kind of UUID plus NULL.
60322cbb50SChristoph Hellwig  * EFI UUID is 36 characters. MSDOS UUID is 11 characters.
61322cbb50SChristoph Hellwig  */
62322cbb50SChristoph Hellwig #define PARTITION_META_INFO_UUIDLTH	(UUID_STRING_LEN + 1)
63322cbb50SChristoph Hellwig 
64322cbb50SChristoph Hellwig struct partition_meta_info {
65322cbb50SChristoph Hellwig 	char uuid[PARTITION_META_INFO_UUIDLTH];
66322cbb50SChristoph Hellwig 	u8 volname[PARTITION_META_INFO_VOLNAMELTH];
67322cbb50SChristoph Hellwig };
68322cbb50SChristoph Hellwig 
69322cbb50SChristoph Hellwig /**
70322cbb50SChristoph Hellwig  * DOC: genhd capability flags
71322cbb50SChristoph Hellwig  *
72322cbb50SChristoph Hellwig  * ``GENHD_FL_REMOVABLE``: indicates that the block device gives access to
73322cbb50SChristoph Hellwig  * removable media.  When set, the device remains present even when media is not
74322cbb50SChristoph Hellwig  * inserted.  Shall not be set for devices which are removed entirely when the
75322cbb50SChristoph Hellwig  * media is removed.
76322cbb50SChristoph Hellwig  *
77322cbb50SChristoph Hellwig  * ``GENHD_FL_HIDDEN``: the block device is hidden; it doesn't produce events,
78322cbb50SChristoph Hellwig  * doesn't appear in sysfs, and can't be opened from userspace or using
79322cbb50SChristoph Hellwig  * blkdev_get*. Used for the underlying components of multipath devices.
80322cbb50SChristoph Hellwig  *
81322cbb50SChristoph Hellwig  * ``GENHD_FL_NO_PART``: partition support is disabled.  The kernel will not
82322cbb50SChristoph Hellwig  * scan for partitions from add_disk, and users can't add partitions manually.
83322cbb50SChristoph Hellwig  *
84322cbb50SChristoph Hellwig  */
85322cbb50SChristoph Hellwig enum {
86322cbb50SChristoph Hellwig 	GENHD_FL_REMOVABLE			= 1 << 0,
87322cbb50SChristoph Hellwig 	GENHD_FL_HIDDEN				= 1 << 1,
88322cbb50SChristoph Hellwig 	GENHD_FL_NO_PART			= 1 << 2,
89322cbb50SChristoph Hellwig };
90322cbb50SChristoph Hellwig 
91322cbb50SChristoph Hellwig enum {
92322cbb50SChristoph Hellwig 	DISK_EVENT_MEDIA_CHANGE			= 1 << 0, /* media changed */
93322cbb50SChristoph Hellwig 	DISK_EVENT_EJECT_REQUEST		= 1 << 1, /* eject requested */
94322cbb50SChristoph Hellwig };
95322cbb50SChristoph Hellwig 
96322cbb50SChristoph Hellwig enum {
97322cbb50SChristoph Hellwig 	/* Poll even if events_poll_msecs is unset */
98322cbb50SChristoph Hellwig 	DISK_EVENT_FLAG_POLL			= 1 << 0,
99322cbb50SChristoph Hellwig 	/* Forward events to udev */
100322cbb50SChristoph Hellwig 	DISK_EVENT_FLAG_UEVENT			= 1 << 1,
101322cbb50SChristoph Hellwig 	/* Block event polling when open for exclusive write */
102322cbb50SChristoph Hellwig 	DISK_EVENT_FLAG_BLOCK_ON_EXCL_WRITE	= 1 << 2,
103322cbb50SChristoph Hellwig };
104322cbb50SChristoph Hellwig 
105322cbb50SChristoph Hellwig struct disk_events;
106322cbb50SChristoph Hellwig struct badblocks;
107322cbb50SChristoph Hellwig 
108e9f5f44aSChristoph Hellwig enum blk_integrity_checksum {
109e9f5f44aSChristoph Hellwig 	BLK_INTEGRITY_CSUM_NONE		= 0,
110e9f5f44aSChristoph Hellwig 	BLK_INTEGRITY_CSUM_IP		= 1,
111e9f5f44aSChristoph Hellwig 	BLK_INTEGRITY_CSUM_CRC		= 2,
112e9f5f44aSChristoph Hellwig 	BLK_INTEGRITY_CSUM_CRC64	= 3,
113e9f5f44aSChristoph Hellwig } __packed ;
114e9f5f44aSChristoph Hellwig 
115322cbb50SChristoph Hellwig struct blk_integrity {
116322cbb50SChristoph Hellwig 	unsigned char				flags;
117e9f5f44aSChristoph Hellwig 	enum blk_integrity_checksum		csum_type;
118322cbb50SChristoph Hellwig 	unsigned char				tuple_size;
11960d21aacSKanchan Joshi 	unsigned char				pi_offset;
120322cbb50SChristoph Hellwig 	unsigned char				interval_exp;
121322cbb50SChristoph Hellwig 	unsigned char				tag_size;
122322cbb50SChristoph Hellwig };
123322cbb50SChristoph Hellwig 
12405bdb996SChristoph Hellwig typedef unsigned int __bitwise blk_mode_t;
12505bdb996SChristoph Hellwig 
12605bdb996SChristoph Hellwig /* open for reading */
12705bdb996SChristoph Hellwig #define BLK_OPEN_READ		((__force blk_mode_t)(1 << 0))
12805bdb996SChristoph Hellwig /* open for writing */
12905bdb996SChristoph Hellwig #define BLK_OPEN_WRITE		((__force blk_mode_t)(1 << 1))
13005bdb996SChristoph Hellwig /* open exclusively (vs other exclusive openers */
13105bdb996SChristoph Hellwig #define BLK_OPEN_EXCL		((__force blk_mode_t)(1 << 2))
13205bdb996SChristoph Hellwig /* opened with O_NDELAY */
13305bdb996SChristoph Hellwig #define BLK_OPEN_NDELAY		((__force blk_mode_t)(1 << 3))
13405bdb996SChristoph Hellwig /* open for "writes" only for ioctls (specialy hack for floppy.c) */
13505bdb996SChristoph Hellwig #define BLK_OPEN_WRITE_IOCTL	((__force blk_mode_t)(1 << 4))
136ed5cc702SJan Kara /* open is exclusive wrt all other BLK_OPEN_WRITE opens to the device */
137ed5cc702SJan Kara #define BLK_OPEN_RESTRICT_WRITES	((__force blk_mode_t)(1 << 5))
138752863bdSChristoph Hellwig /* return partition scanning errors */
139752863bdSChristoph Hellwig #define BLK_OPEN_STRICT_SCAN	((__force blk_mode_t)(1 << 6))
14005bdb996SChristoph Hellwig 
141322cbb50SChristoph Hellwig struct gendisk {
142322cbb50SChristoph Hellwig 	/*
143322cbb50SChristoph Hellwig 	 * major/first_minor/minors should not be set by any new driver, the
144322cbb50SChristoph Hellwig 	 * block core will take care of allocating them automatically.
145322cbb50SChristoph Hellwig 	 */
146322cbb50SChristoph Hellwig 	int major;
147322cbb50SChristoph Hellwig 	int first_minor;
148322cbb50SChristoph Hellwig 	int minors;
149322cbb50SChristoph Hellwig 
150322cbb50SChristoph Hellwig 	char disk_name[DISK_NAME_LEN];	/* name of major driver */
151322cbb50SChristoph Hellwig 
152322cbb50SChristoph Hellwig 	unsigned short events;		/* supported events */
153322cbb50SChristoph Hellwig 	unsigned short event_flags;	/* flags related to event processing */
154322cbb50SChristoph Hellwig 
155322cbb50SChristoph Hellwig 	struct xarray part_tbl;
156322cbb50SChristoph Hellwig 	struct block_device *part0;
157322cbb50SChristoph Hellwig 
158322cbb50SChristoph Hellwig 	const struct block_device_operations *fops;
159322cbb50SChristoph Hellwig 	struct request_queue *queue;
160322cbb50SChristoph Hellwig 	void *private_data;
161322cbb50SChristoph Hellwig 
16246754bd0SChristoph Hellwig 	struct bio_set bio_split;
16346754bd0SChristoph Hellwig 
164322cbb50SChristoph Hellwig 	int flags;
165322cbb50SChristoph Hellwig 	unsigned long state;
166322cbb50SChristoph Hellwig #define GD_NEED_PART_SCAN		0
167322cbb50SChristoph Hellwig #define GD_READ_ONLY			1
168322cbb50SChristoph Hellwig #define GD_DEAD				2
169322cbb50SChristoph Hellwig #define GD_NATIVE_CAPACITY		3
17076792055SChristoph Hellwig #define GD_ADDED			4
171b9684a71SChristoph Hellwig #define GD_SUPPRESS_PART_SCAN		5
1726f8191fdSChristoph Hellwig #define GD_OWNS_QUEUE			6
173322cbb50SChristoph Hellwig 
174322cbb50SChristoph Hellwig 	struct mutex open_mutex;	/* open/close mutex */
175322cbb50SChristoph Hellwig 	unsigned open_partitions;	/* number of open partitions */
176322cbb50SChristoph Hellwig 
177322cbb50SChristoph Hellwig 	struct backing_dev_info	*bdi;
1782bd85221SChristoph Hellwig 	struct kobject queue_kobj;	/* the queue/ directory */
179322cbb50SChristoph Hellwig 	struct kobject *slave_dir;
180322cbb50SChristoph Hellwig #ifdef CONFIG_BLOCK_HOLDER_DEPRECATED
181322cbb50SChristoph Hellwig 	struct list_head slave_bdevs;
182322cbb50SChristoph Hellwig #endif
183322cbb50SChristoph Hellwig 	struct timer_rand_state *random;
184322cbb50SChristoph Hellwig 	atomic_t sync_io;		/* RAID */
185322cbb50SChristoph Hellwig 	struct disk_events *ev;
186d86e716aSChristoph Hellwig 
187d86e716aSChristoph Hellwig #ifdef CONFIG_BLK_DEV_ZONED
188d86e716aSChristoph Hellwig 	/*
18902ccd7c3SDamien Le Moal 	 * Zoned block device information. Reads of this information must be
19002ccd7c3SDamien Le Moal 	 * protected with blk_queue_enter() / blk_queue_exit(). Modifying this
19102ccd7c3SDamien Le Moal 	 * information is only allowed while no requests are being processed.
19202ccd7c3SDamien Le Moal 	 * See also blk_mq_freeze_queue() and blk_mq_unfreeze_queue().
193d86e716aSChristoph Hellwig 	 */
194d86e716aSChristoph Hellwig 	unsigned int		nr_zones;
195ecfe43b1SDamien Le Moal 	unsigned int		zone_capacity;
19629459c3eSDamien Le Moal 	unsigned int		last_zone_capacity;
197d86e716aSChristoph Hellwig 	unsigned long		*conv_zones_bitmap;
198dd291d77SDamien Le Moal 	unsigned int            zone_wplugs_hash_bits;
199dd291d77SDamien Le Moal 	spinlock_t              zone_wplugs_lock;
200dd291d77SDamien Le Moal 	struct mempool_s	*zone_wplugs_pool;
201dd291d77SDamien Le Moal 	struct hlist_head       *zone_wplugs_hash;
202dd291d77SDamien Le Moal 	struct list_head        zone_wplugs_err_list;
203dd291d77SDamien Le Moal 	struct work_struct	zone_wplugs_work;
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 
27137ae5a0fSTetsuo Handa static inline int blk_validate_block_size(unsigned long bsize)
272570b1cacSXie Yongji {
273570b1cacSXie Yongji 	if (bsize < 512 || bsize > PAGE_SIZE || !is_power_of_2(bsize))
274570b1cacSXie Yongji 		return -EINVAL;
275570b1cacSXie Yongji 
276570b1cacSXie Yongji 	return 0;
277570b1cacSXie Yongji }
278570b1cacSXie Yongji 
27916458cf3SBart Van Assche static inline bool blk_op_is_passthrough(blk_opf_t op)
28014cb0dc6SMing Lei {
281da6269daSChristoph Hellwig 	op &= REQ_OP_MASK;
28214cb0dc6SMing Lei 	return op == REQ_OP_DRV_IN || op == REQ_OP_DRV_OUT;
28314cb0dc6SMing Lei }
28414cb0dc6SMing Lei 
2851122c0c1SChristoph Hellwig /* flags set by the driver in queue_limits.features */
286fcf865e3SChristoph Hellwig typedef unsigned int __bitwise blk_features_t;
287fcf865e3SChristoph Hellwig 
2881122c0c1SChristoph Hellwig /* supports a volatile write cache */
289fcf865e3SChristoph Hellwig #define BLK_FEAT_WRITE_CACHE		((__force blk_features_t)(1u << 0))
2901122c0c1SChristoph Hellwig 
2911122c0c1SChristoph Hellwig /* supports passing on the FUA bit */
292fcf865e3SChristoph Hellwig #define BLK_FEAT_FUA			((__force blk_features_t)(1u << 1))
293bd4a633bSChristoph Hellwig 
294bd4a633bSChristoph Hellwig /* rotational device (hard drive or floppy) */
295fcf865e3SChristoph Hellwig #define BLK_FEAT_ROTATIONAL		((__force blk_features_t)(1u << 2))
29639a9f1c3SChristoph Hellwig 
29739a9f1c3SChristoph Hellwig /* contributes to the random number pool */
298fcf865e3SChristoph Hellwig #define BLK_FEAT_ADD_RANDOM		((__force blk_features_t)(1u << 3))
299cdb24979SChristoph Hellwig 
300cdb24979SChristoph Hellwig /* do disk/partitions IO accounting */
301fcf865e3SChristoph Hellwig #define BLK_FEAT_IO_STAT		((__force blk_features_t)(1u << 4))
3021a02f3a7SChristoph Hellwig 
3031a02f3a7SChristoph Hellwig /* don't modify data until writeback is done */
304fcf865e3SChristoph Hellwig #define BLK_FEAT_STABLE_WRITES		((__force blk_features_t)(1u << 5))
305aadd5c59SChristoph Hellwig 
306aadd5c59SChristoph Hellwig /* always completes in submit context */
307fcf865e3SChristoph Hellwig #define BLK_FEAT_SYNCHRONOUS		((__force blk_features_t)(1u << 6))
308f76af42fSChristoph Hellwig 
309f76af42fSChristoph Hellwig /* supports REQ_NOWAIT */
310fcf865e3SChristoph Hellwig #define BLK_FEAT_NOWAIT			((__force blk_features_t)(1u << 7))
311f467fee4SChristoph Hellwig 
312f467fee4SChristoph Hellwig /* supports DAX */
313fcf865e3SChristoph Hellwig #define BLK_FEAT_DAX			((__force blk_features_t)(1u << 8))
3148023e144SChristoph Hellwig 
3158023e144SChristoph Hellwig /* supports I/O polling */
316fcf865e3SChristoph Hellwig #define BLK_FEAT_POLL			((__force blk_features_t)(1u << 9))
317b1fc937aSChristoph Hellwig 
318b1fc937aSChristoph Hellwig /* is a zoned device */
319fcf865e3SChristoph Hellwig #define BLK_FEAT_ZONED			((__force blk_features_t)(1u << 10))
320a52758a3SChristoph Hellwig 
3219c1e42e3SChristoph Hellwig /* supports PCI(e) p2p requests */
322fcf865e3SChristoph Hellwig #define BLK_FEAT_PCI_P2PDMA		((__force blk_features_t)(1u << 12))
3238c8f5c85SChristoph Hellwig 
3248c8f5c85SChristoph Hellwig /* skip this queue in blk_mq_(un)quiesce_tagset */
325fcf865e3SChristoph Hellwig #define BLK_FEAT_SKIP_TAGSET_QUIESCE	((__force blk_features_t)(1u << 13))
326339d3948SChristoph Hellwig 
327339d3948SChristoph Hellwig /* bounce all highmem pages */
328fcf865e3SChristoph Hellwig #define BLK_FEAT_BOUNCE_HIGH		((__force blk_features_t)(1u << 14))
3297d4dec52SChristoph Hellwig 
3307d4dec52SChristoph Hellwig /* undocumented magic for bcache */
331fcf865e3SChristoph Hellwig #define BLK_FEAT_RAID_PARTIAL_STRIPES_EXPENSIVE \
332fcf865e3SChristoph Hellwig 	((__force blk_features_t)(1u << 15))
3331122c0c1SChristoph Hellwig 
3341122c0c1SChristoph Hellwig /*
3351122c0c1SChristoph Hellwig  * Flags automatically inherited when stacking limits.
3361122c0c1SChristoph Hellwig  */
3371122c0c1SChristoph Hellwig #define BLK_FEAT_INHERIT_MASK \
3381a02f3a7SChristoph Hellwig 	(BLK_FEAT_WRITE_CACHE | BLK_FEAT_FUA | BLK_FEAT_ROTATIONAL | \
3397d4dec52SChristoph Hellwig 	 BLK_FEAT_STABLE_WRITES | BLK_FEAT_ZONED | BLK_FEAT_BOUNCE_HIGH | \
3407d4dec52SChristoph Hellwig 	 BLK_FEAT_RAID_PARTIAL_STRIPES_EXPENSIVE)
3411122c0c1SChristoph Hellwig 
3421122c0c1SChristoph Hellwig /* internal flags in queue_limits.flags */
343fcf865e3SChristoph Hellwig typedef unsigned int __bitwise blk_flags_t;
344fcf865e3SChristoph Hellwig 
345bae1c743SChristoph Hellwig /* do not send FLUSH/FUA commands despite advertising a write cache */
346fcf865e3SChristoph Hellwig #define BLK_FLAG_WRITE_CACHE_DISABLED	((__force blk_flags_t)(1u << 0))
3471122c0c1SChristoph Hellwig 
3485543217bSChristoph Hellwig /* I/O topology is misaligned */
349fcf865e3SChristoph Hellwig #define BLK_FLAG_MISALIGNED		((__force blk_flags_t)(1u << 1))
3509bb33f24SChristoph Hellwig 
351025146e1SMartin K. Petersen struct queue_limits {
352fcf865e3SChristoph Hellwig 	blk_features_t		features;
353fcf865e3SChristoph Hellwig 	blk_flags_t		flags;
354025146e1SMartin K. Petersen 	unsigned long		seg_boundary_mask;
35503100aadSKeith Busch 	unsigned long		virt_boundary_mask;
356025146e1SMartin K. Petersen 
357025146e1SMartin K. Petersen 	unsigned int		max_hw_sectors;
358ca369d51SMartin K. Petersen 	unsigned int		max_dev_sectors;
359762380adSJens Axboe 	unsigned int		chunk_sectors;
360025146e1SMartin K. Petersen 	unsigned int		max_sectors;
361c9c77418SKeith Busch 	unsigned int		max_user_sectors;
362025146e1SMartin K. Petersen 	unsigned int		max_segment_size;
363c72758f3SMartin K. Petersen 	unsigned int		physical_block_size;
364ad6bf88aSMikulas Patocka 	unsigned int		logical_block_size;
365c72758f3SMartin K. Petersen 	unsigned int		alignment_offset;
366c72758f3SMartin K. Petersen 	unsigned int		io_min;
367c72758f3SMartin K. Petersen 	unsigned int		io_opt;
36867efc925SChristoph Hellwig 	unsigned int		max_discard_sectors;
3690034af03SJens Axboe 	unsigned int		max_hw_discard_sectors;
3704f563a64SChristoph Hellwig 	unsigned int		max_user_discard_sectors;
37144abff2cSChristoph Hellwig 	unsigned int		max_secure_erase_sectors;
372a6f0788eSChaitanya Kulkarni 	unsigned int		max_write_zeroes_sectors;
3730512a75bSKeith Busch 	unsigned int		max_zone_append_sectors;
37486b37281SMartin K. Petersen 	unsigned int		discard_granularity;
37586b37281SMartin K. Petersen 	unsigned int		discard_alignment;
376a805a4faSDamien Le Moal 	unsigned int		zone_write_granularity;
377025146e1SMartin K. Petersen 
3789da3d1e9SJohn Garry 	/* atomic write limits */
3799da3d1e9SJohn Garry 	unsigned int		atomic_write_hw_max;
3809da3d1e9SJohn Garry 	unsigned int		atomic_write_max_sectors;
3819da3d1e9SJohn Garry 	unsigned int		atomic_write_hw_boundary;
3829da3d1e9SJohn Garry 	unsigned int		atomic_write_boundary_sectors;
3839da3d1e9SJohn Garry 	unsigned int		atomic_write_hw_unit_min;
3849da3d1e9SJohn Garry 	unsigned int		atomic_write_unit_min;
3859da3d1e9SJohn Garry 	unsigned int		atomic_write_hw_unit_max;
3869da3d1e9SJohn Garry 	unsigned int		atomic_write_unit_max;
3879da3d1e9SJohn Garry 
3888a78362cSMartin K. Petersen 	unsigned short		max_segments;
38913f05c8dSMartin K. Petersen 	unsigned short		max_integrity_segments;
3901e739730SChristoph Hellwig 	unsigned short		max_discard_segments;
391025146e1SMartin K. Petersen 
3928c4955c0SChristoph Hellwig 	unsigned int		max_open_zones;
3938c4955c0SChristoph Hellwig 	unsigned int		max_active_zones;
394c964d62fSKeith Busch 
395c964d62fSKeith Busch 	/*
396c964d62fSKeith Busch 	 * Drivers that set dma_alignment to less than 511 must be prepared to
397c964d62fSKeith Busch 	 * handle individual bvec's that are not a multiple of a SECTOR_SIZE
398c964d62fSKeith Busch 	 * due to possible offsets.
399c964d62fSKeith Busch 	 */
400c964d62fSKeith Busch 	unsigned int		dma_alignment;
401e94b45d0SChristoph Hellwig 	unsigned int		dma_pad_mask;
402c6e56cf6SChristoph Hellwig 
403c6e56cf6SChristoph Hellwig 	struct blk_integrity	integrity;
404025146e1SMartin K. Petersen };
405025146e1SMartin K. Petersen 
406d4100351SChristoph Hellwig typedef int (*report_zones_cb)(struct blk_zone *zone, unsigned int idx,
407d4100351SChristoph Hellwig 			       void *data);
408d4100351SChristoph Hellwig 
409d4100351SChristoph Hellwig #define BLK_ALL_ZONES  ((unsigned int)-1)
410d4100351SChristoph Hellwig int blkdev_report_zones(struct block_device *bdev, sector_t sector,
411d4100351SChristoph Hellwig 		unsigned int nr_zones, report_zones_cb cb, void *data);
412668bfeeaSChristoph Hellwig int blkdev_zone_mgmt(struct block_device *bdev, enum req_op op,
41371f4ecdbSJohannes Thumshirn 		sector_t sectors, sector_t nr_sectors);
4149b3c08b9SDamien Le Moal int blk_revalidate_disk_zones(struct gendisk *disk);
4156a0cb1bcSHannes Reinecke 
416a2247f19SDamien Le Moal /*
417a2247f19SDamien Le Moal  * Independent access ranges: struct blk_independent_access_range describes
418a2247f19SDamien Le Moal  * a range of contiguous sectors that can be accessed using device command
419a2247f19SDamien Le Moal  * execution resources that are independent from the resources used for
420a2247f19SDamien Le Moal  * other access ranges. This is typically found with single-LUN multi-actuator
421a2247f19SDamien Le Moal  * HDDs where each access range is served by a different set of heads.
422a2247f19SDamien Le Moal  * The set of independent ranges supported by the device is defined using
423a2247f19SDamien Le Moal  * struct blk_independent_access_ranges. The independent ranges must not overlap
424a2247f19SDamien Le Moal  * and must include all sectors within the disk capacity (no sector holes
425a2247f19SDamien Le Moal  * allowed).
426a2247f19SDamien Le Moal  * For a device with multiple ranges, requests targeting sectors in different
427a2247f19SDamien Le Moal  * ranges can be executed in parallel. A request can straddle an access range
428a2247f19SDamien Le Moal  * boundary.
429a2247f19SDamien Le Moal  */
430a2247f19SDamien Le Moal struct blk_independent_access_range {
431a2247f19SDamien Le Moal 	struct kobject		kobj;
432a2247f19SDamien Le Moal 	sector_t		sector;
433a2247f19SDamien Le Moal 	sector_t		nr_sectors;
434a2247f19SDamien Le Moal };
435a2247f19SDamien Le Moal 
436a2247f19SDamien Le Moal struct blk_independent_access_ranges {
437a2247f19SDamien Le Moal 	struct kobject				kobj;
438a2247f19SDamien Le Moal 	bool					sysfs_registered;
439a2247f19SDamien Le Moal 	unsigned int				nr_ia_ranges;
440a2247f19SDamien Le Moal 	struct blk_independent_access_range	ia_range[];
441a2247f19SDamien Le Moal };
442a2247f19SDamien Le Moal 
443d7b76301SRichard Kennedy struct request_queue {
4441da177e4SLinus Torvalds 	/*
4451da177e4SLinus Torvalds 	 * The queue owner gets to use this for whatever they like.
4461da177e4SLinus Torvalds 	 * ll_rw_blk doesn't touch it.
4471da177e4SLinus Torvalds 	 */
4481da177e4SLinus Torvalds 	void			*queuedata;
4491da177e4SLinus Torvalds 
4500c734c5eSJens Axboe 	struct elevator_queue	*elevator;
4510c734c5eSJens Axboe 
4520c734c5eSJens Axboe 	const struct blk_mq_ops	*mq_ops;
4530c734c5eSJens Axboe 
4540c734c5eSJens Axboe 	/* sw queues */
4550c734c5eSJens Axboe 	struct blk_mq_ctx __percpu	*queue_ctx;
4560c734c5eSJens Axboe 
4571da177e4SLinus Torvalds 	/*
4581da177e4SLinus Torvalds 	 * various queue flags, see QUEUE_* below
4591da177e4SLinus Torvalds 	 */
4601da177e4SLinus Torvalds 	unsigned long		queue_flags;
4611da177e4SLinus Torvalds 
4620c734c5eSJens Axboe 	unsigned int		rq_timeout;
4630c734c5eSJens Axboe 
4640c734c5eSJens Axboe 	unsigned int		queue_depth;
4650c734c5eSJens Axboe 
4660c734c5eSJens Axboe 	refcount_t		refs;
4670c734c5eSJens Axboe 
4680c734c5eSJens Axboe 	/* hw dispatch queues */
4690c734c5eSJens Axboe 	unsigned int		nr_hw_queues;
4700c734c5eSJens Axboe 	struct xarray		hctx_table;
4710c734c5eSJens Axboe 
4720c734c5eSJens Axboe 	struct percpu_ref	q_usage_counter;
4730c734c5eSJens Axboe 
4740c734c5eSJens Axboe 	struct request		*last_merge;
475a73f730dSTejun Heo 
4760d945c1fSChristoph Hellwig 	spinlock_t		queue_lock;
4771da177e4SLinus Torvalds 
4780c734c5eSJens Axboe 	int			quiesce_depth;
479d152c682SChristoph Hellwig 
4800c734c5eSJens Axboe 	struct gendisk		*disk;
4811da177e4SLinus Torvalds 
482320ae51fSJens Axboe 	/*
483320ae51fSJens Axboe 	 * mq queue kobject
484320ae51fSJens Axboe 	 */
4851db4909eSMing Lei 	struct kobject *mq_kobj;
486320ae51fSJens Axboe 
4870c734c5eSJens Axboe 	struct queue_limits	limits;
4880c734c5eSJens Axboe 
48947fafbc7SRafael J. Wysocki #ifdef CONFIG_PM
4906c954667SLin Ming 	struct device		*dev;
491db04e18dSGeert Uytterhoeven 	enum rpm_status		rpm_status;
4926c954667SLin Ming #endif
4936c954667SLin Ming 
4941da177e4SLinus Torvalds 	/*
4950c734c5eSJens Axboe 	 * Number of contexts that have called blk_set_pm_only(). If this
4960c734c5eSJens Axboe 	 * counter is above zero then only RQF_PM requests are processed.
4970c734c5eSJens Axboe 	 */
4980c734c5eSJens Axboe 	atomic_t		pm_only;
4990c734c5eSJens Axboe 
5000c734c5eSJens Axboe 	struct blk_queue_stats	*stats;
5010c734c5eSJens Axboe 	struct rq_qos		*rq_qos;
5020c734c5eSJens Axboe 	struct mutex		rq_qos_mutex;
5030c734c5eSJens Axboe 
5040c734c5eSJens Axboe 	/*
5050c734c5eSJens Axboe 	 * ida allocated id for this queue.  Used to index queues from
5060c734c5eSJens Axboe 	 * ioctx.
5070c734c5eSJens Axboe 	 */
5080c734c5eSJens Axboe 	int			id;
5090c734c5eSJens Axboe 
5100c734c5eSJens Axboe 	/*
5111da177e4SLinus Torvalds 	 * queue settings
5121da177e4SLinus Torvalds 	 */
5131da177e4SLinus Torvalds 	unsigned long		nr_requests;	/* Max # of requests */
5141da177e4SLinus Torvalds 
5151b262839SSatya Tangirala #ifdef CONFIG_BLK_INLINE_ENCRYPTION
516cb77cb5aSEric Biggers 	struct blk_crypto_profile *crypto_profile;
51720f01f16SEric Biggers 	struct kobject *crypto_kobject;
5181b262839SSatya Tangirala #endif
5191b262839SSatya Tangirala 
520242f9dcbSJens Axboe 	struct timer_list	timeout;
521287922ebSChristoph Hellwig 	struct work_struct	timeout_work;
522242f9dcbSJens Axboe 
523079a2e3eSJohn Garry 	atomic_t		nr_active_requests_shared_tags;
524bccf5e26SJohn Garry 
525079a2e3eSJohn Garry 	struct blk_mq_tags	*sched_shared_tags;
526d97e594cSJohn Garry 
527a612fddfSTejun Heo 	struct list_head	icq_list;
5281231039dSChristoph Hellwig #ifdef CONFIG_BLK_CGROUP
5291231039dSChristoph Hellwig 	DECLARE_BITMAP		(blkcg_pols, BLKCG_MAX_POLS);
5301231039dSChristoph Hellwig 	struct blkcg_gq		*root_blkg;
5311231039dSChristoph Hellwig 	struct list_head	blkg_list;
5321231039dSChristoph Hellwig 	struct mutex		blkcg_mutex;
5331231039dSChristoph Hellwig #endif
534a612fddfSTejun Heo 
5351946089aSChristoph Lameter 	int			node;
5360c734c5eSJens Axboe 
5370c734c5eSJens Axboe 	spinlock_t		requeue_lock;
5380c734c5eSJens Axboe 	struct list_head	requeue_list;
5390c734c5eSJens Axboe 	struct delayed_work	requeue_work;
5400c734c5eSJens Axboe 
5416c5c9341SAlexey Dobriyan #ifdef CONFIG_BLK_DEV_IO_TRACE
542c780e86dSJan Kara 	struct blk_trace __rcu	*blk_trace;
5436c5c9341SAlexey Dobriyan #endif
5441da177e4SLinus Torvalds 	/*
5454913efe4STejun Heo 	 * for flush operations
5461da177e4SLinus Torvalds 	 */
5477c94e1c1SMing Lei 	struct blk_flush_queue	*fq;
5489a67aa52SChristoph Hellwig 	struct list_head	flush_list;
549483f4afcSAl Viro 
550483f4afcSAl Viro 	struct mutex		sysfs_lock;
551cecf5d87SMing Lei 	struct mutex		sysfs_dir_lock;
552d690cb8aSChristoph Hellwig 	struct mutex		limits_lock;
553d351af01SFUJITA Tomonori 
5542f8f1336SMing Lei 	/*
5552f8f1336SMing Lei 	 * for reusing dead hctx instance in case of updating
5562f8f1336SMing Lei 	 * nr_hw_queues
5572f8f1336SMing Lei 	 */
5582f8f1336SMing Lei 	struct list_head	unused_hctx_list;
5592f8f1336SMing Lei 	spinlock_t		unused_hctx_lock;
5602f8f1336SMing Lei 
5617996a8b5SBob Liu 	int			mq_freeze_depth;
562d732580bSTejun Heo 
563e43473b7SVivek Goyal #ifdef CONFIG_BLK_DEV_THROTTLING
564e43473b7SVivek Goyal 	/* Throttle data */
565e43473b7SVivek Goyal 	struct throtl_data *td;
566e43473b7SVivek Goyal #endif
567548bc8e1STejun Heo 	struct rcu_head		rcu_head;
568320ae51fSJens Axboe 	wait_queue_head_t	mq_freeze_wq;
5697996a8b5SBob Liu 	/*
5707996a8b5SBob Liu 	 * Protect concurrent access to q_usage_counter by
5717996a8b5SBob Liu 	 * percpu_ref_kill() and percpu_ref_reinit().
5727996a8b5SBob Liu 	 */
5737996a8b5SBob Liu 	struct mutex		mq_freeze_lock;
5740d2602caSJens Axboe 
5750d2602caSJens Axboe 	struct blk_mq_tag_set	*tag_set;
5760d2602caSJens Axboe 	struct list_head	tag_set_list;
5774593fdbeSAkinobu Mita 
57807e4feadSOmar Sandoval 	struct dentry		*debugfs_dir;
579d332ce09SOmar Sandoval 	struct dentry		*sched_debugfs_dir;
580cc56694fSMing Lei 	struct dentry		*rqos_debugfs_dir;
5815cf9c91bSChristoph Hellwig 	/*
5825cf9c91bSChristoph Hellwig 	 * Serializes all debugfs metadata operations using the above dentries.
5835cf9c91bSChristoph Hellwig 	 */
5845cf9c91bSChristoph Hellwig 	struct mutex		debugfs_mutex;
58507e4feadSOmar Sandoval 
5864593fdbeSAkinobu Mita 	bool			mq_sysfs_init_done;
5871da177e4SLinus Torvalds };
5881da177e4SLinus Torvalds 
589bfe373f6SHou Tao /* Keep blk_queue_flag_name[] in sync with the definitions below */
590eca7abf3SJens Axboe #define QUEUE_FLAG_STOPPED	0	/* queue is stopped */
591eca7abf3SJens Axboe #define QUEUE_FLAG_DYING	1	/* queue being torn down */
592eca7abf3SJens Axboe #define QUEUE_FLAG_NOMERGES     3	/* disable merge attempts */
593eca7abf3SJens Axboe #define QUEUE_FLAG_SAME_COMP	4	/* complete on same CPU-group */
594eca7abf3SJens Axboe #define QUEUE_FLAG_FAIL_IO	5	/* fake timeout */
595eca7abf3SJens Axboe #define QUEUE_FLAG_NOXMERGES	9	/* No extended merges */
596eca7abf3SJens Axboe #define QUEUE_FLAG_SAME_FORCE	12	/* force complete on same CPU */
597eca7abf3SJens Axboe #define QUEUE_FLAG_INIT_DONE	14	/* queue is initialized */
598eca7abf3SJens Axboe #define QUEUE_FLAG_STATS	20	/* track IO start and completion times */
599eca7abf3SJens Axboe #define QUEUE_FLAG_REGISTERED	22	/* queue has been registered to a disk */
600eca7abf3SJens Axboe #define QUEUE_FLAG_QUIESCED	24	/* queue has been quiesced */
6016f816b4bSTejun Heo #define QUEUE_FLAG_RQ_ALLOC_TIME 27	/* record rq->alloc_time_ns */
602f1b49fdcSJohn Garry #define QUEUE_FLAG_HCTX_ACTIVE	28	/* at least one blk-mq hctx is active */
6034d337cebSMing Lei #define QUEUE_FLAG_SQ_SCHED     30	/* single queue style io dispatch */
604797e7dbbSTejun Heo 
605f76af42fSChristoph Hellwig #define QUEUE_FLAG_MQ_DEFAULT	(1UL << QUEUE_FLAG_SAME_COMP)
60694eddfbeSJens Axboe 
6078814ce8aSBart Van Assche void blk_queue_flag_set(unsigned int flag, struct request_queue *q);
6088814ce8aSBart Van Assche void blk_queue_flag_clear(unsigned int flag, struct request_queue *q);
6098814ce8aSBart Van Assche 
6101da177e4SLinus Torvalds #define blk_queue_stopped(q)	test_bit(QUEUE_FLAG_STOPPED, &(q)->queue_flags)
6113f3299d5SBart Van Assche #define blk_queue_dying(q)	test_bit(QUEUE_FLAG_DYING, &(q)->queue_flags)
612320ae51fSJens Axboe #define blk_queue_init_done(q)	test_bit(QUEUE_FLAG_INIT_DONE, &(q)->queue_flags)
613ac9fafa1SAlan D. Brunelle #define blk_queue_nomerges(q)	test_bit(QUEUE_FLAG_NOMERGES, &(q)->queue_flags)
614488991e2SAlan D. Brunelle #define blk_queue_noxmerges(q)	\
615488991e2SAlan D. Brunelle 	test_bit(QUEUE_FLAG_NOXMERGES, &(q)->queue_flags)
61644348870SChristoph Hellwig #define blk_queue_nonrot(q)	(!((q)->limits.features & BLK_FEAT_ROTATIONAL))
617cdb24979SChristoph Hellwig #define blk_queue_io_stat(q)	((q)->limits.features & BLK_FEAT_IO_STAT)
618f467fee4SChristoph Hellwig #define blk_queue_dax(q)	((q)->limits.features & BLK_FEAT_DAX)
6199c1e42e3SChristoph Hellwig #define blk_queue_pci_p2pdma(q)	((q)->limits.features & BLK_FEAT_PCI_P2PDMA)
6206f816b4bSTejun Heo #ifdef CONFIG_BLK_RQ_ALLOC_TIME
6216f816b4bSTejun Heo #define blk_queue_rq_alloc_time(q)	\
6226f816b4bSTejun Heo 	test_bit(QUEUE_FLAG_RQ_ALLOC_TIME, &(q)->queue_flags)
6236f816b4bSTejun Heo #else
6246f816b4bSTejun Heo #define blk_queue_rq_alloc_time(q)	false
6256f816b4bSTejun Heo #endif
6261da177e4SLinus Torvalds 
62733659ebbSChristoph Hellwig #define blk_noretry_request(rq) \
62833659ebbSChristoph Hellwig 	((rq)->cmd_flags & (REQ_FAILFAST_DEV|REQ_FAILFAST_TRANSPORT| \
62933659ebbSChristoph Hellwig 			     REQ_FAILFAST_DRIVER))
630f4560ffeSMing Lei #define blk_queue_quiesced(q)	test_bit(QUEUE_FLAG_QUIESCED, &(q)->queue_flags)
631cd84a62eSBart Van Assche #define blk_queue_pm_only(q)	atomic_read(&(q)->pm_only)
63258c898baSMing Lei #define blk_queue_registered(q)	test_bit(QUEUE_FLAG_REGISTERED, &(q)->queue_flags)
6334d337cebSMing Lei #define blk_queue_sq_sched(q)	test_bit(QUEUE_FLAG_SQ_SCHED, &(q)->queue_flags)
634414dd48eSChao Leng #define blk_queue_skip_tagset_quiesce(q) \
6358c8f5c85SChristoph Hellwig 	((q)->limits.features & BLK_FEAT_SKIP_TAGSET_QUIESCE)
636c9254f2dSBart Van Assche 
637cd84a62eSBart Van Assche extern void blk_set_pm_only(struct request_queue *q);
638cd84a62eSBart Van Assche extern void blk_clear_pm_only(struct request_queue *q);
6394aff5e23SJens Axboe 
6401da177e4SLinus Torvalds #define list_entry_rq(ptr)	list_entry((ptr), struct request, queuelist)
6411da177e4SLinus Torvalds 
6423ab3a031SChristoph Hellwig #define dma_map_bvec(dev, bv, dir, attrs) \
6433ab3a031SChristoph Hellwig 	dma_map_page_attrs(dev, (bv)->bv_page, (bv)->bv_offset, (bv)->bv_len, \
6443ab3a031SChristoph Hellwig 	(dir), (attrs))
6453ab3a031SChristoph Hellwig 
646344e9ffcSJens Axboe static inline bool queue_is_mq(struct request_queue *q)
64749fd524fSJens Axboe {
648a1ce35faSJens Axboe 	return q->mq_ops;
64949fd524fSJens Axboe }
65049fd524fSJens Axboe 
65152abca64SAlan Stern #ifdef CONFIG_PM
65252abca64SAlan Stern static inline enum rpm_status queue_rpm_status(struct request_queue *q)
65352abca64SAlan Stern {
65452abca64SAlan Stern 	return q->rpm_status;
65552abca64SAlan Stern }
65652abca64SAlan Stern #else
65752abca64SAlan Stern static inline enum rpm_status queue_rpm_status(struct request_queue *q)
65852abca64SAlan Stern {
65952abca64SAlan Stern 	return RPM_ACTIVE;
66052abca64SAlan Stern }
66152abca64SAlan Stern #endif
66252abca64SAlan Stern 
663797476b8SDamien Le Moal static inline bool blk_queue_is_zoned(struct request_queue *q)
664797476b8SDamien Le Moal {
665b1fc937aSChristoph Hellwig 	return IS_ENABLED(CONFIG_BLK_DEV_ZONED) &&
666b1fc937aSChristoph Hellwig 		(q->limits.features & BLK_FEAT_ZONED);
667797476b8SDamien Le Moal }
668797476b8SDamien Le Moal 
6696a5ac984SBart Van Assche #ifdef CONFIG_BLK_DEV_ZONED
670d86e716aSChristoph Hellwig static inline unsigned int disk_nr_zones(struct gendisk *disk)
671965b652eSDamien Le Moal {
672caaf7101SDamien Le Moal 	return disk->nr_zones;
673965b652eSDamien Le Moal }
674caaf7101SDamien Le Moal bool blk_zone_plug_bio(struct bio *bio, unsigned int nr_segs);
675caaf7101SDamien Le Moal #else /* CONFIG_BLK_DEV_ZONED */
676caaf7101SDamien Le Moal static inline unsigned int disk_nr_zones(struct gendisk *disk)
677caaf7101SDamien Le Moal {
678caaf7101SDamien Le Moal 	return 0;
679caaf7101SDamien Le Moal }
680caaf7101SDamien Le Moal static inline bool blk_zone_plug_bio(struct bio *bio, unsigned int nr_segs)
681caaf7101SDamien Le Moal {
682caaf7101SDamien Le Moal 	return false;
683caaf7101SDamien Le Moal }
684caaf7101SDamien Le Moal #endif /* CONFIG_BLK_DEV_ZONED */
685965b652eSDamien Le Moal 
686d86e716aSChristoph Hellwig static inline unsigned int disk_zone_no(struct gendisk *disk, sector_t sector)
6876cc77e9cSChristoph Hellwig {
688d86e716aSChristoph Hellwig 	if (!blk_queue_is_zoned(disk->queue))
6896cc77e9cSChristoph Hellwig 		return 0;
690d86e716aSChristoph Hellwig 	return sector >> ilog2(disk->queue->limits.chunk_sectors);
6916cc77e9cSChristoph Hellwig }
6926cc77e9cSChristoph Hellwig 
693b6cfe228SDamien Le Moal static inline unsigned int bdev_nr_zones(struct block_device *bdev)
694b6cfe228SDamien Le Moal {
695b6cfe228SDamien Le Moal 	return disk_nr_zones(bdev->bd_disk);
696b6cfe228SDamien Le Moal }
697b6cfe228SDamien Le Moal 
6981dc01720SChristoph Hellwig static inline unsigned int bdev_max_open_zones(struct block_device *bdev)
699659bf827SNiklas Cassel {
7008c4955c0SChristoph Hellwig 	return bdev->bd_disk->queue->limits.max_open_zones;
701659bf827SNiklas Cassel }
7021dc01720SChristoph Hellwig 
7031dc01720SChristoph Hellwig static inline unsigned int bdev_max_active_zones(struct block_device *bdev)
7041dc01720SChristoph Hellwig {
7058c4955c0SChristoph Hellwig 	return bdev->bd_disk->queue->limits.max_active_zones;
7061dc01720SChristoph Hellwig }
7071dc01720SChristoph Hellwig 
708d278d4a8SJens Axboe static inline unsigned int blk_queue_depth(struct request_queue *q)
709d278d4a8SJens Axboe {
710d278d4a8SJens Axboe 	if (q->queue_depth)
711d278d4a8SJens Axboe 		return q->queue_depth;
712d278d4a8SJens Axboe 
713d278d4a8SJens Axboe 	return q->nr_requests;
714d278d4a8SJens Axboe }
715d278d4a8SJens Axboe 
7163d6392cfSJens Axboe /*
7173d6392cfSJens Axboe  * default timeout for SG_IO if none specified
7183d6392cfSJens Axboe  */
7193d6392cfSJens Axboe #define BLK_DEFAULT_SG_TIMEOUT	(60 * HZ)
720f2f1fa78SLinus Torvalds #define BLK_MIN_SG_TIMEOUT	(7 * HZ)
7213d6392cfSJens Axboe 
7225705f702SNeilBrown /* This should not be used directly - use rq_for_each_segment */
7231e428079SJens Axboe #define for_each_bio(_bio)		\
7241e428079SJens Axboe 	for (; _bio; _bio = _bio->bi_next)
7251da177e4SLinus Torvalds 
726322cbb50SChristoph Hellwig int __must_check device_add_disk(struct device *parent, struct gendisk *disk,
727322cbb50SChristoph Hellwig 				 const struct attribute_group **groups);
728322cbb50SChristoph Hellwig static inline int __must_check add_disk(struct gendisk *disk)
729322cbb50SChristoph Hellwig {
730322cbb50SChristoph Hellwig 	return device_add_disk(NULL, disk, NULL);
731322cbb50SChristoph Hellwig }
732322cbb50SChristoph Hellwig void del_gendisk(struct gendisk *gp);
733322cbb50SChristoph Hellwig void invalidate_disk(struct gendisk *disk);
734322cbb50SChristoph Hellwig void set_disk_ro(struct gendisk *disk, bool read_only);
735322cbb50SChristoph Hellwig void disk_uevent(struct gendisk *disk, enum kobject_action action);
736322cbb50SChristoph Hellwig 
737b8c873edSAl Viro static inline u8 bdev_partno(const struct block_device *bdev)
738b8c873edSAl Viro {
7391116b9faSAl Viro 	return atomic_read(&bdev->__bd_flags) & BD_PARTNO;
7401116b9faSAl Viro }
7411116b9faSAl Viro 
7421116b9faSAl Viro static inline bool bdev_test_flag(const struct block_device *bdev, unsigned flag)
7431116b9faSAl Viro {
7441116b9faSAl Viro 	return atomic_read(&bdev->__bd_flags) & flag;
7451116b9faSAl Viro }
7461116b9faSAl Viro 
7471116b9faSAl Viro static inline void bdev_set_flag(struct block_device *bdev, unsigned flag)
7481116b9faSAl Viro {
7491116b9faSAl Viro 	atomic_or(flag, &bdev->__bd_flags);
7501116b9faSAl Viro }
7511116b9faSAl Viro 
7521116b9faSAl Viro static inline void bdev_clear_flag(struct block_device *bdev, unsigned flag)
7531116b9faSAl Viro {
7541116b9faSAl Viro 	atomic_andnot(flag, &bdev->__bd_flags);
755b8c873edSAl Viro }
756b8c873edSAl Viro 
757322cbb50SChristoph Hellwig static inline int get_disk_ro(struct gendisk *disk)
758322cbb50SChristoph Hellwig {
75901e198f0SAl Viro 	return bdev_test_flag(disk->part0, BD_READ_ONLY) ||
760322cbb50SChristoph Hellwig 		test_bit(GD_READ_ONLY, &disk->state);
761322cbb50SChristoph Hellwig }
762322cbb50SChristoph Hellwig 
763322cbb50SChristoph Hellwig static inline int bdev_read_only(struct block_device *bdev)
764322cbb50SChristoph Hellwig {
76501e198f0SAl Viro 	return bdev_test_flag(bdev, BD_READ_ONLY) || get_disk_ro(bdev->bd_disk);
766322cbb50SChristoph Hellwig }
767322cbb50SChristoph Hellwig 
768322cbb50SChristoph Hellwig bool set_capacity_and_notify(struct gendisk *disk, sector_t size);
769ab6860f6SChristoph Hellwig void disk_force_media_change(struct gendisk *disk);
770560e20e4SChristoph Hellwig void bdev_mark_dead(struct block_device *bdev, bool surprise);
771322cbb50SChristoph Hellwig 
772322cbb50SChristoph Hellwig void add_disk_randomness(struct gendisk *disk) __latent_entropy;
773322cbb50SChristoph Hellwig void rand_initialize_disk(struct gendisk *disk);
774322cbb50SChristoph Hellwig 
775322cbb50SChristoph Hellwig static inline sector_t get_start_sect(struct block_device *bdev)
776322cbb50SChristoph Hellwig {
777322cbb50SChristoph Hellwig 	return bdev->bd_start_sect;
778322cbb50SChristoph Hellwig }
779322cbb50SChristoph Hellwig 
780322cbb50SChristoph Hellwig static inline sector_t bdev_nr_sectors(struct block_device *bdev)
781322cbb50SChristoph Hellwig {
782322cbb50SChristoph Hellwig 	return bdev->bd_nr_sectors;
783322cbb50SChristoph Hellwig }
784322cbb50SChristoph Hellwig 
785322cbb50SChristoph Hellwig static inline loff_t bdev_nr_bytes(struct block_device *bdev)
786322cbb50SChristoph Hellwig {
787322cbb50SChristoph Hellwig 	return (loff_t)bdev_nr_sectors(bdev) << SECTOR_SHIFT;
788322cbb50SChristoph Hellwig }
789322cbb50SChristoph Hellwig 
790322cbb50SChristoph Hellwig static inline sector_t get_capacity(struct gendisk *disk)
791322cbb50SChristoph Hellwig {
792322cbb50SChristoph Hellwig 	return bdev_nr_sectors(disk->part0);
793322cbb50SChristoph Hellwig }
794322cbb50SChristoph Hellwig 
795322cbb50SChristoph Hellwig static inline u64 sb_bdev_nr_blocks(struct super_block *sb)
796322cbb50SChristoph Hellwig {
797322cbb50SChristoph Hellwig 	return bdev_nr_sectors(sb->s_bdev) >>
798322cbb50SChristoph Hellwig 		(sb->s_blocksize_bits - SECTOR_SHIFT);
799322cbb50SChristoph Hellwig }
800322cbb50SChristoph Hellwig 
801322cbb50SChristoph Hellwig int bdev_disk_changed(struct gendisk *disk, bool invalidate);
802322cbb50SChristoph Hellwig 
803322cbb50SChristoph Hellwig void put_disk(struct gendisk *disk);
80474fa8f9cSChristoph Hellwig struct gendisk *__blk_alloc_disk(struct queue_limits *lim, int node,
80574fa8f9cSChristoph Hellwig 		struct lock_class_key *lkclass);
806322cbb50SChristoph Hellwig 
807322cbb50SChristoph Hellwig /**
808322cbb50SChristoph Hellwig  * blk_alloc_disk - allocate a gendisk structure
80974fa8f9cSChristoph Hellwig  * @lim: queue limits to be used for this disk.
810322cbb50SChristoph Hellwig  * @node_id: numa node to allocate on
811322cbb50SChristoph Hellwig  *
812322cbb50SChristoph Hellwig  * Allocate and pre-initialize a gendisk structure for use with BIO based
813322cbb50SChristoph Hellwig  * drivers.
814322cbb50SChristoph Hellwig  *
81574fa8f9cSChristoph Hellwig  * Returns an ERR_PTR on error, else the allocated disk.
81674fa8f9cSChristoph Hellwig  *
817322cbb50SChristoph Hellwig  * Context: can sleep
818322cbb50SChristoph Hellwig  */
81974fa8f9cSChristoph Hellwig #define blk_alloc_disk(lim, node_id)					\
820322cbb50SChristoph Hellwig ({									\
821322cbb50SChristoph Hellwig 	static struct lock_class_key __key;				\
822322cbb50SChristoph Hellwig 									\
82374fa8f9cSChristoph Hellwig 	__blk_alloc_disk(lim, node_id, &__key);				\
824322cbb50SChristoph Hellwig })
825322cbb50SChristoph Hellwig 
826322cbb50SChristoph Hellwig int __register_blkdev(unsigned int major, const char *name,
827322cbb50SChristoph Hellwig 		void (*probe)(dev_t devt));
828322cbb50SChristoph Hellwig #define register_blkdev(major, name) \
829322cbb50SChristoph Hellwig 	__register_blkdev(major, name, NULL)
830322cbb50SChristoph Hellwig void unregister_blkdev(unsigned int major, const char *name);
831322cbb50SChristoph Hellwig 
832444aa2c5SChristoph Hellwig bool disk_check_media_change(struct gendisk *disk);
833322cbb50SChristoph Hellwig void set_capacity(struct gendisk *disk, sector_t size);
834322cbb50SChristoph Hellwig 
835322cbb50SChristoph Hellwig #ifdef CONFIG_BLOCK_HOLDER_DEPRECATED
836322cbb50SChristoph Hellwig int bd_link_disk_holder(struct block_device *bdev, struct gendisk *disk);
837322cbb50SChristoph Hellwig void bd_unlink_disk_holder(struct block_device *bdev, struct gendisk *disk);
838322cbb50SChristoph Hellwig #else
839322cbb50SChristoph Hellwig static inline int bd_link_disk_holder(struct block_device *bdev,
840322cbb50SChristoph Hellwig 				      struct gendisk *disk)
841322cbb50SChristoph Hellwig {
842322cbb50SChristoph Hellwig 	return 0;
843322cbb50SChristoph Hellwig }
844322cbb50SChristoph Hellwig static inline void bd_unlink_disk_holder(struct block_device *bdev,
845322cbb50SChristoph Hellwig 					 struct gendisk *disk)
846322cbb50SChristoph Hellwig {
847322cbb50SChristoph Hellwig }
848322cbb50SChristoph Hellwig #endif /* CONFIG_BLOCK_HOLDER_DEPRECATED */
849322cbb50SChristoph Hellwig 
850322cbb50SChristoph Hellwig dev_t part_devt(struct gendisk *disk, u8 partno);
851322cbb50SChristoph Hellwig void inc_diskseq(struct gendisk *disk);
852322cbb50SChristoph Hellwig void blk_request_module(dev_t devt);
8532d4dc890SIlya Loginov 
8541da177e4SLinus Torvalds extern int blk_register_queue(struct gendisk *disk);
8551da177e4SLinus Torvalds extern void blk_unregister_queue(struct gendisk *disk);
8563e08773cSChristoph Hellwig void submit_bio_noacct(struct bio *bio);
8575a97806fSChristoph Hellwig struct bio *bio_split_to_limits(struct bio *bio);
85824b83debSChristoph Hellwig 
859ef9e3facSKiyoshi Ueda extern int blk_lld_busy(struct request_queue *q);
8609a95e4efSBart Van Assche extern int blk_queue_enter(struct request_queue *q, blk_mq_req_flags_t flags);
8612e6edc95SDan Williams extern void blk_queue_exit(struct request_queue *q);
8621da177e4SLinus Torvalds extern void blk_sync_queue(struct request_queue *q);
863fb9b16e1SKeith Busch 
864e47bc4edSChaitanya Kulkarni /* Helper to convert REQ_OP_XXX to its string format XXX */
86577e7ffd7SBart Van Assche extern const char *blk_op_str(enum req_op op);
866e47bc4edSChaitanya Kulkarni 
8672a842acaSChristoph Hellwig int blk_status_to_errno(blk_status_t status);
8682a842acaSChristoph Hellwig blk_status_t errno_to_blk_status(int errno);
8697ba37927SKent Overstreet const char *blk_status_to_str(blk_status_t status);
8702a842acaSChristoph Hellwig 
871ef99b2d3SChristoph Hellwig /* only poll the hardware once, don't continue until a completion was found */
872ef99b2d3SChristoph Hellwig #define BLK_POLL_ONESHOT		(1 << 0)
8735a72e899SJens Axboe int bio_poll(struct bio *bio, struct io_comp_batch *iob, unsigned int flags);
8745a72e899SJens Axboe int iocb_bio_iopoll(struct kiocb *kiocb, struct io_comp_batch *iob,
8755a72e899SJens Axboe 			unsigned int flags);
87605229beeSJens Axboe 
877165125e1SJens Axboe static inline struct request_queue *bdev_get_queue(struct block_device *bdev)
8781da177e4SLinus Torvalds {
87917220ca5SPavel Begunkov 	return bdev->bd_queue;	/* this is never NULL */
8801da177e4SLinus Torvalds }
8811da177e4SLinus Torvalds 
88202694e86SChaitanya Kulkarni /* Helper to convert BLK_ZONE_ZONE_XXX to its string format XXX */
88302694e86SChaitanya Kulkarni const char *blk_zone_cond_str(enum blk_zone_cond zone_cond);
88402694e86SChaitanya Kulkarni 
885d0ea6bdeSDamien Le Moal static inline unsigned int bio_zone_no(struct bio *bio)
886d0ea6bdeSDamien Le Moal {
887d86e716aSChristoph Hellwig 	return disk_zone_no(bio->bi_bdev->bd_disk, bio->bi_iter.bi_sector);
888d0ea6bdeSDamien Le Moal }
889d0ea6bdeSDamien Le Moal 
890b85a3c1bSDamien Le Moal static inline bool bio_straddles_zones(struct bio *bio)
891d0ea6bdeSDamien Le Moal {
892b85a3c1bSDamien Le Moal 	return bio_sectors(bio) &&
893b85a3c1bSDamien Le Moal 		bio_zone_no(bio) !=
894b85a3c1bSDamien Le Moal 		disk_zone_no(bio->bi_bdev->bd_disk, bio_end_sector(bio) - 1);
895d0ea6bdeSDamien Le Moal }
8966cc77e9cSChristoph Hellwig 
897762380adSJens Axboe /*
898f70167a7SJohn Garry  * Return how much within the boundary is left to be used for I/O at a given
899f70167a7SJohn Garry  * offset.
9008689461bSChristoph Hellwig  */
901f70167a7SJohn Garry static inline unsigned int blk_boundary_sectors_left(sector_t offset,
902f70167a7SJohn Garry 		unsigned int boundary_sectors)
9038689461bSChristoph Hellwig {
904f70167a7SJohn Garry 	if (unlikely(!is_power_of_2(boundary_sectors)))
905f70167a7SJohn Garry 		return boundary_sectors - sector_div(offset, boundary_sectors);
906f70167a7SJohn Garry 	return boundary_sectors - (offset & (boundary_sectors - 1));
9078689461bSChristoph Hellwig }
9088689461bSChristoph Hellwig 
909d690cb8aSChristoph Hellwig /**
910d690cb8aSChristoph Hellwig  * queue_limits_start_update - start an atomic update of queue limits
911d690cb8aSChristoph Hellwig  * @q:		queue to update
912d690cb8aSChristoph Hellwig  *
913d690cb8aSChristoph Hellwig  * This functions starts an atomic update of the queue limits.  It takes a lock
914d690cb8aSChristoph Hellwig  * to prevent other updates and returns a snapshot of the current limits that
915d690cb8aSChristoph Hellwig  * the caller can modify.  The caller must call queue_limits_commit_update()
916d690cb8aSChristoph Hellwig  * to finish the update.
917d690cb8aSChristoph Hellwig  *
918d690cb8aSChristoph Hellwig  * Context: process context.  The caller must have frozen the queue or ensured
919d690cb8aSChristoph Hellwig  * that there is outstanding I/O by other means.
920d690cb8aSChristoph Hellwig  */
921d690cb8aSChristoph Hellwig static inline struct queue_limits
922d690cb8aSChristoph Hellwig queue_limits_start_update(struct request_queue *q)
923d690cb8aSChristoph Hellwig {
924d690cb8aSChristoph Hellwig 	mutex_lock(&q->limits_lock);
925d690cb8aSChristoph Hellwig 	return q->limits;
926d690cb8aSChristoph Hellwig }
927d690cb8aSChristoph Hellwig int queue_limits_commit_update(struct request_queue *q,
928d690cb8aSChristoph Hellwig 		struct queue_limits *lim);
929631d4efbSChristoph Hellwig int queue_limits_set(struct request_queue *q, struct queue_limits *lim);
930d690cb8aSChristoph Hellwig 
93129306626SChristoph Hellwig /**
93229306626SChristoph Hellwig  * queue_limits_cancel_update - cancel an atomic update of queue limits
93329306626SChristoph Hellwig  * @q:		queue to update
93429306626SChristoph Hellwig  *
93529306626SChristoph Hellwig  * This functions cancels an atomic update of the queue limits started by
93629306626SChristoph Hellwig  * queue_limits_start_update() and should be used when an error occurs after
93729306626SChristoph Hellwig  * starting update.
93829306626SChristoph Hellwig  */
93929306626SChristoph Hellwig static inline void queue_limits_cancel_update(struct request_queue *q)
94029306626SChristoph Hellwig {
94129306626SChristoph Hellwig 	mutex_unlock(&q->limits_lock);
94229306626SChristoph Hellwig }
94329306626SChristoph Hellwig 
9448689461bSChristoph Hellwig /*
94573e3715eSChristoph Hellwig  * These helpers are for drivers that have sloppy feature negotiation and might
94673e3715eSChristoph Hellwig  * have to disable DISCARD, WRITE_ZEROES or SECURE_DISCARD from the I/O
94773e3715eSChristoph Hellwig  * completion handler when the device returned an indicator that the respective
94873e3715eSChristoph Hellwig  * feature is not actually supported.  They are racy and the driver needs to
94973e3715eSChristoph Hellwig  * cope with that.  Try to avoid this scheme if you can.
95073e3715eSChristoph Hellwig  */
95173e3715eSChristoph Hellwig static inline void blk_queue_disable_discard(struct request_queue *q)
95273e3715eSChristoph Hellwig {
95373e3715eSChristoph Hellwig 	q->limits.max_discard_sectors = 0;
95473e3715eSChristoph Hellwig }
95573e3715eSChristoph Hellwig 
95673e3715eSChristoph Hellwig static inline void blk_queue_disable_secure_erase(struct request_queue *q)
95773e3715eSChristoph Hellwig {
95873e3715eSChristoph Hellwig 	q->limits.max_secure_erase_sectors = 0;
95973e3715eSChristoph Hellwig }
96073e3715eSChristoph Hellwig 
96173e3715eSChristoph Hellwig static inline void blk_queue_disable_write_zeroes(struct request_queue *q)
96273e3715eSChristoph Hellwig {
96373e3715eSChristoph Hellwig 	q->limits.max_write_zeroes_sectors = 0;
96473e3715eSChristoph Hellwig }
96573e3715eSChristoph Hellwig 
96673e3715eSChristoph Hellwig /*
9671da177e4SLinus Torvalds  * Access functions for manipulating queue properties
9681da177e4SLinus Torvalds  */
9697c958e32SMartin K. Petersen extern void blk_limits_io_min(struct queue_limits *limits, unsigned int min);
9703c5820c7SMartin K. Petersen extern void blk_limits_io_opt(struct queue_limits *limits, unsigned int opt);
971d278d4a8SJens Axboe extern void blk_set_queue_depth(struct request_queue *q, unsigned int depth);
972b1bd055dSMartin K. Petersen extern void blk_set_stacking_limits(struct queue_limits *lim);
973c72758f3SMartin K. Petersen extern int blk_stack_limits(struct queue_limits *t, struct queue_limits *b,
974c72758f3SMartin K. Petersen 			    sector_t offset);
975c1373f1cSChristoph Hellwig void queue_limits_stack_bdev(struct queue_limits *t, struct block_device *bdev,
976c1373f1cSChristoph Hellwig 		sector_t offset, const char *pfx);
977242f9dcbSJens Axboe extern void blk_queue_rq_timeout(struct request_queue *, unsigned int);
9782e9bc346SChristoph Hellwig 
979a2247f19SDamien Le Moal struct blk_independent_access_ranges *
980a2247f19SDamien Le Moal disk_alloc_independent_access_ranges(struct gendisk *disk, int nr_ia_ranges);
981a2247f19SDamien Le Moal void disk_set_independent_access_ranges(struct gendisk *disk,
982a2247f19SDamien Le Moal 				struct blk_independent_access_ranges *iars);
983a2247f19SDamien Le Moal 
98409ac46c4STejun Heo bool __must_check blk_get_queue(struct request_queue *);
985165125e1SJens Axboe extern void blk_put_queue(struct request_queue *);
9867a5428dcSChristoph Hellwig 
9877a5428dcSChristoph Hellwig void blk_mark_disk_dead(struct gendisk *disk);
9881da177e4SLinus Torvalds 
9891a4dcfa8SChristoph Hellwig #ifdef CONFIG_BLOCK
990316cc67dSShaohua Li /*
99175df7136SSuresh Jayaraman  * blk_plug permits building a queue of related requests by holding the I/O
99275df7136SSuresh Jayaraman  * fragments for a short period. This allows merging of sequential requests
99375df7136SSuresh Jayaraman  * into single larger request. As the requests are moved from a per-task list to
99475df7136SSuresh Jayaraman  * the device's request_queue in a batch, this results in improved scalability
99575df7136SSuresh Jayaraman  * as the lock contention for request_queue lock is reduced.
99675df7136SSuresh Jayaraman  *
99775df7136SSuresh Jayaraman  * It is ok not to disable preemption when adding the request to the plug list
998008f75a2SChristoph Hellwig  * or when attempting a merge. For details, please see schedule() where
999008f75a2SChristoph Hellwig  * blk_flush_plug() is called.
1000316cc67dSShaohua Li  */
100173c10101SJens Axboe struct blk_plug {
1002bc490f81SJens Axboe 	struct request *mq_list; /* blk-mq requests */
100347c122e3SJens Axboe 
100447c122e3SJens Axboe 	/* if ios_left is > 1, we can batch tag/rq allocations */
100547c122e3SJens Axboe 	struct request *cached_rq;
1006da4c8c3dSJens Axboe 	u64 cur_ktime;
100747c122e3SJens Axboe 	unsigned short nr_ios;
100847c122e3SJens Axboe 
10095f0ed774SJens Axboe 	unsigned short rq_count;
101047c122e3SJens Axboe 
1011ce5b009cSJens Axboe 	bool multiple_queues;
1012dc5fc361SJens Axboe 	bool has_elevator;
101347c122e3SJens Axboe 
101447c122e3SJens Axboe 	struct list_head cb_list; /* md requires an unplug callback */
101573c10101SJens Axboe };
101655c022bbSShaohua Li 
10179cbb1750SNeilBrown struct blk_plug_cb;
101874018dc3SNeilBrown typedef void (*blk_plug_cb_fn)(struct blk_plug_cb *, bool);
1019048c9374SNeilBrown struct blk_plug_cb {
1020048c9374SNeilBrown 	struct list_head list;
10219cbb1750SNeilBrown 	blk_plug_cb_fn callback;
10229cbb1750SNeilBrown 	void *data;
1023048c9374SNeilBrown };
10249cbb1750SNeilBrown extern struct blk_plug_cb *blk_check_plugged(blk_plug_cb_fn unplug,
10259cbb1750SNeilBrown 					     void *data, int size);
102673c10101SJens Axboe extern void blk_start_plug(struct blk_plug *);
102747c122e3SJens Axboe extern void blk_start_plug_nr_ios(struct blk_plug *, unsigned short);
102873c10101SJens Axboe extern void blk_finish_plug(struct blk_plug *);
102973c10101SJens Axboe 
1030aa8dcccaSChristoph Hellwig void __blk_flush_plug(struct blk_plug *plug, bool from_schedule);
1031aa8dcccaSChristoph Hellwig static inline void blk_flush_plug(struct blk_plug *plug, bool async)
103273c10101SJens Axboe {
1033aa8dcccaSChristoph Hellwig 	if (plug)
1034aa8dcccaSChristoph Hellwig 		__blk_flush_plug(plug, async);
103573c10101SJens Axboe }
103673c10101SJens Axboe 
103706b23f92SJens Axboe /*
103806b23f92SJens Axboe  * tsk == current here
103906b23f92SJens Axboe  */
104006b23f92SJens Axboe static inline void blk_plug_invalidate_ts(struct task_struct *tsk)
104106b23f92SJens Axboe {
104206b23f92SJens Axboe 	struct blk_plug *plug = tsk->plug;
104306b23f92SJens Axboe 
104406b23f92SJens Axboe 	if (plug)
104506b23f92SJens Axboe 		plug->cur_ktime = 0;
104606b23f92SJens Axboe 	current->flags &= ~PF_BLOCK_TS;
104706b23f92SJens Axboe }
104806b23f92SJens Axboe 
1049c6bf3f0eSChristoph Hellwig int blkdev_issue_flush(struct block_device *bdev);
10501a4dcfa8SChristoph Hellwig long nr_blockdev_pages(void);
10511a4dcfa8SChristoph Hellwig #else /* CONFIG_BLOCK */
10521a4dcfa8SChristoph Hellwig struct blk_plug {
10531a4dcfa8SChristoph Hellwig };
10541a4dcfa8SChristoph Hellwig 
105547c122e3SJens Axboe static inline void blk_start_plug_nr_ios(struct blk_plug *plug,
105647c122e3SJens Axboe 					 unsigned short nr_ios)
105747c122e3SJens Axboe {
105847c122e3SJens Axboe }
105947c122e3SJens Axboe 
10601a4dcfa8SChristoph Hellwig static inline void blk_start_plug(struct blk_plug *plug)
10611a4dcfa8SChristoph Hellwig {
10621a4dcfa8SChristoph Hellwig }
10631a4dcfa8SChristoph Hellwig 
10641a4dcfa8SChristoph Hellwig static inline void blk_finish_plug(struct blk_plug *plug)
10651a4dcfa8SChristoph Hellwig {
10661a4dcfa8SChristoph Hellwig }
10671a4dcfa8SChristoph Hellwig 
1068008f75a2SChristoph Hellwig static inline void blk_flush_plug(struct blk_plug *plug, bool async)
10691a4dcfa8SChristoph Hellwig {
10701a4dcfa8SChristoph Hellwig }
10711a4dcfa8SChristoph Hellwig 
107206b23f92SJens Axboe static inline void blk_plug_invalidate_ts(struct task_struct *tsk)
107306b23f92SJens Axboe {
107406b23f92SJens Axboe }
107506b23f92SJens Axboe 
1076c6bf3f0eSChristoph Hellwig static inline int blkdev_issue_flush(struct block_device *bdev)
10771a4dcfa8SChristoph Hellwig {
10781a4dcfa8SChristoph Hellwig 	return 0;
10791a4dcfa8SChristoph Hellwig }
10801a4dcfa8SChristoph Hellwig 
10811a4dcfa8SChristoph Hellwig static inline long nr_blockdev_pages(void)
10821a4dcfa8SChristoph Hellwig {
10831a4dcfa8SChristoph Hellwig 	return 0;
10841a4dcfa8SChristoph Hellwig }
10851a4dcfa8SChristoph Hellwig #endif /* CONFIG_BLOCK */
10861a4dcfa8SChristoph Hellwig 
108771ac860aSMing Lei extern void blk_io_schedule(void);
108871ac860aSMing Lei 
108944abff2cSChristoph Hellwig int blkdev_issue_discard(struct block_device *bdev, sector_t sector,
109044abff2cSChristoph Hellwig 		sector_t nr_sects, gfp_t gfp_mask);
109144abff2cSChristoph Hellwig int __blkdev_issue_discard(struct block_device *bdev, sector_t sector,
109244abff2cSChristoph Hellwig 		sector_t nr_sects, gfp_t gfp_mask, struct bio **biop);
109344abff2cSChristoph Hellwig int blkdev_issue_secure_erase(struct block_device *bdev, sector_t sector,
109444abff2cSChristoph Hellwig 		sector_t nr_sects, gfp_t gfp);
1095ee472d83SChristoph Hellwig 
1096ee472d83SChristoph Hellwig #define BLKDEV_ZERO_NOUNMAP	(1 << 0)  /* do not free blocks */
1097cb365b96SChristoph Hellwig #define BLKDEV_ZERO_NOFALLBACK	(1 << 1)  /* don't write explicit zeroes */
1098*bf86bcdbSChristoph Hellwig #define BLKDEV_ZERO_KILLABLE	(1 << 2)  /* interruptible by fatal signals */
1099ee472d83SChristoph Hellwig 
1100e73c23ffSChaitanya Kulkarni extern int __blkdev_issue_zeroout(struct block_device *bdev, sector_t sector,
1101e73c23ffSChaitanya Kulkarni 		sector_t nr_sects, gfp_t gfp_mask, struct bio **biop,
1102ee472d83SChristoph Hellwig 		unsigned flags);
11033f14d792SDmitry Monakhov extern int blkdev_issue_zeroout(struct block_device *bdev, sector_t sector,
1104ee472d83SChristoph Hellwig 		sector_t nr_sects, gfp_t gfp_mask, unsigned flags);
1105ee472d83SChristoph Hellwig 
11062cf6d26aSChristoph Hellwig static inline int sb_issue_discard(struct super_block *sb, sector_t block,
11072cf6d26aSChristoph Hellwig 		sector_t nr_blocks, gfp_t gfp_mask, unsigned long flags)
1108fb2dce86SDavid Woodhouse {
1109233bde21SBart Van Assche 	return blkdev_issue_discard(sb->s_bdev,
1110233bde21SBart Van Assche 				    block << (sb->s_blocksize_bits -
1111233bde21SBart Van Assche 					      SECTOR_SHIFT),
1112233bde21SBart Van Assche 				    nr_blocks << (sb->s_blocksize_bits -
1113233bde21SBart Van Assche 						  SECTOR_SHIFT),
111444abff2cSChristoph Hellwig 				    gfp_mask);
1115fb2dce86SDavid Woodhouse }
1116e6fa0be6SLukas Czerner static inline int sb_issue_zeroout(struct super_block *sb, sector_t block,
1117a107e5a3STheodore Ts'o 		sector_t nr_blocks, gfp_t gfp_mask)
1118e6fa0be6SLukas Czerner {
1119e6fa0be6SLukas Czerner 	return blkdev_issue_zeroout(sb->s_bdev,
1120233bde21SBart Van Assche 				    block << (sb->s_blocksize_bits -
1121233bde21SBart Van Assche 					      SECTOR_SHIFT),
1122233bde21SBart Van Assche 				    nr_blocks << (sb->s_blocksize_bits -
1123233bde21SBart Van Assche 						  SECTOR_SHIFT),
1124ee472d83SChristoph Hellwig 				    gfp_mask, 0);
1125e6fa0be6SLukas Czerner }
11261da177e4SLinus Torvalds 
1127fa01b1e9SChristoph Hellwig static inline bool bdev_is_partition(struct block_device *bdev)
1128fa01b1e9SChristoph Hellwig {
1129b8c873edSAl Viro 	return bdev_partno(bdev) != 0;
1130fa01b1e9SChristoph Hellwig }
1131fa01b1e9SChristoph Hellwig 
1132eb28d31bSMartin K. Petersen enum blk_default_limits {
1133eb28d31bSMartin K. Petersen 	BLK_MAX_SEGMENTS	= 128,
1134eb28d31bSMartin K. Petersen 	BLK_SAFE_MAX_SECTORS	= 255,
1135eb28d31bSMartin K. Petersen 	BLK_MAX_SEGMENT_SIZE	= 65536,
1136eb28d31bSMartin K. Petersen 	BLK_SEG_BOUNDARY_MASK	= 0xFFFFFFFFUL,
1137eb28d31bSMartin K. Petersen };
11380e435ac2SMilan Broz 
1139d6b9f4e6SChristoph Hellwig /*
1140d6b9f4e6SChristoph Hellwig  * Default upper limit for the software max_sectors limit used for
1141d6b9f4e6SChristoph Hellwig  * regular file system I/O.  This can be increased through sysfs.
1142d6b9f4e6SChristoph Hellwig  *
1143d6b9f4e6SChristoph Hellwig  * Not to be confused with the max_hw_sector limit that is entirely
1144d6b9f4e6SChristoph Hellwig  * controlled by the driver, usually based on hardware limits.
1145d6b9f4e6SChristoph Hellwig  */
1146d6b9f4e6SChristoph Hellwig #define BLK_DEF_MAX_SECTORS_CAP	2560u
11470a26f327SKeith Busch 
1148af2c68feSBart Van Assche static inline unsigned long queue_segment_boundary(const struct request_queue *q)
1149ae03bf63SMartin K. Petersen {
1150025146e1SMartin K. Petersen 	return q->limits.seg_boundary_mask;
1151ae03bf63SMartin K. Petersen }
1152ae03bf63SMartin K. Petersen 
1153af2c68feSBart Van Assche static inline unsigned long queue_virt_boundary(const struct request_queue *q)
115403100aadSKeith Busch {
115503100aadSKeith Busch 	return q->limits.virt_boundary_mask;
115603100aadSKeith Busch }
115703100aadSKeith Busch 
1158af2c68feSBart Van Assche static inline unsigned int queue_max_sectors(const struct request_queue *q)
1159ae03bf63SMartin K. Petersen {
1160025146e1SMartin K. Petersen 	return q->limits.max_sectors;
1161ae03bf63SMartin K. Petersen }
1162ae03bf63SMartin K. Petersen 
1163547e2f70SChristoph Hellwig static inline unsigned int queue_max_bytes(struct request_queue *q)
1164547e2f70SChristoph Hellwig {
1165547e2f70SChristoph Hellwig 	return min_t(unsigned int, queue_max_sectors(q), INT_MAX >> 9) << 9;
1166547e2f70SChristoph Hellwig }
1167547e2f70SChristoph Hellwig 
1168af2c68feSBart Van Assche static inline unsigned int queue_max_hw_sectors(const struct request_queue *q)
1169ae03bf63SMartin K. Petersen {
1170025146e1SMartin K. Petersen 	return q->limits.max_hw_sectors;
1171ae03bf63SMartin K. Petersen }
1172ae03bf63SMartin K. Petersen 
1173af2c68feSBart Van Assche static inline unsigned short queue_max_segments(const struct request_queue *q)
1174ae03bf63SMartin K. Petersen {
11758a78362cSMartin K. Petersen 	return q->limits.max_segments;
1176ae03bf63SMartin K. Petersen }
1177ae03bf63SMartin K. Petersen 
1178af2c68feSBart Van Assche static inline unsigned short queue_max_discard_segments(const struct request_queue *q)
11791e739730SChristoph Hellwig {
11801e739730SChristoph Hellwig 	return q->limits.max_discard_segments;
11811e739730SChristoph Hellwig }
11821e739730SChristoph Hellwig 
1183af2c68feSBart Van Assche static inline unsigned int queue_max_segment_size(const struct request_queue *q)
1184ae03bf63SMartin K. Petersen {
1185025146e1SMartin K. Petersen 	return q->limits.max_segment_size;
1186ae03bf63SMartin K. Petersen }
1187ae03bf63SMartin K. Petersen 
1188ccdbf0aaSDamien Le Moal static inline unsigned int queue_limits_max_zone_append_sectors(struct queue_limits *l)
11890512a75bSKeith Busch {
1190ccdbf0aaSDamien Le Moal 	unsigned int max_sectors = min(l->chunk_sectors, l->max_hw_sectors);
1191fe6f0cdcSJohannes Thumshirn 
1192ccdbf0aaSDamien Le Moal 	return min_not_zero(l->max_zone_append_sectors, max_sectors);
1193ccdbf0aaSDamien Le Moal }
1194fe6f0cdcSJohannes Thumshirn 
1195ccdbf0aaSDamien Le Moal static inline unsigned int queue_max_zone_append_sectors(struct request_queue *q)
1196ccdbf0aaSDamien Le Moal {
1197ccdbf0aaSDamien Le Moal 	if (!blk_queue_is_zoned(q))
1198ccdbf0aaSDamien Le Moal 		return 0;
1199ccdbf0aaSDamien Le Moal 
1200ccdbf0aaSDamien Le Moal 	return queue_limits_max_zone_append_sectors(&q->limits);
1201ccdbf0aaSDamien Le Moal }
1202ccdbf0aaSDamien Le Moal 
1203ccdbf0aaSDamien Le Moal static inline bool queue_emulates_zone_append(struct request_queue *q)
1204ccdbf0aaSDamien Le Moal {
1205ccdbf0aaSDamien Le Moal 	return blk_queue_is_zoned(q) && !q->limits.max_zone_append_sectors;
1206ccdbf0aaSDamien Le Moal }
1207ccdbf0aaSDamien Le Moal 
1208ccdbf0aaSDamien Le Moal static inline bool bdev_emulates_zone_append(struct block_device *bdev)
1209ccdbf0aaSDamien Le Moal {
1210ccdbf0aaSDamien Le Moal 	return queue_emulates_zone_append(bdev_get_queue(bdev));
12110512a75bSKeith Busch }
12120512a75bSKeith Busch 
12132aba0d19SChristoph Hellwig static inline unsigned int
12142aba0d19SChristoph Hellwig bdev_max_zone_append_sectors(struct block_device *bdev)
12152aba0d19SChristoph Hellwig {
12162aba0d19SChristoph Hellwig 	return queue_max_zone_append_sectors(bdev_get_queue(bdev));
12172aba0d19SChristoph Hellwig }
12182aba0d19SChristoph Hellwig 
121965ea1b66SNaohiro Aota static inline unsigned int bdev_max_segments(struct block_device *bdev)
122065ea1b66SNaohiro Aota {
122165ea1b66SNaohiro Aota 	return queue_max_segments(bdev_get_queue(bdev));
122265ea1b66SNaohiro Aota }
122365ea1b66SNaohiro Aota 
1224ad6bf88aSMikulas Patocka static inline unsigned queue_logical_block_size(const struct request_queue *q)
12251da177e4SLinus Torvalds {
12265476394aSChristoph Hellwig 	return q->limits.logical_block_size;
12271da177e4SLinus Torvalds }
12281da177e4SLinus Torvalds 
1229ad6bf88aSMikulas Patocka static inline unsigned int bdev_logical_block_size(struct block_device *bdev)
12301da177e4SLinus Torvalds {
1231e1defc4fSMartin K. Petersen 	return queue_logical_block_size(bdev_get_queue(bdev));
12321da177e4SLinus Torvalds }
12331da177e4SLinus Torvalds 
1234af2c68feSBart Van Assche static inline unsigned int queue_physical_block_size(const struct request_queue *q)
1235c72758f3SMartin K. Petersen {
1236c72758f3SMartin K. Petersen 	return q->limits.physical_block_size;
1237c72758f3SMartin K. Petersen }
1238c72758f3SMartin K. Petersen 
1239892b6f90SMartin K. Petersen static inline unsigned int bdev_physical_block_size(struct block_device *bdev)
1240ac481c20SMartin K. Petersen {
1241ac481c20SMartin K. Petersen 	return queue_physical_block_size(bdev_get_queue(bdev));
1242ac481c20SMartin K. Petersen }
1243ac481c20SMartin K. Petersen 
1244af2c68feSBart Van Assche static inline unsigned int queue_io_min(const struct request_queue *q)
1245c72758f3SMartin K. Petersen {
1246c72758f3SMartin K. Petersen 	return q->limits.io_min;
1247c72758f3SMartin K. Petersen }
1248c72758f3SMartin K. Petersen 
1249ac481c20SMartin K. Petersen static inline int bdev_io_min(struct block_device *bdev)
1250ac481c20SMartin K. Petersen {
1251ac481c20SMartin K. Petersen 	return queue_io_min(bdev_get_queue(bdev));
1252ac481c20SMartin K. Petersen }
1253ac481c20SMartin K. Petersen 
1254af2c68feSBart Van Assche static inline unsigned int queue_io_opt(const struct request_queue *q)
1255c72758f3SMartin K. Petersen {
1256c72758f3SMartin K. Petersen 	return q->limits.io_opt;
1257c72758f3SMartin K. Petersen }
1258c72758f3SMartin K. Petersen 
1259ac481c20SMartin K. Petersen static inline int bdev_io_opt(struct block_device *bdev)
1260ac481c20SMartin K. Petersen {
1261ac481c20SMartin K. Petersen 	return queue_io_opt(bdev_get_queue(bdev));
1262ac481c20SMartin K. Petersen }
1263ac481c20SMartin K. Petersen 
1264a805a4faSDamien Le Moal static inline unsigned int
1265a805a4faSDamien Le Moal queue_zone_write_granularity(const struct request_queue *q)
1266a805a4faSDamien Le Moal {
1267a805a4faSDamien Le Moal 	return q->limits.zone_write_granularity;
1268a805a4faSDamien Le Moal }
1269a805a4faSDamien Le Moal 
1270a805a4faSDamien Le Moal static inline unsigned int
1271a805a4faSDamien Le Moal bdev_zone_write_granularity(struct block_device *bdev)
1272a805a4faSDamien Le Moal {
1273a805a4faSDamien Le Moal 	return queue_zone_write_granularity(bdev_get_queue(bdev));
1274a805a4faSDamien Le Moal }
1275a805a4faSDamien Le Moal 
127689098b07SChristoph Hellwig int bdev_alignment_offset(struct block_device *bdev);
12775c4b4a5cSChristoph Hellwig unsigned int bdev_discard_alignment(struct block_device *bdev);
1278c6e66634SPaolo Bonzini 
1279cf0fbf89SChristoph Hellwig static inline unsigned int bdev_max_discard_sectors(struct block_device *bdev)
1280cf0fbf89SChristoph Hellwig {
1281cf0fbf89SChristoph Hellwig 	return bdev_get_queue(bdev)->limits.max_discard_sectors;
1282cf0fbf89SChristoph Hellwig }
1283cf0fbf89SChristoph Hellwig 
12847b47ef52SChristoph Hellwig static inline unsigned int bdev_discard_granularity(struct block_device *bdev)
12857b47ef52SChristoph Hellwig {
12867b47ef52SChristoph Hellwig 	return bdev_get_queue(bdev)->limits.discard_granularity;
12877b47ef52SChristoph Hellwig }
12887b47ef52SChristoph Hellwig 
128944abff2cSChristoph Hellwig static inline unsigned int
129044abff2cSChristoph Hellwig bdev_max_secure_erase_sectors(struct block_device *bdev)
129144abff2cSChristoph Hellwig {
129244abff2cSChristoph Hellwig 	return bdev_get_queue(bdev)->limits.max_secure_erase_sectors;
129344abff2cSChristoph Hellwig }
129444abff2cSChristoph Hellwig 
1295a6f0788eSChaitanya Kulkarni static inline unsigned int bdev_write_zeroes_sectors(struct block_device *bdev)
1296a6f0788eSChaitanya Kulkarni {
1297a6f0788eSChaitanya Kulkarni 	struct request_queue *q = bdev_get_queue(bdev);
1298a6f0788eSChaitanya Kulkarni 
1299a6f0788eSChaitanya Kulkarni 	if (q)
1300a6f0788eSChaitanya Kulkarni 		return q->limits.max_write_zeroes_sectors;
1301a6f0788eSChaitanya Kulkarni 
1302a6f0788eSChaitanya Kulkarni 	return 0;
1303a6f0788eSChaitanya Kulkarni }
1304a6f0788eSChaitanya Kulkarni 
130510f0d2a5SChristoph Hellwig static inline bool bdev_nonrot(struct block_device *bdev)
130610f0d2a5SChristoph Hellwig {
130710f0d2a5SChristoph Hellwig 	return blk_queue_nonrot(bdev_get_queue(bdev));
130810f0d2a5SChristoph Hellwig }
130910f0d2a5SChristoph Hellwig 
13103222d8c2SChristoph Hellwig static inline bool bdev_synchronous(struct block_device *bdev)
13113222d8c2SChristoph Hellwig {
1312aadd5c59SChristoph Hellwig 	return bdev->bd_disk->queue->limits.features & BLK_FEAT_SYNCHRONOUS;
13133222d8c2SChristoph Hellwig }
13143222d8c2SChristoph Hellwig 
131536d25489SChristoph Hellwig static inline bool bdev_stable_writes(struct block_device *bdev)
131636d25489SChristoph Hellwig {
13173c3e85ddSChristoph Hellwig 	struct request_queue *q = bdev_get_queue(bdev);
13183c3e85ddSChristoph Hellwig 
1319c6e56cf6SChristoph Hellwig 	if (IS_ENABLED(CONFIG_BLK_DEV_INTEGRITY) &&
1320c6e56cf6SChristoph Hellwig 	    q->limits.integrity.csum_type != BLK_INTEGRITY_CSUM_NONE)
13213c3e85ddSChristoph Hellwig 		return true;
13221a02f3a7SChristoph Hellwig 	return q->limits.features & BLK_FEAT_STABLE_WRITES;
132336d25489SChristoph Hellwig }
132436d25489SChristoph Hellwig 
13251122c0c1SChristoph Hellwig static inline bool blk_queue_write_cache(struct request_queue *q)
13261122c0c1SChristoph Hellwig {
13271122c0c1SChristoph Hellwig 	return (q->limits.features & BLK_FEAT_WRITE_CACHE) &&
1328bae1c743SChristoph Hellwig 		!(q->limits.flags & BLK_FLAG_WRITE_CACHE_DISABLED);
132908e688fdSChristoph Hellwig }
1330a557e82eSChristoph Hellwig 
1331a557e82eSChristoph Hellwig static inline bool bdev_write_cache(struct block_device *bdev)
1332a557e82eSChristoph Hellwig {
13331122c0c1SChristoph Hellwig 	return blk_queue_write_cache(bdev_get_queue(bdev));
1334797476b8SDamien Le Moal }
1335797476b8SDamien Le Moal 
1336a557e82eSChristoph Hellwig static inline bool bdev_fua(struct block_device *bdev)
1337a557e82eSChristoph Hellwig {
13381122c0c1SChristoph Hellwig 	return bdev_get_queue(bdev)->limits.features & BLK_FEAT_FUA;
1339a557e82eSChristoph Hellwig }
1340a557e82eSChristoph Hellwig 
1341568ec936SChristoph Hellwig static inline bool bdev_nowait(struct block_device *bdev)
1342568ec936SChristoph Hellwig {
1343f76af42fSChristoph Hellwig 	return bdev->bd_disk->queue->limits.features & BLK_FEAT_NOWAIT;
1344568ec936SChristoph Hellwig }
1345568ec936SChristoph Hellwig 
1346797476b8SDamien Le Moal static inline bool bdev_is_zoned(struct block_device *bdev)
1347797476b8SDamien Le Moal {
1348fea127b3SPankaj Raghav 	return blk_queue_is_zoned(bdev_get_queue(bdev));
1349797476b8SDamien Le Moal }
1350797476b8SDamien Le Moal 
1351d67ea690SPankaj Raghav static inline unsigned int bdev_zone_no(struct block_device *bdev, sector_t sec)
1352d67ea690SPankaj Raghav {
1353d67ea690SPankaj Raghav 	return disk_zone_no(bdev->bd_disk, sec);
1354d67ea690SPankaj Raghav }
1355d67ea690SPankaj Raghav 
1356113ab72eSDamien Le Moal static inline sector_t bdev_zone_sectors(struct block_device *bdev)
13576a0cb1bcSHannes Reinecke {
13586a0cb1bcSHannes Reinecke 	struct request_queue *q = bdev_get_queue(bdev);
13596a0cb1bcSHannes Reinecke 
1360de71973cSChristoph Hellwig 	if (!blk_queue_is_zoned(q))
13616cc77e9cSChristoph Hellwig 		return 0;
1362de71973cSChristoph Hellwig 	return q->limits.chunk_sectors;
13636cc77e9cSChristoph Hellwig }
13646a0cb1bcSHannes Reinecke 
1365e29b2100SPankaj Raghav static inline sector_t bdev_offset_from_zone_start(struct block_device *bdev,
1366e29b2100SPankaj Raghav 						   sector_t sector)
1367e29b2100SPankaj Raghav {
1368e29b2100SPankaj Raghav 	return sector & (bdev_zone_sectors(bdev) - 1);
1369e29b2100SPankaj Raghav }
1370e29b2100SPankaj Raghav 
1371b85a3c1bSDamien Le Moal static inline sector_t bio_offset_from_zone_start(struct bio *bio)
1372b85a3c1bSDamien Le Moal {
1373b85a3c1bSDamien Le Moal 	return bdev_offset_from_zone_start(bio->bi_bdev,
1374b85a3c1bSDamien Le Moal 					   bio->bi_iter.bi_sector);
1375b85a3c1bSDamien Le Moal }
1376b85a3c1bSDamien Le Moal 
1377e29b2100SPankaj Raghav static inline bool bdev_is_zone_start(struct block_device *bdev,
1378e29b2100SPankaj Raghav 				      sector_t sector)
1379e29b2100SPankaj Raghav {
1380e29b2100SPankaj Raghav 	return bdev_offset_from_zone_start(bdev, sector) == 0;
1381e29b2100SPankaj Raghav }
1382e29b2100SPankaj Raghav 
1383af2c68feSBart Van Assche static inline int queue_dma_alignment(const struct request_queue *q)
13841da177e4SLinus Torvalds {
1385abfc9d81SChristoph Hellwig 	return q->limits.dma_alignment;
13861da177e4SLinus Torvalds }
13871da177e4SLinus Torvalds 
13889da3d1e9SJohn Garry static inline unsigned int
13899da3d1e9SJohn Garry queue_atomic_write_unit_max_bytes(const struct request_queue *q)
13909da3d1e9SJohn Garry {
13919da3d1e9SJohn Garry 	return q->limits.atomic_write_unit_max;
13929da3d1e9SJohn Garry }
13939da3d1e9SJohn Garry 
13949da3d1e9SJohn Garry static inline unsigned int
13959da3d1e9SJohn Garry queue_atomic_write_unit_min_bytes(const struct request_queue *q)
13969da3d1e9SJohn Garry {
13979da3d1e9SJohn Garry 	return q->limits.atomic_write_unit_min;
13989da3d1e9SJohn Garry }
13999da3d1e9SJohn Garry 
14009da3d1e9SJohn Garry static inline unsigned int
14019da3d1e9SJohn Garry queue_atomic_write_boundary_bytes(const struct request_queue *q)
14029da3d1e9SJohn Garry {
14039da3d1e9SJohn Garry 	return q->limits.atomic_write_boundary_sectors << SECTOR_SHIFT;
14049da3d1e9SJohn Garry }
14059da3d1e9SJohn Garry 
14069da3d1e9SJohn Garry static inline unsigned int
14079da3d1e9SJohn Garry queue_atomic_write_max_bytes(const struct request_queue *q)
14089da3d1e9SJohn Garry {
14099da3d1e9SJohn Garry 	return q->limits.atomic_write_max_sectors << SECTOR_SHIFT;
14109da3d1e9SJohn Garry }
14119da3d1e9SJohn Garry 
14124a2dcc35SKeith Busch static inline unsigned int bdev_dma_alignment(struct block_device *bdev)
14134a2dcc35SKeith Busch {
14144a2dcc35SKeith Busch 	return queue_dma_alignment(bdev_get_queue(bdev));
14154a2dcc35SKeith Busch }
14164a2dcc35SKeith Busch 
14175debd969SKeith Busch static inline bool bdev_iter_is_aligned(struct block_device *bdev,
14185debd969SKeith Busch 					struct iov_iter *iter)
14195debd969SKeith Busch {
14205debd969SKeith Busch 	return iov_iter_is_aligned(iter, bdev_dma_alignment(bdev),
14215debd969SKeith Busch 				   bdev_logical_block_size(bdev) - 1);
14225debd969SKeith Busch }
14235debd969SKeith Busch 
1424e94b45d0SChristoph Hellwig static inline int blk_lim_dma_alignment_and_pad(struct queue_limits *lim)
1425e94b45d0SChristoph Hellwig {
1426e94b45d0SChristoph Hellwig 	return lim->dma_alignment | lim->dma_pad_mask;
1427e94b45d0SChristoph Hellwig }
1428e94b45d0SChristoph Hellwig 
142914417799SNamhyung Kim static inline int blk_rq_aligned(struct request_queue *q, unsigned long addr,
143087904074SFUJITA Tomonori 				 unsigned int len)
143187904074SFUJITA Tomonori {
1432e94b45d0SChristoph Hellwig 	unsigned int alignment = blk_lim_dma_alignment_and_pad(&q->limits);
1433e94b45d0SChristoph Hellwig 
143414417799SNamhyung Kim 	return !(addr & alignment) && !(len & alignment);
143587904074SFUJITA Tomonori }
143687904074SFUJITA Tomonori 
14371da177e4SLinus Torvalds /* assumes size > 256 */
14381da177e4SLinus Torvalds static inline unsigned int blksize_bits(unsigned int size)
14391da177e4SLinus Torvalds {
1440adff2158SDawei Li 	return order_base_2(size >> SECTOR_SHIFT) + SECTOR_SHIFT;
14411da177e4SLinus Torvalds }
14421da177e4SLinus Torvalds 
144359c3d45eSJens Axboe int kblockd_schedule_work(struct work_struct *work);
1444818cd1cbSJens Axboe int kblockd_mod_delayed_work_on(int cpu, struct delayed_work *dwork, unsigned long delay);
14451da177e4SLinus Torvalds 
14461da177e4SLinus Torvalds #define MODULE_ALIAS_BLOCKDEV(major,minor) \
14471da177e4SLinus Torvalds 	MODULE_ALIAS("block-major-" __stringify(major) "-" __stringify(minor))
14481da177e4SLinus Torvalds #define MODULE_ALIAS_BLOCKDEV_MAJOR(major) \
14491da177e4SLinus Torvalds 	MODULE_ALIAS("block-major-" __stringify(major) "-*")
14501da177e4SLinus Torvalds 
1451d145dc23SSatya Tangirala #ifdef CONFIG_BLK_INLINE_ENCRYPTION
1452d145dc23SSatya Tangirala 
1453cb77cb5aSEric Biggers bool blk_crypto_register(struct blk_crypto_profile *profile,
1454cb77cb5aSEric Biggers 			 struct request_queue *q);
1455d145dc23SSatya Tangirala 
1456d145dc23SSatya Tangirala #else /* CONFIG_BLK_INLINE_ENCRYPTION */
1457d145dc23SSatya Tangirala 
1458cb77cb5aSEric Biggers static inline bool blk_crypto_register(struct blk_crypto_profile *profile,
1459d145dc23SSatya Tangirala 				       struct request_queue *q)
1460d145dc23SSatya Tangirala {
1461d145dc23SSatya Tangirala 	return true;
1462d145dc23SSatya Tangirala }
1463d145dc23SSatya Tangirala 
1464d145dc23SSatya Tangirala #endif /* CONFIG_BLK_INLINE_ENCRYPTION */
1465d145dc23SSatya Tangirala 
14669208d414SChristoph Hellwig enum blk_unique_id {
14679208d414SChristoph Hellwig 	/* these match the Designator Types specified in SPC */
14689208d414SChristoph Hellwig 	BLK_UID_T10	= 1,
14699208d414SChristoph Hellwig 	BLK_UID_EUI64	= 2,
14709208d414SChristoph Hellwig 	BLK_UID_NAA	= 3,
14719208d414SChristoph Hellwig };
14729208d414SChristoph Hellwig 
147308f85851SAl Viro struct block_device_operations {
14743e08773cSChristoph Hellwig 	void (*submit_bio)(struct bio *bio);
147569fe0f29SMing Lei 	int (*poll_bio)(struct bio *bio, struct io_comp_batch *iob,
147669fe0f29SMing Lei 			unsigned int flags);
147705bdb996SChristoph Hellwig 	int (*open)(struct gendisk *disk, blk_mode_t mode);
1478ae220766SChristoph Hellwig 	void (*release)(struct gendisk *disk);
147905bdb996SChristoph Hellwig 	int (*ioctl)(struct block_device *bdev, blk_mode_t mode,
148005bdb996SChristoph Hellwig 			unsigned cmd, unsigned long arg);
148105bdb996SChristoph Hellwig 	int (*compat_ioctl)(struct block_device *bdev, blk_mode_t mode,
148205bdb996SChristoph Hellwig 			unsigned cmd, unsigned long arg);
148377ea887eSTejun Heo 	unsigned int (*check_events) (struct gendisk *disk,
148477ea887eSTejun Heo 				      unsigned int clearing);
1485c3e33e04STejun Heo 	void (*unlock_native_capacity) (struct gendisk *);
148608f85851SAl Viro 	int (*getgeo)(struct block_device *, struct hd_geometry *);
1487e00adcadSChristoph Hellwig 	int (*set_read_only)(struct block_device *bdev, bool ro);
148876792055SChristoph Hellwig 	void (*free_disk)(struct gendisk *disk);
1489b3a27d05SNitin Gupta 	/* this callback is with swap_lock and sometimes page table lock held */
1490b3a27d05SNitin Gupta 	void (*swap_slot_free_notify) (struct block_device *, unsigned long);
1491e76239a3SChristoph Hellwig 	int (*report_zones)(struct gendisk *, sector_t sector,
1492d4100351SChristoph Hellwig 			unsigned int nr_zones, report_zones_cb cb, void *data);
1493050a4f34SJens Axboe 	char *(*devnode)(struct gendisk *disk, umode_t *mode);
14949208d414SChristoph Hellwig 	/* returns the length of the identifier or a negative errno: */
14959208d414SChristoph Hellwig 	int (*get_unique_id)(struct gendisk *disk, u8 id[16],
14969208d414SChristoph Hellwig 			enum blk_unique_id id_type);
149708f85851SAl Viro 	struct module *owner;
1498bbd3e064SChristoph Hellwig 	const struct pr_ops *pr_ops;
14990bdfbca8SDmitry Osipenko 
15000bdfbca8SDmitry Osipenko 	/*
15010bdfbca8SDmitry Osipenko 	 * Special callback for probing GPT entry at a given sector.
15020bdfbca8SDmitry Osipenko 	 * Needed by Android devices, used by GPT scanner and MMC blk
15030bdfbca8SDmitry Osipenko 	 * driver.
15040bdfbca8SDmitry Osipenko 	 */
15050bdfbca8SDmitry Osipenko 	int (*alternative_gpt_sector)(struct gendisk *disk, sector_t *sector);
150608f85851SAl Viro };
150708f85851SAl Viro 
1508ee6a129dSArnd Bergmann #ifdef CONFIG_COMPAT
150905bdb996SChristoph Hellwig extern int blkdev_compat_ptr_ioctl(struct block_device *, blk_mode_t,
1510ee6a129dSArnd Bergmann 				      unsigned int, unsigned long);
1511ee6a129dSArnd Bergmann #else
1512ee6a129dSArnd Bergmann #define blkdev_compat_ptr_ioctl NULL
1513ee6a129dSArnd Bergmann #endif
1514ee6a129dSArnd Bergmann 
15150619317fSJens Axboe static inline void blk_wake_io_task(struct task_struct *waiter)
15160619317fSJens Axboe {
15170619317fSJens Axboe 	/*
15180619317fSJens Axboe 	 * If we're polling, the task itself is doing the completions. For
15190619317fSJens Axboe 	 * that case, we don't need to signal a wakeup, it's enough to just
15200619317fSJens Axboe 	 * mark us as RUNNING.
15210619317fSJens Axboe 	 */
15220619317fSJens Axboe 	if (waiter == current)
15230619317fSJens Axboe 		__set_current_state(TASK_RUNNING);
15240619317fSJens Axboe 	else
15250619317fSJens Axboe 		wake_up_process(waiter);
15260619317fSJens Axboe }
15270619317fSJens Axboe 
15285f275713SYu Kuai unsigned long bdev_start_io_acct(struct block_device *bdev, enum req_op op,
15295f0614a5SMing Lei 				 unsigned long start_time);
153077e7ffd7SBart Van Assche void bdev_end_io_acct(struct block_device *bdev, enum req_op op,
15315f275713SYu Kuai 		      unsigned int sectors, unsigned long start_time);
1532956d510eSChristoph Hellwig 
153399dfc43eSChristoph Hellwig unsigned long bio_start_io_acct(struct bio *bio);
153499dfc43eSChristoph Hellwig void bio_end_io_acct_remapped(struct bio *bio, unsigned long start_time,
153599dfc43eSChristoph Hellwig 		struct block_device *orig_bdev);
1536956d510eSChristoph Hellwig 
1537956d510eSChristoph Hellwig /**
1538956d510eSChristoph Hellwig  * bio_end_io_acct - end I/O accounting for bio based drivers
1539956d510eSChristoph Hellwig  * @bio:	bio to end account for
1540b42c1fc3SChristoph Hellwig  * @start_time:	start time returned by bio_start_io_acct()
1541956d510eSChristoph Hellwig  */
1542956d510eSChristoph Hellwig static inline void bio_end_io_acct(struct bio *bio, unsigned long start_time)
1543956d510eSChristoph Hellwig {
154499dfc43eSChristoph Hellwig 	return bio_end_io_acct_remapped(bio, start_time, bio->bi_bdev);
1545956d510eSChristoph Hellwig }
1546956d510eSChristoph Hellwig 
15473f1266f1SChristoph Hellwig int bdev_read_only(struct block_device *bdev);
1548ead083aeSAl Viro int set_blocksize(struct file *file, int size);
15493f1266f1SChristoph Hellwig 
15504e7b5671SChristoph Hellwig int lookup_bdev(const char *pathname, dev_t *dev);
15513f1266f1SChristoph Hellwig 
15523f1266f1SChristoph Hellwig void blkdev_show(struct seq_file *seqf, off_t offset);
15533f1266f1SChristoph Hellwig 
15543f1266f1SChristoph Hellwig #define BDEVNAME_SIZE	32	/* Largest string for a blockdev identifier */
15553f1266f1SChristoph Hellwig #define BDEVT_SIZE	10	/* Largest string for MAJ:MIN for blkdev */
15563f1266f1SChristoph Hellwig #ifdef CONFIG_BLOCK
15573f1266f1SChristoph Hellwig #define BLKDEV_MAJOR_MAX	512
15583f1266f1SChristoph Hellwig #else
15593f1266f1SChristoph Hellwig #define BLKDEV_MAJOR_MAX	0
15601da177e4SLinus Torvalds #endif
15613f1266f1SChristoph Hellwig 
15620718afd4SChristoph Hellwig struct blk_holder_ops {
1563d8530de5SChristoph Hellwig 	void (*mark_dead)(struct block_device *bdev, bool surprise);
15642142b88cSChristoph Hellwig 
15652142b88cSChristoph Hellwig 	/*
15662142b88cSChristoph Hellwig 	 * Sync the file system mounted on the block device.
15672142b88cSChristoph Hellwig 	 */
15682142b88cSChristoph Hellwig 	void (*sync)(struct block_device *bdev);
1569a30561a9SChristian Brauner 
1570a30561a9SChristian Brauner 	/*
1571a30561a9SChristian Brauner 	 * Freeze the file system mounted on the block device.
1572a30561a9SChristian Brauner 	 */
1573a30561a9SChristian Brauner 	int (*freeze)(struct block_device *bdev);
1574a30561a9SChristian Brauner 
1575a30561a9SChristian Brauner 	/*
1576a30561a9SChristian Brauner 	 * Thaw the file system mounted on the block device.
1577a30561a9SChristian Brauner 	 */
1578a30561a9SChristian Brauner 	int (*thaw)(struct block_device *bdev);
15790718afd4SChristoph Hellwig };
15800718afd4SChristoph Hellwig 
1581e419cf3eSChristian Brauner /*
1582e419cf3eSChristian Brauner  * For filesystems using @fs_holder_ops, the @holder argument passed to
1583e419cf3eSChristian Brauner  * helpers used to open and claim block devices via
1584e419cf3eSChristian Brauner  * bd_prepare_to_claim() must point to a superblock.
1585e419cf3eSChristian Brauner  */
15867ecd0b6fSChristoph Hellwig extern const struct blk_holder_ops fs_holder_ops;
15877ecd0b6fSChristoph Hellwig 
15883f0b3e78SChristoph Hellwig /*
15893f0b3e78SChristoph Hellwig  * Return the correct open flags for blkdev_get_by_* for super block flags
15903f0b3e78SChristoph Hellwig  * as stored in sb->s_flags.
15913f0b3e78SChristoph Hellwig  */
15923f0b3e78SChristoph Hellwig #define sb_open_mode(flags) \
15936f861765SJan Kara 	(BLK_OPEN_READ | BLK_OPEN_RESTRICT_WRITES | \
15946f861765SJan Kara 	 (((flags) & SB_RDONLY) ? 0 : BLK_OPEN_WRITE))
15953f0b3e78SChristoph Hellwig 
1596f3a60882SChristian Brauner struct file *bdev_file_open_by_dev(dev_t dev, blk_mode_t mode, void *holder,
1597f3a60882SChristian Brauner 		const struct blk_holder_ops *hops);
1598f3a60882SChristian Brauner struct file *bdev_file_open_by_path(const char *path, blk_mode_t mode,
1599f3a60882SChristian Brauner 		void *holder, const struct blk_holder_ops *hops);
16000718afd4SChristoph Hellwig int bd_prepare_to_claim(struct block_device *bdev, void *holder,
16010718afd4SChristoph Hellwig 		const struct blk_holder_ops *hops);
160237c3fc9aSChristoph Hellwig void bd_abort_claiming(struct block_device *bdev, void *holder);
16033f1266f1SChristoph Hellwig 
160422ae8ce8SChristoph Hellwig /* just for blk-cgroup, don't use elsewhere */
160522ae8ce8SChristoph Hellwig struct block_device *blkdev_get_no_open(dev_t dev);
160622ae8ce8SChristoph Hellwig void blkdev_put_no_open(struct block_device *bdev);
160722ae8ce8SChristoph Hellwig 
1608621c1f42SChristoph Hellwig struct block_device *I_BDEV(struct inode *inode);
1609f3a60882SChristian Brauner struct block_device *file_bdev(struct file *bdev_file);
1610186ddac2SYu Kuai bool disk_live(struct gendisk *disk);
1611186ddac2SYu Kuai unsigned int block_size(struct block_device *bdev);
16123f1266f1SChristoph Hellwig 
16133f1266f1SChristoph Hellwig #ifdef CONFIG_BLOCK
16143f1266f1SChristoph Hellwig void invalidate_bdev(struct block_device *bdev);
16153f1266f1SChristoph Hellwig int sync_blockdev(struct block_device *bdev);
161697d6fb1bSYuezhang Mo int sync_blockdev_range(struct block_device *bdev, loff_t lstart, loff_t lend);
161770164eb6SChristoph Hellwig int sync_blockdev_nowait(struct block_device *bdev);
16181e03a36bSChristoph Hellwig void sync_bdevs(bool wait);
16199abcfbd2SPrasad Singamsetty void bdev_statx(struct inode *backing_inode, struct kstat *stat,
16209abcfbd2SPrasad Singamsetty 		u32 request_mask);
1621322cbb50SChristoph Hellwig void printk_all_partitions(void);
16222577f53fSChristoph Hellwig int __init early_lookup_bdev(const char *pathname, dev_t *dev);
16233f1266f1SChristoph Hellwig #else
16243f1266f1SChristoph Hellwig static inline void invalidate_bdev(struct block_device *bdev)
16253f1266f1SChristoph Hellwig {
16263f1266f1SChristoph Hellwig }
16273f1266f1SChristoph Hellwig static inline int sync_blockdev(struct block_device *bdev)
16283f1266f1SChristoph Hellwig {
16293f1266f1SChristoph Hellwig 	return 0;
16303f1266f1SChristoph Hellwig }
163170164eb6SChristoph Hellwig static inline int sync_blockdev_nowait(struct block_device *bdev)
163270164eb6SChristoph Hellwig {
163370164eb6SChristoph Hellwig 	return 0;
163470164eb6SChristoph Hellwig }
16351e03a36bSChristoph Hellwig static inline void sync_bdevs(bool wait)
16361e03a36bSChristoph Hellwig {
16371e03a36bSChristoph Hellwig }
16389abcfbd2SPrasad Singamsetty static inline void bdev_statx(struct inode *backing_inode, struct kstat *stat,
16399abcfbd2SPrasad Singamsetty 				u32 request_mask)
16402d985f8cSEric Biggers {
16412d985f8cSEric Biggers }
1642322cbb50SChristoph Hellwig static inline void printk_all_partitions(void)
1643322cbb50SChristoph Hellwig {
1644322cbb50SChristoph Hellwig }
1645cf056a43SChristoph Hellwig static inline int early_lookup_bdev(const char *pathname, dev_t *dev)
1646cf056a43SChristoph Hellwig {
1647cf056a43SChristoph Hellwig 	return -EINVAL;
1648cf056a43SChristoph Hellwig }
1649322cbb50SChristoph Hellwig #endif /* CONFIG_BLOCK */
1650322cbb50SChristoph Hellwig 
1651982c3b30SChristian Brauner int bdev_freeze(struct block_device *bdev);
1652982c3b30SChristian Brauner int bdev_thaw(struct block_device *bdev);
165322650a99SChristian Brauner void bdev_fput(struct file *bdev_file);
16543f1266f1SChristoph Hellwig 
16555a72e899SJens Axboe struct io_comp_batch {
16565a72e899SJens Axboe 	struct request *req_list;
16575a72e899SJens Axboe 	bool need_ts;
16585a72e899SJens Axboe 	void (*complete)(struct io_comp_batch *);
16595a72e899SJens Axboe };
16605a72e899SJens Axboe 
16619da3d1e9SJohn Garry static inline bool bdev_can_atomic_write(struct block_device *bdev)
16629da3d1e9SJohn Garry {
16639da3d1e9SJohn Garry 	struct request_queue *bd_queue = bdev->bd_queue;
16649da3d1e9SJohn Garry 	struct queue_limits *limits = &bd_queue->limits;
16659da3d1e9SJohn Garry 
16669da3d1e9SJohn Garry 	if (!limits->atomic_write_unit_min)
16679da3d1e9SJohn Garry 		return false;
16689da3d1e9SJohn Garry 
16699da3d1e9SJohn Garry 	if (bdev_is_partition(bdev)) {
16709da3d1e9SJohn Garry 		sector_t bd_start_sect = bdev->bd_start_sect;
16719da3d1e9SJohn Garry 		unsigned int alignment =
16729da3d1e9SJohn Garry 			max(limits->atomic_write_unit_min,
16739da3d1e9SJohn Garry 			    limits->atomic_write_hw_boundary);
16749da3d1e9SJohn Garry 
16759da3d1e9SJohn Garry 		if (!IS_ALIGNED(bd_start_sect, alignment >> SECTOR_SHIFT))
16769da3d1e9SJohn Garry 			return false;
16779da3d1e9SJohn Garry 	}
16789da3d1e9SJohn Garry 
16799da3d1e9SJohn Garry 	return true;
16809da3d1e9SJohn Garry }
16819da3d1e9SJohn Garry 
16825a72e899SJens Axboe #define DEFINE_IO_COMP_BATCH(name)	struct io_comp_batch name = { }
16835a72e899SJens Axboe 
16843f1266f1SChristoph Hellwig #endif /* _LINUX_BLKDEV_H */
1685