On Thu 2023-05-04 15:13:41, Douglas Anderson wrote: > In preparation for the buddy hardlockup detector where the CPU > checking for lockup might not be the currently running CPU, add a > "cpu" parameter to watchdog_hardlockup_check(). > > --- a/kernel/watchdog.c > +++ b/kernel/watchdog.c > @@ -92,14 +92,14 @@ static DEFINE_PER_CPU(unsigned long, hrtimer_interrupts_saved); > static DEFINE_PER_CPU(bool, watchdog_hardlockup_processed); > static unsigned long watchdog_hardlockup_dumped_stacks; > > -static bool watchdog_hardlockup_is_lockedup(void) > +static bool watchdog_hardlockup_is_lockedup(unsigned int cpu) > { > - unsigned long hrint = __this_cpu_read(hrtimer_interrupts); > + unsigned long hrint = per_cpu(hrtimer_interrupts, cpu); My radar tells me that this should be READ_ONCE(per_cpu(hrtimer_interrupts, cpu)) when the value might be modified on another CPU. Otherwise, the compiler is allowed to split the read into more instructions. It will be needed for the buddy detector. And it will require also incrementing the value in watchdog_hardlockup_interrupt_count() an atomic way. Note that __this_cpu_inc_return() does not guarantee atomicity according to my understanding. In theory, the following should work because counter will never be incremented in parallel: static unsigned long watchdog_hardlockup_interrupt_count(void) { unsigned long count; count = __this_cpu_read(hrtimer_interrupts); count++; WRITE_ONCE(*raw_cpu_ptr(hrtimer_interrupts), count); } but it is nasty. A more elegant solution might be using atomic_t for hrtimer_interrupts counter. > - if (__this_cpu_read(hrtimer_interrupts_saved) == hrint) > + if (per_cpu(hrtimer_interrupts_saved, cpu) == hrint) > return true; > > - __this_cpu_write(hrtimer_interrupts_saved, hrint); > + per_cpu(hrtimer_interrupts_saved, cpu) = hrint; IMHO, hrtimer_interrupts_saved might be handled this way. The value is read/written only by this function. The buddy watchdog should see consistent values even when the buddy CPU goes offline. This check should never race because this CPU should get touched when another buddy gets assigned. Well, it would deserve a comment. > > return false; > } > @@ -117,35 +117,50 @@ void watchdog_hardlockup_check(struct pt_regs *regs) > * fired multiple times before we overflow'd. If it hasn't > * then this is a good indication the cpu is stuck > */ > - if (watchdog_hardlockup_is_lockedup()) { > + if (watchdog_hardlockup_is_lockedup(cpu)) { > unsigned int this_cpu = smp_processor_id(); > + struct cpumask backtrace_mask = *cpu_online_mask; > > /* Only handle hardlockups once. */ > - if (__this_cpu_read(watchdog_hardlockup_processed)) > + if (per_cpu(watchdog_hardlockup_processed, cpu)) This should not need READ_ONCE()/WRITE_ONCE() because it is just bool. Also it is read/modified only in this function on the same CPU. > return; > > - pr_emerg("Watchdog detected hard LOCKUP on cpu %d\n", this_cpu); > + pr_emerg("Watchdog detected hard LOCKUP on cpu %d\n", cpu); > print_modules(); > print_irqtrace_events(current); > - if (regs) > + if (regs) { > show_regs(regs); > - else > - dump_stack(); > + cpumask_clear_cpu(cpu, &backtrace_mask); > + } else { > + /* > + * If the locked up CPU is different than the CPU we're > + * running on then we'll try to backtrace the CPU that > + * locked up and then exclude it from later backtraces. > + * If that fails or if we're running on the locked up > + * CPU, just do a normal backtrace. > + */ > + if (cpu != this_cpu && trigger_single_cpu_backtrace(cpu)) { > + cpumask_clear_cpu(cpu, &backtrace_mask); > + } else { > + dump_stack(); > + cpumask_clear_cpu(this_cpu, &backtrace_mask); This will dump the stack on the current CPU when trigger_single_cpu_backtrace(cpu) is not supported. It would be confusing because the buddy watchdog could be here only when this_cpu is not hardlocked. It should be: if (cpu == this_cpu) { if (regs) show_regs(regs); else dump_stack(); cpumask_clear_cpu(cpu, &backtrace_mask); } else { if (trigger_single_cpu_backtrace(cpu) cpumask_clear_cpu(cpu, &backtrace_mask); } > + } > + } > > /* > - * Perform all-CPU dump only once to avoid multiple hardlockups > - * generating interleaving traces > + * Perform multi-CPU dump only once to avoid multiple > + * hardlockups generating interleaving traces > */ > if (sysctl_hardlockup_all_cpu_backtrace && > !test_and_set_bit(0, &watchdog_hardlockup_dumped_stacks)) > - trigger_allbutself_cpu_backtrace(); > + trigger_cpumask_backtrace(&backtrace_mask); > > if (hardlockup_panic) > nmi_panic(regs, "Hard LOCKUP"); > > - __this_cpu_write(watchdog_hardlockup_processed, true); > + per_cpu(watchdog_hardlockup_processed, cpu) = true; > } else { > - __this_cpu_write(watchdog_hardlockup_processed, false); > + per_cpu(watchdog_hardlockup_processed, cpu) = false; > } > } > Best Regards, Petr