summaryrefslogtreecommitdiff
path: root/drivers/nvme/host
diff options
context:
space:
mode:
authorDaniel Gomez <da.gomez@samsung.com>2023-05-30 18:42:53 +0300
committerKeith Busch <kbusch@kernel.org>2023-06-12 20:36:59 +0300
commitbdbfcd5f6caa46e1ddbfd60cbf694d192b37805a (patch)
tree0317df7ed5dfef7ab13591b34ef640b1cdac7c63 /drivers/nvme/host
parente9227d486ede0428a00f011236753d83a390d2e1 (diff)
downloadlinux-bdbfcd5f6caa46e1ddbfd60cbf694d192b37805a.tar.xz
nvme: Increase block size variable size to 32-bit
Increase block size variable size to 32-bit unsigned to be able to support block devices larger than 32k (starting from 64 KiB). Physical and logical block size already support unsigned 32-bit. Signed-off-by: Daniel Gomez <da.gomez@samsung.com> Reviewed-by: Luis Chamberlain <mcgrof@kernel.org> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Keith Busch <kbusch@kernel.org>
Diffstat (limited to 'drivers/nvme/host')
-rw-r--r--drivers/nvme/host/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nvme/host/core.c b/drivers/nvme/host/core.c
index 3263af1c2c15..64c484c14d6f 100644
--- a/drivers/nvme/host/core.c
+++ b/drivers/nvme/host/core.c
@@ -1835,7 +1835,7 @@ static void nvme_update_disk_info(struct gendisk *disk,
struct nvme_ns *ns, struct nvme_id_ns *id)
{
sector_t capacity = nvme_lba_to_sect(ns, le64_to_cpu(id->nsze));
- unsigned short bs = 1 << ns->lba_shift;
+ u32 bs = 1U << ns->lba_shift;
u32 atomic_bs, phys_bs, io_opt = 0;
/*