This is a note to let you know that I've just added the patch titled scsi: qla2xxx: Remove unintended flag clearing to the 6.2-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-qla2xxx-remove-unintended-flag-clearing.patch and it can be found in the queue-6.2 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 7e8a936a2d0f98dd6e5d05d4838affabe606cabc Mon Sep 17 00:00:00 2001 From: Quinn Tran <qutran@xxxxxxxxxxx> Date: Mon, 19 Dec 2022 03:07:44 -0800 Subject: scsi: qla2xxx: Remove unintended flag clearing From: Quinn Tran <qutran@xxxxxxxxxxx> commit 7e8a936a2d0f98dd6e5d05d4838affabe606cabc upstream. FCF_ASYNC_SENT flag is used in session management. This flag is cleared in task management path by accident. Remove unintended flag clearing. Fixes: 388a49959ee4 ("scsi: qla2xxx: Fix panic from use after free in qla2x00_async_tm_cmd") Cc: stable@xxxxxxxxxxxxxxx Signed-off-by: Quinn Tran <qutran@xxxxxxxxxxx> Signed-off-by: Nilesh Javali <njavali@xxxxxxxxxxx> Reviewed-by: Himanshu Madhani <himanshu.madhani@xxxxxxxxxx> Signed-off-by: Martin K. Petersen <martin.petersen@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/scsi/qla2xxx/qla_init.c | 1 - 1 file changed, 1 deletion(-) --- a/drivers/scsi/qla2xxx/qla_init.c +++ b/drivers/scsi/qla2xxx/qla_init.c @@ -2076,7 +2076,6 @@ qla2x00_async_tm_cmd(fc_port_t *fcport, done_free_sp: /* ref: INIT */ kref_put(&sp->cmd_kref, qla2x00_sp_release); - fcport->flags &= ~FCF_ASYNC_SENT; done: return rval; } Patches currently in stable-queue which might be from qutran@xxxxxxxxxxx are queue-6.2/scsi-qla2xxx-fix-exchange-oversubscription-for-manag.patch queue-6.2/scsi-qla2xxx-fix-link-failure-in-npiv-environment.patch queue-6.2/scsi-qla2xxx-fix-erroneous-link-down.patch queue-6.2/scsi-qla2xxx-edif-fix-clang-warning.patch queue-6.2/scsi-qla2xxx-remove-unintended-flag-clearing.patch queue-6.2/scsi-qla2xxx-fix-exchange-oversubscription.patch