38 #define BIO_BUG_ON BUG_ON
43 #define BIO_MAX_PAGES 256
44 #define BIO_MAX_SIZE (BIO_MAX_PAGES << PAGE_CACHE_SHIFT)
45 #define BIO_MAX_SECTORS (BIO_MAX_SIZE >> 9)
50 #define BIO_PRIO_SHIFT (8 * sizeof(unsigned long) - IOPRIO_BITS)
51 #define bio_prio(bio) ((bio)->bi_rw >> BIO_PRIO_SHIFT)
52 #define bio_prio_valid(bio) ioprio_valid(bio_prio(bio))
54 #define bio_set_prio(bio, prio) do { \
55 WARN_ON(prio >= (1 << IOPRIO_BITS)); \
56 (bio)->bi_rw &= ((1UL << BIO_PRIO_SHIFT) - 1); \
57 (bio)->bi_rw |= ((unsigned long) (prio) << BIO_PRIO_SHIFT); \
64 #define bio_iovec_idx(bio, idx) (&((bio)->bi_io_vec[(idx)]))
65 #define bio_iovec(bio) bio_iovec_idx((bio), (bio)->bi_idx)
66 #define bio_page(bio) bio_iovec((bio))->bv_page
67 #define bio_offset(bio) bio_iovec((bio))->bv_offset
68 #define bio_segments(bio) ((bio)->bi_vcnt - (bio)->bi_idx)
69 #define bio_sectors(bio) ((bio)->bi_size >> 9)
71 static inline unsigned int bio_cur_bytes(
struct bio *bio)
74 return bio_iovec(bio)->bv_len;
79 static inline void *bio_data(
struct bio *bio)
87 static inline int bio_has_allocated_vec(
struct bio *bio)
89 return bio->bi_io_vec && bio->bi_io_vec != bio->bi_inline_vecs;
95 #define bio_to_phys(bio) (page_to_phys(bio_page((bio))) + (unsigned long) bio_offset((bio)))
96 #define bvec_to_phys(bv) (page_to_phys((bv)->bv_page) + (unsigned long) (bv)->bv_offset)
104 #define __bio_kmap_atomic(bio, idx, kmtype) \
105 (kmap_atomic(bio_iovec_idx((bio), (idx))->bv_page) + \
106 bio_iovec_idx((bio), (idx))->bv_offset)
108 #define __bio_kunmap_atomic(addr, kmtype) kunmap_atomic(addr)
114 #define __BVEC_END(bio) bio_iovec_idx((bio), (bio)->bi_vcnt - 1)
115 #define __BVEC_START(bio) bio_iovec_idx((bio), (bio)->bi_idx)
118 #define __BIOVEC_PHYS_MERGEABLE(vec1, vec2) \
119 ((bvec_to_phys((vec1)) + (vec1)->bv_len) == bvec_to_phys((vec2)))
124 #ifndef BIOVEC_PHYS_MERGEABLE
125 #define BIOVEC_PHYS_MERGEABLE(vec1, vec2) \
126 __BIOVEC_PHYS_MERGEABLE(vec1, vec2)
129 #define __BIO_SEG_BOUNDARY(addr1, addr2, mask) \
130 (((addr1) | (mask)) == (((addr2) - 1) | (mask)))
131 #define BIOVEC_SEG_BOUNDARY(q, b1, b2) \
132 __BIO_SEG_BOUNDARY(bvec_to_phys((b1)), bvec_to_phys((b2)) + (b2)->bv_len, queue_segment_boundary((q)))
133 #define BIO_SEG_BOUNDARY(q, b1, b2) \
134 BIOVEC_SEG_BOUNDARY((q), __BVEC_END((b1)), __BVEC_START((b2)))
136 #define bio_io_error(bio) bio_endio((bio), -EIO)
142 #define __bio_for_each_segment(bvl, bio, i, start_idx) \
143 for (bvl = bio_iovec_idx((bio), (start_idx)), i = (start_idx); \
144 i < (bio)->bi_vcnt; \
147 #define bio_for_each_segment(bvl, bio, i) \
148 __bio_for_each_segment(bvl, bio, i, (bio)->bi_idx)
164 #define bio_get(bio) atomic_inc(&(bio)->bi_cnt)
166 #if defined(CONFIG_BLK_DEV_INTEGRITY)
170 struct bio_integrity_payload {
176 bio_end_io_t *bip_end_io;
178 unsigned int bip_size;
180 unsigned short bip_slab;
181 unsigned short bip_vcnt;
182 unsigned short bip_idx;
185 struct bio_vec bip_vec[0];
200 struct bio bio1, bio2;
201 struct bio_vec bv1, bv2;
202 #if defined(CONFIG_BLK_DEV_INTEGRITY)
203 struct bio_integrity_payload bip1, bip2;
209 extern struct bio_pair *
bio_split(
struct bio *
bi,
int first_sectors);
212 extern struct bio_set *
bioset_create(
unsigned int,
unsigned int);
216 extern void bio_put(
struct bio *);
218 extern void __bio_clone(
struct bio *,
struct bio *);
223 static inline struct bio *bio_alloc(
gfp_t gfp_mask,
unsigned int nr_iovecs)
228 static inline struct bio *bio_clone(
struct bio *bio,
gfp_t gfp_mask)
233 static inline struct bio *bio_kmalloc(
gfp_t gfp_mask,
unsigned int nr_iovecs)
238 static inline struct bio *bio_clone_kmalloc(
struct bio *bio,
gfp_t gfp_mask)
244 extern void bio_endio(
struct bio *,
int);
251 extern int bio_add_page(
struct bio *,
struct page *,
unsigned int,
unsigned int);
253 unsigned int,
unsigned int);
257 unsigned long,
unsigned int,
int,
gfp_t);
271 #ifndef ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
272 # error "You should define ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE for your platform"
274 #if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
275 extern void bio_flush_dcache_pages(
struct bio *
bi);
277 static inline void bio_flush_dcache_pages(
struct bio *
bi)
283 unsigned long,
unsigned int,
int,
gfp_t);
285 struct rq_map_data *,
struct sg_iovec *,
290 extern void bvec_free_bs(
struct bio_set *,
struct bio_vec *,
unsigned int);
293 #ifdef CONFIG_BLK_CGROUP
294 int bio_associate_current(
struct bio *bio);
295 void bio_disassociate_task(
struct bio *bio);
297 static inline int bio_associate_current(
struct bio *bio) {
return -
ENOENT; }
298 static inline void bio_disassociate_task(
struct bio *bio) { }
307 #define BIO_POOL_SIZE 2
308 #define BIOVEC_NR_POOLS 6
309 #define BIOVEC_MAX_IDX (BIOVEC_NR_POOLS - 1)
313 unsigned int front_pad;
316 #if defined(CONFIG_BLK_DEV_INTEGRITY)
332 #define BIO_SPLIT_ENTRIES 2
334 #ifdef CONFIG_HIGHMEM
339 static inline char *bvec_kmap_irq(
struct bio_vec *bvec,
unsigned long *
flags)
352 return (
char *) addr + bvec->bv_offset;
355 static inline void bvec_kunmap_irq(
char *
buffer,
unsigned long *flags)
364 static inline char *bvec_kmap_irq(
struct bio_vec *bvec,
unsigned long *flags)
369 static inline void bvec_kunmap_irq(
char *buffer,
unsigned long *flags)
375 static inline char *__bio_kmap_irq(
struct bio *bio,
unsigned short idx,
376 unsigned long *flags)
378 return bvec_kmap_irq(bio_iovec_idx(bio, idx), flags);
380 #define __bio_kunmap_irq(buf, flags) bvec_kunmap_irq(buf, flags)
382 #define bio_kmap_irq(bio, flags) \
383 __bio_kmap_irq((bio), (bio)->bi_idx, (flags))
384 #define bio_kunmap_irq(buf,flags) __bio_kunmap_irq(buf, flags)
389 static inline bool bio_has_data(
struct bio *bio)
391 if (bio && bio->bi_vcnt)
397 static inline bool bio_is_rw(
struct bio *bio)
399 if (!bio_has_data(bio))
408 static inline bool bio_mergeable(
struct bio *bio)
428 static inline int bio_list_empty(
const struct bio_list *
bl)
430 return bl->head ==
NULL;
433 static inline void bio_list_init(
struct bio_list *
bl)
435 bl->head = bl->tail =
NULL;
438 #define bio_list_for_each(bio, bl) \
439 for (bio = (bl)->head; bio; bio = bio->bi_next)
441 static inline unsigned bio_list_size(
const struct bio_list *
bl)
446 bio_list_for_each(bio, bl)
457 bl->tail->bi_next = bio;
464 static inline void bio_list_add_head(
struct bio_list *bl,
struct bio *bio)
466 bio->bi_next = bl->head;
474 static inline void bio_list_merge(
struct bio_list *bl,
struct bio_list *bl2)
480 bl->tail->bi_next = bl2->head;
482 bl->head = bl2->head;
484 bl->tail = bl2->tail;
487 static inline void bio_list_merge_head(
struct bio_list *bl,
494 bl2->tail->bi_next = bl->head;
496 bl->tail = bl2->tail;
498 bl->head = bl2->head;
501 static inline struct bio *bio_list_peek(
struct bio_list *bl)
506 static inline struct bio *bio_list_pop(
struct bio_list *bl)
508 struct bio *bio = bl->head;
511 bl->head = bl->head->bi_next;
521 static inline struct bio *bio_list_get(
struct bio_list *bl)
523 struct bio *bio = bl->head;
525 bl->head = bl->tail =
NULL;
530 #if defined(CONFIG_BLK_DEV_INTEGRITY)
532 #define bip_vec_idx(bip, idx) (&(bip->bip_vec[(idx)]))
533 #define bip_vec(bip) bip_vec_idx(bip, 0)
535 #define __bip_for_each_vec(bvl, bip, i, start_idx) \
536 for (bvl = bip_vec_idx((bip), (start_idx)), i = (start_idx); \
537 i < (bip)->bip_vcnt; \
540 #define bip_for_each_vec(bvl, bip, i) \
541 __bip_for_each_vec(bvl, bip, i, (bip)->bip_idx)
543 #define bio_for_each_integrity_vec(_bvl, _bio, _iter) \
545 bip_for_each_vec(_bvl, _bio->bi_integrity, _iter)
547 #define bio_integrity(bio) (bio->bi_integrity != NULL)
567 static inline int bio_integrity(
struct bio *bio)
610 unsigned int bytes_done)