aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJoe Eykholt <jeykholt@cisco.com>2010-07-20 18:20:51 -0400
committerJames Bottomley <James.Bottomley@suse.de>2010-07-28 10:05:58 -0400
commit079ecd8cfe95dfd28b74f3a00d66fdbcdfc8c611 (patch)
tree474d1f3851f6e33f04843f91f6ed1d7a3ca41765 /include
parent1dd454d9e5205f9a61d51fb97159afeffa0a506c (diff)
[SCSI] libfc: eliminate rport LOGO state
The LOGO state hasn't been used in a while, except in a brief transition to DELETE state while holding the rport mutex. All port LOGO responses have been ignored as well as any timeout if we don't get a response. So this patch just removes LOGO state and simplifies the response handler. Signed-off-by: Joe Eykholt <jeykholt@cisco.com> Signed-off-by: Robert Love <robert.w.love@intel.com> Signed-off-by: James Bottomley <James.Bottomley@suse.de>
Diffstat (limited to 'include')
-rw-r--r--include/scsi/libfc.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/scsi/libfc.h b/include/scsi/libfc.h
index 8d297f9a0a47..e6f07fba432c 100644
--- a/include/scsi/libfc.h
+++ b/include/scsi/libfc.h
@@ -103,7 +103,6 @@ enum fc_disc_event {
103 * @RPORT_ST_PRLI: Waiting for PRLI completion 103 * @RPORT_ST_PRLI: Waiting for PRLI completion
104 * @RPORT_ST_RTV: Waiting for RTV completion 104 * @RPORT_ST_RTV: Waiting for RTV completion
105 * @RPORT_ST_READY: Ready for use 105 * @RPORT_ST_READY: Ready for use
106 * @RPORT_ST_LOGO: Remote port logout (LOGO) sent
107 * @RPORT_ST_ADISC: Discover Address sent 106 * @RPORT_ST_ADISC: Discover Address sent
108 * @RPORT_ST_DELETE: Remote port being deleted 107 * @RPORT_ST_DELETE: Remote port being deleted
109*/ 108*/
@@ -115,7 +114,6 @@ enum fc_rport_state {
115 RPORT_ST_PRLI, 114 RPORT_ST_PRLI,
116 RPORT_ST_RTV, 115 RPORT_ST_RTV,
117 RPORT_ST_READY, 116 RPORT_ST_READY,
118 RPORT_ST_LOGO,
119 RPORT_ST_ADISC, 117 RPORT_ST_ADISC,
120 RPORT_ST_DELETE, 118 RPORT_ST_DELETE,
121}; 119};