diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2023-02-10 17:55:09 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2023-02-10 17:55:09 +0100 |
commit | 29716680adbb221a5cd1604e11e81c6f2938e06f (patch) | |
tree | d0cc78d54dfdffaa06c838454873ae17c66ca5b0 /drivers/nvme | |
parent | Merge tag 'sound-6.2-rc8' of git://git.kernel.org/pub/scm/linux/kernel/git/ti... (diff) | |
parent | Merge tag 'nvme-6.2-2023-02-09' of git://git.infradead.org/nvme into block-6.2 (diff) | |
download | linux-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.c | 2 |
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 |