From: Timothy Arceri Date: Tue, 31 Oct 2017 00:31:19 +0000 (+1100) Subject: radv: use correct alloc function when loading from disk X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e92405c55aa885bee5dfb05fac032cab5e419290;p=mesa.git radv: use correct alloc function when loading from disk Fixes regression in: dEQP-VK.api.object_management.alloc_callback_fail.graphics_pipeline Fixes: 1e84e53712ae "radv: add cache items to in memory cache when reading from disk" Reviewed-by: Bas Nieuwenhuizen --- diff --git a/src/amd/vulkan/radv_pipeline_cache.c b/src/amd/vulkan/radv_pipeline_cache.c index 91470d14191..2904b62e6b6 100644 --- a/src/amd/vulkan/radv_pipeline_cache.c +++ b/src/amd/vulkan/radv_pipeline_cache.c @@ -276,7 +276,20 @@ radv_create_shader_variants_from_pipeline_cache(struct radv_device *device, pthread_mutex_unlock(&cache->mutex); return false; } else { - radv_pipeline_cache_add_entry(cache, entry); + size_t size = entry_size(entry); + struct cache_entry *new_entry = vk_alloc(&cache->alloc, size, 8, + VK_SYSTEM_ALLOCATION_SCOPE_CACHE); + if (!new_entry) { + free(entry); + pthread_mutex_unlock(&cache->mutex); + return false; + } + + memcpy(new_entry, entry, entry_size(entry)); + free(entry); + entry = new_entry; + + radv_pipeline_cache_add_entry(cache, new_entry); } }