Skip to content

Commit f73cefa

Browse files
Li HuafeiPeter Zijlstra
Li Huafei
authored and
Peter Zijlstra
committed
perf/x86: Fix smp_processor_id()-in-preemptible warnings
The following bug was triggered on a system built with CONFIG_DEBUG_PREEMPT=y: # echo p > /proc/sysrq-trigger BUG: using smp_processor_id() in preemptible [00000000] code: sh/117 caller is perf_event_print_debug+0x1a/0x4c0 CPU: 3 UID: 0 PID: 117 Comm: sh Not tainted 6.11.0-rc1 #109 Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.13.0-1ubuntu1.1 04/01/2014 Call Trace: <TASK> dump_stack_lvl+0x4f/0x60 check_preemption_disabled+0xc8/0xd0 perf_event_print_debug+0x1a/0x4c0 __handle_sysrq+0x140/0x180 write_sysrq_trigger+0x61/0x70 proc_reg_write+0x4e/0x70 vfs_write+0xd0/0x430 ? handle_mm_fault+0xc8/0x240 ksys_write+0x9c/0xd0 do_syscall_64+0x96/0x190 entry_SYSCALL_64_after_hwframe+0x4b/0x53 This is because the commit d4b294b ("perf/x86: Hybrid PMU support for counters") took smp_processor_id() outside the irq critical section. If a preemption occurs in perf_event_print_debug() and the task is migrated to another cpu, we may get incorrect pmu debug information. Move smp_processor_id() back inside the irq critical section to fix this issue. Fixes: d4b294b ("perf/x86: Hybrid PMU support for counters") Signed-off-by: Li Huafei <[email protected]> Reviewed-and-tested-by: K Prateek Nayak <[email protected]> Signed-off-by: Peter Zijlstra (Intel) <[email protected]> Reviewed-by: Kan Liang <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent b1d0e15 commit f73cefa

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

arch/x86/events/core.c

+12-10
Original file line numberDiff line numberDiff line change
@@ -1520,20 +1520,23 @@ static void x86_pmu_start(struct perf_event *event, int flags)
15201520
void perf_event_print_debug(void)
15211521
{
15221522
u64 ctrl, status, overflow, pmc_ctrl, pmc_count, prev_left, fixed;
1523+
unsigned long *cntr_mask, *fixed_cntr_mask;
1524+
struct event_constraint *pebs_constraints;
1525+
struct cpu_hw_events *cpuc;
15231526
u64 pebs, debugctl;
1524-
int cpu = smp_processor_id();
1525-
struct cpu_hw_events *cpuc = &per_cpu(cpu_hw_events, cpu);
1526-
unsigned long *cntr_mask = hybrid(cpuc->pmu, cntr_mask);
1527-
unsigned long *fixed_cntr_mask = hybrid(cpuc->pmu, fixed_cntr_mask);
1528-
struct event_constraint *pebs_constraints = hybrid(cpuc->pmu, pebs_constraints);
1529-
unsigned long flags;
1530-
int idx;
1527+
int cpu, idx;
1528+
1529+
guard(irqsave)();
1530+
1531+
cpu = smp_processor_id();
1532+
cpuc = &per_cpu(cpu_hw_events, cpu);
1533+
cntr_mask = hybrid(cpuc->pmu, cntr_mask);
1534+
fixed_cntr_mask = hybrid(cpuc->pmu, fixed_cntr_mask);
1535+
pebs_constraints = hybrid(cpuc->pmu, pebs_constraints);
15311536

15321537
if (!*(u64 *)cntr_mask)
15331538
return;
15341539

1535-
local_irq_save(flags);
1536-
15371540
if (x86_pmu.version >= 2) {
15381541
rdmsrl(MSR_CORE_PERF_GLOBAL_CTRL, ctrl);
15391542
rdmsrl(MSR_CORE_PERF_GLOBAL_STATUS, status);
@@ -1577,7 +1580,6 @@ void perf_event_print_debug(void)
15771580
pr_info("CPU#%d: fixed-PMC%d count: %016llx\n",
15781581
cpu, idx, pmc_count);
15791582
}
1580-
local_irq_restore(flags);
15811583
}
15821584

15831585
void x86_pmu_stop(struct perf_event *event, int flags)

0 commit comments

Comments
 (0)