]> asedeno.scripts.mit.edu Git - linux.git/blob - include/linux/bio.h
block: remove bio_rewind_iter()
[linux.git] / include / linux / bio.h
1 /*
2  * Copyright (C) 2001 Jens Axboe <axboe@suse.de>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  *
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public Licens
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-
17  */
18 #ifndef __LINUX_BIO_H
19 #define __LINUX_BIO_H
20
21 #include <linux/highmem.h>
22 #include <linux/mempool.h>
23 #include <linux/ioprio.h>
24 #include <linux/bug.h>
25
26 #ifdef CONFIG_BLOCK
27
28 #include <asm/io.h>
29
30 /* struct bio, bio_vec and BIO_* flags are defined in blk_types.h */
31 #include <linux/blk_types.h>
32
33 #define BIO_DEBUG
34
35 #ifdef BIO_DEBUG
36 #define BIO_BUG_ON      BUG_ON
37 #else
38 #define BIO_BUG_ON
39 #endif
40
41 #ifdef CONFIG_THP_SWAP
42 #if HPAGE_PMD_NR > 256
43 #define BIO_MAX_PAGES           HPAGE_PMD_NR
44 #else
45 #define BIO_MAX_PAGES           256
46 #endif
47 #else
48 #define BIO_MAX_PAGES           256
49 #endif
50
51 #define bio_prio(bio)                   (bio)->bi_ioprio
52 #define bio_set_prio(bio, prio)         ((bio)->bi_ioprio = prio)
53
54 #define bio_iter_iovec(bio, iter)                               \
55         bvec_iter_bvec((bio)->bi_io_vec, (iter))
56
57 #define bio_iter_page(bio, iter)                                \
58         bvec_iter_page((bio)->bi_io_vec, (iter))
59 #define bio_iter_len(bio, iter)                                 \
60         bvec_iter_len((bio)->bi_io_vec, (iter))
61 #define bio_iter_offset(bio, iter)                              \
62         bvec_iter_offset((bio)->bi_io_vec, (iter))
63
64 #define bio_page(bio)           bio_iter_page((bio), (bio)->bi_iter)
65 #define bio_offset(bio)         bio_iter_offset((bio), (bio)->bi_iter)
66 #define bio_iovec(bio)          bio_iter_iovec((bio), (bio)->bi_iter)
67
68 #define bio_multiple_segments(bio)                              \
69         ((bio)->bi_iter.bi_size != bio_iovec(bio).bv_len)
70
71 #define bvec_iter_sectors(iter) ((iter).bi_size >> 9)
72 #define bvec_iter_end_sector(iter) ((iter).bi_sector + bvec_iter_sectors((iter)))
73
74 #define bio_sectors(bio)        bvec_iter_sectors((bio)->bi_iter)
75 #define bio_end_sector(bio)     bvec_iter_end_sector((bio)->bi_iter)
76
77 /*
78  * Return the data direction, READ or WRITE.
79  */
80 #define bio_data_dir(bio) \
81         (op_is_write(bio_op(bio)) ? WRITE : READ)
82
83 /*
84  * Check whether this bio carries any data or not. A NULL bio is allowed.
85  */
86 static inline bool bio_has_data(struct bio *bio)
87 {
88         if (bio &&
89             bio->bi_iter.bi_size &&
90             bio_op(bio) != REQ_OP_DISCARD &&
91             bio_op(bio) != REQ_OP_SECURE_ERASE &&
92             bio_op(bio) != REQ_OP_WRITE_ZEROES)
93                 return true;
94
95         return false;
96 }
97
98 static inline bool bio_no_advance_iter(struct bio *bio)
99 {
100         return bio_op(bio) == REQ_OP_DISCARD ||
101                bio_op(bio) == REQ_OP_SECURE_ERASE ||
102                bio_op(bio) == REQ_OP_WRITE_SAME ||
103                bio_op(bio) == REQ_OP_WRITE_ZEROES;
104 }
105
106 static inline bool bio_mergeable(struct bio *bio)
107 {
108         if (bio->bi_opf & REQ_NOMERGE_FLAGS)
109                 return false;
110
111         return true;
112 }
113
114 static inline unsigned int bio_cur_bytes(struct bio *bio)
115 {
116         if (bio_has_data(bio))
117                 return bio_iovec(bio).bv_len;
118         else /* dataless requests such as discard */
119                 return bio->bi_iter.bi_size;
120 }
121
122 static inline void *bio_data(struct bio *bio)
123 {
124         if (bio_has_data(bio))
125                 return page_address(bio_page(bio)) + bio_offset(bio);
126
127         return NULL;
128 }
129
130 static inline bool bio_full(struct bio *bio)
131 {
132         return bio->bi_vcnt >= bio->bi_max_vecs;
133 }
134
135 /*
136  * will die
137  */
138 #define bvec_to_phys(bv)        (page_to_phys((bv)->bv_page) + (unsigned long) (bv)->bv_offset)
139
140 /*
141  * merge helpers etc
142  */
143
144 /* Default implementation of BIOVEC_PHYS_MERGEABLE */
145 #define __BIOVEC_PHYS_MERGEABLE(vec1, vec2)     \
146         ((bvec_to_phys((vec1)) + (vec1)->bv_len) == bvec_to_phys((vec2)))
147
148 /*
149  * allow arch override, for eg virtualized architectures (put in asm/io.h)
150  */
151 #ifndef BIOVEC_PHYS_MERGEABLE
152 #define BIOVEC_PHYS_MERGEABLE(vec1, vec2)       \
153         __BIOVEC_PHYS_MERGEABLE(vec1, vec2)
154 #endif
155
156 #define __BIO_SEG_BOUNDARY(addr1, addr2, mask) \
157         (((addr1) | (mask)) == (((addr2) - 1) | (mask)))
158 #define BIOVEC_SEG_BOUNDARY(q, b1, b2) \
159         __BIO_SEG_BOUNDARY(bvec_to_phys((b1)), bvec_to_phys((b2)) + (b2)->bv_len, queue_segment_boundary((q)))
160
161 /*
162  * drivers should _never_ use the all version - the bio may have been split
163  * before it got to the driver and the driver won't own all of it
164  */
165 #define bio_for_each_segment_all(bvl, bio, i)                           \
166         for (i = 0, bvl = (bio)->bi_io_vec; i < (bio)->bi_vcnt; i++, bvl++)
167
168 static inline void bio_advance_iter(struct bio *bio, struct bvec_iter *iter,
169                                     unsigned bytes)
170 {
171         iter->bi_sector += bytes >> 9;
172
173         if (bio_no_advance_iter(bio))
174                 iter->bi_size -= bytes;
175         else
176                 bvec_iter_advance(bio->bi_io_vec, iter, bytes);
177                 /* TODO: It is reasonable to complete bio with error here. */
178 }
179
180 #define __bio_for_each_segment(bvl, bio, iter, start)                   \
181         for (iter = (start);                                            \
182              (iter).bi_size &&                                          \
183                 ((bvl = bio_iter_iovec((bio), (iter))), 1);             \
184              bio_advance_iter((bio), &(iter), (bvl).bv_len))
185
186 #define bio_for_each_segment(bvl, bio, iter)                            \
187         __bio_for_each_segment(bvl, bio, iter, (bio)->bi_iter)
188
189 #define bio_iter_last(bvec, iter) ((iter).bi_size == (bvec).bv_len)
190
191 static inline unsigned bio_segments(struct bio *bio)
192 {
193         unsigned segs = 0;
194         struct bio_vec bv;
195         struct bvec_iter iter;
196
197         /*
198          * We special case discard/write same/write zeroes, because they
199          * interpret bi_size differently:
200          */
201
202         switch (bio_op(bio)) {
203         case REQ_OP_DISCARD:
204         case REQ_OP_SECURE_ERASE:
205         case REQ_OP_WRITE_ZEROES:
206                 return 0;
207         case REQ_OP_WRITE_SAME:
208                 return 1;
209         default:
210                 break;
211         }
212
213         bio_for_each_segment(bv, bio, iter)
214                 segs++;
215
216         return segs;
217 }
218
219 /*
220  * get a reference to a bio, so it won't disappear. the intended use is
221  * something like:
222  *
223  * bio_get(bio);
224  * submit_bio(rw, bio);
225  * if (bio->bi_flags ...)
226  *      do_something
227  * bio_put(bio);
228  *
229  * without the bio_get(), it could potentially complete I/O before submit_bio
230  * returns. and then bio would be freed memory when if (bio->bi_flags ...)
231  * runs
232  */
233 static inline void bio_get(struct bio *bio)
234 {
235         bio->bi_flags |= (1 << BIO_REFFED);
236         smp_mb__before_atomic();
237         atomic_inc(&bio->__bi_cnt);
238 }
239
240 static inline void bio_cnt_set(struct bio *bio, unsigned int count)
241 {
242         if (count != 1) {
243                 bio->bi_flags |= (1 << BIO_REFFED);
244                 smp_mb__before_atomic();
245         }
246         atomic_set(&bio->__bi_cnt, count);
247 }
248
249 static inline bool bio_flagged(struct bio *bio, unsigned int bit)
250 {
251         return (bio->bi_flags & (1U << bit)) != 0;
252 }
253
254 static inline void bio_set_flag(struct bio *bio, unsigned int bit)
255 {
256         bio->bi_flags |= (1U << bit);
257 }
258
259 static inline void bio_clear_flag(struct bio *bio, unsigned int bit)
260 {
261         bio->bi_flags &= ~(1U << bit);
262 }
263
264 static inline void bio_get_first_bvec(struct bio *bio, struct bio_vec *bv)
265 {
266         *bv = bio_iovec(bio);
267 }
268
269 static inline void bio_get_last_bvec(struct bio *bio, struct bio_vec *bv)
270 {
271         struct bvec_iter iter = bio->bi_iter;
272         int idx;
273
274         if (unlikely(!bio_multiple_segments(bio))) {
275                 *bv = bio_iovec(bio);
276                 return;
277         }
278
279         bio_advance_iter(bio, &iter, iter.bi_size);
280
281         if (!iter.bi_bvec_done)
282                 idx = iter.bi_idx - 1;
283         else    /* in the middle of bvec */
284                 idx = iter.bi_idx;
285
286         *bv = bio->bi_io_vec[idx];
287
288         /*
289          * iter.bi_bvec_done records actual length of the last bvec
290          * if this bio ends in the middle of one io vector
291          */
292         if (iter.bi_bvec_done)
293                 bv->bv_len = iter.bi_bvec_done;
294 }
295
296 static inline unsigned bio_pages_all(struct bio *bio)
297 {
298         WARN_ON_ONCE(bio_flagged(bio, BIO_CLONED));
299         return bio->bi_vcnt;
300 }
301
302 static inline struct bio_vec *bio_first_bvec_all(struct bio *bio)
303 {
304         WARN_ON_ONCE(bio_flagged(bio, BIO_CLONED));
305         return bio->bi_io_vec;
306 }
307
308 static inline struct page *bio_first_page_all(struct bio *bio)
309 {
310         return bio_first_bvec_all(bio)->bv_page;
311 }
312
313 static inline struct bio_vec *bio_last_bvec_all(struct bio *bio)
314 {
315         WARN_ON_ONCE(bio_flagged(bio, BIO_CLONED));
316         return &bio->bi_io_vec[bio->bi_vcnt - 1];
317 }
318
319 enum bip_flags {
320         BIP_BLOCK_INTEGRITY     = 1 << 0, /* block layer owns integrity data */
321         BIP_MAPPED_INTEGRITY    = 1 << 1, /* ref tag has been remapped */
322         BIP_CTRL_NOCHECK        = 1 << 2, /* disable HBA integrity checking */
323         BIP_DISK_NOCHECK        = 1 << 3, /* disable disk integrity checking */
324         BIP_IP_CHECKSUM         = 1 << 4, /* IP checksum */
325 };
326
327 /*
328  * bio integrity payload
329  */
330 struct bio_integrity_payload {
331         struct bio              *bip_bio;       /* parent bio */
332
333         struct bvec_iter        bip_iter;
334
335         unsigned short          bip_slab;       /* slab the bip came from */
336         unsigned short          bip_vcnt;       /* # of integrity bio_vecs */
337         unsigned short          bip_max_vcnt;   /* integrity bio_vec slots */
338         unsigned short          bip_flags;      /* control flags */
339
340         struct bvec_iter        bio_iter;       /* for rewinding parent bio */
341
342         struct work_struct      bip_work;       /* I/O completion */
343
344         struct bio_vec          *bip_vec;
345         struct bio_vec          bip_inline_vecs[0];/* embedded bvec array */
346 };
347
348 #if defined(CONFIG_BLK_DEV_INTEGRITY)
349
350 static inline struct bio_integrity_payload *bio_integrity(struct bio *bio)
351 {
352         if (bio->bi_opf & REQ_INTEGRITY)
353                 return bio->bi_integrity;
354
355         return NULL;
356 }
357
358 static inline bool bio_integrity_flagged(struct bio *bio, enum bip_flags flag)
359 {
360         struct bio_integrity_payload *bip = bio_integrity(bio);
361
362         if (bip)
363                 return bip->bip_flags & flag;
364
365         return false;
366 }
367
368 static inline sector_t bip_get_seed(struct bio_integrity_payload *bip)
369 {
370         return bip->bip_iter.bi_sector;
371 }
372
373 static inline void bip_set_seed(struct bio_integrity_payload *bip,
374                                 sector_t seed)
375 {
376         bip->bip_iter.bi_sector = seed;
377 }
378
379 #endif /* CONFIG_BLK_DEV_INTEGRITY */
380
381 extern void bio_trim(struct bio *bio, int offset, int size);
382 extern struct bio *bio_split(struct bio *bio, int sectors,
383                              gfp_t gfp, struct bio_set *bs);
384
385 /**
386  * bio_next_split - get next @sectors from a bio, splitting if necessary
387  * @bio:        bio to split
388  * @sectors:    number of sectors to split from the front of @bio
389  * @gfp:        gfp mask
390  * @bs:         bio set to allocate from
391  *
392  * Returns a bio representing the next @sectors of @bio - if the bio is smaller
393  * than @sectors, returns the original bio unchanged.
394  */
395 static inline struct bio *bio_next_split(struct bio *bio, int sectors,
396                                          gfp_t gfp, struct bio_set *bs)
397 {
398         if (sectors >= bio_sectors(bio))
399                 return bio;
400
401         return bio_split(bio, sectors, gfp, bs);
402 }
403
404 enum {
405         BIOSET_NEED_BVECS = BIT(0),
406         BIOSET_NEED_RESCUER = BIT(1),
407 };
408 extern int bioset_init(struct bio_set *, unsigned int, unsigned int, int flags);
409 extern void bioset_exit(struct bio_set *);
410 extern int biovec_init_pool(mempool_t *pool, int pool_entries);
411 extern int bioset_init_from_src(struct bio_set *bs, struct bio_set *src);
412
413 extern struct bio *bio_alloc_bioset(gfp_t, unsigned int, struct bio_set *);
414 extern void bio_put(struct bio *);
415
416 extern void __bio_clone_fast(struct bio *, struct bio *);
417 extern struct bio *bio_clone_fast(struct bio *, gfp_t, struct bio_set *);
418
419 extern struct bio_set fs_bio_set;
420
421 static inline struct bio *bio_alloc(gfp_t gfp_mask, unsigned int nr_iovecs)
422 {
423         return bio_alloc_bioset(gfp_mask, nr_iovecs, &fs_bio_set);
424 }
425
426 static inline struct bio *bio_kmalloc(gfp_t gfp_mask, unsigned int nr_iovecs)
427 {
428         return bio_alloc_bioset(gfp_mask, nr_iovecs, NULL);
429 }
430
431 extern blk_qc_t submit_bio(struct bio *);
432
433 extern void bio_endio(struct bio *);
434
435 static inline void bio_io_error(struct bio *bio)
436 {
437         bio->bi_status = BLK_STS_IOERR;
438         bio_endio(bio);
439 }
440
441 static inline void bio_wouldblock_error(struct bio *bio)
442 {
443         bio->bi_status = BLK_STS_AGAIN;
444         bio_endio(bio);
445 }
446
447 struct request_queue;
448 extern int bio_phys_segments(struct request_queue *, struct bio *);
449
450 extern int submit_bio_wait(struct bio *bio);
451 extern void bio_advance(struct bio *, unsigned);
452
453 extern void bio_init(struct bio *bio, struct bio_vec *table,
454                      unsigned short max_vecs);
455 extern void bio_uninit(struct bio *);
456 extern void bio_reset(struct bio *);
457 void bio_chain(struct bio *, struct bio *);
458
459 extern int bio_add_page(struct bio *, struct page *, unsigned int,unsigned int);
460 extern int bio_add_pc_page(struct request_queue *, struct bio *, struct page *,
461                            unsigned int, unsigned int);
462 bool __bio_try_merge_page(struct bio *bio, struct page *page,
463                 unsigned int len, unsigned int off);
464 void __bio_add_page(struct bio *bio, struct page *page,
465                 unsigned int len, unsigned int off);
466 int bio_iov_iter_get_pages(struct bio *bio, struct iov_iter *iter);
467 struct rq_map_data;
468 extern struct bio *bio_map_user_iov(struct request_queue *,
469                                     struct iov_iter *, gfp_t);
470 extern void bio_unmap_user(struct bio *);
471 extern struct bio *bio_map_kern(struct request_queue *, void *, unsigned int,
472                                 gfp_t);
473 extern struct bio *bio_copy_kern(struct request_queue *, void *, unsigned int,
474                                  gfp_t, int);
475 extern void bio_set_pages_dirty(struct bio *bio);
476 extern void bio_check_pages_dirty(struct bio *bio);
477
478 void generic_start_io_acct(struct request_queue *q, int op,
479                                 unsigned long sectors, struct hd_struct *part);
480 void generic_end_io_acct(struct request_queue *q, int op,
481                                 struct hd_struct *part,
482                                 unsigned long start_time);
483
484 #ifndef ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
485 # error "You should define ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE for your platform"
486 #endif
487 #if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE
488 extern void bio_flush_dcache_pages(struct bio *bi);
489 #else
490 static inline void bio_flush_dcache_pages(struct bio *bi)
491 {
492 }
493 #endif
494
495 extern void bio_copy_data_iter(struct bio *dst, struct bvec_iter *dst_iter,
496                                struct bio *src, struct bvec_iter *src_iter);
497 extern void bio_copy_data(struct bio *dst, struct bio *src);
498 extern void bio_list_copy_data(struct bio *dst, struct bio *src);
499 extern void bio_free_pages(struct bio *bio);
500
501 extern struct bio *bio_copy_user_iov(struct request_queue *,
502                                      struct rq_map_data *,
503                                      struct iov_iter *,
504                                      gfp_t);
505 extern int bio_uncopy_user(struct bio *);
506 void zero_fill_bio_iter(struct bio *bio, struct bvec_iter iter);
507
508 static inline void zero_fill_bio(struct bio *bio)
509 {
510         zero_fill_bio_iter(bio, bio->bi_iter);
511 }
512
513 extern struct bio_vec *bvec_alloc(gfp_t, int, unsigned long *, mempool_t *);
514 extern void bvec_free(mempool_t *, struct bio_vec *, unsigned int);
515 extern unsigned int bvec_nr_vecs(unsigned short idx);
516 extern const char *bio_devname(struct bio *bio, char *buffer);
517
518 #define bio_set_dev(bio, bdev)                  \
519 do {                                            \
520         if ((bio)->bi_disk != (bdev)->bd_disk)  \
521                 bio_clear_flag(bio, BIO_THROTTLED);\
522         (bio)->bi_disk = (bdev)->bd_disk;       \
523         (bio)->bi_partno = (bdev)->bd_partno;   \
524 } while (0)
525
526 #define bio_copy_dev(dst, src)                  \
527 do {                                            \
528         (dst)->bi_disk = (src)->bi_disk;        \
529         (dst)->bi_partno = (src)->bi_partno;    \
530 } while (0)
531
532 #define bio_dev(bio) \
533         disk_devt((bio)->bi_disk)
534
535 #if defined(CONFIG_MEMCG) && defined(CONFIG_BLK_CGROUP)
536 int bio_associate_blkcg_from_page(struct bio *bio, struct page *page);
537 #else
538 static inline int bio_associate_blkcg_from_page(struct bio *bio,
539                                                 struct page *page) {  return 0; }
540 #endif
541
542 #ifdef CONFIG_BLK_CGROUP
543 int bio_associate_blkcg(struct bio *bio, struct cgroup_subsys_state *blkcg_css);
544 int bio_associate_blkg(struct bio *bio, struct blkcg_gq *blkg);
545 void bio_disassociate_task(struct bio *bio);
546 void bio_clone_blkcg_association(struct bio *dst, struct bio *src);
547 #else   /* CONFIG_BLK_CGROUP */
548 static inline int bio_associate_blkcg(struct bio *bio,
549                         struct cgroup_subsys_state *blkcg_css) { return 0; }
550 static inline void bio_disassociate_task(struct bio *bio) { }
551 static inline void bio_clone_blkcg_association(struct bio *dst,
552                         struct bio *src) { }
553 #endif  /* CONFIG_BLK_CGROUP */
554
555 #ifdef CONFIG_HIGHMEM
556 /*
557  * remember never ever reenable interrupts between a bvec_kmap_irq and
558  * bvec_kunmap_irq!
559  */
560 static inline char *bvec_kmap_irq(struct bio_vec *bvec, unsigned long *flags)
561 {
562         unsigned long addr;
563
564         /*
565          * might not be a highmem page, but the preempt/irq count
566          * balancing is a lot nicer this way
567          */
568         local_irq_save(*flags);
569         addr = (unsigned long) kmap_atomic(bvec->bv_page);
570
571         BUG_ON(addr & ~PAGE_MASK);
572
573         return (char *) addr + bvec->bv_offset;
574 }
575
576 static inline void bvec_kunmap_irq(char *buffer, unsigned long *flags)
577 {
578         unsigned long ptr = (unsigned long) buffer & PAGE_MASK;
579
580         kunmap_atomic((void *) ptr);
581         local_irq_restore(*flags);
582 }
583
584 #else
585 static inline char *bvec_kmap_irq(struct bio_vec *bvec, unsigned long *flags)
586 {
587         return page_address(bvec->bv_page) + bvec->bv_offset;
588 }
589
590 static inline void bvec_kunmap_irq(char *buffer, unsigned long *flags)
591 {
592         *flags = 0;
593 }
594 #endif
595
596 /*
597  * BIO list management for use by remapping drivers (e.g. DM or MD) and loop.
598  *
599  * A bio_list anchors a singly-linked list of bios chained through the bi_next
600  * member of the bio.  The bio_list also caches the last list member to allow
601  * fast access to the tail.
602  */
603 struct bio_list {
604         struct bio *head;
605         struct bio *tail;
606 };
607
608 static inline int bio_list_empty(const struct bio_list *bl)
609 {
610         return bl->head == NULL;
611 }
612
613 static inline void bio_list_init(struct bio_list *bl)
614 {
615         bl->head = bl->tail = NULL;
616 }
617
618 #define BIO_EMPTY_LIST  { NULL, NULL }
619
620 #define bio_list_for_each(bio, bl) \
621         for (bio = (bl)->head; bio; bio = bio->bi_next)
622
623 static inline unsigned bio_list_size(const struct bio_list *bl)
624 {
625         unsigned sz = 0;
626         struct bio *bio;
627
628         bio_list_for_each(bio, bl)
629                 sz++;
630
631         return sz;
632 }
633
634 static inline void bio_list_add(struct bio_list *bl, struct bio *bio)
635 {
636         bio->bi_next = NULL;
637
638         if (bl->tail)
639                 bl->tail->bi_next = bio;
640         else
641                 bl->head = bio;
642
643         bl->tail = bio;
644 }
645
646 static inline void bio_list_add_head(struct bio_list *bl, struct bio *bio)
647 {
648         bio->bi_next = bl->head;
649
650         bl->head = bio;
651
652         if (!bl->tail)
653                 bl->tail = bio;
654 }
655
656 static inline void bio_list_merge(struct bio_list *bl, struct bio_list *bl2)
657 {
658         if (!bl2->head)
659                 return;
660
661         if (bl->tail)
662                 bl->tail->bi_next = bl2->head;
663         else
664                 bl->head = bl2->head;
665
666         bl->tail = bl2->tail;
667 }
668
669 static inline void bio_list_merge_head(struct bio_list *bl,
670                                        struct bio_list *bl2)
671 {
672         if (!bl2->head)
673                 return;
674
675         if (bl->head)
676                 bl2->tail->bi_next = bl->head;
677         else
678                 bl->tail = bl2->tail;
679
680         bl->head = bl2->head;
681 }
682
683 static inline struct bio *bio_list_peek(struct bio_list *bl)
684 {
685         return bl->head;
686 }
687
688 static inline struct bio *bio_list_pop(struct bio_list *bl)
689 {
690         struct bio *bio = bl->head;
691
692         if (bio) {
693                 bl->head = bl->head->bi_next;
694                 if (!bl->head)
695                         bl->tail = NULL;
696
697                 bio->bi_next = NULL;
698         }
699
700         return bio;
701 }
702
703 static inline struct bio *bio_list_get(struct bio_list *bl)
704 {
705         struct bio *bio = bl->head;
706
707         bl->head = bl->tail = NULL;
708
709         return bio;
710 }
711
712 /*
713  * Increment chain count for the bio. Make sure the CHAIN flag update
714  * is visible before the raised count.
715  */
716 static inline void bio_inc_remaining(struct bio *bio)
717 {
718         bio_set_flag(bio, BIO_CHAIN);
719         smp_mb__before_atomic();
720         atomic_inc(&bio->__bi_remaining);
721 }
722
723 /*
724  * bio_set is used to allow other portions of the IO system to
725  * allocate their own private memory pools for bio and iovec structures.
726  * These memory pools in turn all allocate from the bio_slab
727  * and the bvec_slabs[].
728  */
729 #define BIO_POOL_SIZE 2
730
731 struct bio_set {
732         struct kmem_cache *bio_slab;
733         unsigned int front_pad;
734
735         mempool_t bio_pool;
736         mempool_t bvec_pool;
737 #if defined(CONFIG_BLK_DEV_INTEGRITY)
738         mempool_t bio_integrity_pool;
739         mempool_t bvec_integrity_pool;
740 #endif
741
742         /*
743          * Deadlock avoidance for stacking block drivers: see comments in
744          * bio_alloc_bioset() for details
745          */
746         spinlock_t              rescue_lock;
747         struct bio_list         rescue_list;
748         struct work_struct      rescue_work;
749         struct workqueue_struct *rescue_workqueue;
750 };
751
752 struct biovec_slab {
753         int nr_vecs;
754         char *name;
755         struct kmem_cache *slab;
756 };
757
758 static inline bool bioset_initialized(struct bio_set *bs)
759 {
760         return bs->bio_slab != NULL;
761 }
762
763 /*
764  * a small number of entries is fine, not going to be performance critical.
765  * basically we just need to survive
766  */
767 #define BIO_SPLIT_ENTRIES 2
768
769 #if defined(CONFIG_BLK_DEV_INTEGRITY)
770
771 #define bip_for_each_vec(bvl, bip, iter)                                \
772         for_each_bvec(bvl, (bip)->bip_vec, iter, (bip)->bip_iter)
773
774 #define bio_for_each_integrity_vec(_bvl, _bio, _iter)                   \
775         for_each_bio(_bio)                                              \
776                 bip_for_each_vec(_bvl, _bio->bi_integrity, _iter)
777
778 extern struct bio_integrity_payload *bio_integrity_alloc(struct bio *, gfp_t, unsigned int);
779 extern int bio_integrity_add_page(struct bio *, struct page *, unsigned int, unsigned int);
780 extern bool bio_integrity_prep(struct bio *);
781 extern void bio_integrity_advance(struct bio *, unsigned int);
782 extern void bio_integrity_trim(struct bio *);
783 extern int bio_integrity_clone(struct bio *, struct bio *, gfp_t);
784 extern int bioset_integrity_create(struct bio_set *, int);
785 extern void bioset_integrity_free(struct bio_set *);
786 extern void bio_integrity_init(void);
787
788 #else /* CONFIG_BLK_DEV_INTEGRITY */
789
790 static inline void *bio_integrity(struct bio *bio)
791 {
792         return NULL;
793 }
794
795 static inline int bioset_integrity_create(struct bio_set *bs, int pool_size)
796 {
797         return 0;
798 }
799
800 static inline void bioset_integrity_free (struct bio_set *bs)
801 {
802         return;
803 }
804
805 static inline bool bio_integrity_prep(struct bio *bio)
806 {
807         return true;
808 }
809
810 static inline int bio_integrity_clone(struct bio *bio, struct bio *bio_src,
811                                       gfp_t gfp_mask)
812 {
813         return 0;
814 }
815
816 static inline void bio_integrity_advance(struct bio *bio,
817                                          unsigned int bytes_done)
818 {
819         return;
820 }
821
822 static inline void bio_integrity_trim(struct bio *bio)
823 {
824         return;
825 }
826
827 static inline void bio_integrity_init(void)
828 {
829         return;
830 }
831
832 static inline bool bio_integrity_flagged(struct bio *bio, enum bip_flags flag)
833 {
834         return false;
835 }
836
837 static inline void *bio_integrity_alloc(struct bio * bio, gfp_t gfp,
838                                                                 unsigned int nr)
839 {
840         return ERR_PTR(-EINVAL);
841 }
842
843 static inline int bio_integrity_add_page(struct bio *bio, struct page *page,
844                                         unsigned int len, unsigned int offset)
845 {
846         return 0;
847 }
848
849 #endif /* CONFIG_BLK_DEV_INTEGRITY */
850
851 #endif /* CONFIG_BLOCK */
852 #endif /* __LINUX_BIO_H */