From: Stefano Stabellini Date: Tue, 13 Nov 2018 17:00:25 +0000 (-0800) Subject: xen/arm: move unregister_init_virtual_region to init_done X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~2941 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=94a99789387249c2fbc9aef81a82674f87e2fcfa;p=xen.git xen/arm: move unregister_init_virtual_region to init_done Move unregister_init_virtual_region to init_done. Follow the same path as x86. It is also useful to move it later so that create_domUs can be called before that in following patches. Signed-off-by: Stefano Stabellini Reviewed-by: Julien Grall --- diff --git a/xen/arch/arm/setup.c b/xen/arch/arm/setup.c index b5256d2940..f4e403a88b 100644 --- a/xen/arch/arm/setup.c +++ b/xen/arch/arm/setup.c @@ -66,6 +66,9 @@ integer_param("xenheap_megabytes", opt_xenheap_megabytes); static __used void init_done(void) { + /* Must be done past setting system_state. */ + unregister_init_virtual_region(); + free_init_memory(); startup_cpu_idle_loop(); } @@ -961,9 +964,6 @@ void __init start_xen(unsigned long boot_phys_offset, system_state = SYS_STATE_active; - /* Must be done past setting system_state. */ - unregister_init_virtual_region(); - domain_unpause_by_systemcontroller(dom0); /* Switch on to the dynamically allocated stack for the idle vcpu