Christoph Hellwig | 8c16567 | 2019-04-30 14:42:39 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * Copyright (C) 2001 Jens Axboe <axboe@suse.de> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | */ |
| 5 | #ifndef __LINUX_BIO_H |
| 6 | #define __LINUX_BIO_H |
| 7 | |
| 8 | #include <linux/highmem.h> |
| 9 | #include <linux/mempool.h> |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 10 | #include <linux/ioprio.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | |
David Howells | 02a5e0a | 2007-08-11 22:34:32 +0200 | [diff] [blame] | 12 | #ifdef CONFIG_BLOCK |
Tejun Heo | 7cc0158 | 2010-08-03 13:14:58 +0200 | [diff] [blame] | 13 | /* struct bio, bio_vec and BIO_* flags are defined in blk_types.h */ |
| 14 | #include <linux/blk_types.h> |
| 15 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #define BIO_DEBUG |
| 17 | |
| 18 | #ifdef BIO_DEBUG |
| 19 | #define BIO_BUG_ON BUG_ON |
| 20 | #else |
| 21 | #define BIO_BUG_ON |
| 22 | #endif |
| 23 | |
Alexey Dobriyan | d84a847 | 2006-06-25 05:49:32 -0700 | [diff] [blame] | 24 | #define BIO_MAX_PAGES 256 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | |
Mike Christie | 43b62ce | 2016-06-05 14:32:20 -0500 | [diff] [blame] | 26 | #define bio_prio(bio) (bio)->bi_ioprio |
| 27 | #define bio_set_prio(bio, prio) ((bio)->bi_ioprio = prio) |
Jens Axboe | 22e2c50 | 2005-06-27 10:55:12 +0200 | [diff] [blame] | 28 | |
Kent Overstreet | 4550dd6 | 2013-08-07 14:26:21 -0700 | [diff] [blame] | 29 | #define bio_iter_iovec(bio, iter) \ |
| 30 | bvec_iter_bvec((bio)->bi_io_vec, (iter)) |
| 31 | |
| 32 | #define bio_iter_page(bio, iter) \ |
| 33 | bvec_iter_page((bio)->bi_io_vec, (iter)) |
| 34 | #define bio_iter_len(bio, iter) \ |
| 35 | bvec_iter_len((bio)->bi_io_vec, (iter)) |
| 36 | #define bio_iter_offset(bio, iter) \ |
| 37 | bvec_iter_offset((bio)->bi_io_vec, (iter)) |
| 38 | |
| 39 | #define bio_page(bio) bio_iter_page((bio), (bio)->bi_iter) |
| 40 | #define bio_offset(bio) bio_iter_offset((bio), (bio)->bi_iter) |
| 41 | #define bio_iovec(bio) bio_iter_iovec((bio), (bio)->bi_iter) |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 42 | |
Kent Overstreet | 458b76e | 2013-09-24 16:26:05 -0700 | [diff] [blame] | 43 | #define bio_multiple_segments(bio) \ |
| 44 | ((bio)->bi_iter.bi_size != bio_iovec(bio).bv_len) |
Kent Overstreet | 38a72da | 2018-05-08 21:33:53 -0400 | [diff] [blame] | 45 | |
| 46 | #define bvec_iter_sectors(iter) ((iter).bi_size >> 9) |
| 47 | #define bvec_iter_end_sector(iter) ((iter).bi_sector + bvec_iter_sectors((iter))) |
| 48 | |
| 49 | #define bio_sectors(bio) bvec_iter_sectors((bio)->bi_iter) |
| 50 | #define bio_end_sector(bio) bvec_iter_end_sector((bio)->bi_iter) |
Jens Axboe | bf2de6f | 2007-09-27 13:01:25 +0200 | [diff] [blame] | 51 | |
Kent Overstreet | 458b76e | 2013-09-24 16:26:05 -0700 | [diff] [blame] | 52 | /* |
Christoph Hellwig | d384995 | 2016-11-01 07:40:11 -0600 | [diff] [blame] | 53 | * Return the data direction, READ or WRITE. |
| 54 | */ |
| 55 | #define bio_data_dir(bio) \ |
| 56 | (op_is_write(bio_op(bio)) ? WRITE : READ) |
| 57 | |
| 58 | /* |
Kent Overstreet | 458b76e | 2013-09-24 16:26:05 -0700 | [diff] [blame] | 59 | * Check whether this bio carries any data or not. A NULL bio is allowed. |
| 60 | */ |
| 61 | static inline bool bio_has_data(struct bio *bio) |
| 62 | { |
| 63 | if (bio && |
| 64 | bio->bi_iter.bi_size && |
Adrian Hunter | 7afafc8 | 2016-08-16 10:59:35 +0300 | [diff] [blame] | 65 | bio_op(bio) != REQ_OP_DISCARD && |
Chaitanya Kulkarni | a6f0788 | 2016-11-30 12:28:59 -0800 | [diff] [blame] | 66 | bio_op(bio) != REQ_OP_SECURE_ERASE && |
| 67 | bio_op(bio) != REQ_OP_WRITE_ZEROES) |
Kent Overstreet | 458b76e | 2013-09-24 16:26:05 -0700 | [diff] [blame] | 68 | return true; |
| 69 | |
| 70 | return false; |
| 71 | } |
| 72 | |
Mike Christie | 95fe6c1 | 2016-06-05 14:31:48 -0500 | [diff] [blame] | 73 | static inline bool bio_no_advance_iter(struct bio *bio) |
| 74 | { |
Adrian Hunter | 7afafc8 | 2016-08-16 10:59:35 +0300 | [diff] [blame] | 75 | return bio_op(bio) == REQ_OP_DISCARD || |
| 76 | bio_op(bio) == REQ_OP_SECURE_ERASE || |
Chaitanya Kulkarni | a6f0788 | 2016-11-30 12:28:59 -0800 | [diff] [blame] | 77 | bio_op(bio) == REQ_OP_WRITE_SAME || |
| 78 | bio_op(bio) == REQ_OP_WRITE_ZEROES; |
Mike Christie | 95fe6c1 | 2016-06-05 14:31:48 -0500 | [diff] [blame] | 79 | } |
| 80 | |
Kent Overstreet | 458b76e | 2013-09-24 16:26:05 -0700 | [diff] [blame] | 81 | static inline bool bio_mergeable(struct bio *bio) |
| 82 | { |
Jens Axboe | 1eff9d3 | 2016-08-05 15:35:16 -0600 | [diff] [blame] | 83 | if (bio->bi_opf & REQ_NOMERGE_FLAGS) |
Kent Overstreet | 458b76e | 2013-09-24 16:26:05 -0700 | [diff] [blame] | 84 | return false; |
| 85 | |
| 86 | return true; |
| 87 | } |
| 88 | |
Tejun Heo | 2e46e8b | 2009-05-07 22:24:41 +0900 | [diff] [blame] | 89 | static inline unsigned int bio_cur_bytes(struct bio *bio) |
Jens Axboe | bf2de6f | 2007-09-27 13:01:25 +0200 | [diff] [blame] | 90 | { |
Kent Overstreet | 458b76e | 2013-09-24 16:26:05 -0700 | [diff] [blame] | 91 | if (bio_has_data(bio)) |
Kent Overstreet | a4ad39b1 | 2013-08-07 14:24:32 -0700 | [diff] [blame] | 92 | return bio_iovec(bio).bv_len; |
David Woodhouse | fb2dce8 | 2008-08-05 18:01:53 +0100 | [diff] [blame] | 93 | else /* dataless requests such as discard */ |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 94 | return bio->bi_iter.bi_size; |
Jens Axboe | bf2de6f | 2007-09-27 13:01:25 +0200 | [diff] [blame] | 95 | } |
| 96 | |
| 97 | static inline void *bio_data(struct bio *bio) |
| 98 | { |
Kent Overstreet | 458b76e | 2013-09-24 16:26:05 -0700 | [diff] [blame] | 99 | if (bio_has_data(bio)) |
Jens Axboe | bf2de6f | 2007-09-27 13:01:25 +0200 | [diff] [blame] | 100 | return page_address(bio_page(bio)) + bio_offset(bio); |
| 101 | |
| 102 | return NULL; |
| 103 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | |
Christoph Hellwig | 0aa69fd | 2018-06-01 09:03:05 -0700 | [diff] [blame] | 105 | static inline bool bio_full(struct bio *bio) |
| 106 | { |
| 107 | return bio->bi_vcnt >= bio->bi_max_vecs; |
| 108 | } |
| 109 | |
Ming Lei | 1200e07f | 2019-04-08 19:02:38 +0800 | [diff] [blame] | 110 | static inline bool bio_next_segment(const struct bio *bio, |
| 111 | struct bvec_iter_all *iter) |
| 112 | { |
| 113 | if (iter->idx >= bio->bi_vcnt) |
| 114 | return false; |
| 115 | |
| 116 | bvec_advance(&bio->bi_io_vec[iter->idx], iter); |
| 117 | return true; |
| 118 | } |
Ming Lei | 6dc4f10 | 2019-02-15 19:13:19 +0800 | [diff] [blame] | 119 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | /* |
Kent Overstreet | d74c6d5 | 2013-02-06 12:23:11 -0800 | [diff] [blame] | 121 | * drivers should _never_ use the all version - the bio may have been split |
| 122 | * before it got to the driver and the driver won't own all of it |
| 123 | */ |
Christoph Hellwig | 2b070cf | 2019-04-25 09:03:00 +0200 | [diff] [blame] | 124 | #define bio_for_each_segment_all(bvl, bio, iter) \ |
| 125 | for (bvl = bvec_init_iter_all(&iter); bio_next_segment((bio), &iter); ) |
Kent Overstreet | d74c6d5 | 2013-02-06 12:23:11 -0800 | [diff] [blame] | 126 | |
Kent Overstreet | 4550dd6 | 2013-08-07 14:26:21 -0700 | [diff] [blame] | 127 | static inline void bio_advance_iter(struct bio *bio, struct bvec_iter *iter, |
| 128 | unsigned bytes) |
| 129 | { |
| 130 | iter->bi_sector += bytes >> 9; |
| 131 | |
Ming Lei | 7759eb2 | 2018-09-05 15:45:54 -0600 | [diff] [blame] | 132 | if (bio_no_advance_iter(bio)) |
Kent Overstreet | 4550dd6 | 2013-08-07 14:26:21 -0700 | [diff] [blame] | 133 | iter->bi_size -= bytes; |
Ming Lei | 7759eb2 | 2018-09-05 15:45:54 -0600 | [diff] [blame] | 134 | else |
Kent Overstreet | 4550dd6 | 2013-08-07 14:26:21 -0700 | [diff] [blame] | 135 | bvec_iter_advance(bio->bi_io_vec, iter, bytes); |
Dmitry Monakhov | b1fb2c5 | 2017-06-29 11:31:13 -0700 | [diff] [blame] | 136 | /* TODO: It is reasonable to complete bio with error here. */ |
Dmitry Monakhov | f9df1cd | 2017-06-29 11:31:14 -0700 | [diff] [blame] | 137 | } |
| 138 | |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 139 | #define __bio_for_each_segment(bvl, bio, iter, start) \ |
| 140 | for (iter = (start); \ |
Kent Overstreet | 4550dd6 | 2013-08-07 14:26:21 -0700 | [diff] [blame] | 141 | (iter).bi_size && \ |
| 142 | ((bvl = bio_iter_iovec((bio), (iter))), 1); \ |
| 143 | bio_advance_iter((bio), &(iter), (bvl).bv_len)) |
Kent Overstreet | 7988613 | 2013-11-23 17:19:00 -0800 | [diff] [blame] | 144 | |
| 145 | #define bio_for_each_segment(bvl, bio, iter) \ |
| 146 | __bio_for_each_segment(bvl, bio, iter, (bio)->bi_iter) |
| 147 | |
Ming Lei | d18d917 | 2019-02-15 19:13:11 +0800 | [diff] [blame] | 148 | #define __bio_for_each_bvec(bvl, bio, iter, start) \ |
| 149 | for (iter = (start); \ |
| 150 | (iter).bi_size && \ |
| 151 | ((bvl = mp_bvec_iter_bvec((bio)->bi_io_vec, (iter))), 1); \ |
| 152 | bio_advance_iter((bio), &(iter), (bvl).bv_len)) |
| 153 | |
| 154 | /* iterate over multi-page bvec */ |
| 155 | #define bio_for_each_bvec(bvl, bio, iter) \ |
| 156 | __bio_for_each_bvec(bvl, bio, iter, (bio)->bi_iter) |
| 157 | |
Kent Overstreet | 4550dd6 | 2013-08-07 14:26:21 -0700 | [diff] [blame] | 158 | #define bio_iter_last(bvec, iter) ((iter).bi_size == (bvec).bv_len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | |
Shaohua Li | f459587 | 2017-03-24 10:34:43 -0700 | [diff] [blame] | 160 | static inline unsigned bio_segments(struct bio *bio) |
Kent Overstreet | 458b76e | 2013-09-24 16:26:05 -0700 | [diff] [blame] | 161 | { |
| 162 | unsigned segs = 0; |
| 163 | struct bio_vec bv; |
| 164 | struct bvec_iter iter; |
| 165 | |
Kent Overstreet | 8423ae3 | 2014-02-10 17:45:50 -0800 | [diff] [blame] | 166 | /* |
Chaitanya Kulkarni | a6f0788 | 2016-11-30 12:28:59 -0800 | [diff] [blame] | 167 | * We special case discard/write same/write zeroes, because they |
| 168 | * interpret bi_size differently: |
Kent Overstreet | 8423ae3 | 2014-02-10 17:45:50 -0800 | [diff] [blame] | 169 | */ |
| 170 | |
Chaitanya Kulkarni | a6f0788 | 2016-11-30 12:28:59 -0800 | [diff] [blame] | 171 | switch (bio_op(bio)) { |
| 172 | case REQ_OP_DISCARD: |
| 173 | case REQ_OP_SECURE_ERASE: |
Chaitanya Kulkarni | a6f0788 | 2016-11-30 12:28:59 -0800 | [diff] [blame] | 174 | case REQ_OP_WRITE_ZEROES: |
Christoph Hellwig | f9d03f9 | 2016-12-08 15:20:32 -0700 | [diff] [blame] | 175 | return 0; |
| 176 | case REQ_OP_WRITE_SAME: |
Kent Overstreet | 8423ae3 | 2014-02-10 17:45:50 -0800 | [diff] [blame] | 177 | return 1; |
Chaitanya Kulkarni | a6f0788 | 2016-11-30 12:28:59 -0800 | [diff] [blame] | 178 | default: |
| 179 | break; |
| 180 | } |
Kent Overstreet | 8423ae3 | 2014-02-10 17:45:50 -0800 | [diff] [blame] | 181 | |
Shaohua Li | f459587 | 2017-03-24 10:34:43 -0700 | [diff] [blame] | 182 | bio_for_each_segment(bv, bio, iter) |
Kent Overstreet | 458b76e | 2013-09-24 16:26:05 -0700 | [diff] [blame] | 183 | segs++; |
| 184 | |
| 185 | return segs; |
| 186 | } |
| 187 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | /* |
| 189 | * get a reference to a bio, so it won't disappear. the intended use is |
| 190 | * something like: |
| 191 | * |
| 192 | * bio_get(bio); |
| 193 | * submit_bio(rw, bio); |
| 194 | * if (bio->bi_flags ...) |
| 195 | * do_something |
| 196 | * bio_put(bio); |
| 197 | * |
| 198 | * without the bio_get(), it could potentially complete I/O before submit_bio |
| 199 | * returns. and then bio would be freed memory when if (bio->bi_flags ...) |
| 200 | * runs |
| 201 | */ |
Jens Axboe | dac5621 | 2015-04-17 16:23:59 -0600 | [diff] [blame] | 202 | static inline void bio_get(struct bio *bio) |
| 203 | { |
| 204 | bio->bi_flags |= (1 << BIO_REFFED); |
| 205 | smp_mb__before_atomic(); |
| 206 | atomic_inc(&bio->__bi_cnt); |
| 207 | } |
| 208 | |
| 209 | static inline void bio_cnt_set(struct bio *bio, unsigned int count) |
| 210 | { |
| 211 | if (count != 1) { |
| 212 | bio->bi_flags |= (1 << BIO_REFFED); |
Andrea Parri | f381c6a | 2019-05-20 19:23:56 +0200 | [diff] [blame] | 213 | smp_mb(); |
Jens Axboe | dac5621 | 2015-04-17 16:23:59 -0600 | [diff] [blame] | 214 | } |
| 215 | atomic_set(&bio->__bi_cnt, count); |
| 216 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | |
Jens Axboe | b7c44ed | 2015-07-24 12:37:59 -0600 | [diff] [blame] | 218 | static inline bool bio_flagged(struct bio *bio, unsigned int bit) |
| 219 | { |
Jens Axboe | 2c68f6d | 2015-07-28 13:14:32 -0600 | [diff] [blame] | 220 | return (bio->bi_flags & (1U << bit)) != 0; |
Jens Axboe | b7c44ed | 2015-07-24 12:37:59 -0600 | [diff] [blame] | 221 | } |
| 222 | |
| 223 | static inline void bio_set_flag(struct bio *bio, unsigned int bit) |
| 224 | { |
Jens Axboe | 2c68f6d | 2015-07-28 13:14:32 -0600 | [diff] [blame] | 225 | bio->bi_flags |= (1U << bit); |
Jens Axboe | b7c44ed | 2015-07-24 12:37:59 -0600 | [diff] [blame] | 226 | } |
| 227 | |
| 228 | static inline void bio_clear_flag(struct bio *bio, unsigned int bit) |
| 229 | { |
Jens Axboe | 2c68f6d | 2015-07-28 13:14:32 -0600 | [diff] [blame] | 230 | bio->bi_flags &= ~(1U << bit); |
Jens Axboe | b7c44ed | 2015-07-24 12:37:59 -0600 | [diff] [blame] | 231 | } |
| 232 | |
Ming Lei | 7bcd79a | 2016-02-26 23:40:50 +0800 | [diff] [blame] | 233 | static inline void bio_get_first_bvec(struct bio *bio, struct bio_vec *bv) |
| 234 | { |
| 235 | *bv = bio_iovec(bio); |
| 236 | } |
| 237 | |
| 238 | static inline void bio_get_last_bvec(struct bio *bio, struct bio_vec *bv) |
| 239 | { |
| 240 | struct bvec_iter iter = bio->bi_iter; |
| 241 | int idx; |
| 242 | |
Ming Lei | 7bcd79a | 2016-02-26 23:40:50 +0800 | [diff] [blame] | 243 | if (unlikely(!bio_multiple_segments(bio))) { |
| 244 | *bv = bio_iovec(bio); |
| 245 | return; |
| 246 | } |
| 247 | |
| 248 | bio_advance_iter(bio, &iter, iter.bi_size); |
| 249 | |
| 250 | if (!iter.bi_bvec_done) |
| 251 | idx = iter.bi_idx - 1; |
| 252 | else /* in the middle of bvec */ |
| 253 | idx = iter.bi_idx; |
| 254 | |
| 255 | *bv = bio->bi_io_vec[idx]; |
| 256 | |
| 257 | /* |
| 258 | * iter.bi_bvec_done records actual length of the last bvec |
| 259 | * if this bio ends in the middle of one io vector |
| 260 | */ |
| 261 | if (iter.bi_bvec_done) |
| 262 | bv->bv_len = iter.bi_bvec_done; |
| 263 | } |
| 264 | |
Ming Lei | 86292ab | 2017-12-18 20:22:03 +0800 | [diff] [blame] | 265 | static inline struct bio_vec *bio_first_bvec_all(struct bio *bio) |
| 266 | { |
| 267 | WARN_ON_ONCE(bio_flagged(bio, BIO_CLONED)); |
| 268 | return bio->bi_io_vec; |
| 269 | } |
| 270 | |
| 271 | static inline struct page *bio_first_page_all(struct bio *bio) |
| 272 | { |
| 273 | return bio_first_bvec_all(bio)->bv_page; |
| 274 | } |
| 275 | |
| 276 | static inline struct bio_vec *bio_last_bvec_all(struct bio *bio) |
| 277 | { |
| 278 | WARN_ON_ONCE(bio_flagged(bio, BIO_CLONED)); |
| 279 | return &bio->bi_io_vec[bio->bi_vcnt - 1]; |
| 280 | } |
| 281 | |
Martin K. Petersen | c611529 | 2014-09-26 19:20:08 -0400 | [diff] [blame] | 282 | enum bip_flags { |
| 283 | BIP_BLOCK_INTEGRITY = 1 << 0, /* block layer owns integrity data */ |
| 284 | BIP_MAPPED_INTEGRITY = 1 << 1, /* ref tag has been remapped */ |
| 285 | BIP_CTRL_NOCHECK = 1 << 2, /* disable HBA integrity checking */ |
| 286 | BIP_DISK_NOCHECK = 1 << 3, /* disable disk integrity checking */ |
| 287 | BIP_IP_CHECKSUM = 1 << 4, /* IP checksum */ |
| 288 | }; |
| 289 | |
Martin K. Petersen | 7ba1ba1 | 2008-06-30 20:04:41 +0200 | [diff] [blame] | 290 | /* |
| 291 | * bio integrity payload |
| 292 | */ |
| 293 | struct bio_integrity_payload { |
| 294 | struct bio *bip_bio; /* parent bio */ |
Martin K. Petersen | 7ba1ba1 | 2008-06-30 20:04:41 +0200 | [diff] [blame] | 295 | |
Kent Overstreet | d57a5f7 | 2013-11-23 17:20:16 -0800 | [diff] [blame] | 296 | struct bvec_iter bip_iter; |
Martin K. Petersen | 7ba1ba1 | 2008-06-30 20:04:41 +0200 | [diff] [blame] | 297 | |
Martin K. Petersen | 7878cba | 2009-06-26 15:37:49 +0200 | [diff] [blame] | 298 | unsigned short bip_slab; /* slab the bip came from */ |
Martin K. Petersen | 7ba1ba1 | 2008-06-30 20:04:41 +0200 | [diff] [blame] | 299 | unsigned short bip_vcnt; /* # of integrity bio_vecs */ |
Gu Zheng | cbcd1054 | 2014-07-01 10:36:47 -0600 | [diff] [blame] | 300 | unsigned short bip_max_vcnt; /* integrity bio_vec slots */ |
Martin K. Petersen | b1f013885 | 2014-09-26 19:20:04 -0400 | [diff] [blame] | 301 | unsigned short bip_flags; /* control flags */ |
Martin K. Petersen | 7ba1ba1 | 2008-06-30 20:04:41 +0200 | [diff] [blame] | 302 | |
Ming Lei | 7759eb2 | 2018-09-05 15:45:54 -0600 | [diff] [blame] | 303 | struct bvec_iter bio_iter; /* for rewinding parent bio */ |
| 304 | |
Martin K. Petersen | 7ba1ba1 | 2008-06-30 20:04:41 +0200 | [diff] [blame] | 305 | struct work_struct bip_work; /* I/O completion */ |
Kent Overstreet | 6fda981 | 2012-10-12 13:18:27 -0700 | [diff] [blame] | 306 | |
| 307 | struct bio_vec *bip_vec; |
| 308 | struct bio_vec bip_inline_vecs[0];/* embedded bvec array */ |
Martin K. Petersen | 7ba1ba1 | 2008-06-30 20:04:41 +0200 | [diff] [blame] | 309 | }; |
Martin K. Petersen | 1859308 | 2014-09-26 19:20:01 -0400 | [diff] [blame] | 310 | |
Keith Busch | 06c1e39 | 2015-12-03 09:32:21 -0700 | [diff] [blame] | 311 | #if defined(CONFIG_BLK_DEV_INTEGRITY) |
| 312 | |
| 313 | static inline struct bio_integrity_payload *bio_integrity(struct bio *bio) |
| 314 | { |
Jens Axboe | 1eff9d3 | 2016-08-05 15:35:16 -0600 | [diff] [blame] | 315 | if (bio->bi_opf & REQ_INTEGRITY) |
Keith Busch | 06c1e39 | 2015-12-03 09:32:21 -0700 | [diff] [blame] | 316 | return bio->bi_integrity; |
| 317 | |
| 318 | return NULL; |
| 319 | } |
| 320 | |
Martin K. Petersen | c611529 | 2014-09-26 19:20:08 -0400 | [diff] [blame] | 321 | static inline bool bio_integrity_flagged(struct bio *bio, enum bip_flags flag) |
| 322 | { |
| 323 | struct bio_integrity_payload *bip = bio_integrity(bio); |
| 324 | |
| 325 | if (bip) |
| 326 | return bip->bip_flags & flag; |
| 327 | |
| 328 | return false; |
| 329 | } |
Martin K. Petersen | b1f013885 | 2014-09-26 19:20:04 -0400 | [diff] [blame] | 330 | |
Martin K. Petersen | 1859308 | 2014-09-26 19:20:01 -0400 | [diff] [blame] | 331 | static inline sector_t bip_get_seed(struct bio_integrity_payload *bip) |
| 332 | { |
| 333 | return bip->bip_iter.bi_sector; |
| 334 | } |
| 335 | |
| 336 | static inline void bip_set_seed(struct bio_integrity_payload *bip, |
| 337 | sector_t seed) |
| 338 | { |
| 339 | bip->bip_iter.bi_sector = seed; |
| 340 | } |
| 341 | |
Martin K. Petersen | 7ba1ba1 | 2008-06-30 20:04:41 +0200 | [diff] [blame] | 342 | #endif /* CONFIG_BLK_DEV_INTEGRITY */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | |
Kent Overstreet | 6678d83 | 2013-08-07 11:14:32 -0700 | [diff] [blame] | 344 | extern void bio_trim(struct bio *bio, int offset, int size); |
Kent Overstreet | 20d0189 | 2013-11-23 18:21:01 -0800 | [diff] [blame] | 345 | extern struct bio *bio_split(struct bio *bio, int sectors, |
| 346 | gfp_t gfp, struct bio_set *bs); |
| 347 | |
| 348 | /** |
| 349 | * bio_next_split - get next @sectors from a bio, splitting if necessary |
| 350 | * @bio: bio to split |
| 351 | * @sectors: number of sectors to split from the front of @bio |
| 352 | * @gfp: gfp mask |
| 353 | * @bs: bio set to allocate from |
| 354 | * |
| 355 | * Returns a bio representing the next @sectors of @bio - if the bio is smaller |
| 356 | * than @sectors, returns the original bio unchanged. |
| 357 | */ |
| 358 | static inline struct bio *bio_next_split(struct bio *bio, int sectors, |
| 359 | gfp_t gfp, struct bio_set *bs) |
| 360 | { |
| 361 | if (sectors >= bio_sectors(bio)) |
| 362 | return bio; |
| 363 | |
| 364 | return bio_split(bio, sectors, gfp, bs); |
| 365 | } |
| 366 | |
NeilBrown | 011067b | 2017-06-18 14:38:57 +1000 | [diff] [blame] | 367 | enum { |
| 368 | BIOSET_NEED_BVECS = BIT(0), |
NeilBrown | 47e0fb4 | 2017-06-18 14:38:57 +1000 | [diff] [blame] | 369 | BIOSET_NEED_RESCUER = BIT(1), |
NeilBrown | 011067b | 2017-06-18 14:38:57 +1000 | [diff] [blame] | 370 | }; |
Kent Overstreet | dad0852 | 2018-05-20 18:25:58 -0400 | [diff] [blame] | 371 | extern int bioset_init(struct bio_set *, unsigned int, unsigned int, int flags); |
| 372 | extern void bioset_exit(struct bio_set *); |
Kent Overstreet | 8aa6ba2f | 2018-05-08 21:33:50 -0400 | [diff] [blame] | 373 | extern int biovec_init_pool(mempool_t *pool, int pool_entries); |
Jens Axboe | 28e89fd9 | 2018-06-07 14:42:05 -0600 | [diff] [blame] | 374 | extern int bioset_init_from_src(struct bio_set *bs, struct bio_set *src); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | |
Dan Carpenter | 7a88fa1 | 2017-03-23 13:24:55 +0300 | [diff] [blame] | 376 | extern struct bio *bio_alloc_bioset(gfp_t, unsigned int, struct bio_set *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | extern void bio_put(struct bio *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | |
Kent Overstreet | 59d276f | 2013-11-23 18:19:27 -0800 | [diff] [blame] | 379 | extern void __bio_clone_fast(struct bio *, struct bio *); |
| 380 | extern struct bio *bio_clone_fast(struct bio *, gfp_t, struct bio_set *); |
Kent Overstreet | bf800ef | 2012-09-06 15:35:02 -0700 | [diff] [blame] | 381 | |
Kent Overstreet | f4f8154 | 2018-05-08 21:33:52 -0400 | [diff] [blame] | 382 | extern struct bio_set fs_bio_set; |
Kent Overstreet | 3f86a82 | 2012-09-06 15:35:01 -0700 | [diff] [blame] | 383 | |
| 384 | static inline struct bio *bio_alloc(gfp_t gfp_mask, unsigned int nr_iovecs) |
| 385 | { |
Kent Overstreet | f4f8154 | 2018-05-08 21:33:52 -0400 | [diff] [blame] | 386 | return bio_alloc_bioset(gfp_mask, nr_iovecs, &fs_bio_set); |
Kent Overstreet | 3f86a82 | 2012-09-06 15:35:01 -0700 | [diff] [blame] | 387 | } |
| 388 | |
| 389 | static inline struct bio *bio_kmalloc(gfp_t gfp_mask, unsigned int nr_iovecs) |
| 390 | { |
| 391 | return bio_alloc_bioset(gfp_mask, nr_iovecs, NULL); |
| 392 | } |
| 393 | |
Christoph Hellwig | 1e3914d | 2016-11-01 07:40:12 -0600 | [diff] [blame] | 394 | extern blk_qc_t submit_bio(struct bio *); |
| 395 | |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 396 | extern void bio_endio(struct bio *); |
| 397 | |
| 398 | static inline void bio_io_error(struct bio *bio) |
| 399 | { |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 400 | bio->bi_status = BLK_STS_IOERR; |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 401 | bio_endio(bio); |
| 402 | } |
| 403 | |
Goldwyn Rodrigues | 03a07c9 | 2017-06-20 07:05:46 -0500 | [diff] [blame] | 404 | static inline void bio_wouldblock_error(struct bio *bio) |
| 405 | { |
| 406 | bio->bi_status = BLK_STS_AGAIN; |
Kent Overstreet | bf800ef | 2012-09-06 15:35:02 -0700 | [diff] [blame] | 407 | bio_endio(bio); |
| 408 | } |
NeilBrown | 6712ecf | 2007-09-27 12:47:43 +0200 | [diff] [blame] | 409 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | struct request_queue; |
| 411 | extern int bio_phys_segments(struct request_queue *, struct bio *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | |
Mike Christie | 4e49ea4 | 2016-06-05 14:31:41 -0500 | [diff] [blame] | 413 | extern int submit_bio_wait(struct bio *bio); |
Kent Overstreet | 054bdf6 | 2012-09-28 13:17:55 -0700 | [diff] [blame] | 414 | extern void bio_advance(struct bio *, unsigned); |
| 415 | |
Ming Lei | 3a83f46 | 2016-11-22 08:57:21 -0700 | [diff] [blame] | 416 | extern void bio_init(struct bio *bio, struct bio_vec *table, |
| 417 | unsigned short max_vecs); |
Jens Axboe | 9ae3b3f5 | 2017-06-28 15:30:13 -0600 | [diff] [blame] | 418 | extern void bio_uninit(struct bio *); |
Kent Overstreet | f44b48c7 | 2012-09-06 15:34:58 -0700 | [diff] [blame] | 419 | extern void bio_reset(struct bio *); |
Kent Overstreet | 196d38bc | 2013-11-23 18:34:15 -0800 | [diff] [blame] | 420 | void bio_chain(struct bio *, struct bio *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | |
| 422 | extern int bio_add_page(struct bio *, struct page *, unsigned int,unsigned int); |
Mike Christie | 6e68af6 | 2005-11-11 05:30:27 -0600 | [diff] [blame] | 423 | extern int bio_add_pc_page(struct request_queue *, struct bio *, struct page *, |
| 424 | unsigned int, unsigned int); |
Christoph Hellwig | 0aa69fd | 2018-06-01 09:03:05 -0700 | [diff] [blame] | 425 | bool __bio_try_merge_page(struct bio *bio, struct page *page, |
Ming Lei | 07173c3 | 2019-02-15 19:13:20 +0800 | [diff] [blame] | 426 | unsigned int len, unsigned int off, bool same_page); |
Christoph Hellwig | 0aa69fd | 2018-06-01 09:03:05 -0700 | [diff] [blame] | 427 | void __bio_add_page(struct bio *bio, struct page *page, |
| 428 | unsigned int len, unsigned int off); |
Kent Overstreet | 2cefe4d | 2016-10-31 11:59:24 -0600 | [diff] [blame] | 429 | int bio_iov_iter_get_pages(struct bio *bio, struct iov_iter *iter); |
FUJITA Tomonori | 152e283 | 2008-08-28 16:17:06 +0900 | [diff] [blame] | 430 | struct rq_map_data; |
James Bottomley | f1970ba | 2005-06-20 14:06:52 +0200 | [diff] [blame] | 431 | extern struct bio *bio_map_user_iov(struct request_queue *, |
Al Viro | e81cef5 | 2017-09-24 09:25:39 -0400 | [diff] [blame] | 432 | struct iov_iter *, gfp_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | extern void bio_unmap_user(struct bio *); |
Mike Christie | df46b9a | 2005-06-20 14:04:44 +0200 | [diff] [blame] | 434 | extern struct bio *bio_map_kern(struct request_queue *, void *, unsigned int, |
Al Viro | 27496a8 | 2005-10-21 03:20:48 -0400 | [diff] [blame] | 435 | gfp_t); |
FUJITA Tomonori | 68154e9 | 2008-04-25 12:47:50 +0200 | [diff] [blame] | 436 | extern struct bio *bio_copy_kern(struct request_queue *, void *, unsigned int, |
| 437 | gfp_t, int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | extern void bio_set_pages_dirty(struct bio *bio); |
| 439 | extern void bio_check_pages_dirty(struct bio *bio); |
Ilya Loginov | 2d4dc89 | 2009-11-26 09:16:19 +0100 | [diff] [blame] | 440 | |
Michael Callahan | ddcf35d | 2018-07-18 04:47:39 -0700 | [diff] [blame] | 441 | void generic_start_io_acct(struct request_queue *q, int op, |
Jens Axboe | d62e26b | 2017-06-30 21:55:08 -0600 | [diff] [blame] | 442 | unsigned long sectors, struct hd_struct *part); |
Michael Callahan | ddcf35d | 2018-07-18 04:47:39 -0700 | [diff] [blame] | 443 | void generic_end_io_acct(struct request_queue *q, int op, |
Jens Axboe | d62e26b | 2017-06-30 21:55:08 -0600 | [diff] [blame] | 444 | struct hd_struct *part, |
| 445 | unsigned long start_time); |
Gu Zheng | 394ffa5 | 2014-11-24 11:05:22 +0800 | [diff] [blame] | 446 | |
Ilya Loginov | 2d4dc89 | 2009-11-26 09:16:19 +0100 | [diff] [blame] | 447 | #ifndef ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE |
| 448 | # error "You should define ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE for your platform" |
| 449 | #endif |
| 450 | #if ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE |
| 451 | extern void bio_flush_dcache_pages(struct bio *bi); |
| 452 | #else |
| 453 | static inline void bio_flush_dcache_pages(struct bio *bi) |
| 454 | { |
| 455 | } |
| 456 | #endif |
| 457 | |
Kent Overstreet | 45db54d | 2018-05-08 21:33:54 -0400 | [diff] [blame] | 458 | extern void bio_copy_data_iter(struct bio *dst, struct bvec_iter *dst_iter, |
| 459 | struct bio *src, struct bvec_iter *src_iter); |
Kent Overstreet | 16ac3d6 | 2012-09-10 13:57:51 -0700 | [diff] [blame] | 460 | extern void bio_copy_data(struct bio *dst, struct bio *src); |
Kent Overstreet | 45db54d | 2018-05-08 21:33:54 -0400 | [diff] [blame] | 461 | extern void bio_list_copy_data(struct bio *dst, struct bio *src); |
Guoqing Jiang | 491221f | 2016-09-22 03:10:01 -0400 | [diff] [blame] | 462 | extern void bio_free_pages(struct bio *bio); |
Kent Overstreet | 16ac3d6 | 2012-09-10 13:57:51 -0700 | [diff] [blame] | 463 | |
FUJITA Tomonori | 152e283 | 2008-08-28 16:17:06 +0900 | [diff] [blame] | 464 | extern struct bio *bio_copy_user_iov(struct request_queue *, |
Al Viro | 86d564c | 2014-02-08 20:42:52 -0500 | [diff] [blame] | 465 | struct rq_map_data *, |
Al Viro | e81cef5 | 2017-09-24 09:25:39 -0400 | [diff] [blame] | 466 | struct iov_iter *, |
Kent Overstreet | 26e49cf | 2015-01-18 16:16:31 +0100 | [diff] [blame] | 467 | gfp_t); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | extern int bio_uncopy_user(struct bio *); |
Kent Overstreet | 38a72da | 2018-05-08 21:33:53 -0400 | [diff] [blame] | 469 | void zero_fill_bio_iter(struct bio *bio, struct bvec_iter iter); |
| 470 | |
| 471 | static inline void zero_fill_bio(struct bio *bio) |
| 472 | { |
| 473 | zero_fill_bio_iter(bio, bio->bi_iter); |
| 474 | } |
| 475 | |
Kent Overstreet | 9f060e2 | 2012-10-12 15:29:33 -0700 | [diff] [blame] | 476 | extern struct bio_vec *bvec_alloc(gfp_t, int, unsigned long *, mempool_t *); |
| 477 | extern void bvec_free(mempool_t *, struct bio_vec *, unsigned int); |
Martin K. Petersen | 7ba1ba1 | 2008-06-30 20:04:41 +0200 | [diff] [blame] | 478 | extern unsigned int bvec_nr_vecs(unsigned short idx); |
Jiufei Xue | 9c0fb1e | 2018-02-27 20:10:18 +0800 | [diff] [blame] | 479 | extern const char *bio_devname(struct bio *bio, char *buffer); |
Martin K. Petersen | 51d654e | 2008-06-17 18:59:56 +0200 | [diff] [blame] | 480 | |
Christoph Hellwig | 74d4699 | 2017-08-23 19:10:32 +0200 | [diff] [blame] | 481 | #define bio_set_dev(bio, bdev) \ |
| 482 | do { \ |
Shaohua Li | 111be88 | 2017-12-20 11:10:17 -0700 | [diff] [blame] | 483 | if ((bio)->bi_disk != (bdev)->bd_disk) \ |
| 484 | bio_clear_flag(bio, BIO_THROTTLED);\ |
Christoph Hellwig | 74d4699 | 2017-08-23 19:10:32 +0200 | [diff] [blame] | 485 | (bio)->bi_disk = (bdev)->bd_disk; \ |
| 486 | (bio)->bi_partno = (bdev)->bd_partno; \ |
Dennis Zhou | 5cdf2e3 | 2018-12-05 12:10:31 -0500 | [diff] [blame] | 487 | bio_associate_blkg(bio); \ |
Christoph Hellwig | 74d4699 | 2017-08-23 19:10:32 +0200 | [diff] [blame] | 488 | } while (0) |
| 489 | |
| 490 | #define bio_copy_dev(dst, src) \ |
| 491 | do { \ |
| 492 | (dst)->bi_disk = (src)->bi_disk; \ |
| 493 | (dst)->bi_partno = (src)->bi_partno; \ |
Dennis Zhou | db6638d | 2018-12-05 12:10:35 -0500 | [diff] [blame] | 494 | bio_clone_blkg_association(dst, src); \ |
Christoph Hellwig | 74d4699 | 2017-08-23 19:10:32 +0200 | [diff] [blame] | 495 | } while (0) |
| 496 | |
| 497 | #define bio_dev(bio) \ |
| 498 | disk_devt((bio)->bi_disk) |
| 499 | |
Tejun Heo | 0d3bd88 | 2018-07-03 11:14:54 -0400 | [diff] [blame] | 500 | #if defined(CONFIG_MEMCG) && defined(CONFIG_BLK_CGROUP) |
Dennis Zhou | 6a7f6d8 | 2018-12-05 12:10:33 -0500 | [diff] [blame] | 501 | void bio_associate_blkg_from_page(struct bio *bio, struct page *page); |
Tejun Heo | 0d3bd88 | 2018-07-03 11:14:54 -0400 | [diff] [blame] | 502 | #else |
Dennis Zhou | 6a7f6d8 | 2018-12-05 12:10:33 -0500 | [diff] [blame] | 503 | static inline void bio_associate_blkg_from_page(struct bio *bio, |
| 504 | struct page *page) { } |
Tejun Heo | 0d3bd88 | 2018-07-03 11:14:54 -0400 | [diff] [blame] | 505 | #endif |
| 506 | |
Tejun Heo | 852c788 | 2012-03-05 13:15:27 -0800 | [diff] [blame] | 507 | #ifdef CONFIG_BLK_CGROUP |
Dennis Zhou | 2268c0f | 2018-12-05 12:10:29 -0500 | [diff] [blame] | 508 | void bio_disassociate_blkg(struct bio *bio); |
| 509 | void bio_associate_blkg(struct bio *bio); |
Dennis Zhou | fd42df3 | 2018-12-05 12:10:34 -0500 | [diff] [blame] | 510 | void bio_associate_blkg_from_css(struct bio *bio, |
| 511 | struct cgroup_subsys_state *css); |
Dennis Zhou | db6638d | 2018-12-05 12:10:35 -0500 | [diff] [blame] | 512 | void bio_clone_blkg_association(struct bio *dst, struct bio *src); |
Tejun Heo | 852c788 | 2012-03-05 13:15:27 -0800 | [diff] [blame] | 513 | #else /* CONFIG_BLK_CGROUP */ |
Dennis Zhou | 2268c0f | 2018-12-05 12:10:29 -0500 | [diff] [blame] | 514 | static inline void bio_disassociate_blkg(struct bio *bio) { } |
| 515 | static inline void bio_associate_blkg(struct bio *bio) { } |
Dennis Zhou | fd42df3 | 2018-12-05 12:10:34 -0500 | [diff] [blame] | 516 | static inline void bio_associate_blkg_from_css(struct bio *bio, |
| 517 | struct cgroup_subsys_state *css) |
| 518 | { } |
Dennis Zhou | db6638d | 2018-12-05 12:10:35 -0500 | [diff] [blame] | 519 | static inline void bio_clone_blkg_association(struct bio *dst, |
| 520 | struct bio *src) { } |
Tejun Heo | 852c788 | 2012-03-05 13:15:27 -0800 | [diff] [blame] | 521 | #endif /* CONFIG_BLK_CGROUP */ |
| 522 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | #ifdef CONFIG_HIGHMEM |
| 524 | /* |
Alberto Bertogli | 20b636b | 2009-02-02 12:41:07 +0100 | [diff] [blame] | 525 | * remember never ever reenable interrupts between a bvec_kmap_irq and |
| 526 | * bvec_kunmap_irq! |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 527 | */ |
Alberto Bertogli | 4f570f9 | 2009-11-02 11:40:16 +0100 | [diff] [blame] | 528 | static inline char *bvec_kmap_irq(struct bio_vec *bvec, unsigned long *flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 529 | { |
| 530 | unsigned long addr; |
| 531 | |
| 532 | /* |
| 533 | * might not be a highmem page, but the preempt/irq count |
| 534 | * balancing is a lot nicer this way |
| 535 | */ |
| 536 | local_irq_save(*flags); |
Cong Wang | e8e3c3d | 2011-11-25 23:14:27 +0800 | [diff] [blame] | 537 | addr = (unsigned long) kmap_atomic(bvec->bv_page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 538 | |
| 539 | BUG_ON(addr & ~PAGE_MASK); |
| 540 | |
| 541 | return (char *) addr + bvec->bv_offset; |
| 542 | } |
| 543 | |
Alberto Bertogli | 4f570f9 | 2009-11-02 11:40:16 +0100 | [diff] [blame] | 544 | static inline void bvec_kunmap_irq(char *buffer, unsigned long *flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | { |
| 546 | unsigned long ptr = (unsigned long) buffer & PAGE_MASK; |
| 547 | |
Cong Wang | e8e3c3d | 2011-11-25 23:14:27 +0800 | [diff] [blame] | 548 | kunmap_atomic((void *) ptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | local_irq_restore(*flags); |
| 550 | } |
| 551 | |
| 552 | #else |
Geert Uytterhoeven | 11a691b | 2010-10-21 10:32:29 +0200 | [diff] [blame] | 553 | static inline char *bvec_kmap_irq(struct bio_vec *bvec, unsigned long *flags) |
| 554 | { |
| 555 | return page_address(bvec->bv_page) + bvec->bv_offset; |
| 556 | } |
| 557 | |
| 558 | static inline void bvec_kunmap_irq(char *buffer, unsigned long *flags) |
| 559 | { |
| 560 | *flags = 0; |
| 561 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 562 | #endif |
| 563 | |
Jens Axboe | 7a67f63 | 2008-08-08 11:17:12 +0200 | [diff] [blame] | 564 | /* |
Akinobu Mita | e686307 | 2009-04-17 08:41:21 +0200 | [diff] [blame] | 565 | * BIO list management for use by remapping drivers (e.g. DM or MD) and loop. |
Christoph Hellwig | 8f3d8ba | 2009-04-07 19:55:13 +0200 | [diff] [blame] | 566 | * |
| 567 | * A bio_list anchors a singly-linked list of bios chained through the bi_next |
| 568 | * member of the bio. The bio_list also caches the last list member to allow |
| 569 | * fast access to the tail. |
| 570 | */ |
| 571 | struct bio_list { |
| 572 | struct bio *head; |
| 573 | struct bio *tail; |
| 574 | }; |
| 575 | |
| 576 | static inline int bio_list_empty(const struct bio_list *bl) |
| 577 | { |
| 578 | return bl->head == NULL; |
| 579 | } |
| 580 | |
| 581 | static inline void bio_list_init(struct bio_list *bl) |
| 582 | { |
| 583 | bl->head = bl->tail = NULL; |
| 584 | } |
| 585 | |
Jens Axboe | 320ae51 | 2013-10-24 09:20:05 +0100 | [diff] [blame] | 586 | #define BIO_EMPTY_LIST { NULL, NULL } |
| 587 | |
Christoph Hellwig | 8f3d8ba | 2009-04-07 19:55:13 +0200 | [diff] [blame] | 588 | #define bio_list_for_each(bio, bl) \ |
| 589 | for (bio = (bl)->head; bio; bio = bio->bi_next) |
| 590 | |
| 591 | static inline unsigned bio_list_size(const struct bio_list *bl) |
| 592 | { |
| 593 | unsigned sz = 0; |
| 594 | struct bio *bio; |
| 595 | |
| 596 | bio_list_for_each(bio, bl) |
| 597 | sz++; |
| 598 | |
| 599 | return sz; |
| 600 | } |
| 601 | |
| 602 | static inline void bio_list_add(struct bio_list *bl, struct bio *bio) |
| 603 | { |
| 604 | bio->bi_next = NULL; |
| 605 | |
| 606 | if (bl->tail) |
| 607 | bl->tail->bi_next = bio; |
| 608 | else |
| 609 | bl->head = bio; |
| 610 | |
| 611 | bl->tail = bio; |
| 612 | } |
| 613 | |
| 614 | static inline void bio_list_add_head(struct bio_list *bl, struct bio *bio) |
| 615 | { |
| 616 | bio->bi_next = bl->head; |
| 617 | |
| 618 | bl->head = bio; |
| 619 | |
| 620 | if (!bl->tail) |
| 621 | bl->tail = bio; |
| 622 | } |
| 623 | |
| 624 | static inline void bio_list_merge(struct bio_list *bl, struct bio_list *bl2) |
| 625 | { |
| 626 | if (!bl2->head) |
| 627 | return; |
| 628 | |
| 629 | if (bl->tail) |
| 630 | bl->tail->bi_next = bl2->head; |
| 631 | else |
| 632 | bl->head = bl2->head; |
| 633 | |
| 634 | bl->tail = bl2->tail; |
| 635 | } |
| 636 | |
| 637 | static inline void bio_list_merge_head(struct bio_list *bl, |
| 638 | struct bio_list *bl2) |
| 639 | { |
| 640 | if (!bl2->head) |
| 641 | return; |
| 642 | |
| 643 | if (bl->head) |
| 644 | bl2->tail->bi_next = bl->head; |
| 645 | else |
| 646 | bl->tail = bl2->tail; |
| 647 | |
| 648 | bl->head = bl2->head; |
| 649 | } |
| 650 | |
Geert Uytterhoeven | 13685a1 | 2009-06-10 04:38:40 +0000 | [diff] [blame] | 651 | static inline struct bio *bio_list_peek(struct bio_list *bl) |
| 652 | { |
| 653 | return bl->head; |
| 654 | } |
| 655 | |
Christoph Hellwig | 8f3d8ba | 2009-04-07 19:55:13 +0200 | [diff] [blame] | 656 | static inline struct bio *bio_list_pop(struct bio_list *bl) |
| 657 | { |
| 658 | struct bio *bio = bl->head; |
| 659 | |
| 660 | if (bio) { |
| 661 | bl->head = bl->head->bi_next; |
| 662 | if (!bl->head) |
| 663 | bl->tail = NULL; |
| 664 | |
| 665 | bio->bi_next = NULL; |
| 666 | } |
| 667 | |
| 668 | return bio; |
| 669 | } |
| 670 | |
| 671 | static inline struct bio *bio_list_get(struct bio_list *bl) |
| 672 | { |
| 673 | struct bio *bio = bl->head; |
| 674 | |
| 675 | bl->head = bl->tail = NULL; |
| 676 | |
| 677 | return bio; |
| 678 | } |
| 679 | |
Kent Overstreet | 57fb233 | 2012-08-24 04:56:11 -0700 | [diff] [blame] | 680 | /* |
Mike Snitzer | 0ef5a50 | 2016-05-05 11:54:22 -0400 | [diff] [blame] | 681 | * Increment chain count for the bio. Make sure the CHAIN flag update |
| 682 | * is visible before the raised count. |
| 683 | */ |
| 684 | static inline void bio_inc_remaining(struct bio *bio) |
| 685 | { |
| 686 | bio_set_flag(bio, BIO_CHAIN); |
| 687 | smp_mb__before_atomic(); |
| 688 | atomic_inc(&bio->__bi_remaining); |
| 689 | } |
| 690 | |
| 691 | /* |
Kent Overstreet | 57fb233 | 2012-08-24 04:56:11 -0700 | [diff] [blame] | 692 | * bio_set is used to allow other portions of the IO system to |
| 693 | * allocate their own private memory pools for bio and iovec structures. |
| 694 | * These memory pools in turn all allocate from the bio_slab |
| 695 | * and the bvec_slabs[]. |
| 696 | */ |
| 697 | #define BIO_POOL_SIZE 2 |
Kent Overstreet | 57fb233 | 2012-08-24 04:56:11 -0700 | [diff] [blame] | 698 | |
| 699 | struct bio_set { |
| 700 | struct kmem_cache *bio_slab; |
| 701 | unsigned int front_pad; |
| 702 | |
Kent Overstreet | 8aa6ba2f | 2018-05-08 21:33:50 -0400 | [diff] [blame] | 703 | mempool_t bio_pool; |
| 704 | mempool_t bvec_pool; |
Kent Overstreet | 57fb233 | 2012-08-24 04:56:11 -0700 | [diff] [blame] | 705 | #if defined(CONFIG_BLK_DEV_INTEGRITY) |
Kent Overstreet | 8aa6ba2f | 2018-05-08 21:33:50 -0400 | [diff] [blame] | 706 | mempool_t bio_integrity_pool; |
| 707 | mempool_t bvec_integrity_pool; |
Kent Overstreet | 57fb233 | 2012-08-24 04:56:11 -0700 | [diff] [blame] | 708 | #endif |
Kent Overstreet | df2cb6d | 2012-09-10 14:33:46 -0700 | [diff] [blame] | 709 | |
| 710 | /* |
| 711 | * Deadlock avoidance for stacking block drivers: see comments in |
| 712 | * bio_alloc_bioset() for details |
| 713 | */ |
| 714 | spinlock_t rescue_lock; |
| 715 | struct bio_list rescue_list; |
| 716 | struct work_struct rescue_work; |
| 717 | struct workqueue_struct *rescue_workqueue; |
Kent Overstreet | 57fb233 | 2012-08-24 04:56:11 -0700 | [diff] [blame] | 718 | }; |
| 719 | |
| 720 | struct biovec_slab { |
| 721 | int nr_vecs; |
| 722 | char *name; |
| 723 | struct kmem_cache *slab; |
| 724 | }; |
| 725 | |
Kent Overstreet | 338aa96 | 2018-05-20 18:25:47 -0400 | [diff] [blame] | 726 | static inline bool bioset_initialized(struct bio_set *bs) |
| 727 | { |
| 728 | return bs->bio_slab != NULL; |
| 729 | } |
| 730 | |
Kent Overstreet | 57fb233 | 2012-08-24 04:56:11 -0700 | [diff] [blame] | 731 | /* |
| 732 | * a small number of entries is fine, not going to be performance critical. |
| 733 | * basically we just need to survive |
| 734 | */ |
| 735 | #define BIO_SPLIT_ENTRIES 2 |
| 736 | |
Martin K. Petersen | 7ba1ba1 | 2008-06-30 20:04:41 +0200 | [diff] [blame] | 737 | #if defined(CONFIG_BLK_DEV_INTEGRITY) |
| 738 | |
Kent Overstreet | d57a5f7 | 2013-11-23 17:20:16 -0800 | [diff] [blame] | 739 | #define bip_for_each_vec(bvl, bip, iter) \ |
| 740 | for_each_bvec(bvl, (bip)->bip_vec, iter, (bip)->bip_iter) |
Martin K. Petersen | 7ba1ba1 | 2008-06-30 20:04:41 +0200 | [diff] [blame] | 741 | |
Martin K. Petersen | 13f05c8 | 2010-09-10 20:50:10 +0200 | [diff] [blame] | 742 | #define bio_for_each_integrity_vec(_bvl, _bio, _iter) \ |
| 743 | for_each_bio(_bio) \ |
| 744 | bip_for_each_vec(_bvl, _bio->bi_integrity, _iter) |
| 745 | |
Martin K. Petersen | 7ba1ba1 | 2008-06-30 20:04:41 +0200 | [diff] [blame] | 746 | extern struct bio_integrity_payload *bio_integrity_alloc(struct bio *, gfp_t, unsigned int); |
Martin K. Petersen | 7ba1ba1 | 2008-06-30 20:04:41 +0200 | [diff] [blame] | 747 | extern int bio_integrity_add_page(struct bio *, struct page *, unsigned int, unsigned int); |
Dmitry Monakhov | e23947b | 2017-06-29 11:31:11 -0700 | [diff] [blame] | 748 | extern bool bio_integrity_prep(struct bio *); |
Martin K. Petersen | 7ba1ba1 | 2008-06-30 20:04:41 +0200 | [diff] [blame] | 749 | extern void bio_integrity_advance(struct bio *, unsigned int); |
Dmitry Monakhov | fbd08e7 | 2017-06-29 11:31:10 -0700 | [diff] [blame] | 750 | extern void bio_integrity_trim(struct bio *); |
Kent Overstreet | 1e2a410f | 2012-09-06 15:34:56 -0700 | [diff] [blame] | 751 | extern int bio_integrity_clone(struct bio *, struct bio *, gfp_t); |
Martin K. Petersen | 7878cba | 2009-06-26 15:37:49 +0200 | [diff] [blame] | 752 | extern int bioset_integrity_create(struct bio_set *, int); |
| 753 | extern void bioset_integrity_free(struct bio_set *); |
| 754 | extern void bio_integrity_init(void); |
Martin K. Petersen | 7ba1ba1 | 2008-06-30 20:04:41 +0200 | [diff] [blame] | 755 | |
| 756 | #else /* CONFIG_BLK_DEV_INTEGRITY */ |
| 757 | |
Martin K. Petersen | c611529 | 2014-09-26 19:20:08 -0400 | [diff] [blame] | 758 | static inline void *bio_integrity(struct bio *bio) |
Martin K. Petersen | 6898e3b | 2012-01-13 08:15:33 +0100 | [diff] [blame] | 759 | { |
Martin K. Petersen | c611529 | 2014-09-26 19:20:08 -0400 | [diff] [blame] | 760 | return NULL; |
Martin K. Petersen | 6898e3b | 2012-01-13 08:15:33 +0100 | [diff] [blame] | 761 | } |
| 762 | |
Martin K. Petersen | 6898e3b | 2012-01-13 08:15:33 +0100 | [diff] [blame] | 763 | static inline int bioset_integrity_create(struct bio_set *bs, int pool_size) |
| 764 | { |
| 765 | return 0; |
| 766 | } |
| 767 | |
| 768 | static inline void bioset_integrity_free (struct bio_set *bs) |
| 769 | { |
| 770 | return; |
| 771 | } |
| 772 | |
Dmitry Monakhov | e23947b | 2017-06-29 11:31:11 -0700 | [diff] [blame] | 773 | static inline bool bio_integrity_prep(struct bio *bio) |
Martin K. Petersen | 6898e3b | 2012-01-13 08:15:33 +0100 | [diff] [blame] | 774 | { |
Dmitry Monakhov | e23947b | 2017-06-29 11:31:11 -0700 | [diff] [blame] | 775 | return true; |
Martin K. Petersen | 6898e3b | 2012-01-13 08:15:33 +0100 | [diff] [blame] | 776 | } |
| 777 | |
Stephen Rothwell | 0c614e2 | 2011-11-16 09:21:48 +0100 | [diff] [blame] | 778 | static inline int bio_integrity_clone(struct bio *bio, struct bio *bio_src, |
Kent Overstreet | 1e2a410f | 2012-09-06 15:34:56 -0700 | [diff] [blame] | 779 | gfp_t gfp_mask) |
Stephen Rothwell | 0c614e2 | 2011-11-16 09:21:48 +0100 | [diff] [blame] | 780 | { |
| 781 | return 0; |
| 782 | } |
Martin K. Petersen | 6898e3b | 2012-01-13 08:15:33 +0100 | [diff] [blame] | 783 | |
Martin K. Petersen | 6898e3b | 2012-01-13 08:15:33 +0100 | [diff] [blame] | 784 | static inline void bio_integrity_advance(struct bio *bio, |
| 785 | unsigned int bytes_done) |
| 786 | { |
| 787 | return; |
| 788 | } |
| 789 | |
Dmitry Monakhov | fbd08e7 | 2017-06-29 11:31:10 -0700 | [diff] [blame] | 790 | static inline void bio_integrity_trim(struct bio *bio) |
Martin K. Petersen | 6898e3b | 2012-01-13 08:15:33 +0100 | [diff] [blame] | 791 | { |
| 792 | return; |
| 793 | } |
| 794 | |
| 795 | static inline void bio_integrity_init(void) |
| 796 | { |
| 797 | return; |
| 798 | } |
Martin K. Petersen | 7ba1ba1 | 2008-06-30 20:04:41 +0200 | [diff] [blame] | 799 | |
Martin K. Petersen | c611529 | 2014-09-26 19:20:08 -0400 | [diff] [blame] | 800 | static inline bool bio_integrity_flagged(struct bio *bio, enum bip_flags flag) |
| 801 | { |
| 802 | return false; |
| 803 | } |
| 804 | |
Keith Busch | 06c1e39 | 2015-12-03 09:32:21 -0700 | [diff] [blame] | 805 | static inline void *bio_integrity_alloc(struct bio * bio, gfp_t gfp, |
| 806 | unsigned int nr) |
| 807 | { |
| 808 | return ERR_PTR(-EINVAL); |
| 809 | } |
| 810 | |
| 811 | static inline int bio_integrity_add_page(struct bio *bio, struct page *page, |
| 812 | unsigned int len, unsigned int offset) |
| 813 | { |
| 814 | return 0; |
| 815 | } |
| 816 | |
Martin K. Petersen | 7ba1ba1 | 2008-06-30 20:04:41 +0200 | [diff] [blame] | 817 | #endif /* CONFIG_BLK_DEV_INTEGRITY */ |
| 818 | |
Jens Axboe | 0bbb280 | 2018-12-21 09:10:46 -0700 | [diff] [blame] | 819 | /* |
| 820 | * Mark a bio as polled. Note that for async polled IO, the caller must |
| 821 | * expect -EWOULDBLOCK if we cannot allocate a request (or other resources). |
| 822 | * We cannot block waiting for requests on polled IO, as those completions |
| 823 | * must be found by the caller. This is different than IRQ driven IO, where |
| 824 | * it's safe to wait for IO to complete. |
| 825 | */ |
| 826 | static inline void bio_set_polled(struct bio *bio, struct kiocb *kiocb) |
| 827 | { |
| 828 | bio->bi_opf |= REQ_HIPRI; |
| 829 | if (!is_sync_kiocb(kiocb)) |
| 830 | bio->bi_opf |= REQ_NOWAIT; |
| 831 | } |
| 832 | |
David Howells | 02a5e0a | 2007-08-11 22:34:32 +0200 | [diff] [blame] | 833 | #endif /* CONFIG_BLOCK */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | #endif /* __LINUX_BIO_H */ |