diff options
author | Brian King <brking@linux.vnet.ibm.com> | 2008-11-14 14:33:53 -0500 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2008-12-29 12:24:18 -0500 |
commit | 646d3857b95e8e310aae7a4594f43d7f3b100a1f (patch) | |
tree | 44423484257e5fb85fbddac81c116e45cb944664 /drivers/scsi/ibmvscsi/ibmvfc.h | |
parent | 5919ce29085f4ca080054fde5feef8f8b3405261 (diff) |
[SCSI] ibmvfc: Handle port login required response
The virtual fibre channel stack can return a failure response for a command
indicating the port login has been invalidated without sending the client
an async event. Add code to handle this response and initiate a PLOGI.
Signed-off-by: Brian King <brking@linux.vnet.ibm.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'drivers/scsi/ibmvscsi/ibmvfc.h')
-rw-r--r-- | drivers/scsi/ibmvscsi/ibmvfc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/scsi/ibmvscsi/ibmvfc.h b/drivers/scsi/ibmvscsi/ibmvfc.h index 526bca743c81..6b86e1f69f69 100644 --- a/drivers/scsi/ibmvscsi/ibmvfc.h +++ b/drivers/scsi/ibmvscsi/ibmvfc.h | |||
@@ -109,6 +109,7 @@ enum ibmvfc_vios_errors { | |||
109 | IBMVFC_TRANS_CANCELLED = 0x0006, | 109 | IBMVFC_TRANS_CANCELLED = 0x0006, |
110 | IBMVFC_TRANS_CANCELLED_IMPLICIT = 0x0007, | 110 | IBMVFC_TRANS_CANCELLED_IMPLICIT = 0x0007, |
111 | IBMVFC_INSUFFICIENT_RESOURCE = 0x0008, | 111 | IBMVFC_INSUFFICIENT_RESOURCE = 0x0008, |
112 | IBMVFC_PLOGI_REQUIRED = 0x0010, | ||
112 | IBMVFC_COMMAND_FAILED = 0x8000, | 113 | IBMVFC_COMMAND_FAILED = 0x8000, |
113 | }; | 114 | }; |
114 | 115 | ||