mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-29 21:12:07 -06:00
memory: unfold cpu_physical_memory_set_dirty() in its only user
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:
parent
86a49582db
commit
4f13bb80a2
1 changed files with 3 additions and 8 deletions
|
@ -79,13 +79,6 @@ static inline void cpu_physical_memory_set_dirty_flag(ram_addr_t addr,
|
||||||
set_bit(addr >> TARGET_PAGE_BITS, ram_list.dirty_memory[client]);
|
set_bit(addr >> TARGET_PAGE_BITS, ram_list.dirty_memory[client]);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void cpu_physical_memory_set_dirty(ram_addr_t addr)
|
|
||||||
{
|
|
||||||
cpu_physical_memory_set_dirty_flag(addr, DIRTY_MEMORY_MIGRATION);
|
|
||||||
cpu_physical_memory_set_dirty_flag(addr, DIRTY_MEMORY_VGA);
|
|
||||||
cpu_physical_memory_set_dirty_flag(addr, DIRTY_MEMORY_CODE);
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline void cpu_physical_memory_set_dirty_range(ram_addr_t start,
|
static inline void cpu_physical_memory_set_dirty_range(ram_addr_t start,
|
||||||
ram_addr_t length)
|
ram_addr_t length)
|
||||||
{
|
{
|
||||||
|
@ -94,7 +87,9 @@ static inline void cpu_physical_memory_set_dirty_range(ram_addr_t start,
|
||||||
end = TARGET_PAGE_ALIGN(start + length);
|
end = TARGET_PAGE_ALIGN(start + length);
|
||||||
start &= TARGET_PAGE_MASK;
|
start &= TARGET_PAGE_MASK;
|
||||||
for (addr = start; addr < end; addr += TARGET_PAGE_SIZE) {
|
for (addr = start; addr < end; addr += TARGET_PAGE_SIZE) {
|
||||||
cpu_physical_memory_set_dirty(addr);
|
cpu_physical_memory_set_dirty_flag(addr, DIRTY_MEMORY_MIGRATION);
|
||||||
|
cpu_physical_memory_set_dirty_flag(addr, DIRTY_MEMORY_VGA);
|
||||||
|
cpu_physical_memory_set_dirty_flag(addr, DIRTY_MEMORY_CODE);
|
||||||
}
|
}
|
||||||
xen_modified_memory(addr, length);
|
xen_modified_memory(addr, length);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue