mirror of
https://github.com/mii443/qemu.git
synced 2025-12-03 11:08:25 +00:00
exec: create function to get a single dirty bit
Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Orit Wasserman <owasserm@redhat.com>
This commit is contained in:
2
exec.c
2
exec.c
@@ -1487,7 +1487,7 @@ static void notdirty_mem_write(void *opaque, hwaddr ram_addr,
|
||||
{
|
||||
int dirty_flags;
|
||||
dirty_flags = cpu_physical_memory_get_dirty_flags(ram_addr);
|
||||
if (!(dirty_flags & CODE_DIRTY_FLAG)) {
|
||||
if (!cpu_physical_memory_get_dirty_flag(ram_addr, CODE_DIRTY_FLAG)) {
|
||||
tb_invalidate_phys_page_fast(ram_addr, size);
|
||||
dirty_flags = cpu_physical_memory_get_dirty_flags(ram_addr);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user