md: Wait for md_check_recovery before attempting device removal.
[linux-2.6-block.git] / drivers / md / raid5.c
CommitLineData
1da177e4
LT
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
16a53ecc 5 * Copyright (C) 2002, 2003 H. Peter Anvin
1da177e4 6 *
16a53ecc
N
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!
1da177e4
LT
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
ae3c20cc
N
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.
7c13edc8
N
30 * conf->seq_write is the number of the last batch successfully written.
31 * conf->seq_flush is the number of the last batch that was closed to
ae3c20cc
N
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
7c13edc8 35 * the number of the batch it will be in. This is seq_flush+1.
ae3c20cc
N
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 */
1da177e4 45
bff61975 46#include <linux/blkdev.h>
f6705578 47#include <linux/kthread.h>
f701d589 48#include <linux/raid/pq.h>
91c00924 49#include <linux/async_tx.h>
056075c7 50#include <linux/module.h>
07a3b417 51#include <linux/async.h>
bff61975 52#include <linux/seq_file.h>
36d1c647 53#include <linux/cpu.h>
5a0e3ad6 54#include <linux/slab.h>
8bda470e 55#include <linux/ratelimit.h>
a9add5d9
N
56#include <trace/events/block.h>
57
43b2e5d8 58#include "md.h"
bff61975 59#include "raid5.h"
54071b38 60#include "raid0.h"
ef740c37 61#include "bitmap.h"
72626685 62
1da177e4
LT
63/*
64 * Stripe cache
65 */
66
67#define NR_STRIPES 256
68#define STRIPE_SIZE PAGE_SIZE
69#define STRIPE_SHIFT (PAGE_SHIFT - 9)
70#define STRIPE_SECTORS (STRIPE_SIZE>>9)
71#define IO_THRESHOLD 1
8b3e6cdc 72#define BYPASS_THRESHOLD 1
fccddba0 73#define NR_HASH (PAGE_SIZE / sizeof(struct hlist_head))
1da177e4
LT
74#define HASH_MASK (NR_HASH - 1)
75
d1688a6d 76static inline struct hlist_head *stripe_hash(struct r5conf *conf, sector_t sect)
db298e19
N
77{
78 int hash = (sect >> STRIPE_SHIFT) & HASH_MASK;
79 return &conf->stripe_hashtbl[hash];
80}
1da177e4
LT
81
82/* bio's attached to a stripe+device for I/O are linked together in bi_sector
83 * order without overlap. There may be several bio's per stripe+device, and
84 * a bio could span several devices.
85 * When walking this list for a particular stripe+device, we must never proceed
86 * beyond a bio that extends past this device, as the next bio might no longer
87 * be valid.
db298e19 88 * This function is used to determine the 'next' bio in the list, given the sector
1da177e4
LT
89 * of the current stripe+device
90 */
db298e19
N
91static inline struct bio *r5_next_bio(struct bio *bio, sector_t sector)
92{
aa8b57aa 93 int sectors = bio_sectors(bio);
db298e19
N
94 if (bio->bi_sector + sectors < sector + STRIPE_SECTORS)
95 return bio->bi_next;
96 else
97 return NULL;
98}
1da177e4 99
960e739d 100/*
5b99c2ff
JA
101 * We maintain a biased count of active stripes in the bottom 16 bits of
102 * bi_phys_segments, and a count of processed stripes in the upper 16 bits
960e739d 103 */
e7836bd6 104static inline int raid5_bi_processed_stripes(struct bio *bio)
960e739d 105{
e7836bd6
SL
106 atomic_t *segments = (atomic_t *)&bio->bi_phys_segments;
107 return (atomic_read(segments) >> 16) & 0xffff;
960e739d
JA
108}
109
e7836bd6 110static inline int raid5_dec_bi_active_stripes(struct bio *bio)
960e739d 111{
e7836bd6
SL
112 atomic_t *segments = (atomic_t *)&bio->bi_phys_segments;
113 return atomic_sub_return(1, segments) & 0xffff;
960e739d
JA
114}
115
e7836bd6 116static inline void raid5_inc_bi_active_stripes(struct bio *bio)
960e739d 117{
e7836bd6
SL
118 atomic_t *segments = (atomic_t *)&bio->bi_phys_segments;
119 atomic_inc(segments);
960e739d
JA
120}
121
e7836bd6
SL
122static inline void raid5_set_bi_processed_stripes(struct bio *bio,
123 unsigned int cnt)
960e739d 124{
e7836bd6
SL
125 atomic_t *segments = (atomic_t *)&bio->bi_phys_segments;
126 int old, new;
960e739d 127
e7836bd6
SL
128 do {
129 old = atomic_read(segments);
130 new = (old & 0xffff) | (cnt << 16);
131 } while (atomic_cmpxchg(segments, old, new) != old);
960e739d
JA
132}
133
e7836bd6 134static inline void raid5_set_bi_stripes(struct bio *bio, unsigned int cnt)
960e739d 135{
e7836bd6
SL
136 atomic_t *segments = (atomic_t *)&bio->bi_phys_segments;
137 atomic_set(segments, cnt);
960e739d
JA
138}
139
d0dabf7e
N
140/* Find first data disk in a raid6 stripe */
141static inline int raid6_d0(struct stripe_head *sh)
142{
67cc2b81
N
143 if (sh->ddf_layout)
144 /* ddf always start from first device */
145 return 0;
146 /* md starts just after Q block */
d0dabf7e
N
147 if (sh->qd_idx == sh->disks - 1)
148 return 0;
149 else
150 return sh->qd_idx + 1;
151}
16a53ecc
N
152static inline int raid6_next_disk(int disk, int raid_disks)
153{
154 disk++;
155 return (disk < raid_disks) ? disk : 0;
156}
a4456856 157
d0dabf7e
N
158/* When walking through the disks in a raid5, starting at raid6_d0,
159 * We need to map each disk to a 'slot', where the data disks are slot
160 * 0 .. raid_disks-3, the parity disk is raid_disks-2 and the Q disk
161 * is raid_disks-1. This help does that mapping.
162 */
67cc2b81
N
163static int raid6_idx_to_slot(int idx, struct stripe_head *sh,
164 int *count, int syndrome_disks)
d0dabf7e 165{
6629542e 166 int slot = *count;
67cc2b81 167
e4424fee 168 if (sh->ddf_layout)
6629542e 169 (*count)++;
d0dabf7e 170 if (idx == sh->pd_idx)
67cc2b81 171 return syndrome_disks;
d0dabf7e 172 if (idx == sh->qd_idx)
67cc2b81 173 return syndrome_disks + 1;
e4424fee 174 if (!sh->ddf_layout)
6629542e 175 (*count)++;
d0dabf7e
N
176 return slot;
177}
178
a4456856
DW
179static void return_io(struct bio *return_bi)
180{
181 struct bio *bi = return_bi;
182 while (bi) {
a4456856
DW
183
184 return_bi = bi->bi_next;
185 bi->bi_next = NULL;
186 bi->bi_size = 0;
0a82a8d1
LT
187 trace_block_bio_complete(bdev_get_queue(bi->bi_bdev),
188 bi, 0);
0e13fe23 189 bio_endio(bi, 0);
a4456856
DW
190 bi = return_bi;
191 }
192}
193
d1688a6d 194static void print_raid5_conf (struct r5conf *conf);
1da177e4 195
600aa109
DW
196static int stripe_operations_active(struct stripe_head *sh)
197{
198 return sh->check_state || sh->reconstruct_state ||
199 test_bit(STRIPE_BIOFILL_RUN, &sh->state) ||
200 test_bit(STRIPE_COMPUTE_RUN, &sh->state);
201}
202
4eb788df 203static void do_release_stripe(struct r5conf *conf, struct stripe_head *sh)
1da177e4 204{
4eb788df
SL
205 BUG_ON(!list_empty(&sh->lru));
206 BUG_ON(atomic_read(&conf->active_stripes)==0);
207 if (test_bit(STRIPE_HANDLE, &sh->state)) {
208 if (test_bit(STRIPE_DELAYED, &sh->state) &&
209 !test_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
210 list_add_tail(&sh->lru, &conf->delayed_list);
211 else if (test_bit(STRIPE_BIT_DELAY, &sh->state) &&
212 sh->bm_seq - conf->seq_write > 0)
213 list_add_tail(&sh->lru, &conf->bitmap_list);
214 else {
215 clear_bit(STRIPE_DELAYED, &sh->state);
216 clear_bit(STRIPE_BIT_DELAY, &sh->state);
217 list_add_tail(&sh->lru, &conf->handle_list);
218 }
219 md_wakeup_thread(conf->mddev->thread);
220 } else {
221 BUG_ON(stripe_operations_active(sh));
222 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
223 if (atomic_dec_return(&conf->preread_active_stripes)
224 < IO_THRESHOLD)
225 md_wakeup_thread(conf->mddev->thread);
226 atomic_dec(&conf->active_stripes);
227 if (!test_bit(STRIPE_EXPANDING, &sh->state)) {
228 list_add_tail(&sh->lru, &conf->inactive_list);
229 wake_up(&conf->wait_for_stripe);
230 if (conf->retry_read_aligned)
231 md_wakeup_thread(conf->mddev->thread);
1da177e4
LT
232 }
233 }
234}
d0dabf7e 235
4eb788df
SL
236static void __release_stripe(struct r5conf *conf, struct stripe_head *sh)
237{
238 if (atomic_dec_and_test(&sh->count))
239 do_release_stripe(conf, sh);
240}
241
1da177e4
LT
242static void release_stripe(struct stripe_head *sh)
243{
d1688a6d 244 struct r5conf *conf = sh->raid_conf;
1da177e4 245 unsigned long flags;
16a53ecc 246
4eb788df
SL
247 local_irq_save(flags);
248 if (atomic_dec_and_lock(&sh->count, &conf->device_lock)) {
249 do_release_stripe(conf, sh);
250 spin_unlock(&conf->device_lock);
251 }
252 local_irq_restore(flags);
1da177e4
LT
253}
254
fccddba0 255static inline void remove_hash(struct stripe_head *sh)
1da177e4 256{
45b4233c
DW
257 pr_debug("remove_hash(), stripe %llu\n",
258 (unsigned long long)sh->sector);
1da177e4 259
fccddba0 260 hlist_del_init(&sh->hash);
1da177e4
LT
261}
262
d1688a6d 263static inline void insert_hash(struct r5conf *conf, struct stripe_head *sh)
1da177e4 264{
fccddba0 265 struct hlist_head *hp = stripe_hash(conf, sh->sector);
1da177e4 266
45b4233c
DW
267 pr_debug("insert_hash(), stripe %llu\n",
268 (unsigned long long)sh->sector);
1da177e4 269
fccddba0 270 hlist_add_head(&sh->hash, hp);
1da177e4
LT
271}
272
273
274/* find an idle stripe, make sure it is unhashed, and return it. */
d1688a6d 275static struct stripe_head *get_free_stripe(struct r5conf *conf)
1da177e4
LT
276{
277 struct stripe_head *sh = NULL;
278 struct list_head *first;
279
1da177e4
LT
280 if (list_empty(&conf->inactive_list))
281 goto out;
282 first = conf->inactive_list.next;
283 sh = list_entry(first, struct stripe_head, lru);
284 list_del_init(first);
285 remove_hash(sh);
286 atomic_inc(&conf->active_stripes);
287out:
288 return sh;
289}
290
e4e11e38 291static void shrink_buffers(struct stripe_head *sh)
1da177e4
LT
292{
293 struct page *p;
294 int i;
e4e11e38 295 int num = sh->raid_conf->pool_size;
1da177e4 296
e4e11e38 297 for (i = 0; i < num ; i++) {
1da177e4
LT
298 p = sh->dev[i].page;
299 if (!p)
300 continue;
301 sh->dev[i].page = NULL;
2d1f3b5d 302 put_page(p);
1da177e4
LT
303 }
304}
305
e4e11e38 306static int grow_buffers(struct stripe_head *sh)
1da177e4
LT
307{
308 int i;
e4e11e38 309 int num = sh->raid_conf->pool_size;
1da177e4 310
e4e11e38 311 for (i = 0; i < num; i++) {
1da177e4
LT
312 struct page *page;
313
314 if (!(page = alloc_page(GFP_KERNEL))) {
315 return 1;
316 }
317 sh->dev[i].page = page;
318 }
319 return 0;
320}
321
784052ec 322static void raid5_build_block(struct stripe_head *sh, int i, int previous);
d1688a6d 323static void stripe_set_idx(sector_t stripe, struct r5conf *conf, int previous,
911d4ee8 324 struct stripe_head *sh);
1da177e4 325
b5663ba4 326static void init_stripe(struct stripe_head *sh, sector_t sector, int previous)
1da177e4 327{
d1688a6d 328 struct r5conf *conf = sh->raid_conf;
7ecaa1e6 329 int i;
1da177e4 330
78bafebd
ES
331 BUG_ON(atomic_read(&sh->count) != 0);
332 BUG_ON(test_bit(STRIPE_HANDLE, &sh->state));
600aa109 333 BUG_ON(stripe_operations_active(sh));
d84e0f10 334
45b4233c 335 pr_debug("init_stripe called, stripe %llu\n",
1da177e4
LT
336 (unsigned long long)sh->sector);
337
338 remove_hash(sh);
16a53ecc 339
86b42c71 340 sh->generation = conf->generation - previous;
b5663ba4 341 sh->disks = previous ? conf->previous_raid_disks : conf->raid_disks;
1da177e4 342 sh->sector = sector;
911d4ee8 343 stripe_set_idx(sector, conf, previous, sh);
1da177e4
LT
344 sh->state = 0;
345
7ecaa1e6
N
346
347 for (i = sh->disks; i--; ) {
1da177e4
LT
348 struct r5dev *dev = &sh->dev[i];
349
d84e0f10 350 if (dev->toread || dev->read || dev->towrite || dev->written ||
1da177e4 351 test_bit(R5_LOCKED, &dev->flags)) {
d84e0f10 352 printk(KERN_ERR "sector=%llx i=%d %p %p %p %p %d\n",
1da177e4 353 (unsigned long long)sh->sector, i, dev->toread,
d84e0f10 354 dev->read, dev->towrite, dev->written,
1da177e4 355 test_bit(R5_LOCKED, &dev->flags));
8cfa7b0f 356 WARN_ON(1);
1da177e4
LT
357 }
358 dev->flags = 0;
784052ec 359 raid5_build_block(sh, i, previous);
1da177e4
LT
360 }
361 insert_hash(conf, sh);
362}
363
d1688a6d 364static struct stripe_head *__find_stripe(struct r5conf *conf, sector_t sector,
86b42c71 365 short generation)
1da177e4
LT
366{
367 struct stripe_head *sh;
368
45b4233c 369 pr_debug("__find_stripe, sector %llu\n", (unsigned long long)sector);
b67bfe0d 370 hlist_for_each_entry(sh, stripe_hash(conf, sector), hash)
86b42c71 371 if (sh->sector == sector && sh->generation == generation)
1da177e4 372 return sh;
45b4233c 373 pr_debug("__stripe %llu not in cache\n", (unsigned long long)sector);
1da177e4
LT
374 return NULL;
375}
376
674806d6
N
377/*
378 * Need to check if array has failed when deciding whether to:
379 * - start an array
380 * - remove non-faulty devices
381 * - add a spare
382 * - allow a reshape
383 * This determination is simple when no reshape is happening.
384 * However if there is a reshape, we need to carefully check
385 * both the before and after sections.
386 * This is because some failed devices may only affect one
387 * of the two sections, and some non-in_sync devices may
388 * be insync in the section most affected by failed devices.
389 */
908f4fbd 390static int calc_degraded(struct r5conf *conf)
674806d6 391{
908f4fbd 392 int degraded, degraded2;
674806d6 393 int i;
674806d6
N
394
395 rcu_read_lock();
396 degraded = 0;
397 for (i = 0; i < conf->previous_raid_disks; i++) {
3cb03002 398 struct md_rdev *rdev = rcu_dereference(conf->disks[i].rdev);
e5c86471
N
399 if (rdev && test_bit(Faulty, &rdev->flags))
400 rdev = rcu_dereference(conf->disks[i].replacement);
674806d6
N
401 if (!rdev || test_bit(Faulty, &rdev->flags))
402 degraded++;
403 else if (test_bit(In_sync, &rdev->flags))
404 ;
405 else
406 /* not in-sync or faulty.
407 * If the reshape increases the number of devices,
408 * this is being recovered by the reshape, so
409 * this 'previous' section is not in_sync.
410 * If the number of devices is being reduced however,
411 * the device can only be part of the array if
412 * we are reverting a reshape, so this section will
413 * be in-sync.
414 */
415 if (conf->raid_disks >= conf->previous_raid_disks)
416 degraded++;
417 }
418 rcu_read_unlock();
908f4fbd
N
419 if (conf->raid_disks == conf->previous_raid_disks)
420 return degraded;
674806d6 421 rcu_read_lock();
908f4fbd 422 degraded2 = 0;
674806d6 423 for (i = 0; i < conf->raid_disks; i++) {
3cb03002 424 struct md_rdev *rdev = rcu_dereference(conf->disks[i].rdev);
e5c86471
N
425 if (rdev && test_bit(Faulty, &rdev->flags))
426 rdev = rcu_dereference(conf->disks[i].replacement);
674806d6 427 if (!rdev || test_bit(Faulty, &rdev->flags))
908f4fbd 428 degraded2++;
674806d6
N
429 else if (test_bit(In_sync, &rdev->flags))
430 ;
431 else
432 /* not in-sync or faulty.
433 * If reshape increases the number of devices, this
434 * section has already been recovered, else it
435 * almost certainly hasn't.
436 */
437 if (conf->raid_disks <= conf->previous_raid_disks)
908f4fbd 438 degraded2++;
674806d6
N
439 }
440 rcu_read_unlock();
908f4fbd
N
441 if (degraded2 > degraded)
442 return degraded2;
443 return degraded;
444}
445
446static int has_failed(struct r5conf *conf)
447{
448 int degraded;
449
450 if (conf->mddev->reshape_position == MaxSector)
451 return conf->mddev->degraded > conf->max_degraded;
452
453 degraded = calc_degraded(conf);
674806d6
N
454 if (degraded > conf->max_degraded)
455 return 1;
456 return 0;
457}
458
b5663ba4 459static struct stripe_head *
d1688a6d 460get_active_stripe(struct r5conf *conf, sector_t sector,
a8c906ca 461 int previous, int noblock, int noquiesce)
1da177e4
LT
462{
463 struct stripe_head *sh;
464
45b4233c 465 pr_debug("get_stripe, sector %llu\n", (unsigned long long)sector);
1da177e4
LT
466
467 spin_lock_irq(&conf->device_lock);
468
469 do {
72626685 470 wait_event_lock_irq(conf->wait_for_stripe,
a8c906ca 471 conf->quiesce == 0 || noquiesce,
eed8c02e 472 conf->device_lock);
86b42c71 473 sh = __find_stripe(conf, sector, conf->generation - previous);
1da177e4
LT
474 if (!sh) {
475 if (!conf->inactive_blocked)
476 sh = get_free_stripe(conf);
477 if (noblock && sh == NULL)
478 break;
479 if (!sh) {
480 conf->inactive_blocked = 1;
481 wait_event_lock_irq(conf->wait_for_stripe,
482 !list_empty(&conf->inactive_list) &&
5036805b
N
483 (atomic_read(&conf->active_stripes)
484 < (conf->max_nr_stripes *3/4)
1da177e4 485 || !conf->inactive_blocked),
eed8c02e 486 conf->device_lock);
1da177e4
LT
487 conf->inactive_blocked = 0;
488 } else
b5663ba4 489 init_stripe(sh, sector, previous);
1da177e4
LT
490 } else {
491 if (atomic_read(&sh->count)) {
ab69ae12 492 BUG_ON(!list_empty(&sh->lru)
8811b596
SL
493 && !test_bit(STRIPE_EXPANDING, &sh->state)
494 && !test_bit(STRIPE_ON_UNPLUG_LIST, &sh->state));
1da177e4
LT
495 } else {
496 if (!test_bit(STRIPE_HANDLE, &sh->state))
497 atomic_inc(&conf->active_stripes);
ff4e8d9a
N
498 if (list_empty(&sh->lru) &&
499 !test_bit(STRIPE_EXPANDING, &sh->state))
16a53ecc
N
500 BUG();
501 list_del_init(&sh->lru);
1da177e4
LT
502 }
503 }
504 } while (sh == NULL);
505
506 if (sh)
507 atomic_inc(&sh->count);
508
509 spin_unlock_irq(&conf->device_lock);
510 return sh;
511}
512
05616be5
N
513/* Determine if 'data_offset' or 'new_data_offset' should be used
514 * in this stripe_head.
515 */
516static int use_new_offset(struct r5conf *conf, struct stripe_head *sh)
517{
518 sector_t progress = conf->reshape_progress;
519 /* Need a memory barrier to make sure we see the value
520 * of conf->generation, or ->data_offset that was set before
521 * reshape_progress was updated.
522 */
523 smp_rmb();
524 if (progress == MaxSector)
525 return 0;
526 if (sh->generation == conf->generation - 1)
527 return 0;
528 /* We are in a reshape, and this is a new-generation stripe,
529 * so use new_data_offset.
530 */
531 return 1;
532}
533
6712ecf8
N
534static void
535raid5_end_read_request(struct bio *bi, int error);
536static void
537raid5_end_write_request(struct bio *bi, int error);
91c00924 538
c4e5ac0a 539static void ops_run_io(struct stripe_head *sh, struct stripe_head_state *s)
91c00924 540{
d1688a6d 541 struct r5conf *conf = sh->raid_conf;
91c00924
DW
542 int i, disks = sh->disks;
543
544 might_sleep();
545
546 for (i = disks; i--; ) {
547 int rw;
9a3e1101 548 int replace_only = 0;
977df362
N
549 struct bio *bi, *rbi;
550 struct md_rdev *rdev, *rrdev = NULL;
e9c7469b
TH
551 if (test_and_clear_bit(R5_Wantwrite, &sh->dev[i].flags)) {
552 if (test_and_clear_bit(R5_WantFUA, &sh->dev[i].flags))
553 rw = WRITE_FUA;
554 else
555 rw = WRITE;
9e444768 556 if (test_bit(R5_Discard, &sh->dev[i].flags))
620125f2 557 rw |= REQ_DISCARD;
e9c7469b 558 } else if (test_and_clear_bit(R5_Wantread, &sh->dev[i].flags))
91c00924 559 rw = READ;
9a3e1101
N
560 else if (test_and_clear_bit(R5_WantReplace,
561 &sh->dev[i].flags)) {
562 rw = WRITE;
563 replace_only = 1;
564 } else
91c00924 565 continue;
bc0934f0
SL
566 if (test_and_clear_bit(R5_SyncIO, &sh->dev[i].flags))
567 rw |= REQ_SYNC;
91c00924
DW
568
569 bi = &sh->dev[i].req;
977df362 570 rbi = &sh->dev[i].rreq; /* For writing to replacement */
91c00924 571
91c00924 572 rcu_read_lock();
9a3e1101 573 rrdev = rcu_dereference(conf->disks[i].replacement);
dd054fce
N
574 smp_mb(); /* Ensure that if rrdev is NULL, rdev won't be */
575 rdev = rcu_dereference(conf->disks[i].rdev);
576 if (!rdev) {
577 rdev = rrdev;
578 rrdev = NULL;
579 }
9a3e1101
N
580 if (rw & WRITE) {
581 if (replace_only)
582 rdev = NULL;
dd054fce
N
583 if (rdev == rrdev)
584 /* We raced and saw duplicates */
585 rrdev = NULL;
9a3e1101 586 } else {
dd054fce 587 if (test_bit(R5_ReadRepl, &sh->dev[i].flags) && rrdev)
9a3e1101
N
588 rdev = rrdev;
589 rrdev = NULL;
590 }
977df362 591
91c00924
DW
592 if (rdev && test_bit(Faulty, &rdev->flags))
593 rdev = NULL;
594 if (rdev)
595 atomic_inc(&rdev->nr_pending);
977df362
N
596 if (rrdev && test_bit(Faulty, &rrdev->flags))
597 rrdev = NULL;
598 if (rrdev)
599 atomic_inc(&rrdev->nr_pending);
91c00924
DW
600 rcu_read_unlock();
601
73e92e51 602 /* We have already checked bad blocks for reads. Now
977df362
N
603 * need to check for writes. We never accept write errors
604 * on the replacement, so we don't to check rrdev.
73e92e51
N
605 */
606 while ((rw & WRITE) && rdev &&
607 test_bit(WriteErrorSeen, &rdev->flags)) {
608 sector_t first_bad;
609 int bad_sectors;
610 int bad = is_badblock(rdev, sh->sector, STRIPE_SECTORS,
611 &first_bad, &bad_sectors);
612 if (!bad)
613 break;
614
615 if (bad < 0) {
616 set_bit(BlockedBadBlocks, &rdev->flags);
617 if (!conf->mddev->external &&
618 conf->mddev->flags) {
619 /* It is very unlikely, but we might
620 * still need to write out the
621 * bad block log - better give it
622 * a chance*/
623 md_check_recovery(conf->mddev);
624 }
1850753d 625 /*
626 * Because md_wait_for_blocked_rdev
627 * will dec nr_pending, we must
628 * increment it first.
629 */
630 atomic_inc(&rdev->nr_pending);
73e92e51
N
631 md_wait_for_blocked_rdev(rdev, conf->mddev);
632 } else {
633 /* Acknowledged bad block - skip the write */
634 rdev_dec_pending(rdev, conf->mddev);
635 rdev = NULL;
636 }
637 }
638
91c00924 639 if (rdev) {
9a3e1101
N
640 if (s->syncing || s->expanding || s->expanded
641 || s->replacing)
91c00924
DW
642 md_sync_acct(rdev->bdev, STRIPE_SECTORS);
643
2b7497f0
DW
644 set_bit(STRIPE_IO_STARTED, &sh->state);
645
2f6db2a7 646 bio_reset(bi);
91c00924 647 bi->bi_bdev = rdev->bdev;
2f6db2a7
KO
648 bi->bi_rw = rw;
649 bi->bi_end_io = (rw & WRITE)
650 ? raid5_end_write_request
651 : raid5_end_read_request;
652 bi->bi_private = sh;
653
91c00924 654 pr_debug("%s: for %llu schedule op %ld on disc %d\n",
e46b272b 655 __func__, (unsigned long long)sh->sector,
91c00924
DW
656 bi->bi_rw, i);
657 atomic_inc(&sh->count);
05616be5
N
658 if (use_new_offset(conf, sh))
659 bi->bi_sector = (sh->sector
660 + rdev->new_data_offset);
661 else
662 bi->bi_sector = (sh->sector
663 + rdev->data_offset);
3f9e7c14 664 if (test_bit(R5_ReadNoMerge, &sh->dev[i].flags))
665 bi->bi_rw |= REQ_FLUSH;
666
4997b72e 667 bi->bi_vcnt = 1;
91c00924
DW
668 bi->bi_io_vec[0].bv_len = STRIPE_SIZE;
669 bi->bi_io_vec[0].bv_offset = 0;
670 bi->bi_size = STRIPE_SIZE;
977df362
N
671 if (rrdev)
672 set_bit(R5_DOUBLE_LOCKED, &sh->dev[i].flags);
e3620a3a
JB
673
674 if (conf->mddev->gendisk)
675 trace_block_bio_remap(bdev_get_queue(bi->bi_bdev),
676 bi, disk_devt(conf->mddev->gendisk),
677 sh->dev[i].sector);
91c00924 678 generic_make_request(bi);
977df362
N
679 }
680 if (rrdev) {
9a3e1101
N
681 if (s->syncing || s->expanding || s->expanded
682 || s->replacing)
977df362
N
683 md_sync_acct(rrdev->bdev, STRIPE_SECTORS);
684
685 set_bit(STRIPE_IO_STARTED, &sh->state);
686
2f6db2a7 687 bio_reset(rbi);
977df362 688 rbi->bi_bdev = rrdev->bdev;
2f6db2a7
KO
689 rbi->bi_rw = rw;
690 BUG_ON(!(rw & WRITE));
691 rbi->bi_end_io = raid5_end_write_request;
692 rbi->bi_private = sh;
693
977df362
N
694 pr_debug("%s: for %llu schedule op %ld on "
695 "replacement disc %d\n",
696 __func__, (unsigned long long)sh->sector,
697 rbi->bi_rw, i);
698 atomic_inc(&sh->count);
05616be5
N
699 if (use_new_offset(conf, sh))
700 rbi->bi_sector = (sh->sector
701 + rrdev->new_data_offset);
702 else
703 rbi->bi_sector = (sh->sector
704 + rrdev->data_offset);
4997b72e 705 rbi->bi_vcnt = 1;
977df362
N
706 rbi->bi_io_vec[0].bv_len = STRIPE_SIZE;
707 rbi->bi_io_vec[0].bv_offset = 0;
708 rbi->bi_size = STRIPE_SIZE;
e3620a3a
JB
709 if (conf->mddev->gendisk)
710 trace_block_bio_remap(bdev_get_queue(rbi->bi_bdev),
711 rbi, disk_devt(conf->mddev->gendisk),
712 sh->dev[i].sector);
977df362
N
713 generic_make_request(rbi);
714 }
715 if (!rdev && !rrdev) {
b062962e 716 if (rw & WRITE)
91c00924
DW
717 set_bit(STRIPE_DEGRADED, &sh->state);
718 pr_debug("skip op %ld on disc %d for sector %llu\n",
719 bi->bi_rw, i, (unsigned long long)sh->sector);
720 clear_bit(R5_LOCKED, &sh->dev[i].flags);
721 set_bit(STRIPE_HANDLE, &sh->state);
722 }
723 }
724}
725
726static struct dma_async_tx_descriptor *
727async_copy_data(int frombio, struct bio *bio, struct page *page,
728 sector_t sector, struct dma_async_tx_descriptor *tx)
729{
730 struct bio_vec *bvl;
731 struct page *bio_page;
732 int i;
733 int page_offset;
a08abd8c 734 struct async_submit_ctl submit;
0403e382 735 enum async_tx_flags flags = 0;
91c00924
DW
736
737 if (bio->bi_sector >= sector)
738 page_offset = (signed)(bio->bi_sector - sector) * 512;
739 else
740 page_offset = (signed)(sector - bio->bi_sector) * -512;
a08abd8c 741
0403e382
DW
742 if (frombio)
743 flags |= ASYNC_TX_FENCE;
744 init_async_submit(&submit, flags, tx, NULL, NULL, NULL);
745
91c00924 746 bio_for_each_segment(bvl, bio, i) {
fcde9075 747 int len = bvl->bv_len;
91c00924
DW
748 int clen;
749 int b_offset = 0;
750
751 if (page_offset < 0) {
752 b_offset = -page_offset;
753 page_offset += b_offset;
754 len -= b_offset;
755 }
756
757 if (len > 0 && page_offset + len > STRIPE_SIZE)
758 clen = STRIPE_SIZE - page_offset;
759 else
760 clen = len;
761
762 if (clen > 0) {
fcde9075
NK
763 b_offset += bvl->bv_offset;
764 bio_page = bvl->bv_page;
91c00924
DW
765 if (frombio)
766 tx = async_memcpy(page, bio_page, page_offset,
a08abd8c 767 b_offset, clen, &submit);
91c00924
DW
768 else
769 tx = async_memcpy(bio_page, page, b_offset,
a08abd8c 770 page_offset, clen, &submit);
91c00924 771 }
a08abd8c
DW
772 /* chain the operations */
773 submit.depend_tx = tx;
774
91c00924
DW
775 if (clen < len) /* hit end of page */
776 break;
777 page_offset += len;
778 }
779
780 return tx;
781}
782
783static void ops_complete_biofill(void *stripe_head_ref)
784{
785 struct stripe_head *sh = stripe_head_ref;
786 struct bio *return_bi = NULL;
e4d84909 787 int i;
91c00924 788
e46b272b 789 pr_debug("%s: stripe %llu\n", __func__,
91c00924
DW
790 (unsigned long long)sh->sector);
791
792 /* clear completed biofills */
793 for (i = sh->disks; i--; ) {
794 struct r5dev *dev = &sh->dev[i];
91c00924
DW
795
796 /* acknowledge completion of a biofill operation */
e4d84909
DW
797 /* and check if we need to reply to a read request,
798 * new R5_Wantfill requests are held off until
83de75cc 799 * !STRIPE_BIOFILL_RUN
e4d84909
DW
800 */
801 if (test_and_clear_bit(R5_Wantfill, &dev->flags)) {
91c00924 802 struct bio *rbi, *rbi2;
91c00924 803
91c00924
DW
804 BUG_ON(!dev->read);
805 rbi = dev->read;
806 dev->read = NULL;
807 while (rbi && rbi->bi_sector <
808 dev->sector + STRIPE_SECTORS) {
809 rbi2 = r5_next_bio(rbi, dev->sector);
e7836bd6 810 if (!raid5_dec_bi_active_stripes(rbi)) {
91c00924
DW
811 rbi->bi_next = return_bi;
812 return_bi = rbi;
813 }
91c00924
DW
814 rbi = rbi2;
815 }
816 }
817 }
83de75cc 818 clear_bit(STRIPE_BIOFILL_RUN, &sh->state);
91c00924
DW
819
820 return_io(return_bi);
821
e4d84909 822 set_bit(STRIPE_HANDLE, &sh->state);
91c00924
DW
823 release_stripe(sh);
824}
825
826static void ops_run_biofill(struct stripe_head *sh)
827{
828 struct dma_async_tx_descriptor *tx = NULL;
a08abd8c 829 struct async_submit_ctl submit;
91c00924
DW
830 int i;
831
e46b272b 832 pr_debug("%s: stripe %llu\n", __func__,
91c00924
DW
833 (unsigned long long)sh->sector);
834
835 for (i = sh->disks; i--; ) {
836 struct r5dev *dev = &sh->dev[i];
837 if (test_bit(R5_Wantfill, &dev->flags)) {
838 struct bio *rbi;
b17459c0 839 spin_lock_irq(&sh->stripe_lock);
91c00924
DW
840 dev->read = rbi = dev->toread;
841 dev->toread = NULL;
b17459c0 842 spin_unlock_irq(&sh->stripe_lock);
91c00924
DW
843 while (rbi && rbi->bi_sector <
844 dev->sector + STRIPE_SECTORS) {
845 tx = async_copy_data(0, rbi, dev->page,
846 dev->sector, tx);
847 rbi = r5_next_bio(rbi, dev->sector);
848 }
849 }
850 }
851
852 atomic_inc(&sh->count);
a08abd8c
DW
853 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_biofill, sh, NULL);
854 async_trigger_callback(&submit);
91c00924
DW
855}
856
4e7d2c0a 857static void mark_target_uptodate(struct stripe_head *sh, int target)
91c00924 858{
4e7d2c0a 859 struct r5dev *tgt;
91c00924 860
4e7d2c0a
DW
861 if (target < 0)
862 return;
91c00924 863
4e7d2c0a 864 tgt = &sh->dev[target];
91c00924
DW
865 set_bit(R5_UPTODATE, &tgt->flags);
866 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
867 clear_bit(R5_Wantcompute, &tgt->flags);
4e7d2c0a
DW
868}
869
ac6b53b6 870static void ops_complete_compute(void *stripe_head_ref)
91c00924
DW
871{
872 struct stripe_head *sh = stripe_head_ref;
91c00924 873
e46b272b 874 pr_debug("%s: stripe %llu\n", __func__,
91c00924
DW
875 (unsigned long long)sh->sector);
876
ac6b53b6 877 /* mark the computed target(s) as uptodate */
4e7d2c0a 878 mark_target_uptodate(sh, sh->ops.target);
ac6b53b6 879 mark_target_uptodate(sh, sh->ops.target2);
4e7d2c0a 880
ecc65c9b
DW
881 clear_bit(STRIPE_COMPUTE_RUN, &sh->state);
882 if (sh->check_state == check_state_compute_run)
883 sh->check_state = check_state_compute_result;
91c00924
DW
884 set_bit(STRIPE_HANDLE, &sh->state);
885 release_stripe(sh);
886}
887
d6f38f31
DW
888/* return a pointer to the address conversion region of the scribble buffer */
889static addr_conv_t *to_addr_conv(struct stripe_head *sh,
890 struct raid5_percpu *percpu)
891{
892 return percpu->scribble + sizeof(struct page *) * (sh->disks + 2);
893}
894
895static struct dma_async_tx_descriptor *
896ops_run_compute5(struct stripe_head *sh, struct raid5_percpu *percpu)
91c00924 897{
91c00924 898 int disks = sh->disks;
d6f38f31 899 struct page **xor_srcs = percpu->scribble;
91c00924
DW
900 int target = sh->ops.target;
901 struct r5dev *tgt = &sh->dev[target];
902 struct page *xor_dest = tgt->page;
903 int count = 0;
904 struct dma_async_tx_descriptor *tx;
a08abd8c 905 struct async_submit_ctl submit;
91c00924
DW
906 int i;
907
908 pr_debug("%s: stripe %llu block: %d\n",
e46b272b 909 __func__, (unsigned long long)sh->sector, target);
91c00924
DW
910 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
911
912 for (i = disks; i--; )
913 if (i != target)
914 xor_srcs[count++] = sh->dev[i].page;
915
916 atomic_inc(&sh->count);
917
0403e382 918 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST, NULL,
ac6b53b6 919 ops_complete_compute, sh, to_addr_conv(sh, percpu));
91c00924 920 if (unlikely(count == 1))
a08abd8c 921 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
91c00924 922 else
a08abd8c 923 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
91c00924 924
91c00924
DW
925 return tx;
926}
927
ac6b53b6
DW
928/* set_syndrome_sources - populate source buffers for gen_syndrome
929 * @srcs - (struct page *) array of size sh->disks
930 * @sh - stripe_head to parse
931 *
932 * Populates srcs in proper layout order for the stripe and returns the
933 * 'count' of sources to be used in a call to async_gen_syndrome. The P
934 * destination buffer is recorded in srcs[count] and the Q destination
935 * is recorded in srcs[count+1]].
936 */
937static int set_syndrome_sources(struct page **srcs, struct stripe_head *sh)
938{
939 int disks = sh->disks;
940 int syndrome_disks = sh->ddf_layout ? disks : (disks - 2);
941 int d0_idx = raid6_d0(sh);
942 int count;
943 int i;
944
945 for (i = 0; i < disks; i++)
5dd33c9a 946 srcs[i] = NULL;
ac6b53b6
DW
947
948 count = 0;
949 i = d0_idx;
950 do {
951 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
952
953 srcs[slot] = sh->dev[i].page;
954 i = raid6_next_disk(i, disks);
955 } while (i != d0_idx);
ac6b53b6 956
e4424fee 957 return syndrome_disks;
ac6b53b6
DW
958}
959
960static struct dma_async_tx_descriptor *
961ops_run_compute6_1(struct stripe_head *sh, struct raid5_percpu *percpu)
962{
963 int disks = sh->disks;
964 struct page **blocks = percpu->scribble;
965 int target;
966 int qd_idx = sh->qd_idx;
967 struct dma_async_tx_descriptor *tx;
968 struct async_submit_ctl submit;
969 struct r5dev *tgt;
970 struct page *dest;
971 int i;
972 int count;
973
974 if (sh->ops.target < 0)
975 target = sh->ops.target2;
976 else if (sh->ops.target2 < 0)
977 target = sh->ops.target;
91c00924 978 else
ac6b53b6
DW
979 /* we should only have one valid target */
980 BUG();
981 BUG_ON(target < 0);
982 pr_debug("%s: stripe %llu block: %d\n",
983 __func__, (unsigned long long)sh->sector, target);
984
985 tgt = &sh->dev[target];
986 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
987 dest = tgt->page;
988
989 atomic_inc(&sh->count);
990
991 if (target == qd_idx) {
992 count = set_syndrome_sources(blocks, sh);
993 blocks[count] = NULL; /* regenerating p is not necessary */
994 BUG_ON(blocks[count+1] != dest); /* q should already be set */
0403e382
DW
995 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
996 ops_complete_compute, sh,
ac6b53b6
DW
997 to_addr_conv(sh, percpu));
998 tx = async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
999 } else {
1000 /* Compute any data- or p-drive using XOR */
1001 count = 0;
1002 for (i = disks; i-- ; ) {
1003 if (i == target || i == qd_idx)
1004 continue;
1005 blocks[count++] = sh->dev[i].page;
1006 }
1007
0403e382
DW
1008 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
1009 NULL, ops_complete_compute, sh,
ac6b53b6
DW
1010 to_addr_conv(sh, percpu));
1011 tx = async_xor(dest, blocks, 0, count, STRIPE_SIZE, &submit);
1012 }
91c00924 1013
91c00924
DW
1014 return tx;
1015}
1016
ac6b53b6
DW
1017static struct dma_async_tx_descriptor *
1018ops_run_compute6_2(struct stripe_head *sh, struct raid5_percpu *percpu)
1019{
1020 int i, count, disks = sh->disks;
1021 int syndrome_disks = sh->ddf_layout ? disks : disks-2;
1022 int d0_idx = raid6_d0(sh);
1023 int faila = -1, failb = -1;
1024 int target = sh->ops.target;
1025 int target2 = sh->ops.target2;
1026 struct r5dev *tgt = &sh->dev[target];
1027 struct r5dev *tgt2 = &sh->dev[target2];
1028 struct dma_async_tx_descriptor *tx;
1029 struct page **blocks = percpu->scribble;
1030 struct async_submit_ctl submit;
1031
1032 pr_debug("%s: stripe %llu block1: %d block2: %d\n",
1033 __func__, (unsigned long long)sh->sector, target, target2);
1034 BUG_ON(target < 0 || target2 < 0);
1035 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1036 BUG_ON(!test_bit(R5_Wantcompute, &tgt2->flags));
1037
6c910a78 1038 /* we need to open-code set_syndrome_sources to handle the
ac6b53b6
DW
1039 * slot number conversion for 'faila' and 'failb'
1040 */
1041 for (i = 0; i < disks ; i++)
5dd33c9a 1042 blocks[i] = NULL;
ac6b53b6
DW
1043 count = 0;
1044 i = d0_idx;
1045 do {
1046 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
1047
1048 blocks[slot] = sh->dev[i].page;
1049
1050 if (i == target)
1051 faila = slot;
1052 if (i == target2)
1053 failb = slot;
1054 i = raid6_next_disk(i, disks);
1055 } while (i != d0_idx);
ac6b53b6
DW
1056
1057 BUG_ON(faila == failb);
1058 if (failb < faila)
1059 swap(faila, failb);
1060 pr_debug("%s: stripe: %llu faila: %d failb: %d\n",
1061 __func__, (unsigned long long)sh->sector, faila, failb);
1062
1063 atomic_inc(&sh->count);
1064
1065 if (failb == syndrome_disks+1) {
1066 /* Q disk is one of the missing disks */
1067 if (faila == syndrome_disks) {
1068 /* Missing P+Q, just recompute */
0403e382
DW
1069 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1070 ops_complete_compute, sh,
1071 to_addr_conv(sh, percpu));
e4424fee 1072 return async_gen_syndrome(blocks, 0, syndrome_disks+2,
ac6b53b6
DW
1073 STRIPE_SIZE, &submit);
1074 } else {
1075 struct page *dest;
1076 int data_target;
1077 int qd_idx = sh->qd_idx;
1078
1079 /* Missing D+Q: recompute D from P, then recompute Q */
1080 if (target == qd_idx)
1081 data_target = target2;
1082 else
1083 data_target = target;
1084
1085 count = 0;
1086 for (i = disks; i-- ; ) {
1087 if (i == data_target || i == qd_idx)
1088 continue;
1089 blocks[count++] = sh->dev[i].page;
1090 }
1091 dest = sh->dev[data_target].page;
0403e382
DW
1092 init_async_submit(&submit,
1093 ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
1094 NULL, NULL, NULL,
1095 to_addr_conv(sh, percpu));
ac6b53b6
DW
1096 tx = async_xor(dest, blocks, 0, count, STRIPE_SIZE,
1097 &submit);
1098
1099 count = set_syndrome_sources(blocks, sh);
0403e382
DW
1100 init_async_submit(&submit, ASYNC_TX_FENCE, tx,
1101 ops_complete_compute, sh,
1102 to_addr_conv(sh, percpu));
ac6b53b6
DW
1103 return async_gen_syndrome(blocks, 0, count+2,
1104 STRIPE_SIZE, &submit);
1105 }
ac6b53b6 1106 } else {
6c910a78
DW
1107 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1108 ops_complete_compute, sh,
1109 to_addr_conv(sh, percpu));
1110 if (failb == syndrome_disks) {
1111 /* We're missing D+P. */
1112 return async_raid6_datap_recov(syndrome_disks+2,
1113 STRIPE_SIZE, faila,
1114 blocks, &submit);
1115 } else {
1116 /* We're missing D+D. */
1117 return async_raid6_2data_recov(syndrome_disks+2,
1118 STRIPE_SIZE, faila, failb,
1119 blocks, &submit);
1120 }
ac6b53b6
DW
1121 }
1122}
1123
1124
91c00924
DW
1125static void ops_complete_prexor(void *stripe_head_ref)
1126{
1127 struct stripe_head *sh = stripe_head_ref;
1128
e46b272b 1129 pr_debug("%s: stripe %llu\n", __func__,
91c00924 1130 (unsigned long long)sh->sector);
91c00924
DW
1131}
1132
1133static struct dma_async_tx_descriptor *
d6f38f31
DW
1134ops_run_prexor(struct stripe_head *sh, struct raid5_percpu *percpu,
1135 struct dma_async_tx_descriptor *tx)
91c00924 1136{
91c00924 1137 int disks = sh->disks;
d6f38f31 1138 struct page **xor_srcs = percpu->scribble;
91c00924 1139 int count = 0, pd_idx = sh->pd_idx, i;
a08abd8c 1140 struct async_submit_ctl submit;
91c00924
DW
1141
1142 /* existing parity data subtracted */
1143 struct page *xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
1144
e46b272b 1145 pr_debug("%s: stripe %llu\n", __func__,
91c00924
DW
1146 (unsigned long long)sh->sector);
1147
1148 for (i = disks; i--; ) {
1149 struct r5dev *dev = &sh->dev[i];
1150 /* Only process blocks that are known to be uptodate */
d8ee0728 1151 if (test_bit(R5_Wantdrain, &dev->flags))
91c00924
DW
1152 xor_srcs[count++] = dev->page;
1153 }
1154
0403e382 1155 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_DROP_DST, tx,
d6f38f31 1156 ops_complete_prexor, sh, to_addr_conv(sh, percpu));
a08abd8c 1157 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
91c00924
DW
1158
1159 return tx;
1160}
1161
1162static struct dma_async_tx_descriptor *
d8ee0728 1163ops_run_biodrain(struct stripe_head *sh, struct dma_async_tx_descriptor *tx)
91c00924
DW
1164{
1165 int disks = sh->disks;
d8ee0728 1166 int i;
91c00924 1167
e46b272b 1168 pr_debug("%s: stripe %llu\n", __func__,
91c00924
DW
1169 (unsigned long long)sh->sector);
1170
1171 for (i = disks; i--; ) {
1172 struct r5dev *dev = &sh->dev[i];
1173 struct bio *chosen;
91c00924 1174
d8ee0728 1175 if (test_and_clear_bit(R5_Wantdrain, &dev->flags)) {
91c00924
DW
1176 struct bio *wbi;
1177
b17459c0 1178 spin_lock_irq(&sh->stripe_lock);
91c00924
DW
1179 chosen = dev->towrite;
1180 dev->towrite = NULL;
1181 BUG_ON(dev->written);
1182 wbi = dev->written = chosen;
b17459c0 1183 spin_unlock_irq(&sh->stripe_lock);
91c00924
DW
1184
1185 while (wbi && wbi->bi_sector <
1186 dev->sector + STRIPE_SECTORS) {
e9c7469b
TH
1187 if (wbi->bi_rw & REQ_FUA)
1188 set_bit(R5_WantFUA, &dev->flags);
bc0934f0
SL
1189 if (wbi->bi_rw & REQ_SYNC)
1190 set_bit(R5_SyncIO, &dev->flags);
9e444768 1191 if (wbi->bi_rw & REQ_DISCARD)
620125f2 1192 set_bit(R5_Discard, &dev->flags);
9e444768 1193 else
620125f2
SL
1194 tx = async_copy_data(1, wbi, dev->page,
1195 dev->sector, tx);
91c00924
DW
1196 wbi = r5_next_bio(wbi, dev->sector);
1197 }
1198 }
1199 }
1200
1201 return tx;
1202}
1203
ac6b53b6 1204static void ops_complete_reconstruct(void *stripe_head_ref)
91c00924
DW
1205{
1206 struct stripe_head *sh = stripe_head_ref;
ac6b53b6
DW
1207 int disks = sh->disks;
1208 int pd_idx = sh->pd_idx;
1209 int qd_idx = sh->qd_idx;
1210 int i;
9e444768 1211 bool fua = false, sync = false, discard = false;
91c00924 1212
e46b272b 1213 pr_debug("%s: stripe %llu\n", __func__,
91c00924
DW
1214 (unsigned long long)sh->sector);
1215
bc0934f0 1216 for (i = disks; i--; ) {
e9c7469b 1217 fua |= test_bit(R5_WantFUA, &sh->dev[i].flags);
bc0934f0 1218 sync |= test_bit(R5_SyncIO, &sh->dev[i].flags);
9e444768 1219 discard |= test_bit(R5_Discard, &sh->dev[i].flags);
bc0934f0 1220 }
e9c7469b 1221
91c00924
DW
1222 for (i = disks; i--; ) {
1223 struct r5dev *dev = &sh->dev[i];
ac6b53b6 1224
e9c7469b 1225 if (dev->written || i == pd_idx || i == qd_idx) {
9e444768
SL
1226 if (!discard)
1227 set_bit(R5_UPTODATE, &dev->flags);
e9c7469b
TH
1228 if (fua)
1229 set_bit(R5_WantFUA, &dev->flags);
bc0934f0
SL
1230 if (sync)
1231 set_bit(R5_SyncIO, &dev->flags);
e9c7469b 1232 }
91c00924
DW
1233 }
1234
d8ee0728
DW
1235 if (sh->reconstruct_state == reconstruct_state_drain_run)
1236 sh->reconstruct_state = reconstruct_state_drain_result;
1237 else if (sh->reconstruct_state == reconstruct_state_prexor_drain_run)
1238 sh->reconstruct_state = reconstruct_state_prexor_drain_result;
1239 else {
1240 BUG_ON(sh->reconstruct_state != reconstruct_state_run);
1241 sh->reconstruct_state = reconstruct_state_result;
1242 }
91c00924
DW
1243
1244 set_bit(STRIPE_HANDLE, &sh->state);
1245 release_stripe(sh);
1246}
1247
1248static void
ac6b53b6
DW
1249ops_run_reconstruct5(struct stripe_head *sh, struct raid5_percpu *percpu,
1250 struct dma_async_tx_descriptor *tx)
91c00924 1251{
91c00924 1252 int disks = sh->disks;
d6f38f31 1253 struct page **xor_srcs = percpu->scribble;
a08abd8c 1254 struct async_submit_ctl submit;
91c00924
DW
1255 int count = 0, pd_idx = sh->pd_idx, i;
1256 struct page *xor_dest;
d8ee0728 1257 int prexor = 0;
91c00924 1258 unsigned long flags;
91c00924 1259
e46b272b 1260 pr_debug("%s: stripe %llu\n", __func__,
91c00924
DW
1261 (unsigned long long)sh->sector);
1262
620125f2
SL
1263 for (i = 0; i < sh->disks; i++) {
1264 if (pd_idx == i)
1265 continue;
1266 if (!test_bit(R5_Discard, &sh->dev[i].flags))
1267 break;
1268 }
1269 if (i >= sh->disks) {
1270 atomic_inc(&sh->count);
620125f2
SL
1271 set_bit(R5_Discard, &sh->dev[pd_idx].flags);
1272 ops_complete_reconstruct(sh);
1273 return;
1274 }
91c00924
DW
1275 /* check if prexor is active which means only process blocks
1276 * that are part of a read-modify-write (written)
1277 */
d8ee0728
DW
1278 if (sh->reconstruct_state == reconstruct_state_prexor_drain_run) {
1279 prexor = 1;
91c00924
DW
1280 xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
1281 for (i = disks; i--; ) {
1282 struct r5dev *dev = &sh->dev[i];
1283 if (dev->written)
1284 xor_srcs[count++] = dev->page;
1285 }
1286 } else {
1287 xor_dest = sh->dev[pd_idx].page;
1288 for (i = disks; i--; ) {
1289 struct r5dev *dev = &sh->dev[i];
1290 if (i != pd_idx)
1291 xor_srcs[count++] = dev->page;
1292 }
1293 }
1294
91c00924
DW
1295 /* 1/ if we prexor'd then the dest is reused as a source
1296 * 2/ if we did not prexor then we are redoing the parity
1297 * set ASYNC_TX_XOR_DROP_DST and ASYNC_TX_XOR_ZERO_DST
1298 * for the synchronous xor case
1299 */
88ba2aa5 1300 flags = ASYNC_TX_ACK |
91c00924
DW
1301 (prexor ? ASYNC_TX_XOR_DROP_DST : ASYNC_TX_XOR_ZERO_DST);
1302
1303 atomic_inc(&sh->count);
1304
ac6b53b6 1305 init_async_submit(&submit, flags, tx, ops_complete_reconstruct, sh,
d6f38f31 1306 to_addr_conv(sh, percpu));
a08abd8c
DW
1307 if (unlikely(count == 1))
1308 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
1309 else
1310 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
91c00924
DW
1311}
1312
ac6b53b6
DW
1313static void
1314ops_run_reconstruct6(struct stripe_head *sh, struct raid5_percpu *percpu,
1315 struct dma_async_tx_descriptor *tx)
1316{
1317 struct async_submit_ctl submit;
1318 struct page **blocks = percpu->scribble;
620125f2 1319 int count, i;
ac6b53b6
DW
1320
1321 pr_debug("%s: stripe %llu\n", __func__, (unsigned long long)sh->sector);
1322
620125f2
SL
1323 for (i = 0; i < sh->disks; i++) {
1324 if (sh->pd_idx == i || sh->qd_idx == i)
1325 continue;
1326 if (!test_bit(R5_Discard, &sh->dev[i].flags))
1327 break;
1328 }
1329 if (i >= sh->disks) {
1330 atomic_inc(&sh->count);
620125f2
SL
1331 set_bit(R5_Discard, &sh->dev[sh->pd_idx].flags);
1332 set_bit(R5_Discard, &sh->dev[sh->qd_idx].flags);
1333 ops_complete_reconstruct(sh);
1334 return;
1335 }
1336
ac6b53b6
DW
1337 count = set_syndrome_sources(blocks, sh);
1338
1339 atomic_inc(&sh->count);
1340
1341 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_reconstruct,
1342 sh, to_addr_conv(sh, percpu));
1343 async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
91c00924
DW
1344}
1345
1346static void ops_complete_check(void *stripe_head_ref)
1347{
1348 struct stripe_head *sh = stripe_head_ref;
91c00924 1349
e46b272b 1350 pr_debug("%s: stripe %llu\n", __func__,
91c00924
DW
1351 (unsigned long long)sh->sector);
1352
ecc65c9b 1353 sh->check_state = check_state_check_result;
91c00924
DW
1354 set_bit(STRIPE_HANDLE, &sh->state);
1355 release_stripe(sh);
1356}
1357
ac6b53b6 1358static void ops_run_check_p(struct stripe_head *sh, struct raid5_percpu *percpu)
91c00924 1359{
91c00924 1360 int disks = sh->disks;
ac6b53b6
DW
1361 int pd_idx = sh->pd_idx;
1362 int qd_idx = sh->qd_idx;
1363 struct page *xor_dest;
d6f38f31 1364 struct page **xor_srcs = percpu->scribble;
91c00924 1365 struct dma_async_tx_descriptor *tx;
a08abd8c 1366 struct async_submit_ctl submit;
ac6b53b6
DW
1367 int count;
1368 int i;
91c00924 1369
e46b272b 1370 pr_debug("%s: stripe %llu\n", __func__,
91c00924
DW
1371 (unsigned long long)sh->sector);
1372
ac6b53b6
DW
1373 count = 0;
1374 xor_dest = sh->dev[pd_idx].page;
1375 xor_srcs[count++] = xor_dest;
91c00924 1376 for (i = disks; i--; ) {
ac6b53b6
DW
1377 if (i == pd_idx || i == qd_idx)
1378 continue;
1379 xor_srcs[count++] = sh->dev[i].page;
91c00924
DW
1380 }
1381
d6f38f31
DW
1382 init_async_submit(&submit, 0, NULL, NULL, NULL,
1383 to_addr_conv(sh, percpu));
099f53cb 1384 tx = async_xor_val(xor_dest, xor_srcs, 0, count, STRIPE_SIZE,
a08abd8c 1385 &sh->ops.zero_sum_result, &submit);
91c00924 1386
91c00924 1387 atomic_inc(&sh->count);
a08abd8c
DW
1388 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_check, sh, NULL);
1389 tx = async_trigger_callback(&submit);
91c00924
DW
1390}
1391
ac6b53b6
DW
1392static void ops_run_check_pq(struct stripe_head *sh, struct raid5_percpu *percpu, int checkp)
1393{
1394 struct page **srcs = percpu->scribble;
1395 struct async_submit_ctl submit;
1396 int count;
1397
1398 pr_debug("%s: stripe %llu checkp: %d\n", __func__,
1399 (unsigned long long)sh->sector, checkp);
1400
1401 count = set_syndrome_sources(srcs, sh);
1402 if (!checkp)
1403 srcs[count] = NULL;
91c00924 1404
91c00924 1405 atomic_inc(&sh->count);
ac6b53b6
DW
1406 init_async_submit(&submit, ASYNC_TX_ACK, NULL, ops_complete_check,
1407 sh, to_addr_conv(sh, percpu));
1408 async_syndrome_val(srcs, 0, count+2, STRIPE_SIZE,
1409 &sh->ops.zero_sum_result, percpu->spare_page, &submit);
91c00924
DW
1410}
1411
51acbcec 1412static void raid_run_ops(struct stripe_head *sh, unsigned long ops_request)
91c00924
DW
1413{
1414 int overlap_clear = 0, i, disks = sh->disks;
1415 struct dma_async_tx_descriptor *tx = NULL;
d1688a6d 1416 struct r5conf *conf = sh->raid_conf;
ac6b53b6 1417 int level = conf->level;
d6f38f31
DW
1418 struct raid5_percpu *percpu;
1419 unsigned long cpu;
91c00924 1420
d6f38f31
DW
1421 cpu = get_cpu();
1422 percpu = per_cpu_ptr(conf->percpu, cpu);
83de75cc 1423 if (test_bit(STRIPE_OP_BIOFILL, &ops_request)) {
91c00924
DW
1424 ops_run_biofill(sh);
1425 overlap_clear++;
1426 }
1427
7b3a871e 1428 if (test_bit(STRIPE_OP_COMPUTE_BLK, &ops_request)) {
ac6b53b6
DW
1429 if (level < 6)
1430 tx = ops_run_compute5(sh, percpu);
1431 else {
1432 if (sh->ops.target2 < 0 || sh->ops.target < 0)
1433 tx = ops_run_compute6_1(sh, percpu);
1434 else
1435 tx = ops_run_compute6_2(sh, percpu);
1436 }
1437 /* terminate the chain if reconstruct is not set to be run */
1438 if (tx && !test_bit(STRIPE_OP_RECONSTRUCT, &ops_request))
7b3a871e
DW
1439 async_tx_ack(tx);
1440 }
91c00924 1441
600aa109 1442 if (test_bit(STRIPE_OP_PREXOR, &ops_request))
d6f38f31 1443 tx = ops_run_prexor(sh, percpu, tx);
91c00924 1444
600aa109 1445 if (test_bit(STRIPE_OP_BIODRAIN, &ops_request)) {
d8ee0728 1446 tx = ops_run_biodrain(sh, tx);
91c00924
DW
1447 overlap_clear++;
1448 }
1449
ac6b53b6
DW
1450 if (test_bit(STRIPE_OP_RECONSTRUCT, &ops_request)) {
1451 if (level < 6)
1452 ops_run_reconstruct5(sh, percpu, tx);
1453 else
1454 ops_run_reconstruct6(sh, percpu, tx);
1455 }
91c00924 1456
ac6b53b6
DW
1457 if (test_bit(STRIPE_OP_CHECK, &ops_request)) {
1458 if (sh->check_state == check_state_run)
1459 ops_run_check_p(sh, percpu);
1460 else if (sh->check_state == check_state_run_q)
1461 ops_run_check_pq(sh, percpu, 0);
1462 else if (sh->check_state == check_state_run_pq)
1463 ops_run_check_pq(sh, percpu, 1);
1464 else
1465 BUG();
1466 }
91c00924 1467
91c00924
DW
1468 if (overlap_clear)
1469 for (i = disks; i--; ) {
1470 struct r5dev *dev = &sh->dev[i];
1471 if (test_and_clear_bit(R5_Overlap, &dev->flags))
1472 wake_up(&sh->raid_conf->wait_for_overlap);
1473 }
d6f38f31 1474 put_cpu();
91c00924
DW
1475}
1476
d1688a6d 1477static int grow_one_stripe(struct r5conf *conf)
1da177e4
LT
1478{
1479 struct stripe_head *sh;
6ce32846 1480 sh = kmem_cache_zalloc(conf->slab_cache, GFP_KERNEL);
3f294f4f
N
1481 if (!sh)
1482 return 0;
6ce32846 1483
3f294f4f 1484 sh->raid_conf = conf;
3f294f4f 1485
b17459c0
SL
1486 spin_lock_init(&sh->stripe_lock);
1487
e4e11e38
N
1488 if (grow_buffers(sh)) {
1489 shrink_buffers(sh);
3f294f4f
N
1490 kmem_cache_free(conf->slab_cache, sh);
1491 return 0;
1492 }
1493 /* we just created an active stripe so... */
1494 atomic_set(&sh->count, 1);
1495 atomic_inc(&conf->active_stripes);
1496 INIT_LIST_HEAD(&sh->lru);
1497 release_stripe(sh);
1498 return 1;
1499}
1500
d1688a6d 1501static int grow_stripes(struct r5conf *conf, int num)
3f294f4f 1502{
e18b890b 1503 struct kmem_cache *sc;
5e5e3e78 1504 int devs = max(conf->raid_disks, conf->previous_raid_disks);
1da177e4 1505
f4be6b43
N
1506 if (conf->mddev->gendisk)
1507 sprintf(conf->cache_name[0],
1508 "raid%d-%s", conf->level, mdname(conf->mddev));
1509 else
1510 sprintf(conf->cache_name[0],
1511 "raid%d-%p", conf->level, conf->mddev);
1512 sprintf(conf->cache_name[1], "%s-alt", conf->cache_name[0]);
1513
ad01c9e3
N
1514 conf->active_name = 0;
1515 sc = kmem_cache_create(conf->cache_name[conf->active_name],
1da177e4 1516 sizeof(struct stripe_head)+(devs-1)*sizeof(struct r5dev),
20c2df83 1517 0, 0, NULL);
1da177e4
LT
1518 if (!sc)
1519 return 1;
1520 conf->slab_cache = sc;
ad01c9e3 1521 conf->pool_size = devs;
16a53ecc 1522 while (num--)
3f294f4f 1523 if (!grow_one_stripe(conf))
1da177e4 1524 return 1;
1da177e4
LT
1525 return 0;
1526}
29269553 1527
d6f38f31
DW
1528/**
1529 * scribble_len - return the required size of the scribble region
1530 * @num - total number of disks in the array
1531 *
1532 * The size must be enough to contain:
1533 * 1/ a struct page pointer for each device in the array +2
1534 * 2/ room to convert each entry in (1) to its corresponding dma
1535 * (dma_map_page()) or page (page_address()) address.
1536 *
1537 * Note: the +2 is for the destination buffers of the ddf/raid6 case where we
1538 * calculate over all devices (not just the data blocks), using zeros in place
1539 * of the P and Q blocks.
1540 */
1541static size_t scribble_len(int num)
1542{
1543 size_t len;
1544
1545 len = sizeof(struct page *) * (num+2) + sizeof(addr_conv_t) * (num+2);
1546
1547 return len;
1548}
1549
d1688a6d 1550static int resize_stripes(struct r5conf *conf, int newsize)
ad01c9e3
N
1551{
1552 /* Make all the stripes able to hold 'newsize' devices.
1553 * New slots in each stripe get 'page' set to a new page.
1554 *
1555 * This happens in stages:
1556 * 1/ create a new kmem_cache and allocate the required number of
1557 * stripe_heads.
83f0d77a 1558 * 2/ gather all the old stripe_heads and transfer the pages across
ad01c9e3
N
1559 * to the new stripe_heads. This will have the side effect of
1560 * freezing the array as once all stripe_heads have been collected,
1561 * no IO will be possible. Old stripe heads are freed once their
1562 * pages have been transferred over, and the old kmem_cache is
1563 * freed when all stripes are done.
1564 * 3/ reallocate conf->disks to be suitable bigger. If this fails,
1565 * we simple return a failre status - no need to clean anything up.
1566 * 4/ allocate new pages for the new slots in the new stripe_heads.
1567 * If this fails, we don't bother trying the shrink the
1568 * stripe_heads down again, we just leave them as they are.
1569 * As each stripe_head is processed the new one is released into
1570 * active service.
1571 *
1572 * Once step2 is started, we cannot afford to wait for a write,
1573 * so we use GFP_NOIO allocations.
1574 */
1575 struct stripe_head *osh, *nsh;
1576 LIST_HEAD(newstripes);
1577 struct disk_info *ndisks;
d6f38f31 1578 unsigned long cpu;
b5470dc5 1579 int err;
e18b890b 1580 struct kmem_cache *sc;
ad01c9e3
N
1581 int i;
1582
1583 if (newsize <= conf->pool_size)
1584 return 0; /* never bother to shrink */
1585
b5470dc5
DW
1586 err = md_allow_write(conf->mddev);
1587 if (err)
1588 return err;
2a2275d6 1589
ad01c9e3
N
1590 /* Step 1 */
1591 sc = kmem_cache_create(conf->cache_name[1-conf->active_name],
1592 sizeof(struct stripe_head)+(newsize-1)*sizeof(struct r5dev),
20c2df83 1593 0, 0, NULL);
ad01c9e3
N
1594 if (!sc)
1595 return -ENOMEM;
1596
1597 for (i = conf->max_nr_stripes; i; i--) {
6ce32846 1598 nsh = kmem_cache_zalloc(sc, GFP_KERNEL);
ad01c9e3
N
1599 if (!nsh)
1600 break;
1601
ad01c9e3 1602 nsh->raid_conf = conf;
cb13ff69 1603 spin_lock_init(&nsh->stripe_lock);
ad01c9e3
N
1604
1605 list_add(&nsh->lru, &newstripes);
1606 }
1607 if (i) {
1608 /* didn't get enough, give up */
1609 while (!list_empty(&newstripes)) {
1610 nsh = list_entry(newstripes.next, struct stripe_head, lru);
1611 list_del(&nsh->lru);
1612 kmem_cache_free(sc, nsh);
1613 }
1614 kmem_cache_destroy(sc);
1615 return -ENOMEM;
1616 }
1617 /* Step 2 - Must use GFP_NOIO now.
1618 * OK, we have enough stripes, start collecting inactive
1619 * stripes and copying them over
1620 */
1621 list_for_each_entry(nsh, &newstripes, lru) {
1622 spin_lock_irq(&conf->device_lock);
1623 wait_event_lock_irq(conf->wait_for_stripe,
1624 !list_empty(&conf->inactive_list),
eed8c02e 1625 conf->device_lock);
ad01c9e3
N
1626 osh = get_free_stripe(conf);
1627 spin_unlock_irq(&conf->device_lock);
1628 atomic_set(&nsh->count, 1);
1629 for(i=0; i<conf->pool_size; i++)
1630 nsh->dev[i].page = osh->dev[i].page;
1631 for( ; i<newsize; i++)
1632 nsh->dev[i].page = NULL;
1633 kmem_cache_free(conf->slab_cache, osh);
1634 }
1635 kmem_cache_destroy(conf->slab_cache);
1636
1637 /* Step 3.
1638 * At this point, we are holding all the stripes so the array
1639 * is completely stalled, so now is a good time to resize
d6f38f31 1640 * conf->disks and the scribble region
ad01c9e3
N
1641 */
1642 ndisks = kzalloc(newsize * sizeof(struct disk_info), GFP_NOIO);
1643 if (ndisks) {
1644 for (i=0; i<conf->raid_disks; i++)
1645 ndisks[i] = conf->disks[i];
1646 kfree(conf->disks);
1647 conf->disks = ndisks;
1648 } else
1649 err = -ENOMEM;
1650
d6f38f31
DW
1651 get_online_cpus();
1652 conf->scribble_len = scribble_len(newsize);
1653 for_each_present_cpu(cpu) {
1654 struct raid5_percpu *percpu;
1655 void *scribble;
1656
1657 percpu = per_cpu_ptr(conf->percpu, cpu);
1658 scribble = kmalloc(conf->scribble_len, GFP_NOIO);
1659
1660 if (scribble) {
1661 kfree(percpu->scribble);
1662 percpu->scribble = scribble;
1663 } else {
1664 err = -ENOMEM;
1665 break;
1666 }
1667 }
1668 put_online_cpus();
1669
ad01c9e3
N
1670 /* Step 4, return new stripes to service */
1671 while(!list_empty(&newstripes)) {
1672 nsh = list_entry(newstripes.next, struct stripe_head, lru);
1673 list_del_init(&nsh->lru);
d6f38f31 1674
ad01c9e3
N
1675 for (i=conf->raid_disks; i < newsize; i++)
1676 if (nsh->dev[i].page == NULL) {
1677 struct page *p = alloc_page(GFP_NOIO);
1678 nsh->dev[i].page = p;
1679 if (!p)
1680 err = -ENOMEM;
1681 }
1682 release_stripe(nsh);
1683 }
1684 /* critical section pass, GFP_NOIO no longer needed */
1685
1686 conf->slab_cache = sc;
1687 conf->active_name = 1-conf->active_name;
1688 conf->pool_size = newsize;
1689 return err;
1690}
1da177e4 1691
d1688a6d 1692static int drop_one_stripe(struct r5conf *conf)
1da177e4
LT
1693{
1694 struct stripe_head *sh;
1695
3f294f4f
N
1696 spin_lock_irq(&conf->device_lock);
1697 sh = get_free_stripe(conf);
1698 spin_unlock_irq(&conf->device_lock);
1699 if (!sh)
1700 return 0;
78bafebd 1701 BUG_ON(atomic_read(&sh->count));
e4e11e38 1702 shrink_buffers(sh);
3f294f4f
N
1703 kmem_cache_free(conf->slab_cache, sh);
1704 atomic_dec(&conf->active_stripes);
1705 return 1;
1706}
1707
d1688a6d 1708static void shrink_stripes(struct r5conf *conf)
3f294f4f
N
1709{
1710 while (drop_one_stripe(conf))
1711 ;
1712
29fc7e3e
N
1713 if (conf->slab_cache)
1714 kmem_cache_destroy(conf->slab_cache);
1da177e4
LT
1715 conf->slab_cache = NULL;
1716}
1717
6712ecf8 1718static void raid5_end_read_request(struct bio * bi, int error)
1da177e4 1719{
99c0fb5f 1720 struct stripe_head *sh = bi->bi_private;
d1688a6d 1721 struct r5conf *conf = sh->raid_conf;
7ecaa1e6 1722 int disks = sh->disks, i;
1da177e4 1723 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
d6950432 1724 char b[BDEVNAME_SIZE];
dd054fce 1725 struct md_rdev *rdev = NULL;
05616be5 1726 sector_t s;
1da177e4
LT
1727
1728 for (i=0 ; i<disks; i++)
1729 if (bi == &sh->dev[i].req)
1730 break;
1731
45b4233c
DW
1732 pr_debug("end_read_request %llu/%d, count: %d, uptodate %d.\n",
1733 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
1da177e4
LT
1734 uptodate);
1735 if (i == disks) {
1736 BUG();
6712ecf8 1737 return;
1da177e4 1738 }
14a75d3e 1739 if (test_bit(R5_ReadRepl, &sh->dev[i].flags))
dd054fce
N
1740 /* If replacement finished while this request was outstanding,
1741 * 'replacement' might be NULL already.
1742 * In that case it moved down to 'rdev'.
1743 * rdev is not removed until all requests are finished.
1744 */
14a75d3e 1745 rdev = conf->disks[i].replacement;
dd054fce 1746 if (!rdev)
14a75d3e 1747 rdev = conf->disks[i].rdev;
1da177e4 1748
05616be5
N
1749 if (use_new_offset(conf, sh))
1750 s = sh->sector + rdev->new_data_offset;
1751 else
1752 s = sh->sector + rdev->data_offset;
1da177e4 1753 if (uptodate) {
1da177e4 1754 set_bit(R5_UPTODATE, &sh->dev[i].flags);
4e5314b5 1755 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
14a75d3e
N
1756 /* Note that this cannot happen on a
1757 * replacement device. We just fail those on
1758 * any error
1759 */
8bda470e
CD
1760 printk_ratelimited(
1761 KERN_INFO
1762 "md/raid:%s: read error corrected"
1763 " (%lu sectors at %llu on %s)\n",
1764 mdname(conf->mddev), STRIPE_SECTORS,
05616be5 1765 (unsigned long long)s,
8bda470e 1766 bdevname(rdev->bdev, b));
ddd5115f 1767 atomic_add(STRIPE_SECTORS, &rdev->corrected_errors);
4e5314b5
N
1768 clear_bit(R5_ReadError, &sh->dev[i].flags);
1769 clear_bit(R5_ReWrite, &sh->dev[i].flags);
3f9e7c14 1770 } else if (test_bit(R5_ReadNoMerge, &sh->dev[i].flags))
1771 clear_bit(R5_ReadNoMerge, &sh->dev[i].flags);
1772
14a75d3e
N
1773 if (atomic_read(&rdev->read_errors))
1774 atomic_set(&rdev->read_errors, 0);
1da177e4 1775 } else {
14a75d3e 1776 const char *bdn = bdevname(rdev->bdev, b);
ba22dcbf 1777 int retry = 0;
2e8ac303 1778 int set_bad = 0;
d6950432 1779
1da177e4 1780 clear_bit(R5_UPTODATE, &sh->dev[i].flags);
d6950432 1781 atomic_inc(&rdev->read_errors);
14a75d3e
N
1782 if (test_bit(R5_ReadRepl, &sh->dev[i].flags))
1783 printk_ratelimited(
1784 KERN_WARNING
1785 "md/raid:%s: read error on replacement device "
1786 "(sector %llu on %s).\n",
1787 mdname(conf->mddev),
05616be5 1788 (unsigned long long)s,
14a75d3e 1789 bdn);
2e8ac303 1790 else if (conf->mddev->degraded >= conf->max_degraded) {
1791 set_bad = 1;
8bda470e
CD
1792 printk_ratelimited(
1793 KERN_WARNING
1794 "md/raid:%s: read error not correctable "
1795 "(sector %llu on %s).\n",
1796 mdname(conf->mddev),
05616be5 1797 (unsigned long long)s,
8bda470e 1798 bdn);
2e8ac303 1799 } else if (test_bit(R5_ReWrite, &sh->dev[i].flags)) {
4e5314b5 1800 /* Oh, no!!! */
2e8ac303 1801 set_bad = 1;
8bda470e
CD
1802 printk_ratelimited(
1803 KERN_WARNING
1804 "md/raid:%s: read error NOT corrected!! "
1805 "(sector %llu on %s).\n",
1806 mdname(conf->mddev),
05616be5 1807 (unsigned long long)s,
8bda470e 1808 bdn);
2e8ac303 1809 } else if (atomic_read(&rdev->read_errors)
ba22dcbf 1810 > conf->max_nr_stripes)
14f8d26b 1811 printk(KERN_WARNING
0c55e022 1812 "md/raid:%s: Too many read errors, failing device %s.\n",
d6950432 1813 mdname(conf->mddev), bdn);
ba22dcbf
N
1814 else
1815 retry = 1;
1816 if (retry)
3f9e7c14 1817 if (test_bit(R5_ReadNoMerge, &sh->dev[i].flags)) {
1818 set_bit(R5_ReadError, &sh->dev[i].flags);
1819 clear_bit(R5_ReadNoMerge, &sh->dev[i].flags);
1820 } else
1821 set_bit(R5_ReadNoMerge, &sh->dev[i].flags);
ba22dcbf 1822 else {
4e5314b5
N
1823 clear_bit(R5_ReadError, &sh->dev[i].flags);
1824 clear_bit(R5_ReWrite, &sh->dev[i].flags);
2e8ac303 1825 if (!(set_bad
1826 && test_bit(In_sync, &rdev->flags)
1827 && rdev_set_badblocks(
1828 rdev, sh->sector, STRIPE_SECTORS, 0)))
1829 md_error(conf->mddev, rdev);
ba22dcbf 1830 }
1da177e4 1831 }
14a75d3e 1832 rdev_dec_pending(rdev, conf->mddev);
1da177e4
LT
1833 clear_bit(R5_LOCKED, &sh->dev[i].flags);
1834 set_bit(STRIPE_HANDLE, &sh->state);
1835 release_stripe(sh);
1da177e4
LT
1836}
1837
d710e138 1838static void raid5_end_write_request(struct bio *bi, int error)
1da177e4 1839{
99c0fb5f 1840 struct stripe_head *sh = bi->bi_private;
d1688a6d 1841 struct r5conf *conf = sh->raid_conf;
7ecaa1e6 1842 int disks = sh->disks, i;
977df362 1843 struct md_rdev *uninitialized_var(rdev);
1da177e4 1844 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
b84db560
N
1845 sector_t first_bad;
1846 int bad_sectors;
977df362 1847 int replacement = 0;
1da177e4 1848
977df362
N
1849 for (i = 0 ; i < disks; i++) {
1850 if (bi == &sh->dev[i].req) {
1851 rdev = conf->disks[i].rdev;
1da177e4 1852 break;
977df362
N
1853 }
1854 if (bi == &sh->dev[i].rreq) {
1855 rdev = conf->disks[i].replacement;
dd054fce
N
1856 if (rdev)
1857 replacement = 1;
1858 else
1859 /* rdev was removed and 'replacement'
1860 * replaced it. rdev is not removed
1861 * until all requests are finished.
1862 */
1863 rdev = conf->disks[i].rdev;
977df362
N
1864 break;
1865 }
1866 }
45b4233c 1867 pr_debug("end_write_request %llu/%d, count %d, uptodate: %d.\n",
1da177e4
LT
1868 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
1869 uptodate);
1870 if (i == disks) {
1871 BUG();
6712ecf8 1872 return;
1da177e4
LT
1873 }
1874
977df362
N
1875 if (replacement) {
1876 if (!uptodate)
1877 md_error(conf->mddev, rdev);
1878 else if (is_badblock(rdev, sh->sector,
1879 STRIPE_SECTORS,
1880 &first_bad, &bad_sectors))
1881 set_bit(R5_MadeGoodRepl, &sh->dev[i].flags);
1882 } else {
1883 if (!uptodate) {
1884 set_bit(WriteErrorSeen, &rdev->flags);
1885 set_bit(R5_WriteError, &sh->dev[i].flags);
3a6de292
N
1886 if (!test_and_set_bit(WantReplacement, &rdev->flags))
1887 set_bit(MD_RECOVERY_NEEDED,
1888 &rdev->mddev->recovery);
977df362
N
1889 } else if (is_badblock(rdev, sh->sector,
1890 STRIPE_SECTORS,
c0b32972 1891 &first_bad, &bad_sectors)) {
977df362 1892 set_bit(R5_MadeGood, &sh->dev[i].flags);
c0b32972
N
1893 if (test_bit(R5_ReadError, &sh->dev[i].flags))
1894 /* That was a successful write so make
1895 * sure it looks like we already did
1896 * a re-write.
1897 */
1898 set_bit(R5_ReWrite, &sh->dev[i].flags);
1899 }
977df362
N
1900 }
1901 rdev_dec_pending(rdev, conf->mddev);
1da177e4 1902
977df362
N
1903 if (!test_and_clear_bit(R5_DOUBLE_LOCKED, &sh->dev[i].flags))
1904 clear_bit(R5_LOCKED, &sh->dev[i].flags);
1da177e4 1905 set_bit(STRIPE_HANDLE, &sh->state);
c04be0aa 1906 release_stripe(sh);
1da177e4
LT
1907}
1908
784052ec 1909static sector_t compute_blocknr(struct stripe_head *sh, int i, int previous);
1da177e4 1910
784052ec 1911static void raid5_build_block(struct stripe_head *sh, int i, int previous)
1da177e4
LT
1912{
1913 struct r5dev *dev = &sh->dev[i];
1914
1915 bio_init(&dev->req);
1916 dev->req.bi_io_vec = &dev->vec;
1917 dev->req.bi_vcnt++;
1918 dev->req.bi_max_vecs++;
1da177e4 1919 dev->req.bi_private = sh;
995c4275 1920 dev->vec.bv_page = dev->page;
1da177e4 1921
977df362
N
1922 bio_init(&dev->rreq);
1923 dev->rreq.bi_io_vec = &dev->rvec;
1924 dev->rreq.bi_vcnt++;
1925 dev->rreq.bi_max_vecs++;
1926 dev->rreq.bi_private = sh;
1927 dev->rvec.bv_page = dev->page;
1928
1da177e4 1929 dev->flags = 0;
784052ec 1930 dev->sector = compute_blocknr(sh, i, previous);
1da177e4
LT
1931}
1932
fd01b88c 1933static void error(struct mddev *mddev, struct md_rdev *rdev)
1da177e4
LT
1934{
1935 char b[BDEVNAME_SIZE];
d1688a6d 1936 struct r5conf *conf = mddev->private;
908f4fbd 1937 unsigned long flags;
0c55e022 1938 pr_debug("raid456: error called\n");
1da177e4 1939
908f4fbd
N
1940 spin_lock_irqsave(&conf->device_lock, flags);
1941 clear_bit(In_sync, &rdev->flags);
1942 mddev->degraded = calc_degraded(conf);
1943 spin_unlock_irqrestore(&conf->device_lock, flags);
1944 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
1945
de393cde 1946 set_bit(Blocked, &rdev->flags);
6f8d0c77
N
1947 set_bit(Faulty, &rdev->flags);
1948 set_bit(MD_CHANGE_DEVS, &mddev->flags);
1949 printk(KERN_ALERT
1950 "md/raid:%s: Disk failure on %s, disabling device.\n"
1951 "md/raid:%s: Operation continuing on %d devices.\n",
1952 mdname(mddev),
1953 bdevname(rdev->bdev, b),
1954 mdname(mddev),
1955 conf->raid_disks - mddev->degraded);
16a53ecc 1956}
1da177e4
LT
1957
1958/*
1959 * Input: a 'big' sector number,
1960 * Output: index of the data and parity disk, and the sector # in them.
1961 */
d1688a6d 1962static sector_t raid5_compute_sector(struct r5conf *conf, sector_t r_sector,
911d4ee8
N
1963 int previous, int *dd_idx,
1964 struct stripe_head *sh)
1da177e4 1965{
6e3b96ed 1966 sector_t stripe, stripe2;
35f2a591 1967 sector_t chunk_number;
1da177e4 1968 unsigned int chunk_offset;
911d4ee8 1969 int pd_idx, qd_idx;
67cc2b81 1970 int ddf_layout = 0;
1da177e4 1971 sector_t new_sector;
e183eaed
N
1972 int algorithm = previous ? conf->prev_algo
1973 : conf->algorithm;
09c9e5fa
AN
1974 int sectors_per_chunk = previous ? conf->prev_chunk_sectors
1975 : conf->chunk_sectors;
112bf897
N
1976 int raid_disks = previous ? conf->previous_raid_disks
1977 : conf->raid_disks;
1978 int data_disks = raid_disks - conf->max_degraded;
1da177e4
LT
1979
1980 /* First compute the information on this sector */
1981
1982 /*
1983 * Compute the chunk number and the sector offset inside the chunk
1984 */
1985 chunk_offset = sector_div(r_sector, sectors_per_chunk);
1986 chunk_number = r_sector;
1da177e4
LT
1987
1988 /*
1989 * Compute the stripe number
1990 */
35f2a591
N
1991 stripe = chunk_number;
1992 *dd_idx = sector_div(stripe, data_disks);
6e3b96ed 1993 stripe2 = stripe;
1da177e4
LT
1994 /*
1995 * Select the parity disk based on the user selected algorithm.
1996 */
84789554 1997 pd_idx = qd_idx = -1;
16a53ecc
N
1998 switch(conf->level) {
1999 case 4:
911d4ee8 2000 pd_idx = data_disks;
16a53ecc
N
2001 break;
2002 case 5:
e183eaed 2003 switch (algorithm) {
1da177e4 2004 case ALGORITHM_LEFT_ASYMMETRIC:
6e3b96ed 2005 pd_idx = data_disks - sector_div(stripe2, raid_disks);
911d4ee8 2006 if (*dd_idx >= pd_idx)
1da177e4
LT
2007 (*dd_idx)++;
2008 break;
2009 case ALGORITHM_RIGHT_ASYMMETRIC:
6e3b96ed 2010 pd_idx = sector_div(stripe2, raid_disks);
911d4ee8 2011 if (*dd_idx >= pd_idx)
1da177e4
LT
2012 (*dd_idx)++;
2013 break;
2014 case ALGORITHM_LEFT_SYMMETRIC:
6e3b96ed 2015 pd_idx = data_disks - sector_div(stripe2, raid_disks);
911d4ee8 2016 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
1da177e4
LT
2017 break;
2018 case ALGORITHM_RIGHT_SYMMETRIC:
6e3b96ed 2019 pd_idx = sector_div(stripe2, raid_disks);
911d4ee8 2020 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
1da177e4 2021 break;
99c0fb5f
N
2022 case ALGORITHM_PARITY_0:
2023 pd_idx = 0;
2024 (*dd_idx)++;
2025 break;
2026 case ALGORITHM_PARITY_N:
2027 pd_idx = data_disks;
2028 break;
1da177e4 2029 default:
99c0fb5f 2030 BUG();
16a53ecc
N
2031 }
2032 break;
2033 case 6:
2034
e183eaed 2035 switch (algorithm) {
16a53ecc 2036 case ALGORITHM_LEFT_ASYMMETRIC:
6e3b96ed 2037 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
911d4ee8
N
2038 qd_idx = pd_idx + 1;
2039 if (pd_idx == raid_disks-1) {
99c0fb5f 2040 (*dd_idx)++; /* Q D D D P */
911d4ee8
N
2041 qd_idx = 0;
2042 } else if (*dd_idx >= pd_idx)
16a53ecc
N
2043 (*dd_idx) += 2; /* D D P Q D */
2044 break;
2045 case ALGORITHM_RIGHT_ASYMMETRIC:
6e3b96ed 2046 pd_idx = sector_div(stripe2, raid_disks);
911d4ee8
N
2047 qd_idx = pd_idx + 1;
2048 if (pd_idx == raid_disks-1) {
99c0fb5f 2049 (*dd_idx)++; /* Q D D D P */
911d4ee8
N
2050 qd_idx = 0;
2051 } else if (*dd_idx >= pd_idx)
16a53ecc
N
2052 (*dd_idx) += 2; /* D D P Q D */
2053 break;
2054 case ALGORITHM_LEFT_SYMMETRIC:
6e3b96ed 2055 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
911d4ee8
N
2056 qd_idx = (pd_idx + 1) % raid_disks;
2057 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
16a53ecc
N
2058 break;
2059 case ALGORITHM_RIGHT_SYMMETRIC:
6e3b96ed 2060 pd_idx = sector_div(stripe2, raid_disks);
911d4ee8
N
2061 qd_idx = (pd_idx + 1) % raid_disks;
2062 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
16a53ecc 2063 break;
99c0fb5f
N
2064
2065 case ALGORITHM_PARITY_0:
2066 pd_idx = 0;
2067 qd_idx = 1;
2068 (*dd_idx) += 2;
2069 break;
2070 case ALGORITHM_PARITY_N:
2071 pd_idx = data_disks;
2072 qd_idx = data_disks + 1;
2073 break;
2074
2075 case ALGORITHM_ROTATING_ZERO_RESTART:
2076 /* Exactly the same as RIGHT_ASYMMETRIC, but or
2077 * of blocks for computing Q is different.
2078 */
6e3b96ed 2079 pd_idx = sector_div(stripe2, raid_disks);
99c0fb5f
N
2080 qd_idx = pd_idx + 1;
2081 if (pd_idx == raid_disks-1) {
2082 (*dd_idx)++; /* Q D D D P */
2083 qd_idx = 0;
2084 } else if (*dd_idx >= pd_idx)
2085 (*dd_idx) += 2; /* D D P Q D */
67cc2b81 2086 ddf_layout = 1;
99c0fb5f
N
2087 break;
2088
2089 case ALGORITHM_ROTATING_N_RESTART:
2090 /* Same a left_asymmetric, by first stripe is
2091 * D D D P Q rather than
2092 * Q D D D P
2093 */
6e3b96ed
N
2094 stripe2 += 1;
2095 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
99c0fb5f
N
2096 qd_idx = pd_idx + 1;
2097 if (pd_idx == raid_disks-1) {
2098 (*dd_idx)++; /* Q D D D P */
2099 qd_idx = 0;
2100 } else if (*dd_idx >= pd_idx)
2101 (*dd_idx) += 2; /* D D P Q D */
67cc2b81 2102 ddf_layout = 1;
99c0fb5f
N
2103 break;
2104
2105 case ALGORITHM_ROTATING_N_CONTINUE:
2106 /* Same as left_symmetric but Q is before P */
6e3b96ed 2107 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
99c0fb5f
N
2108 qd_idx = (pd_idx + raid_disks - 1) % raid_disks;
2109 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
67cc2b81 2110 ddf_layout = 1;
99c0fb5f
N
2111 break;
2112
2113 case ALGORITHM_LEFT_ASYMMETRIC_6:
2114 /* RAID5 left_asymmetric, with Q on last device */
6e3b96ed 2115 pd_idx = data_disks - sector_div(stripe2, raid_disks-1);
99c0fb5f
N
2116 if (*dd_idx >= pd_idx)
2117 (*dd_idx)++;
2118 qd_idx = raid_disks - 1;
2119 break;
2120
2121 case ALGORITHM_RIGHT_ASYMMETRIC_6:
6e3b96ed 2122 pd_idx = sector_div(stripe2, raid_disks-1);
99c0fb5f
N
2123 if (*dd_idx >= pd_idx)
2124 (*dd_idx)++;
2125 qd_idx = raid_disks - 1;
2126 break;
2127
2128 case ALGORITHM_LEFT_SYMMETRIC_6:
6e3b96ed 2129 pd_idx = data_disks - sector_div(stripe2, raid_disks-1);
99c0fb5f
N
2130 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
2131 qd_idx = raid_disks - 1;
2132 break;
2133
2134 case ALGORITHM_RIGHT_SYMMETRIC_6:
6e3b96ed 2135 pd_idx = sector_div(stripe2, raid_disks-1);
99c0fb5f
N
2136 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
2137 qd_idx = raid_disks - 1;
2138 break;
2139
2140 case ALGORITHM_PARITY_0_6:
2141 pd_idx = 0;
2142 (*dd_idx)++;
2143 qd_idx = raid_disks - 1;
2144 break;
2145
16a53ecc 2146 default:
99c0fb5f 2147 BUG();
16a53ecc
N
2148 }
2149 break;
1da177e4
LT
2150 }
2151
911d4ee8
N
2152 if (sh) {
2153 sh->pd_idx = pd_idx;
2154 sh->qd_idx = qd_idx;
67cc2b81 2155 sh->ddf_layout = ddf_layout;
911d4ee8 2156 }
1da177e4
LT
2157 /*
2158 * Finally, compute the new sector number
2159 */
2160 new_sector = (sector_t)stripe * sectors_per_chunk + chunk_offset;
2161 return new_sector;
2162}
2163
2164
784052ec 2165static sector_t compute_blocknr(struct stripe_head *sh, int i, int previous)
1da177e4 2166{
d1688a6d 2167 struct r5conf *conf = sh->raid_conf;
b875e531
N
2168 int raid_disks = sh->disks;
2169 int data_disks = raid_disks - conf->max_degraded;
1da177e4 2170 sector_t new_sector = sh->sector, check;
09c9e5fa
AN
2171 int sectors_per_chunk = previous ? conf->prev_chunk_sectors
2172 : conf->chunk_sectors;
e183eaed
N
2173 int algorithm = previous ? conf->prev_algo
2174 : conf->algorithm;
1da177e4
LT
2175 sector_t stripe;
2176 int chunk_offset;
35f2a591
N
2177 sector_t chunk_number;
2178 int dummy1, dd_idx = i;
1da177e4 2179 sector_t r_sector;
911d4ee8 2180 struct stripe_head sh2;
1da177e4 2181
16a53ecc 2182
1da177e4
LT
2183 chunk_offset = sector_div(new_sector, sectors_per_chunk);
2184 stripe = new_sector;
1da177e4 2185
16a53ecc
N
2186 if (i == sh->pd_idx)
2187 return 0;
2188 switch(conf->level) {
2189 case 4: break;
2190 case 5:
e183eaed 2191 switch (algorithm) {
1da177e4
LT
2192 case ALGORITHM_LEFT_ASYMMETRIC:
2193 case ALGORITHM_RIGHT_ASYMMETRIC:
2194 if (i > sh->pd_idx)
2195 i--;
2196 break;
2197 case ALGORITHM_LEFT_SYMMETRIC:
2198 case ALGORITHM_RIGHT_SYMMETRIC:
2199 if (i < sh->pd_idx)
2200 i += raid_disks;
2201 i -= (sh->pd_idx + 1);
2202 break;
99c0fb5f
N
2203 case ALGORITHM_PARITY_0:
2204 i -= 1;
2205 break;
2206 case ALGORITHM_PARITY_N:
2207 break;
1da177e4 2208 default:
99c0fb5f 2209 BUG();
16a53ecc
N
2210 }
2211 break;
2212 case 6:
d0dabf7e 2213 if (i == sh->qd_idx)
16a53ecc 2214 return 0; /* It is the Q disk */
e183eaed 2215 switch (algorithm) {
16a53ecc
N
2216 case ALGORITHM_LEFT_ASYMMETRIC:
2217 case ALGORITHM_RIGHT_ASYMMETRIC:
99c0fb5f
N
2218 case ALGORITHM_ROTATING_ZERO_RESTART:
2219 case ALGORITHM_ROTATING_N_RESTART:
2220 if (sh->pd_idx == raid_disks-1)
2221 i--; /* Q D D D P */
16a53ecc
N
2222 else if (i > sh->pd_idx)
2223 i -= 2; /* D D P Q D */
2224 break;
2225 case ALGORITHM_LEFT_SYMMETRIC:
2226 case ALGORITHM_RIGHT_SYMMETRIC:
2227 if (sh->pd_idx == raid_disks-1)
2228 i--; /* Q D D D P */
2229 else {
2230 /* D D P Q D */
2231 if (i < sh->pd_idx)
2232 i += raid_disks;
2233 i -= (sh->pd_idx + 2);
2234 }
2235 break;
99c0fb5f
N
2236 case ALGORITHM_PARITY_0:
2237 i -= 2;
2238 break;
2239 case ALGORITHM_PARITY_N:
2240 break;
2241 case ALGORITHM_ROTATING_N_CONTINUE:
e4424fee 2242 /* Like left_symmetric, but P is before Q */
99c0fb5f
N
2243 if (sh->pd_idx == 0)
2244 i--; /* P D D D Q */
e4424fee
N
2245 else {
2246 /* D D Q P D */
2247 if (i < sh->pd_idx)
2248 i += raid_disks;
2249 i -= (sh->pd_idx + 1);
2250 }
99c0fb5f
N
2251 break;
2252 case ALGORITHM_LEFT_ASYMMETRIC_6:
2253 case ALGORITHM_RIGHT_ASYMMETRIC_6:
2254 if (i > sh->pd_idx)
2255 i--;
2256 break;
2257 case ALGORITHM_LEFT_SYMMETRIC_6:
2258 case ALGORITHM_RIGHT_SYMMETRIC_6:
2259 if (i < sh->pd_idx)
2260 i += data_disks + 1;
2261 i -= (sh->pd_idx + 1);
2262 break;
2263 case ALGORITHM_PARITY_0_6:
2264 i -= 1;
2265 break;
16a53ecc 2266 default:
99c0fb5f 2267 BUG();
16a53ecc
N
2268 }
2269 break;
1da177e4
LT
2270 }
2271
2272 chunk_number = stripe * data_disks + i;
35f2a591 2273 r_sector = chunk_number * sectors_per_chunk + chunk_offset;
1da177e4 2274
112bf897 2275 check = raid5_compute_sector(conf, r_sector,
784052ec 2276 previous, &dummy1, &sh2);
911d4ee8
N
2277 if (check != sh->sector || dummy1 != dd_idx || sh2.pd_idx != sh->pd_idx
2278 || sh2.qd_idx != sh->qd_idx) {
0c55e022
N
2279 printk(KERN_ERR "md/raid:%s: compute_blocknr: map not correct\n",
2280 mdname(conf->mddev));
1da177e4
LT
2281 return 0;
2282 }
2283 return r_sector;
2284}
2285
2286
600aa109 2287static void
c0f7bddb 2288schedule_reconstruction(struct stripe_head *sh, struct stripe_head_state *s,
600aa109 2289 int rcw, int expand)
e33129d8
DW
2290{
2291 int i, pd_idx = sh->pd_idx, disks = sh->disks;
d1688a6d 2292 struct r5conf *conf = sh->raid_conf;
c0f7bddb 2293 int level = conf->level;
e33129d8
DW
2294
2295 if (rcw) {
e33129d8
DW
2296
2297 for (i = disks; i--; ) {
2298 struct r5dev *dev = &sh->dev[i];
2299
2300 if (dev->towrite) {
2301 set_bit(R5_LOCKED, &dev->flags);
d8ee0728 2302 set_bit(R5_Wantdrain, &dev->flags);
e33129d8
DW
2303 if (!expand)
2304 clear_bit(R5_UPTODATE, &dev->flags);
600aa109 2305 s->locked++;
e33129d8
DW
2306 }
2307 }
ce7d363a
N
2308 /* if we are not expanding this is a proper write request, and
2309 * there will be bios with new data to be drained into the
2310 * stripe cache
2311 */
2312 if (!expand) {
2313 if (!s->locked)
2314 /* False alarm, nothing to do */
2315 return;
2316 sh->reconstruct_state = reconstruct_state_drain_run;
2317 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
2318 } else
2319 sh->reconstruct_state = reconstruct_state_run;
2320
2321 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
2322
c0f7bddb 2323 if (s->locked + conf->max_degraded == disks)
8b3e6cdc 2324 if (!test_and_set_bit(STRIPE_FULL_WRITE, &sh->state))
c0f7bddb 2325 atomic_inc(&conf->pending_full_writes);
e33129d8 2326 } else {
c0f7bddb 2327 BUG_ON(level == 6);
e33129d8
DW
2328 BUG_ON(!(test_bit(R5_UPTODATE, &sh->dev[pd_idx].flags) ||
2329 test_bit(R5_Wantcompute, &sh->dev[pd_idx].flags)));
2330
e33129d8
DW
2331 for (i = disks; i--; ) {
2332 struct r5dev *dev = &sh->dev[i];
2333 if (i == pd_idx)
2334 continue;
2335
e33129d8
DW
2336 if (dev->towrite &&
2337 (test_bit(R5_UPTODATE, &dev->flags) ||
d8ee0728
DW
2338 test_bit(R5_Wantcompute, &dev->flags))) {
2339 set_bit(R5_Wantdrain, &dev->flags);
e33129d8
DW
2340 set_bit(R5_LOCKED, &dev->flags);
2341 clear_bit(R5_UPTODATE, &dev->flags);
600aa109 2342 s->locked++;
e33129d8
DW
2343 }
2344 }
ce7d363a
N
2345 if (!s->locked)
2346 /* False alarm - nothing to do */
2347 return;
2348 sh->reconstruct_state = reconstruct_state_prexor_drain_run;
2349 set_bit(STRIPE_OP_PREXOR, &s->ops_request);
2350 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
2351 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
e33129d8
DW
2352 }
2353
c0f7bddb 2354 /* keep the parity disk(s) locked while asynchronous operations
e33129d8
DW
2355 * are in flight
2356 */
2357 set_bit(R5_LOCKED, &sh->dev[pd_idx].flags);
2358 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
600aa109 2359 s->locked++;
e33129d8 2360
c0f7bddb
YT
2361 if (level == 6) {
2362 int qd_idx = sh->qd_idx;
2363 struct r5dev *dev = &sh->dev[qd_idx];
2364
2365 set_bit(R5_LOCKED, &dev->flags);
2366 clear_bit(R5_UPTODATE, &dev->flags);
2367 s->locked++;
2368 }
2369
600aa109 2370 pr_debug("%s: stripe %llu locked: %d ops_request: %lx\n",
e46b272b 2371 __func__, (unsigned long long)sh->sector,
600aa109 2372 s->locked, s->ops_request);
e33129d8 2373}
16a53ecc 2374
1da177e4
LT
2375/*
2376 * Each stripe/dev can have one or more bion attached.
16a53ecc 2377 * toread/towrite point to the first in a chain.
1da177e4
LT
2378 * The bi_next chain must be in order.
2379 */
2380static int add_stripe_bio(struct stripe_head *sh, struct bio *bi, int dd_idx, int forwrite)
2381{
2382 struct bio **bip;
d1688a6d 2383 struct r5conf *conf = sh->raid_conf;
72626685 2384 int firstwrite=0;
1da177e4 2385
cbe47ec5 2386 pr_debug("adding bi b#%llu to stripe s#%llu\n",
1da177e4
LT
2387 (unsigned long long)bi->bi_sector,
2388 (unsigned long long)sh->sector);
2389
b17459c0
SL
2390 /*
2391 * If several bio share a stripe. The bio bi_phys_segments acts as a
2392 * reference count to avoid race. The reference count should already be
2393 * increased before this function is called (for example, in
2394 * make_request()), so other bio sharing this stripe will not free the
2395 * stripe. If a stripe is owned by one stripe, the stripe lock will
2396 * protect it.
2397 */
2398 spin_lock_irq(&sh->stripe_lock);
72626685 2399 if (forwrite) {
1da177e4 2400 bip = &sh->dev[dd_idx].towrite;
7eaf7e8e 2401 if (*bip == NULL)
72626685
N
2402 firstwrite = 1;
2403 } else
1da177e4
LT
2404 bip = &sh->dev[dd_idx].toread;
2405 while (*bip && (*bip)->bi_sector < bi->bi_sector) {
f73a1c7d 2406 if (bio_end_sector(*bip) > bi->bi_sector)
1da177e4
LT
2407 goto overlap;
2408 bip = & (*bip)->bi_next;
2409 }
f73a1c7d 2410 if (*bip && (*bip)->bi_sector < bio_end_sector(bi))
1da177e4
LT
2411 goto overlap;
2412
78bafebd 2413 BUG_ON(*bip && bi->bi_next && (*bip) != bi->bi_next);
1da177e4
LT
2414 if (*bip)
2415 bi->bi_next = *bip;
2416 *bip = bi;
e7836bd6 2417 raid5_inc_bi_active_stripes(bi);
72626685 2418
1da177e4
LT
2419 if (forwrite) {
2420 /* check if page is covered */
2421 sector_t sector = sh->dev[dd_idx].sector;
2422 for (bi=sh->dev[dd_idx].towrite;
2423 sector < sh->dev[dd_idx].sector + STRIPE_SECTORS &&
2424 bi && bi->bi_sector <= sector;
2425 bi = r5_next_bio(bi, sh->dev[dd_idx].sector)) {
f73a1c7d
KO
2426 if (bio_end_sector(bi) >= sector)
2427 sector = bio_end_sector(bi);
1da177e4
LT
2428 }
2429 if (sector >= sh->dev[dd_idx].sector + STRIPE_SECTORS)
2430 set_bit(R5_OVERWRITE, &sh->dev[dd_idx].flags);
2431 }
cbe47ec5
N
2432
2433 pr_debug("added bi b#%llu to stripe s#%llu, disk %d.\n",
2434 (unsigned long long)(*bip)->bi_sector,
2435 (unsigned long long)sh->sector, dd_idx);
b97390ae 2436 spin_unlock_irq(&sh->stripe_lock);
cbe47ec5
N
2437
2438 if (conf->mddev->bitmap && firstwrite) {
2439 bitmap_startwrite(conf->mddev->bitmap, sh->sector,
2440 STRIPE_SECTORS, 0);
2441 sh->bm_seq = conf->seq_flush+1;
2442 set_bit(STRIPE_BIT_DELAY, &sh->state);
2443 }
1da177e4
LT
2444 return 1;
2445
2446 overlap:
2447 set_bit(R5_Overlap, &sh->dev[dd_idx].flags);
b17459c0 2448 spin_unlock_irq(&sh->stripe_lock);
1da177e4
LT
2449 return 0;
2450}
2451
d1688a6d 2452static void end_reshape(struct r5conf *conf);
29269553 2453
d1688a6d 2454static void stripe_set_idx(sector_t stripe, struct r5conf *conf, int previous,
911d4ee8 2455 struct stripe_head *sh)
ccfcc3c1 2456{
784052ec 2457 int sectors_per_chunk =
09c9e5fa 2458 previous ? conf->prev_chunk_sectors : conf->chunk_sectors;
911d4ee8 2459 int dd_idx;
2d2063ce 2460 int chunk_offset = sector_div(stripe, sectors_per_chunk);
112bf897 2461 int disks = previous ? conf->previous_raid_disks : conf->raid_disks;
2d2063ce 2462
112bf897
N
2463 raid5_compute_sector(conf,
2464 stripe * (disks - conf->max_degraded)
b875e531 2465 *sectors_per_chunk + chunk_offset,
112bf897 2466 previous,
911d4ee8 2467 &dd_idx, sh);
ccfcc3c1
N
2468}
2469
a4456856 2470static void
d1688a6d 2471handle_failed_stripe(struct r5conf *conf, struct stripe_head *sh,
a4456856
DW
2472 struct stripe_head_state *s, int disks,
2473 struct bio **return_bi)
2474{
2475 int i;
2476 for (i = disks; i--; ) {
2477 struct bio *bi;
2478 int bitmap_end = 0;
2479
2480 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
3cb03002 2481 struct md_rdev *rdev;
a4456856
DW
2482 rcu_read_lock();
2483 rdev = rcu_dereference(conf->disks[i].rdev);
2484 if (rdev && test_bit(In_sync, &rdev->flags))
7f0da59b
N
2485 atomic_inc(&rdev->nr_pending);
2486 else
2487 rdev = NULL;
a4456856 2488 rcu_read_unlock();
7f0da59b
N
2489 if (rdev) {
2490 if (!rdev_set_badblocks(
2491 rdev,
2492 sh->sector,
2493 STRIPE_SECTORS, 0))
2494 md_error(conf->mddev, rdev);
2495 rdev_dec_pending(rdev, conf->mddev);
2496 }
a4456856 2497 }
b17459c0 2498 spin_lock_irq(&sh->stripe_lock);
a4456856
DW
2499 /* fail all writes first */
2500 bi = sh->dev[i].towrite;
2501 sh->dev[i].towrite = NULL;
b17459c0 2502 spin_unlock_irq(&sh->stripe_lock);
1ed850f3 2503 if (bi)
a4456856 2504 bitmap_end = 1;
a4456856
DW
2505
2506 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
2507 wake_up(&conf->wait_for_overlap);
2508
2509 while (bi && bi->bi_sector <
2510 sh->dev[i].sector + STRIPE_SECTORS) {
2511 struct bio *nextbi = r5_next_bio(bi, sh->dev[i].sector);
2512 clear_bit(BIO_UPTODATE, &bi->bi_flags);
e7836bd6 2513 if (!raid5_dec_bi_active_stripes(bi)) {
a4456856
DW
2514 md_write_end(conf->mddev);
2515 bi->bi_next = *return_bi;
2516 *return_bi = bi;
2517 }
2518 bi = nextbi;
2519 }
7eaf7e8e
SL
2520 if (bitmap_end)
2521 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
2522 STRIPE_SECTORS, 0, 0);
2523 bitmap_end = 0;
a4456856
DW
2524 /* and fail all 'written' */
2525 bi = sh->dev[i].written;
2526 sh->dev[i].written = NULL;
2527 if (bi) bitmap_end = 1;
2528 while (bi && bi->bi_sector <
2529 sh->dev[i].sector + STRIPE_SECTORS) {
2530 struct bio *bi2 = r5_next_bio(bi, sh->dev[i].sector);
2531 clear_bit(BIO_UPTODATE, &bi->bi_flags);
e7836bd6 2532 if (!raid5_dec_bi_active_stripes(bi)) {
a4456856
DW
2533 md_write_end(conf->mddev);
2534 bi->bi_next = *return_bi;
2535 *return_bi = bi;
2536 }
2537 bi = bi2;
2538 }
2539
b5e98d65
DW
2540 /* fail any reads if this device is non-operational and
2541 * the data has not reached the cache yet.
2542 */
2543 if (!test_bit(R5_Wantfill, &sh->dev[i].flags) &&
2544 (!test_bit(R5_Insync, &sh->dev[i].flags) ||
2545 test_bit(R5_ReadError, &sh->dev[i].flags))) {
143c4d05 2546 spin_lock_irq(&sh->stripe_lock);
a4456856
DW
2547 bi = sh->dev[i].toread;
2548 sh->dev[i].toread = NULL;
143c4d05 2549 spin_unlock_irq(&sh->stripe_lock);
a4456856
DW
2550 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
2551 wake_up(&conf->wait_for_overlap);
a4456856
DW
2552 while (bi && bi->bi_sector <
2553 sh->dev[i].sector + STRIPE_SECTORS) {
2554 struct bio *nextbi =
2555 r5_next_bio(bi, sh->dev[i].sector);
2556 clear_bit(BIO_UPTODATE, &bi->bi_flags);
e7836bd6 2557 if (!raid5_dec_bi_active_stripes(bi)) {
a4456856
DW
2558 bi->bi_next = *return_bi;
2559 *return_bi = bi;
2560 }
2561 bi = nextbi;
2562 }
2563 }
a4456856
DW
2564 if (bitmap_end)
2565 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
2566 STRIPE_SECTORS, 0, 0);
8cfa7b0f
N
2567 /* If we were in the middle of a write the parity block might
2568 * still be locked - so just clear all R5_LOCKED flags
2569 */
2570 clear_bit(R5_LOCKED, &sh->dev[i].flags);
a4456856
DW
2571 }
2572
8b3e6cdc
DW
2573 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
2574 if (atomic_dec_and_test(&conf->pending_full_writes))
2575 md_wakeup_thread(conf->mddev->thread);
a4456856
DW
2576}
2577
7f0da59b 2578static void
d1688a6d 2579handle_failed_sync(struct r5conf *conf, struct stripe_head *sh,
7f0da59b
N
2580 struct stripe_head_state *s)
2581{
2582 int abort = 0;
2583 int i;
2584
7f0da59b 2585 clear_bit(STRIPE_SYNCING, &sh->state);
f8dfcffd
N
2586 if (test_and_clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags))
2587 wake_up(&conf->wait_for_overlap);
7f0da59b 2588 s->syncing = 0;
9a3e1101 2589 s->replacing = 0;
7f0da59b 2590 /* There is nothing more to do for sync/check/repair.
18b9837e
N
2591 * Don't even need to abort as that is handled elsewhere
2592 * if needed, and not always wanted e.g. if there is a known
2593 * bad block here.
9a3e1101 2594 * For recover/replace we need to record a bad block on all
7f0da59b
N
2595 * non-sync devices, or abort the recovery
2596 */
18b9837e
N
2597 if (test_bit(MD_RECOVERY_RECOVER, &conf->mddev->recovery)) {
2598 /* During recovery devices cannot be removed, so
2599 * locking and refcounting of rdevs is not needed
2600 */
2601 for (i = 0; i < conf->raid_disks; i++) {
2602 struct md_rdev *rdev = conf->disks[i].rdev;
2603 if (rdev
2604 && !test_bit(Faulty, &rdev->flags)
2605 && !test_bit(In_sync, &rdev->flags)
2606 && !rdev_set_badblocks(rdev, sh->sector,
2607 STRIPE_SECTORS, 0))
2608 abort = 1;
2609 rdev = conf->disks[i].replacement;
2610 if (rdev
2611 && !test_bit(Faulty, &rdev->flags)
2612 && !test_bit(In_sync, &rdev->flags)
2613 && !rdev_set_badblocks(rdev, sh->sector,
2614 STRIPE_SECTORS, 0))
2615 abort = 1;
2616 }
2617 if (abort)
2618 conf->recovery_disabled =
2619 conf->mddev->recovery_disabled;
7f0da59b 2620 }
18b9837e 2621 md_done_sync(conf->mddev, STRIPE_SECTORS, !abort);
7f0da59b
N
2622}
2623
9a3e1101
N
2624static int want_replace(struct stripe_head *sh, int disk_idx)
2625{
2626 struct md_rdev *rdev;
2627 int rv = 0;
2628 /* Doing recovery so rcu locking not required */
2629 rdev = sh->raid_conf->disks[disk_idx].replacement;
2630 if (rdev
2631 && !test_bit(Faulty, &rdev->flags)
2632 && !test_bit(In_sync, &rdev->flags)
2633 && (rdev->recovery_offset <= sh->sector
2634 || rdev->mddev->recovery_cp <= sh->sector))
2635 rv = 1;
2636
2637 return rv;
2638}
2639
93b3dbce 2640/* fetch_block - checks the given member device to see if its data needs
1fe797e6
DW
2641 * to be read or computed to satisfy a request.
2642 *
2643 * Returns 1 when no more member devices need to be checked, otherwise returns
93b3dbce 2644 * 0 to tell the loop in handle_stripe_fill to continue
f38e1219 2645 */
93b3dbce
N
2646static int fetch_block(struct stripe_head *sh, struct stripe_head_state *s,
2647 int disk_idx, int disks)
a4456856 2648{
5599becc 2649 struct r5dev *dev = &sh->dev[disk_idx];
f2b3b44d
N
2650 struct r5dev *fdev[2] = { &sh->dev[s->failed_num[0]],
2651 &sh->dev[s->failed_num[1]] };
5599becc 2652
93b3dbce 2653 /* is the data in this block needed, and can we get it? */
5599becc
YT
2654 if (!test_bit(R5_LOCKED, &dev->flags) &&
2655 !test_bit(R5_UPTODATE, &dev->flags) &&
2656 (dev->toread ||
2657 (dev->towrite && !test_bit(R5_OVERWRITE, &dev->flags)) ||
2658 s->syncing || s->expanding ||
9a3e1101 2659 (s->replacing && want_replace(sh, disk_idx)) ||
5d35e09c
N
2660 (s->failed >= 1 && fdev[0]->toread) ||
2661 (s->failed >= 2 && fdev[1]->toread) ||
93b3dbce
N
2662 (sh->raid_conf->level <= 5 && s->failed && fdev[0]->towrite &&
2663 !test_bit(R5_OVERWRITE, &fdev[0]->flags)) ||
2664 (sh->raid_conf->level == 6 && s->failed && s->to_write))) {
5599becc
YT
2665 /* we would like to get this block, possibly by computing it,
2666 * otherwise read it if the backing disk is insync
2667 */
2668 BUG_ON(test_bit(R5_Wantcompute, &dev->flags));
2669 BUG_ON(test_bit(R5_Wantread, &dev->flags));
2670 if ((s->uptodate == disks - 1) &&
f2b3b44d
N
2671 (s->failed && (disk_idx == s->failed_num[0] ||
2672 disk_idx == s->failed_num[1]))) {
5599becc
YT
2673 /* have disk failed, and we're requested to fetch it;
2674 * do compute it
a4456856 2675 */
5599becc
YT
2676 pr_debug("Computing stripe %llu block %d\n",
2677 (unsigned long long)sh->sector, disk_idx);
2678 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
2679 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
2680 set_bit(R5_Wantcompute, &dev->flags);
2681 sh->ops.target = disk_idx;
2682 sh->ops.target2 = -1; /* no 2nd target */
2683 s->req_compute = 1;
93b3dbce
N
2684 /* Careful: from this point on 'uptodate' is in the eye
2685 * of raid_run_ops which services 'compute' operations
2686 * before writes. R5_Wantcompute flags a block that will
2687 * be R5_UPTODATE by the time it is needed for a
2688 * subsequent operation.
2689 */
5599becc
YT
2690 s->uptodate++;
2691 return 1;
2692 } else if (s->uptodate == disks-2 && s->failed >= 2) {
2693 /* Computing 2-failure is *very* expensive; only
2694 * do it if failed >= 2
2695 */
2696 int other;
2697 for (other = disks; other--; ) {
2698 if (other == disk_idx)
2699 continue;
2700 if (!test_bit(R5_UPTODATE,
2701 &sh->dev[other].flags))
2702 break;
a4456856 2703 }
5599becc
YT
2704 BUG_ON(other < 0);
2705 pr_debug("Computing stripe %llu blocks %d,%d\n",
2706 (unsigned long long)sh->sector,
2707 disk_idx, other);
2708 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
2709 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
2710 set_bit(R5_Wantcompute, &sh->dev[disk_idx].flags);
2711 set_bit(R5_Wantcompute, &sh->dev[other].flags);
2712 sh->ops.target = disk_idx;
2713 sh->ops.target2 = other;
2714 s->uptodate += 2;
2715 s->req_compute = 1;
2716 return 1;
2717 } else if (test_bit(R5_Insync, &dev->flags)) {
2718 set_bit(R5_LOCKED, &dev->flags);
2719 set_bit(R5_Wantread, &dev->flags);
2720 s->locked++;
2721 pr_debug("Reading block %d (sync=%d)\n",
2722 disk_idx, s->syncing);
a4456856
DW
2723 }
2724 }
5599becc
YT
2725
2726 return 0;
2727}
2728
2729/**
93b3dbce 2730 * handle_stripe_fill - read or compute data to satisfy pending requests.
5599becc 2731 */
93b3dbce
N
2732static void handle_stripe_fill(struct stripe_head *sh,
2733 struct stripe_head_state *s,
2734 int disks)
5599becc
YT
2735{
2736 int i;
2737
2738 /* look for blocks to read/compute, skip this if a compute
2739 * is already in flight, or if the stripe contents are in the
2740 * midst of changing due to a write
2741 */
2742 if (!test_bit(STRIPE_COMPUTE_RUN, &sh->state) && !sh->check_state &&
2743 !sh->reconstruct_state)
2744 for (i = disks; i--; )
93b3dbce 2745 if (fetch_block(sh, s, i, disks))
5599becc 2746 break;
a4456856
DW
2747 set_bit(STRIPE_HANDLE, &sh->state);
2748}
2749
2750
1fe797e6 2751/* handle_stripe_clean_event
a4456856
DW
2752 * any written block on an uptodate or failed drive can be returned.
2753 * Note that if we 'wrote' to a failed drive, it will be UPTODATE, but
2754 * never LOCKED, so we don't need to test 'failed' directly.
2755 */
d1688a6d 2756static void handle_stripe_clean_event(struct r5conf *conf,
a4456856
DW
2757 struct stripe_head *sh, int disks, struct bio **return_bi)
2758{
2759 int i;
2760 struct r5dev *dev;
f8dfcffd 2761 int discard_pending = 0;
a4456856
DW
2762
2763 for (i = disks; i--; )
2764 if (sh->dev[i].written) {
2765 dev = &sh->dev[i];
2766 if (!test_bit(R5_LOCKED, &dev->flags) &&
9e444768 2767 (test_bit(R5_UPTODATE, &dev->flags) ||
ca64cae9 2768 test_bit(R5_Discard, &dev->flags))) {
a4456856
DW
2769 /* We can return any write requests */
2770 struct bio *wbi, *wbi2;
45b4233c 2771 pr_debug("Return write for disc %d\n", i);
ca64cae9
N
2772 if (test_and_clear_bit(R5_Discard, &dev->flags))
2773 clear_bit(R5_UPTODATE, &dev->flags);
a4456856
DW
2774 wbi = dev->written;
2775 dev->written = NULL;
2776 while (wbi && wbi->bi_sector <
2777 dev->sector + STRIPE_SECTORS) {
2778 wbi2 = r5_next_bio(wbi, dev->sector);
e7836bd6 2779 if (!raid5_dec_bi_active_stripes(wbi)) {
a4456856
DW
2780 md_write_end(conf->mddev);
2781 wbi->bi_next = *return_bi;
2782 *return_bi = wbi;
2783 }
2784 wbi = wbi2;
2785 }
7eaf7e8e
SL
2786 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
2787 STRIPE_SECTORS,
a4456856 2788 !test_bit(STRIPE_DEGRADED, &sh->state),
7eaf7e8e 2789 0);
f8dfcffd
N
2790 } else if (test_bit(R5_Discard, &dev->flags))
2791 discard_pending = 1;
2792 }
2793 if (!discard_pending &&
2794 test_bit(R5_Discard, &sh->dev[sh->pd_idx].flags)) {
2795 clear_bit(R5_Discard, &sh->dev[sh->pd_idx].flags);
2796 clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
2797 if (sh->qd_idx >= 0) {
2798 clear_bit(R5_Discard, &sh->dev[sh->qd_idx].flags);
2799 clear_bit(R5_UPTODATE, &sh->dev[sh->qd_idx].flags);
2800 }
2801 /* now that discard is done we can proceed with any sync */
2802 clear_bit(STRIPE_DISCARD, &sh->state);
2803 if (test_bit(STRIPE_SYNC_REQUESTED, &sh->state))
2804 set_bit(STRIPE_HANDLE, &sh->state);
2805
2806 }
8b3e6cdc
DW
2807
2808 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
2809 if (atomic_dec_and_test(&conf->pending_full_writes))
2810 md_wakeup_thread(conf->mddev->thread);
a4456856
DW
2811}
2812
d1688a6d 2813static void handle_stripe_dirtying(struct r5conf *conf,
c8ac1803
N
2814 struct stripe_head *sh,
2815 struct stripe_head_state *s,
2816 int disks)
a4456856
DW
2817{
2818 int rmw = 0, rcw = 0, i;
a7854487
AL
2819 sector_t recovery_cp = conf->mddev->recovery_cp;
2820
2821 /* RAID6 requires 'rcw' in current implementation.
2822 * Otherwise, check whether resync is now happening or should start.
2823 * If yes, then the array is dirty (after unclean shutdown or
2824 * initial creation), so parity in some stripes might be inconsistent.
2825 * In this case, we need to always do reconstruct-write, to ensure
2826 * that in case of drive failure or read-error correction, we
2827 * generate correct data from the parity.
2828 */
2829 if (conf->max_degraded == 2 ||
2830 (recovery_cp < MaxSector && sh->sector >= recovery_cp)) {
2831 /* Calculate the real rcw later - for now make it
c8ac1803
N
2832 * look like rcw is cheaper
2833 */
2834 rcw = 1; rmw = 2;
a7854487
AL
2835 pr_debug("force RCW max_degraded=%u, recovery_cp=%llu sh->sector=%llu\n",
2836 conf->max_degraded, (unsigned long long)recovery_cp,
2837 (unsigned long long)sh->sector);
c8ac1803 2838 } else for (i = disks; i--; ) {
a4456856
DW
2839 /* would I have to read this buffer for read_modify_write */
2840 struct r5dev *dev = &sh->dev[i];
2841 if ((dev->towrite || i == sh->pd_idx) &&
2842 !test_bit(R5_LOCKED, &dev->flags) &&
f38e1219
DW
2843 !(test_bit(R5_UPTODATE, &dev->flags) ||
2844 test_bit(R5_Wantcompute, &dev->flags))) {
a4456856
DW
2845 if (test_bit(R5_Insync, &dev->flags))
2846 rmw++;
2847 else
2848 rmw += 2*disks; /* cannot read it */
2849 }
2850 /* Would I have to read this buffer for reconstruct_write */
2851 if (!test_bit(R5_OVERWRITE, &dev->flags) && i != sh->pd_idx &&
2852 !test_bit(R5_LOCKED, &dev->flags) &&
f38e1219
DW
2853 !(test_bit(R5_UPTODATE, &dev->flags) ||
2854 test_bit(R5_Wantcompute, &dev->flags))) {
2855 if (test_bit(R5_Insync, &dev->flags)) rcw++;
a4456856
DW
2856 else
2857 rcw += 2*disks;
2858 }
2859 }
45b4233c 2860 pr_debug("for sector %llu, rmw=%d rcw=%d\n",
a4456856
DW
2861 (unsigned long long)sh->sector, rmw, rcw);
2862 set_bit(STRIPE_HANDLE, &sh->state);
a9add5d9 2863 if (rmw < rcw && rmw > 0) {
a4456856 2864 /* prefer read-modify-write, but need to get some data */
e3620a3a
JB
2865 if (conf->mddev->queue)
2866 blk_add_trace_msg(conf->mddev->queue,
2867 "raid5 rmw %llu %d",
2868 (unsigned long long)sh->sector, rmw);
a4456856
DW
2869 for (i = disks; i--; ) {
2870 struct r5dev *dev = &sh->dev[i];
2871 if ((dev->towrite || i == sh->pd_idx) &&
2872 !test_bit(R5_LOCKED, &dev->flags) &&
f38e1219
DW
2873 !(test_bit(R5_UPTODATE, &dev->flags) ||
2874 test_bit(R5_Wantcompute, &dev->flags)) &&
a4456856
DW
2875 test_bit(R5_Insync, &dev->flags)) {
2876 if (
2877 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
45b4233c 2878 pr_debug("Read_old block "
a9add5d9 2879 "%d for r-m-w\n", i);
a4456856
DW
2880 set_bit(R5_LOCKED, &dev->flags);
2881 set_bit(R5_Wantread, &dev->flags);
2882 s->locked++;
2883 } else {
2884 set_bit(STRIPE_DELAYED, &sh->state);
2885 set_bit(STRIPE_HANDLE, &sh->state);
2886 }
2887 }
2888 }
a9add5d9 2889 }
c8ac1803 2890 if (rcw <= rmw && rcw > 0) {
a4456856 2891 /* want reconstruct write, but need to get some data */
a9add5d9 2892 int qread =0;
c8ac1803 2893 rcw = 0;
a4456856
DW
2894 for (i = disks; i--; ) {
2895 struct r5dev *dev = &sh->dev[i];
2896 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
c8ac1803 2897 i != sh->pd_idx && i != sh->qd_idx &&
a4456856 2898 !test_bit(R5_LOCKED, &dev->flags) &&
f38e1219 2899 !(test_bit(R5_UPTODATE, &dev->flags) ||
c8ac1803
N
2900 test_bit(R5_Wantcompute, &dev->flags))) {
2901 rcw++;
2902 if (!test_bit(R5_Insync, &dev->flags))
2903 continue; /* it's a failed drive */
a4456856
DW
2904 if (
2905 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
45b4233c 2906 pr_debug("Read_old block "
a4456856
DW
2907 "%d for Reconstruct\n", i);
2908 set_bit(R5_LOCKED, &dev->flags);
2909 set_bit(R5_Wantread, &dev->flags);
2910 s->locked++;
a9add5d9 2911 qread++;
a4456856
DW
2912 } else {
2913 set_bit(STRIPE_DELAYED, &sh->state);
2914 set_bit(STRIPE_HANDLE, &sh->state);
2915 }
2916 }
2917 }
e3620a3a 2918 if (rcw && conf->mddev->queue)
a9add5d9
N
2919 blk_add_trace_msg(conf->mddev->queue, "raid5 rcw %llu %d %d %d",
2920 (unsigned long long)sh->sector,
2921 rcw, qread, test_bit(STRIPE_DELAYED, &sh->state));
c8ac1803 2922 }
a4456856
DW
2923 /* now if nothing is locked, and if we have enough data,
2924 * we can start a write request
2925 */
f38e1219
DW
2926 /* since handle_stripe can be called at any time we need to handle the
2927 * case where a compute block operation has been submitted and then a
ac6b53b6
DW
2928 * subsequent call wants to start a write request. raid_run_ops only
2929 * handles the case where compute block and reconstruct are requested
f38e1219
DW
2930 * simultaneously. If this is not the case then new writes need to be
2931 * held off until the compute completes.
2932 */
976ea8d4
DW
2933 if ((s->req_compute || !test_bit(STRIPE_COMPUTE_RUN, &sh->state)) &&
2934 (s->locked == 0 && (rcw == 0 || rmw == 0) &&
2935 !test_bit(STRIPE_BIT_DELAY, &sh->state)))
c0f7bddb 2936 schedule_reconstruction(sh, s, rcw == 0, 0);
a4456856
DW
2937}
2938
d1688a6d 2939static void handle_parity_checks5(struct r5conf *conf, struct stripe_head *sh,
a4456856
DW
2940 struct stripe_head_state *s, int disks)
2941{
ecc65c9b 2942 struct r5dev *dev = NULL;
bd2ab670 2943
a4456856 2944 set_bit(STRIPE_HANDLE, &sh->state);
e89f8962 2945
ecc65c9b
DW
2946 switch (sh->check_state) {
2947 case check_state_idle:
2948 /* start a new check operation if there are no failures */
bd2ab670 2949 if (s->failed == 0) {
bd2ab670 2950 BUG_ON(s->uptodate != disks);
ecc65c9b
DW
2951 sh->check_state = check_state_run;
2952 set_bit(STRIPE_OP_CHECK, &s->ops_request);
bd2ab670 2953 clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
bd2ab670 2954 s->uptodate--;
ecc65c9b 2955 break;
bd2ab670 2956 }
f2b3b44d 2957 dev = &sh->dev[s->failed_num[0]];
ecc65c9b
DW
2958 /* fall through */
2959 case check_state_compute_result:
2960 sh->check_state = check_state_idle;
2961 if (!dev)
2962 dev = &sh->dev[sh->pd_idx];
2963
2964 /* check that a write has not made the stripe insync */
2965 if (test_bit(STRIPE_INSYNC, &sh->state))
2966 break;
c8894419 2967
a4456856 2968 /* either failed parity check, or recovery is happening */
a4456856
DW
2969 BUG_ON(!test_bit(R5_UPTODATE, &dev->flags));
2970 BUG_ON(s->uptodate != disks);
2971
2972 set_bit(R5_LOCKED, &dev->flags);
ecc65c9b 2973 s->locked++;
a4456856 2974 set_bit(R5_Wantwrite, &dev->flags);
830ea016 2975
a4456856 2976 clear_bit(STRIPE_DEGRADED, &sh->state);
a4456856 2977 set_bit(STRIPE_INSYNC, &sh->state);
ecc65c9b
DW
2978 break;
2979 case check_state_run:
2980 break; /* we will be called again upon completion */
2981 case check_state_check_result:
2982 sh->check_state = check_state_idle;
2983
2984 /* if a failure occurred during the check operation, leave
2985 * STRIPE_INSYNC not set and let the stripe be handled again
2986 */
2987 if (s->failed)
2988 break;
2989
2990 /* handle a successful check operation, if parity is correct
2991 * we are done. Otherwise update the mismatch count and repair
2992 * parity if !MD_RECOVERY_CHECK
2993 */
ad283ea4 2994 if ((sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) == 0)
ecc65c9b
DW
2995 /* parity is correct (on disc,
2996 * not in buffer any more)
2997 */
2998 set_bit(STRIPE_INSYNC, &sh->state);
2999 else {
7f7583d4 3000 atomic64_add(STRIPE_SECTORS, &conf->mddev->resync_mismatches);
ecc65c9b
DW
3001 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
3002 /* don't try to repair!! */
3003 set_bit(STRIPE_INSYNC, &sh->state);
3004 else {
3005 sh->check_state = check_state_compute_run;
976ea8d4 3006 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
ecc65c9b
DW
3007 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3008 set_bit(R5_Wantcompute,
3009 &sh->dev[sh->pd_idx].flags);
3010 sh->ops.target = sh->pd_idx;
ac6b53b6 3011 sh->ops.target2 = -1;
ecc65c9b
DW
3012 s->uptodate++;
3013 }
3014 }
3015 break;
3016 case check_state_compute_run:
3017 break;
3018 default:
3019 printk(KERN_ERR "%s: unknown check_state: %d sector: %llu\n",
3020 __func__, sh->check_state,
3021 (unsigned long long) sh->sector);
3022 BUG();
a4456856
DW
3023 }
3024}
3025
3026
d1688a6d 3027static void handle_parity_checks6(struct r5conf *conf, struct stripe_head *sh,
36d1c647 3028 struct stripe_head_state *s,
f2b3b44d 3029 int disks)
a4456856 3030{
a4456856 3031 int pd_idx = sh->pd_idx;
34e04e87 3032 int qd_idx = sh->qd_idx;
d82dfee0 3033 struct r5dev *dev;
a4456856
DW
3034
3035 set_bit(STRIPE_HANDLE, &sh->state);
3036
3037 BUG_ON(s->failed > 2);
d82dfee0 3038
a4456856
DW
3039 /* Want to check and possibly repair P and Q.
3040 * However there could be one 'failed' device, in which
3041 * case we can only check one of them, possibly using the
3042 * other to generate missing data
3043 */
3044
d82dfee0
DW
3045 switch (sh->check_state) {
3046 case check_state_idle:
3047 /* start a new check operation if there are < 2 failures */
f2b3b44d 3048 if (s->failed == s->q_failed) {
d82dfee0 3049 /* The only possible failed device holds Q, so it
a4456856
DW
3050 * makes sense to check P (If anything else were failed,
3051 * we would have used P to recreate it).
3052 */
d82dfee0 3053 sh->check_state = check_state_run;
a4456856 3054 }
f2b3b44d 3055 if (!s->q_failed && s->failed < 2) {
d82dfee0 3056 /* Q is not failed, and we didn't use it to generate
a4456856
DW
3057 * anything, so it makes sense to check it
3058 */
d82dfee0
DW
3059 if (sh->check_state == check_state_run)
3060 sh->check_state = check_state_run_pq;
3061 else
3062 sh->check_state = check_state_run_q;
a4456856 3063 }
a4456856 3064
d82dfee0
DW
3065 /* discard potentially stale zero_sum_result */
3066 sh->ops.zero_sum_result = 0;
a4456856 3067
d82dfee0
DW
3068 if (sh->check_state == check_state_run) {
3069 /* async_xor_zero_sum destroys the contents of P */
3070 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
3071 s->uptodate--;
a4456856 3072 }
d82dfee0
DW
3073 if (sh->check_state >= check_state_run &&
3074 sh->check_state <= check_state_run_pq) {
3075 /* async_syndrome_zero_sum preserves P and Q, so
3076 * no need to mark them !uptodate here
3077 */
3078 set_bit(STRIPE_OP_CHECK, &s->ops_request);
3079 break;
a4456856
DW
3080 }
3081
d82dfee0
DW
3082 /* we have 2-disk failure */
3083 BUG_ON(s->failed != 2);
3084 /* fall through */
3085 case check_state_compute_result:
3086 sh->check_state = check_state_idle;
a4456856 3087
d82dfee0
DW
3088 /* check that a write has not made the stripe insync */
3089 if (test_bit(STRIPE_INSYNC, &sh->state))
3090 break;
a4456856
DW
3091
3092 /* now write out any block on a failed drive,
d82dfee0 3093 * or P or Q if they were recomputed
a4456856 3094 */
d82dfee0 3095 BUG_ON(s->uptodate < disks - 1); /* We don't need Q to recover */
a4456856 3096 if (s->failed == 2) {
f2b3b44d 3097 dev = &sh->dev[s->failed_num[1]];
a4456856
DW
3098 s->locked++;
3099 set_bit(R5_LOCKED, &dev->flags);
3100 set_bit(R5_Wantwrite, &dev->flags);
3101 }
3102 if (s->failed >= 1) {
f2b3b44d 3103 dev = &sh->dev[s->failed_num[0]];
a4456856
DW
3104 s->locked++;
3105 set_bit(R5_LOCKED, &dev->flags);
3106 set_bit(R5_Wantwrite, &dev->flags);
3107 }
d82dfee0 3108 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
a4456856
DW
3109 dev = &sh->dev[pd_idx];
3110 s->locked++;
3111 set_bit(R5_LOCKED, &dev->flags);
3112 set_bit(R5_Wantwrite, &dev->flags);
3113 }
d82dfee0 3114 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
a4456856
DW
3115 dev = &sh->dev[qd_idx];
3116 s->locked++;
3117 set_bit(R5_LOCKED, &dev->flags);
3118 set_bit(R5_Wantwrite, &dev->flags);
3119 }
3120 clear_bit(STRIPE_DEGRADED, &sh->state);
3121
3122 set_bit(STRIPE_INSYNC, &sh->state);
d82dfee0
DW
3123 break;
3124 case check_state_run:
3125 case check_state_run_q:
3126 case check_state_run_pq:
3127 break; /* we will be called again upon completion */
3128 case check_state_check_result:
3129 sh->check_state = check_state_idle;
3130
3131 /* handle a successful check operation, if parity is correct
3132 * we are done. Otherwise update the mismatch count and repair
3133 * parity if !MD_RECOVERY_CHECK
3134 */
3135 if (sh->ops.zero_sum_result == 0) {
3136 /* both parities are correct */
3137 if (!s->failed)
3138 set_bit(STRIPE_INSYNC, &sh->state);
3139 else {
3140 /* in contrast to the raid5 case we can validate
3141 * parity, but still have a failure to write
3142 * back
3143 */
3144 sh->check_state = check_state_compute_result;
3145 /* Returning at this point means that we may go
3146 * off and bring p and/or q uptodate again so
3147 * we make sure to check zero_sum_result again
3148 * to verify if p or q need writeback
3149 */
3150 }
3151 } else {
7f7583d4 3152 atomic64_add(STRIPE_SECTORS, &conf->mddev->resync_mismatches);
d82dfee0
DW
3153 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
3154 /* don't try to repair!! */
3155 set_bit(STRIPE_INSYNC, &sh->state);
3156 else {
3157 int *target = &sh->ops.target;
3158
3159 sh->ops.target = -1;
3160 sh->ops.target2 = -1;
3161 sh->check_state = check_state_compute_run;
3162 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
3163 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3164 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
3165 set_bit(R5_Wantcompute,
3166 &sh->dev[pd_idx].flags);
3167 *target = pd_idx;
3168 target = &sh->ops.target2;
3169 s->uptodate++;
3170 }
3171 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
3172 set_bit(R5_Wantcompute,
3173 &sh->dev[qd_idx].flags);
3174 *target = qd_idx;
3175 s->uptodate++;
3176 }
3177 }
3178 }
3179 break;
3180 case check_state_compute_run:
3181 break;
3182 default:
3183 printk(KERN_ERR "%s: unknown check_state: %d sector: %llu\n",
3184 __func__, sh->check_state,
3185 (unsigned long long) sh->sector);
3186 BUG();
a4456856
DW
3187 }
3188}
3189
d1688a6d 3190static void handle_stripe_expansion(struct r5conf *conf, struct stripe_head *sh)
a4456856
DW
3191{
3192 int i;
3193
3194 /* We have read all the blocks in this stripe and now we need to
3195 * copy some of them into a target stripe for expand.
3196 */
f0a50d37 3197 struct dma_async_tx_descriptor *tx = NULL;
a4456856
DW
3198 clear_bit(STRIPE_EXPAND_SOURCE, &sh->state);
3199 for (i = 0; i < sh->disks; i++)
34e04e87 3200 if (i != sh->pd_idx && i != sh->qd_idx) {
911d4ee8 3201 int dd_idx, j;
a4456856 3202 struct stripe_head *sh2;
a08abd8c 3203 struct async_submit_ctl submit;
a4456856 3204
784052ec 3205 sector_t bn = compute_blocknr(sh, i, 1);
911d4ee8
N
3206 sector_t s = raid5_compute_sector(conf, bn, 0,
3207 &dd_idx, NULL);
a8c906ca 3208 sh2 = get_active_stripe(conf, s, 0, 1, 1);
a4456856
DW
3209 if (sh2 == NULL)
3210 /* so far only the early blocks of this stripe
3211 * have been requested. When later blocks
3212 * get requested, we will try again
3213 */
3214 continue;
3215 if (!test_bit(STRIPE_EXPANDING, &sh2->state) ||
3216 test_bit(R5_Expanded, &sh2->dev[dd_idx].flags)) {
3217 /* must have already done this block */
3218 release_stripe(sh2);
3219 continue;
3220 }
f0a50d37
DW
3221
3222 /* place all the copies on one channel */
a08abd8c 3223 init_async_submit(&submit, 0, tx, NULL, NULL, NULL);
f0a50d37 3224 tx = async_memcpy(sh2->dev[dd_idx].page,
88ba2aa5 3225 sh->dev[i].page, 0, 0, STRIPE_SIZE,
a08abd8c 3226 &submit);
f0a50d37 3227
a4456856
DW
3228 set_bit(R5_Expanded, &sh2->dev[dd_idx].flags);
3229 set_bit(R5_UPTODATE, &sh2->dev[dd_idx].flags);
3230 for (j = 0; j < conf->raid_disks; j++)
3231 if (j != sh2->pd_idx &&
86c374ba 3232 j != sh2->qd_idx &&
a4456856
DW
3233 !test_bit(R5_Expanded, &sh2->dev[j].flags))
3234 break;
3235 if (j == conf->raid_disks) {
3236 set_bit(STRIPE_EXPAND_READY, &sh2->state);
3237 set_bit(STRIPE_HANDLE, &sh2->state);
3238 }
3239 release_stripe(sh2);
f0a50d37 3240
a4456856 3241 }
a2e08551 3242 /* done submitting copies, wait for them to complete */
749586b7 3243 async_tx_quiesce(&tx);
a4456856 3244}
1da177e4
LT
3245
3246/*
3247 * handle_stripe - do things to a stripe.
3248 *
9a3e1101
N
3249 * We lock the stripe by setting STRIPE_ACTIVE and then examine the
3250 * state of various bits to see what needs to be done.
1da177e4 3251 * Possible results:
9a3e1101
N
3252 * return some read requests which now have data
3253 * return some write requests which are safely on storage
1da177e4
LT
3254 * schedule a read on some buffers
3255 * schedule a write of some buffers
3256 * return confirmation of parity correctness
3257 *
1da177e4 3258 */
a4456856 3259
acfe726b 3260static void analyse_stripe(struct stripe_head *sh, struct stripe_head_state *s)
1da177e4 3261{
d1688a6d 3262 struct r5conf *conf = sh->raid_conf;
f416885e 3263 int disks = sh->disks;
474af965
N
3264 struct r5dev *dev;
3265 int i;
9a3e1101 3266 int do_recovery = 0;
1da177e4 3267
acfe726b
N
3268 memset(s, 0, sizeof(*s));
3269
acfe726b
N
3270 s->expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state);
3271 s->expanded = test_bit(STRIPE_EXPAND_READY, &sh->state);
3272 s->failed_num[0] = -1;
3273 s->failed_num[1] = -1;
1da177e4 3274
acfe726b 3275 /* Now to look around and see what can be done */
1da177e4 3276 rcu_read_lock();
16a53ecc 3277 for (i=disks; i--; ) {
3cb03002 3278 struct md_rdev *rdev;
31c176ec
N
3279 sector_t first_bad;
3280 int bad_sectors;
3281 int is_bad = 0;
acfe726b 3282
16a53ecc 3283 dev = &sh->dev[i];
1da177e4 3284
45b4233c 3285 pr_debug("check %d: state 0x%lx read %p write %p written %p\n",
9a3e1101
N
3286 i, dev->flags,
3287 dev->toread, dev->towrite, dev->written);
6c0069c0
YT
3288 /* maybe we can reply to a read
3289 *
3290 * new wantfill requests are only permitted while
3291 * ops_complete_biofill is guaranteed to be inactive
3292 */
3293 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread &&
3294 !test_bit(STRIPE_BIOFILL_RUN, &sh->state))
3295 set_bit(R5_Wantfill, &dev->flags);
1da177e4 3296
16a53ecc 3297 /* now count some things */
cc94015a
N
3298 if (test_bit(R5_LOCKED, &dev->flags))
3299 s->locked++;
3300 if (test_bit(R5_UPTODATE, &dev->flags))
3301 s->uptodate++;
2d6e4ecc 3302 if (test_bit(R5_Wantcompute, &dev->flags)) {
cc94015a
N
3303 s->compute++;
3304 BUG_ON(s->compute > 2);
2d6e4ecc 3305 }
1da177e4 3306
acfe726b 3307 if (test_bit(R5_Wantfill, &dev->flags))
cc94015a 3308 s->to_fill++;
acfe726b 3309 else if (dev->toread)
cc94015a 3310 s->to_read++;
16a53ecc 3311 if (dev->towrite) {
cc94015a 3312 s->to_write++;
16a53ecc 3313 if (!test_bit(R5_OVERWRITE, &dev->flags))
cc94015a 3314 s->non_overwrite++;
16a53ecc 3315 }
a4456856 3316 if (dev->written)
cc94015a 3317 s->written++;
14a75d3e
N
3318 /* Prefer to use the replacement for reads, but only
3319 * if it is recovered enough and has no bad blocks.
3320 */
3321 rdev = rcu_dereference(conf->disks[i].replacement);
3322 if (rdev && !test_bit(Faulty, &rdev->flags) &&
3323 rdev->recovery_offset >= sh->sector + STRIPE_SECTORS &&
3324 !is_badblock(rdev, sh->sector, STRIPE_SECTORS,
3325 &first_bad, &bad_sectors))
3326 set_bit(R5_ReadRepl, &dev->flags);
3327 else {
9a3e1101
N
3328 if (rdev)
3329 set_bit(R5_NeedReplace, &dev->flags);
14a75d3e
N
3330 rdev = rcu_dereference(conf->disks[i].rdev);
3331 clear_bit(R5_ReadRepl, &dev->flags);
3332 }
9283d8c5
N
3333 if (rdev && test_bit(Faulty, &rdev->flags))
3334 rdev = NULL;
31c176ec
N
3335 if (rdev) {
3336 is_bad = is_badblock(rdev, sh->sector, STRIPE_SECTORS,
3337 &first_bad, &bad_sectors);
3338 if (s->blocked_rdev == NULL
3339 && (test_bit(Blocked, &rdev->flags)
3340 || is_bad < 0)) {
3341 if (is_bad < 0)
3342 set_bit(BlockedBadBlocks,
3343 &rdev->flags);
3344 s->blocked_rdev = rdev;
3345 atomic_inc(&rdev->nr_pending);
3346 }
6bfe0b49 3347 }
415e72d0
N
3348 clear_bit(R5_Insync, &dev->flags);
3349 if (!rdev)
3350 /* Not in-sync */;
31c176ec
N
3351 else if (is_bad) {
3352 /* also not in-sync */
18b9837e
N
3353 if (!test_bit(WriteErrorSeen, &rdev->flags) &&
3354 test_bit(R5_UPTODATE, &dev->flags)) {
31c176ec
N
3355 /* treat as in-sync, but with a read error
3356 * which we can now try to correct
3357 */
3358 set_bit(R5_Insync, &dev->flags);
3359 set_bit(R5_ReadError, &dev->flags);
3360 }
3361 } else if (test_bit(In_sync, &rdev->flags))
415e72d0 3362 set_bit(R5_Insync, &dev->flags);
30d7a483 3363 else if (sh->sector + STRIPE_SECTORS <= rdev->recovery_offset)
415e72d0 3364 /* in sync if before recovery_offset */
30d7a483
N
3365 set_bit(R5_Insync, &dev->flags);
3366 else if (test_bit(R5_UPTODATE, &dev->flags) &&
3367 test_bit(R5_Expanded, &dev->flags))
3368 /* If we've reshaped into here, we assume it is Insync.
3369 * We will shortly update recovery_offset to make
3370 * it official.
3371 */
3372 set_bit(R5_Insync, &dev->flags);
3373
5d8c71f9 3374 if (rdev && test_bit(R5_WriteError, &dev->flags)) {
14a75d3e
N
3375 /* This flag does not apply to '.replacement'
3376 * only to .rdev, so make sure to check that*/
3377 struct md_rdev *rdev2 = rcu_dereference(
3378 conf->disks[i].rdev);
3379 if (rdev2 == rdev)
3380 clear_bit(R5_Insync, &dev->flags);
3381 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
bc2607f3 3382 s->handle_bad_blocks = 1;
14a75d3e 3383 atomic_inc(&rdev2->nr_pending);
bc2607f3
N
3384 } else
3385 clear_bit(R5_WriteError, &dev->flags);
3386 }
5d8c71f9 3387 if (rdev && test_bit(R5_MadeGood, &dev->flags)) {
14a75d3e
N
3388 /* This flag does not apply to '.replacement'
3389 * only to .rdev, so make sure to check that*/
3390 struct md_rdev *rdev2 = rcu_dereference(
3391 conf->disks[i].rdev);
3392 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
b84db560 3393 s->handle_bad_blocks = 1;
14a75d3e 3394 atomic_inc(&rdev2->nr_pending);
b84db560
N
3395 } else
3396 clear_bit(R5_MadeGood, &dev->flags);
3397 }
977df362
N
3398 if (test_bit(R5_MadeGoodRepl, &dev->flags)) {
3399 struct md_rdev *rdev2 = rcu_dereference(
3400 conf->disks[i].replacement);
3401 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
3402 s->handle_bad_blocks = 1;
3403 atomic_inc(&rdev2->nr_pending);
3404 } else
3405 clear_bit(R5_MadeGoodRepl, &dev->flags);
3406 }
415e72d0 3407 if (!test_bit(R5_Insync, &dev->flags)) {
16a53ecc
N
3408 /* The ReadError flag will just be confusing now */
3409 clear_bit(R5_ReadError, &dev->flags);
3410 clear_bit(R5_ReWrite, &dev->flags);
1da177e4 3411 }
415e72d0
N
3412 if (test_bit(R5_ReadError, &dev->flags))
3413 clear_bit(R5_Insync, &dev->flags);
3414 if (!test_bit(R5_Insync, &dev->flags)) {
cc94015a
N
3415 if (s->failed < 2)
3416 s->failed_num[s->failed] = i;
3417 s->failed++;
9a3e1101
N
3418 if (rdev && !test_bit(Faulty, &rdev->flags))
3419 do_recovery = 1;
415e72d0 3420 }
1da177e4 3421 }
9a3e1101
N
3422 if (test_bit(STRIPE_SYNCING, &sh->state)) {
3423 /* If there is a failed device being replaced,
3424 * we must be recovering.
3425 * else if we are after recovery_cp, we must be syncing
c6d2e084 3426 * else if MD_RECOVERY_REQUESTED is set, we also are syncing.
9a3e1101
N
3427 * else we can only be replacing
3428 * sync and recovery both need to read all devices, and so
3429 * use the same flag.
3430 */
3431 if (do_recovery ||
c6d2e084 3432 sh->sector >= conf->mddev->recovery_cp ||
3433 test_bit(MD_RECOVERY_REQUESTED, &(conf->mddev->recovery)))
9a3e1101
N
3434 s->syncing = 1;
3435 else
3436 s->replacing = 1;
3437 }
1da177e4 3438 rcu_read_unlock();
cc94015a
N
3439}
3440
3441static void handle_stripe(struct stripe_head *sh)
3442{
3443 struct stripe_head_state s;
d1688a6d 3444 struct r5conf *conf = sh->raid_conf;
3687c061 3445 int i;
84789554
N
3446 int prexor;
3447 int disks = sh->disks;
474af965 3448 struct r5dev *pdev, *qdev;
cc94015a
N
3449
3450 clear_bit(STRIPE_HANDLE, &sh->state);
257a4b42 3451 if (test_and_set_bit_lock(STRIPE_ACTIVE, &sh->state)) {
cc94015a
N
3452 /* already being handled, ensure it gets handled
3453 * again when current action finishes */
3454 set_bit(STRIPE_HANDLE, &sh->state);
3455 return;
3456 }
3457
f8dfcffd
N
3458 if (test_bit(STRIPE_SYNC_REQUESTED, &sh->state)) {
3459 spin_lock(&sh->stripe_lock);
3460 /* Cannot process 'sync' concurrently with 'discard' */
3461 if (!test_bit(STRIPE_DISCARD, &sh->state) &&
3462 test_and_clear_bit(STRIPE_SYNC_REQUESTED, &sh->state)) {
3463 set_bit(STRIPE_SYNCING, &sh->state);
3464 clear_bit(STRIPE_INSYNC, &sh->state);
3465 }
3466 spin_unlock(&sh->stripe_lock);
cc94015a
N
3467 }
3468 clear_bit(STRIPE_DELAYED, &sh->state);
3469
3470 pr_debug("handling stripe %llu, state=%#lx cnt=%d, "
3471 "pd_idx=%d, qd_idx=%d\n, check:%d, reconstruct:%d\n",
3472 (unsigned long long)sh->sector, sh->state,
3473 atomic_read(&sh->count), sh->pd_idx, sh->qd_idx,
3474 sh->check_state, sh->reconstruct_state);
3687c061 3475
acfe726b 3476 analyse_stripe(sh, &s);
c5a31000 3477
bc2607f3
N
3478 if (s.handle_bad_blocks) {
3479 set_bit(STRIPE_HANDLE, &sh->state);
3480 goto finish;
3481 }
3482
474af965
N
3483 if (unlikely(s.blocked_rdev)) {
3484 if (s.syncing || s.expanding || s.expanded ||
9a3e1101 3485 s.replacing || s.to_write || s.written) {
474af965
N
3486 set_bit(STRIPE_HANDLE, &sh->state);
3487 goto finish;
3488 }
3489 /* There is nothing for the blocked_rdev to block */
3490 rdev_dec_pending(s.blocked_rdev, conf->mddev);
3491 s.blocked_rdev = NULL;
3492 }
3493
3494 if (s.to_fill && !test_bit(STRIPE_BIOFILL_RUN, &sh->state)) {
3495 set_bit(STRIPE_OP_BIOFILL, &s.ops_request);
3496 set_bit(STRIPE_BIOFILL_RUN, &sh->state);
3497 }
3498
3499 pr_debug("locked=%d uptodate=%d to_read=%d"
3500 " to_write=%d failed=%d failed_num=%d,%d\n",
3501 s.locked, s.uptodate, s.to_read, s.to_write, s.failed,
3502 s.failed_num[0], s.failed_num[1]);
3503 /* check if the array has lost more than max_degraded devices and,
3504 * if so, some requests might need to be failed.
3505 */
9a3f530f
N
3506 if (s.failed > conf->max_degraded) {
3507 sh->check_state = 0;
3508 sh->reconstruct_state = 0;
3509 if (s.to_read+s.to_write+s.written)
3510 handle_failed_stripe(conf, sh, &s, disks, &s.return_bi);
9a3e1101 3511 if (s.syncing + s.replacing)
9a3f530f
N
3512 handle_failed_sync(conf, sh, &s);
3513 }
474af965 3514
84789554
N
3515 /* Now we check to see if any write operations have recently
3516 * completed
3517 */
3518 prexor = 0;
3519 if (sh->reconstruct_state == reconstruct_state_prexor_drain_result)
3520 prexor = 1;
3521 if (sh->reconstruct_state == reconstruct_state_drain_result ||
3522 sh->reconstruct_state == reconstruct_state_prexor_drain_result) {
3523 sh->reconstruct_state = reconstruct_state_idle;
3524
3525 /* All the 'written' buffers and the parity block are ready to
3526 * be written back to disk
3527 */
9e444768
SL
3528 BUG_ON(!test_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags) &&
3529 !test_bit(R5_Discard, &sh->dev[sh->pd_idx].flags));
84789554 3530 BUG_ON(sh->qd_idx >= 0 &&
9e444768
SL
3531 !test_bit(R5_UPTODATE, &sh->dev[sh->qd_idx].flags) &&
3532 !test_bit(R5_Discard, &sh->dev[sh->qd_idx].flags));
84789554
N
3533 for (i = disks; i--; ) {
3534 struct r5dev *dev = &sh->dev[i];
3535 if (test_bit(R5_LOCKED, &dev->flags) &&
3536 (i == sh->pd_idx || i == sh->qd_idx ||
3537 dev->written)) {
3538 pr_debug("Writing block %d\n", i);
3539 set_bit(R5_Wantwrite, &dev->flags);
3540 if (prexor)
3541 continue;
3542 if (!test_bit(R5_Insync, &dev->flags) ||
3543 ((i == sh->pd_idx || i == sh->qd_idx) &&
3544 s.failed == 0))
3545 set_bit(STRIPE_INSYNC, &sh->state);
3546 }
3547 }
3548 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3549 s.dec_preread_active = 1;
3550 }
3551
ef5b7c69
N
3552 /*
3553 * might be able to return some write requests if the parity blocks
3554 * are safe, or on a failed drive
3555 */
3556 pdev = &sh->dev[sh->pd_idx];
3557 s.p_failed = (s.failed >= 1 && s.failed_num[0] == sh->pd_idx)
3558 || (s.failed >= 2 && s.failed_num[1] == sh->pd_idx);
3559 qdev = &sh->dev[sh->qd_idx];
3560 s.q_failed = (s.failed >= 1 && s.failed_num[0] == sh->qd_idx)
3561 || (s.failed >= 2 && s.failed_num[1] == sh->qd_idx)
3562 || conf->level < 6;
3563
3564 if (s.written &&
3565 (s.p_failed || ((test_bit(R5_Insync, &pdev->flags)
3566 && !test_bit(R5_LOCKED, &pdev->flags)
3567 && (test_bit(R5_UPTODATE, &pdev->flags) ||
3568 test_bit(R5_Discard, &pdev->flags))))) &&
3569 (s.q_failed || ((test_bit(R5_Insync, &qdev->flags)
3570 && !test_bit(R5_LOCKED, &qdev->flags)
3571 && (test_bit(R5_UPTODATE, &qdev->flags) ||
3572 test_bit(R5_Discard, &qdev->flags))))))
3573 handle_stripe_clean_event(conf, sh, disks, &s.return_bi);
3574
3575 /* Now we might consider reading some blocks, either to check/generate
3576 * parity, or to satisfy requests
3577 * or to load a block that is being partially written.
3578 */
3579 if (s.to_read || s.non_overwrite
3580 || (conf->level == 6 && s.to_write && s.failed)
3581 || (s.syncing && (s.uptodate + s.compute < disks))
3582 || s.replacing
3583 || s.expanding)
3584 handle_stripe_fill(sh, &s, disks);
3585
84789554
N
3586 /* Now to consider new write requests and what else, if anything
3587 * should be read. We do not handle new writes when:
3588 * 1/ A 'write' operation (copy+xor) is already in flight.
3589 * 2/ A 'check' operation is in flight, as it may clobber the parity
3590 * block.
3591 */
3592 if (s.to_write && !sh->reconstruct_state && !sh->check_state)
3593 handle_stripe_dirtying(conf, sh, &s, disks);
3594
3595 /* maybe we need to check and possibly fix the parity for this stripe
3596 * Any reads will already have been scheduled, so we just see if enough
3597 * data is available. The parity check is held off while parity
3598 * dependent operations are in flight.
3599 */
3600 if (sh->check_state ||
3601 (s.syncing && s.locked == 0 &&
3602 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
3603 !test_bit(STRIPE_INSYNC, &sh->state))) {
3604 if (conf->level == 6)
3605 handle_parity_checks6(conf, sh, &s, disks);
3606 else
3607 handle_parity_checks5(conf, sh, &s, disks);
3608 }
c5a31000 3609
9a3e1101
N
3610 if (s.replacing && s.locked == 0
3611 && !test_bit(STRIPE_INSYNC, &sh->state)) {
3612 /* Write out to replacement devices where possible */
3613 for (i = 0; i < conf->raid_disks; i++)
3614 if (test_bit(R5_UPTODATE, &sh->dev[i].flags) &&
3615 test_bit(R5_NeedReplace, &sh->dev[i].flags)) {
3616 set_bit(R5_WantReplace, &sh->dev[i].flags);
3617 set_bit(R5_LOCKED, &sh->dev[i].flags);
3618 s.locked++;
3619 }
3620 set_bit(STRIPE_INSYNC, &sh->state);
3621 }
3622 if ((s.syncing || s.replacing) && s.locked == 0 &&
3623 test_bit(STRIPE_INSYNC, &sh->state)) {
c5a31000
N
3624 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
3625 clear_bit(STRIPE_SYNCING, &sh->state);
f8dfcffd
N
3626 if (test_and_clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags))
3627 wake_up(&conf->wait_for_overlap);
c5a31000
N
3628 }
3629
3630 /* If the failed drives are just a ReadError, then we might need
3631 * to progress the repair/check process
3632 */
3633 if (s.failed <= conf->max_degraded && !conf->mddev->ro)
3634 for (i = 0; i < s.failed; i++) {
3635 struct r5dev *dev = &sh->dev[s.failed_num[i]];
3636 if (test_bit(R5_ReadError, &dev->flags)
3637 && !test_bit(R5_LOCKED, &dev->flags)
3638 && test_bit(R5_UPTODATE, &dev->flags)
3639 ) {
3640 if (!test_bit(R5_ReWrite, &dev->flags)) {
3641 set_bit(R5_Wantwrite, &dev->flags);
3642 set_bit(R5_ReWrite, &dev->flags);
3643 set_bit(R5_LOCKED, &dev->flags);
3644 s.locked++;
3645 } else {
3646 /* let's read it back */
3647 set_bit(R5_Wantread, &dev->flags);
3648 set_bit(R5_LOCKED, &dev->flags);
3649 s.locked++;
3650 }
3651 }
3652 }
3653
3654
3687c061
N
3655 /* Finish reconstruct operations initiated by the expansion process */
3656 if (sh->reconstruct_state == reconstruct_state_result) {
3657 struct stripe_head *sh_src
3658 = get_active_stripe(conf, sh->sector, 1, 1, 1);
3659 if (sh_src && test_bit(STRIPE_EXPAND_SOURCE, &sh_src->state)) {
3660 /* sh cannot be written until sh_src has been read.
3661 * so arrange for sh to be delayed a little
3662 */
3663 set_bit(STRIPE_DELAYED, &sh->state);
3664 set_bit(STRIPE_HANDLE, &sh->state);
3665 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE,
3666 &sh_src->state))
3667 atomic_inc(&conf->preread_active_stripes);
3668 release_stripe(sh_src);
3669 goto finish;
3670 }
3671 if (sh_src)
3672 release_stripe(sh_src);
3673
3674 sh->reconstruct_state = reconstruct_state_idle;
3675 clear_bit(STRIPE_EXPANDING, &sh->state);
3676 for (i = conf->raid_disks; i--; ) {
3677 set_bit(R5_Wantwrite, &sh->dev[i].flags);
3678 set_bit(R5_LOCKED, &sh->dev[i].flags);
3679 s.locked++;
3680 }
3681 }
f416885e 3682
3687c061
N
3683 if (s.expanded && test_bit(STRIPE_EXPANDING, &sh->state) &&
3684 !sh->reconstruct_state) {
3685 /* Need to write out all blocks after computing parity */
3686 sh->disks = conf->raid_disks;
3687 stripe_set_idx(sh->sector, conf, 0, sh);
3688 schedule_reconstruction(sh, &s, 1, 1);
3689 } else if (s.expanded && !sh->reconstruct_state && s.locked == 0) {
3690 clear_bit(STRIPE_EXPAND_READY, &sh->state);
3691 atomic_dec(&conf->reshape_stripes);
3692 wake_up(&conf->wait_for_overlap);
3693 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
3694 }
3695
3696 if (s.expanding && s.locked == 0 &&
3697 !test_bit(STRIPE_COMPUTE_RUN, &sh->state))
3698 handle_stripe_expansion(conf, sh);
16a53ecc 3699
3687c061 3700finish:
6bfe0b49 3701 /* wait for this device to become unblocked */
5f066c63
N
3702 if (unlikely(s.blocked_rdev)) {
3703 if (conf->mddev->external)
3704 md_wait_for_blocked_rdev(s.blocked_rdev,
3705 conf->mddev);
3706 else
3707 /* Internal metadata will immediately
3708 * be written by raid5d, so we don't
3709 * need to wait here.
3710 */
3711 rdev_dec_pending(s.blocked_rdev,
3712 conf->mddev);
3713 }
6bfe0b49 3714
bc2607f3
N
3715 if (s.handle_bad_blocks)
3716 for (i = disks; i--; ) {
3cb03002 3717 struct md_rdev *rdev;
bc2607f3
N
3718 struct r5dev *dev = &sh->dev[i];
3719 if (test_and_clear_bit(R5_WriteError, &dev->flags)) {
3720 /* We own a safe reference to the rdev */
3721 rdev = conf->disks[i].rdev;
3722 if (!rdev_set_badblocks(rdev, sh->sector,
3723 STRIPE_SECTORS, 0))
3724 md_error(conf->mddev, rdev);
3725 rdev_dec_pending(rdev, conf->mddev);
3726 }
b84db560
N
3727 if (test_and_clear_bit(R5_MadeGood, &dev->flags)) {
3728 rdev = conf->disks[i].rdev;
3729 rdev_clear_badblocks(rdev, sh->sector,
c6563a8c 3730 STRIPE_SECTORS, 0);
b84db560
N
3731 rdev_dec_pending(rdev, conf->mddev);
3732 }
977df362
N
3733 if (test_and_clear_bit(R5_MadeGoodRepl, &dev->flags)) {
3734 rdev = conf->disks[i].replacement;
dd054fce
N
3735 if (!rdev)
3736 /* rdev have been moved down */
3737 rdev = conf->disks[i].rdev;
977df362 3738 rdev_clear_badblocks(rdev, sh->sector,
c6563a8c 3739 STRIPE_SECTORS, 0);
977df362
N
3740 rdev_dec_pending(rdev, conf->mddev);
3741 }
bc2607f3
N
3742 }
3743
6c0069c0
YT
3744 if (s.ops_request)
3745 raid_run_ops(sh, s.ops_request);
3746
f0e43bcd 3747 ops_run_io(sh, &s);
16a53ecc 3748
c5709ef6 3749 if (s.dec_preread_active) {
729a1866 3750 /* We delay this until after ops_run_io so that if make_request
e9c7469b 3751 * is waiting on a flush, it won't continue until the writes
729a1866
N
3752 * have actually been submitted.
3753 */
3754 atomic_dec(&conf->preread_active_stripes);
3755 if (atomic_read(&conf->preread_active_stripes) <
3756 IO_THRESHOLD)
3757 md_wakeup_thread(conf->mddev->thread);
3758 }
3759
c5709ef6 3760 return_io(s.return_bi);
16a53ecc 3761
257a4b42 3762 clear_bit_unlock(STRIPE_ACTIVE, &sh->state);
16a53ecc
N
3763}
3764
d1688a6d 3765static void raid5_activate_delayed(struct r5conf *conf)
16a53ecc
N
3766{
3767 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD) {
3768 while (!list_empty(&conf->delayed_list)) {
3769 struct list_head *l = conf->delayed_list.next;
3770 struct stripe_head *sh;
3771 sh = list_entry(l, struct stripe_head, lru);
3772 list_del_init(l);
3773 clear_bit(STRIPE_DELAYED, &sh->state);
3774 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3775 atomic_inc(&conf->preread_active_stripes);
8b3e6cdc 3776 list_add_tail(&sh->lru, &conf->hold_list);
16a53ecc 3777 }
482c0834 3778 }
16a53ecc
N
3779}
3780
d1688a6d 3781static void activate_bit_delay(struct r5conf *conf)
16a53ecc
N
3782{
3783 /* device_lock is held */
3784 struct list_head head;
3785 list_add(&head, &conf->bitmap_list);
3786 list_del_init(&conf->bitmap_list);
3787 while (!list_empty(&head)) {
3788 struct stripe_head *sh = list_entry(head.next, struct stripe_head, lru);
3789 list_del_init(&sh->lru);
3790 atomic_inc(&sh->count);
3791 __release_stripe(conf, sh);
3792 }
3793}
3794
fd01b88c 3795int md_raid5_congested(struct mddev *mddev, int bits)
f022b2fd 3796{
d1688a6d 3797 struct r5conf *conf = mddev->private;
f022b2fd
N
3798
3799 /* No difference between reads and writes. Just check
3800 * how busy the stripe_cache is
3801 */
3fa841d7 3802
f022b2fd
N
3803 if (conf->inactive_blocked)
3804 return 1;
3805 if (conf->quiesce)
3806 return 1;
3807 if (list_empty_careful(&conf->inactive_list))
3808 return 1;
3809
3810 return 0;
3811}
11d8a6e3
N
3812EXPORT_SYMBOL_GPL(md_raid5_congested);
3813
3814static int raid5_congested(void *data, int bits)
3815{
fd01b88c 3816 struct mddev *mddev = data;
11d8a6e3
N
3817
3818 return mddev_congested(mddev, bits) ||
3819 md_raid5_congested(mddev, bits);
3820}
f022b2fd 3821
23032a0e
RBJ
3822/* We want read requests to align with chunks where possible,
3823 * but write requests don't need to.
3824 */
cc371e66
AK
3825static int raid5_mergeable_bvec(struct request_queue *q,
3826 struct bvec_merge_data *bvm,
3827 struct bio_vec *biovec)
23032a0e 3828{
fd01b88c 3829 struct mddev *mddev = q->queuedata;
cc371e66 3830 sector_t sector = bvm->bi_sector + get_start_sect(bvm->bi_bdev);
23032a0e 3831 int max;
9d8f0363 3832 unsigned int chunk_sectors = mddev->chunk_sectors;
cc371e66 3833 unsigned int bio_sectors = bvm->bi_size >> 9;
23032a0e 3834
cc371e66 3835 if ((bvm->bi_rw & 1) == WRITE)
23032a0e
RBJ
3836 return biovec->bv_len; /* always allow writes to be mergeable */
3837
664e7c41
AN
3838 if (mddev->new_chunk_sectors < mddev->chunk_sectors)
3839 chunk_sectors = mddev->new_chunk_sectors;
23032a0e
RBJ
3840 max = (chunk_sectors - ((sector & (chunk_sectors - 1)) + bio_sectors)) << 9;
3841 if (max < 0) max = 0;
3842 if (max <= biovec->bv_len && bio_sectors == 0)
3843 return biovec->bv_len;
3844 else
3845 return max;
3846}
3847
f679623f 3848
fd01b88c 3849static int in_chunk_boundary(struct mddev *mddev, struct bio *bio)
f679623f
RBJ
3850{
3851 sector_t sector = bio->bi_sector + get_start_sect(bio->bi_bdev);
9d8f0363 3852 unsigned int chunk_sectors = mddev->chunk_sectors;
aa8b57aa 3853 unsigned int bio_sectors = bio_sectors(bio);
f679623f 3854
664e7c41
AN
3855 if (mddev->new_chunk_sectors < mddev->chunk_sectors)
3856 chunk_sectors = mddev->new_chunk_sectors;
f679623f
RBJ
3857 return chunk_sectors >=
3858 ((sector & (chunk_sectors - 1)) + bio_sectors);
3859}
3860
46031f9a
RBJ
3861/*
3862 * add bio to the retry LIFO ( in O(1) ... we are in interrupt )
3863 * later sampled by raid5d.
3864 */
d1688a6d 3865static void add_bio_to_retry(struct bio *bi,struct r5conf *conf)
46031f9a
RBJ
3866{
3867 unsigned long flags;
3868
3869 spin_lock_irqsave(&conf->device_lock, flags);
3870
3871 bi->bi_next = conf->retry_read_aligned_list;
3872 conf->retry_read_aligned_list = bi;
3873
3874 spin_unlock_irqrestore(&conf->device_lock, flags);
3875 md_wakeup_thread(conf->mddev->thread);
3876}
3877
3878
d1688a6d 3879static struct bio *remove_bio_from_retry(struct r5conf *conf)
46031f9a
RBJ
3880{
3881 struct bio *bi;
3882
3883 bi = conf->retry_read_aligned;
3884 if (bi) {
3885 conf->retry_read_aligned = NULL;
3886 return bi;
3887 }
3888 bi = conf->retry_read_aligned_list;
3889 if(bi) {
387bb173 3890 conf->retry_read_aligned_list = bi->bi_next;
46031f9a 3891 bi->bi_next = NULL;
960e739d
JA
3892 /*
3893 * this sets the active strip count to 1 and the processed
3894 * strip count to zero (upper 8 bits)
3895 */
e7836bd6 3896 raid5_set_bi_stripes(bi, 1); /* biased count of active stripes */
46031f9a
RBJ
3897 }
3898
3899 return bi;
3900}
3901
3902
f679623f
RBJ
3903/*
3904 * The "raid5_align_endio" should check if the read succeeded and if it
3905 * did, call bio_endio on the original bio (having bio_put the new bio
3906 * first).
3907 * If the read failed..
3908 */
6712ecf8 3909static void raid5_align_endio(struct bio *bi, int error)
f679623f
RBJ
3910{
3911 struct bio* raid_bi = bi->bi_private;
fd01b88c 3912 struct mddev *mddev;
d1688a6d 3913 struct r5conf *conf;
46031f9a 3914 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
3cb03002 3915 struct md_rdev *rdev;
46031f9a 3916
f679623f 3917 bio_put(bi);
46031f9a 3918
46031f9a
RBJ
3919 rdev = (void*)raid_bi->bi_next;
3920 raid_bi->bi_next = NULL;
2b7f2228
N
3921 mddev = rdev->mddev;
3922 conf = mddev->private;
46031f9a
RBJ
3923
3924 rdev_dec_pending(rdev, conf->mddev);
3925
3926 if (!error && uptodate) {
0a82a8d1
LT
3927 trace_block_bio_complete(bdev_get_queue(raid_bi->bi_bdev),
3928 raid_bi, 0);
6712ecf8 3929 bio_endio(raid_bi, 0);
46031f9a
RBJ
3930 if (atomic_dec_and_test(&conf->active_aligned_reads))
3931 wake_up(&conf->wait_for_stripe);
6712ecf8 3932 return;
46031f9a
RBJ
3933 }
3934
3935
45b4233c 3936 pr_debug("raid5_align_endio : io error...handing IO for a retry\n");
46031f9a
RBJ
3937
3938 add_bio_to_retry(raid_bi, conf);
f679623f
RBJ
3939}
3940
387bb173
NB
3941static int bio_fits_rdev(struct bio *bi)
3942{
165125e1 3943 struct request_queue *q = bdev_get_queue(bi->bi_bdev);
387bb173 3944
aa8b57aa 3945 if (bio_sectors(bi) > queue_max_sectors(q))
387bb173
NB
3946 return 0;
3947 blk_recount_segments(q, bi);
8a78362c 3948 if (bi->bi_phys_segments > queue_max_segments(q))
387bb173
NB
3949 return 0;
3950
3951 if (q->merge_bvec_fn)
3952 /* it's too hard to apply the merge_bvec_fn at this stage,
3953 * just just give up
3954 */
3955 return 0;
3956
3957 return 1;
3958}
3959
3960
fd01b88c 3961static int chunk_aligned_read(struct mddev *mddev, struct bio * raid_bio)
f679623f 3962{
d1688a6d 3963 struct r5conf *conf = mddev->private;
8553fe7e 3964 int dd_idx;
f679623f 3965 struct bio* align_bi;
3cb03002 3966 struct md_rdev *rdev;
671488cc 3967 sector_t end_sector;
f679623f
RBJ
3968
3969 if (!in_chunk_boundary(mddev, raid_bio)) {
45b4233c 3970 pr_debug("chunk_aligned_read : non aligned\n");
f679623f
RBJ
3971 return 0;
3972 }
3973 /*
a167f663 3974 * use bio_clone_mddev to make a copy of the bio
f679623f 3975 */
a167f663 3976 align_bi = bio_clone_mddev(raid_bio, GFP_NOIO, mddev);
f679623f
RBJ
3977 if (!align_bi)
3978 return 0;
3979 /*
3980 * set bi_end_io to a new function, and set bi_private to the
3981 * original bio.
3982 */
3983 align_bi->bi_end_io = raid5_align_endio;
3984 align_bi->bi_private = raid_bio;
3985 /*
3986 * compute position
3987 */
112bf897
N
3988 align_bi->bi_sector = raid5_compute_sector(conf, raid_bio->bi_sector,
3989 0,
911d4ee8 3990 &dd_idx, NULL);
f679623f 3991
f73a1c7d 3992 end_sector = bio_end_sector(align_bi);
f679623f 3993 rcu_read_lock();
671488cc
N
3994 rdev = rcu_dereference(conf->disks[dd_idx].replacement);
3995 if (!rdev || test_bit(Faulty, &rdev->flags) ||
3996 rdev->recovery_offset < end_sector) {
3997 rdev = rcu_dereference(conf->disks[dd_idx].rdev);
3998 if (rdev &&
3999 (test_bit(Faulty, &rdev->flags) ||
4000 !(test_bit(In_sync, &rdev->flags) ||
4001 rdev->recovery_offset >= end_sector)))
4002 rdev = NULL;
4003 }
4004 if (rdev) {
31c176ec
N
4005 sector_t first_bad;
4006 int bad_sectors;
4007
f679623f
RBJ
4008 atomic_inc(&rdev->nr_pending);
4009 rcu_read_unlock();
46031f9a
RBJ
4010 raid_bio->bi_next = (void*)rdev;
4011 align_bi->bi_bdev = rdev->bdev;
4012 align_bi->bi_flags &= ~(1 << BIO_SEG_VALID);
46031f9a 4013
31c176ec 4014 if (!bio_fits_rdev(align_bi) ||
aa8b57aa 4015 is_badblock(rdev, align_bi->bi_sector, bio_sectors(align_bi),
31c176ec
N
4016 &first_bad, &bad_sectors)) {
4017 /* too big in some way, or has a known bad block */
387bb173
NB
4018 bio_put(align_bi);
4019 rdev_dec_pending(rdev, mddev);
4020 return 0;
4021 }
4022
6c0544e2 4023 /* No reshape active, so we can trust rdev->data_offset */
4024 align_bi->bi_sector += rdev->data_offset;
4025
46031f9a
RBJ
4026 spin_lock_irq(&conf->device_lock);
4027 wait_event_lock_irq(conf->wait_for_stripe,
4028 conf->quiesce == 0,
eed8c02e 4029 conf->device_lock);
46031f9a
RBJ
4030 atomic_inc(&conf->active_aligned_reads);
4031 spin_unlock_irq(&conf->device_lock);
4032
e3620a3a
JB
4033 if (mddev->gendisk)
4034 trace_block_bio_remap(bdev_get_queue(align_bi->bi_bdev),
4035 align_bi, disk_devt(mddev->gendisk),
4036 raid_bio->bi_sector);
f679623f
RBJ
4037 generic_make_request(align_bi);
4038 return 1;
4039 } else {
4040 rcu_read_unlock();
46031f9a 4041 bio_put(align_bi);
f679623f
RBJ
4042 return 0;
4043 }
4044}
4045
8b3e6cdc
DW
4046/* __get_priority_stripe - get the next stripe to process
4047 *
4048 * Full stripe writes are allowed to pass preread active stripes up until
4049 * the bypass_threshold is exceeded. In general the bypass_count
4050 * increments when the handle_list is handled before the hold_list; however, it
4051 * will not be incremented when STRIPE_IO_STARTED is sampled set signifying a
4052 * stripe with in flight i/o. The bypass_count will be reset when the
4053 * head of the hold_list has changed, i.e. the head was promoted to the
4054 * handle_list.
4055 */
d1688a6d 4056static struct stripe_head *__get_priority_stripe(struct r5conf *conf)
8b3e6cdc
DW
4057{
4058 struct stripe_head *sh;
4059
4060 pr_debug("%s: handle: %s hold: %s full_writes: %d bypass_count: %d\n",
4061 __func__,
4062 list_empty(&conf->handle_list) ? "empty" : "busy",
4063 list_empty(&conf->hold_list) ? "empty" : "busy",
4064 atomic_read(&conf->pending_full_writes), conf->bypass_count);
4065
4066 if (!list_empty(&conf->handle_list)) {
4067 sh = list_entry(conf->handle_list.next, typeof(*sh), lru);
4068
4069 if (list_empty(&conf->hold_list))
4070 conf->bypass_count = 0;
4071 else if (!test_bit(STRIPE_IO_STARTED, &sh->state)) {
4072 if (conf->hold_list.next == conf->last_hold)
4073 conf->bypass_count++;
4074 else {
4075 conf->last_hold = conf->hold_list.next;
4076 conf->bypass_count -= conf->bypass_threshold;
4077 if (conf->bypass_count < 0)
4078 conf->bypass_count = 0;
4079 }
4080 }
4081 } else if (!list_empty(&conf->hold_list) &&
4082 ((conf->bypass_threshold &&
4083 conf->bypass_count > conf->bypass_threshold) ||
4084 atomic_read(&conf->pending_full_writes) == 0)) {
4085 sh = list_entry(conf->hold_list.next,
4086 typeof(*sh), lru);
4087 conf->bypass_count -= conf->bypass_threshold;
4088 if (conf->bypass_count < 0)
4089 conf->bypass_count = 0;
4090 } else
4091 return NULL;
4092
4093 list_del_init(&sh->lru);
4094 atomic_inc(&sh->count);
4095 BUG_ON(atomic_read(&sh->count) != 1);
4096 return sh;
4097}
f679623f 4098
8811b596
SL
4099struct raid5_plug_cb {
4100 struct blk_plug_cb cb;
4101 struct list_head list;
4102};
4103
4104static void raid5_unplug(struct blk_plug_cb *blk_cb, bool from_schedule)
4105{
4106 struct raid5_plug_cb *cb = container_of(
4107 blk_cb, struct raid5_plug_cb, cb);
4108 struct stripe_head *sh;
4109 struct mddev *mddev = cb->cb.data;
4110 struct r5conf *conf = mddev->private;
a9add5d9 4111 int cnt = 0;
8811b596
SL
4112
4113 if (cb->list.next && !list_empty(&cb->list)) {
4114 spin_lock_irq(&conf->device_lock);
4115 while (!list_empty(&cb->list)) {
4116 sh = list_first_entry(&cb->list, struct stripe_head, lru);
4117 list_del_init(&sh->lru);
4118 /*
4119 * avoid race release_stripe_plug() sees
4120 * STRIPE_ON_UNPLUG_LIST clear but the stripe
4121 * is still in our list
4122 */
4123 smp_mb__before_clear_bit();
4124 clear_bit(STRIPE_ON_UNPLUG_LIST, &sh->state);
4125 __release_stripe(conf, sh);
a9add5d9 4126 cnt++;
8811b596
SL
4127 }
4128 spin_unlock_irq(&conf->device_lock);
4129 }
e3620a3a
JB
4130 if (mddev->queue)
4131 trace_block_unplug(mddev->queue, cnt, !from_schedule);
8811b596
SL
4132 kfree(cb);
4133}
4134
4135static void release_stripe_plug(struct mddev *mddev,
4136 struct stripe_head *sh)
4137{
4138 struct blk_plug_cb *blk_cb = blk_check_plugged(
4139 raid5_unplug, mddev,
4140 sizeof(struct raid5_plug_cb));
4141 struct raid5_plug_cb *cb;
4142
4143 if (!blk_cb) {
4144 release_stripe(sh);
4145 return;
4146 }
4147
4148 cb = container_of(blk_cb, struct raid5_plug_cb, cb);
4149
4150 if (cb->list.next == NULL)
4151 INIT_LIST_HEAD(&cb->list);
4152
4153 if (!test_and_set_bit(STRIPE_ON_UNPLUG_LIST, &sh->state))
4154 list_add_tail(&sh->lru, &cb->list);
4155 else
4156 release_stripe(sh);
4157}
4158
620125f2
SL
4159static void make_discard_request(struct mddev *mddev, struct bio *bi)
4160{
4161 struct r5conf *conf = mddev->private;
4162 sector_t logical_sector, last_sector;
4163 struct stripe_head *sh;
4164 int remaining;
4165 int stripe_sectors;
4166
4167 if (mddev->reshape_position != MaxSector)
4168 /* Skip discard while reshape is happening */
4169 return;
4170
4171 logical_sector = bi->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
4172 last_sector = bi->bi_sector + (bi->bi_size>>9);
4173
4174 bi->bi_next = NULL;
4175 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
4176
4177 stripe_sectors = conf->chunk_sectors *
4178 (conf->raid_disks - conf->max_degraded);
4179 logical_sector = DIV_ROUND_UP_SECTOR_T(logical_sector,
4180 stripe_sectors);
4181 sector_div(last_sector, stripe_sectors);
4182
4183 logical_sector *= conf->chunk_sectors;
4184 last_sector *= conf->chunk_sectors;
4185
4186 for (; logical_sector < last_sector;
4187 logical_sector += STRIPE_SECTORS) {
4188 DEFINE_WAIT(w);
4189 int d;
4190 again:
4191 sh = get_active_stripe(conf, logical_sector, 0, 0, 0);
4192 prepare_to_wait(&conf->wait_for_overlap, &w,
4193 TASK_UNINTERRUPTIBLE);
f8dfcffd
N
4194 set_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags);
4195 if (test_bit(STRIPE_SYNCING, &sh->state)) {
4196 release_stripe(sh);
4197 schedule();
4198 goto again;
4199 }
4200 clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags);
620125f2
SL
4201 spin_lock_irq(&sh->stripe_lock);
4202 for (d = 0; d < conf->raid_disks; d++) {
4203 if (d == sh->pd_idx || d == sh->qd_idx)
4204 continue;
4205 if (sh->dev[d].towrite || sh->dev[d].toread) {
4206 set_bit(R5_Overlap, &sh->dev[d].flags);
4207 spin_unlock_irq(&sh->stripe_lock);
4208 release_stripe(sh);
4209 schedule();
4210 goto again;
4211 }
4212 }
f8dfcffd 4213 set_bit(STRIPE_DISCARD, &sh->state);
620125f2
SL
4214 finish_wait(&conf->wait_for_overlap, &w);
4215 for (d = 0; d < conf->raid_disks; d++) {
4216 if (d == sh->pd_idx || d == sh->qd_idx)
4217 continue;
4218 sh->dev[d].towrite = bi;
4219 set_bit(R5_OVERWRITE, &sh->dev[d].flags);
4220 raid5_inc_bi_active_stripes(bi);
4221 }
4222 spin_unlock_irq(&sh->stripe_lock);
4223 if (conf->mddev->bitmap) {
4224 for (d = 0;
4225 d < conf->raid_disks - conf->max_degraded;
4226 d++)
4227 bitmap_startwrite(mddev->bitmap,
4228 sh->sector,
4229 STRIPE_SECTORS,
4230 0);
4231 sh->bm_seq = conf->seq_flush + 1;
4232 set_bit(STRIPE_BIT_DELAY, &sh->state);
4233 }
4234
4235 set_bit(STRIPE_HANDLE, &sh->state);
4236 clear_bit(STRIPE_DELAYED, &sh->state);
4237 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
4238 atomic_inc(&conf->preread_active_stripes);
4239 release_stripe_plug(mddev, sh);
4240 }
4241
4242 remaining = raid5_dec_bi_active_stripes(bi);
4243 if (remaining == 0) {
4244 md_write_end(mddev);
4245 bio_endio(bi, 0);
4246 }
4247}
4248
b4fdcb02 4249static void make_request(struct mddev *mddev, struct bio * bi)
1da177e4 4250{
d1688a6d 4251 struct r5conf *conf = mddev->private;
911d4ee8 4252 int dd_idx;
1da177e4
LT
4253 sector_t new_sector;
4254 sector_t logical_sector, last_sector;
4255 struct stripe_head *sh;
a362357b 4256 const int rw = bio_data_dir(bi);
49077326 4257 int remaining;
1da177e4 4258
e9c7469b
TH
4259 if (unlikely(bi->bi_rw & REQ_FLUSH)) {
4260 md_flush_request(mddev, bi);
5a7bbad2 4261 return;
e5dcdd80
N
4262 }
4263
3d310eb7 4264 md_write_start(mddev, bi);
06d91a5f 4265
802ba064 4266 if (rw == READ &&
52488615 4267 mddev->reshape_position == MaxSector &&
21a52c6d 4268 chunk_aligned_read(mddev,bi))
5a7bbad2 4269 return;
52488615 4270
620125f2
SL
4271 if (unlikely(bi->bi_rw & REQ_DISCARD)) {
4272 make_discard_request(mddev, bi);
4273 return;
4274 }
4275
1da177e4 4276 logical_sector = bi->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
f73a1c7d 4277 last_sector = bio_end_sector(bi);
1da177e4
LT
4278 bi->bi_next = NULL;
4279 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
06d91a5f 4280
1da177e4
LT
4281 for (;logical_sector < last_sector; logical_sector += STRIPE_SECTORS) {
4282 DEFINE_WAIT(w);
b5663ba4 4283 int previous;
b578d55f 4284
7ecaa1e6 4285 retry:
b5663ba4 4286 previous = 0;
b578d55f 4287 prepare_to_wait(&conf->wait_for_overlap, &w, TASK_UNINTERRUPTIBLE);
b0f9ec04 4288 if (unlikely(conf->reshape_progress != MaxSector)) {
fef9c61f 4289 /* spinlock is needed as reshape_progress may be
df8e7f76
N
4290 * 64bit on a 32bit platform, and so it might be
4291 * possible to see a half-updated value
aeb878b0 4292 * Of course reshape_progress could change after
df8e7f76
N
4293 * the lock is dropped, so once we get a reference
4294 * to the stripe that we think it is, we will have
4295 * to check again.
4296 */
7ecaa1e6 4297 spin_lock_irq(&conf->device_lock);
2c810cdd 4298 if (mddev->reshape_backwards
fef9c61f
N
4299 ? logical_sector < conf->reshape_progress
4300 : logical_sector >= conf->reshape_progress) {
b5663ba4
N
4301 previous = 1;
4302 } else {
2c810cdd 4303 if (mddev->reshape_backwards
fef9c61f
N
4304 ? logical_sector < conf->reshape_safe
4305 : logical_sector >= conf->reshape_safe) {
b578d55f
N
4306 spin_unlock_irq(&conf->device_lock);
4307 schedule();
4308 goto retry;
4309 }
4310 }
7ecaa1e6
N
4311 spin_unlock_irq(&conf->device_lock);
4312 }
16a53ecc 4313
112bf897
N
4314 new_sector = raid5_compute_sector(conf, logical_sector,
4315 previous,
911d4ee8 4316 &dd_idx, NULL);
0c55e022 4317 pr_debug("raid456: make_request, sector %llu logical %llu\n",
1da177e4
LT
4318 (unsigned long long)new_sector,
4319 (unsigned long long)logical_sector);
4320
b5663ba4 4321 sh = get_active_stripe(conf, new_sector, previous,
a8c906ca 4322 (bi->bi_rw&RWA_MASK), 0);
1da177e4 4323 if (sh) {
b0f9ec04 4324 if (unlikely(previous)) {
7ecaa1e6 4325 /* expansion might have moved on while waiting for a
df8e7f76
N
4326 * stripe, so we must do the range check again.
4327 * Expansion could still move past after this
4328 * test, but as we are holding a reference to
4329 * 'sh', we know that if that happens,
4330 * STRIPE_EXPANDING will get set and the expansion
4331 * won't proceed until we finish with the stripe.
7ecaa1e6
N
4332 */
4333 int must_retry = 0;
4334 spin_lock_irq(&conf->device_lock);
2c810cdd 4335 if (mddev->reshape_backwards
b0f9ec04
N
4336 ? logical_sector >= conf->reshape_progress
4337 : logical_sector < conf->reshape_progress)
7ecaa1e6
N
4338 /* mismatch, need to try again */
4339 must_retry = 1;
4340 spin_unlock_irq(&conf->device_lock);
4341 if (must_retry) {
4342 release_stripe(sh);
7a3ab908 4343 schedule();
7ecaa1e6
N
4344 goto retry;
4345 }
4346 }
e62e58a5 4347
ffd96e35 4348 if (rw == WRITE &&
a5c308d4 4349 logical_sector >= mddev->suspend_lo &&
e464eafd
N
4350 logical_sector < mddev->suspend_hi) {
4351 release_stripe(sh);
e62e58a5
N
4352 /* As the suspend_* range is controlled by
4353 * userspace, we want an interruptible
4354 * wait.
4355 */
4356 flush_signals(current);
4357 prepare_to_wait(&conf->wait_for_overlap,
4358 &w, TASK_INTERRUPTIBLE);
4359 if (logical_sector >= mddev->suspend_lo &&
4360 logical_sector < mddev->suspend_hi)
4361 schedule();
e464eafd
N
4362 goto retry;
4363 }
7ecaa1e6
N
4364
4365 if (test_bit(STRIPE_EXPANDING, &sh->state) ||
ffd96e35 4366 !add_stripe_bio(sh, bi, dd_idx, rw)) {
7ecaa1e6
N
4367 /* Stripe is busy expanding or
4368 * add failed due to overlap. Flush everything
1da177e4
LT
4369 * and wait a while
4370 */
482c0834 4371 md_wakeup_thread(mddev->thread);
1da177e4
LT
4372 release_stripe(sh);
4373 schedule();
4374 goto retry;
4375 }
4376 finish_wait(&conf->wait_for_overlap, &w);
6ed3003c
N
4377 set_bit(STRIPE_HANDLE, &sh->state);
4378 clear_bit(STRIPE_DELAYED, &sh->state);
a852d7b8 4379 if ((bi->bi_rw & REQ_SYNC) &&
729a1866
N
4380 !test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
4381 atomic_inc(&conf->preread_active_stripes);
8811b596 4382 release_stripe_plug(mddev, sh);
1da177e4
LT
4383 } else {
4384 /* cannot get stripe for read-ahead, just give-up */
4385 clear_bit(BIO_UPTODATE, &bi->bi_flags);
4386 finish_wait(&conf->wait_for_overlap, &w);
4387 break;
4388 }
1da177e4 4389 }
7c13edc8 4390
e7836bd6 4391 remaining = raid5_dec_bi_active_stripes(bi);
f6344757 4392 if (remaining == 0) {
1da177e4 4393
16a53ecc 4394 if ( rw == WRITE )
1da177e4 4395 md_write_end(mddev);
6712ecf8 4396
0a82a8d1
LT
4397 trace_block_bio_complete(bdev_get_queue(bi->bi_bdev),
4398 bi, 0);
0e13fe23 4399 bio_endio(bi, 0);
1da177e4 4400 }
1da177e4
LT
4401}
4402
fd01b88c 4403static sector_t raid5_size(struct mddev *mddev, sector_t sectors, int raid_disks);
b522adcd 4404
fd01b88c 4405static sector_t reshape_request(struct mddev *mddev, sector_t sector_nr, int *skipped)
1da177e4 4406{
52c03291
N
4407 /* reshaping is quite different to recovery/resync so it is
4408 * handled quite separately ... here.
4409 *
4410 * On each call to sync_request, we gather one chunk worth of
4411 * destination stripes and flag them as expanding.
4412 * Then we find all the source stripes and request reads.
4413 * As the reads complete, handle_stripe will copy the data
4414 * into the destination stripe and release that stripe.
4415 */
d1688a6d 4416 struct r5conf *conf = mddev->private;
1da177e4 4417 struct stripe_head *sh;
ccfcc3c1 4418 sector_t first_sector, last_sector;
f416885e
N
4419 int raid_disks = conf->previous_raid_disks;
4420 int data_disks = raid_disks - conf->max_degraded;
4421 int new_data_disks = conf->raid_disks - conf->max_degraded;
52c03291
N
4422 int i;
4423 int dd_idx;
c8f517c4 4424 sector_t writepos, readpos, safepos;
ec32a2bd 4425 sector_t stripe_addr;
7a661381 4426 int reshape_sectors;
ab69ae12 4427 struct list_head stripes;
52c03291 4428
fef9c61f
N
4429 if (sector_nr == 0) {
4430 /* If restarting in the middle, skip the initial sectors */
2c810cdd 4431 if (mddev->reshape_backwards &&
fef9c61f
N
4432 conf->reshape_progress < raid5_size(mddev, 0, 0)) {
4433 sector_nr = raid5_size(mddev, 0, 0)
4434 - conf->reshape_progress;
2c810cdd 4435 } else if (!mddev->reshape_backwards &&
fef9c61f
N
4436 conf->reshape_progress > 0)
4437 sector_nr = conf->reshape_progress;
f416885e 4438 sector_div(sector_nr, new_data_disks);
fef9c61f 4439 if (sector_nr) {
8dee7211
N
4440 mddev->curr_resync_completed = sector_nr;
4441 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
fef9c61f
N
4442 *skipped = 1;
4443 return sector_nr;
4444 }
52c03291
N
4445 }
4446
7a661381
N
4447 /* We need to process a full chunk at a time.
4448 * If old and new chunk sizes differ, we need to process the
4449 * largest of these
4450 */
664e7c41
AN
4451 if (mddev->new_chunk_sectors > mddev->chunk_sectors)
4452 reshape_sectors = mddev->new_chunk_sectors;
7a661381 4453 else
9d8f0363 4454 reshape_sectors = mddev->chunk_sectors;
7a661381 4455
b5254dd5
N
4456 /* We update the metadata at least every 10 seconds, or when
4457 * the data about to be copied would over-write the source of
4458 * the data at the front of the range. i.e. one new_stripe
4459 * along from reshape_progress new_maps to after where
4460 * reshape_safe old_maps to
52c03291 4461 */
fef9c61f 4462 writepos = conf->reshape_progress;
f416885e 4463 sector_div(writepos, new_data_disks);
c8f517c4
N
4464 readpos = conf->reshape_progress;
4465 sector_div(readpos, data_disks);
fef9c61f 4466 safepos = conf->reshape_safe;
f416885e 4467 sector_div(safepos, data_disks);
2c810cdd 4468 if (mddev->reshape_backwards) {
ed37d83e 4469 writepos -= min_t(sector_t, reshape_sectors, writepos);
c8f517c4 4470 readpos += reshape_sectors;
7a661381 4471 safepos += reshape_sectors;
fef9c61f 4472 } else {
7a661381 4473 writepos += reshape_sectors;
ed37d83e
N
4474 readpos -= min_t(sector_t, reshape_sectors, readpos);
4475 safepos -= min_t(sector_t, reshape_sectors, safepos);
fef9c61f 4476 }
52c03291 4477
b5254dd5
N
4478 /* Having calculated the 'writepos' possibly use it
4479 * to set 'stripe_addr' which is where we will write to.
4480 */
4481 if (mddev->reshape_backwards) {
4482 BUG_ON(conf->reshape_progress == 0);
4483 stripe_addr = writepos;
4484 BUG_ON((mddev->dev_sectors &
4485 ~((sector_t)reshape_sectors - 1))
4486 - reshape_sectors - stripe_addr
4487 != sector_nr);
4488 } else {
4489 BUG_ON(writepos != sector_nr + reshape_sectors);
4490 stripe_addr = sector_nr;
4491 }
4492
c8f517c4
N
4493 /* 'writepos' is the most advanced device address we might write.
4494 * 'readpos' is the least advanced device address we might read.
4495 * 'safepos' is the least address recorded in the metadata as having
4496 * been reshaped.
b5254dd5
N
4497 * If there is a min_offset_diff, these are adjusted either by
4498 * increasing the safepos/readpos if diff is negative, or
4499 * increasing writepos if diff is positive.
4500 * If 'readpos' is then behind 'writepos', there is no way that we can
c8f517c4
N
4501 * ensure safety in the face of a crash - that must be done by userspace
4502 * making a backup of the data. So in that case there is no particular
4503 * rush to update metadata.
4504 * Otherwise if 'safepos' is behind 'writepos', then we really need to
4505 * update the metadata to advance 'safepos' to match 'readpos' so that
4506 * we can be safe in the event of a crash.
4507 * So we insist on updating metadata if safepos is behind writepos and
4508 * readpos is beyond writepos.
4509 * In any case, update the metadata every 10 seconds.
4510 * Maybe that number should be configurable, but I'm not sure it is
4511 * worth it.... maybe it could be a multiple of safemode_delay???
4512 */
b5254dd5
N
4513 if (conf->min_offset_diff < 0) {
4514 safepos += -conf->min_offset_diff;
4515 readpos += -conf->min_offset_diff;
4516 } else
4517 writepos += conf->min_offset_diff;
4518
2c810cdd 4519 if ((mddev->reshape_backwards
c8f517c4
N
4520 ? (safepos > writepos && readpos < writepos)
4521 : (safepos < writepos && readpos > writepos)) ||
4522 time_after(jiffies, conf->reshape_checkpoint + 10*HZ)) {
52c03291
N
4523 /* Cannot proceed until we've updated the superblock... */
4524 wait_event(conf->wait_for_overlap,
4525 atomic_read(&conf->reshape_stripes)==0);
fef9c61f 4526 mddev->reshape_position = conf->reshape_progress;
75d3da43 4527 mddev->curr_resync_completed = sector_nr;
c8f517c4 4528 conf->reshape_checkpoint = jiffies;
850b2b42 4529 set_bit(MD_CHANGE_DEVS, &mddev->flags);
52c03291 4530 md_wakeup_thread(mddev->thread);
850b2b42 4531 wait_event(mddev->sb_wait, mddev->flags == 0 ||
52c03291
N
4532 kthread_should_stop());
4533 spin_lock_irq(&conf->device_lock);
fef9c61f 4534 conf->reshape_safe = mddev->reshape_position;
52c03291
N
4535 spin_unlock_irq(&conf->device_lock);
4536 wake_up(&conf->wait_for_overlap);
acb180b0 4537 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
52c03291
N
4538 }
4539
ab69ae12 4540 INIT_LIST_HEAD(&stripes);
7a661381 4541 for (i = 0; i < reshape_sectors; i += STRIPE_SECTORS) {
52c03291 4542 int j;
a9f326eb 4543 int skipped_disk = 0;
a8c906ca 4544 sh = get_active_stripe(conf, stripe_addr+i, 0, 0, 1);
52c03291
N
4545 set_bit(STRIPE_EXPANDING, &sh->state);
4546 atomic_inc(&conf->reshape_stripes);
4547 /* If any of this stripe is beyond the end of the old
4548 * array, then we need to zero those blocks
4549 */
4550 for (j=sh->disks; j--;) {
4551 sector_t s;
4552 if (j == sh->pd_idx)
4553 continue;
f416885e 4554 if (conf->level == 6 &&
d0dabf7e 4555 j == sh->qd_idx)
f416885e 4556 continue;
784052ec 4557 s = compute_blocknr(sh, j, 0);
b522adcd 4558 if (s < raid5_size(mddev, 0, 0)) {
a9f326eb 4559 skipped_disk = 1;
52c03291
N
4560 continue;
4561 }
4562 memset(page_address(sh->dev[j].page), 0, STRIPE_SIZE);
4563 set_bit(R5_Expanded, &sh->dev[j].flags);
4564 set_bit(R5_UPTODATE, &sh->dev[j].flags);
4565 }
a9f326eb 4566 if (!skipped_disk) {
52c03291
N
4567 set_bit(STRIPE_EXPAND_READY, &sh->state);
4568 set_bit(STRIPE_HANDLE, &sh->state);
4569 }
ab69ae12 4570 list_add(&sh->lru, &stripes);
52c03291
N
4571 }
4572 spin_lock_irq(&conf->device_lock);
2c810cdd 4573 if (mddev->reshape_backwards)
7a661381 4574 conf->reshape_progress -= reshape_sectors * new_data_disks;
fef9c61f 4575 else
7a661381 4576 conf->reshape_progress += reshape_sectors * new_data_disks;
52c03291
N
4577 spin_unlock_irq(&conf->device_lock);
4578 /* Ok, those stripe are ready. We can start scheduling
4579 * reads on the source stripes.
4580 * The source stripes are determined by mapping the first and last
4581 * block on the destination stripes.
4582 */
52c03291 4583 first_sector =
ec32a2bd 4584 raid5_compute_sector(conf, stripe_addr*(new_data_disks),
911d4ee8 4585 1, &dd_idx, NULL);
52c03291 4586 last_sector =
0e6e0271 4587 raid5_compute_sector(conf, ((stripe_addr+reshape_sectors)
09c9e5fa 4588 * new_data_disks - 1),
911d4ee8 4589 1, &dd_idx, NULL);
58c0fed4
AN
4590 if (last_sector >= mddev->dev_sectors)
4591 last_sector = mddev->dev_sectors - 1;
52c03291 4592 while (first_sector <= last_sector) {
a8c906ca 4593 sh = get_active_stripe(conf, first_sector, 1, 0, 1);
52c03291
N
4594 set_bit(STRIPE_EXPAND_SOURCE, &sh->state);
4595 set_bit(STRIPE_HANDLE, &sh->state);
4596 release_stripe(sh);
4597 first_sector += STRIPE_SECTORS;
4598 }
ab69ae12
N
4599 /* Now that the sources are clearly marked, we can release
4600 * the destination stripes
4601 */
4602 while (!list_empty(&stripes)) {
4603 sh = list_entry(stripes.next, struct stripe_head, lru);
4604 list_del_init(&sh->lru);
4605 release_stripe(sh);
4606 }
c6207277
N
4607 /* If this takes us to the resync_max point where we have to pause,
4608 * then we need to write out the superblock.
4609 */
7a661381 4610 sector_nr += reshape_sectors;
c03f6a19
N
4611 if ((sector_nr - mddev->curr_resync_completed) * 2
4612 >= mddev->resync_max - mddev->curr_resync_completed) {
c6207277
N
4613 /* Cannot proceed until we've updated the superblock... */
4614 wait_event(conf->wait_for_overlap,
4615 atomic_read(&conf->reshape_stripes) == 0);
fef9c61f 4616 mddev->reshape_position = conf->reshape_progress;
75d3da43 4617 mddev->curr_resync_completed = sector_nr;
c8f517c4 4618 conf->reshape_checkpoint = jiffies;
c6207277
N
4619 set_bit(MD_CHANGE_DEVS, &mddev->flags);
4620 md_wakeup_thread(mddev->thread);
4621 wait_event(mddev->sb_wait,
4622 !test_bit(MD_CHANGE_DEVS, &mddev->flags)
4623 || kthread_should_stop());
4624 spin_lock_irq(&conf->device_lock);
fef9c61f 4625 conf->reshape_safe = mddev->reshape_position;
c6207277
N
4626 spin_unlock_irq(&conf->device_lock);
4627 wake_up(&conf->wait_for_overlap);
acb180b0 4628 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
c6207277 4629 }
7a661381 4630 return reshape_sectors;
52c03291
N
4631}
4632
4633/* FIXME go_faster isn't used */
fd01b88c 4634static inline sector_t sync_request(struct mddev *mddev, sector_t sector_nr, int *skipped, int go_faster)
52c03291 4635{
d1688a6d 4636 struct r5conf *conf = mddev->private;
52c03291 4637 struct stripe_head *sh;
58c0fed4 4638 sector_t max_sector = mddev->dev_sectors;
57dab0bd 4639 sector_t sync_blocks;
16a53ecc
N
4640 int still_degraded = 0;
4641 int i;
1da177e4 4642
72626685 4643 if (sector_nr >= max_sector) {
1da177e4 4644 /* just being told to finish up .. nothing much to do */
cea9c228 4645
29269553
N
4646 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery)) {
4647 end_reshape(conf);
4648 return 0;
4649 }
72626685
N
4650
4651 if (mddev->curr_resync < max_sector) /* aborted */
4652 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
4653 &sync_blocks, 1);
16a53ecc 4654 else /* completed sync */
72626685
N
4655 conf->fullsync = 0;
4656 bitmap_close_sync(mddev->bitmap);
4657
1da177e4
LT
4658 return 0;
4659 }
ccfcc3c1 4660
64bd660b
N
4661 /* Allow raid5_quiesce to complete */
4662 wait_event(conf->wait_for_overlap, conf->quiesce != 2);
4663
52c03291
N
4664 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery))
4665 return reshape_request(mddev, sector_nr, skipped);
f6705578 4666
c6207277
N
4667 /* No need to check resync_max as we never do more than one
4668 * stripe, and as resync_max will always be on a chunk boundary,
4669 * if the check in md_do_sync didn't fire, there is no chance
4670 * of overstepping resync_max here
4671 */
4672
16a53ecc 4673 /* if there is too many failed drives and we are trying
1da177e4
LT
4674 * to resync, then assert that we are finished, because there is
4675 * nothing we can do.
4676 */
3285edf1 4677 if (mddev->degraded >= conf->max_degraded &&
16a53ecc 4678 test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
58c0fed4 4679 sector_t rv = mddev->dev_sectors - sector_nr;
57afd89f 4680 *skipped = 1;
1da177e4
LT
4681 return rv;
4682 }
6f608040 4683 if (!test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
4684 !conf->fullsync &&
4685 !bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
4686 sync_blocks >= STRIPE_SECTORS) {
72626685
N
4687 /* we can skip this block, and probably more */
4688 sync_blocks /= STRIPE_SECTORS;
4689 *skipped = 1;
4690 return sync_blocks * STRIPE_SECTORS; /* keep things rounded to whole stripes */
4691 }
1da177e4 4692
b47490c9
N
4693 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
4694
a8c906ca 4695 sh = get_active_stripe(conf, sector_nr, 0, 1, 0);
1da177e4 4696 if (sh == NULL) {
a8c906ca 4697 sh = get_active_stripe(conf, sector_nr, 0, 0, 0);
1da177e4 4698 /* make sure we don't swamp the stripe cache if someone else
16a53ecc 4699 * is trying to get access
1da177e4 4700 */
66c006a5 4701 schedule_timeout_uninterruptible(1);
1da177e4 4702 }
16a53ecc
N
4703 /* Need to check if array will still be degraded after recovery/resync
4704 * We don't need to check the 'failed' flag as when that gets set,
4705 * recovery aborts.
4706 */
f001a70c 4707 for (i = 0; i < conf->raid_disks; i++)
16a53ecc
N
4708 if (conf->disks[i].rdev == NULL)
4709 still_degraded = 1;
4710
4711 bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, still_degraded);
4712
83206d66 4713 set_bit(STRIPE_SYNC_REQUESTED, &sh->state);
1da177e4 4714
1442577b 4715 handle_stripe(sh);
1da177e4
LT
4716 release_stripe(sh);
4717
4718 return STRIPE_SECTORS;
4719}
4720
d1688a6d 4721static int retry_aligned_read(struct r5conf *conf, struct bio *raid_bio)
46031f9a
RBJ
4722{
4723 /* We may not be able to submit a whole bio at once as there
4724 * may not be enough stripe_heads available.
4725 * We cannot pre-allocate enough stripe_heads as we may need
4726 * more than exist in the cache (if we allow ever large chunks).
4727 * So we do one stripe head at a time and record in
4728 * ->bi_hw_segments how many have been done.
4729 *
4730 * We *know* that this entire raid_bio is in one chunk, so
4731 * it will be only one 'dd_idx' and only need one call to raid5_compute_sector.
4732 */
4733 struct stripe_head *sh;
911d4ee8 4734 int dd_idx;
46031f9a
RBJ
4735 sector_t sector, logical_sector, last_sector;
4736 int scnt = 0;
4737 int remaining;
4738 int handled = 0;
4739
4740 logical_sector = raid_bio->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
112bf897 4741 sector = raid5_compute_sector(conf, logical_sector,
911d4ee8 4742 0, &dd_idx, NULL);
f73a1c7d 4743 last_sector = bio_end_sector(raid_bio);
46031f9a
RBJ
4744
4745 for (; logical_sector < last_sector;
387bb173
NB
4746 logical_sector += STRIPE_SECTORS,
4747 sector += STRIPE_SECTORS,
4748 scnt++) {
46031f9a 4749
e7836bd6 4750 if (scnt < raid5_bi_processed_stripes(raid_bio))
46031f9a
RBJ
4751 /* already done this stripe */
4752 continue;
4753
a8c906ca 4754 sh = get_active_stripe(conf, sector, 0, 1, 0);
46031f9a
RBJ
4755
4756 if (!sh) {
4757 /* failed to get a stripe - must wait */
e7836bd6 4758 raid5_set_bi_processed_stripes(raid_bio, scnt);
46031f9a
RBJ
4759 conf->retry_read_aligned = raid_bio;
4760 return handled;
4761 }
4762
387bb173
NB
4763 if (!add_stripe_bio(sh, raid_bio, dd_idx, 0)) {
4764 release_stripe(sh);
e7836bd6 4765 raid5_set_bi_processed_stripes(raid_bio, scnt);
387bb173
NB
4766 conf->retry_read_aligned = raid_bio;
4767 return handled;
4768 }
4769
3f9e7c14 4770 set_bit(R5_ReadNoMerge, &sh->dev[dd_idx].flags);
36d1c647 4771 handle_stripe(sh);
46031f9a
RBJ
4772 release_stripe(sh);
4773 handled++;
4774 }
e7836bd6 4775 remaining = raid5_dec_bi_active_stripes(raid_bio);
0a82a8d1
LT
4776 if (remaining == 0) {
4777 trace_block_bio_complete(bdev_get_queue(raid_bio->bi_bdev),
4778 raid_bio, 0);
0e13fe23 4779 bio_endio(raid_bio, 0);
0a82a8d1 4780 }
46031f9a
RBJ
4781 if (atomic_dec_and_test(&conf->active_aligned_reads))
4782 wake_up(&conf->wait_for_stripe);
4783 return handled;
4784}
4785
46a06401
SL
4786#define MAX_STRIPE_BATCH 8
4787static int handle_active_stripes(struct r5conf *conf)
4788{
4789 struct stripe_head *batch[MAX_STRIPE_BATCH], *sh;
4790 int i, batch_size = 0;
4791
4792 while (batch_size < MAX_STRIPE_BATCH &&
4793 (sh = __get_priority_stripe(conf)) != NULL)
4794 batch[batch_size++] = sh;
4795
4796 if (batch_size == 0)
4797 return batch_size;
4798 spin_unlock_irq(&conf->device_lock);
4799
4800 for (i = 0; i < batch_size; i++)
4801 handle_stripe(batch[i]);
4802
4803 cond_resched();
4804
4805 spin_lock_irq(&conf->device_lock);
4806 for (i = 0; i < batch_size; i++)
4807 __release_stripe(conf, batch[i]);
4808 return batch_size;
4809}
46031f9a 4810
1da177e4
LT
4811/*
4812 * This is our raid5 kernel thread.
4813 *
4814 * We scan the hash table for stripes which can be handled now.
4815 * During the scan, completed stripes are saved for us by the interrupt
4816 * handler, so that they will not have to wait for our next wakeup.
4817 */
4ed8731d 4818static void raid5d(struct md_thread *thread)
1da177e4 4819{
4ed8731d 4820 struct mddev *mddev = thread->mddev;
d1688a6d 4821 struct r5conf *conf = mddev->private;
1da177e4 4822 int handled;
e1dfa0a2 4823 struct blk_plug plug;
1da177e4 4824
45b4233c 4825 pr_debug("+++ raid5d active\n");
1da177e4
LT
4826
4827 md_check_recovery(mddev);
1da177e4 4828
e1dfa0a2 4829 blk_start_plug(&plug);
1da177e4
LT
4830 handled = 0;
4831 spin_lock_irq(&conf->device_lock);
4832 while (1) {
46031f9a 4833 struct bio *bio;
46a06401 4834 int batch_size;
1da177e4 4835
0021b7bc 4836 if (
7c13edc8
N
4837 !list_empty(&conf->bitmap_list)) {
4838 /* Now is a good time to flush some bitmap updates */
4839 conf->seq_flush++;
700e432d 4840 spin_unlock_irq(&conf->device_lock);
72626685 4841 bitmap_unplug(mddev->bitmap);
700e432d 4842 spin_lock_irq(&conf->device_lock);
7c13edc8 4843 conf->seq_write = conf->seq_flush;
72626685
N
4844 activate_bit_delay(conf);
4845 }
0021b7bc 4846 raid5_activate_delayed(conf);
72626685 4847
46031f9a
RBJ
4848 while ((bio = remove_bio_from_retry(conf))) {
4849 int ok;
4850 spin_unlock_irq(&conf->device_lock);
4851 ok = retry_aligned_read(conf, bio);
4852 spin_lock_irq(&conf->device_lock);
4853 if (!ok)
4854 break;
4855 handled++;
4856 }
4857
46a06401
SL
4858 batch_size = handle_active_stripes(conf);
4859 if (!batch_size)
1da177e4 4860 break;
46a06401 4861 handled += batch_size;
1da177e4 4862
46a06401
SL
4863 if (mddev->flags & ~(1<<MD_CHANGE_PENDING)) {
4864 spin_unlock_irq(&conf->device_lock);
de393cde 4865 md_check_recovery(mddev);
46a06401
SL
4866 spin_lock_irq(&conf->device_lock);
4867 }
1da177e4 4868 }
45b4233c 4869 pr_debug("%d stripes handled\n", handled);
1da177e4
LT
4870
4871 spin_unlock_irq(&conf->device_lock);
4872
c9f21aaf 4873 async_tx_issue_pending_all();
e1dfa0a2 4874 blk_finish_plug(&plug);
1da177e4 4875
45b4233c 4876 pr_debug("--- raid5d inactive\n");
1da177e4
LT
4877}
4878
3f294f4f 4879static ssize_t
fd01b88c 4880raid5_show_stripe_cache_size(struct mddev *mddev, char *page)
3f294f4f 4881{
d1688a6d 4882 struct r5conf *conf = mddev->private;
96de1e66
N
4883 if (conf)
4884 return sprintf(page, "%d\n", conf->max_nr_stripes);
4885 else
4886 return 0;
3f294f4f
N
4887}
4888
c41d4ac4 4889int
fd01b88c 4890raid5_set_cache_size(struct mddev *mddev, int size)
3f294f4f 4891{
d1688a6d 4892 struct r5conf *conf = mddev->private;
b5470dc5
DW
4893 int err;
4894
c41d4ac4 4895 if (size <= 16 || size > 32768)
3f294f4f 4896 return -EINVAL;
c41d4ac4 4897 while (size < conf->max_nr_stripes) {
3f294f4f
N
4898 if (drop_one_stripe(conf))
4899 conf->max_nr_stripes--;
4900 else
4901 break;
4902 }
b5470dc5
DW
4903 err = md_allow_write(mddev);
4904 if (err)
4905 return err;
c41d4ac4 4906 while (size > conf->max_nr_stripes) {
3f294f4f
N
4907 if (grow_one_stripe(conf))
4908 conf->max_nr_stripes++;
4909 else break;
4910 }
c41d4ac4
N
4911 return 0;
4912}
4913EXPORT_SYMBOL(raid5_set_cache_size);
4914
4915static ssize_t
fd01b88c 4916raid5_store_stripe_cache_size(struct mddev *mddev, const char *page, size_t len)
c41d4ac4 4917{
d1688a6d 4918 struct r5conf *conf = mddev->private;
c41d4ac4
N
4919 unsigned long new;
4920 int err;
4921
4922 if (len >= PAGE_SIZE)
4923 return -EINVAL;
4924 if (!conf)
4925 return -ENODEV;
4926
4927 if (strict_strtoul(page, 10, &new))
4928 return -EINVAL;
4929 err = raid5_set_cache_size(mddev, new);
4930 if (err)
4931 return err;
3f294f4f
N
4932 return len;
4933}
007583c9 4934
96de1e66
N
4935static struct md_sysfs_entry
4936raid5_stripecache_size = __ATTR(stripe_cache_size, S_IRUGO | S_IWUSR,
4937 raid5_show_stripe_cache_size,
4938 raid5_store_stripe_cache_size);
3f294f4f 4939
8b3e6cdc 4940static ssize_t
fd01b88c 4941raid5_show_preread_threshold(struct mddev *mddev, char *page)
8b3e6cdc 4942{
d1688a6d 4943 struct r5conf *conf = mddev->private;
8b3e6cdc
DW
4944 if (conf)
4945 return sprintf(page, "%d\n", conf->bypass_threshold);
4946 else
4947 return 0;
4948}
4949
4950static ssize_t
fd01b88c 4951raid5_store_preread_threshold(struct mddev *mddev, const char *page, size_t len)
8b3e6cdc 4952{
d1688a6d 4953 struct r5conf *conf = mddev->private;
4ef197d8 4954 unsigned long new;
8b3e6cdc
DW
4955 if (len >= PAGE_SIZE)
4956 return -EINVAL;
4957 if (!conf)
4958 return -ENODEV;
4959
4ef197d8 4960 if (strict_strtoul(page, 10, &new))
8b3e6cdc 4961 return -EINVAL;
4ef197d8 4962 if (new > conf->max_nr_stripes)
8b3e6cdc
DW
4963 return -EINVAL;
4964 conf->bypass_threshold = new;
4965 return len;
4966}
4967
4968static struct md_sysfs_entry
4969raid5_preread_bypass_threshold = __ATTR(preread_bypass_threshold,
4970 S_IRUGO | S_IWUSR,
4971 raid5_show_preread_threshold,
4972 raid5_store_preread_threshold);
4973
3f294f4f 4974static ssize_t
fd01b88c 4975stripe_cache_active_show(struct mddev *mddev, char *page)
3f294f4f 4976{
d1688a6d 4977 struct r5conf *conf = mddev->private;
96de1e66
N
4978 if (conf)
4979 return sprintf(page, "%d\n", atomic_read(&conf->active_stripes));
4980 else
4981 return 0;
3f294f4f
N
4982}
4983
96de1e66
N
4984static struct md_sysfs_entry
4985raid5_stripecache_active = __ATTR_RO(stripe_cache_active);
3f294f4f 4986
007583c9 4987static struct attribute *raid5_attrs[] = {
3f294f4f
N
4988 &raid5_stripecache_size.attr,
4989 &raid5_stripecache_active.attr,
8b3e6cdc 4990 &raid5_preread_bypass_threshold.attr,
3f294f4f
N
4991 NULL,
4992};
007583c9
N
4993static struct attribute_group raid5_attrs_group = {
4994 .name = NULL,
4995 .attrs = raid5_attrs,
3f294f4f
N
4996};
4997
80c3a6ce 4998static sector_t
fd01b88c 4999raid5_size(struct mddev *mddev, sector_t sectors, int raid_disks)
80c3a6ce 5000{
d1688a6d 5001 struct r5conf *conf = mddev->private;
80c3a6ce
DW
5002
5003 if (!sectors)
5004 sectors = mddev->dev_sectors;
5e5e3e78 5005 if (!raid_disks)
7ec05478 5006 /* size is defined by the smallest of previous and new size */
5e5e3e78 5007 raid_disks = min(conf->raid_disks, conf->previous_raid_disks);
80c3a6ce 5008
9d8f0363 5009 sectors &= ~((sector_t)mddev->chunk_sectors - 1);
664e7c41 5010 sectors &= ~((sector_t)mddev->new_chunk_sectors - 1);
80c3a6ce
DW
5011 return sectors * (raid_disks - conf->max_degraded);
5012}
5013
d1688a6d 5014static void raid5_free_percpu(struct r5conf *conf)
36d1c647
DW
5015{
5016 struct raid5_percpu *percpu;
5017 unsigned long cpu;
5018
5019 if (!conf->percpu)
5020 return;
5021
5022 get_online_cpus();
5023 for_each_possible_cpu(cpu) {
5024 percpu = per_cpu_ptr(conf->percpu, cpu);
5025 safe_put_page(percpu->spare_page);
d6f38f31 5026 kfree(percpu->scribble);
36d1c647
DW
5027 }
5028#ifdef CONFIG_HOTPLUG_CPU
5029 unregister_cpu_notifier(&conf->cpu_notify);
5030#endif
5031 put_online_cpus();
5032
5033 free_percpu(conf->percpu);
5034}
5035
d1688a6d 5036static void free_conf(struct r5conf *conf)
95fc17aa
DW
5037{
5038 shrink_stripes(conf);
36d1c647 5039 raid5_free_percpu(conf);
95fc17aa
DW
5040 kfree(conf->disks);
5041 kfree(conf->stripe_hashtbl);
5042 kfree(conf);
5043}
5044
36d1c647
DW
5045#ifdef CONFIG_HOTPLUG_CPU
5046static int raid456_cpu_notify(struct notifier_block *nfb, unsigned long action,
5047 void *hcpu)
5048{
d1688a6d 5049 struct r5conf *conf = container_of(nfb, struct r5conf, cpu_notify);
36d1c647
DW
5050 long cpu = (long)hcpu;
5051 struct raid5_percpu *percpu = per_cpu_ptr(conf->percpu, cpu);
5052
5053 switch (action) {
5054 case CPU_UP_PREPARE:
5055 case CPU_UP_PREPARE_FROZEN:
d6f38f31 5056 if (conf->level == 6 && !percpu->spare_page)
36d1c647 5057 percpu->spare_page = alloc_page(GFP_KERNEL);
d6f38f31
DW
5058 if (!percpu->scribble)
5059 percpu->scribble = kmalloc(conf->scribble_len, GFP_KERNEL);
5060
5061 if (!percpu->scribble ||
5062 (conf->level == 6 && !percpu->spare_page)) {
5063 safe_put_page(percpu->spare_page);
5064 kfree(percpu->scribble);
36d1c647
DW
5065 pr_err("%s: failed memory allocation for cpu%ld\n",
5066 __func__, cpu);
55af6bb5 5067 return notifier_from_errno(-ENOMEM);
36d1c647
DW
5068 }
5069 break;
5070 case CPU_DEAD:
5071 case CPU_DEAD_FROZEN:
5072 safe_put_page(percpu->spare_page);
d6f38f31 5073 kfree(percpu->scribble);
36d1c647 5074 percpu->spare_page = NULL;
d6f38f31 5075 percpu->scribble = NULL;
36d1c647
DW
5076 break;
5077 default:
5078 break;
5079 }
5080 return NOTIFY_OK;
5081}
5082#endif
5083
d1688a6d 5084static int raid5_alloc_percpu(struct r5conf *conf)
36d1c647
DW
5085{
5086 unsigned long cpu;
5087 struct page *spare_page;
a29d8b8e 5088 struct raid5_percpu __percpu *allcpus;
d6f38f31 5089 void *scribble;
36d1c647
DW
5090 int err;
5091
36d1c647
DW
5092 allcpus = alloc_percpu(struct raid5_percpu);
5093 if (!allcpus)
5094 return -ENOMEM;
5095 conf->percpu = allcpus;
5096
5097 get_online_cpus();
5098 err = 0;
5099 for_each_present_cpu(cpu) {
d6f38f31
DW
5100 if (conf->level == 6) {
5101 spare_page = alloc_page(GFP_KERNEL);
5102 if (!spare_page) {
5103 err = -ENOMEM;
5104 break;
5105 }
5106 per_cpu_ptr(conf->percpu, cpu)->spare_page = spare_page;
5107 }
5e5e3e78 5108 scribble = kmalloc(conf->scribble_len, GFP_KERNEL);
d6f38f31 5109 if (!scribble) {
36d1c647
DW
5110 err = -ENOMEM;
5111 break;
5112 }
d6f38f31 5113 per_cpu_ptr(conf->percpu, cpu)->scribble = scribble;
36d1c647
DW
5114 }
5115#ifdef CONFIG_HOTPLUG_CPU
5116 conf->cpu_notify.notifier_call = raid456_cpu_notify;
5117 conf->cpu_notify.priority = 0;
5118 if (err == 0)
5119 err = register_cpu_notifier(&conf->cpu_notify);
5120#endif
5121 put_online_cpus();
5122
5123 return err;
5124}
5125
d1688a6d 5126static struct r5conf *setup_conf(struct mddev *mddev)
1da177e4 5127{
d1688a6d 5128 struct r5conf *conf;
5e5e3e78 5129 int raid_disk, memory, max_disks;
3cb03002 5130 struct md_rdev *rdev;
1da177e4 5131 struct disk_info *disk;
0232605d 5132 char pers_name[6];
1da177e4 5133
91adb564
N
5134 if (mddev->new_level != 5
5135 && mddev->new_level != 4
5136 && mddev->new_level != 6) {
0c55e022 5137 printk(KERN_ERR "md/raid:%s: raid level not set to 4/5/6 (%d)\n",
91adb564
N
5138 mdname(mddev), mddev->new_level);
5139 return ERR_PTR(-EIO);
1da177e4 5140 }
91adb564
N
5141 if ((mddev->new_level == 5
5142 && !algorithm_valid_raid5(mddev->new_layout)) ||
5143 (mddev->new_level == 6
5144 && !algorithm_valid_raid6(mddev->new_layout))) {
0c55e022 5145 printk(KERN_ERR "md/raid:%s: layout %d not supported\n",
91adb564
N
5146 mdname(mddev), mddev->new_layout);
5147 return ERR_PTR(-EIO);
99c0fb5f 5148 }
91adb564 5149 if (mddev->new_level == 6 && mddev->raid_disks < 4) {
0c55e022 5150 printk(KERN_ERR "md/raid:%s: not enough configured devices (%d, minimum 4)\n",
91adb564
N
5151 mdname(mddev), mddev->raid_disks);
5152 return ERR_PTR(-EINVAL);
4bbf3771
N
5153 }
5154
664e7c41
AN
5155 if (!mddev->new_chunk_sectors ||
5156 (mddev->new_chunk_sectors << 9) % PAGE_SIZE ||
5157 !is_power_of_2(mddev->new_chunk_sectors)) {
0c55e022
N
5158 printk(KERN_ERR "md/raid:%s: invalid chunk size %d\n",
5159 mdname(mddev), mddev->new_chunk_sectors << 9);
91adb564 5160 return ERR_PTR(-EINVAL);
f6705578
N
5161 }
5162
d1688a6d 5163 conf = kzalloc(sizeof(struct r5conf), GFP_KERNEL);
91adb564 5164 if (conf == NULL)
1da177e4 5165 goto abort;
f5efd45a
DW
5166 spin_lock_init(&conf->device_lock);
5167 init_waitqueue_head(&conf->wait_for_stripe);
5168 init_waitqueue_head(&conf->wait_for_overlap);
5169 INIT_LIST_HEAD(&conf->handle_list);
5170 INIT_LIST_HEAD(&conf->hold_list);
5171 INIT_LIST_HEAD(&conf->delayed_list);
5172 INIT_LIST_HEAD(&conf->bitmap_list);
5173 INIT_LIST_HEAD(&conf->inactive_list);
5174 atomic_set(&conf->active_stripes, 0);
5175 atomic_set(&conf->preread_active_stripes, 0);
5176 atomic_set(&conf->active_aligned_reads, 0);
5177 conf->bypass_threshold = BYPASS_THRESHOLD;
d890fa2b 5178 conf->recovery_disabled = mddev->recovery_disabled - 1;
91adb564
N
5179
5180 conf->raid_disks = mddev->raid_disks;
5181 if (mddev->reshape_position == MaxSector)
5182 conf->previous_raid_disks = mddev->raid_disks;
5183 else
f6705578 5184 conf->previous_raid_disks = mddev->raid_disks - mddev->delta_disks;
5e5e3e78
N
5185 max_disks = max(conf->raid_disks, conf->previous_raid_disks);
5186 conf->scribble_len = scribble_len(max_disks);
f6705578 5187
5e5e3e78 5188 conf->disks = kzalloc(max_disks * sizeof(struct disk_info),
b55e6bfc
N
5189 GFP_KERNEL);
5190 if (!conf->disks)
5191 goto abort;
9ffae0cf 5192
1da177e4
LT
5193 conf->mddev = mddev;
5194
fccddba0 5195 if ((conf->stripe_hashtbl = kzalloc(PAGE_SIZE, GFP_KERNEL)) == NULL)
1da177e4 5196 goto abort;
1da177e4 5197
36d1c647
DW
5198 conf->level = mddev->new_level;
5199 if (raid5_alloc_percpu(conf) != 0)
5200 goto abort;
5201
0c55e022 5202 pr_debug("raid456: run(%s) called.\n", mdname(mddev));
1da177e4 5203
dafb20fa 5204 rdev_for_each(rdev, mddev) {
1da177e4 5205 raid_disk = rdev->raid_disk;
5e5e3e78 5206 if (raid_disk >= max_disks
1da177e4
LT
5207 || raid_disk < 0)
5208 continue;
5209 disk = conf->disks + raid_disk;
5210
17045f52
N
5211 if (test_bit(Replacement, &rdev->flags)) {
5212 if (disk->replacement)
5213 goto abort;
5214 disk->replacement = rdev;
5215 } else {
5216 if (disk->rdev)
5217 goto abort;
5218 disk->rdev = rdev;
5219 }
1da177e4 5220
b2d444d7 5221 if (test_bit(In_sync, &rdev->flags)) {
1da177e4 5222 char b[BDEVNAME_SIZE];
0c55e022
N
5223 printk(KERN_INFO "md/raid:%s: device %s operational as raid"
5224 " disk %d\n",
5225 mdname(mddev), bdevname(rdev->bdev, b), raid_disk);
d6b212f4 5226 } else if (rdev->saved_raid_disk != raid_disk)
8c2e870a
NB
5227 /* Cannot rely on bitmap to complete recovery */
5228 conf->fullsync = 1;
1da177e4
LT
5229 }
5230
09c9e5fa 5231 conf->chunk_sectors = mddev->new_chunk_sectors;
91adb564 5232 conf->level = mddev->new_level;
16a53ecc
N
5233 if (conf->level == 6)
5234 conf->max_degraded = 2;
5235 else
5236 conf->max_degraded = 1;
91adb564 5237 conf->algorithm = mddev->new_layout;
1da177e4 5238 conf->max_nr_stripes = NR_STRIPES;
fef9c61f 5239 conf->reshape_progress = mddev->reshape_position;
e183eaed 5240 if (conf->reshape_progress != MaxSector) {
09c9e5fa 5241 conf->prev_chunk_sectors = mddev->chunk_sectors;
e183eaed
N
5242 conf->prev_algo = mddev->layout;
5243 }
1da177e4 5244
91adb564 5245 memory = conf->max_nr_stripes * (sizeof(struct stripe_head) +
5e5e3e78 5246 max_disks * ((sizeof(struct bio) + PAGE_SIZE))) / 1024;
91adb564
N
5247 if (grow_stripes(conf, conf->max_nr_stripes)) {
5248 printk(KERN_ERR
0c55e022
N
5249 "md/raid:%s: couldn't allocate %dkB for buffers\n",
5250 mdname(mddev), memory);
91adb564
N
5251 goto abort;
5252 } else
0c55e022
N
5253 printk(KERN_INFO "md/raid:%s: allocated %dkB\n",
5254 mdname(mddev), memory);
1da177e4 5255
0232605d
N
5256 sprintf(pers_name, "raid%d", mddev->new_level);
5257 conf->thread = md_register_thread(raid5d, mddev, pers_name);
91adb564
N
5258 if (!conf->thread) {
5259 printk(KERN_ERR
0c55e022 5260 "md/raid:%s: couldn't allocate thread.\n",
91adb564 5261 mdname(mddev));
16a53ecc
N
5262 goto abort;
5263 }
91adb564
N
5264
5265 return conf;
5266
5267 abort:
5268 if (conf) {
95fc17aa 5269 free_conf(conf);
91adb564
N
5270 return ERR_PTR(-EIO);
5271 } else
5272 return ERR_PTR(-ENOMEM);
5273}
5274
c148ffdc
N
5275
5276static int only_parity(int raid_disk, int algo, int raid_disks, int max_degraded)
5277{
5278 switch (algo) {
5279 case ALGORITHM_PARITY_0:
5280 if (raid_disk < max_degraded)
5281 return 1;
5282 break;
5283 case ALGORITHM_PARITY_N:
5284 if (raid_disk >= raid_disks - max_degraded)
5285 return 1;
5286 break;
5287 case ALGORITHM_PARITY_0_6:
5288 if (raid_disk == 0 ||
5289 raid_disk == raid_disks - 1)
5290 return 1;
5291 break;
5292 case ALGORITHM_LEFT_ASYMMETRIC_6:
5293 case ALGORITHM_RIGHT_ASYMMETRIC_6:
5294 case ALGORITHM_LEFT_SYMMETRIC_6:
5295 case ALGORITHM_RIGHT_SYMMETRIC_6:
5296 if (raid_disk == raid_disks - 1)
5297 return 1;
5298 }
5299 return 0;
5300}
5301
fd01b88c 5302static int run(struct mddev *mddev)
91adb564 5303{
d1688a6d 5304 struct r5conf *conf;
9f7c2220 5305 int working_disks = 0;
c148ffdc 5306 int dirty_parity_disks = 0;
3cb03002 5307 struct md_rdev *rdev;
c148ffdc 5308 sector_t reshape_offset = 0;
17045f52 5309 int i;
b5254dd5
N
5310 long long min_offset_diff = 0;
5311 int first = 1;
91adb564 5312
8c6ac868 5313 if (mddev->recovery_cp != MaxSector)
0c55e022 5314 printk(KERN_NOTICE "md/raid:%s: not clean"
8c6ac868
AN
5315 " -- starting background reconstruction\n",
5316 mdname(mddev));
b5254dd5
N
5317
5318 rdev_for_each(rdev, mddev) {
5319 long long diff;
5320 if (rdev->raid_disk < 0)
5321 continue;
5322 diff = (rdev->new_data_offset - rdev->data_offset);
5323 if (first) {
5324 min_offset_diff = diff;
5325 first = 0;
5326 } else if (mddev->reshape_backwards &&
5327 diff < min_offset_diff)
5328 min_offset_diff = diff;
5329 else if (!mddev->reshape_backwards &&
5330 diff > min_offset_diff)
5331 min_offset_diff = diff;
5332 }
5333
91adb564
N
5334 if (mddev->reshape_position != MaxSector) {
5335 /* Check that we can continue the reshape.
b5254dd5
N
5336 * Difficulties arise if the stripe we would write to
5337 * next is at or after the stripe we would read from next.
5338 * For a reshape that changes the number of devices, this
5339 * is only possible for a very short time, and mdadm makes
5340 * sure that time appears to have past before assembling
5341 * the array. So we fail if that time hasn't passed.
5342 * For a reshape that keeps the number of devices the same
5343 * mdadm must be monitoring the reshape can keeping the
5344 * critical areas read-only and backed up. It will start
5345 * the array in read-only mode, so we check for that.
91adb564
N
5346 */
5347 sector_t here_new, here_old;
5348 int old_disks;
18b00334 5349 int max_degraded = (mddev->level == 6 ? 2 : 1);
91adb564 5350
88ce4930 5351 if (mddev->new_level != mddev->level) {
0c55e022 5352 printk(KERN_ERR "md/raid:%s: unsupported reshape "
91adb564
N
5353 "required - aborting.\n",
5354 mdname(mddev));
5355 return -EINVAL;
5356 }
91adb564
N
5357 old_disks = mddev->raid_disks - mddev->delta_disks;
5358 /* reshape_position must be on a new-stripe boundary, and one
5359 * further up in new geometry must map after here in old
5360 * geometry.
5361 */
5362 here_new = mddev->reshape_position;
664e7c41 5363 if (sector_div(here_new, mddev->new_chunk_sectors *
91adb564 5364 (mddev->raid_disks - max_degraded))) {
0c55e022
N
5365 printk(KERN_ERR "md/raid:%s: reshape_position not "
5366 "on a stripe boundary\n", mdname(mddev));
91adb564
N
5367 return -EINVAL;
5368 }
c148ffdc 5369 reshape_offset = here_new * mddev->new_chunk_sectors;
91adb564
N
5370 /* here_new is the stripe we will write to */
5371 here_old = mddev->reshape_position;
9d8f0363 5372 sector_div(here_old, mddev->chunk_sectors *
91adb564
N
5373 (old_disks-max_degraded));
5374 /* here_old is the first stripe that we might need to read
5375 * from */
67ac6011 5376 if (mddev->delta_disks == 0) {
b5254dd5
N
5377 if ((here_new * mddev->new_chunk_sectors !=
5378 here_old * mddev->chunk_sectors)) {
5379 printk(KERN_ERR "md/raid:%s: reshape position is"
5380 " confused - aborting\n", mdname(mddev));
5381 return -EINVAL;
5382 }
67ac6011 5383 /* We cannot be sure it is safe to start an in-place
b5254dd5 5384 * reshape. It is only safe if user-space is monitoring
67ac6011
N
5385 * and taking constant backups.
5386 * mdadm always starts a situation like this in
5387 * readonly mode so it can take control before
5388 * allowing any writes. So just check for that.
5389 */
b5254dd5
N
5390 if (abs(min_offset_diff) >= mddev->chunk_sectors &&
5391 abs(min_offset_diff) >= mddev->new_chunk_sectors)
5392 /* not really in-place - so OK */;
5393 else if (mddev->ro == 0) {
5394 printk(KERN_ERR "md/raid:%s: in-place reshape "
5395 "must be started in read-only mode "
5396 "- aborting\n",
0c55e022 5397 mdname(mddev));
67ac6011
N
5398 return -EINVAL;
5399 }
2c810cdd 5400 } else if (mddev->reshape_backwards
b5254dd5 5401 ? (here_new * mddev->new_chunk_sectors + min_offset_diff <=
67ac6011
N
5402 here_old * mddev->chunk_sectors)
5403 : (here_new * mddev->new_chunk_sectors >=
b5254dd5 5404 here_old * mddev->chunk_sectors + (-min_offset_diff))) {
91adb564 5405 /* Reading from the same stripe as writing to - bad */
0c55e022
N
5406 printk(KERN_ERR "md/raid:%s: reshape_position too early for "
5407 "auto-recovery - aborting.\n",
5408 mdname(mddev));
91adb564
N
5409 return -EINVAL;
5410 }
0c55e022
N
5411 printk(KERN_INFO "md/raid:%s: reshape will continue\n",
5412 mdname(mddev));
91adb564
N
5413 /* OK, we should be able to continue; */
5414 } else {
5415 BUG_ON(mddev->level != mddev->new_level);
5416 BUG_ON(mddev->layout != mddev->new_layout);
664e7c41 5417 BUG_ON(mddev->chunk_sectors != mddev->new_chunk_sectors);
91adb564 5418 BUG_ON(mddev->delta_disks != 0);
1da177e4 5419 }
91adb564 5420
245f46c2
N
5421 if (mddev->private == NULL)
5422 conf = setup_conf(mddev);
5423 else
5424 conf = mddev->private;
5425
91adb564
N
5426 if (IS_ERR(conf))
5427 return PTR_ERR(conf);
5428
b5254dd5 5429 conf->min_offset_diff = min_offset_diff;
91adb564
N
5430 mddev->thread = conf->thread;
5431 conf->thread = NULL;
5432 mddev->private = conf;
5433
17045f52
N
5434 for (i = 0; i < conf->raid_disks && conf->previous_raid_disks;
5435 i++) {
5436 rdev = conf->disks[i].rdev;
5437 if (!rdev && conf->disks[i].replacement) {
5438 /* The replacement is all we have yet */
5439 rdev = conf->disks[i].replacement;
5440 conf->disks[i].replacement = NULL;
5441 clear_bit(Replacement, &rdev->flags);
5442 conf->disks[i].rdev = rdev;
5443 }
5444 if (!rdev)
c148ffdc 5445 continue;
17045f52
N
5446 if (conf->disks[i].replacement &&
5447 conf->reshape_progress != MaxSector) {
5448 /* replacements and reshape simply do not mix. */
5449 printk(KERN_ERR "md: cannot handle concurrent "
5450 "replacement and reshape.\n");
5451 goto abort;
5452 }
2f115882 5453 if (test_bit(In_sync, &rdev->flags)) {
91adb564 5454 working_disks++;
2f115882
N
5455 continue;
5456 }
c148ffdc
N
5457 /* This disc is not fully in-sync. However if it
5458 * just stored parity (beyond the recovery_offset),
5459 * when we don't need to be concerned about the
5460 * array being dirty.
5461 * When reshape goes 'backwards', we never have
5462 * partially completed devices, so we only need
5463 * to worry about reshape going forwards.
5464 */
5465 /* Hack because v0.91 doesn't store recovery_offset properly. */
5466 if (mddev->major_version == 0 &&
5467 mddev->minor_version > 90)
5468 rdev->recovery_offset = reshape_offset;
5026d7a9 5469
c148ffdc
N
5470 if (rdev->recovery_offset < reshape_offset) {
5471 /* We need to check old and new layout */
5472 if (!only_parity(rdev->raid_disk,
5473 conf->algorithm,
5474 conf->raid_disks,
5475 conf->max_degraded))
5476 continue;
5477 }
5478 if (!only_parity(rdev->raid_disk,
5479 conf->prev_algo,
5480 conf->previous_raid_disks,
5481 conf->max_degraded))
5482 continue;
5483 dirty_parity_disks++;
5484 }
91adb564 5485
17045f52
N
5486 /*
5487 * 0 for a fully functional array, 1 or 2 for a degraded array.
5488 */
908f4fbd 5489 mddev->degraded = calc_degraded(conf);
91adb564 5490
674806d6 5491 if (has_failed(conf)) {
0c55e022 5492 printk(KERN_ERR "md/raid:%s: not enough operational devices"
1da177e4 5493 " (%d/%d failed)\n",
02c2de8c 5494 mdname(mddev), mddev->degraded, conf->raid_disks);
1da177e4
LT
5495 goto abort;
5496 }
5497
91adb564 5498 /* device size must be a multiple of chunk size */
9d8f0363 5499 mddev->dev_sectors &= ~(mddev->chunk_sectors - 1);
91adb564
N
5500 mddev->resync_max_sectors = mddev->dev_sectors;
5501
c148ffdc 5502 if (mddev->degraded > dirty_parity_disks &&
1da177e4 5503 mddev->recovery_cp != MaxSector) {
6ff8d8ec
N
5504 if (mddev->ok_start_degraded)
5505 printk(KERN_WARNING
0c55e022
N
5506 "md/raid:%s: starting dirty degraded array"
5507 " - data corruption possible.\n",
6ff8d8ec
N
5508 mdname(mddev));
5509 else {
5510 printk(KERN_ERR
0c55e022 5511 "md/raid:%s: cannot start dirty degraded array.\n",
6ff8d8ec
N
5512 mdname(mddev));
5513 goto abort;
5514 }
1da177e4
LT
5515 }
5516
1da177e4 5517 if (mddev->degraded == 0)
0c55e022
N
5518 printk(KERN_INFO "md/raid:%s: raid level %d active with %d out of %d"
5519 " devices, algorithm %d\n", mdname(mddev), conf->level,
e183eaed
N
5520 mddev->raid_disks-mddev->degraded, mddev->raid_disks,
5521 mddev->new_layout);
1da177e4 5522 else
0c55e022
N
5523 printk(KERN_ALERT "md/raid:%s: raid level %d active with %d"
5524 " out of %d devices, algorithm %d\n",
5525 mdname(mddev), conf->level,
5526 mddev->raid_disks - mddev->degraded,
5527 mddev->raid_disks, mddev->new_layout);
1da177e4
LT
5528
5529 print_raid5_conf(conf);
5530
fef9c61f 5531 if (conf->reshape_progress != MaxSector) {
fef9c61f 5532 conf->reshape_safe = conf->reshape_progress;
f6705578
N
5533 atomic_set(&conf->reshape_stripes, 0);
5534 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
5535 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
5536 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
5537 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
5538 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
0da3c619 5539 "reshape");
f6705578
N
5540 }
5541
1da177e4
LT
5542
5543 /* Ok, everything is just fine now */
a64c876f
N
5544 if (mddev->to_remove == &raid5_attrs_group)
5545 mddev->to_remove = NULL;
00bcb4ac
N
5546 else if (mddev->kobj.sd &&
5547 sysfs_create_group(&mddev->kobj, &raid5_attrs_group))
5e55e2f5 5548 printk(KERN_WARNING
4a5add49 5549 "raid5: failed to create sysfs attributes for %s\n",
5e55e2f5 5550 mdname(mddev));
4a5add49 5551 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
7a5febe9 5552
4a5add49 5553 if (mddev->queue) {
9f7c2220 5554 int chunk_size;
620125f2 5555 bool discard_supported = true;
4a5add49
N
5556 /* read-ahead size must cover two whole stripes, which
5557 * is 2 * (datadisks) * chunksize where 'n' is the
5558 * number of raid devices
5559 */
5560 int data_disks = conf->previous_raid_disks - conf->max_degraded;
5561 int stripe = data_disks *
5562 ((mddev->chunk_sectors << 9) / PAGE_SIZE);
5563 if (mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
5564 mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
91adb564 5565
4a5add49 5566 blk_queue_merge_bvec(mddev->queue, raid5_mergeable_bvec);
f022b2fd 5567
11d8a6e3
N
5568 mddev->queue->backing_dev_info.congested_data = mddev;
5569 mddev->queue->backing_dev_info.congested_fn = raid5_congested;
7a5febe9 5570
9f7c2220
N
5571 chunk_size = mddev->chunk_sectors << 9;
5572 blk_queue_io_min(mddev->queue, chunk_size);
5573 blk_queue_io_opt(mddev->queue, chunk_size *
5574 (conf->raid_disks - conf->max_degraded));
620125f2
SL
5575 /*
5576 * We can only discard a whole stripe. It doesn't make sense to
5577 * discard data disk but write parity disk
5578 */
5579 stripe = stripe * PAGE_SIZE;
4ac6875e
N
5580 /* Round up to power of 2, as discard handling
5581 * currently assumes that */
5582 while ((stripe-1) & stripe)
5583 stripe = (stripe | (stripe-1)) + 1;
620125f2
SL
5584 mddev->queue->limits.discard_alignment = stripe;
5585 mddev->queue->limits.discard_granularity = stripe;
5586 /*
5587 * unaligned part of discard request will be ignored, so can't
5588 * guarantee discard_zerors_data
5589 */
5590 mddev->queue->limits.discard_zeroes_data = 0;
8f6c2e4b 5591
5026d7a9
PA
5592 blk_queue_max_write_same_sectors(mddev->queue, 0);
5593
05616be5 5594 rdev_for_each(rdev, mddev) {
9f7c2220
N
5595 disk_stack_limits(mddev->gendisk, rdev->bdev,
5596 rdev->data_offset << 9);
05616be5
N
5597 disk_stack_limits(mddev->gendisk, rdev->bdev,
5598 rdev->new_data_offset << 9);
620125f2
SL
5599 /*
5600 * discard_zeroes_data is required, otherwise data
5601 * could be lost. Consider a scenario: discard a stripe
5602 * (the stripe could be inconsistent if
5603 * discard_zeroes_data is 0); write one disk of the
5604 * stripe (the stripe could be inconsistent again
5605 * depending on which disks are used to calculate
5606 * parity); the disk is broken; The stripe data of this
5607 * disk is lost.
5608 */
5609 if (!blk_queue_discard(bdev_get_queue(rdev->bdev)) ||
5610 !bdev_get_queue(rdev->bdev)->
5611 limits.discard_zeroes_data)
5612 discard_supported = false;
05616be5 5613 }
620125f2
SL
5614
5615 if (discard_supported &&
5616 mddev->queue->limits.max_discard_sectors >= stripe &&
5617 mddev->queue->limits.discard_granularity >= stripe)
5618 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD,
5619 mddev->queue);
5620 else
5621 queue_flag_clear_unlocked(QUEUE_FLAG_DISCARD,
5622 mddev->queue);
9f7c2220 5623 }
23032a0e 5624
1da177e4
LT
5625 return 0;
5626abort:
01f96c0a 5627 md_unregister_thread(&mddev->thread);
e4f869d9
N
5628 print_raid5_conf(conf);
5629 free_conf(conf);
1da177e4 5630 mddev->private = NULL;
0c55e022 5631 printk(KERN_ALERT "md/raid:%s: failed to run raid set.\n", mdname(mddev));
1da177e4
LT
5632 return -EIO;
5633}
5634
fd01b88c 5635static int stop(struct mddev *mddev)
1da177e4 5636{
d1688a6d 5637 struct r5conf *conf = mddev->private;
1da177e4 5638
01f96c0a 5639 md_unregister_thread(&mddev->thread);
11d8a6e3
N
5640 if (mddev->queue)
5641 mddev->queue->backing_dev_info.congested_fn = NULL;
95fc17aa 5642 free_conf(conf);
a64c876f
N
5643 mddev->private = NULL;
5644 mddev->to_remove = &raid5_attrs_group;
1da177e4
LT
5645 return 0;
5646}
5647
fd01b88c 5648static void status(struct seq_file *seq, struct mddev *mddev)
1da177e4 5649{
d1688a6d 5650 struct r5conf *conf = mddev->private;
1da177e4
LT
5651 int i;
5652
9d8f0363
AN
5653 seq_printf(seq, " level %d, %dk chunk, algorithm %d", mddev->level,
5654 mddev->chunk_sectors / 2, mddev->layout);
02c2de8c 5655 seq_printf (seq, " [%d/%d] [", conf->raid_disks, conf->raid_disks - mddev->degraded);
1da177e4
LT
5656 for (i = 0; i < conf->raid_disks; i++)
5657 seq_printf (seq, "%s",
5658 conf->disks[i].rdev &&
b2d444d7 5659 test_bit(In_sync, &conf->disks[i].rdev->flags) ? "U" : "_");
1da177e4 5660 seq_printf (seq, "]");
1da177e4
LT
5661}
5662
d1688a6d 5663static void print_raid5_conf (struct r5conf *conf)
1da177e4
LT
5664{
5665 int i;
5666 struct disk_info *tmp;
5667
0c55e022 5668 printk(KERN_DEBUG "RAID conf printout:\n");
1da177e4
LT
5669 if (!conf) {
5670 printk("(conf==NULL)\n");
5671 return;
5672 }
0c55e022
N
5673 printk(KERN_DEBUG " --- level:%d rd:%d wd:%d\n", conf->level,
5674 conf->raid_disks,
5675 conf->raid_disks - conf->mddev->degraded);
1da177e4
LT
5676
5677 for (i = 0; i < conf->raid_disks; i++) {
5678 char b[BDEVNAME_SIZE];
5679 tmp = conf->disks + i;
5680 if (tmp->rdev)
0c55e022
N
5681 printk(KERN_DEBUG " disk %d, o:%d, dev:%s\n",
5682 i, !test_bit(Faulty, &tmp->rdev->flags),
5683 bdevname(tmp->rdev->bdev, b));
1da177e4
LT
5684 }
5685}
5686
fd01b88c 5687static int raid5_spare_active(struct mddev *mddev)
1da177e4
LT
5688{
5689 int i;
d1688a6d 5690 struct r5conf *conf = mddev->private;
1da177e4 5691 struct disk_info *tmp;
6b965620
N
5692 int count = 0;
5693 unsigned long flags;
1da177e4
LT
5694
5695 for (i = 0; i < conf->raid_disks; i++) {
5696 tmp = conf->disks + i;
dd054fce
N
5697 if (tmp->replacement
5698 && tmp->replacement->recovery_offset == MaxSector
5699 && !test_bit(Faulty, &tmp->replacement->flags)
5700 && !test_and_set_bit(In_sync, &tmp->replacement->flags)) {
5701 /* Replacement has just become active. */
5702 if (!tmp->rdev
5703 || !test_and_clear_bit(In_sync, &tmp->rdev->flags))
5704 count++;
5705 if (tmp->rdev) {
5706 /* Replaced device not technically faulty,
5707 * but we need to be sure it gets removed
5708 * and never re-added.
5709 */
5710 set_bit(Faulty, &tmp->rdev->flags);
5711 sysfs_notify_dirent_safe(
5712 tmp->rdev->sysfs_state);
5713 }
5714 sysfs_notify_dirent_safe(tmp->replacement->sysfs_state);
5715 } else if (tmp->rdev
70fffd0b 5716 && tmp->rdev->recovery_offset == MaxSector
b2d444d7 5717 && !test_bit(Faulty, &tmp->rdev->flags)
c04be0aa 5718 && !test_and_set_bit(In_sync, &tmp->rdev->flags)) {
6b965620 5719 count++;
43c73ca4 5720 sysfs_notify_dirent_safe(tmp->rdev->sysfs_state);
1da177e4
LT
5721 }
5722 }
6b965620 5723 spin_lock_irqsave(&conf->device_lock, flags);
908f4fbd 5724 mddev->degraded = calc_degraded(conf);
6b965620 5725 spin_unlock_irqrestore(&conf->device_lock, flags);
1da177e4 5726 print_raid5_conf(conf);
6b965620 5727 return count;
1da177e4
LT
5728}
5729
b8321b68 5730static int raid5_remove_disk(struct mddev *mddev, struct md_rdev *rdev)
1da177e4 5731{
d1688a6d 5732 struct r5conf *conf = mddev->private;
1da177e4 5733 int err = 0;
b8321b68 5734 int number = rdev->raid_disk;
657e3e4d 5735 struct md_rdev **rdevp;
1da177e4
LT
5736 struct disk_info *p = conf->disks + number;
5737
5738 print_raid5_conf(conf);
657e3e4d
N
5739 if (rdev == p->rdev)
5740 rdevp = &p->rdev;
5741 else if (rdev == p->replacement)
5742 rdevp = &p->replacement;
5743 else
5744 return 0;
5745
5746 if (number >= conf->raid_disks &&
5747 conf->reshape_progress == MaxSector)
5748 clear_bit(In_sync, &rdev->flags);
5749
5750 if (test_bit(In_sync, &rdev->flags) ||
5751 atomic_read(&rdev->nr_pending)) {
5752 err = -EBUSY;
5753 goto abort;
5754 }
5755 /* Only remove non-faulty devices if recovery
5756 * isn't possible.
5757 */
5758 if (!test_bit(Faulty, &rdev->flags) &&
5759 mddev->recovery_disabled != conf->recovery_disabled &&
5760 !has_failed(conf) &&
dd054fce 5761 (!p->replacement || p->replacement == rdev) &&
657e3e4d
N
5762 number < conf->raid_disks) {
5763 err = -EBUSY;
5764 goto abort;
5765 }
5766 *rdevp = NULL;
5767 synchronize_rcu();
5768 if (atomic_read(&rdev->nr_pending)) {
5769 /* lost the race, try later */
5770 err = -EBUSY;
5771 *rdevp = rdev;
dd054fce
N
5772 } else if (p->replacement) {
5773 /* We must have just cleared 'rdev' */
5774 p->rdev = p->replacement;
5775 clear_bit(Replacement, &p->replacement->flags);
5776 smp_mb(); /* Make sure other CPUs may see both as identical
5777 * but will never see neither - if they are careful
5778 */
5779 p->replacement = NULL;
5780 clear_bit(WantReplacement, &rdev->flags);
5781 } else
5782 /* We might have just removed the Replacement as faulty-
5783 * clear the bit just in case
5784 */
5785 clear_bit(WantReplacement, &rdev->flags);
1da177e4
LT
5786abort:
5787
5788 print_raid5_conf(conf);
5789 return err;
5790}
5791
fd01b88c 5792static int raid5_add_disk(struct mddev *mddev, struct md_rdev *rdev)
1da177e4 5793{
d1688a6d 5794 struct r5conf *conf = mddev->private;
199050ea 5795 int err = -EEXIST;
1da177e4
LT
5796 int disk;
5797 struct disk_info *p;
6c2fce2e
NB
5798 int first = 0;
5799 int last = conf->raid_disks - 1;
1da177e4 5800
7f0da59b
N
5801 if (mddev->recovery_disabled == conf->recovery_disabled)
5802 return -EBUSY;
5803
dc10c643 5804 if (rdev->saved_raid_disk < 0 && has_failed(conf))
1da177e4 5805 /* no point adding a device */
199050ea 5806 return -EINVAL;
1da177e4 5807
6c2fce2e
NB
5808 if (rdev->raid_disk >= 0)
5809 first = last = rdev->raid_disk;
1da177e4
LT
5810
5811 /*
16a53ecc
N
5812 * find the disk ... but prefer rdev->saved_raid_disk
5813 * if possible.
1da177e4 5814 */
16a53ecc 5815 if (rdev->saved_raid_disk >= 0 &&
6c2fce2e 5816 rdev->saved_raid_disk >= first &&
16a53ecc 5817 conf->disks[rdev->saved_raid_disk].rdev == NULL)
5cfb22a1
N
5818 first = rdev->saved_raid_disk;
5819
5820 for (disk = first; disk <= last; disk++) {
7bfec5f3
N
5821 p = conf->disks + disk;
5822 if (p->rdev == NULL) {
b2d444d7 5823 clear_bit(In_sync, &rdev->flags);
1da177e4 5824 rdev->raid_disk = disk;
199050ea 5825 err = 0;
72626685
N
5826 if (rdev->saved_raid_disk != disk)
5827 conf->fullsync = 1;
d6065f7b 5828 rcu_assign_pointer(p->rdev, rdev);
5cfb22a1 5829 goto out;
1da177e4 5830 }
5cfb22a1
N
5831 }
5832 for (disk = first; disk <= last; disk++) {
5833 p = conf->disks + disk;
7bfec5f3
N
5834 if (test_bit(WantReplacement, &p->rdev->flags) &&
5835 p->replacement == NULL) {
5836 clear_bit(In_sync, &rdev->flags);
5837 set_bit(Replacement, &rdev->flags);
5838 rdev->raid_disk = disk;
5839 err = 0;
5840 conf->fullsync = 1;
5841 rcu_assign_pointer(p->replacement, rdev);
5842 break;
5843 }
5844 }
5cfb22a1 5845out:
1da177e4 5846 print_raid5_conf(conf);
199050ea 5847 return err;
1da177e4
LT
5848}
5849
fd01b88c 5850static int raid5_resize(struct mddev *mddev, sector_t sectors)
1da177e4
LT
5851{
5852 /* no resync is happening, and there is enough space
5853 * on all devices, so we can resize.
5854 * We need to make sure resync covers any new space.
5855 * If the array is shrinking we should possibly wait until
5856 * any io in the removed space completes, but it hardly seems
5857 * worth it.
5858 */
a4a6125a 5859 sector_t newsize;
9d8f0363 5860 sectors &= ~((sector_t)mddev->chunk_sectors - 1);
a4a6125a
N
5861 newsize = raid5_size(mddev, sectors, mddev->raid_disks);
5862 if (mddev->external_size &&
5863 mddev->array_sectors > newsize)
b522adcd 5864 return -EINVAL;
a4a6125a
N
5865 if (mddev->bitmap) {
5866 int ret = bitmap_resize(mddev->bitmap, sectors, 0, 0);
5867 if (ret)
5868 return ret;
5869 }
5870 md_set_array_sectors(mddev, newsize);
f233ea5c 5871 set_capacity(mddev->gendisk, mddev->array_sectors);
449aad3e 5872 revalidate_disk(mddev->gendisk);
b098636c
N
5873 if (sectors > mddev->dev_sectors &&
5874 mddev->recovery_cp > mddev->dev_sectors) {
58c0fed4 5875 mddev->recovery_cp = mddev->dev_sectors;
1da177e4
LT
5876 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
5877 }
58c0fed4 5878 mddev->dev_sectors = sectors;
4b5c7ae8 5879 mddev->resync_max_sectors = sectors;
1da177e4
LT
5880 return 0;
5881}
5882
fd01b88c 5883static int check_stripe_cache(struct mddev *mddev)
01ee22b4
N
5884{
5885 /* Can only proceed if there are plenty of stripe_heads.
5886 * We need a minimum of one full stripe,, and for sensible progress
5887 * it is best to have about 4 times that.
5888 * If we require 4 times, then the default 256 4K stripe_heads will
5889 * allow for chunk sizes up to 256K, which is probably OK.
5890 * If the chunk size is greater, user-space should request more
5891 * stripe_heads first.
5892 */
d1688a6d 5893 struct r5conf *conf = mddev->private;
01ee22b4
N
5894 if (((mddev->chunk_sectors << 9) / STRIPE_SIZE) * 4
5895 > conf->max_nr_stripes ||
5896 ((mddev->new_chunk_sectors << 9) / STRIPE_SIZE) * 4
5897 > conf->max_nr_stripes) {
0c55e022
N
5898 printk(KERN_WARNING "md/raid:%s: reshape: not enough stripes. Needed %lu\n",
5899 mdname(mddev),
01ee22b4
N
5900 ((max(mddev->chunk_sectors, mddev->new_chunk_sectors) << 9)
5901 / STRIPE_SIZE)*4);
5902 return 0;
5903 }
5904 return 1;
5905}
5906
fd01b88c 5907static int check_reshape(struct mddev *mddev)
29269553 5908{
d1688a6d 5909 struct r5conf *conf = mddev->private;
29269553 5910
88ce4930
N
5911 if (mddev->delta_disks == 0 &&
5912 mddev->new_layout == mddev->layout &&
664e7c41 5913 mddev->new_chunk_sectors == mddev->chunk_sectors)
50ac168a 5914 return 0; /* nothing to do */
674806d6 5915 if (has_failed(conf))
ec32a2bd
N
5916 return -EINVAL;
5917 if (mddev->delta_disks < 0) {
5918 /* We might be able to shrink, but the devices must
5919 * be made bigger first.
5920 * For raid6, 4 is the minimum size.
5921 * Otherwise 2 is the minimum
5922 */
5923 int min = 2;
5924 if (mddev->level == 6)
5925 min = 4;
5926 if (mddev->raid_disks + mddev->delta_disks < min)
5927 return -EINVAL;
5928 }
29269553 5929
01ee22b4 5930 if (!check_stripe_cache(mddev))
29269553 5931 return -ENOSPC;
29269553 5932
e56108d6
N
5933 return resize_stripes(conf, (conf->previous_raid_disks
5934 + mddev->delta_disks));
63c70c4f
N
5935}
5936
fd01b88c 5937static int raid5_start_reshape(struct mddev *mddev)
63c70c4f 5938{
d1688a6d 5939 struct r5conf *conf = mddev->private;
3cb03002 5940 struct md_rdev *rdev;
63c70c4f 5941 int spares = 0;
c04be0aa 5942 unsigned long flags;
63c70c4f 5943
f416885e 5944 if (test_bit(MD_RECOVERY_RUNNING, &mddev->recovery))
63c70c4f
N
5945 return -EBUSY;
5946
01ee22b4
N
5947 if (!check_stripe_cache(mddev))
5948 return -ENOSPC;
5949
30b67645
N
5950 if (has_failed(conf))
5951 return -EINVAL;
5952
c6563a8c 5953 rdev_for_each(rdev, mddev) {
469518a3
N
5954 if (!test_bit(In_sync, &rdev->flags)
5955 && !test_bit(Faulty, &rdev->flags))
29269553 5956 spares++;
c6563a8c 5957 }
63c70c4f 5958
f416885e 5959 if (spares - mddev->degraded < mddev->delta_disks - conf->max_degraded)
29269553
N
5960 /* Not enough devices even to make a degraded array
5961 * of that size
5962 */
5963 return -EINVAL;
5964
ec32a2bd
N
5965 /* Refuse to reduce size of the array. Any reductions in
5966 * array size must be through explicit setting of array_size
5967 * attribute.
5968 */
5969 if (raid5_size(mddev, 0, conf->raid_disks + mddev->delta_disks)
5970 < mddev->array_sectors) {
0c55e022 5971 printk(KERN_ERR "md/raid:%s: array size must be reduced "
ec32a2bd
N
5972 "before number of disks\n", mdname(mddev));
5973 return -EINVAL;
5974 }
5975
f6705578 5976 atomic_set(&conf->reshape_stripes, 0);
29269553
N
5977 spin_lock_irq(&conf->device_lock);
5978 conf->previous_raid_disks = conf->raid_disks;
63c70c4f 5979 conf->raid_disks += mddev->delta_disks;
09c9e5fa
AN
5980 conf->prev_chunk_sectors = conf->chunk_sectors;
5981 conf->chunk_sectors = mddev->new_chunk_sectors;
88ce4930
N
5982 conf->prev_algo = conf->algorithm;
5983 conf->algorithm = mddev->new_layout;
05616be5
N
5984 conf->generation++;
5985 /* Code that selects data_offset needs to see the generation update
5986 * if reshape_progress has been set - so a memory barrier needed.
5987 */
5988 smp_mb();
2c810cdd 5989 if (mddev->reshape_backwards)
fef9c61f
N
5990 conf->reshape_progress = raid5_size(mddev, 0, 0);
5991 else
5992 conf->reshape_progress = 0;
5993 conf->reshape_safe = conf->reshape_progress;
29269553
N
5994 spin_unlock_irq(&conf->device_lock);
5995
5996 /* Add some new drives, as many as will fit.
5997 * We know there are enough to make the newly sized array work.
3424bf6a
N
5998 * Don't add devices if we are reducing the number of
5999 * devices in the array. This is because it is not possible
6000 * to correctly record the "partially reconstructed" state of
6001 * such devices during the reshape and confusion could result.
29269553 6002 */
87a8dec9 6003 if (mddev->delta_disks >= 0) {
dafb20fa 6004 rdev_for_each(rdev, mddev)
87a8dec9
N
6005 if (rdev->raid_disk < 0 &&
6006 !test_bit(Faulty, &rdev->flags)) {
6007 if (raid5_add_disk(mddev, rdev) == 0) {
87a8dec9 6008 if (rdev->raid_disk
9d4c7d87 6009 >= conf->previous_raid_disks)
87a8dec9 6010 set_bit(In_sync, &rdev->flags);
9d4c7d87 6011 else
87a8dec9 6012 rdev->recovery_offset = 0;
36fad858
NK
6013
6014 if (sysfs_link_rdev(mddev, rdev))
87a8dec9 6015 /* Failure here is OK */;
50da0840 6016 }
87a8dec9
N
6017 } else if (rdev->raid_disk >= conf->previous_raid_disks
6018 && !test_bit(Faulty, &rdev->flags)) {
6019 /* This is a spare that was manually added */
6020 set_bit(In_sync, &rdev->flags);
87a8dec9 6021 }
29269553 6022
87a8dec9
N
6023 /* When a reshape changes the number of devices,
6024 * ->degraded is measured against the larger of the
6025 * pre and post number of devices.
6026 */
ec32a2bd 6027 spin_lock_irqsave(&conf->device_lock, flags);
908f4fbd 6028 mddev->degraded = calc_degraded(conf);
ec32a2bd
N
6029 spin_unlock_irqrestore(&conf->device_lock, flags);
6030 }
63c70c4f 6031 mddev->raid_disks = conf->raid_disks;
e516402c 6032 mddev->reshape_position = conf->reshape_progress;
850b2b42 6033 set_bit(MD_CHANGE_DEVS, &mddev->flags);
f6705578 6034
29269553
N
6035 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
6036 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
6037 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
6038 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
6039 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
0da3c619 6040 "reshape");
29269553
N
6041 if (!mddev->sync_thread) {
6042 mddev->recovery = 0;
6043 spin_lock_irq(&conf->device_lock);
6044 mddev->raid_disks = conf->raid_disks = conf->previous_raid_disks;
05616be5
N
6045 rdev_for_each(rdev, mddev)
6046 rdev->new_data_offset = rdev->data_offset;
6047 smp_wmb();
fef9c61f 6048 conf->reshape_progress = MaxSector;
1e3fa9bd 6049 mddev->reshape_position = MaxSector;
29269553
N
6050 spin_unlock_irq(&conf->device_lock);
6051 return -EAGAIN;
6052 }
c8f517c4 6053 conf->reshape_checkpoint = jiffies;
29269553
N
6054 md_wakeup_thread(mddev->sync_thread);
6055 md_new_event(mddev);
6056 return 0;
6057}
29269553 6058
ec32a2bd
N
6059/* This is called from the reshape thread and should make any
6060 * changes needed in 'conf'
6061 */
d1688a6d 6062static void end_reshape(struct r5conf *conf)
29269553 6063{
29269553 6064
f6705578 6065 if (!test_bit(MD_RECOVERY_INTR, &conf->mddev->recovery)) {
05616be5 6066 struct md_rdev *rdev;
f6705578 6067
f6705578 6068 spin_lock_irq(&conf->device_lock);
cea9c228 6069 conf->previous_raid_disks = conf->raid_disks;
05616be5
N
6070 rdev_for_each(rdev, conf->mddev)
6071 rdev->data_offset = rdev->new_data_offset;
6072 smp_wmb();
fef9c61f 6073 conf->reshape_progress = MaxSector;
f6705578 6074 spin_unlock_irq(&conf->device_lock);
b0f9ec04 6075 wake_up(&conf->wait_for_overlap);
16a53ecc
N
6076
6077 /* read-ahead size must cover two whole stripes, which is
6078 * 2 * (datadisks) * chunksize where 'n' is the number of raid devices
6079 */
4a5add49 6080 if (conf->mddev->queue) {
cea9c228 6081 int data_disks = conf->raid_disks - conf->max_degraded;
09c9e5fa 6082 int stripe = data_disks * ((conf->chunk_sectors << 9)
cea9c228 6083 / PAGE_SIZE);
16a53ecc
N
6084 if (conf->mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
6085 conf->mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
6086 }
29269553 6087 }
29269553
N
6088}
6089
ec32a2bd
N
6090/* This is called from the raid5d thread with mddev_lock held.
6091 * It makes config changes to the device.
6092 */
fd01b88c 6093static void raid5_finish_reshape(struct mddev *mddev)
cea9c228 6094{
d1688a6d 6095 struct r5conf *conf = mddev->private;
cea9c228
N
6096
6097 if (!test_bit(MD_RECOVERY_INTR, &mddev->recovery)) {
6098
ec32a2bd
N
6099 if (mddev->delta_disks > 0) {
6100 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
6101 set_capacity(mddev->gendisk, mddev->array_sectors);
449aad3e 6102 revalidate_disk(mddev->gendisk);
ec32a2bd
N
6103 } else {
6104 int d;
908f4fbd
N
6105 spin_lock_irq(&conf->device_lock);
6106 mddev->degraded = calc_degraded(conf);
6107 spin_unlock_irq(&conf->device_lock);
ec32a2bd
N
6108 for (d = conf->raid_disks ;
6109 d < conf->raid_disks - mddev->delta_disks;
1a67dde0 6110 d++) {
3cb03002 6111 struct md_rdev *rdev = conf->disks[d].rdev;
da7613b8
N
6112 if (rdev)
6113 clear_bit(In_sync, &rdev->flags);
6114 rdev = conf->disks[d].replacement;
6115 if (rdev)
6116 clear_bit(In_sync, &rdev->flags);
1a67dde0 6117 }
cea9c228 6118 }
88ce4930 6119 mddev->layout = conf->algorithm;
09c9e5fa 6120 mddev->chunk_sectors = conf->chunk_sectors;
ec32a2bd
N
6121 mddev->reshape_position = MaxSector;
6122 mddev->delta_disks = 0;
2c810cdd 6123 mddev->reshape_backwards = 0;
cea9c228
N
6124 }
6125}
6126
fd01b88c 6127static void raid5_quiesce(struct mddev *mddev, int state)
72626685 6128{
d1688a6d 6129 struct r5conf *conf = mddev->private;
72626685
N
6130
6131 switch(state) {
e464eafd
N
6132 case 2: /* resume for a suspend */
6133 wake_up(&conf->wait_for_overlap);
6134 break;
6135
72626685
N
6136 case 1: /* stop all writes */
6137 spin_lock_irq(&conf->device_lock);
64bd660b
N
6138 /* '2' tells resync/reshape to pause so that all
6139 * active stripes can drain
6140 */
6141 conf->quiesce = 2;
72626685 6142 wait_event_lock_irq(conf->wait_for_stripe,
46031f9a
RBJ
6143 atomic_read(&conf->active_stripes) == 0 &&
6144 atomic_read(&conf->active_aligned_reads) == 0,
eed8c02e 6145 conf->device_lock);
64bd660b 6146 conf->quiesce = 1;
72626685 6147 spin_unlock_irq(&conf->device_lock);
64bd660b
N
6148 /* allow reshape to continue */
6149 wake_up(&conf->wait_for_overlap);
72626685
N
6150 break;
6151
6152 case 0: /* re-enable writes */
6153 spin_lock_irq(&conf->device_lock);
6154 conf->quiesce = 0;
6155 wake_up(&conf->wait_for_stripe);
e464eafd 6156 wake_up(&conf->wait_for_overlap);
72626685
N
6157 spin_unlock_irq(&conf->device_lock);
6158 break;
6159 }
72626685 6160}
b15c2e57 6161
d562b0c4 6162
fd01b88c 6163static void *raid45_takeover_raid0(struct mddev *mddev, int level)
54071b38 6164{
e373ab10 6165 struct r0conf *raid0_conf = mddev->private;
d76c8420 6166 sector_t sectors;
54071b38 6167
f1b29bca 6168 /* for raid0 takeover only one zone is supported */
e373ab10 6169 if (raid0_conf->nr_strip_zones > 1) {
0c55e022
N
6170 printk(KERN_ERR "md/raid:%s: cannot takeover raid0 with more than one zone.\n",
6171 mdname(mddev));
f1b29bca
DW
6172 return ERR_PTR(-EINVAL);
6173 }
6174
e373ab10
N
6175 sectors = raid0_conf->strip_zone[0].zone_end;
6176 sector_div(sectors, raid0_conf->strip_zone[0].nb_dev);
3b71bd93 6177 mddev->dev_sectors = sectors;
f1b29bca 6178 mddev->new_level = level;
54071b38
TM
6179 mddev->new_layout = ALGORITHM_PARITY_N;
6180 mddev->new_chunk_sectors = mddev->chunk_sectors;
6181 mddev->raid_disks += 1;
6182 mddev->delta_disks = 1;
6183 /* make sure it will be not marked as dirty */
6184 mddev->recovery_cp = MaxSector;
6185
6186 return setup_conf(mddev);
6187}
6188
6189
fd01b88c 6190static void *raid5_takeover_raid1(struct mddev *mddev)
d562b0c4
N
6191{
6192 int chunksect;
6193
6194 if (mddev->raid_disks != 2 ||
6195 mddev->degraded > 1)
6196 return ERR_PTR(-EINVAL);
6197
6198 /* Should check if there are write-behind devices? */
6199
6200 chunksect = 64*2; /* 64K by default */
6201
6202 /* The array must be an exact multiple of chunksize */
6203 while (chunksect && (mddev->array_sectors & (chunksect-1)))
6204 chunksect >>= 1;
6205
6206 if ((chunksect<<9) < STRIPE_SIZE)
6207 /* array size does not allow a suitable chunk size */
6208 return ERR_PTR(-EINVAL);
6209
6210 mddev->new_level = 5;
6211 mddev->new_layout = ALGORITHM_LEFT_SYMMETRIC;
664e7c41 6212 mddev->new_chunk_sectors = chunksect;
d562b0c4
N
6213
6214 return setup_conf(mddev);
6215}
6216
fd01b88c 6217static void *raid5_takeover_raid6(struct mddev *mddev)
fc9739c6
N
6218{
6219 int new_layout;
6220
6221 switch (mddev->layout) {
6222 case ALGORITHM_LEFT_ASYMMETRIC_6:
6223 new_layout = ALGORITHM_LEFT_ASYMMETRIC;
6224 break;
6225 case ALGORITHM_RIGHT_ASYMMETRIC_6:
6226 new_layout = ALGORITHM_RIGHT_ASYMMETRIC;
6227 break;
6228 case ALGORITHM_LEFT_SYMMETRIC_6:
6229 new_layout = ALGORITHM_LEFT_SYMMETRIC;
6230 break;
6231 case ALGORITHM_RIGHT_SYMMETRIC_6:
6232 new_layout = ALGORITHM_RIGHT_SYMMETRIC;
6233 break;
6234 case ALGORITHM_PARITY_0_6:
6235 new_layout = ALGORITHM_PARITY_0;
6236 break;
6237 case ALGORITHM_PARITY_N:
6238 new_layout = ALGORITHM_PARITY_N;
6239 break;
6240 default:
6241 return ERR_PTR(-EINVAL);
6242 }
6243 mddev->new_level = 5;
6244 mddev->new_layout = new_layout;
6245 mddev->delta_disks = -1;
6246 mddev->raid_disks -= 1;
6247 return setup_conf(mddev);
6248}
6249
d562b0c4 6250
fd01b88c 6251static int raid5_check_reshape(struct mddev *mddev)
b3546035 6252{
88ce4930
N
6253 /* For a 2-drive array, the layout and chunk size can be changed
6254 * immediately as not restriping is needed.
6255 * For larger arrays we record the new value - after validation
6256 * to be used by a reshape pass.
b3546035 6257 */
d1688a6d 6258 struct r5conf *conf = mddev->private;
597a711b 6259 int new_chunk = mddev->new_chunk_sectors;
b3546035 6260
597a711b 6261 if (mddev->new_layout >= 0 && !algorithm_valid_raid5(mddev->new_layout))
b3546035
N
6262 return -EINVAL;
6263 if (new_chunk > 0) {
0ba459d2 6264 if (!is_power_of_2(new_chunk))
b3546035 6265 return -EINVAL;
597a711b 6266 if (new_chunk < (PAGE_SIZE>>9))
b3546035 6267 return -EINVAL;
597a711b 6268 if (mddev->array_sectors & (new_chunk-1))
b3546035
N
6269 /* not factor of array size */
6270 return -EINVAL;
6271 }
6272
6273 /* They look valid */
6274
88ce4930 6275 if (mddev->raid_disks == 2) {
597a711b
N
6276 /* can make the change immediately */
6277 if (mddev->new_layout >= 0) {
6278 conf->algorithm = mddev->new_layout;
6279 mddev->layout = mddev->new_layout;
88ce4930
N
6280 }
6281 if (new_chunk > 0) {
597a711b
N
6282 conf->chunk_sectors = new_chunk ;
6283 mddev->chunk_sectors = new_chunk;
88ce4930
N
6284 }
6285 set_bit(MD_CHANGE_DEVS, &mddev->flags);
6286 md_wakeup_thread(mddev->thread);
b3546035 6287 }
50ac168a 6288 return check_reshape(mddev);
88ce4930
N
6289}
6290
fd01b88c 6291static int raid6_check_reshape(struct mddev *mddev)
88ce4930 6292{
597a711b 6293 int new_chunk = mddev->new_chunk_sectors;
50ac168a 6294
597a711b 6295 if (mddev->new_layout >= 0 && !algorithm_valid_raid6(mddev->new_layout))
88ce4930 6296 return -EINVAL;
b3546035 6297 if (new_chunk > 0) {
0ba459d2 6298 if (!is_power_of_2(new_chunk))
88ce4930 6299 return -EINVAL;
597a711b 6300 if (new_chunk < (PAGE_SIZE >> 9))
88ce4930 6301 return -EINVAL;
597a711b 6302 if (mddev->array_sectors & (new_chunk-1))
88ce4930
N
6303 /* not factor of array size */
6304 return -EINVAL;
b3546035 6305 }
88ce4930
N
6306
6307 /* They look valid */
50ac168a 6308 return check_reshape(mddev);
b3546035
N
6309}
6310
fd01b88c 6311static void *raid5_takeover(struct mddev *mddev)
d562b0c4
N
6312{
6313 /* raid5 can take over:
f1b29bca 6314 * raid0 - if there is only one strip zone - make it a raid4 layout
d562b0c4
N
6315 * raid1 - if there are two drives. We need to know the chunk size
6316 * raid4 - trivial - just use a raid4 layout.
6317 * raid6 - Providing it is a *_6 layout
d562b0c4 6318 */
f1b29bca
DW
6319 if (mddev->level == 0)
6320 return raid45_takeover_raid0(mddev, 5);
d562b0c4
N
6321 if (mddev->level == 1)
6322 return raid5_takeover_raid1(mddev);
e9d4758f
N
6323 if (mddev->level == 4) {
6324 mddev->new_layout = ALGORITHM_PARITY_N;
6325 mddev->new_level = 5;
6326 return setup_conf(mddev);
6327 }
fc9739c6
N
6328 if (mddev->level == 6)
6329 return raid5_takeover_raid6(mddev);
d562b0c4
N
6330
6331 return ERR_PTR(-EINVAL);
6332}
6333
fd01b88c 6334static void *raid4_takeover(struct mddev *mddev)
a78d38a1 6335{
f1b29bca
DW
6336 /* raid4 can take over:
6337 * raid0 - if there is only one strip zone
6338 * raid5 - if layout is right
a78d38a1 6339 */
f1b29bca
DW
6340 if (mddev->level == 0)
6341 return raid45_takeover_raid0(mddev, 4);
a78d38a1
N
6342 if (mddev->level == 5 &&
6343 mddev->layout == ALGORITHM_PARITY_N) {
6344 mddev->new_layout = 0;
6345 mddev->new_level = 4;
6346 return setup_conf(mddev);
6347 }
6348 return ERR_PTR(-EINVAL);
6349}
d562b0c4 6350
84fc4b56 6351static struct md_personality raid5_personality;
245f46c2 6352
fd01b88c 6353static void *raid6_takeover(struct mddev *mddev)
245f46c2
N
6354{
6355 /* Currently can only take over a raid5. We map the
6356 * personality to an equivalent raid6 personality
6357 * with the Q block at the end.
6358 */
6359 int new_layout;
6360
6361 if (mddev->pers != &raid5_personality)
6362 return ERR_PTR(-EINVAL);
6363 if (mddev->degraded > 1)
6364 return ERR_PTR(-EINVAL);
6365 if (mddev->raid_disks > 253)
6366 return ERR_PTR(-EINVAL);
6367 if (mddev->raid_disks < 3)
6368 return ERR_PTR(-EINVAL);
6369
6370 switch (mddev->layout) {
6371 case ALGORITHM_LEFT_ASYMMETRIC:
6372 new_layout = ALGORITHM_LEFT_ASYMMETRIC_6;
6373 break;
6374 case ALGORITHM_RIGHT_ASYMMETRIC:
6375 new_layout = ALGORITHM_RIGHT_ASYMMETRIC_6;
6376 break;
6377 case ALGORITHM_LEFT_SYMMETRIC:
6378 new_layout = ALGORITHM_LEFT_SYMMETRIC_6;
6379 break;
6380 case ALGORITHM_RIGHT_SYMMETRIC:
6381 new_layout = ALGORITHM_RIGHT_SYMMETRIC_6;
6382 break;
6383 case ALGORITHM_PARITY_0:
6384 new_layout = ALGORITHM_PARITY_0_6;
6385 break;
6386 case ALGORITHM_PARITY_N:
6387 new_layout = ALGORITHM_PARITY_N;
6388 break;
6389 default:
6390 return ERR_PTR(-EINVAL);
6391 }
6392 mddev->new_level = 6;
6393 mddev->new_layout = new_layout;
6394 mddev->delta_disks = 1;
6395 mddev->raid_disks += 1;
6396 return setup_conf(mddev);
6397}
6398
6399
84fc4b56 6400static struct md_personality raid6_personality =
16a53ecc
N
6401{
6402 .name = "raid6",
6403 .level = 6,
6404 .owner = THIS_MODULE,
6405 .make_request = make_request,
6406 .run = run,
6407 .stop = stop,
6408 .status = status,
6409 .error_handler = error,
6410 .hot_add_disk = raid5_add_disk,
6411 .hot_remove_disk= raid5_remove_disk,
6412 .spare_active = raid5_spare_active,
6413 .sync_request = sync_request,
6414 .resize = raid5_resize,
80c3a6ce 6415 .size = raid5_size,
50ac168a 6416 .check_reshape = raid6_check_reshape,
f416885e 6417 .start_reshape = raid5_start_reshape,
cea9c228 6418 .finish_reshape = raid5_finish_reshape,
16a53ecc 6419 .quiesce = raid5_quiesce,
245f46c2 6420 .takeover = raid6_takeover,
16a53ecc 6421};
84fc4b56 6422static struct md_personality raid5_personality =
1da177e4
LT
6423{
6424 .name = "raid5",
2604b703 6425 .level = 5,
1da177e4
LT
6426 .owner = THIS_MODULE,
6427 .make_request = make_request,
6428 .run = run,
6429 .stop = stop,
6430 .status = status,
6431 .error_handler = error,
6432 .hot_add_disk = raid5_add_disk,
6433 .hot_remove_disk= raid5_remove_disk,
6434 .spare_active = raid5_spare_active,
6435 .sync_request = sync_request,
6436 .resize = raid5_resize,
80c3a6ce 6437 .size = raid5_size,
63c70c4f
N
6438 .check_reshape = raid5_check_reshape,
6439 .start_reshape = raid5_start_reshape,
cea9c228 6440 .finish_reshape = raid5_finish_reshape,
72626685 6441 .quiesce = raid5_quiesce,
d562b0c4 6442 .takeover = raid5_takeover,
1da177e4
LT
6443};
6444
84fc4b56 6445static struct md_personality raid4_personality =
1da177e4 6446{
2604b703
N
6447 .name = "raid4",
6448 .level = 4,
6449 .owner = THIS_MODULE,
6450 .make_request = make_request,
6451 .run = run,
6452 .stop = stop,
6453 .status = status,
6454 .error_handler = error,
6455 .hot_add_disk = raid5_add_disk,
6456 .hot_remove_disk= raid5_remove_disk,
6457 .spare_active = raid5_spare_active,
6458 .sync_request = sync_request,
6459 .resize = raid5_resize,
80c3a6ce 6460 .size = raid5_size,
3d37890b
N
6461 .check_reshape = raid5_check_reshape,
6462 .start_reshape = raid5_start_reshape,
cea9c228 6463 .finish_reshape = raid5_finish_reshape,
2604b703 6464 .quiesce = raid5_quiesce,
a78d38a1 6465 .takeover = raid4_takeover,
2604b703
N
6466};
6467
6468static int __init raid5_init(void)
6469{
16a53ecc 6470 register_md_personality(&raid6_personality);
2604b703
N
6471 register_md_personality(&raid5_personality);
6472 register_md_personality(&raid4_personality);
6473 return 0;
1da177e4
LT
6474}
6475
2604b703 6476static void raid5_exit(void)
1da177e4 6477{
16a53ecc 6478 unregister_md_personality(&raid6_personality);
2604b703
N
6479 unregister_md_personality(&raid5_personality);
6480 unregister_md_personality(&raid4_personality);
1da177e4
LT
6481}
6482
6483module_init(raid5_init);
6484module_exit(raid5_exit);
6485MODULE_LICENSE("GPL");
0efb9e61 6486MODULE_DESCRIPTION("RAID4/5/6 (striping with parity) personality for MD");
1da177e4 6487MODULE_ALIAS("md-personality-4"); /* RAID5 */
d9d166c2
N
6488MODULE_ALIAS("md-raid5");
6489MODULE_ALIAS("md-raid4");
2604b703
N
6490MODULE_ALIAS("md-level-5");
6491MODULE_ALIAS("md-level-4");
16a53ecc
N
6492MODULE_ALIAS("md-personality-8"); /* RAID6 */
6493MODULE_ALIAS("md-raid6");
6494MODULE_ALIAS("md-level-6");
6495
6496/* This used to be two separate modules, they were: */
6497MODULE_ALIAS("raid5");
6498MODULE_ALIAS("raid6");