[PATCH] nvme: fixup zns namespace initialisation
Christoph Hellwig
hch at lst.de
Thu May 23 05:44:45 PDT 2024
On Thu, May 23, 2024 at 01:58:10PM +0200, Hannes Reinecke wrote:
> nvme_set_chunk_sectors() needs to know whether it's a zoned namespace
> or not, but the information is only set in a later call.
Where "needs to know" means the blk_queue_is_zoned check to warn if
an I/O boundary is set for a zoned namespaces?
> --- a/drivers/nvme/host/core.c
> +++ b/drivers/nvme/host/core.c
> @@ -1952,6 +1952,12 @@ static void nvme_set_ctrl_limits(struct nvme_ctrl *ctrl,
> lim->virt_boundary_mask = NVME_CTRL_PAGE_SIZE - 1;
> lim->max_segment_size = UINT_MAX;
> lim->dma_alignment = 3;
> + lim->chunk_sectors = 0;
> + lim->zoned = false;
> + lim->max_open_zones = 0;
> + lim->max_active_zones = 0;
> + lim->zone_write_granularity = 0;
> + lim->max_zone_append_sectors = 0;
I can't see why we'd need or want this part.
> static bool nvme_update_disk_info(struct nvme_ns *ns, struct nvme_id_ns *id,
> @@ -2115,13 +2121,13 @@ static int nvme_update_ns_info_block(struct nvme_ns *ns,
> lim = queue_limits_start_update(ns->disk->queue);
> nvme_set_ctrl_limits(ns->ctrl, &lim);
> nvme_configure_metadata(ns->ctrl, ns->head, id, nvm);
> + if (IS_ENABLED(CONFIG_BLK_DEV_ZONED) &&
> + ns->head->ids.csi == NVME_CSI_ZNS)
> + nvme_update_zone_info(ns, &lim, &zi);
> nvme_set_chunk_sectors(ns, id, &lim);
> if (!nvme_update_disk_info(ns, id, &lim))
> capacity = 0;
> nvme_config_discard(ns, &lim);
> - if (IS_ENABLED(CONFIG_BLK_DEV_ZONED) &&
> - ns->head->ids.csi == NVME_CSI_ZNS)
> - nvme_update_zone_info(ns, &lim, &zi);
This part looks fine, but you probably also want to replace the
blk_queue_is_zoned() check with one for lim->zoned for this to
actually work..
More information about the Linux-nvme
mailing list