]> git.ipfire.org Git - thirdparty/linux.git/commit
drm/amdgpu: fix a memory leak in fence cleanup when unloading
authorAlex Deucher <alexander.deucher@amd.com>
Thu, 4 Sep 2025 16:35:05 +0000 (12:35 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 9 Sep 2025 20:10:10 +0000 (16:10 -0400)
commita525fa37aac36c4591cc8b07ae8957862415fbd5
treeabfb63d66678cec8a50695707e3edb72b03a4ac9
parent2fd653b9bb5aacec5d4c421ab290905898fe85a2
drm/amdgpu: fix a memory leak in fence cleanup when unloading

Commit b61badd20b44 ("drm/amdgpu: fix usage slab after free")
reordered when amdgpu_fence_driver_sw_fini() was called after
that patch, amdgpu_fence_driver_sw_fini() effectively became
a no-op as the sched entities we never freed because the
ring pointers were already set to NULL.  Remove the NULL
setting.

Reported-by: Lin.Cao <lincao12@amd.com>
Cc: Vitaly Prosyak <vitaly.prosyak@amd.com>
Cc: Christian König <christian.koenig@amd.com>
Fixes: b61badd20b44 ("drm/amdgpu: fix usage slab after free")
Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu_ring.c