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