drm/amdgpu: check memory allocation failure
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Wed, 23 Aug 2017 05:52:36 +0000 (07:52 +0200)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 29 Aug 2017 19:27:48 +0000 (15:27 -0400)
commit06f10a537ec1d5fe68dc889a9a5d11afa49e6e0d
tree107aa12df416bea964231cb4b8fed3138311fc90
parenta3ce364558faa12c4f25466dfc89eb3146b8063c
drm/amdgpu: check memory allocation failure

Check memory allocation failure and return -ENOMEM in such a case.

'num_post_dep_syncobjs' still has to be set to 0 before the test in order
to have it initialized if 'amdgpu_cs_parser_fini()' is called to free
resources.

The calling graph would be, in such a case!
   failure in amdgpu_cs_process_syncobj_out_dep()
      ---> error code returned by amdgpu_cs_dependencies()
         --> amdgpu_cs_parser_fini() is called

Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu_cs.c