Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 420ae1e2 authored by Inki Dae's avatar Inki Dae
Browse files

drm/exynos: free sg object if dma_map_sg is failed



This patch releases sgt's sg object allocated by sgt_alloc_table
correctly.

When exynos_gem_map_dma_buf was called by dma_buf_map_attachmemt(),
the sgt's sg object was allocated by sg_alloc_tale() so
if dma_map_sg() is failed, the sg object should be released.

Signed-off-by: default avatarInki Dae <inki.dae@samsung.com>
Signed-off-by: default avatarKyungmin Park <kyungmin.park@samsung.com>
parent e7808df1
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -110,6 +110,7 @@ static struct sg_table *
	nents = dma_map_sg(attach->dev, sgt->sgl, sgt->orig_nents, dir);
	nents = dma_map_sg(attach->dev, sgt->sgl, sgt->orig_nents, dir);
	if (!nents) {
	if (!nents) {
		DRM_ERROR("failed to map sgl with iommu.\n");
		DRM_ERROR("failed to map sgl with iommu.\n");
		sg_free_table(sgt);
		sgt = ERR_PTR(-EIO);
		sgt = ERR_PTR(-EIO);
		goto err_unlock;
		goto err_unlock;
	}
	}