All of lore.kernel.org
 help / color / mirror / Atom feed
From: Damien Le Moal <damien.lemoal@opensource.wdc.com>
To: Christoph Hellwig <hch@lst.de>, Jens Axboe <axboe@kernel.dk>
Cc: dm-devel@redhat.com, linux-block@vger.kernel.org,
	linux-nvme@lists.infradead.org, linux-scsi@vger.kernel.org
Subject: Re: [PATCH 15/17] dm-zoned: cleanup dmz_fixup_devices
Date: Tue, 5 Jul 2022 11:54:57 +0900	[thread overview]
Message-ID: <535739b6-ee61-eccb-1dfc-3c57eab21cea@opensource.wdc.com> (raw)
In-Reply-To: <20220704124500.155247-16-hch@lst.de>

On 7/4/22 21:44, Christoph Hellwig wrote:
> Use the bdev based helpers where applicable and move the zoned_dev
> into the scope where it is actually used.
> 
> Signed-off-by: Christoph Hellwig <hch@lst.de>

Reviewed-by: Damien Le Moal <damien.lemoal@opensource.wdc.com>

> ---
>  drivers/md/dm-zoned-target.c | 24 ++++++++++++------------
>  1 file changed, 12 insertions(+), 12 deletions(-)
> 
> diff --git a/drivers/md/dm-zoned-target.c b/drivers/md/dm-zoned-target.c
> index 6ba6ef44b00e2..95b132b52f332 100644
> --- a/drivers/md/dm-zoned-target.c
> +++ b/drivers/md/dm-zoned-target.c
> @@ -764,8 +764,7 @@ static void dmz_put_zoned_device(struct dm_target *ti)
>  static int dmz_fixup_devices(struct dm_target *ti)
>  {
>  	struct dmz_target *dmz = ti->private;
> -	struct dmz_dev *reg_dev, *zoned_dev;
> -	struct request_queue *q;
> +	struct dmz_dev *reg_dev = NULL;
>  	sector_t zone_nr_sectors = 0;
>  	int i;
>  
> @@ -780,31 +779,32 @@ static int dmz_fixup_devices(struct dm_target *ti)
>  			return -EINVAL;
>  		}
>  		for (i = 1; i < dmz->nr_ddevs; i++) {
> -			zoned_dev = &dmz->dev[i];
> +			struct dmz_dev *zoned_dev = &dmz->dev[i];
> +			struct block_device *bdev = zoned_dev->bdev;
> +
>  			if (zoned_dev->flags & DMZ_BDEV_REGULAR) {
>  				ti->error = "Secondary disk is not a zoned device";
>  				return -EINVAL;
>  			}
> -			q = bdev_get_queue(zoned_dev->bdev);
>  			if (zone_nr_sectors &&
> -			    zone_nr_sectors != blk_queue_zone_sectors(q)) {
> +			    zone_nr_sectors != bdev_zone_sectors(bdev)) {
>  				ti->error = "Zone nr sectors mismatch";
>  				return -EINVAL;
>  			}
> -			zone_nr_sectors = blk_queue_zone_sectors(q);
> +			zone_nr_sectors = bdev_zone_sectors(bdev);
>  			zoned_dev->zone_nr_sectors = zone_nr_sectors;
> -			zoned_dev->nr_zones = bdev_nr_zones(zoned_dev->bdev);
> +			zoned_dev->nr_zones = bdev_nr_zones(bdev);
>  		}
>  	} else {
> -		reg_dev = NULL;
> -		zoned_dev = &dmz->dev[0];
> +		struct dmz_dev *zoned_dev = &dmz->dev[0];
> +		struct block_device *bdev = zoned_dev->bdev;
> +
>  		if (zoned_dev->flags & DMZ_BDEV_REGULAR) {
>  			ti->error = "Disk is not a zoned device";
>  			return -EINVAL;
>  		}
> -		q = bdev_get_queue(zoned_dev->bdev);
> -		zoned_dev->zone_nr_sectors = blk_queue_zone_sectors(q);
> -		zoned_dev->nr_zones = bdev_nr_zones(zoned_dev->bdev);
> +		zoned_dev->zone_nr_sectors = bdev_zone_sectors(bdev);
> +		zoned_dev->nr_zones = bdev_nr_zones(bdev);
>  	}
>  
>  	if (reg_dev) {


-- 
Damien Le Moal
Western Digital Research

WARNING: multiple messages have this Message-ID (diff)
From: Damien Le Moal <damien.lemoal@opensource.wdc.com>
To: Christoph Hellwig <hch@lst.de>, Jens Axboe <axboe@kernel.dk>
Cc: linux-block@vger.kernel.org, dm-devel@redhat.com,
	linux-scsi@vger.kernel.org, linux-nvme@lists.infradead.org
Subject: Re: [dm-devel] [PATCH 15/17] dm-zoned: cleanup dmz_fixup_devices
Date: Tue, 5 Jul 2022 11:54:57 +0900	[thread overview]
Message-ID: <535739b6-ee61-eccb-1dfc-3c57eab21cea@opensource.wdc.com> (raw)
In-Reply-To: <20220704124500.155247-16-hch@lst.de>

On 7/4/22 21:44, Christoph Hellwig wrote:
> Use the bdev based helpers where applicable and move the zoned_dev
> into the scope where it is actually used.
> 
> Signed-off-by: Christoph Hellwig <hch@lst.de>

Reviewed-by: Damien Le Moal <damien.lemoal@opensource.wdc.com>

> ---
>  drivers/md/dm-zoned-target.c | 24 ++++++++++++------------
>  1 file changed, 12 insertions(+), 12 deletions(-)
> 
> diff --git a/drivers/md/dm-zoned-target.c b/drivers/md/dm-zoned-target.c
> index 6ba6ef44b00e2..95b132b52f332 100644
> --- a/drivers/md/dm-zoned-target.c
> +++ b/drivers/md/dm-zoned-target.c
> @@ -764,8 +764,7 @@ static void dmz_put_zoned_device(struct dm_target *ti)
>  static int dmz_fixup_devices(struct dm_target *ti)
>  {
>  	struct dmz_target *dmz = ti->private;
> -	struct dmz_dev *reg_dev, *zoned_dev;
> -	struct request_queue *q;
> +	struct dmz_dev *reg_dev = NULL;
>  	sector_t zone_nr_sectors = 0;
>  	int i;
>  
> @@ -780,31 +779,32 @@ static int dmz_fixup_devices(struct dm_target *ti)
>  			return -EINVAL;
>  		}
>  		for (i = 1; i < dmz->nr_ddevs; i++) {
> -			zoned_dev = &dmz->dev[i];
> +			struct dmz_dev *zoned_dev = &dmz->dev[i];
> +			struct block_device *bdev = zoned_dev->bdev;
> +
>  			if (zoned_dev->flags & DMZ_BDEV_REGULAR) {
>  				ti->error = "Secondary disk is not a zoned device";
>  				return -EINVAL;
>  			}
> -			q = bdev_get_queue(zoned_dev->bdev);
>  			if (zone_nr_sectors &&
> -			    zone_nr_sectors != blk_queue_zone_sectors(q)) {
> +			    zone_nr_sectors != bdev_zone_sectors(bdev)) {
>  				ti->error = "Zone nr sectors mismatch";
>  				return -EINVAL;
>  			}
> -			zone_nr_sectors = blk_queue_zone_sectors(q);
> +			zone_nr_sectors = bdev_zone_sectors(bdev);
>  			zoned_dev->zone_nr_sectors = zone_nr_sectors;
> -			zoned_dev->nr_zones = bdev_nr_zones(zoned_dev->bdev);
> +			zoned_dev->nr_zones = bdev_nr_zones(bdev);
>  		}
>  	} else {
> -		reg_dev = NULL;
> -		zoned_dev = &dmz->dev[0];
> +		struct dmz_dev *zoned_dev = &dmz->dev[0];
> +		struct block_device *bdev = zoned_dev->bdev;
> +
>  		if (zoned_dev->flags & DMZ_BDEV_REGULAR) {
>  			ti->error = "Disk is not a zoned device";
>  			return -EINVAL;
>  		}
> -		q = bdev_get_queue(zoned_dev->bdev);
> -		zoned_dev->zone_nr_sectors = blk_queue_zone_sectors(q);
> -		zoned_dev->nr_zones = bdev_nr_zones(zoned_dev->bdev);
> +		zoned_dev->zone_nr_sectors = bdev_zone_sectors(bdev);
> +		zoned_dev->nr_zones = bdev_nr_zones(bdev);
>  	}
>  
>  	if (reg_dev) {


-- 
Damien Le Moal
Western Digital Research

--
dm-devel mailing list
dm-devel@redhat.com
https://listman.redhat.com/mailman/listinfo/dm-devel


  parent reply	other threads:[~2022-07-05  2:55 UTC|newest]

Thread overview: 140+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-07-04 12:44 clean up zoned device information Christoph Hellwig
2022-07-04 12:44 ` [dm-devel] " Christoph Hellwig
2022-07-04 12:44 ` [PATCH 01/17] block: remove a superflous ifdef in blkdev.h Christoph Hellwig
2022-07-04 12:44   ` [dm-devel] " Christoph Hellwig
2022-07-04 12:58   ` Johannes Thumshirn
2022-07-04 12:58     ` [dm-devel] " Johannes Thumshirn
2022-07-04 13:01     ` Christoph Hellwig
2022-07-04 13:01       ` [dm-devel] " Christoph Hellwig
2022-07-04 13:04       ` Johannes Thumshirn
2022-07-04 13:04         ` [dm-devel] " Johannes Thumshirn
2022-07-05  2:26   ` Damien Le Moal
2022-07-05  2:26     ` [dm-devel] " Damien Le Moal
2022-07-05  6:22   ` Chaitanya Kulkarni
2022-07-05  6:22     ` [dm-devel] " Chaitanya Kulkarni
2022-07-04 12:44 ` [PATCH 02/17] block: call blk_queue_free_zone_bitmaps from disk_release Christoph Hellwig
2022-07-04 12:44   ` [dm-devel] " Christoph Hellwig
2022-07-04 13:01   ` Johannes Thumshirn
2022-07-04 13:01     ` [dm-devel] " Johannes Thumshirn
2022-07-05  2:27   ` Damien Le Moal
2022-07-05  2:27     ` [dm-devel] " Damien Le Moal
2022-07-05  6:23   ` Chaitanya Kulkarni
2022-07-05  6:23     ` [dm-devel] " Chaitanya Kulkarni
2022-07-04 12:44 ` [PATCH 03/17] block: use bdev_is_zoned instead of open coding it Christoph Hellwig
2022-07-04 12:44   ` [dm-devel] " Christoph Hellwig
2022-07-04 13:13   ` Johannes Thumshirn
2022-07-04 13:13     ` [dm-devel] " Johannes Thumshirn
2022-07-05  2:28   ` Damien Le Moal
2022-07-05  2:28     ` [dm-devel] " Damien Le Moal
2022-07-05  6:45   ` Chaitanya Kulkarni
2022-07-05  6:45     ` [dm-devel] " Chaitanya Kulkarni
2022-07-04 12:44 ` [PATCH 04/17] block: simplify blk_mq_plug Christoph Hellwig
2022-07-04 12:44   ` [dm-devel] " Christoph Hellwig
2022-07-04 13:14   ` Johannes Thumshirn
2022-07-04 13:14     ` [dm-devel] " Johannes Thumshirn
2022-07-05  2:30   ` Damien Le Moal
2022-07-05  2:30     ` [dm-devel] " Damien Le Moal
2022-07-05  6:25   ` Chaitanya Kulkarni
2022-07-05  6:25     ` [dm-devel] " Chaitanya Kulkarni
2022-07-04 12:44 ` [PATCH 05/17] block: export blkdev_zone_mgmt_all Christoph Hellwig
2022-07-04 12:44   ` [dm-devel] " Christoph Hellwig
2022-07-04 13:17   ` Johannes Thumshirn
2022-07-04 13:17     ` [dm-devel] " Johannes Thumshirn
2022-07-05  2:31   ` Damien Le Moal
2022-07-05  2:31     ` [dm-devel] " Damien Le Moal
2022-07-05  2:39     ` Damien Le Moal
2022-07-05  2:39       ` [dm-devel] " Damien Le Moal
2022-07-05  6:25   ` Chaitanya Kulkarni
2022-07-05  6:25     ` [dm-devel] " Chaitanya Kulkarni
2022-07-04 12:44 ` [PATCH 06/17] nvmet: use blkdev_zone_mgmt_all Christoph Hellwig
2022-07-04 12:44   ` [dm-devel] " Christoph Hellwig
2022-07-04 13:18   ` Johannes Thumshirn
2022-07-04 13:18     ` [dm-devel] " Johannes Thumshirn
2022-07-04 12:44 ` [PATCH 07/17] block: simplify blk_check_zone_append Christoph Hellwig
2022-07-04 12:44   ` [dm-devel] " Christoph Hellwig
2022-07-04 13:21   ` Johannes Thumshirn
2022-07-04 13:21     ` [dm-devel] " Johannes Thumshirn
2022-07-05  2:40   ` Damien Le Moal
2022-07-05  2:40     ` [dm-devel] " Damien Le Moal
2022-07-05  6:27   ` Chaitanya Kulkarni
2022-07-05  6:27     ` [dm-devel] " Chaitanya Kulkarni
2022-07-04 12:44 ` [PATCH 08/17] block: pass a gendisk to blk_queue_set_zoned Christoph Hellwig
2022-07-04 12:44   ` [dm-devel] " Christoph Hellwig
2022-07-04 13:22   ` Johannes Thumshirn
2022-07-04 13:22     ` [dm-devel] " Johannes Thumshirn
2022-07-05  2:41   ` Damien Le Moal
2022-07-05  2:41     ` [dm-devel] " Damien Le Moal
2022-07-05  6:28   ` Chaitanya Kulkarni
2022-07-05  6:28     ` [dm-devel] " Chaitanya Kulkarni
2022-07-04 12:44 ` [PATCH 09/17] block: pass a gendisk to blk_queue_clear_zone_settings Christoph Hellwig
2022-07-04 12:44   ` [dm-devel] " Christoph Hellwig
2022-07-04 13:23   ` Johannes Thumshirn
2022-07-04 13:23     ` [dm-devel] " Johannes Thumshirn
2022-07-05  2:41   ` Damien Le Moal
2022-07-05  2:41     ` [dm-devel] " Damien Le Moal
2022-07-05  6:29   ` Chaitanya Kulkarni
2022-07-05  6:29     ` [dm-devel] " Chaitanya Kulkarni
2022-07-04 12:44 ` [PATCH 10/17] block: pass a gendisk to blk_queue_free_zone_bitmaps Christoph Hellwig
2022-07-04 12:44   ` [dm-devel] " Christoph Hellwig
2022-07-04 13:23   ` Johannes Thumshirn
2022-07-04 13:23     ` [dm-devel] " Johannes Thumshirn
2022-07-05  2:42   ` Damien Le Moal
2022-07-05  2:42     ` [dm-devel] " Damien Le Moal
2022-07-05  6:40   ` Chaitanya Kulkarni
2022-07-05  6:40     ` [dm-devel] " Chaitanya Kulkarni
2022-07-04 12:44 ` [PATCH 11/17] block: remove queue_max_open_zones and queue_max_active_zones Christoph Hellwig
2022-07-04 12:44   ` [dm-devel] " Christoph Hellwig
2022-07-04 13:23   ` Johannes Thumshirn
2022-07-04 13:23     ` [dm-devel] " Johannes Thumshirn
2022-07-05  2:43   ` Damien Le Moal
2022-07-05  2:43     ` [dm-devel] " Damien Le Moal
2022-07-05  6:41   ` Chaitanya Kulkarni
2022-07-05  6:41     ` [dm-devel] " Chaitanya Kulkarni
2022-07-04 12:44 ` [PATCH 12/17] block: pass a gendisk to blk_queue_max_open_zones and blk_queue_max_active_zones Christoph Hellwig
2022-07-04 12:44   ` [dm-devel] " Christoph Hellwig
2022-07-04 13:24   ` Johannes Thumshirn
2022-07-04 13:24     ` [dm-devel] " Johannes Thumshirn
2022-07-05  2:50   ` Damien Le Moal
2022-07-05  2:50     ` [dm-devel] " Damien Le Moal
2022-07-05  6:41   ` Chaitanya Kulkarni
2022-07-05  6:41     ` [dm-devel] " Chaitanya Kulkarni
2022-07-04 12:44 ` [PATCH 13/17] block: replace blkdev_nr_zones with bdev_nr_zones Christoph Hellwig
2022-07-04 12:44   ` [dm-devel] " Christoph Hellwig
2022-07-04 13:27   ` Johannes Thumshirn
2022-07-04 13:27     ` [dm-devel] " Johannes Thumshirn
2022-07-05  2:53   ` Damien Le Moal
2022-07-05  2:53     ` [dm-devel] " Damien Le Moal
2022-07-05  6:42   ` Chaitanya Kulkarni
2022-07-05  6:42     ` [dm-devel] " Chaitanya Kulkarni
2022-07-04 12:44 ` [PATCH 14/17] block: use bdev based helpers in blkdev_zone_mgmt / blkdev_zone_mgmt_all Christoph Hellwig
2022-07-04 12:44   ` [dm-devel] " Christoph Hellwig
2022-07-04 13:27   ` Johannes Thumshirn
2022-07-04 13:27     ` Johannes Thumshirn
2022-07-05  2:54   ` Damien Le Moal
2022-07-05  2:54     ` [dm-devel] " Damien Le Moal
2022-07-05  6:43   ` Chaitanya Kulkarni
2022-07-05  6:43     ` [dm-devel] " Chaitanya Kulkarni
2022-07-04 12:44 ` [PATCH 15/17] dm-zoned: cleanup dmz_fixup_devices Christoph Hellwig
2022-07-04 12:44   ` [dm-devel] " Christoph Hellwig
2022-07-04 13:28   ` Johannes Thumshirn
2022-07-04 13:28     ` [dm-devel] " Johannes Thumshirn
2022-07-05  2:54   ` Damien Le Moal [this message]
2022-07-05  2:54     ` Damien Le Moal
2022-07-05  6:43   ` Chaitanya Kulkarni
2022-07-05  6:43     ` [dm-devel] " Chaitanya Kulkarni
2022-07-04 12:44 ` [PATCH 16/17] block: remove blk_queue_zone_sectors Christoph Hellwig
2022-07-04 12:44   ` [dm-devel] " Christoph Hellwig
2022-07-04 13:29   ` Johannes Thumshirn
2022-07-04 13:29     ` Johannes Thumshirn
2022-07-05  2:55   ` Damien Le Moal
2022-07-05  2:55     ` [dm-devel] " Damien Le Moal
2022-07-05  6:44   ` Chaitanya Kulkarni
2022-07-05  6:44     ` [dm-devel] " Chaitanya Kulkarni
2022-07-04 12:45 ` [PATCH 17/17] block: move zone related fields to struct gendisk Christoph Hellwig
2022-07-04 12:45   ` [dm-devel] " Christoph Hellwig
2022-07-04 13:31   ` Johannes Thumshirn
2022-07-04 13:31     ` Johannes Thumshirn
2022-07-05  2:59   ` Damien Le Moal
2022-07-05  2:59     ` [dm-devel] " Damien Le Moal
2022-07-05  6:44   ` Chaitanya Kulkarni
2022-07-05  6:44     ` [dm-devel] " Chaitanya Kulkarni

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=535739b6-ee61-eccb-1dfc-3c57eab21cea@opensource.wdc.com \
    --to=damien.lemoal@opensource.wdc.com \
    --cc=axboe@kernel.dk \
    --cc=dm-devel@redhat.com \
    --cc=hch@lst.de \
    --cc=linux-block@vger.kernel.org \
    --cc=linux-nvme@lists.infradead.org \
    --cc=linux-scsi@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.