blkdev.h 37.4 KB
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
L
Linus Torvalds 已提交
2 3 4
#ifndef _LINUX_BLKDEV_H
#define _LINUX_BLKDEV_H

5
#include <linux/sched.h>
L
Linus Torvalds 已提交
6 7
#include <linux/genhd.h>
#include <linux/list.h>
8
#include <linux/llist.h>
9
#include <linux/minmax.h>
L
Linus Torvalds 已提交
10 11 12 13
#include <linux/timer.h>
#include <linux/workqueue.h>
#include <linux/wait.h>
#include <linux/bio.h>
14
#include <linux/gfp.h>
T
Tejun Heo 已提交
15
#include <linux/rcupdate.h>
16
#include <linux/percpu-refcount.h>
17
#include <linux/blkzoned.h>
18
#include <linux/sbitmap.h>
L
Linus Torvalds 已提交
19

20
struct module;
L
Linus Torvalds 已提交
21 22
struct request_queue;
struct elevator_queue;
23
struct blk_trace;
24 25
struct request;
struct sg_io_hdr;
T
Tejun Heo 已提交
26
struct blkcg_gq;
27
struct blk_flush_queue;
28
struct pr_ops;
29
struct rq_qos;
30 31
struct blk_queue_stats;
struct blk_stat_callback;
32
struct blk_keyslot_manager;
L
Linus Torvalds 已提交
33

34
/* Must be consistent with blk_mq_poll_stats_bkt() */
35 36
#define BLK_MQ_POLL_STATS_BKTS 16

37 38 39
/* Doing classic polling */
#define BLK_MQ_POLL_CLASSIC -1

T
Tejun Heo 已提交
40 41 42 43
/*
 * Maximum number of blkcg policies allowed to be registered concurrently.
 * Defined here to simplify include dependency.
 */
44
#define BLKCG_MAX_POLS		6
T
Tejun Heo 已提交
45

46
static inline bool blk_op_is_passthrough(unsigned int op)
47
{
48
	op &= REQ_OP_MASK;
49 50 51
	return op == REQ_OP_DRV_IN || op == REQ_OP_DRV_OUT;
}

D
Damien Le Moal 已提交
52 53
/*
 * Zoned block device models (zoned limit).
54 55 56
 *
 * Note: This needs to be ordered from the least to the most severe
 * restrictions for the inheritance in blk_stack_limits() to work.
D
Damien Le Moal 已提交
57 58
 */
enum blk_zoned_model {
59 60 61
	BLK_ZONED_NONE = 0,	/* Regular block device */
	BLK_ZONED_HA,		/* Host-aware zoned block device */
	BLK_ZONED_HM,		/* Host-managed zoned block device */
D
Damien Le Moal 已提交
62 63
};

64 65 66 67 68 69 70 71 72
/*
 * BLK_BOUNCE_NONE:	never bounce (default)
 * BLK_BOUNCE_HIGH:	bounce all highmem pages
 */
enum blk_bounce {
	BLK_BOUNCE_NONE,
	BLK_BOUNCE_HIGH,
};

73
struct queue_limits {
74
	enum blk_bounce		bounce;
75
	unsigned long		seg_boundary_mask;
76
	unsigned long		virt_boundary_mask;
77 78

	unsigned int		max_hw_sectors;
79
	unsigned int		max_dev_sectors;
80
	unsigned int		chunk_sectors;
81 82
	unsigned int		max_sectors;
	unsigned int		max_segment_size;
83
	unsigned int		physical_block_size;
84
	unsigned int		logical_block_size;
85 86 87
	unsigned int		alignment_offset;
	unsigned int		io_min;
	unsigned int		io_opt;
88
	unsigned int		max_discard_sectors;
89
	unsigned int		max_hw_discard_sectors;
90
	unsigned int		max_write_same_sectors;
91
	unsigned int		max_write_zeroes_sectors;
92
	unsigned int		max_zone_append_sectors;
93 94
	unsigned int		discard_granularity;
	unsigned int		discard_alignment;
95
	unsigned int		zone_write_granularity;
96

97
	unsigned short		max_segments;
98
	unsigned short		max_integrity_segments;
99
	unsigned short		max_discard_segments;
100

101
	unsigned char		misaligned;
102
	unsigned char		discard_misaligned;
103
	unsigned char		raid_partial_stripes_expensive;
D
Damien Le Moal 已提交
104
	enum blk_zoned_model	zoned;
105 106
};

C
Christoph Hellwig 已提交
107 108 109
typedef int (*report_zones_cb)(struct blk_zone *zone, unsigned int idx,
			       void *data);

110 111
void blk_queue_set_zoned(struct gendisk *disk, enum blk_zoned_model model);

112 113
#ifdef CONFIG_BLK_DEV_ZONED

C
Christoph Hellwig 已提交
114 115 116
#define BLK_ALL_ZONES  ((unsigned int)-1)
int blkdev_report_zones(struct block_device *bdev, sector_t sector,
			unsigned int nr_zones, report_zones_cb cb, void *data);
117
unsigned int blkdev_nr_zones(struct gendisk *disk);
118 119 120
extern int blkdev_zone_mgmt(struct block_device *bdev, enum req_opf op,
			    sector_t sectors, sector_t nr_sectors,
			    gfp_t gfp_mask);
D
Damien Le Moal 已提交
121 122
int blk_revalidate_disk_zones(struct gendisk *disk,
			      void (*update_driver_data)(struct gendisk *disk));
123

S
Shaun Tancheff 已提交
124 125
extern int blkdev_report_zones_ioctl(struct block_device *bdev, fmode_t mode,
				     unsigned int cmd, unsigned long arg);
126 127
extern int blkdev_zone_mgmt_ioctl(struct block_device *bdev, fmode_t mode,
				  unsigned int cmd, unsigned long arg);
S
Shaun Tancheff 已提交
128 129 130

#else /* CONFIG_BLK_DEV_ZONED */

131
static inline unsigned int blkdev_nr_zones(struct gendisk *disk)
132 133 134
{
	return 0;
}
135

S
Shaun Tancheff 已提交
136 137 138 139 140 141 142
static inline int blkdev_report_zones_ioctl(struct block_device *bdev,
					    fmode_t mode, unsigned int cmd,
					    unsigned long arg)
{
	return -ENOTTY;
}

143 144 145
static inline int blkdev_zone_mgmt_ioctl(struct block_device *bdev,
					 fmode_t mode, unsigned int cmd,
					 unsigned long arg)
S
Shaun Tancheff 已提交
146 147 148 149
{
	return -ENOTTY;
}

150 151
#endif /* CONFIG_BLK_DEV_ZONED */

152
struct request_queue {
L
Linus Torvalds 已提交
153
	struct request		*last_merge;
J
Jens Axboe 已提交
154
	struct elevator_queue	*elevator;
L
Linus Torvalds 已提交
155

156 157
	struct percpu_ref	q_usage_counter;

158
	struct blk_queue_stats	*stats;
159
	struct rq_qos		*rq_qos;
J
Jens Axboe 已提交
160

J
Jens Axboe 已提交
161
	const struct blk_mq_ops	*mq_ops;
162 163

