]> git.itanic.dy.fi Git - linux-stable/commitdiff
nvme: fix max_discard_sectors calculation
authorChristoph Hellwig <hch@lst.de>
Tue, 26 Dec 2023 08:58:43 +0000 (08:58 +0000)
committerKeith Busch <kbusch@kernel.org>
Wed, 3 Jan 2024 16:09:40 +0000 (08:09 -0800)
ctrl->max_discard_sectors stores a value that is potentially based of
the DMRSL field in Identify Controller, which is in units of LBAs and
thus dependent on the Format of a namespace.

Fix this by moving the calculation of max_discard_sectors entirely
into nvme_config_discard and replacing the ctrl->max_discard_sectors
value with a local variable so that the calculation is always
namespace-specific.

Fixes: 1a86924e4f46 ("nvme: fix interpretation of DMRSL")
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Keith Busch <kbusch@kernel.org>
drivers/nvme/host/core.c
drivers/nvme/host/nvme.h

index 6c52b0ab382c85737836a485ea8cfc97ef06f7ef..86b9a1c4876f5fd9da1fefc2d1b91dd972017a54 100644 (file)
@@ -1727,12 +1727,13 @@ static void nvme_config_discard(struct nvme_ctrl *ctrl, struct gendisk *disk,
                struct nvme_ns_head *head)
 {
        struct request_queue *queue = disk->queue;
+       u32 max_discard_sectors;
 
-       if (ctrl->dmrsl && ctrl->dmrsl <= nvme_sect_to_lba(head, UINT_MAX))
-               ctrl->max_discard_sectors =
-                       nvme_lba_to_sect(head, ctrl->dmrsl);
-
-       if (ctrl->max_discard_sectors == 0) {
+       if (ctrl->dmrsl && ctrl->dmrsl <= nvme_sect_to_lba(head, UINT_MAX)) {
+               max_discard_sectors = nvme_lba_to_sect(head, ctrl->dmrsl);
+       } else if (ctrl->oncs & NVME_CTRL_ONCS_DSM) {
+               max_discard_sectors = UINT_MAX;
+       } else {
                blk_queue_max_discard_sectors(queue, 0);
                return;
        }
@@ -1750,7 +1751,7 @@ static void nvme_config_discard(struct nvme_ctrl *ctrl, struct gendisk *disk,
        if (queue->limits.max_discard_sectors)
                return;
 
-       blk_queue_max_discard_sectors(queue, ctrl->max_discard_sectors);
+       blk_queue_max_discard_sectors(queue, max_discard_sectors);
        blk_queue_max_discard_segments(queue, ctrl->max_discard_segments);
        queue->limits.discard_granularity = queue_logical_block_size(queue);
 
@@ -2911,13 +2912,10 @@ static int nvme_init_non_mdts_limits(struct nvme_ctrl *ctrl)
        struct nvme_id_ctrl_nvm *id;
        int ret;
 
-       if (ctrl->oncs & NVME_CTRL_ONCS_DSM) {
-               ctrl->max_discard_sectors = UINT_MAX;
+       if (ctrl->oncs & NVME_CTRL_ONCS_DSM)
                ctrl->max_discard_segments = NVME_DSM_MAX_RANGES;
-       } else {
-               ctrl->max_discard_sectors = 0;
+       else
                ctrl->max_discard_segments = 0;
-       }
 
        /*
         * Even though NVMe spec explicitly states that MDTS is not applicable
index 3dbd187896d8d8706cbefd006459b351872e0f11..9a698c49ea03649275eb63491c85043cdda2b124 100644 (file)
@@ -297,7 +297,6 @@ struct nvme_ctrl {
        u32 max_hw_sectors;
        u32 max_segments;
        u32 max_integrity_segments;
-       u32 max_discard_sectors;
        u32 max_discard_segments;
        u32 max_zeroes_sectors;
 #ifdef CONFIG_BLK_DEV_ZONED