Lines Matching refs:cur_dest_sgl
646 struct scatterlist *cur_dest_sgl; in copy_from_bounce_buffer() local
650 cur_dest_sgl = orig_sgl; in copy_from_bounce_buffer()
654 kmap_atomic(sg_page(cur_dest_sgl)) + in copy_from_bounce_buffer()
655 cur_dest_sgl->offset; in copy_from_bounce_buffer()
657 destlen = cur_dest_sgl->length; in copy_from_bounce_buffer()
692 cur_dest_sgl->offset)); in copy_from_bounce_buffer()
710 kunmap_atomic((void *)(dest_addr - cur_dest_sgl->offset)); in copy_from_bounce_buffer()
711 cur_dest_sgl = sg_next(cur_dest_sgl); in copy_from_bounce_buffer()
733 struct scatterlist *cur_dest_sgl; in copy_to_bounce_buffer() local
738 cur_dest_sgl = bounce_sgl; in copy_to_bounce_buffer()
749 kmap_atomic(sg_page(cur_dest_sgl)); in copy_to_bounce_buffer()
753 dest = bounce_addr + cur_dest_sgl->length; in copy_to_bounce_buffer()
754 destlen = PAGE_SIZE - cur_dest_sgl->length; in copy_to_bounce_buffer()
760 cur_dest_sgl->length += copylen; in copy_to_bounce_buffer()
764 if (cur_dest_sgl->length == PAGE_SIZE) { in copy_to_bounce_buffer()
773 cur_dest_sgl = sg_next(cur_dest_sgl); in copy_to_bounce_buffer()
776 sg_page(cur_dest_sgl)); in copy_to_bounce_buffer()