Lines Matching defs:drm_master
643 struct drm_master { struct
645 u_int refcount; /* refcount for this master */
647 struct list_head head; /**< each minor contains a list of masters */
648 struct drm_minor *minor; /**< link back to minor we are a master for */
650 char *unique; /**< Unique identifier: e.g., busid */
651 int unique_len; /**< Length of unique field */
652 int unique_size; /**< amount allocated */
654 int blocked; /**< Blocked due to VC switch? */
658 struct drm_open_hash magiclist;
659 struct list_head magicfree;
662 struct drm_lock_data lock; /**< Information on hardware lock */
687 int (*set_busid)(struct drm_device *dev, struct drm_master *master); argument