Home
last modified time | relevance | path

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

/linux-4.1.27/drivers/xen/
Dbiomerge.c7 const struct bio_vec *vec2) in xen_biovec_phys_mergeable() argument
10 unsigned long mfn2 = pfn_to_mfn(page_to_pfn(vec2->bv_page)); in xen_biovec_phys_mergeable()
12 return __BIOVEC_PHYS_MERGEABLE(vec1, vec2) && in xen_biovec_phys_mergeable()
/linux-4.1.27/arch/x86/include/asm/
Dio.h331 const struct bio_vec *vec2);
333 #define BIOVEC_PHYS_MERGEABLE(vec1, vec2) \ argument
334 (__BIOVEC_PHYS_MERGEABLE(vec1, vec2) && \
335 (!xen_domain() || xen_biovec_phys_mergeable(vec1, vec2)))
/linux-4.1.27/arch/arm64/include/asm/
Dio.h209 const struct bio_vec *vec2);
210 #define BIOVEC_PHYS_MERGEABLE(vec1, vec2) \ argument
211 (__BIOVEC_PHYS_MERGEABLE(vec1, vec2) && \
212 (!xen_domain() || xen_biovec_phys_mergeable(vec1, vec2)))
/linux-4.1.27/arch/arm/include/asm/
Dio.h381 #define BIOVEC_MERGEABLE(vec1, vec2) \ argument
382 ((bvec_to_phys((vec1)) + (vec1)->bv_len) == bvec_to_phys((vec2)))
386 const struct bio_vec *vec2);
387 #define BIOVEC_PHYS_MERGEABLE(vec1, vec2) \ argument
388 (__BIOVEC_PHYS_MERGEABLE(vec1, vec2) && \
389 (!xen_domain() || xen_biovec_phys_mergeable(vec1, vec2)))
/linux-4.1.27/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)