Currently, it asserts very late in the code flow if lpid is already initialized. Ideally, it should assert in the beginning if that is the case. This patch brings assert check in the beginning alongwith the related initialization.
Signed-off-by: Harsh Prateek Bora <hars...@linux.ibm.com> --- hw/ppc/spapr_hcall.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hw/ppc/spapr_hcall.c b/hw/ppc/spapr_hcall.c index a13e5256ab..a77b4c9076 100644 --- a/hw/ppc/spapr_hcall.c +++ b/hw/ppc/spapr_hcall.c @@ -1621,6 +1621,9 @@ static target_ulong h_enter_nested(PowerPCCPU *cpu, struct kvmppc_pt_regs *regs; hwaddr len; + assert(env->spr[SPR_LPIDR] == 0); + env->spr[SPR_LPIDR] = hv_state.lpid; + if (spapr->nested_ptcr == 0) { return H_NOT_AVAILABLE; } @@ -1667,9 +1670,6 @@ static target_ulong h_enter_nested(PowerPCCPU *cpu, address_space_unmap(CPU(cpu)->as, regs, len, len, false); - assert(env->spr[SPR_LPIDR] == 0); - env->spr[SPR_LPIDR] = hv_state.lpid; - spapr_cpu->nested_tb_offset = hv_state.tb_offset; /* -- 2.31.1