diff options
author | Tejun Heo <tj@kernel.org> | 2020-09-02 12:32:45 -0400 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2020-09-02 11:31:23 -0600 |
commit | 3b5455636fe26ea21b4189d135a424a6da016418 (patch) | |
tree | 8658ea2acbc2338358ea2f86d1ad1d05c5c83c6d /include | |
parent | e276c9bd14c75278d1354efbaea278500147d6b3 (diff) | |
download | linux-stable-3b5455636fe26ea21b4189d135a424a6da016418.tar.gz linux-stable-3b5455636fe26ea21b4189d135a424a6da016418.tar.bz2 linux-stable-3b5455636fe26ea21b4189d135a424a6da016418.zip |
libata: implement ATA_HORKAGE_MAX_TRIM_128M and apply to Sandisks
All three generations of Sandisk SSDs lock up hard intermittently.
Experiments showed that disabling NCQ lowered the failure rate significantly
and the kernel has been disabling NCQ for some models of SD7's and 8's,
which is obviously undesirable.
Karthik worked with Sandisk to root cause the hard lockups to trim commands
larger than 128M. This patch implements ATA_HORKAGE_MAX_TRIM_128M which
limits max trim size to 128M and applies it to all three generations of
Sandisk SSDs.
Signed-off-by: Tejun Heo <tj@kernel.org>
Cc: Karthik Shivaram <karthikgs@fb.com>
Cc: stable@vger.kernel.org
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'include')
-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 77ccf040a128..5f550eb27f81 100644 --- a/include/linux/libata.h +++ b/include/linux/libata.h @@ -421,6 +421,7 @@ enum { ATA_HORKAGE_NO_DMA_LOG = (1 << 23), /* don't use DMA for log read */ ATA_HORKAGE_NOTRIM = (1 << 24), /* don't use TRIM */ ATA_HORKAGE_MAX_SEC_1024 = (1 << 25), /* Limit max sects to 1024 */ + ATA_HORKAGE_MAX_TRIM_128M = (1 << 26), /* Limit max trim size to 128M */ /* DMA mask for user DMA control: User visible values; DO NOT renumber */ |