Lines Matching refs:vfrom
65 static void bounce_copy_vec(struct bio_vec *to, unsigned char *vfrom) in bounce_copy_vec() argument
70 memcpy(vto + to->bv_offset, vfrom, to->bv_len); in bounce_copy_vec()
76 #define bounce_copy_vec(to, vfrom) \ argument
77 memcpy(page_address((to)->bv_page) + (to)->bv_offset, vfrom, (to)->bv_len)
115 unsigned char *vfrom; in copy_to_high_bio_irq() local
133 vfrom = page_address(fromvec.bv_page) + in copy_to_high_bio_irq()
136 bounce_copy_vec(&tovec, vfrom); in copy_to_high_bio_irq()
305 char *vto, *vfrom; in __blk_queue_bounce() local
310 vfrom = kmap_atomic(page) + to->bv_offset; in __blk_queue_bounce()
311 memcpy(vto, vfrom, to->bv_len); in __blk_queue_bounce()
312 kunmap_atomic(vfrom); in __blk_queue_bounce()