scsi: qla2xxx: Fix crash on session cleanup with unload
On unload, session cleanup prematurely gave the signal for driver unload
path to advance.
Link: https://lore.kernel.org/r/20200929102152.32278-6-njavali@marvell.com
Fixes: 726b854870
("qla2xxx: Add framework for async fabric discovery")
Cc: stable@vger.kernel.org
Reviewed-by: Himanshu Madhani <himanshu.madhani@oracle.com>
Signed-off-by: Quinn Tran <qutran@marvell.com>
Signed-off-by: Nilesh Javali <njavali@marvell.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
3e6efab865
commit
50457dab67
|
@ -1231,14 +1231,15 @@ void qlt_schedule_sess_for_deletion(struct fc_port *sess)
|
|||
case DSC_DELETE_PEND:
|
||||
return;
|
||||
case DSC_DELETED:
|
||||
if (tgt && tgt->tgt_stop && (tgt->sess_count == 0))
|
||||
wake_up_all(&tgt->waitQ);
|
||||
if (sess->vha->fcport_count == 0)
|
||||
wake_up_all(&sess->vha->fcport_waitQ);
|
||||
|
||||
if (!sess->plogi_link[QLT_PLOGI_LINK_SAME_WWN] &&
|
||||
!sess->plogi_link[QLT_PLOGI_LINK_CONFLICT])
|
||||
!sess->plogi_link[QLT_PLOGI_LINK_CONFLICT]) {
|
||||
if (tgt && tgt->tgt_stop && tgt->sess_count == 0)
|
||||
wake_up_all(&tgt->waitQ);
|
||||
|
||||
if (sess->vha->fcport_count == 0)
|
||||
wake_up_all(&sess->vha->fcport_waitQ);
|
||||
return;
|
||||
}
|
||||
break;
|
||||
case DSC_UPD_FCPORT:
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue