From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1N8Wmi-0006Fk-3Q for qemu-devel@nongnu.org; Thu, 12 Nov 2009 05:20:12 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N8Wmc-0006DG-Tc for qemu-devel@nongnu.org; Thu, 12 Nov 2009 05:20:10 -0500 Received: from [199.232.76.173] (port=41022 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N8Wmc-0006DC-LB for qemu-devel@nongnu.org; Thu, 12 Nov 2009 05:20:06 -0500 Received: from mx1.redhat.com ([209.132.183.28]:4152) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1N8Wmb-0000dz-V4 for qemu-devel@nongnu.org; Thu, 12 Nov 2009 05:20:06 -0500 Date: Thu, 12 Nov 2009 12:17:31 +0200 From: "Michael S. Tsirkin" Message-ID: <20091112101731.GA3785@redhat.com> References: <1258005528-25383-1-git-send-email-yamahata@valinux.co.jp> <1258005528-25383-2-git-send-email-yamahata@valinux.co.jp> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1258005528-25383-2-git-send-email-yamahata@valinux.co.jp> Subject: [Qemu-devel] Re: [PATCH 01/20] pci: fix pci_info_device(). List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Isaku Yamahata Cc: qemu-devel@nongnu.org On Thu, Nov 12, 2009 at 02:58:29PM +0900, Isaku Yamahata wrote: > It printed wrong limit value of bridge. > This patch fixes it. > > Signed-off-by: Isaku Yamahata Acked-by: Michael S. Tsirkin > --- > hw/pci.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/hw/pci.c b/hw/pci.c > index 2ab1117..4169d4f 100644 > --- a/hw/pci.c > +++ b/hw/pci.c > @@ -985,7 +985,7 @@ static void pci_info_device(PCIBus *bus, PCIDevice *d) > base, limit); > > base = pci_bridge_get_base(d, PCI_BASE_ADDRESS_SPACE_MEMORY); > - limit= pci_config_get_memory_base(d, PCI_BASE_ADDRESS_SPACE_MEMORY); > + limit= pci_bridge_get_limit(d, PCI_BASE_ADDRESS_SPACE_MEMORY); > monitor_printf(mon, > " memory range [0x%08"PRIx64", 0x%08"PRIx64"]\n", > base, limit); > -- > 1.6.0.2