xen/arm: Don't call setup_virtual_regions multiple time
authorJulien Grall <julien.grall@arm.com>
Wed, 25 May 2016 13:14:06 +0000 (14:14 +0100)
committerWei Liu <wei.liu2@citrix.com>
Wed, 25 May 2016 13:42:55 +0000 (14:42 +0100)
The commit 2aa925be84293b44ad587ed117184ace61b41dd6 "arm/x86: Use struct
virtual_region to do bug, symbol, and (x86) exception tables lookup."
has introduced virtual_region. The call to initialize those regions is
made in init_traps which is called during each CPU bring up.

This will result to register multiple time the same region and Xen crash
when an address is looked up.

This can be fixed by moving the call to setup_virtual_region directly in
start_xen.

Signed-off-by: Julien Grall <julien.grall@arm.com>
Reported-by: Chenxia Zhao <chenxiao.zhao@gmail.com>
Reviewed-by: Wei Liu <wei.liu2@citrix.com>
Reviewed-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Release-acked-by: Wei Liu <wei.liu2@citrix.com>
xen/arch/arm/setup.c
xen/arch/arm/traps.c

index 09ff1eae3dde993bf7660b6e591532652286d4b4..9bc11c432ebed004db7d4b53ac24d8aa018ecbac 100644 (file)
@@ -722,6 +722,7 @@ void __init start_xen(unsigned long boot_phys_offset,
     set_current((struct vcpu *)0xfffff000); /* debug sanity */
     idle_vcpu[0] = current;
 
+    setup_virtual_regions(NULL, NULL);
     /* Initialize traps early allow us to get backtrace when an error occurred */
     init_traps();
 
index 1828ea118e34601f4266b91a70c0bfca959053d2..aa3e3c2bfb4ff9b63dffb189e1af19d0c5d36fd5 100644 (file)
@@ -102,8 +102,6 @@ integer_param("debug_stack_lines", debug_stack_lines);
 
 void init_traps(void)
 {
-    setup_virtual_regions(NULL, NULL);
-
     /* Setup Hyp vector base */
     WRITE_SYSREG((vaddr_t)hyp_traps_vector, VBAR_EL2);