On Tue, Jun 04, 2024 at 04:51:58PM +0100, Pierre-Clément Tosi wrote: > On Mon, Jun 03, 2024 at 03:34:24PM +0100, Will Deacon wrote: > > On Wed, May 29, 2024 at 01:12:11PM +0100, Pierre-Clément Tosi wrote: > > > Use a name that expresses the fact that the routine might not exit > > > through the guest but will always (directly or indirectly) end up > > > executing hyp_panic(). > > > > > > Use CPU_LR_OFFSET to clarify that the routine returns to hyp_panic(). > > > > > > Signed-off-by: Pierre-Clément Tosi <ptosi@xxxxxxxxxx> > > > --- > > > arch/arm64/kvm/hyp/entry.S | 6 +++--- > > > arch/arm64/kvm/hyp/hyp-entry.S | 2 +- > > > arch/arm64/kvm/hyp/include/hyp/switch.h | 4 ++-- > > > arch/arm64/kvm/hyp/nvhe/host.S | 4 ++-- > > > 4 files changed, 8 insertions(+), 8 deletions(-) > > > > Hmm, I'm not sure about this. When is __guest_exit_panic() called outside > > of guest context? > > AFAICT, it is also called from > > - the early __kvm_hyp_host_vector, installed by cpu_hyp_init_context() Well, we've just agreed to remove that one :) > - the flavors of __kvm_hyp_vector, installed by cpu_hyp_init_features() cpu_hyp_init_features() doesn't actually plumb the vector into VBAR, though, so I still think that __guest_exit_panic() is only reachable in guest context. > which start handling exceptions long before the first guest can even be spawned. I don't see how :/ Will