From owner-freebsd-scsi@FreeBSD.ORG Mon Jun 23 12:55:31 2003 Return-Path: Delivered-To: freebsd-scsi@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7DDB437B401 for ; Mon, 23 Jun 2003 12:55:31 -0700 (PDT) Received: from anuket.mj.niksun.com (gwnew.niksun.com [65.115.46.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8FADD43FF2 for ; Mon, 23 Jun 2003 12:55:30 -0700 (PDT) (envelope-from jkim@niksun.com) Received: from daemon.mj.niksun.com (daemon.mj.niksun.com [10.70.0.244]) h5NJsOND023857; Mon, 23 Jun 2003 15:54:25 -0400 (EDT) (envelope-from jkim@niksun.com) X-RAV-AntiVirus: This e-mail has been scanned for viruses. From: Jung-uk Kim Organization: Niksun, Inc. To: "roger" , Date: Mon, 23 Jun 2003 15:54:24 -0400 User-Agent: KMail/1.5.1 References: <001301c35147$99f9aaf0$5401a8c0@roger> In-Reply-To: <001301c35147$99f9aaf0$5401a8c0@roger> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200306231554.24532.jkim@niksun.com> Subject: Re: Output - Intel SE7501WV2 SCSI ISSUES X-BeenThere: freebsd-scsi@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: SCSI subsystem List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Jun 2003 19:55:31 -0000 On Monday 23 June 2003 02:25 pm, roger wrote: > I have a new intel server with the SE7501WV2 Motherboard installed. > > AIC 7902 Controller. > > I have installed 6 Seagate SCSI Drive (U320) and cannot get Freebsd > 4.8 to install > With more that 4 drives? I have also tried 5.0 and 5.1 where arfter > the fourth drive is installed the systems hangs. On boot where is > says waiting 15 sec for SCSI devices to settle - this is where it > hangs?? The following patch fixed my problem. In fact, I have the same hardware configuration. You may see other problems, though. I am bugging Justin Gibbs for some time with the bug. Jung-uk Kim Index: aic79xx.c =================================================================== RCS file: /usr/cvs/src/sys/dev/aic7xxx/aic79xx.c,v retrieving revision 1.20 diff -u -r1.20 aic79xx.c --- aic79xx.c 6 Jun 2003 23:53:39 -0000 1.20 +++ aic79xx.c 12 Jun 2003 23:12:35 -0000 @@ -378,7 +378,7 @@ * Wait for any inprogress DMA to complete and clear DMA state * if this if for an SCB in the qinfifo. */ - while ((ccscbctl = ahd_inb(ahd, CCSCBCTL) & (CCARREN|CCSCBEN)) != 0) { + while (((ccscbctl = ahd_inb(ahd, CCSCBCTL)) & (CCARREN|CCSCBEN)) != 0) { if ((ccscbctl & (CCSCBDIR|CCARREN)) == (CCSCBDIR|CCARREN)) { if ((ccscbctl & ARRDONE) != 0) > Can you help? > > Thanks, > > Roger.