From: Lionel Landwerlin Date: Mon, 4 Jun 2018 08:54:29 +0000 (+0100) Subject: anv: intel: add softpin flag on imported BOs X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9aedee64acefd707aae62991f03ed43cb49da5d9;p=mesa.git anv: intel: add softpin flag on imported BOs Looks like we forgot to update this bit of the driver for softpin. Fixes: 4affeba1e9eb42 ("anv: Soft-pin everything else") Signed-off-by: Lionel Landwerlin Reviewed-by: Tapani Pälli Reviewed-by: Jason Ekstrand --- diff --git a/src/intel/vulkan/anv_intel.c b/src/intel/vulkan/anv_intel.c index 431cef5c6ac..06db5787a9c 100644 --- a/src/intel/vulkan/anv_intel.c +++ b/src/intel/vulkan/anv_intel.c @@ -76,6 +76,8 @@ VkResult anv_CreateDmaBufImageINTEL( uint64_t bo_flags = 0; if (device->instance->physicalDevice.supports_48bit_addresses) bo_flags |= EXEC_OBJECT_SUPPORTS_48B_ADDRESS; + if (device->instance->physicalDevice.use_softpin) + bo_flags |= EXEC_OBJECT_PINNED; result = anv_bo_cache_import(device, &device->bo_cache, pCreateInfo->fd, bo_flags, &mem->bo);