summaryrefslogtreecommitdiff
path: root/include/exec
diff options
context:
space:
mode:
authorJuan Quintela <quintela@redhat.com>2013-10-09 10:36:56 +0200
committerJuan Quintela <quintela@redhat.com>2014-01-13 14:04:54 +0100
commitace694cccccf343852d9f0b34171ad475e248bbf (patch)
tree26c858a233627da92c6b5c2f260a5edc3299ffbd /include/exec
parent94833c896d2d339571a66542f2715b1897d70fa7 (diff)
downloadqemu-ace694cccccf343852d9f0b34171ad475e248bbf.tar.gz
memory: s/mask/clear/ cpu_physical_memory_mask_dirty_range
Now all functions use the same wording that bitops/bitmap operations Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Orit Wasserman <owasserm@redhat.com>
Diffstat (limited to 'include/exec')
-rw-r--r--include/exec/memory-internal.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/exec/memory-internal.h b/include/exec/memory-internal.h
index fa28fc677d..c04a92a2d9 100644
--- a/include/exec/memory-internal.h
+++ b/include/exec/memory-internal.h
@@ -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;