	/* sw queues */
164
	struct blk_mq_ctx __percpu	*queue_ctx;
165

166 167
	unsigned int		queue_depth;

168 169 170 171
	/* hw dispatch queues */
	struct blk_mq_hw_ctx	**queue_hw_ctx;
	unsigned int		nr_hw_queues;

L
Linus Torvalds 已提交
172 173 174 175 176 177 178
	/*
	 * The queue owner gets to use this for whatever they like.
	 * ll_rw_blk doesn't touch it.
	 */
	void			*queuedata;

	/*
179
	 * various queue flags, see QUEUE_* below
L
Linus Torvalds 已提交
180
	 */
181
	unsigned long		queue_flags;
182 183
	/*
	 * Number of contexts that have called blk_set_pm_only(). If this
184
	 * counter is above zero then only RQF_PM requests are processed.
185 186
	 */
	atomic_t		pm_only;
L
Linus Torvalds 已提交
187

188 189 190 191 192 193
	/*
	 * ida allocated id for this queue.  Used to index queues from
	 * ioctx.
	 */
	int			id;

194
	spinlock_t		queue_lock;
L
Linus Torvalds 已提交
195

196 197
	struct gendisk		*disk;

L
Linus Torvalds 已提交
198 199 200 201 202
	/*
	 * queue kobject
	 */
	struct kobject kobj;

203 204 205
	/*
	 * mq queue kobject
	 */
206
	struct kobject *mq_kobj;
207

208 209 210 211
#ifdef  CONFIG_BLK_DEV_INTEGRITY
	struct blk_integrity integrity;
#endif	/* CONFIG_BLK_DEV_INTEGRITY */

212
#ifdef CONFIG_PM
L
Lin Ming 已提交
213
	struct device		*dev;
214
	enum rpm_status		rpm_status;
L
Lin Ming 已提交
215 216
#endif

L
Linus Torvalds 已提交
217 218 219 220 221
	/*
	 * queue settings
	 */
	unsigned long		nr_requests;	/* Max # of requests */

222
	unsigned int		dma_pad_mask;
L
Linus Torvalds 已提交
223 224
	unsigned int		dma_alignment;

225 226 227 228 229
#ifdef CONFIG_BLK_INLINE_ENCRYPTION
	/* Inline crypto capabilities */
	struct blk_keyslot_manager *ksm;
#endif

J
Jens Axboe 已提交
230
	unsigned int		rq_timeout;
231
	int			poll_nsec;
232 233

	struct blk_stat_callback	*poll_cb;
234
	struct blk_rq_stat	poll_stat[BLK_MQ_POLL_STATS_BKTS];
235

J
Jens Axboe 已提交
236
	struct timer_list	timeout;
237
	struct work_struct	timeout_work;
J
Jens Axboe 已提交
238

239
	atomic_t		nr_active_requests_shared_tags;
240

241
	struct blk_mq_tags	*sched_shared_tags;
242

243
	struct list_head	icq_list;
244
#ifdef CONFIG_BLK_CGROUP
245
	DECLARE_BITMAP		(blkcg_pols, BLKCG_MAX_POLS);
T
Tejun Heo 已提交
246
	struct blkcg_gq		*root_blkg;
247
	struct list_head	blkg_list;
248
#endif
249

250 251
	struct queue_limits	limits;

252 253
	unsigned int		required_elevator_features;

254
#ifdef CONFIG_BLK_DEV_ZONED
255 256 257
	/*
	 * Zoned block device information for request dispatch control.
	 * nr_zones is the total number of zones of the device. This is always
258 259 260
	 * 0 for regular block devices. conv_zones_bitmap is a bitmap of nr_zones
	 * bits which indicates if a zone is conventional (bit set) or
	 * sequential (bit clear). seq_zones_wlock is a bitmap of nr_zones
261 262 263 264 265
	 * bits which indicates if a zone is write locked, that is, if a write
	 * request targeting the zone was dispatched. All three fields are
	 * initialized by the low level device driver (e.g. scsi/sd.c).
	 * Stacking drivers (device mappers) may or may not initialize
	 * these fields.
266 267 268 269 270
	 *
	 * Reads of this information must be protected with blk_queue_enter() /
	 * blk_queue_exit(). Modifying this information is only allowed while
	 * no requests are being processed. See also blk_mq_freeze_queue() and
	 * blk_mq_unfreeze_queue().
271 272
	 */
	unsigned int		nr_zones;
273
	unsigned long		*conv_zones_bitmap;
274
	unsigned long		*seq_zones_wlock;
275
	unsigned int		max_open_zones;
276
	unsigned int		max_active_zones;
277
#endif /* CONFIG_BLK_DEV_ZONED */
278

279
	int			node;
280
	struct mutex		debugfs_mutex;
281
#ifdef CONFIG_BLK_DEV_IO_TRACE
282
	struct blk_trace __rcu	*blk_trace;
283
#endif
L
Linus Torvalds 已提交
284
	/*
285
	 * for flush operations
L
Linus Torvalds 已提交
286
	 */
287
	struct blk_flush_queue	*fq;
288

289 290
	struct list_head	requeue_list;
	spinlock_t		requeue_lock;
291
	struct delayed_work	requeue_work;
292

293
	struct mutex		sysfs_lock;
294
	struct mutex		sysfs_dir_lock;
295

296 297 298 299 300 301 302
	/*
	 * for reusing dead hctx instance in case of updating
	 * nr_hw_queues
	 */
	struct list_head	unused_hctx_list;
	spinlock_t		unused_hctx_lock;

303
	int			mq_freeze_depth;
304

305 306 307 308
#ifdef CONFIG_BLK_DEV_THROTTLING
	/* Throttle data */
	struct throtl_data *td;
#endif
T
Tejun Heo 已提交
309
	struct rcu_head		rcu_head;
310
	wait_queue_head_t	mq_freeze_wq;
311 312 313 314 315
	/*
	 * Protect concurrent access to q_usage_counter by
	 * percpu_ref_kill() and percpu_ref_reinit().
	 */
	struct mutex		mq_freeze_lock;
316 317 318

	struct blk_mq_tag_set	*tag_set;
	struct list_head	tag_set_list;
319
	struct bio_set		bio_split;
320

321
	struct dentry		*debugfs_dir;
322 323

#ifdef CONFIG_BLK_DEBUG_FS
324
	struct dentry		*sched_debugfs_dir;
M
Ming Lei 已提交
325
	struct dentry		*rqos_debugfs_dir;
326 327
#endif

328
	bool			mq_sysfs_init_done;
329

330 331
#define BLK_MAX_WRITE_HINTS	5
	u64			write_hints[BLK_MAX_WRITE_HINTS];
L
Linus Torvalds 已提交
332 333
};

