|
| From: | Anthony Liguori |
| Subject: | Re: [Qemu-devel] [PATCH] vga: Respect isa_mem_base when registering chain4 alias |
| Date: | Fri, 16 Sep 2011 09:09:34 -0500 |
| User-agent: | Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.17) Gecko/20110516 Lightning/1.0b2 Thunderbird/3.1.10 |
On 09/15/2011 04:26 AM, Jan Kiszka wrote:
This does not yet unbreak PPC (which has its own problems) but potentially other non-x86 systems where isa_mem_base is != 0. Signed-off-by: Jan Kiszka<address@hidden>
Applied. Thanks. Regards, Anthony Liguori
---
hw/vga.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/hw/vga.c b/hw/vga.c
index 125fb29..0a0c5a6 100644
--- a/hw/vga.c
+++ b/hw/vga.c
@@ -181,6 +181,7 @@ static void vga_update_memory_access(VGACommonState *s)
size = 0x8000;
break;
}
+ base += isa_mem_base;
region = g_malloc(sizeof(*region));
memory_region_init_alias(region, "vga.chain4",&s->vram, offset, size);
memory_region_add_subregion_overlap(s->legacy_address_space, base,
| [Prev in Thread] | Current Thread | [Next in Thread] |