diff options
author | Dave Airlie <airlied@redhat.com> | 2014-09-12 13:58:27 +1000 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2014-09-12 13:58:27 +1000 |
commit | 10d123b2f2b5bf54f59a884f12018d24a97d5a63 (patch) | |
tree | 308e3e9a7e687e9324fb7b18b5d9f90309f49ee7 /include | |
parent | e351943b081f4d9e6f692ce1a6117e8d2e71f478 (diff) | |
parent | 298593b609ecbf9e8a99e8a41c8c46acb3528468 (diff) | |
download | op-kernel-dev-10d123b2f2b5bf54f59a884f12018d24a97d5a63.zip op-kernel-dev-10d123b2f2b5bf54f59a884f12018d24a97d5a63.tar.gz |
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')
-rw-r--r-- | include/drm/ttm/ttm_execbuf_util.h | 2 |
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 ff11a42..4604417 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; }; /** |