]> Git Repo - qemu.git/commitdiff
memory: unfold cpu_physical_memory_clear_dirty_flag() in its only user
authorJuan Quintela <[email protected]>
Tue, 8 Oct 2013 18:21:10 +0000 (20:21 +0200)
committerJuan Quintela <[email protected]>
Mon, 13 Jan 2014 13:04:54 +0000 (14:04 +0100)
Signed-off-by: Juan Quintela <[email protected]>
Reviewed-by: Eric Blake <[email protected]>
Reviewed-by: Orit Wasserman <[email protected]>
include/exec/memory-internal.h

index 6fb1b64410d28848e3dc49f7ec13d8f35b6355a4..2f6610a4640f0ea95816ec7ff751940a01f1e45c 100644 (file)
@@ -86,13 +86,6 @@ static inline void cpu_physical_memory_set_dirty(ram_addr_t addr)
     cpu_physical_memory_set_dirty_flag(addr, DIRTY_MEMORY_CODE);
 }
 
-static inline void cpu_physical_memory_clear_dirty_flag(ram_addr_t addr,
-                                                       unsigned client)
-{
-    assert(client < DIRTY_MEMORY_NUM);
-    clear_bit(addr >> TARGET_PAGE_BITS, ram_list.dirty_memory[client]);
-}
-
 static inline void cpu_physical_memory_set_dirty_range(ram_addr_t start,
                                                        ram_addr_t length)
 {
@@ -112,10 +105,11 @@ static inline void cpu_physical_memory_mask_dirty_range(ram_addr_t start,
 {
     ram_addr_t addr, end;
 
+    assert(client < DIRTY_MEMORY_NUM);
     end = TARGET_PAGE_ALIGN(start + length);
     start &= TARGET_PAGE_MASK;
     for (addr = start; addr < end; addr += TARGET_PAGE_SIZE) {
-        cpu_physical_memory_clear_dirty_flag(addr, client);
+        clear_bit(addr >> TARGET_PAGE_BITS, ram_list.dirty_memory[client]);
     }
 }
 
This page took 0.026507 seconds and 4 git commands to generate.