Lines Matching refs:timeout
19 long timeout)
24 return timeout;
27 return i915_request_wait_timeout(to_request(fence), flags, timeout);
31 timeout);
68 long timeout)
72 long ret = timeout ?: 1;
79 ret = i915_gem_object_wait_fence(fence, flags, timeout);
83 if (timeout)
84 timeout = ret;
161 * @timeout: how long to wait
166 long timeout)
169 GEM_BUG_ON(timeout < 0);
171 timeout = i915_gem_object_wait_reservation(obj->base.resv,
172 flags, timeout);
174 if (timeout < 0)
175 return timeout;
177 return !timeout ? -ETIME : 0;
208 * the timeout parameter.
209 * -ETIME: object is still busy after timeout
218 * The wait ioctl with a timeout of 0 reimplements the busy ioctl. With any
219 * non-zero timeout parameter the wait ioctl will wait for the given number of