aboutsummaryrefslogtreecommitdiffstats
path: root/include/drm/drmP.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/drm/drmP.h')
-rw-r--r--include/drm/drmP.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/drm/drmP.h b/include/drm/drmP.h
index 3c609abe8c80..e74731c1a912 100644
--- a/include/drm/drmP.h
+++ b/include/drm/drmP.h
@@ -446,7 +446,15 @@ struct drm_file {
446 int is_master; /* this file private is a master for a minor */ 446 int is_master; /* this file private is a master for a minor */
447 struct drm_master *master; /* master this node is currently associated with 447 struct drm_master *master; /* master this node is currently associated with
448 N.B. not always minor->master */ 448 N.B. not always minor->master */
449
450 /**
451 * fbs - List of framebuffers associated with this file.
452 *
453 * Protected by fbs_lock. Note that the fbs list holds a reference on
454 * the fb object to prevent it from untimely disappearing.
455 */
449 struct list_head fbs; 456 struct list_head fbs;
457 struct mutex fbs_lock;
450 458
451 wait_queue_head_t event_wait; 459 wait_queue_head_t event_wait;
452 struct list_head event_list; 460 struct list_head event_list;