[PATCH 2/2] drm/amdgpu: fix pin count leak of PDB bo when unref
Chen, Guchun
Guchun.Chen at amd.com
Tue Mar 15 07:29:58 UTC 2022
Thanks for your review, Christian. I will send an updated patch set soon. How about patch 1 in my series "[PATCH 1/2] drm/amdgpu: prevent memory wipe in suspend/shutdown stage"?
Regards,
Guchun
-----Original Message-----
From: Koenig, Christian <Christian.Koenig at amd.com>
Sent: Tuesday, March 15, 2022 3:22 PM
To: Chen, Guchun <Guchun.Chen at amd.com>; amd-gfx at lists.freedesktop.org; Zhang, Hawking <Hawking.Zhang at amd.com>; Pan, Xinhui <Xinhui.Pan at amd.com>; Deucher, Alexander <Alexander.Deucher at amd.com>
Subject: Re: [PATCH 2/2] drm/amdgpu: fix pin count leak of PDB bo when unref
Am 15.03.22 um 08:11 schrieb Guchun Chen:
> Use amdgpu_bo_free_kernel instead of amdgpu_bo_unref to perform a
> clean unreference job.
I think the subject is incorrect. This doesn't leak the pin count, but rather produces a warning that the BO needs a proper cleanup.
> Signed-off-by: Guchun Chen <guchun.chen at amd.com>
With the subject line re-validated the patch is Reviewed-by: Christian König <christian.koenig at amd.com>
> ---
> drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c
> b/drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c
> index 431742eb7811..e4e7e6dbc6fb 100644
> --- a/drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c
> +++ b/drivers/gpu/drm/amd/amdgpu/gmc_v9_0.c
> @@ -1721,7 +1721,7 @@ static int gmc_v9_0_sw_fini(void *handle)
> amdgpu_gem_force_release(adev);
> amdgpu_vm_manager_fini(adev);
> amdgpu_gart_table_vram_free(adev);
> - amdgpu_bo_unref(&adev->gmc.pdb0_bo);
> + amdgpu_bo_free_kernel(&adev->gmc.pdb0_bo, NULL, adev->gmc.ptr_pdb0);
> amdgpu_bo_fini(adev);
>
> return 0;
More information about the amd-gfx
mailing list