334
/* Keep blk_queue_flag_name[] in sync with the definitions below */
J
Jens Axboe 已提交
335 336 337 338 339 340 341 342 343 344 345 346 347 348 349
#define QUEUE_FLAG_STOPPED	0	/* queue is stopped */
#define QUEUE_FLAG_DYING	1	/* queue being torn down */
#define QUEUE_FLAG_NOMERGES     3	/* disable merge attempts */
#define QUEUE_FLAG_SAME_COMP	4	/* complete on same CPU-group */
#define QUEUE_FLAG_FAIL_IO	5	/* fake timeout */
#define QUEUE_FLAG_NONROT	6	/* non-rotational device (SSD) */
#define QUEUE_FLAG_VIRT		QUEUE_FLAG_NONROT /* paravirt device */
#define QUEUE_FLAG_IO_STAT	7	/* do disk/partitions IO accounting */
#define QUEUE_FLAG_DISCARD	8	/* supports DISCARD */
#define QUEUE_FLAG_NOXMERGES	9	/* No extended merges */
#define QUEUE_FLAG_ADD_RANDOM	10	/* Contributes to random pool */
#define QUEUE_FLAG_SECERASE	11	/* supports secure erase */
#define QUEUE_FLAG_SAME_FORCE	12	/* force complete on same CPU */
#define QUEUE_FLAG_DEAD		13	/* queue tear-down finished */
#define QUEUE_FLAG_INIT_DONE	14	/* queue is initialized */
350
#define QUEUE_FLAG_STABLE_WRITES 15	/* don't modify blks until WB is done */
J
Jens Axboe 已提交
351 352 353 354 355 356 357 358 359 360
#define QUEUE_FLAG_POLL		16	/* IO polling enabled if set */
#define QUEUE_FLAG_WC		17	/* Write back caching */
#define QUEUE_FLAG_FUA		18	/* device supports FUA writes */
#define QUEUE_FLAG_DAX		19	/* device supports DAX */
#define QUEUE_FLAG_STATS	20	/* track IO start and completion times */
#define QUEUE_FLAG_POLL_STATS	21	/* collecting stats for hybrid polling */
#define QUEUE_FLAG_REGISTERED	22	/* queue has been registered to a disk */
#define QUEUE_FLAG_SCSI_PASSTHROUGH 23	/* queue supports SCSI commands */
#define QUEUE_FLAG_QUIESCED	24	/* queue has been quiesced */
#define QUEUE_FLAG_PCI_P2PDMA	25	/* device supports PCI p2p requests */
361
#define QUEUE_FLAG_ZONE_RESETALL 26	/* supports Zone Reset All */
362
#define QUEUE_FLAG_RQ_ALLOC_TIME 27	/* record rq->alloc_time_ns */
M
Mike Snitzer 已提交
363 364
#define QUEUE_FLAG_HCTX_ACTIVE	28	/* at least one blk-mq hctx is active */
#define QUEUE_FLAG_NOWAIT       29	/* device supports NOWAIT */
365

366
#define QUEUE_FLAG_MQ_DEFAULT	((1 << QUEUE_FLAG_IO_STAT) |		\
M
Mike Snitzer 已提交
367 368
				 (1 << QUEUE_FLAG_SAME_COMP) |		\
				 (1 << QUEUE_FLAG_NOWAIT))
369

370 371 372 373
void blk_queue_flag_set(unsigned int flag, struct request_queue *q);
void blk_queue_flag_clear(unsigned int flag, struct request_queue *q);
bool blk_queue_flag_test_and_set(unsigned int flag, struct request_queue *q);

L
Linus Torvalds 已提交
374
#define blk_queue_stopped(q)	test_bit(QUEUE_FLAG_STOPPED, &(q)->queue_flags)
B
Bart Van Assche 已提交
375
#define blk_queue_dying(q)	test_bit(QUEUE_FLAG_DYING, &(q)->queue_flags)
376
#define blk_queue_dead(q)	test_bit(QUEUE_FLAG_DEAD, &(q)->queue_flags)
377
#define blk_queue_init_done(q)	test_bit(QUEUE_FLAG_INIT_DONE, &(q)->queue_flags)
378
#define blk_queue_nomerges(q)	test_bit(QUEUE_FLAG_NOMERGES, &(q)->queue_flags)
379 380
#define blk_queue_noxmerges(q)	\
	test_bit(QUEUE_FLAG_NOXMERGES, &(q)->queue_flags)
381
#define blk_queue_nonrot(q)	test_bit(QUEUE_FLAG_NONROT, &(q)->queue_flags)
382 383
#define blk_queue_stable_writes(q) \
	test_bit(QUEUE_FLAG_STABLE_WRITES, &(q)->queue_flags)
384
#define blk_queue_io_stat(q)	test_bit(QUEUE_FLAG_IO_STAT, &(q)->queue_flags)
385
#define blk_queue_add_random(q)	test_bit(QUEUE_FLAG_ADD_RANDOM, &(q)->queue_flags)
386
#define blk_queue_discard(q)	test_bit(QUEUE_FLAG_DISCARD, &(q)->queue_flags)
387 388
#define blk_queue_zone_resetall(q)	\
	test_bit(QUEUE_FLAG_ZONE_RESETALL, &(q)->queue_flags)
389 390
#define blk_queue_secure_erase(q) \
	(test_bit(QUEUE_FLAG_SECERASE, &(q)->queue_flags))
391
#define blk_queue_dax(q)	test_bit(QUEUE_FLAG_DAX, &(q)->queue_flags)
392 393
#define blk_queue_scsi_passthrough(q)	\
	test_bit(QUEUE_FLAG_SCSI_PASSTHROUGH, &(q)->queue_flags)
394 395
#define blk_queue_pci_p2pdma(q)	\
	test_bit(QUEUE_FLAG_PCI_P2PDMA, &(q)->queue_flags)
396 397 398 399 400 401
#ifdef CONFIG_BLK_RQ_ALLOC_TIME
#define blk_queue_rq_alloc_time(q)	\
	test_bit(QUEUE_FLAG_RQ_ALLOC_TIME, &(q)->queue_flags)
#else
#define blk_queue_rq_alloc_time(q)	false
#endif
L
Linus Torvalds 已提交
402

403 404 405
#define blk_noretry_request(rq) \
	((rq)->cmd_flags & (REQ_FAILFAST_DEV|REQ_FAILFAST_TRANSPORT| \
			     REQ_FAILFAST_DRIVER))
406
#define blk_queue_quiesced(q)	test_bit(QUEUE_FLAG_QUIESCED, &(q)->queue_flags)
407
#define blk_queue_pm_only(q)	atomic_read(&(q)->pm_only)
408
#define blk_queue_fua(q)	test_bit(QUEUE_FLAG_FUA, &(q)->queue_flags)
409
#define blk_queue_registered(q)	test_bit(QUEUE_FLAG_REGISTERED, &(q)->queue_flags)
M
Mike Snitzer 已提交
410
#define blk_queue_nowait(q)	test_bit(QUEUE_FLAG_NOWAIT, &(q)->queue_flags)
411

412 413
extern void blk_set_pm_only(struct request_queue *q);
extern void blk_clear_pm_only(struct request_queue *q);
414

L
Linus Torvalds 已提交
415 416
#define list_entry_rq(ptr)	list_entry((ptr), struct request, queuelist)

417 418 419 420
#define dma_map_bvec(dev, bv, dir, attrs) \
	dma_map_page_attrs(dev, (bv)->bv_page, (bv)->bv_offset, (bv)->bv_len, \
	(dir), (attrs))

