diff options
| author | Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org> | 2001-11-15 20:03:37 +0000 |
|---|---|---|
| committer | Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org> | 2001-11-15 20:03:37 +0000 |
| commit | af862a47cbe8d61db02185af60e82c73989ead3c (patch) | |
| tree | 0b9d42abc516aa7e135242d662f7fee065727562 | |
| parent | 9ae0b196140505ea0385203f5421d77b56ff7c0d (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 87746e138afb..b8348f99f0c8 100644 --- a/sys/cam/cam_xpt.c +++ b/sys/cam/cam_xpt.c @@ -441,6 +441,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. */ |
