From owner-freebsd-scsi Tue Dec 15 13:32:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA28725 for freebsd-scsi-outgoing; Tue, 15 Dec 1998 13:32:27 -0800 (PST) (envelope-from owner-freebsd-scsi@FreeBSD.ORG) Received: from narnia.plutotech.com (narnia.plutotech.com [206.168.67.130]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA28711 for ; Tue, 15 Dec 1998 13:32:23 -0800 (PST) (envelope-from gibbs@narnia.plutotech.com) Received: (from gibbs@localhost) by narnia.plutotech.com (8.9.1/8.7.3) id OAA59717; Tue, 15 Dec 1998 14:17:40 -0700 (MST) Date: Tue, 15 Dec 1998 14:17:40 -0700 (MST) From: "Justin T. Gibbs" Message-Id: <199812152117.OAA59717@narnia.plutotech.com> To: Richard Smith cc: scsi@FreeBSD.ORG Subject: Re: Update: ncr0: timeout problem X-Newsgroups: pluto.freebsd.scsi In-Reply-To: <36753F8E.D2A105FE@jezebel.demon.co.uk> User-Agent: tin/pre-1.4-980818 ("Laura") (UNIX) (FreeBSD/3.0-CURRENT (i386)) Sender: owner-freebsd-scsi@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Over a month ago, I posted a timeout problem I was having with my > symbios controller and fujitsu drive, on 2.2.7R > > I have now upgraded to 3.0R and the problem although different, still > remains. I was advised at the time that the problem would be easier to > diagnose under 3.0, so here goes... My guess would be that the Fujitsu doesn't like getting lots of tags. CAM will actually send more transactions to the drive in parallel than the old SCSI code which could be making the problem worse than before. Unfortunately, my knowledge of the underlying NCR hardware is pretty limitted, so I can't say for sure that this is the cause of the problem. Try reducing the number of transactions that CAM sends to the drive and see if this helps. You can do this by adding a quirk entry for your drive in sys/cam/cam_xpt.c. Something like this should get you started: { /* Broken tagged queuing drive?? */ { T_DIRECT, SIP_MEDIA_FIXED, "FUJITSU", "M2949E-512", "0134" }, /*quirks*/0, /*mintags*/2, /*maxtags*/2 }, If this works, increment the maxtags value until it stops working. -- Justin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-scsi" in the body of the message