J
Jens Axboe 已提交
421
static inline bool queue_is_mq(struct request_queue *q)
422
{
J
Jens Axboe 已提交
423
	return q->mq_ops;
424 425
}

426 427 428 429 430 431 432 433 434 435 436 437
#ifdef CONFIG_PM
static inline enum rpm_status queue_rpm_status(struct request_queue *q)
{
	return q->rpm_status;
}
#else
static inline enum rpm_status queue_rpm_status(struct request_queue *q)
{
	return RPM_ACTIVE;
}
#endif

D
Damien Le Moal 已提交
438 439 440
static inline enum blk_zoned_model
blk_queue_zoned_model(struct request_queue *q)
{
441 442 443
	if (IS_ENABLED(CONFIG_BLK_DEV_ZONED))
		return q->limits.zoned;
	return BLK_ZONED_NONE;
D
Damien Le Moal 已提交
444 445 446 447 448 449 450 451 452 453 454 455 456
}

static inline bool blk_queue_is_zoned(struct request_queue *q)
{
	switch (blk_queue_zoned_model(q)) {
	case BLK_ZONED_HA:
	case BLK_ZONED_HM:
		return true;
	default:
		return false;
	}
}

457
static inline sector_t blk_queue_zone_sectors(struct request_queue *q)
458 459 460 461
{
	return blk_queue_is_zoned(q) ? q->limits.chunk_sectors : 0;
}

462
#ifdef CONFIG_BLK_DEV_ZONED
463 464 465 466 467
static inline unsigned int blk_queue_nr_zones(struct request_queue *q)
{
	return blk_queue_is_zoned(q) ? q->nr_zones : 0;
}

468 469 470 471 472 473 474 475 476 477 478
static inline unsigned int blk_queue_zone_no(struct request_queue *q,
					     sector_t sector)
{
	if (!blk_queue_is_zoned(q))
		return 0;
	return sector >> ilog2(q->limits.chunk_sectors);
}

static inline bool blk_queue_zone_is_seq(struct request_queue *q,
					 sector_t sector)
{
479
	if (!blk_queue_is_zoned(q))
480
		return false;
481 482 483
	if (!q->conv_zones_bitmap)
		return true;
	return !test_bit(blk_queue_zone_no(q, sector), q->conv_zones_bitmap);
484
}
485 486 487 488 489 490 491 492 493 494 495

static inline void blk_queue_max_open_zones(struct request_queue *q,
		unsigned int max_open_zones)
{
	q->max_open_zones = max_open_zones;
}

static inline unsigned int queue_max_open_zones(const struct request_queue *q)
{
	return q->max_open_zones;
}
496 497 498 499 500 501 502 503 504 505 506

static inline void blk_queue_max_active_zones(struct request_queue *q,
		unsigned int max_active_zones)
{
	q->max_active_zones = max_active_zones;
}

static inline unsigned int queue_max_active_zones(const struct request_queue *q)
{
	return q->max_active_zones;
}
507 508 509 510 511
#else /* CONFIG_BLK_DEV_ZONED */
static inline unsigned int blk_queue_nr_zones(struct request_queue *q)
{
	return 0;
}
512 513 514 515 516 517 518 519 520 521
static inline bool blk_queue_zone_is_seq(struct request_queue *q,
					 sector_t sector)
{
	return false;
}
static inline unsigned int blk_queue_zone_no(struct request_queue *q,
					     sector_t sector)
{
	return 0;
}
522 523 524 525
static inline unsigned int queue_max_open_zones(const struct request_queue *q)
{
	return 0;
}
526 527 528 529
static inline unsigned int queue_max_active_zones(const struct request_queue *q)
{
	return 0;
}
530
#endif /* CONFIG_BLK_DEV_ZONED */
531

532 533 534 535 536 537 538 539
static inline unsigned int blk_queue_depth(struct request_queue *q)
{
	if (q->queue_depth)
		return q->queue_depth;

	return q->nr_requests;
}

540 541 542 543
/*
 * default timeout for SG_IO if none specified
 */
#define BLK_DEFAULT_SG_TIMEOUT	(60 * HZ)
L
Linus Torvalds 已提交
544
#define BLK_MIN_SG_TIMEOUT	(7 * HZ)
545

546
/* This should not be used directly - use rq_for_each_segment */
547 548
#define for_each_bio(_bio)		\
	for (; _bio; _bio = _bio->bi_next)
549

550

L
Linus Torvalds 已提交
551 552
extern int blk_register_queue(struct gendisk *disk);
extern void blk_unregister_queue(struct gendisk *disk);
553
blk_qc_t submit_bio_noacct(struct bio *bio);
554

555
extern int blk_lld_busy(struct request_queue *q);
556
extern void blk_queue_split(struct bio **);
557
extern int blk_queue_enter(struct request_queue *q, blk_mq_req_flags_t flags);
558
extern void blk_queue_exit(struct request_queue *q);
L
Linus Torvalds 已提交
559
extern void blk_sync_queue(struct request_queue *q);
560

561 562 563
/* Helper to convert REQ_OP_XXX to its string format XXX */
extern const char *blk_op_str(unsigned int op);

564 565 566
int blk_status_to_errno(blk_status_t status);
blk_status_t errno_to_blk_status(int errno);

567 568
/* only poll the hardware once, don't continue until a completion was found */
#define BLK_POLL_ONESHOT		(1 << 0)
569 570
/* do not sleep to wait for the expected completion time */
#define BLK_POLL_NOSLEEP		(1 << 1)
571
int blk_poll(struct request_queue *q, blk_qc_t cookie, unsigned int flags);
J
Jens Axboe 已提交
572

573
static inline struct request_queue *bdev_get_queue(struct block_device *bdev)
L
Linus Torvalds 已提交
574
{
575
	return bdev->bd_disk->queue;	/* this is never NULL */
L
Linus Torvalds 已提交
576 577
}

578 579 580 581 582 583 584 585 586 587 588 589 590
/*
 * The basic unit of block I/O is a sector. It is used in a number of contexts
 * in Linux (blk, bio, genhd). The size of one sector is 512 = 2**9
 * bytes. Variables of type sector_t represent an offset or size that is a
 * multiple of 512 bytes. Hence these two constants.
 */
#ifndef SECTOR_SHIFT
#define SECTOR_SHIFT 9
#endif
#ifndef SECTOR_SIZE
#define SECTOR_SIZE (1 << SECTOR_SHIFT)
#endif

591 592 593 594
#define PAGE_SECTORS_SHIFT	(PAGE_SHIFT - SECTOR_SHIFT)
#define PAGE_SECTORS		(1 << PAGE_SECTORS_SHIFT)
#define SECTOR_MASK		(PAGE_SECTORS - 1)

595
#ifdef CONFIG_BLK_DEV_ZONED
596 597 598 599

/* Helper to convert BLK_ZONE_ZONE_XXX to its string format XXX */
const char *blk_zone_cond_str(enum blk_zone_cond zone_cond);

