[AMD Official Use Only - General] + @Yin, ZhenGuo (Chris)<mailto:ZhenGuo.Yin@xxxxxxx> for review BR/ Monk Liu (Cloud and Virtualization Solution, SRDC) From: amd-gfx <amd-gfx-bounces@xxxxxxxxxxxxxxxxxxxxx> on behalf of Srinivasan Shanmugam <srinivasan.shanmugam@xxxxxxx> Date: Tuesday, January 23, 2024 at 16:09 To: Koenig, Christian <Christian.Koenig@xxxxxxx>, Deucher, Alexander <Alexander.Deucher@xxxxxxx> Cc: Lazar, Lijo <Lijo.Lazar@xxxxxxx>, SHANMUGAM, SRINIVASAN <SRINIVASAN.SHANMUGAM@xxxxxxx>, Liu, Monk <Monk.Liu@xxxxxxx>, amd-gfx@xxxxxxxxxxxxxxxxxxxxx <amd-gfx@xxxxxxxxxxxxxxxxxxxxx>, Zhang, Hawking <Hawking.Zhang@xxxxxxx> Subject: [PATCH] drm/amdgpu: Fix 'adev->gfx.rlc_fw' from request_firmware() not released in 'gfx_v10_0_init_microcode()' 'adev->gfx.rlc_fw' may not be released before end of gfx_v10_0_init_microcode() function. Using the function release_firmware() to release adev->gfx.rlc_fw. Fixes the below: drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c:4046 gfx_v10_0_init_microcode() warn: 'adev->gfx.rlc_fw' from request_firmware() not released on lines: 4046. Fixes: 1797ec7ffd1b ("drm/amdgpu: skip rlc ucode loading for SRIOV gfx10") Cc: Monk Liu <Monk.Liu@xxxxxxx> Cc: Lijo Lazar <lijo.lazar@xxxxxxx> Cc: Hawking Zhang <Hawking.Zhang@xxxxxxx> Cc: Christian König <christian.koenig@xxxxxxx> Cc: Alex Deucher <alexander.deucher@xxxxxxx> Signed-off-by: Srinivasan Shanmugam <srinivasan.shanmugam@xxxxxxx> --- drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c b/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c index 420c82b54650..ce76fbcc2602 100644 --- a/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c +++ b/drivers/gpu/drm/amd/amdgpu/gfx_v10_0.c @@ -4006,6 +4006,7 @@ static int gfx_v10_0_init_microcode(struct amdgpu_device *adev) rlc_hdr = (const struct rlc_firmware_header_v2_0 *)adev->gfx.rlc_fw->data; version_major = le16_to_cpu(rlc_hdr->header.header_version_major); version_minor = le16_to_cpu(rlc_hdr->header.header_version_minor); + release_firmware(adev->gfx.rlc_fw); err = amdgpu_gfx_rlc_init_microcode(adev, version_major, version_minor); if (err) goto out; -- 2.34.1
<<attachment: winmail.dat>>