Commit b632ade282895562924d18b8eedd11a825f4b08c

Authored by Christof Schmitt
Committed by James Bottomley
1 parent 39eb7e9aca

[SCSI] zfcp: Remove unnecessary warning message

Remove a message that was emitted for a port that could not initially
be opened. This is a rare case when the port discovery hits an
initiator port and only confuses the user with an initator port logged
in the message. Remove the whole special case: The failed "open port"
request triggers required follow-up actions anyway.

Signed-off-by: Christof Schmitt <christof.schmitt@de.ibm.com>
Acked-by: Felix Beck <felix@linux.vnet.ibm.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>

Showing 2 changed files with 1 additions and 7 deletions Side-by-side Diff

drivers/s390/scsi/zfcp_dbf.c
... ... @@ -522,7 +522,7 @@
522 522 [29] = "link down",
523 523 [30] = "link up status read",
524 524 [31] = "open port failed",
525   - [32] = "open port failed",
  525 + [32] = "",
526 526 [33] = "close port",
527 527 [34] = "open unit failed",
528 528 [35] = "exclusive open unit failed",
drivers/s390/scsi/zfcp_fsf.c
... ... @@ -1423,13 +1423,7 @@
1423 1423 switch (header->fsf_status_qual.word[0]) {
1424 1424 case FSF_SQ_INVOKE_LINK_TEST_PROCEDURE:
1425 1425 case FSF_SQ_ULP_DEPENDENT_ERP_REQUIRED:
1426   - req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1427   - break;
1428 1426 case FSF_SQ_NO_RETRY_POSSIBLE:
1429   - dev_warn(&req->adapter->ccw_device->dev,
1430   - "Remote port 0x%016Lx could not be opened\n",
1431   - (unsigned long long)port->wwpn);
1432   - zfcp_erp_port_failed(port, 32, req);
1433 1427 req->status |= ZFCP_STATUS_FSFREQ_ERROR;
1434 1428 break;
1435 1429 }