600 601 602 603 604 605 606 607 608 609 610
static inline unsigned int bio_zone_no(struct bio *bio)
{
	return blk_queue_zone_no(bdev_get_queue(bio->bi_bdev),
				 bio->bi_iter.bi_sector);
}

static inline unsigned int bio_zone_is_seq(struct bio *bio)
{
	return blk_queue_zone_is_seq(bdev_get_queue(bio->bi_bdev),
				     bio->bi_iter.bi_sector);
}
611
#endif /* CONFIG_BLK_DEV_ZONED */
612

613
static inline unsigned int blk_queue_get_max_sectors(struct request_queue *q,
614
						     int op)
615
{
A
Adrian Hunter 已提交
616
	if (unlikely(op == REQ_OP_DISCARD || op == REQ_OP_SECURE_ERASE))
617 618
		return min(q->limits.max_discard_sectors,
			   UINT_MAX >> SECTOR_SHIFT);
619

620
	if (unlikely(op == REQ_OP_WRITE_SAME))
621 622
		return q->limits.max_write_same_sectors;

623 624 625
	if (unlikely(op == REQ_OP_WRITE_ZEROES))
		return q->limits.max_write_zeroes_sectors;

626 627 628
	return q->limits.max_sectors;
}

629 630 631 632 633
/*
 * Return maximum size of a request at given offset. Only valid for
 * file system requests.
 */
static inline unsigned int blk_max_size_offset(struct request_queue *q,
M
Mike Snitzer 已提交
634 635
					       sector_t offset,
					       unsigned int chunk_sectors)
636
{
637 638 639 640 641 642
	if (!chunk_sectors) {
		if (q->limits.chunk_sectors)
			chunk_sectors = q->limits.chunk_sectors;
		else
			return q->limits.max_sectors;
	}
643

644 645 646 647 648 649
	if (likely(is_power_of_2(chunk_sectors)))
		chunk_sectors -= offset & (chunk_sectors - 1);
	else
		chunk_sectors -= sector_div(offset, chunk_sectors);

	return min(q->limits.max_sectors, chunk_sectors);
650 651
}

L
Linus Torvalds 已提交
652 653 654
/*
 * Access functions for manipulating queue properties
 */
655
extern void blk_cleanup_queue(struct request_queue *);
656
void blk_queue_bounce_limit(struct request_queue *q, enum blk_bounce limit);
657
extern void blk_queue_max_hw_sectors(struct request_queue *, unsigned int);
658
extern void blk_queue_chunk_sectors(struct request_queue *, unsigned int);
659
extern void blk_queue_max_segments(struct request_queue *, unsigned short);
660 661
extern void blk_queue_max_discard_segments(struct request_queue *,
		unsigned short);
662
extern void blk_queue_max_segment_size(struct request_queue *, unsigned int);
663 664
extern void blk_queue_max_discard_sectors(struct request_queue *q,
		unsigned int max_discard_sectors);
665 666
extern void blk_queue_max_write_same_sectors(struct request_queue *q,
		unsigned int max_write_same_sectors);
667 668
extern void blk_queue_max_write_zeroes_sectors(struct request_queue *q,
		unsigned int max_write_same_sectors);
669
extern void blk_queue_logical_block_size(struct request_queue *, unsigned int);
670 671
extern void blk_queue_max_zone_append_sectors(struct request_queue *q,
		unsigned int max_zone_append_sectors);
672
extern void blk_queue_physical_block_size(struct request_queue *, unsigned int);
673 674
void blk_queue_zone_write_granularity(struct request_queue *q,
				      unsigned int size);
675 676
extern void blk_queue_alignment_offset(struct request_queue *q,
				       unsigned int alignment);
677
void disk_update_readahead(struct gendisk *disk);
678
extern void blk_limits_io_min(struct queue_limits *limits, unsigned int min);
679
extern void blk_queue_io_min(struct request_queue *q, unsigned int min);
680
extern void blk_limits_io_opt(struct queue_limits *limits, unsigned int opt);
681
extern void blk_queue_io_opt(struct request_queue *q, unsigned int opt);
682
extern void blk_set_queue_depth(struct request_queue *q, unsigned int depth);
683
extern void blk_set_default_limits(struct queue_limits *lim);
684
extern void blk_set_stacking_limits(struct queue_limits *lim);
685 686 687 688
extern int blk_stack_limits(struct queue_limits *t, struct queue_limits *b,
			    sector_t offset);
extern void disk_stack_limits(struct gendisk *disk, struct block_device *bdev,
			      sector_t offset);
689
extern void blk_queue_update_dma_pad(struct request_queue *, unsigned int);
690
extern void blk_queue_segment_boundary(struct request_queue *, unsigned long);
691
extern void blk_queue_virt_boundary(struct request_queue *, unsigned long);
692
extern void blk_queue_dma_alignment(struct request_queue *, int);
693
extern void blk_queue_update_dma_alignment(struct request_queue *, int);
J
Jens Axboe 已提交
694
extern void blk_queue_rq_timeout(struct request_queue *, unsigned int);
695
extern void blk_queue_write_cache(struct request_queue *q, bool enabled, bool fua);
696 697 698 699 700 701 702 703 704

/*
 * Elevator features for blk_queue_required_elevator_features:
 */
/* Supports zoned block devices sequential write constraint */
#define ELEVATOR_F_ZBD_SEQ_WRITE	(1U << 0)
/* Supports scheduling on multiple hardware queues */
#define ELEVATOR_F_MQ_AWARE		(1U << 1)

705 706
extern void blk_queue_required_elevator_features(struct request_queue *q,
						 unsigned int features);
707 708
extern bool blk_queue_can_use_dma_map_merging(struct request_queue *q,
					      struct device *dev);
L
Linus Torvalds 已提交
709

T
Tejun Heo 已提交
710
bool __must_check blk_get_queue(struct request_queue *);
711
extern void blk_put_queue(struct request_queue *);
712
extern void blk_set_queue_dying(struct request_queue *);
L
Linus Torvalds 已提交
713

714
#ifdef CONFIG_BLOCK
715
/*
S
Suresh Jayaraman 已提交
716 717 718 719 720 721 722 723 724 725
 * blk_plug permits building a queue of related requests by holding the I/O
 * fragments for a short period. This allows merging of sequential requests
 * into single larger request. As the requests are moved from a per-task list to
 * the device's request_queue in a batch, this results in improved scalability
 * as the lock contention for request_queue lock is reduced.
 *
 * It is ok not to disable preemption when adding the request to the plug list
 * or when attempting a merge, because blk_schedule_flush_list() will only flush
 * the plug list when the task sleeps by itself. For details, please see
 * schedule() where blk_schedule_flush_plug() is called.
726
 */
727
struct blk_plug {
728
	struct list_head mq_list; /* blk-mq requests */
729 730 731 732 733

	/* if ios_left is > 1, we can batch tag/rq allocations */
	struct request *cached_rq;
	unsigned short nr_ios;

734
	unsigned short rq_count;
735

736
	bool multiple_queues;
737
	bool nowait;
738 739

	struct list_head cb_list; /* md requires an unplug callback */
740
};
741

