diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/dma-buf.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/linux/dma-buf.h b/include/linux/dma-buf.h index 891457a86b30..bc4203dc6e18 100644 --- a/include/linux/dma-buf.h +++ b/include/linux/dma-buf.h | |||
@@ -30,6 +30,7 @@ | |||
30 | #include <linux/scatterlist.h> | 30 | #include <linux/scatterlist.h> |
31 | #include <linux/list.h> | 31 | #include <linux/list.h> |
32 | #include <linux/dma-mapping.h> | 32 | #include <linux/dma-mapping.h> |
33 | #include <linux/fs.h> | ||
33 | 34 | ||
34 | struct dma_buf; | 35 | struct dma_buf; |
35 | struct dma_buf_attachment; | 36 | struct dma_buf_attachment; |
@@ -110,6 +111,20 @@ struct dma_buf_attachment { | |||
110 | void *priv; | 111 | void *priv; |
111 | }; | 112 | }; |
112 | 113 | ||
114 | /** | ||
115 | * get_dma_buf - convenience wrapper for get_file. | ||
116 | * @dmabuf: [in] pointer to dma_buf | ||
117 | * | ||
118 | * Increments the reference count on the dma-buf, needed in case of drivers | ||
119 | * that either need to create additional references to the dmabuf on the | ||
120 | * kernel side. For example, an exporter that needs to keep a dmabuf ptr | ||
121 | * so that subsequent exports don't create a new dmabuf. | ||
122 | */ | ||
123 | static inline void get_dma_buf(struct dma_buf *dmabuf) | ||
124 | { | ||
125 | get_file(dmabuf->file); | ||
126 | } | ||
127 | |||
113 | #ifdef CONFIG_DMA_SHARED_BUFFER | 128 | #ifdef CONFIG_DMA_SHARED_BUFFER |
114 | struct dma_buf_attachment *dma_buf_attach(struct dma_buf *dmabuf, | 129 | struct dma_buf_attachment *dma_buf_attach(struct dma_buf *dmabuf, |
115 | struct device *dev); | 130 | struct device *dev); |