]> www.infradead.org Git - nvme.git/commitdiff
nvme: remove unused parameter
authorKanchan Joshi <joshi.k@samsung.com>
Mon, 29 Jul 2024 06:31:33 +0000 (12:01 +0530)
committerKeith Busch <kbusch@kernel.org>
Mon, 29 Jul 2024 14:27:58 +0000 (07:27 -0700)
First parameter of nvme_init_integrity() is unused.
Remove it, and modify the callers.

Signed-off-by: Kanchan Joshi <joshi.k@samsung.com>
Reviewed-by: Sagi Grimberg <sagi@grimberg.me>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Keith Busch <kbusch@kernel.org>
drivers/nvme/host/core.c

index 053d5b4909cda49f433babe243309a173cd2cb18..e8afb5a0f3a3c47ea158233edbe2689a6a07e718 100644 (file)
@@ -1757,7 +1757,7 @@ int nvme_getgeo(struct block_device *bdev, struct hd_geometry *geo)
        return 0;
 }
 
-static bool nvme_init_integrity(struct gendisk *disk, struct nvme_ns_head *head,
+static bool nvme_init_integrity(struct nvme_ns_head *head,
                struct queue_limits *lim)
 {
        struct blk_integrity *bi = &lim->integrity;
@@ -2176,7 +2176,7 @@ static int nvme_update_ns_info_block(struct nvme_ns *ns,
         * I/O to namespaces with metadata except when the namespace supports
         * PI, as it can strip/insert in that case.
         */
-       if (!nvme_init_integrity(ns->disk, ns->head, &lim))
+       if (!nvme_init_integrity(ns->head, &lim))
                capacity = 0;
 
        ret = queue_limits_commit_update(ns->disk->queue, &lim);
@@ -2280,7 +2280,7 @@ static int nvme_update_ns_info(struct nvme_ns *ns, struct nvme_ns_info *info)
                if (unsupported)
                        ns->head->disk->flags |= GENHD_FL_HIDDEN;
                else
-                       nvme_init_integrity(ns->head->disk, ns->head, &lim);
+                       nvme_init_integrity(ns->head, &lim);
                ret = queue_limits_commit_update(ns->head->disk->queue, &lim);
 
                set_capacity_and_notify(ns->head->disk, get_capacity(ns->disk));