Hello Marek
On Wed, Feb 11, 2015 at 9:06 AM, Marek Szyprowski
<m.szyprowski@xxxxxxxxxxx> wrote:
Are you sure about that?Unfortunately nent differs in sign to the output of dma_map_sg, so an
intermediate value must be used.
I don't get this part. dma_map_sg() returns the number of scatter list
entries mapped
to the hardware or zero if anything fails. What is the problem of assigning
it directly
to nents?
The prototype of the function is (from dma-mapping-common.h)
static inline int dma_map_sg_attrs(struct device *dev, struct scatterlist *sg,
int nents, enum dma_data_direction dir,
struct dma_attrs *attrs)
which calls map_sg at the struct dma_map_ops (dma-mapping.h)
int (*map_sg)(struct device *dev, struct scatterlist *sg,
int nents, enum dma_data_direction dir,
struct dma_attrs *attrs);
Both return int instead of unsigned int....
dma_map_sg_attrs() return 0 in case of error, so the check can beCheck last comment
simplified,
there is no need for temporary variable.
At that point both have the same value, but you are right, it is morevm_unmap_ram(buf->vaddr, buf->num_pages);
sg_free_table(buf->dma_sgt);
@@ -463,7 +470,7 @@ static int vb2_dma_sg_dmabuf_ops_attach(struct dma_buf
*dbuf, struct device *dev
rd = buf->dma_sgt->sgl;
wr = sgt->sgl;
- for (i = 0; i < sgt->orig_nents; ++i) {
+ for (i = 0; i < sgt->nents; ++i) {
Here the code iterates over every memory page in the scatter list (to create
a copy of it), not the device mapped chunks, so it must use orig_nents
like it was already there.
clear to use orig_nents
I will resend a version using orig_nents in dmabug_ops attach, but
please take a look the map_sg, I think it can return <0