diff options
author | Francisco Jerez <currojerez@riseup.net> | 2010-10-25 23:38:59 +0200 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2010-12-03 15:11:18 +1000 |
commit | e419cf0954901bb3a987f8b76cbc9654ca06121c (patch) | |
tree | 550f2a7c40b6112f88306f362dc0eaa4d0a8198f /drivers/gpu/drm/nouveau/nouveau_drv.h | |
parent | 1f6d2de2c539df6fe52ad2187191a9dfe10c7233 (diff) | |
download | blackbird-op-linux-e419cf0954901bb3a987f8b76cbc9654ca06121c.tar.gz blackbird-op-linux-e419cf0954901bb3a987f8b76cbc9654ca06121c.zip |
drm/nouveau: Add a separate class for the kernel channel mutex.
nouveau_bo_move_m2mf() needs to lock the kernel channel, and it may be
called from the pushbuf IOCTL with an user channel already locked. Use
a separate subclass for the kernel channel mutex because this is
legitimate mutex nesting.
Signed-off-by: Francisco Jerez <currojerez@riseup.net>
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau/nouveau_drv.h')
-rw-r--r-- | drivers/gpu/drm/nouveau/nouveau_drv.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_drv.h b/drivers/gpu/drm/nouveau/nouveau_drv.h index 5814db82f778..ce0475ead381 100644 --- a/drivers/gpu/drm/nouveau/nouveau_drv.h +++ b/drivers/gpu/drm/nouveau/nouveau_drv.h @@ -173,6 +173,11 @@ struct nouveau_page_flip_state { uint64_t offset; }; +enum nouveau_channel_mutex_class { + NOUVEAU_UCHANNEL_MUTEX, + NOUVEAU_KCHANNEL_MUTEX +}; + struct nouveau_channel { struct drm_device *dev; int id; |