[PATCH] drm/amdgpu: use error label to handle exceptional case

Edward O'Callaghan funfunctor at folklore1984.net
Fri Sep 9 10:30:42 UTC 2016



On 09/09/2016 07:58 PM, Christian König wrote:
> Am 09.09.2016 um 11:50 schrieb Huang Rui:
>> Use error label to decrease global item unref and make codes more
>> readable.
>>
>> Signed-off-by: Huang Rui <ray.huang at amd.com>
> 
> Nice cleanup, please keep going with that. Probably more than once case
> where we have things like this.

Definitely !

> 
> Patch is Reviewed-by: Christian König <christian.koenig at amd.com>.

Reviewed-by: Edward O'Callaghan <funfunctor at folklore1984.net>

> 
> Regards,
> Christian.
> 
>> ---
>>   drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c | 22 +++++++++++++---------
>>   1 file changed, 13 insertions(+), 9 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c
>> b/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c
>> index 819c62d..2872afc 100644
>> --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c
>> +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c
>> @@ -89,10 +89,10 @@ int amdgpu_ttm_global_init(struct amdgpu_device
>> *adev)
>>       global_ref->init = &amdgpu_ttm_mem_global_init;
>>       global_ref->release = &amdgpu_ttm_mem_global_release;
>>       r = drm_global_item_ref(global_ref);
>> -    if (r != 0) {
>> +    if (r) {
>>           DRM_ERROR("Failed setting up TTM memory accounting "
>>                 "subsystem.\n");
>> -        return r;
>> +        goto error_mem;
>>       }
>>         adev->mman.bo_global_ref.mem_glob =
>> @@ -103,26 +103,30 @@ int amdgpu_ttm_global_init(struct amdgpu_device
>> *adev)
>>       global_ref->init = &ttm_bo_global_init;
>>       global_ref->release = &ttm_bo_global_release;
>>       r = drm_global_item_ref(global_ref);
>> -    if (r != 0) {
>> +    if (r) {
>>           DRM_ERROR("Failed setting up TTM BO subsystem.\n");
>> -        drm_global_item_unref(&adev->mman.mem_global_ref);
>> -        return r;
>> +        goto error_bo;
>>       }
>>         ring = adev->mman.buffer_funcs_ring;
>>       rq = &ring->sched.sched_rq[AMD_SCHED_PRIORITY_KERNEL];
>>       r = amd_sched_entity_init(&ring->sched, &adev->mman.entity,
>>                     rq, amdgpu_sched_jobs);
>> -    if (r != 0) {
>> +    if (r) {
>>           DRM_ERROR("Failed setting up TTM BO move run queue.\n");
>> -        drm_global_item_unref(&adev->mman.mem_global_ref);
>> -        drm_global_item_unref(&adev->mman.bo_global_ref.ref);
>> -        return r;
>> +        goto error_entity;
>>       }
>>         adev->mman.mem_global_referenced = true;
>>         return 0;
>> +
>> +error_entity:
>> +    drm_global_item_unref(&adev->mman.bo_global_ref.ref);
>> +error_bo:
>> +    drm_global_item_unref(&adev->mman.mem_global_ref);
>> +error_mem:
>> +    return r;
>>   }
>>     static void amdgpu_ttm_global_fini(struct amdgpu_device *adev)
> 
> 
> _______________________________________________
> amd-gfx mailing list
> amd-gfx at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/amd-gfx

-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: OpenPGP digital signature
URL: <https://lists.freedesktop.org/archives/amd-gfx/attachments/20160909/50739e0b/attachment-0001.sig>


More information about the amd-gfx mailing list