|
@@ -854,11 +854,11 @@ static int logical_ring_prepare(struct drm_i915_gem_request *req, int bytes)
|
|
if (unlikely(total_bytes > remain_usable)) {
|
|
if (unlikely(total_bytes > remain_usable)) {
|
|
/*
|
|
/*
|
|
* The base request will fit but the reserved space
|
|
* The base request will fit but the reserved space
|
|
- * falls off the end. So only need to to wait for the
|
|
|
|
- * reserved size after flushing out the remainder.
|
|
|
|
|
|
+ * falls off the end. So don't need an immediate wrap
|
|
|
|
+ * and only need to effectively wait for the reserved
|
|
|
|
+ * size space from the start of ringbuffer.
|
|
*/
|
|
*/
|
|
wait_bytes = remain_actual + ringbuf->reserved_size;
|
|
wait_bytes = remain_actual + ringbuf->reserved_size;
|
|
- need_wrap = true;
|
|
|
|
} else if (total_bytes > ringbuf->space) {
|
|
} else if (total_bytes > ringbuf->space) {
|
|
/* No wrapping required, just waiting. */
|
|
/* No wrapping required, just waiting. */
|
|
wait_bytes = total_bytes;
|
|
wait_bytes = total_bytes;
|