aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/base/dma-buf.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/base/dma-buf.c b/drivers/base/dma-buf.c
index 1219ab7c3107..2d5ac1a1842e 100644
--- a/drivers/base/dma-buf.c
+++ b/drivers/base/dma-buf.c
@@ -133,7 +133,10 @@ struct dma_buf *dma_buf_export_named(void *priv, const struct dma_buf_ops *ops,
133 dmabuf->exp_name = exp_name; 133 dmabuf->exp_name = exp_name;
134 134
135 file = anon_inode_getfile("dmabuf", &dma_buf_fops, dmabuf, flags); 135 file = anon_inode_getfile("dmabuf", &dma_buf_fops, dmabuf, flags);
136 136 if (IS_ERR(file)) {
137 kfree(dmabuf);
138 return ERR_CAST(file);
139 }
137 dmabuf->file = file; 140 dmabuf->file = file;
138 141
139 mutex_init(&dmabuf->lock); 142 mutex_init(&dmabuf->lock);