diff options
author | Tejun Heo <htejun@gmail.com> | 2007-11-27 05:28:58 -0500 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2008-01-23 05:24:11 -0500 |
commit | 00115e0f5bc3bfdf3f3855ad89c8895f10458f92 (patch) | |
tree | 5f174c1d68e1ec0770fefdb40b813f321a838095 /include/linux/libata.h | |
parent | 663f99b86ac7d4c0eed8c239638da0ea8849288b (diff) |
libata: implement ATA_DFLAG_DUBIOUS_XFER
ATA_DFLAG_DUBIOUS_XFER is set whenever data transfer speed or method
changes and gets cleared when data transfer command succeeds in the
newly configured transfer mode.
This will be used to improve speed down logic.
Signed-off-by: Tejun Heo <htejun@gmail.com<
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'include/linux/libata.h')
-rw-r--r-- | include/linux/libata.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/libata.h b/include/linux/libata.h index 74f1255e2524..131fb6625e14 100644 --- a/include/linux/libata.h +++ b/include/linux/libata.h | |||
@@ -143,6 +143,7 @@ enum { | |||
143 | ATA_DFLAG_NCQ_OFF = (1 << 13), /* device limited to non-NCQ mode */ | 143 | ATA_DFLAG_NCQ_OFF = (1 << 13), /* device limited to non-NCQ mode */ |
144 | ATA_DFLAG_SPUNDOWN = (1 << 14), /* XXX: for spindown_compat */ | 144 | ATA_DFLAG_SPUNDOWN = (1 << 14), /* XXX: for spindown_compat */ |
145 | ATA_DFLAG_SLEEPING = (1 << 15), /* device is sleeping */ | 145 | ATA_DFLAG_SLEEPING = (1 << 15), /* device is sleeping */ |
146 | ATA_DFLAG_DUBIOUS_XFER = (1 << 16), /* data transfer not verified */ | ||
146 | ATA_DFLAG_INIT_MASK = (1 << 24) - 1, | 147 | ATA_DFLAG_INIT_MASK = (1 << 24) - 1, |
147 | 148 | ||
148 | ATA_DFLAG_DETACH = (1 << 24), | 149 | ATA_DFLAG_DETACH = (1 << 24), |
@@ -560,6 +561,8 @@ struct ata_eh_context { | |||
560 | int tries[ATA_MAX_DEVICES]; | 561 | int tries[ATA_MAX_DEVICES]; |
561 | unsigned int classes[ATA_MAX_DEVICES]; | 562 | unsigned int classes[ATA_MAX_DEVICES]; |
562 | unsigned int did_probe_mask; | 563 | unsigned int did_probe_mask; |
564 | unsigned int saved_ncq_enabled; | ||
565 | u8 saved_xfer_mode[ATA_MAX_DEVICES]; | ||
563 | }; | 566 | }; |
564 | 567 | ||
565 | struct ata_acpi_drive | 568 | struct ata_acpi_drive |