Message ID | 20210117145341.23310-2-minwoo.im.dev@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | hw/block/nvme: support multi-path for ctrl/ns | expand |
On Jan 17 23:53, Minwoo Im wrote: > nvme_ns_init_zoned() has no use for given NvmeCtrl object. > > Signed-off-by: Minwoo Im <minwoo.im.dev@gmail.com> Reviewed-by: Klaus Jensen <k.jensen@samsung.com>
diff --git a/hw/block/nvme-ns.c b/hw/block/nvme-ns.c index 274eaf61b721..32662230130b 100644 --- a/hw/block/nvme-ns.c +++ b/hw/block/nvme-ns.c @@ -204,7 +204,7 @@ static void nvme_ns_zoned_init_state(NvmeNamespace *ns) } } -static void nvme_ns_init_zoned(NvmeCtrl *n, NvmeNamespace *ns, int lba_index) +static void nvme_ns_init_zoned(NvmeNamespace *ns, int lba_index) { NvmeIdNsZoned *id_ns_z; @@ -321,7 +321,7 @@ int nvme_ns_setup(NvmeCtrl *n, NvmeNamespace *ns, Error **errp) if (nvme_ns_zoned_check_calc_geometry(ns, errp) != 0) { return -1; } - nvme_ns_init_zoned(n, ns, 0); + nvme_ns_init_zoned(ns, 0); } if (nvme_register_namespace(n, ns, errp)) {
nvme_ns_init_zoned() has no use for given NvmeCtrl object. Signed-off-by: Minwoo Im <minwoo.im.dev@gmail.com> --- hw/block/nvme-ns.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)