Re: [PATCH 4/5] ppc: spapr: cleanup spapr_exit_nested() with helper routines.

2023-04-17 Thread Harsh Prateek Bora
On 4/14/23 17:28, Fabiano Rosas wrote: Harsh Prateek Bora writes: Currently, in spapr_exit_nested(), it does a lot of register state restoring from ptregs/hvstate after mapping each of those before restoring the L1 host state. This patch breaks down those set of ops to respective helper rou

Re: [PATCH 4/5] ppc: spapr: cleanup spapr_exit_nested() with helper routines.

2023-04-14 Thread Fabiano Rosas
Harsh Prateek Bora writes: > Currently, in spapr_exit_nested(), it does a lot of register state > restoring from ptregs/hvstate after mapping each of those before > restoring the L1 host state. This patch breaks down those set of ops > to respective helper routines for better code readability/mai

[PATCH 4/5] ppc: spapr: cleanup spapr_exit_nested() with helper routines.

2023-03-30 Thread Harsh Prateek Bora
Currently, in spapr_exit_nested(), it does a lot of register state restoring from ptregs/hvstate after mapping each of those before restoring the L1 host state. This patch breaks down those set of ops to respective helper routines for better code readability/maintenance. Signed-off-by: Harsh Prate