diff options
author | Marek Olšák <[email protected]> | 2018-07-11 23:24:31 -0400 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2018-07-16 13:32:33 -0400 |
commit | 342fff6cbcdd826e8a38992560a1877340e94304 (patch) | |
tree | 526edb6c2aa8ff6460421d6bd6ffbb885d674ece /src | |
parent | 6ec44b7055df9e05e090618d17476a34bdb6269c (diff) |
winsys/amdgpu: use alloca when using global_bo_list
Reviewed-by: Samuel Pitoiset <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/winsys/amdgpu/drm/amdgpu_cs.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/gallium/winsys/amdgpu/drm/amdgpu_cs.c b/src/gallium/winsys/amdgpu/drm/amdgpu_cs.c index 1aaa0667310..ec164175dbc 100644 --- a/src/gallium/winsys/amdgpu/drm/amdgpu_cs.c +++ b/src/gallium/winsys/amdgpu/drm/amdgpu_cs.c @@ -1300,14 +1300,7 @@ void amdgpu_cs_submit_ib(void *job, int thread_index) unsigned num = 0; simple_mtx_lock(&ws->global_bo_list_lock); - - handles = malloc(sizeof(handles[0]) * ws->num_buffers); - if (!handles) { - simple_mtx_unlock(&ws->global_bo_list_lock); - amdgpu_cs_context_cleanup(cs); - cs->error_code = -ENOMEM; - return; - } + handles = alloca(sizeof(handles[0]) * ws->num_buffers); LIST_FOR_EACH_ENTRY(bo, &ws->global_bo_list, u.real.global_list_item) { assert(num < ws->num_buffers); @@ -1316,7 +1309,6 @@ void amdgpu_cs_submit_ib(void *job, int thread_index) r = amdgpu_bo_list_create(ws->dev, ws->num_buffers, handles, NULL, &bo_list); - free(handles); simple_mtx_unlock(&ws->global_bo_list_lock); if (r) { fprintf(stderr, "amdgpu: buffer list creation failed (%d)\n", r); |