projects
/
platform
/
upstream
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6f4fa81
)
anv: Fix a potential BO handle leak
author
Jason Ekstrand
<jason@jlekstrand.net>
Fri, 25 Oct 2019 20:42:22 +0000
(15:42 -0500)
committer
Jason Ekstrand
<jason@jlekstrand.net>
Thu, 31 Oct 2019 13:46:08 +0000
(13:46 +0000)
Fixes:
731c4adcf9b
"anv/allocator: Add support for non-userptr"
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
src/intel/vulkan/anv_allocator.c
patch
|
blob
|
history
diff --git
a/src/intel/vulkan/anv_allocator.c
b/src/intel/vulkan/anv_allocator.c
index
7cfca6e
..
80c2c6f
100644
(file)
--- a/
src/intel/vulkan/anv_allocator.c
+++ b/
src/intel/vulkan/anv_allocator.c
@@
-534,9
+534,11
@@
anv_block_pool_expand_range(struct anv_block_pool *pool,
if (use_softpin) {
gem_handle = anv_gem_create(pool->device, newbo_size);
map = anv_gem_mmap(pool->device, gem_handle, 0, newbo_size, 0);
- if (map == MAP_FAILED)
+ if (map == MAP_FAILED) {
+ anv_gem_close(pool->device, gem_handle);
return vk_errorf(pool->device->instance, pool->device,
VK_ERROR_MEMORY_MAP_FAILED, "gem mmap failed: %m");
+ }
assert(center_bo_offset == 0);
} else {
/* Just leak the old map until we destroy the pool. We can't munmap it