Lines Matching refs:vfrom
76 static void bounce_copy_vec(struct bio_vec *to, unsigned char *vfrom) in bounce_copy_vec() argument
81 memcpy(vto + to->bv_offset, vfrom, to->bv_len); in bounce_copy_vec()
87 #define bounce_copy_vec(to, vfrom) \ argument
88 memcpy(page_address((to)->bv_page) + (to)->bv_offset, vfrom, (to)->bv_len)
134 unsigned char *vfrom; in copy_to_high_bio_irq() local
152 vfrom = page_address(fromvec.bv_page) + in copy_to_high_bio_irq()
155 bounce_copy_vec(&tovec, vfrom); in copy_to_high_bio_irq()
332 char *vto, *vfrom; in __blk_queue_bounce() local
337 vfrom = kmap_atomic(page) + to->bv_offset; in __blk_queue_bounce()
338 memcpy(vto, vfrom, to->bv_len); in __blk_queue_bounce()
339 kunmap_atomic(vfrom); in __blk_queue_bounce()