drm/i915: Return early for await_start on same timeline
authorChris Wilson <chris@chris-wilson.co.uk>
Thu, 5 Mar 2020 13:48:22 +0000 (13:48 +0000)
committerChris Wilson <chris@chris-wilson.co.uk>
Thu, 5 Mar 2020 15:28:15 +0000 (15:28 +0000)
commitab7a69020fb5d5c7ba19fba60f62fd6f9ca9f779
tree5b91507a12423d740f51b57ae52c009def3cd792
parent07e9c59d63df6a1c44c1975c01827ba18b69270a
drm/i915: Return early for await_start on same timeline

Requests within a timeline are ordered by that timeline, so awaiting for
the start of a request within the timeline is a no-op. This used to work
by falling out of the mutex_trylock() as the signaler and waiter had the
same timeline and not returning an error.

Fixes: 6a79d848403d ("drm/i915: Lock signaler timeline while navigating")
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
Cc: <stable@vger.kernel.org> # v5.5+
Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20200305134822.2750496-1-chris@chris-wilson.co.uk
drivers/gpu/drm/i915/i915_request.c