From c27186df492157654d0d7bfa05c4d02015754da1 Mon Sep 17 00:00:00 2001 From: ken Date: Tue, 13 Oct 1998 23:34:54 +0000 Subject: [PATCH] Disable cache syncs for a broken NEC drive. Reviewed by: gibbs Submitted by: Blaz Zupan --- sys/cam/scsi/scsi_da.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/sys/cam/scsi/scsi_da.c b/sys/cam/scsi/scsi_da.c index 200b0886707c..30f88ddc5e94 100644 --- a/sys/cam/scsi/scsi_da.c +++ b/sys/cam/scsi/scsi_da.c @@ -25,7 +25,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: scsi_da.c,v 1.9 1998/10/12 17:16:47 ken Exp $ + * $Id: scsi_da.c,v 1.10 1998/10/13 08:24:29 dg Exp $ */ #include "opt_hw_wdog.h" @@ -138,6 +138,14 @@ static struct da_quirk_entry da_quirk_table[] = */ {T_DIRECT, SIP_MEDIA_FIXED, "MICROP", "2217*", "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE + }, + { + /* + * Doesn't like the synchronize cache command. + * Reported by: Blaz Zupan + */ + {T_DIRECT, SIP_MEDIA_FIXED, "NEC", "D3847*", "*"}, + /*quirks*/ DA_Q_NO_SYNC_CACHE } };