aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2023-02-10 08:55:09 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2023-02-10 08:55:09 -0800
commit29716680adbb221a5cd1604e11e81c6f2938e06f (patch)
treed0cc78d54dfdffaa06c838454873ae17c66ca5b0
parent4fe37223975ce04c4a4ad0a136cd4e64b39bc3ca (diff)
parent38c33ece232019c5b18b4d5ec0254807cac06b7c (diff)
downloadlinux-29716680adbb221a5cd1604e11e81c6f2938e06f.tar.gz
Merge tag 'block-6.2-2023-02-10' of git://git.kernel.dk/linux
Pull block fix from Jens Axboe: "A single fix for a smatch regression introduced in this merge window" * tag 'block-6.2-2023-02-10' of git://git.kernel.dk/linux: nvme-auth: mark nvme_auth_wq static
-rw-r--r--drivers/nvme/host/auth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nvme/host/auth.c b/drivers/nvme/host/auth.c
index b57630d1d3b8bd..bdb97496ba2d1a 100644
--- a/drivers/nvme/host/auth.c
+++ b/drivers/nvme/host/auth.c
@@ -45,7 +45,7 @@ struct nvme_dhchap_queue_context {
int sess_key_len;
};
-struct workqueue_struct *nvme_auth_wq;
+static struct workqueue_struct *nvme_auth_wq;
#define nvme_auth_flags_from_qid(qid) \
(qid == 0) ? 0 : BLK_MQ_REQ_NOWAIT | BLK_MQ_REQ_RESERVED