diff options
| author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-03-12 21:14:56 +0100 |
|---|---|---|
| committer | Peter Xu <peterx@redhat.com> | 2024-03-12 17:39:40 -0400 |
| commit | 7e8ccf99ed5d0c546268cf584d4dca1569c97fea (patch) | |
| tree | 1b1ae7d2280d771e48a7bfcc71352a6d1cd0ac26 /system/physmem.c | |
| parent | c827fafcaad3e8b3dcf7eeb5944b03f6b63dfc44 (diff) | |
| download | focaccia-qemu-7e8ccf99ed5d0c546268cf584d4dca1569c97fea.tar.gz focaccia-qemu-7e8ccf99ed5d0c546268cf584d4dca1569c97fea.zip | |
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 'system/physmem.c')
| -rw-r--r-- | system/physmem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/physmem.c b/system/physmem.c index 6cfb7a80ab..5441480ff0 100644 --- a/system/physmem.c +++ b/system/physmem.c @@ -819,7 +819,7 @@ found: return block; } -static void tlb_reset_dirty_range_all(ram_addr_t start, ram_addr_t length) +void tlb_reset_dirty_range_all(ram_addr_t start, ram_addr_t length) { CPUState *cpu; ram_addr_t start1; |