goto out_free_iova;
 
        if (!(prot & IOMMU_CACHE)) {
-               struct sg_mapping_iter miter;
-               /*
-                * The CPU-centric flushing implied by SG_MITER_TO_SG isn't
-                * sufficient here, so skip it by using the "wrong" direction.
-                */
-               sg_miter_start(&miter, sgt.sgl, sgt.orig_nents, SG_MITER_FROM_SG);
-               while (sg_miter_next(&miter))
-                       arch_dma_prep_coherent(miter.page, PAGE_SIZE);
-               sg_miter_stop(&miter);
+               struct scatterlist *sg;
+               int i;
+
+               for_each_sg(sgt.sgl, sg, sgt.orig_nents, i)
+                       arch_dma_prep_coherent(sg_page(sg), sg->length);
        }
 
        if (iommu_map_sg(domain, iova, sgt.sgl, sgt.orig_nents, prot)