summaryrefslogtreecommitdiff
path: root/include/exec/memory-internal.h
diff options
context:
space:
mode:
authorJuan Quintela <quintela@redhat.com>2013-10-10 11:49:53 +0200
committerJuan Quintela <quintela@redhat.com>2014-01-13 14:04:54 +0100
commita2f4d5bef2cfde557d76fc45a40d2c89b6bed4e4 (patch)
tree121ff9e8a2ec9b9e1e687aae8e5df85747aaa0f5 /include/exec/memory-internal.h
parenta2cd8c852d2d8c2a084b68b2470f214d6726f6d2 (diff)
downloadqemu-a2f4d5bef2cfde557d76fc45a40d2c89b6bed4e4.tar.gz
memory: make cpu_physical_memory_reset_dirty() take a length parameter
We have an end parameter in all the callers, and this make it coherent with the rest of cpu_physical_memory_* functions, that also take a length parameter. Once here, move the start/end calculation to tlb_reset_dirty_range_all() as we don't need it here anymore. 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/memory-internal.h')
-rw-r--r--include/exec/memory-internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/exec/memory-internal.h b/include/exec/memory-internal.h
index 771b23f321..cb2249fd0b 100644
--- a/include/exec/memory-internal.h
+++ b/include/exec/memory-internal.h
@@ -102,7 +102,7 @@ static inline void cpu_physical_memory_clear_dirty_range(ram_addr_t start,
bitmap_clear(ram_list.dirty_memory[client], page, end - page);
}
-void cpu_physical_memory_reset_dirty(ram_addr_t start, ram_addr_t end,
+void cpu_physical_memory_reset_dirty(ram_addr_t start, ram_addr_t length,
unsigned client);
#endif