scsi: qedf: Print fcport information on wait for upload timeout
Log fcport for which upload failed. Signed-off-by: Saurav Kashyap <skashyap@marvell.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
19c2b6d84b
commit
7fa4142d8b
|
@ -786,11 +786,13 @@ static int qedf_eh_device_reset(struct scsi_cmnd *sc_cmd)
|
|||
bool qedf_wait_for_upload(struct qedf_ctx *qedf)
|
||||
{
|
||||
struct qedf_rport *fcport = NULL;
|
||||
int wait_cnt = 120;
|
||||
|
||||
while (1) {
|
||||
while (wait_cnt--) {
|
||||
if (atomic_read(&qedf->num_offloads))
|
||||
QEDF_INFO(&(qedf->dbg_ctx), QEDF_LOG_DISC,
|
||||
"Waiting for all uploads to complete.\n");
|
||||
QEDF_INFO(&qedf->dbg_ctx, QEDF_LOG_DISC,
|
||||
"Waiting for all uploads to complete num_offloads = 0x%x.\n",
|
||||
atomic_read(&qedf->num_offloads));
|
||||
else
|
||||
return true;
|
||||
msleep(500);
|
||||
|
|
Loading…
Reference in New Issue