mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-09 03:38:18 +02:00
anv: check the return value of anv_execbuf_add_bo_bitset()
Because anv_execbuf_add_bo_bitset() calls anv_execbuf_add_bo(), which can fail if its memory allocations fail. I have seen dEQP tests exercising memory allocation failures during anv_execbuf_add_bo(), but I don't think the path coming from add_bo_biset() was specifically exercised. Anyway, add the error check just in case. v2: Rebase. Cc: mesa-stable Reviewed-by: Ivan Briano <ivan.briano@intel.com> Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Signed-off-by: Paulo Zanoni <paulo.r.zanoni@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20703>
This commit is contained in:
parent
ad6a036a68
commit
3d37950fd9
1 changed files with 5 additions and 3 deletions
|
|
@ -292,9 +292,11 @@ setup_execbuf_for_cmd_buffer(struct anv_execbuf *execbuf,
|
||||||
{
|
{
|
||||||
VkResult result;
|
VkResult result;
|
||||||
/* Add surface dependencies (BOs) to the execbuf */
|
/* Add surface dependencies (BOs) to the execbuf */
|
||||||
anv_execbuf_add_bo_bitset(cmd_buffer->device, execbuf,
|
result = anv_execbuf_add_bo_bitset(cmd_buffer->device, execbuf,
|
||||||
cmd_buffer->surface_relocs.dep_words,
|
cmd_buffer->surface_relocs.dep_words,
|
||||||
cmd_buffer->surface_relocs.deps, 0);
|
cmd_buffer->surface_relocs.deps, 0);
|
||||||
|
if (result != VK_SUCCESS)
|
||||||
|
return result;
|
||||||
|
|
||||||
/* First, we walk over all of the bos we've seen and add them and their
|
/* First, we walk over all of the bos we've seen and add them and their
|
||||||
* relocations to the validate list.
|
* relocations to the validate list.
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue