Date: Sat, 4 Aug 2001 21:07:11 -0700 (PDT) From: Matt Dillon <dillon@earth.backplane.com> To: "Justin T. Gibbs" <gibbs@scsiguy.com> Cc: Helge Oldach <helge.oldach@atosorigin.com>, freebsd-stable@FreeBSD.ORG Subject: Re: Dell Poweredge 2450 vs. recent sys/dev/aic7xxx MFCs Message-ID: <200108050407.f7547B078180@earth.backplane.com> References: <200108050240.f752eQI08908@aslan.scsiguy.com>
next in thread | previous in thread | raw e-mail | index | archive | help
: :> I just built the world and a new kernel on one of my DELL2550's and :> the same problem happens. This is a stock 2550, there's no chance :> of the SCSI backplane being broken and it worked fine with an older :> kernel. :> :>I've included two boot verbose dumps. The first is with the latest kernel. :>The second is with the previous (working) kernel. :> :> -Matt : :Can you see if the attached patch corrects both your problems? : :Thanks, :Justin The patch appears to have fixed the problem! Thanks! I will also run some heavy disk I/O tests overnight. -Matt :Index: aic7xxx.seq :=================================================================== :RCS file: /usr/cvs/src/sys/dev/aic7xxx/aic7xxx.seq,v :retrieving revision 1.94.2.14 :diff -u -r1.94.2.14 aic7xxx.seq :--- aic7xxx.seq 2001/07/28 18:46:40 1.94.2.14 :+++ aic7xxx.seq 2001/08/05 02:39:06 :@@ -1680,7 +1680,11 @@ : */ : test SCB_RESIDUAL_SGPTR[0], SG_LIST_NULL jz mesgin_sdptrs_full; : or SCB_SGPTR, SG_LIST_NULL; :- jmp mesgin_done; :+ if ((ahc->features & AHC_ULTRA2) != 0) { :+ jmp ITloop; :+ } else { :+ jmp mesgin_done; :+ } : : mesgin_sdptrs_full: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200108050407.f7547B078180>