1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-28 16:43:09 +00:00

Move the ciss quirk to the right section, also update the comment

stating that the controllers do not support SYNC CACHE since ciss
only supports a small subset of the scsi spec.
This commit is contained in:
Paul Saab 2003-12-08 06:29:38 +00:00
parent 83eba35ee6
commit da0cc5d3ff
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=123285

View File

@ -231,6 +231,13 @@ static struct da_quirk_entry da_quirk_table[] =
{T_DIRECT, SIP_MEDIA_FIXED, quantum, "VIKING 2*", "*"},
/*quirks*/ DA_Q_NO_6_BYTE
},
{
/*
* The CISS RAID controllers do not support SYNC_CACHE
*/
{T_DIRECT, SIP_MEDIA_FIXED, "COMPAQ", "RAID*", "*"},
/*quirks*/ DA_Q_NO_SYNC_CACHE
},
#ifdef DA_OLD_QUIRKS
/* USB floppy devices supported by umass(4) */
{
@ -376,14 +383,6 @@ static struct da_quirk_entry da_quirk_table[] =
{T_DIRECT, SIP_MEDIA_REMOVABLE, "CREATIVE", "NOMAD_MUVO", "*"},
/*quirks*/ DA_Q_NO_SYNC_CACHE|DA_Q_NO_PREVENT
},
{
/*
* The CISS RAID driver drives dont like the cache to be
* sync'd (esp since write cache is turned off).
*/
{T_DIRECT, SIP_MEDIA_FIXED, "COMPAQ", "RAID*", "*"},
/*quirks*/ DA_Q_NO_SYNC_CACHE
},
};
static disk_strategy_t dastrategy;