summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Ekstrand <[email protected]>2018-10-26 13:36:01 -0500
committerJason Ekstrand <[email protected]>2018-10-27 00:02:32 -0500
commitcbd44686952b4275d654bcb3555111b412b8c8f4 (patch)
treeb2807fcb6d0509a063a1bfdb46cc07ad9c14f380
parent663a113700a94ca9d163f020b3317f6b319c4154 (diff)
anv: Flag semaphore BOs as external
It probably doesn't actually break anything but it does cause some assertions in debug builds. Fixes: 7a89a0d9edae6 "anv: Use separate MOCS settings for external BOs" Reviewed-by: Lionel Landwerlin <[email protected]>
-rw-r--r--src/intel/vulkan/anv_queue.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/intel/vulkan/anv_queue.c b/src/intel/vulkan/anv_queue.c
index 6247ba8751e..76a0a10e250 100644
--- a/src/intel/vulkan/anv_queue.c
+++ b/src/intel/vulkan/anv_queue.c
@@ -962,7 +962,7 @@ VkResult anv_CreateSemaphore(
} else {
semaphore->permanent.type = ANV_SEMAPHORE_TYPE_BO;
VkResult result = anv_bo_cache_alloc(device, &device->bo_cache,
- 4096, 0,
+ 4096, ANV_BO_EXTERNAL,
&semaphore->permanent.bo);
if (result != VK_SUCCESS) {
vk_free2(&device->alloc, pAllocator, semaphore);
@@ -1111,7 +1111,8 @@ VkResult anv_ImportSemaphoreFdKHR(
new_impl.type = ANV_SEMAPHORE_TYPE_BO;
VkResult result = anv_bo_cache_import(device, &device->bo_cache,
- fd, 0, &new_impl.bo);
+ fd, ANV_BO_EXTERNAL,
+ &new_impl.bo);
if (result != VK_SUCCESS)
return result;