From owner-cvs-all@FreeBSD.ORG Mon May 26 14:20:48 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4032937B401; Mon, 26 May 2003 14:20:48 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5E9C43F3F; Mon, 26 May 2003 14:20:47 -0700 (PDT) (envelope-from gibbs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h4QLKl0U016668; Mon, 26 May 2003 14:20:47 -0700 (PDT) (envelope-from gibbs@repoman.freebsd.org) Received: (from gibbs@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h4QLKlrk016667; Mon, 26 May 2003 14:20:47 -0700 (PDT) Message-Id: <200305262120.h4QLKlrk016667@repoman.freebsd.org> From: "Justin T. Gibbs" Date: Mon, 26 May 2003 14:20:47 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aic7xxx aic7xxx.c aic7xxx.h aic7xxx_pci.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 21:20:48 -0000 gibbs 2003/05/26 14:20:47 PDT FreeBSD src repository Modified files: sys/dev/aic7xxx aic7xxx.c aic7xxx.h aic7xxx_pci.c Log: Fix disabling of PCI parity error interrupts. We need to set FAILDIS in the SEQCTL register, not the HCNTRL register. aic7xxx.c: Remeber SEQCTL settings in the "seqctl" field of our softc. seqctl defaults to just having FASTMODE set, but the bus attachments can override this. aic7xxx.h: Add the seqctl softc field. aic7xxx_pci.c: Update the seqctl softc field and manually update SEQCTL when to many PCI errors occur Approved by: RE Revision Changes Path 1.90 +10 -4 src/sys/dev/aic7xxx/aic7xxx.c 1.46 +6 -1 src/sys/dev/aic7xxx/aic7xxx.h 1.25 +5 -7 src/sys/dev/aic7xxx/aic7xxx_pci.c