From fe55ff6e6114c7382a68a2cf7230f125d4f3a248 Mon Sep 17 00:00:00 2001 From: Jan Kiszka Date: Mon, 22 Aug 2011 19:12:11 +0200 Subject: [PATCH] vmware-vga: Eliminate vga_dirty_log_restart After the conversion to the new Memory API, vga_dirty_log_restart became seriously pointless. Remove it from vmware-vga and and then finally drop the service. CC: Andrzej Zaborowski CC: Avi Kivity Signed-off-by: Jan Kiszka Signed-off-by: Anthony Liguori --- hw/vga.c | 6 ------ hw/vga_int.h | 1 - hw/vmware_vga.c | 2 -- 3 files changed, 9 deletions(-) diff --git a/hw/vga.c b/hw/vga.c index b0371d5107..432d2cb800 100644 --- a/hw/vga.c +++ b/hw/vga.c @@ -1532,12 +1532,6 @@ void vga_dirty_log_stop(VGACommonState *s) memory_region_set_log(&s->vram, false, DIRTY_MEMORY_VGA); } -void vga_dirty_log_restart(VGACommonState *s) -{ - vga_dirty_log_stop(s); - vga_dirty_log_start(s); -} - /* * graphic modes */ diff --git a/hw/vga_int.h b/hw/vga_int.h index 7e4ed71b78..d2dd7dd367 100644 --- a/hw/vga_int.h +++ b/hw/vga_int.h @@ -193,7 +193,6 @@ void vga_common_reset(VGACommonState *s); void vga_dirty_log_start(VGACommonState *s); void vga_dirty_log_stop(VGACommonState *s); -void vga_dirty_log_restart(VGACommonState *s); extern const VMStateDescription vmstate_vga_common; uint32_t vga_ioport_read(void *opaque, uint32_t addr); diff --git a/hw/vmware_vga.c b/hw/vmware_vga.c index 95c98974e2..52d2d26f1b 100644 --- a/hw/vmware_vga.c +++ b/hw/vmware_vga.c @@ -1175,8 +1175,6 @@ static int pci_vmsvga_initfn(PCIDevice *dev) iomem = &s->chip.vga.vram; - vga_dirty_log_restart(&s->chip.vga); - s->card.config[PCI_CACHE_LINE_SIZE] = 0x08; /* Cache line size */ s->card.config[PCI_LATENCY_TIMER] = 0x40; /* Latency timer */ s->card.config[PCI_INTERRUPT_LINE] = 0xff; /* End */ -- 2.11.4.GIT