Re: [PATCH rdma-next 11/13] nvme: Introduce a local variable
From: Chaitanya Kulkarni <hidden>
Date: 2023-01-17 00:33:19
Also in:
linux-nvme, linux-rdma, linux-trace-kernel, lkml
From: Chaitanya Kulkarni <hidden>
Date: 2023-01-17 00:33:19
Also in:
linux-nvme, linux-rdma, linux-trace-kernel, lkml
On 1/16/23 05:05, Leon Romanovsky wrote:
From: Israel Rukshin <redacted> The patch doesn't change any logic. Signed-off-by: Israel Rukshin <redacted> Signed-off-by: Leon Romanovsky <leon@kernel.org> --- drivers/nvme/host/core.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-)diff --git a/drivers/nvme/host/core.c b/drivers/nvme/host/core.c index 7be562a4e1aa..51a9880db6ce 100644 --- a/drivers/nvme/host/core.c +++ b/drivers/nvme/host/core.c@@ -1870,6 +1870,7 @@ static void nvme_update_disk_info(struct gendisk *disk, sector_t capacity = nvme_lba_to_sect(ns, le64_to_cpu(id->nsze)); unsigned short bs = 1 << ns->lba_shift; u32 atomic_bs, phys_bs, io_opt = 0; + struct nvme_ctrl *ctrl = ns->ctrl;
I don't think this patch is needed, existing code is more readable and gives much clarity that we are accessing ctrl from namespace since we are in nvme_update_disk_info() which is namespace based. -ck