From owner-cvs-all@FreeBSD.ORG Sat Jan 13 04:57:38 2007 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B130F16A40F; Sat, 13 Jan 2007 04:57:38 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 8AA6913C448; Sat, 13 Jan 2007 04:57:38 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l0D4vcxW003573; Sat, 13 Jan 2007 04:57:38 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l0D4vcRK003572; Sat, 13 Jan 2007 04:57:38 GMT (envelope-from jhb) Message-Id: <200701130457.l0D4vcRK003572@repoman.freebsd.org> From: John Baldwin Date: Sat, 13 Jan 2007 04:57:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/dev/pci pci.c pci_pci.c pcib_private.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 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: Sat, 13 Jan 2007 04:57:38 -0000 jhb 2007-01-13 04:57:38 UTC FreeBSD src repository Modified files: sys/dev/pci pci.c pci_pci.c pcib_private.h Log: - Add a new flag to the PCI-PCI driver to disable MSI on devices behind the bridge if it doesn't pass MSI messages up correctly. We set the flag in pcib_attach() if the device ID is disabled via a PCI quirk. - Disable MSI for devices behind the AMD 8131 HT-PCIX bridge. Linux has the same quirk. Tested by: no one despite repeated calls for testers Revision Changes Path 1.335 +6 -0 src/sys/dev/pci/pci.c 1.45 +9 -0 src/sys/dev/pci/pci_pci.c 1.10 +1 -0 src/sys/dev/pci/pcib_private.h