diff options
Diffstat (limited to 'include/drm/drm_framebuffer.h')
| -rw-r--r-- | include/drm/drm_framebuffer.h | 8 | 
1 files changed, 7 insertions, 1 deletions
diff --git a/include/drm/drm_framebuffer.h b/include/drm/drm_framebuffer.h index 4c5ee4ae54df..c50502c656e5 100644 --- a/include/drm/drm_framebuffer.h +++ b/include/drm/drm_framebuffer.h @@ -121,6 +121,12 @@ struct drm_framebuffer {  	 * @base: base modeset object structure, contains the reference count.  	 */  	struct drm_mode_object base; + +	/** +	 * @comm: Name of the process allocating the fb, used for fb dumping. +	 */ +	char comm[TASK_COMM_LEN]; +  	/**  	 * @format: framebuffer format information  	 */ @@ -264,7 +270,7 @@ static inline void drm_framebuffer_unreference(struct drm_framebuffer *fb)   *   * This functions returns the framebuffer's reference count.   */ -static inline uint32_t drm_framebuffer_read_refcount(struct drm_framebuffer *fb) +static inline uint32_t drm_framebuffer_read_refcount(const struct drm_framebuffer *fb)  {  	return kref_read(&fb->base.refcount);  }  |