]> nv-tegra.nvidia Code Review - linux-2.6.git/blob - drivers/md/raid5.c
Merge branch 'next' of git://git.kernel.org/pub/scm/linux/kernel/git/djbw/async_tx...
[linux-2.6.git] / drivers / md / raid5.c
1 /*
2  * raid5.c : Multiple Devices driver for Linux
3  *         Copyright (C) 1996, 1997 Ingo Molnar, Miguel de Icaza, Gadi Oxman
4  *         Copyright (C) 1999, 2000 Ingo Molnar
5  *         Copyright (C) 2002, 2003 H. Peter Anvin
6  *
7  * RAID-4/5/6 management functions.
8  * Thanks to Penguin Computing for making the RAID-6 development possible
9  * by donating a test server!
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2, or (at your option)
14  * any later version.
15  *
16  * You should have received a copy of the GNU General Public License
17  * (for example /usr/src/linux/COPYING); if not, write to the Free
18  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19  */
20
21 /*
22  * BITMAP UNPLUGGING:
23  *
24  * The sequencing for updating the bitmap reliably is a little
25  * subtle (and I got it wrong the first time) so it deserves some
26  * explanation.
27  *
28  * We group bitmap updates into batches.  Each batch has a number.
29  * We may write out several batches at once, but that isn't very important.
30  * conf->bm_write is the number of the last batch successfully written.
31  * conf->bm_flush is the number of the last batch that was closed to
32  *    new additions.
33  * When we discover that we will need to write to any block in a stripe
34  * (in add_stripe_bio) we update the in-memory bitmap and record in sh->bm_seq
35  * the number of the batch it will be in. This is bm_flush+1.
36  * When we are ready to do a write, if that batch hasn't been written yet,
37  *   we plug the array and queue the stripe for later.
38  * When an unplug happens, we increment bm_flush, thus closing the current
39  *   batch.
40  * When we notice that bm_flush > bm_write, we write out all pending updates
41  * to the bitmap, and advance bm_write to where bm_flush was.
42  * This may occasionally write a bit out twice, but is sure never to
43  * miss any bits.
44  */
45
46 #include <linux/blkdev.h>
47 #include <linux/kthread.h>
48 #include <linux/raid/pq.h>
49 #include <linux/async_tx.h>
50 #include <linux/async.h>
51 #include <linux/seq_file.h>
52 #include <linux/cpu.h>
53 #include "md.h"
54 #include "raid5.h"
55 #include "bitmap.h"
56
57 /*
58  * Stripe cache
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 /* bio's attached to a stripe+device for I/O are linked together in bi_sector
73  * order without overlap.  There may be several bio's per stripe+device, and
74  * a bio could span several devices.
75  * When walking this list for a particular stripe+device, we must never proceed
76  * beyond a bio that extends past this device, as the next bio might no longer
77  * be valid.
78  * This macro is used to determine the 'next' bio in the list, given the sector
79  * of the current stripe+device
80  */
81 #define r5_next_bio(bio, sect) ( ( (bio)->bi_sector + ((bio)->bi_size>>9) < sect + STRIPE_SECTORS) ? (bio)->bi_next : NULL)
82 /*
83  * The following can be used to debug the driver
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 /*
100  * We maintain a biased count of active stripes in the bottom 16 bits of
101  * bi_phys_segments, and a count of processed stripes in the upper 16 bits
102  */
103 static inline int raid5_bi_phys_segments(struct bio *bio)
104 {
105         return bio->bi_phys_segments & 0xffff;
106 }
107
108 static inline int raid5_bi_hw_segments(struct bio *bio)
109 {
110         return (bio->bi_phys_segments >> 16) & 0xffff;
111 }
112
113 static inline int raid5_dec_bi_phys_segments(struct bio *bio)
114 {
115         --bio->bi_phys_segments;
116         return raid5_bi_phys_segments(bio);
117 }
118
119 static inline int raid5_dec_bi_hw_segments(struct bio *bio)
120 {
121         unsigned short val = raid5_bi_hw_segments(bio);
122
123         --val;
124         bio->bi_phys_segments = (val << 16) | raid5_bi_phys_segments(bio);
125         return val;
126 }
127
128 static inline void raid5_set_bi_hw_segments(struct bio *bio, unsigned int cnt)
129 {
130         bio->bi_phys_segments = raid5_bi_phys_segments(bio) || (cnt << 16);
131 }
132
133 /* Find first data disk in a raid6 stripe */
134 static inline int raid6_d0(struct stripe_head *sh)
135 {
136         if (sh->ddf_layout)
137                 /* ddf always start from first device */
138                 return 0;
139         /* md starts just after Q block */
140         if (sh->qd_idx == sh->disks - 1)
141                 return 0;
142         else
143                 return sh->qd_idx + 1;
144 }
145 static inline int raid6_next_disk(int disk, int raid_disks)
146 {
147         disk++;
148         return (disk < raid_disks) ? disk : 0;
149 }
150
151 /* When walking through the disks in a raid5, starting at raid6_d0,
152  * We need to map each disk to a 'slot', where the data disks are slot
153  * 0 .. raid_disks-3, the parity disk is raid_disks-2 and the Q disk
154  * is raid_disks-1.  This help does that mapping.
155  */
156 static int raid6_idx_to_slot(int idx, struct stripe_head *sh,
157                              int *count, int syndrome_disks)
158 {
159         int slot;
160
161         if (idx == sh->pd_idx)
162                 return syndrome_disks;
163         if (idx == sh->qd_idx)
164                 return syndrome_disks + 1;
165         slot = (*count)++;
166         return slot;
167 }
168
169 static void return_io(struct bio *return_bi)
170 {
171         struct bio *bi = return_bi;
172         while (bi) {
173
174                 return_bi = bi->bi_next;
175                 bi->bi_next = NULL;
176                 bi->bi_size = 0;
177                 bio_endio(bi, 0);
178                 bi = return_bi;
179         }
180 }
181
182 static void print_raid5_conf (raid5_conf_t *conf);
183
184 static int stripe_operations_active(struct stripe_head *sh)
185 {
186         return sh->check_state || sh->reconstruct_state ||
187                test_bit(STRIPE_BIOFILL_RUN, &sh->state) ||
188                test_bit(STRIPE_COMPUTE_RUN, &sh->state);
189 }
190
191 static void __release_stripe(raid5_conf_t *conf, struct stripe_head *sh)
192 {
193         if (atomic_dec_and_test(&sh->count)) {
194                 BUG_ON(!list_empty(&sh->lru));
195                 BUG_ON(atomic_read(&conf->active_stripes)==0);
196                 if (test_bit(STRIPE_HANDLE, &sh->state)) {
197                         if (test_bit(STRIPE_DELAYED, &sh->state)) {
198                                 list_add_tail(&sh->lru, &conf->delayed_list);
199                                 blk_plug_device(conf->mddev->queue);
200                         } else if (test_bit(STRIPE_BIT_DELAY, &sh->state) &&
201                                    sh->bm_seq - conf->seq_write > 0) {
202                                 list_add_tail(&sh->lru, &conf->bitmap_list);
203                                 blk_plug_device(conf->mddev->queue);
204                         } else {
205                                 clear_bit(STRIPE_BIT_DELAY, &sh->state);
206                                 list_add_tail(&sh->lru, &conf->handle_list);
207                         }
208                         md_wakeup_thread(conf->mddev->thread);
209                 } else {
210                         BUG_ON(stripe_operations_active(sh));
211                         if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
212                                 atomic_dec(&conf->preread_active_stripes);
213                                 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD)
214                                         md_wakeup_thread(conf->mddev->thread);
215                         }
216                         atomic_dec(&conf->active_stripes);
217                         if (!test_bit(STRIPE_EXPANDING, &sh->state)) {
218                                 list_add_tail(&sh->lru, &conf->inactive_list);
219                                 wake_up(&conf->wait_for_stripe);
220                                 if (conf->retry_read_aligned)
221                                         md_wakeup_thread(conf->mddev->thread);
222                         }
223                 }
224         }
225 }
226
227 static void release_stripe(struct stripe_head *sh)
228 {
229         raid5_conf_t *conf = sh->raid_conf;
230         unsigned long flags;
231
232         spin_lock_irqsave(&conf->device_lock, flags);
233         __release_stripe(conf, sh);
234         spin_unlock_irqrestore(&conf->device_lock, flags);
235 }
236
237 static inline void remove_hash(struct stripe_head *sh)
238 {
239         pr_debug("remove_hash(), stripe %llu\n",
240                 (unsigned long long)sh->sector);
241
242         hlist_del_init(&sh->hash);
243 }
244
245 static inline void insert_hash(raid5_conf_t *conf, struct stripe_head *sh)
246 {
247         struct hlist_head *hp = stripe_hash(conf, sh->sector);
248
249         pr_debug("insert_hash(), stripe %llu\n",
250                 (unsigned long long)sh->sector);
251
252         CHECK_DEVLOCK();
253         hlist_add_head(&sh->hash, hp);
254 }
255
256
257 /* find an idle stripe, make sure it is unhashed, and return it. */
258 static struct stripe_head *get_free_stripe(raid5_conf_t *conf)
259 {
260         struct stripe_head *sh = NULL;
261         struct list_head *first;
262
263         CHECK_DEVLOCK();
264         if (list_empty(&conf->inactive_list))
265                 goto out;
266         first = conf->inactive_list.next;
267         sh = list_entry(first, struct stripe_head, lru);
268         list_del_init(first);
269         remove_hash(sh);
270         atomic_inc(&conf->active_stripes);
271 out:
272         return sh;
273 }
274
275 static void shrink_buffers(struct stripe_head *sh, int num)
276 {
277         struct page *p;
278         int i;
279
280         for (i=0; i<num ; i++) {
281                 p = sh->dev[i].page;
282                 if (!p)
283                         continue;
284                 sh->dev[i].page = NULL;
285                 put_page(p);
286         }
287 }
288
289 static int grow_buffers(struct stripe_head *sh, int num)
290 {
291         int i;
292
293         for (i=0; i<num; i++) {
294                 struct page *page;
295
296                 if (!(page = alloc_page(GFP_KERNEL))) {
297                         return 1;
298                 }
299                 sh->dev[i].page = page;
300         }
301         return 0;
302 }
303
304 static void raid5_build_block(struct stripe_head *sh, int i, int previous);
305 static void stripe_set_idx(sector_t stripe, raid5_conf_t *conf, int previous,
306                             struct stripe_head *sh);
307
308 static void init_stripe(struct stripe_head *sh, sector_t sector, int previous)
309 {
310         raid5_conf_t *conf = sh->raid_conf;
311         int i;
312
313         BUG_ON(atomic_read(&sh->count) != 0);
314         BUG_ON(test_bit(STRIPE_HANDLE, &sh->state));
315         BUG_ON(stripe_operations_active(sh));
316
317         CHECK_DEVLOCK();
318         pr_debug("init_stripe called, stripe %llu\n",
319                 (unsigned long long)sh->sector);
320
321         remove_hash(sh);
322
323         sh->generation = conf->generation - previous;
324         sh->disks = previous ? conf->previous_raid_disks : conf->raid_disks;
325         sh->sector = sector;
326         stripe_set_idx(sector, conf, previous, sh);
327         sh->state = 0;
328
329
330         for (i = sh->disks; i--; ) {
331                 struct r5dev *dev = &sh->dev[i];
332
333                 if (dev->toread || dev->read || dev->towrite || dev->written ||
334                     test_bit(R5_LOCKED, &dev->flags)) {
335                         printk(KERN_ERR "sector=%llx i=%d %p %p %p %p %d\n",
336                                (unsigned long long)sh->sector, i, dev->toread,
337                                dev->read, dev->towrite, dev->written,
338                                test_bit(R5_LOCKED, &dev->flags));
339                         BUG();
340                 }
341                 dev->flags = 0;
342                 raid5_build_block(sh, i, previous);
343         }
344         insert_hash(conf, sh);
345 }
346
347 static struct stripe_head *__find_stripe(raid5_conf_t *conf, sector_t sector,
348                                          short generation)
349 {
350         struct stripe_head *sh;
351         struct hlist_node *hn;
352
353         CHECK_DEVLOCK();
354         pr_debug("__find_stripe, sector %llu\n", (unsigned long long)sector);
355         hlist_for_each_entry(sh, hn, stripe_hash(conf, sector), hash)
356                 if (sh->sector == sector && sh->generation == generation)
357                         return sh;
358         pr_debug("__stripe %llu not in cache\n", (unsigned long long)sector);
359         return NULL;
360 }
361
362 static void unplug_slaves(mddev_t *mddev);
363 static void raid5_unplug_device(struct request_queue *q);
364
365 static struct stripe_head *
366 get_active_stripe(raid5_conf_t *conf, sector_t sector,
367                   int previous, int noblock, int noquiesce)
368 {
369         struct stripe_head *sh;
370
371         pr_debug("get_stripe, sector %llu\n", (unsigned long long)sector);
372
373         spin_lock_irq(&conf->device_lock);
374
375         do {
376                 wait_event_lock_irq(conf->wait_for_stripe,
377                                     conf->quiesce == 0 || noquiesce,
378                                     conf->device_lock, /* nothing */);
379                 sh = __find_stripe(conf, sector, conf->generation - previous);
380                 if (!sh) {
381                         if (!conf->inactive_blocked)
382                                 sh = get_free_stripe(conf);
383                         if (noblock && sh == NULL)
384                                 break;
385                         if (!sh) {
386                                 conf->inactive_blocked = 1;
387                                 wait_event_lock_irq(conf->wait_for_stripe,
388                                                     !list_empty(&conf->inactive_list) &&
389                                                     (atomic_read(&conf->active_stripes)
390                                                      < (conf->max_nr_stripes *3/4)
391                                                      || !conf->inactive_blocked),
392                                                     conf->device_lock,
393                                                     raid5_unplug_device(conf->mddev->queue)
394                                         );
395                                 conf->inactive_blocked = 0;
396                         } else
397                                 init_stripe(sh, sector, previous);
398                 } else {
399                         if (atomic_read(&sh->count)) {
400                                 BUG_ON(!list_empty(&sh->lru)
401                                     && !test_bit(STRIPE_EXPANDING, &sh->state));
402                         } else {
403                                 if (!test_bit(STRIPE_HANDLE, &sh->state))
404                                         atomic_inc(&conf->active_stripes);
405                                 if (list_empty(&sh->lru) &&
406                                     !test_bit(STRIPE_EXPANDING, &sh->state))
407                                         BUG();
408                                 list_del_init(&sh->lru);
409                         }
410                 }
411         } while (sh == NULL);
412
413         if (sh)
414                 atomic_inc(&sh->count);
415
416         spin_unlock_irq(&conf->device_lock);
417         return sh;
418 }
419
420 static void
421 raid5_end_read_request(struct bio *bi, int error);
422 static void
423 raid5_end_write_request(struct bio *bi, int error);
424
425 static void ops_run_io(struct stripe_head *sh, struct stripe_head_state *s)
426 {
427         raid5_conf_t *conf = sh->raid_conf;
428         int i, disks = sh->disks;
429
430         might_sleep();
431
432         for (i = disks; i--; ) {
433                 int rw;
434                 struct bio *bi;
435                 mdk_rdev_t *rdev;
436                 if (test_and_clear_bit(R5_Wantwrite, &sh->dev[i].flags))
437                         rw = WRITE;
438                 else if (test_and_clear_bit(R5_Wantread, &sh->dev[i].flags))
439                         rw = READ;
440                 else
441                         continue;
442
443                 bi = &sh->dev[i].req;
444
445                 bi->bi_rw = rw;
446                 if (rw == WRITE)
447                         bi->bi_end_io = raid5_end_write_request;
448                 else
449                         bi->bi_end_io = raid5_end_read_request;
450
451                 rcu_read_lock();
452                 rdev = rcu_dereference(conf->disks[i].rdev);
453                 if (rdev && test_bit(Faulty, &rdev->flags))
454                         rdev = NULL;
455                 if (rdev)
456                         atomic_inc(&rdev->nr_pending);
457                 rcu_read_unlock();
458
459                 if (rdev) {
460                         if (s->syncing || s->expanding || s->expanded)
461                                 md_sync_acct(rdev->bdev, STRIPE_SECTORS);
462
463                         set_bit(STRIPE_IO_STARTED, &sh->state);
464
465                         bi->bi_bdev = rdev->bdev;
466                         pr_debug("%s: for %llu schedule op %ld on disc %d\n",
467                                 __func__, (unsigned long long)sh->sector,
468                                 bi->bi_rw, i);
469                         atomic_inc(&sh->count);
470                         bi->bi_sector = sh->sector + rdev->data_offset;
471                         bi->bi_flags = 1 << BIO_UPTODATE;
472                         bi->bi_vcnt = 1;
473                         bi->bi_max_vecs = 1;
474                         bi->bi_idx = 0;
475                         bi->bi_io_vec = &sh->dev[i].vec;
476                         bi->bi_io_vec[0].bv_len = STRIPE_SIZE;
477                         bi->bi_io_vec[0].bv_offset = 0;
478                         bi->bi_size = STRIPE_SIZE;
479                         bi->bi_next = NULL;
480                         if (rw == WRITE &&
481                             test_bit(R5_ReWrite, &sh->dev[i].flags))
482                                 atomic_add(STRIPE_SECTORS,
483                                         &rdev->corrected_errors);
484                         generic_make_request(bi);
485                 } else {
486                         if (rw == WRITE)
487                                 set_bit(STRIPE_DEGRADED, &sh->state);
488                         pr_debug("skip op %ld on disc %d for sector %llu\n",
489                                 bi->bi_rw, i, (unsigned long long)sh->sector);
490                         clear_bit(R5_LOCKED, &sh->dev[i].flags);
491                         set_bit(STRIPE_HANDLE, &sh->state);
492                 }
493         }
494 }
495
496 static struct dma_async_tx_descriptor *
497 async_copy_data(int frombio, struct bio *bio, struct page *page,
498         sector_t sector, struct dma_async_tx_descriptor *tx)
499 {
500         struct bio_vec *bvl;
501         struct page *bio_page;
502         int i;
503         int page_offset;
504         struct async_submit_ctl submit;
505         enum async_tx_flags flags = 0;
506
507         if (bio->bi_sector >= sector)
508                 page_offset = (signed)(bio->bi_sector - sector) * 512;
509         else
510                 page_offset = (signed)(sector - bio->bi_sector) * -512;
511
512         if (frombio)
513                 flags |= ASYNC_TX_FENCE;
514         init_async_submit(&submit, flags, tx, NULL, NULL, NULL);
515
516         bio_for_each_segment(bvl, bio, i) {
517                 int len = bio_iovec_idx(bio, i)->bv_len;
518                 int clen;
519                 int b_offset = 0;
520
521                 if (page_offset < 0) {
522                         b_offset = -page_offset;
523                         page_offset += b_offset;
524                         len -= b_offset;
525                 }
526
527                 if (len > 0 && page_offset + len > STRIPE_SIZE)
528                         clen = STRIPE_SIZE - page_offset;
529                 else
530                         clen = len;
531
532                 if (clen > 0) {
533                         b_offset += bio_iovec_idx(bio, i)->bv_offset;
534                         bio_page = bio_iovec_idx(bio, i)->bv_page;
535                         if (frombio)
536                                 tx = async_memcpy(page, bio_page, page_offset,
537                                                   b_offset, clen, &submit);
538                         else
539                                 tx = async_memcpy(bio_page, page, b_offset,
540                                                   page_offset, clen, &submit);
541                 }
542                 /* chain the operations */
543                 submit.depend_tx = tx;
544
545                 if (clen < len) /* hit end of page */
546                         break;
547                 page_offset +=  len;
548         }
549
550         return tx;
551 }
552
553 static void ops_complete_biofill(void *stripe_head_ref)
554 {
555         struct stripe_head *sh = stripe_head_ref;
556         struct bio *return_bi = NULL;
557         raid5_conf_t *conf = sh->raid_conf;
558         int i;
559
560         pr_debug("%s: stripe %llu\n", __func__,
561                 (unsigned long long)sh->sector);
562
563         /* clear completed biofills */
564         spin_lock_irq(&conf->device_lock);
565         for (i = sh->disks; i--; ) {
566                 struct r5dev *dev = &sh->dev[i];
567
568                 /* acknowledge completion of a biofill operation */
569                 /* and check if we need to reply to a read request,
570                  * new R5_Wantfill requests are held off until
571                  * !STRIPE_BIOFILL_RUN
572                  */
573                 if (test_and_clear_bit(R5_Wantfill, &dev->flags)) {
574                         struct bio *rbi, *rbi2;
575
576                         BUG_ON(!dev->read);
577                         rbi = dev->read;
578                         dev->read = NULL;
579                         while (rbi && rbi->bi_sector <
580                                 dev->sector + STRIPE_SECTORS) {
581                                 rbi2 = r5_next_bio(rbi, dev->sector);
582                                 if (!raid5_dec_bi_phys_segments(rbi)) {
583                                         rbi->bi_next = return_bi;
584                                         return_bi = rbi;
585                                 }
586                                 rbi = rbi2;
587                         }
588                 }
589         }
590         spin_unlock_irq(&conf->device_lock);
591         clear_bit(STRIPE_BIOFILL_RUN, &sh->state);
592
593         return_io(return_bi);
594
595         set_bit(STRIPE_HANDLE, &sh->state);
596         release_stripe(sh);
597 }
598
599 static void ops_run_biofill(struct stripe_head *sh)
600 {
601         struct dma_async_tx_descriptor *tx = NULL;
602         raid5_conf_t *conf = sh->raid_conf;
603         struct async_submit_ctl submit;
604         int i;
605
606         pr_debug("%s: stripe %llu\n", __func__,
607                 (unsigned long long)sh->sector);
608
609         for (i = sh->disks; i--; ) {
610                 struct r5dev *dev = &sh->dev[i];
611                 if (test_bit(R5_Wantfill, &dev->flags)) {
612                         struct bio *rbi;
613                         spin_lock_irq(&conf->device_lock);
614                         dev->read = rbi = dev->toread;
615                         dev->toread = NULL;
616                         spin_unlock_irq(&conf->device_lock);
617                         while (rbi && rbi->bi_sector <
618                                 dev->sector + STRIPE_SECTORS) {
619                                 tx = async_copy_data(0, rbi, dev->page,
620                                         dev->sector, tx);
621                                 rbi = r5_next_bio(rbi, dev->sector);
622                         }
623                 }
624         }
625
626         atomic_inc(&sh->count);
627         init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_biofill, sh, NULL);
628         async_trigger_callback(&submit);
629 }
630
631 static void mark_target_uptodate(struct stripe_head *sh, int target)
632 {
633         struct r5dev *tgt;
634
635         if (target < 0)
636                 return;
637
638         tgt = &sh->dev[target];
639         set_bit(R5_UPTODATE, &tgt->flags);
640         BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
641         clear_bit(R5_Wantcompute, &tgt->flags);
642 }
643
644 static void ops_complete_compute(void *stripe_head_ref)
645 {
646         struct stripe_head *sh = stripe_head_ref;
647
648         pr_debug("%s: stripe %llu\n", __func__,
649                 (unsigned long long)sh->sector);
650
651         /* mark the computed target(s) as uptodate */
652         mark_target_uptodate(sh, sh->ops.target);
653         mark_target_uptodate(sh, sh->ops.target2);
654
655         clear_bit(STRIPE_COMPUTE_RUN, &sh->state);
656         if (sh->check_state == check_state_compute_run)
657                 sh->check_state = check_state_compute_result;
658         set_bit(STRIPE_HANDLE, &sh->state);
659         release_stripe(sh);
660 }
661
662 /* return a pointer to the address conversion region of the scribble buffer */
663 static addr_conv_t *to_addr_conv(struct stripe_head *sh,
664                                  struct raid5_percpu *percpu)
665 {
666         return percpu->scribble + sizeof(struct page *) * (sh->disks + 2);
667 }
668
669 static struct dma_async_tx_descriptor *
670 ops_run_compute5(struct stripe_head *sh, struct raid5_percpu *percpu)
671 {
672         int disks = sh->disks;
673         struct page **xor_srcs = percpu->scribble;
674         int target = sh->ops.target;
675         struct r5dev *tgt = &sh->dev[target];
676         struct page *xor_dest = tgt->page;
677         int count = 0;
678         struct dma_async_tx_descriptor *tx;
679         struct async_submit_ctl submit;
680         int i;
681
682         pr_debug("%s: stripe %llu block: %d\n",
683                 __func__, (unsigned long long)sh->sector, target);
684         BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
685
686         for (i = disks; i--; )
687                 if (i != target)
688                         xor_srcs[count++] = sh->dev[i].page;
689
690         atomic_inc(&sh->count);
691
692         init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST, NULL,
693                           ops_complete_compute, sh, to_addr_conv(sh, percpu));
694         if (unlikely(count == 1))
695                 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
696         else
697                 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
698
699         return tx;
700 }
701
702 /* set_syndrome_sources - populate source buffers for gen_syndrome
703  * @srcs - (struct page *) array of size sh->disks
704  * @sh - stripe_head to parse
705  *
706  * Populates srcs in proper layout order for the stripe and returns the
707  * 'count' of sources to be used in a call to async_gen_syndrome.  The P
708  * destination buffer is recorded in srcs[count] and the Q destination
709  * is recorded in srcs[count+1]].
710  */
711 static int set_syndrome_sources(struct page **srcs, struct stripe_head *sh)
712 {
713         int disks = sh->disks;
714         int syndrome_disks = sh->ddf_layout ? disks : (disks - 2);
715         int d0_idx = raid6_d0(sh);
716         int count;
717         int i;
718
719         for (i = 0; i < disks; i++)
720                 srcs[i] = (void *)raid6_empty_zero_page;
721
722         count = 0;
723         i = d0_idx;
724         do {
725                 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
726
727                 srcs[slot] = sh->dev[i].page;
728                 i = raid6_next_disk(i, disks);
729         } while (i != d0_idx);
730         BUG_ON(count != syndrome_disks);
731
732         return count;
733 }
734
735 static struct dma_async_tx_descriptor *
736 ops_run_compute6_1(struct stripe_head *sh, struct raid5_percpu *percpu)
737 {
738         int disks = sh->disks;
739         struct page **blocks = percpu->scribble;
740         int target;
741         int qd_idx = sh->qd_idx;
742         struct dma_async_tx_descriptor *tx;
743         struct async_submit_ctl submit;
744         struct r5dev *tgt;
745         struct page *dest;
746         int i;
747         int count;
748
749         if (sh->ops.target < 0)
750                 target = sh->ops.target2;
751         else if (sh->ops.target2 < 0)
752                 target = sh->ops.target;
753         else
754                 /* we should only have one valid target */
755                 BUG();
756         BUG_ON(target < 0);
757         pr_debug("%s: stripe %llu block: %d\n",
758                 __func__, (unsigned long long)sh->sector, target);
759
760         tgt = &sh->dev[target];
761         BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
762         dest = tgt->page;
763
764         atomic_inc(&sh->count);
765
766         if (target == qd_idx) {
767                 count = set_syndrome_sources(blocks, sh);
768                 blocks[count] = NULL; /* regenerating p is not necessary */
769                 BUG_ON(blocks[count+1] != dest); /* q should already be set */
770                 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
771                                   ops_complete_compute, sh,
772                                   to_addr_conv(sh, percpu));
773                 tx = async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
774         } else {
775                 /* Compute any data- or p-drive using XOR */
776                 count = 0;
777                 for (i = disks; i-- ; ) {
778                         if (i == target || i == qd_idx)
779                                 continue;
780                         blocks[count++] = sh->dev[i].page;
781                 }
782
783                 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
784                                   NULL, ops_complete_compute, sh,
785                                   to_addr_conv(sh, percpu));
786                 tx = async_xor(dest, blocks, 0, count, STRIPE_SIZE, &submit);
787         }
788
789         return tx;
790 }
791
792 static struct dma_async_tx_descriptor *
793 ops_run_compute6_2(struct stripe_head *sh, struct raid5_percpu *percpu)
794 {
795         int i, count, disks = sh->disks;
796         int syndrome_disks = sh->ddf_layout ? disks : disks-2;
797         int d0_idx = raid6_d0(sh);
798         int faila = -1, failb = -1;
799         int target = sh->ops.target;
800         int target2 = sh->ops.target2;
801         struct r5dev *tgt = &sh->dev[target];
802         struct r5dev *tgt2 = &sh->dev[target2];
803         struct dma_async_tx_descriptor *tx;
804         struct page **blocks = percpu->scribble;
805         struct async_submit_ctl submit;
806
807         pr_debug("%s: stripe %llu block1: %d block2: %d\n",
808                  __func__, (unsigned long long)sh->sector, target, target2);
809         BUG_ON(target < 0 || target2 < 0);
810         BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
811         BUG_ON(!test_bit(R5_Wantcompute, &tgt2->flags));
812
813         /* we need to open-code set_syndrome_sources to handle the
814          * slot number conversion for 'faila' and 'failb'
815          */
816         for (i = 0; i < disks ; i++)
817                 blocks[i] = (void *)raid6_empty_zero_page;
818         count = 0;
819         i = d0_idx;
820         do {
821                 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
822
823                 blocks[slot] = sh->dev[i].page;
824
825                 if (i == target)
826                         faila = slot;
827                 if (i == target2)
828                         failb = slot;
829                 i = raid6_next_disk(i, disks);
830         } while (i != d0_idx);
831         BUG_ON(count != syndrome_disks);
832
833         BUG_ON(faila == failb);
834         if (failb < faila)
835                 swap(faila, failb);
836         pr_debug("%s: stripe: %llu faila: %d failb: %d\n",
837                  __func__, (unsigned long long)sh->sector, faila, failb);
838
839         atomic_inc(&sh->count);
840
841         if (failb == syndrome_disks+1) {
842                 /* Q disk is one of the missing disks */
843                 if (faila == syndrome_disks) {
844                         /* Missing P+Q, just recompute */
845                         init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
846                                           ops_complete_compute, sh,
847                                           to_addr_conv(sh, percpu));
848                         return async_gen_syndrome(blocks, 0, count+2,
849                                                   STRIPE_SIZE, &submit);
850                 } else {
851                         struct page *dest;
852                         int data_target;
853                         int qd_idx = sh->qd_idx;
854
855                         /* Missing D+Q: recompute D from P, then recompute Q */
856                         if (target == qd_idx)
857                                 data_target = target2;
858                         else
859                                 data_target = target;
860
861                         count = 0;
862                         for (i = disks; i-- ; ) {
863                                 if (i == data_target || i == qd_idx)
864                                         continue;
865                                 blocks[count++] = sh->dev[i].page;
866                         }
867                         dest = sh->dev[data_target].page;
868                         init_async_submit(&submit,
869                                           ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
870                                           NULL, NULL, NULL,
871                                           to_addr_conv(sh, percpu));
872                         tx = async_xor(dest, blocks, 0, count, STRIPE_SIZE,
873                                        &submit);
874
875                         count = set_syndrome_sources(blocks, sh);
876                         init_async_submit(&submit, ASYNC_TX_FENCE, tx,
877                                           ops_complete_compute, sh,
878                                           to_addr_conv(sh, percpu));
879                         return async_gen_syndrome(blocks, 0, count+2,
880                                                   STRIPE_SIZE, &submit);
881                 }
882         } else {
883                 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
884                                   ops_complete_compute, sh,
885                                   to_addr_conv(sh, percpu));
886                 if (failb == syndrome_disks) {
887                         /* We're missing D+P. */
888                         return async_raid6_datap_recov(syndrome_disks+2,
889                                                        STRIPE_SIZE, faila,
890                                                        blocks, &submit);
891                 } else {
892                         /* We're missing D+D. */
893                         return async_raid6_2data_recov(syndrome_disks+2,
894                                                        STRIPE_SIZE, faila, failb,
895                                                        blocks, &submit);
896                 }
897         }
898 }
899
900
901 static void ops_complete_prexor(void *stripe_head_ref)
902 {
903         struct stripe_head *sh = stripe_head_ref;
904
905         pr_debug("%s: stripe %llu\n", __func__,
906                 (unsigned long long)sh->sector);
907 }
908
909 static struct dma_async_tx_descriptor *
910 ops_run_prexor(struct stripe_head *sh, struct raid5_percpu *percpu,
911                struct dma_async_tx_descriptor *tx)
912 {
913         int disks = sh->disks;
914         struct page **xor_srcs = percpu->scribble;
915         int count = 0, pd_idx = sh->pd_idx, i;
916         struct async_submit_ctl submit;
917
918         /* existing parity data subtracted */
919         struct page *xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
920
921         pr_debug("%s: stripe %llu\n", __func__,
922                 (unsigned long long)sh->sector);
923
924         for (i = disks; i--; ) {
925                 struct r5dev *dev = &sh->dev[i];
926                 /* Only process blocks that are known to be uptodate */
927                 if (test_bit(R5_Wantdrain, &dev->flags))
928                         xor_srcs[count++] = dev->page;
929         }
930
931         init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_DROP_DST, tx,
932                           ops_complete_prexor, sh, to_addr_conv(sh, percpu));
933         tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
934
935         return tx;
936 }
937
938 static struct dma_async_tx_descriptor *
939 ops_run_biodrain(struct stripe_head *sh, struct dma_async_tx_descriptor *tx)
940 {
941         int disks = sh->disks;
942         int i;
943
944         pr_debug("%s: stripe %llu\n", __func__,
945                 (unsigned long long)sh->sector);
946
947         for (i = disks; i--; ) {
948                 struct r5dev *dev = &sh->dev[i];
949                 struct bio *chosen;
950
951                 if (test_and_clear_bit(R5_Wantdrain, &dev->flags)) {
952                         struct bio *wbi;
953
954                         spin_lock(&sh->lock);
955                         chosen = dev->towrite;
956                         dev->towrite = NULL;
957                         BUG_ON(dev->written);
958                         wbi = dev->written = chosen;
959                         spin_unlock(&sh->lock);
960
961                         while (wbi && wbi->bi_sector <
962                                 dev->sector + STRIPE_SECTORS) {
963                                 tx = async_copy_data(1, wbi, dev->page,
964                                         dev->sector, tx);
965                                 wbi = r5_next_bio(wbi, dev->sector);
966                         }
967                 }
968         }
969
970         return tx;
971 }
972
973 static void ops_complete_reconstruct(void *stripe_head_ref)
974 {
975         struct stripe_head *sh = stripe_head_ref;
976         int disks = sh->disks;
977         int pd_idx = sh->pd_idx;
978         int qd_idx = sh->qd_idx;
979         int i;
980
981         pr_debug("%s: stripe %llu\n", __func__,
982                 (unsigned long long)sh->sector);
983
984         for (i = disks; i--; ) {
985                 struct r5dev *dev = &sh->dev[i];
986
987                 if (dev->written || i == pd_idx || i == qd_idx)
988                         set_bit(R5_UPTODATE, &dev->flags);
989         }
990
991         if (sh->reconstruct_state == reconstruct_state_drain_run)
992                 sh->reconstruct_state = reconstruct_state_drain_result;
993         else if (sh->reconstruct_state == reconstruct_state_prexor_drain_run)
994                 sh->reconstruct_state = reconstruct_state_prexor_drain_result;
995         else {
996                 BUG_ON(sh->reconstruct_state != reconstruct_state_run);
997                 sh->reconstruct_state = reconstruct_state_result;
998         }
999
1000         set_bit(STRIPE_HANDLE, &sh->state);
1001         release_stripe(sh);
1002 }
1003
1004 static void
1005 ops_run_reconstruct5(struct stripe_head *sh, struct raid5_percpu *percpu,
1006                      struct dma_async_tx_descriptor *tx)
1007 {
1008         int disks = sh->disks;
1009         struct page **xor_srcs = percpu->scribble;
1010         struct async_submit_ctl submit;
1011         int count = 0, pd_idx = sh->pd_idx, i;
1012         struct page *xor_dest;
1013         int prexor = 0;
1014         unsigned long flags;
1015
1016         pr_debug("%s: stripe %llu\n", __func__,
1017                 (unsigned long long)sh->sector);
1018
1019         /* check if prexor is active which means only process blocks
1020          * that are part of a read-modify-write (written)
1021          */
1022         if (sh->reconstruct_state == reconstruct_state_prexor_drain_run) {
1023                 prexor = 1;
1024                 xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
1025                 for (i = disks; i--; ) {
1026                         struct r5dev *dev = &sh->dev[i];
1027                         if (dev->written)
1028                                 xor_srcs[count++] = dev->page;
1029                 }
1030         } else {
1031                 xor_dest = sh->dev[pd_idx].page;
1032                 for (i = disks; i--; ) {
1033                         struct r5dev *dev = &sh->dev[i];
1034                         if (i != pd_idx)
1035                                 xor_srcs[count++] = dev->page;
1036                 }
1037         }
1038
1039         /* 1/ if we prexor'd then the dest is reused as a source
1040          * 2/ if we did not prexor then we are redoing the parity
1041          * set ASYNC_TX_XOR_DROP_DST and ASYNC_TX_XOR_ZERO_DST
1042          * for the synchronous xor case
1043          */
1044         flags = ASYNC_TX_ACK |
1045                 (prexor ? ASYNC_TX_XOR_DROP_DST : ASYNC_TX_XOR_ZERO_DST);
1046
1047         atomic_inc(&sh->count);
1048
1049         init_async_submit(&submit, flags, tx, ops_complete_reconstruct, sh,
1050                           to_addr_conv(sh, percpu));
1051         if (unlikely(count == 1))
1052                 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
1053         else
1054                 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
1055 }
1056
1057 static void
1058 ops_run_reconstruct6(struct stripe_head *sh, struct raid5_percpu *percpu,
1059                      struct dma_async_tx_descriptor *tx)
1060 {
1061         struct async_submit_ctl submit;
1062         struct page **blocks = percpu->scribble;
1063         int count;
1064
1065         pr_debug("%s: stripe %llu\n", __func__, (unsigned long long)sh->sector);
1066
1067         count = set_syndrome_sources(blocks, sh);
1068
1069         atomic_inc(&sh->count);
1070
1071         init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_reconstruct,
1072                           sh, to_addr_conv(sh, percpu));
1073         async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE,  &submit);
1074 }
1075
1076 static void ops_complete_check(void *stripe_head_ref)
1077 {
1078         struct stripe_head *sh = stripe_head_ref;
1079
1080         pr_debug("%s: stripe %llu\n", __func__,
1081                 (unsigned long long)sh->sector);
1082
1083         sh->check_state = check_state_check_result;
1084         set_bit(STRIPE_HANDLE, &sh->state);
1085         release_stripe(sh);
1086 }
1087
1088 static void ops_run_check_p(struct stripe_head *sh, struct raid5_percpu *percpu)
1089 {
1090         int disks = sh->disks;
1091         int pd_idx = sh->pd_idx;
1092         int qd_idx = sh->qd_idx;
1093         struct page *xor_dest;
1094         struct page **xor_srcs = percpu->scribble;
1095         struct dma_async_tx_descriptor *tx;
1096         struct async_submit_ctl submit;
1097         int count;
1098         int i;
1099
1100         pr_debug("%s: stripe %llu\n", __func__,
1101                 (unsigned long long)sh->sector);
1102
1103         count = 0;
1104         xor_dest = sh->dev[pd_idx].page;
1105         xor_srcs[count++] = xor_dest;
1106         for (i = disks; i--; ) {
1107                 if (i == pd_idx || i == qd_idx)
1108                         continue;
1109                 xor_srcs[count++] = sh->dev[i].page;
1110         }
1111
1112         init_async_submit(&submit, 0, NULL, NULL, NULL,
1113                           to_addr_conv(sh, percpu));
1114         tx = async_xor_val(xor_dest, xor_srcs, 0, count, STRIPE_SIZE,
1115                            &sh->ops.zero_sum_result, &submit);
1116
1117         atomic_inc(&sh->count);
1118         init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_check, sh, NULL);
1119         tx = async_trigger_callback(&submit);
1120 }
1121
1122 static void ops_run_check_pq(struct stripe_head *sh, struct raid5_percpu *percpu, int checkp)
1123 {
1124         struct page **srcs = percpu->scribble;
1125         struct async_submit_ctl submit;
1126         int count;
1127
1128         pr_debug("%s: stripe %llu checkp: %d\n", __func__,
1129                 (unsigned long long)sh->sector, checkp);
1130
1131         count = set_syndrome_sources(srcs, sh);
1132         if (!checkp)
1133                 srcs[count] = NULL;
1134
1135         atomic_inc(&sh->count);
1136         init_async_submit(&submit, ASYNC_TX_ACK, NULL, ops_complete_check,
1137                           sh, to_addr_conv(sh, percpu));
1138         async_syndrome_val(srcs, 0, count+2, STRIPE_SIZE,
1139                            &sh->ops.zero_sum_result, percpu->spare_page, &submit);
1140 }
1141
1142 static void raid_run_ops(struct stripe_head *sh, unsigned long ops_request)
1143 {
1144         int overlap_clear = 0, i, disks = sh->disks;
1145         struct dma_async_tx_descriptor *tx = NULL;
1146         raid5_conf_t *conf = sh->raid_conf;
1147         int level = conf->level;
1148         struct raid5_percpu *percpu;
1149         unsigned long cpu;
1150
1151         cpu = get_cpu();
1152         percpu = per_cpu_ptr(conf->percpu, cpu);
1153         if (test_bit(STRIPE_OP_BIOFILL, &ops_request)) {
1154                 ops_run_biofill(sh);
1155                 overlap_clear++;
1156         }
1157
1158         if (test_bit(STRIPE_OP_COMPUTE_BLK, &ops_request)) {
1159                 if (level < 6)
1160                         tx = ops_run_compute5(sh, percpu);
1161                 else {
1162                         if (sh->ops.target2 < 0 || sh->ops.target < 0)
1163                                 tx = ops_run_compute6_1(sh, percpu);
1164                         else
1165                                 tx = ops_run_compute6_2(sh, percpu);
1166                 }
1167                 /* terminate the chain if reconstruct is not set to be run */
1168                 if (tx && !test_bit(STRIPE_OP_RECONSTRUCT, &ops_request))
1169                         async_tx_ack(tx);
1170         }
1171
1172         if (test_bit(STRIPE_OP_PREXOR, &ops_request))
1173                 tx = ops_run_prexor(sh, percpu, tx);
1174
1175         if (test_bit(STRIPE_OP_BIODRAIN, &ops_request)) {
1176                 tx = ops_run_biodrain(sh, tx);
1177                 overlap_clear++;
1178         }
1179
1180         if (test_bit(STRIPE_OP_RECONSTRUCT, &ops_request)) {
1181                 if (level < 6)
1182                         ops_run_reconstruct5(sh, percpu, tx);
1183                 else
1184                         ops_run_reconstruct6(sh, percpu, tx);
1185         }
1186
1187         if (test_bit(STRIPE_OP_CHECK, &ops_request)) {
1188                 if (sh->check_state == check_state_run)
1189                         ops_run_check_p(sh, percpu);
1190                 else if (sh->check_state == check_state_run_q)
1191                         ops_run_check_pq(sh, percpu, 0);
1192                 else if (sh->check_state == check_state_run_pq)
1193                         ops_run_check_pq(sh, percpu, 1);
1194                 else
1195                         BUG();
1196         }
1197
1198         if (overlap_clear)
1199                 for (i = disks; i--; ) {
1200                         struct r5dev *dev = &sh->dev[i];
1201                         if (test_and_clear_bit(R5_Overlap, &dev->flags))
1202                                 wake_up(&sh->raid_conf->wait_for_overlap);
1203                 }
1204         put_cpu();
1205 }
1206
1207 static int grow_one_stripe(raid5_conf_t *conf)
1208 {
1209         struct stripe_head *sh;
1210         sh = kmem_cache_alloc(conf->slab_cache, GFP_KERNEL);
1211         if (!sh)
1212                 return 0;
1213         memset(sh, 0, sizeof(*sh) + (conf->raid_disks-1)*sizeof(struct r5dev));
1214         sh->raid_conf = conf;
1215         spin_lock_init(&sh->lock);
1216
1217         if (grow_buffers(sh, conf->raid_disks)) {
1218                 shrink_buffers(sh, conf->raid_disks);
1219                 kmem_cache_free(conf->slab_cache, sh);
1220                 return 0;
1221         }
1222         sh->disks = conf->raid_disks;
1223         /* we just created an active stripe so... */
1224         atomic_set(&sh->count, 1);
1225         atomic_inc(&conf->active_stripes);
1226         INIT_LIST_HEAD(&sh->lru);
1227         release_stripe(sh);
1228         return 1;
1229 }
1230
1231 static int grow_stripes(raid5_conf_t *conf, int num)
1232 {
1233         struct kmem_cache *sc;
1234         int devs = conf->raid_disks;
1235
1236         sprintf(conf->cache_name[0],
1237                 "raid%d-%s", conf->level, mdname(conf->mddev));
1238         sprintf(conf->cache_name[1],
1239                 "raid%d-%s-alt", conf->level, mdname(conf->mddev));
1240         conf->active_name = 0;
1241         sc = kmem_cache_create(conf->cache_name[conf->active_name],
1242                                sizeof(struct stripe_head)+(devs-1)*sizeof(struct r5dev),
1243                                0, 0, NULL);
1244         if (!sc)
1245                 return 1;
1246         conf->slab_cache = sc;
1247         conf->pool_size = devs;
1248         while (num--)
1249                 if (!grow_one_stripe(conf))
1250                         return 1;
1251         return 0;
1252 }
1253
1254 /**
1255  * scribble_len - return the required size of the scribble region
1256  * @num - total number of disks in the array
1257  *
1258  * The size must be enough to contain:
1259  * 1/ a struct page pointer for each device in the array +2
1260  * 2/ room to convert each entry in (1) to its corresponding dma
1261  *    (dma_map_page()) or page (page_address()) address.
1262  *
1263  * Note: the +2 is for the destination buffers of the ddf/raid6 case where we
1264  * calculate over all devices (not just the data blocks), using zeros in place
1265  * of the P and Q blocks.
1266  */
1267 static size_t scribble_len(int num)
1268 {
1269         size_t len;
1270
1271         len = sizeof(struct page *) * (num+2) + sizeof(addr_conv_t) * (num+2);
1272
1273         return len;
1274 }
1275
1276 static int resize_stripes(raid5_conf_t *conf, int newsize)
1277 {
1278         /* Make all the stripes able to hold 'newsize' devices.
1279          * New slots in each stripe get 'page' set to a new page.
1280          *
1281          * This happens in stages:
1282          * 1/ create a new kmem_cache and allocate the required number of
1283          *    stripe_heads.
1284          * 2/ gather all the old stripe_heads and tranfer the pages across
1285          *    to the new stripe_heads.  This will have the side effect of
1286          *    freezing the array as once all stripe_heads have been collected,
1287          *    no IO will be possible.  Old stripe heads are freed once their
1288          *    pages have been transferred over, and the old kmem_cache is
1289          *    freed when all stripes are done.
1290          * 3/ reallocate conf->disks to be suitable bigger.  If this fails,
1291          *    we simple return a failre status - no need to clean anything up.
1292          * 4/ allocate new pages for the new slots in the new stripe_heads.
1293          *    If this fails, we don't bother trying the shrink the
1294          *    stripe_heads down again, we just leave them as they are.
1295          *    As each stripe_head is processed the new one is released into
1296          *    active service.
1297          *
1298          * Once step2 is started, we cannot afford to wait for a write,
1299          * so we use GFP_NOIO allocations.
1300          */
1301         struct stripe_head *osh, *nsh;
1302         LIST_HEAD(newstripes);
1303         struct disk_info *ndisks;
1304         unsigned long cpu;
1305         int err;
1306         struct kmem_cache *sc;
1307         int i;
1308
1309         if (newsize <= conf->pool_size)
1310                 return 0; /* never bother to shrink */
1311
1312         err = md_allow_write(conf->mddev);
1313         if (err)
1314                 return err;
1315
1316         /* Step 1 */
1317         sc = kmem_cache_create(conf->cache_name[1-conf->active_name],
1318                                sizeof(struct stripe_head)+(newsize-1)*sizeof(struct r5dev),
1319                                0, 0, NULL);
1320         if (!sc)
1321                 return -ENOMEM;
1322
1323         for (i = conf->max_nr_stripes; i; i--) {
1324                 nsh = kmem_cache_alloc(sc, GFP_KERNEL);
1325                 if (!nsh)
1326                         break;
1327
1328                 memset(nsh, 0, sizeof(*nsh) + (newsize-1)*sizeof(struct r5dev));
1329
1330                 nsh->raid_conf = conf;
1331                 spin_lock_init(&nsh->lock);
1332
1333                 list_add(&nsh->lru, &newstripes);
1334         }
1335         if (i) {
1336                 /* didn't get enough, give up */
1337                 while (!list_empty(&newstripes)) {
1338                         nsh = list_entry(newstripes.next, struct stripe_head, lru);
1339                         list_del(&nsh->lru);
1340                         kmem_cache_free(sc, nsh);
1341                 }
1342                 kmem_cache_destroy(sc);
1343                 return -ENOMEM;
1344         }
1345         /* Step 2 - Must use GFP_NOIO now.
1346          * OK, we have enough stripes, start collecting inactive
1347          * stripes and copying them over
1348          */
1349         list_for_each_entry(nsh, &newstripes, lru) {
1350                 spin_lock_irq(&conf->device_lock);
1351                 wait_event_lock_irq(conf->wait_for_stripe,
1352                                     !list_empty(&conf->inactive_list),
1353                                     conf->device_lock,
1354                                     unplug_slaves(conf->mddev)
1355                         );
1356                 osh = get_free_stripe(conf);
1357                 spin_unlock_irq(&conf->device_lock);
1358                 atomic_set(&nsh->count, 1);
1359                 for(i=0; i<conf->pool_size; i++)
1360                         nsh->dev[i].page = osh->dev[i].page;
1361                 for( ; i<newsize; i++)
1362                         nsh->dev[i].page = NULL;
1363                 kmem_cache_free(conf->slab_cache, osh);
1364         }
1365         kmem_cache_destroy(conf->slab_cache);
1366
1367         /* Step 3.
1368          * At this point, we are holding all the stripes so the array
1369          * is completely stalled, so now is a good time to resize
1370          * conf->disks and the scribble region
1371          */
1372         ndisks = kzalloc(newsize * sizeof(struct disk_info), GFP_NOIO);
1373         if (ndisks) {
1374                 for (i=0; i<conf->raid_disks; i++)
1375                         ndisks[i] = conf->disks[i];
1376                 kfree(conf->disks);
1377                 conf->disks = ndisks;
1378         } else
1379                 err = -ENOMEM;
1380
1381         get_online_cpus();
1382         conf->scribble_len = scribble_len(newsize);
1383         for_each_present_cpu(cpu) {
1384                 struct raid5_percpu *percpu;
1385                 void *scribble;
1386
1387                 percpu = per_cpu_ptr(conf->percpu, cpu);
1388                 scribble = kmalloc(conf->scribble_len, GFP_NOIO);
1389
1390                 if (scribble) {
1391                         kfree(percpu->scribble);
1392                         percpu->scribble = scribble;
1393                 } else {
1394                         err = -ENOMEM;
1395                         break;
1396                 }
1397         }
1398         put_online_cpus();
1399
1400         /* Step 4, return new stripes to service */
1401         while(!list_empty(&newstripes)) {
1402                 nsh = list_entry(newstripes.next, struct stripe_head, lru);
1403                 list_del_init(&nsh->lru);
1404
1405                 for (i=conf->raid_disks; i < newsize; i++)
1406                         if (nsh->dev[i].page == NULL) {
1407                                 struct page *p = alloc_page(GFP_NOIO);
1408                                 nsh->dev[i].page = p;
1409                                 if (!p)
1410                                         err = -ENOMEM;
1411                         }
1412                 release_stripe(nsh);
1413         }
1414         /* critical section pass, GFP_NOIO no longer needed */
1415
1416         conf->slab_cache = sc;
1417         conf->active_name = 1-conf->active_name;
1418         conf->pool_size = newsize;
1419         return err;
1420 }
1421
1422 static int drop_one_stripe(raid5_conf_t *conf)
1423 {
1424         struct stripe_head *sh;
1425
1426         spin_lock_irq(&conf->device_lock);
1427         sh = get_free_stripe(conf);
1428         spin_unlock_irq(&conf->device_lock);
1429         if (!sh)
1430                 return 0;
1431         BUG_ON(atomic_read(&sh->count));
1432         shrink_buffers(sh, conf->pool_size);
1433         kmem_cache_free(conf->slab_cache, sh);
1434         atomic_dec(&conf->active_stripes);
1435         return 1;
1436 }
1437
1438 static void shrink_stripes(raid5_conf_t *conf)
1439 {
1440         while (drop_one_stripe(conf))
1441                 ;
1442
1443         if (conf->slab_cache)
1444                 kmem_cache_destroy(conf->slab_cache);
1445         conf->slab_cache = NULL;
1446 }
1447
1448 static void raid5_end_read_request(struct bio * bi, int error)
1449 {
1450         struct stripe_head *sh = bi->bi_private;
1451         raid5_conf_t *conf = sh->raid_conf;
1452         int disks = sh->disks, i;
1453         int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
1454         char b[BDEVNAME_SIZE];
1455         mdk_rdev_t *rdev;
1456
1457
1458         for (i=0 ; i<disks; i++)
1459                 if (bi == &sh->dev[i].req)
1460                         break;
1461
1462         pr_debug("end_read_request %llu/%d, count: %d, uptodate %d.\n",
1463                 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
1464                 uptodate);
1465         if (i == disks) {
1466                 BUG();
1467                 return;
1468         }
1469
1470         if (uptodate) {
1471                 set_bit(R5_UPTODATE, &sh->dev[i].flags);
1472                 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
1473                         rdev = conf->disks[i].rdev;
1474                         printk_rl(KERN_INFO "raid5:%s: read error corrected"
1475                                   " (%lu sectors at %llu on %s)\n",
1476                                   mdname(conf->mddev), STRIPE_SECTORS,
1477                                   (unsigned long long)(sh->sector
1478                                                        + rdev->data_offset),
1479                                   bdevname(rdev->bdev, b));
1480                         clear_bit(R5_ReadError, &sh->dev[i].flags);
1481                         clear_bit(R5_ReWrite, &sh->dev[i].flags);
1482                 }
1483                 if (atomic_read(&conf->disks[i].rdev->read_errors))
1484                         atomic_set(&conf->disks[i].rdev->read_errors, 0);
1485         } else {
1486                 const char *bdn = bdevname(conf->disks[i].rdev->bdev, b);
1487                 int retry = 0;
1488                 rdev = conf->disks[i].rdev;
1489
1490                 clear_bit(R5_UPTODATE, &sh->dev[i].flags);
1491                 atomic_inc(&rdev->read_errors);
1492                 if (conf->mddev->degraded)
1493                         printk_rl(KERN_WARNING
1494                                   "raid5:%s: read error not correctable "
1495                                   "(sector %llu on %s).\n",
1496                                   mdname(conf->mddev),
1497                                   (unsigned long long)(sh->sector
1498                                                        + rdev->data_offset),
1499                                   bdn);
1500                 else if (test_bit(R5_ReWrite, &sh->dev[i].flags))
1501                         /* Oh, no!!! */
1502                         printk_rl(KERN_WARNING
1503                                   "raid5:%s: read error NOT corrected!! "
1504                                   "(sector %llu on %s).\n",
1505                                   mdname(conf->mddev),
1506                                   (unsigned long long)(sh->sector
1507                                                        + rdev->data_offset),
1508                                   bdn);
1509                 else if (atomic_read(&rdev->read_errors)
1510                          > conf->max_nr_stripes)
1511                         printk(KERN_WARNING
1512                                "raid5:%s: Too many read errors, failing device %s.\n",
1513                                mdname(conf->mddev), bdn);
1514                 else
1515                         retry = 1;
1516                 if (retry)
1517                         set_bit(R5_ReadError, &sh->dev[i].flags);
1518                 else {
1519                         clear_bit(R5_ReadError, &sh->dev[i].flags);
1520                         clear_bit(R5_ReWrite, &sh->dev[i].flags);
1521                         md_error(conf->mddev, rdev);
1522                 }
1523         }
1524         rdev_dec_pending(conf->disks[i].rdev, conf->mddev);
1525         clear_bit(R5_LOCKED, &sh->dev[i].flags);
1526         set_bit(STRIPE_HANDLE, &sh->state);
1527         release_stripe(sh);
1528 }
1529
1530 static void raid5_end_write_request(struct bio *bi, int error)
1531 {
1532         struct stripe_head *sh = bi->bi_private;
1533         raid5_conf_t *conf = sh->raid_conf;
1534         int disks = sh->disks, i;
1535         int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
1536
1537         for (i=0 ; i<disks; i++)
1538                 if (bi == &sh->dev[i].req)
1539                         break;
1540
1541         pr_debug("end_write_request %llu/%d, count %d, uptodate: %d.\n",
1542                 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
1543                 uptodate);
1544         if (i == disks) {
1545                 BUG();
1546                 return;
1547         }
1548
1549         if (!uptodate)
1550                 md_error(conf->mddev, conf->disks[i].rdev);
1551
1552         rdev_dec_pending(conf->disks[i].rdev, conf->mddev);
1553         
1554         clear_bit(R5_LOCKED, &sh->dev[i].flags);
1555         set_bit(STRIPE_HANDLE, &sh->state);
1556         release_stripe(sh);
1557 }
1558
1559
1560 static sector_t compute_blocknr(struct stripe_head *sh, int i, int previous);
1561         
1562 static void raid5_build_block(struct stripe_head *sh, int i, int previous)
1563 {
1564         struct r5dev *dev = &sh->dev[i];
1565
1566         bio_init(&dev->req);
1567         dev->req.bi_io_vec = &dev->vec;
1568         dev->req.bi_vcnt++;
1569         dev->req.bi_max_vecs++;
1570         dev->vec.bv_page = dev->page;
1571         dev->vec.bv_len = STRIPE_SIZE;
1572         dev->vec.bv_offset = 0;
1573
1574         dev->req.bi_sector = sh->sector;
1575         dev->req.bi_private = sh;
1576
1577         dev->flags = 0;
1578         dev->sector = compute_blocknr(sh, i, previous);
1579 }
1580
1581 static void error(mddev_t *mddev, mdk_rdev_t *rdev)
1582 {
1583         char b[BDEVNAME_SIZE];
1584         raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
1585         pr_debug("raid5: error called\n");
1586
1587         if (!test_bit(Faulty, &rdev->flags)) {
1588                 set_bit(MD_CHANGE_DEVS, &mddev->flags);
1589                 if (test_and_clear_bit(In_sync, &rdev->flags)) {
1590                         unsigned long flags;
1591                         spin_lock_irqsave(&conf->device_lock, flags);
1592                         mddev->degraded++;
1593                         spin_unlock_irqrestore(&conf->device_lock, flags);
1594                         /*
1595                          * if recovery was running, make sure it aborts.
1596                          */
1597                         set_bit(MD_RECOVERY_INTR, &mddev->recovery);
1598                 }
1599                 set_bit(Faulty, &rdev->flags);
1600                 printk(KERN_ALERT
1601                        "raid5: Disk failure on %s, disabling device.\n"
1602                        "raid5: Operation continuing on %d devices.\n",
1603                        bdevname(rdev->bdev,b), conf->raid_disks - mddev->degraded);
1604         }
1605 }
1606
1607 /*
1608  * Input: a 'big' sector number,
1609  * Output: index of the data and parity disk, and the sector # in them.
1610  */
1611 static sector_t raid5_compute_sector(raid5_conf_t *conf, sector_t r_sector,
1612                                      int previous, int *dd_idx,
1613                                      struct stripe_head *sh)
1614 {
1615         long stripe;
1616         unsigned long chunk_number;
1617         unsigned int chunk_offset;
1618         int pd_idx, qd_idx;
1619         int ddf_layout = 0;
1620         sector_t new_sector;
1621         int algorithm = previous ? conf->prev_algo
1622                                  : conf->algorithm;
1623         int sectors_per_chunk = previous ? conf->prev_chunk_sectors
1624                                          : conf->chunk_sectors;
1625         int raid_disks = previous ? conf->previous_raid_disks
1626                                   : conf->raid_disks;
1627         int data_disks = raid_disks - conf->max_degraded;
1628
1629         /* First compute the information on this sector */
1630
1631         /*
1632          * Compute the chunk number and the sector offset inside the chunk
1633          */
1634         chunk_offset = sector_div(r_sector, sectors_per_chunk);
1635         chunk_number = r_sector;
1636         BUG_ON(r_sector != chunk_number);
1637
1638         /*
1639          * Compute the stripe number
1640          */
1641         stripe = chunk_number / data_disks;
1642
1643         /*
1644          * Compute the data disk and parity disk indexes inside the stripe
1645          */
1646         *dd_idx = chunk_number % data_disks;
1647
1648         /*
1649          * Select the parity disk based on the user selected algorithm.
1650          */
1651         pd_idx = qd_idx = ~0;
1652         switch(conf->level) {
1653         case 4:
1654                 pd_idx = data_disks;
1655                 break;
1656         case 5:
1657                 switch (algorithm) {
1658                 case ALGORITHM_LEFT_ASYMMETRIC:
1659                         pd_idx = data_disks - stripe % raid_disks;
1660                         if (*dd_idx >= pd_idx)
1661                                 (*dd_idx)++;
1662                         break;
1663                 case ALGORITHM_RIGHT_ASYMMETRIC:
1664                         pd_idx = stripe % raid_disks;
1665                         if (*dd_idx >= pd_idx)
1666                                 (*dd_idx)++;
1667                         break;
1668                 case ALGORITHM_LEFT_SYMMETRIC:
1669                         pd_idx = data_disks - stripe % raid_disks;
1670                         *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
1671                         break;
1672                 case ALGORITHM_RIGHT_SYMMETRIC:
1673                         pd_idx = stripe % raid_disks;
1674                         *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
1675                         break;
1676                 case ALGORITHM_PARITY_0:
1677                         pd_idx = 0;
1678                         (*dd_idx)++;
1679                         break;
1680                 case ALGORITHM_PARITY_N:
1681                         pd_idx = data_disks;
1682                         break;
1683                 default:
1684                         printk(KERN_ERR "raid5: unsupported algorithm %d\n",
1685                                 algorithm);
1686                         BUG();
1687                 }
1688                 break;
1689         case 6:
1690
1691                 switch (algorithm) {
1692                 case ALGORITHM_LEFT_ASYMMETRIC:
1693                         pd_idx = raid_disks - 1 - (stripe % raid_disks);
1694                         qd_idx = pd_idx + 1;
1695                         if (pd_idx == raid_disks-1) {
1696                                 (*dd_idx)++;    /* Q D D D P */
1697                                 qd_idx = 0;
1698                         } else if (*dd_idx >= pd_idx)
1699                                 (*dd_idx) += 2; /* D D P Q D */
1700                         break;
1701                 case ALGORITHM_RIGHT_ASYMMETRIC:
1702                         pd_idx = stripe % raid_disks;
1703                         qd_idx = pd_idx + 1;
1704                         if (pd_idx == raid_disks-1) {
1705                                 (*dd_idx)++;    /* Q D D D P */
1706                                 qd_idx = 0;
1707                         } else if (*dd_idx >= pd_idx)
1708                                 (*dd_idx) += 2; /* D D P Q D */
1709                         break;
1710                 case ALGORITHM_LEFT_SYMMETRIC:
1711                         pd_idx = raid_disks - 1 - (stripe % raid_disks);
1712                         qd_idx = (pd_idx + 1) % raid_disks;
1713                         *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
1714                         break;
1715                 case ALGORITHM_RIGHT_SYMMETRIC:
1716                         pd_idx = stripe % raid_disks;
1717                         qd_idx = (pd_idx + 1) % raid_disks;
1718                         *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
1719                         break;
1720
1721                 case ALGORITHM_PARITY_0:
1722                         pd_idx = 0;
1723                         qd_idx = 1;
1724                         (*dd_idx) += 2;
1725                         break;
1726                 case ALGORITHM_PARITY_N:
1727                         pd_idx = data_disks;
1728                         qd_idx = data_disks + 1;
1729                         break;
1730
1731                 case ALGORITHM_ROTATING_ZERO_RESTART:
1732                         /* Exactly the same as RIGHT_ASYMMETRIC, but or
1733                          * of blocks for computing Q is different.
1734                          */
1735                         pd_idx = stripe % raid_disks;
1736                         qd_idx = pd_idx + 1;
1737                         if (pd_idx == raid_disks-1) {
1738                                 (*dd_idx)++;    /* Q D D D P */
1739                                 qd_idx = 0;
1740                         } else if (*dd_idx >= pd_idx)
1741                                 (*dd_idx) += 2; /* D D P Q D */
1742                         ddf_layout = 1;
1743                         break;
1744
1745                 case ALGORITHM_ROTATING_N_RESTART:
1746                         /* Same a left_asymmetric, by first stripe is
1747                          * D D D P Q  rather than
1748                          * Q D D D P
1749                          */
1750                         pd_idx = raid_disks - 1 - ((stripe + 1) % raid_disks);
1751                         qd_idx = pd_idx + 1;
1752                         if (pd_idx == raid_disks-1) {
1753                                 (*dd_idx)++;    /* Q D D D P */
1754                                 qd_idx = 0;
1755                         } else if (*dd_idx >= pd_idx)
1756                                 (*dd_idx) += 2; /* D D P Q D */
1757                         ddf_layout = 1;
1758                         break;
1759
1760                 case ALGORITHM_ROTATING_N_CONTINUE:
1761                         /* Same as left_symmetric but Q is before P */
1762                         pd_idx = raid_disks - 1 - (stripe % raid_disks);
1763                         qd_idx = (pd_idx + raid_disks - 1) % raid_disks;
1764                         *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
1765                         ddf_layout = 1;
1766                         break;
1767
1768                 case ALGORITHM_LEFT_ASYMMETRIC_6:
1769                         /* RAID5 left_asymmetric, with Q on last device */
1770                         pd_idx = data_disks - stripe % (raid_disks-1);
1771                         if (*dd_idx >= pd_idx)
1772                                 (*dd_idx)++;
1773                         qd_idx = raid_disks - 1;
1774                         break;
1775
1776                 case ALGORITHM_RIGHT_ASYMMETRIC_6:
1777                         pd_idx = stripe % (raid_disks-1);
1778                         if (*dd_idx >= pd_idx)
1779                                 (*dd_idx)++;
1780                         qd_idx = raid_disks - 1;
1781                         break;
1782
1783                 case ALGORITHM_LEFT_SYMMETRIC_6:
1784                         pd_idx = data_disks - stripe % (raid_disks-1);
1785                         *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
1786                         qd_idx = raid_disks - 1;
1787                         break;
1788
1789                 case ALGORITHM_RIGHT_SYMMETRIC_6:
1790                         pd_idx = stripe % (raid_disks-1);
1791                         *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
1792                         qd_idx = raid_disks - 1;
1793                         break;
1794
1795                 case ALGORITHM_PARITY_0_6:
1796                         pd_idx = 0;
1797                         (*dd_idx)++;
1798                         qd_idx = raid_disks - 1;
1799                         break;
1800
1801
1802                 default:
1803                         printk(KERN_CRIT "raid6: unsupported algorithm %d\n",
1804                                algorithm);
1805                         BUG();
1806                 }
1807                 break;
1808         }
1809
1810         if (sh) {
1811                 sh->pd_idx = pd_idx;
1812                 sh->qd_idx = qd_idx;
1813                 sh->ddf_layout = ddf_layout;
1814         }
1815         /*
1816          * Finally, compute the new sector number
1817          */
1818         new_sector = (sector_t)stripe * sectors_per_chunk + chunk_offset;
1819         return new_sector;
1820 }
1821
1822
1823 static sector_t compute_blocknr(struct stripe_head *sh, int i, int previous)
1824 {
1825         raid5_conf_t *conf = sh->raid_conf;
1826         int raid_disks = sh->disks;
1827         int data_disks = raid_disks - conf->max_degraded;
1828         sector_t new_sector = sh->sector, check;
1829         int sectors_per_chunk = previous ? conf->prev_chunk_sectors
1830                                          : conf->chunk_sectors;
1831         int algorithm = previous ? conf->prev_algo
1832                                  : conf->algorithm;
1833         sector_t stripe;
1834         int chunk_offset;
1835         int chunk_number, dummy1, dd_idx = i;
1836         sector_t r_sector;
1837         struct stripe_head sh2;
1838
1839
1840         chunk_offset = sector_div(new_sector, sectors_per_chunk);
1841         stripe = new_sector;
1842         BUG_ON(new_sector != stripe);
1843
1844         if (i == sh->pd_idx)
1845                 return 0;
1846         switch(conf->level) {
1847         case 4: break;
1848         case 5:
1849                 switch (algorithm) {
1850                 case ALGORITHM_LEFT_ASYMMETRIC:
1851                 case ALGORITHM_RIGHT_ASYMMETRIC:
1852                         if (i > sh->pd_idx)
1853                                 i--;
1854                         break;
1855                 case ALGORITHM_LEFT_SYMMETRIC:
1856                 case ALGORITHM_RIGHT_SYMMETRIC:
1857                         if (i < sh->pd_idx)
1858                                 i += raid_disks;
1859                         i -= (sh->pd_idx + 1);
1860                         break;
1861                 case ALGORITHM_PARITY_0:
1862                         i -= 1;
1863                         break;
1864                 case ALGORITHM_PARITY_N:
1865                         break;
1866                 default:
1867                         printk(KERN_ERR "raid5: unsupported algorithm %d\n",
1868                                algorithm);
1869                         BUG();
1870                 }
1871                 break;
1872         case 6:
1873                 if (i == sh->qd_idx)
1874                         return 0; /* It is the Q disk */
1875                 switch (algorithm) {
1876                 case ALGORITHM_LEFT_ASYMMETRIC:
1877                 case ALGORITHM_RIGHT_ASYMMETRIC:
1878                 case ALGORITHM_ROTATING_ZERO_RESTART:
1879                 case ALGORITHM_ROTATING_N_RESTART:
1880                         if (sh->pd_idx == raid_disks-1)
1881                                 i--;    /* Q D D D P */
1882                         else if (i > sh->pd_idx)
1883                                 i -= 2; /* D D P Q D */
1884                         break;
1885                 case ALGORITHM_LEFT_SYMMETRIC:
1886                 case ALGORITHM_RIGHT_SYMMETRIC:
1887                         if (sh->pd_idx == raid_disks-1)
1888                                 i--; /* Q D D D P */
1889                         else {
1890                                 /* D D P Q D */
1891                                 if (i < sh->pd_idx)
1892                                         i += raid_disks;
1893                                 i -= (sh->pd_idx + 2);
1894                         }
1895                         break;
1896                 case ALGORITHM_PARITY_0:
1897                         i -= 2;
1898                         break;
1899                 case ALGORITHM_PARITY_N:
1900                         break;
1901                 case ALGORITHM_ROTATING_N_CONTINUE:
1902                         if (sh->pd_idx == 0)
1903                                 i--;    /* P D D D Q */
1904                         else if (i > sh->pd_idx)
1905                                 i -= 2; /* D D Q P D */
1906                         break;
1907                 case ALGORITHM_LEFT_ASYMMETRIC_6:
1908                 case ALGORITHM_RIGHT_ASYMMETRIC_6:
1909                         if (i > sh->pd_idx)
1910                                 i--;
1911                         break;
1912                 case ALGORITHM_LEFT_SYMMETRIC_6:
1913                 case ALGORITHM_RIGHT_SYMMETRIC_6:
1914                         if (i < sh->pd_idx)
1915                                 i += data_disks + 1;
1916                         i -= (sh->pd_idx + 1);
1917                         break;
1918                 case ALGORITHM_PARITY_0_6:
1919                         i -= 1;
1920                         break;
1921                 default:
1922                         printk(KERN_CRIT "raid6: unsupported algorithm %d\n",
1923                                algorithm);
1924                         BUG();
1925                 }
1926                 break;
1927         }
1928
1929         chunk_number = stripe * data_disks + i;
1930         r_sector = (sector_t)chunk_number * sectors_per_chunk + chunk_offset;
1931
1932         check = raid5_compute_sector(conf, r_sector,
1933                                      previous, &dummy1, &sh2);
1934         if (check != sh->sector || dummy1 != dd_idx || sh2.pd_idx != sh->pd_idx
1935                 || sh2.qd_idx != sh->qd_idx) {
1936                 printk(KERN_ERR "compute_blocknr: map not correct\n");
1937                 return 0;
1938         }
1939         return r_sector;
1940 }
1941
1942
1943 static void
1944 schedule_reconstruction(struct stripe_head *sh, struct stripe_head_state *s,
1945                          int rcw, int expand)
1946 {
1947         int i, pd_idx = sh->pd_idx, disks = sh->disks;
1948         raid5_conf_t *conf = sh->raid_conf;
1949         int level = conf->level;
1950
1951         if (rcw) {
1952                 /* if we are not expanding this is a proper write request, and
1953                  * there will be bios with new data to be drained into the
1954                  * stripe cache
1955                  */
1956                 if (!expand) {
1957                         sh->reconstruct_state = reconstruct_state_drain_run;
1958                         set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
1959                 } else
1960                         sh->reconstruct_state = reconstruct_state_run;
1961
1962                 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
1963
1964                 for (i = disks; i--; ) {
1965                         struct r5dev *dev = &sh->dev[i];
1966
1967                         if (dev->towrite) {
1968                                 set_bit(R5_LOCKED, &dev->flags);
1969                                 set_bit(R5_Wantdrain, &dev->flags);
1970                                 if (!expand)
1971                                         clear_bit(R5_UPTODATE, &dev->flags);
1972                                 s->locked++;
1973                         }
1974                 }
1975                 if (s->locked + conf->max_degraded == disks)
1976                         if (!test_and_set_bit(STRIPE_FULL_WRITE, &sh->state))
1977                                 atomic_inc(&conf->pending_full_writes);
1978         } else {
1979                 BUG_ON(level == 6);
1980                 BUG_ON(!(test_bit(R5_UPTODATE, &sh->dev[pd_idx].flags) ||
1981                         test_bit(R5_Wantcompute, &sh->dev[pd_idx].flags)));
1982
1983                 sh->reconstruct_state = reconstruct_state_prexor_drain_run;
1984                 set_bit(STRIPE_OP_PREXOR, &s->ops_request);
1985                 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
1986                 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
1987
1988                 for (i = disks; i--; ) {
1989                         struct r5dev *dev = &sh->dev[i];
1990                         if (i == pd_idx)
1991                                 continue;
1992
1993                         if (dev->towrite &&
1994                             (test_bit(R5_UPTODATE, &dev->flags) ||
1995                              test_bit(R5_Wantcompute, &dev->flags))) {
1996                                 set_bit(R5_Wantdrain, &dev->flags);
1997                                 set_bit(R5_LOCKED, &dev->flags);
1998                                 clear_bit(R5_UPTODATE, &dev->flags);
1999                                 s->locked++;
2000                         }
2001                 }
2002         }
2003
2004         /* keep the parity disk(s) locked while asynchronous operations
2005          * are in flight
2006          */
2007         set_bit(R5_LOCKED, &sh->dev[pd_idx].flags);
2008         clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
2009         s->locked++;
2010
2011         if (level == 6) {
2012                 int qd_idx = sh->qd_idx;
2013                 struct r5dev *dev = &sh->dev[qd_idx];
2014
2015                 set_bit(R5_LOCKED, &dev->flags);
2016                 clear_bit(R5_UPTODATE, &dev->flags);
2017                 s->locked++;
2018         }
2019
2020         pr_debug("%s: stripe %llu locked: %d ops_request: %lx\n",
2021                 __func__, (unsigned long long)sh->sector,
2022                 s->locked, s->ops_request);
2023 }
2024
2025 /*
2026  * Each stripe/dev can have one or more bion attached.
2027  * toread/towrite point to the first in a chain.
2028  * The bi_next chain must be in order.
2029  */
2030 static int add_stripe_bio(struct stripe_head *sh, struct bio *bi, int dd_idx, int forwrite)
2031 {
2032         struct bio **bip;
2033         raid5_conf_t *conf = sh->raid_conf;
2034         int firstwrite=0;
2035
2036         pr_debug("adding bh b#%llu to stripe s#%llu\n",
2037                 (unsigned long long)bi->bi_sector,
2038                 (unsigned long long)sh->sector);
2039
2040
2041         spin_lock(&sh->lock);
2042         spin_lock_irq(&conf->device_lock);
2043         if (forwrite) {
2044                 bip = &sh->dev[dd_idx].towrite;
2045                 if (*bip == NULL && sh->dev[dd_idx].written == NULL)
2046                         firstwrite = 1;
2047         } else
2048                 bip = &sh->dev[dd_idx].toread;
2049         while (*bip && (*bip)->bi_sector < bi->bi_sector) {
2050                 if ((*bip)->bi_sector + ((*bip)->bi_size >> 9) > bi->bi_sector)
2051                         goto overlap;
2052                 bip = & (*bip)->bi_next;
2053         }
2054         if (*bip && (*bip)->bi_sector < bi->bi_sector + ((bi->bi_size)>>9))
2055                 goto overlap;
2056
2057         BUG_ON(*bip && bi->bi_next && (*bip) != bi->bi_next);
2058         if (*bip)
2059                 bi->bi_next = *bip;
2060         *bip = bi;
2061         bi->bi_phys_segments++;
2062         spin_unlock_irq(&conf->device_lock);
2063         spin_unlock(&sh->lock);
2064
2065         pr_debug("added bi b#%llu to stripe s#%llu, disk %d.\n",
2066                 (unsigned long long)bi->bi_sector,
2067                 (unsigned long long)sh->sector, dd_idx);
2068
2069         if (conf->mddev->bitmap && firstwrite) {
2070                 bitmap_startwrite(conf->mddev->bitmap, sh->sector,
2071                                   STRIPE_SECTORS, 0);
2072                 sh->bm_seq = conf->seq_flush+1;
2073                 set_bit(STRIPE_BIT_DELAY, &sh->state);
2074         }
2075
2076         if (forwrite) {
2077                 /* check if page is covered */
2078                 sector_t sector = sh->dev[dd_idx].sector;
2079                 for (bi=sh->dev[dd_idx].towrite;
2080                      sector < sh->dev[dd_idx].sector + STRIPE_SECTORS &&
2081                              bi && bi->bi_sector <= sector;
2082                      bi = r5_next_bio(bi, sh->dev[dd_idx].sector)) {
2083                         if (bi->bi_sector + (bi->bi_size>>9) >= sector)
2084                                 sector = bi->bi_sector + (bi->bi_size>>9);
2085                 }
2086                 if (sector >= sh->dev[dd_idx].sector + STRIPE_SECTORS)
2087                         set_bit(R5_OVERWRITE, &sh->dev[dd_idx].flags);
2088         }
2089         return 1;
2090
2091  overlap:
2092         set_bit(R5_Overlap, &sh->dev[dd_idx].flags);
2093         spin_unlock_irq(&conf->device_lock);
2094         spin_unlock(&sh->lock);
2095         return 0;
2096 }
2097
2098 static void end_reshape(raid5_conf_t *conf);
2099
2100 static void stripe_set_idx(sector_t stripe, raid5_conf_t *conf, int previous,
2101                             struct stripe_head *sh)
2102 {
2103         int sectors_per_chunk =
2104                 previous ? conf->prev_chunk_sectors : conf->chunk_sectors;
2105         int dd_idx;
2106         int chunk_offset = sector_div(stripe, sectors_per_chunk);
2107         int disks = previous ? conf->previous_raid_disks : conf->raid_disks;
2108
2109         raid5_compute_sector(conf,
2110                              stripe * (disks - conf->max_degraded)
2111                              *sectors_per_chunk + chunk_offset,
2112                              previous,
2113                              &dd_idx, sh);
2114 }
2115
2116 static void
2117 handle_failed_stripe(raid5_conf_t *conf, struct stripe_head *sh,
2118                                 struct stripe_head_state *s, int disks,
2119                                 struct bio **return_bi)
2120 {
2121         int i;
2122         for (i = disks; i--; ) {
2123                 struct bio *bi;
2124                 int bitmap_end = 0;
2125
2126                 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
2127                         mdk_rdev_t *rdev;
2128                         rcu_read_lock();
2129                         rdev = rcu_dereference(conf->disks[i].rdev);
2130                         if (rdev && test_bit(In_sync, &rdev->flags))
2131                                 /* multiple read failures in one stripe */
2132                                 md_error(conf->mddev, rdev);
2133                         rcu_read_unlock();
2134                 }
2135                 spin_lock_irq(&conf->device_lock);
2136                 /* fail all writes first */
2137                 bi = sh->dev[i].towrite;
2138                 sh->dev[i].towrite = NULL;
2139                 if (bi) {
2140                         s->to_write--;
2141                         bitmap_end = 1;
2142                 }
2143
2144                 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
2145                         wake_up(&conf->wait_for_overlap);
2146
2147                 while (bi && bi->bi_sector <
2148                         sh->dev[i].sector + STRIPE_SECTORS) {
2149                         struct bio *nextbi = r5_next_bio(bi, sh->dev[i].sector);
2150                         clear_bit(BIO_UPTODATE, &bi->bi_flags);
2151                         if (!raid5_dec_bi_phys_segments(bi)) {
2152                                 md_write_end(conf->mddev);
2153                                 bi->bi_next = *return_bi;
2154                                 *return_bi = bi;
2155                         }
2156                         bi = nextbi;
2157                 }
2158                 /* and fail all 'written' */
2159                 bi = sh->dev[i].written;
2160                 sh->dev[i].written = NULL;
2161                 if (bi) bitmap_end = 1;
2162                 while (bi && bi->bi_sector <
2163                        sh->dev[i].sector + STRIPE_SECTORS) {
2164                         struct bio *bi2 = r5_next_bio(bi, sh->dev[i].sector);
2165                         clear_bit(BIO_UPTODATE, &bi->bi_flags);
2166                         if (!raid5_dec_bi_phys_segments(bi)) {
2167                                 md_write_end(conf->mddev);
2168                                 bi->bi_next = *return_bi;
2169                                 *return_bi = bi;
2170                         }
2171                         bi = bi2;
2172                 }
2173
2174                 /* fail any reads if this device is non-operational and
2175                  * the data has not reached the cache yet.
2176                  */
2177                 if (!test_bit(R5_Wantfill, &sh->dev[i].flags) &&
2178                     (!test_bit(R5_Insync, &sh->dev[i].flags) ||
2179                       test_bit(R5_ReadError, &sh->dev[i].flags))) {
2180                         bi = sh->dev[i].toread;
2181                         sh->dev[i].toread = NULL;
2182                         if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
2183                                 wake_up(&conf->wait_for_overlap);
2184                         if (bi) s->to_read--;
2185                         while (bi && bi->bi_sector <
2186                                sh->dev[i].sector + STRIPE_SECTORS) {
2187                                 struct bio *nextbi =
2188                                         r5_next_bio(bi, sh->dev[i].sector);
2189                                 clear_bit(BIO_UPTODATE, &bi->bi_flags);
2190                                 if (!raid5_dec_bi_phys_segments(bi)) {
2191                                         bi->bi_next = *return_bi;
2192                                         *return_bi = bi;
2193                                 }
2194                                 bi = nextbi;
2195                         }
2196                 }
2197                 spin_unlock_irq(&conf->device_lock);
2198                 if (bitmap_end)
2199                         bitmap_endwrite(conf->mddev->bitmap, sh->sector,
2200                                         STRIPE_SECTORS, 0, 0);
2201         }
2202
2203         if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
2204                 if (atomic_dec_and_test(&conf->pending_full_writes))
2205                         md_wakeup_thread(conf->mddev->thread);
2206 }
2207
2208 /* fetch_block5 - checks the given member device to see if its data needs
2209  * to be read or computed to satisfy a request.
2210  *
2211  * Returns 1 when no more member devices need to be checked, otherwise returns
2212  * 0 to tell the loop in handle_stripe_fill5 to continue
2213  */
2214 static int fetch_block5(struct stripe_head *sh, struct stripe_head_state *s,
2215                         int disk_idx, int disks)
2216 {
2217         struct r5dev *dev = &sh->dev[disk_idx];
2218         struct r5dev *failed_dev = &sh->dev[s->failed_num];
2219
2220         /* is the data in this block needed, and can we get it? */
2221         if (!test_bit(R5_LOCKED, &dev->flags) &&
2222             !test_bit(R5_UPTODATE, &dev->flags) &&
2223             (dev->toread ||
2224              (dev->towrite && !test_bit(R5_OVERWRITE, &dev->flags)) ||
2225              s->syncing || s->expanding ||
2226              (s->failed &&
2227               (failed_dev->toread ||
2228                (failed_dev->towrite &&
2229                 !test_bit(R5_OVERWRITE, &failed_dev->flags)))))) {
2230                 /* We would like to get this block, possibly by computing it,
2231                  * otherwise read it if the backing disk is insync
2232                  */
2233                 if ((s->uptodate == disks - 1) &&
2234                     (s->failed && disk_idx == s->failed_num)) {
2235                         set_bit(STRIPE_COMPUTE_RUN, &sh->state);
2236                         set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
2237                         set_bit(R5_Wantcompute, &dev->flags);
2238                         sh->ops.target = disk_idx;
2239                         sh->ops.target2 = -1;
2240                         s->req_compute = 1;
2241                         /* Careful: from this point on 'uptodate' is in the eye
2242                          * of raid_run_ops which services 'compute' operations
2243                          * before writes. R5_Wantcompute flags a block that will
2244                          * be R5_UPTODATE by the time it is needed for a
2245                          * subsequent operation.
2246                          */
2247                         s->uptodate++;
2248                         return 1; /* uptodate + compute == disks */
2249                 } else if (test_bit(R5_Insync, &dev->flags)) {
2250                         set_bit(R5_LOCKED, &dev->flags);
2251                         set_bit(R5_Wantread, &dev->flags);
2252                         s->locked++;
2253                         pr_debug("Reading block %d (sync=%d)\n", disk_idx,
2254                                 s->syncing);
2255                 }
2256         }
2257
2258         return 0;
2259 }
2260
2261 /**
2262  * handle_stripe_fill5 - read or compute data to satisfy pending requests.
2263  */
2264 static void handle_stripe_fill5(struct stripe_head *sh,
2265                         struct stripe_head_state *s, int disks)
2266 {
2267         int i;
2268
2269         /* look for blocks to read/compute, skip this if a compute
2270          * is already in flight, or if the stripe contents are in the
2271          * midst of changing due to a write
2272          */
2273         if (!test_bit(STRIPE_COMPUTE_RUN, &sh->state) && !sh->check_state &&
2274             !sh->reconstruct_state)
2275                 for (i = disks; i--; )
2276                         if (fetch_block5(sh, s, i, disks))
2277                                 break;
2278         set_bit(STRIPE_HANDLE, &sh->state);
2279 }
2280
2281 /* fetch_block6 - checks the given member device to see if its data needs
2282  * to be read or computed to satisfy a request.
2283  *
2284  * Returns 1 when no more member devices need to be checked, otherwise returns
2285  * 0 to tell the loop in handle_stripe_fill6 to continue
2286  */
2287 static int fetch_block6(struct stripe_head *sh, struct stripe_head_state *s,
2288                          struct r6_state *r6s, int disk_idx, int disks)
2289 {
2290         struct r5dev *dev = &sh->dev[disk_idx];
2291         struct r5dev *fdev[2] = { &sh->dev[r6s->failed_num[0]],
2292                                   &sh->dev[r6s->failed_num[1]] };
2293
2294         if (!test_bit(R5_LOCKED, &dev->flags) &&
2295             !test_bit(R5_UPTODATE, &dev->flags) &&
2296             (dev->toread ||
2297              (dev->towrite && !test_bit(R5_OVERWRITE, &dev->flags)) ||
2298              s->syncing || s->expanding ||
2299              (s->failed >= 1 &&
2300               (fdev[0]->toread || s->to_write)) ||
2301              (s->failed >= 2 &&
2302               (fdev[1]->toread || s->to_write)))) {
2303                 /* we would like to get this block, possibly by computing it,
2304                  * otherwise read it if the backing disk is insync
2305                  */
2306                 BUG_ON(test_bit(R5_Wantcompute, &dev->flags));
2307                 BUG_ON(test_bit(R5_Wantread, &dev->flags));
2308                 if ((s->uptodate == disks - 1) &&
2309                     (s->failed && (disk_idx == r6s->failed_num[0] ||
2310                                    disk_idx == r6s->failed_num[1]))) {
2311                         /* have disk failed, and we're requested to fetch it;
2312                          * do compute it
2313                          */
2314                         pr_debug("Computing stripe %llu block %d\n",
2315                                (unsigned long long)sh->sector, disk_idx);
2316                         set_bit(STRIPE_COMPUTE_RUN, &sh->state);
2317                         set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
2318                         set_bit(R5_Wantcompute, &dev->flags);
2319                         sh->ops.target = disk_idx;
2320                         sh->ops.target2 = -1; /* no 2nd target */
2321                         s->req_compute = 1;
2322                         s->uptodate++;
2323                         return 1;
2324                 } else if (s->uptodate == disks-2 && s->failed >= 2) {
2325                         /* Computing 2-failure is *very* expensive; only
2326                          * do it if failed >= 2
2327                          */
2328                         int other;
2329                         for (other = disks; other--; ) {
2330                                 if (other == disk_idx)
2331                                         continue;
2332                                 if (!test_bit(R5_UPTODATE,
2333                                       &sh->dev[other].flags))
2334                                         break;
2335                         }
2336                         BUG_ON(other < 0);
2337                         pr_debug("Computing stripe %llu blocks %d,%d\n",
2338                                (unsigned long long)sh->sector,
2339                                disk_idx, other);
2340                         set_bit(STRIPE_COMPUTE_RUN, &sh->state);
2341                         set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
2342                         set_bit(R5_Wantcompute, &sh->dev[disk_idx].flags);
2343                         set_bit(R5_Wantcompute, &sh->dev[other].flags);
2344                         sh->ops.target = disk_idx;
2345                         sh->ops.target2 = other;
2346                         s->uptodate += 2;
2347                         s->req_compute = 1;
2348                         return 1;
2349                 } else if (test_bit(R5_Insync, &dev->flags)) {
2350                         set_bit(R5_LOCKED, &dev->flags);
2351                         set_bit(R5_Wantread, &dev->flags);
2352                         s->locked++;
2353                         pr_debug("Reading block %d (sync=%d)\n",
2354                                 disk_idx, s->syncing);
2355                 }
2356         }
2357
2358         return 0;
2359 }
2360
2361 /**
2362  * handle_stripe_fill6 - read or compute data to satisfy pending requests.
2363  */
2364 static void handle_stripe_fill6(struct stripe_head *sh,
2365                         struct stripe_head_state *s, struct r6_state *r6s,
2366                         int disks)
2367 {
2368         int i;
2369
2370         /* look for blocks to read/compute, skip this if a compute
2371          * is already in flight, or if the stripe contents are in the
2372          * midst of changing due to a write
2373          */
2374         if (!test_bit(STRIPE_COMPUTE_RUN, &sh->state) && !sh->check_state &&
2375             !sh->reconstruct_state)
2376                 for (i = disks; i--; )
2377                         if (fetch_block6(sh, s, r6s, i, disks))
2378                                 break;
2379         set_bit(STRIPE_HANDLE, &sh->state);
2380 }
2381
2382
2383 /* handle_stripe_clean_event
2384  * any written block on an uptodate or failed drive can be returned.
2385  * Note that if we 'wrote' to a failed drive, it will be UPTODATE, but
2386  * never LOCKED, so we don't need to test 'failed' directly.
2387  */
2388 static void handle_stripe_clean_event(raid5_conf_t *conf,
2389         struct stripe_head *sh, int disks, struct bio **return_bi)
2390 {
2391         int i;
2392         struct r5dev *dev;
2393
2394         for (i = disks; i--; )
2395                 if (sh->dev[i].written) {
2396                         dev = &sh->dev[i];
2397                         if (!test_bit(R5_LOCKED, &dev->flags) &&
2398                                 test_bit(R5_UPTODATE, &dev->flags)) {
2399                                 /* We can return any write requests */
2400                                 struct bio *wbi, *wbi2;
2401                                 int bitmap_end = 0;
2402                                 pr_debug("Return write for disc %d\n", i);
2403                                 spin_lock_irq(&conf->device_lock);
2404                                 wbi = dev->written;
2405                                 dev->written = NULL;
2406                                 while (wbi && wbi->bi_sector <
2407                                         dev->sector + STRIPE_SECTORS) {
2408                                         wbi2 = r5_next_bio(wbi, dev->sector);
2409                                         if (!raid5_dec_bi_phys_segments(wbi)) {
2410                                                 md_write_end(conf->mddev);
2411                                                 wbi->bi_next = *return_bi;
2412                                                 *return_bi = wbi;
2413                                         }
2414                                         wbi = wbi2;
2415                                 }
2416                                 if (dev->towrite == NULL)
2417                                         bitmap_end = 1;
2418                                 spin_unlock_irq(&conf->device_lock);
2419                                 if (bitmap_end)
2420                                         bitmap_endwrite(conf->mddev->bitmap,
2421                                                         sh->sector,
2422                                                         STRIPE_SECTORS,
2423                                          !test_bit(STRIPE_DEGRADED, &sh->state),
2424                                                         0);
2425                         }
2426                 }
2427
2428         if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
2429                 if (atomic_dec_and_test(&conf->pending_full_writes))
2430                         md_wakeup_thread(conf->mddev->thread);
2431 }
2432
2433 static void handle_stripe_dirtying5(raid5_conf_t *conf,
2434                 struct stripe_head *sh, struct stripe_head_state *s, int disks)
2435 {
2436         int rmw = 0, rcw = 0, i;
2437         for (i = disks; i--; ) {
2438                 /* would I have to read this buffer for read_modify_write */
2439                 struct r5dev *dev = &sh->dev[i];
2440                 if ((dev->towrite || i == sh->pd_idx) &&
2441                     !test_bit(R5_LOCKED, &dev->flags) &&
2442                     !(test_bit(R5_UPTODATE, &dev->flags) ||
2443                       test_bit(R5_Wantcompute, &dev->flags))) {
2444                         if (test_bit(R5_Insync, &dev->flags))
2445                                 rmw++;
2446                         else
2447                                 rmw += 2*disks;  /* cannot read it */
2448                 }
2449                 /* Would I have to read this buffer for reconstruct_write */
2450                 if (!test_bit(R5_OVERWRITE, &dev->flags) && i != sh->pd_idx &&
2451                     !test_bit(R5_LOCKED, &dev->flags) &&
2452                     !(test_bit(R5_UPTODATE, &dev->flags) ||
2453                     test_bit(R5_Wantcompute, &dev->flags))) {
2454                         if (test_bit(R5_Insync, &dev->flags)) rcw++;
2455                         else
2456                                 rcw += 2*disks;
2457                 }
2458         }
2459         pr_debug("for sector %llu, rmw=%d rcw=%d\n",
2460                 (unsigned long long)sh->sector, rmw, rcw);
2461         set_bit(STRIPE_HANDLE, &sh->state);
2462         if (rmw < rcw && rmw > 0)
2463                 /* prefer read-modify-write, but need to get some data */
2464                 for (i = disks; i--; ) {
2465                         struct r5dev *dev = &sh->dev[i];
2466                         if ((dev->towrite || i == sh->pd_idx) &&
2467                             !test_bit(R5_LOCKED, &dev->flags) &&
2468                             !(test_bit(R5_UPTODATE, &dev->flags) ||
2469                             test_bit(R5_Wantcompute, &dev->flags)) &&
2470                             test_bit(R5_Insync, &dev->flags)) {
2471                                 if (
2472                                   test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
2473                                         pr_debug("Read_old block "
2474                                                 "%d for r-m-w\n", i);
2475                                         set_bit(R5_LOCKED, &dev->flags);
2476                                         set_bit(R5_Wantread, &dev->flags);
2477                                         s->locked++;
2478                                 } else {
2479                                         set_bit(STRIPE_DELAYED, &sh->state);
2480                                         set_bit(STRIPE_HANDLE, &sh->state);
2481                                 }
2482                         }
2483                 }
2484         if (rcw <= rmw && rcw > 0)
2485                 /* want reconstruct write, but need to get some data */
2486                 for (i = disks; i--; ) {
2487                         struct r5dev *dev = &sh->dev[i];
2488                         if (!test_bit(R5_OVERWRITE, &dev->flags) &&
2489                             i != sh->pd_idx &&
2490                             !test_bit(R5_LOCKED, &dev->flags) &&
2491                             !(test_bit(R5_UPTODATE, &dev->flags) ||
2492                             test_bit(R5_Wantcompute, &dev->flags)) &&
2493                             test_bit(R5_Insync, &dev->flags)) {
2494                                 if (
2495                                   test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
2496                                         pr_debug("Read_old block "
2497                                                 "%d for Reconstruct\n", i);
2498                                         set_bit(R5_LOCKED, &dev->flags);
2499                                         set_bit(R5_Wantread, &dev->flags);
2500                                         s->locked++;
2501                                 } else {
2502                                         set_bit(STRIPE_DELAYED, &sh->state);
2503                                         set_bit(STRIPE_HANDLE, &sh->state);
2504                                 }
2505                         }
2506                 }
2507         /* now if nothing is locked, and if we have enough data,
2508          * we can start a write request
2509          */
2510         /* since handle_stripe can be called at any time we need to handle the
2511          * case where a compute block operation has been submitted and then a
2512          * subsequent call wants to start a write request.  raid_run_ops only
2513          * handles the case where compute block and reconstruct are requested
2514          * simultaneously.  If this is not the case then new writes need to be
2515          * held off until the compute completes.
2516          */
2517         if ((s->req_compute || !test_bit(STRIPE_COMPUTE_RUN, &sh->state)) &&
2518             (s->locked == 0 && (rcw == 0 || rmw == 0) &&
2519             !test_bit(STRIPE_BIT_DELAY, &sh->state)))
2520                 schedule_reconstruction(sh, s, rcw == 0, 0);
2521 }
2522
2523 static void handle_stripe_dirtying6(raid5_conf_t *conf,
2524                 struct stripe_head *sh, struct stripe_head_state *s,
2525                 struct r6_state *r6s, int disks)
2526 {
2527         int rcw = 0, pd_idx = sh->pd_idx, i;
2528         int qd_idx = sh->qd_idx;
2529
2530         set_bit(STRIPE_HANDLE, &sh->state);
2531         for (i = disks; i--; ) {
2532                 struct r5dev *dev = &sh->dev[i];
2533                 /* check if we haven't enough data */
2534                 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
2535                     i != pd_idx && i != qd_idx &&
2536                     !test_bit(R5_LOCKED, &dev->flags) &&
2537                     !(test_bit(R5_UPTODATE, &dev->flags) ||
2538                       test_bit(R5_Wantcompute, &dev->flags))) {
2539                         rcw++;
2540                         if (!test_bit(R5_Insync, &dev->flags))
2541                                 continue; /* it's a failed drive */
2542
2543                         if (
2544                           test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
2545                                 pr_debug("Read_old stripe %llu "
2546                                         "block %d for Reconstruct\n",
2547                                      (unsigned long long)sh->sector, i);
2548                                 set_bit(R5_LOCKED, &dev->flags);
2549                                 set_bit(R5_Wantread, &dev->flags);
2550                                 s->locked++;
2551                         } else {
2552                                 pr_debug("Request delayed stripe %llu "
2553                                         "block %d for Reconstruct\n",
2554                                      (unsigned long long)sh->sector, i);
2555                                 set_bit(STRIPE_DELAYED, &sh->state);
2556                                 set_bit(STRIPE_HANDLE, &sh->state);
2557                         }
2558                 }
2559         }
2560         /* now if nothing is locked, and if we have enough data, we can start a
2561          * write request
2562          */
2563         if ((s->req_compute || !test_bit(STRIPE_COMPUTE_RUN, &sh->state)) &&
2564             s->locked == 0 && rcw == 0 &&
2565             !test_bit(STRIPE_BIT_DELAY, &sh->state)) {
2566                 schedule_reconstruction(sh, s, 1, 0);
2567         }
2568 }
2569
2570 static void handle_parity_checks5(raid5_conf_t *conf, struct stripe_head *sh,
2571                                 struct stripe_head_state *s, int disks)
2572 {
2573         struct r5dev *dev = NULL;
2574
2575         set_bit(STRIPE_HANDLE, &sh->state);
2576
2577         switch (sh->check_state) {
2578         case check_state_idle:
2579                 /* start a new check operation if there are no failures */
2580                 if (s->failed == 0) {
2581                         BUG_ON(s->uptodate != disks);
2582                         sh->check_state = check_state_run;
2583                         set_bit(STRIPE_OP_CHECK, &s->ops_request);
2584                         clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
2585                         s->uptodate--;
2586                         break;
2587                 }
2588                 dev = &sh->dev[s->failed_num];
2589                 /* fall through */
2590         case check_state_compute_result:
2591                 sh->check_state = check_state_idle;
2592                 if (!dev)
2593                         dev = &sh->dev[sh->pd_idx];
2594
2595                 /* check that a write has not made the stripe insync */
2596                 if (test_bit(STRIPE_INSYNC, &sh->state))
2597                         break;
2598
2599                 /* either failed parity check, or recovery is happening */
2600                 BUG_ON(!test_bit(R5_UPTODATE, &dev->flags));
2601                 BUG_ON(s->uptodate != disks);
2602
2603                 set_bit(R5_LOCKED, &dev->flags);
2604                 s->locked++;
2605                 set_bit(R5_Wantwrite, &dev->flags);
2606
2607                 clear_bit(STRIPE_DEGRADED, &sh->state);
2608                 set_bit(STRIPE_INSYNC, &sh->state);
2609                 break;
2610         case check_state_run:
2611                 break; /* we will be called again upon completion */
2612         case check_state_check_result:
2613                 sh->check_state = check_state_idle;
2614
2615                 /* if a failure occurred during the check operation, leave
2616                  * STRIPE_INSYNC not set and let the stripe be handled again
2617                  */
2618                 if (s->failed)
2619                         break;
2620
2621                 /* handle a successful check operation, if parity is correct
2622                  * we are done.  Otherwise update the mismatch count and repair
2623                  * parity if !MD_RECOVERY_CHECK
2624                  */
2625                 if ((sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) == 0)
2626                         /* parity is correct (on disc,
2627                          * not in buffer any more)
2628                          */
2629                         set_bit(STRIPE_INSYNC, &sh->state);
2630                 else {
2631                         conf->mddev->resync_mismatches += STRIPE_SECTORS;
2632                         if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
2633                                 /* don't try to repair!! */
2634                                 set_bit(STRIPE_INSYNC, &sh->state);
2635                         else {
2636                                 sh->check_state = check_state_compute_run;
2637                                 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
2638                                 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
2639                                 set_bit(R5_Wantcompute,
2640                                         &sh->dev[sh->pd_idx].flags);
2641                                 sh->ops.target = sh->pd_idx;
2642                                 sh->ops.target2 = -1;
2643                                 s->uptodate++;
2644                         }
2645                 }
2646                 break;
2647         case check_state_compute_run:
2648                 break;
2649         default:
2650                 printk(KERN_ERR "%s: unknown check_state: %d sector: %llu\n",
2651                        __func__, sh->check_state,
2652                        (unsigned long long) sh->sector);
2653                 BUG();
2654         }
2655 }
2656
2657
2658 static void handle_parity_checks6(raid5_conf_t *conf, struct stripe_head *sh,
2659                                   struct stripe_head_state *s,
2660                                   struct r6_state *r6s, int disks)
2661 {
2662         int pd_idx = sh->pd_idx;
2663         int qd_idx = sh->qd_idx;
2664         struct r5dev *dev;
2665
2666         set_bit(STRIPE_HANDLE, &sh->state);
2667
2668         BUG_ON(s->failed > 2);
2669
2670         /* Want to check and possibly repair P and Q.
2671          * However there could be one 'failed' device, in which
2672          * case we can only check one of them, possibly using the
2673          * other to generate missing data
2674          */
2675
2676         switch (sh->check_state) {
2677         case check_state_idle:
2678                 /* start a new check operation if there are < 2 failures */
2679                 if (s->failed == r6s->q_failed) {
2680                         /* The only possible failed device holds Q, so it
2681                          * makes sense to check P (If anything else were failed,
2682                          * we would have used P to recreate it).
2683                          */
2684                         sh->check_state = check_state_run;
2685                 }
2686                 if (!r6s->q_failed && s->failed < 2) {
2687                         /* Q is not failed, and we didn't use it to generate
2688                          * anything, so it makes sense to check it
2689                          */
2690                         if (sh->check_state == check_state_run)
2691                                 sh->check_state = check_state_run_pq;
2692                         else
2693                                 sh->check_state = check_state_run_q;
2694                 }
2695
2696                 /* discard potentially stale zero_sum_result */
2697                 sh->ops.zero_sum_result = 0;
2698
2699                 if (sh->check_state == check_state_run) {
2700                         /* async_xor_zero_sum destroys the contents of P */
2701                         clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
2702                         s->uptodate--;
2703                 }
2704                 if (sh->check_state >= check_state_run &&
2705                     sh->check_state <= check_state_run_pq) {
2706                         /* async_syndrome_zero_sum preserves P and Q, so
2707                          * no need to mark them !uptodate here
2708                          */
2709                         set_bit(STRIPE_OP_CHECK, &s->ops_request);
2710                         break;
2711                 }
2712
2713                 /* we have 2-disk failure */
2714                 BUG_ON(s->failed != 2);
2715                 /* fall through */
2716         case check_state_compute_result:
2717                 sh->check_state = check_state_idle;
2718
2719                 /* check that a write has not made the stripe insync */
2720                 if (test_bit(STRIPE_INSYNC, &sh->state))
2721                         break;
2722
2723                 /* now write out any block on a failed drive,
2724                  * or P or Q if they were recomputed
2725                  */
2726                 BUG_ON(s->uptodate < disks - 1); /* We don't need Q to recover */
2727                 if (s->failed == 2) {
2728                         dev = &sh->dev[r6s->failed_num[1]];
2729                         s->locked++;
2730                         set_bit(R5_LOCKED, &dev->flags);
2731                         set_bit(R5_Wantwrite, &dev->flags);
2732                 }
2733                 if (s->failed >= 1) {
2734                         dev = &sh->dev[r6s->failed_num[0]];
2735                         s->locked++;
2736                         set_bit(R5_LOCKED, &dev->flags);
2737                         set_bit(R5_Wantwrite, &dev->flags);
2738                 }
2739                 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
2740                         dev = &sh->dev[pd_idx];
2741                         s->locked++;
2742                         set_bit(R5_LOCKED, &dev->flags);
2743                         set_bit(R5_Wantwrite, &dev->flags);
2744                 }
2745                 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
2746                         dev = &sh->dev[qd_idx];
2747                         s->locked++;
2748                         set_bit(R5_LOCKED, &dev->flags);
2749                         set_bit(R5_Wantwrite, &dev->flags);
2750                 }
2751                 clear_bit(STRIPE_DEGRADED, &sh->state);
2752
2753                 set_bit(STRIPE_INSYNC, &sh->state);
2754                 break;
2755         case check_state_run:
2756         case check_state_run_q:
2757         case check_state_run_pq:
2758                 break; /* we will be called again upon completion */
2759         case check_state_check_result:
2760                 sh->check_state = check_state_idle;
2761
2762                 /* handle a successful check operation, if parity is correct
2763                  * we are done.  Otherwise update the mismatch count and repair
2764                  * parity if !MD_RECOVERY_CHECK
2765                  */
2766                 if (sh->ops.zero_sum_result == 0) {
2767                         /* both parities are correct */
2768                         if (!s->failed)
2769                                 set_bit(STRIPE_INSYNC, &sh->state);
2770                         else {
2771                                 /* in contrast to the raid5 case we can validate
2772                                  * parity, but still have a failure to write
2773                                  * back
2774                                  */
2775                                 sh->check_state = check_state_compute_result;
2776                                 /* Returning at this point means that we may go
2777                                  * off and bring p and/or q uptodate again so
2778                                  * we make sure to check zero_sum_result again
2779                                  * to verify if p or q need writeback
2780                                  */
2781                         }
2782                 } else {
2783                         conf->mddev->resync_mismatches += STRIPE_SECTORS;
2784                         if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
2785                                 /* don't try to repair!! */
2786                                 set_bit(STRIPE_INSYNC, &sh->state);
2787                         else {
2788                                 int *target = &sh->ops.target;
2789
2790                                 sh->ops.target = -1;
2791                                 sh->ops.target2 = -1;
2792                                 sh->check_state = check_state_compute_run;
2793                                 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
2794                                 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
2795                                 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
2796                                         set_bit(R5_Wantcompute,
2797                                                 &sh->dev[pd_idx].flags);
2798                                         *target = pd_idx;
2799                                         target = &sh->ops.target2;
2800                                         s->uptodate++;
2801                                 }
2802                                 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
2803                                         set_bit(R5_Wantcompute,
2804                                                 &sh->dev[qd_idx].flags);
2805                                         *target = qd_idx;
2806                                         s->uptodate++;
2807                                 }
2808                         }
2809                 }
2810                 break;
2811         case check_state_compute_run:
2812                 break;
2813         default:
2814                 printk(KERN_ERR "%s: unknown check_state: %d sector: %llu\n",
2815                        __func__, sh->check_state,
2816                        (unsigned long long) sh->sector);
2817                 BUG();
2818         }
2819 }
2820
2821 static void handle_stripe_expansion(raid5_conf_t *conf, struct stripe_head *sh,
2822                                 struct r6_state *r6s)
2823 {
2824         int i;
2825
2826         /* We have read all the blocks in this stripe and now we need to
2827          * copy some of them into a target stripe for expand.
2828          */
2829         struct dma_async_tx_descriptor *tx = NULL;
2830         clear_bit(STRIPE_EXPAND_SOURCE, &sh->state);
2831         for (i = 0; i < sh->disks; i++)
2832                 if (i != sh->pd_idx && i != sh->qd_idx) {
2833                         int dd_idx, j;
2834                         struct stripe_head *sh2;
2835                         struct async_submit_ctl submit;
2836
2837                         sector_t bn = compute_blocknr(sh, i, 1);
2838                         sector_t s = raid5_compute_sector(conf, bn, 0,
2839                                                           &dd_idx, NULL);
2840                         sh2 = get_active_stripe(conf, s, 0, 1, 1);
2841                         if (sh2 == NULL)
2842                                 /* so far only the early blocks of this stripe
2843                                  * have been requested.  When later blocks
2844                                  * get requested, we will try again
2845                                  */
2846                                 continue;
2847                         if (!test_bit(STRIPE_EXPANDING, &sh2->state) ||
2848                            test_bit(R5_Expanded, &sh2->dev[dd_idx].flags)) {
2849                                 /* must have already done this block */
2850                                 release_stripe(sh2);
2851                                 continue;
2852                         }
2853
2854                         /* place all the copies on one channel */
2855                         init_async_submit(&submit, 0, tx, NULL, NULL, NULL);
2856                         tx = async_memcpy(sh2->dev[dd_idx].page,
2857                                           sh->dev[i].page, 0, 0, STRIPE_SIZE,
2858                                           &submit);
2859
2860                         set_bit(R5_Expanded, &sh2->dev[dd_idx].flags);
2861                         set_bit(R5_UPTODATE, &sh2->dev[dd_idx].flags);
2862                         for (j = 0; j < conf->raid_disks; j++)
2863                                 if (j != sh2->pd_idx &&
2864                                     (!r6s || j != sh2->qd_idx) &&
2865                                     !test_bit(R5_Expanded, &sh2->dev[j].flags))
2866                                         break;
2867                         if (j == conf->raid_disks) {
2868                                 set_bit(STRIPE_EXPAND_READY, &sh2->state);
2869                                 set_bit(STRIPE_HANDLE, &sh2->state);
2870                         }
2871                         release_stripe(sh2);
2872
2873                 }
2874         /* done submitting copies, wait for them to complete */
2875         if (tx) {
2876                 async_tx_ack(tx);
2877                 dma_wait_for_async_tx(tx);
2878         }
2879 }
2880
2881
2882 /*
2883  * handle_stripe - do things to a stripe.
2884  *
2885  * We lock the stripe and then examine the state of various bits
2886  * to see what needs to be done.
2887  * Possible results:
2888  *    return some read request which now have data
2889  *    return some write requests which are safely on disc
2890  *    schedule a read on some buffers
2891  *    schedule a write of some buffers
2892  *    return confirmation of parity correctness
2893  *
2894  * buffers are taken off read_list or write_list, and bh_cache buffers
2895  * get BH_Lock set before the stripe lock is released.
2896  *
2897  */
2898
2899 static bool handle_stripe5(struct stripe_head *sh)
2900 {
2901         raid5_conf_t *conf = sh->raid_conf;
2902         int disks = sh->disks, i;
2903         struct bio *return_bi = NULL;
2904         struct stripe_head_state s;
2905         struct r5dev *dev;
2906         mdk_rdev_t *blocked_rdev = NULL;
2907         int prexor;
2908
2909         memset(&s, 0, sizeof(s));
2910         pr_debug("handling stripe %llu, state=%#lx cnt=%d, pd_idx=%d check:%d "
2911                  "reconstruct:%d\n", (unsigned long long)sh->sector, sh->state,
2912                  atomic_read(&sh->count), sh->pd_idx, sh->check_state,
2913                  sh->reconstruct_state);
2914
2915         spin_lock(&sh->lock);
2916         clear_bit(STRIPE_HANDLE, &sh->state);
2917         clear_bit(STRIPE_DELAYED, &sh->state);
2918
2919         s.syncing = test_bit(STRIPE_SYNCING, &sh->state);
2920         s.expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state);
2921         s.expanded = test_bit(STRIPE_EXPAND_READY, &sh->state);
2922
2923         /* Now to look around and see what can be done */
2924         rcu_read_lock();
2925         for (i=disks; i--; ) {
2926                 mdk_rdev_t *rdev;
2927
2928                 dev = &sh->dev[i];
2929                 clear_bit(R5_Insync, &dev->flags);
2930
2931                 pr_debug("check %d: state 0x%lx toread %p read %p write %p "
2932                         "written %p\n", i, dev->flags, dev->toread, dev->read,
2933                         dev->towrite, dev->written);
2934
2935                 /* maybe we can request a biofill operation
2936                  *
2937                  * new wantfill requests are only permitted while
2938                  * ops_complete_biofill is guaranteed to be inactive
2939                  */
2940                 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread &&
2941                     !test_bit(STRIPE_BIOFILL_RUN, &sh->state))
2942                         set_bit(R5_Wantfill, &dev->flags);
2943
2944                 /* now count some things */
2945                 if (test_bit(R5_LOCKED, &dev->flags)) s.locked++;
2946                 if (test_bit(R5_UPTODATE, &dev->flags)) s.uptodate++;
2947                 if (test_bit(R5_Wantcompute, &dev->flags)) s.compute++;
2948
2949                 if (test_bit(R5_Wantfill, &dev->flags))
2950                         s.to_fill++;
2951                 else if (dev->toread)
2952                         s.to_read++;
2953                 if (dev->towrite) {
2954                         s.to_write++;
2955                         if (!test_bit(R5_OVERWRITE, &dev->flags))
2956                                 s.non_overwrite++;
2957                 }
2958                 if (dev->written)
2959                         s.written++;
2960                 rdev = rcu_dereference(conf->disks[i].rdev);
2961                 if (blocked_rdev == NULL &&
2962                     rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
2963                         blocked_rdev = rdev;
2964                         atomic_inc(&rdev->nr_pending);
2965                 }
2966                 if (!rdev || !test_bit(In_sync, &rdev->flags)) {
2967                         /* The ReadError flag will just be confusing now */
2968                         clear_bit(R5_ReadError, &dev->flags);
2969                         clear_bit(R5_ReWrite, &dev->flags);
2970                 }
2971                 if (!rdev || !test_bit(In_sync, &rdev->flags)
2972                     || test_bit(R5_ReadError, &dev->flags)) {
2973                         s.failed++;
2974                         s.failed_num = i;
2975                 } else
2976                         set_bit(R5_Insync, &dev->flags);
2977         }
2978         rcu_read_unlock();
2979
2980         if (unlikely(blocked_rdev)) {
2981                 if (s.syncing || s.expanding || s.expanded ||
2982                     s.to_write || s.written) {
2983                         set_bit(STRIPE_HANDLE, &sh->state);
2984                         goto unlock;
2985                 }
2986                 /* There is nothing for the blocked_rdev to block */
2987                 rdev_dec_pending(blocked_rdev, conf->mddev);
2988                 blocked_rdev = NULL;
2989         }
2990
2991         if (s.to_fill && !test_bit(STRIPE_BIOFILL_RUN, &sh->state)) {
2992                 set_bit(STRIPE_OP_BIOFILL, &s.ops_request);
2993                 set_bit(STRIPE_BIOFILL_RUN, &sh->state);
2994         }
2995
2996         pr_debug("locked=%d uptodate=%d to_read=%d"
2997                 " to_write=%d failed=%d failed_num=%d\n",
2998                 s.locked, s.uptodate, s.to_read, s.to_write,
2999                 s.failed, s.failed_num);
3000         /* check if the array has lost two devices and, if so, some requests might
3001          * need to be failed
3002          */
3003         if (s.failed > 1 && s.to_read+s.to_write+s.written)
3004                 handle_failed_stripe(conf, sh, &s, disks, &return_bi);
3005         if (s.failed > 1 && s.syncing) {
3006                 md_done_sync(conf->mddev, STRIPE_SECTORS,0);
3007                 clear_bit(STRIPE_SYNCING, &sh->state);
3008                 s.syncing = 0;
3009         }
3010
3011         /* might be able to return some write requests if the parity block
3012          * is safe, or on a failed drive
3013          */
3014         dev = &sh->dev[sh->pd_idx];
3015         if ( s.written &&
3016              ((test_bit(R5_Insync, &dev->flags) &&
3017                !test_bit(R5_LOCKED, &dev->flags) &&
3018                test_bit(R5_UPTODATE, &dev->flags)) ||
3019                (s.failed == 1 && s.failed_num == sh->pd_idx)))
3020                 handle_stripe_clean_event(conf, sh, disks, &return_bi);
3021
3022         /* Now we might consider reading some blocks, either to check/generate
3023          * parity, or to satisfy requests
3024          * or to load a block that is being partially written.
3025          */
3026         if (s.to_read || s.non_overwrite ||
3027             (s.syncing && (s.uptodate + s.compute < disks)) || s.expanding)
3028                 handle_stripe_fill5(sh, &s, disks);
3029
3030         /* Now we check to see if any write operations have recently
3031          * completed
3032          */
3033         prexor = 0;
3034         if (sh->reconstruct_state == reconstruct_state_prexor_drain_result)
3035                 prexor = 1;
3036         if (sh->reconstruct_state == reconstruct_state_drain_result ||
3037             sh->reconstruct_state == reconstruct_state_prexor_drain_result) {
3038                 sh->reconstruct_state = reconstruct_state_idle;
3039
3040                 /* All the 'written' buffers and the parity block are ready to
3041                  * be written back to disk
3042                  */
3043                 BUG_ON(!test_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags));
3044                 for (i = disks; i--; ) {
3045                         dev = &sh->dev[i];
3046                         if (test_bit(R5_LOCKED, &dev->flags) &&
3047                                 (i == sh->pd_idx || dev->written)) {
3048                                 pr_debug("Writing block %d\n", i);
3049                                 set_bit(R5_Wantwrite, &dev->flags);
3050                                 if (prexor)
3051                                         continue;
3052                                 if (!test_bit(R5_Insync, &dev->flags) ||
3053                                     (i == sh->pd_idx && s.failed == 0))
3054                                         set_bit(STRIPE_INSYNC, &sh->state);
3055                         }
3056                 }
3057                 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
3058                         atomic_dec(&conf->preread_active_stripes);
3059                         if (atomic_read(&conf->preread_active_stripes) <
3060                                 IO_THRESHOLD)
3061                                 md_wakeup_thread(conf->mddev->thread);
3062                 }
3063         }
3064
3065         /* Now to consider new write requests and what else, if anything
3066          * should be read.  We do not handle new writes when:
3067          * 1/ A 'write' operation (copy+xor) is already in flight.
3068          * 2/ A 'check' operation is in flight, as it may clobber the parity
3069          *    block.
3070          */
3071         if (s.to_write && !sh->reconstruct_state && !sh->check_state)
3072                 handle_stripe_dirtying5(conf, sh, &s, disks);
3073
3074         /* maybe we need to check and possibly fix the parity for this stripe
3075          * Any reads will already have been scheduled, so we just see if enough
3076          * data is available.  The parity check is held off while parity
3077          * dependent operations are in flight.
3078          */
3079         if (sh->check_state ||
3080             (s.syncing && s.locked == 0 &&
3081