diff options
author | Philipp Zabel <p.zabel@pengutronix.de> | 2013-05-21 05:11:35 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2013-12-09 14:50:50 -0200 |
commit | c1b96a236e94d49d9396d0bbceb5524519c5c66e (patch) | |
tree | a65634750514493440bdea83364001f3a48c9b7f /include | |
parent | c7223f8f66b685f325879a88a6c955ebf46a8a36 (diff) | |
download | linux-c1b96a236e94d49d9396d0bbceb5524519c5c66e.tar.gz linux-c1b96a236e94d49d9396d0bbceb5524519c5c66e.tar.bz2 linux-c1b96a236e94d49d9396d0bbceb5524519c5c66e.zip |
[media] videobuf2: Add support for file access mode flags for DMABUF exporting
Currently it is not possible for userspace to map a DMABUF exported buffer
with write permissions. This patch allows to also pass O_RDONLY/O_RDWR when
exporting the buffer, so that userspace may map it with write permissions.
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/media/videobuf2-core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/media/videobuf2-core.h b/include/media/videobuf2-core.h index bd8218b15009..941055e9d125 100644 --- a/include/media/videobuf2-core.h +++ b/include/media/videobuf2-core.h @@ -83,7 +83,7 @@ struct vb2_fileio_data; struct vb2_mem_ops { void *(*alloc)(void *alloc_ctx, unsigned long size, gfp_t gfp_flags); void (*put)(void *buf_priv); - struct dma_buf *(*get_dmabuf)(void *buf_priv); + struct dma_buf *(*get_dmabuf)(void *buf_priv, unsigned long flags); void *(*get_userptr)(void *alloc_ctx, unsigned long vaddr, unsigned long size, int write); |