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