summaryrefslogtreecommitdiffstats
path: root/include/drm
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2014-09-12 13:58:27 +1000
committerDave Airlie <airlied@redhat.com>2014-09-12 13:58:27 +1000
commit10d123b2f2b5bf54f59a884f12018d24a97d5a63 (patch)
tree308e3e9a7e687e9324fb7b18b5d9f90309f49ee7 /include/drm
parente351943b081f4d9e6f692ce1a6117e8d2e71f478 (diff)
parent298593b609ecbf9e8a99e8a41c8c46acb3528468 (diff)
downloadlinux-10d123b2f2b5bf54f59a884f12018d24a97d5a63.tar.bz2
Merge branch 'drm-next-3.18' of git://people.freedesktop.org/~agd5f/linux into drm-next
concurrent buffer reads. * 'drm-next-3.18' of git://people.freedesktop.org/~agd5f/linux: drm/radeon: allow concurrent buffer reads drm/radeon: add the infrastructure for concurrent buffer access drm/ttm: allow fence to be added as shared
Diffstat (limited to 'include/drm')
-rw-r--r--include/drm/ttm/ttm_execbuf_util.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/drm/ttm/ttm_execbuf_util.h b/include/drm/ttm/ttm_execbuf_util.h
index ff11a424f752..460441714413 100644
--- a/include/drm/ttm/ttm_execbuf_util.h
+++ b/include/drm/ttm/ttm_execbuf_util.h
@@ -39,11 +39,13 @@
*
* @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;
};
/**