aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ata
diff options
context:
space:
mode:
authorAlbert Lee <albertcc@tw.ibm.com>2007-04-01 23:34:15 -0400
committerJeff Garzik <jeff@garzik.org>2007-04-04 02:12:27 -0400
commit18d6e9d51891f91af4e7351cbab3cb180bb9f430 (patch)
tree5ba793fd334c4afbbcdfeb00353f46c9d3aaf6a2 /drivers/ata
parent56287768e31268969abd94b38b931a29d1ced1ce (diff)
libata: Limit max sector to 128 for TORiSAN DVD drives (take 3)
patch 3/4: The TORiSAN drive locks up when max sector == 256. Limit max sector to 128 for the TORiSAN DRD-N216 drives. (http://bugzilla.kernel.org/show_bug.cgi?id=6710) Signed-off-by: Albert Lee <albertcc@tw.ibm.com> Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/ata')
-rw-r--r--drivers/ata/libata-core.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c
index e07142b4bb5..84f6f857596 100644
--- a/drivers/ata/libata-core.c
+++ b/drivers/ata/libata-core.c
@@ -1784,6 +1784,9 @@ int ata_dev_configure(struct ata_device *dev)
1784 dev->max_sectors = ATA_MAX_SECTORS; 1784 dev->max_sectors = ATA_MAX_SECTORS;
1785 } 1785 }
1786 1786
1787 if (ata_device_blacklisted(dev) & ATA_HORKAGE_MAX_SEC_128)
1788 dev->max_sectors = min(ATA_MAX_SECTORS_128, dev->max_sectors);
1789
1787 if (ap->ops->dev_config) 1790 if (ap->ops->dev_config)
1788 ap->ops->dev_config(ap, dev); 1791 ap->ops->dev_config(ap, dev);
1789 1792
@@ -3352,6 +3355,9 @@ static const struct ata_blacklist_entry ata_device_blacklist [] = {
3352 { "_NEC DV5800A", NULL, ATA_HORKAGE_NODMA }, 3355 { "_NEC DV5800A", NULL, ATA_HORKAGE_NODMA },
3353 { "SAMSUNG CD-ROM SN-124","N001", ATA_HORKAGE_NODMA }, 3356 { "SAMSUNG CD-ROM SN-124","N001", ATA_HORKAGE_NODMA },
3354 3357
3358 /* Weird ATAPI devices */
3359 { "TORiSAN DVD-ROM DRD-N216", NULL, ATA_HORKAGE_MAX_SEC_128 },
3360
3355 /* Devices we expect to fail diagnostics */ 3361 /* Devices we expect to fail diagnostics */
3356 3362
3357 /* Devices where NCQ should be avoided */ 3363 /* Devices where NCQ should be avoided */