Lines Matching refs:vfrom
52 static void bounce_copy_vec(struct bio_vec *to, unsigned char *vfrom) in bounce_copy_vec() argument
59 memcpy(vto + to->bv_offset, vfrom, to->bv_len); in bounce_copy_vec()
66 #define bounce_copy_vec(to, vfrom) \ argument
67 memcpy(page_address((to)->bv_page) + (to)->bv_offset, vfrom, (to)->bv_len)
103 unsigned char *vfrom; in copy_to_high_bio_irq() local
114 vfrom = page_address(fromvec->bv_page) + in copy_to_high_bio_irq()
117 bounce_copy_vec(&tovec, vfrom); in copy_to_high_bio_irq()
228 char *vto, *vfrom; in __blk_queue_bounce() local
233 vfrom = kmap_atomic(page) + to->bv_offset; in __blk_queue_bounce()
234 memcpy(vto, vfrom, to->bv_len); in __blk_queue_bounce()
235 kunmap_atomic(vfrom); in __blk_queue_bounce()