|
|
0a122b |
From 10cef67ef7714773f79e444450983d5bbdb2e014 Mon Sep 17 00:00:00 2001
|
|
|
0a122b |
From: Juan Quintela <quintela@redhat.com>
|
|
|
0a122b |
Date: Tue, 14 Jan 2014 15:07:32 +0100
|
|
|
0a122b |
Subject: [PATCH 21/40] memory: unfold cpu_physical_memory_set_dirty_flag()
|
|
|
0a122b |
|
|
|
0a122b |
RH-Author: Juan Quintela <quintela@redhat.com>
|
|
|
0a122b |
Message-id: <1389712071-23303-22-git-send-email-quintela@redhat.com>
|
|
|
0a122b |
Patchwork-id: 56677
|
|
|
0a122b |
O-Subject: [RHEL7 qemu-kvm PATCH 21/40] memory: unfold cpu_physical_memory_set_dirty_flag()
|
|
|
0a122b |
Bugzilla: 997559
|
|
|
0a122b |
RH-Acked-by: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
0a122b |
RH-Acked-by: Orit Wasserman <owasserm@redhat.com>
|
|
|
0a122b |
RH-Acked-by: Dr. David Alan Gilbert (git) <dgilbert@redhat.com>
|
|
|
0a122b |
|
|
|
0a122b |
Signed-off-by: Juan Quintela <quintela@redhat.com>
|
|
|
0a122b |
Reviewed-by: Eric Blake <eblake@redhat.com>
|
|
|
0a122b |
Reviewed-by: Orit Wasserman <owasserm@redhat.com>
|
|
|
0a122b |
(cherry picked from commit c1427a3f84c42d5159d10927700eafc9b653d68f)
|
|
|
0a122b |
Signed-off-by: Juan Quintela <quintela@trasno.org>
|
|
|
0a122b |
---
|
|
|
0a122b |
include/exec/memory-internal.h | 9 ++++++---
|
|
|
0a122b |
1 file changed, 6 insertions(+), 3 deletions(-)
|
|
|
0a122b |
|
|
|
0a122b |
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
|
0a122b |
---
|
|
|
0a122b |
include/exec/memory-internal.h | 9 ++++++---
|
|
|
0a122b |
1 files changed, 6 insertions(+), 3 deletions(-)
|
|
|
0a122b |
|
|
|
0a122b |
diff --git a/include/exec/memory-internal.h b/include/exec/memory-internal.h
|
|
|
0a122b |
index 19d8393..e8fae2a 100644
|
|
|
0a122b |
--- a/include/exec/memory-internal.h
|
|
|
0a122b |
+++ b/include/exec/memory-internal.h
|
|
|
0a122b |
@@ -96,9 +96,12 @@ static inline void cpu_physical_memory_set_dirty_range(ram_addr_t start,
|
|
|
0a122b |
end = TARGET_PAGE_ALIGN(start + length);
|
|
|
0a122b |
start &= TARGET_PAGE_MASK;
|
|
|
0a122b |
for (addr = start; addr < end; addr += TARGET_PAGE_SIZE) {
|
|
|
0a122b |
- cpu_physical_memory_set_dirty_flag(addr, DIRTY_MEMORY_MIGRATION);
|
|
|
0a122b |
- cpu_physical_memory_set_dirty_flag(addr, DIRTY_MEMORY_VGA);
|
|
|
0a122b |
- cpu_physical_memory_set_dirty_flag(addr, DIRTY_MEMORY_CODE);
|
|
|
0a122b |
+ set_bit(addr >> TARGET_PAGE_BITS,
|
|
|
0a122b |
+ ram_list.dirty_memory[DIRTY_MEMORY_MIGRATION]);
|
|
|
0a122b |
+ set_bit(addr >> TARGET_PAGE_BITS,
|
|
|
0a122b |
+ ram_list.dirty_memory[DIRTY_MEMORY_VGA]);
|
|
|
0a122b |
+ set_bit(addr >> TARGET_PAGE_BITS,
|
|
|
0a122b |
+ ram_list.dirty_memory[DIRTY_MEMORY_CODE]);
|
|
|
0a122b |
}
|
|
|
0a122b |
xen_modified_memory(addr, length);
|
|
|
0a122b |
}
|
|
|
0a122b |
--
|
|
|
0a122b |
1.7.1
|
|
|
0a122b |
|