block: add a bdev_nonrot helper
Add a helper to check the nonrot flag based on the block_device instead of having to poke into the block layer internal request_queue. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Martin K. Petersen <martin.petersen@oracle.com> Acked-by: David Sterba <dsterba@suse.com> [btrfs] Reviewed-by: Chaitanya Kulkarni <kch@nvidia.com> Link: https://lore.kernel.org/r/20220415045258.199825-12-hch@lst.de Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
9964e67455
commit
10f0d2a517
|
@ -489,7 +489,7 @@ static int blkdev_common_ioctl(struct block_device *bdev, fmode_t mode,
|
|||
queue_max_sectors(bdev_get_queue(bdev)));
|
||||
return put_ushort(argp, max_sectors);
|
||||
case BLKROTATIONAL:
|
||||
return put_ushort(argp, !blk_queue_nonrot(bdev_get_queue(bdev)));
|
||||
return put_ushort(argp, !bdev_nonrot(bdev));
|
||||
case BLKRASET:
|
||||
case BLKFRASET:
|
||||
if(!capable(CAP_SYS_ADMIN))
|
||||
|
|
|
@ -903,7 +903,7 @@ static void loop_update_rotational(struct loop_device *lo)
|
|||
|
||||
/* not all filesystems (e.g. tmpfs) have a sb->s_bdev */
|
||||
if (file_bdev)
|
||||
nonrot = blk_queue_nonrot(bdev_get_queue(file_bdev));
|
||||
nonrot = bdev_nonrot(file_bdev);
|
||||
|
||||
if (nonrot)
|
||||
blk_queue_flag_set(QUEUE_FLAG_NONROT, q);
|
||||
|
|
|
@ -1820,9 +1820,7 @@ static int device_dax_write_cache_enabled(struct dm_target *ti,
|
|||
static int device_is_rotational(struct dm_target *ti, struct dm_dev *dev,
|
||||
sector_t start, sector_t len, void *data)
|
||||
{
|
||||
struct request_queue *q = bdev_get_queue(dev->bdev);
|
||||
|
||||
return !blk_queue_nonrot(q);
|
||||
return !bdev_nonrot(dev->bdev);
|
||||
}
|
||||
|
||||
static int device_is_not_random(struct dm_target *ti, struct dm_dev *dev,
|
||||
|
|
|
@ -5991,8 +5991,7 @@ int md_run(struct mddev *mddev)
|
|||
bool nonrot = true;
|
||||
|
||||
rdev_for_each(rdev, mddev) {
|
||||
if (rdev->raid_disk >= 0 &&
|
||||
!blk_queue_nonrot(bdev_get_queue(rdev->bdev))) {
|
||||
if (rdev->raid_disk >= 0 && !bdev_nonrot(rdev->bdev)) {
|
||||
nonrot = false;
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -708,7 +708,7 @@ static int read_balance(struct r1conf *conf, struct r1bio *r1_bio, int *max_sect
|
|||
/* At least two disks to choose from so failfast is OK */
|
||||
set_bit(R1BIO_FailFast, &r1_bio->state);
|
||||
|
||||
nonrot = blk_queue_nonrot(bdev_get_queue(rdev->bdev));
|
||||
nonrot = bdev_nonrot(rdev->bdev);
|
||||
has_nonrot_disk |= nonrot;
|
||||
pending = atomic_read(&rdev->nr_pending);
|
||||
dist = abs(this_sector - conf->mirrors[disk].head_position);
|
||||
|
|
|
@ -803,7 +803,7 @@ static struct md_rdev *read_balance(struct r10conf *conf,
|
|||
if (!do_balance)
|
||||
break;
|
||||
|
||||
nonrot = blk_queue_nonrot(bdev_get_queue(rdev->bdev));
|
||||
nonrot = bdev_nonrot(rdev->bdev);
|
||||
has_nonrot_disk |= nonrot;
|
||||
pending = atomic_read(&rdev->nr_pending);
|
||||
if (min_pending > pending && nonrot) {
|
||||
|
|
|
@ -7242,7 +7242,7 @@ static struct r5conf *setup_conf(struct mddev *mddev)
|
|||
rdev_for_each(rdev, mddev) {
|
||||
if (test_bit(Journal, &rdev->flags))
|
||||
continue;
|
||||
if (blk_queue_nonrot(bdev_get_queue(rdev->bdev))) {
|
||||
if (bdev_nonrot(rdev->bdev)) {
|
||||
conf->batch_bio_dispatch = false;
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -135,7 +135,6 @@ static int fd_configure_device(struct se_device *dev)
|
|||
inode = file->f_mapping->host;
|
||||
if (S_ISBLK(inode->i_mode)) {
|
||||
struct block_device *bdev = I_BDEV(inode);
|
||||
struct request_queue *q = bdev_get_queue(bdev);
|
||||
unsigned long long dev_size;
|
||||
|
||||
fd_dev->fd_block_size = bdev_logical_block_size(bdev);
|
||||
|
@ -160,7 +159,7 @@ static int fd_configure_device(struct se_device *dev)
|
|||
*/
|
||||
dev->dev_attrib.max_write_same_len = 0xFFFF;
|
||||
|
||||
if (blk_queue_nonrot(q))
|
||||
if (bdev_nonrot(bdev))
|
||||
dev->dev_attrib.is_nonrot = 1;
|
||||
} else {
|
||||
if (!(fd_dev->fbd_flags & FBDF_HAS_SIZE)) {
|
||||
|
|
|
@ -133,7 +133,7 @@ static int iblock_configure_device(struct se_device *dev)
|
|||
else
|
||||
dev->dev_attrib.max_write_same_len = 0xFFFF;
|
||||
|
||||
if (blk_queue_nonrot(q))
|
||||
if (bdev_nonrot(bd))
|
||||
dev->dev_attrib.is_nonrot = 1;
|
||||
|
||||
bi = bdev_get_integrity(bd);
|
||||
|
|
|
@ -642,7 +642,7 @@ static int btrfs_open_one_device(struct btrfs_fs_devices *fs_devices,
|
|||
set_bit(BTRFS_DEV_STATE_WRITEABLE, &device->dev_state);
|
||||
}
|
||||
|
||||
if (!blk_queue_nonrot(bdev_get_queue(bdev)))
|
||||
if (!bdev_nonrot(bdev))
|
||||
fs_devices->rotating = true;
|
||||
|
||||
device->bdev = bdev;
|
||||
|
@ -2705,7 +2705,7 @@ int btrfs_init_new_device(struct btrfs_fs_info *fs_info, const char *device_path
|
|||
|
||||
atomic64_add(device->total_bytes, &fs_info->free_chunk_space);
|
||||
|
||||
if (!blk_queue_nonrot(bdev_get_queue(bdev)))
|
||||
if (!bdev_nonrot(bdev))
|
||||
fs_devices->rotating = true;
|
||||
|
||||
orig_super_total_bytes = btrfs_super_total_bytes(fs_info->super_copy);
|
||||
|
|
|
@ -3498,7 +3498,7 @@ int ext4_mb_init(struct super_block *sb)
|
|||
spin_lock_init(&lg->lg_prealloc_lock);
|
||||
}
|
||||
|
||||
if (blk_queue_nonrot(bdev_get_queue(sb->s_bdev)))
|
||||
if (bdev_nonrot(sb->s_bdev))
|
||||
sbi->s_mb_max_linear_groups = 0;
|
||||
else
|
||||
sbi->s_mb_max_linear_groups = MB_DEFAULT_LINEAR_LIMIT;
|
||||
|
|
|
@ -1326,6 +1326,11 @@ static inline unsigned int bdev_write_zeroes_sectors(struct block_device *bdev)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static inline bool bdev_nonrot(struct block_device *bdev)
|
||||
{
|
||||
return blk_queue_nonrot(bdev_get_queue(bdev));
|
||||
}
|
||||
|
||||
static inline enum blk_zoned_model bdev_zoned_model(struct block_device *bdev)
|
||||
{
|
||||
struct request_queue *q = bdev_get_queue(bdev);
|
||||
|
|
|
@ -2466,7 +2466,7 @@ SYSCALL_DEFINE1(swapoff, const char __user *, specialfile)
|
|||
if (p->flags & SWP_CONTINUED)
|
||||
free_swap_count_continuations(p);
|
||||
|
||||
if (!p->bdev || !blk_queue_nonrot(bdev_get_queue(p->bdev)))
|
||||
if (!p->bdev || !bdev_nonrot(p->bdev))
|
||||
atomic_dec(&nr_rotate_swap);
|
||||
|
||||
mutex_lock(&swapon_mutex);
|
||||
|
@ -3071,7 +3071,7 @@ SYSCALL_DEFINE2(swapon, const char __user *, specialfile, int, swap_flags)
|
|||
if (p->bdev && p->bdev->bd_disk->fops->rw_page)
|
||||
p->flags |= SWP_SYNCHRONOUS_IO;
|
||||
|
||||
if (p->bdev && blk_queue_nonrot(bdev_get_queue(p->bdev))) {
|
||||
if (p->bdev && bdev_nonrot(p->bdev)) {
|
||||
int cpu;
|
||||
unsigned long ci, nr_cluster;
|
||||
|
||||
|
|
Loading…
Reference in New Issue