From owner-cvs-src@FreeBSD.ORG Sat Dec 16 01:42:43 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 145B616A4D1; Sat, 16 Dec 2006 01:42:43 +0000 (UTC) (envelope-from jdp@polstra.com) Received: from blake.polstra.com (blake.polstra.com [64.81.189.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id C042143CA1; Sat, 16 Dec 2006 01:40:57 +0000 (GMT) (envelope-from jdp@polstra.com) Received: from strings.polstra.com (strings.polstra.com [64.81.189.67]) by blake.polstra.com (8.13.8/8.13.8) with ESMTP id kBG1gfQ2003600; Fri, 15 Dec 2006 17:42:41 -0800 (PST) (envelope-from jdp@polstra.com) Message-ID: X-Mailer: XFMail 1.5.5 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20061215231130.GA58012@dragon.NUXI.org> Date: Fri, 15 Dec 2006 17:42:41 -0800 (PST) From: John Polstra To: "David O'Brien" Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/bge if_bge.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Dec 2006 01:42:43 -0000 On 15-Dec-2006 David O'Brien wrote: > On Fri, Dec 15, 2006 at 01:26:55PM -0800, Peter Grehan wrote: >> >I have a Tyan K8W (s2885) which I experienced this on: >> >> That's using the the AMD 8131 right ? > > Yep. > >> Known not to support MSI. > > I assumed the code would check and not attempt MSI if not supported. That would be the job of the PCI infrastructure, not of the bge driver. Quite a few motherboards/chipsets indicate MSI support in their PCI configuration registers but do not in fact have working MSI support. Scott and I recently added quirk support in sys/dev/pci/pci.c to deal with that. Feel free to add a new entry there. John