742
struct blk_plug_cb;
743
typedef void (*blk_plug_cb_fn)(struct blk_plug_cb *, bool);
744 745
struct blk_plug_cb {
	struct list_head list;
746 747
	blk_plug_cb_fn callback;
	void *data;
748
};
749 750
extern struct blk_plug_cb *blk_check_plugged(blk_plug_cb_fn unplug,
					     void *data, int size);
751
extern void blk_start_plug(struct blk_plug *);
752
extern void blk_start_plug_nr_ios(struct blk_plug *, unsigned short);
753
extern void blk_finish_plug(struct blk_plug *);
754
extern void blk_flush_plug_list(struct blk_plug *, bool);
755 756 757 758 759

static inline void blk_flush_plug(struct task_struct *tsk)
{
	struct blk_plug *plug = tsk->plug;

760 761 762 763 764 765 766 767
	if (plug)
		blk_flush_plug_list(plug, false);
}

static inline void blk_schedule_flush_plug(struct task_struct *tsk)
{
	struct blk_plug *plug = tsk->plug;

768
	if (plug)
769
		blk_flush_plug_list(plug, true);
770 771 772 773 774 775
}

static inline bool blk_needs_flush_plug(struct task_struct *tsk)
{
	struct blk_plug *plug = tsk->plug;

776
	return plug &&
J
Jens Axboe 已提交
777
		 (!list_empty(&plug->mq_list) ||
778
		 !list_empty(&plug->cb_list));
779 780
}

781
int blkdev_issue_flush(struct block_device *bdev);
782 783 784 785 786
long nr_blockdev_pages(void);
#else /* CONFIG_BLOCK */
struct blk_plug {
};

787 788 789 790 791
static inline void blk_start_plug_nr_ios(struct blk_plug *plug,
					 unsigned short nr_ios)
{
}

792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813
static inline void blk_start_plug(struct blk_plug *plug)
{
}

static inline void blk_finish_plug(struct blk_plug *plug)
{
}

static inline void blk_flush_plug(struct task_struct *task)
{
}

static inline void blk_schedule_flush_plug(struct task_struct *task)
{
}


static inline bool blk_needs_flush_plug(struct task_struct *tsk)
{
	return false;
}

814
static inline int blkdev_issue_flush(struct block_device *bdev)
815 816 817 818 819 820 821 822 823 824
{
	return 0;
}

static inline long nr_blockdev_pages(void)
{
	return 0;
}
#endif /* CONFIG_BLOCK */

825 826
extern void blk_io_schedule(void);

827 828
extern int blkdev_issue_write_same(struct block_device *bdev, sector_t sector,
		sector_t nr_sects, gfp_t gfp_mask, struct page *page);
829 830

#define BLKDEV_DISCARD_SECURE	(1 << 0)	/* issue a secure erase */
831

832 833
extern int blkdev_issue_discard(struct block_device *bdev, sector_t sector,
		sector_t nr_sects, gfp_t gfp_mask, unsigned long flags);
834
extern int __blkdev_issue_discard(struct block_device *bdev, sector_t sector,
835
		sector_t nr_sects, gfp_t gfp_mask, int flags,
836
		struct bio **biop);
837 838

#define BLKDEV_ZERO_NOUNMAP	(1 << 0)  /* do not free blocks */
839
#define BLKDEV_ZERO_NOFALLBACK	(1 << 1)  /* don't write explicit zeroes */
840

841 842
extern int __blkdev_issue_zeroout(struct block_device *bdev, sector_t sector,
		sector_t nr_sects, gfp_t gfp_mask, struct bio **biop,
843
		unsigned flags);
844
extern int blkdev_issue_zeroout(struct block_device *bdev, sector_t sector,
845 846
		sector_t nr_sects, gfp_t gfp_mask, unsigned flags);

847 848
static inline int sb_issue_discard(struct super_block *sb, sector_t block,
		sector_t nr_blocks, gfp_t gfp_mask, unsigned long flags)
D
David Woodhouse 已提交
849
{
850 851 852 853 854
	return blkdev_issue_discard(sb->s_bdev,
				    block << (sb->s_blocksize_bits -
					      SECTOR_SHIFT),
				    nr_blocks << (sb->s_blocksize_bits -
						  SECTOR_SHIFT),
855
				    gfp_mask, flags);
D
David Woodhouse 已提交
856
}
857
static inline int sb_issue_zeroout(struct super_block *sb, sector_t block,
858
		sector_t nr_blocks, gfp_t gfp_mask)
859 860
{
	return blkdev_issue_zeroout(sb->s_bdev,
861 862 863 864
				    block << (sb->s_blocksize_bits -
					      SECTOR_SHIFT),
				    nr_blocks << (sb->s_blocksize_bits -
						  SECTOR_SHIFT),
865
				    gfp_mask, 0);
866
}
L
Linus Torvalds 已提交
867

868 869 870 871 872
static inline bool bdev_is_partition(struct block_device *bdev)
{
	return bdev->bd_partno;
}

873 874 875
enum blk_default_limits {
	BLK_MAX_SEGMENTS	= 128,
	BLK_SAFE_MAX_SECTORS	= 255,
876
	BLK_DEF_MAX_SECTORS	= 2560,
877 878 879
	BLK_MAX_SEGMENT_SIZE	= 65536,
	BLK_SEG_BOUNDARY_MASK	= 0xFFFFFFFFUL,
};
880

881
static inline unsigned long queue_segment_boundary(const struct request_queue *q)
882
{
883
	return q->limits.seg_boundary_mask;
884 885
}

886
static inline unsigned long queue_virt_boundary(const struct request_queue *q)
887 888 889 890
{
	return q->limits.virt_boundary_mask;
}

891
static inline unsigned int queue_max_sectors(const struct request_queue *q)
892
{
893
	return q->limits.max_sectors;
894 895
}

896 897 898 899 900
static inline unsigned int queue_max_bytes(struct request_queue *q)
{
	return min_t(unsigned int, queue_max_sectors(q), INT_MAX >> 9) << 9;
}

901
static inline unsigned int queue_max_hw_sectors(const struct request_queue *q)
902
{
903
	return q->limits.max_hw_sectors;
904 905
}

906
static inline unsigned short queue_max_segments(const struct request_queue *q)
907
{
908
	return q->limits.max_segments;
909 910
}

911
static inline unsigned short queue_max_discard_segments(const struct request_queue *q)
912 913 914 915
{
	return q->limits.max_discard_segments;
}

916
static inline unsigned int queue_max_segment_size(const struct request_queue *q)
917
{
918
	return q->limits.max_segment_size;
919 920
}

921 922
static inline unsigned int queue_max_zone_append_sectors(const struct request_queue *q)
{
923 924 925 926

	const struct queue_limits *l = &q->limits;

	return min(l->max_zone_append_sectors, l->max_sectors);
927 928
}

929
static inline unsigned queue_logical_block_size(const struct request_queue *q)
L
Linus Torvalds 已提交
930 931 932
{
	int retval = 512;

933 934
	if (q && q->limits.logical_block_size)
		retval = q->limits.logical_block_size;
L
Linus Torvalds 已提交
935 936 937 938

	return retval;
}

