This is a note to let you know that I've just added the patch titled scsi: sg: Fix checking return value of blk_get_queue() to the 6.4-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: scsi-sg-fix-checking-return-value-of-blk_get_queue.patch and it can be found in the queue-6.4 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 80b6051085c5fedcb1dfd7b2562a63a83655c4d8 Mon Sep 17 00:00:00 2001 From: Yu Kuai <yukuai3@xxxxxxxxxx> Date: Wed, 5 Jul 2023 10:40:01 +0800 Subject: scsi: sg: Fix checking return value of blk_get_queue() From: Yu Kuai <yukuai3@xxxxxxxxxx> commit 80b6051085c5fedcb1dfd7b2562a63a83655c4d8 upstream. Commit fcaa174a9c99 ("scsi/sg: don't grab scsi host module reference") make a mess how blk_get_queue() is called, blk_get_queue() returns true on success while the caller expects it returns 0 on success. Fix this problem and also add a corresponding error message on failure. Fixes: fcaa174a9c99 ("scsi/sg: don't grab scsi host module reference") Reported-by: Marc Hartmayer <mhartmay@xxxxxxxxxxxxx> Closes: https://lore.kernel.org/all/87lefv622n.fsf@xxxxxxxxxxxxx/ Signed-off-by: Yu Kuai <yukuai3@xxxxxxxxxx> Link: https://lore.kernel.org/r/20230705024001.177585-1-yukuai1@xxxxxxxxxxxxxxx Tested-by: Shin'ichiro Kawasaki <shinichiro.kawasaki@xxxxxxx> Tested-by: Marc Hartmayer <mhartmay@xxxxxxxxxxxxx> Reviewed-by: Christoph Hellwig <hch@xxxxxx> Reviewed-by: Marc Hartmayer <mhartmay@xxxxxxxxxxxxx> Signed-off-by: Martin K. Petersen <martin.petersen@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/scsi/sg.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) --- a/drivers/scsi/sg.c +++ b/drivers/scsi/sg.c @@ -1496,9 +1496,10 @@ sg_add_device(struct device *cl_dev) int error; unsigned long iflags; - error = blk_get_queue(scsidp->request_queue); - if (error) - return error; + if (!blk_get_queue(scsidp->request_queue)) { + pr_warn("%s: get scsi_device queue failed\n", __func__); + return -ENODEV; + } error = -ENOMEM; cdev = cdev_alloc(); Patches currently in stable-queue which might be from yukuai3@xxxxxxxxxx are queue-6.4/md-fix-data-corruption-for-raid456-when-reshape-rest.patch queue-6.4/scsi-sg-don-t-grab-scsi-host-module-reference.patch queue-6.4/scsi-sg-fix-blktrace-debugfs-entries-leakage.patch queue-6.4/md-raid10-prevent-soft-lockup-while-flush-writes.patch queue-6.4/scsi-sg-fix-checking-return-value-of-blk_get_queue.patch