[PATCH v3 0/4] sched/debug: Introduce per-CPU debugfs files
Aaron Tomlin 的 v3 系列包含 4 个 patch:1) 在 print_cpu() 中用 rcu_read_lock + READ_ONCE 保护 rq->curr;2) 在 print_dl_rq() 中同样保护 rq->rd;3) 用 list_for_each_entry_rcu 替换 print_cfs_stats() 中的 _safe 遍历;4) 新增 /sys/kernel/debug/sched/cpu/cpu<N>/debug。三个修复都属于 lockless 解引用导致的潜在 UAF 或 RCU 违例,Reported-by 均为 sashiko-bot。但作...