The new AMD IOMMU DMA implementation concatenates sglist entries under
certain conditions, and because saa7146 accessed the length member
directly, it did not support this scenario.
This fixes IO_PAGE_FAULTs by using the sg_dma_len macro.
Fixes: be62dbf554c5 ("iommu/amd: Convert AMD iommu driver to the dma-iommu api")
Signed-off-by: Tasos Sahanidis <tasos@tasossah.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
                         i, sg_dma_address(list), sg_dma_len(list),
                         list->offset);
 */
-               for (p = 0; p * 4096 < list->length; p++, ptr++) {
+               for (p = 0; p * 4096 < sg_dma_len(list); p++, ptr++) {
                        *ptr = cpu_to_le32(sg_dma_address(list) + p * 4096);
                        nr_pages++;
                }
 
 
                /* walk all pages, copy all page addresses to ptr1 */
                for (i = 0; i < length; i++, list++) {
-                       for (p = 0; p * 4096 < list->length; p++, ptr1++) {
+                       for (p = 0; p * 4096 < sg_dma_len(list); p++, ptr1++)
                                *ptr1 = cpu_to_le32(sg_dma_address(list) - list->offset);
-                       }
                }
 /*
                ptr1 = pt1->cpu;