During initialization, memory region size is aligned to page size, but size of chipid_and_omr array is less then TARGET_PAGE_SIZE. This could result in errors in some cases, specifically, it could cause errors during VM migration.
Signed-off-by: Igor Mitsyanko <i.mitsya...@gmail.com> --- hw/exynos4210.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/exynos4210.c b/hw/exynos4210.c index fa54e42..280d5d4 100644 --- a/hw/exynos4210.c +++ b/hw/exynos4210.c @@ -76,7 +76,7 @@ /* EHCI */ #define EXYNOS4210_EHCI_BASE_ADDR 0x12580000 -static uint8_t chipid_and_omr[] = { 0x11, 0x02, 0x21, 0x43, +static uint8_t chipid_and_omr[TARGET_PAGE_SIZE] = { 0x11, 0x02, 0x21, 0x43, 0x09, 0x00, 0x00, 0x00 }; void exynos4210_write_secondary(ARMCPU *cpu, -- 1.7.5.4