Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 5 Mar 2009 15:50:40 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-6@freebsd.org
Subject:   svn commit: r189403 - in stable/6/sys: . contrib/pf dev/cxgb dev/pci
Message-ID:  <200903051550.n25FoexH087318@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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,



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200903051550.n25FoexH087318>