diff options
author | James Smart <James.Smart@Emulex.Com> | 2009-01-05 12:14:18 -0500 |
---|---|---|
committer | James Bottomley <James.Bottomley@HansenPartnership.com> | 2009-01-06 09:43:33 -0600 |
commit | 4be98c0ca304c8a47998b29a7993664f71791250 (patch) | |
tree | f24eb119e2b3332c5d27473055e7d83493b6a225 /include/scsi | |
parent | 58607b30fc0f2230a189500112c7a7cca02804cf (diff) | |
download | linux-3.10-4be98c0ca304c8a47998b29a7993664f71791250.tar.gz linux-3.10-4be98c0ca304c8a47998b29a7993664f71791250.tar.bz2 linux-3.10-4be98c0ca304c8a47998b29a7993664f71791250.zip |
[SCSI] fc transport: restore missing dev_loss_tmo callback to LLDD
When we reworked the transport for the rport lifetimes, in cases where the
rport was reused as a container for tgt id bindings, we inadvertantly
removed the callback to the driver indicating that dev_loss_tmo had fired.
This patch restores that functionality.
Signed-off-by: James Smart <james.smart@emulex.com>
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Diffstat (limited to 'include/scsi')
-rw-r--r-- | include/scsi/scsi_transport_fc.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/scsi/scsi_transport_fc.h b/include/scsi/scsi_transport_fc.h index 6e04e6fe79c..c9184f756ca 100644 --- a/include/scsi/scsi_transport_fc.h +++ b/include/scsi/scsi_transport_fc.h @@ -358,6 +358,7 @@ struct fc_rport { /* aka fc_starget_attrs */ #define FC_RPORT_DEVLOSS_PENDING 0x01 #define FC_RPORT_SCAN_PENDING 0x02 #define FC_RPORT_FAST_FAIL_TIMEDOUT 0x04 +#define FC_RPORT_DEVLOSS_CALLBK_DONE 0x08 #define dev_to_rport(d) \ container_of(d, struct fc_rport, dev) |