drm/amd/powerplay: fix memory leakage when reload (v2)
add smu_free_memory when smu fini to prevent memory leakage v2: squash in typo fix (Yintian) and warning (Harry) Signed-off-by: Yintian Tao <yttao@amd.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
32b646b215
commit
a25513e7b9
@ -648,6 +648,12 @@ int smu7_init(struct pp_hwmgr *hwmgr)
|
|||||||
|
|
||||||
int smu7_smu_fini(struct pp_hwmgr *hwmgr)
|
int smu7_smu_fini(struct pp_hwmgr *hwmgr)
|
||||||
{
|
{
|
||||||
|
struct smu7_smumgr *smu_data = (struct smu7_smumgr *)(hwmgr->smu_backend);
|
||||||
|
|
||||||
|
smu_free_memory(hwmgr->device, (void *) smu_data->header_buffer.handle);
|
||||||
|
if (!cgs_is_virtualization_enabled(hwmgr->device))
|
||||||
|
smu_free_memory(hwmgr->device, (void *) smu_data->smu_buffer.handle);
|
||||||
|
|
||||||
kfree(hwmgr->smu_backend);
|
kfree(hwmgr->smu_backend);
|
||||||
hwmgr->smu_backend = NULL;
|
hwmgr->smu_backend = NULL;
|
||||||
cgs_rel_firmware(hwmgr->device, CGS_UCODE_ID_SMU);
|
cgs_rel_firmware(hwmgr->device, CGS_UCODE_ID_SMU);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user