Commit 72f86bff authored by Tomasz Stanislawski's avatar Tomasz Stanislawski Committed by Mauro Carvalho Chehab

[media] v4l: vb2-dma-contig: remove reference of alloc_ctx from a buffer

This patch removes a reference to alloc_ctx from an instance of a DMA
contiguous buffer. It helps to avoid a risk of a dangling pointer if the
context is released while the buffer is still valid. Moreover it removes one
dereference step while accessing a device structure.
Signed-off-by: default avatarTomasz Stanislawski <t.stanislaws@samsung.com>
Signed-off-by: default avatarKyungmin Park <kyungmin.park@samsung.com>
Acked-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Tested-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent f7f129ce
...@@ -23,7 +23,7 @@ struct vb2_dc_conf { ...@@ -23,7 +23,7 @@ struct vb2_dc_conf {
}; };
struct vb2_dc_buf { struct vb2_dc_buf {
struct vb2_dc_conf *conf; struct device *dev;
void *vaddr; void *vaddr;
dma_addr_t dma_addr; dma_addr_t dma_addr;
unsigned long size; unsigned long size;
...@@ -37,22 +37,21 @@ static void vb2_dc_put(void *buf_priv); ...@@ -37,22 +37,21 @@ static void vb2_dc_put(void *buf_priv);
static void *vb2_dc_alloc(void *alloc_ctx, unsigned long size) static void *vb2_dc_alloc(void *alloc_ctx, unsigned long size)
{ {
struct vb2_dc_conf *conf = alloc_ctx; struct vb2_dc_conf *conf = alloc_ctx;
struct device *dev = conf->dev;
struct vb2_dc_buf *buf; struct vb2_dc_buf *buf;
buf = kzalloc(sizeof *buf, GFP_KERNEL); buf = kzalloc(sizeof *buf, GFP_KERNEL);
if (!buf) if (!buf)
return ERR_PTR(-ENOMEM); return ERR_PTR(-ENOMEM);
buf->vaddr = dma_alloc_coherent(conf->dev, size, &buf->dma_addr, buf->vaddr = dma_alloc_coherent(dev, size, &buf->dma_addr, GFP_KERNEL);
GFP_KERNEL);
if (!buf->vaddr) { if (!buf->vaddr) {
dev_err(conf->dev, "dma_alloc_coherent of size %ld failed\n", dev_err(dev, "dma_alloc_coherent of size %ld failed\n", size);
size);
kfree(buf); kfree(buf);
return ERR_PTR(-ENOMEM); return ERR_PTR(-ENOMEM);
} }
buf->conf = conf; buf->dev = dev;
buf->size = size; buf->size = size;
buf->handler.refcount = &buf->refcount; buf->handler.refcount = &buf->refcount;
...@@ -69,7 +68,7 @@ static void vb2_dc_put(void *buf_priv) ...@@ -69,7 +68,7 @@ static void vb2_dc_put(void *buf_priv)
struct vb2_dc_buf *buf = buf_priv; struct vb2_dc_buf *buf = buf_priv;
if (atomic_dec_and_test(&buf->refcount)) { if (atomic_dec_and_test(&buf->refcount)) {
dma_free_coherent(buf->conf->dev, buf->size, buf->vaddr, dma_free_coherent(buf->dev, buf->size, buf->vaddr,
buf->dma_addr); buf->dma_addr);
kfree(buf); kfree(buf);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment