David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2012 Fusion-io All rights reserved. |
| 3 | * Copyright (C) 2012 Intel Corp. All rights reserved. |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of the GNU General Public |
| 7 | * License v2 as published by the Free Software Foundation. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 12 | * General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public |
| 15 | * License along with this program; if not, write to the |
| 16 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 17 | * Boston, MA 021110-1307, USA. |
| 18 | */ |
| 19 | #include <linux/sched.h> |
| 20 | #include <linux/wait.h> |
| 21 | #include <linux/bio.h> |
| 22 | #include <linux/slab.h> |
| 23 | #include <linux/buffer_head.h> |
| 24 | #include <linux/blkdev.h> |
| 25 | #include <linux/random.h> |
| 26 | #include <linux/iocontext.h> |
| 27 | #include <linux/capability.h> |
| 28 | #include <linux/ratelimit.h> |
| 29 | #include <linux/kthread.h> |
| 30 | #include <linux/raid/pq.h> |
| 31 | #include <linux/hash.h> |
| 32 | #include <linux/list_sort.h> |
| 33 | #include <linux/raid/xor.h> |
David Sterba | 818e010 | 2017-05-31 18:40:02 +0200 | [diff] [blame] | 34 | #include <linux/mm.h> |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 35 | #include <asm/div64.h> |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 36 | #include "ctree.h" |
| 37 | #include "extent_map.h" |
| 38 | #include "disk-io.h" |
| 39 | #include "transaction.h" |
| 40 | #include "print-tree.h" |
| 41 | #include "volumes.h" |
| 42 | #include "raid56.h" |
| 43 | #include "async-thread.h" |
| 44 | #include "check-integrity.h" |
| 45 | #include "rcu-string.h" |
| 46 | |
| 47 | /* set when additional merges to this rbio are not allowed */ |
| 48 | #define RBIO_RMW_LOCKED_BIT 1 |
| 49 | |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 50 | /* |
| 51 | * set when this rbio is sitting in the hash, but it is just a cache |
| 52 | * of past RMW |
| 53 | */ |
| 54 | #define RBIO_CACHE_BIT 2 |
| 55 | |
| 56 | /* |
| 57 | * set when it is safe to trust the stripe_pages for caching |
| 58 | */ |
| 59 | #define RBIO_CACHE_READY_BIT 3 |
| 60 | |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 61 | #define RBIO_CACHE_SIZE 1024 |
| 62 | |
Miao Xie | 1b94b55 | 2014-11-06 16:14:21 +0800 | [diff] [blame] | 63 | enum btrfs_rbio_ops { |
Omar Sandoval | b4ee178 | 2015-06-19 11:52:50 -0700 | [diff] [blame] | 64 | BTRFS_RBIO_WRITE, |
| 65 | BTRFS_RBIO_READ_REBUILD, |
| 66 | BTRFS_RBIO_PARITY_SCRUB, |
| 67 | BTRFS_RBIO_REBUILD_MISSING, |
Miao Xie | 1b94b55 | 2014-11-06 16:14:21 +0800 | [diff] [blame] | 68 | }; |
| 69 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 70 | struct btrfs_raid_bio { |
| 71 | struct btrfs_fs_info *fs_info; |
| 72 | struct btrfs_bio *bbio; |
| 73 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 74 | /* while we're doing rmw on a stripe |
| 75 | * we put it into a hash table so we can |
| 76 | * lock the stripe and merge more rbios |
| 77 | * into it. |
| 78 | */ |
| 79 | struct list_head hash_list; |
| 80 | |
| 81 | /* |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 82 | * LRU list for the stripe cache |
| 83 | */ |
| 84 | struct list_head stripe_cache; |
| 85 | |
| 86 | /* |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 87 | * for scheduling work in the helper threads |
| 88 | */ |
| 89 | struct btrfs_work work; |
| 90 | |
| 91 | /* |
| 92 | * bio list and bio_list_lock are used |
| 93 | * to add more bios into the stripe |
| 94 | * in hopes of avoiding the full rmw |
| 95 | */ |
| 96 | struct bio_list bio_list; |
| 97 | spinlock_t bio_list_lock; |
| 98 | |
Chris Mason | 6ac0f48 | 2013-01-31 14:42:28 -0500 | [diff] [blame] | 99 | /* also protected by the bio_list_lock, the |
| 100 | * plug list is used by the plugging code |
| 101 | * to collect partial bios while plugged. The |
| 102 | * stripe locking code also uses it to hand off |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 103 | * the stripe lock to the next pending IO |
| 104 | */ |
| 105 | struct list_head plug_list; |
| 106 | |
| 107 | /* |
| 108 | * flags that tell us if it is safe to |
| 109 | * merge with this bio |
| 110 | */ |
| 111 | unsigned long flags; |
| 112 | |
| 113 | /* size of each individual stripe on disk */ |
| 114 | int stripe_len; |
| 115 | |
| 116 | /* number of data stripes (no p/q) */ |
| 117 | int nr_data; |
| 118 | |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 119 | int real_stripes; |
| 120 | |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 121 | int stripe_npages; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 122 | /* |
| 123 | * set if we're doing a parity rebuild |
| 124 | * for a read from higher up, which is handled |
| 125 | * differently from a parity rebuild as part of |
| 126 | * rmw |
| 127 | */ |
Miao Xie | 1b94b55 | 2014-11-06 16:14:21 +0800 | [diff] [blame] | 128 | enum btrfs_rbio_ops operation; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 129 | |
| 130 | /* first bad stripe */ |
| 131 | int faila; |
| 132 | |
| 133 | /* second bad stripe (for raid6 use) */ |
| 134 | int failb; |
| 135 | |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 136 | int scrubp; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 137 | /* |
| 138 | * number of pages needed to represent the full |
| 139 | * stripe |
| 140 | */ |
| 141 | int nr_pages; |
| 142 | |
| 143 | /* |
| 144 | * size of all the bios in the bio_list. This |
| 145 | * helps us decide if the rbio maps to a full |
| 146 | * stripe or not |
| 147 | */ |
| 148 | int bio_list_bytes; |
| 149 | |
Miao Xie | 4245215 | 2014-11-25 16:39:28 +0800 | [diff] [blame] | 150 | int generic_bio_cnt; |
| 151 | |
Elena Reshetova | dec9557 | 2017-03-03 10:55:26 +0200 | [diff] [blame] | 152 | refcount_t refs; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 153 | |
Miao Xie | b89e1b0 | 2014-10-15 11:18:44 +0800 | [diff] [blame] | 154 | atomic_t stripes_pending; |
| 155 | |
| 156 | atomic_t error; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 157 | /* |
| 158 | * these are two arrays of pointers. We allocate the |
| 159 | * rbio big enough to hold them both and setup their |
| 160 | * locations when the rbio is allocated |
| 161 | */ |
| 162 | |
| 163 | /* pointers to pages that we allocated for |
| 164 | * reading/writing stripes directly from the disk (including P/Q) |
| 165 | */ |
| 166 | struct page **stripe_pages; |
| 167 | |
| 168 | /* |
| 169 | * pointers to the pages in the bio_list. Stored |
| 170 | * here for faster lookup |
| 171 | */ |
| 172 | struct page **bio_pages; |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 173 | |
| 174 | /* |
| 175 | * bitmap to record which horizontal stripe has data |
| 176 | */ |
| 177 | unsigned long *dbitmap; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 178 | }; |
| 179 | |
| 180 | static int __raid56_parity_recover(struct btrfs_raid_bio *rbio); |
| 181 | static noinline void finish_rmw(struct btrfs_raid_bio *rbio); |
| 182 | static void rmw_work(struct btrfs_work *work); |
| 183 | static void read_rebuild_work(struct btrfs_work *work); |
| 184 | static void async_rmw_stripe(struct btrfs_raid_bio *rbio); |
| 185 | static void async_read_rebuild(struct btrfs_raid_bio *rbio); |
| 186 | static int fail_bio_stripe(struct btrfs_raid_bio *rbio, struct bio *bio); |
| 187 | static int fail_rbio_index(struct btrfs_raid_bio *rbio, int failed); |
| 188 | static void __free_raid_bio(struct btrfs_raid_bio *rbio); |
| 189 | static void index_rbio_pages(struct btrfs_raid_bio *rbio); |
| 190 | static int alloc_rbio_pages(struct btrfs_raid_bio *rbio); |
| 191 | |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 192 | static noinline void finish_parity_scrub(struct btrfs_raid_bio *rbio, |
| 193 | int need_check); |
| 194 | static void async_scrub_parity(struct btrfs_raid_bio *rbio); |
| 195 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 196 | /* |
| 197 | * the stripe hash table is used for locking, and to collect |
| 198 | * bios in hopes of making a full stripe |
| 199 | */ |
| 200 | int btrfs_alloc_stripe_hash_table(struct btrfs_fs_info *info) |
| 201 | { |
| 202 | struct btrfs_stripe_hash_table *table; |
| 203 | struct btrfs_stripe_hash_table *x; |
| 204 | struct btrfs_stripe_hash *cur; |
| 205 | struct btrfs_stripe_hash *h; |
| 206 | int num_entries = 1 << BTRFS_STRIPE_HASH_TABLE_BITS; |
| 207 | int i; |
David Sterba | 83c8266 | 2013-03-01 15:03:00 +0000 | [diff] [blame] | 208 | int table_size; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 209 | |
| 210 | if (info->stripe_hash_table) |
| 211 | return 0; |
| 212 | |
David Sterba | 83c8266 | 2013-03-01 15:03:00 +0000 | [diff] [blame] | 213 | /* |
| 214 | * The table is large, starting with order 4 and can go as high as |
| 215 | * order 7 in case lock debugging is turned on. |
| 216 | * |
| 217 | * Try harder to allocate and fallback to vmalloc to lower the chance |
| 218 | * of a failing mount. |
| 219 | */ |
| 220 | table_size = sizeof(*table) + sizeof(*h) * num_entries; |
David Sterba | 818e010 | 2017-05-31 18:40:02 +0200 | [diff] [blame] | 221 | table = kvzalloc(table_size, GFP_KERNEL); |
| 222 | if (!table) |
| 223 | return -ENOMEM; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 224 | |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 225 | spin_lock_init(&table->cache_lock); |
| 226 | INIT_LIST_HEAD(&table->stripe_cache); |
| 227 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 228 | h = table->table; |
| 229 | |
| 230 | for (i = 0; i < num_entries; i++) { |
| 231 | cur = h + i; |
| 232 | INIT_LIST_HEAD(&cur->hash_list); |
| 233 | spin_lock_init(&cur->lock); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 234 | } |
| 235 | |
| 236 | x = cmpxchg(&info->stripe_hash_table, NULL, table); |
Wang Shilong | f749303 | 2014-11-22 21:13:10 +0800 | [diff] [blame] | 237 | if (x) |
| 238 | kvfree(x); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 239 | return 0; |
| 240 | } |
| 241 | |
| 242 | /* |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 243 | * caching an rbio means to copy anything from the |
| 244 | * bio_pages array into the stripe_pages array. We |
| 245 | * use the page uptodate bit in the stripe cache array |
| 246 | * to indicate if it has valid data |
| 247 | * |
| 248 | * once the caching is done, we set the cache ready |
| 249 | * bit. |
| 250 | */ |
| 251 | static void cache_rbio_pages(struct btrfs_raid_bio *rbio) |
| 252 | { |
| 253 | int i; |
| 254 | char *s; |
| 255 | char *d; |
| 256 | int ret; |
| 257 | |
| 258 | ret = alloc_rbio_pages(rbio); |
| 259 | if (ret) |
| 260 | return; |
| 261 | |
| 262 | for (i = 0; i < rbio->nr_pages; i++) { |
| 263 | if (!rbio->bio_pages[i]) |
| 264 | continue; |
| 265 | |
| 266 | s = kmap(rbio->bio_pages[i]); |
| 267 | d = kmap(rbio->stripe_pages[i]); |
| 268 | |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 269 | memcpy(d, s, PAGE_SIZE); |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 270 | |
| 271 | kunmap(rbio->bio_pages[i]); |
| 272 | kunmap(rbio->stripe_pages[i]); |
| 273 | SetPageUptodate(rbio->stripe_pages[i]); |
| 274 | } |
| 275 | set_bit(RBIO_CACHE_READY_BIT, &rbio->flags); |
| 276 | } |
| 277 | |
| 278 | /* |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 279 | * we hash on the first logical address of the stripe |
| 280 | */ |
| 281 | static int rbio_bucket(struct btrfs_raid_bio *rbio) |
| 282 | { |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 283 | u64 num = rbio->bbio->raid_map[0]; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 284 | |
| 285 | /* |
| 286 | * we shift down quite a bit. We're using byte |
| 287 | * addressing, and most of the lower bits are zeros. |
| 288 | * This tends to upset hash_64, and it consistently |
| 289 | * returns just one or two different values. |
| 290 | * |
| 291 | * shifting off the lower bits fixes things. |
| 292 | */ |
| 293 | return hash_64(num >> 16, BTRFS_STRIPE_HASH_TABLE_BITS); |
| 294 | } |
| 295 | |
| 296 | /* |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 297 | * stealing an rbio means taking all the uptodate pages from the stripe |
| 298 | * array in the source rbio and putting them into the destination rbio |
| 299 | */ |
| 300 | static void steal_rbio(struct btrfs_raid_bio *src, struct btrfs_raid_bio *dest) |
| 301 | { |
| 302 | int i; |
| 303 | struct page *s; |
| 304 | struct page *d; |
| 305 | |
| 306 | if (!test_bit(RBIO_CACHE_READY_BIT, &src->flags)) |
| 307 | return; |
| 308 | |
| 309 | for (i = 0; i < dest->nr_pages; i++) { |
| 310 | s = src->stripe_pages[i]; |
| 311 | if (!s || !PageUptodate(s)) { |
| 312 | continue; |
| 313 | } |
| 314 | |
| 315 | d = dest->stripe_pages[i]; |
| 316 | if (d) |
| 317 | __free_page(d); |
| 318 | |
| 319 | dest->stripe_pages[i] = s; |
| 320 | src->stripe_pages[i] = NULL; |
| 321 | } |
| 322 | } |
| 323 | |
| 324 | /* |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 325 | * merging means we take the bio_list from the victim and |
| 326 | * splice it into the destination. The victim should |
| 327 | * be discarded afterwards. |
| 328 | * |
| 329 | * must be called with dest->rbio_list_lock held |
| 330 | */ |
| 331 | static void merge_rbio(struct btrfs_raid_bio *dest, |
| 332 | struct btrfs_raid_bio *victim) |
| 333 | { |
| 334 | bio_list_merge(&dest->bio_list, &victim->bio_list); |
| 335 | dest->bio_list_bytes += victim->bio_list_bytes; |
Miao Xie | 4245215 | 2014-11-25 16:39:28 +0800 | [diff] [blame] | 336 | dest->generic_bio_cnt += victim->generic_bio_cnt; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 337 | bio_list_init(&victim->bio_list); |
| 338 | } |
| 339 | |
| 340 | /* |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 341 | * used to prune items that are in the cache. The caller |
| 342 | * must hold the hash table lock. |
| 343 | */ |
| 344 | static void __remove_rbio_from_cache(struct btrfs_raid_bio *rbio) |
| 345 | { |
| 346 | int bucket = rbio_bucket(rbio); |
| 347 | struct btrfs_stripe_hash_table *table; |
| 348 | struct btrfs_stripe_hash *h; |
| 349 | int freeit = 0; |
| 350 | |
| 351 | /* |
| 352 | * check the bit again under the hash table lock. |
| 353 | */ |
| 354 | if (!test_bit(RBIO_CACHE_BIT, &rbio->flags)) |
| 355 | return; |
| 356 | |
| 357 | table = rbio->fs_info->stripe_hash_table; |
| 358 | h = table->table + bucket; |
| 359 | |
| 360 | /* hold the lock for the bucket because we may be |
| 361 | * removing it from the hash table |
| 362 | */ |
| 363 | spin_lock(&h->lock); |
| 364 | |
| 365 | /* |
| 366 | * hold the lock for the bio list because we need |
| 367 | * to make sure the bio list is empty |
| 368 | */ |
| 369 | spin_lock(&rbio->bio_list_lock); |
| 370 | |
| 371 | if (test_and_clear_bit(RBIO_CACHE_BIT, &rbio->flags)) { |
| 372 | list_del_init(&rbio->stripe_cache); |
| 373 | table->cache_size -= 1; |
| 374 | freeit = 1; |
| 375 | |
| 376 | /* if the bio list isn't empty, this rbio is |
| 377 | * still involved in an IO. We take it out |
| 378 | * of the cache list, and drop the ref that |
| 379 | * was held for the list. |
| 380 | * |
| 381 | * If the bio_list was empty, we also remove |
| 382 | * the rbio from the hash_table, and drop |
| 383 | * the corresponding ref |
| 384 | */ |
| 385 | if (bio_list_empty(&rbio->bio_list)) { |
| 386 | if (!list_empty(&rbio->hash_list)) { |
| 387 | list_del_init(&rbio->hash_list); |
Elena Reshetova | dec9557 | 2017-03-03 10:55:26 +0200 | [diff] [blame] | 388 | refcount_dec(&rbio->refs); |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 389 | BUG_ON(!list_empty(&rbio->plug_list)); |
| 390 | } |
| 391 | } |
| 392 | } |
| 393 | |
| 394 | spin_unlock(&rbio->bio_list_lock); |
| 395 | spin_unlock(&h->lock); |
| 396 | |
| 397 | if (freeit) |
| 398 | __free_raid_bio(rbio); |
| 399 | } |
| 400 | |
| 401 | /* |
| 402 | * prune a given rbio from the cache |
| 403 | */ |
| 404 | static void remove_rbio_from_cache(struct btrfs_raid_bio *rbio) |
| 405 | { |
| 406 | struct btrfs_stripe_hash_table *table; |
| 407 | unsigned long flags; |
| 408 | |
| 409 | if (!test_bit(RBIO_CACHE_BIT, &rbio->flags)) |
| 410 | return; |
| 411 | |
| 412 | table = rbio->fs_info->stripe_hash_table; |
| 413 | |
| 414 | spin_lock_irqsave(&table->cache_lock, flags); |
| 415 | __remove_rbio_from_cache(rbio); |
| 416 | spin_unlock_irqrestore(&table->cache_lock, flags); |
| 417 | } |
| 418 | |
| 419 | /* |
| 420 | * remove everything in the cache |
| 421 | */ |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 422 | static void btrfs_clear_rbio_cache(struct btrfs_fs_info *info) |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 423 | { |
| 424 | struct btrfs_stripe_hash_table *table; |
| 425 | unsigned long flags; |
| 426 | struct btrfs_raid_bio *rbio; |
| 427 | |
| 428 | table = info->stripe_hash_table; |
| 429 | |
| 430 | spin_lock_irqsave(&table->cache_lock, flags); |
| 431 | while (!list_empty(&table->stripe_cache)) { |
| 432 | rbio = list_entry(table->stripe_cache.next, |
| 433 | struct btrfs_raid_bio, |
| 434 | stripe_cache); |
| 435 | __remove_rbio_from_cache(rbio); |
| 436 | } |
| 437 | spin_unlock_irqrestore(&table->cache_lock, flags); |
| 438 | } |
| 439 | |
| 440 | /* |
| 441 | * remove all cached entries and free the hash table |
| 442 | * used by unmount |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 443 | */ |
| 444 | void btrfs_free_stripe_hash_table(struct btrfs_fs_info *info) |
| 445 | { |
| 446 | if (!info->stripe_hash_table) |
| 447 | return; |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 448 | btrfs_clear_rbio_cache(info); |
Wang Shilong | f749303 | 2014-11-22 21:13:10 +0800 | [diff] [blame] | 449 | kvfree(info->stripe_hash_table); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 450 | info->stripe_hash_table = NULL; |
| 451 | } |
| 452 | |
| 453 | /* |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 454 | * insert an rbio into the stripe cache. It |
| 455 | * must have already been prepared by calling |
| 456 | * cache_rbio_pages |
| 457 | * |
| 458 | * If this rbio was already cached, it gets |
| 459 | * moved to the front of the lru. |
| 460 | * |
| 461 | * If the size of the rbio cache is too big, we |
| 462 | * prune an item. |
| 463 | */ |
| 464 | static void cache_rbio(struct btrfs_raid_bio *rbio) |
| 465 | { |
| 466 | struct btrfs_stripe_hash_table *table; |
| 467 | unsigned long flags; |
| 468 | |
| 469 | if (!test_bit(RBIO_CACHE_READY_BIT, &rbio->flags)) |
| 470 | return; |
| 471 | |
| 472 | table = rbio->fs_info->stripe_hash_table; |
| 473 | |
| 474 | spin_lock_irqsave(&table->cache_lock, flags); |
| 475 | spin_lock(&rbio->bio_list_lock); |
| 476 | |
| 477 | /* bump our ref if we were not in the list before */ |
| 478 | if (!test_and_set_bit(RBIO_CACHE_BIT, &rbio->flags)) |
Elena Reshetova | dec9557 | 2017-03-03 10:55:26 +0200 | [diff] [blame] | 479 | refcount_inc(&rbio->refs); |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 480 | |
| 481 | if (!list_empty(&rbio->stripe_cache)){ |
| 482 | list_move(&rbio->stripe_cache, &table->stripe_cache); |
| 483 | } else { |
| 484 | list_add(&rbio->stripe_cache, &table->stripe_cache); |
| 485 | table->cache_size += 1; |
| 486 | } |
| 487 | |
| 488 | spin_unlock(&rbio->bio_list_lock); |
| 489 | |
| 490 | if (table->cache_size > RBIO_CACHE_SIZE) { |
| 491 | struct btrfs_raid_bio *found; |
| 492 | |
| 493 | found = list_entry(table->stripe_cache.prev, |
| 494 | struct btrfs_raid_bio, |
| 495 | stripe_cache); |
| 496 | |
| 497 | if (found != rbio) |
| 498 | __remove_rbio_from_cache(found); |
| 499 | } |
| 500 | |
| 501 | spin_unlock_irqrestore(&table->cache_lock, flags); |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 502 | } |
| 503 | |
| 504 | /* |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 505 | * helper function to run the xor_blocks api. It is only |
| 506 | * able to do MAX_XOR_BLOCKS at a time, so we need to |
| 507 | * loop through. |
| 508 | */ |
| 509 | static void run_xor(void **pages, int src_cnt, ssize_t len) |
| 510 | { |
| 511 | int src_off = 0; |
| 512 | int xor_src_cnt = 0; |
| 513 | void *dest = pages[src_cnt]; |
| 514 | |
| 515 | while(src_cnt > 0) { |
| 516 | xor_src_cnt = min(src_cnt, MAX_XOR_BLOCKS); |
| 517 | xor_blocks(xor_src_cnt, len, dest, pages + src_off); |
| 518 | |
| 519 | src_cnt -= xor_src_cnt; |
| 520 | src_off += xor_src_cnt; |
| 521 | } |
| 522 | } |
| 523 | |
| 524 | /* |
| 525 | * returns true if the bio list inside this rbio |
| 526 | * covers an entire stripe (no rmw required). |
| 527 | * Must be called with the bio list lock held, or |
| 528 | * at a time when you know it is impossible to add |
| 529 | * new bios into the list |
| 530 | */ |
| 531 | static int __rbio_is_full(struct btrfs_raid_bio *rbio) |
| 532 | { |
| 533 | unsigned long size = rbio->bio_list_bytes; |
| 534 | int ret = 1; |
| 535 | |
| 536 | if (size != rbio->nr_data * rbio->stripe_len) |
| 537 | ret = 0; |
| 538 | |
| 539 | BUG_ON(size > rbio->nr_data * rbio->stripe_len); |
| 540 | return ret; |
| 541 | } |
| 542 | |
| 543 | static int rbio_is_full(struct btrfs_raid_bio *rbio) |
| 544 | { |
| 545 | unsigned long flags; |
| 546 | int ret; |
| 547 | |
| 548 | spin_lock_irqsave(&rbio->bio_list_lock, flags); |
| 549 | ret = __rbio_is_full(rbio); |
| 550 | spin_unlock_irqrestore(&rbio->bio_list_lock, flags); |
| 551 | return ret; |
| 552 | } |
| 553 | |
| 554 | /* |
| 555 | * returns 1 if it is safe to merge two rbios together. |
| 556 | * The merging is safe if the two rbios correspond to |
| 557 | * the same stripe and if they are both going in the same |
| 558 | * direction (read vs write), and if neither one is |
| 559 | * locked for final IO |
| 560 | * |
| 561 | * The caller is responsible for locking such that |
| 562 | * rmw_locked is safe to test |
| 563 | */ |
| 564 | static int rbio_can_merge(struct btrfs_raid_bio *last, |
| 565 | struct btrfs_raid_bio *cur) |
| 566 | { |
| 567 | if (test_bit(RBIO_RMW_LOCKED_BIT, &last->flags) || |
| 568 | test_bit(RBIO_RMW_LOCKED_BIT, &cur->flags)) |
| 569 | return 0; |
| 570 | |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 571 | /* |
| 572 | * we can't merge with cached rbios, since the |
| 573 | * idea is that when we merge the destination |
| 574 | * rbio is going to run our IO for us. We can |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 575 | * steal from cached rbios though, other functions |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 576 | * handle that. |
| 577 | */ |
| 578 | if (test_bit(RBIO_CACHE_BIT, &last->flags) || |
| 579 | test_bit(RBIO_CACHE_BIT, &cur->flags)) |
| 580 | return 0; |
| 581 | |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 582 | if (last->bbio->raid_map[0] != |
| 583 | cur->bbio->raid_map[0]) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 584 | return 0; |
| 585 | |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 586 | /* we can't merge with different operations */ |
| 587 | if (last->operation != cur->operation) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 588 | return 0; |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 589 | /* |
| 590 | * We've need read the full stripe from the drive. |
| 591 | * check and repair the parity and write the new results. |
| 592 | * |
| 593 | * We're not allowed to add any new bios to the |
| 594 | * bio list here, anyone else that wants to |
| 595 | * change this stripe needs to do their own rmw. |
| 596 | */ |
| 597 | if (last->operation == BTRFS_RBIO_PARITY_SCRUB || |
| 598 | cur->operation == BTRFS_RBIO_PARITY_SCRUB) |
| 599 | return 0; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 600 | |
Omar Sandoval | b4ee178 | 2015-06-19 11:52:50 -0700 | [diff] [blame] | 601 | if (last->operation == BTRFS_RBIO_REBUILD_MISSING || |
| 602 | cur->operation == BTRFS_RBIO_REBUILD_MISSING) |
| 603 | return 0; |
| 604 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 605 | return 1; |
| 606 | } |
| 607 | |
Zhao Lei | b7178a5 | 2015-03-03 20:38:46 +0800 | [diff] [blame] | 608 | static int rbio_stripe_page_index(struct btrfs_raid_bio *rbio, int stripe, |
| 609 | int index) |
| 610 | { |
| 611 | return stripe * rbio->stripe_npages + index; |
| 612 | } |
| 613 | |
| 614 | /* |
| 615 | * these are just the pages from the rbio array, not from anything |
| 616 | * the FS sent down to us |
| 617 | */ |
| 618 | static struct page *rbio_stripe_page(struct btrfs_raid_bio *rbio, int stripe, |
| 619 | int index) |
| 620 | { |
| 621 | return rbio->stripe_pages[rbio_stripe_page_index(rbio, stripe, index)]; |
| 622 | } |
| 623 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 624 | /* |
| 625 | * helper to index into the pstripe |
| 626 | */ |
| 627 | static struct page *rbio_pstripe_page(struct btrfs_raid_bio *rbio, int index) |
| 628 | { |
Zhao Lei | b7178a5 | 2015-03-03 20:38:46 +0800 | [diff] [blame] | 629 | return rbio_stripe_page(rbio, rbio->nr_data, index); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 630 | } |
| 631 | |
| 632 | /* |
| 633 | * helper to index into the qstripe, returns null |
| 634 | * if there is no qstripe |
| 635 | */ |
| 636 | static struct page *rbio_qstripe_page(struct btrfs_raid_bio *rbio, int index) |
| 637 | { |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 638 | if (rbio->nr_data + 1 == rbio->real_stripes) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 639 | return NULL; |
Zhao Lei | b7178a5 | 2015-03-03 20:38:46 +0800 | [diff] [blame] | 640 | return rbio_stripe_page(rbio, rbio->nr_data + 1, index); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 641 | } |
| 642 | |
| 643 | /* |
| 644 | * The first stripe in the table for a logical address |
| 645 | * has the lock. rbios are added in one of three ways: |
| 646 | * |
| 647 | * 1) Nobody has the stripe locked yet. The rbio is given |
| 648 | * the lock and 0 is returned. The caller must start the IO |
| 649 | * themselves. |
| 650 | * |
| 651 | * 2) Someone has the stripe locked, but we're able to merge |
| 652 | * with the lock owner. The rbio is freed and the IO will |
| 653 | * start automatically along with the existing rbio. 1 is returned. |
| 654 | * |
| 655 | * 3) Someone has the stripe locked, but we're not able to merge. |
| 656 | * The rbio is added to the lock owner's plug list, or merged into |
| 657 | * an rbio already on the plug list. When the lock owner unlocks, |
| 658 | * the next rbio on the list is run and the IO is started automatically. |
| 659 | * 1 is returned |
| 660 | * |
| 661 | * If we return 0, the caller still owns the rbio and must continue with |
| 662 | * IO submission. If we return 1, the caller must assume the rbio has |
| 663 | * already been freed. |
| 664 | */ |
| 665 | static noinline int lock_stripe_add(struct btrfs_raid_bio *rbio) |
| 666 | { |
| 667 | int bucket = rbio_bucket(rbio); |
| 668 | struct btrfs_stripe_hash *h = rbio->fs_info->stripe_hash_table->table + bucket; |
| 669 | struct btrfs_raid_bio *cur; |
| 670 | struct btrfs_raid_bio *pending; |
| 671 | unsigned long flags; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 672 | struct btrfs_raid_bio *freeit = NULL; |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 673 | struct btrfs_raid_bio *cache_drop = NULL; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 674 | int ret = 0; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 675 | |
| 676 | spin_lock_irqsave(&h->lock, flags); |
| 677 | list_for_each_entry(cur, &h->hash_list, hash_list) { |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 678 | if (cur->bbio->raid_map[0] == rbio->bbio->raid_map[0]) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 679 | spin_lock(&cur->bio_list_lock); |
| 680 | |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 681 | /* can we steal this cached rbio's pages? */ |
| 682 | if (bio_list_empty(&cur->bio_list) && |
| 683 | list_empty(&cur->plug_list) && |
| 684 | test_bit(RBIO_CACHE_BIT, &cur->flags) && |
| 685 | !test_bit(RBIO_RMW_LOCKED_BIT, &cur->flags)) { |
| 686 | list_del_init(&cur->hash_list); |
Elena Reshetova | dec9557 | 2017-03-03 10:55:26 +0200 | [diff] [blame] | 687 | refcount_dec(&cur->refs); |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 688 | |
| 689 | steal_rbio(cur, rbio); |
| 690 | cache_drop = cur; |
| 691 | spin_unlock(&cur->bio_list_lock); |
| 692 | |
| 693 | goto lockit; |
| 694 | } |
| 695 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 696 | /* can we merge into the lock owner? */ |
| 697 | if (rbio_can_merge(cur, rbio)) { |
| 698 | merge_rbio(cur, rbio); |
| 699 | spin_unlock(&cur->bio_list_lock); |
| 700 | freeit = rbio; |
| 701 | ret = 1; |
| 702 | goto out; |
| 703 | } |
| 704 | |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 705 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 706 | /* |
| 707 | * we couldn't merge with the running |
| 708 | * rbio, see if we can merge with the |
| 709 | * pending ones. We don't have to |
| 710 | * check for rmw_locked because there |
| 711 | * is no way they are inside finish_rmw |
| 712 | * right now |
| 713 | */ |
| 714 | list_for_each_entry(pending, &cur->plug_list, |
| 715 | plug_list) { |
| 716 | if (rbio_can_merge(pending, rbio)) { |
| 717 | merge_rbio(pending, rbio); |
| 718 | spin_unlock(&cur->bio_list_lock); |
| 719 | freeit = rbio; |
| 720 | ret = 1; |
| 721 | goto out; |
| 722 | } |
| 723 | } |
| 724 | |
| 725 | /* no merging, put us on the tail of the plug list, |
| 726 | * our rbio will be started with the currently |
| 727 | * running rbio unlocks |
| 728 | */ |
| 729 | list_add_tail(&rbio->plug_list, &cur->plug_list); |
| 730 | spin_unlock(&cur->bio_list_lock); |
| 731 | ret = 1; |
| 732 | goto out; |
| 733 | } |
| 734 | } |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 735 | lockit: |
Elena Reshetova | dec9557 | 2017-03-03 10:55:26 +0200 | [diff] [blame] | 736 | refcount_inc(&rbio->refs); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 737 | list_add(&rbio->hash_list, &h->hash_list); |
| 738 | out: |
| 739 | spin_unlock_irqrestore(&h->lock, flags); |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 740 | if (cache_drop) |
| 741 | remove_rbio_from_cache(cache_drop); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 742 | if (freeit) |
| 743 | __free_raid_bio(freeit); |
| 744 | return ret; |
| 745 | } |
| 746 | |
| 747 | /* |
| 748 | * called as rmw or parity rebuild is completed. If the plug list has more |
| 749 | * rbios waiting for this stripe, the next one on the list will be started |
| 750 | */ |
| 751 | static noinline void unlock_stripe(struct btrfs_raid_bio *rbio) |
| 752 | { |
| 753 | int bucket; |
| 754 | struct btrfs_stripe_hash *h; |
| 755 | unsigned long flags; |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 756 | int keep_cache = 0; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 757 | |
| 758 | bucket = rbio_bucket(rbio); |
| 759 | h = rbio->fs_info->stripe_hash_table->table + bucket; |
| 760 | |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 761 | if (list_empty(&rbio->plug_list)) |
| 762 | cache_rbio(rbio); |
| 763 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 764 | spin_lock_irqsave(&h->lock, flags); |
| 765 | spin_lock(&rbio->bio_list_lock); |
| 766 | |
| 767 | if (!list_empty(&rbio->hash_list)) { |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 768 | /* |
| 769 | * if we're still cached and there is no other IO |
| 770 | * to perform, just leave this rbio here for others |
| 771 | * to steal from later |
| 772 | */ |
| 773 | if (list_empty(&rbio->plug_list) && |
| 774 | test_bit(RBIO_CACHE_BIT, &rbio->flags)) { |
| 775 | keep_cache = 1; |
| 776 | clear_bit(RBIO_RMW_LOCKED_BIT, &rbio->flags); |
| 777 | BUG_ON(!bio_list_empty(&rbio->bio_list)); |
| 778 | goto done; |
| 779 | } |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 780 | |
| 781 | list_del_init(&rbio->hash_list); |
Elena Reshetova | dec9557 | 2017-03-03 10:55:26 +0200 | [diff] [blame] | 782 | refcount_dec(&rbio->refs); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 783 | |
| 784 | /* |
| 785 | * we use the plug list to hold all the rbios |
| 786 | * waiting for the chance to lock this stripe. |
| 787 | * hand the lock over to one of them. |
| 788 | */ |
| 789 | if (!list_empty(&rbio->plug_list)) { |
| 790 | struct btrfs_raid_bio *next; |
| 791 | struct list_head *head = rbio->plug_list.next; |
| 792 | |
| 793 | next = list_entry(head, struct btrfs_raid_bio, |
| 794 | plug_list); |
| 795 | |
| 796 | list_del_init(&rbio->plug_list); |
| 797 | |
| 798 | list_add(&next->hash_list, &h->hash_list); |
Elena Reshetova | dec9557 | 2017-03-03 10:55:26 +0200 | [diff] [blame] | 799 | refcount_inc(&next->refs); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 800 | spin_unlock(&rbio->bio_list_lock); |
| 801 | spin_unlock_irqrestore(&h->lock, flags); |
| 802 | |
Miao Xie | 1b94b55 | 2014-11-06 16:14:21 +0800 | [diff] [blame] | 803 | if (next->operation == BTRFS_RBIO_READ_REBUILD) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 804 | async_read_rebuild(next); |
Omar Sandoval | b4ee178 | 2015-06-19 11:52:50 -0700 | [diff] [blame] | 805 | else if (next->operation == BTRFS_RBIO_REBUILD_MISSING) { |
| 806 | steal_rbio(rbio, next); |
| 807 | async_read_rebuild(next); |
| 808 | } else if (next->operation == BTRFS_RBIO_WRITE) { |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 809 | steal_rbio(rbio, next); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 810 | async_rmw_stripe(next); |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 811 | } else if (next->operation == BTRFS_RBIO_PARITY_SCRUB) { |
| 812 | steal_rbio(rbio, next); |
| 813 | async_scrub_parity(next); |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 814 | } |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 815 | |
| 816 | goto done_nolock; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 817 | } |
| 818 | } |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 819 | done: |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 820 | spin_unlock(&rbio->bio_list_lock); |
| 821 | spin_unlock_irqrestore(&h->lock, flags); |
| 822 | |
| 823 | done_nolock: |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 824 | if (!keep_cache) |
| 825 | remove_rbio_from_cache(rbio); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 826 | } |
| 827 | |
| 828 | static void __free_raid_bio(struct btrfs_raid_bio *rbio) |
| 829 | { |
| 830 | int i; |
| 831 | |
Elena Reshetova | dec9557 | 2017-03-03 10:55:26 +0200 | [diff] [blame] | 832 | if (!refcount_dec_and_test(&rbio->refs)) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 833 | return; |
| 834 | |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 835 | WARN_ON(!list_empty(&rbio->stripe_cache)); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 836 | WARN_ON(!list_empty(&rbio->hash_list)); |
| 837 | WARN_ON(!bio_list_empty(&rbio->bio_list)); |
| 838 | |
| 839 | for (i = 0; i < rbio->nr_pages; i++) { |
| 840 | if (rbio->stripe_pages[i]) { |
| 841 | __free_page(rbio->stripe_pages[i]); |
| 842 | rbio->stripe_pages[i] = NULL; |
| 843 | } |
| 844 | } |
Miao Xie | af8e2d1 | 2014-10-23 14:42:50 +0800 | [diff] [blame] | 845 | |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 846 | btrfs_put_bbio(rbio->bbio); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 847 | kfree(rbio); |
| 848 | } |
| 849 | |
| 850 | static void free_raid_bio(struct btrfs_raid_bio *rbio) |
| 851 | { |
| 852 | unlock_stripe(rbio); |
| 853 | __free_raid_bio(rbio); |
| 854 | } |
| 855 | |
| 856 | /* |
| 857 | * this frees the rbio and runs through all the bios in the |
| 858 | * bio_list and calls end_io on them |
| 859 | */ |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 860 | static void rbio_orig_end_io(struct btrfs_raid_bio *rbio, blk_status_t err) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 861 | { |
| 862 | struct bio *cur = bio_list_get(&rbio->bio_list); |
| 863 | struct bio *next; |
Miao Xie | 4245215 | 2014-11-25 16:39:28 +0800 | [diff] [blame] | 864 | |
| 865 | if (rbio->generic_bio_cnt) |
| 866 | btrfs_bio_counter_sub(rbio->fs_info, rbio->generic_bio_cnt); |
| 867 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 868 | free_raid_bio(rbio); |
| 869 | |
| 870 | while (cur) { |
| 871 | next = cur->bi_next; |
| 872 | cur->bi_next = NULL; |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 873 | cur->bi_status = err; |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 874 | bio_endio(cur); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 875 | cur = next; |
| 876 | } |
| 877 | } |
| 878 | |
| 879 | /* |
| 880 | * end io function used by finish_rmw. When we finally |
| 881 | * get here, we've written a full stripe |
| 882 | */ |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 883 | static void raid_write_end_io(struct bio *bio) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 884 | { |
| 885 | struct btrfs_raid_bio *rbio = bio->bi_private; |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 886 | blk_status_t err = bio->bi_status; |
Zhao Lei | a6111d11b | 2016-01-12 17:52:13 +0800 | [diff] [blame] | 887 | int max_errors; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 888 | |
| 889 | if (err) |
| 890 | fail_bio_stripe(rbio, bio); |
| 891 | |
| 892 | bio_put(bio); |
| 893 | |
Miao Xie | b89e1b0 | 2014-10-15 11:18:44 +0800 | [diff] [blame] | 894 | if (!atomic_dec_and_test(&rbio->stripes_pending)) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 895 | return; |
| 896 | |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 897 | err = BLK_STS_OK; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 898 | |
| 899 | /* OK, we have read all the stripes we need to. */ |
Zhao Lei | a6111d11b | 2016-01-12 17:52:13 +0800 | [diff] [blame] | 900 | max_errors = (rbio->operation == BTRFS_RBIO_PARITY_SCRUB) ? |
| 901 | 0 : rbio->bbio->max_errors; |
| 902 | if (atomic_read(&rbio->error) > max_errors) |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 903 | err = BLK_STS_IOERR; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 904 | |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 905 | rbio_orig_end_io(rbio, err); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 906 | } |
| 907 | |
| 908 | /* |
| 909 | * the read/modify/write code wants to use the original bio for |
| 910 | * any pages it included, and then use the rbio for everything |
| 911 | * else. This function decides if a given index (stripe number) |
| 912 | * and page number in that stripe fall inside the original bio |
| 913 | * or the rbio. |
| 914 | * |
| 915 | * if you set bio_list_only, you'll get a NULL back for any ranges |
| 916 | * that are outside the bio_list |
| 917 | * |
| 918 | * This doesn't take any refs on anything, you get a bare page pointer |
| 919 | * and the caller must bump refs as required. |
| 920 | * |
| 921 | * You must call index_rbio_pages once before you can trust |
| 922 | * the answers from this function. |
| 923 | */ |
| 924 | static struct page *page_in_rbio(struct btrfs_raid_bio *rbio, |
| 925 | int index, int pagenr, int bio_list_only) |
| 926 | { |
| 927 | int chunk_page; |
| 928 | struct page *p = NULL; |
| 929 | |
| 930 | chunk_page = index * (rbio->stripe_len >> PAGE_SHIFT) + pagenr; |
| 931 | |
| 932 | spin_lock_irq(&rbio->bio_list_lock); |
| 933 | p = rbio->bio_pages[chunk_page]; |
| 934 | spin_unlock_irq(&rbio->bio_list_lock); |
| 935 | |
| 936 | if (p || bio_list_only) |
| 937 | return p; |
| 938 | |
| 939 | return rbio->stripe_pages[chunk_page]; |
| 940 | } |
| 941 | |
| 942 | /* |
| 943 | * number of pages we need for the entire stripe across all the |
| 944 | * drives |
| 945 | */ |
| 946 | static unsigned long rbio_nr_pages(unsigned long stripe_len, int nr_stripes) |
| 947 | { |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 948 | return DIV_ROUND_UP(stripe_len, PAGE_SIZE) * nr_stripes; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 949 | } |
| 950 | |
| 951 | /* |
| 952 | * allocation and initial setup for the btrfs_raid_bio. Not |
| 953 | * this does not allocate any pages for rbio->pages. |
| 954 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 955 | static struct btrfs_raid_bio *alloc_rbio(struct btrfs_fs_info *fs_info, |
| 956 | struct btrfs_bio *bbio, |
| 957 | u64 stripe_len) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 958 | { |
| 959 | struct btrfs_raid_bio *rbio; |
| 960 | int nr_data = 0; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 961 | int real_stripes = bbio->num_stripes - bbio->num_tgtdevs; |
| 962 | int num_pages = rbio_nr_pages(stripe_len, real_stripes); |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 963 | int stripe_npages = DIV_ROUND_UP(stripe_len, PAGE_SIZE); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 964 | void *p; |
| 965 | |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 966 | rbio = kzalloc(sizeof(*rbio) + num_pages * sizeof(struct page *) * 2 + |
Zhao Lei | bfca9a6 | 2014-12-08 19:55:57 +0800 | [diff] [blame] | 967 | DIV_ROUND_UP(stripe_npages, BITS_PER_LONG) * |
| 968 | sizeof(long), GFP_NOFS); |
Miao Xie | af8e2d1 | 2014-10-23 14:42:50 +0800 | [diff] [blame] | 969 | if (!rbio) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 970 | return ERR_PTR(-ENOMEM); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 971 | |
| 972 | bio_list_init(&rbio->bio_list); |
| 973 | INIT_LIST_HEAD(&rbio->plug_list); |
| 974 | spin_lock_init(&rbio->bio_list_lock); |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 975 | INIT_LIST_HEAD(&rbio->stripe_cache); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 976 | INIT_LIST_HEAD(&rbio->hash_list); |
| 977 | rbio->bbio = bbio; |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 978 | rbio->fs_info = fs_info; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 979 | rbio->stripe_len = stripe_len; |
| 980 | rbio->nr_pages = num_pages; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 981 | rbio->real_stripes = real_stripes; |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 982 | rbio->stripe_npages = stripe_npages; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 983 | rbio->faila = -1; |
| 984 | rbio->failb = -1; |
Elena Reshetova | dec9557 | 2017-03-03 10:55:26 +0200 | [diff] [blame] | 985 | refcount_set(&rbio->refs, 1); |
Miao Xie | b89e1b0 | 2014-10-15 11:18:44 +0800 | [diff] [blame] | 986 | atomic_set(&rbio->error, 0); |
| 987 | atomic_set(&rbio->stripes_pending, 0); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 988 | |
| 989 | /* |
| 990 | * the stripe_pages and bio_pages array point to the extra |
| 991 | * memory we allocated past the end of the rbio |
| 992 | */ |
| 993 | p = rbio + 1; |
| 994 | rbio->stripe_pages = p; |
| 995 | rbio->bio_pages = p + sizeof(struct page *) * num_pages; |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 996 | rbio->dbitmap = p + sizeof(struct page *) * num_pages * 2; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 997 | |
Zhao Lei | 10f1190 | 2015-01-20 15:11:43 +0800 | [diff] [blame] | 998 | if (bbio->map_type & BTRFS_BLOCK_GROUP_RAID5) |
| 999 | nr_data = real_stripes - 1; |
| 1000 | else if (bbio->map_type & BTRFS_BLOCK_GROUP_RAID6) |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 1001 | nr_data = real_stripes - 2; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1002 | else |
Zhao Lei | 10f1190 | 2015-01-20 15:11:43 +0800 | [diff] [blame] | 1003 | BUG(); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1004 | |
| 1005 | rbio->nr_data = nr_data; |
| 1006 | return rbio; |
| 1007 | } |
| 1008 | |
| 1009 | /* allocate pages for all the stripes in the bio, including parity */ |
| 1010 | static int alloc_rbio_pages(struct btrfs_raid_bio *rbio) |
| 1011 | { |
| 1012 | int i; |
| 1013 | struct page *page; |
| 1014 | |
| 1015 | for (i = 0; i < rbio->nr_pages; i++) { |
| 1016 | if (rbio->stripe_pages[i]) |
| 1017 | continue; |
| 1018 | page = alloc_page(GFP_NOFS | __GFP_HIGHMEM); |
| 1019 | if (!page) |
| 1020 | return -ENOMEM; |
| 1021 | rbio->stripe_pages[i] = page; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1022 | } |
| 1023 | return 0; |
| 1024 | } |
| 1025 | |
Zhao Lei | b7178a5 | 2015-03-03 20:38:46 +0800 | [diff] [blame] | 1026 | /* only allocate pages for p/q stripes */ |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1027 | static int alloc_rbio_parity_pages(struct btrfs_raid_bio *rbio) |
| 1028 | { |
| 1029 | int i; |
| 1030 | struct page *page; |
| 1031 | |
Zhao Lei | b7178a5 | 2015-03-03 20:38:46 +0800 | [diff] [blame] | 1032 | i = rbio_stripe_page_index(rbio, rbio->nr_data, 0); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1033 | |
| 1034 | for (; i < rbio->nr_pages; i++) { |
| 1035 | if (rbio->stripe_pages[i]) |
| 1036 | continue; |
| 1037 | page = alloc_page(GFP_NOFS | __GFP_HIGHMEM); |
| 1038 | if (!page) |
| 1039 | return -ENOMEM; |
| 1040 | rbio->stripe_pages[i] = page; |
| 1041 | } |
| 1042 | return 0; |
| 1043 | } |
| 1044 | |
| 1045 | /* |
| 1046 | * add a single page from a specific stripe into our list of bios for IO |
| 1047 | * this will try to merge into existing bios if possible, and returns |
| 1048 | * zero if all went well. |
| 1049 | */ |
Eric Sandeen | 48a3b63 | 2013-04-25 20:41:01 +0000 | [diff] [blame] | 1050 | static int rbio_add_io_page(struct btrfs_raid_bio *rbio, |
| 1051 | struct bio_list *bio_list, |
| 1052 | struct page *page, |
| 1053 | int stripe_nr, |
| 1054 | unsigned long page_index, |
| 1055 | unsigned long bio_max_len) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1056 | { |
| 1057 | struct bio *last = bio_list->tail; |
| 1058 | u64 last_end = 0; |
| 1059 | int ret; |
| 1060 | struct bio *bio; |
| 1061 | struct btrfs_bio_stripe *stripe; |
| 1062 | u64 disk_start; |
| 1063 | |
| 1064 | stripe = &rbio->bbio->stripes[stripe_nr]; |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 1065 | disk_start = stripe->physical + (page_index << PAGE_SHIFT); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1066 | |
| 1067 | /* if the device is missing, just fail this stripe */ |
| 1068 | if (!stripe->dev->bdev) |
| 1069 | return fail_rbio_index(rbio, stripe_nr); |
| 1070 | |
| 1071 | /* see if we can add this page onto our existing bio */ |
| 1072 | if (last) { |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 1073 | last_end = (u64)last->bi_iter.bi_sector << 9; |
| 1074 | last_end += last->bi_iter.bi_size; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1075 | |
| 1076 | /* |
| 1077 | * we can't merge these if they are from different |
| 1078 | * devices or if they are not contiguous |
| 1079 | */ |
| 1080 | if (last_end == disk_start && stripe->dev->bdev && |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 1081 | !last->bi_status && |
Christoph Hellwig | 74d4699 | 2017-08-23 19:10:32 +0200 | [diff] [blame] | 1082 | last->bi_disk == stripe->dev->bdev->bd_disk && |
| 1083 | last->bi_partno == stripe->dev->bdev->bd_partno) { |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 1084 | ret = bio_add_page(last, page, PAGE_SIZE, 0); |
| 1085 | if (ret == PAGE_SIZE) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1086 | return 0; |
| 1087 | } |
| 1088 | } |
| 1089 | |
| 1090 | /* put a new bio on the list */ |
David Sterba | c5e4c3d | 2017-06-12 17:29:41 +0200 | [diff] [blame] | 1091 | bio = btrfs_io_bio_alloc(bio_max_len >> PAGE_SHIFT ?: 1); |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 1092 | bio->bi_iter.bi_size = 0; |
Christoph Hellwig | 74d4699 | 2017-08-23 19:10:32 +0200 | [diff] [blame] | 1093 | bio_set_dev(bio, stripe->dev->bdev); |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 1094 | bio->bi_iter.bi_sector = disk_start >> 9; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1095 | |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 1096 | bio_add_page(bio, page, PAGE_SIZE, 0); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1097 | bio_list_add(bio_list, bio); |
| 1098 | return 0; |
| 1099 | } |
| 1100 | |
| 1101 | /* |
| 1102 | * while we're doing the read/modify/write cycle, we could |
| 1103 | * have errors in reading pages off the disk. This checks |
| 1104 | * for errors and if we're not able to read the page it'll |
| 1105 | * trigger parity reconstruction. The rmw will be finished |
| 1106 | * after we've reconstructed the failed stripes |
| 1107 | */ |
| 1108 | static void validate_rbio_for_rmw(struct btrfs_raid_bio *rbio) |
| 1109 | { |
| 1110 | if (rbio->faila >= 0 || rbio->failb >= 0) { |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 1111 | BUG_ON(rbio->faila == rbio->real_stripes - 1); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1112 | __raid56_parity_recover(rbio); |
| 1113 | } else { |
| 1114 | finish_rmw(rbio); |
| 1115 | } |
| 1116 | } |
| 1117 | |
| 1118 | /* |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1119 | * helper function to walk our bio list and populate the bio_pages array with |
| 1120 | * the result. This seems expensive, but it is faster than constantly |
| 1121 | * searching through the bio list as we setup the IO in finish_rmw or stripe |
| 1122 | * reconstruction. |
| 1123 | * |
| 1124 | * This must be called before you trust the answers from page_in_rbio |
| 1125 | */ |
| 1126 | static void index_rbio_pages(struct btrfs_raid_bio *rbio) |
| 1127 | { |
| 1128 | struct bio *bio; |
| 1129 | u64 start; |
| 1130 | unsigned long stripe_offset; |
| 1131 | unsigned long page_index; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1132 | |
| 1133 | spin_lock_irq(&rbio->bio_list_lock); |
| 1134 | bio_list_for_each(bio, &rbio->bio_list) { |
Filipe Manana | 6592e58 | 2017-07-12 23:36:02 +0100 | [diff] [blame] | 1135 | struct bio_vec bvec; |
| 1136 | struct bvec_iter iter; |
| 1137 | int i = 0; |
| 1138 | |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 1139 | start = (u64)bio->bi_iter.bi_sector << 9; |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 1140 | stripe_offset = start - rbio->bbio->raid_map[0]; |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 1141 | page_index = stripe_offset >> PAGE_SHIFT; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1142 | |
Filipe Manana | 6592e58 | 2017-07-12 23:36:02 +0100 | [diff] [blame] | 1143 | if (bio_flagged(bio, BIO_CLONED)) |
| 1144 | bio->bi_iter = btrfs_io_bio(bio)->iter; |
| 1145 | |
| 1146 | bio_for_each_segment(bvec, bio, iter) { |
| 1147 | rbio->bio_pages[page_index + i] = bvec.bv_page; |
| 1148 | i++; |
| 1149 | } |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1150 | } |
| 1151 | spin_unlock_irq(&rbio->bio_list_lock); |
| 1152 | } |
| 1153 | |
| 1154 | /* |
| 1155 | * this is called from one of two situations. We either |
| 1156 | * have a full stripe from the higher layers, or we've read all |
| 1157 | * the missing bits off disk. |
| 1158 | * |
| 1159 | * This will calculate the parity and then send down any |
| 1160 | * changed blocks. |
| 1161 | */ |
| 1162 | static noinline void finish_rmw(struct btrfs_raid_bio *rbio) |
| 1163 | { |
| 1164 | struct btrfs_bio *bbio = rbio->bbio; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 1165 | void *pointers[rbio->real_stripes]; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1166 | int nr_data = rbio->nr_data; |
| 1167 | int stripe; |
| 1168 | int pagenr; |
| 1169 | int p_stripe = -1; |
| 1170 | int q_stripe = -1; |
| 1171 | struct bio_list bio_list; |
| 1172 | struct bio *bio; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1173 | int ret; |
| 1174 | |
| 1175 | bio_list_init(&bio_list); |
| 1176 | |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 1177 | if (rbio->real_stripes - rbio->nr_data == 1) { |
| 1178 | p_stripe = rbio->real_stripes - 1; |
| 1179 | } else if (rbio->real_stripes - rbio->nr_data == 2) { |
| 1180 | p_stripe = rbio->real_stripes - 2; |
| 1181 | q_stripe = rbio->real_stripes - 1; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1182 | } else { |
| 1183 | BUG(); |
| 1184 | } |
| 1185 | |
| 1186 | /* at this point we either have a full stripe, |
| 1187 | * or we've read the full stripe from the drive. |
| 1188 | * recalculate the parity and write the new results. |
| 1189 | * |
| 1190 | * We're not allowed to add any new bios to the |
| 1191 | * bio list here, anyone else that wants to |
| 1192 | * change this stripe needs to do their own rmw. |
| 1193 | */ |
| 1194 | spin_lock_irq(&rbio->bio_list_lock); |
| 1195 | set_bit(RBIO_RMW_LOCKED_BIT, &rbio->flags); |
| 1196 | spin_unlock_irq(&rbio->bio_list_lock); |
| 1197 | |
Miao Xie | b89e1b0 | 2014-10-15 11:18:44 +0800 | [diff] [blame] | 1198 | atomic_set(&rbio->error, 0); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1199 | |
| 1200 | /* |
| 1201 | * now that we've set rmw_locked, run through the |
| 1202 | * bio list one last time and map the page pointers |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 1203 | * |
| 1204 | * We don't cache full rbios because we're assuming |
| 1205 | * the higher layers are unlikely to use this area of |
| 1206 | * the disk again soon. If they do use it again, |
| 1207 | * hopefully they will send another full bio. |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1208 | */ |
| 1209 | index_rbio_pages(rbio); |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 1210 | if (!rbio_is_full(rbio)) |
| 1211 | cache_rbio_pages(rbio); |
| 1212 | else |
| 1213 | clear_bit(RBIO_CACHE_READY_BIT, &rbio->flags); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1214 | |
Zhao Lei | 915e229 | 2015-03-03 20:42:48 +0800 | [diff] [blame] | 1215 | for (pagenr = 0; pagenr < rbio->stripe_npages; pagenr++) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1216 | struct page *p; |
| 1217 | /* first collect one page from each data stripe */ |
| 1218 | for (stripe = 0; stripe < nr_data; stripe++) { |
| 1219 | p = page_in_rbio(rbio, stripe, pagenr, 0); |
| 1220 | pointers[stripe] = kmap(p); |
| 1221 | } |
| 1222 | |
| 1223 | /* then add the parity stripe */ |
| 1224 | p = rbio_pstripe_page(rbio, pagenr); |
| 1225 | SetPageUptodate(p); |
| 1226 | pointers[stripe++] = kmap(p); |
| 1227 | |
| 1228 | if (q_stripe != -1) { |
| 1229 | |
| 1230 | /* |
| 1231 | * raid6, add the qstripe and call the |
| 1232 | * library function to fill in our p/q |
| 1233 | */ |
| 1234 | p = rbio_qstripe_page(rbio, pagenr); |
| 1235 | SetPageUptodate(p); |
| 1236 | pointers[stripe++] = kmap(p); |
| 1237 | |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 1238 | raid6_call.gen_syndrome(rbio->real_stripes, PAGE_SIZE, |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1239 | pointers); |
| 1240 | } else { |
| 1241 | /* raid5 */ |
| 1242 | memcpy(pointers[nr_data], pointers[0], PAGE_SIZE); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 1243 | run_xor(pointers + 1, nr_data - 1, PAGE_SIZE); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1244 | } |
| 1245 | |
| 1246 | |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 1247 | for (stripe = 0; stripe < rbio->real_stripes; stripe++) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1248 | kunmap(page_in_rbio(rbio, stripe, pagenr, 0)); |
| 1249 | } |
| 1250 | |
| 1251 | /* |
| 1252 | * time to start writing. Make bios for everything from the |
| 1253 | * higher layers (the bio_list in our rbio) and our p/q. Ignore |
| 1254 | * everything else. |
| 1255 | */ |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 1256 | for (stripe = 0; stripe < rbio->real_stripes; stripe++) { |
Zhao Lei | 915e229 | 2015-03-03 20:42:48 +0800 | [diff] [blame] | 1257 | for (pagenr = 0; pagenr < rbio->stripe_npages; pagenr++) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1258 | struct page *page; |
| 1259 | if (stripe < rbio->nr_data) { |
| 1260 | page = page_in_rbio(rbio, stripe, pagenr, 1); |
| 1261 | if (!page) |
| 1262 | continue; |
| 1263 | } else { |
| 1264 | page = rbio_stripe_page(rbio, stripe, pagenr); |
| 1265 | } |
| 1266 | |
| 1267 | ret = rbio_add_io_page(rbio, &bio_list, |
| 1268 | page, stripe, pagenr, rbio->stripe_len); |
| 1269 | if (ret) |
| 1270 | goto cleanup; |
| 1271 | } |
| 1272 | } |
| 1273 | |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 1274 | if (likely(!bbio->num_tgtdevs)) |
| 1275 | goto write_data; |
| 1276 | |
| 1277 | for (stripe = 0; stripe < rbio->real_stripes; stripe++) { |
| 1278 | if (!bbio->tgtdev_map[stripe]) |
| 1279 | continue; |
| 1280 | |
Zhao Lei | 915e229 | 2015-03-03 20:42:48 +0800 | [diff] [blame] | 1281 | for (pagenr = 0; pagenr < rbio->stripe_npages; pagenr++) { |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 1282 | struct page *page; |
| 1283 | if (stripe < rbio->nr_data) { |
| 1284 | page = page_in_rbio(rbio, stripe, pagenr, 1); |
| 1285 | if (!page) |
| 1286 | continue; |
| 1287 | } else { |
| 1288 | page = rbio_stripe_page(rbio, stripe, pagenr); |
| 1289 | } |
| 1290 | |
| 1291 | ret = rbio_add_io_page(rbio, &bio_list, page, |
| 1292 | rbio->bbio->tgtdev_map[stripe], |
| 1293 | pagenr, rbio->stripe_len); |
| 1294 | if (ret) |
| 1295 | goto cleanup; |
| 1296 | } |
| 1297 | } |
| 1298 | |
| 1299 | write_data: |
Miao Xie | b89e1b0 | 2014-10-15 11:18:44 +0800 | [diff] [blame] | 1300 | atomic_set(&rbio->stripes_pending, bio_list_size(&bio_list)); |
| 1301 | BUG_ON(atomic_read(&rbio->stripes_pending) == 0); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1302 | |
| 1303 | while (1) { |
| 1304 | bio = bio_list_pop(&bio_list); |
| 1305 | if (!bio) |
| 1306 | break; |
| 1307 | |
| 1308 | bio->bi_private = rbio; |
| 1309 | bio->bi_end_io = raid_write_end_io; |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 1310 | bio_set_op_attrs(bio, REQ_OP_WRITE, 0); |
Mike Christie | 4e49ea4 | 2016-06-05 14:31:41 -0500 | [diff] [blame] | 1311 | |
| 1312 | submit_bio(bio); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1313 | } |
| 1314 | return; |
| 1315 | |
| 1316 | cleanup: |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 1317 | rbio_orig_end_io(rbio, BLK_STS_IOERR); |
Liu Bo | 785884f | 2017-09-22 12:11:18 -0600 | [diff] [blame] | 1318 | |
| 1319 | while ((bio = bio_list_pop(&bio_list))) |
| 1320 | bio_put(bio); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1321 | } |
| 1322 | |
| 1323 | /* |
| 1324 | * helper to find the stripe number for a given bio. Used to figure out which |
| 1325 | * stripe has failed. This expects the bio to correspond to a physical disk, |
| 1326 | * so it looks up based on physical sector numbers. |
| 1327 | */ |
| 1328 | static int find_bio_stripe(struct btrfs_raid_bio *rbio, |
| 1329 | struct bio *bio) |
| 1330 | { |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 1331 | u64 physical = bio->bi_iter.bi_sector; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1332 | u64 stripe_start; |
| 1333 | int i; |
| 1334 | struct btrfs_bio_stripe *stripe; |
| 1335 | |
| 1336 | physical <<= 9; |
| 1337 | |
| 1338 | for (i = 0; i < rbio->bbio->num_stripes; i++) { |
| 1339 | stripe = &rbio->bbio->stripes[i]; |
| 1340 | stripe_start = stripe->physical; |
| 1341 | if (physical >= stripe_start && |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 1342 | physical < stripe_start + rbio->stripe_len && |
Christoph Hellwig | 74d4699 | 2017-08-23 19:10:32 +0200 | [diff] [blame] | 1343 | bio->bi_disk == stripe->dev->bdev->bd_disk && |
| 1344 | bio->bi_partno == stripe->dev->bdev->bd_partno) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1345 | return i; |
| 1346 | } |
| 1347 | } |
| 1348 | return -1; |
| 1349 | } |
| 1350 | |
| 1351 | /* |
| 1352 | * helper to find the stripe number for a given |
| 1353 | * bio (before mapping). Used to figure out which stripe has |
| 1354 | * failed. This looks up based on logical block numbers. |
| 1355 | */ |
| 1356 | static int find_logical_bio_stripe(struct btrfs_raid_bio *rbio, |
| 1357 | struct bio *bio) |
| 1358 | { |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 1359 | u64 logical = bio->bi_iter.bi_sector; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1360 | u64 stripe_start; |
| 1361 | int i; |
| 1362 | |
| 1363 | logical <<= 9; |
| 1364 | |
| 1365 | for (i = 0; i < rbio->nr_data; i++) { |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 1366 | stripe_start = rbio->bbio->raid_map[i]; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1367 | if (logical >= stripe_start && |
| 1368 | logical < stripe_start + rbio->stripe_len) { |
| 1369 | return i; |
| 1370 | } |
| 1371 | } |
| 1372 | return -1; |
| 1373 | } |
| 1374 | |
| 1375 | /* |
| 1376 | * returns -EIO if we had too many failures |
| 1377 | */ |
| 1378 | static int fail_rbio_index(struct btrfs_raid_bio *rbio, int failed) |
| 1379 | { |
| 1380 | unsigned long flags; |
| 1381 | int ret = 0; |
| 1382 | |
| 1383 | spin_lock_irqsave(&rbio->bio_list_lock, flags); |
| 1384 | |
| 1385 | /* we already know this stripe is bad, move on */ |
| 1386 | if (rbio->faila == failed || rbio->failb == failed) |
| 1387 | goto out; |
| 1388 | |
| 1389 | if (rbio->faila == -1) { |
| 1390 | /* first failure on this rbio */ |
| 1391 | rbio->faila = failed; |
Miao Xie | b89e1b0 | 2014-10-15 11:18:44 +0800 | [diff] [blame] | 1392 | atomic_inc(&rbio->error); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1393 | } else if (rbio->failb == -1) { |
| 1394 | /* second failure on this rbio */ |
| 1395 | rbio->failb = failed; |
Miao Xie | b89e1b0 | 2014-10-15 11:18:44 +0800 | [diff] [blame] | 1396 | atomic_inc(&rbio->error); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1397 | } else { |
| 1398 | ret = -EIO; |
| 1399 | } |
| 1400 | out: |
| 1401 | spin_unlock_irqrestore(&rbio->bio_list_lock, flags); |
| 1402 | |
| 1403 | return ret; |
| 1404 | } |
| 1405 | |
| 1406 | /* |
| 1407 | * helper to fail a stripe based on a physical disk |
| 1408 | * bio. |
| 1409 | */ |
| 1410 | static int fail_bio_stripe(struct btrfs_raid_bio *rbio, |
| 1411 | struct bio *bio) |
| 1412 | { |
| 1413 | int failed = find_bio_stripe(rbio, bio); |
| 1414 | |
| 1415 | if (failed < 0) |
| 1416 | return -EIO; |
| 1417 | |
| 1418 | return fail_rbio_index(rbio, failed); |
| 1419 | } |
| 1420 | |
| 1421 | /* |
| 1422 | * this sets each page in the bio uptodate. It should only be used on private |
| 1423 | * rbio pages, nothing that comes in from the higher layers |
| 1424 | */ |
| 1425 | static void set_bio_pages_uptodate(struct bio *bio) |
| 1426 | { |
Filipe Manana | 6592e58 | 2017-07-12 23:36:02 +0100 | [diff] [blame] | 1427 | struct bio_vec bvec; |
| 1428 | struct bvec_iter iter; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1429 | |
Filipe Manana | 6592e58 | 2017-07-12 23:36:02 +0100 | [diff] [blame] | 1430 | if (bio_flagged(bio, BIO_CLONED)) |
| 1431 | bio->bi_iter = btrfs_io_bio(bio)->iter; |
| 1432 | |
| 1433 | bio_for_each_segment(bvec, bio, iter) |
| 1434 | SetPageUptodate(bvec.bv_page); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1435 | } |
| 1436 | |
| 1437 | /* |
| 1438 | * end io for the read phase of the rmw cycle. All the bios here are physical |
| 1439 | * stripe bios we've read from the disk so we can recalculate the parity of the |
| 1440 | * stripe. |
| 1441 | * |
| 1442 | * This will usually kick off finish_rmw once all the bios are read in, but it |
| 1443 | * may trigger parity reconstruction if we had any errors along the way |
| 1444 | */ |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 1445 | static void raid_rmw_end_io(struct bio *bio) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1446 | { |
| 1447 | struct btrfs_raid_bio *rbio = bio->bi_private; |
| 1448 | |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 1449 | if (bio->bi_status) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1450 | fail_bio_stripe(rbio, bio); |
| 1451 | else |
| 1452 | set_bio_pages_uptodate(bio); |
| 1453 | |
| 1454 | bio_put(bio); |
| 1455 | |
Miao Xie | b89e1b0 | 2014-10-15 11:18:44 +0800 | [diff] [blame] | 1456 | if (!atomic_dec_and_test(&rbio->stripes_pending)) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1457 | return; |
| 1458 | |
Miao Xie | b89e1b0 | 2014-10-15 11:18:44 +0800 | [diff] [blame] | 1459 | if (atomic_read(&rbio->error) > rbio->bbio->max_errors) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1460 | goto cleanup; |
| 1461 | |
| 1462 | /* |
| 1463 | * this will normally call finish_rmw to start our write |
| 1464 | * but if there are any failed stripes we'll reconstruct |
| 1465 | * from parity first |
| 1466 | */ |
| 1467 | validate_rbio_for_rmw(rbio); |
| 1468 | return; |
| 1469 | |
| 1470 | cleanup: |
| 1471 | |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 1472 | rbio_orig_end_io(rbio, BLK_STS_IOERR); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1473 | } |
| 1474 | |
| 1475 | static void async_rmw_stripe(struct btrfs_raid_bio *rbio) |
| 1476 | { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1477 | btrfs_init_work(&rbio->work, btrfs_rmw_helper, rmw_work, NULL, NULL); |
| 1478 | btrfs_queue_work(rbio->fs_info->rmw_workers, &rbio->work); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1479 | } |
| 1480 | |
| 1481 | static void async_read_rebuild(struct btrfs_raid_bio *rbio) |
| 1482 | { |
Liu Bo | 9e0af23 | 2014-08-15 23:36:53 +0800 | [diff] [blame] | 1483 | btrfs_init_work(&rbio->work, btrfs_rmw_helper, |
| 1484 | read_rebuild_work, NULL, NULL); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1485 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1486 | btrfs_queue_work(rbio->fs_info->rmw_workers, &rbio->work); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1487 | } |
| 1488 | |
| 1489 | /* |
| 1490 | * the stripe must be locked by the caller. It will |
| 1491 | * unlock after all the writes are done |
| 1492 | */ |
| 1493 | static int raid56_rmw_stripe(struct btrfs_raid_bio *rbio) |
| 1494 | { |
| 1495 | int bios_to_read = 0; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1496 | struct bio_list bio_list; |
| 1497 | int ret; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1498 | int pagenr; |
| 1499 | int stripe; |
| 1500 | struct bio *bio; |
| 1501 | |
| 1502 | bio_list_init(&bio_list); |
| 1503 | |
| 1504 | ret = alloc_rbio_pages(rbio); |
| 1505 | if (ret) |
| 1506 | goto cleanup; |
| 1507 | |
| 1508 | index_rbio_pages(rbio); |
| 1509 | |
Miao Xie | b89e1b0 | 2014-10-15 11:18:44 +0800 | [diff] [blame] | 1510 | atomic_set(&rbio->error, 0); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1511 | /* |
| 1512 | * build a list of bios to read all the missing parts of this |
| 1513 | * stripe |
| 1514 | */ |
| 1515 | for (stripe = 0; stripe < rbio->nr_data; stripe++) { |
Zhao Lei | 915e229 | 2015-03-03 20:42:48 +0800 | [diff] [blame] | 1516 | for (pagenr = 0; pagenr < rbio->stripe_npages; pagenr++) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1517 | struct page *page; |
| 1518 | /* |
| 1519 | * we want to find all the pages missing from |
| 1520 | * the rbio and read them from the disk. If |
| 1521 | * page_in_rbio finds a page in the bio list |
| 1522 | * we don't need to read it off the stripe. |
| 1523 | */ |
| 1524 | page = page_in_rbio(rbio, stripe, pagenr, 1); |
| 1525 | if (page) |
| 1526 | continue; |
| 1527 | |
| 1528 | page = rbio_stripe_page(rbio, stripe, pagenr); |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 1529 | /* |
| 1530 | * the bio cache may have handed us an uptodate |
| 1531 | * page. If so, be happy and use it |
| 1532 | */ |
| 1533 | if (PageUptodate(page)) |
| 1534 | continue; |
| 1535 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1536 | ret = rbio_add_io_page(rbio, &bio_list, page, |
| 1537 | stripe, pagenr, rbio->stripe_len); |
| 1538 | if (ret) |
| 1539 | goto cleanup; |
| 1540 | } |
| 1541 | } |
| 1542 | |
| 1543 | bios_to_read = bio_list_size(&bio_list); |
| 1544 | if (!bios_to_read) { |
| 1545 | /* |
| 1546 | * this can happen if others have merged with |
| 1547 | * us, it means there is nothing left to read. |
| 1548 | * But if there are missing devices it may not be |
| 1549 | * safe to do the full stripe write yet. |
| 1550 | */ |
| 1551 | goto finish; |
| 1552 | } |
| 1553 | |
| 1554 | /* |
| 1555 | * the bbio may be freed once we submit the last bio. Make sure |
| 1556 | * not to touch it after that |
| 1557 | */ |
Miao Xie | b89e1b0 | 2014-10-15 11:18:44 +0800 | [diff] [blame] | 1558 | atomic_set(&rbio->stripes_pending, bios_to_read); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1559 | while (1) { |
| 1560 | bio = bio_list_pop(&bio_list); |
| 1561 | if (!bio) |
| 1562 | break; |
| 1563 | |
| 1564 | bio->bi_private = rbio; |
| 1565 | bio->bi_end_io = raid_rmw_end_io; |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 1566 | bio_set_op_attrs(bio, REQ_OP_READ, 0); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1567 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1568 | btrfs_bio_wq_end_io(rbio->fs_info, bio, BTRFS_WQ_ENDIO_RAID56); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1569 | |
Mike Christie | 4e49ea4 | 2016-06-05 14:31:41 -0500 | [diff] [blame] | 1570 | submit_bio(bio); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1571 | } |
| 1572 | /* the actual write will happen once the reads are done */ |
| 1573 | return 0; |
| 1574 | |
| 1575 | cleanup: |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 1576 | rbio_orig_end_io(rbio, BLK_STS_IOERR); |
Liu Bo | 785884f | 2017-09-22 12:11:18 -0600 | [diff] [blame] | 1577 | |
| 1578 | while ((bio = bio_list_pop(&bio_list))) |
| 1579 | bio_put(bio); |
| 1580 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1581 | return -EIO; |
| 1582 | |
| 1583 | finish: |
| 1584 | validate_rbio_for_rmw(rbio); |
| 1585 | return 0; |
| 1586 | } |
| 1587 | |
| 1588 | /* |
| 1589 | * if the upper layers pass in a full stripe, we thank them by only allocating |
| 1590 | * enough pages to hold the parity, and sending it all down quickly. |
| 1591 | */ |
| 1592 | static int full_stripe_write(struct btrfs_raid_bio *rbio) |
| 1593 | { |
| 1594 | int ret; |
| 1595 | |
| 1596 | ret = alloc_rbio_parity_pages(rbio); |
Miao Xie | 3cd846d | 2013-07-22 16:36:57 +0800 | [diff] [blame] | 1597 | if (ret) { |
| 1598 | __free_raid_bio(rbio); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1599 | return ret; |
Miao Xie | 3cd846d | 2013-07-22 16:36:57 +0800 | [diff] [blame] | 1600 | } |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1601 | |
| 1602 | ret = lock_stripe_add(rbio); |
| 1603 | if (ret == 0) |
| 1604 | finish_rmw(rbio); |
| 1605 | return 0; |
| 1606 | } |
| 1607 | |
| 1608 | /* |
| 1609 | * partial stripe writes get handed over to async helpers. |
| 1610 | * We're really hoping to merge a few more writes into this |
| 1611 | * rbio before calculating new parity |
| 1612 | */ |
| 1613 | static int partial_stripe_write(struct btrfs_raid_bio *rbio) |
| 1614 | { |
| 1615 | int ret; |
| 1616 | |
| 1617 | ret = lock_stripe_add(rbio); |
| 1618 | if (ret == 0) |
| 1619 | async_rmw_stripe(rbio); |
| 1620 | return 0; |
| 1621 | } |
| 1622 | |
| 1623 | /* |
| 1624 | * sometimes while we were reading from the drive to |
| 1625 | * recalculate parity, enough new bios come into create |
| 1626 | * a full stripe. So we do a check here to see if we can |
| 1627 | * go directly to finish_rmw |
| 1628 | */ |
| 1629 | static int __raid56_parity_write(struct btrfs_raid_bio *rbio) |
| 1630 | { |
| 1631 | /* head off into rmw land if we don't have a full stripe */ |
| 1632 | if (!rbio_is_full(rbio)) |
| 1633 | return partial_stripe_write(rbio); |
| 1634 | return full_stripe_write(rbio); |
| 1635 | } |
| 1636 | |
| 1637 | /* |
Chris Mason | 6ac0f48 | 2013-01-31 14:42:28 -0500 | [diff] [blame] | 1638 | * We use plugging call backs to collect full stripes. |
| 1639 | * Any time we get a partial stripe write while plugged |
| 1640 | * we collect it into a list. When the unplug comes down, |
| 1641 | * we sort the list by logical block number and merge |
| 1642 | * everything we can into the same rbios |
| 1643 | */ |
| 1644 | struct btrfs_plug_cb { |
| 1645 | struct blk_plug_cb cb; |
| 1646 | struct btrfs_fs_info *info; |
| 1647 | struct list_head rbio_list; |
| 1648 | struct btrfs_work work; |
| 1649 | }; |
| 1650 | |
| 1651 | /* |
| 1652 | * rbios on the plug list are sorted for easier merging. |
| 1653 | */ |
| 1654 | static int plug_cmp(void *priv, struct list_head *a, struct list_head *b) |
| 1655 | { |
| 1656 | struct btrfs_raid_bio *ra = container_of(a, struct btrfs_raid_bio, |
| 1657 | plug_list); |
| 1658 | struct btrfs_raid_bio *rb = container_of(b, struct btrfs_raid_bio, |
| 1659 | plug_list); |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 1660 | u64 a_sector = ra->bio_list.head->bi_iter.bi_sector; |
| 1661 | u64 b_sector = rb->bio_list.head->bi_iter.bi_sector; |
Chris Mason | 6ac0f48 | 2013-01-31 14:42:28 -0500 | [diff] [blame] | 1662 | |
| 1663 | if (a_sector < b_sector) |
| 1664 | return -1; |
| 1665 | if (a_sector > b_sector) |
| 1666 | return 1; |
| 1667 | return 0; |
| 1668 | } |
| 1669 | |
| 1670 | static void run_plug(struct btrfs_plug_cb *plug) |
| 1671 | { |
| 1672 | struct btrfs_raid_bio *cur; |
| 1673 | struct btrfs_raid_bio *last = NULL; |
| 1674 | |
| 1675 | /* |
| 1676 | * sort our plug list then try to merge |
| 1677 | * everything we can in hopes of creating full |
| 1678 | * stripes. |
| 1679 | */ |
| 1680 | list_sort(NULL, &plug->rbio_list, plug_cmp); |
| 1681 | while (!list_empty(&plug->rbio_list)) { |
| 1682 | cur = list_entry(plug->rbio_list.next, |
| 1683 | struct btrfs_raid_bio, plug_list); |
| 1684 | list_del_init(&cur->plug_list); |
| 1685 | |
| 1686 | if (rbio_is_full(cur)) { |
| 1687 | /* we have a full stripe, send it down */ |
| 1688 | full_stripe_write(cur); |
| 1689 | continue; |
| 1690 | } |
| 1691 | if (last) { |
| 1692 | if (rbio_can_merge(last, cur)) { |
| 1693 | merge_rbio(last, cur); |
| 1694 | __free_raid_bio(cur); |
| 1695 | continue; |
| 1696 | |
| 1697 | } |
| 1698 | __raid56_parity_write(last); |
| 1699 | } |
| 1700 | last = cur; |
| 1701 | } |
| 1702 | if (last) { |
| 1703 | __raid56_parity_write(last); |
| 1704 | } |
| 1705 | kfree(plug); |
| 1706 | } |
| 1707 | |
| 1708 | /* |
| 1709 | * if the unplug comes from schedule, we have to push the |
| 1710 | * work off to a helper thread |
| 1711 | */ |
| 1712 | static void unplug_work(struct btrfs_work *work) |
| 1713 | { |
| 1714 | struct btrfs_plug_cb *plug; |
| 1715 | plug = container_of(work, struct btrfs_plug_cb, work); |
| 1716 | run_plug(plug); |
| 1717 | } |
| 1718 | |
| 1719 | static void btrfs_raid_unplug(struct blk_plug_cb *cb, bool from_schedule) |
| 1720 | { |
| 1721 | struct btrfs_plug_cb *plug; |
| 1722 | plug = container_of(cb, struct btrfs_plug_cb, cb); |
| 1723 | |
| 1724 | if (from_schedule) { |
Liu Bo | 9e0af23 | 2014-08-15 23:36:53 +0800 | [diff] [blame] | 1725 | btrfs_init_work(&plug->work, btrfs_rmw_helper, |
| 1726 | unplug_work, NULL, NULL); |
Qu Wenruo | d05a33a | 2014-02-28 10:46:11 +0800 | [diff] [blame] | 1727 | btrfs_queue_work(plug->info->rmw_workers, |
| 1728 | &plug->work); |
Chris Mason | 6ac0f48 | 2013-01-31 14:42:28 -0500 | [diff] [blame] | 1729 | return; |
| 1730 | } |
| 1731 | run_plug(plug); |
| 1732 | } |
| 1733 | |
| 1734 | /* |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1735 | * our main entry point for writes from the rest of the FS. |
| 1736 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 1737 | int raid56_parity_write(struct btrfs_fs_info *fs_info, struct bio *bio, |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 1738 | struct btrfs_bio *bbio, u64 stripe_len) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1739 | { |
| 1740 | struct btrfs_raid_bio *rbio; |
Chris Mason | 6ac0f48 | 2013-01-31 14:42:28 -0500 | [diff] [blame] | 1741 | struct btrfs_plug_cb *plug = NULL; |
| 1742 | struct blk_plug_cb *cb; |
Miao Xie | 4245215 | 2014-11-25 16:39:28 +0800 | [diff] [blame] | 1743 | int ret; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1744 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 1745 | rbio = alloc_rbio(fs_info, bbio, stripe_len); |
Miao Xie | af8e2d1 | 2014-10-23 14:42:50 +0800 | [diff] [blame] | 1746 | if (IS_ERR(rbio)) { |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 1747 | btrfs_put_bbio(bbio); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1748 | return PTR_ERR(rbio); |
Miao Xie | af8e2d1 | 2014-10-23 14:42:50 +0800 | [diff] [blame] | 1749 | } |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1750 | bio_list_add(&rbio->bio_list, bio); |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 1751 | rbio->bio_list_bytes = bio->bi_iter.bi_size; |
Miao Xie | 1b94b55 | 2014-11-06 16:14:21 +0800 | [diff] [blame] | 1752 | rbio->operation = BTRFS_RBIO_WRITE; |
Chris Mason | 6ac0f48 | 2013-01-31 14:42:28 -0500 | [diff] [blame] | 1753 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1754 | btrfs_bio_counter_inc_noblocked(fs_info); |
Miao Xie | 4245215 | 2014-11-25 16:39:28 +0800 | [diff] [blame] | 1755 | rbio->generic_bio_cnt = 1; |
| 1756 | |
Chris Mason | 6ac0f48 | 2013-01-31 14:42:28 -0500 | [diff] [blame] | 1757 | /* |
| 1758 | * don't plug on full rbios, just get them out the door |
| 1759 | * as quickly as we can |
| 1760 | */ |
Miao Xie | 4245215 | 2014-11-25 16:39:28 +0800 | [diff] [blame] | 1761 | if (rbio_is_full(rbio)) { |
| 1762 | ret = full_stripe_write(rbio); |
| 1763 | if (ret) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1764 | btrfs_bio_counter_dec(fs_info); |
Miao Xie | 4245215 | 2014-11-25 16:39:28 +0800 | [diff] [blame] | 1765 | return ret; |
| 1766 | } |
Chris Mason | 6ac0f48 | 2013-01-31 14:42:28 -0500 | [diff] [blame] | 1767 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1768 | cb = blk_check_plugged(btrfs_raid_unplug, fs_info, sizeof(*plug)); |
Chris Mason | 6ac0f48 | 2013-01-31 14:42:28 -0500 | [diff] [blame] | 1769 | if (cb) { |
| 1770 | plug = container_of(cb, struct btrfs_plug_cb, cb); |
| 1771 | if (!plug->info) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1772 | plug->info = fs_info; |
Chris Mason | 6ac0f48 | 2013-01-31 14:42:28 -0500 | [diff] [blame] | 1773 | INIT_LIST_HEAD(&plug->rbio_list); |
| 1774 | } |
| 1775 | list_add_tail(&rbio->plug_list, &plug->rbio_list); |
Miao Xie | 4245215 | 2014-11-25 16:39:28 +0800 | [diff] [blame] | 1776 | ret = 0; |
Chris Mason | 6ac0f48 | 2013-01-31 14:42:28 -0500 | [diff] [blame] | 1777 | } else { |
Miao Xie | 4245215 | 2014-11-25 16:39:28 +0800 | [diff] [blame] | 1778 | ret = __raid56_parity_write(rbio); |
| 1779 | if (ret) |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 1780 | btrfs_bio_counter_dec(fs_info); |
Chris Mason | 6ac0f48 | 2013-01-31 14:42:28 -0500 | [diff] [blame] | 1781 | } |
Miao Xie | 4245215 | 2014-11-25 16:39:28 +0800 | [diff] [blame] | 1782 | return ret; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1783 | } |
| 1784 | |
| 1785 | /* |
| 1786 | * all parity reconstruction happens here. We've read in everything |
| 1787 | * we can find from the drives and this does the heavy lifting of |
| 1788 | * sorting the good from the bad. |
| 1789 | */ |
| 1790 | static void __raid_recover_end_io(struct btrfs_raid_bio *rbio) |
| 1791 | { |
| 1792 | int pagenr, stripe; |
| 1793 | void **pointers; |
| 1794 | int faila = -1, failb = -1; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1795 | struct page *page; |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 1796 | blk_status_t err; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1797 | int i; |
| 1798 | |
David Sterba | 31e818f | 2015-02-20 18:00:26 +0100 | [diff] [blame] | 1799 | pointers = kcalloc(rbio->real_stripes, sizeof(void *), GFP_NOFS); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1800 | if (!pointers) { |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 1801 | err = BLK_STS_RESOURCE; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1802 | goto cleanup_io; |
| 1803 | } |
| 1804 | |
| 1805 | faila = rbio->faila; |
| 1806 | failb = rbio->failb; |
| 1807 | |
Omar Sandoval | b4ee178 | 2015-06-19 11:52:50 -0700 | [diff] [blame] | 1808 | if (rbio->operation == BTRFS_RBIO_READ_REBUILD || |
| 1809 | rbio->operation == BTRFS_RBIO_REBUILD_MISSING) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1810 | spin_lock_irq(&rbio->bio_list_lock); |
| 1811 | set_bit(RBIO_RMW_LOCKED_BIT, &rbio->flags); |
| 1812 | spin_unlock_irq(&rbio->bio_list_lock); |
| 1813 | } |
| 1814 | |
| 1815 | index_rbio_pages(rbio); |
| 1816 | |
Zhao Lei | 915e229 | 2015-03-03 20:42:48 +0800 | [diff] [blame] | 1817 | for (pagenr = 0; pagenr < rbio->stripe_npages; pagenr++) { |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 1818 | /* |
| 1819 | * Now we just use bitmap to mark the horizontal stripes in |
| 1820 | * which we have data when doing parity scrub. |
| 1821 | */ |
| 1822 | if (rbio->operation == BTRFS_RBIO_PARITY_SCRUB && |
| 1823 | !test_bit(pagenr, rbio->dbitmap)) |
| 1824 | continue; |
| 1825 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1826 | /* setup our array of pointers with pages |
| 1827 | * from each stripe |
| 1828 | */ |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 1829 | for (stripe = 0; stripe < rbio->real_stripes; stripe++) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1830 | /* |
| 1831 | * if we're rebuilding a read, we have to use |
| 1832 | * pages from the bio list |
| 1833 | */ |
Omar Sandoval | b4ee178 | 2015-06-19 11:52:50 -0700 | [diff] [blame] | 1834 | if ((rbio->operation == BTRFS_RBIO_READ_REBUILD || |
| 1835 | rbio->operation == BTRFS_RBIO_REBUILD_MISSING) && |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1836 | (stripe == faila || stripe == failb)) { |
| 1837 | page = page_in_rbio(rbio, stripe, pagenr, 0); |
| 1838 | } else { |
| 1839 | page = rbio_stripe_page(rbio, stripe, pagenr); |
| 1840 | } |
| 1841 | pointers[stripe] = kmap(page); |
| 1842 | } |
| 1843 | |
| 1844 | /* all raid6 handling here */ |
Zhao Lei | 10f1190 | 2015-01-20 15:11:43 +0800 | [diff] [blame] | 1845 | if (rbio->bbio->map_type & BTRFS_BLOCK_GROUP_RAID6) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1846 | /* |
| 1847 | * single failure, rebuild from parity raid5 |
| 1848 | * style |
| 1849 | */ |
| 1850 | if (failb < 0) { |
| 1851 | if (faila == rbio->nr_data) { |
| 1852 | /* |
| 1853 | * Just the P stripe has failed, without |
| 1854 | * a bad data or Q stripe. |
| 1855 | * TODO, we should redo the xor here. |
| 1856 | */ |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 1857 | err = BLK_STS_IOERR; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1858 | goto cleanup; |
| 1859 | } |
| 1860 | /* |
| 1861 | * a single failure in raid6 is rebuilt |
| 1862 | * in the pstripe code below |
| 1863 | */ |
| 1864 | goto pstripe; |
| 1865 | } |
| 1866 | |
| 1867 | /* make sure our ps and qs are in order */ |
| 1868 | if (faila > failb) { |
| 1869 | int tmp = failb; |
| 1870 | failb = faila; |
| 1871 | faila = tmp; |
| 1872 | } |
| 1873 | |
| 1874 | /* if the q stripe is failed, do a pstripe reconstruction |
| 1875 | * from the xors. |
| 1876 | * If both the q stripe and the P stripe are failed, we're |
| 1877 | * here due to a crc mismatch and we can't give them the |
| 1878 | * data they want |
| 1879 | */ |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 1880 | if (rbio->bbio->raid_map[failb] == RAID6_Q_STRIPE) { |
| 1881 | if (rbio->bbio->raid_map[faila] == |
| 1882 | RAID5_P_STRIPE) { |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 1883 | err = BLK_STS_IOERR; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1884 | goto cleanup; |
| 1885 | } |
| 1886 | /* |
| 1887 | * otherwise we have one bad data stripe and |
| 1888 | * a good P stripe. raid5! |
| 1889 | */ |
| 1890 | goto pstripe; |
| 1891 | } |
| 1892 | |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 1893 | if (rbio->bbio->raid_map[failb] == RAID5_P_STRIPE) { |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 1894 | raid6_datap_recov(rbio->real_stripes, |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1895 | PAGE_SIZE, faila, pointers); |
| 1896 | } else { |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 1897 | raid6_2data_recov(rbio->real_stripes, |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1898 | PAGE_SIZE, faila, failb, |
| 1899 | pointers); |
| 1900 | } |
| 1901 | } else { |
| 1902 | void *p; |
| 1903 | |
| 1904 | /* rebuild from P stripe here (raid5 or raid6) */ |
| 1905 | BUG_ON(failb != -1); |
| 1906 | pstripe: |
| 1907 | /* Copy parity block into failed block to start with */ |
| 1908 | memcpy(pointers[faila], |
| 1909 | pointers[rbio->nr_data], |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 1910 | PAGE_SIZE); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1911 | |
| 1912 | /* rearrange the pointer array */ |
| 1913 | p = pointers[faila]; |
| 1914 | for (stripe = faila; stripe < rbio->nr_data - 1; stripe++) |
| 1915 | pointers[stripe] = pointers[stripe + 1]; |
| 1916 | pointers[rbio->nr_data - 1] = p; |
| 1917 | |
| 1918 | /* xor in the rest */ |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 1919 | run_xor(pointers, rbio->nr_data - 1, PAGE_SIZE); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1920 | } |
| 1921 | /* if we're doing this rebuild as part of an rmw, go through |
| 1922 | * and set all of our private rbio pages in the |
| 1923 | * failed stripes as uptodate. This way finish_rmw will |
| 1924 | * know they can be trusted. If this was a read reconstruction, |
| 1925 | * other endio functions will fiddle the uptodate bits |
| 1926 | */ |
Miao Xie | 1b94b55 | 2014-11-06 16:14:21 +0800 | [diff] [blame] | 1927 | if (rbio->operation == BTRFS_RBIO_WRITE) { |
Zhao Lei | 915e229 | 2015-03-03 20:42:48 +0800 | [diff] [blame] | 1928 | for (i = 0; i < rbio->stripe_npages; i++) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1929 | if (faila != -1) { |
| 1930 | page = rbio_stripe_page(rbio, faila, i); |
| 1931 | SetPageUptodate(page); |
| 1932 | } |
| 1933 | if (failb != -1) { |
| 1934 | page = rbio_stripe_page(rbio, failb, i); |
| 1935 | SetPageUptodate(page); |
| 1936 | } |
| 1937 | } |
| 1938 | } |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 1939 | for (stripe = 0; stripe < rbio->real_stripes; stripe++) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1940 | /* |
| 1941 | * if we're rebuilding a read, we have to use |
| 1942 | * pages from the bio list |
| 1943 | */ |
Omar Sandoval | b4ee178 | 2015-06-19 11:52:50 -0700 | [diff] [blame] | 1944 | if ((rbio->operation == BTRFS_RBIO_READ_REBUILD || |
| 1945 | rbio->operation == BTRFS_RBIO_REBUILD_MISSING) && |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1946 | (stripe == faila || stripe == failb)) { |
| 1947 | page = page_in_rbio(rbio, stripe, pagenr, 0); |
| 1948 | } else { |
| 1949 | page = rbio_stripe_page(rbio, stripe, pagenr); |
| 1950 | } |
| 1951 | kunmap(page); |
| 1952 | } |
| 1953 | } |
| 1954 | |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 1955 | err = BLK_STS_OK; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1956 | cleanup: |
| 1957 | kfree(pointers); |
| 1958 | |
| 1959 | cleanup_io: |
Miao Xie | 1b94b55 | 2014-11-06 16:14:21 +0800 | [diff] [blame] | 1960 | if (rbio->operation == BTRFS_RBIO_READ_REBUILD) { |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 1961 | if (err == BLK_STS_OK) |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 1962 | cache_rbio_pages(rbio); |
| 1963 | else |
| 1964 | clear_bit(RBIO_CACHE_READY_BIT, &rbio->flags); |
| 1965 | |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 1966 | rbio_orig_end_io(rbio, err); |
Omar Sandoval | b4ee178 | 2015-06-19 11:52:50 -0700 | [diff] [blame] | 1967 | } else if (rbio->operation == BTRFS_RBIO_REBUILD_MISSING) { |
Linus Torvalds | 2236597 | 2015-09-05 15:14:43 -0700 | [diff] [blame] | 1968 | rbio_orig_end_io(rbio, err); |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 1969 | } else if (err == BLK_STS_OK) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1970 | rbio->faila = -1; |
| 1971 | rbio->failb = -1; |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 1972 | |
| 1973 | if (rbio->operation == BTRFS_RBIO_WRITE) |
| 1974 | finish_rmw(rbio); |
| 1975 | else if (rbio->operation == BTRFS_RBIO_PARITY_SCRUB) |
| 1976 | finish_parity_scrub(rbio, 0); |
| 1977 | else |
| 1978 | BUG(); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1979 | } else { |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 1980 | rbio_orig_end_io(rbio, err); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1981 | } |
| 1982 | } |
| 1983 | |
| 1984 | /* |
| 1985 | * This is called only for stripes we've read from disk to |
| 1986 | * reconstruct the parity. |
| 1987 | */ |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 1988 | static void raid_recover_end_io(struct bio *bio) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1989 | { |
| 1990 | struct btrfs_raid_bio *rbio = bio->bi_private; |
| 1991 | |
| 1992 | /* |
| 1993 | * we only read stripe pages off the disk, set them |
| 1994 | * up to date if there were no errors |
| 1995 | */ |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 1996 | if (bio->bi_status) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 1997 | fail_bio_stripe(rbio, bio); |
| 1998 | else |
| 1999 | set_bio_pages_uptodate(bio); |
| 2000 | bio_put(bio); |
| 2001 | |
Miao Xie | b89e1b0 | 2014-10-15 11:18:44 +0800 | [diff] [blame] | 2002 | if (!atomic_dec_and_test(&rbio->stripes_pending)) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 2003 | return; |
| 2004 | |
Miao Xie | b89e1b0 | 2014-10-15 11:18:44 +0800 | [diff] [blame] | 2005 | if (atomic_read(&rbio->error) > rbio->bbio->max_errors) |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 2006 | rbio_orig_end_io(rbio, BLK_STS_IOERR); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 2007 | else |
| 2008 | __raid_recover_end_io(rbio); |
| 2009 | } |
| 2010 | |
| 2011 | /* |
| 2012 | * reads everything we need off the disk to reconstruct |
| 2013 | * the parity. endio handlers trigger final reconstruction |
| 2014 | * when the IO is done. |
| 2015 | * |
| 2016 | * This is used both for reads from the higher layers and for |
| 2017 | * parity construction required to finish a rmw cycle. |
| 2018 | */ |
| 2019 | static int __raid56_parity_recover(struct btrfs_raid_bio *rbio) |
| 2020 | { |
| 2021 | int bios_to_read = 0; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 2022 | struct bio_list bio_list; |
| 2023 | int ret; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 2024 | int pagenr; |
| 2025 | int stripe; |
| 2026 | struct bio *bio; |
| 2027 | |
| 2028 | bio_list_init(&bio_list); |
| 2029 | |
| 2030 | ret = alloc_rbio_pages(rbio); |
| 2031 | if (ret) |
| 2032 | goto cleanup; |
| 2033 | |
Miao Xie | b89e1b0 | 2014-10-15 11:18:44 +0800 | [diff] [blame] | 2034 | atomic_set(&rbio->error, 0); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 2035 | |
| 2036 | /* |
Chris Mason | 4ae10b3 | 2013-01-31 14:42:09 -0500 | [diff] [blame] | 2037 | * read everything that hasn't failed. Thanks to the |
| 2038 | * stripe cache, it is possible that some or all of these |
| 2039 | * pages are going to be uptodate. |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 2040 | */ |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 2041 | for (stripe = 0; stripe < rbio->real_stripes; stripe++) { |
Liu Bo | 5588383 | 2014-06-24 15:39:16 +0800 | [diff] [blame] | 2042 | if (rbio->faila == stripe || rbio->failb == stripe) { |
Miao Xie | b89e1b0 | 2014-10-15 11:18:44 +0800 | [diff] [blame] | 2043 | atomic_inc(&rbio->error); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 2044 | continue; |
Liu Bo | 5588383 | 2014-06-24 15:39:16 +0800 | [diff] [blame] | 2045 | } |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 2046 | |
Zhao Lei | 915e229 | 2015-03-03 20:42:48 +0800 | [diff] [blame] | 2047 | for (pagenr = 0; pagenr < rbio->stripe_npages; pagenr++) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 2048 | struct page *p; |
| 2049 | |
| 2050 | /* |
| 2051 | * the rmw code may have already read this |
| 2052 | * page in |
| 2053 | */ |
| 2054 | p = rbio_stripe_page(rbio, stripe, pagenr); |
| 2055 | if (PageUptodate(p)) |
| 2056 | continue; |
| 2057 | |
| 2058 | ret = rbio_add_io_page(rbio, &bio_list, |
| 2059 | rbio_stripe_page(rbio, stripe, pagenr), |
| 2060 | stripe, pagenr, rbio->stripe_len); |
| 2061 | if (ret < 0) |
| 2062 | goto cleanup; |
| 2063 | } |
| 2064 | } |
| 2065 | |
| 2066 | bios_to_read = bio_list_size(&bio_list); |
| 2067 | if (!bios_to_read) { |
| 2068 | /* |
| 2069 | * we might have no bios to read just because the pages |
| 2070 | * were up to date, or we might have no bios to read because |
| 2071 | * the devices were gone. |
| 2072 | */ |
Miao Xie | b89e1b0 | 2014-10-15 11:18:44 +0800 | [diff] [blame] | 2073 | if (atomic_read(&rbio->error) <= rbio->bbio->max_errors) { |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 2074 | __raid_recover_end_io(rbio); |
| 2075 | goto out; |
| 2076 | } else { |
| 2077 | goto cleanup; |
| 2078 | } |
| 2079 | } |
| 2080 | |
| 2081 | /* |
| 2082 | * the bbio may be freed once we submit the last bio. Make sure |
| 2083 | * not to touch it after that |
| 2084 | */ |
Miao Xie | b89e1b0 | 2014-10-15 11:18:44 +0800 | [diff] [blame] | 2085 | atomic_set(&rbio->stripes_pending, bios_to_read); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 2086 | while (1) { |
| 2087 | bio = bio_list_pop(&bio_list); |
| 2088 | if (!bio) |
| 2089 | break; |
| 2090 | |
| 2091 | bio->bi_private = rbio; |
| 2092 | bio->bi_end_io = raid_recover_end_io; |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 2093 | bio_set_op_attrs(bio, REQ_OP_READ, 0); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 2094 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2095 | btrfs_bio_wq_end_io(rbio->fs_info, bio, BTRFS_WQ_ENDIO_RAID56); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 2096 | |
Mike Christie | 4e49ea4 | 2016-06-05 14:31:41 -0500 | [diff] [blame] | 2097 | submit_bio(bio); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 2098 | } |
| 2099 | out: |
| 2100 | return 0; |
| 2101 | |
| 2102 | cleanup: |
Omar Sandoval | b4ee178 | 2015-06-19 11:52:50 -0700 | [diff] [blame] | 2103 | if (rbio->operation == BTRFS_RBIO_READ_REBUILD || |
| 2104 | rbio->operation == BTRFS_RBIO_REBUILD_MISSING) |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 2105 | rbio_orig_end_io(rbio, BLK_STS_IOERR); |
Liu Bo | 785884f | 2017-09-22 12:11:18 -0600 | [diff] [blame] | 2106 | |
| 2107 | while ((bio = bio_list_pop(&bio_list))) |
| 2108 | bio_put(bio); |
| 2109 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 2110 | return -EIO; |
| 2111 | } |
| 2112 | |
| 2113 | /* |
| 2114 | * the main entry point for reads from the higher layers. This |
| 2115 | * is really only called when the normal read path had a failure, |
| 2116 | * so we assume the bio they send down corresponds to a failed part |
| 2117 | * of the drive. |
| 2118 | */ |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2119 | int raid56_parity_recover(struct btrfs_fs_info *fs_info, struct bio *bio, |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 2120 | struct btrfs_bio *bbio, u64 stripe_len, |
| 2121 | int mirror_num, int generic_io) |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 2122 | { |
| 2123 | struct btrfs_raid_bio *rbio; |
| 2124 | int ret; |
| 2125 | |
Liu Bo | abad60c | 2017-03-29 10:54:26 -0700 | [diff] [blame] | 2126 | if (generic_io) { |
| 2127 | ASSERT(bbio->mirror_num == mirror_num); |
| 2128 | btrfs_io_bio(bio)->mirror_num = mirror_num; |
| 2129 | } |
| 2130 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2131 | rbio = alloc_rbio(fs_info, bbio, stripe_len); |
Miao Xie | af8e2d1 | 2014-10-23 14:42:50 +0800 | [diff] [blame] | 2132 | if (IS_ERR(rbio)) { |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 2133 | if (generic_io) |
| 2134 | btrfs_put_bbio(bbio); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 2135 | return PTR_ERR(rbio); |
Miao Xie | af8e2d1 | 2014-10-23 14:42:50 +0800 | [diff] [blame] | 2136 | } |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 2137 | |
Miao Xie | 1b94b55 | 2014-11-06 16:14:21 +0800 | [diff] [blame] | 2138 | rbio->operation = BTRFS_RBIO_READ_REBUILD; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 2139 | bio_list_add(&rbio->bio_list, bio); |
Kent Overstreet | 4f024f3 | 2013-10-11 15:44:27 -0700 | [diff] [blame] | 2140 | rbio->bio_list_bytes = bio->bi_iter.bi_size; |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 2141 | |
| 2142 | rbio->faila = find_logical_bio_stripe(rbio, bio); |
| 2143 | if (rbio->faila == -1) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2144 | btrfs_warn(fs_info, |
Liu Bo | e46a28c | 2016-07-29 10:57:55 -0700 | [diff] [blame] | 2145 | "%s could not find the bad stripe in raid56 so that we cannot recover any more (bio has logical %llu len %llu, bbio has map_type %llu)", |
| 2146 | __func__, (u64)bio->bi_iter.bi_sector << 9, |
| 2147 | (u64)bio->bi_iter.bi_size, bbio->map_type); |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 2148 | if (generic_io) |
| 2149 | btrfs_put_bbio(bbio); |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 2150 | kfree(rbio); |
| 2151 | return -EIO; |
| 2152 | } |
| 2153 | |
Miao Xie | 4245215 | 2014-11-25 16:39:28 +0800 | [diff] [blame] | 2154 | if (generic_io) { |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2155 | btrfs_bio_counter_inc_noblocked(fs_info); |
Miao Xie | 4245215 | 2014-11-25 16:39:28 +0800 | [diff] [blame] | 2156 | rbio->generic_bio_cnt = 1; |
| 2157 | } else { |
Zhao Lei | 6e9606d | 2015-01-20 15:11:34 +0800 | [diff] [blame] | 2158 | btrfs_get_bbio(bbio); |
Miao Xie | 4245215 | 2014-11-25 16:39:28 +0800 | [diff] [blame] | 2159 | } |
| 2160 | |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 2161 | /* |
Liu Bo | 8810f75 | 2018-01-02 13:36:41 -0700 | [diff] [blame^] | 2162 | * Loop retry: |
| 2163 | * for 'mirror == 2', reconstruct from all other stripes. |
| 2164 | * for 'mirror_num > 2', select a stripe to fail on every retry. |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 2165 | */ |
Liu Bo | 8810f75 | 2018-01-02 13:36:41 -0700 | [diff] [blame^] | 2166 | if (mirror_num > 2) { |
| 2167 | /* |
| 2168 | * 'mirror == 3' is to fail the p stripe and |
| 2169 | * reconstruct from the q stripe. 'mirror > 3' is to |
| 2170 | * fail a data stripe and reconstruct from p+q stripe. |
| 2171 | */ |
| 2172 | rbio->failb = rbio->real_stripes - (mirror_num - 1); |
| 2173 | ASSERT(rbio->failb > 0); |
| 2174 | if (rbio->failb <= rbio->faila) |
| 2175 | rbio->failb--; |
| 2176 | } |
David Woodhouse | 53b381b | 2013-01-29 18:40:14 -0500 | [diff] [blame] | 2177 | |
| 2178 | ret = lock_stripe_add(rbio); |
| 2179 | |
| 2180 | /* |
| 2181 | * __raid56_parity_recover will end the bio with |
| 2182 | * any errors it hits. We don't want to return |
| 2183 | * its error value up the stack because our caller |
| 2184 | * will end up calling bio_endio with any nonzero |
| 2185 | * return |
| 2186 | */ |
| 2187 | if (ret == 0) |
| 2188 | __raid56_parity_recover(rbio); |
| 2189 | /* |
| 2190 | * our rbio has been added to the list of |
| 2191 | * rbios that will be handled after the |
| 2192 | * currently lock owner is done |
| 2193 | */ |
| 2194 | return 0; |
| 2195 | |
| 2196 | } |
| 2197 | |
| 2198 | static void rmw_work(struct btrfs_work *work) |
| 2199 | { |
| 2200 | struct btrfs_raid_bio *rbio; |
| 2201 | |
| 2202 | rbio = container_of(work, struct btrfs_raid_bio, work); |
| 2203 | raid56_rmw_stripe(rbio); |
| 2204 | } |
| 2205 | |
| 2206 | static void read_rebuild_work(struct btrfs_work *work) |
| 2207 | { |
| 2208 | struct btrfs_raid_bio *rbio; |
| 2209 | |
| 2210 | rbio = container_of(work, struct btrfs_raid_bio, work); |
| 2211 | __raid56_parity_recover(rbio); |
| 2212 | } |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2213 | |
| 2214 | /* |
| 2215 | * The following code is used to scrub/replace the parity stripe |
| 2216 | * |
Qu Wenruo | ae6529c | 2017-03-29 09:33:21 +0800 | [diff] [blame] | 2217 | * Caller must have already increased bio_counter for getting @bbio. |
| 2218 | * |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2219 | * Note: We need make sure all the pages that add into the scrub/replace |
| 2220 | * raid bio are correct and not be changed during the scrub/replace. That |
| 2221 | * is those pages just hold metadata or file data with checksum. |
| 2222 | */ |
| 2223 | |
| 2224 | struct btrfs_raid_bio * |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2225 | raid56_parity_alloc_scrub_rbio(struct btrfs_fs_info *fs_info, struct bio *bio, |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 2226 | struct btrfs_bio *bbio, u64 stripe_len, |
| 2227 | struct btrfs_device *scrub_dev, |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2228 | unsigned long *dbitmap, int stripe_nsectors) |
| 2229 | { |
| 2230 | struct btrfs_raid_bio *rbio; |
| 2231 | int i; |
| 2232 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2233 | rbio = alloc_rbio(fs_info, bbio, stripe_len); |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2234 | if (IS_ERR(rbio)) |
| 2235 | return NULL; |
| 2236 | bio_list_add(&rbio->bio_list, bio); |
| 2237 | /* |
| 2238 | * This is a special bio which is used to hold the completion handler |
| 2239 | * and make the scrub rbio is similar to the other types |
| 2240 | */ |
| 2241 | ASSERT(!bio->bi_iter.bi_size); |
| 2242 | rbio->operation = BTRFS_RBIO_PARITY_SCRUB; |
| 2243 | |
Liu Bo | 9cd3a7e | 2017-08-03 13:53:31 -0600 | [diff] [blame] | 2244 | /* |
| 2245 | * After mapping bbio with BTRFS_MAP_WRITE, parities have been sorted |
| 2246 | * to the end position, so this search can start from the first parity |
| 2247 | * stripe. |
| 2248 | */ |
| 2249 | for (i = rbio->nr_data; i < rbio->real_stripes; i++) { |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2250 | if (bbio->stripes[i].dev == scrub_dev) { |
| 2251 | rbio->scrubp = i; |
| 2252 | break; |
| 2253 | } |
| 2254 | } |
Liu Bo | 9cd3a7e | 2017-08-03 13:53:31 -0600 | [diff] [blame] | 2255 | ASSERT(i < rbio->real_stripes); |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2256 | |
| 2257 | /* Now we just support the sectorsize equals to page size */ |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2258 | ASSERT(fs_info->sectorsize == PAGE_SIZE); |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2259 | ASSERT(rbio->stripe_npages == stripe_nsectors); |
| 2260 | bitmap_copy(rbio->dbitmap, dbitmap, stripe_nsectors); |
| 2261 | |
Qu Wenruo | ae6529c | 2017-03-29 09:33:21 +0800 | [diff] [blame] | 2262 | /* |
| 2263 | * We have already increased bio_counter when getting bbio, record it |
| 2264 | * so we can free it at rbio_orig_end_io(). |
| 2265 | */ |
| 2266 | rbio->generic_bio_cnt = 1; |
| 2267 | |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2268 | return rbio; |
| 2269 | } |
| 2270 | |
Omar Sandoval | b4ee178 | 2015-06-19 11:52:50 -0700 | [diff] [blame] | 2271 | /* Used for both parity scrub and missing. */ |
| 2272 | void raid56_add_scrub_pages(struct btrfs_raid_bio *rbio, struct page *page, |
| 2273 | u64 logical) |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2274 | { |
| 2275 | int stripe_offset; |
| 2276 | int index; |
| 2277 | |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 2278 | ASSERT(logical >= rbio->bbio->raid_map[0]); |
| 2279 | ASSERT(logical + PAGE_SIZE <= rbio->bbio->raid_map[0] + |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2280 | rbio->stripe_len * rbio->nr_data); |
Zhao Lei | 8e5cfb5 | 2015-01-20 15:11:33 +0800 | [diff] [blame] | 2281 | stripe_offset = (int)(logical - rbio->bbio->raid_map[0]); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 2282 | index = stripe_offset >> PAGE_SHIFT; |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2283 | rbio->bio_pages[index] = page; |
| 2284 | } |
| 2285 | |
| 2286 | /* |
| 2287 | * We just scrub the parity that we have correct data on the same horizontal, |
| 2288 | * so we needn't allocate all pages for all the stripes. |
| 2289 | */ |
| 2290 | static int alloc_rbio_essential_pages(struct btrfs_raid_bio *rbio) |
| 2291 | { |
| 2292 | int i; |
| 2293 | int bit; |
| 2294 | int index; |
| 2295 | struct page *page; |
| 2296 | |
| 2297 | for_each_set_bit(bit, rbio->dbitmap, rbio->stripe_npages) { |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 2298 | for (i = 0; i < rbio->real_stripes; i++) { |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2299 | index = i * rbio->stripe_npages + bit; |
| 2300 | if (rbio->stripe_pages[index]) |
| 2301 | continue; |
| 2302 | |
| 2303 | page = alloc_page(GFP_NOFS | __GFP_HIGHMEM); |
| 2304 | if (!page) |
| 2305 | return -ENOMEM; |
| 2306 | rbio->stripe_pages[index] = page; |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2307 | } |
| 2308 | } |
| 2309 | return 0; |
| 2310 | } |
| 2311 | |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2312 | static noinline void finish_parity_scrub(struct btrfs_raid_bio *rbio, |
| 2313 | int need_check) |
| 2314 | { |
Miao Xie | 7603597 | 2014-11-14 17:45:42 +0800 | [diff] [blame] | 2315 | struct btrfs_bio *bbio = rbio->bbio; |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 2316 | void *pointers[rbio->real_stripes]; |
Miao Xie | 7603597 | 2014-11-14 17:45:42 +0800 | [diff] [blame] | 2317 | DECLARE_BITMAP(pbitmap, rbio->stripe_npages); |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2318 | int nr_data = rbio->nr_data; |
| 2319 | int stripe; |
| 2320 | int pagenr; |
| 2321 | int p_stripe = -1; |
| 2322 | int q_stripe = -1; |
| 2323 | struct page *p_page = NULL; |
| 2324 | struct page *q_page = NULL; |
| 2325 | struct bio_list bio_list; |
| 2326 | struct bio *bio; |
Miao Xie | 7603597 | 2014-11-14 17:45:42 +0800 | [diff] [blame] | 2327 | int is_replace = 0; |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2328 | int ret; |
| 2329 | |
| 2330 | bio_list_init(&bio_list); |
| 2331 | |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 2332 | if (rbio->real_stripes - rbio->nr_data == 1) { |
| 2333 | p_stripe = rbio->real_stripes - 1; |
| 2334 | } else if (rbio->real_stripes - rbio->nr_data == 2) { |
| 2335 | p_stripe = rbio->real_stripes - 2; |
| 2336 | q_stripe = rbio->real_stripes - 1; |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2337 | } else { |
| 2338 | BUG(); |
| 2339 | } |
| 2340 | |
Miao Xie | 7603597 | 2014-11-14 17:45:42 +0800 | [diff] [blame] | 2341 | if (bbio->num_tgtdevs && bbio->tgtdev_map[rbio->scrubp]) { |
| 2342 | is_replace = 1; |
| 2343 | bitmap_copy(pbitmap, rbio->dbitmap, rbio->stripe_npages); |
| 2344 | } |
| 2345 | |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2346 | /* |
| 2347 | * Because the higher layers(scrubber) are unlikely to |
| 2348 | * use this area of the disk again soon, so don't cache |
| 2349 | * it. |
| 2350 | */ |
| 2351 | clear_bit(RBIO_CACHE_READY_BIT, &rbio->flags); |
| 2352 | |
| 2353 | if (!need_check) |
| 2354 | goto writeback; |
| 2355 | |
| 2356 | p_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM); |
| 2357 | if (!p_page) |
| 2358 | goto cleanup; |
| 2359 | SetPageUptodate(p_page); |
| 2360 | |
| 2361 | if (q_stripe != -1) { |
| 2362 | q_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM); |
| 2363 | if (!q_page) { |
| 2364 | __free_page(p_page); |
| 2365 | goto cleanup; |
| 2366 | } |
| 2367 | SetPageUptodate(q_page); |
| 2368 | } |
| 2369 | |
| 2370 | atomic_set(&rbio->error, 0); |
| 2371 | |
| 2372 | for_each_set_bit(pagenr, rbio->dbitmap, rbio->stripe_npages) { |
| 2373 | struct page *p; |
| 2374 | void *parity; |
| 2375 | /* first collect one page from each data stripe */ |
| 2376 | for (stripe = 0; stripe < nr_data; stripe++) { |
| 2377 | p = page_in_rbio(rbio, stripe, pagenr, 0); |
| 2378 | pointers[stripe] = kmap(p); |
| 2379 | } |
| 2380 | |
| 2381 | /* then add the parity stripe */ |
| 2382 | pointers[stripe++] = kmap(p_page); |
| 2383 | |
| 2384 | if (q_stripe != -1) { |
| 2385 | |
| 2386 | /* |
| 2387 | * raid6, add the qstripe and call the |
| 2388 | * library function to fill in our p/q |
| 2389 | */ |
| 2390 | pointers[stripe++] = kmap(q_page); |
| 2391 | |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 2392 | raid6_call.gen_syndrome(rbio->real_stripes, PAGE_SIZE, |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2393 | pointers); |
| 2394 | } else { |
| 2395 | /* raid5 */ |
| 2396 | memcpy(pointers[nr_data], pointers[0], PAGE_SIZE); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 2397 | run_xor(pointers + 1, nr_data - 1, PAGE_SIZE); |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2398 | } |
| 2399 | |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 2400 | /* Check scrubbing parity and repair it */ |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2401 | p = rbio_stripe_page(rbio, rbio->scrubp, pagenr); |
| 2402 | parity = kmap(p); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 2403 | if (memcmp(parity, pointers[rbio->scrubp], PAGE_SIZE)) |
| 2404 | memcpy(parity, pointers[rbio->scrubp], PAGE_SIZE); |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2405 | else |
| 2406 | /* Parity is right, needn't writeback */ |
| 2407 | bitmap_clear(rbio->dbitmap, pagenr, 1); |
| 2408 | kunmap(p); |
| 2409 | |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 2410 | for (stripe = 0; stripe < rbio->real_stripes; stripe++) |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2411 | kunmap(page_in_rbio(rbio, stripe, pagenr, 0)); |
| 2412 | } |
| 2413 | |
| 2414 | __free_page(p_page); |
| 2415 | if (q_page) |
| 2416 | __free_page(q_page); |
| 2417 | |
| 2418 | writeback: |
| 2419 | /* |
| 2420 | * time to start writing. Make bios for everything from the |
| 2421 | * higher layers (the bio_list in our rbio) and our p/q. Ignore |
| 2422 | * everything else. |
| 2423 | */ |
| 2424 | for_each_set_bit(pagenr, rbio->dbitmap, rbio->stripe_npages) { |
| 2425 | struct page *page; |
| 2426 | |
| 2427 | page = rbio_stripe_page(rbio, rbio->scrubp, pagenr); |
| 2428 | ret = rbio_add_io_page(rbio, &bio_list, |
| 2429 | page, rbio->scrubp, pagenr, rbio->stripe_len); |
| 2430 | if (ret) |
| 2431 | goto cleanup; |
| 2432 | } |
| 2433 | |
Miao Xie | 7603597 | 2014-11-14 17:45:42 +0800 | [diff] [blame] | 2434 | if (!is_replace) |
| 2435 | goto submit_write; |
| 2436 | |
| 2437 | for_each_set_bit(pagenr, pbitmap, rbio->stripe_npages) { |
| 2438 | struct page *page; |
| 2439 | |
| 2440 | page = rbio_stripe_page(rbio, rbio->scrubp, pagenr); |
| 2441 | ret = rbio_add_io_page(rbio, &bio_list, page, |
| 2442 | bbio->tgtdev_map[rbio->scrubp], |
| 2443 | pagenr, rbio->stripe_len); |
| 2444 | if (ret) |
| 2445 | goto cleanup; |
| 2446 | } |
| 2447 | |
| 2448 | submit_write: |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2449 | nr_data = bio_list_size(&bio_list); |
| 2450 | if (!nr_data) { |
| 2451 | /* Every parity is right */ |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 2452 | rbio_orig_end_io(rbio, BLK_STS_OK); |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2453 | return; |
| 2454 | } |
| 2455 | |
| 2456 | atomic_set(&rbio->stripes_pending, nr_data); |
| 2457 | |
| 2458 | while (1) { |
| 2459 | bio = bio_list_pop(&bio_list); |
| 2460 | if (!bio) |
| 2461 | break; |
| 2462 | |
| 2463 | bio->bi_private = rbio; |
Zhao Lei | a6111d11b | 2016-01-12 17:52:13 +0800 | [diff] [blame] | 2464 | bio->bi_end_io = raid_write_end_io; |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 2465 | bio_set_op_attrs(bio, REQ_OP_WRITE, 0); |
Mike Christie | 4e49ea4 | 2016-06-05 14:31:41 -0500 | [diff] [blame] | 2466 | |
| 2467 | submit_bio(bio); |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2468 | } |
| 2469 | return; |
| 2470 | |
| 2471 | cleanup: |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 2472 | rbio_orig_end_io(rbio, BLK_STS_IOERR); |
Liu Bo | 785884f | 2017-09-22 12:11:18 -0600 | [diff] [blame] | 2473 | |
| 2474 | while ((bio = bio_list_pop(&bio_list))) |
| 2475 | bio_put(bio); |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2476 | } |
| 2477 | |
| 2478 | static inline int is_data_stripe(struct btrfs_raid_bio *rbio, int stripe) |
| 2479 | { |
| 2480 | if (stripe >= 0 && stripe < rbio->nr_data) |
| 2481 | return 1; |
| 2482 | return 0; |
| 2483 | } |
| 2484 | |
| 2485 | /* |
| 2486 | * While we're doing the parity check and repair, we could have errors |
| 2487 | * in reading pages off the disk. This checks for errors and if we're |
| 2488 | * not able to read the page it'll trigger parity reconstruction. The |
| 2489 | * parity scrub will be finished after we've reconstructed the failed |
| 2490 | * stripes |
| 2491 | */ |
| 2492 | static void validate_rbio_for_parity_scrub(struct btrfs_raid_bio *rbio) |
| 2493 | { |
| 2494 | if (atomic_read(&rbio->error) > rbio->bbio->max_errors) |
| 2495 | goto cleanup; |
| 2496 | |
| 2497 | if (rbio->faila >= 0 || rbio->failb >= 0) { |
| 2498 | int dfail = 0, failp = -1; |
| 2499 | |
| 2500 | if (is_data_stripe(rbio, rbio->faila)) |
| 2501 | dfail++; |
| 2502 | else if (is_parity_stripe(rbio->faila)) |
| 2503 | failp = rbio->faila; |
| 2504 | |
| 2505 | if (is_data_stripe(rbio, rbio->failb)) |
| 2506 | dfail++; |
| 2507 | else if (is_parity_stripe(rbio->failb)) |
| 2508 | failp = rbio->failb; |
| 2509 | |
| 2510 | /* |
| 2511 | * Because we can not use a scrubbing parity to repair |
| 2512 | * the data, so the capability of the repair is declined. |
| 2513 | * (In the case of RAID5, we can not repair anything) |
| 2514 | */ |
| 2515 | if (dfail > rbio->bbio->max_errors - 1) |
| 2516 | goto cleanup; |
| 2517 | |
| 2518 | /* |
| 2519 | * If all data is good, only parity is correctly, just |
| 2520 | * repair the parity. |
| 2521 | */ |
| 2522 | if (dfail == 0) { |
| 2523 | finish_parity_scrub(rbio, 0); |
| 2524 | return; |
| 2525 | } |
| 2526 | |
| 2527 | /* |
| 2528 | * Here means we got one corrupted data stripe and one |
| 2529 | * corrupted parity on RAID6, if the corrupted parity |
Nicholas D Steeves | 0132761 | 2016-05-19 21:18:45 -0400 | [diff] [blame] | 2530 | * is scrubbing parity, luckily, use the other one to repair |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2531 | * the data, or we can not repair the data stripe. |
| 2532 | */ |
| 2533 | if (failp != rbio->scrubp) |
| 2534 | goto cleanup; |
| 2535 | |
| 2536 | __raid_recover_end_io(rbio); |
| 2537 | } else { |
| 2538 | finish_parity_scrub(rbio, 1); |
| 2539 | } |
| 2540 | return; |
| 2541 | |
| 2542 | cleanup: |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 2543 | rbio_orig_end_io(rbio, BLK_STS_IOERR); |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2544 | } |
| 2545 | |
| 2546 | /* |
| 2547 | * end io for the read phase of the rmw cycle. All the bios here are physical |
| 2548 | * stripe bios we've read from the disk so we can recalculate the parity of the |
| 2549 | * stripe. |
| 2550 | * |
| 2551 | * This will usually kick off finish_rmw once all the bios are read in, but it |
| 2552 | * may trigger parity reconstruction if we had any errors along the way |
| 2553 | */ |
Christoph Hellwig | 4246a0b | 2015-07-20 15:29:37 +0200 | [diff] [blame] | 2554 | static void raid56_parity_scrub_end_io(struct bio *bio) |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2555 | { |
| 2556 | struct btrfs_raid_bio *rbio = bio->bi_private; |
| 2557 | |
Christoph Hellwig | 4e4cbee | 2017-06-03 09:38:06 +0200 | [diff] [blame] | 2558 | if (bio->bi_status) |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2559 | fail_bio_stripe(rbio, bio); |
| 2560 | else |
| 2561 | set_bio_pages_uptodate(bio); |
| 2562 | |
| 2563 | bio_put(bio); |
| 2564 | |
| 2565 | if (!atomic_dec_and_test(&rbio->stripes_pending)) |
| 2566 | return; |
| 2567 | |
| 2568 | /* |
| 2569 | * this will normally call finish_rmw to start our write |
| 2570 | * but if there are any failed stripes we'll reconstruct |
| 2571 | * from parity first |
| 2572 | */ |
| 2573 | validate_rbio_for_parity_scrub(rbio); |
| 2574 | } |
| 2575 | |
| 2576 | static void raid56_parity_scrub_stripe(struct btrfs_raid_bio *rbio) |
| 2577 | { |
| 2578 | int bios_to_read = 0; |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2579 | struct bio_list bio_list; |
| 2580 | int ret; |
| 2581 | int pagenr; |
| 2582 | int stripe; |
| 2583 | struct bio *bio; |
| 2584 | |
Liu Bo | 785884f | 2017-09-22 12:11:18 -0600 | [diff] [blame] | 2585 | bio_list_init(&bio_list); |
| 2586 | |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2587 | ret = alloc_rbio_essential_pages(rbio); |
| 2588 | if (ret) |
| 2589 | goto cleanup; |
| 2590 | |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2591 | atomic_set(&rbio->error, 0); |
| 2592 | /* |
| 2593 | * build a list of bios to read all the missing parts of this |
| 2594 | * stripe |
| 2595 | */ |
Miao Xie | 2c8cdd6 | 2014-11-14 16:06:25 +0800 | [diff] [blame] | 2596 | for (stripe = 0; stripe < rbio->real_stripes; stripe++) { |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2597 | for_each_set_bit(pagenr, rbio->dbitmap, rbio->stripe_npages) { |
| 2598 | struct page *page; |
| 2599 | /* |
| 2600 | * we want to find all the pages missing from |
| 2601 | * the rbio and read them from the disk. If |
| 2602 | * page_in_rbio finds a page in the bio list |
| 2603 | * we don't need to read it off the stripe. |
| 2604 | */ |
| 2605 | page = page_in_rbio(rbio, stripe, pagenr, 1); |
| 2606 | if (page) |
| 2607 | continue; |
| 2608 | |
| 2609 | page = rbio_stripe_page(rbio, stripe, pagenr); |
| 2610 | /* |
| 2611 | * the bio cache may have handed us an uptodate |
| 2612 | * page. If so, be happy and use it |
| 2613 | */ |
| 2614 | if (PageUptodate(page)) |
| 2615 | continue; |
| 2616 | |
| 2617 | ret = rbio_add_io_page(rbio, &bio_list, page, |
| 2618 | stripe, pagenr, rbio->stripe_len); |
| 2619 | if (ret) |
| 2620 | goto cleanup; |
| 2621 | } |
| 2622 | } |
| 2623 | |
| 2624 | bios_to_read = bio_list_size(&bio_list); |
| 2625 | if (!bios_to_read) { |
| 2626 | /* |
| 2627 | * this can happen if others have merged with |
| 2628 | * us, it means there is nothing left to read. |
| 2629 | * But if there are missing devices it may not be |
| 2630 | * safe to do the full stripe write yet. |
| 2631 | */ |
| 2632 | goto finish; |
| 2633 | } |
| 2634 | |
| 2635 | /* |
| 2636 | * the bbio may be freed once we submit the last bio. Make sure |
| 2637 | * not to touch it after that |
| 2638 | */ |
| 2639 | atomic_set(&rbio->stripes_pending, bios_to_read); |
| 2640 | while (1) { |
| 2641 | bio = bio_list_pop(&bio_list); |
| 2642 | if (!bio) |
| 2643 | break; |
| 2644 | |
| 2645 | bio->bi_private = rbio; |
| 2646 | bio->bi_end_io = raid56_parity_scrub_end_io; |
Mike Christie | 37226b2 | 2016-06-05 14:31:52 -0500 | [diff] [blame] | 2647 | bio_set_op_attrs(bio, REQ_OP_READ, 0); |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2648 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2649 | btrfs_bio_wq_end_io(rbio->fs_info, bio, BTRFS_WQ_ENDIO_RAID56); |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2650 | |
Mike Christie | 4e49ea4 | 2016-06-05 14:31:41 -0500 | [diff] [blame] | 2651 | submit_bio(bio); |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2652 | } |
| 2653 | /* the actual write will happen once the reads are done */ |
| 2654 | return; |
| 2655 | |
| 2656 | cleanup: |
Omar Sandoval | 58efbc9 | 2017-08-22 23:45:59 -0700 | [diff] [blame] | 2657 | rbio_orig_end_io(rbio, BLK_STS_IOERR); |
Liu Bo | 785884f | 2017-09-22 12:11:18 -0600 | [diff] [blame] | 2658 | |
| 2659 | while ((bio = bio_list_pop(&bio_list))) |
| 2660 | bio_put(bio); |
| 2661 | |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2662 | return; |
| 2663 | |
| 2664 | finish: |
| 2665 | validate_rbio_for_parity_scrub(rbio); |
| 2666 | } |
| 2667 | |
| 2668 | static void scrub_parity_work(struct btrfs_work *work) |
| 2669 | { |
| 2670 | struct btrfs_raid_bio *rbio; |
| 2671 | |
| 2672 | rbio = container_of(work, struct btrfs_raid_bio, work); |
| 2673 | raid56_parity_scrub_stripe(rbio); |
| 2674 | } |
| 2675 | |
| 2676 | static void async_scrub_parity(struct btrfs_raid_bio *rbio) |
| 2677 | { |
| 2678 | btrfs_init_work(&rbio->work, btrfs_rmw_helper, |
| 2679 | scrub_parity_work, NULL, NULL); |
| 2680 | |
Jeff Mahoney | 0b246af | 2016-06-22 18:54:23 -0400 | [diff] [blame] | 2681 | btrfs_queue_work(rbio->fs_info->rmw_workers, &rbio->work); |
Miao Xie | 5a6ac9e | 2014-11-06 17:20:58 +0800 | [diff] [blame] | 2682 | } |
| 2683 | |
| 2684 | void raid56_parity_submit_scrub_rbio(struct btrfs_raid_bio *rbio) |
| 2685 | { |
| 2686 | if (!lock_stripe_add(rbio)) |
| 2687 | async_scrub_parity(rbio); |
| 2688 | } |
Omar Sandoval | b4ee178 | 2015-06-19 11:52:50 -0700 | [diff] [blame] | 2689 | |
| 2690 | /* The following code is used for dev replace of a missing RAID 5/6 device. */ |
| 2691 | |
| 2692 | struct btrfs_raid_bio * |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2693 | raid56_alloc_missing_rbio(struct btrfs_fs_info *fs_info, struct bio *bio, |
Omar Sandoval | b4ee178 | 2015-06-19 11:52:50 -0700 | [diff] [blame] | 2694 | struct btrfs_bio *bbio, u64 length) |
| 2695 | { |
| 2696 | struct btrfs_raid_bio *rbio; |
| 2697 | |
Jeff Mahoney | 2ff7e61 | 2016-06-22 18:54:24 -0400 | [diff] [blame] | 2698 | rbio = alloc_rbio(fs_info, bbio, length); |
Omar Sandoval | b4ee178 | 2015-06-19 11:52:50 -0700 | [diff] [blame] | 2699 | if (IS_ERR(rbio)) |
| 2700 | return NULL; |
| 2701 | |
| 2702 | rbio->operation = BTRFS_RBIO_REBUILD_MISSING; |
| 2703 | bio_list_add(&rbio->bio_list, bio); |
| 2704 | /* |
| 2705 | * This is a special bio which is used to hold the completion handler |
| 2706 | * and make the scrub rbio is similar to the other types |
| 2707 | */ |
| 2708 | ASSERT(!bio->bi_iter.bi_size); |
| 2709 | |
| 2710 | rbio->faila = find_logical_bio_stripe(rbio, bio); |
| 2711 | if (rbio->faila == -1) { |
| 2712 | BUG(); |
| 2713 | kfree(rbio); |
| 2714 | return NULL; |
| 2715 | } |
| 2716 | |
Qu Wenruo | ae6529c | 2017-03-29 09:33:21 +0800 | [diff] [blame] | 2717 | /* |
| 2718 | * When we get bbio, we have already increased bio_counter, record it |
| 2719 | * so we can free it at rbio_orig_end_io() |
| 2720 | */ |
| 2721 | rbio->generic_bio_cnt = 1; |
| 2722 | |
Omar Sandoval | b4ee178 | 2015-06-19 11:52:50 -0700 | [diff] [blame] | 2723 | return rbio; |
| 2724 | } |
| 2725 | |
| 2726 | static void missing_raid56_work(struct btrfs_work *work) |
| 2727 | { |
| 2728 | struct btrfs_raid_bio *rbio; |
| 2729 | |
| 2730 | rbio = container_of(work, struct btrfs_raid_bio, work); |
| 2731 | __raid56_parity_recover(rbio); |
| 2732 | } |
| 2733 | |
| 2734 | static void async_missing_raid56(struct btrfs_raid_bio *rbio) |
| 2735 | { |
| 2736 | btrfs_init_work(&rbio->work, btrfs_rmw_helper, |
| 2737 | missing_raid56_work, NULL, NULL); |
| 2738 | |
| 2739 | btrfs_queue_work(rbio->fs_info->rmw_workers, &rbio->work); |
| 2740 | } |
| 2741 | |
| 2742 | void raid56_submit_missing_rbio(struct btrfs_raid_bio *rbio) |
| 2743 | { |
| 2744 | if (!lock_stripe_add(rbio)) |
| 2745 | async_missing_raid56(rbio); |
| 2746 | } |