diff options
| author | Kenneth D. Merry <ken@FreeBSD.org> | 2000-07-01 23:45:47 +0000 |
|---|---|---|
| committer | Kenneth D. Merry <ken@FreeBSD.org> | 2000-07-01 23:45:47 +0000 |
| commit | 86f6312a893eece949fc3be825696e859a51141b (patch) | |
| tree | 227b85898c3719b5e67968b4d0fe3fd8a152c7a0 | |
| parent | 9440208b9014d2db10b7019951a19b5771ac39d5 (diff) | |
Notes
| -rw-r--r-- | sys/cam/cam_xpt.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sys/cam/cam_xpt.c b/sys/cam/cam_xpt.c index 53ff2883a6ab..fa00cc203822 100644 --- a/sys/cam/cam_xpt.c +++ b/sys/cam/cam_xpt.c @@ -430,6 +430,18 @@ static struct xpt_quirk_entry xpt_quirk_table[] = }, { /* + * These Hitachi drives don't like multi-lun probing. + * The PR submitter has a DK319H, but says that the Linux + * kernel has a similar work-around for the DK312 and DK314, + * so all DK31* drives are quirked here. + * PR: misc/18793 + * Submitted by: Paul Haddad <paul@pth.com> + */ + { T_DIRECT, SIP_MEDIA_FIXED, "HITACHI", "DK31*", "*" }, + CAM_QUIRK_NOLUNS, /*mintags*/2, /*maxtags*/255 + }, + { + /* * This old revision of the TDC3600 is also SCSI-1, and * hangs upon serial number probing. */ |
