From owner-svn-src-stable-6@FreeBSD.ORG Thu Mar 5 15:50:40 2009 Return-Path: Delivered-To: svn-src-stable-6@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 45AA91065719; Thu, 5 Mar 2009 15:50:40 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 326F88FC39; Thu, 5 Mar 2009 15:50:40 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n25FoetS087319; Thu, 5 Mar 2009 15:50:40 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n25FoexH087318; Thu, 5 Mar 2009 15:50:40 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <200903051550.n25FoexH087318@svn.freebsd.org> From: John Baldwin Date: Thu, 5 Mar 2009 15:50:40 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-6@freebsd.org X-SVN-Group: stable-6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r189403 - in stable/6/sys: . contrib/pf dev/cxgb dev/pci X-BeenThere: svn-src-stable-6@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for only the 6-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Mar 2009 15:50:41 -0000 Author: jhb Date: Thu Mar 5 15:50:39 2009 New Revision: 189403 URL: http://svn.freebsd.org/changeset/base/189403 Log: MFC: Don't throw away the upper 32-bits of the HT MSI address window. Modified: stable/6/sys/ (props changed) stable/6/sys/contrib/pf/ (props changed) stable/6/sys/dev/cxgb/ (props changed) stable/6/sys/dev/pci/pci.c Modified: stable/6/sys/dev/pci/pci.c ============================================================================== --- stable/6/sys/dev/pci/pci.c Thu Mar 5 15:46:41 2009 (r189402) +++ stable/6/sys/dev/pci/pci.c Thu Mar 5 15:50:39 2009 (r189403) @@ -537,7 +537,7 @@ pci_read_extcap(device_t pcib, pcicfgreg addr = REG(ptr + PCIR_HTMSI_ADDRESS_HI, 4); addr <<= 32; - addr = REG(ptr + PCIR_HTMSI_ADDRESS_LO, + addr |= REG(ptr + PCIR_HTMSI_ADDRESS_LO, 4); if (addr != MSI_INTEL_ADDR_BASE) device_printf(pcib,