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