[PATCH v4 01/21] arm64: Fix labels in el2_setup macros

2021-01-18 Thread Marc Zyngier
If someone happens to write the following code: b 1f init_el2_state vhe 1: [...] they will be in for a long debugging session, as the label "1f" will be resolved *inside* the init_el2_state macro instead of after it. Not really what one expects. Instead, rewite

Re: [PATCH v4 01/21] arm64: Fix labels in el2_setup macros

2021-01-18 Thread David Brazdil
On Mon, Jan 18, 2021 at 09:45:13AM +, Marc Zyngier wrote: > If someone happens to write the following code: > > b 1f > init_el2_state vhe > 1: > [...] > > they will be in for a long debugging session, as the label "1f" > will be resolved *inside* the init_el2_state