hv: move panic out of hv_main

We cleanup ASSERT. This serial try to only panic when create
SOS failed.

Signed-off-by: Li, Fei1 <fei1.li@intel.com>
Reviewed-by: Kevin Tian <kevin.tian@intel.com>
This commit is contained in:
Li, Fei1
2018-05-28 10:23:04 +08:00
committed by lijinxia
parent 574bdc3aef
commit fe4484f5a9
2 changed files with 24 additions and 8 deletions

View File

@@ -367,6 +367,7 @@ static void get_cpu_name(void)
void bsp_boot_init(void)
{
int ret;
uint64_t start_tsc = rdtsc();
/* Clear BSS */
@@ -541,7 +542,9 @@ void bsp_boot_init(void)
console_setup_timer();
/* Start initializing the VM for this CPU */
hv_main(CPU_BOOT_ID);
ret = hv_main(CPU_BOOT_ID);
if (ret != 0)
panic("failed to start VM for bsp\n");
/* Control should not come here */
cpu_dead(CPU_BOOT_ID);
@@ -549,6 +552,7 @@ void bsp_boot_init(void)
void cpu_secondary_init(void)
{
int ret;
/* NOTE: Use of local / stack variables in this function is problematic
* since the stack is switched in the middle of the function. For this
* reason, the logical id is only temporarily stored in a static
@@ -605,7 +609,9 @@ void cpu_secondary_init(void)
/* Wait for boot processor to signal all secondary cores to continue */
pcpu_sync_sleep(&pcpu_sync, 0);
hv_main(get_cpu_id());
ret = hv_main(get_cpu_id());
if (ret != 0)
panic("hv_main ret = %d\n", ret);
/* Control will only come here for secondary CPUs not configured for
* use or if an error occurs in hv_main