]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
drm/amd/pm: fix race in power state check before mutex lock
authorYang Wang <kevinyang.wang@amd.com>
Tue, 27 Jan 2026 03:07:07 +0000 (11:07 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 27 Jan 2026 23:25:15 +0000 (18:25 -0500)
commitee8d07cd5730038e33bf5e551448190bbd480eb8
treeba89e0ea36fac91546f1914f7108c79b4e25166a
parent8b1ecc9377bc641533cd9e76dfa3aee3cd04a007
drm/amd/pm: fix race in power state check before mutex lock

The power state check in amdgpu_dpm_set_powergating_by_smu() is done
before acquiring the pm mutex, leading to a race condition where:
1. Thread A checks state and thinks no change is needed
2. Thread B acquires mutex and modifies the state
3. Thread A returns without updating state, causing inconsistency

Fix this by moving the mutex lock before the power state check,
ensuring atomicity of the state check and modification.

Fixes: 6ee27ee27ba8 ("drm/amd/pm: avoid duplicate powergate/ungate setting")
Signed-off-by: Yang Wang <kevinyang.wang@amd.com>
Reviewed-by: Kenneth Feng <kenneth.feng@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
(cherry picked from commit 7a3fbdfd19ec5992c0fc2d0bd83888644f5f2f38)
drivers/gpu/drm/amd/pm/amdgpu_dpm.c