939
static inline unsigned int bdev_logical_block_size(struct block_device *bdev)
L
Linus Torvalds 已提交
940
{
941
	return queue_logical_block_size(bdev_get_queue(bdev));
L
Linus Torvalds 已提交
942 943
}

944
static inline unsigned int queue_physical_block_size(const struct request_queue *q)
945 946 947 948
{
	return q->limits.physical_block_size;
}

949
static inline unsigned int bdev_physical_block_size(struct block_device *bdev)
M
Martin K. Petersen 已提交
950 951 952 953
{
	return queue_physical_block_size(bdev_get_queue(bdev));
}

954
static inline unsigned int queue_io_min(const struct request_queue *q)
955 956 957 958
{
	return q->limits.io_min;
}

M
Martin K. Petersen 已提交
959 960 961 962 963
static inline int bdev_io_min(struct block_device *bdev)
{
	return queue_io_min(bdev_get_queue(bdev));
}

964
static inline unsigned int queue_io_opt(const struct request_queue *q)
965 966 967 968
{
	return q->limits.io_opt;
}

M
Martin K. Petersen 已提交
969 970 971 972 973
static inline int bdev_io_opt(struct block_device *bdev)
{
	return queue_io_opt(bdev_get_queue(bdev));
}

974 975 976 977 978 979 980 981 982 983 984 985
static inline unsigned int
queue_zone_write_granularity(const struct request_queue *q)
{
	return q->limits.zone_write_granularity;
}

static inline unsigned int
bdev_zone_write_granularity(struct block_device *bdev)
{
	return queue_zone_write_granularity(bdev_get_queue(bdev));
}

986
static inline int queue_alignment_offset(const struct request_queue *q)
987
{
M
Martin K. Petersen 已提交
988
	if (q->limits.misaligned)
989 990
		return -1;

M
Martin K. Petersen 已提交
991
	return q->limits.alignment_offset;
992 993
}

994
static inline int queue_limit_alignment_offset(struct queue_limits *lim, sector_t sector)
995 996
{
	unsigned int granularity = max(lim->physical_block_size, lim->io_min);
997 998
	unsigned int alignment = sector_div(sector, granularity >> SECTOR_SHIFT)
		<< SECTOR_SHIFT;
999

1000
	return (granularity + lim->alignment_offset - alignment) % granularity;
1001 1002
}

M
Martin K. Petersen 已提交
1003 1004 1005 1006 1007 1008
static inline int bdev_alignment_offset(struct block_device *bdev)
{
	struct request_queue *q = bdev_get_queue(bdev);

	if (q->limits.misaligned)
		return -1;
1009
	if (bdev_is_partition(bdev))
1010
		return queue_limit_alignment_offset(&q->limits,
1011
				bdev->bd_start_sect);
M
Martin K. Petersen 已提交
1012 1013 1014
	return q->limits.alignment_offset;
}

1015
static inline int queue_discard_alignment(const struct request_queue *q)
1016 1017 1018 1019 1020 1021 1022
{
	if (q->limits.discard_misaligned)
		return -1;

	return q->limits.discard_alignment;
}

1023
static inline int queue_limit_discard_alignment(struct queue_limits *lim, sector_t sector)
1024
{
1025
	unsigned int alignment, granularity, offset;
1026

1027 1028 1029
	if (!lim->max_discard_sectors)
		return 0;

1030
	/* Why are these in bytes, not sectors? */
1031 1032
	alignment = lim->discard_alignment >> SECTOR_SHIFT;
	granularity = lim->discard_granularity >> SECTOR_SHIFT;
1033 1034 1035 1036 1037 1038 1039 1040 1041 1042
	if (!granularity)
		return 0;

	/* Offset of the partition start in 'granularity' sectors */
	offset = sector_div(sector, granularity);

	/* And why do we do this modulus *again* in blkdev_issue_discard()? */
	offset = (granularity + alignment - offset) % granularity;

	/* Turn it back into bytes, gaah */
1043
	return offset << SECTOR_SHIFT;
1044 1045
}

1046 1047 1048 1049
static inline int bdev_discard_alignment(struct block_device *bdev)
{
	struct request_queue *q = bdev_get_queue(bdev);

1050
	if (bdev_is_partition(bdev))
1051
		return queue_limit_discard_alignment(&q->limits,
1052
				bdev->bd_start_sect);
1053 1054 1055
	return q->limits.discard_alignment;
}

1056 1057 1058 1059 1060 1061 1062 1063 1064 1065
static inline unsigned int bdev_write_same(struct block_device *bdev)
{
	struct request_queue *q = bdev_get_queue(bdev);

	if (q)
		return q->limits.max_write_same_sectors;

	return 0;
}

1066 1067 1068 1069 1070 1071 1072 1073 1074 1075
static inline unsigned int bdev_write_zeroes_sectors(struct block_device *bdev)
{
	struct request_queue *q = bdev_get_queue(bdev);

	if (q)
		return q->limits.max_write_zeroes_sectors;

	return 0;
}

D
Damien Le Moal 已提交
1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095
static inline enum blk_zoned_model bdev_zoned_model(struct block_device *bdev)
{
	struct request_queue *q = bdev_get_queue(bdev);

	if (q)
		return blk_queue_zoned_model(q);

	return BLK_ZONED_NONE;
}

static inline bool bdev_is_zoned(struct block_device *bdev)
{
	struct request_queue *q = bdev_get_queue(bdev);

	if (q)
		return blk_queue_is_zoned(q);

	return false;
}

1096
static inline sector_t bdev_zone_sectors(struct block_device *bdev)
1097 1098 1099 1100
{
	struct request_queue *q = bdev_get_queue(bdev);

	if (q)
1101
		return blk_queue_zone_sectors(q);
1102 1103
	return 0;
}
1104

1105 1106 1107 1108 1109 1110 1111 1112 1113
static inline unsigned int bdev_max_open_zones(struct block_device *bdev)
{
	struct request_queue *q = bdev_get_queue(bdev);

	if (q)
		return queue_max_open_zones(q);
	return 0;
}

1114 1115 1116 1117 1118 1119 1120 1121 1122
static inline unsigned int bdev_max_active_zones(struct block_device *bdev)
{
	struct request_queue *q = bdev_get_queue(bdev);

	if (q)
		return queue_max_active_zones(q);
	return 0;
}

1123
static inline int queue_dma_alignment(const struct request_queue *q)
L
Linus Torvalds 已提交
1124
{
1125
	return q ? q->dma_alignment : 511;
L
Linus Torvalds 已提交
1126 1127
}

1128
static inline int blk_rq_aligned(struct request_queue *q, unsigned long addr,
1129 1130 1131
				 unsigned int len)
{
	unsigned int alignment = queue_dma_alignment(q) | q->dma_pad_mask;
1132
	return !(addr & alignment) && !(len & alignment);
1133 1134
}

L
Linus Torvalds 已提交
1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145
/* assumes size > 256 */
static inline unsigned int blksize_bits(unsigned int size)
{
	unsigned int bits = 8;
	do {
		bits++;
		size >>= 1;
	} while (size > 256);
	return bits;
}

