From: Hans Verkuil <hans.verkuil@xxxxxxxxx> For vb2-dma-sg the dma_map_sg function can return an error. This means that the prepare memop also needs to change so an error can be returned. Signed-off-by: Hans Verkuil <hans.verkuil@xxxxxxxxx> --- drivers/media/v4l2-core/videobuf2-dma-contig.c | 5 +++-- drivers/media/v4l2-core/videobuf2-dma-sg.c | 4 ++-- include/media/videobuf2-core.h | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/drivers/media/v4l2-core/videobuf2-dma-contig.c b/drivers/media/v4l2-core/videobuf2-dma-contig.c index 6675f12..ca870aa 100644 --- a/drivers/media/v4l2-core/videobuf2-dma-contig.c +++ b/drivers/media/v4l2-core/videobuf2-dma-contig.c @@ -111,16 +111,17 @@ static unsigned int vb2_dc_num_users(void *buf_priv) return atomic_read(&buf->refcount); } -static void vb2_dc_prepare(void *buf_priv) +static int vb2_dc_prepare(void *buf_priv) { struct vb2_dc_buf *buf = buf_priv; struct sg_table *sgt = buf->dma_sgt; /* DMABUF exporter will flush the cache for us */ if (!sgt || buf->db_attach) - return; + return 0; dma_sync_sg_for_device(buf->dev, sgt->sgl, sgt->nents, buf->dma_dir); + return 0; } static void vb2_dc_finish(void *buf_priv) diff --git a/drivers/media/v4l2-core/videobuf2-dma-sg.c b/drivers/media/v4l2-core/videobuf2-dma-sg.c index f3bc01b..abd5252 100644 --- a/drivers/media/v4l2-core/videobuf2-dma-sg.c +++ b/drivers/media/v4l2-core/videobuf2-dma-sg.c @@ -170,12 +170,12 @@ static void vb2_dma_sg_put(void *buf_priv) } } -static void vb2_dma_sg_prepare(void *buf_priv) +static int vb2_dma_sg_prepare(void *buf_priv) { struct vb2_dma_sg_buf *buf = buf_priv; struct sg_table *sgt = &buf->sg_table; - dma_map_sg(buf->dev, sgt->sgl, sgt->nents, buf->dma_dir); + return dma_map_sg(buf->dev, sgt->sgl, sgt->nents, buf->dma_dir) ? 0 : -EIO; } static void vb2_dma_sg_finish(void *buf_priv) diff --git a/include/media/videobuf2-core.h b/include/media/videobuf2-core.h index 02b96ef..0ac65a6 100644 --- a/include/media/videobuf2-core.h +++ b/include/media/videobuf2-core.h @@ -91,7 +91,7 @@ struct vb2_mem_ops { unsigned long size, int write); void (*put_userptr)(void *buf_priv); - void (*prepare)(void *buf_priv); + int (*prepare)(void *buf_priv); void (*finish)(void *buf_priv); void *(*attach_dmabuf)(void *alloc_ctx, struct dma_buf *dbuf, -- 2.1.0 -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html