diff options
author | Carl Worth <cworth@cworth.org> | 2009-03-20 21:54:25 +0300 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2009-04-02 02:22:07 +0400 |
commit | 5e118f4139feafe97e913df67b1f7c1e5083e535 (patch) | |
tree | a4d73fb1bb51083ab95b6167c6a8c621f6245a63 /drivers/gpu/drm/i915/i915_drv.h | |
parent | 7026d4ac1fc134566c2c946e6c0d849fc03ba7b7 (diff) | |
download | linux-5e118f4139feafe97e913df67b1f7c1e5083e535.tar.xz |
drm/i915: Add a spinlock to protect the active_list
This is a baby-step in the direction of having finer-grained
locking than the struct_mutex. Specifically, this will enable
new debugging code to read the active list for printing out
GPU state when the GPU is wedged, (while the struct_mutex is
held, of course).
Signed-off-by: Carl Worth <cworth@cworth.org>
[anholt: indentation fix]
Signed-off-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'drivers/gpu/drm/i915/i915_drv.h')
-rw-r--r-- | drivers/gpu/drm/i915/i915_drv.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h index c0f48bb366bf..317b1223e091 100644 --- a/drivers/gpu/drm/i915/i915_drv.h +++ b/drivers/gpu/drm/i915/i915_drv.h @@ -300,6 +300,7 @@ typedef struct drm_i915_private { * * A reference is held on the buffer while on this list. */ + spinlock_t active_list_lock; struct list_head active_list; /** |