mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 01:30:30 -04:00
scsi_da: add 4K quirks for Samsung SSD 860 and 870
Although the actual flash page size is either 8K or 16K for those devices (according to different sources of various reliability), they seem to be optimized for the "industry-standard" emulated 4K block size. To do: consolidate very similar Samsung SSD entries for 830 - 870 models. MFC after: 2 weeks
This commit is contained in:
parent
c01af41c3c
commit
b7dce5b8e9
1 changed files with 16 additions and 0 deletions
|
|
@ -1395,6 +1395,22 @@ static struct da_quirk_entry da_quirk_table[] =
|
|||
{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "Samsung SSD 850*", "*" },
|
||||
/*quirks*/DA_Q_4K
|
||||
},
|
||||
{
|
||||
/*
|
||||
* Samsung 860 SSDs
|
||||
* 4k optimised & trim only works in 4k requests + 4k aligned
|
||||
*/
|
||||
{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "Samsung SSD 860*", "*" },
|
||||
/*quirks*/DA_Q_4K
|
||||
},
|
||||
{
|
||||
/*
|
||||
* Samsung 870 SSDs
|
||||
* 4k optimised & trim only works in 4k requests + 4k aligned
|
||||
*/
|
||||
{ T_DIRECT, SIP_MEDIA_FIXED, "ATA", "Samsung SSD 870*", "*" },
|
||||
/*quirks*/DA_Q_4K
|
||||
},
|
||||
{
|
||||
/*
|
||||
* Samsung 843T Series SSDs (MZ7WD*)
|
||||
|
|
|
|||
Loading…
Reference in a new issue