[SCSI] libsas: convert dev->gone to flags

In preparation for adding tracking of another device state "destroy".

Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
This commit is contained in:
Dan Williams
2012-01-07 08:52:39 +00:00
committed by James Bottomley
parent 312d3e5611
commit e139942d77
5 changed files with 11 additions and 8 deletions

View File

@@ -173,7 +173,10 @@ struct sata_device {
struct ata_taskfile tf;
};
/* ---------- Domain device ---------- */
enum {
SAS_DEV_GONE,
};
struct domain_device {
enum sas_dev_type dev_type;
@@ -205,7 +208,7 @@ struct domain_device {
};
void *lldd_dev;
int gone;
unsigned long state;
struct kref kref;
};