diff options
author | Christoph Hellwig <hch@lst.de> | 2024-07-03 15:12:08 +0200 |
---|---|---|
committer | Mikulas Patocka <mpatocka@redhat.com> | 2024-07-10 13:10:06 +0200 |
commit | 0a94a469a4f02bdcc223517fd578810ffc21c548 (patch) | |
tree | 70d62c5d7197aa39e7fcd828ab8cd362495708e3 /drivers/md/dm-stripe.c | |
parent | 0d815e3400e631d227a3a95968b8c8e7e0c0ef9e (diff) | |
download | linux-0a94a469a4f02bdcc223517fd578810ffc21c548.tar.gz linux-0a94a469a4f02bdcc223517fd578810ffc21c548.tar.bz2 linux-0a94a469a4f02bdcc223517fd578810ffc21c548.zip |
dm: stop using blk_limits_io_{min,opt}
Remove use of the blk_limits_io_{min,opt} and assign the values directly
to the queue_limits structure. For the io_opt this is a completely
mechanical change, for io_min it removes flooring the limit to the
physical and logical block size in the particular caller. But as
blk_validate_limits will do the same later when actually applying the
limits, there still is no change in overall behavior.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Diffstat (limited to 'drivers/md/dm-stripe.c')
-rw-r--r-- | drivers/md/dm-stripe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/md/dm-stripe.c b/drivers/md/dm-stripe.c index ec908cf8cfdc..4112071de0be 100644 --- a/drivers/md/dm-stripe.c +++ b/drivers/md/dm-stripe.c @@ -459,8 +459,8 @@ static void stripe_io_hints(struct dm_target *ti, struct stripe_c *sc = ti->private; unsigned int chunk_size = sc->chunk_size << SECTOR_SHIFT; - blk_limits_io_min(limits, chunk_size); - blk_limits_io_opt(limits, chunk_size * sc->stripes); + limits->io_min = chunk_size; + limits->io_opt = chunk_size * sc->stripes; } static struct target_type stripe_target = { |