Commit a3e722da authored by Gerd Hoffmann's avatar Gerd Hoffmann
parent 913965c4
...@@ -51,25 +51,24 @@ static struct sg_table *map_udmabuf(struct dma_buf_attachment *at, ...@@ -51,25 +51,24 @@ static struct sg_table *map_udmabuf(struct dma_buf_attachment *at,
{ {
struct udmabuf *ubuf = at->dmabuf->priv; struct udmabuf *ubuf = at->dmabuf->priv;
struct sg_table *sg; struct sg_table *sg;
int ret;
sg = kzalloc(sizeof(*sg), GFP_KERNEL); sg = kzalloc(sizeof(*sg), GFP_KERNEL);
if (!sg) if (!sg)
goto err1; return ERR_PTR(-ENOMEM);
if (sg_alloc_table_from_pages(sg, ubuf->pages, ubuf->pagecount, ret = sg_alloc_table_from_pages(sg, ubuf->pages, ubuf->pagecount,
0, ubuf->pagecount << PAGE_SHIFT, 0, ubuf->pagecount << PAGE_SHIFT,
GFP_KERNEL) < 0) GFP_KERNEL);
goto err2; if (ret < 0)
goto err;
if (!dma_map_sg(at->dev, sg->sgl, sg->nents, direction)) if (!dma_map_sg(at->dev, sg->sgl, sg->nents, direction))
goto err3; goto err;
return sg; return sg;
err3: err:
sg_free_table(sg); sg_free_table(sg);
err2:
kfree(sg); kfree(sg);
err1: return ERR_PTR(ret);
return ERR_PTR(-ENOMEM);
} }
static void unmap_udmabuf(struct dma_buf_attachment *at, static void unmap_udmabuf(struct dma_buf_attachment *at,
......
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