[PATCH v4 3/3] KVM: arm64: Don't pass host_debug_state to BRBE world-switch routines
Fuad Tabba
tabba at google.com
Fri Mar 27 06:23:31 PDT 2026
On Fri, 27 Mar 2026 at 13:01, Will Deacon <will at kernel.org> wrote:
>
> Now that the SPE and BRBE nVHE world-switch routines operate on the
> host_debug_state directly, tweak the BRBE code to do the same for
> consistency.
>
> This is purely cosmetic.
It is indeed... until sashiko proves me wrong again :)
Tested-by: Fuad Tabba <tabba at google.com>
Reviewed-by: Fuad Tabba <tabba at google.com>
Cheers,
/fuad
>
> Cc: Marc Zyngier <maz at kernel.org>
> Cc: Oliver Upton <oupton at kernel.org>
> Cc: James Clark <james.clark at linaro.org>
> Cc: Leo Yan <leo.yan at arm.com>
> Cc: Suzuki K Poulose <suzuki.poulose at arm.com>
> Cc: Fuad Tabba <tabba at google.com>
> Cc: Alexandru Elisei <alexandru.elisei at arm.com>
> Signed-off-by: Will Deacon <will at kernel.org>
> ---
> arch/arm64/kvm/hyp/nvhe/debug-sr.c | 12 ++++++++----
> 1 file changed, 8 insertions(+), 4 deletions(-)
>
> diff --git a/arch/arm64/kvm/hyp/nvhe/debug-sr.c b/arch/arm64/kvm/hyp/nvhe/debug-sr.c
> index 84bc80f4e36b..f8904391c125 100644
> --- a/arch/arm64/kvm/hyp/nvhe/debug-sr.c
> +++ b/arch/arm64/kvm/hyp/nvhe/debug-sr.c
> @@ -156,8 +156,10 @@ static void __trace_switch_to_host(void)
> *host_data_ptr(host_debug_state.trfcr_el1));
> }
>
> -static void __debug_save_brbe(u64 *brbcr_el1)
> +static void __debug_save_brbe(void)
> {
> + u64 *brbcr_el1 = host_data_ptr(host_debug_state.brbcr_el1);
> +
> *brbcr_el1 = 0;
>
> /* Check if the BRBE is enabled */
> @@ -173,8 +175,10 @@ static void __debug_save_brbe(u64 *brbcr_el1)
> write_sysreg_el1(0, SYS_BRBCR);
> }
>
> -static void __debug_restore_brbe(u64 brbcr_el1)
> +static void __debug_restore_brbe(void)
> {
> + u64 brbcr_el1 = *host_data_ptr(host_debug_state.brbcr_el1);
> +
> if (!brbcr_el1)
> return;
>
> @@ -190,7 +194,7 @@ void __debug_save_host_buffers_nvhe(struct kvm_vcpu *vcpu)
>
> /* Disable BRBE branch records */
> if (host_data_test_flag(HAS_BRBE))
> - __debug_save_brbe(host_data_ptr(host_debug_state.brbcr_el1));
> + __debug_save_brbe();
>
> if (__trace_needs_switch())
> __trace_switch_to_guest();
> @@ -206,7 +210,7 @@ void __debug_restore_host_buffers_nvhe(struct kvm_vcpu *vcpu)
> if (host_data_test_flag(HAS_SPE))
> __debug_restore_spe();
> if (host_data_test_flag(HAS_BRBE))
> - __debug_restore_brbe(*host_data_ptr(host_debug_state.brbcr_el1));
> + __debug_restore_brbe();
> if (__trace_needs_switch())
> __trace_switch_to_host();
> }
> --
> 2.53.0.1018.g2bb0e51243-goog
>
More information about the linux-arm-kernel
mailing list