mirror of https://gitee.com/openkylin/qemu.git
exec: use accessor function to know if memory is dirty
Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Orit Wasserman <owasserm@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com>
This commit is contained in:
parent
78d0042642
commit
06567942e5
2
exec.c
2
exec.c
|
@ -1508,7 +1508,7 @@ static void notdirty_mem_write(void *opaque, hwaddr ram_addr,
|
||||||
cpu_physical_memory_set_dirty_flags(ram_addr, dirty_flags);
|
cpu_physical_memory_set_dirty_flags(ram_addr, dirty_flags);
|
||||||
/* we remove the notdirty callback only if the code has been
|
/* we remove the notdirty callback only if the code has been
|
||||||
flushed */
|
flushed */
|
||||||
if (dirty_flags == 0xff) {
|
if (cpu_physical_memory_is_dirty(ram_addr)) {
|
||||||
CPUArchState *env = current_cpu->env_ptr;
|
CPUArchState *env = current_cpu->env_ptr;
|
||||||
tlb_set_dirty(env, env->mem_io_vaddr);
|
tlb_set_dirty(env, env->mem_io_vaddr);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue