aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@linaro.org>2024-03-12 21:14:56 +0100
committerPeter Xu <peterx@redhat.com>2024-03-12 17:39:40 -0400
commit7e8ccf99ed5d0c546268cf584d4dca1569c97fea (patch)
tree1b1ae7d2280d771e48a7bfcc71352a6d1cd0ac26 /include
parentc827fafcaad3e8b3dcf7eeb5944b03f6b63dfc44 (diff)
downloadqemu-7e8ccf99ed5d0c546268cf584d4dca1569c97fea.zip
qemu-7e8ccf99ed5d0c546268cf584d4dca1569c97fea.tar.gz
qemu-7e8ccf99ed5d0c546268cf584d4dca1569c97fea.tar.bz2
physmem: Expose tlb_reset_dirty_range_all()
In order to call tlb_reset_dirty_range_all() outside of system/physmem.c, expose its prototype. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Link: https://lore.kernel.org/r/20240312201458.79532-2-philmd@linaro.org Signed-off-by: Peter Xu <peterx@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/exec/exec-all.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/exec/exec-all.h b/include/exec/exec-all.h
index ce36bb1..3e53501 100644
--- a/include/exec/exec-all.h
+++ b/include/exec/exec-all.h
@@ -655,6 +655,7 @@ static inline void mmap_unlock(void) {}
void tlb_reset_dirty(CPUState *cpu, ram_addr_t start1, ram_addr_t length);
void tlb_set_dirty(CPUState *cpu, vaddr addr);
+void tlb_reset_dirty_range_all(ram_addr_t start, ram_addr_t length);
MemoryRegionSection *
address_space_translate_for_iotlb(CPUState *cpu, int asidx, hwaddr addr,