]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
nvmet-fcloop: swap list_add_tail arguments
authorDaniel Wagner <wagi@kernel.org>
Tue, 8 Apr 2025 15:29:03 +0000 (17:29 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 2 May 2025 05:40:46 +0000 (07:40 +0200)
[ Upstream commit 2b5f0c5bc819af2b0759a8fcddc1b39102735c0f ]

The newly element to be added to the list is the first argument of
list_add_tail. This fix is missing dcfad4ab4d67 ("nvmet-fcloop: swap
the list_add_tail arguments").

Fixes: 437c0b824dbd ("nvme-fcloop: add target to host LS request support")
Signed-off-by: Daniel Wagner <wagi@kernel.org>
Reviewed-by: Hannes Reinecke <hare@suse.de>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/nvme/target/fcloop.c

index f2c5136bf2b82c1278ac607c28b2cfa90eacdcd6..f1aaabc5bec7db8bb77845b134efd5faefaed1d4 100644 (file)
@@ -478,7 +478,7 @@ fcloop_t2h_xmt_ls_rsp(struct nvme_fc_local_port *localport,
        if (targetport) {
                tport = targetport->private;
                spin_lock(&tport->lock);
-               list_add_tail(&tport->ls_list, &tls_req->ls_list);
+               list_add_tail(&tls_req->ls_list, &tport->ls_list);
                spin_unlock(&tport->lock);
                schedule_work(&tport->ls_work);
        }