]> git.baikalelectronics.ru Git - kernel.git/commit
drm/i915: Reduce nested prepare_remote_context() to a trylock
authorChris Wilson <chris@chris-wilson.co.uk>
Tue, 26 Nov 2019 06:55:21 +0000 (06:55 +0000)
committerChris Wilson <chris@chris-wilson.co.uk>
Tue, 26 Nov 2019 12:45:45 +0000 (12:45 +0000)
commit211d4a06fdefd8711e1954ad8e57b4186ba898d8
tree4a1f8e4170dc4ecfe4de86b0e6ef4da493e2441a
parent60ffb7572b38d54fca2929a1044a222e8ed2faa7
drm/i915: Reduce nested prepare_remote_context() to a trylock

On context retiring, we may invoke the kernel_context to unpin this
context. Elsewhere, we may use the kernel_context to modify this
context. This currently leads to an AB-BA lock inversion, so we need to
back-off from the contended lock, and repeat.

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=111732
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Fixes: f02fec1f7de1 ("drm/i915/oa: Reconfigure contexts on the fly")
Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191126065521.2331017-1-chris@chris-wilson.co.uk
drivers/gpu/drm/i915/gt/intel_context.c