1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
48#define RBIO_RMW_LOCKED_BIT 1
49
50
51
52
53
54#define RBIO_CACHE_BIT 2
55
56
57
58
59#define RBIO_CACHE_READY_BIT 3
60
61#define RBIO_CACHE_SIZE 1024
62
63enum btrfs_rbio_ops {
64 BTRFS_RBIO_WRITE,
65 BTRFS_RBIO_READ_REBUILD,
66 BTRFS_RBIO_PARITY_SCRUB,
67 BTRFS_RBIO_REBUILD_MISSING,
68};
69
70struct btrfs_raid_bio {
71 struct btrfs_fs_info *fs_info;
72 struct btrfs_bio *bbio;
73
74
75
76
77
78
79 struct list_head hash_list;
80
81
82
83
84 struct list_head stripe_cache;
85
86
87
88
89 struct btrfs_work work;
90
91
92
93
94
95
96 struct bio_list bio_list;
97 spinlock_t bio_list_lock;
98
99
100
101
102
103
104
105 struct list_head plug_list;
106
107
108
109
110
111 unsigned long flags;
112
113
114 int stripe_len;
115
116
117 int nr_data;
118
119 int real_stripes;
120
121 int stripe_npages;
122
123
124
125
126
127
128 enum btrfs_rbio_ops operation;
129
130
131 int faila;
132
133
134 int failb;
135
136 int scrubp;
137
138
139
140
141 int nr_pages;
142
143
144
145
146
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
159
160
161
162
163
164
165
166 struct page **stripe_pages;
167
168
169
170
171
172 struct page **bio_pages;
173
174
175
176
177 unsigned long *dbitmap;
178};
179
180static int __raid56_parity_recover(struct btrfs_raid_bio *rbio);
181static noinline void finish_rmw(struct btrfs_raid_bio *rbio);
182static void rmw_work(struct btrfs_work *work);
183static void read_rebuild_work(struct btrfs_work *work);
184static void async_rmw_stripe(struct btrfs_raid_bio *rbio);
185static void async_read_rebuild(struct btrfs_raid_bio *rbio);
186static int fail_bio_stripe(struct btrfs_raid_bio *rbio, struct bio *bio);
187static int fail_rbio_index(struct btrfs_raid_bio *rbio, int failed);
188static void __free_raid_bio(struct btrfs_raid_bio *rbio);
189static void index_rbio_pages(struct btrfs_raid_bio *rbio);
190static int alloc_rbio_pages(struct btrfs_raid_bio *rbio);
191
192static noinline void finish_parity_scrub(struct btrfs_raid_bio *rbio,
193 int need_check);
194static void async_scrub_parity(struct btrfs_raid_bio *rbio);
195
196
197
198
199
200int 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
215
216
217
218
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
245
246
247
248
249
250
251
252static 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
281
282static int rbio_bucket(struct btrfs_raid_bio *rbio)
283{
284 u64 num = rbio->bbio->raid_map[0];
285
286
287
288
289
290
291
292
293
294 return hash_64(num >> 16, BTRFS_STRIPE_HASH_TABLE_BITS);
295}
296
297
298
299
300
301static 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
327
328
329
330
331
332static 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 dest->generic_bio_cnt += victim->generic_bio_cnt;
338 bio_list_init(&victim->bio_list);
339}
340
341
342
343
344
345static void __remove_rbio_from_cache(struct btrfs_raid_bio *rbio)
346{
347 int bucket = rbio_bucket(rbio);
348 struct btrfs_stripe_hash_table *table;
349 struct btrfs_stripe_hash *h;
350 int freeit = 0;
351
352
353
354
355 if (!test_bit(RBIO_CACHE_BIT, &rbio->flags))
356 return;
357
358 table = rbio->fs_info->stripe_hash_table;
359 h = table->table + bucket;
360
361
362
363
364 spin_lock(&h->lock);
365
366
367
368
369
370 spin_lock(&rbio->bio_list_lock);
371
372 if (test_and_clear_bit(RBIO_CACHE_BIT, &rbio->flags)) {
373 list_del_init(&rbio->stripe_cache);
374 table->cache_size -= 1;
375 freeit = 1;
376
377
378
379
380
381
382
383
384
385
386 if (bio_list_empty(&rbio->bio_list)) {
387 if (!list_empty(&rbio->hash_list)) {
388 list_del_init(&rbio->hash_list);
389 refcount_dec(&rbio->refs);
390 BUG_ON(!list_empty(&rbio->plug_list));
391 }
392 }
393 }
394
395 spin_unlock(&rbio->bio_list_lock);
396 spin_unlock(&h->lock);
397
398 if (freeit)
399 __free_raid_bio(rbio);
400}
401
402
403
404
405static void remove_rbio_from_cache(struct btrfs_raid_bio *rbio)
406{
407 struct btrfs_stripe_hash_table *table;
408 unsigned long flags;
409
410 if (!test_bit(RBIO_CACHE_BIT, &rbio->flags))
411 return;
412
413 table = rbio->fs_info->stripe_hash_table;
414
415 spin_lock_irqsave(&table->cache_lock, flags);
416 __remove_rbio_from_cache(rbio);
417 spin_unlock_irqrestore(&table->cache_lock, flags);
418}
419
420
421
422
423static void btrfs_clear_rbio_cache(struct btrfs_fs_info *info)
424{
425 struct btrfs_stripe_hash_table *table;
426 unsigned long flags;
427 struct btrfs_raid_bio *rbio;
428
429 table = info->stripe_hash_table;
430
431 spin_lock_irqsave(&table->cache_lock, flags);
432 while (!list_empty(&table->stripe_cache)) {
433 rbio = list_entry(table->stripe_cache.next,
434 struct btrfs_raid_bio,
435 stripe_cache);
436 __remove_rbio_from_cache(rbio);
437 }
438 spin_unlock_irqrestore(&table->cache_lock, flags);
439}
440
441
442
443
444
445void btrfs_free_stripe_hash_table(struct btrfs_fs_info *info)
446{
447 if (!info->stripe_hash_table)
448 return;
449 btrfs_clear_rbio_cache(info);
450 kvfree(info->stripe_hash_table);
451 info->stripe_hash_table = NULL;
452}
453
454
455
456
457
458
459
460
461
462
463
464
465static void cache_rbio(struct btrfs_raid_bio *rbio)
466{
467 struct btrfs_stripe_hash_table *table;
468 unsigned long flags;
469
470 if (!test_bit(RBIO_CACHE_READY_BIT, &rbio->flags))
471 return;
472
473 table = rbio->fs_info->stripe_hash_table;
474
475 spin_lock_irqsave(&table->cache_lock, flags);
476 spin_lock(&rbio->bio_list_lock);
477
478
479 if (!test_and_set_bit(RBIO_CACHE_BIT, &rbio->flags))
480 refcount_inc(&rbio->refs);
481
482 if (!list_empty(&rbio->stripe_cache)){
483 list_move(&rbio->stripe_cache, &table->stripe_cache);
484 } else {
485 list_add(&rbio->stripe_cache, &table->stripe_cache);
486 table->cache_size += 1;
487 }
488
489 spin_unlock(&rbio->bio_list_lock);
490
491 if (table->cache_size > RBIO_CACHE_SIZE) {
492 struct btrfs_raid_bio *found;
493
494 found = list_entry(table->stripe_cache.prev,
495 struct btrfs_raid_bio,
496 stripe_cache);
497
498 if (found != rbio)
499 __remove_rbio_from_cache(found);
500 }
501
502 spin_unlock_irqrestore(&table->cache_lock, flags);
503}
504
505
506
507
508
509
510static void run_xor(void **pages, int src_cnt, ssize_t len)
511{
512 int src_off = 0;
513 int xor_src_cnt = 0;
514 void *dest = pages[src_cnt];
515
516 while(src_cnt > 0) {
517 xor_src_cnt = min(src_cnt, MAX_XOR_BLOCKS);
518 xor_blocks(xor_src_cnt, len, dest, pages + src_off);
519
520 src_cnt -= xor_src_cnt;
521 src_off += xor_src_cnt;
522 }
523}
524
525
526
527
528
529
530
531
532static int __rbio_is_full(struct btrfs_raid_bio *rbio)
533{
534 unsigned long size = rbio->bio_list_bytes;
535 int ret = 1;
536
537 if (size != rbio->nr_data * rbio->stripe_len)
538 ret = 0;
539
540 BUG_ON(size > rbio->nr_data * rbio->stripe_len);
541 return ret;
542}
543
544static int rbio_is_full(struct btrfs_raid_bio *rbio)
545{
546 unsigned long flags;
547 int ret;
548
549 spin_lock_irqsave(&rbio->bio_list_lock, flags);
550 ret = __rbio_is_full(rbio);
551 spin_unlock_irqrestore(&rbio->bio_list_lock, flags);
552 return ret;
553}
554
555
556
557
558
559
560
561
562
563
564
565static int rbio_can_merge(struct btrfs_raid_bio *last,
566 struct btrfs_raid_bio *cur)
567{
568 if (test_bit(RBIO_RMW_LOCKED_BIT, &last->flags) ||
569 test_bit(RBIO_RMW_LOCKED_BIT, &cur->flags))
570 return 0;
571
572
573
574
575
576
577
578
579 if (test_bit(RBIO_CACHE_BIT, &last->flags) ||
580 test_bit(RBIO_CACHE_BIT, &cur->flags))
581 return 0;
582
583 if (last->bbio->raid_map[0] !=
584 cur->bbio->raid_map[0])
585 return 0;
586
587
588 if (last->operation != cur->operation)
589 return 0;
590
591
592
593
594
595
596
597
598 if (last->operation == BTRFS_RBIO_PARITY_SCRUB ||
599 cur->operation == BTRFS_RBIO_PARITY_SCRUB)
600 return 0;
601
602 if (last->operation == BTRFS_RBIO_REBUILD_MISSING ||
603 cur->operation == BTRFS_RBIO_REBUILD_MISSING)
604 return 0;
605
606 return 1;
607}
608
609static int rbio_stripe_page_index(struct btrfs_raid_bio *rbio, int stripe,
610 int index)
611{
612 return stripe * rbio->stripe_npages + index;
613}
614
615
616
617
618
619static struct page *rbio_stripe_page(struct btrfs_raid_bio *rbio, int stripe,
620 int index)
621{
622 return rbio->stripe_pages[rbio_stripe_page_index(rbio, stripe, index)];
623}
624
625
626
627
628static struct page *rbio_pstripe_page(struct btrfs_raid_bio *rbio, int index)
629{
630 return rbio_stripe_page(rbio, rbio->nr_data, index);
631}
632
633
634
635
636
637static struct page *rbio_qstripe_page(struct btrfs_raid_bio *rbio, int index)
638{
639 if (rbio->nr_data + 1 == rbio->real_stripes)
640 return NULL;
641 return rbio_stripe_page(rbio, rbio->nr_data + 1, index);
642}
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666static noinline int lock_stripe_add(struct btrfs_raid_bio *rbio)
667{
668 int bucket = rbio_bucket(rbio);
669 struct btrfs_stripe_hash *h = rbio->fs_info->stripe_hash_table->table + bucket;
670 struct btrfs_raid_bio *cur;
671 struct btrfs_raid_bio *pending;
672 unsigned long flags;
673 DEFINE_WAIT(wait);
674 struct btrfs_raid_bio *freeit = NULL;
675 struct btrfs_raid_bio *cache_drop = NULL;
676 int ret = 0;
677
678 spin_lock_irqsave(&h->lock, flags);
679 list_for_each_entry(cur, &h->hash_list, hash_list) {
680 if (cur->bbio->raid_map[0] == rbio->bbio->raid_map[0]) {
681 spin_lock(&cur->bio_list_lock);
682
683
684 if (bio_list_empty(&cur->bio_list) &&
685 list_empty(&cur->plug_list) &&
686 test_bit(RBIO_CACHE_BIT, &cur->flags) &&
687 !test_bit(RBIO_RMW_LOCKED_BIT, &cur->flags)) {
688 list_del_init(&cur->hash_list);
689 refcount_dec(&cur->refs);
690
691 steal_rbio(cur, rbio);
692 cache_drop = cur;
693 spin_unlock(&cur->bio_list_lock);
694
695 goto lockit;
696 }
697
698
699 if (rbio_can_merge(cur, rbio)) {
700 merge_rbio(cur, rbio);
701 spin_unlock(&cur->bio_list_lock);
702 freeit = rbio;
703 ret = 1;
704 goto out;
705 }
706
707
708
709
710
711
712
713
714
715
716 list_for_each_entry(pending, &cur->plug_list,
717 plug_list) {
718 if (rbio_can_merge(pending, rbio)) {
719 merge_rbio(pending, rbio);
720 spin_unlock(&cur->bio_list_lock);
721 freeit = rbio;
722 ret = 1;
723 goto out;
724 }
725 }
726
727
728
729
730
731 list_add_tail(&rbio->plug_list, &cur->plug_list);
732 spin_unlock(&cur->bio_list_lock);
733 ret = 1;
734 goto out;
735 }
736 }
737lockit:
738 refcount_inc(&rbio->refs);
739 list_add(&rbio->hash_list, &h->hash_list);
740out:
741 spin_unlock_irqrestore(&h->lock, flags);
742 if (cache_drop)
743 remove_rbio_from_cache(cache_drop);
744 if (freeit)
745 __free_raid_bio(freeit);
746 return ret;
747}
748
749
750
751
752
753static noinline void unlock_stripe(struct btrfs_raid_bio *rbio)
754{
755 int bucket;
756 struct btrfs_stripe_hash *h;
757 unsigned long flags;
758 int keep_cache = 0;
759
760 bucket = rbio_bucket(rbio);
761 h = rbio->fs_info->stripe_hash_table->table + bucket;
762
763 if (list_empty(&rbio->plug_list))
764 cache_rbio(rbio);
765
766 spin_lock_irqsave(&h->lock, flags);
767 spin_lock(&rbio->bio_list_lock);
768
769 if (!list_empty(&rbio->hash_list)) {
770
771
772
773
774
775 if (list_empty(&rbio->plug_list) &&
776 test_bit(RBIO_CACHE_BIT, &rbio->flags)) {
777 keep_cache = 1;
778 clear_bit(RBIO_RMW_LOCKED_BIT, &rbio->flags);
779 BUG_ON(!bio_list_empty(&rbio->bio_list));
780 goto done;
781 }
782
783 list_del_init(&rbio->hash_list);
784 refcount_dec(&rbio->refs);
785
786
787
788
789
790
791 if (!list_empty(&rbio->plug_list)) {
792 struct btrfs_raid_bio *next;
793 struct list_head *head = rbio->plug_list.next;
794
795 next = list_entry(head, struct btrfs_raid_bio,
796 plug_list);
797
798 list_del_init(&rbio->plug_list);
799
800 list_add(&next->hash_list, &h->hash_list);
801 refcount_inc(&next->refs);
802 spin_unlock(&rbio->bio_list_lock);
803 spin_unlock_irqrestore(&h->lock, flags);
804
805 if (next->operation == BTRFS_RBIO_READ_REBUILD)
806 async_read_rebuild(next);
807 else if (next->operation == BTRFS_RBIO_REBUILD_MISSING) {
808 steal_rbio(rbio, next);
809 async_read_rebuild(next);
810 } else if (next->operation == BTRFS_RBIO_WRITE) {
811 steal_rbio(rbio, next);
812 async_rmw_stripe(next);
813 } else if (next->operation == BTRFS_RBIO_PARITY_SCRUB) {
814 steal_rbio(rbio, next);
815 async_scrub_parity(next);
816 }
817
818 goto done_nolock;
819
820
821
822
823 } else if (waitqueue_active(&h->wait)) {
824 spin_unlock(&rbio->bio_list_lock);
825 spin_unlock_irqrestore(&h->lock, flags);
826 wake_up(&h->wait);
827 goto done_nolock;
828 }
829 }
830done:
831 spin_unlock(&rbio->bio_list_lock);
832 spin_unlock_irqrestore(&h->lock, flags);
833
834done_nolock:
835 if (!keep_cache)
836 remove_rbio_from_cache(rbio);
837}
838
839static void __free_raid_bio(struct btrfs_raid_bio *rbio)
840{
841 int i;
842
843 if (!refcount_dec_and_test(&rbio->refs))
844 return;
845
846 WARN_ON(!list_empty(&rbio->stripe_cache));
847 WARN_ON(!list_empty(&rbio->hash_list));
848 WARN_ON(!bio_list_empty(&rbio->bio_list));
849
850 for (i = 0; i < rbio->nr_pages; i++) {
851 if (rbio->stripe_pages[i]) {
852 __free_page(rbio->stripe_pages[i]);
853 rbio->stripe_pages[i] = NULL;
854 }
855 }
856
857 btrfs_put_bbio(rbio->bbio);
858 kfree(rbio);
859}
860
861static void free_raid_bio(struct btrfs_raid_bio *rbio)
862{
863 unlock_stripe(rbio);
864 __free_raid_bio(rbio);
865}
866
867
868
869
870
871static void rbio_orig_end_io(struct btrfs_raid_bio *rbio, blk_status_t err)
872{
873 struct bio *cur = bio_list_get(&rbio->bio_list);
874 struct bio *next;
875
876 if (rbio->generic_bio_cnt)
877 btrfs_bio_counter_sub(rbio->fs_info, rbio->generic_bio_cnt);
878
879 free_raid_bio(rbio);
880
881 while (cur) {
882 next = cur->bi_next;
883 cur->bi_next = NULL;
884 cur->bi_status = err;
885 bio_endio(cur);
886 cur = next;
887 }
888}
889
890
891
892
893
894static void raid_write_end_io(struct bio *bio)
895{
896 struct btrfs_raid_bio *rbio = bio->bi_private;
897 blk_status_t err = bio->bi_status;
898 int max_errors;
899
900 if (err)
901 fail_bio_stripe(rbio, bio);
902
903 bio_put(bio);
904
905 if (!atomic_dec_and_test(&rbio->stripes_pending))
906 return;
907
908 err = BLK_STS_OK;
909
910
911 max_errors = (rbio->operation == BTRFS_RBIO_PARITY_SCRUB) ?
912 0 : rbio->bbio->max_errors;
913 if (atomic_read(&rbio->error) > max_errors)
914 err = BLK_STS_IOERR;
915
916 rbio_orig_end_io(rbio, err);
917}
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935static struct page *page_in_rbio(struct btrfs_raid_bio *rbio,
936 int index, int pagenr, int bio_list_only)
937{
938 int chunk_page;
939 struct page *p = NULL;
940
941 chunk_page = index * (rbio->stripe_len >> PAGE_SHIFT) + pagenr;
942
943 spin_lock_irq(&rbio->bio_list_lock);
944 p = rbio->bio_pages[chunk_page];
945 spin_unlock_irq(&rbio->bio_list_lock);
946
947 if (p || bio_list_only)
948 return p;
949
950 return rbio->stripe_pages[chunk_page];
951}
952
953
954
955
956
957static unsigned long rbio_nr_pages(unsigned long stripe_len, int nr_stripes)
958{
959 return DIV_ROUND_UP(stripe_len, PAGE_SIZE) * nr_stripes;
960}
961
962
963
964
965
966static struct btrfs_raid_bio *alloc_rbio(struct btrfs_fs_info *fs_info,
967 struct btrfs_bio *bbio,
968 u64 stripe_len)
969{
970 struct btrfs_raid_bio *rbio;
971 int nr_data = 0;
972 int real_stripes = bbio->num_stripes - bbio->num_tgtdevs;
973 int num_pages = rbio_nr_pages(stripe_len, real_stripes);
974 int stripe_npages = DIV_ROUND_UP(stripe_len, PAGE_SIZE);
975 void *p;
976
977 rbio = kzalloc(sizeof(*rbio) + num_pages * sizeof(struct page *) * 2 +
978 DIV_ROUND_UP(stripe_npages, BITS_PER_LONG) *
979 sizeof(long), GFP_NOFS);
980 if (!rbio)
981 return ERR_PTR(-ENOMEM);
982
983 bio_list_init(&rbio->bio_list);
984 INIT_LIST_HEAD(&rbio->plug_list);
985 spin_lock_init(&rbio->bio_list_lock);
986 INIT_LIST_HEAD(&rbio->stripe_cache);
987 INIT_LIST_HEAD(&rbio->hash_list);
988 rbio->bbio = bbio;
989 rbio->fs_info = fs_info;
990 rbio->stripe_len = stripe_len;
991 rbio->nr_pages = num_pages;
992 rbio->real_stripes = real_stripes;
993 rbio->stripe_npages = stripe_npages;
994 rbio->faila = -1;
995 rbio->failb = -1;
996 refcount_set(&rbio->refs, 1);
997 atomic_set(&rbio->error, 0);
998 atomic_set(&rbio->stripes_pending, 0);
999
1000
1001
1002
1003
1004 p = rbio + 1;
1005 rbio->stripe_pages = p;
1006 rbio->bio_pages = p + sizeof(struct page *) * num_pages;
1007 rbio->dbitmap = p + sizeof(struct page *) * num_pages * 2;
1008
1009 if (bbio->map_type & BTRFS_BLOCK_GROUP_RAID5)
1010 nr_data = real_stripes - 1;
1011 else if (bbio->map_type & BTRFS_BLOCK_GROUP_RAID6)
1012 nr_data = real_stripes - 2;
1013 else
1014 BUG();
1015
1016 rbio->nr_data = nr_data;
1017 return rbio;
1018}
1019
1020
1021static int alloc_rbio_pages(struct btrfs_raid_bio *rbio)
1022{
1023 int i;
1024 struct page *page;
1025
1026 for (i = 0; i < rbio->nr_pages; i++) {
1027 if (rbio->stripe_pages[i])
1028 continue;
1029 page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
1030 if (!page)
1031 return -ENOMEM;
1032 rbio->stripe_pages[i] = page;
1033 }
1034 return 0;
1035}
1036
1037
1038static int alloc_rbio_parity_pages(struct btrfs_raid_bio *rbio)
1039{
1040 int i;
1041 struct page *page;
1042
1043 i = rbio_stripe_page_index(rbio, rbio->nr_data, 0);
1044
1045 for (; i < rbio->nr_pages; i++) {
1046 if (rbio->stripe_pages[i])
1047 continue;
1048 page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
1049 if (!page)
1050 return -ENOMEM;
1051 rbio->stripe_pages[i] = page;
1052 }
1053 return 0;
1054}
1055
1056
1057
1058
1059
1060
1061static int rbio_add_io_page(struct btrfs_raid_bio *rbio,
1062 struct bio_list *bio_list,
1063 struct page *page,
1064 int stripe_nr,
1065 unsigned long page_index,
1066 unsigned long bio_max_len)
1067{
1068 struct bio *last = bio_list->tail;
1069 u64 last_end = 0;
1070 int ret;
1071 struct bio *bio;
1072 struct btrfs_bio_stripe *stripe;
1073 u64 disk_start;
1074
1075 stripe = &rbio->bbio->stripes[stripe_nr];
1076 disk_start = stripe->physical + (page_index << PAGE_SHIFT);
1077
1078
1079 if (!stripe->dev->bdev)
1080 return fail_rbio_index(rbio, stripe_nr);
1081
1082
1083 if (last) {
1084 last_end = (u64)last->bi_iter.bi_sector << 9;
1085 last_end += last->bi_iter.bi_size;
1086
1087
1088
1089
1090
1091 if (last_end == disk_start && stripe->dev->bdev &&
1092 !last->bi_status &&
1093 last->bi_disk == stripe->dev->bdev->bd_disk &&
1094 last->bi_partno == stripe->dev->bdev->bd_partno) {
1095 ret = bio_add_page(last, page, PAGE_SIZE, 0);
1096 if (ret == PAGE_SIZE)
1097 return 0;
1098 }
1099 }
1100
1101
1102 bio = btrfs_io_bio_alloc(bio_max_len >> PAGE_SHIFT ?: 1);
1103 bio->bi_iter.bi_size = 0;
1104 bio_set_dev(bio, stripe->dev->bdev);
1105 bio->bi_iter.bi_sector = disk_start >> 9;
1106
1107 bio_add_page(bio, page, PAGE_SIZE, 0);
1108 bio_list_add(bio_list, bio);
1109 return 0;
1110}
1111
1112
1113
1114
1115
1116
1117
1118
1119static void validate_rbio_for_rmw(struct btrfs_raid_bio *rbio)
1120{
1121 if (rbio->faila >= 0 || rbio->failb >= 0) {
1122 BUG_ON(rbio->faila == rbio->real_stripes - 1);
1123 __raid56_parity_recover(rbio);
1124 } else {
1125 finish_rmw(rbio);
1126 }
1127}
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137static void index_rbio_pages(struct btrfs_raid_bio *rbio)
1138{
1139 struct bio *bio;
1140 u64 start;
1141 unsigned long stripe_offset;
1142 unsigned long page_index;
1143
1144 spin_lock_irq(&rbio->bio_list_lock);
1145 bio_list_for_each(bio, &rbio->bio_list) {
1146 struct bio_vec bvec;
1147 struct bvec_iter iter;
1148 int i = 0;
1149
1150 start = (u64)bio->bi_iter.bi_sector << 9;
1151 stripe_offset = start - rbio->bbio->raid_map[0];
1152 page_index = stripe_offset >> PAGE_SHIFT;
1153
1154 if (bio_flagged(bio, BIO_CLONED))
1155 bio->bi_iter = btrfs_io_bio(bio)->iter;
1156
1157 bio_for_each_segment(bvec, bio, iter) {
1158 rbio->bio_pages[page_index + i] = bvec.bv_page;
1159 i++;
1160 }
1161 }
1162 spin_unlock_irq(&rbio->bio_list_lock);
1163}
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173static noinline void finish_rmw(struct btrfs_raid_bio *rbio)
1174{
1175 struct btrfs_bio *bbio = rbio->bbio;
1176 void *pointers[rbio->real_stripes];
1177 int nr_data = rbio->nr_data;
1178 int stripe;
1179 int pagenr;
1180 int p_stripe = -1;
1181 int q_stripe = -1;
1182 struct bio_list bio_list;
1183 struct bio *bio;
1184 int ret;
1185
1186 bio_list_init(&bio_list);
1187
1188 if (rbio->real_stripes - rbio->nr_data == 1) {
1189 p_stripe = rbio->real_stripes - 1;
1190 } else if (rbio->real_stripes - rbio->nr_data == 2) {
1191 p_stripe = rbio->real_stripes - 2;
1192 q_stripe = rbio->real_stripes - 1;
1193 } else {
1194 BUG();
1195 }
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205 spin_lock_irq(&rbio->bio_list_lock);
1206 set_bit(RBIO_RMW_LOCKED_BIT, &rbio->flags);
1207 spin_unlock_irq(&rbio->bio_list_lock);
1208
1209 atomic_set(&rbio->error, 0);
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220 index_rbio_pages(rbio);
1221 if (!rbio_is_full(rbio))
1222 cache_rbio_pages(rbio);
1223 else
1224 clear_bit(RBIO_CACHE_READY_BIT, &rbio->flags);
1225
1226 for (pagenr = 0; pagenr < rbio->stripe_npages; pagenr++) {
1227 struct page *p;
1228
1229 for (stripe = 0; stripe < nr_data; stripe++) {
1230 p = page_in_rbio(rbio, stripe, pagenr, 0);
1231 pointers[stripe] = kmap(p);
1232 }
1233
1234
1235 p = rbio_pstripe_page(rbio, pagenr);
1236 SetPageUptodate(p);
1237 pointers[stripe++] = kmap(p);
1238
1239 if (q_stripe != -1) {
1240
1241
1242
1243
1244
1245 p = rbio_qstripe_page(rbio, pagenr);
1246 SetPageUptodate(p);
1247 pointers[stripe++] = kmap(p);
1248
1249 raid6_call.gen_syndrome(rbio->real_stripes, PAGE_SIZE,
1250 pointers);
1251 } else {
1252
1253 memcpy(pointers[nr_data], pointers[0], PAGE_SIZE);
1254 run_xor(pointers + 1, nr_data - 1, PAGE_SIZE);
1255 }
1256
1257
1258 for (stripe = 0; stripe < rbio->real_stripes; stripe++)
1259 kunmap(page_in_rbio(rbio, stripe, pagenr, 0));
1260 }
1261
1262
1263
1264
1265
1266
1267 for (stripe = 0; stripe < rbio->real_stripes; stripe++) {
1268 for (pagenr = 0; pagenr < rbio->stripe_npages; pagenr++) {
1269 struct page *page;
1270 if (stripe < rbio->nr_data) {
1271 page = page_in_rbio(rbio, stripe, pagenr, 1);
1272 if (!page)
1273 continue;
1274 } else {
1275 page = rbio_stripe_page(rbio, stripe, pagenr);
1276 }
1277
1278 ret = rbio_add_io_page(rbio, &bio_list,
1279 page, stripe, pagenr, rbio->stripe_len);
1280 if (ret)
1281 goto cleanup;
1282 }
1283 }
1284
1285 if (likely(!bbio->num_tgtdevs))
1286 goto write_data;
1287
1288 for (stripe = 0; stripe < rbio->real_stripes; stripe++) {
1289 if (!bbio->tgtdev_map[stripe])
1290 continue;
1291
1292 for (pagenr = 0; pagenr < rbio->stripe_npages; pagenr++) {
1293 struct page *page;
1294 if (stripe < rbio->nr_data) {
1295 page = page_in_rbio(rbio, stripe, pagenr, 1);
1296 if (!page)
1297 continue;
1298 } else {
1299 page = rbio_stripe_page(rbio, stripe, pagenr);
1300 }
1301
1302 ret = rbio_add_io_page(rbio, &bio_list, page,
1303 rbio->bbio->tgtdev_map[stripe],
1304 pagenr, rbio->stripe_len);
1305 if (ret)
1306 goto cleanup;
1307 }
1308 }
1309
1310write_data:
1311 atomic_set(&rbio->stripes_pending, bio_list_size(&bio_list));
1312 BUG_ON(atomic_read(&rbio->stripes_pending) == 0);
1313
1314 while (1) {
1315 bio = bio_list_pop(&bio_list);
1316 if (!bio)
1317 break;
1318
1319 bio->bi_private = rbio;
1320 bio->bi_end_io = raid_write_end_io;
1321 bio_set_op_attrs(bio, REQ_OP_WRITE, 0);
1322
1323 submit_bio(bio);
1324 }
1325 return;
1326
1327cleanup:
1328 rbio_orig_end_io(rbio, BLK_STS_IOERR);
1329
1330 while ((bio = bio_list_pop(&bio_list)))
1331 bio_put(bio);
1332}
1333
1334
1335
1336
1337
1338
1339static int find_bio_stripe(struct btrfs_raid_bio *rbio,
1340 struct bio *bio)
1341{
1342 u64 physical = bio->bi_iter.bi_sector;
1343 u64 stripe_start;
1344 int i;
1345 struct btrfs_bio_stripe *stripe;
1346
1347 physical <<= 9;
1348
1349 for (i = 0; i < rbio->bbio->num_stripes; i++) {
1350 stripe = &rbio->bbio->stripes[i];
1351 stripe_start = stripe->physical;
1352 if (physical >= stripe_start &&
1353 physical < stripe_start + rbio->stripe_len &&
1354 bio->bi_disk == stripe->dev->bdev->bd_disk &&
1355 bio->bi_partno == stripe->dev->bdev->bd_partno) {
1356 return i;
1357 }
1358 }
1359 return -1;
1360}
1361
1362
1363
1364
1365
1366
1367static int find_logical_bio_stripe(struct btrfs_raid_bio *rbio,
1368 struct bio *bio)
1369{
1370 u64 logical = bio->bi_iter.bi_sector;
1371 u64 stripe_start;
1372 int i;
1373
1374 logical <<= 9;
1375
1376 for (i = 0; i < rbio->nr_data; i++) {
1377 stripe_start = rbio->bbio->raid_map[i];
1378 if (logical >= stripe_start &&
1379 logical < stripe_start + rbio->stripe_len) {
1380 return i;
1381 }
1382 }
1383 return -1;
1384}
1385
1386
1387
1388
1389static int fail_rbio_index(struct btrfs_raid_bio *rbio, int failed)
1390{
1391 unsigned long flags;
1392 int ret = 0;
1393
1394 spin_lock_irqsave(&rbio->bio_list_lock, flags);
1395
1396
1397 if (rbio->faila == failed || rbio->failb == failed)
1398 goto out;
1399
1400 if (rbio->faila == -1) {
1401
1402 rbio->faila = failed;
1403 atomic_inc(&rbio->error);
1404 } else if (rbio->failb == -1) {
1405
1406 rbio->failb = failed;
1407 atomic_inc(&rbio->error);
1408 } else {
1409 ret = -EIO;
1410 }
1411out:
1412 spin_unlock_irqrestore(&rbio->bio_list_lock, flags);
1413
1414 return ret;
1415}
1416
1417
1418
1419
1420
1421static int fail_bio_stripe(struct btrfs_raid_bio *rbio,
1422 struct bio *bio)
1423{
1424 int failed = find_bio_stripe(rbio, bio);
1425
1426 if (failed < 0)
1427 return -EIO;
1428
1429 return fail_rbio_index(rbio, failed);
1430}
1431
1432
1433
1434
1435
1436static void set_bio_pages_uptodate(struct bio *bio)
1437{
1438 struct bio_vec bvec;
1439 struct bvec_iter iter;
1440
1441 if (bio_flagged(bio, BIO_CLONED))
1442 bio->bi_iter = btrfs_io_bio(bio)->iter;
1443
1444 bio_for_each_segment(bvec, bio, iter)
1445 SetPageUptodate(bvec.bv_page);
1446}
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456static void raid_rmw_end_io(struct bio *bio)
1457{
1458 struct btrfs_raid_bio *rbio = bio->bi_private;
1459
1460 if (bio->bi_status)
1461 fail_bio_stripe(rbio, bio);
1462 else
1463 set_bio_pages_uptodate(bio);
1464
1465 bio_put(bio);
1466
1467 if (!atomic_dec_and_test(&rbio->stripes_pending))
1468 return;
1469
1470 if (atomic_read(&rbio->error) > rbio->bbio->max_errors)
1471 goto cleanup;
1472
1473
1474
1475
1476
1477
1478 validate_rbio_for_rmw(rbio);
1479 return;
1480
1481cleanup:
1482
1483 rbio_orig_end_io(rbio, BLK_STS_IOERR);
1484}
1485
1486static void async_rmw_stripe(struct btrfs_raid_bio *rbio)
1487{
1488 btrfs_init_work(&rbio->work, btrfs_rmw_helper, rmw_work, NULL, NULL);
1489 btrfs_queue_work(rbio->fs_info->rmw_workers, &rbio->work);
1490}
1491
1492static void async_read_rebuild(struct btrfs_raid_bio *rbio)
1493{
1494 btrfs_init_work(&rbio->work, btrfs_rmw_helper,
1495 read_rebuild_work, NULL, NULL);
1496
1497 btrfs_queue_work(rbio->fs_info->rmw_workers, &rbio->work);
1498}
1499
1500
1501
1502
1503
1504static int raid56_rmw_stripe(struct btrfs_raid_bio *rbio)
1505{
1506 int bios_to_read = 0;
1507 struct bio_list bio_list;
1508 int ret;
1509 int pagenr;
1510 int stripe;
1511 struct bio *bio;
1512
1513 bio_list_init(&bio_list);
1514
1515 ret = alloc_rbio_pages(rbio);
1516 if (ret)
1517 goto cleanup;
1518
1519 index_rbio_pages(rbio);
1520
1521 atomic_set(&rbio->error, 0);
1522
1523
1524
1525
1526 for (stripe = 0; stripe < rbio->nr_data; stripe++) {
1527 for (pagenr = 0; pagenr < rbio->stripe_npages; pagenr++) {
1528 struct page *page;
1529
1530
1531
1532
1533
1534
1535 page = page_in_rbio(rbio, stripe, pagenr, 1);
1536 if (page)
1537 continue;
1538
1539 page = rbio_stripe_page(rbio, stripe, pagenr);
1540
1541
1542
1543
1544 if (PageUptodate(page))
1545 continue;
1546
1547 ret = rbio_add_io_page(rbio, &bio_list, page,
1548 stripe, pagenr, rbio->stripe_len);
1549 if (ret)
1550 goto cleanup;
1551 }
1552 }
1553
1554 bios_to_read = bio_list_size(&bio_list);
1555 if (!bios_to_read) {
1556
1557
1558
1559
1560
1561
1562 goto finish;
1563 }
1564
1565
1566
1567
1568
1569 atomic_set(&rbio->stripes_pending, bios_to_read);
1570 while (1) {
1571 bio = bio_list_pop(&bio_list);
1572 if (!bio)
1573 break;
1574
1575 bio->bi_private = rbio;
1576 bio->bi_end_io = raid_rmw_end_io;
1577 bio_set_op_attrs(bio, REQ_OP_READ, 0);
1578
1579 btrfs_bio_wq_end_io(rbio->fs_info, bio, BTRFS_WQ_ENDIO_RAID56);
1580
1581 submit_bio(bio);
1582 }
1583
1584 return 0;
1585
1586cleanup:
1587 rbio_orig_end_io(rbio, BLK_STS_IOERR);
1588
1589 while ((bio = bio_list_pop(&bio_list)))
1590 bio_put(bio);
1591
1592 return -EIO;
1593
1594finish:
1595 validate_rbio_for_rmw(rbio);
1596 return 0;
1597}
1598
1599
1600
1601
1602
1603static int full_stripe_write(struct btrfs_raid_bio *rbio)
1604{
1605 int ret;
1606
1607 ret = alloc_rbio_parity_pages(rbio);
1608 if (ret) {
1609 __free_raid_bio(rbio);
1610 return ret;
1611 }
1612
1613 ret = lock_stripe_add(rbio);
1614 if (ret == 0)
1615 finish_rmw(rbio);
1616 return 0;
1617}
1618
1619
1620
1621
1622
1623
1624static int partial_stripe_write(struct btrfs_raid_bio *rbio)
1625{
1626 int ret;
1627
1628 ret = lock_stripe_add(rbio);
1629 if (ret == 0)
1630 async_rmw_stripe(rbio);
1631 return 0;
1632}
1633
1634
1635
1636
1637
1638
1639
1640static int __raid56_parity_write(struct btrfs_raid_bio *rbio)
1641{
1642
1643 if (!rbio_is_full(rbio))
1644 return partial_stripe_write(rbio);
1645 return full_stripe_write(rbio);
1646}
1647
1648
1649
1650
1651
1652
1653
1654
1655struct btrfs_plug_cb {
1656 struct blk_plug_cb cb;
1657 struct btrfs_fs_info *info;
1658 struct list_head rbio_list;
1659 struct btrfs_work work;
1660};
1661
1662
1663
1664
1665static int plug_cmp(void *priv, struct list_head *a, struct list_head *b)
1666{
1667 struct btrfs_raid_bio *ra = container_of(a, struct btrfs_raid_bio,
1668 plug_list);
1669 struct btrfs_raid_bio *rb = container_of(b, struct btrfs_raid_bio,
1670 plug_list);
1671 u64 a_sector = ra->bio_list.head->bi_iter.bi_sector;
1672 u64 b_sector = rb->bio_list.head->bi_iter.bi_sector;
1673
1674 if (a_sector < b_sector)
1675 return -1;
1676 if (a_sector > b_sector)
1677 return 1;
1678 return 0;
1679}
1680
1681static void run_plug(struct btrfs_plug_cb *plug)
1682{
1683 struct btrfs_raid_bio *cur;
1684 struct btrfs_raid_bio *last = NULL;
1685
1686
1687
1688
1689
1690
1691 list_sort(NULL, &plug->rbio_list, plug_cmp);
1692 while (!list_empty(&plug->rbio_list)) {
1693 cur = list_entry(plug->rbio_list.next,
1694 struct btrfs_raid_bio, plug_list);
1695 list_del_init(&cur->plug_list);
1696
1697 if (rbio_is_full(cur)) {
1698
1699 full_stripe_write(cur);
1700 continue;
1701 }
1702 if (last) {
1703 if (rbio_can_merge(last, cur)) {
1704 merge_rbio(last, cur);
1705 __free_raid_bio(cur);
1706 continue;
1707
1708 }
1709 __raid56_parity_write(last);
1710 }
1711 last = cur;
1712 }
1713 if (last) {
1714 __raid56_parity_write(last);
1715 }
1716 kfree(plug);
1717}
1718
1719
1720
1721
1722
1723static void unplug_work(struct btrfs_work *work)
1724{
1725 struct btrfs_plug_cb *plug;
1726 plug = container_of(work, struct btrfs_plug_cb, work);
1727 run_plug(plug);
1728}
1729
1730static void btrfs_raid_unplug(struct blk_plug_cb *cb, bool from_schedule)
1731{
1732 struct btrfs_plug_cb *plug;
1733 plug = container_of(cb, struct btrfs_plug_cb, cb);
1734
1735 if (from_schedule) {
1736 btrfs_init_work(&plug->work, btrfs_rmw_helper,
1737 unplug_work, NULL, NULL);
1738 btrfs_queue_work(plug->info->rmw_workers,
1739 &plug->work);
1740 return;
1741 }
1742 run_plug(plug);
1743}
1744
1745
1746
1747
1748int raid56_parity_write(struct btrfs_fs_info *fs_info, struct bio *bio,
1749 struct btrfs_bio *bbio, u64 stripe_len)
1750{
1751 struct btrfs_raid_bio *rbio;
1752 struct btrfs_plug_cb *plug = NULL;
1753 struct blk_plug_cb *cb;
1754 int ret;
1755
1756 rbio = alloc_rbio(fs_info, bbio, stripe_len);
1757 if (IS_ERR(rbio)) {
1758 btrfs_put_bbio(bbio);
1759 return PTR_ERR(rbio);
1760 }
1761 bio_list_add(&rbio->bio_list, bio);
1762 rbio->bio_list_bytes = bio->bi_iter.bi_size;
1763 rbio->operation = BTRFS_RBIO_WRITE;
1764
1765 btrfs_bio_counter_inc_noblocked(fs_info);
1766 rbio->generic_bio_cnt = 1;
1767
1768
1769
1770
1771
1772 if (rbio_is_full(rbio)) {
1773 ret = full_stripe_write(rbio);
1774 if (ret)
1775 btrfs_bio_counter_dec(fs_info);
1776 return ret;
1777 }
1778
1779 cb = blk_check_plugged(btrfs_raid_unplug, fs_info, sizeof(*plug));
1780 if (cb) {
1781 plug = container_of(cb, struct btrfs_plug_cb, cb);
1782 if (!plug->info) {
1783 plug->info = fs_info;
1784 INIT_LIST_HEAD(&plug->rbio_list);
1785 }
1786 list_add_tail(&rbio->plug_list, &plug->rbio_list);
1787 ret = 0;
1788 } else {
1789 ret = __raid56_parity_write(rbio);
1790 if (ret)
1791 btrfs_bio_counter_dec(fs_info);
1792 }
1793 return ret;
1794}
1795
1796
1797
1798
1799
1800
1801static void __raid_recover_end_io(struct btrfs_raid_bio *rbio)
1802{
1803 int pagenr, stripe;
1804 void **pointers;
1805 int faila = -1, failb = -1;
1806 struct page *page;
1807 blk_status_t err;
1808 int i;
1809
1810 pointers = kcalloc(rbio->real_stripes, sizeof(void *), GFP_NOFS);
1811 if (!pointers) {
1812 err = BLK_STS_RESOURCE;
1813 goto cleanup_io;
1814 }
1815
1816 faila = rbio->faila;
1817 failb = rbio->failb;
1818
1819 if (rbio->operation == BTRFS_RBIO_READ_REBUILD ||
1820 rbio->operation == BTRFS_RBIO_REBUILD_MISSING) {
1821 spin_lock_irq(&rbio->bio_list_lock);
1822 set_bit(RBIO_RMW_LOCKED_BIT, &rbio->flags);
1823 spin_unlock_irq(&rbio->bio_list_lock);
1824 }
1825
1826 index_rbio_pages(rbio);
1827
1828 for (pagenr = 0; pagenr < rbio->stripe_npages; pagenr++) {
1829
1830
1831
1832
1833 if (rbio->operation == BTRFS_RBIO_PARITY_SCRUB &&
1834 !test_bit(pagenr, rbio->dbitmap))
1835 continue;
1836
1837
1838
1839
1840 for (stripe = 0; stripe < rbio->real_stripes; stripe++) {
1841
1842
1843
1844
1845 if ((rbio->operation == BTRFS_RBIO_READ_REBUILD ||
1846 rbio->operation == BTRFS_RBIO_REBUILD_MISSING) &&
1847 (stripe == faila || stripe == failb)) {
1848 page = page_in_rbio(rbio, stripe, pagenr, 0);
1849 } else {
1850 page = rbio_stripe_page(rbio, stripe, pagenr);
1851 }
1852 pointers[stripe] = kmap(page);
1853 }
1854
1855
1856 if (rbio->bbio->map_type & BTRFS_BLOCK_GROUP_RAID6) {
1857
1858
1859
1860
1861 if (failb < 0) {
1862 if (faila == rbio->nr_data) {
1863
1864
1865
1866
1867
1868 err = BLK_STS_IOERR;
1869 goto cleanup;
1870 }
1871
1872
1873
1874
1875 goto pstripe;
1876 }
1877
1878
1879 if (faila > failb) {
1880 int tmp = failb;
1881 failb = faila;
1882 faila = tmp;
1883 }
1884
1885
1886
1887
1888
1889
1890
1891 if (rbio->bbio->raid_map[failb] == RAID6_Q_STRIPE) {
1892 if (rbio->bbio->raid_map[faila] ==
1893 RAID5_P_STRIPE) {
1894 err = BLK_STS_IOERR;
1895 goto cleanup;
1896 }
1897
1898
1899
1900
1901 goto pstripe;
1902 }
1903
1904 if (rbio->bbio->raid_map[failb] == RAID5_P_STRIPE) {
1905 raid6_datap_recov(rbio->real_stripes,
1906 PAGE_SIZE, faila, pointers);
1907 } else {
1908 raid6_2data_recov(rbio->real_stripes,
1909 PAGE_SIZE, faila, failb,
1910 pointers);
1911 }
1912 } else {
1913 void *p;
1914
1915
1916 BUG_ON(failb != -1);
1917pstripe:
1918
1919 memcpy(pointers[faila],
1920 pointers[rbio->nr_data],
1921 PAGE_SIZE);
1922
1923
1924 p = pointers[faila];
1925 for (stripe = faila; stripe < rbio->nr_data - 1; stripe++)
1926 pointers[stripe] = pointers[stripe + 1];
1927 pointers[rbio->nr_data - 1] = p;
1928
1929
1930 run_xor(pointers, rbio->nr_data - 1, PAGE_SIZE);
1931 }
1932
1933
1934
1935
1936
1937
1938 if (rbio->operation == BTRFS_RBIO_WRITE) {
1939 for (i = 0; i < rbio->stripe_npages; i++) {
1940 if (faila != -1) {
1941 page = rbio_stripe_page(rbio, faila, i);
1942 SetPageUptodate(page);
1943 }
1944 if (failb != -1) {
1945 page = rbio_stripe_page(rbio, failb, i);
1946 SetPageUptodate(page);
1947 }
1948 }
1949 }
1950 for (stripe = 0; stripe < rbio->real_stripes; stripe++) {
1951
1952
1953
1954
1955 if ((rbio->operation == BTRFS_RBIO_READ_REBUILD ||
1956 rbio->operation == BTRFS_RBIO_REBUILD_MISSING) &&
1957 (stripe == faila || stripe == failb)) {
1958 page = page_in_rbio(rbio, stripe, pagenr, 0);
1959 } else {
1960 page = rbio_stripe_page(rbio, stripe, pagenr);
1961 }
1962 kunmap(page);
1963 }
1964 }
1965
1966 err = BLK_STS_OK;
1967cleanup:
1968 kfree(pointers);
1969
1970cleanup_io:
1971 if (rbio->operation == BTRFS_RBIO_READ_REBUILD) {
1972 if (err == BLK_STS_OK)
1973 cache_rbio_pages(rbio);
1974 else
1975 clear_bit(RBIO_CACHE_READY_BIT, &rbio->flags);
1976
1977 rbio_orig_end_io(rbio, err);
1978 } else if (rbio->operation == BTRFS_RBIO_REBUILD_MISSING) {
1979 rbio_orig_end_io(rbio, err);
1980 } else if (err == BLK_STS_OK) {
1981 rbio->faila = -1;
1982 rbio->failb = -1;
1983
1984 if (rbio->operation == BTRFS_RBIO_WRITE)
1985 finish_rmw(rbio);
1986 else if (rbio->operation == BTRFS_RBIO_PARITY_SCRUB)
1987 finish_parity_scrub(rbio, 0);
1988 else
1989 BUG();
1990 } else {
1991 rbio_orig_end_io(rbio, err);
1992 }
1993}
1994
1995
1996
1997
1998
1999static void raid_recover_end_io(struct bio *bio)
2000{
2001 struct btrfs_raid_bio *rbio = bio->bi_private;
2002
2003
2004
2005
2006
2007 if (bio->bi_status)
2008 fail_bio_stripe(rbio, bio);
2009 else
2010 set_bio_pages_uptodate(bio);
2011 bio_put(bio);
2012
2013 if (!atomic_dec_and_test(&rbio->stripes_pending))
2014 return;
2015
2016 if (atomic_read(&rbio->error) > rbio->bbio->max_errors)
2017 rbio_orig_end_io(rbio, BLK_STS_IOERR);
2018 else
2019 __raid_recover_end_io(rbio);
2020}
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030static int __raid56_parity_recover(struct btrfs_raid_bio *rbio)
2031{
2032 int bios_to_read = 0;
2033 struct bio_list bio_list;
2034 int ret;
2035 int pagenr;
2036 int stripe;
2037 struct bio *bio;
2038
2039 bio_list_init(&bio_list);
2040
2041 ret = alloc_rbio_pages(rbio);
2042 if (ret)
2043 goto cleanup;
2044
2045 atomic_set(&rbio->error, 0);
2046
2047
2048
2049
2050
2051
2052 for (stripe = 0; stripe < rbio->real_stripes; stripe++) {
2053 if (rbio->faila == stripe || rbio->failb == stripe) {
2054 atomic_inc(&rbio->error);
2055 continue;
2056 }
2057
2058 for (pagenr = 0; pagenr < rbio->stripe_npages; pagenr++) {
2059 struct page *p;
2060
2061
2062
2063
2064
2065 p = rbio_stripe_page(rbio, stripe, pagenr);
2066 if (PageUptodate(p))
2067 continue;
2068
2069 ret = rbio_add_io_page(rbio, &bio_list,
2070 rbio_stripe_page(rbio, stripe, pagenr),
2071 stripe, pagenr, rbio->stripe_len);
2072 if (ret < 0)
2073 goto cleanup;
2074 }
2075 }
2076
2077 bios_to_read = bio_list_size(&bio_list);
2078 if (!bios_to_read) {
2079
2080
2081
2082
2083
2084 if (atomic_read(&rbio->error) <= rbio->bbio->max_errors) {
2085 __raid_recover_end_io(rbio);
2086 goto out;
2087 } else {
2088 goto cleanup;
2089 }
2090 }
2091
2092
2093
2094
2095
2096 atomic_set(&rbio->stripes_pending, bios_to_read);
2097 while (1) {
2098 bio = bio_list_pop(&bio_list);
2099 if (!bio)
2100 break;
2101
2102 bio->bi_private = rbio;
2103 bio->bi_end_io = raid_recover_end_io;
2104 bio_set_op_attrs(bio, REQ_OP_READ, 0);
2105
2106 btrfs_bio_wq_end_io(rbio->fs_info, bio, BTRFS_WQ_ENDIO_RAID56);
2107
2108 submit_bio(bio);
2109 }
2110out:
2111 return 0;
2112
2113cleanup:
2114 if (rbio->operation == BTRFS_RBIO_READ_REBUILD ||
2115 rbio->operation == BTRFS_RBIO_REBUILD_MISSING)
2116 rbio_orig_end_io(rbio, BLK_STS_IOERR);
2117
2118 while ((bio = bio_list_pop(&bio_list)))
2119 bio_put(bio);
2120
2121 return -EIO;
2122}
2123
2124
2125
2126
2127
2128
2129
2130int raid56_parity_recover(struct btrfs_fs_info *fs_info, struct bio *bio,
2131 struct btrfs_bio *bbio, u64 stripe_len,
2132 int mirror_num, int generic_io)
2133{
2134 struct btrfs_raid_bio *rbio;
2135 int ret;
2136
2137 if (generic_io) {
2138 ASSERT(bbio->mirror_num == mirror_num);
2139 btrfs_io_bio(bio)->mirror_num = mirror_num;
2140 }
2141
2142 rbio = alloc_rbio(fs_info, bbio, stripe_len);
2143 if (IS_ERR(rbio)) {
2144 if (generic_io)
2145 btrfs_put_bbio(bbio);
2146 return PTR_ERR(rbio);
2147 }
2148
2149 rbio->operation = BTRFS_RBIO_READ_REBUILD;
2150 bio_list_add(&rbio->bio_list, bio);
2151 rbio->bio_list_bytes = bio->bi_iter.bi_size;
2152
2153 rbio->faila = find_logical_bio_stripe(rbio, bio);
2154 if (rbio->faila == -1) {
2155 btrfs_warn(fs_info,
2156 "%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)",
2157 __func__, (u64)bio->bi_iter.bi_sector << 9,
2158 (u64)bio->bi_iter.bi_size, bbio->map_type);
2159 if (generic_io)
2160 btrfs_put_bbio(bbio);
2161 kfree(rbio);
2162 return -EIO;
2163 }
2164
2165 if (generic_io) {
2166 btrfs_bio_counter_inc_noblocked(fs_info);
2167 rbio->generic_bio_cnt = 1;
2168 } else {
2169 btrfs_get_bbio(bbio);
2170 }
2171
2172
2173
2174
2175
2176 if (mirror_num == 3)
2177 rbio->failb = rbio->real_stripes - 2;
2178
2179 ret = lock_stripe_add(rbio);
2180
2181
2182
2183
2184
2185
2186
2187
2188 if (ret == 0)
2189 __raid56_parity_recover(rbio);
2190
2191
2192
2193
2194
2195 return 0;
2196
2197}
2198
2199static void rmw_work(struct btrfs_work *work)
2200{
2201 struct btrfs_raid_bio *rbio;
2202
2203 rbio = container_of(work, struct btrfs_raid_bio, work);
2204 raid56_rmw_stripe(rbio);
2205}
2206
2207static void read_rebuild_work(struct btrfs_work *work)
2208{
2209 struct btrfs_raid_bio *rbio;
2210
2211 rbio = container_of(work, struct btrfs_raid_bio, work);
2212 __raid56_parity_recover(rbio);
2213}
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225struct btrfs_raid_bio *
2226raid56_parity_alloc_scrub_rbio(struct btrfs_fs_info *fs_info, struct bio *bio,
2227 struct btrfs_bio *bbio, u64 stripe_len,
2228 struct btrfs_device *scrub_dev,
2229 unsigned long *dbitmap, int stripe_nsectors)
2230{
2231 struct btrfs_raid_bio *rbio;
2232 int i;
2233
2234 rbio = alloc_rbio(fs_info, bbio, stripe_len);
2235 if (IS_ERR(rbio))
2236 return NULL;
2237 bio_list_add(&rbio->bio_list, bio);
2238
2239
2240
2241
2242 ASSERT(!bio->bi_iter.bi_size);
2243 rbio->operation = BTRFS_RBIO_PARITY_SCRUB;
2244
2245
2246
2247
2248
2249
2250 for (i = rbio->nr_data; i < rbio->real_stripes; i++) {
2251 if (bbio->stripes[i].dev == scrub_dev) {
2252 rbio->scrubp = i;
2253 break;
2254 }
2255 }
2256 ASSERT(i < rbio->real_stripes);
2257
2258
2259 ASSERT(fs_info->sectorsize == PAGE_SIZE);
2260 ASSERT(rbio->stripe_npages == stripe_nsectors);
2261 bitmap_copy(rbio->dbitmap, dbitmap, stripe_nsectors);
2262
2263
2264
2265
2266
2267 rbio->generic_bio_cnt = 1;
2268
2269 return rbio;
2270}
2271
2272
2273void raid56_add_scrub_pages(struct btrfs_raid_bio *rbio, struct page *page,
2274 u64 logical)
2275{
2276 int stripe_offset;
2277 int index;
2278
2279 ASSERT(logical >= rbio->bbio->raid_map[0]);
2280 ASSERT(logical + PAGE_SIZE <= rbio->bbio->raid_map[0] +
2281 rbio->stripe_len * rbio->nr_data);
2282 stripe_offset = (int)(logical - rbio->bbio->raid_map[0]);
2283 index = stripe_offset >> PAGE_SHIFT;
2284 rbio->bio_pages[index] = page;
2285}
2286
2287
2288
2289
2290
2291static int alloc_rbio_essential_pages(struct btrfs_raid_bio *rbio)
2292{
2293 int i;
2294 int bit;
2295 int index;
2296 struct page *page;
2297
2298 for_each_set_bit(bit, rbio->dbitmap, rbio->stripe_npages) {
2299 for (i = 0; i < rbio->real_stripes; i++) {
2300 index = i * rbio->stripe_npages + bit;
2301 if (rbio->stripe_pages[index])
2302 continue;
2303
2304 page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
2305 if (!page)
2306 return -ENOMEM;
2307 rbio->stripe_pages[index] = page;
2308 }
2309 }
2310 return 0;
2311}
2312
2313static noinline void finish_parity_scrub(struct btrfs_raid_bio *rbio,
2314 int need_check)
2315{
2316 struct btrfs_bio *bbio = rbio->bbio;
2317 void *pointers[rbio->real_stripes];
2318 DECLARE_BITMAP(pbitmap, rbio->stripe_npages);
2319 int nr_data = rbio->nr_data;
2320 int stripe;
2321 int pagenr;
2322 int p_stripe = -1;
2323 int q_stripe = -1;
2324 struct page *p_page = NULL;
2325 struct page *q_page = NULL;
2326 struct bio_list bio_list;
2327 struct bio *bio;
2328 int is_replace = 0;
2329 int ret;
2330
2331 bio_list_init(&bio_list);
2332
2333 if (rbio->real_stripes - rbio->nr_data == 1) {
2334 p_stripe = rbio->real_stripes - 1;
2335 } else if (rbio->real_stripes - rbio->nr_data == 2) {
2336 p_stripe = rbio->real_stripes - 2;
2337 q_stripe = rbio->real_stripes - 1;
2338 } else {
2339 BUG();
2340 }
2341
2342 if (bbio->num_tgtdevs && bbio->tgtdev_map[rbio->scrubp]) {
2343 is_replace = 1;
2344 bitmap_copy(pbitmap, rbio->dbitmap, rbio->stripe_npages);
2345 }
2346
2347
2348
2349
2350
2351
2352 clear_bit(RBIO_CACHE_READY_BIT, &rbio->flags);
2353
2354 if (!need_check)
2355 goto writeback;
2356
2357 p_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
2358 if (!p_page)
2359 goto cleanup;
2360 SetPageUptodate(p_page);
2361
2362 if (q_stripe != -1) {
2363 q_page = alloc_page(GFP_NOFS | __GFP_HIGHMEM);
2364 if (!q_page) {
2365 __free_page(p_page);
2366 goto cleanup;
2367 }
2368 SetPageUptodate(q_page);
2369 }
2370
2371 atomic_set(&rbio->error, 0);
2372
2373 for_each_set_bit(pagenr, rbio->dbitmap, rbio->stripe_npages) {
2374 struct page *p;
2375 void *parity;
2376
2377 for (stripe = 0; stripe < nr_data; stripe++) {
2378 p = page_in_rbio(rbio, stripe, pagenr, 0);
2379 pointers[stripe] = kmap(p);
2380 }
2381
2382
2383 pointers[stripe++] = kmap(p_page);
2384
2385 if (q_stripe != -1) {
2386
2387
2388
2389
2390
2391 pointers[stripe++] = kmap(q_page);
2392
2393 raid6_call.gen_syndrome(rbio->real_stripes, PAGE_SIZE,
2394 pointers);
2395 } else {
2396
2397 memcpy(pointers[nr_data], pointers[0], PAGE_SIZE);
2398 run_xor(pointers + 1, nr_data - 1, PAGE_SIZE);
2399 }
2400
2401
2402 p = rbio_stripe_page(rbio, rbio->scrubp, pagenr);
2403 parity = kmap(p);
2404 if (memcmp(parity, pointers[rbio->scrubp], PAGE_SIZE))
2405 memcpy(parity, pointers[rbio->scrubp], PAGE_SIZE);
2406 else
2407
2408 bitmap_clear(rbio->dbitmap, pagenr, 1);
2409 kunmap(p);
2410
2411 for (stripe = 0; stripe < rbio->real_stripes; stripe++)
2412 kunmap(page_in_rbio(rbio, stripe, pagenr, 0));
2413 }
2414
2415 __free_page(p_page);
2416 if (q_page)
2417 __free_page(q_page);
2418
2419writeback:
2420
2421
2422
2423
2424
2425 for_each_set_bit(pagenr, rbio->dbitmap, rbio->stripe_npages) {
2426 struct page *page;
2427
2428 page = rbio_stripe_page(rbio, rbio->scrubp, pagenr);
2429 ret = rbio_add_io_page(rbio, &bio_list,
2430 page, rbio->scrubp, pagenr, rbio->stripe_len);
2431 if (ret)
2432 goto cleanup;
2433 }
2434
2435 if (!is_replace)
2436 goto submit_write;
2437
2438 for_each_set_bit(pagenr, pbitmap, rbio->stripe_npages) {
2439 struct page *page;
2440
2441 page = rbio_stripe_page(rbio, rbio->scrubp, pagenr);
2442 ret = rbio_add_io_page(rbio, &bio_list, page,
2443 bbio->tgtdev_map[rbio->scrubp],
2444 pagenr, rbio->stripe_len);
2445 if (ret)
2446 goto cleanup;
2447 }
2448
2449submit_write:
2450 nr_data = bio_list_size(&bio_list);
2451 if (!nr_data) {
2452
2453 rbio_orig_end_io(rbio, BLK_STS_OK);
2454 return;
2455 }
2456
2457 atomic_set(&rbio->stripes_pending, nr_data);
2458
2459 while (1) {
2460 bio = bio_list_pop(&bio_list);
2461 if (!bio)
2462 break;
2463
2464 bio->bi_private = rbio;
2465 bio->bi_end_io = raid_write_end_io;
2466 bio_set_op_attrs(bio, REQ_OP_WRITE, 0);
2467
2468 submit_bio(bio);
2469 }
2470 return;
2471
2472cleanup:
2473 rbio_orig_end_io(rbio, BLK_STS_IOERR);
2474
2475 while ((bio = bio_list_pop(&bio_list)))
2476 bio_put(bio);
2477}
2478
2479static inline int is_data_stripe(struct btrfs_raid_bio *rbio, int stripe)
2480{
2481 if (stripe >= 0 && stripe < rbio->nr_data)
2482 return 1;
2483 return 0;
2484}
2485
2486
2487
2488
2489
2490
2491
2492
2493static void validate_rbio_for_parity_scrub(struct btrfs_raid_bio *rbio)
2494{
2495 if (atomic_read(&rbio->error) > rbio->bbio->max_errors)
2496 goto cleanup;
2497
2498 if (rbio->faila >= 0 || rbio->failb >= 0) {
2499 int dfail = 0, failp = -1;
2500
2501 if (is_data_stripe(rbio, rbio->faila))
2502 dfail++;
2503 else if (is_parity_stripe(rbio->faila))
2504 failp = rbio->faila;
2505
2506 if (is_data_stripe(rbio, rbio->failb))
2507 dfail++;
2508 else if (is_parity_stripe(rbio->failb))
2509 failp = rbio->failb;
2510
2511
2512
2513
2514
2515
2516 if (dfail > rbio->bbio->max_errors - 1)
2517 goto cleanup;
2518
2519
2520
2521
2522
2523 if (dfail == 0) {
2524 finish_parity_scrub(rbio, 0);
2525 return;
2526 }
2527
2528
2529
2530
2531
2532
2533
2534 if (failp != rbio->scrubp)
2535 goto cleanup;
2536
2537 __raid_recover_end_io(rbio);
2538 } else {
2539 finish_parity_scrub(rbio, 1);
2540 }
2541 return;
2542
2543cleanup:
2544 rbio_orig_end_io(rbio, BLK_STS_IOERR);
2545}
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555static void raid56_parity_scrub_end_io(struct bio *bio)
2556{
2557 struct btrfs_raid_bio *rbio = bio->bi_private;
2558
2559 if (bio->bi_status)
2560 fail_bio_stripe(rbio, bio);
2561 else
2562 set_bio_pages_uptodate(bio);
2563
2564 bio_put(bio);
2565
2566 if (!atomic_dec_and_test(&rbio->stripes_pending))
2567 return;
2568
2569
2570
2571
2572
2573
2574 validate_rbio_for_parity_scrub(rbio);
2575}
2576
2577static void raid56_parity_scrub_stripe(struct btrfs_raid_bio *rbio)
2578{
2579 int bios_to_read = 0;
2580 struct bio_list bio_list;
2581 int ret;
2582 int pagenr;
2583 int stripe;
2584 struct bio *bio;
2585
2586 bio_list_init(&bio_list);
2587
2588 ret = alloc_rbio_essential_pages(rbio);
2589 if (ret)
2590 goto cleanup;
2591
2592 atomic_set(&rbio->error, 0);
2593
2594
2595
2596
2597 for (stripe = 0; stripe < rbio->real_stripes; stripe++) {
2598 for_each_set_bit(pagenr, rbio->dbitmap, rbio->stripe_npages) {
2599 struct page *page;
2600
2601
2602
2603
2604
2605
2606 page = page_in_rbio(rbio, stripe, pagenr, 1);
2607 if (page)
2608 continue;
2609
2610 page = rbio_stripe_page(rbio, stripe, pagenr);
2611
2612
2613
2614
2615 if (PageUptodate(page))
2616 continue;
2617
2618 ret = rbio_add_io_page(rbio, &bio_list, page,
2619 stripe, pagenr, rbio->stripe_len);
2620 if (ret)
2621 goto cleanup;
2622 }
2623 }
2624
2625 bios_to_read = bio_list_size(&bio_list);
2626 if (!bios_to_read) {
2627
2628
2629
2630
2631
2632
2633 goto finish;
2634 }
2635
2636
2637
2638
2639
2640 atomic_set(&rbio->stripes_pending, bios_to_read);
2641 while (1) {
2642 bio = bio_list_pop(&bio_list);
2643 if (!bio)
2644 break;
2645
2646 bio->bi_private = rbio;
2647 bio->bi_end_io = raid56_parity_scrub_end_io;
2648 bio_set_op_attrs(bio, REQ_OP_READ, 0);
2649
2650 btrfs_bio_wq_end_io(rbio->fs_info, bio, BTRFS_WQ_ENDIO_RAID56);
2651
2652 submit_bio(bio);
2653 }
2654
2655 return;
2656
2657cleanup:
2658 rbio_orig_end_io(rbio, BLK_STS_IOERR);
2659
2660 while ((bio = bio_list_pop(&bio_list)))
2661 bio_put(bio);
2662
2663 return;
2664
2665finish:
2666 validate_rbio_for_parity_scrub(rbio);
2667}
2668
2669static void scrub_parity_work(struct btrfs_work *work)
2670{
2671 struct btrfs_raid_bio *rbio;
2672
2673 rbio = container_of(work, struct btrfs_raid_bio, work);
2674 raid56_parity_scrub_stripe(rbio);
2675}
2676
2677static void async_scrub_parity(struct btrfs_raid_bio *rbio)
2678{
2679 btrfs_init_work(&rbio->work, btrfs_rmw_helper,
2680 scrub_parity_work, NULL, NULL);
2681
2682 btrfs_queue_work(rbio->fs_info->rmw_workers, &rbio->work);
2683}
2684
2685void raid56_parity_submit_scrub_rbio(struct btrfs_raid_bio *rbio)
2686{
2687 if (!lock_stripe_add(rbio))
2688 async_scrub_parity(rbio);
2689}
2690
2691
2692
2693struct btrfs_raid_bio *
2694raid56_alloc_missing_rbio(struct btrfs_fs_info *fs_info, struct bio *bio,
2695 struct btrfs_bio *bbio, u64 length)
2696{
2697 struct btrfs_raid_bio *rbio;
2698
2699 rbio = alloc_rbio(fs_info, bbio, length);
2700 if (IS_ERR(rbio))
2701 return NULL;
2702
2703 rbio->operation = BTRFS_RBIO_REBUILD_MISSING;
2704 bio_list_add(&rbio->bio_list, bio);
2705
2706
2707
2708
2709 ASSERT(!bio->bi_iter.bi_size);
2710
2711 rbio->faila = find_logical_bio_stripe(rbio, bio);
2712 if (rbio->faila == -1) {
2713 BUG();
2714 kfree(rbio);
2715 return NULL;
2716 }
2717
2718
2719
2720
2721
2722 rbio->generic_bio_cnt = 1;
2723
2724 return rbio;
2725}
2726
2727static void missing_raid56_work(struct btrfs_work *work)
2728{
2729 struct btrfs_raid_bio *rbio;
2730
2731 rbio = container_of(work, struct btrfs_raid_bio, work);
2732 __raid56_parity_recover(rbio);
2733}
2734
2735static void async_missing_raid56(struct btrfs_raid_bio *rbio)
2736{
2737 btrfs_init_work(&rbio->work, btrfs_rmw_helper,
2738 missing_raid56_work, NULL, NULL);
2739
2740 btrfs_queue_work(rbio->fs_info->rmw_workers, &rbio->work);
2741}
2742
2743void raid56_submit_missing_rbio(struct btrfs_raid_bio *rbio)
2744{
2745 if (!lock_stripe_add(rbio))
2746 async_missing_raid56(rbio);
2747}
2748