1146
static inline unsigned int block_size(struct block_device *bdev)
L
Linus Torvalds 已提交
1147
{
1148
	return 1 << bdev->bd_inode->i_blkbits;
L
Linus Torvalds 已提交
1149 1150
}

1151
int kblockd_schedule_work(struct work_struct *work);
1152
int kblockd_mod_delayed_work_on(int cpu, struct delayed_work *dwork, unsigned long delay);
L
Linus Torvalds 已提交
1153 1154 1155 1156 1157 1158

#define MODULE_ALIAS_BLOCKDEV(major,minor) \
	MODULE_ALIAS("block-major-" __stringify(major) "-" __stringify(minor))
#define MODULE_ALIAS_BLOCKDEV_MAJOR(major) \
	MODULE_ALIAS("block-major-" __stringify(major) "-*")

1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177
#ifdef CONFIG_BLK_INLINE_ENCRYPTION

bool blk_ksm_register(struct blk_keyslot_manager *ksm, struct request_queue *q);

void blk_ksm_unregister(struct request_queue *q);

#else /* CONFIG_BLK_INLINE_ENCRYPTION */

static inline bool blk_ksm_register(struct blk_keyslot_manager *ksm,
				    struct request_queue *q)
{
	return true;
}

static inline void blk_ksm_unregister(struct request_queue *q) { }

#endif /* CONFIG_BLK_INLINE_ENCRYPTION */


1178
struct block_device_operations {
1179
	blk_qc_t (*submit_bio) (struct bio *bio);
A
Al Viro 已提交
1180
	int (*open) (struct block_device *, fmode_t);
1181
	void (*release) (struct gendisk *, fmode_t);
1182
	int (*rw_page)(struct block_device *, sector_t, struct page *, unsigned int);
A
Al Viro 已提交
1183 1184
	int (*ioctl) (struct block_device *, fmode_t, unsigned, unsigned long);
	int (*compat_ioctl) (struct block_device *, fmode_t, unsigned, unsigned long);
1185 1186
	unsigned int (*check_events) (struct gendisk *disk,
				      unsigned int clearing);
1187
	void (*unlock_native_capacity) (struct gendisk *);
1188
	int (*getgeo)(struct block_device *, struct hd_geometry *);
1189
	int (*set_read_only)(struct block_device *bdev, bool ro);
1190 1191
	/* this callback is with swap_lock and sometimes page table lock held */
	void (*swap_slot_free_notify) (struct block_device *, unsigned long);
1192
	int (*report_zones)(struct gendisk *, sector_t sector,
C
Christoph Hellwig 已提交
1193
			unsigned int nr_zones, report_zones_cb cb, void *data);
1194
	char *(*devnode)(struct gendisk *disk, umode_t *mode);
1195
	struct module *owner;
1196
	const struct pr_ops *pr_ops;
1197 1198 1199 1200 1201 1202 1203

	/*
	 * Special callback for probing GPT entry at a given sector.
	 * Needed by Android devices, used by GPT scanner and MMC blk
	 * driver.
	 */
	int (*alternative_gpt_sector)(struct gendisk *disk, sector_t *sector);
1204 1205
};

1206 1207 1208 1209 1210 1211 1212
#ifdef CONFIG_COMPAT
extern int blkdev_compat_ptr_ioctl(struct block_device *, fmode_t,
				      unsigned int, unsigned long);
#else
#define blkdev_compat_ptr_ioctl NULL
#endif

1213 1214 1215
extern int bdev_read_page(struct block_device *, sector_t, struct page *);
extern int bdev_write_page(struct block_device *, sector_t, struct page *,
						struct writeback_control *);
1216

J
Jens Axboe 已提交
1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229
static inline void blk_wake_io_task(struct task_struct *waiter)
{
	/*
	 * If we're polling, the task itself is doing the completions. For
	 * that case, we don't need to signal a wakeup, it's enough to just
	 * mark us as RUNNING.
	 */
	if (waiter == current)
		__set_current_state(TASK_RUNNING);
	else
		wake_up_process(waiter);
}

1230 1231 1232 1233 1234
unsigned long disk_start_io_acct(struct gendisk *disk, unsigned int sectors,
		unsigned int op);
void disk_end_io_acct(struct gendisk *disk, unsigned int op,
		unsigned long start_time);

1235 1236 1237
unsigned long bio_start_io_acct(struct bio *bio);
void bio_end_io_acct_remapped(struct bio *bio, unsigned long start_time,
		struct block_device *orig_bdev);
1238 1239 1240 1241 1242 1243 1244 1245

/**
 * bio_end_io_acct - end I/O accounting for bio based drivers
 * @bio:	bio to end account for
 * @start:	start time returned by bio_start_io_acct()
 */
static inline void bio_end_io_acct(struct bio *bio, unsigned long start_time)
{
1246
	return bio_end_io_acct_remapped(bio, start_time, bio->bi_bdev);
1247 1248
}

1249 1250 1251 1252
int bdev_read_only(struct block_device *bdev);
int set_blocksize(struct block_device *bdev, int size);

const char *bdevname(struct block_device *bdev, char *buffer);
C
Christoph Hellwig 已提交
1253
int lookup_bdev(const char *pathname, dev_t *dev);
1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267

void blkdev_show(struct seq_file *seqf, off_t offset);

#define BDEVNAME_SIZE	32	/* Largest string for a blockdev identifier */
#define BDEVT_SIZE	10	/* Largest string for MAJ:MIN for blkdev */
#ifdef CONFIG_BLOCK
#define BLKDEV_MAJOR_MAX	512
#else
#define BLKDEV_MAJOR_MAX	0
#endif

struct block_device *blkdev_get_by_path(const char *path, fmode_t mode,
		void *holder);
struct block_device *blkdev_get_by_dev(dev_t dev, fmode_t mode, void *holder);
1268 1269
int bd_prepare_to_claim(struct block_device *bdev, void *holder);
void bd_abort_claiming(struct block_device *bdev, void *holder);
1270 1271
void blkdev_put(struct block_device *bdev, fmode_t mode);

1272 1273 1274 1275 1276 1277
/* just for blk-cgroup, don't use elsewhere */
struct block_device *blkdev_get_no_open(dev_t dev);
void blkdev_put_no_open(struct block_device *bdev);

struct block_device *bdev_alloc(struct gendisk *disk, u8 partno);
void bdev_add(struct block_device *bdev, dev_t dev);
1278
struct block_device *I_BDEV(struct inode *inode);
1279 1280
int truncate_bdev_range(struct block_device *bdev, fmode_t mode, loff_t lstart,
		loff_t lend);
1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292

#ifdef CONFIG_BLOCK
void invalidate_bdev(struct block_device *bdev);
int sync_blockdev(struct block_device *bdev);
#else
static inline void invalidate_bdev(struct block_device *bdev)
{
}
static inline int sync_blockdev(struct block_device *bdev)
{
	return 0;
}
L
Linus Torvalds 已提交
1293
#endif
1294 1295
int fsync_bdev(struct block_device *bdev);

1296 1297
int freeze_bdev(struct block_device *bdev);
int thaw_bdev(struct block_device *bdev);
1298 1299

#endif /* _LINUX_BLKDEV_H */