From owner-svn-src-head@FreeBSD.ORG Thu Feb 26 19:24:08 2009 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EA816106583C; Thu, 26 Feb 2009 19:23:50 +0000 (UTC) (envelope-from owner-svn-src-all@freebsd.org) Received: from forwards5.yandex.ru (forwards5.yandex.ru [77.88.61.37]) by mx1.freebsd.org (Postfix) with ESMTP id 227D48FC22; Thu, 26 Feb 2009 19:23:45 +0000 (UTC) (envelope-from owner-svn-src-all@freebsd.org) Received: from mxfront2.yandex.ru (mxfront2.yandex.ru [77.88.47.138]) by forwards5.yandex.ru (Yandex) with ESMTP id 969C8AF645; Thu, 26 Feb 2009 22:04:09 +0300 (MSK) Received: from mx2.freebsd.org ([69.147.83.53]:23245 "EHLO mx2.freebsd.org" smtp-auth: TLS-CIPHER: TLS-PEER-CN1: ) by mail.yandex.ru with ESMTP id S181266AbZBZOce for (+ 2 others); Thu, 26 Feb 2009 17:32:34 +0300 X-Yandex-TimeMark: 1235658754 X-Yandex-Spam: 2 X-Yandex-Front: mxfront2 Received: from hub.freebsd.org (hub.freebsd.org [IPv6:2001:4f8:fff6::36]) by mx2.freebsd.org (Postfix) with ESMTP id 662371A4A23; Thu, 26 Feb 2009 14:32:28 +0000 (UTC) (envelope-from owner-svn-src-all@freebsd.org) Received: from hub.freebsd.org (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 2CC0210656EA; Thu, 26 Feb 2009 14:32:28 +0000 (UTC) (envelope-from owner-svn-src-all@freebsd.org) Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A7253106566B; Thu, 26 Feb 2009 14:32:14 +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 963E28FC1C; Thu, 26 Feb 2009 14:32:14 +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 n1QEWEFD030077; Thu, 26 Feb 2009 14:32:14 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n1QEWEsS030076; Thu, 26 Feb 2009 14:32:14 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <200902261432.n1QEWEsS030076@svn.freebsd.org> From: John Baldwin Date: Thu, 26 Feb 2009 14:32:14 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Sender: owner-svn-src-all@freebsd.org Errors-To: owner-svn-src-all@freebsd.org Cc: Subject: svn commit: r189073 - head/sys/dev/pci X-BeenThere: svn-src-head@freebsd.org List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Feb 2009 19:24:24 -0000 Author: jhb Date: Thu Feb 26 14:32:14 2009 New Revision: 189073 URL: http://svn.freebsd.org/changeset/base/189073 Log: Don't throw away upper 32-bits of the HT MSI address window. In practice this is harmless since the address window for MSI on x86 is in the lower 4 GB. Submitted by: mav MFC after: 1 week Modified: head/sys/dev/pci/pci.c Modified: head/sys/dev/pci/pci.c ============================================================================== --- head/sys/dev/pci/pci.c Thu Feb 26 13:01:45 2009 (r189072) +++ head/sys/dev/pci/pci.c Thu Feb 26 14:32:14 2009 (r189073) @@ -554,7 +554,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, _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"