1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46#include <linux/module.h>
47#include <linux/slab.h>
48#include <linux/highmem.h>
49#include <linux/bitops.h>
50#include <linux/kthread.h>
51#include <asm/atomic.h>
52#include "raid6.h"
53
54#include <linux/raid/bitmap.h>
55#include <linux/async_tx.h>
56
57
58
59
60
61#define NR_STRIPES 256
62#define STRIPE_SIZE PAGE_SIZE
63#define STRIPE_SHIFT (PAGE_SHIFT - 9)
64#define STRIPE_SECTORS (STRIPE_SIZE>>9)
65#define IO_THRESHOLD 1
66#define BYPASS_THRESHOLD 1
67#define NR_HASH (PAGE_SIZE / sizeof(struct hlist_head))
68#define HASH_MASK (NR_HASH - 1)
69
70#define stripe_hash(conf, sect) (&((conf)->stripe_hashtbl[((sect) >> STRIPE_SHIFT) & HASH_MASK]))
71
72
73
74
75
76
77
78
79
80
81#define r5_next_bio(bio, sect) ( ( (bio)->bi_sector + ((bio)->bi_size>>9) < sect + STRIPE_SECTORS) ? (bio)->bi_next : NULL)
82
83
84
85#define RAID5_PARANOIA 1
86#if RAID5_PARANOIA && defined(CONFIG_SMP)
87# define CHECK_DEVLOCK() assert_spin_locked(&conf->device_lock)
88#else
89# define CHECK_DEVLOCK()
90#endif
91
92#ifdef DEBUG
93#define inline
94#define __inline__
95#endif
96
97#define printk_rl(args...) ((void) (printk_ratelimit() && printk(args)))
98
99#if !RAID6_USE_EMPTY_ZERO_PAGE
100
101const char raid6_empty_zero_page[PAGE_SIZE] __attribute__((aligned(256)));
102#endif
103
104static inline int raid6_next_disk(int disk, int raid_disks)
105{
106 disk++;
107 return (disk < raid_disks) ? disk : 0;
108}
109
110static void return_io(struct bio *return_bi)
111{
112 struct bio *bi = return_bi;
113 while (bi) {
114
115 return_bi = bi->bi_next;
116 bi->bi_next = NULL;
117 bi->bi_size = 0;
118 bi->bi_end_io(bi,
119 test_bit(BIO_UPTODATE, &bi->bi_flags)
120 ? 0 : -EIO);
121 bi = return_bi;
122 }
123}
124
125static void print_raid5_conf (raid5_conf_t *conf);
126
127static void __release_stripe(raid5_conf_t *conf, struct stripe_head *sh)
128{
129 if (atomic_dec_and_test(&sh->count)) {
130 BUG_ON(!list_empty(&sh->lru));
131 BUG_ON(atomic_read(&conf->active_stripes)==0);
132 if (test_bit(STRIPE_HANDLE, &sh->state)) {
133 if (test_bit(STRIPE_DELAYED, &sh->state)) {
134 list_add_tail(&sh->lru, &conf->delayed_list);
135 blk_plug_device(conf->mddev->queue);
136 } else if (test_bit(STRIPE_BIT_DELAY, &sh->state) &&
137 sh->bm_seq - conf->seq_write > 0) {
138 list_add_tail(&sh->lru, &conf->bitmap_list);
139 blk_plug_device(conf->mddev->queue);
140 } else {
141 clear_bit(STRIPE_BIT_DELAY, &sh->state);
142 list_add_tail(&sh->lru, &conf->handle_list);
143 }
144 md_wakeup_thread(conf->mddev->thread);
145 } else {
146 BUG_ON(sh->ops.pending);
147 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
148 atomic_dec(&conf->preread_active_stripes);
149 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD)
150 md_wakeup_thread(conf->mddev->thread);
151 }
152 atomic_dec(&conf->active_stripes);
153 if (!test_bit(STRIPE_EXPANDING, &sh->state)) {
154 list_add_tail(&sh->lru, &conf->inactive_list);
155 wake_up(&conf->wait_for_stripe);
156 if (conf->retry_read_aligned)
157 md_wakeup_thread(conf->mddev->thread);
158 }
159 }
160 }
161}
162static void release_stripe(struct stripe_head *sh)
163{
164 raid5_conf_t *conf = sh->raid_conf;
165 unsigned long flags;
166
167 spin_lock_irqsave(&conf->device_lock, flags);
168 __release_stripe(conf, sh);
169 spin_unlock_irqrestore(&conf->device_lock, flags);
170}
171
172static inline void remove_hash(struct stripe_head *sh)
173{
174 pr_debug("remove_hash(), stripe %llu\n",
175 (unsigned long long)sh->sector);
176
177 hlist_del_init(&sh->hash);
178}
179
180static inline void insert_hash(raid5_conf_t *conf, struct stripe_head *sh)
181{
182 struct hlist_head *hp = stripe_hash(conf, sh->sector);
183
184 pr_debug("insert_hash(), stripe %llu\n",
185 (unsigned long long)sh->sector);
186
187 CHECK_DEVLOCK();
188 hlist_add_head(&sh->hash, hp);
189}
190
191
192
193static struct stripe_head *get_free_stripe(raid5_conf_t *conf)
194{
195 struct stripe_head *sh = NULL;
196 struct list_head *first;
197
198 CHECK_DEVLOCK();
199 if (list_empty(&conf->inactive_list))
200 goto out;
201 first = conf->inactive_list.next;
202 sh = list_entry(first, struct stripe_head, lru);
203 list_del_init(first);
204 remove_hash(sh);
205 atomic_inc(&conf->active_stripes);
206out:
207 return sh;
208}
209
210static void shrink_buffers(struct stripe_head *sh, int num)
211{
212 struct page *p;
213 int i;
214
215 for (i=0; i<num ; i++) {
216 p = sh->dev[i].page;
217 if (!p)
218 continue;
219 sh->dev[i].page = NULL;
220 put_page(p);
221 }
222}
223
224static int grow_buffers(struct stripe_head *sh, int num)
225{
226 int i;
227
228 for (i=0; i<num; i++) {
229 struct page *page;
230
231 if (!(page = alloc_page(GFP_KERNEL))) {
232 return 1;
233 }
234 sh->dev[i].page = page;
235 }
236 return 0;
237}
238
239static void raid5_build_block (struct stripe_head *sh, int i);
240
241static void init_stripe(struct stripe_head *sh, sector_t sector, int pd_idx, int disks)
242{
243 raid5_conf_t *conf = sh->raid_conf;
244 int i;
245
246 BUG_ON(atomic_read(&sh->count) != 0);
247 BUG_ON(test_bit(STRIPE_HANDLE, &sh->state));
248 BUG_ON(sh->ops.pending || sh->ops.ack || sh->ops.complete);
249
250 CHECK_DEVLOCK();
251 pr_debug("init_stripe called, stripe %llu\n",
252 (unsigned long long)sh->sector);
253
254 remove_hash(sh);
255
256 sh->sector = sector;
257 sh->pd_idx = pd_idx;
258 sh->state = 0;
259
260 sh->disks = disks;
261
262 for (i = sh->disks; i--; ) {
263 struct r5dev *dev = &sh->dev[i];
264
265 if (dev->toread || dev->read || dev->towrite || dev->written ||
266 test_bit(R5_LOCKED, &dev->flags)) {
267 printk(KERN_ERR "sector=%llx i=%d %p %p %p %p %d\n",
268 (unsigned long long)sh->sector, i, dev->toread,
269 dev->read, dev->towrite, dev->written,
270 test_bit(R5_LOCKED, &dev->flags));
271 BUG();
272 }
273 dev->flags = 0;
274 raid5_build_block(sh, i);
275 }
276 insert_hash(conf, sh);
277}
278
279static struct stripe_head *__find_stripe(raid5_conf_t *conf, sector_t sector, int disks)
280{
281 struct stripe_head *sh;
282 struct hlist_node *hn;
283
284 CHECK_DEVLOCK();
285 pr_debug("__find_stripe, sector %llu\n", (unsigned long long)sector);
286 hlist_for_each_entry(sh, hn, stripe_hash(conf, sector), hash)
287 if (sh->sector == sector && sh->disks == disks)
288 return sh;
289 pr_debug("__stripe %llu not in cache\n", (unsigned long long)sector);
290 return NULL;
291}
292
293static void unplug_slaves(mddev_t *mddev);
294static void raid5_unplug_device(struct request_queue *q);
295
296static struct stripe_head *get_active_stripe(raid5_conf_t *conf, sector_t sector, int disks,
297 int pd_idx, int noblock)
298{
299 struct stripe_head *sh;
300
301 pr_debug("get_stripe, sector %llu\n", (unsigned long long)sector);
302
303 spin_lock_irq(&conf->device_lock);
304
305 do {
306 wait_event_lock_irq(conf->wait_for_stripe,
307 conf->quiesce == 0,
308 conf->device_lock, );
309 sh = __find_stripe(conf, sector, disks);
310 if (!sh) {
311 if (!conf->inactive_blocked)
312 sh = get_free_stripe(conf);
313 if (noblock && sh == NULL)
314 break;
315 if (!sh) {
316 conf->inactive_blocked = 1;
317 wait_event_lock_irq(conf->wait_for_stripe,
318 !list_empty(&conf->inactive_list) &&
319 (atomic_read(&conf->active_stripes)
320 < (conf->max_nr_stripes *3/4)
321 || !conf->inactive_blocked),
322 conf->device_lock,
323 raid5_unplug_device(conf->mddev->queue)
324 );
325 conf->inactive_blocked = 0;
326 } else
327 init_stripe(sh, sector, pd_idx, disks);
328 } else {
329 if (atomic_read(&sh->count)) {
330 BUG_ON(!list_empty(&sh->lru));
331 } else {
332 if (!test_bit(STRIPE_HANDLE, &sh->state))
333 atomic_inc(&conf->active_stripes);
334 if (list_empty(&sh->lru) &&
335 !test_bit(STRIPE_EXPANDING, &sh->state))
336 BUG();
337 list_del_init(&sh->lru);
338 }
339 }
340 } while (sh == NULL);
341
342 if (sh)
343 atomic_inc(&sh->count);
344
345 spin_unlock_irq(&conf->device_lock);
346 return sh;
347}
348
349
350#define test_and_ack_op(op, pend) \
351do { \
352 if (test_bit(op, &sh->ops.pending) && \
353 !test_bit(op, &sh->ops.complete)) { \
354 if (test_and_set_bit(op, &sh->ops.ack)) \
355 clear_bit(op, &pend); \
356 else \
357 ack++; \
358 } else \
359 clear_bit(op, &pend); \
360} while (0)
361
362
363
364
365static unsigned long get_stripe_work(struct stripe_head *sh)
366{
367 unsigned long pending;
368 int ack = 0;
369
370 pending = sh->ops.pending;
371
372 test_and_ack_op(STRIPE_OP_BIOFILL, pending);
373 test_and_ack_op(STRIPE_OP_COMPUTE_BLK, pending);
374 test_and_ack_op(STRIPE_OP_PREXOR, pending);
375 test_and_ack_op(STRIPE_OP_BIODRAIN, pending);
376 test_and_ack_op(STRIPE_OP_POSTXOR, pending);
377 test_and_ack_op(STRIPE_OP_CHECK, pending);
378 if (test_and_clear_bit(STRIPE_OP_IO, &sh->ops.pending))
379 ack++;
380
381 sh->ops.count -= ack;
382 if (unlikely(sh->ops.count < 0)) {
383 printk(KERN_ERR "pending: %#lx ops.pending: %#lx ops.ack: %#lx "
384 "ops.complete: %#lx\n", pending, sh->ops.pending,
385 sh->ops.ack, sh->ops.complete);
386 BUG();
387 }
388
389 return pending;
390}
391
392static void
393raid5_end_read_request(struct bio *bi, int error);
394static void
395raid5_end_write_request(struct bio *bi, int error);
396
397static void ops_run_io(struct stripe_head *sh)
398{
399 raid5_conf_t *conf = sh->raid_conf;
400 int i, disks = sh->disks;
401
402 might_sleep();
403
404 set_bit(STRIPE_IO_STARTED, &sh->state);
405 for (i = disks; i--; ) {
406 int rw;
407 struct bio *bi;
408 mdk_rdev_t *rdev;
409 if (test_and_clear_bit(R5_Wantwrite, &sh->dev[i].flags))
410 rw = WRITE;
411 else if (test_and_clear_bit(R5_Wantread, &sh->dev[i].flags))
412 rw = READ;
413 else
414 continue;
415
416 bi = &sh->dev[i].req;
417
418 bi->bi_rw = rw;
419 if (rw == WRITE)
420 bi->bi_end_io = raid5_end_write_request;
421 else
422 bi->bi_end_io = raid5_end_read_request;
423
424 rcu_read_lock();
425 rdev = rcu_dereference(conf->disks[i].rdev);
426 if (rdev && test_bit(Faulty, &rdev->flags))
427 rdev = NULL;
428 if (rdev)
429 atomic_inc(&rdev->nr_pending);
430 rcu_read_unlock();
431
432 if (rdev) {
433 if (test_bit(STRIPE_SYNCING, &sh->state) ||
434 test_bit(STRIPE_EXPAND_SOURCE, &sh->state) ||
435 test_bit(STRIPE_EXPAND_READY, &sh->state))
436 md_sync_acct(rdev->bdev, STRIPE_SECTORS);
437
438 bi->bi_bdev = rdev->bdev;
439 pr_debug("%s: for %llu schedule op %ld on disc %d\n",
440 __func__, (unsigned long long)sh->sector,
441 bi->bi_rw, i);
442 atomic_inc(&sh->count);
443 bi->bi_sector = sh->sector + rdev->data_offset;
444 bi->bi_flags = 1 << BIO_UPTODATE;
445 bi->bi_vcnt = 1;
446 bi->bi_max_vecs = 1;
447 bi->bi_idx = 0;
448 bi->bi_io_vec = &sh->dev[i].vec;
449 bi->bi_io_vec[0].bv_len = STRIPE_SIZE;
450 bi->bi_io_vec[0].bv_offset = 0;
451 bi->bi_size = STRIPE_SIZE;
452 bi->bi_next = NULL;
453 if (rw == WRITE &&
454 test_bit(R5_ReWrite, &sh->dev[i].flags))
455 atomic_add(STRIPE_SECTORS,
456 &rdev->corrected_errors);
457 generic_make_request(bi);
458 } else {
459 if (rw == WRITE)
460 set_bit(STRIPE_DEGRADED, &sh->state);
461 pr_debug("skip op %ld on disc %d for sector %llu\n",
462 bi->bi_rw, i, (unsigned long long)sh->sector);
463 clear_bit(R5_LOCKED, &sh->dev[i].flags);
464 set_bit(STRIPE_HANDLE, &sh->state);
465 }
466 }
467}
468
469static struct dma_async_tx_descriptor *
470async_copy_data(int frombio, struct bio *bio, struct page *page,
471 sector_t sector, struct dma_async_tx_descriptor *tx)
472{
473 struct bio_vec *bvl;
474 struct page *bio_page;
475 int i;
476 int page_offset;
477
478 if (bio->bi_sector >= sector)
479 page_offset = (signed)(bio->bi_sector - sector) * 512;
480 else
481 page_offset = (signed)(sector - bio->bi_sector) * -512;
482 bio_for_each_segment(bvl, bio, i) {
483 int len = bio_iovec_idx(bio, i)->bv_len;
484 int clen;
485 int b_offset = 0;
486
487 if (page_offset < 0) {
488 b_offset = -page_offset;
489 page_offset += b_offset;
490 len -= b_offset;
491 }
492
493 if (len > 0 && page_offset + len > STRIPE_SIZE)
494 clen = STRIPE_SIZE - page_offset;
495 else
496 clen = len;
497
498 if (clen > 0) {
499 b_offset += bio_iovec_idx(bio, i)->bv_offset;
500 bio_page = bio_iovec_idx(bio, i)->bv_page;
501 if (frombio)
502 tx = async_memcpy(page, bio_page, page_offset,
503 b_offset, clen,
504 ASYNC_TX_DEP_ACK,
505 tx, NULL, NULL);
506 else
507 tx = async_memcpy(bio_page, page, b_offset,
508 page_offset, clen,
509 ASYNC_TX_DEP_ACK,
510 tx, NULL, NULL);
511 }
512 if (clen < len)
513 break;
514 page_offset += len;
515 }
516
517 return tx;
518}
519
520static void ops_complete_biofill(void *stripe_head_ref)
521{
522 struct stripe_head *sh = stripe_head_ref;
523 struct bio *return_bi = NULL;
524 raid5_conf_t *conf = sh->raid_conf;
525 int i;
526
527 pr_debug("%s: stripe %llu\n", __func__,
528 (unsigned long long)sh->sector);
529
530
531 for (i = sh->disks; i--; ) {
532 struct r5dev *dev = &sh->dev[i];
533
534
535
536
537
538
539 if (test_and_clear_bit(R5_Wantfill, &dev->flags)) {
540 struct bio *rbi, *rbi2;
541
542
543
544
545
546 BUG_ON(!dev->read);
547 rbi = dev->read;
548 dev->read = NULL;
549 while (rbi && rbi->bi_sector <
550 dev->sector + STRIPE_SECTORS) {
551 rbi2 = r5_next_bio(rbi, dev->sector);
552 spin_lock_irq(&conf->device_lock);
553 if (--rbi->bi_phys_segments == 0) {
554 rbi->bi_next = return_bi;
555 return_bi = rbi;
556 }
557 spin_unlock_irq(&conf->device_lock);
558 rbi = rbi2;
559 }
560 }
561 }
562 set_bit(STRIPE_OP_BIOFILL, &sh->ops.complete);
563
564 return_io(return_bi);
565
566 set_bit(STRIPE_HANDLE, &sh->state);
567 release_stripe(sh);
568}
569
570static void ops_run_biofill(struct stripe_head *sh)
571{
572 struct dma_async_tx_descriptor *tx = NULL;
573 raid5_conf_t *conf = sh->raid_conf;
574 int i;
575
576 pr_debug("%s: stripe %llu\n", __func__,
577 (unsigned long long)sh->sector);
578
579 for (i = sh->disks; i--; ) {
580 struct r5dev *dev = &sh->dev[i];
581 if (test_bit(R5_Wantfill, &dev->flags)) {
582 struct bio *rbi;
583 spin_lock_irq(&conf->device_lock);
584 dev->read = rbi = dev->toread;
585 dev->toread = NULL;
586 spin_unlock_irq(&conf->device_lock);
587 while (rbi && rbi->bi_sector <
588 dev->sector + STRIPE_SECTORS) {
589 tx = async_copy_data(0, rbi, dev->page,
590 dev->sector, tx);
591 rbi = r5_next_bio(rbi, dev->sector);
592 }
593 }
594 }
595
596 atomic_inc(&sh->count);
597 async_trigger_callback(ASYNC_TX_DEP_ACK | ASYNC_TX_ACK, tx,
598 ops_complete_biofill, sh);
599}
600
601static void ops_complete_compute5(void *stripe_head_ref)
602{
603 struct stripe_head *sh = stripe_head_ref;
604 int target = sh->ops.target;
605 struct r5dev *tgt = &sh->dev[target];
606
607 pr_debug("%s: stripe %llu\n", __func__,
608 (unsigned long long)sh->sector);
609
610 set_bit(R5_UPTODATE, &tgt->flags);
611 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
612 clear_bit(R5_Wantcompute, &tgt->flags);
613 set_bit(STRIPE_OP_COMPUTE_BLK, &sh->ops.complete);
614 set_bit(STRIPE_HANDLE, &sh->state);
615 release_stripe(sh);
616}
617
618static struct dma_async_tx_descriptor *
619ops_run_compute5(struct stripe_head *sh, unsigned long pending)
620{
621
622 int disks = sh->disks;
623 struct page *xor_srcs[disks];
624 int target = sh->ops.target;
625 struct r5dev *tgt = &sh->dev[target];
626 struct page *xor_dest = tgt->page;
627 int count = 0;
628 struct dma_async_tx_descriptor *tx;
629 int i;
630
631 pr_debug("%s: stripe %llu block: %d\n",
632 __func__, (unsigned long long)sh->sector, target);
633 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
634
635 for (i = disks; i--; )
636 if (i != target)
637 xor_srcs[count++] = sh->dev[i].page;
638
639 atomic_inc(&sh->count);
640
641 if (unlikely(count == 1))
642 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE,
643 0, NULL, ops_complete_compute5, sh);
644 else
645 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE,
646 ASYNC_TX_XOR_ZERO_DST, NULL,
647 ops_complete_compute5, sh);
648
649
650 if (tx && !test_bit(STRIPE_OP_POSTXOR, &pending))
651 async_tx_ack(tx);
652
653 return tx;
654}
655
656static void ops_complete_prexor(void *stripe_head_ref)
657{
658 struct stripe_head *sh = stripe_head_ref;
659
660 pr_debug("%s: stripe %llu\n", __func__,
661 (unsigned long long)sh->sector);
662
663 set_bit(STRIPE_OP_PREXOR, &sh->ops.complete);
664}
665
666static struct dma_async_tx_descriptor *
667ops_run_prexor(struct stripe_head *sh, struct dma_async_tx_descriptor *tx)
668{
669
670 int disks = sh->disks;
671 struct page *xor_srcs[disks];
672 int count = 0, pd_idx = sh->pd_idx, i;
673
674
675 struct page *xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
676
677 pr_debug("%s: stripe %llu\n", __func__,
678 (unsigned long long)sh->sector);
679
680 for (i = disks; i--; ) {
681 struct r5dev *dev = &sh->dev[i];
682
683 if (dev->towrite && test_bit(R5_Wantprexor, &dev->flags))
684 xor_srcs[count++] = dev->page;
685 }
686
687 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE,
688 ASYNC_TX_DEP_ACK | ASYNC_TX_XOR_DROP_DST, tx,
689 ops_complete_prexor, sh);
690
691 return tx;
692}
693
694static struct dma_async_tx_descriptor *
695ops_run_biodrain(struct stripe_head *sh, struct dma_async_tx_descriptor *tx,
696 unsigned long pending)
697{
698 int disks = sh->disks;
699 int pd_idx = sh->pd_idx, i;
700
701
702
703
704 int prexor = test_bit(STRIPE_OP_PREXOR, &pending);
705
706 pr_debug("%s: stripe %llu\n", __func__,
707 (unsigned long long)sh->sector);
708
709 for (i = disks; i--; ) {
710 struct r5dev *dev = &sh->dev[i];
711 struct bio *chosen;
712 int towrite;
713
714 towrite = 0;
715 if (prexor) {
716 if (dev->towrite &&
717 test_bit(R5_Wantprexor, &dev->flags))
718 towrite = 1;
719 } else {
720 if (i != pd_idx && dev->towrite &&
721 test_bit(R5_LOCKED, &dev->flags))
722 towrite = 1;
723 }
724
725 if (towrite) {
726 struct bio *wbi;
727
728 spin_lock(&sh->lock);
729 chosen = dev->towrite;
730 dev->towrite = NULL;
731 BUG_ON(dev->written);
732 wbi = dev->written = chosen;
733 spin_unlock(&sh->lock);
734
735 while (wbi && wbi->bi_sector <
736 dev->sector + STRIPE_SECTORS) {
737 tx = async_copy_data(1, wbi, dev->page,
738 dev->sector, tx);
739 wbi = r5_next_bio(wbi, dev->sector);
740 }
741 }
742 }
743
744 return tx;
745}
746
747static void ops_complete_postxor(void *stripe_head_ref)
748{
749 struct stripe_head *sh = stripe_head_ref;
750
751 pr_debug("%s: stripe %llu\n", __func__,
752 (unsigned long long)sh->sector);
753
754 set_bit(STRIPE_OP_POSTXOR, &sh->ops.complete);
755 set_bit(STRIPE_HANDLE, &sh->state);
756 release_stripe(sh);
757}
758
759static void ops_complete_write(void *stripe_head_ref)
760{
761 struct stripe_head *sh = stripe_head_ref;
762 int disks = sh->disks, i, pd_idx = sh->pd_idx;
763
764 pr_debug("%s: stripe %llu\n", __func__,
765 (unsigned long long)sh->sector);
766
767 for (i = disks; i--; ) {
768 struct r5dev *dev = &sh->dev[i];
769 if (dev->written || i == pd_idx)
770 set_bit(R5_UPTODATE, &dev->flags);
771 }
772
773 set_bit(STRIPE_OP_BIODRAIN, &sh->ops.complete);
774 set_bit(STRIPE_OP_POSTXOR, &sh->ops.complete);
775
776 set_bit(STRIPE_HANDLE, &sh->state);
777 release_stripe(sh);
778}
779
780static void
781ops_run_postxor(struct stripe_head *sh, struct dma_async_tx_descriptor *tx,
782 unsigned long pending)
783{
784
785 int disks = sh->disks;
786 struct page *xor_srcs[disks];
787
788 int count = 0, pd_idx = sh->pd_idx, i;
789 struct page *xor_dest;
790 int prexor = test_bit(STRIPE_OP_PREXOR, &pending);
791 unsigned long flags;
792 dma_async_tx_callback callback;
793
794 pr_debug("%s: stripe %llu\n", __func__,
795 (unsigned long long)sh->sector);
796
797
798
799
800 if (prexor) {
801 xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
802 for (i = disks; i--; ) {
803 struct r5dev *dev = &sh->dev[i];
804 if (dev->written)
805 xor_srcs[count++] = dev->page;
806 }
807 } else {
808 xor_dest = sh->dev[pd_idx].page;
809 for (i = disks; i--; ) {
810 struct r5dev *dev = &sh->dev[i];
811 if (i != pd_idx)
812 xor_srcs[count++] = dev->page;
813 }
814 }
815
816
817 callback = test_bit(STRIPE_OP_BIODRAIN, &pending) ?
818 ops_complete_write : ops_complete_postxor;
819
820
821
822
823
824
825 flags = ASYNC_TX_DEP_ACK | ASYNC_TX_ACK |
826 (prexor ? ASYNC_TX_XOR_DROP_DST : ASYNC_TX_XOR_ZERO_DST);
827
828 atomic_inc(&sh->count);
829
830 if (unlikely(count == 1)) {
831 flags &= ~(ASYNC_TX_XOR_DROP_DST | ASYNC_TX_XOR_ZERO_DST);
832 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE,
833 flags, tx, callback, sh);
834 } else
835 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE,
836 flags, tx, callback, sh);
837}
838
839static void ops_complete_check(void *stripe_head_ref)
840{
841 struct stripe_head *sh = stripe_head_ref;
842 int pd_idx = sh->pd_idx;
843
844 pr_debug("%s: stripe %llu\n", __func__,
845 (unsigned long long)sh->sector);
846
847 if (test_and_clear_bit(STRIPE_OP_MOD_DMA_CHECK, &sh->ops.pending) &&
848 sh->ops.zero_sum_result == 0)
849 set_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
850
851 set_bit(STRIPE_OP_CHECK, &sh->ops.complete);
852 set_bit(STRIPE_HANDLE, &sh->state);
853 release_stripe(sh);
854}
855
856static void ops_run_check(struct stripe_head *sh)
857{
858
859 int disks = sh->disks;
860 struct page *xor_srcs[disks];
861 struct dma_async_tx_descriptor *tx;
862
863 int count = 0, pd_idx = sh->pd_idx, i;
864 struct page *xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
865
866 pr_debug("%s: stripe %llu\n", __func__,
867 (unsigned long long)sh->sector);
868
869 for (i = disks; i--; ) {
870 struct r5dev *dev = &sh->dev[i];
871 if (i != pd_idx)
872 xor_srcs[count++] = dev->page;
873 }
874
875 tx = async_xor_zero_sum(xor_dest, xor_srcs, 0, count, STRIPE_SIZE,
876 &sh->ops.zero_sum_result, 0, NULL, NULL, NULL);
877
878 if (tx)
879 set_bit(STRIPE_OP_MOD_DMA_CHECK, &sh->ops.pending);
880 else
881 clear_bit(STRIPE_OP_MOD_DMA_CHECK, &sh->ops.pending);
882
883 atomic_inc(&sh->count);
884 tx = async_trigger_callback(ASYNC_TX_DEP_ACK | ASYNC_TX_ACK, tx,
885 ops_complete_check, sh);
886}
887
888static void raid5_run_ops(struct stripe_head *sh, unsigned long pending)
889{
890 int overlap_clear = 0, i, disks = sh->disks;
891 struct dma_async_tx_descriptor *tx = NULL;
892
893 if (test_bit(STRIPE_OP_BIOFILL, &pending)) {
894 ops_run_biofill(sh);
895 overlap_clear++;
896 }
897
898 if (test_bit(STRIPE_OP_COMPUTE_BLK, &pending))
899 tx = ops_run_compute5(sh, pending);
900
901 if (test_bit(STRIPE_OP_PREXOR, &pending))
902 tx = ops_run_prexor(sh, tx);
903
904 if (test_bit(STRIPE_OP_BIODRAIN, &pending)) {
905 tx = ops_run_biodrain(sh, tx, pending);
906 overlap_clear++;
907 }
908
909 if (test_bit(STRIPE_OP_POSTXOR, &pending))
910 ops_run_postxor(sh, tx, pending);
911
912 if (test_bit(STRIPE_OP_CHECK, &pending))
913 ops_run_check(sh);
914
915 if (test_bit(STRIPE_OP_IO, &pending))
916 ops_run_io(sh);
917
918 if (overlap_clear)
919 for (i = disks; i--; ) {
920 struct r5dev *dev = &sh->dev[i];
921 if (test_and_clear_bit(R5_Overlap, &dev->flags))
922 wake_up(&sh->raid_conf->wait_for_overlap);
923 }
924}
925
926static int grow_one_stripe(raid5_conf_t *conf)
927{
928 struct stripe_head *sh;
929 sh = kmem_cache_alloc(conf->slab_cache, GFP_KERNEL);
930 if (!sh)
931 return 0;
932 memset(sh, 0, sizeof(*sh) + (conf->raid_disks-1)*sizeof(struct r5dev));
933 sh->raid_conf = conf;
934 spin_lock_init(&sh->lock);
935
936 if (grow_buffers(sh, conf->raid_disks)) {
937 shrink_buffers(sh, conf->raid_disks);
938 kmem_cache_free(conf->slab_cache, sh);
939 return 0;
940 }
941 sh->disks = conf->raid_disks;
942
943 atomic_set(&sh->count, 1);
944 atomic_inc(&conf->active_stripes);
945 INIT_LIST_HEAD(&sh->lru);
946 release_stripe(sh);
947 return 1;
948}
949
950static int grow_stripes(raid5_conf_t *conf, int num)
951{
952 struct kmem_cache *sc;
953 int devs = conf->raid_disks;
954
955 sprintf(conf->cache_name[0], "raid5-%s", mdname(conf->mddev));
956 sprintf(conf->cache_name[1], "raid5-%s-alt", mdname(conf->mddev));
957 conf->active_name = 0;
958 sc = kmem_cache_create(conf->cache_name[conf->active_name],
959 sizeof(struct stripe_head)+(devs-1)*sizeof(struct r5dev),
960 0, 0, NULL);
961 if (!sc)
962 return 1;
963 conf->slab_cache = sc;
964 conf->pool_size = devs;
965 while (num--)
966 if (!grow_one_stripe(conf))
967 return 1;
968 return 0;
969}
970
971#ifdef CONFIG_MD_RAID5_RESHAPE
972static int resize_stripes(raid5_conf_t *conf, int newsize)
973{
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997 struct stripe_head *osh, *nsh;
998 LIST_HEAD(newstripes);
999 struct disk_info *ndisks;
1000 int err = 0;
1001 struct kmem_cache *sc;
1002 int i;
1003
1004 if (newsize <= conf->pool_size)
1005 return 0;
1006
1007 md_allow_write(conf->mddev);
1008
1009
1010 sc = kmem_cache_create(conf->cache_name[1-conf->active_name],
1011 sizeof(struct stripe_head)+(newsize-1)*sizeof(struct r5dev),
1012 0, 0, NULL);
1013 if (!sc)
1014 return -ENOMEM;
1015
1016 for (i = conf->max_nr_stripes; i; i--) {
1017 nsh = kmem_cache_alloc(sc, GFP_KERNEL);
1018 if (!nsh)
1019 break;
1020
1021 memset(nsh, 0, sizeof(*nsh) + (newsize-1)*sizeof(struct r5dev));
1022
1023 nsh->raid_conf = conf;
1024 spin_lock_init(&nsh->lock);
1025
1026 list_add(&nsh->lru, &newstripes);
1027 }
1028 if (i) {
1029
1030 while (!list_empty(&newstripes)) {
1031 nsh = list_entry(newstripes.next, struct stripe_head, lru);
1032 list_del(&nsh->lru);
1033 kmem_cache_free(sc, nsh);
1034 }
1035 kmem_cache_destroy(sc);
1036 return -ENOMEM;
1037 }
1038
1039
1040
1041
1042 list_for_each_entry(nsh, &newstripes, lru) {
1043 spin_lock_irq(&conf->device_lock);
1044 wait_event_lock_irq(conf->wait_for_stripe,
1045 !list_empty(&conf->inactive_list),
1046 conf->device_lock,
1047 unplug_slaves(conf->mddev)
1048 );
1049 osh = get_free_stripe(conf);
1050 spin_unlock_irq(&conf->device_lock);
1051 atomic_set(&nsh->count, 1);
1052 for(i=0; i<conf->pool_size; i++)
1053 nsh->dev[i].page = osh->dev[i].page;
1054 for( ; i<newsize; i++)
1055 nsh->dev[i].page = NULL;
1056 kmem_cache_free(conf->slab_cache, osh);
1057 }
1058 kmem_cache_destroy(conf->slab_cache);
1059
1060
1061
1062
1063
1064
1065 ndisks = kzalloc(newsize * sizeof(struct disk_info), GFP_NOIO);
1066 if (ndisks) {
1067 for (i=0; i<conf->raid_disks; i++)
1068 ndisks[i] = conf->disks[i];
1069 kfree(conf->disks);
1070 conf->disks = ndisks;
1071 } else
1072 err = -ENOMEM;
1073
1074
1075 while(!list_empty(&newstripes)) {
1076 nsh = list_entry(newstripes.next, struct stripe_head, lru);
1077 list_del_init(&nsh->lru);
1078 for (i=conf->raid_disks; i < newsize; i++)
1079 if (nsh->dev[i].page == NULL) {
1080 struct page *p = alloc_page(GFP_NOIO);
1081 nsh->dev[i].page = p;
1082 if (!p)
1083 err = -ENOMEM;
1084 }
1085 release_stripe(nsh);
1086 }
1087
1088
1089 conf->slab_cache = sc;
1090 conf->active_name = 1-conf->active_name;
1091 conf->pool_size = newsize;
1092 return err;
1093}
1094#endif
1095
1096static int drop_one_stripe(raid5_conf_t *conf)
1097{
1098 struct stripe_head *sh;
1099
1100 spin_lock_irq(&conf->device_lock);
1101 sh = get_free_stripe(conf);
1102 spin_unlock_irq(&conf->device_lock);
1103 if (!sh)
1104 return 0;
1105 BUG_ON(atomic_read(&sh->count));
1106 shrink_buffers(sh, conf->pool_size);
1107 kmem_cache_free(conf->slab_cache, sh);
1108 atomic_dec(&conf->active_stripes);
1109 return 1;
1110}
1111
1112static void shrink_stripes(raid5_conf_t *conf)
1113{
1114 while (drop_one_stripe(conf))
1115 ;
1116
1117 if (conf->slab_cache)
1118 kmem_cache_destroy(conf->slab_cache);
1119 conf->slab_cache = NULL;
1120}
1121
1122static void raid5_end_read_request(struct bio * bi, int error)
1123{
1124 struct stripe_head *sh = bi->bi_private;
1125 raid5_conf_t *conf = sh->raid_conf;
1126 int disks = sh->disks, i;
1127 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
1128 char b[BDEVNAME_SIZE];
1129 mdk_rdev_t *rdev;
1130
1131
1132 for (i=0 ; i<disks; i++)
1133 if (bi == &sh->dev[i].req)
1134 break;
1135
1136 pr_debug("end_read_request %llu/%d, count: %d, uptodate %d.\n",
1137 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
1138 uptodate);
1139 if (i == disks) {
1140 BUG();
1141 return;
1142 }
1143
1144 if (uptodate) {
1145 set_bit(R5_UPTODATE, &sh->dev[i].flags);
1146 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
1147 rdev = conf->disks[i].rdev;
1148 printk_rl(KERN_INFO "raid5:%s: read error corrected"
1149 " (%lu sectors at %llu on %s)\n",
1150 mdname(conf->mddev), STRIPE_SECTORS,
1151 (unsigned long long)(sh->sector
1152 + rdev->data_offset),
1153 bdevname(rdev->bdev, b));
1154 clear_bit(R5_ReadError, &sh->dev[i].flags);
1155 clear_bit(R5_ReWrite, &sh->dev[i].flags);
1156 }
1157 if (atomic_read(&conf->disks[i].rdev->read_errors))
1158 atomic_set(&conf->disks[i].rdev->read_errors, 0);
1159 } else {
1160 const char *bdn = bdevname(conf->disks[i].rdev->bdev, b);
1161 int retry = 0;
1162 rdev = conf->disks[i].rdev;
1163
1164 clear_bit(R5_UPTODATE, &sh->dev[i].flags);
1165 atomic_inc(&rdev->read_errors);
1166 if (conf->mddev->degraded)
1167 printk_rl(KERN_WARNING
1168 "raid5:%s: read error not correctable "
1169 "(sector %llu on %s).\n",
1170 mdname(conf->mddev),
1171 (unsigned long long)(sh->sector
1172 + rdev->data_offset),
1173 bdn);
1174 else if (test_bit(R5_ReWrite, &sh->dev[i].flags))
1175
1176 printk_rl(KERN_WARNING
1177 "raid5:%s: read error NOT corrected!! "
1178 "(sector %llu on %s).\n",
1179 mdname(conf->mddev),
1180 (unsigned long long)(sh->sector
1181 + rdev->data_offset),
1182 bdn);
1183 else if (atomic_read(&rdev->read_errors)
1184 > conf->max_nr_stripes)
1185 printk(KERN_WARNING
1186 "raid5:%s: Too many read errors, failing device %s.\n",
1187 mdname(conf->mddev), bdn);
1188 else
1189 retry = 1;
1190 if (retry)
1191 set_bit(R5_ReadError, &sh->dev[i].flags);
1192 else {
1193 clear_bit(R5_ReadError, &sh->dev[i].flags);
1194 clear_bit(R5_ReWrite, &sh->dev[i].flags);
1195 md_error(conf->mddev, rdev);
1196 }
1197 }
1198 rdev_dec_pending(conf->disks[i].rdev, conf->mddev);
1199 clear_bit(R5_LOCKED, &sh->dev[i].flags);
1200 set_bit(STRIPE_HANDLE, &sh->state);
1201 release_stripe(sh);
1202}
1203
1204static void raid5_end_write_request (struct bio *bi, int error)
1205{
1206 struct stripe_head *sh = bi->bi_private;
1207 raid5_conf_t *conf = sh->raid_conf;
1208 int disks = sh->disks, i;
1209 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
1210
1211 for (i=0 ; i<disks; i++)
1212 if (bi == &sh->dev[i].req)
1213 break;
1214
1215 pr_debug("end_write_request %llu/%d, count %d, uptodate: %d.\n",
1216 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
1217 uptodate);
1218 if (i == disks) {
1219 BUG();
1220 return;
1221 }
1222
1223 if (!uptodate)
1224 md_error(conf->mddev, conf->disks[i].rdev);
1225
1226 rdev_dec_pending(conf->disks[i].rdev, conf->mddev);
1227
1228 clear_bit(R5_LOCKED, &sh->dev[i].flags);
1229 set_bit(STRIPE_HANDLE, &sh->state);
1230 release_stripe(sh);
1231}
1232
1233
1234static sector_t compute_blocknr(struct stripe_head *sh, int i);
1235
1236static void raid5_build_block (struct stripe_head *sh, int i)
1237{
1238 struct r5dev *dev = &sh->dev[i];
1239
1240 bio_init(&dev->req);
1241 dev->req.bi_io_vec = &dev->vec;
1242 dev->req.bi_vcnt++;
1243 dev->req.bi_max_vecs++;
1244 dev->vec.bv_page = dev->page;
1245 dev->vec.bv_len = STRIPE_SIZE;
1246 dev->vec.bv_offset = 0;
1247
1248 dev->req.bi_sector = sh->sector;
1249 dev->req.bi_private = sh;
1250
1251 dev->flags = 0;
1252 dev->sector = compute_blocknr(sh, i);
1253}
1254
1255static void error(mddev_t *mddev, mdk_rdev_t *rdev)
1256{
1257 char b[BDEVNAME_SIZE];
1258 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
1259 pr_debug("raid5: error called\n");
1260
1261 if (!test_bit(Faulty, &rdev->flags)) {
1262 set_bit(MD_CHANGE_DEVS, &mddev->flags);
1263 if (test_and_clear_bit(In_sync, &rdev->flags)) {
1264 unsigned long flags;
1265 spin_lock_irqsave(&conf->device_lock, flags);
1266 mddev->degraded++;
1267 spin_unlock_irqrestore(&conf->device_lock, flags);
1268
1269
1270
1271 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
1272 }
1273 set_bit(Faulty, &rdev->flags);
1274 printk (KERN_ALERT
1275 "raid5: Disk failure on %s, disabling device.\n"
1276 "raid5: Operation continuing on %d devices.\n",
1277 bdevname(rdev->bdev,b), conf->raid_disks - mddev->degraded);
1278 }
1279}
1280
1281
1282
1283
1284
1285static sector_t raid5_compute_sector(sector_t r_sector, unsigned int raid_disks,
1286 unsigned int data_disks, unsigned int * dd_idx,
1287 unsigned int * pd_idx, raid5_conf_t *conf)
1288{
1289 long stripe;
1290 unsigned long chunk_number;
1291 unsigned int chunk_offset;
1292 sector_t new_sector;
1293 int sectors_per_chunk = conf->chunk_size >> 9;
1294
1295
1296
1297
1298
1299
1300 chunk_offset = sector_div(r_sector, sectors_per_chunk);
1301 chunk_number = r_sector;
1302 BUG_ON(r_sector != chunk_number);
1303
1304
1305
1306
1307 stripe = chunk_number / data_disks;
1308
1309
1310
1311
1312 *dd_idx = chunk_number % data_disks;
1313
1314
1315
1316
1317 switch(conf->level) {
1318 case 4:
1319 *pd_idx = data_disks;
1320 break;
1321 case 5:
1322 switch (conf->algorithm) {
1323 case ALGORITHM_LEFT_ASYMMETRIC:
1324 *pd_idx = data_disks - stripe % raid_disks;
1325 if (*dd_idx >= *pd_idx)
1326 (*dd_idx)++;
1327 break;
1328 case ALGORITHM_RIGHT_ASYMMETRIC:
1329 *pd_idx = stripe % raid_disks;
1330 if (*dd_idx >= *pd_idx)
1331 (*dd_idx)++;
1332 break;
1333 case ALGORITHM_LEFT_SYMMETRIC:
1334 *pd_idx = data_disks - stripe % raid_disks;
1335 *dd_idx = (*pd_idx + 1 + *dd_idx) % raid_disks;
1336 break;
1337 case ALGORITHM_RIGHT_SYMMETRIC:
1338 *pd_idx = stripe % raid_disks;
1339 *dd_idx = (*pd_idx + 1 + *dd_idx) % raid_disks;
1340 break;
1341 default:
1342 printk(KERN_ERR "raid5: unsupported algorithm %d\n",
1343 conf->algorithm);
1344 }
1345 break;
1346 case 6:
1347
1348
1349 switch (conf->algorithm) {
1350 case ALGORITHM_LEFT_ASYMMETRIC:
1351 *pd_idx = raid_disks - 1 - (stripe % raid_disks);
1352 if (*pd_idx == raid_disks-1)
1353 (*dd_idx)++;
1354 else if (*dd_idx >= *pd_idx)
1355 (*dd_idx) += 2;
1356 break;
1357 case ALGORITHM_RIGHT_ASYMMETRIC:
1358 *pd_idx = stripe % raid_disks;
1359 if (*pd_idx == raid_disks-1)
1360 (*dd_idx)++;
1361 else if (*dd_idx >= *pd_idx)
1362 (*dd_idx) += 2;
1363 break;
1364 case ALGORITHM_LEFT_SYMMETRIC:
1365 *pd_idx = raid_disks - 1 - (stripe % raid_disks);
1366 *dd_idx = (*pd_idx + 2 + *dd_idx) % raid_disks;
1367 break;
1368 case ALGORITHM_RIGHT_SYMMETRIC:
1369 *pd_idx = stripe % raid_disks;
1370 *dd_idx = (*pd_idx + 2 + *dd_idx) % raid_disks;
1371 break;
1372 default:
1373 printk (KERN_CRIT "raid6: unsupported algorithm %d\n",
1374 conf->algorithm);
1375 }
1376 break;
1377 }
1378
1379
1380
1381
1382 new_sector = (sector_t)stripe * sectors_per_chunk + chunk_offset;
1383 return new_sector;
1384}
1385
1386
1387static sector_t compute_blocknr(struct stripe_head *sh, int i)
1388{
1389 raid5_conf_t *conf = sh->raid_conf;
1390 int raid_disks = sh->disks;
1391 int data_disks = raid_disks - conf->max_degraded;
1392 sector_t new_sector = sh->sector, check;
1393 int sectors_per_chunk = conf->chunk_size >> 9;
1394 sector_t stripe;
1395 int chunk_offset;
1396 int chunk_number, dummy1, dummy2, dd_idx = i;
1397 sector_t r_sector;
1398
1399
1400 chunk_offset = sector_div(new_sector, sectors_per_chunk);
1401 stripe = new_sector;
1402 BUG_ON(new_sector != stripe);
1403
1404 if (i == sh->pd_idx)
1405 return 0;
1406 switch(conf->level) {
1407 case 4: break;
1408 case 5:
1409 switch (conf->algorithm) {
1410 case ALGORITHM_LEFT_ASYMMETRIC:
1411 case ALGORITHM_RIGHT_ASYMMETRIC:
1412 if (i > sh->pd_idx)
1413 i--;
1414 break;
1415 case ALGORITHM_LEFT_SYMMETRIC:
1416 case ALGORITHM_RIGHT_SYMMETRIC:
1417 if (i < sh->pd_idx)
1418 i += raid_disks;
1419 i -= (sh->pd_idx + 1);
1420 break;
1421 default:
1422 printk(KERN_ERR "raid5: unsupported algorithm %d\n",
1423 conf->algorithm);
1424 }
1425 break;
1426 case 6:
1427 if (i == raid6_next_disk(sh->pd_idx, raid_disks))
1428 return 0;
1429 switch (conf->algorithm) {
1430 case ALGORITHM_LEFT_ASYMMETRIC:
1431 case ALGORITHM_RIGHT_ASYMMETRIC:
1432 if (sh->pd_idx == raid_disks-1)
1433 i--;
1434 else if (i > sh->pd_idx)
1435 i -= 2;
1436 break;
1437 case ALGORITHM_LEFT_SYMMETRIC:
1438 case ALGORITHM_RIGHT_SYMMETRIC:
1439 if (sh->pd_idx == raid_disks-1)
1440 i--;
1441 else {
1442
1443 if (i < sh->pd_idx)
1444 i += raid_disks;
1445 i -= (sh->pd_idx + 2);
1446 }
1447 break;
1448 default:
1449 printk (KERN_CRIT "raid6: unsupported algorithm %d\n",
1450 conf->algorithm);
1451 }
1452 break;
1453 }
1454
1455 chunk_number = stripe * data_disks + i;
1456 r_sector = (sector_t)chunk_number * sectors_per_chunk + chunk_offset;
1457
1458 check = raid5_compute_sector (r_sector, raid_disks, data_disks, &dummy1, &dummy2, conf);
1459 if (check != sh->sector || dummy1 != dd_idx || dummy2 != sh->pd_idx) {
1460 printk(KERN_ERR "compute_blocknr: map not correct\n");
1461 return 0;
1462 }
1463 return r_sector;
1464}
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475static void copy_data(int frombio, struct bio *bio,
1476 struct page *page,
1477 sector_t sector)
1478{
1479 char *pa = page_address(page);
1480 struct bio_vec *bvl;
1481 int i;
1482 int page_offset;
1483
1484 if (bio->bi_sector >= sector)
1485 page_offset = (signed)(bio->bi_sector - sector) * 512;
1486 else
1487 page_offset = (signed)(sector - bio->bi_sector) * -512;
1488 bio_for_each_segment(bvl, bio, i) {
1489 int len = bio_iovec_idx(bio,i)->bv_len;
1490 int clen;
1491 int b_offset = 0;
1492
1493 if (page_offset < 0) {
1494 b_offset = -page_offset;
1495 page_offset += b_offset;
1496 len -= b_offset;
1497 }
1498
1499 if (len > 0 && page_offset + len > STRIPE_SIZE)
1500 clen = STRIPE_SIZE - page_offset;
1501 else clen = len;
1502
1503 if (clen > 0) {
1504 char *ba = __bio_kmap_atomic(bio, i, KM_USER0);
1505 if (frombio)
1506 memcpy(pa+page_offset, ba+b_offset, clen);
1507 else
1508 memcpy(ba+b_offset, pa+page_offset, clen);
1509 __bio_kunmap_atomic(ba, KM_USER0);
1510 }
1511 if (clen < len)
1512 break;
1513 page_offset += len;
1514 }
1515}
1516
1517#define check_xor() do { \
1518 if (count == MAX_XOR_BLOCKS) { \
1519 xor_blocks(count, STRIPE_SIZE, dest, ptr);\
1520 count = 0; \
1521 } \
1522 } while(0)
1523
1524static void compute_parity6(struct stripe_head *sh, int method)
1525{
1526 raid6_conf_t *conf = sh->raid_conf;
1527 int i, pd_idx = sh->pd_idx, qd_idx, d0_idx, disks = sh->disks, count;
1528 struct bio *chosen;
1529
1530 void *ptrs[disks];
1531
1532 qd_idx = raid6_next_disk(pd_idx, disks);
1533 d0_idx = raid6_next_disk(qd_idx, disks);
1534
1535 pr_debug("compute_parity, stripe %llu, method %d\n",
1536 (unsigned long long)sh->sector, method);
1537
1538 switch(method) {
1539 case READ_MODIFY_WRITE:
1540 BUG();
1541 case RECONSTRUCT_WRITE:
1542 for (i= disks; i-- ;)
1543 if ( i != pd_idx && i != qd_idx && sh->dev[i].towrite ) {
1544 chosen = sh->dev[i].towrite;
1545 sh->dev[i].towrite = NULL;
1546
1547 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
1548 wake_up(&conf->wait_for_overlap);
1549
1550 BUG_ON(sh->dev[i].written);
1551 sh->dev[i].written = chosen;
1552 }
1553 break;
1554 case CHECK_PARITY:
1555 BUG();
1556 }
1557
1558 for (i = disks; i--;)
1559 if (sh->dev[i].written) {
1560 sector_t sector = sh->dev[i].sector;
1561 struct bio *wbi = sh->dev[i].written;
1562 while (wbi && wbi->bi_sector < sector + STRIPE_SECTORS) {
1563 copy_data(1, wbi, sh->dev[i].page, sector);
1564 wbi = r5_next_bio(wbi, sector);
1565 }
1566
1567 set_bit(R5_LOCKED, &sh->dev[i].flags);
1568 set_bit(R5_UPTODATE, &sh->dev[i].flags);
1569 }
1570
1571
1572
1573
1574
1575
1576
1577 count = 0;
1578 i = d0_idx;
1579 do {
1580 ptrs[count++] = page_address(sh->dev[i].page);
1581 if (count <= disks-2 && !test_bit(R5_UPTODATE, &sh->dev[i].flags))
1582 printk("block %d/%d not uptodate on parity calc\n", i,count);
1583 i = raid6_next_disk(i, disks);
1584 } while ( i != d0_idx );
1585
1586
1587
1588 raid6_call.gen_syndrome(disks, STRIPE_SIZE, ptrs);
1589
1590 switch(method) {
1591 case RECONSTRUCT_WRITE:
1592 set_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
1593 set_bit(R5_UPTODATE, &sh->dev[qd_idx].flags);
1594 set_bit(R5_LOCKED, &sh->dev[pd_idx].flags);
1595 set_bit(R5_LOCKED, &sh->dev[qd_idx].flags);
1596 break;
1597 case UPDATE_PARITY:
1598 set_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
1599 set_bit(R5_UPTODATE, &sh->dev[qd_idx].flags);
1600 break;
1601 }
1602}
1603
1604
1605
1606static void compute_block_1(struct stripe_head *sh, int dd_idx, int nozero)
1607{
1608 int i, count, disks = sh->disks;
1609 void *ptr[MAX_XOR_BLOCKS], *dest, *p;
1610 int pd_idx = sh->pd_idx;
1611 int qd_idx = raid6_next_disk(pd_idx, disks);
1612
1613 pr_debug("compute_block_1, stripe %llu, idx %d\n",
1614 (unsigned long long)sh->sector, dd_idx);
1615
1616 if ( dd_idx == qd_idx ) {
1617
1618 compute_parity6(sh, UPDATE_PARITY);
1619 } else {
1620 dest = page_address(sh->dev[dd_idx].page);
1621 if (!nozero) memset(dest, 0, STRIPE_SIZE);
1622 count = 0;
1623 for (i = disks ; i--; ) {
1624 if (i == dd_idx || i == qd_idx)
1625 continue;
1626 p = page_address(sh->dev[i].page);
1627 if (test_bit(R5_UPTODATE, &sh->dev[i].flags))
1628 ptr[count++] = p;
1629 else
1630 printk("compute_block() %d, stripe %llu, %d"
1631 " not present\n", dd_idx,
1632 (unsigned long long)sh->sector, i);
1633
1634 check_xor();
1635 }
1636 if (count)
1637 xor_blocks(count, STRIPE_SIZE, dest, ptr);
1638 if (!nozero) set_bit(R5_UPTODATE, &sh->dev[dd_idx].flags);
1639 else clear_bit(R5_UPTODATE, &sh->dev[dd_idx].flags);
1640 }
1641}
1642
1643
1644static void compute_block_2(struct stripe_head *sh, int dd_idx1, int dd_idx2)
1645{
1646 int i, count, disks = sh->disks;
1647 int pd_idx = sh->pd_idx;
1648 int qd_idx = raid6_next_disk(pd_idx, disks);
1649 int d0_idx = raid6_next_disk(qd_idx, disks);
1650 int faila, failb;
1651
1652
1653
1654 faila = (dd_idx1 < d0_idx) ? dd_idx1+(disks-d0_idx) : dd_idx1-d0_idx;
1655 failb = (dd_idx2 < d0_idx) ? dd_idx2+(disks-d0_idx) : dd_idx2-d0_idx;
1656
1657 BUG_ON(faila == failb);
1658 if ( failb < faila ) { int tmp = faila; faila = failb; failb = tmp; }
1659
1660 pr_debug("compute_block_2, stripe %llu, idx %d,%d (%d,%d)\n",
1661 (unsigned long long)sh->sector, dd_idx1, dd_idx2, faila, failb);
1662
1663 if ( failb == disks-1 ) {
1664
1665 if ( faila == disks-2 ) {
1666
1667 compute_parity6(sh, UPDATE_PARITY);
1668 return;
1669 } else {
1670
1671 compute_block_1(sh, (dd_idx1 == qd_idx) ? dd_idx2 : dd_idx1, 0);
1672 compute_parity6(sh, UPDATE_PARITY);
1673 return;
1674 }
1675 }
1676
1677
1678 {
1679
1680 void *ptrs[disks];
1681
1682 count = 0;
1683 i = d0_idx;
1684 do {
1685 ptrs[count++] = page_address(sh->dev[i].page);
1686 i = raid6_next_disk(i, disks);
1687 if (i != dd_idx1 && i != dd_idx2 &&
1688 !test_bit(R5_UPTODATE, &sh->dev[i].flags))
1689 printk("compute_2 with missing block %d/%d\n", count, i);
1690 } while ( i != d0_idx );
1691
1692 if ( failb == disks-2 ) {
1693
1694 raid6_datap_recov(disks, STRIPE_SIZE, faila, ptrs);
1695 } else {
1696
1697 raid6_2data_recov(disks, STRIPE_SIZE, faila, failb, ptrs);
1698 }
1699
1700
1701 set_bit(R5_UPTODATE, &sh->dev[dd_idx1].flags);
1702 set_bit(R5_UPTODATE, &sh->dev[dd_idx2].flags);
1703 }
1704}
1705
1706static int
1707handle_write_operations5(struct stripe_head *sh, int rcw, int expand)
1708{
1709 int i, pd_idx = sh->pd_idx, disks = sh->disks;
1710 int locked = 0;
1711
1712 if (rcw) {
1713
1714
1715
1716
1717 if (!expand) {
1718 set_bit(STRIPE_OP_BIODRAIN, &sh->ops.pending);
1719 sh->ops.count++;
1720 }
1721
1722 set_bit(STRIPE_OP_POSTXOR, &sh->ops.pending);
1723 sh->ops.count++;
1724
1725 for (i = disks; i--; ) {
1726 struct r5dev *dev = &sh->dev[i];
1727
1728 if (dev->towrite) {
1729 set_bit(R5_LOCKED, &dev->flags);
1730 if (!expand)
1731 clear_bit(R5_UPTODATE, &dev->flags);
1732 locked++;
1733 }
1734 }
1735 if (locked + 1 == disks)
1736 if (!test_and_set_bit(STRIPE_FULL_WRITE, &sh->state))
1737 atomic_inc(&sh->raid_conf->pending_full_writes);
1738 } else {
1739 BUG_ON(!(test_bit(R5_UPTODATE, &sh->dev[pd_idx].flags) ||
1740 test_bit(R5_Wantcompute, &sh->dev[pd_idx].flags)));
1741
1742 set_bit(STRIPE_OP_PREXOR, &sh->ops.pending);
1743 set_bit(STRIPE_OP_BIODRAIN, &sh->ops.pending);
1744 set_bit(STRIPE_OP_POSTXOR, &sh->ops.pending);
1745
1746 sh->ops.count += 3;
1747
1748 for (i = disks; i--; ) {
1749 struct r5dev *dev = &sh->dev[i];
1750 if (i == pd_idx)
1751 continue;
1752
1753
1754
1755
1756
1757
1758 if (dev->towrite &&
1759 (test_bit(R5_UPTODATE, &dev->flags) ||
1760 test_bit(R5_Wantcompute, &dev->flags))) {
1761 set_bit(R5_Wantprexor, &dev->flags);
1762 set_bit(R5_LOCKED, &dev->flags);
1763 clear_bit(R5_UPTODATE, &dev->flags);
1764 locked++;
1765 }
1766 }
1767 }
1768
1769
1770
1771
1772 set_bit(R5_LOCKED, &sh->dev[pd_idx].flags);
1773 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
1774 locked++;
1775
1776 pr_debug("%s: stripe %llu locked: %d pending: %lx\n",
1777 __func__, (unsigned long long)sh->sector,
1778 locked, sh->ops.pending);
1779
1780 return locked;
1781}
1782
1783
1784
1785
1786
1787
1788static int add_stripe_bio(struct stripe_head *sh, struct bio *bi, int dd_idx, int forwrite)
1789{
1790 struct bio **bip;
1791 raid5_conf_t *conf = sh->raid_conf;
1792 int firstwrite=0;
1793
1794 pr_debug("adding bh b#%llu to stripe s#%llu\n",
1795 (unsigned long long)bi->bi_sector,
1796 (unsigned long long)sh->sector);
1797
1798
1799 spin_lock(&sh->lock);
1800 spin_lock_irq(&conf->device_lock);
1801 if (forwrite) {
1802 bip = &sh->dev[dd_idx].towrite;
1803 if (*bip == NULL && sh->dev[dd_idx].written == NULL)
1804 firstwrite = 1;
1805 } else
1806 bip = &sh->dev[dd_idx].toread;
1807 while (*bip && (*bip)->bi_sector < bi->bi_sector) {
1808 if ((*bip)->bi_sector + ((*bip)->bi_size >> 9) > bi->bi_sector)
1809 goto overlap;
1810 bip = & (*bip)->bi_next;
1811 }
1812 if (*bip && (*bip)->bi_sector < bi->bi_sector + ((bi->bi_size)>>9))
1813 goto overlap;
1814
1815 BUG_ON(*bip && bi->bi_next && (*bip) != bi->bi_next);
1816 if (*bip)
1817 bi->bi_next = *bip;
1818 *bip = bi;
1819 bi->bi_phys_segments ++;
1820 spin_unlock_irq(&conf->device_lock);
1821 spin_unlock(&sh->lock);
1822
1823 pr_debug("added bi b#%llu to stripe s#%llu, disk %d.\n",
1824 (unsigned long long)bi->bi_sector,
1825 (unsigned long long)sh->sector, dd_idx);
1826
1827 if (conf->mddev->bitmap && firstwrite) {
1828 bitmap_startwrite(conf->mddev->bitmap, sh->sector,
1829 STRIPE_SECTORS, 0);
1830 sh->bm_seq = conf->seq_flush+1;
1831 set_bit(STRIPE_BIT_DELAY, &sh->state);
1832 }
1833
1834 if (forwrite) {
1835
1836 sector_t sector = sh->dev[dd_idx].sector;
1837 for (bi=sh->dev[dd_idx].towrite;
1838 sector < sh->dev[dd_idx].sector + STRIPE_SECTORS &&
1839 bi && bi->bi_sector <= sector;
1840 bi = r5_next_bio(bi, sh->dev[dd_idx].sector)) {
1841 if (bi->bi_sector + (bi->bi_size>>9) >= sector)
1842 sector = bi->bi_sector + (bi->bi_size>>9);
1843 }
1844 if (sector >= sh->dev[dd_idx].sector + STRIPE_SECTORS)
1845 set_bit(R5_OVERWRITE, &sh->dev[dd_idx].flags);
1846 }
1847 return 1;
1848
1849 overlap:
1850 set_bit(R5_Overlap, &sh->dev[dd_idx].flags);
1851 spin_unlock_irq(&conf->device_lock);
1852 spin_unlock(&sh->lock);
1853 return 0;
1854}
1855
1856static void end_reshape(raid5_conf_t *conf);
1857
1858static int page_is_zero(struct page *p)
1859{
1860 char *a = page_address(p);
1861 return ((*(u32*)a) == 0 &&
1862 memcmp(a, a+4, STRIPE_SIZE-4)==0);
1863}
1864
1865static int stripe_to_pdidx(sector_t stripe, raid5_conf_t *conf, int disks)
1866{
1867 int sectors_per_chunk = conf->chunk_size >> 9;
1868 int pd_idx, dd_idx;
1869 int chunk_offset = sector_div(stripe, sectors_per_chunk);
1870
1871 raid5_compute_sector(stripe * (disks - conf->max_degraded)
1872 *sectors_per_chunk + chunk_offset,
1873 disks, disks - conf->max_degraded,
1874 &dd_idx, &pd_idx, conf);
1875 return pd_idx;
1876}
1877
1878static void
1879handle_requests_to_failed_array(raid5_conf_t *conf, struct stripe_head *sh,
1880 struct stripe_head_state *s, int disks,
1881 struct bio **return_bi)
1882{
1883 int i;
1884 for (i = disks; i--; ) {
1885 struct bio *bi;
1886 int bitmap_end = 0;
1887
1888 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
1889 mdk_rdev_t *rdev;
1890 rcu_read_lock();
1891 rdev = rcu_dereference(conf->disks[i].rdev);
1892 if (rdev && test_bit(In_sync, &rdev->flags))
1893
1894 md_error(conf->mddev, rdev);
1895 rcu_read_unlock();
1896 }
1897 spin_lock_irq(&conf->device_lock);
1898
1899 bi = sh->dev[i].towrite;
1900 sh->dev[i].towrite = NULL;
1901 if (bi) {
1902 s->to_write--;
1903 bitmap_end = 1;
1904 }
1905
1906 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
1907 wake_up(&conf->wait_for_overlap);
1908
1909 while (bi && bi->bi_sector <
1910 sh->dev[i].sector + STRIPE_SECTORS) {
1911 struct bio *nextbi = r5_next_bio(bi, sh->dev[i].sector);
1912 clear_bit(BIO_UPTODATE, &bi->bi_flags);
1913 if (--bi->bi_phys_segments == 0) {
1914 md_write_end(conf->mddev);
1915 bi->bi_next = *return_bi;
1916 *return_bi = bi;
1917 }
1918 bi = nextbi;
1919 }
1920
1921 bi = sh->dev[i].written;
1922 sh->dev[i].written = NULL;
1923 if (bi) bitmap_end = 1;
1924 while (bi && bi->bi_sector <
1925 sh->dev[i].sector + STRIPE_SECTORS) {
1926 struct bio *bi2 = r5_next_bio(bi, sh->dev[i].sector);
1927 clear_bit(BIO_UPTODATE, &bi->bi_flags);
1928 if (--bi->bi_phys_segments == 0) {
1929 md_write_end(conf->mddev);
1930 bi->bi_next = *return_bi;
1931 *return_bi = bi;
1932 }
1933 bi = bi2;
1934 }
1935
1936
1937
1938
1939 if (!test_bit(R5_Wantfill, &sh->dev[i].flags) &&
1940 (!test_bit(R5_Insync, &sh->dev[i].flags) ||
1941 test_bit(R5_ReadError, &sh->dev[i].flags))) {
1942 bi = sh->dev[i].toread;
1943 sh->dev[i].toread = NULL;
1944 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
1945 wake_up(&conf->wait_for_overlap);
1946 if (bi) s->to_read--;
1947 while (bi && bi->bi_sector <
1948 sh->dev[i].sector + STRIPE_SECTORS) {
1949 struct bio *nextbi =
1950 r5_next_bio(bi, sh->dev[i].sector);
1951 clear_bit(BIO_UPTODATE, &bi->bi_flags);
1952 if (--bi->bi_phys_segments == 0) {
1953 bi->bi_next = *return_bi;
1954 *return_bi = bi;
1955 }
1956 bi = nextbi;
1957 }
1958 }
1959 spin_unlock_irq(&conf->device_lock);
1960 if (bitmap_end)
1961 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
1962 STRIPE_SECTORS, 0, 0);
1963 }
1964
1965 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
1966 if (atomic_dec_and_test(&conf->pending_full_writes))
1967 md_wakeup_thread(conf->mddev->thread);
1968}
1969
1970
1971
1972
1973static int __handle_issuing_new_read_requests5(struct stripe_head *sh,
1974 struct stripe_head_state *s, int disk_idx, int disks)
1975{
1976 struct r5dev *dev = &sh->dev[disk_idx];
1977 struct r5dev *failed_dev = &sh->dev[s->failed_num];
1978
1979
1980
1981
1982 if ((disk_idx == sh->pd_idx) &&
1983 test_bit(STRIPE_OP_CHECK, &sh->ops.pending))
1984 return ~0;
1985
1986
1987 if (!test_bit(R5_LOCKED, &dev->flags) &&
1988 !test_bit(R5_UPTODATE, &dev->flags) && (dev->toread ||
1989 (dev->towrite && !test_bit(R5_OVERWRITE, &dev->flags)) ||
1990 s->syncing || s->expanding || (s->failed &&
1991 (failed_dev->toread || (failed_dev->towrite &&
1992 !test_bit(R5_OVERWRITE, &failed_dev->flags)
1993 ))))) {
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004 if ((s->uptodate == disks - 1) &&
2005 (s->failed && disk_idx == s->failed_num) &&
2006 !test_bit(STRIPE_OP_CHECK, &sh->ops.pending)) {
2007 set_bit(STRIPE_OP_COMPUTE_BLK, &sh->ops.pending);
2008 set_bit(R5_Wantcompute, &dev->flags);
2009 sh->ops.target = disk_idx;
2010 s->req_compute = 1;
2011 sh->ops.count++;
2012
2013
2014
2015
2016
2017
2018 s->uptodate++;
2019 return 0;
2020 } else if (test_bit(R5_Insync, &dev->flags)) {
2021 set_bit(R5_LOCKED, &dev->flags);
2022 set_bit(R5_Wantread, &dev->flags);
2023 if (!test_and_set_bit(STRIPE_OP_IO, &sh->ops.pending))
2024 sh->ops.count++;
2025 s->locked++;
2026 pr_debug("Reading block %d (sync=%d)\n", disk_idx,
2027 s->syncing);
2028 }
2029 }
2030
2031 return ~0;
2032}
2033
2034static void handle_issuing_new_read_requests5(struct stripe_head *sh,
2035 struct stripe_head_state *s, int disks)
2036{
2037 int i;
2038
2039
2040
2041
2042
2043 if (test_bit(STRIPE_OP_COMPUTE_BLK, &sh->ops.complete) &&
2044 !test_bit(STRIPE_OP_MOD_REPAIR_PD, &sh->ops.pending)) {
2045 clear_bit(STRIPE_OP_COMPUTE_BLK, &sh->ops.complete);
2046 clear_bit(STRIPE_OP_COMPUTE_BLK, &sh->ops.ack);
2047 clear_bit(STRIPE_OP_COMPUTE_BLK, &sh->ops.pending);
2048 }
2049
2050
2051
2052
2053
2054 if (!test_bit(STRIPE_OP_COMPUTE_BLK, &sh->ops.pending) &&
2055 !test_bit(STRIPE_OP_PREXOR, &sh->ops.pending) &&
2056 !test_bit(STRIPE_OP_POSTXOR, &sh->ops.pending)) {
2057 for (i = disks; i--; )
2058 if (__handle_issuing_new_read_requests5(
2059 sh, s, i, disks) == 0)
2060 break;
2061 }
2062 set_bit(STRIPE_HANDLE, &sh->state);
2063}
2064
2065static void handle_issuing_new_read_requests6(struct stripe_head *sh,
2066 struct stripe_head_state *s, struct r6_state *r6s,
2067 int disks)
2068{
2069 int i;
2070 for (i = disks; i--; ) {
2071 struct r5dev *dev = &sh->dev[i];
2072 if (!test_bit(R5_LOCKED, &dev->flags) &&
2073 !test_bit(R5_UPTODATE, &dev->flags) &&
2074 (dev->toread || (dev->towrite &&
2075 !test_bit(R5_OVERWRITE, &dev->flags)) ||
2076 s->syncing || s->expanding ||
2077 (s->failed >= 1 &&
2078 (sh->dev[r6s->failed_num[0]].toread ||
2079 s->to_write)) ||
2080 (s->failed >= 2 &&
2081 (sh->dev[r6s->failed_num[1]].toread ||
2082 s->to_write)))) {
2083
2084
2085
2086 if ((s->uptodate == disks - 1) &&
2087 (s->failed && (i == r6s->failed_num[0] ||
2088 i == r6s->failed_num[1]))) {
2089 pr_debug("Computing stripe %llu block %d\n",
2090 (unsigned long long)sh->sector, i);
2091 compute_block_1(sh, i, 0);
2092 s->uptodate++;
2093 } else if ( s->uptodate == disks-2 && s->failed >= 2 ) {
2094
2095
2096
2097 int other;
2098 for (other = disks; other--; ) {
2099 if (other == i)
2100 continue;
2101 if (!test_bit(R5_UPTODATE,
2102 &sh->dev[other].flags))
2103 break;
2104 }
2105 BUG_ON(other < 0);
2106 pr_debug("Computing stripe %llu blocks %d,%d\n",
2107 (unsigned long long)sh->sector,
2108 i, other);
2109 compute_block_2(sh, i, other);
2110 s->uptodate += 2;
2111 } else if (test_bit(R5_Insync, &dev->flags)) {
2112 set_bit(R5_LOCKED, &dev->flags);
2113 set_bit(R5_Wantread, &dev->flags);
2114 s->locked++;
2115 pr_debug("Reading block %d (sync=%d)\n",
2116 i, s->syncing);
2117 }
2118 }
2119 }
2120 set_bit(STRIPE_HANDLE, &sh->state);
2121}
2122
2123
2124
2125
2126
2127
2128
2129static void handle_completed_write_requests(raid5_conf_t *conf,
2130 struct stripe_head *sh, int disks, struct bio **return_bi)
2131{
2132 int i;
2133 struct r5dev *dev;
2134
2135 for (i = disks; i--; )
2136 if (sh->dev[i].written) {
2137 dev = &sh->dev[i];
2138 if (!test_bit(R5_LOCKED, &dev->flags) &&
2139 test_bit(R5_UPTODATE, &dev->flags)) {
2140
2141 struct bio *wbi, *wbi2;
2142 int bitmap_end = 0;
2143 pr_debug("Return write for disc %d\n", i);
2144 spin_lock_irq(&conf->device_lock);
2145 wbi = dev->written;
2146 dev->written = NULL;
2147 while (wbi && wbi->bi_sector <
2148 dev->sector + STRIPE_SECTORS) {
2149 wbi2 = r5_next_bio(wbi, dev->sector);
2150 if (--wbi->bi_phys_segments == 0) {
2151 md_write_end(conf->mddev);
2152 wbi->bi_next = *return_bi;
2153 *return_bi = wbi;
2154 }
2155 wbi = wbi2;
2156 }
2157 if (dev->towrite == NULL)
2158 bitmap_end = 1;
2159 spin_unlock_irq(&conf->device_lock);
2160 if (bitmap_end)
2161 bitmap_endwrite(conf->mddev->bitmap,
2162 sh->sector,
2163 STRIPE_SECTORS,
2164 !test_bit(STRIPE_DEGRADED, &sh->state),
2165 0);
2166 }
2167 }
2168
2169 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
2170 if (atomic_dec_and_test(&conf->pending_full_writes))
2171 md_wakeup_thread(conf->mddev->thread);
2172}
2173
2174static void handle_issuing_new_write_requests5(raid5_conf_t *conf,
2175 struct stripe_head *sh, struct stripe_head_state *s, int disks)
2176{
2177 int rmw = 0, rcw = 0, i;
2178 for (i = disks; i--; ) {
2179
2180 struct r5dev *dev = &sh->dev[i];
2181 if ((dev->towrite || i == sh->pd_idx) &&
2182 !test_bit(R5_LOCKED, &dev->flags) &&
2183 !(test_bit(R5_UPTODATE, &dev->flags) ||
2184 test_bit(R5_Wantcompute, &dev->flags))) {
2185 if (test_bit(R5_Insync, &dev->flags))
2186 rmw++;
2187 else
2188 rmw += 2*disks;
2189 }
2190
2191 if (!test_bit(R5_OVERWRITE, &dev->flags) && i != sh->pd_idx &&
2192 !test_bit(R5_LOCKED, &dev->flags) &&
2193 !(test_bit(R5_UPTODATE, &dev->flags) ||
2194 test_bit(R5_Wantcompute, &dev->flags))) {
2195 if (test_bit(R5_Insync, &dev->flags)) rcw++;
2196 else
2197 rcw += 2*disks;
2198 }
2199 }
2200 pr_debug("for sector %llu, rmw=%d rcw=%d\n",
2201 (unsigned long long)sh->sector, rmw, rcw);
2202 set_bit(STRIPE_HANDLE, &sh->state);
2203 if (rmw < rcw && rmw > 0)
2204
2205 for (i = disks; i--; ) {
2206 struct r5dev *dev = &sh->dev[i];
2207 if ((dev->towrite || i == sh->pd_idx) &&
2208 !test_bit(R5_LOCKED, &dev->flags) &&
2209 !(test_bit(R5_UPTODATE, &dev->flags) ||
2210 test_bit(R5_Wantcompute, &dev->flags)) &&
2211 test_bit(R5_Insync, &dev->flags)) {
2212 if (
2213 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
2214 pr_debug("Read_old block "
2215 "%d for r-m-w\n", i);
2216 set_bit(R5_LOCKED, &dev->flags);
2217 set_bit(R5_Wantread, &dev->flags);
2218 if (!test_and_set_bit(
2219 STRIPE_OP_IO, &sh->ops.pending))
2220 sh->ops.count++;
2221 s->locked++;
2222 } else {
2223 set_bit(STRIPE_DELAYED, &sh->state);
2224 set_bit(STRIPE_HANDLE, &sh->state);
2225 }
2226 }
2227 }
2228 if (rcw <= rmw && rcw > 0)
2229
2230 for (i = disks; i--; ) {
2231 struct r5dev *dev = &sh->dev[i];
2232 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
2233 i != sh->pd_idx &&
2234 !test_bit(R5_LOCKED, &dev->flags) &&
2235 !(test_bit(R5_UPTODATE, &dev->flags) ||
2236 test_bit(R5_Wantcompute, &dev->flags)) &&
2237 test_bit(R5_Insync, &dev->flags)) {
2238 if (
2239 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
2240 pr_debug("Read_old block "
2241 "%d for Reconstruct\n", i);
2242 set_bit(R5_LOCKED, &dev->flags);
2243 set_bit(R5_Wantread, &dev->flags);
2244 if (!test_and_set_bit(
2245 STRIPE_OP_IO, &sh->ops.pending))
2246 sh->ops.count++;
2247 s->locked++;
2248 } else {
2249 set_bit(STRIPE_DELAYED, &sh->state);
2250 set_bit(STRIPE_HANDLE, &sh->state);
2251 }
2252 }
2253 }
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264 if ((s->req_compute ||
2265 !test_bit(STRIPE_OP_COMPUTE_BLK, &sh->ops.pending)) &&
2266 (s->locked == 0 && (rcw == 0 || rmw == 0) &&
2267 !test_bit(STRIPE_BIT_DELAY, &sh->state)))
2268 s->locked += handle_write_operations5(sh, rcw == 0, 0);
2269}
2270
2271static void handle_issuing_new_write_requests6(raid5_conf_t *conf,
2272 struct stripe_head *sh, struct stripe_head_state *s,
2273 struct r6_state *r6s, int disks)
2274{
2275 int rcw = 0, must_compute = 0, pd_idx = sh->pd_idx, i;
2276 int qd_idx = r6s->qd_idx;
2277 for (i = disks; i--; ) {
2278 struct r5dev *dev = &sh->dev[i];
2279
2280 if (!test_bit(R5_OVERWRITE, &dev->flags)
2281 && i != pd_idx && i != qd_idx
2282 && (!test_bit(R5_LOCKED, &dev->flags)
2283 ) &&
2284 !test_bit(R5_UPTODATE, &dev->flags)) {
2285 if (test_bit(R5_Insync, &dev->flags)) rcw++;
2286 else {
2287 pr_debug("raid6: must_compute: "
2288 "disk %d flags=%#lx\n", i, dev->flags);
2289 must_compute++;
2290 }
2291 }
2292 }
2293 pr_debug("for sector %llu, rcw=%d, must_compute=%d\n",
2294 (unsigned long long)sh->sector, rcw, must_compute);
2295 set_bit(STRIPE_HANDLE, &sh->state);
2296
2297 if (rcw > 0)
2298
2299 for (i = disks; i--; ) {
2300 struct r5dev *dev = &sh->dev[i];
2301 if (!test_bit(R5_OVERWRITE, &dev->flags)
2302 && !(s->failed == 0 && (i == pd_idx || i == qd_idx))
2303 && !test_bit(R5_LOCKED, &dev->flags) &&
2304 !test_bit(R5_UPTODATE, &dev->flags) &&
2305 test_bit(R5_Insync, &dev->flags)) {
2306 if (
2307 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
2308 pr_debug("Read_old stripe %llu "
2309 "block %d for Reconstruct\n",
2310 (unsigned long long)sh->sector, i);
2311 set_bit(R5_LOCKED, &dev->flags);
2312 set_bit(R5_Wantread, &dev->flags);
2313 s->locked++;
2314 } else {
2315 pr_debug("Request delayed stripe %llu "
2316 "block %d for Reconstruct\n",
2317 (unsigned long long)sh->sector, i);
2318 set_bit(STRIPE_DELAYED, &sh->state);
2319 set_bit(STRIPE_HANDLE, &sh->state);
2320 }
2321 }
2322 }
2323
2324
2325
2326 if (s->locked == 0 && rcw == 0 &&
2327 !test_bit(STRIPE_BIT_DELAY, &sh->state)) {
2328 if (must_compute > 0) {
2329
2330 switch (s->failed) {
2331 case 0:
2332 BUG();
2333 case 1:
2334 compute_block_1(sh, r6s->failed_num[0], 0);
2335 break;
2336 case 2:
2337 compute_block_2(sh, r6s->failed_num[0],
2338 r6s->failed_num[1]);
2339 break;
2340 default:
2341 BUG();
2342 }
2343 }
2344
2345 pr_debug("Computing parity for stripe %llu\n",
2346 (unsigned long long)sh->sector);
2347 compute_parity6(sh, RECONSTRUCT_WRITE);
2348
2349 for (i = disks; i--; )
2350 if (test_bit(R5_LOCKED, &sh->dev[i].flags)) {
2351 pr_debug("Writing stripe %llu block %d\n",
2352 (unsigned long long)sh->sector, i);
2353 s->locked++;
2354 set_bit(R5_Wantwrite, &sh->dev[i].flags);
2355 }
2356 if (s->locked == disks)
2357 if (!test_and_set_bit(STRIPE_FULL_WRITE, &sh->state))
2358 atomic_inc(&conf->pending_full_writes);
2359
2360 set_bit(STRIPE_INSYNC, &sh->state);
2361
2362 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
2363 atomic_dec(&conf->preread_active_stripes);
2364 if (atomic_read(&conf->preread_active_stripes) <
2365 IO_THRESHOLD)
2366 md_wakeup_thread(conf->mddev->thread);
2367 }
2368 }
2369}
2370
2371static void handle_parity_checks5(raid5_conf_t *conf, struct stripe_head *sh,
2372 struct stripe_head_state *s, int disks)
2373{
2374 int canceled_check = 0;
2375
2376 set_bit(STRIPE_HANDLE, &sh->state);
2377
2378
2379 if (test_and_clear_bit(STRIPE_OP_CHECK, &sh->ops.complete)) {
2380 clear_bit(STRIPE_OP_CHECK, &sh->ops.ack);
2381 clear_bit(STRIPE_OP_CHECK, &sh->ops.pending);
2382 if (s->failed == 0) {
2383 if (sh->ops.zero_sum_result == 0)
2384
2385
2386
2387 set_bit(STRIPE_INSYNC, &sh->state);
2388 else {
2389 conf->mddev->resync_mismatches +=
2390 STRIPE_SECTORS;
2391 if (test_bit(
2392 MD_RECOVERY_CHECK, &conf->mddev->recovery))
2393
2394 set_bit(STRIPE_INSYNC, &sh->state);
2395 else {
2396 set_bit(STRIPE_OP_COMPUTE_BLK,
2397 &sh->ops.pending);
2398 set_bit(STRIPE_OP_MOD_REPAIR_PD,
2399 &sh->ops.pending);
2400 set_bit(R5_Wantcompute,
2401 &sh->dev[sh->pd_idx].flags);
2402 sh->ops.target = sh->pd_idx;
2403 sh->ops.count++;
2404 s->uptodate++;
2405 }
2406 }
2407 } else
2408 canceled_check = 1;
2409 }
2410
2411
2412
2413
2414 if (s->failed == 0 &&
2415 !test_bit(STRIPE_INSYNC, &sh->state) &&
2416 !test_bit(STRIPE_OP_MOD_REPAIR_PD, &sh->ops.pending)) {
2417 if (!test_and_set_bit(STRIPE_OP_CHECK, &sh->ops.pending)) {
2418 BUG_ON(s->uptodate != disks);
2419 clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
2420 sh->ops.count++;
2421 s->uptodate--;
2422 }
2423 }
2424
2425
2426 if (test_bit(STRIPE_OP_COMPUTE_BLK, &sh->ops.complete) &&
2427 test_bit(STRIPE_OP_MOD_REPAIR_PD, &sh->ops.pending)) {
2428
2429 clear_bit(STRIPE_OP_MOD_REPAIR_PD, &sh->ops.pending);
2430 clear_bit(STRIPE_OP_COMPUTE_BLK, &sh->ops.complete);
2431 clear_bit(STRIPE_OP_COMPUTE_BLK, &sh->ops.ack);
2432 clear_bit(STRIPE_OP_COMPUTE_BLK, &sh->ops.pending);
2433 }
2434
2435
2436
2437
2438
2439
2440
2441 if (!canceled_check && !test_bit(STRIPE_INSYNC, &sh->state) &&
2442 !test_bit(STRIPE_OP_CHECK, &sh->ops.pending) &&
2443 !test_bit(STRIPE_OP_COMPUTE_BLK, &sh->ops.pending)) {
2444 struct r5dev *dev;
2445
2446 if (s->failed == 0)
2447 s->failed_num = sh->pd_idx;
2448 dev = &sh->dev[s->failed_num];
2449 BUG_ON(!test_bit(R5_UPTODATE, &dev->flags));
2450 BUG_ON(s->uptodate != disks);
2451
2452 set_bit(R5_LOCKED, &dev->flags);
2453 set_bit(R5_Wantwrite, &dev->flags);
2454 if (!test_and_set_bit(STRIPE_OP_IO, &sh->ops.pending))
2455 sh->ops.count++;
2456
2457 clear_bit(STRIPE_DEGRADED, &sh->state);
2458 s->locked++;
2459 set_bit(STRIPE_INSYNC, &sh->state);
2460 }
2461}
2462
2463
2464static void handle_parity_checks6(raid5_conf_t *conf, struct stripe_head *sh,
2465 struct stripe_head_state *s,
2466 struct r6_state *r6s, struct page *tmp_page,
2467 int disks)
2468{
2469 int update_p = 0, update_q = 0;
2470 struct r5dev *dev;
2471 int pd_idx = sh->pd_idx;
2472 int qd_idx = r6s->qd_idx;
2473
2474 set_bit(STRIPE_HANDLE, &sh->state);
2475
2476 BUG_ON(s->failed > 2);
2477 BUG_ON(s->uptodate < disks);
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488 if (tmp_page) {
2489 if (s->failed == r6s->q_failed) {
2490
2491
2492
2493
2494 compute_block_1(sh, pd_idx, 1);
2495 if (!page_is_zero(sh->dev[pd_idx].page)) {
2496 compute_block_1(sh, pd_idx, 0);
2497 update_p = 1;
2498 }
2499 }
2500 if (!r6s->q_failed && s->failed < 2) {
2501
2502
2503
2504 memcpy(page_address(tmp_page),
2505 page_address(sh->dev[qd_idx].page),
2506 STRIPE_SIZE);
2507 compute_parity6(sh, UPDATE_PARITY);
2508 if (memcmp(page_address(tmp_page),
2509 page_address(sh->dev[qd_idx].page),
2510 STRIPE_SIZE) != 0) {
2511 clear_bit(STRIPE_INSYNC, &sh->state);
2512 update_q = 1;
2513 }
2514 }
2515 if (update_p || update_q) {
2516 conf->mddev->resync_mismatches += STRIPE_SECTORS;
2517 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
2518
2519 update_p = update_q = 0;
2520 }
2521
2522
2523
2524
2525
2526 if (s->failed == 2) {
2527 dev = &sh->dev[r6s->failed_num[1]];
2528 s->locked++;
2529 set_bit(R5_LOCKED, &dev->flags);
2530 set_bit(R5_Wantwrite, &dev->flags);
2531 }
2532 if (s->failed >= 1) {
2533 dev = &sh->dev[r6s->failed_num[0]];
2534 s->locked++;
2535 set_bit(R5_LOCKED, &dev->flags);
2536 set_bit(R5_Wantwrite, &dev->flags);
2537 }
2538
2539 if (update_p) {
2540 dev = &sh->dev[pd_idx];
2541 s->locked++;
2542 set_bit(R5_LOCKED, &dev->flags);
2543 set_bit(R5_Wantwrite, &dev->flags);
2544 }
2545 if (update_q) {
2546 dev = &sh->dev[qd_idx];
2547 s->locked++;
2548 set_bit(R5_LOCKED, &dev->flags);
2549 set_bit(R5_Wantwrite, &dev->flags);
2550 }
2551 clear_bit(STRIPE_DEGRADED, &sh->state);
2552
2553 set_bit(STRIPE_INSYNC, &sh->state);
2554 }
2555}
2556
2557static void handle_stripe_expansion(raid5_conf_t *conf, struct stripe_head *sh,
2558 struct r6_state *r6s)
2559{
2560 int i;
2561
2562
2563
2564
2565 struct dma_async_tx_descriptor *tx = NULL;
2566 clear_bit(STRIPE_EXPAND_SOURCE, &sh->state);
2567 for (i = 0; i < sh->disks; i++)
2568 if (i != sh->pd_idx && (!r6s || i != r6s->qd_idx)) {
2569 int dd_idx, pd_idx, j;
2570 struct stripe_head *sh2;
2571
2572 sector_t bn = compute_blocknr(sh, i);
2573 sector_t s = raid5_compute_sector(bn, conf->raid_disks,
2574 conf->raid_disks -
2575 conf->max_degraded, &dd_idx,
2576 &pd_idx, conf);
2577 sh2 = get_active_stripe(conf, s, conf->raid_disks,
2578 pd_idx, 1);
2579 if (sh2 == NULL)
2580
2581
2582
2583
2584 continue;
2585 if (!test_bit(STRIPE_EXPANDING, &sh2->state) ||
2586 test_bit(R5_Expanded, &sh2->dev[dd_idx].flags)) {
2587
2588 release_stripe(sh2);
2589 continue;
2590 }
2591
2592
2593 tx = async_memcpy(sh2->dev[dd_idx].page,
2594 sh->dev[i].page, 0, 0, STRIPE_SIZE,
2595 ASYNC_TX_DEP_ACK, tx, NULL, NULL);
2596
2597 set_bit(R5_Expanded, &sh2->dev[dd_idx].flags);
2598 set_bit(R5_UPTODATE, &sh2->dev[dd_idx].flags);
2599 for (j = 0; j < conf->raid_disks; j++)
2600 if (j != sh2->pd_idx &&
2601 (!r6s || j != raid6_next_disk(sh2->pd_idx,
2602 sh2->disks)) &&
2603 !test_bit(R5_Expanded, &sh2->dev[j].flags))
2604 break;
2605 if (j == conf->raid_disks) {
2606 set_bit(STRIPE_EXPAND_READY, &sh2->state);
2607 set_bit(STRIPE_HANDLE, &sh2->state);
2608 }
2609 release_stripe(sh2);
2610
2611 }
2612
2613 if (tx) {
2614 async_tx_ack(tx);
2615 dma_wait_for_async_tx(tx);
2616 }
2617}
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637static void handle_stripe5(struct stripe_head *sh)
2638{
2639 raid5_conf_t *conf = sh->raid_conf;
2640 int disks = sh->disks, i;
2641 struct bio *return_bi = NULL;
2642 struct stripe_head_state s;
2643 struct r5dev *dev;
2644 unsigned long pending = 0;
2645 mdk_rdev_t *blocked_rdev = NULL;
2646 int prexor;
2647
2648 memset(&s, 0, sizeof(s));
2649 pr_debug("handling stripe %llu, state=%#lx cnt=%d, pd_idx=%d "
2650 "ops=%lx:%lx:%lx\n", (unsigned long long)sh->sector, sh->state,
2651 atomic_read(&sh->count), sh->pd_idx,
2652 sh->ops.pending, sh->ops.ack, sh->ops.complete);
2653
2654 spin_lock(&sh->lock);
2655 clear_bit(STRIPE_HANDLE, &sh->state);
2656 clear_bit(STRIPE_DELAYED, &sh->state);
2657
2658 s.syncing = test_bit(STRIPE_SYNCING, &sh->state);
2659 s.expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state);
2660 s.expanded = test_bit(STRIPE_EXPAND_READY, &sh->state);
2661
2662
2663
2664 if (test_bit(STRIPE_OP_BIOFILL, &sh->ops.complete)) {
2665 clear_bit(STRIPE_OP_BIOFILL, &sh->ops.pending);
2666 clear_bit(STRIPE_OP_BIOFILL, &sh->ops.ack);
2667 clear_bit(STRIPE_OP_BIOFILL, &sh->ops.complete);
2668 }
2669
2670 rcu_read_lock();
2671 for (i=disks; i--; ) {
2672 mdk_rdev_t *rdev;
2673 struct r5dev *dev = &sh->dev[i];
2674 clear_bit(R5_Insync, &dev->flags);
2675
2676 pr_debug("check %d: state 0x%lx toread %p read %p write %p "
2677 "written %p\n", i, dev->flags, dev->toread, dev->read,
2678 dev->towrite, dev->written);
2679
2680
2681
2682
2683
2684
2685 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread &&
2686 !test_bit(STRIPE_OP_BIOFILL, &sh->ops.pending))
2687 set_bit(R5_Wantfill, &dev->flags);
2688
2689
2690 if (test_bit(R5_LOCKED, &dev->flags)) s.locked++;
2691 if (test_bit(R5_UPTODATE, &dev->flags)) s.uptodate++;
2692 if (test_bit(R5_Wantcompute, &dev->flags)) s.compute++;
2693
2694 if (test_bit(R5_Wantfill, &dev->flags))
2695 s.to_fill++;
2696 else if (dev->toread)
2697 s.to_read++;
2698 if (dev->towrite) {
2699 s.to_write++;
2700 if (!test_bit(R5_OVERWRITE, &dev->flags))
2701 s.non_overwrite++;
2702 }
2703 if (dev->written)
2704 s.written++;
2705 rdev = rcu_dereference(conf->disks[i].rdev);
2706 if (rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
2707 blocked_rdev = rdev;
2708 atomic_inc(&rdev->nr_pending);
2709 break;
2710 }
2711 if (!rdev || !test_bit(In_sync, &rdev->flags)) {
2712
2713 clear_bit(R5_ReadError, &dev->flags);
2714 clear_bit(R5_ReWrite, &dev->flags);
2715 }
2716 if (!rdev || !test_bit(In_sync, &rdev->flags)
2717 || test_bit(R5_ReadError, &dev->flags)) {
2718 s.failed++;
2719 s.failed_num = i;
2720 } else
2721 set_bit(R5_Insync, &dev->flags);
2722 }
2723 rcu_read_unlock();
2724
2725 if (unlikely(blocked_rdev)) {
2726 set_bit(STRIPE_HANDLE, &sh->state);
2727 goto unlock;
2728 }
2729
2730 if (s.to_fill && !test_and_set_bit(STRIPE_OP_BIOFILL, &sh->ops.pending))
2731 sh->ops.count++;
2732
2733 pr_debug("locked=%d uptodate=%d to_read=%d"
2734 " to_write=%d failed=%d failed_num=%d\n",
2735 s.locked, s.uptodate, s.to_read, s.to_write,
2736 s.failed, s.failed_num);
2737
2738
2739
2740 if (s.failed > 1 && s.to_read+s.to_write+s.written)
2741 handle_requests_to_failed_array(conf, sh, &s, disks,
2742 &return_bi);
2743 if (s.failed > 1 && s.syncing) {
2744 md_done_sync(conf->mddev, STRIPE_SECTORS,0);
2745 clear_bit(STRIPE_SYNCING, &sh->state);
2746 s.syncing = 0;
2747 }
2748
2749
2750
2751
2752 dev = &sh->dev[sh->pd_idx];
2753 if ( s.written &&
2754 ((test_bit(R5_Insync, &dev->flags) &&
2755 !test_bit(R5_LOCKED, &dev->flags) &&
2756 test_bit(R5_UPTODATE, &dev->flags)) ||
2757 (s.failed == 1 && s.failed_num == sh->pd_idx)))
2758 handle_completed_write_requests(conf, sh, disks, &return_bi);
2759
2760
2761
2762
2763
2764 if (s.to_read || s.non_overwrite ||
2765 (s.syncing && (s.uptodate + s.compute < disks)) || s.expanding ||
2766 test_bit(STRIPE_OP_COMPUTE_BLK, &sh->ops.pending))
2767 handle_issuing_new_read_requests5(sh, &s, disks);
2768
2769
2770
2771
2772
2773
2774
2775
2776 prexor = 0;
2777 if (test_bit(STRIPE_OP_PREXOR, &sh->ops.complete) &&
2778 test_bit(STRIPE_OP_POSTXOR, &sh->ops.complete)) {
2779
2780 prexor = 1;
2781 clear_bit(STRIPE_OP_PREXOR, &sh->ops.complete);
2782 clear_bit(STRIPE_OP_PREXOR, &sh->ops.ack);
2783 clear_bit(STRIPE_OP_PREXOR, &sh->ops.pending);
2784
2785 for (i = disks; i--; )
2786 clear_bit(R5_Wantprexor, &sh->dev[i].flags);
2787 }
2788
2789
2790 if (test_bit(STRIPE_OP_BIODRAIN, &sh->ops.complete) &&
2791 test_bit(STRIPE_OP_POSTXOR, &sh->ops.complete)) {
2792
2793 clear_bit(STRIPE_OP_BIODRAIN, &sh->ops.complete);
2794 clear_bit(STRIPE_OP_BIODRAIN, &sh->ops.ack);
2795 clear_bit(STRIPE_OP_BIODRAIN, &sh->ops.pending);
2796
2797 clear_bit(STRIPE_OP_POSTXOR, &sh->ops.complete);
2798 clear_bit(STRIPE_OP_POSTXOR, &sh->ops.ack);
2799 clear_bit(STRIPE_OP_POSTXOR, &sh->ops.pending);
2800
2801
2802
2803
2804 BUG_ON(!test_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags));
2805 for (i = disks; i--; ) {
2806 dev = &sh->dev[i];
2807 if (test_bit(R5_LOCKED, &dev->flags) &&
2808 (i == sh->pd_idx || dev->written)) {
2809 pr_debug("Writing block %d\n", i);
2810 set_bit(R5_Wantwrite, &dev->flags);
2811 if (!test_and_set_bit(
2812 STRIPE_OP_IO, &sh->ops.pending))
2813 sh->ops.count++;
2814 if (prexor)
2815 continue;
2816 if (!test_bit(R5_Insync, &dev->flags) ||
2817 (i == sh->pd_idx && s.failed == 0))
2818 set_bit(STRIPE_INSYNC, &sh->state);
2819 }
2820 }
2821 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
2822 atomic_dec(&conf->preread_active_stripes);
2823 if (atomic_read(&conf->preread_active_stripes) <
2824 IO_THRESHOLD)
2825 md_wakeup_thread(conf->mddev->thread);
2826 }
2827 }
2828
2829
2830
2831
2832
2833
2834
2835 if (s.to_write && !test_bit(STRIPE_OP_POSTXOR, &sh->ops.pending) &&
2836 !test_bit(STRIPE_OP_CHECK, &sh->ops.pending))
2837 handle_issuing_new_write_requests5(conf, sh, &s, disks);
2838
2839
2840
2841
2842
2843
2844 if ((s.syncing && s.locked == 0 &&
2845 !test_bit(STRIPE_OP_COMPUTE_BLK, &sh->ops.pending) &&
2846 !test_bit(STRIPE_INSYNC, &sh->state)) ||
2847 test_bit(STRIPE_OP_CHECK, &sh->ops.pending) ||
2848 test_bit(STRIPE_OP_MOD_REPAIR_PD, &sh->ops.pending))
2849 handle_parity_checks5(conf, sh, &s, disks);
2850
2851 if (s.syncing && s.locked == 0 && test_bit(STRIPE_INSYNC, &sh->state)) {
2852 md_done_sync(conf->mddev, STRIPE_SECTORS,1);
2853 clear_bit(STRIPE_SYNCING, &sh->state);
2854 }
2855
2856
2857
2858
2859 if (s.failed == 1 && !conf->mddev->ro &&
2860 test_bit(R5_ReadError, &sh->dev[s.failed_num].flags)
2861 && !test_bit(R5_LOCKED, &sh->dev[s.failed_num].flags)
2862 && test_bit(R5_UPTODATE, &sh->dev[s.failed_num].flags)
2863 ) {
2864 dev = &sh->dev[s.failed_num];
2865 if (!test_bit(R5_ReWrite, &dev->flags)) {
2866 set_bit(R5_Wantwrite, &dev->flags);
2867 if (!test_and_set_bit(STRIPE_OP_IO, &sh->ops.pending))
2868 sh->ops.count++;
2869 set_bit(R5_ReWrite, &dev->flags);
2870 set_bit(R5_LOCKED, &dev->flags);
2871 s.locked++;
2872 } else {
2873
2874 set_bit(R5_Wantread, &dev->flags);
2875 if (!test_and_set_bit(STRIPE_OP_IO, &sh->ops.pending))
2876 sh->ops.count++;
2877 set_bit(R5_LOCKED, &dev->flags);
2878 s.locked++;
2879 }
2880 }
2881
2882
2883
2884
2885 if (test_bit(STRIPE_OP_POSTXOR, &sh->ops.complete) &&
2886 !test_bit(STRIPE_OP_BIODRAIN, &sh->ops.pending)) {
2887
2888 clear_bit(STRIPE_EXPANDING, &sh->state);
2889
2890 clear_bit(STRIPE_OP_POSTXOR, &sh->ops.pending);
2891 clear_bit(STRIPE_OP_POSTXOR, &sh->ops.ack);
2892 clear_bit(STRIPE_OP_POSTXOR, &sh->ops.complete);
2893
2894 for (i = conf->raid_disks; i--; ) {
2895 set_bit(R5_Wantwrite, &sh->dev[i].flags);
2896 set_bit(R5_LOCKED, &dev->flags);
2897 s.locked++;
2898 if (!test_and_set_bit(STRIPE_OP_IO, &sh->ops.pending))
2899 sh->ops.count++;
2900 }
2901 }
2902
2903 if (s.expanded && test_bit(STRIPE_EXPANDING, &sh->state) &&
2904 !test_bit(STRIPE_OP_POSTXOR, &sh->ops.pending)) {
2905
2906 sh->disks = conf->raid_disks;
2907 sh->pd_idx = stripe_to_pdidx(sh->sector, conf,
2908 conf->raid_disks);
2909 s.locked += handle_write_operations5(sh, 1, 1);
2910 } else if (s.expanded &&
2911 s.locked == 0 &&
2912 !test_bit(STRIPE_OP_POSTXOR, &sh->ops.pending)) {
2913 clear_bit(STRIPE_EXPAND_READY, &sh->state);
2914 atomic_dec(&conf->reshape_stripes);
2915 wake_up(&conf->wait_for_overlap);
2916 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
2917 }
2918
2919 if (s.expanding && s.locked == 0 &&
2920 !test_bit(STRIPE_OP_COMPUTE_BLK, &sh->ops.pending))
2921 handle_stripe_expansion(conf, sh, NULL);
2922
2923 if (sh->ops.count)
2924 pending = get_stripe_work(sh);
2925
2926 unlock:
2927 spin_unlock(&sh->lock);
2928
2929
2930 if (unlikely(blocked_rdev))
2931 md_wait_for_blocked_rdev(blocked_rdev, conf->mddev);
2932
2933 if (pending)
2934 raid5_run_ops(sh, pending);
2935
2936 return_io(return_bi);
2937
2938}
2939
2940static void handle_stripe6(struct stripe_head *sh, struct page *tmp_page)
2941{
2942 raid6_conf_t *conf = sh->raid_conf;
2943 int disks = sh->disks;
2944 struct bio *return_bi = NULL;
2945 int i, pd_idx = sh->pd_idx;
2946 struct stripe_head_state s;
2947 struct r6_state r6s;
2948 struct r5dev *dev, *pdev, *qdev;
2949 mdk_rdev_t *blocked_rdev = NULL;
2950
2951 r6s.qd_idx = raid6_next_disk(pd_idx, disks);
2952 pr_debug("handling stripe %llu, state=%#lx cnt=%d, "
2953 "pd_idx=%d, qd_idx=%d\n",
2954 (unsigned long long)sh->sector, sh->state,
2955 atomic_read(&sh->count), pd_idx, r6s.qd_idx);
2956 memset(&s, 0, sizeof(s));
2957
2958 spin_lock(&sh->lock);
2959 clear_bit(STRIPE_HANDLE, &sh->state);
2960 clear_bit(STRIPE_DELAYED, &sh->state);
2961
2962 s.syncing = test_bit(STRIPE_SYNCING, &sh->state);
2963 s.expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state);
2964 s.expanded = test_bit(STRIPE_EXPAND_READY, &sh->state);
2965
2966
2967 rcu_read_lock();
2968 for (i=disks; i--; ) {
2969 mdk_rdev_t *rdev;
2970 dev = &sh->dev[i];
2971 clear_bit(R5_Insync, &dev->flags);
2972
2973 pr_debug("check %d: state 0x%lx read %p write %p written %p\n",
2974 i, dev->flags, dev->toread, dev->towrite, dev->written);
2975
2976 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread) {
2977 struct bio *rbi, *rbi2;
2978 pr_debug("Return read for disc %d\n", i);
2979 spin_lock_irq(&conf->device_lock);
2980 rbi = dev->toread;
2981 dev->toread = NULL;
2982 if (test_and_clear_bit(R5_Overlap, &dev->flags))
2983 wake_up(&conf->wait_for_overlap);
2984 spin_unlock_irq(&conf->device_lock);
2985 while (rbi && rbi->bi_sector < dev->sector + STRIPE_SECTORS) {
2986 copy_data(0, rbi, dev->page, dev->sector);
2987 rbi2 = r5_next_bio(rbi, dev->sector);
2988 spin_lock_irq(&conf->device_lock);
2989 if (--rbi->bi_phys_segments == 0) {
2990 rbi->bi_next = return_bi;
2991 return_bi = rbi;
2992 }
2993 spin_unlock_irq(&conf->device_lock);
2994 rbi = rbi2;
2995 }
2996 }
2997
2998
2999 if (test_bit(R5_LOCKED, &dev->flags)) s.locked++;
3000 if (test_bit(R5_UPTODATE, &dev->flags)) s.uptodate++;
3001
3002
3003 if (dev->toread)
3004 s.to_read++;
3005 if (dev->towrite) {
3006 s.to_write++;
3007 if (!test_bit(R5_OVERWRITE, &dev->flags))
3008 s.non_overwrite++;
3009 }
3010 if (dev->written)
3011 s.written++;
3012 rdev = rcu_dereference(conf->disks[i].rdev);
3013 if (rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
3014 blocked_rdev = rdev;
3015 atomic_inc(&rdev->nr_pending);
3016 break;
3017 }
3018 if (!rdev || !test_bit(In_sync, &rdev->flags)) {
3019
3020 clear_bit(R5_ReadError, &dev->flags);
3021 clear_bit(R5_ReWrite, &dev->flags);
3022 }
3023 if (!rdev || !test_bit(In_sync, &rdev->flags)
3024 || test_bit(R5_ReadError, &dev->flags)) {
3025 if (s.failed < 2)
3026 r6s.failed_num[s.failed] = i;
3027 s.failed++;
3028 } else
3029 set_bit(R5_Insync, &dev->flags);
3030 }
3031 rcu_read_unlock();
3032
3033 if (unlikely(blocked_rdev)) {
3034 set_bit(STRIPE_HANDLE, &sh->state);
3035 goto unlock;
3036 }
3037 pr_debug("locked=%d uptodate=%d to_read=%d"
3038 " to_write=%d failed=%d failed_num=%d,%d\n",
3039 s.locked, s.uptodate, s.to_read, s.to_write, s.failed,
3040 r6s.failed_num[0], r6s.failed_num[1]);
3041
3042
3043
3044 if (s.failed > 2 && s.to_read+s.to_write+s.written)
3045 handle_requests_to_failed_array(conf, sh, &s, disks,
3046 &return_bi);
3047 if (s.failed > 2 && s.syncing) {
3048 md_done_sync(conf->mddev, STRIPE_SECTORS,0);
3049 clear_bit(STRIPE_SYNCING, &sh->state);
3050 s.syncing = 0;
3051 }
3052
3053
3054
3055
3056
3057 pdev = &sh->dev[pd_idx];
3058 r6s.p_failed = (s.failed >= 1 && r6s.failed_num[0] == pd_idx)
3059 || (s.failed >= 2 && r6s.failed_num[1] == pd_idx);
3060 qdev = &sh->dev[r6s.qd_idx];
3061 r6s.q_failed = (s.failed >= 1 && r6s.failed_num[0] == r6s.qd_idx)
3062 || (s.failed >= 2 && r6s.failed_num[1] == r6s.qd_idx);
3063
3064 if ( s.written &&
3065 ( r6s.p_failed || ((test_bit(R5_Insync, &pdev->flags)
3066 && !test_bit(R5_LOCKED, &pdev->flags)
3067 && test_bit(R5_UPTODATE, &pdev->flags)))) &&
3068 ( r6s.q_failed || ((test_bit(R5_Insync, &qdev->flags)
3069 && !test_bit(R5_LOCKED, &qdev->flags)
3070 && test_bit(R5_UPTODATE, &qdev->flags)))))
3071 handle_completed_write_requests(conf, sh, disks, &return_bi);
3072
3073
3074
3075
3076
3077 if (s.to_read || s.non_overwrite || (s.to_write && s.failed) ||
3078 (s.syncing && (s.uptodate < disks)) || s.expanding)
3079 handle_issuing_new_read_requests6(sh, &s, &r6s, disks);
3080
3081
3082 if (s.to_write)
3083 handle_issuing_new_write_requests6(conf, sh, &s, &r6s, disks);
3084
3085
3086
3087
3088
3089 if (s.syncing && s.locked == 0 && !test_bit(STRIPE_INSYNC, &sh->state))
3090 handle_parity_checks6(conf, sh, &s, &r6s, tmp_page, disks);
3091
3092 if (s.syncing && s.locked == 0 && test_bit(STRIPE_INSYNC, &sh->state)) {
3093 md_done_sync(conf->mddev, STRIPE_SECTORS,1);
3094 clear_bit(STRIPE_SYNCING, &sh->state);
3095 }
3096
3097
3098
3099
3100 if (s.failed <= 2 && !conf->mddev->ro)
3101 for (i = 0; i < s.failed; i++) {
3102 dev = &sh->dev[r6s.failed_num[i]];
3103 if (test_bit(R5_ReadError, &dev->flags)
3104 && !test_bit(R5_LOCKED, &dev->flags)
3105 && test_bit(R5_UPTODATE, &dev->flags)
3106 ) {
3107 if (!test_bit(R5_ReWrite, &dev->flags)) {
3108 set_bit(R5_Wantwrite, &dev->flags);
3109 set_bit(R5_ReWrite, &dev->flags);
3110 set_bit(R5_LOCKED, &dev->flags);
3111 } else {
3112
3113 set_bit(R5_Wantread, &dev->flags);
3114 set_bit(R5_LOCKED, &dev->flags);
3115 }
3116 }
3117 }
3118
3119 if (s.expanded && test_bit(STRIPE_EXPANDING, &sh->state)) {
3120
3121 sh->disks = conf->raid_disks;
3122 sh->pd_idx = stripe_to_pdidx(sh->sector, conf,
3123 conf->raid_disks);
3124 compute_parity6(sh, RECONSTRUCT_WRITE);
3125 for (i = conf->raid_disks ; i-- ; ) {
3126 set_bit(R5_LOCKED, &sh->dev[i].flags);
3127 s.locked++;
3128 set_bit(R5_Wantwrite, &sh->dev[i].flags);
3129 }
3130 clear_bit(STRIPE_EXPANDING, &sh->state);
3131 } else if (s.expanded) {
3132 clear_bit(STRIPE_EXPAND_READY, &sh->state);
3133 atomic_dec(&conf->reshape_stripes);
3134 wake_up(&conf->wait_for_overlap);
3135 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
3136 }
3137
3138 if (s.expanding && s.locked == 0 &&
3139 !test_bit(STRIPE_OP_COMPUTE_BLK, &sh->ops.pending))
3140 handle_stripe_expansion(conf, sh, &r6s);
3141
3142 unlock:
3143 spin_unlock(&sh->lock);
3144
3145
3146 if (unlikely(blocked_rdev))
3147 md_wait_for_blocked_rdev(blocked_rdev, conf->mddev);
3148
3149 return_io(return_bi);
3150
3151 for (i=disks; i-- ;) {
3152 int rw;
3153 struct bio *bi;
3154 mdk_rdev_t *rdev;
3155 if (test_and_clear_bit(R5_Wantwrite, &sh->dev[i].flags))
3156 rw = WRITE;
3157 else if (test_and_clear_bit(R5_Wantread, &sh->dev[i].flags))
3158 rw = READ;
3159 else
3160 continue;
3161
3162 set_bit(STRIPE_IO_STARTED, &sh->state);
3163
3164 bi = &sh->dev[i].req;
3165
3166 bi->bi_rw = rw;
3167 if (rw == WRITE)
3168 bi->bi_end_io = raid5_end_write_request;
3169 else
3170 bi->bi_end_io = raid5_end_read_request;
3171
3172 rcu_read_lock();
3173 rdev = rcu_dereference(conf->disks[i].rdev);
3174 if (rdev && test_bit(Faulty, &rdev->flags))
3175 rdev = NULL;
3176 if (rdev)
3177 atomic_inc(&rdev->nr_pending);
3178 rcu_read_unlock();
3179
3180 if (rdev) {
3181 if (s.syncing || s.expanding || s.expanded)
3182 md_sync_acct(rdev->bdev, STRIPE_SECTORS);
3183
3184 bi->bi_bdev = rdev->bdev;
3185 pr_debug("for %llu schedule op %ld on disc %d\n",
3186 (unsigned long long)sh->sector, bi->bi_rw, i);
3187 atomic_inc(&sh->count);
3188 bi->bi_sector = sh->sector + rdev->data_offset;
3189 bi->bi_flags = 1 << BIO_UPTODATE;
3190 bi->bi_vcnt = 1;
3191 bi->bi_max_vecs = 1;
3192 bi->bi_idx = 0;
3193 bi->bi_io_vec = &sh->dev[i].vec;
3194 bi->bi_io_vec[0].bv_len = STRIPE_SIZE;
3195 bi->bi_io_vec[0].bv_offset = 0;
3196 bi->bi_size = STRIPE_SIZE;
3197 bi->bi_next = NULL;
3198 if (rw == WRITE &&
3199 test_bit(R5_ReWrite, &sh->dev[i].flags))
3200 atomic_add(STRIPE_SECTORS, &rdev->corrected_errors);
3201 generic_make_request(bi);
3202 } else {
3203 if (rw == WRITE)
3204 set_bit(STRIPE_DEGRADED, &sh->state);
3205 pr_debug("skip op %ld on disc %d for sector %llu\n",
3206 bi->bi_rw, i, (unsigned long long)sh->sector);
3207 clear_bit(R5_LOCKED, &sh->dev[i].flags);
3208 set_bit(STRIPE_HANDLE, &sh->state);
3209 }
3210 }
3211}
3212
3213static void handle_stripe(struct stripe_head *sh, struct page *tmp_page)
3214{
3215 if (sh->raid_conf->level == 6)
3216 handle_stripe6(sh, tmp_page);
3217 else
3218 handle_stripe5(sh);
3219}
3220
3221
3222
3223static void raid5_activate_delayed(raid5_conf_t *conf)
3224{
3225 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD) {
3226 while (!list_empty(&conf->delayed_list)) {
3227 struct list_head *l = conf->delayed_list.next;
3228 struct stripe_head *sh;
3229 sh = list_entry(l, struct stripe_head, lru);
3230 list_del_init(l);
3231 clear_bit(STRIPE_DELAYED, &sh->state);
3232 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3233 atomic_inc(&conf->preread_active_stripes);
3234 list_add_tail(&sh->lru, &conf->hold_list);
3235 }
3236 } else
3237 blk_plug_device(conf->mddev->queue);
3238}
3239
3240static void activate_bit_delay(raid5_conf_t *conf)
3241{
3242
3243 struct list_head head;
3244 list_add(&head, &conf->bitmap_list);
3245 list_del_init(&conf->bitmap_list);
3246 while (!list_empty(&head)) {
3247 struct stripe_head *sh = list_entry(head.next, struct stripe_head, lru);
3248 list_del_init(&sh->lru);
3249 atomic_inc(&sh->count);
3250 __release_stripe(conf, sh);
3251 }
3252}
3253
3254static void unplug_slaves(mddev_t *mddev)
3255{
3256 raid5_conf_t *conf = mddev_to_conf(mddev);
3257 int i;
3258
3259 rcu_read_lock();
3260 for (i=0; i<mddev->raid_disks; i++) {
3261 mdk_rdev_t *rdev = rcu_dereference(conf->disks[i].rdev);
3262 if (rdev && !test_bit(Faulty, &rdev->flags) && atomic_read(&rdev->nr_pending)) {
3263 struct request_queue *r_queue = bdev_get_queue(rdev->bdev);
3264
3265 atomic_inc(&rdev->nr_pending);
3266 rcu_read_unlock();
3267
3268 blk_unplug(r_queue);
3269
3270 rdev_dec_pending(rdev, mddev);
3271 rcu_read_lock();
3272 }
3273 }
3274 rcu_read_unlock();
3275}
3276
3277static void raid5_unplug_device(struct request_queue *q)
3278{
3279 mddev_t *mddev = q->queuedata;
3280 raid5_conf_t *conf = mddev_to_conf(mddev);
3281 unsigned long flags;
3282
3283 spin_lock_irqsave(&conf->device_lock, flags);
3284
3285 if (blk_remove_plug(q)) {
3286 conf->seq_flush++;
3287 raid5_activate_delayed(conf);
3288 }
3289 md_wakeup_thread(mddev->thread);
3290
3291 spin_unlock_irqrestore(&conf->device_lock, flags);
3292
3293 unplug_slaves(mddev);
3294}
3295
3296static int raid5_congested(void *data, int bits)
3297{
3298 mddev_t *mddev = data;
3299 raid5_conf_t *conf = mddev_to_conf(mddev);
3300
3301
3302
3303
3304 if (conf->inactive_blocked)
3305 return 1;
3306 if (conf->quiesce)
3307 return 1;
3308 if (list_empty_careful(&conf->inactive_list))
3309 return 1;
3310
3311 return 0;
3312}
3313
3314
3315
3316
3317static int raid5_mergeable_bvec(struct request_queue *q, struct bio *bio, struct bio_vec *biovec)
3318{
3319 mddev_t *mddev = q->queuedata;
3320 sector_t sector = bio->bi_sector + get_start_sect(bio->bi_bdev);
3321 int max;
3322 unsigned int chunk_sectors = mddev->chunk_size >> 9;
3323 unsigned int bio_sectors = bio->bi_size >> 9;
3324
3325 if (bio_data_dir(bio) == WRITE)
3326 return biovec->bv_len;
3327
3328 max = (chunk_sectors - ((sector & (chunk_sectors - 1)) + bio_sectors)) << 9;
3329 if (max < 0) max = 0;
3330 if (max <= biovec->bv_len && bio_sectors == 0)
3331 return biovec->bv_len;
3332 else
3333 return max;
3334}
3335
3336
3337static int in_chunk_boundary(mddev_t *mddev, struct bio *bio)
3338{
3339 sector_t sector = bio->bi_sector + get_start_sect(bio->bi_bdev);
3340 unsigned int chunk_sectors = mddev->chunk_size >> 9;
3341 unsigned int bio_sectors = bio->bi_size >> 9;
3342
3343 return chunk_sectors >=
3344 ((sector & (chunk_sectors - 1)) + bio_sectors);
3345}
3346
3347
3348
3349
3350
3351static void add_bio_to_retry(struct bio *bi,raid5_conf_t *conf)
3352{
3353 unsigned long flags;
3354
3355 spin_lock_irqsave(&conf->device_lock, flags);
3356
3357 bi->bi_next = conf->retry_read_aligned_list;
3358 conf->retry_read_aligned_list = bi;
3359
3360 spin_unlock_irqrestore(&conf->device_lock, flags);
3361 md_wakeup_thread(conf->mddev->thread);
3362}
3363
3364
3365static struct bio *remove_bio_from_retry(raid5_conf_t *conf)
3366{
3367 struct bio *bi;
3368
3369 bi = conf->retry_read_aligned;
3370 if (bi) {
3371 conf->retry_read_aligned = NULL;
3372 return bi;
3373 }
3374 bi = conf->retry_read_aligned_list;
3375 if(bi) {
3376 conf->retry_read_aligned_list = bi->bi_next;
3377 bi->bi_next = NULL;
3378 bi->bi_phys_segments = 1;
3379 bi->bi_hw_segments = 0;
3380 }
3381
3382 return bi;
3383}
3384
3385
3386
3387
3388
3389
3390
3391
3392static void raid5_align_endio(struct bio *bi, int error)
3393{
3394 struct bio* raid_bi = bi->bi_private;
3395 mddev_t *mddev;
3396 raid5_conf_t *conf;
3397 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
3398 mdk_rdev_t *rdev;
3399
3400 bio_put(bi);
3401
3402 mddev = raid_bi->bi_bdev->bd_disk->queue->queuedata;
3403 conf = mddev_to_conf(mddev);
3404 rdev = (void*)raid_bi->bi_next;
3405 raid_bi->bi_next = NULL;
3406
3407 rdev_dec_pending(rdev, conf->mddev);
3408
3409 if (!error && uptodate) {
3410 bio_endio(raid_bi, 0);
3411 if (atomic_dec_and_test(&conf->active_aligned_reads))
3412 wake_up(&conf->wait_for_stripe);
3413 return;
3414 }
3415
3416
3417 pr_debug("raid5_align_endio : io error...handing IO for a retry\n");
3418
3419 add_bio_to_retry(raid_bi, conf);
3420}
3421
3422static int bio_fits_rdev(struct bio *bi)
3423{
3424 struct request_queue *q = bdev_get_queue(bi->bi_bdev);
3425
3426 if ((bi->bi_size>>9) > q->max_sectors)
3427 return 0;
3428 blk_recount_segments(q, bi);
3429 if (bi->bi_phys_segments > q->max_phys_segments ||
3430 bi->bi_hw_segments > q->max_hw_segments)
3431 return 0;
3432
3433 if (q->merge_bvec_fn)
3434
3435
3436
3437 return 0;
3438
3439 return 1;
3440}
3441
3442
3443static int chunk_aligned_read(struct request_queue *q, struct bio * raid_bio)
3444{
3445 mddev_t *mddev = q->queuedata;
3446 raid5_conf_t *conf = mddev_to_conf(mddev);
3447 const unsigned int raid_disks = conf->raid_disks;
3448 const unsigned int data_disks = raid_disks - conf->max_degraded;
3449 unsigned int dd_idx, pd_idx;
3450 struct bio* align_bi;
3451 mdk_rdev_t *rdev;
3452
3453 if (!in_chunk_boundary(mddev, raid_bio)) {
3454 pr_debug("chunk_aligned_read : non aligned\n");
3455 return 0;
3456 }
3457
3458
3459
3460 align_bi = bio_clone(raid_bio, GFP_NOIO);
3461 if (!align_bi)
3462 return 0;
3463
3464
3465
3466
3467 align_bi->bi_end_io = raid5_align_endio;
3468 align_bi->bi_private = raid_bio;
3469
3470
3471
3472 align_bi->bi_sector = raid5_compute_sector(raid_bio->bi_sector,
3473 raid_disks,
3474 data_disks,
3475 &dd_idx,
3476 &pd_idx,
3477 conf);
3478
3479 rcu_read_lock();
3480 rdev = rcu_dereference(conf->disks[dd_idx].rdev);
3481 if (rdev && test_bit(In_sync, &rdev->flags)) {
3482 atomic_inc(&rdev->nr_pending);
3483 rcu_read_unlock();
3484 raid_bio->bi_next = (void*)rdev;
3485 align_bi->bi_bdev = rdev->bdev;
3486 align_bi->bi_flags &= ~(1 << BIO_SEG_VALID);
3487 align_bi->bi_sector += rdev->data_offset;
3488
3489 if (!bio_fits_rdev(align_bi)) {
3490
3491 bio_put(align_bi);
3492 rdev_dec_pending(rdev, mddev);
3493 return 0;
3494 }
3495
3496 spin_lock_irq(&conf->device_lock);
3497 wait_event_lock_irq(conf->wait_for_stripe,
3498 conf->quiesce == 0,
3499 conf->device_lock, );
3500 atomic_inc(&conf->active_aligned_reads);
3501 spin_unlock_irq(&conf->device_lock);
3502
3503 generic_make_request(align_bi);
3504 return 1;
3505 } else {
3506 rcu_read_unlock();
3507 bio_put(align_bi);
3508 return 0;
3509 }
3510}
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522static struct stripe_head *__get_priority_stripe(raid5_conf_t *conf)
3523{
3524 struct stripe_head *sh;
3525
3526 pr_debug("%s: handle: %s hold: %s full_writes: %d bypass_count: %d\n",
3527 __func__,
3528 list_empty(&conf->handle_list) ? "empty" : "busy",
3529 list_empty(&conf->hold_list) ? "empty" : "busy",
3530 atomic_read(&conf->pending_full_writes), conf->bypass_count);
3531
3532 if (!list_empty(&conf->handle_list)) {
3533 sh = list_entry(conf->handle_list.next, typeof(*sh), lru);
3534
3535 if (list_empty(&conf->hold_list))
3536 conf->bypass_count = 0;
3537 else if (!test_bit(STRIPE_IO_STARTED, &sh->state)) {
3538 if (conf->hold_list.next == conf->last_hold)
3539 conf->bypass_count++;
3540 else {
3541 conf->last_hold = conf->hold_list.next;
3542 conf->bypass_count -= conf->bypass_threshold;
3543 if (conf->bypass_count < 0)
3544 conf->bypass_count = 0;
3545 }
3546 }
3547 } else if (!list_empty(&conf->hold_list) &&
3548 ((conf->bypass_threshold &&
3549 conf->bypass_count > conf->bypass_threshold) ||
3550 atomic_read(&conf->pending_full_writes) == 0)) {
3551 sh = list_entry(conf->hold_list.next,
3552 typeof(*sh), lru);
3553 conf->bypass_count -= conf->bypass_threshold;
3554 if (conf->bypass_count < 0)
3555 conf->bypass_count = 0;
3556 } else
3557 return NULL;
3558
3559 list_del_init(&sh->lru);
3560 atomic_inc(&sh->count);
3561 BUG_ON(atomic_read(&sh->count) != 1);
3562 return sh;
3563}
3564
3565static int make_request(struct request_queue *q, struct bio * bi)
3566{
3567 mddev_t *mddev = q->queuedata;
3568 raid5_conf_t *conf = mddev_to_conf(mddev);
3569 unsigned int dd_idx, pd_idx;
3570 sector_t new_sector;
3571 sector_t logical_sector, last_sector;
3572 struct stripe_head *sh;
3573 const int rw = bio_data_dir(bi);
3574 int remaining;
3575
3576 if (unlikely(bio_barrier(bi))) {
3577 bio_endio(bi, -EOPNOTSUPP);
3578 return 0;
3579 }
3580
3581 md_write_start(mddev, bi);
3582
3583 disk_stat_inc(mddev->gendisk, ios[rw]);
3584 disk_stat_add(mddev->gendisk, sectors[rw], bio_sectors(bi));
3585
3586 if (rw == READ &&
3587 mddev->reshape_position == MaxSector &&
3588 chunk_aligned_read(q,bi))
3589 return 0;
3590
3591 logical_sector = bi->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
3592 last_sector = bi->bi_sector + (bi->bi_size>>9);
3593 bi->bi_next = NULL;
3594 bi->bi_phys_segments = 1;
3595
3596 for (;logical_sector < last_sector; logical_sector += STRIPE_SECTORS) {
3597 DEFINE_WAIT(w);
3598 int disks, data_disks;
3599
3600 retry:
3601 prepare_to_wait(&conf->wait_for_overlap, &w, TASK_UNINTERRUPTIBLE);
3602 if (likely(conf->expand_progress == MaxSector))
3603 disks = conf->raid_disks;
3604 else {
3605
3606
3607
3608
3609
3610
3611
3612
3613 spin_lock_irq(&conf->device_lock);
3614 disks = conf->raid_disks;
3615 if (logical_sector >= conf->expand_progress)
3616 disks = conf->previous_raid_disks;
3617 else {
3618 if (logical_sector >= conf->expand_lo) {
3619 spin_unlock_irq(&conf->device_lock);
3620 schedule();
3621 goto retry;
3622 }
3623 }
3624 spin_unlock_irq(&conf->device_lock);
3625 }
3626 data_disks = disks - conf->max_degraded;
3627
3628 new_sector = raid5_compute_sector(logical_sector, disks, data_disks,
3629 &dd_idx, &pd_idx, conf);
3630 pr_debug("raid5: make_request, sector %llu logical %llu\n",
3631 (unsigned long long)new_sector,
3632 (unsigned long long)logical_sector);
3633
3634 sh = get_active_stripe(conf, new_sector, disks, pd_idx, (bi->bi_rw&RWA_MASK));
3635 if (sh) {
3636 if (unlikely(conf->expand_progress != MaxSector)) {
3637
3638
3639
3640
3641
3642
3643
3644
3645 int must_retry = 0;
3646 spin_lock_irq(&conf->device_lock);
3647 if (logical_sector < conf->expand_progress &&
3648 disks == conf->previous_raid_disks)
3649
3650 must_retry = 1;
3651 spin_unlock_irq(&conf->device_lock);
3652 if (must_retry) {
3653 release_stripe(sh);
3654 goto retry;
3655 }
3656 }
3657
3658
3659
3660 if (logical_sector >= mddev->suspend_lo &&
3661 logical_sector < mddev->suspend_hi) {
3662 release_stripe(sh);
3663 schedule();
3664 goto retry;
3665 }
3666
3667 if (test_bit(STRIPE_EXPANDING, &sh->state) ||
3668 !add_stripe_bio(sh, bi, dd_idx, (bi->bi_rw&RW_MASK))) {
3669
3670
3671
3672
3673 raid5_unplug_device(mddev->queue);
3674 release_stripe(sh);
3675 schedule();
3676 goto retry;
3677 }
3678 finish_wait(&conf->wait_for_overlap, &w);
3679 set_bit(STRIPE_HANDLE, &sh->state);
3680 clear_bit(STRIPE_DELAYED, &sh->state);
3681 release_stripe(sh);
3682 } else {
3683
3684 clear_bit(BIO_UPTODATE, &bi->bi_flags);
3685 finish_wait(&conf->wait_for_overlap, &w);
3686 break;
3687 }
3688
3689 }
3690 spin_lock_irq(&conf->device_lock);
3691 remaining = --bi->bi_phys_segments;
3692 spin_unlock_irq(&conf->device_lock);
3693 if (remaining == 0) {
3694
3695 if ( rw == WRITE )
3696 md_write_end(mddev);
3697
3698 bi->bi_end_io(bi,
3699 test_bit(BIO_UPTODATE, &bi->bi_flags)
3700 ? 0 : -EIO);
3701 }
3702 return 0;
3703}
3704
3705static sector_t reshape_request(mddev_t *mddev, sector_t sector_nr, int *skipped)
3706{
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
3717 struct stripe_head *sh;
3718 int pd_idx;
3719 sector_t first_sector, last_sector;
3720 int raid_disks = conf->previous_raid_disks;
3721 int data_disks = raid_disks - conf->max_degraded;
3722 int new_data_disks = conf->raid_disks - conf->max_degraded;
3723 int i;
3724 int dd_idx;
3725 sector_t writepos, safepos, gap;
3726
3727 if (sector_nr == 0 &&
3728 conf->expand_progress != 0) {
3729
3730 sector_nr = conf->expand_progress;
3731 sector_div(sector_nr, new_data_disks);
3732 *skipped = 1;
3733 return sector_nr;
3734 }
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744 writepos = conf->expand_progress +
3745 conf->chunk_size/512*(new_data_disks);
3746 sector_div(writepos, new_data_disks);
3747 safepos = conf->expand_lo;
3748 sector_div(safepos, data_disks);
3749 gap = conf->expand_progress - conf->expand_lo;
3750
3751 if (writepos >= safepos ||
3752 gap > (new_data_disks)*3000*2 ) {
3753
3754 wait_event(conf->wait_for_overlap,
3755 atomic_read(&conf->reshape_stripes)==0);
3756 mddev->reshape_position = conf->expand_progress;
3757 set_bit(MD_CHANGE_DEVS, &mddev->flags);
3758 md_wakeup_thread(mddev->thread);
3759 wait_event(mddev->sb_wait, mddev->flags == 0 ||
3760 kthread_should_stop());
3761 spin_lock_irq(&conf->device_lock);
3762 conf->expand_lo = mddev->reshape_position;
3763 spin_unlock_irq(&conf->device_lock);
3764 wake_up(&conf->wait_for_overlap);
3765 }
3766
3767 for (i=0; i < conf->chunk_size/512; i+= STRIPE_SECTORS) {
3768 int j;
3769 int skipped = 0;
3770 pd_idx = stripe_to_pdidx(sector_nr+i, conf, conf->raid_disks);
3771 sh = get_active_stripe(conf, sector_nr+i,
3772 conf->raid_disks, pd_idx, 0);
3773 set_bit(STRIPE_EXPANDING, &sh->state);
3774 atomic_inc(&conf->reshape_stripes);
3775
3776
3777
3778 for (j=sh->disks; j--;) {
3779 sector_t s;
3780 if (j == sh->pd_idx)
3781 continue;
3782 if (conf->level == 6 &&
3783 j == raid6_next_disk(sh->pd_idx, sh->disks))
3784 continue;
3785 s = compute_blocknr(sh, j);
3786 if (s < (mddev->array_size<<1)) {
3787 skipped = 1;
3788 continue;
3789 }
3790 memset(page_address(sh->dev[j].page), 0, STRIPE_SIZE);
3791 set_bit(R5_Expanded, &sh->dev[j].flags);
3792 set_bit(R5_UPTODATE, &sh->dev[j].flags);
3793 }
3794 if (!skipped) {
3795 set_bit(STRIPE_EXPAND_READY, &sh->state);
3796 set_bit(STRIPE_HANDLE, &sh->state);
3797 }
3798 release_stripe(sh);
3799 }
3800 spin_lock_irq(&conf->device_lock);
3801 conf->expand_progress = (sector_nr + i) * new_data_disks;
3802 spin_unlock_irq(&conf->device_lock);
3803
3804
3805
3806
3807
3808 first_sector =
3809 raid5_compute_sector(sector_nr*(new_data_disks),
3810 raid_disks, data_disks,
3811 &dd_idx, &pd_idx, conf);
3812 last_sector =
3813 raid5_compute_sector((sector_nr+conf->chunk_size/512)
3814 *(new_data_disks) -1,
3815 raid_disks, data_disks,
3816 &dd_idx, &pd_idx, conf);
3817 if (last_sector >= (mddev->size<<1))
3818 last_sector = (mddev->size<<1)-1;
3819 while (first_sector <= last_sector) {
3820 pd_idx = stripe_to_pdidx(first_sector, conf,
3821 conf->previous_raid_disks);
3822 sh = get_active_stripe(conf, first_sector,
3823 conf->previous_raid_disks, pd_idx, 0);
3824 set_bit(STRIPE_EXPAND_SOURCE, &sh->state);
3825 set_bit(STRIPE_HANDLE, &sh->state);
3826 release_stripe(sh);
3827 first_sector += STRIPE_SECTORS;
3828 }
3829
3830
3831
3832 sector_nr += conf->chunk_size>>9;
3833 if (sector_nr >= mddev->resync_max) {
3834
3835 wait_event(conf->wait_for_overlap,
3836 atomic_read(&conf->reshape_stripes) == 0);
3837 mddev->reshape_position = conf->expand_progress;
3838 set_bit(MD_CHANGE_DEVS, &mddev->flags);
3839 md_wakeup_thread(mddev->thread);
3840 wait_event(mddev->sb_wait,
3841 !test_bit(MD_CHANGE_DEVS, &mddev->flags)
3842 || kthread_should_stop());
3843 spin_lock_irq(&conf->device_lock);
3844 conf->expand_lo = mddev->reshape_position;
3845 spin_unlock_irq(&conf->device_lock);
3846 wake_up(&conf->wait_for_overlap);
3847 }
3848 return conf->chunk_size>>9;
3849}
3850
3851
3852static inline sector_t sync_request(mddev_t *mddev, sector_t sector_nr, int *skipped, int go_faster)
3853{
3854 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
3855 struct stripe_head *sh;
3856 int pd_idx;
3857 int raid_disks = conf->raid_disks;
3858 sector_t max_sector = mddev->size << 1;
3859 int sync_blocks;
3860 int still_degraded = 0;
3861 int i;
3862
3863 if (sector_nr >= max_sector) {
3864
3865 unplug_slaves(mddev);
3866 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery)) {
3867 end_reshape(conf);
3868 return 0;
3869 }
3870
3871 if (mddev->curr_resync < max_sector)
3872 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
3873 &sync_blocks, 1);
3874 else
3875 conf->fullsync = 0;
3876 bitmap_close_sync(mddev->bitmap);
3877
3878 return 0;
3879 }
3880
3881 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery))
3882 return reshape_request(mddev, sector_nr, skipped);
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894 if (mddev->degraded >= conf->max_degraded &&
3895 test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
3896 sector_t rv = (mddev->size << 1) - sector_nr;
3897 *skipped = 1;
3898 return rv;
3899 }
3900 if (!bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
3901 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
3902 !conf->fullsync && sync_blocks >= STRIPE_SECTORS) {
3903
3904 sync_blocks /= STRIPE_SECTORS;
3905 *skipped = 1;
3906 return sync_blocks * STRIPE_SECTORS;
3907 }
3908
3909
3910 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
3911
3912 pd_idx = stripe_to_pdidx(sector_nr, conf, raid_disks);
3913 sh = get_active_stripe(conf, sector_nr, raid_disks, pd_idx, 1);
3914 if (sh == NULL) {
3915 sh = get_active_stripe(conf, sector_nr, raid_disks, pd_idx, 0);
3916
3917
3918
3919 schedule_timeout_uninterruptible(1);
3920 }
3921
3922
3923
3924
3925 for (i=0; i<mddev->raid_disks; i++)
3926 if (conf->disks[i].rdev == NULL)
3927 still_degraded = 1;
3928
3929 bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, still_degraded);
3930
3931 spin_lock(&sh->lock);
3932 set_bit(STRIPE_SYNCING, &sh->state);
3933 clear_bit(STRIPE_INSYNC, &sh->state);
3934 spin_unlock(&sh->lock);
3935
3936 handle_stripe(sh, NULL);
3937 release_stripe(sh);
3938
3939 return STRIPE_SECTORS;
3940}
3941
3942static int retry_aligned_read(raid5_conf_t *conf, struct bio *raid_bio)
3943{
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954 struct stripe_head *sh;
3955 int dd_idx, pd_idx;
3956 sector_t sector, logical_sector, last_sector;
3957 int scnt = 0;
3958 int remaining;
3959 int handled = 0;
3960
3961 logical_sector = raid_bio->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
3962 sector = raid5_compute_sector( logical_sector,
3963 conf->raid_disks,
3964 conf->raid_disks - conf->max_degraded,
3965 &dd_idx,
3966 &pd_idx,
3967 conf);
3968 last_sector = raid_bio->bi_sector + (raid_bio->bi_size>>9);
3969
3970 for (; logical_sector < last_sector;
3971 logical_sector += STRIPE_SECTORS,
3972 sector += STRIPE_SECTORS,
3973 scnt++) {
3974
3975 if (scnt < raid_bio->bi_hw_segments)
3976
3977 continue;
3978
3979 sh = get_active_stripe(conf, sector, conf->raid_disks, pd_idx, 1);
3980
3981 if (!sh) {
3982
3983 raid_bio->bi_hw_segments = scnt;
3984 conf->retry_read_aligned = raid_bio;
3985 return handled;
3986 }
3987
3988 set_bit(R5_ReadError, &sh->dev[dd_idx].flags);
3989 if (!add_stripe_bio(sh, raid_bio, dd_idx, 0)) {
3990 release_stripe(sh);
3991 raid_bio->bi_hw_segments = scnt;
3992 conf->retry_read_aligned = raid_bio;
3993 return handled;
3994 }
3995
3996 handle_stripe(sh, NULL);
3997 release_stripe(sh);
3998 handled++;
3999 }
4000 spin_lock_irq(&conf->device_lock);
4001 remaining = --raid_bio->bi_phys_segments;
4002 spin_unlock_irq(&conf->device_lock);
4003 if (remaining == 0) {
4004
4005 raid_bio->bi_end_io(raid_bio,
4006 test_bit(BIO_UPTODATE, &raid_bio->bi_flags)
4007 ? 0 : -EIO);
4008 }
4009 if (atomic_dec_and_test(&conf->active_aligned_reads))
4010 wake_up(&conf->wait_for_stripe);
4011 return handled;
4012}
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023static void raid5d(mddev_t *mddev)
4024{
4025 struct stripe_head *sh;
4026 raid5_conf_t *conf = mddev_to_conf(mddev);
4027 int handled;
4028
4029 pr_debug("+++ raid5d active\n");
4030
4031 md_check_recovery(mddev);
4032
4033 handled = 0;
4034 spin_lock_irq(&conf->device_lock);
4035 while (1) {
4036 struct bio *bio;
4037
4038 if (conf->seq_flush != conf->seq_write) {
4039 int seq = conf->seq_flush;
4040 spin_unlock_irq(&conf->device_lock);
4041 bitmap_unplug(mddev->bitmap);
4042 spin_lock_irq(&conf->device_lock);
4043 conf->seq_write = seq;
4044 activate_bit_delay(conf);
4045 }
4046
4047 while ((bio = remove_bio_from_retry(conf))) {
4048 int ok;
4049 spin_unlock_irq(&conf->device_lock);
4050 ok = retry_aligned_read(conf, bio);
4051 spin_lock_irq(&conf->device_lock);
4052 if (!ok)
4053 break;
4054 handled++;
4055 }
4056
4057 sh = __get_priority_stripe(conf);
4058
4059 if (!sh) {
4060 async_tx_issue_pending_all();
4061 break;
4062 }
4063 spin_unlock_irq(&conf->device_lock);
4064
4065 handled++;
4066 handle_stripe(sh, conf->spare_page);
4067 release_stripe(sh);
4068
4069 spin_lock_irq(&conf->device_lock);
4070 }
4071 pr_debug("%d stripes handled\n", handled);
4072
4073 spin_unlock_irq(&conf->device_lock);
4074
4075 unplug_slaves(mddev);
4076
4077 pr_debug("--- raid5d inactive\n");
4078}
4079
4080static ssize_t
4081raid5_show_stripe_cache_size(mddev_t *mddev, char *page)
4082{
4083 raid5_conf_t *conf = mddev_to_conf(mddev);
4084 if (conf)
4085 return sprintf(page, "%d\n", conf->max_nr_stripes);
4086 else
4087 return 0;
4088}
4089
4090static ssize_t
4091raid5_store_stripe_cache_size(mddev_t *mddev, const char *page, size_t len)
4092{
4093 raid5_conf_t *conf = mddev_to_conf(mddev);
4094 unsigned long new;
4095 if (len >= PAGE_SIZE)
4096 return -EINVAL;
4097 if (!conf)
4098 return -ENODEV;
4099
4100 if (strict_strtoul(page, 10, &new))
4101 return -EINVAL;
4102 if (new <= 16 || new > 32768)
4103 return -EINVAL;
4104 while (new < conf->max_nr_stripes) {
4105 if (drop_one_stripe(conf))
4106 conf->max_nr_stripes--;
4107 else
4108 break;
4109 }
4110 md_allow_write(mddev);
4111 while (new > conf->max_nr_stripes) {
4112 if (grow_one_stripe(conf))
4113 conf->max_nr_stripes++;
4114 else break;
4115 }
4116 return len;
4117}
4118
4119static struct md_sysfs_entry
4120raid5_stripecache_size = __ATTR(stripe_cache_size, S_IRUGO | S_IWUSR,
4121 raid5_show_stripe_cache_size,
4122 raid5_store_stripe_cache_size);
4123
4124static ssize_t
4125raid5_show_preread_threshold(mddev_t *mddev, char *page)
4126{
4127 raid5_conf_t *conf = mddev_to_conf(mddev);
4128 if (conf)
4129 return sprintf(page, "%d\n", conf->bypass_threshold);
4130 else
4131 return 0;
4132}
4133
4134static ssize_t
4135raid5_store_preread_threshold(mddev_t *mddev, const char *page, size_t len)
4136{
4137 raid5_conf_t *conf = mddev_to_conf(mddev);
4138 unsigned long new;
4139 if (len >= PAGE_SIZE)
4140 return -EINVAL;
4141 if (!conf)
4142 return -ENODEV;
4143
4144 if (strict_strtoul(page, 10, &new))
4145 return -EINVAL;
4146 if (new > conf->max_nr_stripes)
4147 return -EINVAL;
4148 conf->bypass_threshold = new;
4149 return len;
4150}
4151
4152static struct md_sysfs_entry
4153raid5_preread_bypass_threshold = __ATTR(preread_bypass_threshold,
4154 S_IRUGO | S_IWUSR,
4155 raid5_show_preread_threshold,
4156 raid5_store_preread_threshold);
4157
4158static ssize_t
4159stripe_cache_active_show(mddev_t *mddev, char *page)
4160{
4161 raid5_conf_t *conf = mddev_to_conf(mddev);
4162 if (conf)
4163 return sprintf(page, "%d\n", atomic_read(&conf->active_stripes));
4164 else
4165 return 0;
4166}
4167
4168static struct md_sysfs_entry
4169raid5_stripecache_active = __ATTR_RO(stripe_cache_active);
4170
4171static struct attribute *raid5_attrs[] = {
4172 &raid5_stripecache_size.attr,
4173 &raid5_stripecache_active.attr,
4174 &raid5_preread_bypass_threshold.attr,
4175 NULL,
4176};
4177static struct attribute_group raid5_attrs_group = {
4178 .name = NULL,
4179 .attrs = raid5_attrs,
4180};
4181
4182static int run(mddev_t *mddev)
4183{
4184 raid5_conf_t *conf;
4185 int raid_disk, memory;
4186 mdk_rdev_t *rdev;
4187 struct disk_info *disk;
4188 struct list_head *tmp;
4189 int working_disks = 0;
4190
4191 if (mddev->level != 5 && mddev->level != 4 && mddev->level != 6) {
4192 printk(KERN_ERR "raid5: %s: raid level not set to 4/5/6 (%d)\n",
4193 mdname(mddev), mddev->level);
4194 return -EIO;
4195 }
4196
4197 if (mddev->reshape_position != MaxSector) {
4198
4199
4200
4201
4202
4203 sector_t here_new, here_old;
4204 int old_disks;
4205 int max_degraded = (mddev->level == 5 ? 1 : 2);
4206
4207 if (mddev->new_level != mddev->level ||
4208 mddev->new_layout != mddev->layout ||
4209 mddev->new_chunk != mddev->chunk_size) {
4210 printk(KERN_ERR "raid5: %s: unsupported reshape "
4211 "required - aborting.\n",
4212 mdname(mddev));
4213 return -EINVAL;
4214 }
4215 if (mddev->delta_disks <= 0) {
4216 printk(KERN_ERR "raid5: %s: unsupported reshape "
4217 "(reduce disks) required - aborting.\n",
4218 mdname(mddev));
4219 return -EINVAL;
4220 }
4221 old_disks = mddev->raid_disks - mddev->delta_disks;
4222
4223
4224
4225
4226 here_new = mddev->reshape_position;
4227 if (sector_div(here_new, (mddev->chunk_size>>9)*
4228 (mddev->raid_disks - max_degraded))) {
4229 printk(KERN_ERR "raid5: reshape_position not "
4230 "on a stripe boundary\n");
4231 return -EINVAL;
4232 }
4233
4234 here_old = mddev->reshape_position;
4235 sector_div(here_old, (mddev->chunk_size>>9)*
4236 (old_disks-max_degraded));
4237
4238
4239 if (here_new >= here_old) {
4240
4241 printk(KERN_ERR "raid5: reshape_position too early for "
4242 "auto-recovery - aborting.\n");
4243 return -EINVAL;
4244 }
4245 printk(KERN_INFO "raid5: reshape will continue\n");
4246
4247 }
4248
4249
4250 mddev->private = kzalloc(sizeof (raid5_conf_t), GFP_KERNEL);
4251 if ((conf = mddev->private) == NULL)
4252 goto abort;
4253 if (mddev->reshape_position == MaxSector) {
4254 conf->previous_raid_disks = conf->raid_disks = mddev->raid_disks;
4255 } else {
4256 conf->raid_disks = mddev->raid_disks;
4257 conf->previous_raid_disks = mddev->raid_disks - mddev->delta_disks;
4258 }
4259
4260 conf->disks = kzalloc(conf->raid_disks * sizeof(struct disk_info),
4261 GFP_KERNEL);
4262 if (!conf->disks)
4263 goto abort;
4264
4265 conf->mddev = mddev;
4266
4267 if ((conf->stripe_hashtbl = kzalloc(PAGE_SIZE, GFP_KERNEL)) == NULL)
4268 goto abort;
4269
4270 if (mddev->level == 6) {
4271 conf->spare_page = alloc_page(GFP_KERNEL);
4272 if (!conf->spare_page)
4273 goto abort;
4274 }
4275 spin_lock_init(&conf->device_lock);
4276 mddev->queue->queue_lock = &conf->device_lock;
4277 init_waitqueue_head(&conf->wait_for_stripe);
4278 init_waitqueue_head(&conf->wait_for_overlap);
4279 INIT_LIST_HEAD(&conf->handle_list);
4280 INIT_LIST_HEAD(&conf->hold_list);
4281 INIT_LIST_HEAD(&conf->delayed_list);
4282 INIT_LIST_HEAD(&conf->bitmap_list);
4283 INIT_LIST_HEAD(&conf->inactive_list);
4284 atomic_set(&conf->active_stripes, 0);
4285 atomic_set(&conf->preread_active_stripes, 0);
4286 atomic_set(&conf->active_aligned_reads, 0);
4287 conf->bypass_threshold = BYPASS_THRESHOLD;
4288
4289 pr_debug("raid5: run(%s) called.\n", mdname(mddev));
4290
4291 rdev_for_each(rdev, tmp, mddev) {
4292 raid_disk = rdev->raid_disk;
4293 if (raid_disk >= conf->raid_disks
4294 || raid_disk < 0)
4295 continue;
4296 disk = conf->disks + raid_disk;
4297
4298 disk->rdev = rdev;
4299
4300 if (test_bit(In_sync, &rdev->flags)) {
4301 char b[BDEVNAME_SIZE];
4302 printk(KERN_INFO "raid5: device %s operational as raid"
4303 " disk %d\n", bdevname(rdev->bdev,b),
4304 raid_disk);
4305 working_disks++;
4306 } else
4307
4308 conf->fullsync = 1;
4309 }
4310
4311
4312
4313
4314 mddev->degraded = conf->raid_disks - working_disks;
4315 conf->mddev = mddev;
4316 conf->chunk_size = mddev->chunk_size;
4317 conf->level = mddev->level;
4318 if (conf->level == 6)
4319 conf->max_degraded = 2;
4320 else
4321 conf->max_degraded = 1;
4322 conf->algorithm = mddev->layout;
4323 conf->max_nr_stripes = NR_STRIPES;
4324 conf->expand_progress = mddev->reshape_position;
4325
4326
4327 mddev->size &= ~(mddev->chunk_size/1024 -1);
4328 mddev->resync_max_sectors = mddev->size << 1;
4329
4330 if (conf->level == 6 && conf->raid_disks < 4) {
4331 printk(KERN_ERR "raid6: not enough configured devices for %s (%d, minimum 4)\n",
4332 mdname(mddev), conf->raid_disks);
4333 goto abort;
4334 }
4335 if (!conf->chunk_size || conf->chunk_size % 4) {
4336 printk(KERN_ERR "raid5: invalid chunk size %d for %s\n",
4337 conf->chunk_size, mdname(mddev));
4338 goto abort;
4339 }
4340 if (conf->algorithm > ALGORITHM_RIGHT_SYMMETRIC) {
4341 printk(KERN_ERR
4342 "raid5: unsupported parity algorithm %d for %s\n",
4343 conf->algorithm, mdname(mddev));
4344 goto abort;
4345 }
4346 if (mddev->degraded > conf->max_degraded) {
4347 printk(KERN_ERR "raid5: not enough operational devices for %s"
4348 " (%d/%d failed)\n",
4349 mdname(mddev), mddev->degraded, conf->raid_disks);
4350 goto abort;
4351 }
4352
4353 if (mddev->degraded > 0 &&
4354 mddev->recovery_cp != MaxSector) {
4355 if (mddev->ok_start_degraded)
4356 printk(KERN_WARNING
4357 "raid5: starting dirty degraded array: %s"
4358 "- data corruption possible.\n",
4359 mdname(mddev));
4360 else {
4361 printk(KERN_ERR
4362 "raid5: cannot start dirty degraded array for %s\n",
4363 mdname(mddev));
4364 goto abort;
4365 }
4366 }
4367
4368 {
4369 mddev->thread = md_register_thread(raid5d, mddev, "%s_raid5");
4370 if (!mddev->thread) {
4371 printk(KERN_ERR
4372 "raid5: couldn't allocate thread for %s\n",
4373 mdname(mddev));
4374 goto abort;
4375 }
4376 }
4377 memory = conf->max_nr_stripes * (sizeof(struct stripe_head) +
4378 conf->raid_disks * ((sizeof(struct bio) + PAGE_SIZE))) / 1024;
4379 if (grow_stripes(conf, conf->max_nr_stripes)) {
4380 printk(KERN_ERR
4381 "raid5: couldn't allocate %dkB for buffers\n", memory);
4382 shrink_stripes(conf);
4383 md_unregister_thread(mddev->thread);
4384 goto abort;
4385 } else
4386 printk(KERN_INFO "raid5: allocated %dkB for %s\n",
4387 memory, mdname(mddev));
4388
4389 if (mddev->degraded == 0)
4390 printk("raid5: raid level %d set %s active with %d out of %d"
4391 " devices, algorithm %d\n", conf->level, mdname(mddev),
4392 mddev->raid_disks-mddev->degraded, mddev->raid_disks,
4393 conf->algorithm);
4394 else
4395 printk(KERN_ALERT "raid5: raid level %d set %s active with %d"
4396 " out of %d devices, algorithm %d\n", conf->level,
4397 mdname(mddev), mddev->raid_disks - mddev->degraded,
4398 mddev->raid_disks, conf->algorithm);
4399
4400 print_raid5_conf(conf);
4401
4402 if (conf->expand_progress != MaxSector) {
4403 printk("...ok start reshape thread\n");
4404 conf->expand_lo = conf->expand_progress;
4405 atomic_set(&conf->reshape_stripes, 0);
4406 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
4407 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
4408 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
4409 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
4410 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
4411 "%s_reshape");
4412 }
4413
4414
4415
4416
4417 {
4418 int data_disks = conf->previous_raid_disks - conf->max_degraded;
4419 int stripe = data_disks *
4420 (mddev->chunk_size / PAGE_SIZE);
4421 if (mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
4422 mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
4423 }
4424
4425
4426 if (sysfs_create_group(&mddev->kobj, &raid5_attrs_group))
4427 printk(KERN_WARNING
4428 "raid5: failed to create sysfs attributes for %s\n",
4429 mdname(mddev));
4430
4431 mddev->queue->unplug_fn = raid5_unplug_device;
4432 mddev->queue->backing_dev_info.congested_data = mddev;
4433 mddev->queue->backing_dev_info.congested_fn = raid5_congested;
4434
4435 mddev->array_size = mddev->size * (conf->previous_raid_disks -
4436 conf->max_degraded);
4437
4438 blk_queue_merge_bvec(mddev->queue, raid5_mergeable_bvec);
4439
4440 return 0;
4441abort:
4442 if (conf) {
4443 print_raid5_conf(conf);
4444 safe_put_page(conf->spare_page);
4445 kfree(conf->disks);
4446 kfree(conf->stripe_hashtbl);
4447 kfree(conf);
4448 }
4449 mddev->private = NULL;
4450 printk(KERN_ALERT "raid5: failed to run raid set %s\n", mdname(mddev));
4451 return -EIO;
4452}
4453
4454
4455
4456static int stop(mddev_t *mddev)
4457{
4458 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
4459
4460 md_unregister_thread(mddev->thread);
4461 mddev->thread = NULL;
4462 shrink_stripes(conf);
4463 kfree(conf->stripe_hashtbl);
4464 mddev->queue->backing_dev_info.congested_fn = NULL;
4465 blk_sync_queue(mddev->queue);
4466 sysfs_remove_group(&mddev->kobj, &raid5_attrs_group);
4467 kfree(conf->disks);
4468 kfree(conf);
4469 mddev->private = NULL;
4470 return 0;
4471}
4472
4473#ifdef DEBUG
4474static void print_sh (struct seq_file *seq, struct stripe_head *sh)
4475{
4476 int i;
4477
4478 seq_printf(seq, "sh %llu, pd_idx %d, state %ld.\n",
4479 (unsigned long long)sh->sector, sh->pd_idx, sh->state);
4480 seq_printf(seq, "sh %llu, count %d.\n",
4481 (unsigned long long)sh->sector, atomic_read(&sh->count));
4482 seq_printf(seq, "sh %llu, ", (unsigned long long)sh->sector);
4483 for (i = 0; i < sh->disks; i++) {
4484 seq_printf(seq, "(cache%d: %p %ld) ",
4485 i, sh->dev[i].page, sh->dev[i].flags);
4486 }
4487 seq_printf(seq, "\n");
4488}
4489
4490static void printall (struct seq_file *seq, raid5_conf_t *conf)
4491{
4492 struct stripe_head *sh;
4493 struct hlist_node *hn;
4494 int i;
4495
4496 spin_lock_irq(&conf->device_lock);
4497 for (i = 0; i < NR_HASH; i++) {
4498 hlist_for_each_entry(sh, hn, &conf->stripe_hashtbl[i], hash) {
4499 if (sh->raid_conf != conf)
4500 continue;
4501 print_sh(seq, sh);
4502 }
4503 }
4504 spin_unlock_irq(&conf->device_lock);
4505}
4506#endif
4507
4508static void status (struct seq_file *seq, mddev_t *mddev)
4509{
4510 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
4511 int i;
4512
4513 seq_printf (seq, " level %d, %dk chunk, algorithm %d", mddev->level, mddev->chunk_size >> 10, mddev->layout);
4514 seq_printf (seq, " [%d/%d] [", conf->raid_disks, conf->raid_disks - mddev->degraded);
4515 for (i = 0; i < conf->raid_disks; i++)
4516 seq_printf (seq, "%s",
4517 conf->disks[i].rdev &&
4518 test_bit(In_sync, &conf->disks[i].rdev->flags) ? "U" : "_");
4519 seq_printf (seq, "]");
4520#ifdef DEBUG
4521 seq_printf (seq, "\n");
4522 printall(seq, conf);
4523#endif
4524}
4525
4526static void print_raid5_conf (raid5_conf_t *conf)
4527{
4528 int i;
4529 struct disk_info *tmp;
4530
4531 printk("RAID5 conf printout:\n");
4532 if (!conf) {
4533 printk("(conf==NULL)\n");
4534 return;
4535 }
4536 printk(" --- rd:%d wd:%d\n", conf->raid_disks,
4537 conf->raid_disks - conf->mddev->degraded);
4538
4539 for (i = 0; i < conf->raid_disks; i++) {
4540 char b[BDEVNAME_SIZE];
4541 tmp = conf->disks + i;
4542 if (tmp->rdev)
4543 printk(" disk %d, o:%d, dev:%s\n",
4544 i, !test_bit(Faulty, &tmp->rdev->flags),
4545 bdevname(tmp->rdev->bdev,b));
4546 }
4547}
4548
4549static int raid5_spare_active(mddev_t *mddev)
4550{
4551 int i;
4552 raid5_conf_t *conf = mddev->private;
4553 struct disk_info *tmp;
4554
4555 for (i = 0; i < conf->raid_disks; i++) {
4556 tmp = conf->disks + i;
4557 if (tmp->rdev
4558 && !test_bit(Faulty, &tmp->rdev->flags)
4559 && !test_and_set_bit(In_sync, &tmp->rdev->flags)) {
4560 unsigned long flags;
4561 spin_lock_irqsave(&conf->device_lock, flags);
4562 mddev->degraded--;
4563 spin_unlock_irqrestore(&conf->device_lock, flags);
4564 }
4565 }
4566 print_raid5_conf(conf);
4567 return 0;
4568}
4569
4570static int raid5_remove_disk(mddev_t *mddev, int number)
4571{
4572 raid5_conf_t *conf = mddev->private;
4573 int err = 0;
4574 mdk_rdev_t *rdev;
4575 struct disk_info *p = conf->disks + number;
4576
4577 print_raid5_conf(conf);
4578 rdev = p->rdev;
4579 if (rdev) {
4580 if (test_bit(In_sync, &rdev->flags) ||
4581 atomic_read(&rdev->nr_pending)) {
4582 err = -EBUSY;
4583 goto abort;
4584 }
4585
4586
4587
4588 if (!test_bit(Faulty, &rdev->flags) &&
4589 mddev->degraded <= conf->max_degraded) {
4590 err = -EBUSY;
4591 goto abort;
4592 }
4593 p->rdev = NULL;
4594 synchronize_rcu();
4595 if (atomic_read(&rdev->nr_pending)) {
4596
4597 err = -EBUSY;
4598 p->rdev = rdev;
4599 }
4600 }
4601abort:
4602
4603 print_raid5_conf(conf);
4604 return err;
4605}
4606
4607static int raid5_add_disk(mddev_t *mddev, mdk_rdev_t *rdev)
4608{
4609 raid5_conf_t *conf = mddev->private;
4610 int found = 0;
4611 int disk;
4612 struct disk_info *p;
4613
4614 if (mddev->degraded > conf->max_degraded)
4615
4616 return 0;
4617
4618
4619
4620
4621
4622 if (rdev->saved_raid_disk >= 0 &&
4623 conf->disks[rdev->saved_raid_disk].rdev == NULL)
4624 disk = rdev->saved_raid_disk;
4625 else
4626 disk = 0;
4627 for ( ; disk < conf->raid_disks; disk++)
4628 if ((p=conf->disks + disk)->rdev == NULL) {
4629 clear_bit(In_sync, &rdev->flags);
4630 rdev->raid_disk = disk;
4631 found = 1;
4632 if (rdev->saved_raid_disk != disk)
4633 conf->fullsync = 1;
4634 rcu_assign_pointer(p->rdev, rdev);
4635 break;
4636 }
4637 print_raid5_conf(conf);
4638 return found;
4639}
4640
4641static int raid5_resize(mddev_t *mddev, sector_t sectors)
4642{
4643
4644
4645
4646
4647
4648
4649
4650 raid5_conf_t *conf = mddev_to_conf(mddev);
4651
4652 sectors &= ~((sector_t)mddev->chunk_size/512 - 1);
4653 mddev->array_size = (sectors * (mddev->raid_disks-conf->max_degraded))>>1;
4654 set_capacity(mddev->gendisk, mddev->array_size << 1);
4655 mddev->changed = 1;
4656 if (sectors/2 > mddev->size && mddev->recovery_cp == MaxSector) {
4657 mddev->recovery_cp = mddev->size << 1;
4658 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
4659 }
4660 mddev->size = sectors /2;
4661 mddev->resync_max_sectors = sectors;
4662 return 0;
4663}
4664
4665#ifdef CONFIG_MD_RAID5_RESHAPE
4666static int raid5_check_reshape(mddev_t *mddev)
4667{
4668 raid5_conf_t *conf = mddev_to_conf(mddev);
4669 int err;
4670
4671 if (mddev->delta_disks < 0 ||
4672 mddev->new_level != mddev->level)
4673 return -EINVAL;
4674 if (mddev->delta_disks == 0)
4675 return 0;
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685 if ((mddev->chunk_size / STRIPE_SIZE) * 4 > conf->max_nr_stripes ||
4686 (mddev->new_chunk / STRIPE_SIZE) * 4 > conf->max_nr_stripes) {
4687 printk(KERN_WARNING "raid5: reshape: not enough stripes. Needed %lu\n",
4688 (mddev->chunk_size / STRIPE_SIZE)*4);
4689 return -ENOSPC;
4690 }
4691
4692 err = resize_stripes(conf, conf->raid_disks + mddev->delta_disks);
4693 if (err)
4694 return err;
4695
4696 if (mddev->degraded > conf->max_degraded)
4697 return -EINVAL;
4698
4699 return 0;
4700}
4701
4702static int raid5_start_reshape(mddev_t *mddev)
4703{
4704 raid5_conf_t *conf = mddev_to_conf(mddev);
4705 mdk_rdev_t *rdev;
4706 struct list_head *rtmp;
4707 int spares = 0;
4708 int added_devices = 0;
4709 unsigned long flags;
4710
4711 if (test_bit(MD_RECOVERY_RUNNING, &mddev->recovery))
4712 return -EBUSY;
4713
4714 rdev_for_each(rdev, rtmp, mddev)
4715 if (rdev->raid_disk < 0 &&
4716 !test_bit(Faulty, &rdev->flags))
4717 spares++;
4718
4719 if (spares - mddev->degraded < mddev->delta_disks - conf->max_degraded)
4720
4721
4722
4723 return -EINVAL;
4724
4725 atomic_set(&conf->reshape_stripes, 0);
4726 spin_lock_irq(&conf->device_lock);
4727 conf->previous_raid_disks = conf->raid_disks;
4728 conf->raid_disks += mddev->delta_disks;
4729 conf->expand_progress = 0;
4730 conf->expand_lo = 0;
4731 spin_unlock_irq(&conf->device_lock);
4732
4733
4734
4735
4736 rdev_for_each(rdev, rtmp, mddev)
4737 if (rdev->raid_disk < 0 &&
4738 !test_bit(Faulty, &rdev->flags)) {
4739 if (raid5_add_disk(mddev, rdev)) {
4740 char nm[20];
4741 set_bit(In_sync, &rdev->flags);
4742 added_devices++;
4743 rdev->recovery_offset = 0;
4744 sprintf(nm, "rd%d", rdev->raid_disk);
4745 if (sysfs_create_link(&mddev->kobj,
4746 &rdev->kobj, nm))
4747 printk(KERN_WARNING
4748 "raid5: failed to create "
4749 " link %s for %s\n",
4750 nm, mdname(mddev));
4751 } else
4752 break;
4753 }
4754
4755 spin_lock_irqsave(&conf->device_lock, flags);
4756 mddev->degraded = (conf->raid_disks - conf->previous_raid_disks) - added_devices;
4757 spin_unlock_irqrestore(&conf->device_lock, flags);
4758 mddev->raid_disks = conf->raid_disks;
4759 mddev->reshape_position = 0;
4760 set_bit(MD_CHANGE_DEVS, &mddev->flags);
4761
4762 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
4763 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
4764 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
4765 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
4766 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
4767 "%s_reshape");
4768 if (!mddev->sync_thread) {
4769 mddev->recovery = 0;
4770 spin_lock_irq(&conf->device_lock);
4771 mddev->raid_disks = conf->raid_disks = conf->previous_raid_disks;
4772 conf->expand_progress = MaxSector;
4773 spin_unlock_irq(&conf->device_lock);
4774 return -EAGAIN;
4775 }
4776 md_wakeup_thread(mddev->sync_thread);
4777 md_new_event(mddev);
4778 return 0;
4779}
4780#endif
4781
4782static void end_reshape(raid5_conf_t *conf)
4783{
4784 struct block_device *bdev;
4785
4786 if (!test_bit(MD_RECOVERY_INTR, &conf->mddev->recovery)) {
4787 conf->mddev->array_size = conf->mddev->size *
4788 (conf->raid_disks - conf->max_degraded);
4789 set_capacity(conf->mddev->gendisk, conf->mddev->array_size << 1);
4790 conf->mddev->changed = 1;
4791
4792 bdev = bdget_disk(conf->mddev->gendisk, 0);
4793 if (bdev) {
4794 mutex_lock(&bdev->bd_inode->i_mutex);
4795 i_size_write(bdev->bd_inode, (loff_t)conf->mddev->array_size << 10);
4796 mutex_unlock(&bdev->bd_inode->i_mutex);
4797 bdput(bdev);
4798 }
4799 spin_lock_irq(&conf->device_lock);
4800 conf->expand_progress = MaxSector;
4801 spin_unlock_irq(&conf->device_lock);
4802 conf->mddev->reshape_position = MaxSector;
4803
4804
4805
4806
4807 {
4808 int data_disks = conf->previous_raid_disks - conf->max_degraded;
4809 int stripe = data_disks *
4810 (conf->mddev->chunk_size / PAGE_SIZE);
4811 if (conf->mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
4812 conf->mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
4813 }
4814 }
4815}
4816
4817static void raid5_quiesce(mddev_t *mddev, int state)
4818{
4819 raid5_conf_t *conf = mddev_to_conf(mddev);
4820
4821 switch(state) {
4822 case 2:
4823 wake_up(&conf->wait_for_overlap);
4824 break;
4825
4826 case 1:
4827 spin_lock_irq(&conf->device_lock);
4828 conf->quiesce = 1;
4829 wait_event_lock_irq(conf->wait_for_stripe,
4830 atomic_read(&conf->active_stripes) == 0 &&
4831 atomic_read(&conf->active_aligned_reads) == 0,
4832 conf->device_lock, );
4833 spin_unlock_irq(&conf->device_lock);
4834 break;
4835
4836 case 0:
4837 spin_lock_irq(&conf->device_lock);
4838 conf->quiesce = 0;
4839 wake_up(&conf->wait_for_stripe);
4840 wake_up(&conf->wait_for_overlap);
4841 spin_unlock_irq(&conf->device_lock);
4842 break;
4843 }
4844}
4845
4846static struct mdk_personality raid6_personality =
4847{
4848 .name = "raid6",
4849 .level = 6,
4850 .owner = THIS_MODULE,
4851 .make_request = make_request,
4852 .run = run,
4853 .stop = stop,
4854 .status = status,
4855 .error_handler = error,
4856 .hot_add_disk = raid5_add_disk,
4857 .hot_remove_disk= raid5_remove_disk,
4858 .spare_active = raid5_spare_active,
4859 .sync_request = sync_request,
4860 .resize = raid5_resize,
4861#ifdef CONFIG_MD_RAID5_RESHAPE
4862 .check_reshape = raid5_check_reshape,
4863 .start_reshape = raid5_start_reshape,
4864#endif
4865 .quiesce = raid5_quiesce,
4866};
4867static struct mdk_personality raid5_personality =
4868{
4869 .name = "raid5",
4870 .level = 5,
4871 .owner = THIS_MODULE,
4872 .make_request = make_request,
4873 .run = run,
4874 .stop = stop,
4875 .status = status,
4876 .error_handler = error,
4877 .hot_add_disk = raid5_add_disk,
4878 .hot_remove_disk= raid5_remove_disk,
4879 .spare_active = raid5_spare_active,
4880 .sync_request = sync_request,
4881 .resize = raid5_resize,
4882#ifdef CONFIG_MD_RAID5_RESHAPE
4883 .check_reshape = raid5_check_reshape,
4884 .start_reshape = raid5_start_reshape,
4885#endif
4886 .quiesce = raid5_quiesce,
4887};
4888
4889static struct mdk_personality raid4_personality =
4890{
4891 .name = "raid4",
4892 .level = 4,
4893 .owner = THIS_MODULE,
4894 .make_request = make_request,
4895 .run = run,
4896 .stop = stop,
4897 .status = status,
4898 .error_handler = error,
4899 .hot_add_disk = raid5_add_disk,
4900 .hot_remove_disk= raid5_remove_disk,
4901 .spare_active = raid5_spare_active,
4902 .sync_request = sync_request,
4903 .resize = raid5_resize,
4904#ifdef CONFIG_MD_RAID5_RESHAPE
4905 .check_reshape = raid5_check_reshape,
4906 .start_reshape = raid5_start_reshape,
4907#endif
4908 .quiesce = raid5_quiesce,
4909};
4910
4911static int __init raid5_init(void)
4912{
4913 int e;
4914
4915 e = raid6_select_algo();
4916 if ( e )
4917 return e;
4918 register_md_personality(&raid6_personality);
4919 register_md_personality(&raid5_personality);
4920 register_md_personality(&raid4_personality);
4921 return 0;
4922}
4923
4924static void raid5_exit(void)
4925{
4926 unregister_md_personality(&raid6_personality);
4927 unregister_md_personality(&raid5_personality);
4928 unregister_md_personality(&raid4_personality);
4929}
4930
4931module_init(raid5_init);
4932module_exit(raid5_exit);
4933MODULE_LICENSE("GPL");
4934MODULE_ALIAS("md-personality-4");
4935MODULE_ALIAS("md-raid5");
4936MODULE_ALIAS("md-raid4");
4937MODULE_ALIAS("md-level-5");
4938MODULE_ALIAS("md-level-4");
4939MODULE_ALIAS("md-personality-8");
4940MODULE_ALIAS("md-raid6");
4941MODULE_ALIAS("md-level-6");
4942
4943
4944MODULE_ALIAS("raid5");
4945MODULE_ALIAS("raid6");
4946