aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
diff options
context:
space:
mode:
authorJoel Fernandes <[email protected]>2025-07-08 14:22:19 +0000
committerNeeraj Upadhyay (AMD) <[email protected]>2025-07-16 04:08:26 +0000
commitb41642c87716bbd09797b1e4ea7d904f06c39b7b (patch)
treea7e79ae9c54d2026df59fa6a78c3f51bfb286ef8 /drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
parentDocumentation/kernel-parameters: Update rcu_normal_wake_from_gp doc (diff)
downloadkernel-b41642c87716bbd09797b1e4ea7d904f06c39b7b.tar.gz
kernel-b41642c87716bbd09797b1e4ea7d904f06c39b7b.zip
rcu: Fix rcu_read_unlock() deadloop due to IRQ work
During rcu_read_unlock_special(), if this happens during irq_exit(), we can lockup if an IPI is issued. This is because the IPI itself triggers the irq_exit() path causing a recursive lock up. This is precisely what Xiongfeng found when invoking a BPF program on the trace_tick_stop() tracepoint As shown in the trace below. Fix by managing the irq_work state correctly. irq_exit() __irq_exit_rcu() /* in_hardirq() returns false after this */ preempt_count_sub(HARDIRQ_OFFSET) tick_irq_exit() tick_nohz_irq_exit() tick_nohz_stop_sched_tick() trace_tick_stop() /* a bpf prog is hooked on this trace point */ __bpf_trace_tick_stop() bpf_trace_run2() rcu_read_unlock_special() /* will send a IPI to itself */ irq_work_queue_on(&rdp->defer_qs_iw, rdp->cpu); A simple reproducer can also be obtained by doing the following in tick_irq_exit(). It will hang on boot without the patch: static inline void tick_irq_exit(void) { + rcu_read_lock(); + WRITE_ONCE(current->rcu_read_unlock_special.b.need_qs, true); + rcu_read_unlock(); + Reported-by: Xiongfeng Wang <[email protected]> Closes: https://lore.kernel.org/all/[email protected]/ Tested-by: Qi Xi <[email protected]> Signed-off-by: Joel Fernandes <[email protected]> Reviewed-by: "Paul E. McKenney" <[email protected]> Reported-by: Linux Kernel Functional Testing <[email protected]> [neeraj: Apply Frederic's suggested fix for PREEMPT_RT] Signed-off-by: Neeraj Upadhyay (AMD) <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_object.c')
0 files changed, 0 insertions, 0 deletions