From: Nicolai Hähnle Date: Thu, 5 May 2016 21:35:09 +0000 (-0500) Subject: winsys/amdgpu: avoid ioctl call when fence_wait is called without timeout X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fef08af99c7e83f100a5ae25f2798131c278d841;p=mesa.git winsys/amdgpu: avoid ioctl call when fence_wait is called without timeout When user fences are used, we don't need the kernel for polling. Reviewed-by: Marek Olšák --- diff --git a/src/gallium/winsys/amdgpu/drm/amdgpu_cs.c b/src/gallium/winsys/amdgpu/drm/amdgpu_cs.c index 29692cdb035..8a801f087fb 100644 --- a/src/gallium/winsys/amdgpu/drm/amdgpu_cs.c +++ b/src/gallium/winsys/amdgpu/drm/amdgpu_cs.c @@ -89,10 +89,17 @@ bool amdgpu_fence_wait(struct pipe_fence_handle *fence, uint64_t timeout, abs_timeout = os_time_get_absolute_timeout(timeout); user_fence_cpu = rfence->user_fence_cpu_address; - if (user_fence_cpu && *user_fence_cpu >= rfence->fence.fence) { - rfence->signalled = true; - return true; + if (user_fence_cpu) { + if (*user_fence_cpu >= rfence->fence.fence) { + rfence->signalled = true; + return true; + } + + /* No timeout, just query: no need for the ioctl. */ + if (!absolute && !timeout) + return false; } + /* Now use the libdrm query. */ r = amdgpu_cs_query_fence_status(&rfence->fence, abs_timeout,