|
@@ -1784,6 +1784,9 @@ int ata_dev_configure(struct ata_device *dev)
|
|
|
dev->max_sectors = ATA_MAX_SECTORS;
|
|
|
}
|
|
|
|
|
|
+ if (ata_device_blacklisted(dev) & ATA_HORKAGE_MAX_SEC_128)
|
|
|
+ dev->max_sectors = min(ATA_MAX_SECTORS_128, dev->max_sectors);
|
|
|
+
|
|
|
if (ap->ops->dev_config)
|
|
|
ap->ops->dev_config(ap, dev);
|
|
|
|
|
@@ -3352,6 +3355,9 @@ static const struct ata_blacklist_entry ata_device_blacklist [] = {
|
|
|
{ "_NEC DV5800A", NULL, ATA_HORKAGE_NODMA },
|
|
|
{ "SAMSUNG CD-ROM SN-124","N001", ATA_HORKAGE_NODMA },
|
|
|
|
|
|
+ /* Weird ATAPI devices */
|
|
|
+ { "TORiSAN DVD-ROM DRD-N216", NULL, ATA_HORKAGE_MAX_SEC_128 },
|
|
|
+
|
|
|
/* Devices we expect to fail diagnostics */
|
|
|
|
|
|
/* Devices where NCQ should be avoided */
|