Module: Mesa
Branch: master
Commit: fec2a08eae67806d47a435eca8395eb250ccddb4
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=fec2a08eae67806d47a435eca8395eb250ccddb4

Author: Jan Vesely <[email protected]>
Date:   Thu Jun 19 20:20:01 2014 +0200

r600g/compute: Handle failures in compute_memory_pool_finalize

Reviewed-by: Bruno JimĂ©nez <[email protected]>
Signed-off-by: Jan Vesely <[email protected]>

---

 src/gallium/drivers/r600/evergreen_compute.c |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/gallium/drivers/r600/evergreen_compute.c 
b/src/gallium/drivers/r600/evergreen_compute.c
index c0dd0f3..5c115dc 100644
--- a/src/gallium/drivers/r600/evergreen_compute.c
+++ b/src/gallium/drivers/r600/evergreen_compute.c
@@ -668,7 +668,10 @@ static void evergreen_set_global_binding(
                        buffers[i]->chunk->status |= ITEM_FOR_PROMOTING;
        }
 
-       compute_memory_finalize_pending(pool, ctx_);
+       if (compute_memory_finalize_pending(pool, ctx_) == -1) {
+               /* XXX: Unset */
+               return;
+       }
 
        for (int i = 0; i < n; i++)
        {

_______________________________________________
mesa-commit mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to