Mesa (master): anv/allocator: Assert that we have a valid gem handle in bo_pool_alloc

Jason Ekstrand jekstrand at kemper.freedesktop.org
Thu Oct 27 21:45:40 UTC 2016


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

Author: Jason Ekstrand <jason.ekstrand at intel.com>
Date:   Wed Oct 26 22:57:19 2016 -0700

anv/allocator: Assert that we have a valid gem handle in bo_pool_alloc

---

 src/intel/vulkan/anv_allocator.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/intel/vulkan/anv_allocator.c b/src/intel/vulkan/anv_allocator.c
index ae18f8e..36cabd7 100644
--- a/src/intel/vulkan/anv_allocator.c
+++ b/src/intel/vulkan/anv_allocator.c
@@ -831,6 +831,7 @@ anv_bo_pool_alloc(struct anv_bo_pool *pool, struct anv_bo *bo, uint32_t size)
    if (anv_ptr_free_list_pop(&pool->free_list[bucket], &next_free_void)) {
       struct bo_pool_bo_link *next_free = next_free_void;
       *bo = VG_NOACCESS_READ(&next_free->bo);
+      assert(bo->gem_handle);
       assert(bo->map == next_free);
       assert(size <= bo->size);
 




More information about the mesa-commit mailing list