mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-22 12:33:59 +08:00
[SCSI] lpfc 8.1.2: Fixed a double insertion of mail box object to the SLI mailbox list.
Fixed a double insertion of mail box object to the SLI mailbox list. Signed-off-by: Jamie Wellnitz <Jamie.Wellnitz@emulex.com> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
This commit is contained in:
parent
901a920f07
commit
406d6041ac
@ -2867,11 +2867,10 @@ lpfc_sli_issue_mbox_wait(struct lpfc_hba * phba, LPFC_MBOXQ_t * pmboxq,
|
|||||||
pmboxq->context1 = NULL;
|
pmboxq->context1 = NULL;
|
||||||
/* if schedule_timeout returns 0, we timed out and were not
|
/* if schedule_timeout returns 0, we timed out and were not
|
||||||
woken up */
|
woken up */
|
||||||
if (timeleft == 0) {
|
if ((timeleft == 0) || signal_pending(current))
|
||||||
retval = MBX_TIMEOUT;
|
retval = MBX_TIMEOUT;
|
||||||
} else {
|
else
|
||||||
retval = MBX_SUCCESS;
|
retval = MBX_SUCCESS;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user