summaryrefslogtreecommitdiffstats
path: root/drivers/nvme
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2023-02-10 17:55:09 +0100
committerLinus Torvalds <torvalds@linux-foundation.org>2023-02-10 17:55:09 +0100
commit29716680adbb221a5cd1604e11e81c6f2938e06f (patch)
treed0cc78d54dfdffaa06c838454873ae17c66ca5b0 /drivers/nvme
parentMerge tag 'sound-6.2-rc8' of git://git.kernel.org/pub/scm/linux/kernel/git/ti... (diff)
parentMerge tag 'nvme-6.2-2023-02-09' of git://git.infradead.org/nvme into block-6.2 (diff)
downloadlinux-29716680adbb221a5cd1604e11e81c6f2938e06f.tar.xz
linux-29716680adbb221a5cd1604e11e81c6f2938e06f.zip
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
Diffstat (limited to 'drivers/nvme')
-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 b57630d1d3b8..bdb97496ba2d 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