Home
last modified time | relevance | path

Searched refs:vec2 (Results 1 – 5 of 5) sorted by relevance

/linux-4.4.14/drivers/xen/
Dbiomerge.c7 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/
Dio.h210 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/
Dio.h335 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/
Dio.h445 #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/
Dbio.h173 #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)