mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-18 09:44:18 +08:00
[SCSI] qla2xxx: Use msleep() as delay during ISP polling.
Mailbox commands are polled for completion during ISP initialization. During potentially 'long' mailbox commands (i.e. fabric login), we really don't want a busy-wait delay to potentially trigger a (benign) soft-lockup BUG(). Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com> Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
This commit is contained in:
parent
e038a1be22
commit
03ab2eabed
@ -196,7 +196,7 @@ qla2x00_mailbox_command(scsi_qla_host_t *ha, mbx_cmd_t *mcp)
|
||||
/* Check for pending interrupts. */
|
||||
qla2x00_poll(ha);
|
||||
|
||||
udelay(10); /* v4.27 */
|
||||
msleep(10);
|
||||
} /* while */
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user