From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39893) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VeXxK-0003VN-UE for qemu-devel@nongnu.org; Thu, 07 Nov 2013 17:21:44 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VeXxE-0001Oe-Tx for qemu-devel@nongnu.org; Thu, 07 Nov 2013 17:21:38 -0500 Received: from mx1.redhat.com ([209.132.183.28]:33982) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VeXxE-0001OY-Ls for qemu-devel@nongnu.org; Thu, 07 Nov 2013 17:21:32 -0500 From: Laszlo Ersek Date: Thu, 7 Nov 2013 23:23:59 +0100 Message-Id: <1383863039-18875-3-git-send-email-lersek@redhat.com> In-Reply-To: <1383863039-18875-1-git-send-email-lersek@redhat.com> References: <1383859470.2527.64.camel@localhost.localdomain> <1383863039-18875-1-git-send-email-lersek@redhat.com> Subject: [Qemu-devel] [PATCH 2/2] i386/pc_piix: the pci-hole should end where the system flash starts List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org, peter.maydell@linaro.org, edk2-devel@lists.sourceforge.net, mst@redhat.com, jan.kiszka@siemens.com, marcel.a@redhat.com, anthony@codemonkey.ws, pbonzini@redhat.com, jljusten@gmail.com, afaerber@suse.de, rth@twiddle.net Signed-off-by: Laszlo Ersek --- hw/i386/pc_piix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/i386/pc_piix.c b/hw/i386/pc_piix.c index 6e2c027..9bda20a 100644 --- a/hw/i386/pc_piix.c +++ b/hw/i386/pc_piix.c @@ -152,7 +152,7 @@ static void pc_init1(QEMUMachineInitArgs *args, pci_bus = i440fx_init(&i440fx_state, &piix3_devfn, &isa_bus, gsi, system_memory, system_io, args->ram_size, below_4g_mem_size, - 0x100000000ULL - below_4g_mem_size, + (0x100000000ULL - flash_size) - below_4g_mem_size, above_4g_mem_size, pci_memory, ram_memory); } else { -- 1.8.3.1