Lines Matching refs:vfrom
53 static void bounce_copy_vec(struct bio_vec *to, unsigned char *vfrom) in bounce_copy_vec() argument
60 memcpy(vto + to->bv_offset, vfrom, to->bv_len); in bounce_copy_vec()
67 #define bounce_copy_vec(to, vfrom) \ argument
68 memcpy(page_address((to)->bv_page) + (to)->bv_offset, vfrom, (to)->bv_len)
104 unsigned char *vfrom; in copy_to_high_bio_irq() local
115 vfrom = page_address(fromvec->bv_page) + in copy_to_high_bio_irq()
118 bounce_copy_vec(&tovec, vfrom); in copy_to_high_bio_irq()
209 char *vto, *vfrom; in __blk_queue_bounce() local
214 vfrom = kmap_atomic(page) + to->bv_offset; in __blk_queue_bounce()
215 memcpy(vto, vfrom, to->bv_len); in __blk_queue_bounce()
216 kunmap_atomic(vfrom); in __blk_queue_bounce()