]> www.infradead.org Git - nvme.git/commitdiff
nvme-tcp: remove nvme_tcp_destroy_io_queues() nvme-6.13-2024-12-31
authorChunguang.xu <chunguang.xu@shopee.com>
Tue, 3 Dec 2024 03:39:55 +0000 (11:39 +0800)
committerKeith Busch <kbusch@kernel.org>
Fri, 27 Dec 2024 21:33:48 +0000 (13:33 -0800)
Now when destroying the IO queue we call nvme_tcp_stop_io_queues()
twice, nvme_tcp_destroy_io_queues() has an unnecessary call. Here we
try to remove nvme_tcp_destroy_io_queues() and merge it into
nvme_tcp_teardown_io_queues(), simplify the code and align with
nvme-rdma, make it easy to maintaince.

Signed-off-by: Chunguang.xu <chunguang.xu@shopee.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/tcp.c

index 28c76a3e1bd22be42cc19e71969e7e7e6df88d8a..b127d41dbbfee18696a32472f6d3d6cded7e3a58 100644 (file)
@@ -2024,14 +2024,6 @@ static int nvme_tcp_alloc_io_queues(struct nvme_ctrl *ctrl)
        return __nvme_tcp_alloc_io_queues(ctrl);
 }
 
-static void nvme_tcp_destroy_io_queues(struct nvme_ctrl *ctrl, bool remove)
-{
-       nvme_tcp_stop_io_queues(ctrl);
-       if (remove)
-               nvme_remove_io_tag_set(ctrl);
-       nvme_tcp_free_io_queues(ctrl);
-}
-
 static int nvme_tcp_configure_io_queues(struct nvme_ctrl *ctrl, bool new)
 {
        int ret, nr_queues;
@@ -2176,9 +2168,11 @@ static void nvme_tcp_teardown_io_queues(struct nvme_ctrl *ctrl,
        nvme_sync_io_queues(ctrl);
        nvme_tcp_stop_io_queues(ctrl);
        nvme_cancel_tagset(ctrl);
-       if (remove)
+       if (remove) {
                nvme_unquiesce_io_queues(ctrl);
-       nvme_tcp_destroy_io_queues(ctrl, remove);
+               nvme_remove_io_tag_set(ctrl);
+       }
+       nvme_tcp_free_io_queues(ctrl);
 }
 
 static void nvme_tcp_reconnect_or_remove(struct nvme_ctrl *ctrl,
@@ -2267,7 +2261,9 @@ destroy_io:
                nvme_sync_io_queues(ctrl);
                nvme_tcp_stop_io_queues(ctrl);
                nvme_cancel_tagset(ctrl);
-               nvme_tcp_destroy_io_queues(ctrl, new);
+               if (new)
+                       nvme_remove_io_tag_set(ctrl);
+               nvme_tcp_free_io_queues(ctrl);
        }
 destroy_admin:
        nvme_stop_keep_alive(ctrl);