diff options
author | Chris Wilson | 2010-07-03 07:58:38 +0100 |
---|---|---|
committer | Chris Wilson | 2010-09-08 10:23:56 +0100 |
commit | de227ef0907258359d53e3e1530c1f3678eb2bb9 (patch) | |
tree | 86610be283f35dd2913fb94aeaca021720e99b71 /drivers/gpu/drm/i915/i915_drv.h | |
parent | 015b9c8ce50e5bfb7ea78613dcad4b30d1a0d9da (diff) |
drm/i915: Kill the active list spinlock
This spinlock only served debugging purposes in a time when we could not
be sure of the mutex ever being released upon a GPU hang. As we now
should be able rely on hangcheck to do the job for us (and that error
reporting should not itself require the struct mutex) we can kill the
incomplete attempt at protection.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'drivers/gpu/drm/i915/i915_drv.h')
-rw-r--r-- | drivers/gpu/drm/i915/i915_drv.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h index 634e1c463dec..e6fbeb43d59c 100644 --- a/drivers/gpu/drm/i915/i915_drv.h +++ b/drivers/gpu/drm/i915/i915_drv.h @@ -524,8 +524,6 @@ typedef struct drm_i915_private { */ struct list_head shrink_list; - spinlock_t active_list_lock; - /** * List of objects which are not in the ringbuffer but which * still have a write_domain which needs to be flushed before |