Discovered by 62c77e6b6001: The previous address was accidentally overlapping with the hypervisor memory.
Signed-off-by: Jan Kiszka <[email protected]> --- configs/hikey-linux-demo.c | 4 ++-- configs/hikey.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/configs/hikey-linux-demo.c b/configs/hikey-linux-demo.c index 9d8d630c..6bc576aa 100644 --- a/configs/hikey-linux-demo.c +++ b/configs/hikey-linux-demo.c @@ -67,8 +67,8 @@ struct { JAILHOUSE_MEM_LOADABLE, }, /* IVSHMEM shared memory region */ { - .phys_start = 0x7f000000, - .virt_start = 0x7f000000, + .phys_start = 0x7bf00000, + .virt_start = 0x7bf00000, .size = 0x100000, .flags = JAILHOUSE_MEM_READ | JAILHOUSE_MEM_WRITE | JAILHOUSE_MEM_ROOTSHARED, diff --git a/configs/hikey.c b/configs/hikey.c index a8ebef91..5840e60a 100644 --- a/configs/hikey.c +++ b/configs/hikey.c @@ -88,8 +88,8 @@ struct { JAILHOUSE_MEM_EXECUTE, }, /* IVSHMEM shared memory region */ { - .phys_start = 0x7f000000, - .virt_start = 0x7f000000, + .phys_start = 0x7bf00000, + .virt_start = 0x7bf00000, .size = 0x100000, .flags = JAILHOUSE_MEM_READ | JAILHOUSE_MEM_WRITE, }, -- 2.12.3 -- You received this message because you are subscribed to the Google Groups "Jailhouse" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
