diff options
author | Samuel Pitoiset <[email protected]> | 2018-06-21 14:39:30 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2018-06-22 17:47:10 +0200 |
commit | ca59c3906d6b416a2d44fd5ad0c39e2b9c6325d8 (patch) | |
tree | d4492ec086604ec1f2da3f64edceaf2848cb1c6e /src/amd | |
parent | 68d9517690989d4b4976b4a34d73c35d473baedd (diff) |
radv: always check the return error when submitting a CS
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/amd')
-rw-r--r-- | src/amd/vulkan/radv_device.c | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index 681d8a12c75..b72b5d969df 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -3175,6 +3175,7 @@ radv_sparse_image_opaque_bind_memory(struct radv_device *device, struct radeon_winsys_fence *base_fence = fence ? fence->fence : NULL; bool fence_emitted = false; VkResult result; + int ret; for (uint32_t i = 0; i < bindInfoCount; ++i) { struct radv_winsys_sem_info sem_info; @@ -3200,11 +3201,16 @@ radv_sparse_image_opaque_bind_memory(struct radv_device *device, return result; if (pBindInfo[i].waitSemaphoreCount || pBindInfo[i].signalSemaphoreCount) { - queue->device->ws->cs_submit(queue->hw_ctx, queue->queue_idx, - &queue->device->empty_cs[queue->queue_family_index], - 1, NULL, NULL, - &sem_info, NULL, - false, base_fence); + ret = queue->device->ws->cs_submit(queue->hw_ctx, queue->queue_idx, + &queue->device->empty_cs[queue->queue_family_index], + 1, NULL, NULL, + &sem_info, NULL, + false, base_fence); + if (ret) { + radv_loge("failed to submit CS %d\n", i); + abort(); + } + fence_emitted = true; if (fence) fence->submitted = true; |