aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/ata.h
diff options
context:
space:
mode:
authorJeff Garzik <jeff@garzik.org>2006-06-11 09:59:27 -0400
committerJeff Garzik <jeff@garzik.org>2006-08-10 06:49:45 -0400
commit8b881b0410de0f72a43e814393abf3a4cb29ebb4 (patch)
tree4ee2da79e3e069226bb7824019f81e25fa5c3622 /include/linux/ata.h
parent2b8ae728a8bada0cca10f30d3e7c52d384e8d5ad (diff)
downloadlinux-8b881b0410de0f72a43e814393abf3a4cb29ebb4.tar.gz
[ATA] Increase lba48 max-sectors from 200 to 256.
Also, moved ATA_MAX_SECTORS and ATA_MAX_SECTORS_LBA48 from linux/libata.h to linux/ata.h, now that they truly reflect the standard (well... mostly; note TODO comment). This changes the performance profile (and potential bug profile) for a bunch of drivers, so be wary.
Diffstat (limited to 'include/linux/ata.h')
-rw-r--r--include/linux/ata.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/ata.h b/include/linux/ata.h
index 3671af869696d..8d708a3d505bd 100644
--- a/include/linux/ata.h
+++ b/include/linux/ata.h
@@ -40,6 +40,8 @@ enum {
ATA_MAX_DEVICES = 2, /* per bus/port */
ATA_MAX_PRD = 256, /* we could make these 256/256 */
ATA_SECT_SIZE = 512,
+ ATA_MAX_SECTORS = 256,
+ ATA_MAX_SECTORS_LBA48 = 65535,/* TODO: 65536? */
ATA_ID_WORDS = 256,
ATA_ID_SERNO_OFS = 10,