diff options
author | Tejun Heo <htejun@gmail.com> | 2007-08-29 11:58:33 +0900 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-08-31 04:21:13 -0400 |
commit | 16c55b038033d8f6f7601996dfae44399666d9ab (patch) | |
tree | 22fb45fb599455cadc29b0f8ac18dd4695eae8b5 /include/linux | |
parent | 7f9992a23190418592f0810900e4f91546ec41da (diff) |
libata: implement BROKEN_HPA horkage and apply it to affected drives
Some drives choke on READ_NATIVE_MAX_ADDRESS[_EXT]. Implement
ATA_HORKAGE_BROKEN_HPA and apply it to affected drives.
Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/libata.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/libata.h b/include/linux/libata.h index 41978a55731..a67bb9075e9 100644 --- a/include/linux/libata.h +++ b/include/linux/libata.h @@ -303,6 +303,7 @@ enum { ATA_HORKAGE_NODMA = (1 << 1), /* DMA problems */ ATA_HORKAGE_NONCQ = (1 << 2), /* Don't use NCQ */ ATA_HORKAGE_MAX_SEC_128 = (1 << 3), /* Limit max sects to 128 */ + ATA_HORKAGE_BROKEN_HPA = (1 << 4), /* Broken HPA */ }; enum hsm_task_states { |