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