From: Jason Ekstrand Date: Mon, 27 Mar 2017 23:01:42 +0000 (-0700) Subject: anv: Check for device loss at the end of WaitForFences X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=82573d0f752f20f76cef773de01efda8a7cc0a31;p=mesa.git anv: Check for device loss at the end of WaitForFences It's possible that the device could have been lost while we were waiting. We should let the user know if this has happened. Reviewed-by: Kenneth Graunke --- diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index 37b6f7273b1..45a6e333685 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -1857,6 +1857,7 @@ VkResult anv_WaitForFences( */ int64_t timeout = MIN2(_timeout, INT64_MAX); + VkResult result = VK_SUCCESS; uint32_t pending_fences = fenceCount; while (pending_fences) { pending_fences = 0; @@ -1877,8 +1878,10 @@ VkResult anv_WaitForFences( /* This fence is not pending. If waitAll isn't set, we can return * early. Otherwise, we have to keep going. */ - if (!waitAll) - return VK_SUCCESS; + if (!waitAll) { + result = VK_SUCCESS; + goto done; + } continue; case ANV_FENCE_STATE_SUBMITTED: @@ -1887,7 +1890,8 @@ VkResult anv_WaitForFences( */ ret = anv_gem_wait(device, fence->bo.gem_handle, &timeout); if (ret == -1 && errno == ETIME) { - return VK_TIMEOUT; + result = VK_TIMEOUT; + goto done; } else if (ret == -1) { /* We don't know the real error. */ device->lost = true; @@ -1950,7 +1954,8 @@ VkResult anv_WaitForFences( if (time_elapsed >= timeout) { pthread_mutex_unlock(&device->mutex); - return VK_TIMEOUT; + result = VK_TIMEOUT; + goto done; } timeout -= time_elapsed; @@ -1960,7 +1965,11 @@ VkResult anv_WaitForFences( } } - return VK_SUCCESS; +done: + if (unlikely(device->lost)) + return VK_ERROR_DEVICE_LOST; + + return result; } // Queue semaphore functions