drm/ttm: allow fence to be added as shared
[firefly-linux-kernel-4.4.55.git] / include / drm / ttm / ttm_execbuf_util.h
index ff11a424f752f112d27eea5afb546f861454a767..460441714413c620b8313ca9390778e089257651 100644 (file)
  *
  * @head:           list head for thread-private list.
  * @bo:             refcounted buffer object pointer.
+ * @shared:         should the fence be added shared?
  */
 
 struct ttm_validate_buffer {
        struct list_head head;
        struct ttm_buffer_object *bo;
+       bool shared;
 };
 
 /**