diff options
| author | Paul Durrant | 2017-03-07 11:55:31 +0100 |
|---|---|---|
| committer | Stefano Stabellini | 2017-03-22 19:47:39 +0100 |
| commit | 5100afb5f59906f63490c050d2eee578b9ba2b3d (patch) | |
| tree | f3be9960a8954ab3fb7d2703d58eba1c412351ef /include/exec | |
| parent | xen: make use of xen_xc implicit in xen_common.h inlines (diff) | |
| download | qemu-5100afb5f59906f63490c050d2eee578b9ba2b3d.tar.gz qemu-5100afb5f59906f63490c050d2eee578b9ba2b3d.tar.xz qemu-5100afb5f59906f63490c050d2eee578b9ba2b3d.zip | |
xen: rename xen_modified_memory() to xen_hvm_modified_memory()
This patch is a purely cosmetic change that avoids a name collision in
a subsequent patch.
Signed-off-by: Paul Durrant <paul.durrant@citrix.com>
Reviewed-by: Anthony Perard <anthony.perard@citrix.com>
Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
Diffstat (limited to 'include/exec')
| -rw-r--r-- | include/exec/ram_addr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/exec/ram_addr.h b/include/exec/ram_addr.h index b05dc84ab9..29647303b0 100644 --- a/include/exec/ram_addr.h +++ b/include/exec/ram_addr.h @@ -260,7 +260,7 @@ static inline void cpu_physical_memory_set_dirty_range(ram_addr_t start, rcu_read_unlock(); - xen_modified_memory(start, length); + xen_hvm_modified_memory(start, length); } #if !defined(_WIN32) @@ -314,7 +314,7 @@ static inline void cpu_physical_memory_set_dirty_lebitmap(unsigned long *bitmap, rcu_read_unlock(); - xen_modified_memory(start, pages << TARGET_PAGE_BITS); + xen_hvm_modified_memory(start, pages << TARGET_PAGE_BITS); } else { uint8_t clients = tcg_enabled() ? DIRTY_CLIENTS_ALL : DIRTY_CLIENTS_NOCODE; /* |
