diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2016-11-14 21:41:00 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2016-11-14 22:00:25 +0100 |
commit | 663f71e73ffd16327745f752269f5059bf196464 (patch) | |
tree | 110d42bd74b4e23014e9e7da1d53680ead2f0d73 /drivers/gpu/drm/i915/intel_ringbuffer.h | |
parent | drm/i915: Defer transfer onto execution timeline to actual hw submission (diff) | |
download | linux-663f71e73ffd16327745f752269f5059bf196464.tar.xz linux-663f71e73ffd16327745f752269f5059bf196464.zip |
drm/i915: Remove engine->execlist_lock
The execlist_lock is now completely subsumed by the engine->timeline->lock,
and so we can remove the redundant layer of locking.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20161114204105.29171-5-chris@chris-wilson.co.uk
Diffstat (limited to 'drivers/gpu/drm/i915/intel_ringbuffer.h')
-rw-r--r-- | drivers/gpu/drm/i915/intel_ringbuffer.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/intel_ringbuffer.h b/drivers/gpu/drm/i915/intel_ringbuffer.h index d1a728791ad4..e1351870c203 100644 --- a/drivers/gpu/drm/i915/intel_ringbuffer.h +++ b/drivers/gpu/drm/i915/intel_ringbuffer.h @@ -335,7 +335,6 @@ struct intel_engine_cs { /* Execlists */ struct tasklet_struct irq_tasklet; - spinlock_t execlist_lock; /* used inside tasklet, use spin_lock_bh */ struct execlist_port { struct drm_i915_gem_request *request; unsigned int count; |