All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3] NVMe: Format fix when going from 4k sector size to 512 bytes
@ 2017-12-19 19:24 Jeff Lien
  2017-12-21  1:38 ` Martin K. Petersen
  2017-12-21 10:16 ` Christoph Hellwig
  0 siblings, 2 replies; 3+ messages in thread
From: Jeff Lien @ 2017-12-19 19:24 UTC (permalink / raw)


    If you format a device with a 4k sector size back to 512 bytes,
    the queue limit values for physical block size and minimum IO
    size were not getting updated; only the logical block size was
    being updated.  This patch adds code to update the physical
    block and IO minimum sizes.

Signed-off-by: Jeff Lien <jeff.lien at wdc.com>
---
 drivers/nvme/host/core.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/drivers/nvme/host/core.c b/drivers/nvme/host/core.c
index f837d666cbd4..f289d30584c1 100644
--- a/drivers/nvme/host/core.c
+++ b/drivers/nvme/host/core.c
@@ -1336,6 +1336,7 @@ static void nvme_update_disk_info(struct gendisk *disk,
 {
 	sector_t capacity = le64_to_cpup(&id->nsze) << (ns->lba_shift - 9);
 	unsigned stream_alignment = 0;
+	unsigned short bs;
 
 	if (ns->ctrl->nr_streams && ns->sws && ns->sgs)
 		stream_alignment = ns->sws * ns->sgs;
@@ -1343,7 +1344,11 @@ static void nvme_update_disk_info(struct gendisk *disk,
 	blk_mq_freeze_queue(disk->queue);
 	blk_integrity_unregister(disk);
 
-	blk_queue_logical_block_size(disk->queue, 1 << ns->lba_shift);
+	bs = 1 << ns->lba_shift;
+	blk_queue_logical_block_size(disk->queue, bs);
+	blk_queue_physical_block_size(disk->queue, bs);
+	blk_queue_io_min(disk->queue, bs);
+
 	if (ns->ms && !ns->ext &&
 	    (ns->ctrl->ops->flags & NVME_F_METADATA_SUPPORTED))
 		nvme_init_integrity(disk, ns->ms, ns->pi_type);
-- 
2.14.2.746.g8fb8a94

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [PATCH v3] NVMe: Format fix when going from 4k sector size to 512 bytes
  2017-12-19 19:24 [PATCH v3] NVMe: Format fix when going from 4k sector size to 512 bytes Jeff Lien
@ 2017-12-21  1:38 ` Martin K. Petersen
  2017-12-21 10:16 ` Christoph Hellwig
  1 sibling, 0 replies; 3+ messages in thread
From: Martin K. Petersen @ 2017-12-21  1:38 UTC (permalink / raw)



Jeff,

> If you format a device with a 4k sector size back to 512 bytes, the
> queue limit values for physical block size and minimum IO size were
> not getting updated; only the logical block size was being updated.
> This patch adds code to update the physical block and IO minimum
> sizes.

Reviewed-by: Martin K. Petersen <martin.petersen at oracle.com>

-- 
Martin K. Petersen	Oracle Linux Engineering

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH v3] NVMe: Format fix when going from 4k sector size to 512 bytes
  2017-12-19 19:24 [PATCH v3] NVMe: Format fix when going from 4k sector size to 512 bytes Jeff Lien
  2017-12-21  1:38 ` Martin K. Petersen
@ 2017-12-21 10:16 ` Christoph Hellwig
  1 sibling, 0 replies; 3+ messages in thread
From: Christoph Hellwig @ 2017-12-21 10:16 UTC (permalink / raw)


Thanks,

applied to nvme-4.15

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-12-21 10:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-19 19:24 [PATCH v3] NVMe: Format fix when going from 4k sector size to 512 bytes Jeff Lien
2017-12-21  1:38 ` Martin K. Petersen
2017-12-21 10:16 ` Christoph Hellwig

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.