drm/ttm: allow reserving more than one shared slot v3
[linux-2.6-microblaze.git] / include / drm / ttm / ttm_execbuf_util.h
index b0fdd19..621615f 100644 (file)
  *
  * @head:           list head for thread-private list.
  * @bo:             refcounted buffer object pointer.
- * @shared:         should the fence be added shared?
+ * @num_shared:     How many shared fences we want to add.
  */
 
 struct ttm_validate_buffer {
        struct list_head head;
        struct ttm_buffer_object *bo;
-       bool shared;
+       unsigned int num_shared;
 };
 
 /**