Searched refs:vec2 (Results 1 – 5 of 5) sorted by relevance
/linux-4.4.14/drivers/xen/ |
D | biomerge.c | 7 const struct bio_vec *vec2) in xen_biovec_phys_mergeable() argument 11 unsigned long bfn2 = pfn_to_bfn(page_to_pfn(vec2->bv_page)); in xen_biovec_phys_mergeable() 13 return __BIOVEC_PHYS_MERGEABLE(vec1, vec2) && in xen_biovec_phys_mergeable()
|
/linux-4.4.14/arch/arm64/include/asm/ |
D | io.h | 210 const struct bio_vec *vec2); 211 #define BIOVEC_PHYS_MERGEABLE(vec1, vec2) \ argument 212 (__BIOVEC_PHYS_MERGEABLE(vec1, vec2) && \ 213 (!xen_domain() || xen_biovec_phys_mergeable(vec1, vec2)))
|
/linux-4.4.14/arch/x86/include/asm/ |
D | io.h | 335 const struct bio_vec *vec2); 337 #define BIOVEC_PHYS_MERGEABLE(vec1, vec2) \ argument 338 (__BIOVEC_PHYS_MERGEABLE(vec1, vec2) && \ 339 (!xen_domain() || xen_biovec_phys_mergeable(vec1, vec2)))
|
/linux-4.4.14/arch/arm/include/asm/ |
D | io.h | 445 #define BIOVEC_MERGEABLE(vec1, vec2) \ argument 446 ((bvec_to_phys((vec1)) + (vec1)->bv_len) == bvec_to_phys((vec2))) 450 const struct bio_vec *vec2); 451 #define BIOVEC_PHYS_MERGEABLE(vec1, vec2) \ argument 452 (__BIOVEC_PHYS_MERGEABLE(vec1, vec2) && \ 453 (!xen_domain() || xen_biovec_phys_mergeable(vec1, vec2)))
|
/linux-4.4.14/include/linux/ |
D | bio.h | 173 #define __BIOVEC_PHYS_MERGEABLE(vec1, vec2) \ argument 174 ((bvec_to_phys((vec1)) + (vec1)->bv_len) == bvec_to_phys((vec2))) 180 #define BIOVEC_PHYS_MERGEABLE(vec1, vec2) \ argument 181 __BIOVEC_PHYS_MERGEABLE(vec1, vec2)
|