diff options
author | Thomas Hellstrom <thellstrom@vmware.com> | 2012-02-09 16:56:42 +0100 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2012-02-13 12:01:32 +0000 |
commit | 6b82ef50d8617f3fcd51dda9d89d973fe3bc65b8 (patch) | |
tree | 960fa96955cadb1597f50f8c4138cf27b9229480 /drivers/gpu/drm/vmwgfx/vmwgfx_drv.h | |
parent | 8b7de6aa84682a3396544fd88cd457f95484573a (diff) | |
download | talos-obmc-linux-6b82ef50d8617f3fcd51dda9d89d973fe3bc65b8.tar.gz talos-obmc-linux-6b82ef50d8617f3fcd51dda9d89d973fe3bc65b8.zip |
vmwgfx: Clean up pending event references to struct drm_file objects on close
Pending events may have stale pointer references to struct drm_file objects
after a file has been closed, but before the event is supposed to be
attached to the drm file. Remove such events on file close.
Tested with "modetest".
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com>
Reviewed-by: Jakob Bornecrantz <jakob@vmware.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/vmwgfx/vmwgfx_drv.h')
-rw-r--r-- | drivers/gpu/drm/vmwgfx/vmwgfx_drv.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.h b/drivers/gpu/drm/vmwgfx/vmwgfx_drv.h index 7f09db178fce..93505ce0ed10 100644 --- a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.h +++ b/drivers/gpu/drm/vmwgfx/vmwgfx_drv.h @@ -62,6 +62,7 @@ struct vmw_fpriv { struct drm_master *locked_master; struct ttm_object_file *tfile; + struct list_head fence_events; }; struct vmw_dma_buffer { |