diff options
author | Jan Kiszka <jan.kiszka@web.de> | 2009-05-22 23:51:45 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-05-28 02:14:56 -0500 |
commit | 7736b23e8465459236ccaf39d3c162f713d921ce (patch) | |
tree | beb931ec87aa18ede7c35f379ad02244a05fdcc4 /targphys.h | |
parent | 17380ee5a755ba115739a4932e0f18f16284d5e4 (diff) | |
download | qemu-7736b23e8465459236ccaf39d3c162f713d921ce.tar.gz qemu-7736b23e8465459236ccaf39d3c162f713d921ce.tar.bz2 qemu-7736b23e8465459236ccaf39d3c162f713d921ce.zip |
kvm: Mark full address range dirty on live migration start
As Avi correctly noted, last_ram_offset does not mark the last physical
RAM address the guest may see (due to non-continuous memory regions).
Ensure that we catch them all by marking the full possible address range
dirty.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'targphys.h')
-rw-r--r-- | targphys.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/targphys.h b/targphys.h index 81a9c37335..99ab23c7a7 100644 --- a/targphys.h +++ b/targphys.h @@ -12,9 +12,11 @@ #if TARGET_PHYS_ADDR_BITS == 32 typedef uint32_t target_phys_addr_t; +#define TARGET_PHYS_ADDR_MAX UINT32_MAX #define TARGET_FMT_plx "%08x" #elif TARGET_PHYS_ADDR_BITS == 64 typedef uint64_t target_phys_addr_t; +#define TARGET_PHYS_ADDR_MAX UINT64_MAX #define TARGET_FMT_plx "%016" PRIx64 #endif #endif |