From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LD3IV-0008Lt-QW for qemu-devel@nongnu.org; Wed, 17 Dec 2008 15:47:11 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LD3IU-0008Kx-JZ for qemu-devel@nongnu.org; Wed, 17 Dec 2008 15:47:10 -0500 Received: from [199.232.76.173] (port=35712 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LD3IU-0008Ku-Dw for qemu-devel@nongnu.org; Wed, 17 Dec 2008 15:47:10 -0500 Received: from mx2.redhat.com ([66.187.237.31]:36327) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LD3IT-0008PQ-R3 for qemu-devel@nongnu.org; Wed, 17 Dec 2008 15:47:10 -0500 From: Glauber Costa Date: Wed, 17 Dec 2008 15:46:58 -0500 Message-Id: <1229546822-11972-2-git-send-email-glommer@redhat.com> In-Reply-To: <1229546822-11972-1-git-send-email-glommer@redhat.com> References: <1229546822-11972-1-git-send-email-glommer@redhat.com> Subject: [Qemu-devel] [PATCH 1/5] re-register whole area upon lfb unmap. Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Ian.Jackson@eu.citrix.com, avi@redhat.com, kvm@vger.kernel.org, stefano.stabellini@eu.citrix.com set phys_offset correctly for the whole vga area when unmapping linear vram (for vga optimization). We first register the old pieces as unassigned memory, to make things easier for kvm (and possibly other slot based implementations in the future). Replacing the region directly would make the slot management significantly more complex. Signed-off-by: Glauber Costa --- hw/cirrus_vga.c | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/hw/cirrus_vga.c b/hw/cirrus_vga.c index 83c5f40..6e81906 100644 --- a/hw/cirrus_vga.c +++ b/hw/cirrus_vga.c @@ -2658,8 +2658,10 @@ static void map_linear_vram(CirrusVGAState *s) vga_dirty_log_start((VGAState *)s); } else { - cpu_register_physical_memory(isa_mem_base + 0xa0000, 0x8000, s->vga_io_memory); - cpu_register_physical_memory(isa_mem_base + 0xa8000, 0x8000, s->vga_io_memory); + cpu_register_physical_memory(isa_mem_base + 0xa0000, 0x8000, IO_MEM_UNASSIGNED); + cpu_register_physical_memory(isa_mem_base + 0xa8000, 0x8000, IO_MEM_UNASSIGNED); + + cpu_register_physical_memory(isa_mem_base + 0xa0000, 0x20000, s->vga_io_memory); } } -- 1.5.6.5