Lines Matching refs:timeout
177 static long vmw_fence_wait(struct dma_fence *f, bool intr, signed long timeout) in vmw_fence_wait() argument
185 long ret = timeout; in vmw_fence_wait()
188 return timeout; in vmw_fence_wait()
220 if (ret == 0 && timeout > 0) in vmw_fence_wait()
520 bool interruptible, unsigned long timeout) in vmw_fence_obj_wait() argument
522 long ret = dma_fence_wait_timeout(&fence->base, interruptible, timeout); in vmw_fence_obj_wait()
725 unsigned long timeout; in vmw_fence_obj_wait_ioctl() local
751 timeout = jiffies; in vmw_fence_obj_wait_ioctl()
752 if (time_after_eq(timeout, (unsigned long)arg->kernel_cookie)) { in vmw_fence_obj_wait_ioctl()
758 timeout = (unsigned long)arg->kernel_cookie - timeout; in vmw_fence_obj_wait_ioctl()
760 ret = vmw_fence_obj_wait(fence, arg->lazy, true, timeout); in vmw_fence_obj_wait_ioctl()