Subject: [PATCH 1/6] Fix VMware VGA init call (v2) Cc: Avi Kivity Cc: Fabrice Bellard Cc: Paul Brook Cc: kvm-devel@lists.sourceforge.net This was never corrected during the ram_alloc() conversion. Since v1, we update both uses of ram_size. Index: qemu/hw/pc.c =================================================================== --- qemu.orig/hw/pc.c 2008-02-01 16:21:40.000000000 -0600 +++ qemu/hw/pc.c 2008-02-01 16:22:04.000000000 -0600 @@ -868,8 +868,8 @@ } } else if (vmsvga_enabled) { if (pci_enabled) - pci_vmsvga_init(pci_bus, ds, phys_ram_base + ram_size, - ram_size, vga_ram_size); + pci_vmsvga_init(pci_bus, ds, phys_ram_base + vga_ram_size, + vga_ram_addr, vga_ram_size); else fprintf(stderr, "%s: vmware_vga: no PCI bus\n", __FUNCTION__); } else {