commit | 55043ba37ee4b080a4f4f77b0ff672be3cbf8825 | [log] [tgz] |
---|---|---|
author | Avi Kivity <avi@redhat.com> | Thu Dec 15 17:20:34 2011 +0200 |
committer | Avi Kivity <avi@redhat.com> | Tue Dec 20 14:14:06 2011 +0200 |
tree | c1d383b8191f62ca93f366de45969e5ee254dcef | |
parent | ce7923da4da4e5895ab737fbf2c9b603c764a933 [diff] [blame] |
memory: add memory_region_is_logging() Signed-off-by: Avi Kivity <avi@redhat.com>
diff --git a/memory.c b/memory.c index 01baeac..6e61635 100644 --- a/memory.c +++ b/memory.c
@@ -1074,6 +1074,11 @@ return mr->ram; } +bool memory_region_is_logging(MemoryRegion *mr) +{ + return mr->dirty_log_mask; +} + bool memory_region_is_rom(MemoryRegion *mr) { return mr->ram && mr->readonly;