]> Git Repo - qemu.git/commitdiff
memory: s/mask/clear/ cpu_physical_memory_mask_dirty_range
authorJuan Quintela <[email protected]>
Wed, 9 Oct 2013 08:36:56 +0000 (10:36 +0200)
committerJuan Quintela <[email protected]>
Mon, 13 Jan 2014 13:04:54 +0000 (14:04 +0100)
Now all functions use the same wording that bitops/bitmap operations

Signed-off-by: Juan Quintela <[email protected]>
Reviewed-by: Eric Blake <[email protected]>
Reviewed-by: Orit Wasserman <[email protected]>
exec.c
include/exec/memory-internal.h

diff --git a/exec.c b/exec.c
index 028eee4f59c5dccc5af3fc8997ffbd76b05ed6ec..9267596c05910df975bff5c6ce9b8e6cb1c933a9 100644 (file)
--- a/exec.c
+++ b/exec.c
@@ -748,7 +748,7 @@ void cpu_physical_memory_reset_dirty(ram_addr_t start, ram_addr_t end,
     length = end - start;
     if (length == 0)
         return;
-    cpu_physical_memory_mask_dirty_range(start, length, client);
+    cpu_physical_memory_clear_dirty_range(start, length, client);
 
     if (tcg_enabled()) {
         tlb_reset_dirty_range_all(start, end, length);
index fa28fc677d948c2ab25eac4cff484514a68b3745..c04a92a2d974ddc493680f2911d59dcefe79e744 100644 (file)
@@ -100,9 +100,9 @@ static inline void cpu_physical_memory_set_dirty_range(ram_addr_t start,
     xen_modified_memory(addr, length);
 }
 
-static inline void cpu_physical_memory_mask_dirty_range(ram_addr_t start,
-                                                        ram_addr_t length,
-                                                        unsigned client)
+static inline void cpu_physical_memory_clear_dirty_range(ram_addr_t start,
+                                                         ram_addr_t length,
+                                                         unsigned client)
 {
     ram_addr_t addr, end;
 
This page took 0.025102 seconds and 4 git commands to generate.