diff options
author | James Bottomley <James.Bottomley@steeleye.com> | 2006-09-20 12:00:18 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.il.steeleye.com> | 2006-09-23 20:53:53 -0500 |
commit | dfdc58ba354adb80d67c99f7be84f95a8e02e466 (patch) | |
tree | 9cbbe31f7d3d5be0029fd7c1a8eeaaa02e53853a /include | |
parent | a07f353701acae77e023f6270e8af353b37af7c4 (diff) | |
download | linux-dfdc58ba354adb80d67c99f7be84f95a8e02e466.tar.gz linux-dfdc58ba354adb80d67c99f7be84f95a8e02e466.tar.bz2 linux-dfdc58ba354adb80d67c99f7be84f95a8e02e466.zip |
[SCSI] SPI transport class: misc DV fixes
Key more of the domain validation settings off the inquiry data from
the disk (in particular, don't try IU or DT unless the disk claims to
support them.
Also add a new dv_in_progress flag to prevent recursive DV.
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/scsi/scsi_transport_spi.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/scsi/scsi_transport_spi.h b/include/scsi/scsi_transport_spi.h index 302680c0c0de..da180f738477 100644 --- a/include/scsi/scsi_transport_spi.h +++ b/include/scsi/scsi_transport_spi.h @@ -53,7 +53,8 @@ struct spi_transport_attrs { unsigned int support_ius; /* support Information Units */ unsigned int support_qas; /* supports quick arbitration and selection */ /* Private Fields */ - unsigned int dv_pending:1; /* Internal flag */ + unsigned int dv_pending:1; /* Internal flag: DV Requested */ + unsigned int dv_in_progress:1; /* Internal: DV started */ struct mutex dv_mutex; /* semaphore to serialise dv */ }; |