mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
vga: fix typo in length passed to kvm_log_stop
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
This commit is contained in:
parent
6164e6d6e8
commit
cce83b7d62
1 changed files with 2 additions and 2 deletions
4
hw/vga.c
4
hw/vga.c
|
@ -1618,8 +1618,8 @@ void vga_dirty_log_stop(VGACommonState *s)
|
|||
kvm_log_stop(s->map_addr, s->map_end - s->map_addr);
|
||||
|
||||
if (kvm_enabled() && s->lfb_vram_mapped) {
|
||||
kvm_log_stop(isa_mem_base + 0xa0000, 0x80000);
|
||||
kvm_log_stop(isa_mem_base + 0xa8000, 0x80000);
|
||||
kvm_log_stop(isa_mem_base + 0xa0000, 0x8000);
|
||||
kvm_log_stop(isa_mem_base + 0xa8000, 0x8000);
|
||||
}
|
||||
|
||||
#ifdef CONFIG_BOCHS_VBE
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue