diff options
author | Avi Kivity <avi@redhat.com> | 2011-07-26 14:26:02 +0300 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-07-29 08:25:42 -0500 |
commit | 5a583347697413f964d886b074860cb888c0e306 (patch) | |
tree | f11cbbb41a0c8ad424ac35f9077e1d396864b842 /memory.h | |
parent | 093bc2cd885e4e3420509a80a1b9e81848e4b8fe (diff) |
memory: implement dirty tracking
Currently dirty tracking is implemented by passing through
all calls to the underlying cpu_physical_memory_*() calls.
Reviewed-by: Anthony Liguori <aliguori@us.ibm.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'memory.h')
-rw-r--r-- | memory.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -99,6 +99,7 @@ struct MemoryRegion { QTAILQ_ENTRY(MemoryRegion) subregions_link; QTAILQ_HEAD(coalesced_ranges, CoalescedMemoryRange) coalesced; const char *name; + uint8_t dirty_log_mask; }; /** |