[PATCH] perf/x86/intel: Use early_initcall() to hook bts_init()

Dapeng Mi posted 1 patch 6 months, 2 weeks ago
arch/x86/events/intel/bts.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] perf/x86/intel: Use early_initcall() to hook bts_init()
Posted by Dapeng Mi 6 months, 2 weeks ago
After the commit 'd971342d38bf ("perf/x86/intel: Decouple BTS
 initialization from PEBS initialization")' is introduced, x86_pmu.bts
would initialized in bts_init() which is hooked by arch_initcall().

Whereas init_hw_perf_events() is hooked by early_initcall(). Once the
core PMU is initialized, nmi watchdog initialization is called
immediately before bts_init() is called. It leads to the BTS buffer is
not really initialized since bts_init() is not called and x86_pmu.bts is
still false at that time. Worse, BTS buffer would never be initialized
then unless all core PMU events are freed and reserve_ds_buffers()
is called again.

Thus aligning with init_hw_perf_events(), use early_initcall() to hook
bts_init() to ensure x86_pmu.bts is initialized before nmi watchdog
initialization.

Fixes: d971342d38bf ("perf/x86/intel: Decouple BTS initialization from PEBS initialization")
Signed-off-by: Dapeng Mi <dapeng1.mi@linux.intel.com>
---
 arch/x86/events/intel/bts.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/x86/events/intel/bts.c b/arch/x86/events/intel/bts.c
index 9560f693fac0..f0d9729ed255 100644
--- a/arch/x86/events/intel/bts.c
+++ b/arch/x86/events/intel/bts.c
@@ -642,4 +642,4 @@ static __init int bts_init(void)
 
 	return perf_pmu_register(&bts_pmu, "intel_bts", -1);
 }
-arch_initcall(bts_init);
+early_initcall(bts_init);

base-commit: e7d952cc39fca34386ec9f15f68cb2eaac01b5ae
-- 
2.43.0
Re: [PATCH] perf/x86/intel: Use early_initcall() to hook bts_init()
Posted by Mi, Dapeng 5 months, 1 week ago
Kindly ping.

@Peter, not sure you have bandwidth to review this change? Thanks.

On 6/6/2025 7:16 PM, Dapeng Mi wrote:
> After the commit 'd971342d38bf ("perf/x86/intel: Decouple BTS
>  initialization from PEBS initialization")' is introduced, x86_pmu.bts
> would initialized in bts_init() which is hooked by arch_initcall().
>
> Whereas init_hw_perf_events() is hooked by early_initcall(). Once the
> core PMU is initialized, nmi watchdog initialization is called
> immediately before bts_init() is called. It leads to the BTS buffer is
> not really initialized since bts_init() is not called and x86_pmu.bts is
> still false at that time. Worse, BTS buffer would never be initialized
> then unless all core PMU events are freed and reserve_ds_buffers()
> is called again.
>
> Thus aligning with init_hw_perf_events(), use early_initcall() to hook
> bts_init() to ensure x86_pmu.bts is initialized before nmi watchdog
> initialization.
>
> Fixes: d971342d38bf ("perf/x86/intel: Decouple BTS initialization from PEBS initialization")
> Signed-off-by: Dapeng Mi <dapeng1.mi@linux.intel.com>
> ---
>  arch/x86/events/intel/bts.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/x86/events/intel/bts.c b/arch/x86/events/intel/bts.c
> index 9560f693fac0..f0d9729ed255 100644
> --- a/arch/x86/events/intel/bts.c
> +++ b/arch/x86/events/intel/bts.c
> @@ -642,4 +642,4 @@ static __init int bts_init(void)
>  
>  	return perf_pmu_register(&bts_pmu, "intel_bts", -1);
>  }
> -arch_initcall(bts_init);
> +early_initcall(bts_init);
>
> base-commit: e7d952cc39fca34386ec9f15f68cb2eaac01b5ae
Re: [PATCH] perf/x86/intel: Use early_initcall() to hook bts_init()
Posted by Mi, Dapeng 6 months ago
Kindly ping...   Thanks.

On 6/6/2025 7:16 PM, Dapeng Mi wrote:
> After the commit 'd971342d38bf ("perf/x86/intel: Decouple BTS
>  initialization from PEBS initialization")' is introduced, x86_pmu.bts
> would initialized in bts_init() which is hooked by arch_initcall().
>
> Whereas init_hw_perf_events() is hooked by early_initcall(). Once the
> core PMU is initialized, nmi watchdog initialization is called
> immediately before bts_init() is called. It leads to the BTS buffer is
> not really initialized since bts_init() is not called and x86_pmu.bts is
> still false at that time. Worse, BTS buffer would never be initialized
> then unless all core PMU events are freed and reserve_ds_buffers()
> is called again.
>
> Thus aligning with init_hw_perf_events(), use early_initcall() to hook
> bts_init() to ensure x86_pmu.bts is initialized before nmi watchdog
> initialization.
>
> Fixes: d971342d38bf ("perf/x86/intel: Decouple BTS initialization from PEBS initialization")
> Signed-off-by: Dapeng Mi <dapeng1.mi@linux.intel.com>
> ---
>  arch/x86/events/intel/bts.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/x86/events/intel/bts.c b/arch/x86/events/intel/bts.c
> index 9560f693fac0..f0d9729ed255 100644
> --- a/arch/x86/events/intel/bts.c
> +++ b/arch/x86/events/intel/bts.c
> @@ -642,4 +642,4 @@ static __init int bts_init(void)
>  
>  	return perf_pmu_register(&bts_pmu, "intel_bts", -1);
>  }
> -arch_initcall(bts_init);
> +early_initcall(bts_init);
>
> base-commit: e7d952cc39fca34386ec9f15f68cb2eaac01b5ae