aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
diff options
context:
space:
mode:
authorChristian König <christian.koenig@amd.com>2018-09-14 15:03:37 -0400
committerAlex Deucher <alexander.deucher@amd.com>2018-09-19 13:36:50 -0400
commit21a7e77f77b348e73c9c67064a545e724c4a0c9a (patch)
tree8f5abf217468e2c199c5bc0c1d3d25f064c1769a /drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
parent3b2de69944cfac8bc8f43c81aeadcbefc31ed48e (diff)
drm/amdgpu: don't allocate zero sized kernel BOs
Just free the BO if the size should be zero. Signed-off-by: Christian König <christian.koenig@amd.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_object.c')
-rw-r--r--drivers/gpu/drm/amd/amdgpu/amdgpu_object.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
index e6909252aefa..84d82d5382f9 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_object.c
@@ -250,6 +250,11 @@ int amdgpu_bo_create_reserved(struct amdgpu_device *adev,
250 bool free = false; 250 bool free = false;
251 int r; 251 int r;
252 252
253 if (!size) {
254 amdgpu_bo_unref(bo_ptr);
255 return 0;
256 }
257
253 memset(&bp, 0, sizeof(bp)); 258 memset(&bp, 0, sizeof(bp));
254 bp.size = size; 259 bp.size = size;
255 bp.byte_align = align; 260 bp.byte_align = align;