From 8597eafed0d777462514492525720716c22da4e2 Mon Sep 17 00:00:00 2001 From: "Kenneth D. Merry" Date: Wed, 14 Oct 1998 21:17:39 +0000 Subject: [PATCH] Disable tagged queueing for the Seagate Elite 9GB drives. They tend to get hung up when you send tags to them too quickly. (CAM is able to recover from the problem, but this just avoids it altogether.) Reviewed by: gibbs Reported by: Bret Ford and: Martin Renters --- sys/cam/cam_xpt.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/sys/cam/cam_xpt.c b/sys/cam/cam_xpt.c index e941b62070e5..723569ec9e17 100644 --- a/sys/cam/cam_xpt.c +++ b/sys/cam/cam_xpt.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cam_xpt.c,v 1.19 1998/10/12 21:54:13 ken Exp $ + * $Id: cam_xpt.c,v 1.20 1998/10/13 21:29:04 ken Exp $ */ #include #include @@ -264,6 +264,15 @@ static struct xpt_quirk_entry xpt_quirk_table[] = { T_DIRECT, SIP_MEDIA_FIXED, "MICROP", "3391*", "x43h" }, /*quirks*/0, /*mintags*/0, /*maxtags*/0 }, + { + /* + * Broken tagged queuing drive + * Reported by: Bret Ford + * and: Martin Renters + */ + { T_DIRECT, SIP_MEDIA_FIXED, "SEAGATE", "ST410800*", "*" }, + /*quirks*/0, /*mintags*/0, /*maxtags*/0 + }, { /* Broken tagged queuing drive */ { T_DIRECT, SIP_MEDIA_REMOVABLE, "iomega", "jaz*", "*" },