diff options
author | Tejun Heo <tj@kernel.org> | 2014-08-19 01:40:09 +0400 |
---|---|---|
committer | Jiri Slaby <jslaby@suse.cz> | 2014-09-26 13:23:42 +0400 |
commit | 61ee2622648853cd3b2d36f9972773ec37b3c71a (patch) | |
tree | f1ef3cc0495693343ad08c47df11a9c5ecb1a873 | |
parent | 619f5c40406327a31e3a8b330bf82d0dcf1060df (diff) | |
download | linux-61ee2622648853cd3b2d36f9972773ec37b3c71a.tar.xz |
libata: widen Crucial M550 blacklist matching
commit 2a13772a144d2956a7fedd18685921d0a9b8b783 upstream.
Crucial M550 may cause data corruption on queued trims and is
blacklisted. The pattern used for it fails to match 1TB one as the
capacity section will be four chars instead of three. Widen the
pattern.
Signed-off-by: Tejun Heo <tj@kernel.org>
Reported-by: Charles Reiss <woggling@gmail.com>
Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=81071
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
-rw-r--r-- | drivers/ata/libata-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c index 0d9a2f674819..5d0bc51bafea 100644 --- a/drivers/ata/libata-core.c +++ b/drivers/ata/libata-core.c @@ -4227,7 +4227,7 @@ static const struct ata_blacklist_entry ata_device_blacklist [] = { { "Micron_M500*", NULL, ATA_HORKAGE_NO_NCQ_TRIM, }, { "Crucial_CT???M500SSD*", NULL, ATA_HORKAGE_NO_NCQ_TRIM, }, { "Micron_M550*", NULL, ATA_HORKAGE_NO_NCQ_TRIM, }, - { "Crucial_CT???M550SSD*", NULL, ATA_HORKAGE_NO_NCQ_TRIM, }, + { "Crucial_CT*M550SSD*", NULL, ATA_HORKAGE_NO_NCQ_TRIM, }, /* * Some WD SATA-I drives spin up and down erratically when the link |