blob: f8b9068439267a3539d671e6e59ceb0b47b90547 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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
NeilBrown16a53ec2006-06-26 00:27:38 -07005 * Copyright (C) 2002, 2003 H. Peter Anvin
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
NeilBrown16a53ec2006-06-26 00:27:38 -07007 * RAID-4/5/6 management functions.
8 * Thanks to Penguin Computing for making the RAID-6 development possible
9 * by donating a test server!
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
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
NeilBrownae3c20c2006-07-10 04:44:17 -070021/*
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.
NeilBrown7c13edc2011-04-18 18:25:43 +100030 * 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
NeilBrownae3c20c2006-07-10 04:44:17 -070032 * 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
NeilBrown7c13edc2011-04-18 18:25:43 +100035 * the number of the batch it will be in. This is seq_flush+1.
NeilBrownae3c20c2006-07-10 04:44:17 -070036 * 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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
NeilBrownbff61972009-03-31 14:33:13 +110046#include <linux/blkdev.h>
NeilBrownf6705572006-03-27 01:18:11 -080047#include <linux/kthread.h>
Dan Williamsf701d582009-03-31 15:09:39 +110048#include <linux/raid/pq.h>
Dan Williams91c00922007-01-02 13:52:30 -070049#include <linux/async_tx.h>
Paul Gortmaker056075c2011-07-03 13:58:33 -040050#include <linux/module.h>
Dan Williams07a3b412009-08-29 19:13:13 -070051#include <linux/async.h>
NeilBrownbff61972009-03-31 14:33:13 +110052#include <linux/seq_file.h>
Dan Williams36d1c642009-07-14 11:48:22 -070053#include <linux/cpu.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090054#include <linux/slab.h>
Christian Dietrich8bda4702011-07-27 11:00:36 +100055#include <linux/ratelimit.h>
Shaohua Li851c30c2013-08-28 14:30:16 +080056#include <linux/nodemask.h>
NeilBrowna9add5d2012-10-31 11:59:09 +110057#include <trace/events/block.h>
58
NeilBrown43b2e5d2009-03-31 14:33:13 +110059#include "md.h"
NeilBrownbff61972009-03-31 14:33:13 +110060#include "raid5.h"
Trela Maciej54071b32010-03-08 16:02:42 +110061#include "raid0.h"
Christoph Hellwigef740c32009-03-31 14:27:03 +110062#include "bitmap.h"
NeilBrown72626682005-09-09 16:23:54 -070063
Shaohua Li851c30c2013-08-28 14:30:16 +080064#define cpu_to_group(cpu) cpu_to_node(cpu)
65#define ANY_GROUP NUMA_NO_NODE
66
67static struct workqueue_struct *raid5_wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068/*
69 * Stripe cache
70 */
71
72#define NR_STRIPES 256
73#define STRIPE_SIZE PAGE_SIZE
74#define STRIPE_SHIFT (PAGE_SHIFT - 9)
75#define STRIPE_SECTORS (STRIPE_SIZE>>9)
76#define IO_THRESHOLD 1
Dan Williams8b3e6cd2008-04-28 02:15:53 -070077#define BYPASS_THRESHOLD 1
NeilBrownfccddba2006-01-06 00:20:33 -080078#define NR_HASH (PAGE_SIZE / sizeof(struct hlist_head))
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#define HASH_MASK (NR_HASH - 1)
Shaohua Libfc90cb2013-08-29 15:40:32 +080080#define MAX_STRIPE_BATCH 8
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
NeilBrownd1688a62011-10-11 16:49:52 +110082static inline struct hlist_head *stripe_hash(struct r5conf *conf, sector_t sect)
NeilBrowndb298e12011-10-07 14:23:00 +110083{
84 int hash = (sect >> STRIPE_SHIFT) & HASH_MASK;
85 return &conf->stripe_hashtbl[hash];
86}
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88/* bio's attached to a stripe+device for I/O are linked together in bi_sector
89 * order without overlap. There may be several bio's per stripe+device, and
90 * a bio could span several devices.
91 * When walking this list for a particular stripe+device, we must never proceed
92 * beyond a bio that extends past this device, as the next bio might no longer
93 * be valid.
NeilBrowndb298e12011-10-07 14:23:00 +110094 * This function is used to determine the 'next' bio in the list, given the sector
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 * of the current stripe+device
96 */
NeilBrowndb298e12011-10-07 14:23:00 +110097static inline struct bio *r5_next_bio(struct bio *bio, sector_t sector)
98{
Kent Overstreetaa8b57a2013-02-05 15:19:29 -080099 int sectors = bio_sectors(bio);
NeilBrowndb298e12011-10-07 14:23:00 +1100100 if (bio->bi_sector + sectors < sector + STRIPE_SECTORS)
101 return bio->bi_next;
102 else
103 return NULL;
104}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Jens Axboe960e7392008-08-15 10:41:18 +0200106/*
Jens Axboe5b99c2f2008-08-15 10:56:11 +0200107 * We maintain a biased count of active stripes in the bottom 16 bits of
108 * bi_phys_segments, and a count of processed stripes in the upper 16 bits
Jens Axboe960e7392008-08-15 10:41:18 +0200109 */
Shaohua Lie7836bd62012-07-19 16:01:31 +1000110static inline int raid5_bi_processed_stripes(struct bio *bio)
Jens Axboe960e7392008-08-15 10:41:18 +0200111{
Shaohua Lie7836bd62012-07-19 16:01:31 +1000112 atomic_t *segments = (atomic_t *)&bio->bi_phys_segments;
113 return (atomic_read(segments) >> 16) & 0xffff;
Jens Axboe960e7392008-08-15 10:41:18 +0200114}
115
Shaohua Lie7836bd62012-07-19 16:01:31 +1000116static inline int raid5_dec_bi_active_stripes(struct bio *bio)
Jens Axboe960e7392008-08-15 10:41:18 +0200117{
Shaohua Lie7836bd62012-07-19 16:01:31 +1000118 atomic_t *segments = (atomic_t *)&bio->bi_phys_segments;
119 return atomic_sub_return(1, segments) & 0xffff;
Jens Axboe960e7392008-08-15 10:41:18 +0200120}
121
Shaohua Lie7836bd62012-07-19 16:01:31 +1000122static inline void raid5_inc_bi_active_stripes(struct bio *bio)
Jens Axboe960e7392008-08-15 10:41:18 +0200123{
Shaohua Lie7836bd62012-07-19 16:01:31 +1000124 atomic_t *segments = (atomic_t *)&bio->bi_phys_segments;
125 atomic_inc(segments);
Jens Axboe960e7392008-08-15 10:41:18 +0200126}
127
Shaohua Lie7836bd62012-07-19 16:01:31 +1000128static inline void raid5_set_bi_processed_stripes(struct bio *bio,
129 unsigned int cnt)
Jens Axboe960e7392008-08-15 10:41:18 +0200130{
Shaohua Lie7836bd62012-07-19 16:01:31 +1000131 atomic_t *segments = (atomic_t *)&bio->bi_phys_segments;
132 int old, new;
Jens Axboe960e7392008-08-15 10:41:18 +0200133
Shaohua Lie7836bd62012-07-19 16:01:31 +1000134 do {
135 old = atomic_read(segments);
136 new = (old & 0xffff) | (cnt << 16);
137 } while (atomic_cmpxchg(segments, old, new) != old);
Jens Axboe960e7392008-08-15 10:41:18 +0200138}
139
Shaohua Lie7836bd62012-07-19 16:01:31 +1000140static inline void raid5_set_bi_stripes(struct bio *bio, unsigned int cnt)
Jens Axboe960e7392008-08-15 10:41:18 +0200141{
Shaohua Lie7836bd62012-07-19 16:01:31 +1000142 atomic_t *segments = (atomic_t *)&bio->bi_phys_segments;
143 atomic_set(segments, cnt);
Jens Axboe960e7392008-08-15 10:41:18 +0200144}
145
NeilBrownd0dabf72009-03-31 14:39:38 +1100146/* Find first data disk in a raid6 stripe */
147static inline int raid6_d0(struct stripe_head *sh)
148{
NeilBrown67cc2b82009-03-31 14:39:38 +1100149 if (sh->ddf_layout)
150 /* ddf always start from first device */
151 return 0;
152 /* md starts just after Q block */
NeilBrownd0dabf72009-03-31 14:39:38 +1100153 if (sh->qd_idx == sh->disks - 1)
154 return 0;
155 else
156 return sh->qd_idx + 1;
157}
NeilBrown16a53ec2006-06-26 00:27:38 -0700158static inline int raid6_next_disk(int disk, int raid_disks)
159{
160 disk++;
161 return (disk < raid_disks) ? disk : 0;
162}
Dan Williamsa4456852007-07-09 11:56:43 -0700163
NeilBrownd0dabf72009-03-31 14:39:38 +1100164/* When walking through the disks in a raid5, starting at raid6_d0,
165 * We need to map each disk to a 'slot', where the data disks are slot
166 * 0 .. raid_disks-3, the parity disk is raid_disks-2 and the Q disk
167 * is raid_disks-1. This help does that mapping.
168 */
NeilBrown67cc2b82009-03-31 14:39:38 +1100169static int raid6_idx_to_slot(int idx, struct stripe_head *sh,
170 int *count, int syndrome_disks)
NeilBrownd0dabf72009-03-31 14:39:38 +1100171{
Dan Williams66295422009-10-19 18:09:32 -0700172 int slot = *count;
NeilBrown67cc2b82009-03-31 14:39:38 +1100173
NeilBrowne4424fe2009-10-16 16:27:34 +1100174 if (sh->ddf_layout)
Dan Williams66295422009-10-19 18:09:32 -0700175 (*count)++;
NeilBrownd0dabf72009-03-31 14:39:38 +1100176 if (idx == sh->pd_idx)
NeilBrown67cc2b82009-03-31 14:39:38 +1100177 return syndrome_disks;
NeilBrownd0dabf72009-03-31 14:39:38 +1100178 if (idx == sh->qd_idx)
NeilBrown67cc2b82009-03-31 14:39:38 +1100179 return syndrome_disks + 1;
NeilBrowne4424fe2009-10-16 16:27:34 +1100180 if (!sh->ddf_layout)
Dan Williams66295422009-10-19 18:09:32 -0700181 (*count)++;
NeilBrownd0dabf72009-03-31 14:39:38 +1100182 return slot;
183}
184
Dan Williamsa4456852007-07-09 11:56:43 -0700185static void return_io(struct bio *return_bi)
186{
187 struct bio *bi = return_bi;
188 while (bi) {
Dan Williamsa4456852007-07-09 11:56:43 -0700189
190 return_bi = bi->bi_next;
191 bi->bi_next = NULL;
192 bi->bi_size = 0;
Linus Torvalds0a82a8d2013-04-18 09:00:26 -0700193 trace_block_bio_complete(bdev_get_queue(bi->bi_bdev),
194 bi, 0);
Neil Brown0e13fe232008-06-28 08:31:20 +1000195 bio_endio(bi, 0);
Dan Williamsa4456852007-07-09 11:56:43 -0700196 bi = return_bi;
197 }
198}
199
NeilBrownd1688a62011-10-11 16:49:52 +1100200static void print_raid5_conf (struct r5conf *conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Dan Williams600aa102008-06-28 08:32:05 +1000202static int stripe_operations_active(struct stripe_head *sh)
203{
204 return sh->check_state || sh->reconstruct_state ||
205 test_bit(STRIPE_BIOFILL_RUN, &sh->state) ||
206 test_bit(STRIPE_COMPUTE_RUN, &sh->state);
207}
208
Shaohua Li851c30c2013-08-28 14:30:16 +0800209static void raid5_wakeup_stripe_thread(struct stripe_head *sh)
210{
211 struct r5conf *conf = sh->raid_conf;
212 struct r5worker_group *group;
Shaohua Libfc90cb2013-08-29 15:40:32 +0800213 int thread_cnt;
Shaohua Li851c30c2013-08-28 14:30:16 +0800214 int i, cpu = sh->cpu;
215
216 if (!cpu_online(cpu)) {
217 cpu = cpumask_any(cpu_online_mask);
218 sh->cpu = cpu;
219 }
220
221 if (list_empty(&sh->lru)) {
222 struct r5worker_group *group;
223 group = conf->worker_groups + cpu_to_group(cpu);
224 list_add_tail(&sh->lru, &group->handle_list);
Shaohua Libfc90cb2013-08-29 15:40:32 +0800225 group->stripes_cnt++;
226 sh->group = group;
Shaohua Li851c30c2013-08-28 14:30:16 +0800227 }
228
229 if (conf->worker_cnt_per_group == 0) {
230 md_wakeup_thread(conf->mddev->thread);
231 return;
232 }
233
234 group = conf->worker_groups + cpu_to_group(sh->cpu);
235
Shaohua Libfc90cb2013-08-29 15:40:32 +0800236 group->workers[0].working = true;
237 /* at least one worker should run to avoid race */
238 queue_work_on(sh->cpu, raid5_wq, &group->workers[0].work);
239
240 thread_cnt = group->stripes_cnt / MAX_STRIPE_BATCH - 1;
241 /* wakeup more workers */
242 for (i = 1; i < conf->worker_cnt_per_group && thread_cnt > 0; i++) {
243 if (group->workers[i].working == false) {
244 group->workers[i].working = true;
245 queue_work_on(sh->cpu, raid5_wq,
246 &group->workers[i].work);
247 thread_cnt--;
248 }
249 }
Shaohua Li851c30c2013-08-28 14:30:16 +0800250}
251
Shaohua Li4eb788d2012-07-19 16:01:31 +1000252static void do_release_stripe(struct r5conf *conf, struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
Shaohua Li4eb788d2012-07-19 16:01:31 +1000254 BUG_ON(!list_empty(&sh->lru));
255 BUG_ON(atomic_read(&conf->active_stripes)==0);
256 if (test_bit(STRIPE_HANDLE, &sh->state)) {
257 if (test_bit(STRIPE_DELAYED, &sh->state) &&
258 !test_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
259 list_add_tail(&sh->lru, &conf->delayed_list);
260 else if (test_bit(STRIPE_BIT_DELAY, &sh->state) &&
261 sh->bm_seq - conf->seq_write > 0)
262 list_add_tail(&sh->lru, &conf->bitmap_list);
263 else {
264 clear_bit(STRIPE_DELAYED, &sh->state);
265 clear_bit(STRIPE_BIT_DELAY, &sh->state);
Shaohua Li851c30c2013-08-28 14:30:16 +0800266 if (conf->worker_cnt_per_group == 0) {
267 list_add_tail(&sh->lru, &conf->handle_list);
268 } else {
269 raid5_wakeup_stripe_thread(sh);
270 return;
271 }
Shaohua Li4eb788d2012-07-19 16:01:31 +1000272 }
273 md_wakeup_thread(conf->mddev->thread);
274 } else {
275 BUG_ON(stripe_operations_active(sh));
276 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
277 if (atomic_dec_return(&conf->preread_active_stripes)
278 < IO_THRESHOLD)
279 md_wakeup_thread(conf->mddev->thread);
280 atomic_dec(&conf->active_stripes);
281 if (!test_bit(STRIPE_EXPANDING, &sh->state)) {
282 list_add_tail(&sh->lru, &conf->inactive_list);
283 wake_up(&conf->wait_for_stripe);
284 if (conf->retry_read_aligned)
285 md_wakeup_thread(conf->mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 }
287 }
288}
NeilBrownd0dabf72009-03-31 14:39:38 +1100289
Shaohua Li4eb788d2012-07-19 16:01:31 +1000290static void __release_stripe(struct r5conf *conf, struct stripe_head *sh)
291{
292 if (atomic_dec_and_test(&sh->count))
293 do_release_stripe(conf, sh);
294}
295
Shaohua Lid265d9d2013-08-28 14:29:05 +0800296static struct llist_node *llist_reverse_order(struct llist_node *head)
297{
298 struct llist_node *new_head = NULL;
299
300 while (head) {
301 struct llist_node *tmp = head;
302 head = head->next;
303 tmp->next = new_head;
304 new_head = tmp;
305 }
306
307 return new_head;
308}
309
Shaohua Li773ca822013-08-27 17:50:39 +0800310/* should hold conf->device_lock already */
311static int release_stripe_list(struct r5conf *conf)
312{
313 struct stripe_head *sh;
314 int count = 0;
315 struct llist_node *head;
316
317 head = llist_del_all(&conf->released_stripes);
Shaohua Lid265d9d2013-08-28 14:29:05 +0800318 head = llist_reverse_order(head);
Shaohua Li773ca822013-08-27 17:50:39 +0800319 while (head) {
320 sh = llist_entry(head, struct stripe_head, release_list);
321 head = llist_next(head);
322 /* sh could be readded after STRIPE_ON_RELEASE_LIST is cleard */
323 smp_mb();
324 clear_bit(STRIPE_ON_RELEASE_LIST, &sh->state);
325 /*
326 * Don't worry the bit is set here, because if the bit is set
327 * again, the count is always > 1. This is true for
328 * STRIPE_ON_UNPLUG_LIST bit too.
329 */
330 __release_stripe(conf, sh);
331 count++;
332 }
333
334 return count;
335}
336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337static void release_stripe(struct stripe_head *sh)
338{
NeilBrownd1688a62011-10-11 16:49:52 +1100339 struct r5conf *conf = sh->raid_conf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 unsigned long flags;
Shaohua Li773ca822013-08-27 17:50:39 +0800341 bool wakeup;
NeilBrown16a53ec2006-06-26 00:27:38 -0700342
Shaohua Li773ca822013-08-27 17:50:39 +0800343 if (test_and_set_bit(STRIPE_ON_RELEASE_LIST, &sh->state))
344 goto slow_path;
345 wakeup = llist_add(&sh->release_list, &conf->released_stripes);
346 if (wakeup)
347 md_wakeup_thread(conf->mddev->thread);
348 return;
349slow_path:
Shaohua Li4eb788d2012-07-19 16:01:31 +1000350 local_irq_save(flags);
Shaohua Li773ca822013-08-27 17:50:39 +0800351 /* we are ok here if STRIPE_ON_RELEASE_LIST is set or not */
Shaohua Li4eb788d2012-07-19 16:01:31 +1000352 if (atomic_dec_and_lock(&sh->count, &conf->device_lock)) {
353 do_release_stripe(conf, sh);
354 spin_unlock(&conf->device_lock);
355 }
356 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357}
358
NeilBrownfccddba2006-01-06 00:20:33 -0800359static inline void remove_hash(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360{
Dan Williams45b42332007-07-09 11:56:43 -0700361 pr_debug("remove_hash(), stripe %llu\n",
362 (unsigned long long)sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
NeilBrownfccddba2006-01-06 00:20:33 -0800364 hlist_del_init(&sh->hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365}
366
NeilBrownd1688a62011-10-11 16:49:52 +1100367static inline void insert_hash(struct r5conf *conf, struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368{
NeilBrownfccddba2006-01-06 00:20:33 -0800369 struct hlist_head *hp = stripe_hash(conf, sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Dan Williams45b42332007-07-09 11:56:43 -0700371 pr_debug("insert_hash(), stripe %llu\n",
372 (unsigned long long)sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
NeilBrownfccddba2006-01-06 00:20:33 -0800374 hlist_add_head(&sh->hash, hp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375}
376
377
378/* find an idle stripe, make sure it is unhashed, and return it. */
NeilBrownd1688a62011-10-11 16:49:52 +1100379static struct stripe_head *get_free_stripe(struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
381 struct stripe_head *sh = NULL;
382 struct list_head *first;
383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 if (list_empty(&conf->inactive_list))
385 goto out;
386 first = conf->inactive_list.next;
387 sh = list_entry(first, struct stripe_head, lru);
388 list_del_init(first);
389 remove_hash(sh);
390 atomic_inc(&conf->active_stripes);
391out:
392 return sh;
393}
394
NeilBrowne4e11e32010-06-16 16:45:16 +1000395static void shrink_buffers(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
397 struct page *p;
398 int i;
NeilBrowne4e11e32010-06-16 16:45:16 +1000399 int num = sh->raid_conf->pool_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
NeilBrowne4e11e32010-06-16 16:45:16 +1000401 for (i = 0; i < num ; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 p = sh->dev[i].page;
403 if (!p)
404 continue;
405 sh->dev[i].page = NULL;
NeilBrown2d1f3b52006-01-06 00:20:31 -0800406 put_page(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 }
408}
409
NeilBrowne4e11e32010-06-16 16:45:16 +1000410static int grow_buffers(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
412 int i;
NeilBrowne4e11e32010-06-16 16:45:16 +1000413 int num = sh->raid_conf->pool_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
NeilBrowne4e11e32010-06-16 16:45:16 +1000415 for (i = 0; i < num; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 struct page *page;
417
418 if (!(page = alloc_page(GFP_KERNEL))) {
419 return 1;
420 }
421 sh->dev[i].page = page;
422 }
423 return 0;
424}
425
NeilBrown784052e2009-03-31 15:19:07 +1100426static void raid5_build_block(struct stripe_head *sh, int i, int previous);
NeilBrownd1688a62011-10-11 16:49:52 +1100427static void stripe_set_idx(sector_t stripe, struct r5conf *conf, int previous,
NeilBrown911d4ee2009-03-31 14:39:38 +1100428 struct stripe_head *sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
NeilBrownb5663ba2009-03-31 14:39:38 +1100430static void init_stripe(struct stripe_head *sh, sector_t sector, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431{
NeilBrownd1688a62011-10-11 16:49:52 +1100432 struct r5conf *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800433 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +0200435 BUG_ON(atomic_read(&sh->count) != 0);
436 BUG_ON(test_bit(STRIPE_HANDLE, &sh->state));
Dan Williams600aa102008-06-28 08:32:05 +1000437 BUG_ON(stripe_operations_active(sh));
Dan Williamsd84e0f12007-01-02 13:52:30 -0700438
Dan Williams45b42332007-07-09 11:56:43 -0700439 pr_debug("init_stripe called, stripe %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 (unsigned long long)sh->sector);
441
442 remove_hash(sh);
NeilBrown16a53ec2006-06-26 00:27:38 -0700443
NeilBrown86b42c72009-03-31 15:19:03 +1100444 sh->generation = conf->generation - previous;
NeilBrownb5663ba2009-03-31 14:39:38 +1100445 sh->disks = previous ? conf->previous_raid_disks : conf->raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 sh->sector = sector;
NeilBrown911d4ee2009-03-31 14:39:38 +1100447 stripe_set_idx(sector, conf, previous, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 sh->state = 0;
449
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800450
451 for (i = sh->disks; i--; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 struct r5dev *dev = &sh->dev[i];
453
Dan Williamsd84e0f12007-01-02 13:52:30 -0700454 if (dev->toread || dev->read || dev->towrite || dev->written ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 test_bit(R5_LOCKED, &dev->flags)) {
Dan Williamsd84e0f12007-01-02 13:52:30 -0700456 printk(KERN_ERR "sector=%llx i=%d %p %p %p %p %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 (unsigned long long)sh->sector, i, dev->toread,
Dan Williamsd84e0f12007-01-02 13:52:30 -0700458 dev->read, dev->towrite, dev->written,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 test_bit(R5_LOCKED, &dev->flags));
NeilBrown8cfa7b02011-07-27 11:00:36 +1000460 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 }
462 dev->flags = 0;
NeilBrown784052e2009-03-31 15:19:07 +1100463 raid5_build_block(sh, i, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 }
465 insert_hash(conf, sh);
Shaohua Li851c30c2013-08-28 14:30:16 +0800466 sh->cpu = smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467}
468
NeilBrownd1688a62011-10-11 16:49:52 +1100469static struct stripe_head *__find_stripe(struct r5conf *conf, sector_t sector,
NeilBrown86b42c72009-03-31 15:19:03 +1100470 short generation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471{
472 struct stripe_head *sh;
473
Dan Williams45b42332007-07-09 11:56:43 -0700474 pr_debug("__find_stripe, sector %llu\n", (unsigned long long)sector);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800475 hlist_for_each_entry(sh, stripe_hash(conf, sector), hash)
NeilBrown86b42c72009-03-31 15:19:03 +1100476 if (sh->sector == sector && sh->generation == generation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 return sh;
Dan Williams45b42332007-07-09 11:56:43 -0700478 pr_debug("__stripe %llu not in cache\n", (unsigned long long)sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 return NULL;
480}
481
NeilBrown674806d2010-06-16 17:17:53 +1000482/*
483 * Need to check if array has failed when deciding whether to:
484 * - start an array
485 * - remove non-faulty devices
486 * - add a spare
487 * - allow a reshape
488 * This determination is simple when no reshape is happening.
489 * However if there is a reshape, we need to carefully check
490 * both the before and after sections.
491 * This is because some failed devices may only affect one
492 * of the two sections, and some non-in_sync devices may
493 * be insync in the section most affected by failed devices.
494 */
NeilBrown908f4fb2011-12-23 10:17:50 +1100495static int calc_degraded(struct r5conf *conf)
NeilBrown674806d2010-06-16 17:17:53 +1000496{
NeilBrown908f4fb2011-12-23 10:17:50 +1100497 int degraded, degraded2;
NeilBrown674806d2010-06-16 17:17:53 +1000498 int i;
NeilBrown674806d2010-06-16 17:17:53 +1000499
500 rcu_read_lock();
501 degraded = 0;
502 for (i = 0; i < conf->previous_raid_disks; i++) {
NeilBrown3cb03002011-10-11 16:45:26 +1100503 struct md_rdev *rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrowne5c86472012-09-19 12:52:30 +1000504 if (rdev && test_bit(Faulty, &rdev->flags))
505 rdev = rcu_dereference(conf->disks[i].replacement);
NeilBrown674806d2010-06-16 17:17:53 +1000506 if (!rdev || test_bit(Faulty, &rdev->flags))
507 degraded++;
508 else if (test_bit(In_sync, &rdev->flags))
509 ;
510 else
511 /* not in-sync or faulty.
512 * If the reshape increases the number of devices,
513 * this is being recovered by the reshape, so
514 * this 'previous' section is not in_sync.
515 * If the number of devices is being reduced however,
516 * the device can only be part of the array if
517 * we are reverting a reshape, so this section will
518 * be in-sync.
519 */
520 if (conf->raid_disks >= conf->previous_raid_disks)
521 degraded++;
522 }
523 rcu_read_unlock();
NeilBrown908f4fb2011-12-23 10:17:50 +1100524 if (conf->raid_disks == conf->previous_raid_disks)
525 return degraded;
NeilBrown674806d2010-06-16 17:17:53 +1000526 rcu_read_lock();
NeilBrown908f4fb2011-12-23 10:17:50 +1100527 degraded2 = 0;
NeilBrown674806d2010-06-16 17:17:53 +1000528 for (i = 0; i < conf->raid_disks; i++) {
NeilBrown3cb03002011-10-11 16:45:26 +1100529 struct md_rdev *rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrowne5c86472012-09-19 12:52:30 +1000530 if (rdev && test_bit(Faulty, &rdev->flags))
531 rdev = rcu_dereference(conf->disks[i].replacement);
NeilBrown674806d2010-06-16 17:17:53 +1000532 if (!rdev || test_bit(Faulty, &rdev->flags))
NeilBrown908f4fb2011-12-23 10:17:50 +1100533 degraded2++;
NeilBrown674806d2010-06-16 17:17:53 +1000534 else if (test_bit(In_sync, &rdev->flags))
535 ;
536 else
537 /* not in-sync or faulty.
538 * If reshape increases the number of devices, this
539 * section has already been recovered, else it
540 * almost certainly hasn't.
541 */
542 if (conf->raid_disks <= conf->previous_raid_disks)
NeilBrown908f4fb2011-12-23 10:17:50 +1100543 degraded2++;
NeilBrown674806d2010-06-16 17:17:53 +1000544 }
545 rcu_read_unlock();
NeilBrown908f4fb2011-12-23 10:17:50 +1100546 if (degraded2 > degraded)
547 return degraded2;
548 return degraded;
549}
550
551static int has_failed(struct r5conf *conf)
552{
553 int degraded;
554
555 if (conf->mddev->reshape_position == MaxSector)
556 return conf->mddev->degraded > conf->max_degraded;
557
558 degraded = calc_degraded(conf);
NeilBrown674806d2010-06-16 17:17:53 +1000559 if (degraded > conf->max_degraded)
560 return 1;
561 return 0;
562}
563
NeilBrownb5663ba2009-03-31 14:39:38 +1100564static struct stripe_head *
NeilBrownd1688a62011-10-11 16:49:52 +1100565get_active_stripe(struct r5conf *conf, sector_t sector,
NeilBrowna8c906c2009-06-09 14:39:59 +1000566 int previous, int noblock, int noquiesce)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
568 struct stripe_head *sh;
569
Dan Williams45b42332007-07-09 11:56:43 -0700570 pr_debug("get_stripe, sector %llu\n", (unsigned long long)sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572 spin_lock_irq(&conf->device_lock);
573
574 do {
NeilBrown72626682005-09-09 16:23:54 -0700575 wait_event_lock_irq(conf->wait_for_stripe,
NeilBrowna8c906c2009-06-09 14:39:59 +1000576 conf->quiesce == 0 || noquiesce,
Lukas Czernereed8c022012-11-30 11:42:40 +0100577 conf->device_lock);
NeilBrown86b42c72009-03-31 15:19:03 +1100578 sh = __find_stripe(conf, sector, conf->generation - previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 if (!sh) {
580 if (!conf->inactive_blocked)
581 sh = get_free_stripe(conf);
582 if (noblock && sh == NULL)
583 break;
584 if (!sh) {
585 conf->inactive_blocked = 1;
586 wait_event_lock_irq(conf->wait_for_stripe,
587 !list_empty(&conf->inactive_list) &&
NeilBrown50368052005-12-12 02:39:17 -0800588 (atomic_read(&conf->active_stripes)
589 < (conf->max_nr_stripes *3/4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 || !conf->inactive_blocked),
Lukas Czernereed8c022012-11-30 11:42:40 +0100591 conf->device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 conf->inactive_blocked = 0;
593 } else
NeilBrownb5663ba2009-03-31 14:39:38 +1100594 init_stripe(sh, sector, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 } else {
596 if (atomic_read(&sh->count)) {
NeilBrownab69ae12009-03-31 15:26:47 +1100597 BUG_ON(!list_empty(&sh->lru)
Shaohua Li8811b592012-08-02 08:33:00 +1000598 && !test_bit(STRIPE_EXPANDING, &sh->state)
Shaohua Li773ca822013-08-27 17:50:39 +0800599 && !test_bit(STRIPE_ON_UNPLUG_LIST, &sh->state)
600 && !test_bit(STRIPE_ON_RELEASE_LIST, &sh->state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 } else {
602 if (!test_bit(STRIPE_HANDLE, &sh->state))
603 atomic_inc(&conf->active_stripes);
NeilBrownff4e8d92006-07-10 04:44:16 -0700604 if (list_empty(&sh->lru) &&
605 !test_bit(STRIPE_EXPANDING, &sh->state))
NeilBrown16a53ec2006-06-26 00:27:38 -0700606 BUG();
607 list_del_init(&sh->lru);
Shaohua Libfc90cb2013-08-29 15:40:32 +0800608 if (sh->group) {
609 sh->group->stripes_cnt--;
610 sh->group = NULL;
611 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 }
613 }
614 } while (sh == NULL);
615
616 if (sh)
617 atomic_inc(&sh->count);
618
619 spin_unlock_irq(&conf->device_lock);
620 return sh;
621}
622
NeilBrown05616be2012-05-21 09:27:00 +1000623/* Determine if 'data_offset' or 'new_data_offset' should be used
624 * in this stripe_head.
625 */
626static int use_new_offset(struct r5conf *conf, struct stripe_head *sh)
627{
628 sector_t progress = conf->reshape_progress;
629 /* Need a memory barrier to make sure we see the value
630 * of conf->generation, or ->data_offset that was set before
631 * reshape_progress was updated.
632 */
633 smp_rmb();
634 if (progress == MaxSector)
635 return 0;
636 if (sh->generation == conf->generation - 1)
637 return 0;
638 /* We are in a reshape, and this is a new-generation stripe,
639 * so use new_data_offset.
640 */
641 return 1;
642}
643
NeilBrown6712ecf2007-09-27 12:47:43 +0200644static void
645raid5_end_read_request(struct bio *bi, int error);
646static void
647raid5_end_write_request(struct bio *bi, int error);
Dan Williams91c00922007-01-02 13:52:30 -0700648
Dan Williamsc4e5ac02008-06-28 08:31:53 +1000649static void ops_run_io(struct stripe_head *sh, struct stripe_head_state *s)
Dan Williams91c00922007-01-02 13:52:30 -0700650{
NeilBrownd1688a62011-10-11 16:49:52 +1100651 struct r5conf *conf = sh->raid_conf;
Dan Williams91c00922007-01-02 13:52:30 -0700652 int i, disks = sh->disks;
653
654 might_sleep();
655
656 for (i = disks; i--; ) {
657 int rw;
NeilBrown9a3e1102011-12-23 10:17:53 +1100658 int replace_only = 0;
NeilBrown977df362011-12-23 10:17:53 +1100659 struct bio *bi, *rbi;
660 struct md_rdev *rdev, *rrdev = NULL;
Tejun Heoe9c74692010-09-03 11:56:18 +0200661 if (test_and_clear_bit(R5_Wantwrite, &sh->dev[i].flags)) {
662 if (test_and_clear_bit(R5_WantFUA, &sh->dev[i].flags))
663 rw = WRITE_FUA;
664 else
665 rw = WRITE;
Shaohua Li9e4447682012-10-11 13:49:49 +1100666 if (test_bit(R5_Discard, &sh->dev[i].flags))
Shaohua Li620125f2012-10-11 13:49:05 +1100667 rw |= REQ_DISCARD;
Tejun Heoe9c74692010-09-03 11:56:18 +0200668 } else if (test_and_clear_bit(R5_Wantread, &sh->dev[i].flags))
Dan Williams91c00922007-01-02 13:52:30 -0700669 rw = READ;
NeilBrown9a3e1102011-12-23 10:17:53 +1100670 else if (test_and_clear_bit(R5_WantReplace,
671 &sh->dev[i].flags)) {
672 rw = WRITE;
673 replace_only = 1;
674 } else
Dan Williams91c00922007-01-02 13:52:30 -0700675 continue;
Shaohua Libc0934f2012-05-22 13:55:05 +1000676 if (test_and_clear_bit(R5_SyncIO, &sh->dev[i].flags))
677 rw |= REQ_SYNC;
Dan Williams91c00922007-01-02 13:52:30 -0700678
679 bi = &sh->dev[i].req;
NeilBrown977df362011-12-23 10:17:53 +1100680 rbi = &sh->dev[i].rreq; /* For writing to replacement */
Dan Williams91c00922007-01-02 13:52:30 -0700681
Dan Williams91c00922007-01-02 13:52:30 -0700682 rcu_read_lock();
NeilBrown9a3e1102011-12-23 10:17:53 +1100683 rrdev = rcu_dereference(conf->disks[i].replacement);
NeilBrowndd054fc2011-12-23 10:17:53 +1100684 smp_mb(); /* Ensure that if rrdev is NULL, rdev won't be */
685 rdev = rcu_dereference(conf->disks[i].rdev);
686 if (!rdev) {
687 rdev = rrdev;
688 rrdev = NULL;
689 }
NeilBrown9a3e1102011-12-23 10:17:53 +1100690 if (rw & WRITE) {
691 if (replace_only)
692 rdev = NULL;
NeilBrowndd054fc2011-12-23 10:17:53 +1100693 if (rdev == rrdev)
694 /* We raced and saw duplicates */
695 rrdev = NULL;
NeilBrown9a3e1102011-12-23 10:17:53 +1100696 } else {
NeilBrowndd054fc2011-12-23 10:17:53 +1100697 if (test_bit(R5_ReadRepl, &sh->dev[i].flags) && rrdev)
NeilBrown9a3e1102011-12-23 10:17:53 +1100698 rdev = rrdev;
699 rrdev = NULL;
700 }
NeilBrown977df362011-12-23 10:17:53 +1100701
Dan Williams91c00922007-01-02 13:52:30 -0700702 if (rdev && test_bit(Faulty, &rdev->flags))
703 rdev = NULL;
704 if (rdev)
705 atomic_inc(&rdev->nr_pending);
NeilBrown977df362011-12-23 10:17:53 +1100706 if (rrdev && test_bit(Faulty, &rrdev->flags))
707 rrdev = NULL;
708 if (rrdev)
709 atomic_inc(&rrdev->nr_pending);
Dan Williams91c00922007-01-02 13:52:30 -0700710 rcu_read_unlock();
711
NeilBrown73e92e52011-07-28 11:39:22 +1000712 /* We have already checked bad blocks for reads. Now
NeilBrown977df362011-12-23 10:17:53 +1100713 * need to check for writes. We never accept write errors
714 * on the replacement, so we don't to check rrdev.
NeilBrown73e92e52011-07-28 11:39:22 +1000715 */
716 while ((rw & WRITE) && rdev &&
717 test_bit(WriteErrorSeen, &rdev->flags)) {
718 sector_t first_bad;
719 int bad_sectors;
720 int bad = is_badblock(rdev, sh->sector, STRIPE_SECTORS,
721 &first_bad, &bad_sectors);
722 if (!bad)
723 break;
724
725 if (bad < 0) {
726 set_bit(BlockedBadBlocks, &rdev->flags);
727 if (!conf->mddev->external &&
728 conf->mddev->flags) {
729 /* It is very unlikely, but we might
730 * still need to write out the
731 * bad block log - better give it
732 * a chance*/
733 md_check_recovery(conf->mddev);
734 }
majianpeng18507532012-07-03 12:11:54 +1000735 /*
736 * Because md_wait_for_blocked_rdev
737 * will dec nr_pending, we must
738 * increment it first.
739 */
740 atomic_inc(&rdev->nr_pending);
NeilBrown73e92e52011-07-28 11:39:22 +1000741 md_wait_for_blocked_rdev(rdev, conf->mddev);
742 } else {
743 /* Acknowledged bad block - skip the write */
744 rdev_dec_pending(rdev, conf->mddev);
745 rdev = NULL;
746 }
747 }
748
Dan Williams91c00922007-01-02 13:52:30 -0700749 if (rdev) {
NeilBrown9a3e1102011-12-23 10:17:53 +1100750 if (s->syncing || s->expanding || s->expanded
751 || s->replacing)
Dan Williams91c00922007-01-02 13:52:30 -0700752 md_sync_acct(rdev->bdev, STRIPE_SECTORS);
753
Dan Williams2b7497f2008-06-28 08:31:52 +1000754 set_bit(STRIPE_IO_STARTED, &sh->state);
755
Kent Overstreet2f6db2a2012-09-11 12:26:38 -0700756 bio_reset(bi);
Dan Williams91c00922007-01-02 13:52:30 -0700757 bi->bi_bdev = rdev->bdev;
Kent Overstreet2f6db2a2012-09-11 12:26:38 -0700758 bi->bi_rw = rw;
759 bi->bi_end_io = (rw & WRITE)
760 ? raid5_end_write_request
761 : raid5_end_read_request;
762 bi->bi_private = sh;
763
Dan Williams91c00922007-01-02 13:52:30 -0700764 pr_debug("%s: for %llu schedule op %ld on disc %d\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -0700765 __func__, (unsigned long long)sh->sector,
Dan Williams91c00922007-01-02 13:52:30 -0700766 bi->bi_rw, i);
767 atomic_inc(&sh->count);
NeilBrown05616be2012-05-21 09:27:00 +1000768 if (use_new_offset(conf, sh))
769 bi->bi_sector = (sh->sector
770 + rdev->new_data_offset);
771 else
772 bi->bi_sector = (sh->sector
773 + rdev->data_offset);
majianpeng3f9e7c12012-07-31 10:04:21 +1000774 if (test_bit(R5_ReadNoMerge, &sh->dev[i].flags))
775 bi->bi_rw |= REQ_FLUSH;
776
Kent Overstreet4997b722013-05-30 08:44:39 +0200777 bi->bi_vcnt = 1;
Dan Williams91c00922007-01-02 13:52:30 -0700778 bi->bi_io_vec[0].bv_len = STRIPE_SIZE;
779 bi->bi_io_vec[0].bv_offset = 0;
780 bi->bi_size = STRIPE_SIZE;
Shaohua Li37c61ff2013-10-19 14:50:28 +0800781 /*
782 * If this is discard request, set bi_vcnt 0. We don't
783 * want to confuse SCSI because SCSI will replace payload
784 */
785 if (rw & REQ_DISCARD)
786 bi->bi_vcnt = 0;
NeilBrown977df362011-12-23 10:17:53 +1100787 if (rrdev)
788 set_bit(R5_DOUBLE_LOCKED, &sh->dev[i].flags);
Jonathan Brassowe3620a32013-03-07 16:22:01 -0600789
790 if (conf->mddev->gendisk)
791 trace_block_bio_remap(bdev_get_queue(bi->bi_bdev),
792 bi, disk_devt(conf->mddev->gendisk),
793 sh->dev[i].sector);
Dan Williams91c00922007-01-02 13:52:30 -0700794 generic_make_request(bi);
NeilBrown977df362011-12-23 10:17:53 +1100795 }
796 if (rrdev) {
NeilBrown9a3e1102011-12-23 10:17:53 +1100797 if (s->syncing || s->expanding || s->expanded
798 || s->replacing)
NeilBrown977df362011-12-23 10:17:53 +1100799 md_sync_acct(rrdev->bdev, STRIPE_SECTORS);
800
801 set_bit(STRIPE_IO_STARTED, &sh->state);
802
Kent Overstreet2f6db2a2012-09-11 12:26:38 -0700803 bio_reset(rbi);
NeilBrown977df362011-12-23 10:17:53 +1100804 rbi->bi_bdev = rrdev->bdev;
Kent Overstreet2f6db2a2012-09-11 12:26:38 -0700805 rbi->bi_rw = rw;
806 BUG_ON(!(rw & WRITE));
807 rbi->bi_end_io = raid5_end_write_request;
808 rbi->bi_private = sh;
809
NeilBrown977df362011-12-23 10:17:53 +1100810 pr_debug("%s: for %llu schedule op %ld on "
811 "replacement disc %d\n",
812 __func__, (unsigned long long)sh->sector,
813 rbi->bi_rw, i);
814 atomic_inc(&sh->count);
NeilBrown05616be2012-05-21 09:27:00 +1000815 if (use_new_offset(conf, sh))
816 rbi->bi_sector = (sh->sector
817 + rrdev->new_data_offset);
818 else
819 rbi->bi_sector = (sh->sector
820 + rrdev->data_offset);
Kent Overstreet4997b722013-05-30 08:44:39 +0200821 rbi->bi_vcnt = 1;
NeilBrown977df362011-12-23 10:17:53 +1100822 rbi->bi_io_vec[0].bv_len = STRIPE_SIZE;
823 rbi->bi_io_vec[0].bv_offset = 0;
824 rbi->bi_size = STRIPE_SIZE;
Shaohua Li37c61ff2013-10-19 14:50:28 +0800825 /*
826 * If this is discard request, set bi_vcnt 0. We don't
827 * want to confuse SCSI because SCSI will replace payload
828 */
829 if (rw & REQ_DISCARD)
830 rbi->bi_vcnt = 0;
Jonathan Brassowe3620a32013-03-07 16:22:01 -0600831 if (conf->mddev->gendisk)
832 trace_block_bio_remap(bdev_get_queue(rbi->bi_bdev),
833 rbi, disk_devt(conf->mddev->gendisk),
834 sh->dev[i].sector);
NeilBrown977df362011-12-23 10:17:53 +1100835 generic_make_request(rbi);
836 }
837 if (!rdev && !rrdev) {
Namhyung Kimb0629622011-06-14 14:20:19 +1000838 if (rw & WRITE)
Dan Williams91c00922007-01-02 13:52:30 -0700839 set_bit(STRIPE_DEGRADED, &sh->state);
840 pr_debug("skip op %ld on disc %d for sector %llu\n",
841 bi->bi_rw, i, (unsigned long long)sh->sector);
842 clear_bit(R5_LOCKED, &sh->dev[i].flags);
843 set_bit(STRIPE_HANDLE, &sh->state);
844 }
845 }
846}
847
848static struct dma_async_tx_descriptor *
849async_copy_data(int frombio, struct bio *bio, struct page *page,
850 sector_t sector, struct dma_async_tx_descriptor *tx)
851{
852 struct bio_vec *bvl;
853 struct page *bio_page;
854 int i;
855 int page_offset;
Dan Williamsa08abd82009-06-03 11:43:59 -0700856 struct async_submit_ctl submit;
Dan Williams0403e382009-09-08 17:42:50 -0700857 enum async_tx_flags flags = 0;
Dan Williams91c00922007-01-02 13:52:30 -0700858
859 if (bio->bi_sector >= sector)
860 page_offset = (signed)(bio->bi_sector - sector) * 512;
861 else
862 page_offset = (signed)(sector - bio->bi_sector) * -512;
Dan Williamsa08abd82009-06-03 11:43:59 -0700863
Dan Williams0403e382009-09-08 17:42:50 -0700864 if (frombio)
865 flags |= ASYNC_TX_FENCE;
866 init_async_submit(&submit, flags, tx, NULL, NULL, NULL);
867
Dan Williams91c00922007-01-02 13:52:30 -0700868 bio_for_each_segment(bvl, bio, i) {
Namhyung Kimfcde9072011-06-14 14:23:57 +1000869 int len = bvl->bv_len;
Dan Williams91c00922007-01-02 13:52:30 -0700870 int clen;
871 int b_offset = 0;
872
873 if (page_offset < 0) {
874 b_offset = -page_offset;
875 page_offset += b_offset;
876 len -= b_offset;
877 }
878
879 if (len > 0 && page_offset + len > STRIPE_SIZE)
880 clen = STRIPE_SIZE - page_offset;
881 else
882 clen = len;
883
884 if (clen > 0) {
Namhyung Kimfcde9072011-06-14 14:23:57 +1000885 b_offset += bvl->bv_offset;
886 bio_page = bvl->bv_page;
Dan Williams91c00922007-01-02 13:52:30 -0700887 if (frombio)
888 tx = async_memcpy(page, bio_page, page_offset,
Dan Williamsa08abd82009-06-03 11:43:59 -0700889 b_offset, clen, &submit);
Dan Williams91c00922007-01-02 13:52:30 -0700890 else
891 tx = async_memcpy(bio_page, page, b_offset,
Dan Williamsa08abd82009-06-03 11:43:59 -0700892 page_offset, clen, &submit);
Dan Williams91c00922007-01-02 13:52:30 -0700893 }
Dan Williamsa08abd82009-06-03 11:43:59 -0700894 /* chain the operations */
895 submit.depend_tx = tx;
896
Dan Williams91c00922007-01-02 13:52:30 -0700897 if (clen < len) /* hit end of page */
898 break;
899 page_offset += len;
900 }
901
902 return tx;
903}
904
905static void ops_complete_biofill(void *stripe_head_ref)
906{
907 struct stripe_head *sh = stripe_head_ref;
908 struct bio *return_bi = NULL;
Dan Williamse4d84902007-09-24 10:06:13 -0700909 int i;
Dan Williams91c00922007-01-02 13:52:30 -0700910
Harvey Harrisone46b2722008-04-28 02:15:50 -0700911 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700912 (unsigned long long)sh->sector);
913
914 /* clear completed biofills */
915 for (i = sh->disks; i--; ) {
916 struct r5dev *dev = &sh->dev[i];
Dan Williams91c00922007-01-02 13:52:30 -0700917
918 /* acknowledge completion of a biofill operation */
Dan Williamse4d84902007-09-24 10:06:13 -0700919 /* and check if we need to reply to a read request,
920 * new R5_Wantfill requests are held off until
Dan Williams83de75c2008-06-28 08:31:58 +1000921 * !STRIPE_BIOFILL_RUN
Dan Williamse4d84902007-09-24 10:06:13 -0700922 */
923 if (test_and_clear_bit(R5_Wantfill, &dev->flags)) {
Dan Williams91c00922007-01-02 13:52:30 -0700924 struct bio *rbi, *rbi2;
Dan Williams91c00922007-01-02 13:52:30 -0700925
Dan Williams91c00922007-01-02 13:52:30 -0700926 BUG_ON(!dev->read);
927 rbi = dev->read;
928 dev->read = NULL;
929 while (rbi && rbi->bi_sector <
930 dev->sector + STRIPE_SECTORS) {
931 rbi2 = r5_next_bio(rbi, dev->sector);
Shaohua Lie7836bd62012-07-19 16:01:31 +1000932 if (!raid5_dec_bi_active_stripes(rbi)) {
Dan Williams91c00922007-01-02 13:52:30 -0700933 rbi->bi_next = return_bi;
934 return_bi = rbi;
935 }
Dan Williams91c00922007-01-02 13:52:30 -0700936 rbi = rbi2;
937 }
938 }
939 }
Dan Williams83de75c2008-06-28 08:31:58 +1000940 clear_bit(STRIPE_BIOFILL_RUN, &sh->state);
Dan Williams91c00922007-01-02 13:52:30 -0700941
942 return_io(return_bi);
943
Dan Williamse4d84902007-09-24 10:06:13 -0700944 set_bit(STRIPE_HANDLE, &sh->state);
Dan Williams91c00922007-01-02 13:52:30 -0700945 release_stripe(sh);
946}
947
948static void ops_run_biofill(struct stripe_head *sh)
949{
950 struct dma_async_tx_descriptor *tx = NULL;
Dan Williamsa08abd82009-06-03 11:43:59 -0700951 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -0700952 int i;
953
Harvey Harrisone46b2722008-04-28 02:15:50 -0700954 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700955 (unsigned long long)sh->sector);
956
957 for (i = sh->disks; i--; ) {
958 struct r5dev *dev = &sh->dev[i];
959 if (test_bit(R5_Wantfill, &dev->flags)) {
960 struct bio *rbi;
Shaohua Lib17459c2012-07-19 16:01:31 +1000961 spin_lock_irq(&sh->stripe_lock);
Dan Williams91c00922007-01-02 13:52:30 -0700962 dev->read = rbi = dev->toread;
963 dev->toread = NULL;
Shaohua Lib17459c2012-07-19 16:01:31 +1000964 spin_unlock_irq(&sh->stripe_lock);
Dan Williams91c00922007-01-02 13:52:30 -0700965 while (rbi && rbi->bi_sector <
966 dev->sector + STRIPE_SECTORS) {
967 tx = async_copy_data(0, rbi, dev->page,
968 dev->sector, tx);
969 rbi = r5_next_bio(rbi, dev->sector);
970 }
971 }
972 }
973
974 atomic_inc(&sh->count);
Dan Williamsa08abd82009-06-03 11:43:59 -0700975 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_biofill, sh, NULL);
976 async_trigger_callback(&submit);
Dan Williams91c00922007-01-02 13:52:30 -0700977}
978
Dan Williams4e7d2c02009-08-29 19:13:11 -0700979static void mark_target_uptodate(struct stripe_head *sh, int target)
980{
981 struct r5dev *tgt;
982
983 if (target < 0)
984 return;
985
986 tgt = &sh->dev[target];
987 set_bit(R5_UPTODATE, &tgt->flags);
988 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
989 clear_bit(R5_Wantcompute, &tgt->flags);
990}
991
Dan Williamsac6b53b2009-07-14 13:40:19 -0700992static void ops_complete_compute(void *stripe_head_ref)
Dan Williams91c00922007-01-02 13:52:30 -0700993{
994 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -0700995
Harvey Harrisone46b2722008-04-28 02:15:50 -0700996 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700997 (unsigned long long)sh->sector);
998
Dan Williamsac6b53b2009-07-14 13:40:19 -0700999 /* mark the computed target(s) as uptodate */
Dan Williams4e7d2c02009-08-29 19:13:11 -07001000 mark_target_uptodate(sh, sh->ops.target);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001001 mark_target_uptodate(sh, sh->ops.target2);
Dan Williams4e7d2c02009-08-29 19:13:11 -07001002
Dan Williamsecc65c92008-06-28 08:31:57 +10001003 clear_bit(STRIPE_COMPUTE_RUN, &sh->state);
1004 if (sh->check_state == check_state_compute_run)
1005 sh->check_state = check_state_compute_result;
Dan Williams91c00922007-01-02 13:52:30 -07001006 set_bit(STRIPE_HANDLE, &sh->state);
1007 release_stripe(sh);
1008}
1009
Dan Williamsd6f38f32009-07-14 11:50:52 -07001010/* return a pointer to the address conversion region of the scribble buffer */
1011static addr_conv_t *to_addr_conv(struct stripe_head *sh,
1012 struct raid5_percpu *percpu)
Dan Williams91c00922007-01-02 13:52:30 -07001013{
Dan Williamsd6f38f32009-07-14 11:50:52 -07001014 return percpu->scribble + sizeof(struct page *) * (sh->disks + 2);
1015}
1016
1017static struct dma_async_tx_descriptor *
1018ops_run_compute5(struct stripe_head *sh, struct raid5_percpu *percpu)
1019{
Dan Williams91c00922007-01-02 13:52:30 -07001020 int disks = sh->disks;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001021 struct page **xor_srcs = percpu->scribble;
Dan Williams91c00922007-01-02 13:52:30 -07001022 int target = sh->ops.target;
1023 struct r5dev *tgt = &sh->dev[target];
1024 struct page *xor_dest = tgt->page;
1025 int count = 0;
1026 struct dma_async_tx_descriptor *tx;
Dan Williamsa08abd82009-06-03 11:43:59 -07001027 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001028 int i;
1029
1030 pr_debug("%s: stripe %llu block: %d\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -07001031 __func__, (unsigned long long)sh->sector, target);
Dan Williams91c00922007-01-02 13:52:30 -07001032 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1033
1034 for (i = disks; i--; )
1035 if (i != target)
1036 xor_srcs[count++] = sh->dev[i].page;
1037
1038 atomic_inc(&sh->count);
1039
Dan Williams0403e382009-09-08 17:42:50 -07001040 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST, NULL,
Dan Williamsac6b53b2009-07-14 13:40:19 -07001041 ops_complete_compute, sh, to_addr_conv(sh, percpu));
Dan Williams91c00922007-01-02 13:52:30 -07001042 if (unlikely(count == 1))
Dan Williamsa08abd82009-06-03 11:43:59 -07001043 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001044 else
Dan Williamsa08abd82009-06-03 11:43:59 -07001045 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001046
Dan Williams91c00922007-01-02 13:52:30 -07001047 return tx;
1048}
1049
Dan Williamsac6b53b2009-07-14 13:40:19 -07001050/* set_syndrome_sources - populate source buffers for gen_syndrome
1051 * @srcs - (struct page *) array of size sh->disks
1052 * @sh - stripe_head to parse
1053 *
1054 * Populates srcs in proper layout order for the stripe and returns the
1055 * 'count' of sources to be used in a call to async_gen_syndrome. The P
1056 * destination buffer is recorded in srcs[count] and the Q destination
1057 * is recorded in srcs[count+1]].
1058 */
1059static int set_syndrome_sources(struct page **srcs, struct stripe_head *sh)
1060{
1061 int disks = sh->disks;
1062 int syndrome_disks = sh->ddf_layout ? disks : (disks - 2);
1063 int d0_idx = raid6_d0(sh);
1064 int count;
1065 int i;
1066
1067 for (i = 0; i < disks; i++)
NeilBrown5dd33c92009-10-16 16:40:25 +11001068 srcs[i] = NULL;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001069
1070 count = 0;
1071 i = d0_idx;
1072 do {
1073 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
1074
1075 srcs[slot] = sh->dev[i].page;
1076 i = raid6_next_disk(i, disks);
1077 } while (i != d0_idx);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001078
NeilBrowne4424fe2009-10-16 16:27:34 +11001079 return syndrome_disks;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001080}
1081
1082static struct dma_async_tx_descriptor *
1083ops_run_compute6_1(struct stripe_head *sh, struct raid5_percpu *percpu)
1084{
1085 int disks = sh->disks;
1086 struct page **blocks = percpu->scribble;
1087 int target;
1088 int qd_idx = sh->qd_idx;
1089 struct dma_async_tx_descriptor *tx;
1090 struct async_submit_ctl submit;
1091 struct r5dev *tgt;
1092 struct page *dest;
1093 int i;
1094 int count;
1095
1096 if (sh->ops.target < 0)
1097 target = sh->ops.target2;
1098 else if (sh->ops.target2 < 0)
1099 target = sh->ops.target;
1100 else
1101 /* we should only have one valid target */
1102 BUG();
1103 BUG_ON(target < 0);
1104 pr_debug("%s: stripe %llu block: %d\n",
1105 __func__, (unsigned long long)sh->sector, target);
1106
1107 tgt = &sh->dev[target];
1108 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1109 dest = tgt->page;
1110
1111 atomic_inc(&sh->count);
1112
1113 if (target == qd_idx) {
1114 count = set_syndrome_sources(blocks, sh);
1115 blocks[count] = NULL; /* regenerating p is not necessary */
1116 BUG_ON(blocks[count+1] != dest); /* q should already be set */
Dan Williams0403e382009-09-08 17:42:50 -07001117 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1118 ops_complete_compute, sh,
Dan Williamsac6b53b2009-07-14 13:40:19 -07001119 to_addr_conv(sh, percpu));
1120 tx = async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
1121 } else {
1122 /* Compute any data- or p-drive using XOR */
1123 count = 0;
1124 for (i = disks; i-- ; ) {
1125 if (i == target || i == qd_idx)
1126 continue;
1127 blocks[count++] = sh->dev[i].page;
1128 }
1129
Dan Williams0403e382009-09-08 17:42:50 -07001130 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
1131 NULL, ops_complete_compute, sh,
Dan Williamsac6b53b2009-07-14 13:40:19 -07001132 to_addr_conv(sh, percpu));
1133 tx = async_xor(dest, blocks, 0, count, STRIPE_SIZE, &submit);
1134 }
1135
1136 return tx;
1137}
1138
1139static struct dma_async_tx_descriptor *
1140ops_run_compute6_2(struct stripe_head *sh, struct raid5_percpu *percpu)
1141{
1142 int i, count, disks = sh->disks;
1143 int syndrome_disks = sh->ddf_layout ? disks : disks-2;
1144 int d0_idx = raid6_d0(sh);
1145 int faila = -1, failb = -1;
1146 int target = sh->ops.target;
1147 int target2 = sh->ops.target2;
1148 struct r5dev *tgt = &sh->dev[target];
1149 struct r5dev *tgt2 = &sh->dev[target2];
1150 struct dma_async_tx_descriptor *tx;
1151 struct page **blocks = percpu->scribble;
1152 struct async_submit_ctl submit;
1153
1154 pr_debug("%s: stripe %llu block1: %d block2: %d\n",
1155 __func__, (unsigned long long)sh->sector, target, target2);
1156 BUG_ON(target < 0 || target2 < 0);
1157 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1158 BUG_ON(!test_bit(R5_Wantcompute, &tgt2->flags));
1159
Dan Williams6c910a72009-09-16 12:24:54 -07001160 /* we need to open-code set_syndrome_sources to handle the
Dan Williamsac6b53b2009-07-14 13:40:19 -07001161 * slot number conversion for 'faila' and 'failb'
1162 */
1163 for (i = 0; i < disks ; i++)
NeilBrown5dd33c92009-10-16 16:40:25 +11001164 blocks[i] = NULL;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001165 count = 0;
1166 i = d0_idx;
1167 do {
1168 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
1169
1170 blocks[slot] = sh->dev[i].page;
1171
1172 if (i == target)
1173 faila = slot;
1174 if (i == target2)
1175 failb = slot;
1176 i = raid6_next_disk(i, disks);
1177 } while (i != d0_idx);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001178
1179 BUG_ON(faila == failb);
1180 if (failb < faila)
1181 swap(faila, failb);
1182 pr_debug("%s: stripe: %llu faila: %d failb: %d\n",
1183 __func__, (unsigned long long)sh->sector, faila, failb);
1184
1185 atomic_inc(&sh->count);
1186
1187 if (failb == syndrome_disks+1) {
1188 /* Q disk is one of the missing disks */
1189 if (faila == syndrome_disks) {
1190 /* Missing P+Q, just recompute */
Dan Williams0403e382009-09-08 17:42:50 -07001191 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1192 ops_complete_compute, sh,
1193 to_addr_conv(sh, percpu));
NeilBrowne4424fe2009-10-16 16:27:34 +11001194 return async_gen_syndrome(blocks, 0, syndrome_disks+2,
Dan Williamsac6b53b2009-07-14 13:40:19 -07001195 STRIPE_SIZE, &submit);
1196 } else {
1197 struct page *dest;
1198 int data_target;
1199 int qd_idx = sh->qd_idx;
1200
1201 /* Missing D+Q: recompute D from P, then recompute Q */
1202 if (target == qd_idx)
1203 data_target = target2;
1204 else
1205 data_target = target;
1206
1207 count = 0;
1208 for (i = disks; i-- ; ) {
1209 if (i == data_target || i == qd_idx)
1210 continue;
1211 blocks[count++] = sh->dev[i].page;
1212 }
1213 dest = sh->dev[data_target].page;
Dan Williams0403e382009-09-08 17:42:50 -07001214 init_async_submit(&submit,
1215 ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
1216 NULL, NULL, NULL,
1217 to_addr_conv(sh, percpu));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001218 tx = async_xor(dest, blocks, 0, count, STRIPE_SIZE,
1219 &submit);
1220
1221 count = set_syndrome_sources(blocks, sh);
Dan Williams0403e382009-09-08 17:42:50 -07001222 init_async_submit(&submit, ASYNC_TX_FENCE, tx,
1223 ops_complete_compute, sh,
1224 to_addr_conv(sh, percpu));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001225 return async_gen_syndrome(blocks, 0, count+2,
1226 STRIPE_SIZE, &submit);
1227 }
Dan Williamsac6b53b2009-07-14 13:40:19 -07001228 } else {
Dan Williams6c910a72009-09-16 12:24:54 -07001229 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1230 ops_complete_compute, sh,
1231 to_addr_conv(sh, percpu));
1232 if (failb == syndrome_disks) {
1233 /* We're missing D+P. */
1234 return async_raid6_datap_recov(syndrome_disks+2,
1235 STRIPE_SIZE, faila,
1236 blocks, &submit);
1237 } else {
1238 /* We're missing D+D. */
1239 return async_raid6_2data_recov(syndrome_disks+2,
1240 STRIPE_SIZE, faila, failb,
1241 blocks, &submit);
1242 }
Dan Williamsac6b53b2009-07-14 13:40:19 -07001243 }
1244}
1245
1246
Dan Williams91c00922007-01-02 13:52:30 -07001247static void ops_complete_prexor(void *stripe_head_ref)
1248{
1249 struct stripe_head *sh = stripe_head_ref;
1250
Harvey Harrisone46b2722008-04-28 02:15:50 -07001251 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001252 (unsigned long long)sh->sector);
Dan Williams91c00922007-01-02 13:52:30 -07001253}
1254
1255static struct dma_async_tx_descriptor *
Dan Williamsd6f38f32009-07-14 11:50:52 -07001256ops_run_prexor(struct stripe_head *sh, struct raid5_percpu *percpu,
1257 struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001258{
Dan Williams91c00922007-01-02 13:52:30 -07001259 int disks = sh->disks;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001260 struct page **xor_srcs = percpu->scribble;
Dan Williams91c00922007-01-02 13:52:30 -07001261 int count = 0, pd_idx = sh->pd_idx, i;
Dan Williamsa08abd82009-06-03 11:43:59 -07001262 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001263
1264 /* existing parity data subtracted */
1265 struct page *xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
1266
Harvey Harrisone46b2722008-04-28 02:15:50 -07001267 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001268 (unsigned long long)sh->sector);
1269
1270 for (i = disks; i--; ) {
1271 struct r5dev *dev = &sh->dev[i];
1272 /* Only process blocks that are known to be uptodate */
Dan Williamsd8ee0722008-06-28 08:32:06 +10001273 if (test_bit(R5_Wantdrain, &dev->flags))
Dan Williams91c00922007-01-02 13:52:30 -07001274 xor_srcs[count++] = dev->page;
1275 }
1276
Dan Williams0403e382009-09-08 17:42:50 -07001277 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_DROP_DST, tx,
Dan Williamsd6f38f32009-07-14 11:50:52 -07001278 ops_complete_prexor, sh, to_addr_conv(sh, percpu));
Dan Williamsa08abd82009-06-03 11:43:59 -07001279 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001280
1281 return tx;
1282}
1283
1284static struct dma_async_tx_descriptor *
Dan Williamsd8ee0722008-06-28 08:32:06 +10001285ops_run_biodrain(struct stripe_head *sh, struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001286{
1287 int disks = sh->disks;
Dan Williamsd8ee0722008-06-28 08:32:06 +10001288 int i;
Dan Williams91c00922007-01-02 13:52:30 -07001289
Harvey Harrisone46b2722008-04-28 02:15:50 -07001290 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001291 (unsigned long long)sh->sector);
1292
1293 for (i = disks; i--; ) {
1294 struct r5dev *dev = &sh->dev[i];
1295 struct bio *chosen;
Dan Williams91c00922007-01-02 13:52:30 -07001296
Dan Williamsd8ee0722008-06-28 08:32:06 +10001297 if (test_and_clear_bit(R5_Wantdrain, &dev->flags)) {
Dan Williams91c00922007-01-02 13:52:30 -07001298 struct bio *wbi;
1299
Shaohua Lib17459c2012-07-19 16:01:31 +10001300 spin_lock_irq(&sh->stripe_lock);
Dan Williams91c00922007-01-02 13:52:30 -07001301 chosen = dev->towrite;
1302 dev->towrite = NULL;
1303 BUG_ON(dev->written);
1304 wbi = dev->written = chosen;
Shaohua Lib17459c2012-07-19 16:01:31 +10001305 spin_unlock_irq(&sh->stripe_lock);
Dan Williams91c00922007-01-02 13:52:30 -07001306
1307 while (wbi && wbi->bi_sector <
1308 dev->sector + STRIPE_SECTORS) {
Tejun Heoe9c74692010-09-03 11:56:18 +02001309 if (wbi->bi_rw & REQ_FUA)
1310 set_bit(R5_WantFUA, &dev->flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001311 if (wbi->bi_rw & REQ_SYNC)
1312 set_bit(R5_SyncIO, &dev->flags);
Shaohua Li9e4447682012-10-11 13:49:49 +11001313 if (wbi->bi_rw & REQ_DISCARD)
Shaohua Li620125f2012-10-11 13:49:05 +11001314 set_bit(R5_Discard, &dev->flags);
Shaohua Li9e4447682012-10-11 13:49:49 +11001315 else
Shaohua Li620125f2012-10-11 13:49:05 +11001316 tx = async_copy_data(1, wbi, dev->page,
1317 dev->sector, tx);
Dan Williams91c00922007-01-02 13:52:30 -07001318 wbi = r5_next_bio(wbi, dev->sector);
1319 }
1320 }
1321 }
1322
1323 return tx;
1324}
1325
Dan Williamsac6b53b2009-07-14 13:40:19 -07001326static void ops_complete_reconstruct(void *stripe_head_ref)
Dan Williams91c00922007-01-02 13:52:30 -07001327{
1328 struct stripe_head *sh = stripe_head_ref;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001329 int disks = sh->disks;
1330 int pd_idx = sh->pd_idx;
1331 int qd_idx = sh->qd_idx;
1332 int i;
Shaohua Li9e4447682012-10-11 13:49:49 +11001333 bool fua = false, sync = false, discard = false;
Dan Williams91c00922007-01-02 13:52:30 -07001334
Harvey Harrisone46b2722008-04-28 02:15:50 -07001335 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001336 (unsigned long long)sh->sector);
1337
Shaohua Libc0934f2012-05-22 13:55:05 +10001338 for (i = disks; i--; ) {
Tejun Heoe9c74692010-09-03 11:56:18 +02001339 fua |= test_bit(R5_WantFUA, &sh->dev[i].flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001340 sync |= test_bit(R5_SyncIO, &sh->dev[i].flags);
Shaohua Li9e4447682012-10-11 13:49:49 +11001341 discard |= test_bit(R5_Discard, &sh->dev[i].flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001342 }
Tejun Heoe9c74692010-09-03 11:56:18 +02001343
Dan Williams91c00922007-01-02 13:52:30 -07001344 for (i = disks; i--; ) {
1345 struct r5dev *dev = &sh->dev[i];
Dan Williamsac6b53b2009-07-14 13:40:19 -07001346
Tejun Heoe9c74692010-09-03 11:56:18 +02001347 if (dev->written || i == pd_idx || i == qd_idx) {
Shaohua Li9e4447682012-10-11 13:49:49 +11001348 if (!discard)
1349 set_bit(R5_UPTODATE, &dev->flags);
Tejun Heoe9c74692010-09-03 11:56:18 +02001350 if (fua)
1351 set_bit(R5_WantFUA, &dev->flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001352 if (sync)
1353 set_bit(R5_SyncIO, &dev->flags);
Tejun Heoe9c74692010-09-03 11:56:18 +02001354 }
Dan Williams91c00922007-01-02 13:52:30 -07001355 }
1356
Dan Williamsd8ee0722008-06-28 08:32:06 +10001357 if (sh->reconstruct_state == reconstruct_state_drain_run)
1358 sh->reconstruct_state = reconstruct_state_drain_result;
1359 else if (sh->reconstruct_state == reconstruct_state_prexor_drain_run)
1360 sh->reconstruct_state = reconstruct_state_prexor_drain_result;
1361 else {
1362 BUG_ON(sh->reconstruct_state != reconstruct_state_run);
1363 sh->reconstruct_state = reconstruct_state_result;
1364 }
Dan Williams91c00922007-01-02 13:52:30 -07001365
1366 set_bit(STRIPE_HANDLE, &sh->state);
1367 release_stripe(sh);
1368}
1369
1370static void
Dan Williamsac6b53b2009-07-14 13:40:19 -07001371ops_run_reconstruct5(struct stripe_head *sh, struct raid5_percpu *percpu,
1372 struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001373{
Dan Williams91c00922007-01-02 13:52:30 -07001374 int disks = sh->disks;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001375 struct page **xor_srcs = percpu->scribble;
Dan Williamsa08abd82009-06-03 11:43:59 -07001376 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001377 int count = 0, pd_idx = sh->pd_idx, i;
1378 struct page *xor_dest;
Dan Williamsd8ee0722008-06-28 08:32:06 +10001379 int prexor = 0;
Dan Williams91c00922007-01-02 13:52:30 -07001380 unsigned long flags;
Dan Williams91c00922007-01-02 13:52:30 -07001381
Harvey Harrisone46b2722008-04-28 02:15:50 -07001382 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001383 (unsigned long long)sh->sector);
1384
Shaohua Li620125f2012-10-11 13:49:05 +11001385 for (i = 0; i < sh->disks; i++) {
1386 if (pd_idx == i)
1387 continue;
1388 if (!test_bit(R5_Discard, &sh->dev[i].flags))
1389 break;
1390 }
1391 if (i >= sh->disks) {
1392 atomic_inc(&sh->count);
Shaohua Li620125f2012-10-11 13:49:05 +11001393 set_bit(R5_Discard, &sh->dev[pd_idx].flags);
1394 ops_complete_reconstruct(sh);
1395 return;
1396 }
Dan Williams91c00922007-01-02 13:52:30 -07001397 /* check if prexor is active which means only process blocks
1398 * that are part of a read-modify-write (written)
1399 */
Dan Williamsd8ee0722008-06-28 08:32:06 +10001400 if (sh->reconstruct_state == reconstruct_state_prexor_drain_run) {
1401 prexor = 1;
Dan Williams91c00922007-01-02 13:52:30 -07001402 xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
1403 for (i = disks; i--; ) {
1404 struct r5dev *dev = &sh->dev[i];
1405 if (dev->written)
1406 xor_srcs[count++] = dev->page;
1407 }
1408 } else {
1409 xor_dest = sh->dev[pd_idx].page;
1410 for (i = disks; i--; ) {
1411 struct r5dev *dev = &sh->dev[i];
1412 if (i != pd_idx)
1413 xor_srcs[count++] = dev->page;
1414 }
1415 }
1416
Dan Williams91c00922007-01-02 13:52:30 -07001417 /* 1/ if we prexor'd then the dest is reused as a source
1418 * 2/ if we did not prexor then we are redoing the parity
1419 * set ASYNC_TX_XOR_DROP_DST and ASYNC_TX_XOR_ZERO_DST
1420 * for the synchronous xor case
1421 */
Dan Williams88ba2aa2009-04-09 16:16:18 -07001422 flags = ASYNC_TX_ACK |
Dan Williams91c00922007-01-02 13:52:30 -07001423 (prexor ? ASYNC_TX_XOR_DROP_DST : ASYNC_TX_XOR_ZERO_DST);
1424
1425 atomic_inc(&sh->count);
1426
Dan Williamsac6b53b2009-07-14 13:40:19 -07001427 init_async_submit(&submit, flags, tx, ops_complete_reconstruct, sh,
Dan Williamsd6f38f32009-07-14 11:50:52 -07001428 to_addr_conv(sh, percpu));
Dan Williamsa08abd82009-06-03 11:43:59 -07001429 if (unlikely(count == 1))
1430 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
1431 else
1432 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001433}
1434
Dan Williamsac6b53b2009-07-14 13:40:19 -07001435static void
1436ops_run_reconstruct6(struct stripe_head *sh, struct raid5_percpu *percpu,
1437 struct dma_async_tx_descriptor *tx)
1438{
1439 struct async_submit_ctl submit;
1440 struct page **blocks = percpu->scribble;
Shaohua Li620125f2012-10-11 13:49:05 +11001441 int count, i;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001442
1443 pr_debug("%s: stripe %llu\n", __func__, (unsigned long long)sh->sector);
1444
Shaohua Li620125f2012-10-11 13:49:05 +11001445 for (i = 0; i < sh->disks; i++) {
1446 if (sh->pd_idx == i || sh->qd_idx == i)
1447 continue;
1448 if (!test_bit(R5_Discard, &sh->dev[i].flags))
1449 break;
1450 }
1451 if (i >= sh->disks) {
1452 atomic_inc(&sh->count);
Shaohua Li620125f2012-10-11 13:49:05 +11001453 set_bit(R5_Discard, &sh->dev[sh->pd_idx].flags);
1454 set_bit(R5_Discard, &sh->dev[sh->qd_idx].flags);
1455 ops_complete_reconstruct(sh);
1456 return;
1457 }
1458
Dan Williamsac6b53b2009-07-14 13:40:19 -07001459 count = set_syndrome_sources(blocks, sh);
1460
1461 atomic_inc(&sh->count);
1462
1463 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_reconstruct,
1464 sh, to_addr_conv(sh, percpu));
1465 async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001466}
1467
1468static void ops_complete_check(void *stripe_head_ref)
1469{
1470 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -07001471
Harvey Harrisone46b2722008-04-28 02:15:50 -07001472 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001473 (unsigned long long)sh->sector);
1474
Dan Williamsecc65c92008-06-28 08:31:57 +10001475 sh->check_state = check_state_check_result;
Dan Williams91c00922007-01-02 13:52:30 -07001476 set_bit(STRIPE_HANDLE, &sh->state);
1477 release_stripe(sh);
1478}
1479
Dan Williamsac6b53b2009-07-14 13:40:19 -07001480static void ops_run_check_p(struct stripe_head *sh, struct raid5_percpu *percpu)
Dan Williams91c00922007-01-02 13:52:30 -07001481{
Dan Williams91c00922007-01-02 13:52:30 -07001482 int disks = sh->disks;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001483 int pd_idx = sh->pd_idx;
1484 int qd_idx = sh->qd_idx;
1485 struct page *xor_dest;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001486 struct page **xor_srcs = percpu->scribble;
Dan Williams91c00922007-01-02 13:52:30 -07001487 struct dma_async_tx_descriptor *tx;
Dan Williamsa08abd82009-06-03 11:43:59 -07001488 struct async_submit_ctl submit;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001489 int count;
1490 int i;
Dan Williams91c00922007-01-02 13:52:30 -07001491
Harvey Harrisone46b2722008-04-28 02:15:50 -07001492 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001493 (unsigned long long)sh->sector);
1494
Dan Williamsac6b53b2009-07-14 13:40:19 -07001495 count = 0;
1496 xor_dest = sh->dev[pd_idx].page;
1497 xor_srcs[count++] = xor_dest;
Dan Williams91c00922007-01-02 13:52:30 -07001498 for (i = disks; i--; ) {
Dan Williamsac6b53b2009-07-14 13:40:19 -07001499 if (i == pd_idx || i == qd_idx)
1500 continue;
1501 xor_srcs[count++] = sh->dev[i].page;
Dan Williams91c00922007-01-02 13:52:30 -07001502 }
1503
Dan Williamsd6f38f32009-07-14 11:50:52 -07001504 init_async_submit(&submit, 0, NULL, NULL, NULL,
1505 to_addr_conv(sh, percpu));
Dan Williams099f53c2009-04-08 14:28:37 -07001506 tx = async_xor_val(xor_dest, xor_srcs, 0, count, STRIPE_SIZE,
Dan Williamsa08abd82009-06-03 11:43:59 -07001507 &sh->ops.zero_sum_result, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001508
Dan Williams91c00922007-01-02 13:52:30 -07001509 atomic_inc(&sh->count);
Dan Williamsa08abd82009-06-03 11:43:59 -07001510 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_check, sh, NULL);
1511 tx = async_trigger_callback(&submit);
Dan Williams91c00922007-01-02 13:52:30 -07001512}
1513
Dan Williamsac6b53b2009-07-14 13:40:19 -07001514static void ops_run_check_pq(struct stripe_head *sh, struct raid5_percpu *percpu, int checkp)
1515{
1516 struct page **srcs = percpu->scribble;
1517 struct async_submit_ctl submit;
1518 int count;
1519
1520 pr_debug("%s: stripe %llu checkp: %d\n", __func__,
1521 (unsigned long long)sh->sector, checkp);
1522
1523 count = set_syndrome_sources(srcs, sh);
1524 if (!checkp)
1525 srcs[count] = NULL;
1526
1527 atomic_inc(&sh->count);
1528 init_async_submit(&submit, ASYNC_TX_ACK, NULL, ops_complete_check,
1529 sh, to_addr_conv(sh, percpu));
1530 async_syndrome_val(srcs, 0, count+2, STRIPE_SIZE,
1531 &sh->ops.zero_sum_result, percpu->spare_page, &submit);
1532}
1533
NeilBrown51acbce2013-02-28 09:08:34 +11001534static void raid_run_ops(struct stripe_head *sh, unsigned long ops_request)
Dan Williams91c00922007-01-02 13:52:30 -07001535{
1536 int overlap_clear = 0, i, disks = sh->disks;
1537 struct dma_async_tx_descriptor *tx = NULL;
NeilBrownd1688a62011-10-11 16:49:52 +11001538 struct r5conf *conf = sh->raid_conf;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001539 int level = conf->level;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001540 struct raid5_percpu *percpu;
1541 unsigned long cpu;
Dan Williams91c00922007-01-02 13:52:30 -07001542
Dan Williamsd6f38f32009-07-14 11:50:52 -07001543 cpu = get_cpu();
1544 percpu = per_cpu_ptr(conf->percpu, cpu);
Dan Williams83de75c2008-06-28 08:31:58 +10001545 if (test_bit(STRIPE_OP_BIOFILL, &ops_request)) {
Dan Williams91c00922007-01-02 13:52:30 -07001546 ops_run_biofill(sh);
1547 overlap_clear++;
1548 }
1549
Dan Williams7b3a8712008-06-28 08:32:09 +10001550 if (test_bit(STRIPE_OP_COMPUTE_BLK, &ops_request)) {
Dan Williamsac6b53b2009-07-14 13:40:19 -07001551 if (level < 6)
1552 tx = ops_run_compute5(sh, percpu);
1553 else {
1554 if (sh->ops.target2 < 0 || sh->ops.target < 0)
1555 tx = ops_run_compute6_1(sh, percpu);
1556 else
1557 tx = ops_run_compute6_2(sh, percpu);
1558 }
1559 /* terminate the chain if reconstruct is not set to be run */
1560 if (tx && !test_bit(STRIPE_OP_RECONSTRUCT, &ops_request))
Dan Williams7b3a8712008-06-28 08:32:09 +10001561 async_tx_ack(tx);
1562 }
Dan Williams91c00922007-01-02 13:52:30 -07001563
Dan Williams600aa102008-06-28 08:32:05 +10001564 if (test_bit(STRIPE_OP_PREXOR, &ops_request))
Dan Williamsd6f38f32009-07-14 11:50:52 -07001565 tx = ops_run_prexor(sh, percpu, tx);
Dan Williams91c00922007-01-02 13:52:30 -07001566
Dan Williams600aa102008-06-28 08:32:05 +10001567 if (test_bit(STRIPE_OP_BIODRAIN, &ops_request)) {
Dan Williamsd8ee0722008-06-28 08:32:06 +10001568 tx = ops_run_biodrain(sh, tx);
Dan Williams91c00922007-01-02 13:52:30 -07001569 overlap_clear++;
1570 }
1571
Dan Williamsac6b53b2009-07-14 13:40:19 -07001572 if (test_bit(STRIPE_OP_RECONSTRUCT, &ops_request)) {
1573 if (level < 6)
1574 ops_run_reconstruct5(sh, percpu, tx);
1575 else
1576 ops_run_reconstruct6(sh, percpu, tx);
1577 }
Dan Williams91c00922007-01-02 13:52:30 -07001578
Dan Williamsac6b53b2009-07-14 13:40:19 -07001579 if (test_bit(STRIPE_OP_CHECK, &ops_request)) {
1580 if (sh->check_state == check_state_run)
1581 ops_run_check_p(sh, percpu);
1582 else if (sh->check_state == check_state_run_q)
1583 ops_run_check_pq(sh, percpu, 0);
1584 else if (sh->check_state == check_state_run_pq)
1585 ops_run_check_pq(sh, percpu, 1);
1586 else
1587 BUG();
1588 }
Dan Williams91c00922007-01-02 13:52:30 -07001589
Dan Williams91c00922007-01-02 13:52:30 -07001590 if (overlap_clear)
1591 for (i = disks; i--; ) {
1592 struct r5dev *dev = &sh->dev[i];
1593 if (test_and_clear_bit(R5_Overlap, &dev->flags))
1594 wake_up(&sh->raid_conf->wait_for_overlap);
1595 }
Dan Williamsd6f38f32009-07-14 11:50:52 -07001596 put_cpu();
Dan Williams91c00922007-01-02 13:52:30 -07001597}
1598
NeilBrownd1688a62011-10-11 16:49:52 +11001599static int grow_one_stripe(struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600{
1601 struct stripe_head *sh;
Namhyung Kim6ce32842011-07-18 17:38:50 +10001602 sh = kmem_cache_zalloc(conf->slab_cache, GFP_KERNEL);
NeilBrown3f294f42005-11-08 21:39:25 -08001603 if (!sh)
1604 return 0;
Namhyung Kim6ce32842011-07-18 17:38:50 +10001605
NeilBrown3f294f42005-11-08 21:39:25 -08001606 sh->raid_conf = conf;
NeilBrown3f294f42005-11-08 21:39:25 -08001607
Shaohua Lib17459c2012-07-19 16:01:31 +10001608 spin_lock_init(&sh->stripe_lock);
1609
NeilBrowne4e11e32010-06-16 16:45:16 +10001610 if (grow_buffers(sh)) {
1611 shrink_buffers(sh);
NeilBrown3f294f42005-11-08 21:39:25 -08001612 kmem_cache_free(conf->slab_cache, sh);
1613 return 0;
1614 }
1615 /* we just created an active stripe so... */
1616 atomic_set(&sh->count, 1);
1617 atomic_inc(&conf->active_stripes);
1618 INIT_LIST_HEAD(&sh->lru);
1619 release_stripe(sh);
1620 return 1;
1621}
1622
NeilBrownd1688a62011-10-11 16:49:52 +11001623static int grow_stripes(struct r5conf *conf, int num)
NeilBrown3f294f42005-11-08 21:39:25 -08001624{
Christoph Lametere18b8902006-12-06 20:33:20 -08001625 struct kmem_cache *sc;
NeilBrown5e5e3e72009-10-16 16:35:30 +11001626 int devs = max(conf->raid_disks, conf->previous_raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627
NeilBrownf4be6b42010-06-01 19:37:25 +10001628 if (conf->mddev->gendisk)
1629 sprintf(conf->cache_name[0],
1630 "raid%d-%s", conf->level, mdname(conf->mddev));
1631 else
1632 sprintf(conf->cache_name[0],
1633 "raid%d-%p", conf->level, conf->mddev);
1634 sprintf(conf->cache_name[1], "%s-alt", conf->cache_name[0]);
1635
NeilBrownad01c9e2006-03-27 01:18:07 -08001636 conf->active_name = 0;
1637 sc = kmem_cache_create(conf->cache_name[conf->active_name],
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 sizeof(struct stripe_head)+(devs-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +09001639 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 if (!sc)
1641 return 1;
1642 conf->slab_cache = sc;
NeilBrownad01c9e2006-03-27 01:18:07 -08001643 conf->pool_size = devs;
NeilBrown16a53ec2006-06-26 00:27:38 -07001644 while (num--)
NeilBrown3f294f42005-11-08 21:39:25 -08001645 if (!grow_one_stripe(conf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 return 0;
1648}
NeilBrown29269552006-03-27 01:18:10 -08001649
Dan Williamsd6f38f32009-07-14 11:50:52 -07001650/**
1651 * scribble_len - return the required size of the scribble region
1652 * @num - total number of disks in the array
1653 *
1654 * The size must be enough to contain:
1655 * 1/ a struct page pointer for each device in the array +2
1656 * 2/ room to convert each entry in (1) to its corresponding dma
1657 * (dma_map_page()) or page (page_address()) address.
1658 *
1659 * Note: the +2 is for the destination buffers of the ddf/raid6 case where we
1660 * calculate over all devices (not just the data blocks), using zeros in place
1661 * of the P and Q blocks.
1662 */
1663static size_t scribble_len(int num)
1664{
1665 size_t len;
1666
1667 len = sizeof(struct page *) * (num+2) + sizeof(addr_conv_t) * (num+2);
1668
1669 return len;
1670}
1671
NeilBrownd1688a62011-10-11 16:49:52 +11001672static int resize_stripes(struct r5conf *conf, int newsize)
NeilBrownad01c9e2006-03-27 01:18:07 -08001673{
1674 /* Make all the stripes able to hold 'newsize' devices.
1675 * New slots in each stripe get 'page' set to a new page.
1676 *
1677 * This happens in stages:
1678 * 1/ create a new kmem_cache and allocate the required number of
1679 * stripe_heads.
Masanari Iida83f0d772012-10-30 00:18:08 +09001680 * 2/ gather all the old stripe_heads and transfer the pages across
NeilBrownad01c9e2006-03-27 01:18:07 -08001681 * to the new stripe_heads. This will have the side effect of
1682 * freezing the array as once all stripe_heads have been collected,
1683 * no IO will be possible. Old stripe heads are freed once their
1684 * pages have been transferred over, and the old kmem_cache is
1685 * freed when all stripes are done.
1686 * 3/ reallocate conf->disks to be suitable bigger. If this fails,
1687 * we simple return a failre status - no need to clean anything up.
1688 * 4/ allocate new pages for the new slots in the new stripe_heads.
1689 * If this fails, we don't bother trying the shrink the
1690 * stripe_heads down again, we just leave them as they are.
1691 * As each stripe_head is processed the new one is released into
1692 * active service.
1693 *
1694 * Once step2 is started, we cannot afford to wait for a write,
1695 * so we use GFP_NOIO allocations.
1696 */
1697 struct stripe_head *osh, *nsh;
1698 LIST_HEAD(newstripes);
1699 struct disk_info *ndisks;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001700 unsigned long cpu;
Dan Williamsb5470dc2008-06-27 21:44:04 -07001701 int err;
Christoph Lametere18b8902006-12-06 20:33:20 -08001702 struct kmem_cache *sc;
NeilBrownad01c9e2006-03-27 01:18:07 -08001703 int i;
1704
1705 if (newsize <= conf->pool_size)
1706 return 0; /* never bother to shrink */
1707
Dan Williamsb5470dc2008-06-27 21:44:04 -07001708 err = md_allow_write(conf->mddev);
1709 if (err)
1710 return err;
NeilBrown2a2275d2007-01-26 00:57:11 -08001711
NeilBrownad01c9e2006-03-27 01:18:07 -08001712 /* Step 1 */
1713 sc = kmem_cache_create(conf->cache_name[1-conf->active_name],
1714 sizeof(struct stripe_head)+(newsize-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +09001715 0, 0, NULL);
NeilBrownad01c9e2006-03-27 01:18:07 -08001716 if (!sc)
1717 return -ENOMEM;
1718
1719 for (i = conf->max_nr_stripes; i; i--) {
Namhyung Kim6ce32842011-07-18 17:38:50 +10001720 nsh = kmem_cache_zalloc(sc, GFP_KERNEL);
NeilBrownad01c9e2006-03-27 01:18:07 -08001721 if (!nsh)
1722 break;
1723
NeilBrownad01c9e2006-03-27 01:18:07 -08001724 nsh->raid_conf = conf;
NeilBrowncb13ff62012-09-24 16:27:20 +10001725 spin_lock_init(&nsh->stripe_lock);
NeilBrownad01c9e2006-03-27 01:18:07 -08001726
1727 list_add(&nsh->lru, &newstripes);
1728 }
1729 if (i) {
1730 /* didn't get enough, give up */
1731 while (!list_empty(&newstripes)) {
1732 nsh = list_entry(newstripes.next, struct stripe_head, lru);
1733 list_del(&nsh->lru);
1734 kmem_cache_free(sc, nsh);
1735 }
1736 kmem_cache_destroy(sc);
1737 return -ENOMEM;
1738 }
1739 /* Step 2 - Must use GFP_NOIO now.
1740 * OK, we have enough stripes, start collecting inactive
1741 * stripes and copying them over
1742 */
1743 list_for_each_entry(nsh, &newstripes, lru) {
1744 spin_lock_irq(&conf->device_lock);
1745 wait_event_lock_irq(conf->wait_for_stripe,
1746 !list_empty(&conf->inactive_list),
Lukas Czernereed8c022012-11-30 11:42:40 +01001747 conf->device_lock);
NeilBrownad01c9e2006-03-27 01:18:07 -08001748 osh = get_free_stripe(conf);
1749 spin_unlock_irq(&conf->device_lock);
1750 atomic_set(&nsh->count, 1);
1751 for(i=0; i<conf->pool_size; i++)
1752 nsh->dev[i].page = osh->dev[i].page;
1753 for( ; i<newsize; i++)
1754 nsh->dev[i].page = NULL;
1755 kmem_cache_free(conf->slab_cache, osh);
1756 }
1757 kmem_cache_destroy(conf->slab_cache);
1758
1759 /* Step 3.
1760 * At this point, we are holding all the stripes so the array
1761 * is completely stalled, so now is a good time to resize
Dan Williamsd6f38f32009-07-14 11:50:52 -07001762 * conf->disks and the scribble region
NeilBrownad01c9e2006-03-27 01:18:07 -08001763 */
1764 ndisks = kzalloc(newsize * sizeof(struct disk_info), GFP_NOIO);
1765 if (ndisks) {
1766 for (i=0; i<conf->raid_disks; i++)
1767 ndisks[i] = conf->disks[i];
1768 kfree(conf->disks);
1769 conf->disks = ndisks;
1770 } else
1771 err = -ENOMEM;
1772
Dan Williamsd6f38f32009-07-14 11:50:52 -07001773 get_online_cpus();
1774 conf->scribble_len = scribble_len(newsize);
1775 for_each_present_cpu(cpu) {
1776 struct raid5_percpu *percpu;
1777 void *scribble;
1778
1779 percpu = per_cpu_ptr(conf->percpu, cpu);
1780 scribble = kmalloc(conf->scribble_len, GFP_NOIO);
1781
1782 if (scribble) {
1783 kfree(percpu->scribble);
1784 percpu->scribble = scribble;
1785 } else {
1786 err = -ENOMEM;
1787 break;
1788 }
1789 }
1790 put_online_cpus();
1791
NeilBrownad01c9e2006-03-27 01:18:07 -08001792 /* Step 4, return new stripes to service */
1793 while(!list_empty(&newstripes)) {
1794 nsh = list_entry(newstripes.next, struct stripe_head, lru);
1795 list_del_init(&nsh->lru);
Dan Williamsd6f38f32009-07-14 11:50:52 -07001796
NeilBrownad01c9e2006-03-27 01:18:07 -08001797 for (i=conf->raid_disks; i < newsize; i++)
1798 if (nsh->dev[i].page == NULL) {
1799 struct page *p = alloc_page(GFP_NOIO);
1800 nsh->dev[i].page = p;
1801 if (!p)
1802 err = -ENOMEM;
1803 }
1804 release_stripe(nsh);
1805 }
1806 /* critical section pass, GFP_NOIO no longer needed */
1807
1808 conf->slab_cache = sc;
1809 conf->active_name = 1-conf->active_name;
1810 conf->pool_size = newsize;
1811 return err;
1812}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
NeilBrownd1688a62011-10-11 16:49:52 +11001814static int drop_one_stripe(struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815{
1816 struct stripe_head *sh;
1817
NeilBrown3f294f42005-11-08 21:39:25 -08001818 spin_lock_irq(&conf->device_lock);
1819 sh = get_free_stripe(conf);
1820 spin_unlock_irq(&conf->device_lock);
1821 if (!sh)
1822 return 0;
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02001823 BUG_ON(atomic_read(&sh->count));
NeilBrowne4e11e32010-06-16 16:45:16 +10001824 shrink_buffers(sh);
NeilBrown3f294f42005-11-08 21:39:25 -08001825 kmem_cache_free(conf->slab_cache, sh);
1826 atomic_dec(&conf->active_stripes);
1827 return 1;
1828}
1829
NeilBrownd1688a62011-10-11 16:49:52 +11001830static void shrink_stripes(struct r5conf *conf)
NeilBrown3f294f42005-11-08 21:39:25 -08001831{
1832 while (drop_one_stripe(conf))
1833 ;
1834
NeilBrown29fc7e32006-02-03 03:03:41 -08001835 if (conf->slab_cache)
1836 kmem_cache_destroy(conf->slab_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 conf->slab_cache = NULL;
1838}
1839
NeilBrown6712ecf2007-09-27 12:47:43 +02001840static void raid5_end_read_request(struct bio * bi, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841{
NeilBrown99c0fb52009-03-31 14:39:38 +11001842 struct stripe_head *sh = bi->bi_private;
NeilBrownd1688a62011-10-11 16:49:52 +11001843 struct r5conf *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08001844 int disks = sh->disks, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
NeilBrownd6950432006-07-10 04:44:20 -07001846 char b[BDEVNAME_SIZE];
NeilBrowndd054fc2011-12-23 10:17:53 +11001847 struct md_rdev *rdev = NULL;
NeilBrown05616be2012-05-21 09:27:00 +10001848 sector_t s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
1850 for (i=0 ; i<disks; i++)
1851 if (bi == &sh->dev[i].req)
1852 break;
1853
Dan Williams45b42332007-07-09 11:56:43 -07001854 pr_debug("end_read_request %llu/%d, count: %d, uptodate %d.\n",
1855 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 uptodate);
1857 if (i == disks) {
1858 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02001859 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 }
NeilBrown14a75d32011-12-23 10:17:52 +11001861 if (test_bit(R5_ReadRepl, &sh->dev[i].flags))
NeilBrowndd054fc2011-12-23 10:17:53 +11001862 /* If replacement finished while this request was outstanding,
1863 * 'replacement' might be NULL already.
1864 * In that case it moved down to 'rdev'.
1865 * rdev is not removed until all requests are finished.
1866 */
NeilBrown14a75d32011-12-23 10:17:52 +11001867 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11001868 if (!rdev)
NeilBrown14a75d32011-12-23 10:17:52 +11001869 rdev = conf->disks[i].rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870
NeilBrown05616be2012-05-21 09:27:00 +10001871 if (use_new_offset(conf, sh))
1872 s = sh->sector + rdev->new_data_offset;
1873 else
1874 s = sh->sector + rdev->data_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 if (uptodate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 set_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrown4e5314b2005-11-08 21:39:22 -08001877 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11001878 /* Note that this cannot happen on a
1879 * replacement device. We just fail those on
1880 * any error
1881 */
Christian Dietrich8bda4702011-07-27 11:00:36 +10001882 printk_ratelimited(
1883 KERN_INFO
1884 "md/raid:%s: read error corrected"
1885 " (%lu sectors at %llu on %s)\n",
1886 mdname(conf->mddev), STRIPE_SECTORS,
NeilBrown05616be2012-05-21 09:27:00 +10001887 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10001888 bdevname(rdev->bdev, b));
Namhyung Kimddd51152011-07-27 11:00:36 +10001889 atomic_add(STRIPE_SECTORS, &rdev->corrected_errors);
NeilBrown4e5314b2005-11-08 21:39:22 -08001890 clear_bit(R5_ReadError, &sh->dev[i].flags);
1891 clear_bit(R5_ReWrite, &sh->dev[i].flags);
majianpeng3f9e7c12012-07-31 10:04:21 +10001892 } else if (test_bit(R5_ReadNoMerge, &sh->dev[i].flags))
1893 clear_bit(R5_ReadNoMerge, &sh->dev[i].flags);
1894
NeilBrown14a75d32011-12-23 10:17:52 +11001895 if (atomic_read(&rdev->read_errors))
1896 atomic_set(&rdev->read_errors, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 } else {
NeilBrown14a75d32011-12-23 10:17:52 +11001898 const char *bdn = bdevname(rdev->bdev, b);
NeilBrownba22dcb2005-11-08 21:39:31 -08001899 int retry = 0;
majianpeng2e8ac3032012-07-03 15:57:02 +10001900 int set_bad = 0;
NeilBrownd6950432006-07-10 04:44:20 -07001901
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 clear_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrownd6950432006-07-10 04:44:20 -07001903 atomic_inc(&rdev->read_errors);
NeilBrown14a75d32011-12-23 10:17:52 +11001904 if (test_bit(R5_ReadRepl, &sh->dev[i].flags))
1905 printk_ratelimited(
1906 KERN_WARNING
1907 "md/raid:%s: read error on replacement device "
1908 "(sector %llu on %s).\n",
1909 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10001910 (unsigned long long)s,
NeilBrown14a75d32011-12-23 10:17:52 +11001911 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10001912 else if (conf->mddev->degraded >= conf->max_degraded) {
1913 set_bad = 1;
Christian Dietrich8bda4702011-07-27 11:00:36 +10001914 printk_ratelimited(
1915 KERN_WARNING
1916 "md/raid:%s: read error not correctable "
1917 "(sector %llu on %s).\n",
1918 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10001919 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10001920 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10001921 } else if (test_bit(R5_ReWrite, &sh->dev[i].flags)) {
NeilBrown4e5314b2005-11-08 21:39:22 -08001922 /* Oh, no!!! */
majianpeng2e8ac3032012-07-03 15:57:02 +10001923 set_bad = 1;
Christian Dietrich8bda4702011-07-27 11:00:36 +10001924 printk_ratelimited(
1925 KERN_WARNING
1926 "md/raid:%s: read error NOT corrected!! "
1927 "(sector %llu on %s).\n",
1928 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10001929 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10001930 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10001931 } else if (atomic_read(&rdev->read_errors)
NeilBrownba22dcb2005-11-08 21:39:31 -08001932 > conf->max_nr_stripes)
NeilBrown14f8d262006-01-06 00:20:14 -08001933 printk(KERN_WARNING
NeilBrown0c55e022010-05-03 14:09:02 +10001934 "md/raid:%s: Too many read errors, failing device %s.\n",
NeilBrownd6950432006-07-10 04:44:20 -07001935 mdname(conf->mddev), bdn);
NeilBrownba22dcb2005-11-08 21:39:31 -08001936 else
1937 retry = 1;
1938 if (retry)
majianpeng3f9e7c12012-07-31 10:04:21 +10001939 if (test_bit(R5_ReadNoMerge, &sh->dev[i].flags)) {
1940 set_bit(R5_ReadError, &sh->dev[i].flags);
1941 clear_bit(R5_ReadNoMerge, &sh->dev[i].flags);
1942 } else
1943 set_bit(R5_ReadNoMerge, &sh->dev[i].flags);
NeilBrownba22dcb2005-11-08 21:39:31 -08001944 else {
NeilBrown4e5314b2005-11-08 21:39:22 -08001945 clear_bit(R5_ReadError, &sh->dev[i].flags);
1946 clear_bit(R5_ReWrite, &sh->dev[i].flags);
majianpeng2e8ac3032012-07-03 15:57:02 +10001947 if (!(set_bad
1948 && test_bit(In_sync, &rdev->flags)
1949 && rdev_set_badblocks(
1950 rdev, sh->sector, STRIPE_SECTORS, 0)))
1951 md_error(conf->mddev, rdev);
NeilBrownba22dcb2005-11-08 21:39:31 -08001952 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 }
NeilBrown14a75d32011-12-23 10:17:52 +11001954 rdev_dec_pending(rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 clear_bit(R5_LOCKED, &sh->dev[i].flags);
1956 set_bit(STRIPE_HANDLE, &sh->state);
1957 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958}
1959
NeilBrownd710e132008-10-13 11:55:12 +11001960static void raid5_end_write_request(struct bio *bi, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961{
NeilBrown99c0fb52009-03-31 14:39:38 +11001962 struct stripe_head *sh = bi->bi_private;
NeilBrownd1688a62011-10-11 16:49:52 +11001963 struct r5conf *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08001964 int disks = sh->disks, i;
NeilBrown977df362011-12-23 10:17:53 +11001965 struct md_rdev *uninitialized_var(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
NeilBrownb84db562011-07-28 11:39:23 +10001967 sector_t first_bad;
1968 int bad_sectors;
NeilBrown977df362011-12-23 10:17:53 +11001969 int replacement = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
NeilBrown977df362011-12-23 10:17:53 +11001971 for (i = 0 ; i < disks; i++) {
1972 if (bi == &sh->dev[i].req) {
1973 rdev = conf->disks[i].rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 break;
NeilBrown977df362011-12-23 10:17:53 +11001975 }
1976 if (bi == &sh->dev[i].rreq) {
1977 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11001978 if (rdev)
1979 replacement = 1;
1980 else
1981 /* rdev was removed and 'replacement'
1982 * replaced it. rdev is not removed
1983 * until all requests are finished.
1984 */
1985 rdev = conf->disks[i].rdev;
NeilBrown977df362011-12-23 10:17:53 +11001986 break;
1987 }
1988 }
Dan Williams45b42332007-07-09 11:56:43 -07001989 pr_debug("end_write_request %llu/%d, count %d, uptodate: %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
1991 uptodate);
1992 if (i == disks) {
1993 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02001994 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 }
1996
NeilBrown977df362011-12-23 10:17:53 +11001997 if (replacement) {
1998 if (!uptodate)
1999 md_error(conf->mddev, rdev);
2000 else if (is_badblock(rdev, sh->sector,
2001 STRIPE_SECTORS,
2002 &first_bad, &bad_sectors))
2003 set_bit(R5_MadeGoodRepl, &sh->dev[i].flags);
2004 } else {
2005 if (!uptodate) {
2006 set_bit(WriteErrorSeen, &rdev->flags);
2007 set_bit(R5_WriteError, &sh->dev[i].flags);
NeilBrown3a6de292011-12-23 10:17:54 +11002008 if (!test_and_set_bit(WantReplacement, &rdev->flags))
2009 set_bit(MD_RECOVERY_NEEDED,
2010 &rdev->mddev->recovery);
NeilBrown977df362011-12-23 10:17:53 +11002011 } else if (is_badblock(rdev, sh->sector,
2012 STRIPE_SECTORS,
NeilBrownc0b32972013-04-24 11:42:42 +10002013 &first_bad, &bad_sectors)) {
NeilBrown977df362011-12-23 10:17:53 +11002014 set_bit(R5_MadeGood, &sh->dev[i].flags);
NeilBrownc0b32972013-04-24 11:42:42 +10002015 if (test_bit(R5_ReadError, &sh->dev[i].flags))
2016 /* That was a successful write so make
2017 * sure it looks like we already did
2018 * a re-write.
2019 */
2020 set_bit(R5_ReWrite, &sh->dev[i].flags);
2021 }
NeilBrown977df362011-12-23 10:17:53 +11002022 }
2023 rdev_dec_pending(rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024
NeilBrown977df362011-12-23 10:17:53 +11002025 if (!test_and_clear_bit(R5_DOUBLE_LOCKED, &sh->dev[i].flags))
2026 clear_bit(R5_LOCKED, &sh->dev[i].flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 set_bit(STRIPE_HANDLE, &sh->state);
NeilBrownc04be0a2006-10-03 01:15:53 -07002028 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029}
2030
NeilBrown784052e2009-03-31 15:19:07 +11002031static sector_t compute_blocknr(struct stripe_head *sh, int i, int previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032
NeilBrown784052e2009-03-31 15:19:07 +11002033static void raid5_build_block(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034{
2035 struct r5dev *dev = &sh->dev[i];
2036
2037 bio_init(&dev->req);
2038 dev->req.bi_io_vec = &dev->vec;
2039 dev->req.bi_vcnt++;
2040 dev->req.bi_max_vecs++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 dev->req.bi_private = sh;
NeilBrown995c4272011-12-23 10:17:52 +11002042 dev->vec.bv_page = dev->page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
NeilBrown977df362011-12-23 10:17:53 +11002044 bio_init(&dev->rreq);
2045 dev->rreq.bi_io_vec = &dev->rvec;
2046 dev->rreq.bi_vcnt++;
2047 dev->rreq.bi_max_vecs++;
2048 dev->rreq.bi_private = sh;
2049 dev->rvec.bv_page = dev->page;
2050
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 dev->flags = 0;
NeilBrown784052e2009-03-31 15:19:07 +11002052 dev->sector = compute_blocknr(sh, i, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053}
2054
NeilBrownfd01b882011-10-11 16:47:53 +11002055static void error(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056{
2057 char b[BDEVNAME_SIZE];
NeilBrownd1688a62011-10-11 16:49:52 +11002058 struct r5conf *conf = mddev->private;
NeilBrown908f4fb2011-12-23 10:17:50 +11002059 unsigned long flags;
NeilBrown0c55e022010-05-03 14:09:02 +10002060 pr_debug("raid456: error called\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
NeilBrown908f4fb2011-12-23 10:17:50 +11002062 spin_lock_irqsave(&conf->device_lock, flags);
2063 clear_bit(In_sync, &rdev->flags);
2064 mddev->degraded = calc_degraded(conf);
2065 spin_unlock_irqrestore(&conf->device_lock, flags);
2066 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
2067
NeilBrownde393cd2011-07-28 11:31:48 +10002068 set_bit(Blocked, &rdev->flags);
NeilBrown6f8d0c72011-05-11 14:38:44 +10002069 set_bit(Faulty, &rdev->flags);
2070 set_bit(MD_CHANGE_DEVS, &mddev->flags);
2071 printk(KERN_ALERT
2072 "md/raid:%s: Disk failure on %s, disabling device.\n"
2073 "md/raid:%s: Operation continuing on %d devices.\n",
2074 mdname(mddev),
2075 bdevname(rdev->bdev, b),
2076 mdname(mddev),
2077 conf->raid_disks - mddev->degraded);
NeilBrown16a53ec2006-06-26 00:27:38 -07002078}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
2080/*
2081 * Input: a 'big' sector number,
2082 * Output: index of the data and parity disk, and the sector # in them.
2083 */
NeilBrownd1688a62011-10-11 16:49:52 +11002084static sector_t raid5_compute_sector(struct r5conf *conf, sector_t r_sector,
NeilBrown911d4ee2009-03-31 14:39:38 +11002085 int previous, int *dd_idx,
2086 struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087{
NeilBrown6e3b96e2010-04-23 07:08:28 +10002088 sector_t stripe, stripe2;
NeilBrown35f2a592010-04-20 14:13:34 +10002089 sector_t chunk_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 unsigned int chunk_offset;
NeilBrown911d4ee2009-03-31 14:39:38 +11002091 int pd_idx, qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11002092 int ddf_layout = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 sector_t new_sector;
NeilBrowne183eae2009-03-31 15:20:22 +11002094 int algorithm = previous ? conf->prev_algo
2095 : conf->algorithm;
Andre Noll09c9e5f2009-06-18 08:45:55 +10002096 int sectors_per_chunk = previous ? conf->prev_chunk_sectors
2097 : conf->chunk_sectors;
NeilBrown112bf892009-03-31 14:39:38 +11002098 int raid_disks = previous ? conf->previous_raid_disks
2099 : conf->raid_disks;
2100 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
2102 /* First compute the information on this sector */
2103
2104 /*
2105 * Compute the chunk number and the sector offset inside the chunk
2106 */
2107 chunk_offset = sector_div(r_sector, sectors_per_chunk);
2108 chunk_number = r_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
2110 /*
2111 * Compute the stripe number
2112 */
NeilBrown35f2a592010-04-20 14:13:34 +10002113 stripe = chunk_number;
2114 *dd_idx = sector_div(stripe, data_disks);
NeilBrown6e3b96e2010-04-23 07:08:28 +10002115 stripe2 = stripe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 /*
2117 * Select the parity disk based on the user selected algorithm.
2118 */
NeilBrown84789552011-07-27 11:00:36 +10002119 pd_idx = qd_idx = -1;
NeilBrown16a53ec2006-06-26 00:27:38 -07002120 switch(conf->level) {
2121 case 4:
NeilBrown911d4ee2009-03-31 14:39:38 +11002122 pd_idx = data_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002123 break;
2124 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11002125 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002127 pd_idx = data_disks - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002128 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 (*dd_idx)++;
2130 break;
2131 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002132 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002133 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 (*dd_idx)++;
2135 break;
2136 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002137 pd_idx = data_disks - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002138 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 break;
2140 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002141 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002142 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002144 case ALGORITHM_PARITY_0:
2145 pd_idx = 0;
2146 (*dd_idx)++;
2147 break;
2148 case ALGORITHM_PARITY_N:
2149 pd_idx = data_disks;
2150 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002152 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002153 }
2154 break;
2155 case 6:
2156
NeilBrowne183eae2009-03-31 15:20:22 +11002157 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07002158 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002159 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002160 qd_idx = pd_idx + 1;
2161 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11002162 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11002163 qd_idx = 0;
2164 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002165 (*dd_idx) += 2; /* D D P Q D */
2166 break;
2167 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002168 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002169 qd_idx = pd_idx + 1;
2170 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11002171 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11002172 qd_idx = 0;
2173 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002174 (*dd_idx) += 2; /* D D P Q D */
2175 break;
2176 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002177 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002178 qd_idx = (pd_idx + 1) % raid_disks;
2179 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002180 break;
2181 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002182 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002183 qd_idx = (pd_idx + 1) % raid_disks;
2184 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002185 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002186
2187 case ALGORITHM_PARITY_0:
2188 pd_idx = 0;
2189 qd_idx = 1;
2190 (*dd_idx) += 2;
2191 break;
2192 case ALGORITHM_PARITY_N:
2193 pd_idx = data_disks;
2194 qd_idx = data_disks + 1;
2195 break;
2196
2197 case ALGORITHM_ROTATING_ZERO_RESTART:
2198 /* Exactly the same as RIGHT_ASYMMETRIC, but or
2199 * of blocks for computing Q is different.
2200 */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002201 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11002202 qd_idx = pd_idx + 1;
2203 if (pd_idx == raid_disks-1) {
2204 (*dd_idx)++; /* Q D D D P */
2205 qd_idx = 0;
2206 } else if (*dd_idx >= pd_idx)
2207 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11002208 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11002209 break;
2210
2211 case ALGORITHM_ROTATING_N_RESTART:
2212 /* Same a left_asymmetric, by first stripe is
2213 * D D D P Q rather than
2214 * Q D D D P
2215 */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002216 stripe2 += 1;
2217 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11002218 qd_idx = pd_idx + 1;
2219 if (pd_idx == raid_disks-1) {
2220 (*dd_idx)++; /* Q D D D P */
2221 qd_idx = 0;
2222 } else if (*dd_idx >= pd_idx)
2223 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11002224 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11002225 break;
2226
2227 case ALGORITHM_ROTATING_N_CONTINUE:
2228 /* Same as left_symmetric but Q is before P */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002229 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11002230 qd_idx = (pd_idx + raid_disks - 1) % raid_disks;
2231 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
NeilBrown67cc2b82009-03-31 14:39:38 +11002232 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11002233 break;
2234
2235 case ALGORITHM_LEFT_ASYMMETRIC_6:
2236 /* RAID5 left_asymmetric, with Q on last device */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002237 pd_idx = data_disks - sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002238 if (*dd_idx >= pd_idx)
2239 (*dd_idx)++;
2240 qd_idx = raid_disks - 1;
2241 break;
2242
2243 case ALGORITHM_RIGHT_ASYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002244 pd_idx = sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002245 if (*dd_idx >= pd_idx)
2246 (*dd_idx)++;
2247 qd_idx = raid_disks - 1;
2248 break;
2249
2250 case ALGORITHM_LEFT_SYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002251 pd_idx = data_disks - sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002252 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
2253 qd_idx = raid_disks - 1;
2254 break;
2255
2256 case ALGORITHM_RIGHT_SYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002257 pd_idx = sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002258 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
2259 qd_idx = raid_disks - 1;
2260 break;
2261
2262 case ALGORITHM_PARITY_0_6:
2263 pd_idx = 0;
2264 (*dd_idx)++;
2265 qd_idx = raid_disks - 1;
2266 break;
2267
NeilBrown16a53ec2006-06-26 00:27:38 -07002268 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002269 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002270 }
2271 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 }
2273
NeilBrown911d4ee2009-03-31 14:39:38 +11002274 if (sh) {
2275 sh->pd_idx = pd_idx;
2276 sh->qd_idx = qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11002277 sh->ddf_layout = ddf_layout;
NeilBrown911d4ee2009-03-31 14:39:38 +11002278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 /*
2280 * Finally, compute the new sector number
2281 */
2282 new_sector = (sector_t)stripe * sectors_per_chunk + chunk_offset;
2283 return new_sector;
2284}
2285
2286
NeilBrown784052e2009-03-31 15:19:07 +11002287static sector_t compute_blocknr(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288{
NeilBrownd1688a62011-10-11 16:49:52 +11002289 struct r5conf *conf = sh->raid_conf;
NeilBrownb875e532006-12-10 02:20:49 -08002290 int raid_disks = sh->disks;
2291 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 sector_t new_sector = sh->sector, check;
Andre Noll09c9e5f2009-06-18 08:45:55 +10002293 int sectors_per_chunk = previous ? conf->prev_chunk_sectors
2294 : conf->chunk_sectors;
NeilBrowne183eae2009-03-31 15:20:22 +11002295 int algorithm = previous ? conf->prev_algo
2296 : conf->algorithm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 sector_t stripe;
2298 int chunk_offset;
NeilBrown35f2a592010-04-20 14:13:34 +10002299 sector_t chunk_number;
2300 int dummy1, dd_idx = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 sector_t r_sector;
NeilBrown911d4ee2009-03-31 14:39:38 +11002302 struct stripe_head sh2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303
NeilBrown16a53ec2006-06-26 00:27:38 -07002304
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 chunk_offset = sector_div(new_sector, sectors_per_chunk);
2306 stripe = new_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
NeilBrown16a53ec2006-06-26 00:27:38 -07002308 if (i == sh->pd_idx)
2309 return 0;
2310 switch(conf->level) {
2311 case 4: break;
2312 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11002313 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 case ALGORITHM_LEFT_ASYMMETRIC:
2315 case ALGORITHM_RIGHT_ASYMMETRIC:
2316 if (i > sh->pd_idx)
2317 i--;
2318 break;
2319 case ALGORITHM_LEFT_SYMMETRIC:
2320 case ALGORITHM_RIGHT_SYMMETRIC:
2321 if (i < sh->pd_idx)
2322 i += raid_disks;
2323 i -= (sh->pd_idx + 1);
2324 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002325 case ALGORITHM_PARITY_0:
2326 i -= 1;
2327 break;
2328 case ALGORITHM_PARITY_N:
2329 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002331 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002332 }
2333 break;
2334 case 6:
NeilBrownd0dabf72009-03-31 14:39:38 +11002335 if (i == sh->qd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002336 return 0; /* It is the Q disk */
NeilBrowne183eae2009-03-31 15:20:22 +11002337 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07002338 case ALGORITHM_LEFT_ASYMMETRIC:
2339 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown99c0fb52009-03-31 14:39:38 +11002340 case ALGORITHM_ROTATING_ZERO_RESTART:
2341 case ALGORITHM_ROTATING_N_RESTART:
2342 if (sh->pd_idx == raid_disks-1)
2343 i--; /* Q D D D P */
NeilBrown16a53ec2006-06-26 00:27:38 -07002344 else if (i > sh->pd_idx)
2345 i -= 2; /* D D P Q D */
2346 break;
2347 case ALGORITHM_LEFT_SYMMETRIC:
2348 case ALGORITHM_RIGHT_SYMMETRIC:
2349 if (sh->pd_idx == raid_disks-1)
2350 i--; /* Q D D D P */
2351 else {
2352 /* D D P Q D */
2353 if (i < sh->pd_idx)
2354 i += raid_disks;
2355 i -= (sh->pd_idx + 2);
2356 }
2357 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002358 case ALGORITHM_PARITY_0:
2359 i -= 2;
2360 break;
2361 case ALGORITHM_PARITY_N:
2362 break;
2363 case ALGORITHM_ROTATING_N_CONTINUE:
NeilBrowne4424fe2009-10-16 16:27:34 +11002364 /* Like left_symmetric, but P is before Q */
NeilBrown99c0fb52009-03-31 14:39:38 +11002365 if (sh->pd_idx == 0)
2366 i--; /* P D D D Q */
NeilBrowne4424fe2009-10-16 16:27:34 +11002367 else {
2368 /* D D Q P D */
2369 if (i < sh->pd_idx)
2370 i += raid_disks;
2371 i -= (sh->pd_idx + 1);
2372 }
NeilBrown99c0fb52009-03-31 14:39:38 +11002373 break;
2374 case ALGORITHM_LEFT_ASYMMETRIC_6:
2375 case ALGORITHM_RIGHT_ASYMMETRIC_6:
2376 if (i > sh->pd_idx)
2377 i--;
2378 break;
2379 case ALGORITHM_LEFT_SYMMETRIC_6:
2380 case ALGORITHM_RIGHT_SYMMETRIC_6:
2381 if (i < sh->pd_idx)
2382 i += data_disks + 1;
2383 i -= (sh->pd_idx + 1);
2384 break;
2385 case ALGORITHM_PARITY_0_6:
2386 i -= 1;
2387 break;
NeilBrown16a53ec2006-06-26 00:27:38 -07002388 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002389 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002390 }
2391 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 }
2393
2394 chunk_number = stripe * data_disks + i;
NeilBrown35f2a592010-04-20 14:13:34 +10002395 r_sector = chunk_number * sectors_per_chunk + chunk_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396
NeilBrown112bf892009-03-31 14:39:38 +11002397 check = raid5_compute_sector(conf, r_sector,
NeilBrown784052e2009-03-31 15:19:07 +11002398 previous, &dummy1, &sh2);
NeilBrown911d4ee2009-03-31 14:39:38 +11002399 if (check != sh->sector || dummy1 != dd_idx || sh2.pd_idx != sh->pd_idx
2400 || sh2.qd_idx != sh->qd_idx) {
NeilBrown0c55e022010-05-03 14:09:02 +10002401 printk(KERN_ERR "md/raid:%s: compute_blocknr: map not correct\n",
2402 mdname(conf->mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 return 0;
2404 }
2405 return r_sector;
2406}
2407
2408
Dan Williams600aa102008-06-28 08:32:05 +10002409static void
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002410schedule_reconstruction(struct stripe_head *sh, struct stripe_head_state *s,
Dan Williams600aa102008-06-28 08:32:05 +10002411 int rcw, int expand)
Dan Williamse33129d2007-01-02 13:52:30 -07002412{
2413 int i, pd_idx = sh->pd_idx, disks = sh->disks;
NeilBrownd1688a62011-10-11 16:49:52 +11002414 struct r5conf *conf = sh->raid_conf;
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002415 int level = conf->level;
NeilBrown16a53ec2006-06-26 00:27:38 -07002416
Dan Williamse33129d2007-01-02 13:52:30 -07002417 if (rcw) {
Dan Williamse33129d2007-01-02 13:52:30 -07002418
2419 for (i = disks; i--; ) {
2420 struct r5dev *dev = &sh->dev[i];
2421
2422 if (dev->towrite) {
2423 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsd8ee0722008-06-28 08:32:06 +10002424 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07002425 if (!expand)
2426 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10002427 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002428 }
2429 }
NeilBrownce7d3632013-03-04 12:37:14 +11002430 /* if we are not expanding this is a proper write request, and
2431 * there will be bios with new data to be drained into the
2432 * stripe cache
2433 */
2434 if (!expand) {
2435 if (!s->locked)
2436 /* False alarm, nothing to do */
2437 return;
2438 sh->reconstruct_state = reconstruct_state_drain_run;
2439 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
2440 } else
2441 sh->reconstruct_state = reconstruct_state_run;
2442
2443 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
2444
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002445 if (s->locked + conf->max_degraded == disks)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002446 if (!test_and_set_bit(STRIPE_FULL_WRITE, &sh->state))
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002447 atomic_inc(&conf->pending_full_writes);
Dan Williamse33129d2007-01-02 13:52:30 -07002448 } else {
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002449 BUG_ON(level == 6);
Dan Williamse33129d2007-01-02 13:52:30 -07002450 BUG_ON(!(test_bit(R5_UPTODATE, &sh->dev[pd_idx].flags) ||
2451 test_bit(R5_Wantcompute, &sh->dev[pd_idx].flags)));
2452
Dan Williamse33129d2007-01-02 13:52:30 -07002453 for (i = disks; i--; ) {
2454 struct r5dev *dev = &sh->dev[i];
2455 if (i == pd_idx)
2456 continue;
2457
Dan Williamse33129d2007-01-02 13:52:30 -07002458 if (dev->towrite &&
2459 (test_bit(R5_UPTODATE, &dev->flags) ||
Dan Williamsd8ee0722008-06-28 08:32:06 +10002460 test_bit(R5_Wantcompute, &dev->flags))) {
2461 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07002462 set_bit(R5_LOCKED, &dev->flags);
2463 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10002464 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002465 }
2466 }
NeilBrownce7d3632013-03-04 12:37:14 +11002467 if (!s->locked)
2468 /* False alarm - nothing to do */
2469 return;
2470 sh->reconstruct_state = reconstruct_state_prexor_drain_run;
2471 set_bit(STRIPE_OP_PREXOR, &s->ops_request);
2472 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
2473 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07002474 }
2475
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002476 /* keep the parity disk(s) locked while asynchronous operations
Dan Williamse33129d2007-01-02 13:52:30 -07002477 * are in flight
2478 */
2479 set_bit(R5_LOCKED, &sh->dev[pd_idx].flags);
2480 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
Dan Williams600aa102008-06-28 08:32:05 +10002481 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002482
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002483 if (level == 6) {
2484 int qd_idx = sh->qd_idx;
2485 struct r5dev *dev = &sh->dev[qd_idx];
2486
2487 set_bit(R5_LOCKED, &dev->flags);
2488 clear_bit(R5_UPTODATE, &dev->flags);
2489 s->locked++;
2490 }
2491
Dan Williams600aa102008-06-28 08:32:05 +10002492 pr_debug("%s: stripe %llu locked: %d ops_request: %lx\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -07002493 __func__, (unsigned long long)sh->sector,
Dan Williams600aa102008-06-28 08:32:05 +10002494 s->locked, s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07002495}
NeilBrown16a53ec2006-06-26 00:27:38 -07002496
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497/*
2498 * Each stripe/dev can have one or more bion attached.
NeilBrown16a53ec2006-06-26 00:27:38 -07002499 * toread/towrite point to the first in a chain.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 * The bi_next chain must be in order.
2501 */
2502static int add_stripe_bio(struct stripe_head *sh, struct bio *bi, int dd_idx, int forwrite)
2503{
2504 struct bio **bip;
NeilBrownd1688a62011-10-11 16:49:52 +11002505 struct r5conf *conf = sh->raid_conf;
NeilBrown72626682005-09-09 16:23:54 -07002506 int firstwrite=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507
NeilBrowncbe47ec2011-07-26 11:20:35 +10002508 pr_debug("adding bi b#%llu to stripe s#%llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 (unsigned long long)bi->bi_sector,
2510 (unsigned long long)sh->sector);
2511
Shaohua Lib17459c2012-07-19 16:01:31 +10002512 /*
2513 * If several bio share a stripe. The bio bi_phys_segments acts as a
2514 * reference count to avoid race. The reference count should already be
2515 * increased before this function is called (for example, in
2516 * make_request()), so other bio sharing this stripe will not free the
2517 * stripe. If a stripe is owned by one stripe, the stripe lock will
2518 * protect it.
2519 */
2520 spin_lock_irq(&sh->stripe_lock);
NeilBrown72626682005-09-09 16:23:54 -07002521 if (forwrite) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 bip = &sh->dev[dd_idx].towrite;
Shaohua Li7eaf7e82012-07-19 16:01:31 +10002523 if (*bip == NULL)
NeilBrown72626682005-09-09 16:23:54 -07002524 firstwrite = 1;
2525 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 bip = &sh->dev[dd_idx].toread;
2527 while (*bip && (*bip)->bi_sector < bi->bi_sector) {
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002528 if (bio_end_sector(*bip) > bi->bi_sector)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 goto overlap;
2530 bip = & (*bip)->bi_next;
2531 }
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002532 if (*bip && (*bip)->bi_sector < bio_end_sector(bi))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 goto overlap;
2534
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02002535 BUG_ON(*bip && bi->bi_next && (*bip) != bi->bi_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 if (*bip)
2537 bi->bi_next = *bip;
2538 *bip = bi;
Shaohua Lie7836bd62012-07-19 16:01:31 +10002539 raid5_inc_bi_active_stripes(bi);
NeilBrown72626682005-09-09 16:23:54 -07002540
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 if (forwrite) {
2542 /* check if page is covered */
2543 sector_t sector = sh->dev[dd_idx].sector;
2544 for (bi=sh->dev[dd_idx].towrite;
2545 sector < sh->dev[dd_idx].sector + STRIPE_SECTORS &&
2546 bi && bi->bi_sector <= sector;
2547 bi = r5_next_bio(bi, sh->dev[dd_idx].sector)) {
Kent Overstreetf73a1c72012-09-25 15:05:12 -07002548 if (bio_end_sector(bi) >= sector)
2549 sector = bio_end_sector(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 }
2551 if (sector >= sh->dev[dd_idx].sector + STRIPE_SECTORS)
2552 set_bit(R5_OVERWRITE, &sh->dev[dd_idx].flags);
2553 }
NeilBrowncbe47ec2011-07-26 11:20:35 +10002554
2555 pr_debug("added bi b#%llu to stripe s#%llu, disk %d.\n",
2556 (unsigned long long)(*bip)->bi_sector,
2557 (unsigned long long)sh->sector, dd_idx);
NeilBrownb97390a2012-10-11 13:50:12 +11002558 spin_unlock_irq(&sh->stripe_lock);
NeilBrowncbe47ec2011-07-26 11:20:35 +10002559
2560 if (conf->mddev->bitmap && firstwrite) {
2561 bitmap_startwrite(conf->mddev->bitmap, sh->sector,
2562 STRIPE_SECTORS, 0);
2563 sh->bm_seq = conf->seq_flush+1;
2564 set_bit(STRIPE_BIT_DELAY, &sh->state);
2565 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 return 1;
2567
2568 overlap:
2569 set_bit(R5_Overlap, &sh->dev[dd_idx].flags);
Shaohua Lib17459c2012-07-19 16:01:31 +10002570 spin_unlock_irq(&sh->stripe_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 return 0;
2572}
2573
NeilBrownd1688a62011-10-11 16:49:52 +11002574static void end_reshape(struct r5conf *conf);
NeilBrown29269552006-03-27 01:18:10 -08002575
NeilBrownd1688a62011-10-11 16:49:52 +11002576static void stripe_set_idx(sector_t stripe, struct r5conf *conf, int previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11002577 struct stripe_head *sh)
NeilBrownccfcc3c2006-03-27 01:18:09 -08002578{
NeilBrown784052e2009-03-31 15:19:07 +11002579 int sectors_per_chunk =
Andre Noll09c9e5f2009-06-18 08:45:55 +10002580 previous ? conf->prev_chunk_sectors : conf->chunk_sectors;
NeilBrown911d4ee2009-03-31 14:39:38 +11002581 int dd_idx;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07002582 int chunk_offset = sector_div(stripe, sectors_per_chunk);
NeilBrown112bf892009-03-31 14:39:38 +11002583 int disks = previous ? conf->previous_raid_disks : conf->raid_disks;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07002584
NeilBrown112bf892009-03-31 14:39:38 +11002585 raid5_compute_sector(conf,
2586 stripe * (disks - conf->max_degraded)
NeilBrownb875e532006-12-10 02:20:49 -08002587 *sectors_per_chunk + chunk_offset,
NeilBrown112bf892009-03-31 14:39:38 +11002588 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11002589 &dd_idx, sh);
NeilBrownccfcc3c2006-03-27 01:18:09 -08002590}
2591
Dan Williamsa4456852007-07-09 11:56:43 -07002592static void
NeilBrownd1688a62011-10-11 16:49:52 +11002593handle_failed_stripe(struct r5conf *conf, struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07002594 struct stripe_head_state *s, int disks,
2595 struct bio **return_bi)
2596{
2597 int i;
2598 for (i = disks; i--; ) {
2599 struct bio *bi;
2600 int bitmap_end = 0;
2601
2602 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrown3cb03002011-10-11 16:45:26 +11002603 struct md_rdev *rdev;
Dan Williamsa4456852007-07-09 11:56:43 -07002604 rcu_read_lock();
2605 rdev = rcu_dereference(conf->disks[i].rdev);
2606 if (rdev && test_bit(In_sync, &rdev->flags))
NeilBrown7f0da592011-07-28 11:39:22 +10002607 atomic_inc(&rdev->nr_pending);
2608 else
2609 rdev = NULL;
Dan Williamsa4456852007-07-09 11:56:43 -07002610 rcu_read_unlock();
NeilBrown7f0da592011-07-28 11:39:22 +10002611 if (rdev) {
2612 if (!rdev_set_badblocks(
2613 rdev,
2614 sh->sector,
2615 STRIPE_SECTORS, 0))
2616 md_error(conf->mddev, rdev);
2617 rdev_dec_pending(rdev, conf->mddev);
2618 }
Dan Williamsa4456852007-07-09 11:56:43 -07002619 }
Shaohua Lib17459c2012-07-19 16:01:31 +10002620 spin_lock_irq(&sh->stripe_lock);
Dan Williamsa4456852007-07-09 11:56:43 -07002621 /* fail all writes first */
2622 bi = sh->dev[i].towrite;
2623 sh->dev[i].towrite = NULL;
Shaohua Lib17459c2012-07-19 16:01:31 +10002624 spin_unlock_irq(&sh->stripe_lock);
NeilBrown1ed850f2012-10-11 13:50:13 +11002625 if (bi)
Dan Williamsa4456852007-07-09 11:56:43 -07002626 bitmap_end = 1;
Dan Williamsa4456852007-07-09 11:56:43 -07002627
2628 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
2629 wake_up(&conf->wait_for_overlap);
2630
2631 while (bi && bi->bi_sector <
2632 sh->dev[i].sector + STRIPE_SECTORS) {
2633 struct bio *nextbi = r5_next_bio(bi, sh->dev[i].sector);
2634 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Shaohua Lie7836bd62012-07-19 16:01:31 +10002635 if (!raid5_dec_bi_active_stripes(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002636 md_write_end(conf->mddev);
2637 bi->bi_next = *return_bi;
2638 *return_bi = bi;
2639 }
2640 bi = nextbi;
2641 }
Shaohua Li7eaf7e82012-07-19 16:01:31 +10002642 if (bitmap_end)
2643 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
2644 STRIPE_SECTORS, 0, 0);
2645 bitmap_end = 0;
Dan Williamsa4456852007-07-09 11:56:43 -07002646 /* and fail all 'written' */
2647 bi = sh->dev[i].written;
2648 sh->dev[i].written = NULL;
2649 if (bi) bitmap_end = 1;
2650 while (bi && bi->bi_sector <
2651 sh->dev[i].sector + STRIPE_SECTORS) {
2652 struct bio *bi2 = r5_next_bio(bi, sh->dev[i].sector);
2653 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Shaohua Lie7836bd62012-07-19 16:01:31 +10002654 if (!raid5_dec_bi_active_stripes(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002655 md_write_end(conf->mddev);
2656 bi->bi_next = *return_bi;
2657 *return_bi = bi;
2658 }
2659 bi = bi2;
2660 }
2661
Dan Williamsb5e98d62007-01-02 13:52:31 -07002662 /* fail any reads if this device is non-operational and
2663 * the data has not reached the cache yet.
2664 */
2665 if (!test_bit(R5_Wantfill, &sh->dev[i].flags) &&
2666 (!test_bit(R5_Insync, &sh->dev[i].flags) ||
2667 test_bit(R5_ReadError, &sh->dev[i].flags))) {
NeilBrown143c4d02012-10-11 13:50:12 +11002668 spin_lock_irq(&sh->stripe_lock);
Dan Williamsa4456852007-07-09 11:56:43 -07002669 bi = sh->dev[i].toread;
2670 sh->dev[i].toread = NULL;
NeilBrown143c4d02012-10-11 13:50:12 +11002671 spin_unlock_irq(&sh->stripe_lock);
Dan Williamsa4456852007-07-09 11:56:43 -07002672 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
2673 wake_up(&conf->wait_for_overlap);
Dan Williamsa4456852007-07-09 11:56:43 -07002674 while (bi && bi->bi_sector <
2675 sh->dev[i].sector + STRIPE_SECTORS) {
2676 struct bio *nextbi =
2677 r5_next_bio(bi, sh->dev[i].sector);
2678 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Shaohua Lie7836bd62012-07-19 16:01:31 +10002679 if (!raid5_dec_bi_active_stripes(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002680 bi->bi_next = *return_bi;
2681 *return_bi = bi;
2682 }
2683 bi = nextbi;
2684 }
2685 }
Dan Williamsa4456852007-07-09 11:56:43 -07002686 if (bitmap_end)
2687 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
2688 STRIPE_SECTORS, 0, 0);
NeilBrown8cfa7b02011-07-27 11:00:36 +10002689 /* If we were in the middle of a write the parity block might
2690 * still be locked - so just clear all R5_LOCKED flags
2691 */
2692 clear_bit(R5_LOCKED, &sh->dev[i].flags);
Dan Williamsa4456852007-07-09 11:56:43 -07002693 }
2694
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002695 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
2696 if (atomic_dec_and_test(&conf->pending_full_writes))
2697 md_wakeup_thread(conf->mddev->thread);
Dan Williamsa4456852007-07-09 11:56:43 -07002698}
2699
NeilBrown7f0da592011-07-28 11:39:22 +10002700static void
NeilBrownd1688a62011-10-11 16:49:52 +11002701handle_failed_sync(struct r5conf *conf, struct stripe_head *sh,
NeilBrown7f0da592011-07-28 11:39:22 +10002702 struct stripe_head_state *s)
2703{
2704 int abort = 0;
2705 int i;
2706
NeilBrown7f0da592011-07-28 11:39:22 +10002707 clear_bit(STRIPE_SYNCING, &sh->state);
NeilBrownf8dfcff2013-03-12 12:18:06 +11002708 if (test_and_clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags))
2709 wake_up(&conf->wait_for_overlap);
NeilBrown7f0da592011-07-28 11:39:22 +10002710 s->syncing = 0;
NeilBrown9a3e1102011-12-23 10:17:53 +11002711 s->replacing = 0;
NeilBrown7f0da592011-07-28 11:39:22 +10002712 /* There is nothing more to do for sync/check/repair.
NeilBrown18b98372012-04-01 23:48:38 +10002713 * Don't even need to abort as that is handled elsewhere
2714 * if needed, and not always wanted e.g. if there is a known
2715 * bad block here.
NeilBrown9a3e1102011-12-23 10:17:53 +11002716 * For recover/replace we need to record a bad block on all
NeilBrown7f0da592011-07-28 11:39:22 +10002717 * non-sync devices, or abort the recovery
2718 */
NeilBrown18b98372012-04-01 23:48:38 +10002719 if (test_bit(MD_RECOVERY_RECOVER, &conf->mddev->recovery)) {
2720 /* During recovery devices cannot be removed, so
2721 * locking and refcounting of rdevs is not needed
2722 */
2723 for (i = 0; i < conf->raid_disks; i++) {
2724 struct md_rdev *rdev = conf->disks[i].rdev;
2725 if (rdev
2726 && !test_bit(Faulty, &rdev->flags)
2727 && !test_bit(In_sync, &rdev->flags)
2728 && !rdev_set_badblocks(rdev, sh->sector,
2729 STRIPE_SECTORS, 0))
2730 abort = 1;
2731 rdev = conf->disks[i].replacement;
2732 if (rdev
2733 && !test_bit(Faulty, &rdev->flags)
2734 && !test_bit(In_sync, &rdev->flags)
2735 && !rdev_set_badblocks(rdev, sh->sector,
2736 STRIPE_SECTORS, 0))
2737 abort = 1;
2738 }
2739 if (abort)
2740 conf->recovery_disabled =
2741 conf->mddev->recovery_disabled;
NeilBrown7f0da592011-07-28 11:39:22 +10002742 }
NeilBrown18b98372012-04-01 23:48:38 +10002743 md_done_sync(conf->mddev, STRIPE_SECTORS, !abort);
NeilBrown7f0da592011-07-28 11:39:22 +10002744}
2745
NeilBrown9a3e1102011-12-23 10:17:53 +11002746static int want_replace(struct stripe_head *sh, int disk_idx)
2747{
2748 struct md_rdev *rdev;
2749 int rv = 0;
2750 /* Doing recovery so rcu locking not required */
2751 rdev = sh->raid_conf->disks[disk_idx].replacement;
2752 if (rdev
2753 && !test_bit(Faulty, &rdev->flags)
2754 && !test_bit(In_sync, &rdev->flags)
2755 && (rdev->recovery_offset <= sh->sector
2756 || rdev->mddev->recovery_cp <= sh->sector))
2757 rv = 1;
2758
2759 return rv;
2760}
2761
NeilBrown93b3dbc2011-07-27 11:00:36 +10002762/* fetch_block - checks the given member device to see if its data needs
Dan Williams1fe797e2008-06-28 09:16:30 +10002763 * to be read or computed to satisfy a request.
2764 *
2765 * Returns 1 when no more member devices need to be checked, otherwise returns
NeilBrown93b3dbc2011-07-27 11:00:36 +10002766 * 0 to tell the loop in handle_stripe_fill to continue
Dan Williamsf38e1212007-01-02 13:52:30 -07002767 */
NeilBrown93b3dbc2011-07-27 11:00:36 +10002768static int fetch_block(struct stripe_head *sh, struct stripe_head_state *s,
2769 int disk_idx, int disks)
Dan Williamsf38e1212007-01-02 13:52:30 -07002770{
2771 struct r5dev *dev = &sh->dev[disk_idx];
NeilBrown93b3dbc2011-07-27 11:00:36 +10002772 struct r5dev *fdev[2] = { &sh->dev[s->failed_num[0]],
2773 &sh->dev[s->failed_num[1]] };
Dan Williamsf38e1212007-01-02 13:52:30 -07002774
Dan Williamsf38e1212007-01-02 13:52:30 -07002775 /* is the data in this block needed, and can we get it? */
2776 if (!test_bit(R5_LOCKED, &dev->flags) &&
Dan Williams1fe797e2008-06-28 09:16:30 +10002777 !test_bit(R5_UPTODATE, &dev->flags) &&
2778 (dev->toread ||
2779 (dev->towrite && !test_bit(R5_OVERWRITE, &dev->flags)) ||
2780 s->syncing || s->expanding ||
NeilBrown9a3e1102011-12-23 10:17:53 +11002781 (s->replacing && want_replace(sh, disk_idx)) ||
NeilBrown5d35e092011-07-27 11:00:36 +10002782 (s->failed >= 1 && fdev[0]->toread) ||
2783 (s->failed >= 2 && fdev[1]->toread) ||
NeilBrown93b3dbc2011-07-27 11:00:36 +10002784 (sh->raid_conf->level <= 5 && s->failed && fdev[0]->towrite &&
2785 !test_bit(R5_OVERWRITE, &fdev[0]->flags)) ||
2786 (sh->raid_conf->level == 6 && s->failed && s->to_write))) {
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07002787 /* we would like to get this block, possibly by computing it,
2788 * otherwise read it if the backing disk is insync
2789 */
2790 BUG_ON(test_bit(R5_Wantcompute, &dev->flags));
2791 BUG_ON(test_bit(R5_Wantread, &dev->flags));
2792 if ((s->uptodate == disks - 1) &&
NeilBrownf2b3b442011-07-26 11:35:19 +10002793 (s->failed && (disk_idx == s->failed_num[0] ||
2794 disk_idx == s->failed_num[1]))) {
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07002795 /* have disk failed, and we're requested to fetch it;
2796 * do compute it
2797 */
2798 pr_debug("Computing stripe %llu block %d\n",
2799 (unsigned long long)sh->sector, disk_idx);
2800 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
2801 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
2802 set_bit(R5_Wantcompute, &dev->flags);
2803 sh->ops.target = disk_idx;
2804 sh->ops.target2 = -1; /* no 2nd target */
2805 s->req_compute = 1;
NeilBrown93b3dbc2011-07-27 11:00:36 +10002806 /* Careful: from this point on 'uptodate' is in the eye
2807 * of raid_run_ops which services 'compute' operations
2808 * before writes. R5_Wantcompute flags a block that will
2809 * be R5_UPTODATE by the time it is needed for a
2810 * subsequent operation.
2811 */
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07002812 s->uptodate++;
2813 return 1;
2814 } else if (s->uptodate == disks-2 && s->failed >= 2) {
2815 /* Computing 2-failure is *very* expensive; only
2816 * do it if failed >= 2
2817 */
2818 int other;
2819 for (other = disks; other--; ) {
2820 if (other == disk_idx)
2821 continue;
2822 if (!test_bit(R5_UPTODATE,
2823 &sh->dev[other].flags))
2824 break;
2825 }
2826 BUG_ON(other < 0);
2827 pr_debug("Computing stripe %llu blocks %d,%d\n",
2828 (unsigned long long)sh->sector,
2829 disk_idx, other);
2830 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
2831 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
2832 set_bit(R5_Wantcompute, &sh->dev[disk_idx].flags);
2833 set_bit(R5_Wantcompute, &sh->dev[other].flags);
2834 sh->ops.target = disk_idx;
2835 sh->ops.target2 = other;
2836 s->uptodate += 2;
2837 s->req_compute = 1;
2838 return 1;
2839 } else if (test_bit(R5_Insync, &dev->flags)) {
2840 set_bit(R5_LOCKED, &dev->flags);
2841 set_bit(R5_Wantread, &dev->flags);
2842 s->locked++;
2843 pr_debug("Reading block %d (sync=%d)\n",
2844 disk_idx, s->syncing);
2845 }
2846 }
2847
2848 return 0;
2849}
2850
2851/**
NeilBrown93b3dbc2011-07-27 11:00:36 +10002852 * handle_stripe_fill - read or compute data to satisfy pending requests.
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07002853 */
NeilBrown93b3dbc2011-07-27 11:00:36 +10002854static void handle_stripe_fill(struct stripe_head *sh,
2855 struct stripe_head_state *s,
2856 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07002857{
2858 int i;
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07002859
2860 /* look for blocks to read/compute, skip this if a compute
2861 * is already in flight, or if the stripe contents are in the
2862 * midst of changing due to a write
2863 */
2864 if (!test_bit(STRIPE_COMPUTE_RUN, &sh->state) && !sh->check_state &&
2865 !sh->reconstruct_state)
2866 for (i = disks; i--; )
NeilBrown93b3dbc2011-07-27 11:00:36 +10002867 if (fetch_block(sh, s, i, disks))
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07002868 break;
Dan Williamsa4456852007-07-09 11:56:43 -07002869 set_bit(STRIPE_HANDLE, &sh->state);
2870}
2871
2872
Dan Williams1fe797e2008-06-28 09:16:30 +10002873/* handle_stripe_clean_event
Dan Williamsa4456852007-07-09 11:56:43 -07002874 * any written block on an uptodate or failed drive can be returned.
2875 * Note that if we 'wrote' to a failed drive, it will be UPTODATE, but
2876 * never LOCKED, so we don't need to test 'failed' directly.
2877 */
NeilBrownd1688a62011-10-11 16:49:52 +11002878static void handle_stripe_clean_event(struct r5conf *conf,
Dan Williamsa4456852007-07-09 11:56:43 -07002879 struct stripe_head *sh, int disks, struct bio **return_bi)
2880{
2881 int i;
2882 struct r5dev *dev;
NeilBrownf8dfcff2013-03-12 12:18:06 +11002883 int discard_pending = 0;
Dan Williamsa4456852007-07-09 11:56:43 -07002884
2885 for (i = disks; i--; )
2886 if (sh->dev[i].written) {
2887 dev = &sh->dev[i];
2888 if (!test_bit(R5_LOCKED, &dev->flags) &&
Shaohua Li9e4447682012-10-11 13:49:49 +11002889 (test_bit(R5_UPTODATE, &dev->flags) ||
NeilBrownca64cae2012-11-21 16:33:40 +11002890 test_bit(R5_Discard, &dev->flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07002891 /* We can return any write requests */
2892 struct bio *wbi, *wbi2;
Dan Williams45b42332007-07-09 11:56:43 -07002893 pr_debug("Return write for disc %d\n", i);
NeilBrownca64cae2012-11-21 16:33:40 +11002894 if (test_and_clear_bit(R5_Discard, &dev->flags))
2895 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williamsa4456852007-07-09 11:56:43 -07002896 wbi = dev->written;
2897 dev->written = NULL;
2898 while (wbi && wbi->bi_sector <
2899 dev->sector + STRIPE_SECTORS) {
2900 wbi2 = r5_next_bio(wbi, dev->sector);
Shaohua Lie7836bd62012-07-19 16:01:31 +10002901 if (!raid5_dec_bi_active_stripes(wbi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002902 md_write_end(conf->mddev);
2903 wbi->bi_next = *return_bi;
2904 *return_bi = wbi;
2905 }
2906 wbi = wbi2;
2907 }
Shaohua Li7eaf7e82012-07-19 16:01:31 +10002908 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
2909 STRIPE_SECTORS,
Dan Williamsa4456852007-07-09 11:56:43 -07002910 !test_bit(STRIPE_DEGRADED, &sh->state),
Shaohua Li7eaf7e82012-07-19 16:01:31 +10002911 0);
NeilBrownf8dfcff2013-03-12 12:18:06 +11002912 } else if (test_bit(R5_Discard, &dev->flags))
2913 discard_pending = 1;
2914 }
2915 if (!discard_pending &&
2916 test_bit(R5_Discard, &sh->dev[sh->pd_idx].flags)) {
2917 clear_bit(R5_Discard, &sh->dev[sh->pd_idx].flags);
2918 clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
2919 if (sh->qd_idx >= 0) {
2920 clear_bit(R5_Discard, &sh->dev[sh->qd_idx].flags);
2921 clear_bit(R5_UPTODATE, &sh->dev[sh->qd_idx].flags);
2922 }
2923 /* now that discard is done we can proceed with any sync */
2924 clear_bit(STRIPE_DISCARD, &sh->state);
Shaohua Lid47648f2013-10-19 14:51:42 +08002925 /*
2926 * SCSI discard will change some bio fields and the stripe has
2927 * no updated data, so remove it from hash list and the stripe
2928 * will be reinitialized
2929 */
2930 spin_lock_irq(&conf->device_lock);
2931 remove_hash(sh);
2932 spin_unlock_irq(&conf->device_lock);
NeilBrownf8dfcff2013-03-12 12:18:06 +11002933 if (test_bit(STRIPE_SYNC_REQUESTED, &sh->state))
2934 set_bit(STRIPE_HANDLE, &sh->state);
2935
2936 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002937
2938 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
2939 if (atomic_dec_and_test(&conf->pending_full_writes))
2940 md_wakeup_thread(conf->mddev->thread);
Dan Williamsa4456852007-07-09 11:56:43 -07002941}
2942
NeilBrownd1688a62011-10-11 16:49:52 +11002943static void handle_stripe_dirtying(struct r5conf *conf,
NeilBrownc8ac1802011-07-27 11:00:36 +10002944 struct stripe_head *sh,
2945 struct stripe_head_state *s,
2946 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07002947{
2948 int rmw = 0, rcw = 0, i;
Alexander Lyakasa7854482012-10-11 13:50:12 +11002949 sector_t recovery_cp = conf->mddev->recovery_cp;
2950
2951 /* RAID6 requires 'rcw' in current implementation.
2952 * Otherwise, check whether resync is now happening or should start.
2953 * If yes, then the array is dirty (after unclean shutdown or
2954 * initial creation), so parity in some stripes might be inconsistent.
2955 * In this case, we need to always do reconstruct-write, to ensure
2956 * that in case of drive failure or read-error correction, we
2957 * generate correct data from the parity.
2958 */
2959 if (conf->max_degraded == 2 ||
2960 (recovery_cp < MaxSector && sh->sector >= recovery_cp)) {
2961 /* Calculate the real rcw later - for now make it
NeilBrownc8ac1802011-07-27 11:00:36 +10002962 * look like rcw is cheaper
2963 */
2964 rcw = 1; rmw = 2;
Alexander Lyakasa7854482012-10-11 13:50:12 +11002965 pr_debug("force RCW max_degraded=%u, recovery_cp=%llu sh->sector=%llu\n",
2966 conf->max_degraded, (unsigned long long)recovery_cp,
2967 (unsigned long long)sh->sector);
NeilBrownc8ac1802011-07-27 11:00:36 +10002968 } else for (i = disks; i--; ) {
Dan Williamsa4456852007-07-09 11:56:43 -07002969 /* would I have to read this buffer for read_modify_write */
2970 struct r5dev *dev = &sh->dev[i];
2971 if ((dev->towrite || i == sh->pd_idx) &&
2972 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002973 !(test_bit(R5_UPTODATE, &dev->flags) ||
2974 test_bit(R5_Wantcompute, &dev->flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07002975 if (test_bit(R5_Insync, &dev->flags))
2976 rmw++;
2977 else
2978 rmw += 2*disks; /* cannot read it */
2979 }
2980 /* Would I have to read this buffer for reconstruct_write */
2981 if (!test_bit(R5_OVERWRITE, &dev->flags) && i != sh->pd_idx &&
2982 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002983 !(test_bit(R5_UPTODATE, &dev->flags) ||
2984 test_bit(R5_Wantcompute, &dev->flags))) {
2985 if (test_bit(R5_Insync, &dev->flags)) rcw++;
Dan Williamsa4456852007-07-09 11:56:43 -07002986 else
2987 rcw += 2*disks;
2988 }
2989 }
Dan Williams45b42332007-07-09 11:56:43 -07002990 pr_debug("for sector %llu, rmw=%d rcw=%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002991 (unsigned long long)sh->sector, rmw, rcw);
2992 set_bit(STRIPE_HANDLE, &sh->state);
NeilBrowna9add5d2012-10-31 11:59:09 +11002993 if (rmw < rcw && rmw > 0) {
Dan Williamsa4456852007-07-09 11:56:43 -07002994 /* prefer read-modify-write, but need to get some data */
Jonathan Brassowe3620a32013-03-07 16:22:01 -06002995 if (conf->mddev->queue)
2996 blk_add_trace_msg(conf->mddev->queue,
2997 "raid5 rmw %llu %d",
2998 (unsigned long long)sh->sector, rmw);
Dan Williamsa4456852007-07-09 11:56:43 -07002999 for (i = disks; i--; ) {
3000 struct r5dev *dev = &sh->dev[i];
3001 if ((dev->towrite || i == sh->pd_idx) &&
3002 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07003003 !(test_bit(R5_UPTODATE, &dev->flags) ||
3004 test_bit(R5_Wantcompute, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07003005 test_bit(R5_Insync, &dev->flags)) {
3006 if (
3007 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07003008 pr_debug("Read_old block "
NeilBrowna9add5d2012-10-31 11:59:09 +11003009 "%d for r-m-w\n", i);
Dan Williamsa4456852007-07-09 11:56:43 -07003010 set_bit(R5_LOCKED, &dev->flags);
3011 set_bit(R5_Wantread, &dev->flags);
3012 s->locked++;
3013 } else {
3014 set_bit(STRIPE_DELAYED, &sh->state);
3015 set_bit(STRIPE_HANDLE, &sh->state);
3016 }
3017 }
3018 }
NeilBrowna9add5d2012-10-31 11:59:09 +11003019 }
NeilBrownc8ac1802011-07-27 11:00:36 +10003020 if (rcw <= rmw && rcw > 0) {
Dan Williamsa4456852007-07-09 11:56:43 -07003021 /* want reconstruct write, but need to get some data */
NeilBrowna9add5d2012-10-31 11:59:09 +11003022 int qread =0;
NeilBrownc8ac1802011-07-27 11:00:36 +10003023 rcw = 0;
Dan Williamsa4456852007-07-09 11:56:43 -07003024 for (i = disks; i--; ) {
3025 struct r5dev *dev = &sh->dev[i];
3026 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
NeilBrownc8ac1802011-07-27 11:00:36 +10003027 i != sh->pd_idx && i != sh->qd_idx &&
Dan Williamsa4456852007-07-09 11:56:43 -07003028 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07003029 !(test_bit(R5_UPTODATE, &dev->flags) ||
NeilBrownc8ac1802011-07-27 11:00:36 +10003030 test_bit(R5_Wantcompute, &dev->flags))) {
3031 rcw++;
3032 if (!test_bit(R5_Insync, &dev->flags))
3033 continue; /* it's a failed drive */
Dan Williamsa4456852007-07-09 11:56:43 -07003034 if (
3035 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07003036 pr_debug("Read_old block "
Dan Williamsa4456852007-07-09 11:56:43 -07003037 "%d for Reconstruct\n", i);
3038 set_bit(R5_LOCKED, &dev->flags);
3039 set_bit(R5_Wantread, &dev->flags);
3040 s->locked++;
NeilBrowna9add5d2012-10-31 11:59:09 +11003041 qread++;
Dan Williamsa4456852007-07-09 11:56:43 -07003042 } else {
3043 set_bit(STRIPE_DELAYED, &sh->state);
3044 set_bit(STRIPE_HANDLE, &sh->state);
3045 }
3046 }
3047 }
Jonathan Brassowe3620a32013-03-07 16:22:01 -06003048 if (rcw && conf->mddev->queue)
NeilBrowna9add5d2012-10-31 11:59:09 +11003049 blk_add_trace_msg(conf->mddev->queue, "raid5 rcw %llu %d %d %d",
3050 (unsigned long long)sh->sector,
3051 rcw, qread, test_bit(STRIPE_DELAYED, &sh->state));
NeilBrownc8ac1802011-07-27 11:00:36 +10003052 }
Dan Williamsa4456852007-07-09 11:56:43 -07003053 /* now if nothing is locked, and if we have enough data,
3054 * we can start a write request
3055 */
Dan Williamsf38e1212007-01-02 13:52:30 -07003056 /* since handle_stripe can be called at any time we need to handle the
3057 * case where a compute block operation has been submitted and then a
Dan Williamsac6b53b2009-07-14 13:40:19 -07003058 * subsequent call wants to start a write request. raid_run_ops only
3059 * handles the case where compute block and reconstruct are requested
Dan Williamsf38e1212007-01-02 13:52:30 -07003060 * simultaneously. If this is not the case then new writes need to be
3061 * held off until the compute completes.
3062 */
Dan Williams976ea8d2008-06-28 08:32:03 +10003063 if ((s->req_compute || !test_bit(STRIPE_COMPUTE_RUN, &sh->state)) &&
3064 (s->locked == 0 && (rcw == 0 || rmw == 0) &&
3065 !test_bit(STRIPE_BIT_DELAY, &sh->state)))
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07003066 schedule_reconstruction(sh, s, rcw == 0, 0);
Dan Williamsa4456852007-07-09 11:56:43 -07003067}
3068
NeilBrownd1688a62011-10-11 16:49:52 +11003069static void handle_parity_checks5(struct r5conf *conf, struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07003070 struct stripe_head_state *s, int disks)
3071{
Dan Williamsecc65c92008-06-28 08:31:57 +10003072 struct r5dev *dev = NULL;
Dan Williamse89f8962007-01-02 13:52:31 -07003073
Dan Williamsbd2ab672008-04-10 21:29:27 -07003074 set_bit(STRIPE_HANDLE, &sh->state);
3075
Dan Williamsecc65c92008-06-28 08:31:57 +10003076 switch (sh->check_state) {
3077 case check_state_idle:
3078 /* start a new check operation if there are no failures */
Dan Williamsbd2ab672008-04-10 21:29:27 -07003079 if (s->failed == 0) {
Dan Williamsbd2ab672008-04-10 21:29:27 -07003080 BUG_ON(s->uptodate != disks);
Dan Williamsecc65c92008-06-28 08:31:57 +10003081 sh->check_state = check_state_run;
3082 set_bit(STRIPE_OP_CHECK, &s->ops_request);
Dan Williamsbd2ab672008-04-10 21:29:27 -07003083 clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
Dan Williamsbd2ab672008-04-10 21:29:27 -07003084 s->uptodate--;
Dan Williamsecc65c92008-06-28 08:31:57 +10003085 break;
Dan Williamsbd2ab672008-04-10 21:29:27 -07003086 }
NeilBrownf2b3b442011-07-26 11:35:19 +10003087 dev = &sh->dev[s->failed_num[0]];
Dan Williamsecc65c92008-06-28 08:31:57 +10003088 /* fall through */
3089 case check_state_compute_result:
3090 sh->check_state = check_state_idle;
3091 if (!dev)
3092 dev = &sh->dev[sh->pd_idx];
3093
3094 /* check that a write has not made the stripe insync */
3095 if (test_bit(STRIPE_INSYNC, &sh->state))
3096 break;
3097
3098 /* either failed parity check, or recovery is happening */
Dan Williamsa4456852007-07-09 11:56:43 -07003099 BUG_ON(!test_bit(R5_UPTODATE, &dev->flags));
3100 BUG_ON(s->uptodate != disks);
3101
3102 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsecc65c92008-06-28 08:31:57 +10003103 s->locked++;
Dan Williamsa4456852007-07-09 11:56:43 -07003104 set_bit(R5_Wantwrite, &dev->flags);
Dan Williams830ea012007-01-02 13:52:31 -07003105
Dan Williamsa4456852007-07-09 11:56:43 -07003106 clear_bit(STRIPE_DEGRADED, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07003107 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10003108 break;
3109 case check_state_run:
3110 break; /* we will be called again upon completion */
3111 case check_state_check_result:
3112 sh->check_state = check_state_idle;
3113
3114 /* if a failure occurred during the check operation, leave
3115 * STRIPE_INSYNC not set and let the stripe be handled again
3116 */
3117 if (s->failed)
3118 break;
3119
3120 /* handle a successful check operation, if parity is correct
3121 * we are done. Otherwise update the mismatch count and repair
3122 * parity if !MD_RECOVERY_CHECK
3123 */
Dan Williamsad283ea2009-08-29 19:09:26 -07003124 if ((sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) == 0)
Dan Williamsecc65c92008-06-28 08:31:57 +10003125 /* parity is correct (on disc,
3126 * not in buffer any more)
3127 */
3128 set_bit(STRIPE_INSYNC, &sh->state);
3129 else {
Jianpeng Ma7f7583d2012-10-11 14:17:59 +11003130 atomic64_add(STRIPE_SECTORS, &conf->mddev->resync_mismatches);
Dan Williamsecc65c92008-06-28 08:31:57 +10003131 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
3132 /* don't try to repair!! */
3133 set_bit(STRIPE_INSYNC, &sh->state);
3134 else {
3135 sh->check_state = check_state_compute_run;
Dan Williams976ea8d2008-06-28 08:32:03 +10003136 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10003137 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3138 set_bit(R5_Wantcompute,
3139 &sh->dev[sh->pd_idx].flags);
3140 sh->ops.target = sh->pd_idx;
Dan Williamsac6b53b2009-07-14 13:40:19 -07003141 sh->ops.target2 = -1;
Dan Williamsecc65c92008-06-28 08:31:57 +10003142 s->uptodate++;
3143 }
3144 }
3145 break;
3146 case check_state_compute_run:
3147 break;
3148 default:
3149 printk(KERN_ERR "%s: unknown check_state: %d sector: %llu\n",
3150 __func__, sh->check_state,
3151 (unsigned long long) sh->sector);
3152 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07003153 }
3154}
3155
3156
NeilBrownd1688a62011-10-11 16:49:52 +11003157static void handle_parity_checks6(struct r5conf *conf, struct stripe_head *sh,
Dan Williams36d1c642009-07-14 11:48:22 -07003158 struct stripe_head_state *s,
NeilBrownf2b3b442011-07-26 11:35:19 +10003159 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07003160{
Dan Williamsa4456852007-07-09 11:56:43 -07003161 int pd_idx = sh->pd_idx;
NeilBrown34e04e82009-03-31 15:10:16 +11003162 int qd_idx = sh->qd_idx;
Dan Williamsd82dfee2009-07-14 13:40:57 -07003163 struct r5dev *dev;
Dan Williamsa4456852007-07-09 11:56:43 -07003164
3165 set_bit(STRIPE_HANDLE, &sh->state);
3166
3167 BUG_ON(s->failed > 2);
Dan Williamsd82dfee2009-07-14 13:40:57 -07003168
Dan Williamsa4456852007-07-09 11:56:43 -07003169 /* Want to check and possibly repair P and Q.
3170 * However there could be one 'failed' device, in which
3171 * case we can only check one of them, possibly using the
3172 * other to generate missing data
3173 */
3174
Dan Williamsd82dfee2009-07-14 13:40:57 -07003175 switch (sh->check_state) {
3176 case check_state_idle:
3177 /* start a new check operation if there are < 2 failures */
NeilBrownf2b3b442011-07-26 11:35:19 +10003178 if (s->failed == s->q_failed) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07003179 /* The only possible failed device holds Q, so it
Dan Williamsa4456852007-07-09 11:56:43 -07003180 * makes sense to check P (If anything else were failed,
3181 * we would have used P to recreate it).
3182 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07003183 sh->check_state = check_state_run;
Dan Williamsa4456852007-07-09 11:56:43 -07003184 }
NeilBrownf2b3b442011-07-26 11:35:19 +10003185 if (!s->q_failed && s->failed < 2) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07003186 /* Q is not failed, and we didn't use it to generate
Dan Williamsa4456852007-07-09 11:56:43 -07003187 * anything, so it makes sense to check it
3188 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07003189 if (sh->check_state == check_state_run)
3190 sh->check_state = check_state_run_pq;
3191 else
3192 sh->check_state = check_state_run_q;
Dan Williamsa4456852007-07-09 11:56:43 -07003193 }
Dan Williams36d1c642009-07-14 11:48:22 -07003194
Dan Williamsd82dfee2009-07-14 13:40:57 -07003195 /* discard potentially stale zero_sum_result */
3196 sh->ops.zero_sum_result = 0;
Dan Williams36d1c642009-07-14 11:48:22 -07003197
Dan Williamsd82dfee2009-07-14 13:40:57 -07003198 if (sh->check_state == check_state_run) {
3199 /* async_xor_zero_sum destroys the contents of P */
3200 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
3201 s->uptodate--;
Dan Williamsa4456852007-07-09 11:56:43 -07003202 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07003203 if (sh->check_state >= check_state_run &&
3204 sh->check_state <= check_state_run_pq) {
3205 /* async_syndrome_zero_sum preserves P and Q, so
3206 * no need to mark them !uptodate here
3207 */
3208 set_bit(STRIPE_OP_CHECK, &s->ops_request);
3209 break;
3210 }
Dan Williams36d1c642009-07-14 11:48:22 -07003211
Dan Williamsd82dfee2009-07-14 13:40:57 -07003212 /* we have 2-disk failure */
3213 BUG_ON(s->failed != 2);
3214 /* fall through */
3215 case check_state_compute_result:
3216 sh->check_state = check_state_idle;
Dan Williams36d1c642009-07-14 11:48:22 -07003217
Dan Williamsd82dfee2009-07-14 13:40:57 -07003218 /* check that a write has not made the stripe insync */
3219 if (test_bit(STRIPE_INSYNC, &sh->state))
3220 break;
Dan Williamsa4456852007-07-09 11:56:43 -07003221
3222 /* now write out any block on a failed drive,
Dan Williamsd82dfee2009-07-14 13:40:57 -07003223 * or P or Q if they were recomputed
Dan Williamsa4456852007-07-09 11:56:43 -07003224 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07003225 BUG_ON(s->uptodate < disks - 1); /* We don't need Q to recover */
Dan Williamsa4456852007-07-09 11:56:43 -07003226 if (s->failed == 2) {
NeilBrownf2b3b442011-07-26 11:35:19 +10003227 dev = &sh->dev[s->failed_num[1]];
Dan Williamsa4456852007-07-09 11:56:43 -07003228 s->locked++;
3229 set_bit(R5_LOCKED, &dev->flags);
3230 set_bit(R5_Wantwrite, &dev->flags);
3231 }
3232 if (s->failed >= 1) {
NeilBrownf2b3b442011-07-26 11:35:19 +10003233 dev = &sh->dev[s->failed_num[0]];
Dan Williamsa4456852007-07-09 11:56:43 -07003234 s->locked++;
3235 set_bit(R5_LOCKED, &dev->flags);
3236 set_bit(R5_Wantwrite, &dev->flags);
3237 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07003238 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
Dan Williamsa4456852007-07-09 11:56:43 -07003239 dev = &sh->dev[pd_idx];
3240 s->locked++;
3241 set_bit(R5_LOCKED, &dev->flags);
3242 set_bit(R5_Wantwrite, &dev->flags);
3243 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07003244 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
Dan Williamsa4456852007-07-09 11:56:43 -07003245 dev = &sh->dev[qd_idx];
3246 s->locked++;
3247 set_bit(R5_LOCKED, &dev->flags);
3248 set_bit(R5_Wantwrite, &dev->flags);
3249 }
3250 clear_bit(STRIPE_DEGRADED, &sh->state);
3251
3252 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsd82dfee2009-07-14 13:40:57 -07003253 break;
3254 case check_state_run:
3255 case check_state_run_q:
3256 case check_state_run_pq:
3257 break; /* we will be called again upon completion */
3258 case check_state_check_result:
3259 sh->check_state = check_state_idle;
3260
3261 /* handle a successful check operation, if parity is correct
3262 * we are done. Otherwise update the mismatch count and repair
3263 * parity if !MD_RECOVERY_CHECK
3264 */
3265 if (sh->ops.zero_sum_result == 0) {
3266 /* both parities are correct */
3267 if (!s->failed)
3268 set_bit(STRIPE_INSYNC, &sh->state);
3269 else {
3270 /* in contrast to the raid5 case we can validate
3271 * parity, but still have a failure to write
3272 * back
3273 */
3274 sh->check_state = check_state_compute_result;
3275 /* Returning at this point means that we may go
3276 * off and bring p and/or q uptodate again so
3277 * we make sure to check zero_sum_result again
3278 * to verify if p or q need writeback
3279 */
3280 }
3281 } else {
Jianpeng Ma7f7583d2012-10-11 14:17:59 +11003282 atomic64_add(STRIPE_SECTORS, &conf->mddev->resync_mismatches);
Dan Williamsd82dfee2009-07-14 13:40:57 -07003283 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
3284 /* don't try to repair!! */
3285 set_bit(STRIPE_INSYNC, &sh->state);
3286 else {
3287 int *target = &sh->ops.target;
3288
3289 sh->ops.target = -1;
3290 sh->ops.target2 = -1;
3291 sh->check_state = check_state_compute_run;
3292 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
3293 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3294 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
3295 set_bit(R5_Wantcompute,
3296 &sh->dev[pd_idx].flags);
3297 *target = pd_idx;
3298 target = &sh->ops.target2;
3299 s->uptodate++;
3300 }
3301 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
3302 set_bit(R5_Wantcompute,
3303 &sh->dev[qd_idx].flags);
3304 *target = qd_idx;
3305 s->uptodate++;
3306 }
3307 }
3308 }
3309 break;
3310 case check_state_compute_run:
3311 break;
3312 default:
3313 printk(KERN_ERR "%s: unknown check_state: %d sector: %llu\n",
3314 __func__, sh->check_state,
3315 (unsigned long long) sh->sector);
3316 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07003317 }
3318}
3319
NeilBrownd1688a62011-10-11 16:49:52 +11003320static void handle_stripe_expansion(struct r5conf *conf, struct stripe_head *sh)
Dan Williamsa4456852007-07-09 11:56:43 -07003321{
3322 int i;
3323
3324 /* We have read all the blocks in this stripe and now we need to
3325 * copy some of them into a target stripe for expand.
3326 */
Dan Williamsf0a50d32007-01-02 13:52:31 -07003327 struct dma_async_tx_descriptor *tx = NULL;
Dan Williamsa4456852007-07-09 11:56:43 -07003328 clear_bit(STRIPE_EXPAND_SOURCE, &sh->state);
3329 for (i = 0; i < sh->disks; i++)
NeilBrown34e04e82009-03-31 15:10:16 +11003330 if (i != sh->pd_idx && i != sh->qd_idx) {
NeilBrown911d4ee2009-03-31 14:39:38 +11003331 int dd_idx, j;
Dan Williamsa4456852007-07-09 11:56:43 -07003332 struct stripe_head *sh2;
Dan Williamsa08abd82009-06-03 11:43:59 -07003333 struct async_submit_ctl submit;
Dan Williamsa4456852007-07-09 11:56:43 -07003334
NeilBrown784052e2009-03-31 15:19:07 +11003335 sector_t bn = compute_blocknr(sh, i, 1);
NeilBrown911d4ee2009-03-31 14:39:38 +11003336 sector_t s = raid5_compute_sector(conf, bn, 0,
3337 &dd_idx, NULL);
NeilBrowna8c906c2009-06-09 14:39:59 +10003338 sh2 = get_active_stripe(conf, s, 0, 1, 1);
Dan Williamsa4456852007-07-09 11:56:43 -07003339 if (sh2 == NULL)
3340 /* so far only the early blocks of this stripe
3341 * have been requested. When later blocks
3342 * get requested, we will try again
3343 */
3344 continue;
3345 if (!test_bit(STRIPE_EXPANDING, &sh2->state) ||
3346 test_bit(R5_Expanded, &sh2->dev[dd_idx].flags)) {
3347 /* must have already done this block */
3348 release_stripe(sh2);
3349 continue;
3350 }
Dan Williamsf0a50d32007-01-02 13:52:31 -07003351
3352 /* place all the copies on one channel */
Dan Williamsa08abd82009-06-03 11:43:59 -07003353 init_async_submit(&submit, 0, tx, NULL, NULL, NULL);
Dan Williamsf0a50d32007-01-02 13:52:31 -07003354 tx = async_memcpy(sh2->dev[dd_idx].page,
Dan Williams88ba2aa2009-04-09 16:16:18 -07003355 sh->dev[i].page, 0, 0, STRIPE_SIZE,
Dan Williamsa08abd82009-06-03 11:43:59 -07003356 &submit);
Dan Williamsf0a50d32007-01-02 13:52:31 -07003357
Dan Williamsa4456852007-07-09 11:56:43 -07003358 set_bit(R5_Expanded, &sh2->dev[dd_idx].flags);
3359 set_bit(R5_UPTODATE, &sh2->dev[dd_idx].flags);
3360 for (j = 0; j < conf->raid_disks; j++)
3361 if (j != sh2->pd_idx &&
NeilBrown86c374b2011-07-27 11:00:36 +10003362 j != sh2->qd_idx &&
Dan Williamsa4456852007-07-09 11:56:43 -07003363 !test_bit(R5_Expanded, &sh2->dev[j].flags))
3364 break;
3365 if (j == conf->raid_disks) {
3366 set_bit(STRIPE_EXPAND_READY, &sh2->state);
3367 set_bit(STRIPE_HANDLE, &sh2->state);
3368 }
3369 release_stripe(sh2);
Dan Williamsf0a50d32007-01-02 13:52:31 -07003370
Dan Williamsa4456852007-07-09 11:56:43 -07003371 }
NeilBrowna2e08552007-09-11 15:23:36 -07003372 /* done submitting copies, wait for them to complete */
NeilBrown749586b2012-11-20 14:11:15 +11003373 async_tx_quiesce(&tx);
Dan Williamsa4456852007-07-09 11:56:43 -07003374}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375
3376/*
3377 * handle_stripe - do things to a stripe.
3378 *
NeilBrown9a3e1102011-12-23 10:17:53 +11003379 * We lock the stripe by setting STRIPE_ACTIVE and then examine the
3380 * state of various bits to see what needs to be done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381 * Possible results:
NeilBrown9a3e1102011-12-23 10:17:53 +11003382 * return some read requests which now have data
3383 * return some write requests which are safely on storage
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384 * schedule a read on some buffers
3385 * schedule a write of some buffers
3386 * return confirmation of parity correctness
3387 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388 */
Dan Williamsa4456852007-07-09 11:56:43 -07003389
NeilBrownacfe7262011-07-27 11:00:36 +10003390static void analyse_stripe(struct stripe_head *sh, struct stripe_head_state *s)
NeilBrown16a53ec2006-06-26 00:27:38 -07003391{
NeilBrownd1688a62011-10-11 16:49:52 +11003392 struct r5conf *conf = sh->raid_conf;
NeilBrownf4168852007-02-28 20:11:53 -08003393 int disks = sh->disks;
NeilBrown474af965fe2011-07-27 11:00:36 +10003394 struct r5dev *dev;
3395 int i;
NeilBrown9a3e1102011-12-23 10:17:53 +11003396 int do_recovery = 0;
NeilBrown16a53ec2006-06-26 00:27:38 -07003397
NeilBrownacfe7262011-07-27 11:00:36 +10003398 memset(s, 0, sizeof(*s));
NeilBrown16a53ec2006-06-26 00:27:38 -07003399
NeilBrownacfe7262011-07-27 11:00:36 +10003400 s->expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state);
3401 s->expanded = test_bit(STRIPE_EXPAND_READY, &sh->state);
3402 s->failed_num[0] = -1;
3403 s->failed_num[1] = -1;
3404
3405 /* Now to look around and see what can be done */
NeilBrown16a53ec2006-06-26 00:27:38 -07003406 rcu_read_lock();
3407 for (i=disks; i--; ) {
NeilBrown3cb03002011-10-11 16:45:26 +11003408 struct md_rdev *rdev;
NeilBrown31c176e2011-07-28 11:39:22 +10003409 sector_t first_bad;
3410 int bad_sectors;
3411 int is_bad = 0;
NeilBrownacfe7262011-07-27 11:00:36 +10003412
NeilBrown16a53ec2006-06-26 00:27:38 -07003413 dev = &sh->dev[i];
NeilBrown16a53ec2006-06-26 00:27:38 -07003414
Dan Williams45b42332007-07-09 11:56:43 -07003415 pr_debug("check %d: state 0x%lx read %p write %p written %p\n",
NeilBrown9a3e1102011-12-23 10:17:53 +11003416 i, dev->flags,
3417 dev->toread, dev->towrite, dev->written);
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003418 /* maybe we can reply to a read
3419 *
3420 * new wantfill requests are only permitted while
3421 * ops_complete_biofill is guaranteed to be inactive
3422 */
3423 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread &&
3424 !test_bit(STRIPE_BIOFILL_RUN, &sh->state))
3425 set_bit(R5_Wantfill, &dev->flags);
NeilBrown16a53ec2006-06-26 00:27:38 -07003426
3427 /* now count some things */
NeilBrowncc940152011-07-26 11:35:35 +10003428 if (test_bit(R5_LOCKED, &dev->flags))
3429 s->locked++;
3430 if (test_bit(R5_UPTODATE, &dev->flags))
3431 s->uptodate++;
Dan Williams2d6e4ec2009-09-16 12:11:54 -07003432 if (test_bit(R5_Wantcompute, &dev->flags)) {
NeilBrowncc940152011-07-26 11:35:35 +10003433 s->compute++;
3434 BUG_ON(s->compute > 2);
Dan Williams2d6e4ec2009-09-16 12:11:54 -07003435 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003436
NeilBrownacfe7262011-07-27 11:00:36 +10003437 if (test_bit(R5_Wantfill, &dev->flags))
NeilBrowncc940152011-07-26 11:35:35 +10003438 s->to_fill++;
NeilBrownacfe7262011-07-27 11:00:36 +10003439 else if (dev->toread)
NeilBrowncc940152011-07-26 11:35:35 +10003440 s->to_read++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003441 if (dev->towrite) {
NeilBrowncc940152011-07-26 11:35:35 +10003442 s->to_write++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003443 if (!test_bit(R5_OVERWRITE, &dev->flags))
NeilBrowncc940152011-07-26 11:35:35 +10003444 s->non_overwrite++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003445 }
Dan Williamsa4456852007-07-09 11:56:43 -07003446 if (dev->written)
NeilBrowncc940152011-07-26 11:35:35 +10003447 s->written++;
NeilBrown14a75d32011-12-23 10:17:52 +11003448 /* Prefer to use the replacement for reads, but only
3449 * if it is recovered enough and has no bad blocks.
3450 */
3451 rdev = rcu_dereference(conf->disks[i].replacement);
3452 if (rdev && !test_bit(Faulty, &rdev->flags) &&
3453 rdev->recovery_offset >= sh->sector + STRIPE_SECTORS &&
3454 !is_badblock(rdev, sh->sector, STRIPE_SECTORS,
3455 &first_bad, &bad_sectors))
3456 set_bit(R5_ReadRepl, &dev->flags);
3457 else {
NeilBrown9a3e1102011-12-23 10:17:53 +11003458 if (rdev)
3459 set_bit(R5_NeedReplace, &dev->flags);
NeilBrown14a75d32011-12-23 10:17:52 +11003460 rdev = rcu_dereference(conf->disks[i].rdev);
3461 clear_bit(R5_ReadRepl, &dev->flags);
3462 }
NeilBrown9283d8c2011-12-08 16:27:57 +11003463 if (rdev && test_bit(Faulty, &rdev->flags))
3464 rdev = NULL;
NeilBrown31c176e2011-07-28 11:39:22 +10003465 if (rdev) {
3466 is_bad = is_badblock(rdev, sh->sector, STRIPE_SECTORS,
3467 &first_bad, &bad_sectors);
3468 if (s->blocked_rdev == NULL
3469 && (test_bit(Blocked, &rdev->flags)
3470 || is_bad < 0)) {
3471 if (is_bad < 0)
3472 set_bit(BlockedBadBlocks,
3473 &rdev->flags);
3474 s->blocked_rdev = rdev;
3475 atomic_inc(&rdev->nr_pending);
3476 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07003477 }
NeilBrown415e72d2010-06-17 17:25:21 +10003478 clear_bit(R5_Insync, &dev->flags);
3479 if (!rdev)
3480 /* Not in-sync */;
NeilBrown31c176e2011-07-28 11:39:22 +10003481 else if (is_bad) {
3482 /* also not in-sync */
NeilBrown18b98372012-04-01 23:48:38 +10003483 if (!test_bit(WriteErrorSeen, &rdev->flags) &&
3484 test_bit(R5_UPTODATE, &dev->flags)) {
NeilBrown31c176e2011-07-28 11:39:22 +10003485 /* treat as in-sync, but with a read error
3486 * which we can now try to correct
3487 */
3488 set_bit(R5_Insync, &dev->flags);
3489 set_bit(R5_ReadError, &dev->flags);
3490 }
3491 } else if (test_bit(In_sync, &rdev->flags))
NeilBrown415e72d2010-06-17 17:25:21 +10003492 set_bit(R5_Insync, &dev->flags);
NeilBrown30d7a482011-12-23 09:57:00 +11003493 else if (sh->sector + STRIPE_SECTORS <= rdev->recovery_offset)
NeilBrown415e72d2010-06-17 17:25:21 +10003494 /* in sync if before recovery_offset */
NeilBrown30d7a482011-12-23 09:57:00 +11003495 set_bit(R5_Insync, &dev->flags);
3496 else if (test_bit(R5_UPTODATE, &dev->flags) &&
3497 test_bit(R5_Expanded, &dev->flags))
3498 /* If we've reshaped into here, we assume it is Insync.
3499 * We will shortly update recovery_offset to make
3500 * it official.
3501 */
3502 set_bit(R5_Insync, &dev->flags);
3503
Adam Kwolek5d8c71f2011-12-09 14:26:11 +11003504 if (rdev && test_bit(R5_WriteError, &dev->flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11003505 /* This flag does not apply to '.replacement'
3506 * only to .rdev, so make sure to check that*/
3507 struct md_rdev *rdev2 = rcu_dereference(
3508 conf->disks[i].rdev);
3509 if (rdev2 == rdev)
3510 clear_bit(R5_Insync, &dev->flags);
3511 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
NeilBrownbc2607f2011-07-28 11:39:22 +10003512 s->handle_bad_blocks = 1;
NeilBrown14a75d32011-12-23 10:17:52 +11003513 atomic_inc(&rdev2->nr_pending);
NeilBrownbc2607f2011-07-28 11:39:22 +10003514 } else
3515 clear_bit(R5_WriteError, &dev->flags);
3516 }
Adam Kwolek5d8c71f2011-12-09 14:26:11 +11003517 if (rdev && test_bit(R5_MadeGood, &dev->flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11003518 /* This flag does not apply to '.replacement'
3519 * only to .rdev, so make sure to check that*/
3520 struct md_rdev *rdev2 = rcu_dereference(
3521 conf->disks[i].rdev);
3522 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
NeilBrownb84db562011-07-28 11:39:23 +10003523 s->handle_bad_blocks = 1;
NeilBrown14a75d32011-12-23 10:17:52 +11003524 atomic_inc(&rdev2->nr_pending);
NeilBrownb84db562011-07-28 11:39:23 +10003525 } else
3526 clear_bit(R5_MadeGood, &dev->flags);
3527 }
NeilBrown977df362011-12-23 10:17:53 +11003528 if (test_bit(R5_MadeGoodRepl, &dev->flags)) {
3529 struct md_rdev *rdev2 = rcu_dereference(
3530 conf->disks[i].replacement);
3531 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
3532 s->handle_bad_blocks = 1;
3533 atomic_inc(&rdev2->nr_pending);
3534 } else
3535 clear_bit(R5_MadeGoodRepl, &dev->flags);
3536 }
NeilBrown415e72d2010-06-17 17:25:21 +10003537 if (!test_bit(R5_Insync, &dev->flags)) {
NeilBrown16a53ec2006-06-26 00:27:38 -07003538 /* The ReadError flag will just be confusing now */
3539 clear_bit(R5_ReadError, &dev->flags);
3540 clear_bit(R5_ReWrite, &dev->flags);
3541 }
NeilBrown415e72d2010-06-17 17:25:21 +10003542 if (test_bit(R5_ReadError, &dev->flags))
3543 clear_bit(R5_Insync, &dev->flags);
3544 if (!test_bit(R5_Insync, &dev->flags)) {
NeilBrowncc940152011-07-26 11:35:35 +10003545 if (s->failed < 2)
3546 s->failed_num[s->failed] = i;
3547 s->failed++;
NeilBrown9a3e1102011-12-23 10:17:53 +11003548 if (rdev && !test_bit(Faulty, &rdev->flags))
3549 do_recovery = 1;
NeilBrown415e72d2010-06-17 17:25:21 +10003550 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003551 }
NeilBrown9a3e1102011-12-23 10:17:53 +11003552 if (test_bit(STRIPE_SYNCING, &sh->state)) {
3553 /* If there is a failed device being replaced,
3554 * we must be recovering.
3555 * else if we are after recovery_cp, we must be syncing
majianpengc6d2e082012-04-02 01:16:59 +10003556 * else if MD_RECOVERY_REQUESTED is set, we also are syncing.
NeilBrown9a3e1102011-12-23 10:17:53 +11003557 * else we can only be replacing
3558 * sync and recovery both need to read all devices, and so
3559 * use the same flag.
3560 */
3561 if (do_recovery ||
majianpengc6d2e082012-04-02 01:16:59 +10003562 sh->sector >= conf->mddev->recovery_cp ||
3563 test_bit(MD_RECOVERY_REQUESTED, &(conf->mddev->recovery)))
NeilBrown9a3e1102011-12-23 10:17:53 +11003564 s->syncing = 1;
3565 else
3566 s->replacing = 1;
3567 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003568 rcu_read_unlock();
NeilBrowncc940152011-07-26 11:35:35 +10003569}
NeilBrownf4168852007-02-28 20:11:53 -08003570
NeilBrowncc940152011-07-26 11:35:35 +10003571static void handle_stripe(struct stripe_head *sh)
3572{
3573 struct stripe_head_state s;
NeilBrownd1688a62011-10-11 16:49:52 +11003574 struct r5conf *conf = sh->raid_conf;
NeilBrown3687c062011-07-27 11:00:36 +10003575 int i;
NeilBrown84789552011-07-27 11:00:36 +10003576 int prexor;
3577 int disks = sh->disks;
NeilBrown474af965fe2011-07-27 11:00:36 +10003578 struct r5dev *pdev, *qdev;
NeilBrowncc940152011-07-26 11:35:35 +10003579
3580 clear_bit(STRIPE_HANDLE, &sh->state);
Dan Williams257a4b42011-11-08 16:22:06 +11003581 if (test_and_set_bit_lock(STRIPE_ACTIVE, &sh->state)) {
NeilBrowncc940152011-07-26 11:35:35 +10003582 /* already being handled, ensure it gets handled
3583 * again when current action finishes */
3584 set_bit(STRIPE_HANDLE, &sh->state);
3585 return;
3586 }
3587
NeilBrownf8dfcff2013-03-12 12:18:06 +11003588 if (test_bit(STRIPE_SYNC_REQUESTED, &sh->state)) {
3589 spin_lock(&sh->stripe_lock);
3590 /* Cannot process 'sync' concurrently with 'discard' */
3591 if (!test_bit(STRIPE_DISCARD, &sh->state) &&
3592 test_and_clear_bit(STRIPE_SYNC_REQUESTED, &sh->state)) {
3593 set_bit(STRIPE_SYNCING, &sh->state);
3594 clear_bit(STRIPE_INSYNC, &sh->state);
NeilBrownf94c0b62013-07-22 12:57:21 +10003595 clear_bit(STRIPE_REPLACED, &sh->state);
NeilBrownf8dfcff2013-03-12 12:18:06 +11003596 }
3597 spin_unlock(&sh->stripe_lock);
NeilBrowncc940152011-07-26 11:35:35 +10003598 }
3599 clear_bit(STRIPE_DELAYED, &sh->state);
3600
3601 pr_debug("handling stripe %llu, state=%#lx cnt=%d, "
3602 "pd_idx=%d, qd_idx=%d\n, check:%d, reconstruct:%d\n",
3603 (unsigned long long)sh->sector, sh->state,
3604 atomic_read(&sh->count), sh->pd_idx, sh->qd_idx,
3605 sh->check_state, sh->reconstruct_state);
NeilBrowncc940152011-07-26 11:35:35 +10003606
NeilBrownacfe7262011-07-27 11:00:36 +10003607 analyse_stripe(sh, &s);
NeilBrownc5a31002011-07-27 11:00:36 +10003608
NeilBrownbc2607f2011-07-28 11:39:22 +10003609 if (s.handle_bad_blocks) {
3610 set_bit(STRIPE_HANDLE, &sh->state);
3611 goto finish;
3612 }
3613
NeilBrown474af965fe2011-07-27 11:00:36 +10003614 if (unlikely(s.blocked_rdev)) {
3615 if (s.syncing || s.expanding || s.expanded ||
NeilBrown9a3e1102011-12-23 10:17:53 +11003616 s.replacing || s.to_write || s.written) {
NeilBrown474af965fe2011-07-27 11:00:36 +10003617 set_bit(STRIPE_HANDLE, &sh->state);
3618 goto finish;
3619 }
3620 /* There is nothing for the blocked_rdev to block */
3621 rdev_dec_pending(s.blocked_rdev, conf->mddev);
3622 s.blocked_rdev = NULL;
3623 }
3624
3625 if (s.to_fill && !test_bit(STRIPE_BIOFILL_RUN, &sh->state)) {
3626 set_bit(STRIPE_OP_BIOFILL, &s.ops_request);
3627 set_bit(STRIPE_BIOFILL_RUN, &sh->state);
3628 }
3629
3630 pr_debug("locked=%d uptodate=%d to_read=%d"
3631 " to_write=%d failed=%d failed_num=%d,%d\n",
3632 s.locked, s.uptodate, s.to_read, s.to_write, s.failed,
3633 s.failed_num[0], s.failed_num[1]);
3634 /* check if the array has lost more than max_degraded devices and,
3635 * if so, some requests might need to be failed.
3636 */
NeilBrown9a3f5302011-11-08 16:22:01 +11003637 if (s.failed > conf->max_degraded) {
3638 sh->check_state = 0;
3639 sh->reconstruct_state = 0;
3640 if (s.to_read+s.to_write+s.written)
3641 handle_failed_stripe(conf, sh, &s, disks, &s.return_bi);
NeilBrown9a3e1102011-12-23 10:17:53 +11003642 if (s.syncing + s.replacing)
NeilBrown9a3f5302011-11-08 16:22:01 +11003643 handle_failed_sync(conf, sh, &s);
3644 }
NeilBrown474af965fe2011-07-27 11:00:36 +10003645
NeilBrown84789552011-07-27 11:00:36 +10003646 /* Now we check to see if any write operations have recently
3647 * completed
3648 */
3649 prexor = 0;
3650 if (sh->reconstruct_state == reconstruct_state_prexor_drain_result)
3651 prexor = 1;
3652 if (sh->reconstruct_state == reconstruct_state_drain_result ||
3653 sh->reconstruct_state == reconstruct_state_prexor_drain_result) {
3654 sh->reconstruct_state = reconstruct_state_idle;
3655
3656 /* All the 'written' buffers and the parity block are ready to
3657 * be written back to disk
3658 */
Shaohua Li9e4447682012-10-11 13:49:49 +11003659 BUG_ON(!test_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags) &&
3660 !test_bit(R5_Discard, &sh->dev[sh->pd_idx].flags));
NeilBrown84789552011-07-27 11:00:36 +10003661 BUG_ON(sh->qd_idx >= 0 &&
Shaohua Li9e4447682012-10-11 13:49:49 +11003662 !test_bit(R5_UPTODATE, &sh->dev[sh->qd_idx].flags) &&
3663 !test_bit(R5_Discard, &sh->dev[sh->qd_idx].flags));
NeilBrown84789552011-07-27 11:00:36 +10003664 for (i = disks; i--; ) {
3665 struct r5dev *dev = &sh->dev[i];
3666 if (test_bit(R5_LOCKED, &dev->flags) &&
3667 (i == sh->pd_idx || i == sh->qd_idx ||
3668 dev->written)) {
3669 pr_debug("Writing block %d\n", i);
3670 set_bit(R5_Wantwrite, &dev->flags);
3671 if (prexor)
3672 continue;
3673 if (!test_bit(R5_Insync, &dev->flags) ||
3674 ((i == sh->pd_idx || i == sh->qd_idx) &&
3675 s.failed == 0))
3676 set_bit(STRIPE_INSYNC, &sh->state);
3677 }
3678 }
3679 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3680 s.dec_preread_active = 1;
3681 }
3682
NeilBrownef5b7c62012-11-22 09:13:36 +11003683 /*
3684 * might be able to return some write requests if the parity blocks
3685 * are safe, or on a failed drive
3686 */
3687 pdev = &sh->dev[sh->pd_idx];
3688 s.p_failed = (s.failed >= 1 && s.failed_num[0] == sh->pd_idx)
3689 || (s.failed >= 2 && s.failed_num[1] == sh->pd_idx);
3690 qdev = &sh->dev[sh->qd_idx];
3691 s.q_failed = (s.failed >= 1 && s.failed_num[0] == sh->qd_idx)
3692 || (s.failed >= 2 && s.failed_num[1] == sh->qd_idx)
3693 || conf->level < 6;
3694
3695 if (s.written &&
3696 (s.p_failed || ((test_bit(R5_Insync, &pdev->flags)
3697 && !test_bit(R5_LOCKED, &pdev->flags)
3698 && (test_bit(R5_UPTODATE, &pdev->flags) ||
3699 test_bit(R5_Discard, &pdev->flags))))) &&
3700 (s.q_failed || ((test_bit(R5_Insync, &qdev->flags)
3701 && !test_bit(R5_LOCKED, &qdev->flags)
3702 && (test_bit(R5_UPTODATE, &qdev->flags) ||
3703 test_bit(R5_Discard, &qdev->flags))))))
3704 handle_stripe_clean_event(conf, sh, disks, &s.return_bi);
3705
3706 /* Now we might consider reading some blocks, either to check/generate
3707 * parity, or to satisfy requests
3708 * or to load a block that is being partially written.
3709 */
3710 if (s.to_read || s.non_overwrite
3711 || (conf->level == 6 && s.to_write && s.failed)
3712 || (s.syncing && (s.uptodate + s.compute < disks))
3713 || s.replacing
3714 || s.expanding)
3715 handle_stripe_fill(sh, &s, disks);
3716
NeilBrown84789552011-07-27 11:00:36 +10003717 /* Now to consider new write requests and what else, if anything
3718 * should be read. We do not handle new writes when:
3719 * 1/ A 'write' operation (copy+xor) is already in flight.
3720 * 2/ A 'check' operation is in flight, as it may clobber the parity
3721 * block.
3722 */
3723 if (s.to_write && !sh->reconstruct_state && !sh->check_state)
3724 handle_stripe_dirtying(conf, sh, &s, disks);
3725
3726 /* maybe we need to check and possibly fix the parity for this stripe
3727 * Any reads will already have been scheduled, so we just see if enough
3728 * data is available. The parity check is held off while parity
3729 * dependent operations are in flight.
3730 */
3731 if (sh->check_state ||
3732 (s.syncing && s.locked == 0 &&
3733 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
3734 !test_bit(STRIPE_INSYNC, &sh->state))) {
3735 if (conf->level == 6)
3736 handle_parity_checks6(conf, sh, &s, disks);
3737 else
3738 handle_parity_checks5(conf, sh, &s, disks);
3739 }
NeilBrownc5a31002011-07-27 11:00:36 +10003740
NeilBrownf94c0b62013-07-22 12:57:21 +10003741 if ((s.replacing || s.syncing) && s.locked == 0
3742 && !test_bit(STRIPE_COMPUTE_RUN, &sh->state)
3743 && !test_bit(STRIPE_REPLACED, &sh->state)) {
NeilBrown9a3e1102011-12-23 10:17:53 +11003744 /* Write out to replacement devices where possible */
3745 for (i = 0; i < conf->raid_disks; i++)
NeilBrownf94c0b62013-07-22 12:57:21 +10003746 if (test_bit(R5_NeedReplace, &sh->dev[i].flags)) {
3747 WARN_ON(!test_bit(R5_UPTODATE, &sh->dev[i].flags));
NeilBrown9a3e1102011-12-23 10:17:53 +11003748 set_bit(R5_WantReplace, &sh->dev[i].flags);
3749 set_bit(R5_LOCKED, &sh->dev[i].flags);
3750 s.locked++;
3751 }
NeilBrownf94c0b62013-07-22 12:57:21 +10003752 if (s.replacing)
3753 set_bit(STRIPE_INSYNC, &sh->state);
3754 set_bit(STRIPE_REPLACED, &sh->state);
NeilBrown9a3e1102011-12-23 10:17:53 +11003755 }
3756 if ((s.syncing || s.replacing) && s.locked == 0 &&
NeilBrownf94c0b62013-07-22 12:57:21 +10003757 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
NeilBrown9a3e1102011-12-23 10:17:53 +11003758 test_bit(STRIPE_INSYNC, &sh->state)) {
NeilBrownc5a31002011-07-27 11:00:36 +10003759 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
3760 clear_bit(STRIPE_SYNCING, &sh->state);
NeilBrownf8dfcff2013-03-12 12:18:06 +11003761 if (test_and_clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags))
3762 wake_up(&conf->wait_for_overlap);
NeilBrownc5a31002011-07-27 11:00:36 +10003763 }
3764
3765 /* If the failed drives are just a ReadError, then we might need
3766 * to progress the repair/check process
3767 */
3768 if (s.failed <= conf->max_degraded && !conf->mddev->ro)
3769 for (i = 0; i < s.failed; i++) {
3770 struct r5dev *dev = &sh->dev[s.failed_num[i]];
3771 if (test_bit(R5_ReadError, &dev->flags)
3772 && !test_bit(R5_LOCKED, &dev->flags)
3773 && test_bit(R5_UPTODATE, &dev->flags)
3774 ) {
3775 if (!test_bit(R5_ReWrite, &dev->flags)) {
3776 set_bit(R5_Wantwrite, &dev->flags);
3777 set_bit(R5_ReWrite, &dev->flags);
3778 set_bit(R5_LOCKED, &dev->flags);
3779 s.locked++;
3780 } else {
3781 /* let's read it back */
3782 set_bit(R5_Wantread, &dev->flags);
3783 set_bit(R5_LOCKED, &dev->flags);
3784 s.locked++;
3785 }
3786 }
3787 }
3788
3789
NeilBrown3687c062011-07-27 11:00:36 +10003790 /* Finish reconstruct operations initiated by the expansion process */
3791 if (sh->reconstruct_state == reconstruct_state_result) {
3792 struct stripe_head *sh_src
3793 = get_active_stripe(conf, sh->sector, 1, 1, 1);
3794 if (sh_src && test_bit(STRIPE_EXPAND_SOURCE, &sh_src->state)) {
3795 /* sh cannot be written until sh_src has been read.
3796 * so arrange for sh to be delayed a little
3797 */
3798 set_bit(STRIPE_DELAYED, &sh->state);
3799 set_bit(STRIPE_HANDLE, &sh->state);
3800 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE,
3801 &sh_src->state))
3802 atomic_inc(&conf->preread_active_stripes);
3803 release_stripe(sh_src);
3804 goto finish;
3805 }
3806 if (sh_src)
3807 release_stripe(sh_src);
NeilBrown16a53ec2006-06-26 00:27:38 -07003808
NeilBrown3687c062011-07-27 11:00:36 +10003809 sh->reconstruct_state = reconstruct_state_idle;
3810 clear_bit(STRIPE_EXPANDING, &sh->state);
3811 for (i = conf->raid_disks; i--; ) {
3812 set_bit(R5_Wantwrite, &sh->dev[i].flags);
3813 set_bit(R5_LOCKED, &sh->dev[i].flags);
3814 s.locked++;
3815 }
3816 }
3817
3818 if (s.expanded && test_bit(STRIPE_EXPANDING, &sh->state) &&
3819 !sh->reconstruct_state) {
3820 /* Need to write out all blocks after computing parity */
3821 sh->disks = conf->raid_disks;
3822 stripe_set_idx(sh->sector, conf, 0, sh);
3823 schedule_reconstruction(sh, &s, 1, 1);
3824 } else if (s.expanded && !sh->reconstruct_state && s.locked == 0) {
3825 clear_bit(STRIPE_EXPAND_READY, &sh->state);
3826 atomic_dec(&conf->reshape_stripes);
3827 wake_up(&conf->wait_for_overlap);
3828 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
3829 }
3830
3831 if (s.expanding && s.locked == 0 &&
3832 !test_bit(STRIPE_COMPUTE_RUN, &sh->state))
3833 handle_stripe_expansion(conf, sh);
3834
3835finish:
Dan Williams6bfe0b42008-04-30 00:52:32 -07003836 /* wait for this device to become unblocked */
NeilBrown5f066c62012-07-03 12:13:29 +10003837 if (unlikely(s.blocked_rdev)) {
3838 if (conf->mddev->external)
3839 md_wait_for_blocked_rdev(s.blocked_rdev,
3840 conf->mddev);
3841 else
3842 /* Internal metadata will immediately
3843 * be written by raid5d, so we don't
3844 * need to wait here.
3845 */
3846 rdev_dec_pending(s.blocked_rdev,
3847 conf->mddev);
3848 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07003849
NeilBrownbc2607f2011-07-28 11:39:22 +10003850 if (s.handle_bad_blocks)
3851 for (i = disks; i--; ) {
NeilBrown3cb03002011-10-11 16:45:26 +11003852 struct md_rdev *rdev;
NeilBrownbc2607f2011-07-28 11:39:22 +10003853 struct r5dev *dev = &sh->dev[i];
3854 if (test_and_clear_bit(R5_WriteError, &dev->flags)) {
3855 /* We own a safe reference to the rdev */
3856 rdev = conf->disks[i].rdev;
3857 if (!rdev_set_badblocks(rdev, sh->sector,
3858 STRIPE_SECTORS, 0))
3859 md_error(conf->mddev, rdev);
3860 rdev_dec_pending(rdev, conf->mddev);
3861 }
NeilBrownb84db562011-07-28 11:39:23 +10003862 if (test_and_clear_bit(R5_MadeGood, &dev->flags)) {
3863 rdev = conf->disks[i].rdev;
3864 rdev_clear_badblocks(rdev, sh->sector,
NeilBrownc6563a82012-05-21 09:27:00 +10003865 STRIPE_SECTORS, 0);
NeilBrownb84db562011-07-28 11:39:23 +10003866 rdev_dec_pending(rdev, conf->mddev);
3867 }
NeilBrown977df362011-12-23 10:17:53 +11003868 if (test_and_clear_bit(R5_MadeGoodRepl, &dev->flags)) {
3869 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11003870 if (!rdev)
3871 /* rdev have been moved down */
3872 rdev = conf->disks[i].rdev;
NeilBrown977df362011-12-23 10:17:53 +11003873 rdev_clear_badblocks(rdev, sh->sector,
NeilBrownc6563a82012-05-21 09:27:00 +10003874 STRIPE_SECTORS, 0);
NeilBrown977df362011-12-23 10:17:53 +11003875 rdev_dec_pending(rdev, conf->mddev);
3876 }
NeilBrownbc2607f2011-07-28 11:39:22 +10003877 }
3878
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003879 if (s.ops_request)
3880 raid_run_ops(sh, s.ops_request);
3881
Dan Williamsf0e43bc2008-06-28 08:31:55 +10003882 ops_run_io(sh, &s);
3883
NeilBrownc5709ef2011-07-26 11:35:20 +10003884 if (s.dec_preread_active) {
NeilBrown729a1862009-12-14 12:49:50 +11003885 /* We delay this until after ops_run_io so that if make_request
Tejun Heoe9c74692010-09-03 11:56:18 +02003886 * is waiting on a flush, it won't continue until the writes
NeilBrown729a1862009-12-14 12:49:50 +11003887 * have actually been submitted.
3888 */
3889 atomic_dec(&conf->preread_active_stripes);
3890 if (atomic_read(&conf->preread_active_stripes) <
3891 IO_THRESHOLD)
3892 md_wakeup_thread(conf->mddev->thread);
3893 }
3894
NeilBrownc5709ef2011-07-26 11:35:20 +10003895 return_io(s.return_bi);
NeilBrown16a53ec2006-06-26 00:27:38 -07003896
Dan Williams257a4b42011-11-08 16:22:06 +11003897 clear_bit_unlock(STRIPE_ACTIVE, &sh->state);
NeilBrown16a53ec2006-06-26 00:27:38 -07003898}
3899
NeilBrownd1688a62011-10-11 16:49:52 +11003900static void raid5_activate_delayed(struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901{
3902 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD) {
3903 while (!list_empty(&conf->delayed_list)) {
3904 struct list_head *l = conf->delayed_list.next;
3905 struct stripe_head *sh;
3906 sh = list_entry(l, struct stripe_head, lru);
3907 list_del_init(l);
3908 clear_bit(STRIPE_DELAYED, &sh->state);
3909 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3910 atomic_inc(&conf->preread_active_stripes);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003911 list_add_tail(&sh->lru, &conf->hold_list);
Shaohua Li851c30c2013-08-28 14:30:16 +08003912 raid5_wakeup_stripe_thread(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913 }
NeilBrown482c0832011-04-18 18:25:42 +10003914 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915}
3916
NeilBrownd1688a62011-10-11 16:49:52 +11003917static void activate_bit_delay(struct r5conf *conf)
NeilBrown72626682005-09-09 16:23:54 -07003918{
3919 /* device_lock is held */
3920 struct list_head head;
3921 list_add(&head, &conf->bitmap_list);
3922 list_del_init(&conf->bitmap_list);
3923 while (!list_empty(&head)) {
3924 struct stripe_head *sh = list_entry(head.next, struct stripe_head, lru);
3925 list_del_init(&sh->lru);
3926 atomic_inc(&sh->count);
3927 __release_stripe(conf, sh);
3928 }
3929}
3930
NeilBrownfd01b882011-10-11 16:47:53 +11003931int md_raid5_congested(struct mddev *mddev, int bits)
NeilBrownf022b2f2006-10-03 01:15:56 -07003932{
NeilBrownd1688a62011-10-11 16:49:52 +11003933 struct r5conf *conf = mddev->private;
NeilBrownf022b2f2006-10-03 01:15:56 -07003934
3935 /* No difference between reads and writes. Just check
3936 * how busy the stripe_cache is
3937 */
NeilBrown3fa841d2009-09-23 18:10:29 +10003938
NeilBrownf022b2f2006-10-03 01:15:56 -07003939 if (conf->inactive_blocked)
3940 return 1;
3941 if (conf->quiesce)
3942 return 1;
3943 if (list_empty_careful(&conf->inactive_list))
3944 return 1;
3945
3946 return 0;
3947}
NeilBrown11d8a6e2010-07-26 11:57:07 +10003948EXPORT_SYMBOL_GPL(md_raid5_congested);
3949
3950static int raid5_congested(void *data, int bits)
3951{
NeilBrownfd01b882011-10-11 16:47:53 +11003952 struct mddev *mddev = data;
NeilBrown11d8a6e2010-07-26 11:57:07 +10003953
3954 return mddev_congested(mddev, bits) ||
3955 md_raid5_congested(mddev, bits);
3956}
NeilBrownf022b2f2006-10-03 01:15:56 -07003957
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003958/* We want read requests to align with chunks where possible,
3959 * but write requests don't need to.
3960 */
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003961static int raid5_mergeable_bvec(struct request_queue *q,
3962 struct bvec_merge_data *bvm,
3963 struct bio_vec *biovec)
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003964{
NeilBrownfd01b882011-10-11 16:47:53 +11003965 struct mddev *mddev = q->queuedata;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003966 sector_t sector = bvm->bi_sector + get_start_sect(bvm->bi_bdev);
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003967 int max;
Andre Noll9d8f0362009-06-18 08:45:01 +10003968 unsigned int chunk_sectors = mddev->chunk_sectors;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003969 unsigned int bio_sectors = bvm->bi_size >> 9;
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003970
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003971 if ((bvm->bi_rw & 1) == WRITE)
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003972 return biovec->bv_len; /* always allow writes to be mergeable */
3973
Andre Noll664e7c42009-06-18 08:45:27 +10003974 if (mddev->new_chunk_sectors < mddev->chunk_sectors)
3975 chunk_sectors = mddev->new_chunk_sectors;
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003976 max = (chunk_sectors - ((sector & (chunk_sectors - 1)) + bio_sectors)) << 9;
3977 if (max < 0) max = 0;
3978 if (max <= biovec->bv_len && bio_sectors == 0)
3979 return biovec->bv_len;
3980 else
3981 return max;
3982}
3983
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003984
NeilBrownfd01b882011-10-11 16:47:53 +11003985static int in_chunk_boundary(struct mddev *mddev, struct bio *bio)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003986{
3987 sector_t sector = bio->bi_sector + get_start_sect(bio->bi_bdev);
Andre Noll9d8f0362009-06-18 08:45:01 +10003988 unsigned int chunk_sectors = mddev->chunk_sectors;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08003989 unsigned int bio_sectors = bio_sectors(bio);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003990
Andre Noll664e7c42009-06-18 08:45:27 +10003991 if (mddev->new_chunk_sectors < mddev->chunk_sectors)
3992 chunk_sectors = mddev->new_chunk_sectors;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003993 return chunk_sectors >=
3994 ((sector & (chunk_sectors - 1)) + bio_sectors);
3995}
3996
3997/*
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003998 * add bio to the retry LIFO ( in O(1) ... we are in interrupt )
3999 * later sampled by raid5d.
4000 */
NeilBrownd1688a62011-10-11 16:49:52 +11004001static void add_bio_to_retry(struct bio *bi,struct r5conf *conf)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004002{
4003 unsigned long flags;
4004
4005 spin_lock_irqsave(&conf->device_lock, flags);
4006
4007 bi->bi_next = conf->retry_read_aligned_list;
4008 conf->retry_read_aligned_list = bi;
4009
4010 spin_unlock_irqrestore(&conf->device_lock, flags);
4011 md_wakeup_thread(conf->mddev->thread);
4012}
4013
4014
NeilBrownd1688a62011-10-11 16:49:52 +11004015static struct bio *remove_bio_from_retry(struct r5conf *conf)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004016{
4017 struct bio *bi;
4018
4019 bi = conf->retry_read_aligned;
4020 if (bi) {
4021 conf->retry_read_aligned = NULL;
4022 return bi;
4023 }
4024 bi = conf->retry_read_aligned_list;
4025 if(bi) {
Neil Brown387bb172007-02-08 14:20:29 -08004026 conf->retry_read_aligned_list = bi->bi_next;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004027 bi->bi_next = NULL;
Jens Axboe960e7392008-08-15 10:41:18 +02004028 /*
4029 * this sets the active strip count to 1 and the processed
4030 * strip count to zero (upper 8 bits)
4031 */
Shaohua Lie7836bd62012-07-19 16:01:31 +10004032 raid5_set_bi_stripes(bi, 1); /* biased count of active stripes */
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004033 }
4034
4035 return bi;
4036}
4037
4038
4039/*
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004040 * The "raid5_align_endio" should check if the read succeeded and if it
4041 * did, call bio_endio on the original bio (having bio_put the new bio
4042 * first).
4043 * If the read failed..
4044 */
NeilBrown6712ecf2007-09-27 12:47:43 +02004045static void raid5_align_endio(struct bio *bi, int error)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004046{
4047 struct bio* raid_bi = bi->bi_private;
NeilBrownfd01b882011-10-11 16:47:53 +11004048 struct mddev *mddev;
NeilBrownd1688a62011-10-11 16:49:52 +11004049 struct r5conf *conf;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004050 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
NeilBrown3cb03002011-10-11 16:45:26 +11004051 struct md_rdev *rdev;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004052
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004053 bio_put(bi);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004054
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004055 rdev = (void*)raid_bi->bi_next;
4056 raid_bi->bi_next = NULL;
NeilBrown2b7f2222010-03-25 16:06:03 +11004057 mddev = rdev->mddev;
4058 conf = mddev->private;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004059
4060 rdev_dec_pending(rdev, conf->mddev);
4061
4062 if (!error && uptodate) {
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07004063 trace_block_bio_complete(bdev_get_queue(raid_bi->bi_bdev),
4064 raid_bi, 0);
NeilBrown6712ecf2007-09-27 12:47:43 +02004065 bio_endio(raid_bi, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004066 if (atomic_dec_and_test(&conf->active_aligned_reads))
4067 wake_up(&conf->wait_for_stripe);
NeilBrown6712ecf2007-09-27 12:47:43 +02004068 return;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004069 }
4070
4071
Dan Williams45b42332007-07-09 11:56:43 -07004072 pr_debug("raid5_align_endio : io error...handing IO for a retry\n");
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004073
4074 add_bio_to_retry(raid_bi, conf);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004075}
4076
Neil Brown387bb172007-02-08 14:20:29 -08004077static int bio_fits_rdev(struct bio *bi)
4078{
Jens Axboe165125e2007-07-24 09:28:11 +02004079 struct request_queue *q = bdev_get_queue(bi->bi_bdev);
Neil Brown387bb172007-02-08 14:20:29 -08004080
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08004081 if (bio_sectors(bi) > queue_max_sectors(q))
Neil Brown387bb172007-02-08 14:20:29 -08004082 return 0;
4083 blk_recount_segments(q, bi);
Martin K. Petersen8a783622010-02-26 00:20:39 -05004084 if (bi->bi_phys_segments > queue_max_segments(q))
Neil Brown387bb172007-02-08 14:20:29 -08004085 return 0;
4086
4087 if (q->merge_bvec_fn)
4088 /* it's too hard to apply the merge_bvec_fn at this stage,
4089 * just just give up
4090 */
4091 return 0;
4092
4093 return 1;
4094}
4095
4096
NeilBrownfd01b882011-10-11 16:47:53 +11004097static int chunk_aligned_read(struct mddev *mddev, struct bio * raid_bio)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004098{
NeilBrownd1688a62011-10-11 16:49:52 +11004099 struct r5conf *conf = mddev->private;
NeilBrown8553fe7ec2009-12-14 12:49:47 +11004100 int dd_idx;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004101 struct bio* align_bi;
NeilBrown3cb03002011-10-11 16:45:26 +11004102 struct md_rdev *rdev;
NeilBrown671488c2011-12-23 10:17:52 +11004103 sector_t end_sector;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004104
4105 if (!in_chunk_boundary(mddev, raid_bio)) {
Dan Williams45b42332007-07-09 11:56:43 -07004106 pr_debug("chunk_aligned_read : non aligned\n");
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004107 return 0;
4108 }
4109 /*
NeilBrowna167f662010-10-26 18:31:13 +11004110 * use bio_clone_mddev to make a copy of the bio
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004111 */
NeilBrowna167f662010-10-26 18:31:13 +11004112 align_bi = bio_clone_mddev(raid_bio, GFP_NOIO, mddev);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004113 if (!align_bi)
4114 return 0;
4115 /*
4116 * set bi_end_io to a new function, and set bi_private to the
4117 * original bio.
4118 */
4119 align_bi->bi_end_io = raid5_align_endio;
4120 align_bi->bi_private = raid_bio;
4121 /*
4122 * compute position
4123 */
NeilBrown112bf892009-03-31 14:39:38 +11004124 align_bi->bi_sector = raid5_compute_sector(conf, raid_bio->bi_sector,
4125 0,
NeilBrown911d4ee2009-03-31 14:39:38 +11004126 &dd_idx, NULL);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004127
Kent Overstreetf73a1c72012-09-25 15:05:12 -07004128 end_sector = bio_end_sector(align_bi);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004129 rcu_read_lock();
NeilBrown671488c2011-12-23 10:17:52 +11004130 rdev = rcu_dereference(conf->disks[dd_idx].replacement);
4131 if (!rdev || test_bit(Faulty, &rdev->flags) ||
4132 rdev->recovery_offset < end_sector) {
4133 rdev = rcu_dereference(conf->disks[dd_idx].rdev);
4134 if (rdev &&
4135 (test_bit(Faulty, &rdev->flags) ||
4136 !(test_bit(In_sync, &rdev->flags) ||
4137 rdev->recovery_offset >= end_sector)))
4138 rdev = NULL;
4139 }
4140 if (rdev) {
NeilBrown31c176e2011-07-28 11:39:22 +10004141 sector_t first_bad;
4142 int bad_sectors;
4143
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004144 atomic_inc(&rdev->nr_pending);
4145 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004146 raid_bio->bi_next = (void*)rdev;
4147 align_bi->bi_bdev = rdev->bdev;
4148 align_bi->bi_flags &= ~(1 << BIO_SEG_VALID);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004149
NeilBrown31c176e2011-07-28 11:39:22 +10004150 if (!bio_fits_rdev(align_bi) ||
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08004151 is_badblock(rdev, align_bi->bi_sector, bio_sectors(align_bi),
NeilBrown31c176e2011-07-28 11:39:22 +10004152 &first_bad, &bad_sectors)) {
4153 /* too big in some way, or has a known bad block */
Neil Brown387bb172007-02-08 14:20:29 -08004154 bio_put(align_bi);
4155 rdev_dec_pending(rdev, mddev);
4156 return 0;
4157 }
4158
majianpeng6c0544e2012-06-12 08:31:10 +08004159 /* No reshape active, so we can trust rdev->data_offset */
4160 align_bi->bi_sector += rdev->data_offset;
4161
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004162 spin_lock_irq(&conf->device_lock);
4163 wait_event_lock_irq(conf->wait_for_stripe,
4164 conf->quiesce == 0,
Lukas Czernereed8c022012-11-30 11:42:40 +01004165 conf->device_lock);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004166 atomic_inc(&conf->active_aligned_reads);
4167 spin_unlock_irq(&conf->device_lock);
4168
Jonathan Brassowe3620a32013-03-07 16:22:01 -06004169 if (mddev->gendisk)
4170 trace_block_bio_remap(bdev_get_queue(align_bi->bi_bdev),
4171 align_bi, disk_devt(mddev->gendisk),
4172 raid_bio->bi_sector);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004173 generic_make_request(align_bi);
4174 return 1;
4175 } else {
4176 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004177 bio_put(align_bi);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004178 return 0;
4179 }
4180}
4181
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004182/* __get_priority_stripe - get the next stripe to process
4183 *
4184 * Full stripe writes are allowed to pass preread active stripes up until
4185 * the bypass_threshold is exceeded. In general the bypass_count
4186 * increments when the handle_list is handled before the hold_list; however, it
4187 * will not be incremented when STRIPE_IO_STARTED is sampled set signifying a
4188 * stripe with in flight i/o. The bypass_count will be reset when the
4189 * head of the hold_list has changed, i.e. the head was promoted to the
4190 * handle_list.
4191 */
Shaohua Li851c30c2013-08-28 14:30:16 +08004192static struct stripe_head *__get_priority_stripe(struct r5conf *conf, int group)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004193{
Shaohua Li851c30c2013-08-28 14:30:16 +08004194 struct stripe_head *sh = NULL, *tmp;
4195 struct list_head *handle_list = NULL;
Shaohua Libfc90cb2013-08-29 15:40:32 +08004196 struct r5worker_group *wg = NULL;
Shaohua Li851c30c2013-08-28 14:30:16 +08004197
4198 if (conf->worker_cnt_per_group == 0) {
4199 handle_list = &conf->handle_list;
4200 } else if (group != ANY_GROUP) {
4201 handle_list = &conf->worker_groups[group].handle_list;
Shaohua Libfc90cb2013-08-29 15:40:32 +08004202 wg = &conf->worker_groups[group];
Shaohua Li851c30c2013-08-28 14:30:16 +08004203 } else {
4204 int i;
4205 for (i = 0; i < conf->group_cnt; i++) {
4206 handle_list = &conf->worker_groups[i].handle_list;
Shaohua Libfc90cb2013-08-29 15:40:32 +08004207 wg = &conf->worker_groups[i];
Shaohua Li851c30c2013-08-28 14:30:16 +08004208 if (!list_empty(handle_list))
4209 break;
4210 }
4211 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004212
4213 pr_debug("%s: handle: %s hold: %s full_writes: %d bypass_count: %d\n",
4214 __func__,
Shaohua Li851c30c2013-08-28 14:30:16 +08004215 list_empty(handle_list) ? "empty" : "busy",
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004216 list_empty(&conf->hold_list) ? "empty" : "busy",
4217 atomic_read(&conf->pending_full_writes), conf->bypass_count);
4218
Shaohua Li851c30c2013-08-28 14:30:16 +08004219 if (!list_empty(handle_list)) {
4220 sh = list_entry(handle_list->next, typeof(*sh), lru);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004221
4222 if (list_empty(&conf->hold_list))
4223 conf->bypass_count = 0;
4224 else if (!test_bit(STRIPE_IO_STARTED, &sh->state)) {
4225 if (conf->hold_list.next == conf->last_hold)
4226 conf->bypass_count++;
4227 else {
4228 conf->last_hold = conf->hold_list.next;
4229 conf->bypass_count -= conf->bypass_threshold;
4230 if (conf->bypass_count < 0)
4231 conf->bypass_count = 0;
4232 }
4233 }
4234 } else if (!list_empty(&conf->hold_list) &&
4235 ((conf->bypass_threshold &&
4236 conf->bypass_count > conf->bypass_threshold) ||
4237 atomic_read(&conf->pending_full_writes) == 0)) {
Shaohua Li851c30c2013-08-28 14:30:16 +08004238
4239 list_for_each_entry(tmp, &conf->hold_list, lru) {
4240 if (conf->worker_cnt_per_group == 0 ||
4241 group == ANY_GROUP ||
4242 !cpu_online(tmp->cpu) ||
4243 cpu_to_group(tmp->cpu) == group) {
4244 sh = tmp;
4245 break;
4246 }
4247 }
4248
4249 if (sh) {
4250 conf->bypass_count -= conf->bypass_threshold;
4251 if (conf->bypass_count < 0)
4252 conf->bypass_count = 0;
4253 }
Shaohua Libfc90cb2013-08-29 15:40:32 +08004254 wg = NULL;
Shaohua Li851c30c2013-08-28 14:30:16 +08004255 }
4256
4257 if (!sh)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004258 return NULL;
4259
Shaohua Libfc90cb2013-08-29 15:40:32 +08004260 if (wg) {
4261 wg->stripes_cnt--;
4262 sh->group = NULL;
4263 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004264 list_del_init(&sh->lru);
4265 atomic_inc(&sh->count);
4266 BUG_ON(atomic_read(&sh->count) != 1);
4267 return sh;
4268}
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004269
Shaohua Li8811b592012-08-02 08:33:00 +10004270struct raid5_plug_cb {
4271 struct blk_plug_cb cb;
4272 struct list_head list;
4273};
4274
4275static void raid5_unplug(struct blk_plug_cb *blk_cb, bool from_schedule)
4276{
4277 struct raid5_plug_cb *cb = container_of(
4278 blk_cb, struct raid5_plug_cb, cb);
4279 struct stripe_head *sh;
4280 struct mddev *mddev = cb->cb.data;
4281 struct r5conf *conf = mddev->private;
NeilBrowna9add5d2012-10-31 11:59:09 +11004282 int cnt = 0;
Shaohua Li8811b592012-08-02 08:33:00 +10004283
4284 if (cb->list.next && !list_empty(&cb->list)) {
4285 spin_lock_irq(&conf->device_lock);
4286 while (!list_empty(&cb->list)) {
4287 sh = list_first_entry(&cb->list, struct stripe_head, lru);
4288 list_del_init(&sh->lru);
4289 /*
4290 * avoid race release_stripe_plug() sees
4291 * STRIPE_ON_UNPLUG_LIST clear but the stripe
4292 * is still in our list
4293 */
4294 smp_mb__before_clear_bit();
4295 clear_bit(STRIPE_ON_UNPLUG_LIST, &sh->state);
Shaohua Li773ca822013-08-27 17:50:39 +08004296 /*
4297 * STRIPE_ON_RELEASE_LIST could be set here. In that
4298 * case, the count is always > 1 here
4299 */
Shaohua Li8811b592012-08-02 08:33:00 +10004300 __release_stripe(conf, sh);
NeilBrowna9add5d2012-10-31 11:59:09 +11004301 cnt++;
Shaohua Li8811b592012-08-02 08:33:00 +10004302 }
4303 spin_unlock_irq(&conf->device_lock);
4304 }
Jonathan Brassowe3620a32013-03-07 16:22:01 -06004305 if (mddev->queue)
4306 trace_block_unplug(mddev->queue, cnt, !from_schedule);
Shaohua Li8811b592012-08-02 08:33:00 +10004307 kfree(cb);
4308}
4309
4310static void release_stripe_plug(struct mddev *mddev,
4311 struct stripe_head *sh)
4312{
4313 struct blk_plug_cb *blk_cb = blk_check_plugged(
4314 raid5_unplug, mddev,
4315 sizeof(struct raid5_plug_cb));
4316 struct raid5_plug_cb *cb;
4317
4318 if (!blk_cb) {
4319 release_stripe(sh);
4320 return;
4321 }
4322
4323 cb = container_of(blk_cb, struct raid5_plug_cb, cb);
4324
4325 if (cb->list.next == NULL)
4326 INIT_LIST_HEAD(&cb->list);
4327
4328 if (!test_and_set_bit(STRIPE_ON_UNPLUG_LIST, &sh->state))
4329 list_add_tail(&sh->lru, &cb->list);
4330 else
4331 release_stripe(sh);
4332}
4333
Shaohua Li620125f2012-10-11 13:49:05 +11004334static void make_discard_request(struct mddev *mddev, struct bio *bi)
4335{
4336 struct r5conf *conf = mddev->private;
4337 sector_t logical_sector, last_sector;
4338 struct stripe_head *sh;
4339 int remaining;
4340 int stripe_sectors;
4341
4342 if (mddev->reshape_position != MaxSector)
4343 /* Skip discard while reshape is happening */
4344 return;
4345
4346 logical_sector = bi->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
4347 last_sector = bi->bi_sector + (bi->bi_size>>9);
4348
4349 bi->bi_next = NULL;
4350 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
4351
4352 stripe_sectors = conf->chunk_sectors *
4353 (conf->raid_disks - conf->max_degraded);
4354 logical_sector = DIV_ROUND_UP_SECTOR_T(logical_sector,
4355 stripe_sectors);
4356 sector_div(last_sector, stripe_sectors);
4357
4358 logical_sector *= conf->chunk_sectors;
4359 last_sector *= conf->chunk_sectors;
4360
4361 for (; logical_sector < last_sector;
4362 logical_sector += STRIPE_SECTORS) {
4363 DEFINE_WAIT(w);
4364 int d;
4365 again:
4366 sh = get_active_stripe(conf, logical_sector, 0, 0, 0);
4367 prepare_to_wait(&conf->wait_for_overlap, &w,
4368 TASK_UNINTERRUPTIBLE);
NeilBrownf8dfcff2013-03-12 12:18:06 +11004369 set_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags);
4370 if (test_bit(STRIPE_SYNCING, &sh->state)) {
4371 release_stripe(sh);
4372 schedule();
4373 goto again;
4374 }
4375 clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags);
Shaohua Li620125f2012-10-11 13:49:05 +11004376 spin_lock_irq(&sh->stripe_lock);
4377 for (d = 0; d < conf->raid_disks; d++) {
4378 if (d == sh->pd_idx || d == sh->qd_idx)
4379 continue;
4380 if (sh->dev[d].towrite || sh->dev[d].toread) {
4381 set_bit(R5_Overlap, &sh->dev[d].flags);
4382 spin_unlock_irq(&sh->stripe_lock);
4383 release_stripe(sh);
4384 schedule();
4385 goto again;
4386 }
4387 }
NeilBrownf8dfcff2013-03-12 12:18:06 +11004388 set_bit(STRIPE_DISCARD, &sh->state);
Shaohua Li620125f2012-10-11 13:49:05 +11004389 finish_wait(&conf->wait_for_overlap, &w);
4390 for (d = 0; d < conf->raid_disks; d++) {
4391 if (d == sh->pd_idx || d == sh->qd_idx)
4392 continue;
4393 sh->dev[d].towrite = bi;
4394 set_bit(R5_OVERWRITE, &sh->dev[d].flags);
4395 raid5_inc_bi_active_stripes(bi);
4396 }
4397 spin_unlock_irq(&sh->stripe_lock);
4398 if (conf->mddev->bitmap) {
4399 for (d = 0;
4400 d < conf->raid_disks - conf->max_degraded;
4401 d++)
4402 bitmap_startwrite(mddev->bitmap,
4403 sh->sector,
4404 STRIPE_SECTORS,
4405 0);
4406 sh->bm_seq = conf->seq_flush + 1;
4407 set_bit(STRIPE_BIT_DELAY, &sh->state);
4408 }
4409
4410 set_bit(STRIPE_HANDLE, &sh->state);
4411 clear_bit(STRIPE_DELAYED, &sh->state);
4412 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
4413 atomic_inc(&conf->preread_active_stripes);
4414 release_stripe_plug(mddev, sh);
4415 }
4416
4417 remaining = raid5_dec_bi_active_stripes(bi);
4418 if (remaining == 0) {
4419 md_write_end(mddev);
4420 bio_endio(bi, 0);
4421 }
4422}
4423
Linus Torvaldsb4fdcb02011-11-04 17:06:58 -07004424static void make_request(struct mddev *mddev, struct bio * bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004425{
NeilBrownd1688a62011-10-11 16:49:52 +11004426 struct r5conf *conf = mddev->private;
NeilBrown911d4ee2009-03-31 14:39:38 +11004427 int dd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428 sector_t new_sector;
4429 sector_t logical_sector, last_sector;
4430 struct stripe_head *sh;
Jens Axboea3623572005-11-01 09:26:16 +01004431 const int rw = bio_data_dir(bi);
NeilBrown49077322010-03-25 16:20:56 +11004432 int remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433
Tejun Heoe9c74692010-09-03 11:56:18 +02004434 if (unlikely(bi->bi_rw & REQ_FLUSH)) {
4435 md_flush_request(mddev, bi);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02004436 return;
NeilBrowne5dcdd82005-09-09 16:23:41 -07004437 }
4438
NeilBrown3d310eb2005-06-21 17:17:26 -07004439 md_write_start(mddev, bi);
NeilBrown06d91a52005-06-21 17:17:12 -07004440
NeilBrown802ba062006-12-13 00:34:13 -08004441 if (rw == READ &&
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08004442 mddev->reshape_position == MaxSector &&
NeilBrown21a52c62010-04-01 15:02:13 +11004443 chunk_aligned_read(mddev,bi))
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02004444 return;
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08004445
Shaohua Li620125f2012-10-11 13:49:05 +11004446 if (unlikely(bi->bi_rw & REQ_DISCARD)) {
4447 make_discard_request(mddev, bi);
4448 return;
4449 }
4450
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451 logical_sector = bi->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
Kent Overstreetf73a1c72012-09-25 15:05:12 -07004452 last_sector = bio_end_sector(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453 bi->bi_next = NULL;
4454 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
NeilBrown06d91a52005-06-21 17:17:12 -07004455
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456 for (;logical_sector < last_sector; logical_sector += STRIPE_SECTORS) {
4457 DEFINE_WAIT(w);
NeilBrownb5663ba2009-03-31 14:39:38 +11004458 int previous;
NeilBrownc46501b2013-08-27 15:52:13 +10004459 int seq;
NeilBrownb578d552006-03-27 01:18:12 -08004460
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004461 retry:
NeilBrownc46501b2013-08-27 15:52:13 +10004462 seq = read_seqcount_begin(&conf->gen_lock);
NeilBrownb5663ba2009-03-31 14:39:38 +11004463 previous = 0;
NeilBrownb578d552006-03-27 01:18:12 -08004464 prepare_to_wait(&conf->wait_for_overlap, &w, TASK_UNINTERRUPTIBLE);
NeilBrownb0f9ec02009-03-31 15:27:18 +11004465 if (unlikely(conf->reshape_progress != MaxSector)) {
NeilBrownfef9c612009-03-31 15:16:46 +11004466 /* spinlock is needed as reshape_progress may be
NeilBrowndf8e7f72006-03-27 01:18:15 -08004467 * 64bit on a 32bit platform, and so it might be
4468 * possible to see a half-updated value
Jesper Juhlaeb878b2011-04-10 18:06:17 +02004469 * Of course reshape_progress could change after
NeilBrowndf8e7f72006-03-27 01:18:15 -08004470 * the lock is dropped, so once we get a reference
4471 * to the stripe that we think it is, we will have
4472 * to check again.
4473 */
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004474 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10004475 if (mddev->reshape_backwards
NeilBrownfef9c612009-03-31 15:16:46 +11004476 ? logical_sector < conf->reshape_progress
4477 : logical_sector >= conf->reshape_progress) {
NeilBrownb5663ba2009-03-31 14:39:38 +11004478 previous = 1;
4479 } else {
NeilBrown2c810cd2012-05-21 09:27:00 +10004480 if (mddev->reshape_backwards
NeilBrownfef9c612009-03-31 15:16:46 +11004481 ? logical_sector < conf->reshape_safe
4482 : logical_sector >= conf->reshape_safe) {
NeilBrownb578d552006-03-27 01:18:12 -08004483 spin_unlock_irq(&conf->device_lock);
4484 schedule();
4485 goto retry;
4486 }
4487 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004488 spin_unlock_irq(&conf->device_lock);
4489 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004490
NeilBrown112bf892009-03-31 14:39:38 +11004491 new_sector = raid5_compute_sector(conf, logical_sector,
4492 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11004493 &dd_idx, NULL);
NeilBrown0c55e022010-05-03 14:09:02 +10004494 pr_debug("raid456: make_request, sector %llu logical %llu\n",
NeilBrownc46501b2013-08-27 15:52:13 +10004495 (unsigned long long)new_sector,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496 (unsigned long long)logical_sector);
4497
NeilBrownb5663ba2009-03-31 14:39:38 +11004498 sh = get_active_stripe(conf, new_sector, previous,
NeilBrowna8c906c2009-06-09 14:39:59 +10004499 (bi->bi_rw&RWA_MASK), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500 if (sh) {
NeilBrownb0f9ec02009-03-31 15:27:18 +11004501 if (unlikely(previous)) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004502 /* expansion might have moved on while waiting for a
NeilBrowndf8e7f72006-03-27 01:18:15 -08004503 * stripe, so we must do the range check again.
4504 * Expansion could still move past after this
4505 * test, but as we are holding a reference to
4506 * 'sh', we know that if that happens,
4507 * STRIPE_EXPANDING will get set and the expansion
4508 * won't proceed until we finish with the stripe.
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004509 */
4510 int must_retry = 0;
4511 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10004512 if (mddev->reshape_backwards
NeilBrownb0f9ec02009-03-31 15:27:18 +11004513 ? logical_sector >= conf->reshape_progress
4514 : logical_sector < conf->reshape_progress)
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004515 /* mismatch, need to try again */
4516 must_retry = 1;
4517 spin_unlock_irq(&conf->device_lock);
4518 if (must_retry) {
4519 release_stripe(sh);
Dan Williams7a3ab902009-06-16 16:00:33 -07004520 schedule();
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004521 goto retry;
4522 }
4523 }
NeilBrownc46501b2013-08-27 15:52:13 +10004524 if (read_seqcount_retry(&conf->gen_lock, seq)) {
4525 /* Might have got the wrong stripe_head
4526 * by accident
4527 */
4528 release_stripe(sh);
4529 goto retry;
4530 }
NeilBrowne62e58a2009-07-01 13:15:35 +10004531
Namhyung Kimffd96e32011-07-18 17:38:51 +10004532 if (rw == WRITE &&
NeilBrowna5c308d2009-07-01 13:15:35 +10004533 logical_sector >= mddev->suspend_lo &&
NeilBrowne464eaf2006-03-27 01:18:14 -08004534 logical_sector < mddev->suspend_hi) {
4535 release_stripe(sh);
NeilBrowne62e58a2009-07-01 13:15:35 +10004536 /* As the suspend_* range is controlled by
4537 * userspace, we want an interruptible
4538 * wait.
4539 */
4540 flush_signals(current);
4541 prepare_to_wait(&conf->wait_for_overlap,
4542 &w, TASK_INTERRUPTIBLE);
4543 if (logical_sector >= mddev->suspend_lo &&
4544 logical_sector < mddev->suspend_hi)
4545 schedule();
NeilBrowne464eaf2006-03-27 01:18:14 -08004546 goto retry;
4547 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004548
4549 if (test_bit(STRIPE_EXPANDING, &sh->state) ||
Namhyung Kimffd96e32011-07-18 17:38:51 +10004550 !add_stripe_bio(sh, bi, dd_idx, rw)) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004551 /* Stripe is busy expanding or
4552 * add failed due to overlap. Flush everything
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553 * and wait a while
4554 */
NeilBrown482c0832011-04-18 18:25:42 +10004555 md_wakeup_thread(mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556 release_stripe(sh);
4557 schedule();
4558 goto retry;
4559 }
4560 finish_wait(&conf->wait_for_overlap, &w);
NeilBrown6ed30032008-02-06 01:40:00 -08004561 set_bit(STRIPE_HANDLE, &sh->state);
4562 clear_bit(STRIPE_DELAYED, &sh->state);
NeilBrowna852d7b2012-09-19 12:48:30 +10004563 if ((bi->bi_rw & REQ_SYNC) &&
NeilBrown729a1862009-12-14 12:49:50 +11004564 !test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
4565 atomic_inc(&conf->preread_active_stripes);
Shaohua Li8811b592012-08-02 08:33:00 +10004566 release_stripe_plug(mddev, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567 } else {
4568 /* cannot get stripe for read-ahead, just give-up */
4569 clear_bit(BIO_UPTODATE, &bi->bi_flags);
4570 finish_wait(&conf->wait_for_overlap, &w);
4571 break;
4572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573 }
NeilBrown7c13edc2011-04-18 18:25:43 +10004574
Shaohua Lie7836bd62012-07-19 16:01:31 +10004575 remaining = raid5_dec_bi_active_stripes(bi);
NeilBrownf6344752006-03-27 01:18:17 -08004576 if (remaining == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577
NeilBrown16a53ec2006-06-26 00:27:38 -07004578 if ( rw == WRITE )
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579 md_write_end(mddev);
NeilBrown6712ecf2007-09-27 12:47:43 +02004580
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07004581 trace_block_bio_complete(bdev_get_queue(bi->bi_bdev),
4582 bi, 0);
Neil Brown0e13fe232008-06-28 08:31:20 +10004583 bio_endio(bi, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004585}
4586
NeilBrownfd01b882011-10-11 16:47:53 +11004587static sector_t raid5_size(struct mddev *mddev, sector_t sectors, int raid_disks);
Dan Williamsb522adc2009-03-31 15:00:31 +11004588
NeilBrownfd01b882011-10-11 16:47:53 +11004589static sector_t reshape_request(struct mddev *mddev, sector_t sector_nr, int *skipped)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590{
NeilBrown52c03292006-06-26 00:27:43 -07004591 /* reshaping is quite different to recovery/resync so it is
4592 * handled quite separately ... here.
4593 *
4594 * On each call to sync_request, we gather one chunk worth of
4595 * destination stripes and flag them as expanding.
4596 * Then we find all the source stripes and request reads.
4597 * As the reads complete, handle_stripe will copy the data
4598 * into the destination stripe and release that stripe.
4599 */
NeilBrownd1688a62011-10-11 16:49:52 +11004600 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004601 struct stripe_head *sh;
NeilBrownccfcc3c2006-03-27 01:18:09 -08004602 sector_t first_sector, last_sector;
NeilBrownf4168852007-02-28 20:11:53 -08004603 int raid_disks = conf->previous_raid_disks;
4604 int data_disks = raid_disks - conf->max_degraded;
4605 int new_data_disks = conf->raid_disks - conf->max_degraded;
NeilBrown52c03292006-06-26 00:27:43 -07004606 int i;
4607 int dd_idx;
NeilBrownc8f517c2009-03-31 15:28:40 +11004608 sector_t writepos, readpos, safepos;
NeilBrownec32a2b2009-03-31 15:17:38 +11004609 sector_t stripe_addr;
NeilBrown7a661382009-03-31 15:21:40 +11004610 int reshape_sectors;
NeilBrownab69ae12009-03-31 15:26:47 +11004611 struct list_head stripes;
NeilBrown52c03292006-06-26 00:27:43 -07004612
NeilBrownfef9c612009-03-31 15:16:46 +11004613 if (sector_nr == 0) {
4614 /* If restarting in the middle, skip the initial sectors */
NeilBrown2c810cd2012-05-21 09:27:00 +10004615 if (mddev->reshape_backwards &&
NeilBrownfef9c612009-03-31 15:16:46 +11004616 conf->reshape_progress < raid5_size(mddev, 0, 0)) {
4617 sector_nr = raid5_size(mddev, 0, 0)
4618 - conf->reshape_progress;
NeilBrown2c810cd2012-05-21 09:27:00 +10004619 } else if (!mddev->reshape_backwards &&
NeilBrownfef9c612009-03-31 15:16:46 +11004620 conf->reshape_progress > 0)
4621 sector_nr = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08004622 sector_div(sector_nr, new_data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11004623 if (sector_nr) {
NeilBrown8dee7212009-11-06 14:59:29 +11004624 mddev->curr_resync_completed = sector_nr;
4625 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrownfef9c612009-03-31 15:16:46 +11004626 *skipped = 1;
4627 return sector_nr;
4628 }
NeilBrown52c03292006-06-26 00:27:43 -07004629 }
4630
NeilBrown7a661382009-03-31 15:21:40 +11004631 /* We need to process a full chunk at a time.
4632 * If old and new chunk sizes differ, we need to process the
4633 * largest of these
4634 */
Andre Noll664e7c42009-06-18 08:45:27 +10004635 if (mddev->new_chunk_sectors > mddev->chunk_sectors)
4636 reshape_sectors = mddev->new_chunk_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11004637 else
Andre Noll9d8f0362009-06-18 08:45:01 +10004638 reshape_sectors = mddev->chunk_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11004639
NeilBrownb5254dd2012-05-21 09:27:01 +10004640 /* We update the metadata at least every 10 seconds, or when
4641 * the data about to be copied would over-write the source of
4642 * the data at the front of the range. i.e. one new_stripe
4643 * along from reshape_progress new_maps to after where
4644 * reshape_safe old_maps to
NeilBrown52c03292006-06-26 00:27:43 -07004645 */
NeilBrownfef9c612009-03-31 15:16:46 +11004646 writepos = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08004647 sector_div(writepos, new_data_disks);
NeilBrownc8f517c2009-03-31 15:28:40 +11004648 readpos = conf->reshape_progress;
4649 sector_div(readpos, data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11004650 safepos = conf->reshape_safe;
NeilBrownf4168852007-02-28 20:11:53 -08004651 sector_div(safepos, data_disks);
NeilBrown2c810cd2012-05-21 09:27:00 +10004652 if (mddev->reshape_backwards) {
NeilBrowned37d832009-05-27 21:39:05 +10004653 writepos -= min_t(sector_t, reshape_sectors, writepos);
NeilBrownc8f517c2009-03-31 15:28:40 +11004654 readpos += reshape_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11004655 safepos += reshape_sectors;
NeilBrownfef9c612009-03-31 15:16:46 +11004656 } else {
NeilBrown7a661382009-03-31 15:21:40 +11004657 writepos += reshape_sectors;
NeilBrowned37d832009-05-27 21:39:05 +10004658 readpos -= min_t(sector_t, reshape_sectors, readpos);
4659 safepos -= min_t(sector_t, reshape_sectors, safepos);
NeilBrownfef9c612009-03-31 15:16:46 +11004660 }
NeilBrown52c03292006-06-26 00:27:43 -07004661
NeilBrownb5254dd2012-05-21 09:27:01 +10004662 /* Having calculated the 'writepos' possibly use it
4663 * to set 'stripe_addr' which is where we will write to.
4664 */
4665 if (mddev->reshape_backwards) {
4666 BUG_ON(conf->reshape_progress == 0);
4667 stripe_addr = writepos;
4668 BUG_ON((mddev->dev_sectors &
4669 ~((sector_t)reshape_sectors - 1))
4670 - reshape_sectors - stripe_addr
4671 != sector_nr);
4672 } else {
4673 BUG_ON(writepos != sector_nr + reshape_sectors);
4674 stripe_addr = sector_nr;
4675 }
4676
NeilBrownc8f517c2009-03-31 15:28:40 +11004677 /* 'writepos' is the most advanced device address we might write.
4678 * 'readpos' is the least advanced device address we might read.
4679 * 'safepos' is the least address recorded in the metadata as having
4680 * been reshaped.
NeilBrownb5254dd2012-05-21 09:27:01 +10004681 * If there is a min_offset_diff, these are adjusted either by
4682 * increasing the safepos/readpos if diff is negative, or
4683 * increasing writepos if diff is positive.
4684 * If 'readpos' is then behind 'writepos', there is no way that we can
NeilBrownc8f517c2009-03-31 15:28:40 +11004685 * ensure safety in the face of a crash - that must be done by userspace
4686 * making a backup of the data. So in that case there is no particular
4687 * rush to update metadata.
4688 * Otherwise if 'safepos' is behind 'writepos', then we really need to
4689 * update the metadata to advance 'safepos' to match 'readpos' so that
4690 * we can be safe in the event of a crash.
4691 * So we insist on updating metadata if safepos is behind writepos and
4692 * readpos is beyond writepos.
4693 * In any case, update the metadata every 10 seconds.
4694 * Maybe that number should be configurable, but I'm not sure it is
4695 * worth it.... maybe it could be a multiple of safemode_delay???
4696 */
NeilBrownb5254dd2012-05-21 09:27:01 +10004697 if (conf->min_offset_diff < 0) {
4698 safepos += -conf->min_offset_diff;
4699 readpos += -conf->min_offset_diff;
4700 } else
4701 writepos += conf->min_offset_diff;
4702
NeilBrown2c810cd2012-05-21 09:27:00 +10004703 if ((mddev->reshape_backwards
NeilBrownc8f517c2009-03-31 15:28:40 +11004704 ? (safepos > writepos && readpos < writepos)
4705 : (safepos < writepos && readpos > writepos)) ||
4706 time_after(jiffies, conf->reshape_checkpoint + 10*HZ)) {
NeilBrown52c03292006-06-26 00:27:43 -07004707 /* Cannot proceed until we've updated the superblock... */
4708 wait_event(conf->wait_for_overlap,
4709 atomic_read(&conf->reshape_stripes)==0);
NeilBrownfef9c612009-03-31 15:16:46 +11004710 mddev->reshape_position = conf->reshape_progress;
NeilBrown75d3da42011-01-14 09:14:34 +11004711 mddev->curr_resync_completed = sector_nr;
NeilBrownc8f517c2009-03-31 15:28:40 +11004712 conf->reshape_checkpoint = jiffies;
NeilBrown850b2b42006-10-03 01:15:46 -07004713 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrown52c03292006-06-26 00:27:43 -07004714 md_wakeup_thread(mddev->thread);
NeilBrown850b2b42006-10-03 01:15:46 -07004715 wait_event(mddev->sb_wait, mddev->flags == 0 ||
NeilBrown52c03292006-06-26 00:27:43 -07004716 kthread_should_stop());
4717 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11004718 conf->reshape_safe = mddev->reshape_position;
NeilBrown52c03292006-06-26 00:27:43 -07004719 spin_unlock_irq(&conf->device_lock);
4720 wake_up(&conf->wait_for_overlap);
NeilBrownacb180b2009-04-14 16:28:34 +10004721 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrown52c03292006-06-26 00:27:43 -07004722 }
4723
NeilBrownab69ae12009-03-31 15:26:47 +11004724 INIT_LIST_HEAD(&stripes);
NeilBrown7a661382009-03-31 15:21:40 +11004725 for (i = 0; i < reshape_sectors; i += STRIPE_SECTORS) {
NeilBrown52c03292006-06-26 00:27:43 -07004726 int j;
NeilBrowna9f326e2009-09-23 18:06:41 +10004727 int skipped_disk = 0;
NeilBrowna8c906c2009-06-09 14:39:59 +10004728 sh = get_active_stripe(conf, stripe_addr+i, 0, 0, 1);
NeilBrown52c03292006-06-26 00:27:43 -07004729 set_bit(STRIPE_EXPANDING, &sh->state);
4730 atomic_inc(&conf->reshape_stripes);
4731 /* If any of this stripe is beyond the end of the old
4732 * array, then we need to zero those blocks
4733 */
4734 for (j=sh->disks; j--;) {
4735 sector_t s;
4736 if (j == sh->pd_idx)
4737 continue;
NeilBrownf4168852007-02-28 20:11:53 -08004738 if (conf->level == 6 &&
NeilBrownd0dabf72009-03-31 14:39:38 +11004739 j == sh->qd_idx)
NeilBrownf4168852007-02-28 20:11:53 -08004740 continue;
NeilBrown784052e2009-03-31 15:19:07 +11004741 s = compute_blocknr(sh, j, 0);
Dan Williamsb522adc2009-03-31 15:00:31 +11004742 if (s < raid5_size(mddev, 0, 0)) {
NeilBrowna9f326e2009-09-23 18:06:41 +10004743 skipped_disk = 1;
NeilBrown52c03292006-06-26 00:27:43 -07004744 continue;
4745 }
4746 memset(page_address(sh->dev[j].page), 0, STRIPE_SIZE);
4747 set_bit(R5_Expanded, &sh->dev[j].flags);
4748 set_bit(R5_UPTODATE, &sh->dev[j].flags);
4749 }
NeilBrowna9f326e2009-09-23 18:06:41 +10004750 if (!skipped_disk) {
NeilBrown52c03292006-06-26 00:27:43 -07004751 set_bit(STRIPE_EXPAND_READY, &sh->state);
4752 set_bit(STRIPE_HANDLE, &sh->state);
4753 }
NeilBrownab69ae12009-03-31 15:26:47 +11004754 list_add(&sh->lru, &stripes);
NeilBrown52c03292006-06-26 00:27:43 -07004755 }
4756 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10004757 if (mddev->reshape_backwards)
NeilBrown7a661382009-03-31 15:21:40 +11004758 conf->reshape_progress -= reshape_sectors * new_data_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11004759 else
NeilBrown7a661382009-03-31 15:21:40 +11004760 conf->reshape_progress += reshape_sectors * new_data_disks;
NeilBrown52c03292006-06-26 00:27:43 -07004761 spin_unlock_irq(&conf->device_lock);
4762 /* Ok, those stripe are ready. We can start scheduling
4763 * reads on the source stripes.
4764 * The source stripes are determined by mapping the first and last
4765 * block on the destination stripes.
4766 */
NeilBrown52c03292006-06-26 00:27:43 -07004767 first_sector =
NeilBrownec32a2b2009-03-31 15:17:38 +11004768 raid5_compute_sector(conf, stripe_addr*(new_data_disks),
NeilBrown911d4ee2009-03-31 14:39:38 +11004769 1, &dd_idx, NULL);
NeilBrown52c03292006-06-26 00:27:43 -07004770 last_sector =
NeilBrown0e6e0272009-06-09 16:32:22 +10004771 raid5_compute_sector(conf, ((stripe_addr+reshape_sectors)
Andre Noll09c9e5f2009-06-18 08:45:55 +10004772 * new_data_disks - 1),
NeilBrown911d4ee2009-03-31 14:39:38 +11004773 1, &dd_idx, NULL);
Andre Noll58c0fed2009-03-31 14:33:13 +11004774 if (last_sector >= mddev->dev_sectors)
4775 last_sector = mddev->dev_sectors - 1;
NeilBrown52c03292006-06-26 00:27:43 -07004776 while (first_sector <= last_sector) {
NeilBrowna8c906c2009-06-09 14:39:59 +10004777 sh = get_active_stripe(conf, first_sector, 1, 0, 1);
NeilBrown52c03292006-06-26 00:27:43 -07004778 set_bit(STRIPE_EXPAND_SOURCE, &sh->state);
4779 set_bit(STRIPE_HANDLE, &sh->state);
4780 release_stripe(sh);
4781 first_sector += STRIPE_SECTORS;
4782 }
NeilBrownab69ae12009-03-31 15:26:47 +11004783 /* Now that the sources are clearly marked, we can release
4784 * the destination stripes
4785 */
4786 while (!list_empty(&stripes)) {
4787 sh = list_entry(stripes.next, struct stripe_head, lru);
4788 list_del_init(&sh->lru);
4789 release_stripe(sh);
4790 }
NeilBrownc6207272008-02-06 01:39:52 -08004791 /* If this takes us to the resync_max point where we have to pause,
4792 * then we need to write out the superblock.
4793 */
NeilBrown7a661382009-03-31 15:21:40 +11004794 sector_nr += reshape_sectors;
NeilBrownc03f6a12009-04-17 11:06:30 +10004795 if ((sector_nr - mddev->curr_resync_completed) * 2
4796 >= mddev->resync_max - mddev->curr_resync_completed) {
NeilBrownc6207272008-02-06 01:39:52 -08004797 /* Cannot proceed until we've updated the superblock... */
4798 wait_event(conf->wait_for_overlap,
4799 atomic_read(&conf->reshape_stripes) == 0);
NeilBrownfef9c612009-03-31 15:16:46 +11004800 mddev->reshape_position = conf->reshape_progress;
NeilBrown75d3da42011-01-14 09:14:34 +11004801 mddev->curr_resync_completed = sector_nr;
NeilBrownc8f517c2009-03-31 15:28:40 +11004802 conf->reshape_checkpoint = jiffies;
NeilBrownc6207272008-02-06 01:39:52 -08004803 set_bit(MD_CHANGE_DEVS, &mddev->flags);
4804 md_wakeup_thread(mddev->thread);
4805 wait_event(mddev->sb_wait,
4806 !test_bit(MD_CHANGE_DEVS, &mddev->flags)
4807 || kthread_should_stop());
4808 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11004809 conf->reshape_safe = mddev->reshape_position;
NeilBrownc6207272008-02-06 01:39:52 -08004810 spin_unlock_irq(&conf->device_lock);
4811 wake_up(&conf->wait_for_overlap);
NeilBrownacb180b2009-04-14 16:28:34 +10004812 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrownc6207272008-02-06 01:39:52 -08004813 }
NeilBrown7a661382009-03-31 15:21:40 +11004814 return reshape_sectors;
NeilBrown52c03292006-06-26 00:27:43 -07004815}
4816
4817/* FIXME go_faster isn't used */
NeilBrownfd01b882011-10-11 16:47:53 +11004818static inline sector_t sync_request(struct mddev *mddev, sector_t sector_nr, int *skipped, int go_faster)
NeilBrown52c03292006-06-26 00:27:43 -07004819{
NeilBrownd1688a62011-10-11 16:49:52 +11004820 struct r5conf *conf = mddev->private;
NeilBrown52c03292006-06-26 00:27:43 -07004821 struct stripe_head *sh;
Andre Noll58c0fed2009-03-31 14:33:13 +11004822 sector_t max_sector = mddev->dev_sectors;
NeilBrown57dab0b2010-10-19 10:03:39 +11004823 sector_t sync_blocks;
NeilBrown16a53ec2006-06-26 00:27:38 -07004824 int still_degraded = 0;
4825 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004826
NeilBrown72626682005-09-09 16:23:54 -07004827 if (sector_nr >= max_sector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004828 /* just being told to finish up .. nothing much to do */
NeilBrowncea9c222009-03-31 15:15:05 +11004829
NeilBrown29269552006-03-27 01:18:10 -08004830 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery)) {
4831 end_reshape(conf);
4832 return 0;
4833 }
NeilBrown72626682005-09-09 16:23:54 -07004834
4835 if (mddev->curr_resync < max_sector) /* aborted */
4836 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
4837 &sync_blocks, 1);
NeilBrown16a53ec2006-06-26 00:27:38 -07004838 else /* completed sync */
NeilBrown72626682005-09-09 16:23:54 -07004839 conf->fullsync = 0;
4840 bitmap_close_sync(mddev->bitmap);
4841
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842 return 0;
4843 }
NeilBrownccfcc3c2006-03-27 01:18:09 -08004844
NeilBrown64bd6602009-08-03 10:59:58 +10004845 /* Allow raid5_quiesce to complete */
4846 wait_event(conf->wait_for_overlap, conf->quiesce != 2);
4847
NeilBrown52c03292006-06-26 00:27:43 -07004848 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery))
4849 return reshape_request(mddev, sector_nr, skipped);
NeilBrownf6705572006-03-27 01:18:11 -08004850
NeilBrownc6207272008-02-06 01:39:52 -08004851 /* No need to check resync_max as we never do more than one
4852 * stripe, and as resync_max will always be on a chunk boundary,
4853 * if the check in md_do_sync didn't fire, there is no chance
4854 * of overstepping resync_max here
4855 */
4856
NeilBrown16a53ec2006-06-26 00:27:38 -07004857 /* if there is too many failed drives and we are trying
Linus Torvalds1da177e2005-04-16 15:20:36 -07004858 * to resync, then assert that we are finished, because there is
4859 * nothing we can do.
4860 */
NeilBrown3285edf2006-06-26 00:27:55 -07004861 if (mddev->degraded >= conf->max_degraded &&
NeilBrown16a53ec2006-06-26 00:27:38 -07004862 test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
Andre Noll58c0fed2009-03-31 14:33:13 +11004863 sector_t rv = mddev->dev_sectors - sector_nr;
NeilBrown57afd892005-06-21 17:17:13 -07004864 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865 return rv;
4866 }
majianpeng6f608042013-04-24 11:42:41 +10004867 if (!test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
4868 !conf->fullsync &&
4869 !bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
4870 sync_blocks >= STRIPE_SECTORS) {
NeilBrown72626682005-09-09 16:23:54 -07004871 /* we can skip this block, and probably more */
4872 sync_blocks /= STRIPE_SECTORS;
4873 *skipped = 1;
4874 return sync_blocks * STRIPE_SECTORS; /* keep things rounded to whole stripes */
4875 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004876
NeilBrownb47490c2008-02-06 01:39:50 -08004877 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
4878
NeilBrowna8c906c2009-06-09 14:39:59 +10004879 sh = get_active_stripe(conf, sector_nr, 0, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004880 if (sh == NULL) {
NeilBrowna8c906c2009-06-09 14:39:59 +10004881 sh = get_active_stripe(conf, sector_nr, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004882 /* make sure we don't swamp the stripe cache if someone else
NeilBrown16a53ec2006-06-26 00:27:38 -07004883 * is trying to get access
Linus Torvalds1da177e2005-04-16 15:20:36 -07004884 */
Nishanth Aravamudan66c006a2005-11-07 01:01:17 -08004885 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004886 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004887 /* Need to check if array will still be degraded after recovery/resync
4888 * We don't need to check the 'failed' flag as when that gets set,
4889 * recovery aborts.
4890 */
NeilBrownf001a702009-06-09 14:30:31 +10004891 for (i = 0; i < conf->raid_disks; i++)
NeilBrown16a53ec2006-06-26 00:27:38 -07004892 if (conf->disks[i].rdev == NULL)
4893 still_degraded = 1;
4894
4895 bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, still_degraded);
4896
NeilBrown83206d62011-07-26 11:19:49 +10004897 set_bit(STRIPE_SYNC_REQUESTED, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004898
NeilBrown14425772009-10-16 15:55:25 +11004899 handle_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004900 release_stripe(sh);
4901
4902 return STRIPE_SECTORS;
4903}
4904
NeilBrownd1688a62011-10-11 16:49:52 +11004905static int retry_aligned_read(struct r5conf *conf, struct bio *raid_bio)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004906{
4907 /* We may not be able to submit a whole bio at once as there
4908 * may not be enough stripe_heads available.
4909 * We cannot pre-allocate enough stripe_heads as we may need
4910 * more than exist in the cache (if we allow ever large chunks).
4911 * So we do one stripe head at a time and record in
4912 * ->bi_hw_segments how many have been done.
4913 *
4914 * We *know* that this entire raid_bio is in one chunk, so
4915 * it will be only one 'dd_idx' and only need one call to raid5_compute_sector.
4916 */
4917 struct stripe_head *sh;
NeilBrown911d4ee2009-03-31 14:39:38 +11004918 int dd_idx;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004919 sector_t sector, logical_sector, last_sector;
4920 int scnt = 0;
4921 int remaining;
4922 int handled = 0;
4923
4924 logical_sector = raid_bio->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
NeilBrown112bf892009-03-31 14:39:38 +11004925 sector = raid5_compute_sector(conf, logical_sector,
NeilBrown911d4ee2009-03-31 14:39:38 +11004926 0, &dd_idx, NULL);
Kent Overstreetf73a1c72012-09-25 15:05:12 -07004927 last_sector = bio_end_sector(raid_bio);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004928
4929 for (; logical_sector < last_sector;
Neil Brown387bb172007-02-08 14:20:29 -08004930 logical_sector += STRIPE_SECTORS,
4931 sector += STRIPE_SECTORS,
4932 scnt++) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004933
Shaohua Lie7836bd62012-07-19 16:01:31 +10004934 if (scnt < raid5_bi_processed_stripes(raid_bio))
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004935 /* already done this stripe */
4936 continue;
4937
NeilBrowna8c906c2009-06-09 14:39:59 +10004938 sh = get_active_stripe(conf, sector, 0, 1, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004939
4940 if (!sh) {
4941 /* failed to get a stripe - must wait */
Shaohua Lie7836bd62012-07-19 16:01:31 +10004942 raid5_set_bi_processed_stripes(raid_bio, scnt);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004943 conf->retry_read_aligned = raid_bio;
4944 return handled;
4945 }
4946
Neil Brown387bb172007-02-08 14:20:29 -08004947 if (!add_stripe_bio(sh, raid_bio, dd_idx, 0)) {
4948 release_stripe(sh);
Shaohua Lie7836bd62012-07-19 16:01:31 +10004949 raid5_set_bi_processed_stripes(raid_bio, scnt);
Neil Brown387bb172007-02-08 14:20:29 -08004950 conf->retry_read_aligned = raid_bio;
4951 return handled;
4952 }
4953
majianpeng3f9e7c12012-07-31 10:04:21 +10004954 set_bit(R5_ReadNoMerge, &sh->dev[dd_idx].flags);
Dan Williams36d1c642009-07-14 11:48:22 -07004955 handle_stripe(sh);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004956 release_stripe(sh);
4957 handled++;
4958 }
Shaohua Lie7836bd62012-07-19 16:01:31 +10004959 remaining = raid5_dec_bi_active_stripes(raid_bio);
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07004960 if (remaining == 0) {
4961 trace_block_bio_complete(bdev_get_queue(raid_bio->bi_bdev),
4962 raid_bio, 0);
Neil Brown0e13fe232008-06-28 08:31:20 +10004963 bio_endio(raid_bio, 0);
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07004964 }
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004965 if (atomic_dec_and_test(&conf->active_aligned_reads))
4966 wake_up(&conf->wait_for_stripe);
4967 return handled;
4968}
4969
Shaohua Libfc90cb2013-08-29 15:40:32 +08004970static int handle_active_stripes(struct r5conf *conf, int group,
4971 struct r5worker *worker)
Shaohua Li46a06402012-08-02 08:33:15 +10004972{
4973 struct stripe_head *batch[MAX_STRIPE_BATCH], *sh;
4974 int i, batch_size = 0;
4975
4976 while (batch_size < MAX_STRIPE_BATCH &&
Shaohua Li851c30c2013-08-28 14:30:16 +08004977 (sh = __get_priority_stripe(conf, group)) != NULL)
Shaohua Li46a06402012-08-02 08:33:15 +10004978 batch[batch_size++] = sh;
4979
4980 if (batch_size == 0)
4981 return batch_size;
4982 spin_unlock_irq(&conf->device_lock);
4983
4984 for (i = 0; i < batch_size; i++)
4985 handle_stripe(batch[i]);
4986
4987 cond_resched();
4988
4989 spin_lock_irq(&conf->device_lock);
4990 for (i = 0; i < batch_size; i++)
4991 __release_stripe(conf, batch[i]);
4992 return batch_size;
4993}
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004994
Shaohua Li851c30c2013-08-28 14:30:16 +08004995static void raid5_do_work(struct work_struct *work)
4996{
4997 struct r5worker *worker = container_of(work, struct r5worker, work);
4998 struct r5worker_group *group = worker->group;
4999 struct r5conf *conf = group->conf;
5000 int group_id = group - conf->worker_groups;
5001 int handled;
5002 struct blk_plug plug;
5003
5004 pr_debug("+++ raid5worker active\n");
5005
5006 blk_start_plug(&plug);
5007 handled = 0;
5008 spin_lock_irq(&conf->device_lock);
5009 while (1) {
5010 int batch_size, released;
5011
5012 released = release_stripe_list(conf);
5013
Shaohua Libfc90cb2013-08-29 15:40:32 +08005014 batch_size = handle_active_stripes(conf, group_id, worker);
5015 worker->working = false;
Shaohua Li851c30c2013-08-28 14:30:16 +08005016 if (!batch_size && !released)
5017 break;
5018 handled += batch_size;
5019 }
5020 pr_debug("%d stripes handled\n", handled);
5021
5022 spin_unlock_irq(&conf->device_lock);
5023 blk_finish_plug(&plug);
5024
5025 pr_debug("--- raid5worker inactive\n");
5026}
5027
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028/*
5029 * This is our raid5 kernel thread.
5030 *
5031 * We scan the hash table for stripes which can be handled now.
5032 * During the scan, completed stripes are saved for us by the interrupt
5033 * handler, so that they will not have to wait for our next wakeup.
5034 */
Shaohua Li4ed87312012-10-11 13:34:00 +11005035static void raid5d(struct md_thread *thread)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005036{
Shaohua Li4ed87312012-10-11 13:34:00 +11005037 struct mddev *mddev = thread->mddev;
NeilBrownd1688a62011-10-11 16:49:52 +11005038 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005039 int handled;
NeilBrowne1dfa0a2011-04-18 18:25:41 +10005040 struct blk_plug plug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005041
Dan Williams45b42332007-07-09 11:56:43 -07005042 pr_debug("+++ raid5d active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005043
5044 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005045
NeilBrowne1dfa0a2011-04-18 18:25:41 +10005046 blk_start_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005047 handled = 0;
5048 spin_lock_irq(&conf->device_lock);
5049 while (1) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005050 struct bio *bio;
Shaohua Li773ca822013-08-27 17:50:39 +08005051 int batch_size, released;
5052
5053 released = release_stripe_list(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005054
NeilBrown0021b7b2012-07-31 09:08:14 +02005055 if (
NeilBrown7c13edc2011-04-18 18:25:43 +10005056 !list_empty(&conf->bitmap_list)) {
5057 /* Now is a good time to flush some bitmap updates */
5058 conf->seq_flush++;
NeilBrown700e4322005-11-28 13:44:10 -08005059 spin_unlock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07005060 bitmap_unplug(mddev->bitmap);
NeilBrown700e4322005-11-28 13:44:10 -08005061 spin_lock_irq(&conf->device_lock);
NeilBrown7c13edc2011-04-18 18:25:43 +10005062 conf->seq_write = conf->seq_flush;
NeilBrown72626682005-09-09 16:23:54 -07005063 activate_bit_delay(conf);
5064 }
NeilBrown0021b7b2012-07-31 09:08:14 +02005065 raid5_activate_delayed(conf);
NeilBrown72626682005-09-09 16:23:54 -07005066
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005067 while ((bio = remove_bio_from_retry(conf))) {
5068 int ok;
5069 spin_unlock_irq(&conf->device_lock);
5070 ok = retry_aligned_read(conf, bio);
5071 spin_lock_irq(&conf->device_lock);
5072 if (!ok)
5073 break;
5074 handled++;
5075 }
5076
Shaohua Libfc90cb2013-08-29 15:40:32 +08005077 batch_size = handle_active_stripes(conf, ANY_GROUP, NULL);
Shaohua Li773ca822013-08-27 17:50:39 +08005078 if (!batch_size && !released)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005079 break;
Shaohua Li46a06402012-08-02 08:33:15 +10005080 handled += batch_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005081
Shaohua Li46a06402012-08-02 08:33:15 +10005082 if (mddev->flags & ~(1<<MD_CHANGE_PENDING)) {
5083 spin_unlock_irq(&conf->device_lock);
NeilBrownde393cd2011-07-28 11:31:48 +10005084 md_check_recovery(mddev);
Shaohua Li46a06402012-08-02 08:33:15 +10005085 spin_lock_irq(&conf->device_lock);
5086 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005087 }
Dan Williams45b42332007-07-09 11:56:43 -07005088 pr_debug("%d stripes handled\n", handled);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005089
5090 spin_unlock_irq(&conf->device_lock);
5091
Dan Williamsc9f21aa2008-07-23 12:05:51 -07005092 async_tx_issue_pending_all();
NeilBrowne1dfa0a2011-04-18 18:25:41 +10005093 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005094
Dan Williams45b42332007-07-09 11:56:43 -07005095 pr_debug("--- raid5d inactive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005096}
5097
NeilBrown3f294f42005-11-08 21:39:25 -08005098static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11005099raid5_show_stripe_cache_size(struct mddev *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08005100{
NeilBrownd1688a62011-10-11 16:49:52 +11005101 struct r5conf *conf = mddev->private;
NeilBrown96de1e62005-11-08 21:39:39 -08005102 if (conf)
5103 return sprintf(page, "%d\n", conf->max_nr_stripes);
5104 else
5105 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08005106}
5107
NeilBrownc41d4ac2010-06-01 19:37:24 +10005108int
NeilBrownfd01b882011-10-11 16:47:53 +11005109raid5_set_cache_size(struct mddev *mddev, int size)
NeilBrownc41d4ac2010-06-01 19:37:24 +10005110{
NeilBrownd1688a62011-10-11 16:49:52 +11005111 struct r5conf *conf = mddev->private;
NeilBrownc41d4ac2010-06-01 19:37:24 +10005112 int err;
5113
5114 if (size <= 16 || size > 32768)
5115 return -EINVAL;
5116 while (size < conf->max_nr_stripes) {
5117 if (drop_one_stripe(conf))
5118 conf->max_nr_stripes--;
5119 else
5120 break;
5121 }
5122 err = md_allow_write(mddev);
5123 if (err)
5124 return err;
5125 while (size > conf->max_nr_stripes) {
5126 if (grow_one_stripe(conf))
5127 conf->max_nr_stripes++;
5128 else break;
5129 }
5130 return 0;
5131}
5132EXPORT_SYMBOL(raid5_set_cache_size);
5133
NeilBrown3f294f42005-11-08 21:39:25 -08005134static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11005135raid5_store_stripe_cache_size(struct mddev *mddev, const char *page, size_t len)
NeilBrown3f294f42005-11-08 21:39:25 -08005136{
NeilBrownd1688a62011-10-11 16:49:52 +11005137 struct r5conf *conf = mddev->private;
Dan Williams4ef197d82008-04-28 02:15:54 -07005138 unsigned long new;
Dan Williamsb5470dc2008-06-27 21:44:04 -07005139 int err;
5140
NeilBrown3f294f42005-11-08 21:39:25 -08005141 if (len >= PAGE_SIZE)
5142 return -EINVAL;
NeilBrown96de1e62005-11-08 21:39:39 -08005143 if (!conf)
5144 return -ENODEV;
NeilBrown3f294f42005-11-08 21:39:25 -08005145
Jingoo Hanb29bebd2013-06-01 16:15:16 +09005146 if (kstrtoul(page, 10, &new))
NeilBrown3f294f42005-11-08 21:39:25 -08005147 return -EINVAL;
NeilBrownc41d4ac2010-06-01 19:37:24 +10005148 err = raid5_set_cache_size(mddev, new);
Dan Williamsb5470dc2008-06-27 21:44:04 -07005149 if (err)
5150 return err;
NeilBrown3f294f42005-11-08 21:39:25 -08005151 return len;
5152}
NeilBrown007583c2005-11-08 21:39:30 -08005153
NeilBrown96de1e62005-11-08 21:39:39 -08005154static struct md_sysfs_entry
5155raid5_stripecache_size = __ATTR(stripe_cache_size, S_IRUGO | S_IWUSR,
5156 raid5_show_stripe_cache_size,
5157 raid5_store_stripe_cache_size);
NeilBrown3f294f42005-11-08 21:39:25 -08005158
5159static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11005160raid5_show_preread_threshold(struct mddev *mddev, char *page)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005161{
NeilBrownd1688a62011-10-11 16:49:52 +11005162 struct r5conf *conf = mddev->private;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005163 if (conf)
5164 return sprintf(page, "%d\n", conf->bypass_threshold);
5165 else
5166 return 0;
5167}
5168
5169static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11005170raid5_store_preread_threshold(struct mddev *mddev, const char *page, size_t len)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005171{
NeilBrownd1688a62011-10-11 16:49:52 +11005172 struct r5conf *conf = mddev->private;
Dan Williams4ef197d82008-04-28 02:15:54 -07005173 unsigned long new;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005174 if (len >= PAGE_SIZE)
5175 return -EINVAL;
5176 if (!conf)
5177 return -ENODEV;
5178
Jingoo Hanb29bebd2013-06-01 16:15:16 +09005179 if (kstrtoul(page, 10, &new))
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005180 return -EINVAL;
Dan Williams4ef197d82008-04-28 02:15:54 -07005181 if (new > conf->max_nr_stripes)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005182 return -EINVAL;
5183 conf->bypass_threshold = new;
5184 return len;
5185}
5186
5187static struct md_sysfs_entry
5188raid5_preread_bypass_threshold = __ATTR(preread_bypass_threshold,
5189 S_IRUGO | S_IWUSR,
5190 raid5_show_preread_threshold,
5191 raid5_store_preread_threshold);
5192
5193static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11005194stripe_cache_active_show(struct mddev *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08005195{
NeilBrownd1688a62011-10-11 16:49:52 +11005196 struct r5conf *conf = mddev->private;
NeilBrown96de1e62005-11-08 21:39:39 -08005197 if (conf)
5198 return sprintf(page, "%d\n", atomic_read(&conf->active_stripes));
5199 else
5200 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08005201}
5202
NeilBrown96de1e62005-11-08 21:39:39 -08005203static struct md_sysfs_entry
5204raid5_stripecache_active = __ATTR_RO(stripe_cache_active);
NeilBrown3f294f42005-11-08 21:39:25 -08005205
Shaohua Lib7214202013-08-27 17:50:42 +08005206static ssize_t
5207raid5_show_group_thread_cnt(struct mddev *mddev, char *page)
5208{
5209 struct r5conf *conf = mddev->private;
5210 if (conf)
5211 return sprintf(page, "%d\n", conf->worker_cnt_per_group);
5212 else
5213 return 0;
5214}
5215
5216static int alloc_thread_groups(struct r5conf *conf, int cnt);
5217static ssize_t
5218raid5_store_group_thread_cnt(struct mddev *mddev, const char *page, size_t len)
5219{
5220 struct r5conf *conf = mddev->private;
5221 unsigned long new;
5222 int err;
5223 struct r5worker_group *old_groups;
5224 int old_group_cnt;
5225
5226 if (len >= PAGE_SIZE)
5227 return -EINVAL;
5228 if (!conf)
5229 return -ENODEV;
5230
5231 if (kstrtoul(page, 10, &new))
5232 return -EINVAL;
5233
5234 if (new == conf->worker_cnt_per_group)
5235 return len;
5236
5237 mddev_suspend(mddev);
5238
5239 old_groups = conf->worker_groups;
5240 old_group_cnt = conf->worker_cnt_per_group;
5241
5242 conf->worker_groups = NULL;
5243 err = alloc_thread_groups(conf, new);
5244 if (err) {
5245 conf->worker_groups = old_groups;
5246 conf->worker_cnt_per_group = old_group_cnt;
5247 } else {
5248 if (old_groups)
5249 kfree(old_groups[0].workers);
5250 kfree(old_groups);
5251 }
5252
5253 mddev_resume(mddev);
5254
5255 if (err)
5256 return err;
5257 return len;
5258}
5259
5260static struct md_sysfs_entry
5261raid5_group_thread_cnt = __ATTR(group_thread_cnt, S_IRUGO | S_IWUSR,
5262 raid5_show_group_thread_cnt,
5263 raid5_store_group_thread_cnt);
5264
NeilBrown007583c2005-11-08 21:39:30 -08005265static struct attribute *raid5_attrs[] = {
NeilBrown3f294f42005-11-08 21:39:25 -08005266 &raid5_stripecache_size.attr,
5267 &raid5_stripecache_active.attr,
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005268 &raid5_preread_bypass_threshold.attr,
Shaohua Lib7214202013-08-27 17:50:42 +08005269 &raid5_group_thread_cnt.attr,
NeilBrown3f294f42005-11-08 21:39:25 -08005270 NULL,
5271};
NeilBrown007583c2005-11-08 21:39:30 -08005272static struct attribute_group raid5_attrs_group = {
5273 .name = NULL,
5274 .attrs = raid5_attrs,
NeilBrown3f294f42005-11-08 21:39:25 -08005275};
5276
Shaohua Li851c30c2013-08-28 14:30:16 +08005277static int alloc_thread_groups(struct r5conf *conf, int cnt)
5278{
5279 int i, j;
5280 ssize_t size;
5281 struct r5worker *workers;
5282
5283 conf->worker_cnt_per_group = cnt;
5284 if (cnt == 0) {
5285 conf->worker_groups = NULL;
5286 return 0;
5287 }
5288 conf->group_cnt = num_possible_nodes();
5289 size = sizeof(struct r5worker) * cnt;
5290 workers = kzalloc(size * conf->group_cnt, GFP_NOIO);
5291 conf->worker_groups = kzalloc(sizeof(struct r5worker_group) *
5292 conf->group_cnt, GFP_NOIO);
5293 if (!conf->worker_groups || !workers) {
5294 kfree(workers);
5295 kfree(conf->worker_groups);
5296 conf->worker_groups = NULL;
5297 return -ENOMEM;
5298 }
5299
5300 for (i = 0; i < conf->group_cnt; i++) {
5301 struct r5worker_group *group;
5302
5303 group = &conf->worker_groups[i];
5304 INIT_LIST_HEAD(&group->handle_list);
5305 group->conf = conf;
5306 group->workers = workers + i * cnt;
5307
5308 for (j = 0; j < cnt; j++) {
5309 group->workers[j].group = group;
5310 INIT_WORK(&group->workers[j].work, raid5_do_work);
5311 }
5312 }
5313
5314 return 0;
5315}
5316
5317static void free_thread_groups(struct r5conf *conf)
5318{
5319 if (conf->worker_groups)
5320 kfree(conf->worker_groups[0].workers);
5321 kfree(conf->worker_groups);
5322 conf->worker_groups = NULL;
5323}
5324
Dan Williams80c3a6c2009-03-17 18:10:40 -07005325static sector_t
NeilBrownfd01b882011-10-11 16:47:53 +11005326raid5_size(struct mddev *mddev, sector_t sectors, int raid_disks)
Dan Williams80c3a6c2009-03-17 18:10:40 -07005327{
NeilBrownd1688a62011-10-11 16:49:52 +11005328 struct r5conf *conf = mddev->private;
Dan Williams80c3a6c2009-03-17 18:10:40 -07005329
5330 if (!sectors)
5331 sectors = mddev->dev_sectors;
NeilBrown5e5e3e72009-10-16 16:35:30 +11005332 if (!raid_disks)
NeilBrown7ec05472009-03-31 15:10:36 +11005333 /* size is defined by the smallest of previous and new size */
NeilBrown5e5e3e72009-10-16 16:35:30 +11005334 raid_disks = min(conf->raid_disks, conf->previous_raid_disks);
Dan Williams80c3a6c2009-03-17 18:10:40 -07005335
Andre Noll9d8f0362009-06-18 08:45:01 +10005336 sectors &= ~((sector_t)mddev->chunk_sectors - 1);
Andre Noll664e7c42009-06-18 08:45:27 +10005337 sectors &= ~((sector_t)mddev->new_chunk_sectors - 1);
Dan Williams80c3a6c2009-03-17 18:10:40 -07005338 return sectors * (raid_disks - conf->max_degraded);
5339}
5340
NeilBrownd1688a62011-10-11 16:49:52 +11005341static void raid5_free_percpu(struct r5conf *conf)
Dan Williams36d1c642009-07-14 11:48:22 -07005342{
5343 struct raid5_percpu *percpu;
5344 unsigned long cpu;
5345
5346 if (!conf->percpu)
5347 return;
5348
5349 get_online_cpus();
5350 for_each_possible_cpu(cpu) {
5351 percpu = per_cpu_ptr(conf->percpu, cpu);
5352 safe_put_page(percpu->spare_page);
Dan Williamsd6f38f32009-07-14 11:50:52 -07005353 kfree(percpu->scribble);
Dan Williams36d1c642009-07-14 11:48:22 -07005354 }
5355#ifdef CONFIG_HOTPLUG_CPU
5356 unregister_cpu_notifier(&conf->cpu_notify);
5357#endif
5358 put_online_cpus();
5359
5360 free_percpu(conf->percpu);
5361}
5362
NeilBrownd1688a62011-10-11 16:49:52 +11005363static void free_conf(struct r5conf *conf)
Dan Williams95fc17a2009-07-31 12:39:15 +10005364{
Shaohua Li851c30c2013-08-28 14:30:16 +08005365 free_thread_groups(conf);
Dan Williams95fc17a2009-07-31 12:39:15 +10005366 shrink_stripes(conf);
Dan Williams36d1c642009-07-14 11:48:22 -07005367 raid5_free_percpu(conf);
Dan Williams95fc17a2009-07-31 12:39:15 +10005368 kfree(conf->disks);
5369 kfree(conf->stripe_hashtbl);
5370 kfree(conf);
5371}
5372
Dan Williams36d1c642009-07-14 11:48:22 -07005373#ifdef CONFIG_HOTPLUG_CPU
5374static int raid456_cpu_notify(struct notifier_block *nfb, unsigned long action,
5375 void *hcpu)
5376{
NeilBrownd1688a62011-10-11 16:49:52 +11005377 struct r5conf *conf = container_of(nfb, struct r5conf, cpu_notify);
Dan Williams36d1c642009-07-14 11:48:22 -07005378 long cpu = (long)hcpu;
5379 struct raid5_percpu *percpu = per_cpu_ptr(conf->percpu, cpu);
5380
5381 switch (action) {
5382 case CPU_UP_PREPARE:
5383 case CPU_UP_PREPARE_FROZEN:
Dan Williamsd6f38f32009-07-14 11:50:52 -07005384 if (conf->level == 6 && !percpu->spare_page)
Dan Williams36d1c642009-07-14 11:48:22 -07005385 percpu->spare_page = alloc_page(GFP_KERNEL);
Dan Williamsd6f38f32009-07-14 11:50:52 -07005386 if (!percpu->scribble)
5387 percpu->scribble = kmalloc(conf->scribble_len, GFP_KERNEL);
5388
5389 if (!percpu->scribble ||
5390 (conf->level == 6 && !percpu->spare_page)) {
5391 safe_put_page(percpu->spare_page);
5392 kfree(percpu->scribble);
Dan Williams36d1c642009-07-14 11:48:22 -07005393 pr_err("%s: failed memory allocation for cpu%ld\n",
5394 __func__, cpu);
Akinobu Mita55af6bb2010-05-26 14:43:35 -07005395 return notifier_from_errno(-ENOMEM);
Dan Williams36d1c642009-07-14 11:48:22 -07005396 }
5397 break;
5398 case CPU_DEAD:
5399 case CPU_DEAD_FROZEN:
5400 safe_put_page(percpu->spare_page);
Dan Williamsd6f38f32009-07-14 11:50:52 -07005401 kfree(percpu->scribble);
Dan Williams36d1c642009-07-14 11:48:22 -07005402 percpu->spare_page = NULL;
Dan Williamsd6f38f32009-07-14 11:50:52 -07005403 percpu->scribble = NULL;
Dan Williams36d1c642009-07-14 11:48:22 -07005404 break;
5405 default:
5406 break;
5407 }
5408 return NOTIFY_OK;
5409}
5410#endif
5411
NeilBrownd1688a62011-10-11 16:49:52 +11005412static int raid5_alloc_percpu(struct r5conf *conf)
Dan Williams36d1c642009-07-14 11:48:22 -07005413{
5414 unsigned long cpu;
5415 struct page *spare_page;
Tejun Heoa29d8b82010-02-02 14:39:15 +09005416 struct raid5_percpu __percpu *allcpus;
Dan Williamsd6f38f32009-07-14 11:50:52 -07005417 void *scribble;
Dan Williams36d1c642009-07-14 11:48:22 -07005418 int err;
5419
Dan Williams36d1c642009-07-14 11:48:22 -07005420 allcpus = alloc_percpu(struct raid5_percpu);
5421 if (!allcpus)
5422 return -ENOMEM;
5423 conf->percpu = allcpus;
5424
5425 get_online_cpus();
5426 err = 0;
5427 for_each_present_cpu(cpu) {
Dan Williamsd6f38f32009-07-14 11:50:52 -07005428 if (conf->level == 6) {
5429 spare_page = alloc_page(GFP_KERNEL);
5430 if (!spare_page) {
5431 err = -ENOMEM;
5432 break;
5433 }
5434 per_cpu_ptr(conf->percpu, cpu)->spare_page = spare_page;
5435 }
NeilBrown5e5e3e72009-10-16 16:35:30 +11005436 scribble = kmalloc(conf->scribble_len, GFP_KERNEL);
Dan Williamsd6f38f32009-07-14 11:50:52 -07005437 if (!scribble) {
Dan Williams36d1c642009-07-14 11:48:22 -07005438 err = -ENOMEM;
5439 break;
5440 }
Dan Williamsd6f38f32009-07-14 11:50:52 -07005441 per_cpu_ptr(conf->percpu, cpu)->scribble = scribble;
Dan Williams36d1c642009-07-14 11:48:22 -07005442 }
5443#ifdef CONFIG_HOTPLUG_CPU
5444 conf->cpu_notify.notifier_call = raid456_cpu_notify;
5445 conf->cpu_notify.priority = 0;
5446 if (err == 0)
5447 err = register_cpu_notifier(&conf->cpu_notify);
5448#endif
5449 put_online_cpus();
5450
5451 return err;
5452}
5453
NeilBrownd1688a62011-10-11 16:49:52 +11005454static struct r5conf *setup_conf(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005455{
NeilBrownd1688a62011-10-11 16:49:52 +11005456 struct r5conf *conf;
NeilBrown5e5e3e72009-10-16 16:35:30 +11005457 int raid_disk, memory, max_disks;
NeilBrown3cb03002011-10-11 16:45:26 +11005458 struct md_rdev *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005459 struct disk_info *disk;
NeilBrown02326052012-07-03 15:56:52 +10005460 char pers_name[6];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005461
NeilBrown91adb562009-03-31 14:39:39 +11005462 if (mddev->new_level != 5
5463 && mddev->new_level != 4
5464 && mddev->new_level != 6) {
NeilBrown0c55e022010-05-03 14:09:02 +10005465 printk(KERN_ERR "md/raid:%s: raid level not set to 4/5/6 (%d)\n",
NeilBrown91adb562009-03-31 14:39:39 +11005466 mdname(mddev), mddev->new_level);
5467 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005468 }
NeilBrown91adb562009-03-31 14:39:39 +11005469 if ((mddev->new_level == 5
5470 && !algorithm_valid_raid5(mddev->new_layout)) ||
5471 (mddev->new_level == 6
5472 && !algorithm_valid_raid6(mddev->new_layout))) {
NeilBrown0c55e022010-05-03 14:09:02 +10005473 printk(KERN_ERR "md/raid:%s: layout %d not supported\n",
NeilBrown91adb562009-03-31 14:39:39 +11005474 mdname(mddev), mddev->new_layout);
5475 return ERR_PTR(-EIO);
5476 }
5477 if (mddev->new_level == 6 && mddev->raid_disks < 4) {
NeilBrown0c55e022010-05-03 14:09:02 +10005478 printk(KERN_ERR "md/raid:%s: not enough configured devices (%d, minimum 4)\n",
NeilBrown91adb562009-03-31 14:39:39 +11005479 mdname(mddev), mddev->raid_disks);
5480 return ERR_PTR(-EINVAL);
NeilBrown99c0fb52009-03-31 14:39:38 +11005481 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005482
Andre Noll664e7c42009-06-18 08:45:27 +10005483 if (!mddev->new_chunk_sectors ||
5484 (mddev->new_chunk_sectors << 9) % PAGE_SIZE ||
5485 !is_power_of_2(mddev->new_chunk_sectors)) {
NeilBrown0c55e022010-05-03 14:09:02 +10005486 printk(KERN_ERR "md/raid:%s: invalid chunk size %d\n",
5487 mdname(mddev), mddev->new_chunk_sectors << 9);
NeilBrown91adb562009-03-31 14:39:39 +11005488 return ERR_PTR(-EINVAL);
NeilBrown4bbf3772008-10-13 11:55:12 +11005489 }
5490
NeilBrownd1688a62011-10-11 16:49:52 +11005491 conf = kzalloc(sizeof(struct r5conf), GFP_KERNEL);
NeilBrown91adb562009-03-31 14:39:39 +11005492 if (conf == NULL)
5493 goto abort;
Shaohua Li851c30c2013-08-28 14:30:16 +08005494 /* Don't enable multi-threading by default*/
5495 if (alloc_thread_groups(conf, 0))
5496 goto abort;
Dan Williamsf5efd452009-10-16 15:55:38 +11005497 spin_lock_init(&conf->device_lock);
NeilBrownc46501b2013-08-27 15:52:13 +10005498 seqcount_init(&conf->gen_lock);
Dan Williamsf5efd452009-10-16 15:55:38 +11005499 init_waitqueue_head(&conf->wait_for_stripe);
5500 init_waitqueue_head(&conf->wait_for_overlap);
5501 INIT_LIST_HEAD(&conf->handle_list);
5502 INIT_LIST_HEAD(&conf->hold_list);
5503 INIT_LIST_HEAD(&conf->delayed_list);
5504 INIT_LIST_HEAD(&conf->bitmap_list);
5505 INIT_LIST_HEAD(&conf->inactive_list);
Shaohua Li773ca822013-08-27 17:50:39 +08005506 init_llist_head(&conf->released_stripes);
Dan Williamsf5efd452009-10-16 15:55:38 +11005507 atomic_set(&conf->active_stripes, 0);
5508 atomic_set(&conf->preread_active_stripes, 0);
5509 atomic_set(&conf->active_aligned_reads, 0);
5510 conf->bypass_threshold = BYPASS_THRESHOLD;
NeilBrownd890fa22011-10-26 11:54:39 +11005511 conf->recovery_disabled = mddev->recovery_disabled - 1;
NeilBrown91adb562009-03-31 14:39:39 +11005512
5513 conf->raid_disks = mddev->raid_disks;
5514 if (mddev->reshape_position == MaxSector)
5515 conf->previous_raid_disks = mddev->raid_disks;
5516 else
5517 conf->previous_raid_disks = mddev->raid_disks - mddev->delta_disks;
NeilBrown5e5e3e72009-10-16 16:35:30 +11005518 max_disks = max(conf->raid_disks, conf->previous_raid_disks);
5519 conf->scribble_len = scribble_len(max_disks);
NeilBrown91adb562009-03-31 14:39:39 +11005520
NeilBrown5e5e3e72009-10-16 16:35:30 +11005521 conf->disks = kzalloc(max_disks * sizeof(struct disk_info),
NeilBrown91adb562009-03-31 14:39:39 +11005522 GFP_KERNEL);
5523 if (!conf->disks)
5524 goto abort;
5525
5526 conf->mddev = mddev;
5527
5528 if ((conf->stripe_hashtbl = kzalloc(PAGE_SIZE, GFP_KERNEL)) == NULL)
5529 goto abort;
5530
Dan Williams36d1c642009-07-14 11:48:22 -07005531 conf->level = mddev->new_level;
5532 if (raid5_alloc_percpu(conf) != 0)
5533 goto abort;
5534
NeilBrown0c55e022010-05-03 14:09:02 +10005535 pr_debug("raid456: run(%s) called.\n", mdname(mddev));
NeilBrown91adb562009-03-31 14:39:39 +11005536
NeilBrowndafb20f2012-03-19 12:46:39 +11005537 rdev_for_each(rdev, mddev) {
NeilBrown91adb562009-03-31 14:39:39 +11005538 raid_disk = rdev->raid_disk;
NeilBrown5e5e3e72009-10-16 16:35:30 +11005539 if (raid_disk >= max_disks
NeilBrown91adb562009-03-31 14:39:39 +11005540 || raid_disk < 0)
5541 continue;
5542 disk = conf->disks + raid_disk;
5543
NeilBrown17045f52011-12-23 10:17:53 +11005544 if (test_bit(Replacement, &rdev->flags)) {
5545 if (disk->replacement)
5546 goto abort;
5547 disk->replacement = rdev;
5548 } else {
5549 if (disk->rdev)
5550 goto abort;
5551 disk->rdev = rdev;
5552 }
NeilBrown91adb562009-03-31 14:39:39 +11005553
5554 if (test_bit(In_sync, &rdev->flags)) {
5555 char b[BDEVNAME_SIZE];
NeilBrown0c55e022010-05-03 14:09:02 +10005556 printk(KERN_INFO "md/raid:%s: device %s operational as raid"
5557 " disk %d\n",
5558 mdname(mddev), bdevname(rdev->bdev, b), raid_disk);
Jonathan Brassowd6b212f2011-06-08 18:00:28 -05005559 } else if (rdev->saved_raid_disk != raid_disk)
NeilBrown91adb562009-03-31 14:39:39 +11005560 /* Cannot rely on bitmap to complete recovery */
5561 conf->fullsync = 1;
5562 }
5563
Andre Noll09c9e5f2009-06-18 08:45:55 +10005564 conf->chunk_sectors = mddev->new_chunk_sectors;
NeilBrown91adb562009-03-31 14:39:39 +11005565 conf->level = mddev->new_level;
5566 if (conf->level == 6)
5567 conf->max_degraded = 2;
5568 else
5569 conf->max_degraded = 1;
5570 conf->algorithm = mddev->new_layout;
5571 conf->max_nr_stripes = NR_STRIPES;
NeilBrownfef9c612009-03-31 15:16:46 +11005572 conf->reshape_progress = mddev->reshape_position;
NeilBrowne183eae2009-03-31 15:20:22 +11005573 if (conf->reshape_progress != MaxSector) {
Andre Noll09c9e5f2009-06-18 08:45:55 +10005574 conf->prev_chunk_sectors = mddev->chunk_sectors;
NeilBrowne183eae2009-03-31 15:20:22 +11005575 conf->prev_algo = mddev->layout;
5576 }
NeilBrown91adb562009-03-31 14:39:39 +11005577
5578 memory = conf->max_nr_stripes * (sizeof(struct stripe_head) +
NeilBrown5e5e3e72009-10-16 16:35:30 +11005579 max_disks * ((sizeof(struct bio) + PAGE_SIZE))) / 1024;
NeilBrown91adb562009-03-31 14:39:39 +11005580 if (grow_stripes(conf, conf->max_nr_stripes)) {
5581 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10005582 "md/raid:%s: couldn't allocate %dkB for buffers\n",
5583 mdname(mddev), memory);
NeilBrown91adb562009-03-31 14:39:39 +11005584 goto abort;
5585 } else
NeilBrown0c55e022010-05-03 14:09:02 +10005586 printk(KERN_INFO "md/raid:%s: allocated %dkB\n",
5587 mdname(mddev), memory);
NeilBrown91adb562009-03-31 14:39:39 +11005588
NeilBrown02326052012-07-03 15:56:52 +10005589 sprintf(pers_name, "raid%d", mddev->new_level);
5590 conf->thread = md_register_thread(raid5d, mddev, pers_name);
NeilBrown91adb562009-03-31 14:39:39 +11005591 if (!conf->thread) {
5592 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10005593 "md/raid:%s: couldn't allocate thread.\n",
NeilBrown91adb562009-03-31 14:39:39 +11005594 mdname(mddev));
5595 goto abort;
5596 }
5597
5598 return conf;
5599
5600 abort:
5601 if (conf) {
Dan Williams95fc17a2009-07-31 12:39:15 +10005602 free_conf(conf);
NeilBrown91adb562009-03-31 14:39:39 +11005603 return ERR_PTR(-EIO);
5604 } else
5605 return ERR_PTR(-ENOMEM);
5606}
5607
NeilBrownc148ffd2009-11-13 17:47:00 +11005608
5609static int only_parity(int raid_disk, int algo, int raid_disks, int max_degraded)
5610{
5611 switch (algo) {
5612 case ALGORITHM_PARITY_0:
5613 if (raid_disk < max_degraded)
5614 return 1;
5615 break;
5616 case ALGORITHM_PARITY_N:
5617 if (raid_disk >= raid_disks - max_degraded)
5618 return 1;
5619 break;
5620 case ALGORITHM_PARITY_0_6:
5621 if (raid_disk == 0 ||
5622 raid_disk == raid_disks - 1)
5623 return 1;
5624 break;
5625 case ALGORITHM_LEFT_ASYMMETRIC_6:
5626 case ALGORITHM_RIGHT_ASYMMETRIC_6:
5627 case ALGORITHM_LEFT_SYMMETRIC_6:
5628 case ALGORITHM_RIGHT_SYMMETRIC_6:
5629 if (raid_disk == raid_disks - 1)
5630 return 1;
5631 }
5632 return 0;
5633}
5634
NeilBrownfd01b882011-10-11 16:47:53 +11005635static int run(struct mddev *mddev)
NeilBrown91adb562009-03-31 14:39:39 +11005636{
NeilBrownd1688a62011-10-11 16:49:52 +11005637 struct r5conf *conf;
NeilBrown9f7c2222010-07-26 12:04:13 +10005638 int working_disks = 0;
NeilBrownc148ffd2009-11-13 17:47:00 +11005639 int dirty_parity_disks = 0;
NeilBrown3cb03002011-10-11 16:45:26 +11005640 struct md_rdev *rdev;
NeilBrownc148ffd2009-11-13 17:47:00 +11005641 sector_t reshape_offset = 0;
NeilBrown17045f52011-12-23 10:17:53 +11005642 int i;
NeilBrownb5254dd2012-05-21 09:27:01 +10005643 long long min_offset_diff = 0;
5644 int first = 1;
NeilBrown91adb562009-03-31 14:39:39 +11005645
Andre Noll8c6ac862009-06-18 08:48:06 +10005646 if (mddev->recovery_cp != MaxSector)
NeilBrown0c55e022010-05-03 14:09:02 +10005647 printk(KERN_NOTICE "md/raid:%s: not clean"
Andre Noll8c6ac862009-06-18 08:48:06 +10005648 " -- starting background reconstruction\n",
5649 mdname(mddev));
NeilBrownb5254dd2012-05-21 09:27:01 +10005650
5651 rdev_for_each(rdev, mddev) {
5652 long long diff;
5653 if (rdev->raid_disk < 0)
5654 continue;
5655 diff = (rdev->new_data_offset - rdev->data_offset);
5656 if (first) {
5657 min_offset_diff = diff;
5658 first = 0;
5659 } else if (mddev->reshape_backwards &&
5660 diff < min_offset_diff)
5661 min_offset_diff = diff;
5662 else if (!mddev->reshape_backwards &&
5663 diff > min_offset_diff)
5664 min_offset_diff = diff;
5665 }
5666
NeilBrownf6705572006-03-27 01:18:11 -08005667 if (mddev->reshape_position != MaxSector) {
5668 /* Check that we can continue the reshape.
NeilBrownb5254dd2012-05-21 09:27:01 +10005669 * Difficulties arise if the stripe we would write to
5670 * next is at or after the stripe we would read from next.
5671 * For a reshape that changes the number of devices, this
5672 * is only possible for a very short time, and mdadm makes
5673 * sure that time appears to have past before assembling
5674 * the array. So we fail if that time hasn't passed.
5675 * For a reshape that keeps the number of devices the same
5676 * mdadm must be monitoring the reshape can keeping the
5677 * critical areas read-only and backed up. It will start
5678 * the array in read-only mode, so we check for that.
NeilBrownf6705572006-03-27 01:18:11 -08005679 */
5680 sector_t here_new, here_old;
5681 int old_disks;
Andre Noll18b00332009-03-31 15:00:56 +11005682 int max_degraded = (mddev->level == 6 ? 2 : 1);
NeilBrownf6705572006-03-27 01:18:11 -08005683
NeilBrown88ce4932009-03-31 15:24:23 +11005684 if (mddev->new_level != mddev->level) {
NeilBrown0c55e022010-05-03 14:09:02 +10005685 printk(KERN_ERR "md/raid:%s: unsupported reshape "
NeilBrownf4168852007-02-28 20:11:53 -08005686 "required - aborting.\n",
NeilBrownf6705572006-03-27 01:18:11 -08005687 mdname(mddev));
5688 return -EINVAL;
5689 }
NeilBrownf6705572006-03-27 01:18:11 -08005690 old_disks = mddev->raid_disks - mddev->delta_disks;
5691 /* reshape_position must be on a new-stripe boundary, and one
NeilBrownf4168852007-02-28 20:11:53 -08005692 * further up in new geometry must map after here in old
5693 * geometry.
NeilBrownf6705572006-03-27 01:18:11 -08005694 */
5695 here_new = mddev->reshape_position;
Andre Noll664e7c42009-06-18 08:45:27 +10005696 if (sector_div(here_new, mddev->new_chunk_sectors *
NeilBrownf4168852007-02-28 20:11:53 -08005697 (mddev->raid_disks - max_degraded))) {
NeilBrown0c55e022010-05-03 14:09:02 +10005698 printk(KERN_ERR "md/raid:%s: reshape_position not "
5699 "on a stripe boundary\n", mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08005700 return -EINVAL;
5701 }
NeilBrownc148ffd2009-11-13 17:47:00 +11005702 reshape_offset = here_new * mddev->new_chunk_sectors;
NeilBrownf6705572006-03-27 01:18:11 -08005703 /* here_new is the stripe we will write to */
5704 here_old = mddev->reshape_position;
Andre Noll9d8f0362009-06-18 08:45:01 +10005705 sector_div(here_old, mddev->chunk_sectors *
NeilBrownf4168852007-02-28 20:11:53 -08005706 (old_disks-max_degraded));
5707 /* here_old is the first stripe that we might need to read
5708 * from */
NeilBrown67ac6012009-08-13 10:06:24 +10005709 if (mddev->delta_disks == 0) {
NeilBrownb5254dd2012-05-21 09:27:01 +10005710 if ((here_new * mddev->new_chunk_sectors !=
5711 here_old * mddev->chunk_sectors)) {
5712 printk(KERN_ERR "md/raid:%s: reshape position is"
5713 " confused - aborting\n", mdname(mddev));
5714 return -EINVAL;
5715 }
NeilBrown67ac6012009-08-13 10:06:24 +10005716 /* We cannot be sure it is safe to start an in-place
NeilBrownb5254dd2012-05-21 09:27:01 +10005717 * reshape. It is only safe if user-space is monitoring
NeilBrown67ac6012009-08-13 10:06:24 +10005718 * and taking constant backups.
5719 * mdadm always starts a situation like this in
5720 * readonly mode so it can take control before
5721 * allowing any writes. So just check for that.
5722 */
NeilBrownb5254dd2012-05-21 09:27:01 +10005723 if (abs(min_offset_diff) >= mddev->chunk_sectors &&
5724 abs(min_offset_diff) >= mddev->new_chunk_sectors)
5725 /* not really in-place - so OK */;
5726 else if (mddev->ro == 0) {
5727 printk(KERN_ERR "md/raid:%s: in-place reshape "
5728 "must be started in read-only mode "
5729 "- aborting\n",
NeilBrown0c55e022010-05-03 14:09:02 +10005730 mdname(mddev));
NeilBrown67ac6012009-08-13 10:06:24 +10005731 return -EINVAL;
5732 }
NeilBrown2c810cd2012-05-21 09:27:00 +10005733 } else if (mddev->reshape_backwards
NeilBrownb5254dd2012-05-21 09:27:01 +10005734 ? (here_new * mddev->new_chunk_sectors + min_offset_diff <=
NeilBrown67ac6012009-08-13 10:06:24 +10005735 here_old * mddev->chunk_sectors)
5736 : (here_new * mddev->new_chunk_sectors >=
NeilBrownb5254dd2012-05-21 09:27:01 +10005737 here_old * mddev->chunk_sectors + (-min_offset_diff))) {
NeilBrownf6705572006-03-27 01:18:11 -08005738 /* Reading from the same stripe as writing to - bad */
NeilBrown0c55e022010-05-03 14:09:02 +10005739 printk(KERN_ERR "md/raid:%s: reshape_position too early for "
5740 "auto-recovery - aborting.\n",
5741 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08005742 return -EINVAL;
5743 }
NeilBrown0c55e022010-05-03 14:09:02 +10005744 printk(KERN_INFO "md/raid:%s: reshape will continue\n",
5745 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08005746 /* OK, we should be able to continue; */
NeilBrownf6705572006-03-27 01:18:11 -08005747 } else {
NeilBrown91adb562009-03-31 14:39:39 +11005748 BUG_ON(mddev->level != mddev->new_level);
5749 BUG_ON(mddev->layout != mddev->new_layout);
Andre Noll664e7c42009-06-18 08:45:27 +10005750 BUG_ON(mddev->chunk_sectors != mddev->new_chunk_sectors);
NeilBrown91adb562009-03-31 14:39:39 +11005751 BUG_ON(mddev->delta_disks != 0);
NeilBrownf6705572006-03-27 01:18:11 -08005752 }
5753
NeilBrown245f46c2009-03-31 14:39:39 +11005754 if (mddev->private == NULL)
5755 conf = setup_conf(mddev);
5756 else
5757 conf = mddev->private;
5758
NeilBrown91adb562009-03-31 14:39:39 +11005759 if (IS_ERR(conf))
5760 return PTR_ERR(conf);
NeilBrown9ffae0c2006-01-06 00:20:32 -08005761
NeilBrownb5254dd2012-05-21 09:27:01 +10005762 conf->min_offset_diff = min_offset_diff;
NeilBrown91adb562009-03-31 14:39:39 +11005763 mddev->thread = conf->thread;
5764 conf->thread = NULL;
5765 mddev->private = conf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005766
NeilBrown17045f52011-12-23 10:17:53 +11005767 for (i = 0; i < conf->raid_disks && conf->previous_raid_disks;
5768 i++) {
5769 rdev = conf->disks[i].rdev;
5770 if (!rdev && conf->disks[i].replacement) {
5771 /* The replacement is all we have yet */
5772 rdev = conf->disks[i].replacement;
5773 conf->disks[i].replacement = NULL;
5774 clear_bit(Replacement, &rdev->flags);
5775 conf->disks[i].rdev = rdev;
5776 }
5777 if (!rdev)
NeilBrownc148ffd2009-11-13 17:47:00 +11005778 continue;
NeilBrown17045f52011-12-23 10:17:53 +11005779 if (conf->disks[i].replacement &&
5780 conf->reshape_progress != MaxSector) {
5781 /* replacements and reshape simply do not mix. */
5782 printk(KERN_ERR "md: cannot handle concurrent "
5783 "replacement and reshape.\n");
5784 goto abort;
5785 }
NeilBrown2f115882010-06-17 17:41:03 +10005786 if (test_bit(In_sync, &rdev->flags)) {
NeilBrown91adb562009-03-31 14:39:39 +11005787 working_disks++;
NeilBrown2f115882010-06-17 17:41:03 +10005788 continue;
5789 }
NeilBrownc148ffd2009-11-13 17:47:00 +11005790 /* This disc is not fully in-sync. However if it
5791 * just stored parity (beyond the recovery_offset),
5792 * when we don't need to be concerned about the
5793 * array being dirty.
5794 * When reshape goes 'backwards', we never have
5795 * partially completed devices, so we only need
5796 * to worry about reshape going forwards.
5797 */
5798 /* Hack because v0.91 doesn't store recovery_offset properly. */
5799 if (mddev->major_version == 0 &&
5800 mddev->minor_version > 90)
5801 rdev->recovery_offset = reshape_offset;
H. Peter Anvin5026d7a2013-06-12 07:37:43 -07005802
NeilBrownc148ffd2009-11-13 17:47:00 +11005803 if (rdev->recovery_offset < reshape_offset) {
5804 /* We need to check old and new layout */
5805 if (!only_parity(rdev->raid_disk,
5806 conf->algorithm,
5807 conf->raid_disks,
5808 conf->max_degraded))
5809 continue;
5810 }
5811 if (!only_parity(rdev->raid_disk,
5812 conf->prev_algo,
5813 conf->previous_raid_disks,
5814 conf->max_degraded))
5815 continue;
5816 dirty_parity_disks++;
5817 }
NeilBrown91adb562009-03-31 14:39:39 +11005818
NeilBrown17045f52011-12-23 10:17:53 +11005819 /*
5820 * 0 for a fully functional array, 1 or 2 for a degraded array.
5821 */
NeilBrown908f4fb2011-12-23 10:17:50 +11005822 mddev->degraded = calc_degraded(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005823
NeilBrown674806d2010-06-16 17:17:53 +10005824 if (has_failed(conf)) {
NeilBrown0c55e022010-05-03 14:09:02 +10005825 printk(KERN_ERR "md/raid:%s: not enough operational devices"
Linus Torvalds1da177e2005-04-16 15:20:36 -07005826 " (%d/%d failed)\n",
NeilBrown02c2de82006-10-03 01:15:47 -07005827 mdname(mddev), mddev->degraded, conf->raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005828 goto abort;
5829 }
5830
NeilBrown91adb562009-03-31 14:39:39 +11005831 /* device size must be a multiple of chunk size */
Andre Noll9d8f0362009-06-18 08:45:01 +10005832 mddev->dev_sectors &= ~(mddev->chunk_sectors - 1);
NeilBrown91adb562009-03-31 14:39:39 +11005833 mddev->resync_max_sectors = mddev->dev_sectors;
5834
NeilBrownc148ffd2009-11-13 17:47:00 +11005835 if (mddev->degraded > dirty_parity_disks &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005836 mddev->recovery_cp != MaxSector) {
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08005837 if (mddev->ok_start_degraded)
5838 printk(KERN_WARNING
NeilBrown0c55e022010-05-03 14:09:02 +10005839 "md/raid:%s: starting dirty degraded array"
5840 " - data corruption possible.\n",
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08005841 mdname(mddev));
5842 else {
5843 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10005844 "md/raid:%s: cannot start dirty degraded array.\n",
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08005845 mdname(mddev));
5846 goto abort;
5847 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005848 }
5849
Linus Torvalds1da177e2005-04-16 15:20:36 -07005850 if (mddev->degraded == 0)
NeilBrown0c55e022010-05-03 14:09:02 +10005851 printk(KERN_INFO "md/raid:%s: raid level %d active with %d out of %d"
5852 " devices, algorithm %d\n", mdname(mddev), conf->level,
NeilBrowne183eae2009-03-31 15:20:22 +11005853 mddev->raid_disks-mddev->degraded, mddev->raid_disks,
5854 mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005855 else
NeilBrown0c55e022010-05-03 14:09:02 +10005856 printk(KERN_ALERT "md/raid:%s: raid level %d active with %d"
5857 " out of %d devices, algorithm %d\n",
5858 mdname(mddev), conf->level,
5859 mddev->raid_disks - mddev->degraded,
5860 mddev->raid_disks, mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005861
5862 print_raid5_conf(conf);
5863
NeilBrownfef9c612009-03-31 15:16:46 +11005864 if (conf->reshape_progress != MaxSector) {
NeilBrownfef9c612009-03-31 15:16:46 +11005865 conf->reshape_safe = conf->reshape_progress;
NeilBrownf6705572006-03-27 01:18:11 -08005866 atomic_set(&conf->reshape_stripes, 0);
5867 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
5868 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
5869 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
5870 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
5871 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
NeilBrown0da3c612009-09-23 18:09:45 +10005872 "reshape");
NeilBrownf6705572006-03-27 01:18:11 -08005873 }
5874
Linus Torvalds1da177e2005-04-16 15:20:36 -07005875
5876 /* Ok, everything is just fine now */
NeilBrowna64c8762010-04-14 17:15:37 +10005877 if (mddev->to_remove == &raid5_attrs_group)
5878 mddev->to_remove = NULL;
NeilBrown00bcb4a2010-06-01 19:37:23 +10005879 else if (mddev->kobj.sd &&
5880 sysfs_create_group(&mddev->kobj, &raid5_attrs_group))
NeilBrown5e55e2f2007-03-26 21:32:14 -08005881 printk(KERN_WARNING
NeilBrown4a5add42010-06-01 19:37:28 +10005882 "raid5: failed to create sysfs attributes for %s\n",
NeilBrown5e55e2f2007-03-26 21:32:14 -08005883 mdname(mddev));
NeilBrown4a5add42010-06-01 19:37:28 +10005884 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
5885
5886 if (mddev->queue) {
NeilBrown9f7c2222010-07-26 12:04:13 +10005887 int chunk_size;
Shaohua Li620125f2012-10-11 13:49:05 +11005888 bool discard_supported = true;
NeilBrown4a5add42010-06-01 19:37:28 +10005889 /* read-ahead size must cover two whole stripes, which
5890 * is 2 * (datadisks) * chunksize where 'n' is the
5891 * number of raid devices
5892 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005893 int data_disks = conf->previous_raid_disks - conf->max_degraded;
5894 int stripe = data_disks *
5895 ((mddev->chunk_sectors << 9) / PAGE_SIZE);
5896 if (mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
5897 mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
NeilBrown4a5add42010-06-01 19:37:28 +10005898
5899 blk_queue_merge_bvec(mddev->queue, raid5_mergeable_bvec);
NeilBrown11d8a6e2010-07-26 11:57:07 +10005900
5901 mddev->queue->backing_dev_info.congested_data = mddev;
5902 mddev->queue->backing_dev_info.congested_fn = raid5_congested;
NeilBrown9f7c2222010-07-26 12:04:13 +10005903
5904 chunk_size = mddev->chunk_sectors << 9;
5905 blk_queue_io_min(mddev->queue, chunk_size);
5906 blk_queue_io_opt(mddev->queue, chunk_size *
5907 (conf->raid_disks - conf->max_degraded));
Shaohua Li620125f2012-10-11 13:49:05 +11005908 /*
5909 * We can only discard a whole stripe. It doesn't make sense to
5910 * discard data disk but write parity disk
5911 */
5912 stripe = stripe * PAGE_SIZE;
NeilBrown4ac68752012-11-19 13:11:26 +11005913 /* Round up to power of 2, as discard handling
5914 * currently assumes that */
5915 while ((stripe-1) & stripe)
5916 stripe = (stripe | (stripe-1)) + 1;
Shaohua Li620125f2012-10-11 13:49:05 +11005917 mddev->queue->limits.discard_alignment = stripe;
5918 mddev->queue->limits.discard_granularity = stripe;
5919 /*
5920 * unaligned part of discard request will be ignored, so can't
5921 * guarantee discard_zerors_data
5922 */
5923 mddev->queue->limits.discard_zeroes_data = 0;
NeilBrown9f7c2222010-07-26 12:04:13 +10005924
H. Peter Anvin5026d7a2013-06-12 07:37:43 -07005925 blk_queue_max_write_same_sectors(mddev->queue, 0);
5926
NeilBrown05616be2012-05-21 09:27:00 +10005927 rdev_for_each(rdev, mddev) {
NeilBrown9f7c2222010-07-26 12:04:13 +10005928 disk_stack_limits(mddev->gendisk, rdev->bdev,
5929 rdev->data_offset << 9);
NeilBrown05616be2012-05-21 09:27:00 +10005930 disk_stack_limits(mddev->gendisk, rdev->bdev,
5931 rdev->new_data_offset << 9);
Shaohua Li620125f2012-10-11 13:49:05 +11005932 /*
5933 * discard_zeroes_data is required, otherwise data
5934 * could be lost. Consider a scenario: discard a stripe
5935 * (the stripe could be inconsistent if
5936 * discard_zeroes_data is 0); write one disk of the
5937 * stripe (the stripe could be inconsistent again
5938 * depending on which disks are used to calculate
5939 * parity); the disk is broken; The stripe data of this
5940 * disk is lost.
5941 */
5942 if (!blk_queue_discard(bdev_get_queue(rdev->bdev)) ||
5943 !bdev_get_queue(rdev->bdev)->
5944 limits.discard_zeroes_data)
5945 discard_supported = false;
NeilBrown05616be2012-05-21 09:27:00 +10005946 }
Shaohua Li620125f2012-10-11 13:49:05 +11005947
5948 if (discard_supported &&
5949 mddev->queue->limits.max_discard_sectors >= stripe &&
5950 mddev->queue->limits.discard_granularity >= stripe)
5951 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD,
5952 mddev->queue);
5953 else
5954 queue_flag_clear_unlocked(QUEUE_FLAG_DISCARD,
5955 mddev->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005956 }
5957
Linus Torvalds1da177e2005-04-16 15:20:36 -07005958 return 0;
5959abort:
NeilBrown01f96c02011-09-21 15:30:20 +10005960 md_unregister_thread(&mddev->thread);
NeilBrowne4f869d2011-10-07 14:22:49 +11005961 print_raid5_conf(conf);
5962 free_conf(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005963 mddev->private = NULL;
NeilBrown0c55e022010-05-03 14:09:02 +10005964 printk(KERN_ALERT "md/raid:%s: failed to run raid set.\n", mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005965 return -EIO;
5966}
5967
NeilBrownfd01b882011-10-11 16:47:53 +11005968static int stop(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005969{
NeilBrownd1688a62011-10-11 16:49:52 +11005970 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005971
NeilBrown01f96c02011-09-21 15:30:20 +10005972 md_unregister_thread(&mddev->thread);
NeilBrown11d8a6e2010-07-26 11:57:07 +10005973 if (mddev->queue)
5974 mddev->queue->backing_dev_info.congested_fn = NULL;
Dan Williams95fc17a2009-07-31 12:39:15 +10005975 free_conf(conf);
NeilBrowna64c8762010-04-14 17:15:37 +10005976 mddev->private = NULL;
5977 mddev->to_remove = &raid5_attrs_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005978 return 0;
5979}
5980
NeilBrownfd01b882011-10-11 16:47:53 +11005981static void status(struct seq_file *seq, struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005982{
NeilBrownd1688a62011-10-11 16:49:52 +11005983 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005984 int i;
5985
Andre Noll9d8f0362009-06-18 08:45:01 +10005986 seq_printf(seq, " level %d, %dk chunk, algorithm %d", mddev->level,
5987 mddev->chunk_sectors / 2, mddev->layout);
NeilBrown02c2de82006-10-03 01:15:47 -07005988 seq_printf (seq, " [%d/%d] [", conf->raid_disks, conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005989 for (i = 0; i < conf->raid_disks; i++)
5990 seq_printf (seq, "%s",
5991 conf->disks[i].rdev &&
NeilBrownb2d444d2005-11-08 21:39:31 -08005992 test_bit(In_sync, &conf->disks[i].rdev->flags) ? "U" : "_");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005993 seq_printf (seq, "]");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005994}
5995
NeilBrownd1688a62011-10-11 16:49:52 +11005996static void print_raid5_conf (struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005997{
5998 int i;
5999 struct disk_info *tmp;
6000
NeilBrown0c55e022010-05-03 14:09:02 +10006001 printk(KERN_DEBUG "RAID conf printout:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006002 if (!conf) {
6003 printk("(conf==NULL)\n");
6004 return;
6005 }
NeilBrown0c55e022010-05-03 14:09:02 +10006006 printk(KERN_DEBUG " --- level:%d rd:%d wd:%d\n", conf->level,
6007 conf->raid_disks,
6008 conf->raid_disks - conf->mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006009
6010 for (i = 0; i < conf->raid_disks; i++) {
6011 char b[BDEVNAME_SIZE];
6012 tmp = conf->disks + i;
6013 if (tmp->rdev)
NeilBrown0c55e022010-05-03 14:09:02 +10006014 printk(KERN_DEBUG " disk %d, o:%d, dev:%s\n",
6015 i, !test_bit(Faulty, &tmp->rdev->flags),
6016 bdevname(tmp->rdev->bdev, b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006017 }
6018}
6019
NeilBrownfd01b882011-10-11 16:47:53 +11006020static int raid5_spare_active(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006021{
6022 int i;
NeilBrownd1688a62011-10-11 16:49:52 +11006023 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006024 struct disk_info *tmp;
NeilBrown6b965622010-08-18 11:56:59 +10006025 int count = 0;
6026 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006027
6028 for (i = 0; i < conf->raid_disks; i++) {
6029 tmp = conf->disks + i;
NeilBrowndd054fc2011-12-23 10:17:53 +11006030 if (tmp->replacement
6031 && tmp->replacement->recovery_offset == MaxSector
6032 && !test_bit(Faulty, &tmp->replacement->flags)
6033 && !test_and_set_bit(In_sync, &tmp->replacement->flags)) {
6034 /* Replacement has just become active. */
6035 if (!tmp->rdev
6036 || !test_and_clear_bit(In_sync, &tmp->rdev->flags))
6037 count++;
6038 if (tmp->rdev) {
6039 /* Replaced device not technically faulty,
6040 * but we need to be sure it gets removed
6041 * and never re-added.
6042 */
6043 set_bit(Faulty, &tmp->rdev->flags);
6044 sysfs_notify_dirent_safe(
6045 tmp->rdev->sysfs_state);
6046 }
6047 sysfs_notify_dirent_safe(tmp->replacement->sysfs_state);
6048 } else if (tmp->rdev
NeilBrown70fffd02010-06-16 17:01:25 +10006049 && tmp->rdev->recovery_offset == MaxSector
NeilBrownb2d444d2005-11-08 21:39:31 -08006050 && !test_bit(Faulty, &tmp->rdev->flags)
NeilBrownc04be0a2006-10-03 01:15:53 -07006051 && !test_and_set_bit(In_sync, &tmp->rdev->flags)) {
NeilBrown6b965622010-08-18 11:56:59 +10006052 count++;
Jonathan Brassow43c73ca2011-01-14 09:14:33 +11006053 sysfs_notify_dirent_safe(tmp->rdev->sysfs_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006054 }
6055 }
NeilBrown6b965622010-08-18 11:56:59 +10006056 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrown908f4fb2011-12-23 10:17:50 +11006057 mddev->degraded = calc_degraded(conf);
NeilBrown6b965622010-08-18 11:56:59 +10006058 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006059 print_raid5_conf(conf);
NeilBrown6b965622010-08-18 11:56:59 +10006060 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006061}
6062
NeilBrownb8321b62011-12-23 10:17:51 +11006063static int raid5_remove_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006064{
NeilBrownd1688a62011-10-11 16:49:52 +11006065 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006066 int err = 0;
NeilBrownb8321b62011-12-23 10:17:51 +11006067 int number = rdev->raid_disk;
NeilBrown657e3e42011-12-23 10:17:52 +11006068 struct md_rdev **rdevp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006069 struct disk_info *p = conf->disks + number;
6070
6071 print_raid5_conf(conf);
NeilBrown657e3e42011-12-23 10:17:52 +11006072 if (rdev == p->rdev)
6073 rdevp = &p->rdev;
6074 else if (rdev == p->replacement)
6075 rdevp = &p->replacement;
6076 else
6077 return 0;
NeilBrownec32a2b2009-03-31 15:17:38 +11006078
NeilBrown657e3e42011-12-23 10:17:52 +11006079 if (number >= conf->raid_disks &&
6080 conf->reshape_progress == MaxSector)
6081 clear_bit(In_sync, &rdev->flags);
6082
6083 if (test_bit(In_sync, &rdev->flags) ||
6084 atomic_read(&rdev->nr_pending)) {
6085 err = -EBUSY;
6086 goto abort;
6087 }
6088 /* Only remove non-faulty devices if recovery
6089 * isn't possible.
6090 */
6091 if (!test_bit(Faulty, &rdev->flags) &&
6092 mddev->recovery_disabled != conf->recovery_disabled &&
6093 !has_failed(conf) &&
NeilBrowndd054fc2011-12-23 10:17:53 +11006094 (!p->replacement || p->replacement == rdev) &&
NeilBrown657e3e42011-12-23 10:17:52 +11006095 number < conf->raid_disks) {
6096 err = -EBUSY;
6097 goto abort;
6098 }
6099 *rdevp = NULL;
6100 synchronize_rcu();
6101 if (atomic_read(&rdev->nr_pending)) {
6102 /* lost the race, try later */
6103 err = -EBUSY;
6104 *rdevp = rdev;
NeilBrowndd054fc2011-12-23 10:17:53 +11006105 } else if (p->replacement) {
6106 /* We must have just cleared 'rdev' */
6107 p->rdev = p->replacement;
6108 clear_bit(Replacement, &p->replacement->flags);
6109 smp_mb(); /* Make sure other CPUs may see both as identical
6110 * but will never see neither - if they are careful
6111 */
6112 p->replacement = NULL;
6113 clear_bit(WantReplacement, &rdev->flags);
6114 } else
6115 /* We might have just removed the Replacement as faulty-
6116 * clear the bit just in case
6117 */
6118 clear_bit(WantReplacement, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006119abort:
6120
6121 print_raid5_conf(conf);
6122 return err;
6123}
6124
NeilBrownfd01b882011-10-11 16:47:53 +11006125static int raid5_add_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006126{
NeilBrownd1688a62011-10-11 16:49:52 +11006127 struct r5conf *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10006128 int err = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006129 int disk;
6130 struct disk_info *p;
Neil Brown6c2fce22008-06-28 08:31:31 +10006131 int first = 0;
6132 int last = conf->raid_disks - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006133
NeilBrown7f0da592011-07-28 11:39:22 +10006134 if (mddev->recovery_disabled == conf->recovery_disabled)
6135 return -EBUSY;
6136
NeilBrowndc10c642012-03-19 12:46:37 +11006137 if (rdev->saved_raid_disk < 0 && has_failed(conf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006138 /* no point adding a device */
Neil Brown199050e2008-06-28 08:31:33 +10006139 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006140
Neil Brown6c2fce22008-06-28 08:31:31 +10006141 if (rdev->raid_disk >= 0)
6142 first = last = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006143
6144 /*
NeilBrown16a53ec2006-06-26 00:27:38 -07006145 * find the disk ... but prefer rdev->saved_raid_disk
6146 * if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006147 */
NeilBrown16a53ec2006-06-26 00:27:38 -07006148 if (rdev->saved_raid_disk >= 0 &&
Neil Brown6c2fce22008-06-28 08:31:31 +10006149 rdev->saved_raid_disk >= first &&
NeilBrown16a53ec2006-06-26 00:27:38 -07006150 conf->disks[rdev->saved_raid_disk].rdev == NULL)
NeilBrown5cfb22a2012-07-03 11:46:53 +10006151 first = rdev->saved_raid_disk;
6152
6153 for (disk = first; disk <= last; disk++) {
NeilBrown7bfec5f2011-12-23 10:17:53 +11006154 p = conf->disks + disk;
6155 if (p->rdev == NULL) {
NeilBrownb2d444d2005-11-08 21:39:31 -08006156 clear_bit(In_sync, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006157 rdev->raid_disk = disk;
Neil Brown199050e2008-06-28 08:31:33 +10006158 err = 0;
NeilBrown72626682005-09-09 16:23:54 -07006159 if (rdev->saved_raid_disk != disk)
6160 conf->fullsync = 1;
Suzanne Woodd6065f72005-11-08 21:39:27 -08006161 rcu_assign_pointer(p->rdev, rdev);
NeilBrown5cfb22a2012-07-03 11:46:53 +10006162 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006163 }
NeilBrown5cfb22a2012-07-03 11:46:53 +10006164 }
6165 for (disk = first; disk <= last; disk++) {
6166 p = conf->disks + disk;
NeilBrown7bfec5f2011-12-23 10:17:53 +11006167 if (test_bit(WantReplacement, &p->rdev->flags) &&
6168 p->replacement == NULL) {
6169 clear_bit(In_sync, &rdev->flags);
6170 set_bit(Replacement, &rdev->flags);
6171 rdev->raid_disk = disk;
6172 err = 0;
6173 conf->fullsync = 1;
6174 rcu_assign_pointer(p->replacement, rdev);
6175 break;
6176 }
6177 }
NeilBrown5cfb22a2012-07-03 11:46:53 +10006178out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006179 print_raid5_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10006180 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006181}
6182
NeilBrownfd01b882011-10-11 16:47:53 +11006183static int raid5_resize(struct mddev *mddev, sector_t sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006184{
6185 /* no resync is happening, and there is enough space
6186 * on all devices, so we can resize.
6187 * We need to make sure resync covers any new space.
6188 * If the array is shrinking we should possibly wait until
6189 * any io in the removed space completes, but it hardly seems
6190 * worth it.
6191 */
NeilBrowna4a61252012-05-22 13:55:27 +10006192 sector_t newsize;
Andre Noll9d8f0362009-06-18 08:45:01 +10006193 sectors &= ~((sector_t)mddev->chunk_sectors - 1);
NeilBrowna4a61252012-05-22 13:55:27 +10006194 newsize = raid5_size(mddev, sectors, mddev->raid_disks);
6195 if (mddev->external_size &&
6196 mddev->array_sectors > newsize)
Dan Williamsb522adc2009-03-31 15:00:31 +11006197 return -EINVAL;
NeilBrowna4a61252012-05-22 13:55:27 +10006198 if (mddev->bitmap) {
6199 int ret = bitmap_resize(mddev->bitmap, sectors, 0, 0);
6200 if (ret)
6201 return ret;
6202 }
6203 md_set_array_sectors(mddev, newsize);
Andre Nollf233ea52008-07-21 17:05:22 +10006204 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10006205 revalidate_disk(mddev->gendisk);
NeilBrownb0986362011-05-11 15:52:21 +10006206 if (sectors > mddev->dev_sectors &&
6207 mddev->recovery_cp > mddev->dev_sectors) {
Andre Noll58c0fed2009-03-31 14:33:13 +11006208 mddev->recovery_cp = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006209 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
6210 }
Andre Noll58c0fed2009-03-31 14:33:13 +11006211 mddev->dev_sectors = sectors;
NeilBrown4b5c7ae2005-07-27 11:43:28 -07006212 mddev->resync_max_sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006213 return 0;
6214}
6215
NeilBrownfd01b882011-10-11 16:47:53 +11006216static int check_stripe_cache(struct mddev *mddev)
NeilBrown01ee22b2009-06-18 08:47:20 +10006217{
6218 /* Can only proceed if there are plenty of stripe_heads.
6219 * We need a minimum of one full stripe,, and for sensible progress
6220 * it is best to have about 4 times that.
6221 * If we require 4 times, then the default 256 4K stripe_heads will
6222 * allow for chunk sizes up to 256K, which is probably OK.
6223 * If the chunk size is greater, user-space should request more
6224 * stripe_heads first.
6225 */
NeilBrownd1688a62011-10-11 16:49:52 +11006226 struct r5conf *conf = mddev->private;
NeilBrown01ee22b2009-06-18 08:47:20 +10006227 if (((mddev->chunk_sectors << 9) / STRIPE_SIZE) * 4
6228 > conf->max_nr_stripes ||
6229 ((mddev->new_chunk_sectors << 9) / STRIPE_SIZE) * 4
6230 > conf->max_nr_stripes) {
NeilBrown0c55e022010-05-03 14:09:02 +10006231 printk(KERN_WARNING "md/raid:%s: reshape: not enough stripes. Needed %lu\n",
6232 mdname(mddev),
NeilBrown01ee22b2009-06-18 08:47:20 +10006233 ((max(mddev->chunk_sectors, mddev->new_chunk_sectors) << 9)
6234 / STRIPE_SIZE)*4);
6235 return 0;
6236 }
6237 return 1;
6238}
6239
NeilBrownfd01b882011-10-11 16:47:53 +11006240static int check_reshape(struct mddev *mddev)
NeilBrown29269552006-03-27 01:18:10 -08006241{
NeilBrownd1688a62011-10-11 16:49:52 +11006242 struct r5conf *conf = mddev->private;
NeilBrown29269552006-03-27 01:18:10 -08006243
NeilBrown88ce4932009-03-31 15:24:23 +11006244 if (mddev->delta_disks == 0 &&
6245 mddev->new_layout == mddev->layout &&
Andre Noll664e7c42009-06-18 08:45:27 +10006246 mddev->new_chunk_sectors == mddev->chunk_sectors)
NeilBrown50ac1682009-06-18 08:47:55 +10006247 return 0; /* nothing to do */
NeilBrown674806d2010-06-16 17:17:53 +10006248 if (has_failed(conf))
NeilBrownec32a2b2009-03-31 15:17:38 +11006249 return -EINVAL;
NeilBrownfdcfbbb2013-07-04 16:38:16 +10006250 if (mddev->delta_disks < 0 && mddev->reshape_position == MaxSector) {
NeilBrownec32a2b2009-03-31 15:17:38 +11006251 /* We might be able to shrink, but the devices must
6252 * be made bigger first.
6253 * For raid6, 4 is the minimum size.
6254 * Otherwise 2 is the minimum
6255 */
6256 int min = 2;
6257 if (mddev->level == 6)
6258 min = 4;
6259 if (mddev->raid_disks + mddev->delta_disks < min)
6260 return -EINVAL;
6261 }
NeilBrown29269552006-03-27 01:18:10 -08006262
NeilBrown01ee22b2009-06-18 08:47:20 +10006263 if (!check_stripe_cache(mddev))
NeilBrown29269552006-03-27 01:18:10 -08006264 return -ENOSPC;
NeilBrown29269552006-03-27 01:18:10 -08006265
NeilBrowne56108d62012-10-11 14:24:13 +11006266 return resize_stripes(conf, (conf->previous_raid_disks
6267 + mddev->delta_disks));
NeilBrown63c70c42006-03-27 01:18:13 -08006268}
6269
NeilBrownfd01b882011-10-11 16:47:53 +11006270static int raid5_start_reshape(struct mddev *mddev)
NeilBrown63c70c42006-03-27 01:18:13 -08006271{
NeilBrownd1688a62011-10-11 16:49:52 +11006272 struct r5conf *conf = mddev->private;
NeilBrown3cb03002011-10-11 16:45:26 +11006273 struct md_rdev *rdev;
NeilBrown63c70c42006-03-27 01:18:13 -08006274 int spares = 0;
NeilBrownc04be0a2006-10-03 01:15:53 -07006275 unsigned long flags;
NeilBrown63c70c42006-03-27 01:18:13 -08006276
NeilBrownf4168852007-02-28 20:11:53 -08006277 if (test_bit(MD_RECOVERY_RUNNING, &mddev->recovery))
NeilBrown63c70c42006-03-27 01:18:13 -08006278 return -EBUSY;
6279
NeilBrown01ee22b2009-06-18 08:47:20 +10006280 if (!check_stripe_cache(mddev))
6281 return -ENOSPC;
6282
NeilBrown30b67642012-05-22 13:55:28 +10006283 if (has_failed(conf))
6284 return -EINVAL;
6285
NeilBrownc6563a82012-05-21 09:27:00 +10006286 rdev_for_each(rdev, mddev) {
NeilBrown469518a2011-01-31 11:57:43 +11006287 if (!test_bit(In_sync, &rdev->flags)
6288 && !test_bit(Faulty, &rdev->flags))
NeilBrown29269552006-03-27 01:18:10 -08006289 spares++;
NeilBrownc6563a82012-05-21 09:27:00 +10006290 }
NeilBrown63c70c42006-03-27 01:18:13 -08006291
NeilBrownf4168852007-02-28 20:11:53 -08006292 if (spares - mddev->degraded < mddev->delta_disks - conf->max_degraded)
NeilBrown29269552006-03-27 01:18:10 -08006293 /* Not enough devices even to make a degraded array
6294 * of that size
6295 */
6296 return -EINVAL;
6297
NeilBrownec32a2b2009-03-31 15:17:38 +11006298 /* Refuse to reduce size of the array. Any reductions in
6299 * array size must be through explicit setting of array_size
6300 * attribute.
6301 */
6302 if (raid5_size(mddev, 0, conf->raid_disks + mddev->delta_disks)
6303 < mddev->array_sectors) {
NeilBrown0c55e022010-05-03 14:09:02 +10006304 printk(KERN_ERR "md/raid:%s: array size must be reduced "
NeilBrownec32a2b2009-03-31 15:17:38 +11006305 "before number of disks\n", mdname(mddev));
6306 return -EINVAL;
6307 }
6308
NeilBrownf6705572006-03-27 01:18:11 -08006309 atomic_set(&conf->reshape_stripes, 0);
NeilBrown29269552006-03-27 01:18:10 -08006310 spin_lock_irq(&conf->device_lock);
NeilBrownc46501b2013-08-27 15:52:13 +10006311 write_seqcount_begin(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08006312 conf->previous_raid_disks = conf->raid_disks;
NeilBrown63c70c42006-03-27 01:18:13 -08006313 conf->raid_disks += mddev->delta_disks;
Andre Noll09c9e5f2009-06-18 08:45:55 +10006314 conf->prev_chunk_sectors = conf->chunk_sectors;
6315 conf->chunk_sectors = mddev->new_chunk_sectors;
NeilBrown88ce4932009-03-31 15:24:23 +11006316 conf->prev_algo = conf->algorithm;
6317 conf->algorithm = mddev->new_layout;
NeilBrown05616be2012-05-21 09:27:00 +10006318 conf->generation++;
6319 /* Code that selects data_offset needs to see the generation update
6320 * if reshape_progress has been set - so a memory barrier needed.
6321 */
6322 smp_mb();
NeilBrown2c810cd2012-05-21 09:27:00 +10006323 if (mddev->reshape_backwards)
NeilBrownfef9c612009-03-31 15:16:46 +11006324 conf->reshape_progress = raid5_size(mddev, 0, 0);
6325 else
6326 conf->reshape_progress = 0;
6327 conf->reshape_safe = conf->reshape_progress;
NeilBrownc46501b2013-08-27 15:52:13 +10006328 write_seqcount_end(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08006329 spin_unlock_irq(&conf->device_lock);
6330
NeilBrown4d77e3b2013-08-27 15:57:47 +10006331 /* Now make sure any requests that proceeded on the assumption
6332 * the reshape wasn't running - like Discard or Read - have
6333 * completed.
6334 */
6335 mddev_suspend(mddev);
6336 mddev_resume(mddev);
6337
NeilBrown29269552006-03-27 01:18:10 -08006338 /* Add some new drives, as many as will fit.
6339 * We know there are enough to make the newly sized array work.
NeilBrown3424bf62010-06-17 17:48:26 +10006340 * Don't add devices if we are reducing the number of
6341 * devices in the array. This is because it is not possible
6342 * to correctly record the "partially reconstructed" state of
6343 * such devices during the reshape and confusion could result.
NeilBrown29269552006-03-27 01:18:10 -08006344 */
NeilBrown87a8dec2011-01-31 11:57:43 +11006345 if (mddev->delta_disks >= 0) {
NeilBrowndafb20f2012-03-19 12:46:39 +11006346 rdev_for_each(rdev, mddev)
NeilBrown87a8dec2011-01-31 11:57:43 +11006347 if (rdev->raid_disk < 0 &&
6348 !test_bit(Faulty, &rdev->flags)) {
6349 if (raid5_add_disk(mddev, rdev) == 0) {
NeilBrown87a8dec2011-01-31 11:57:43 +11006350 if (rdev->raid_disk
NeilBrown9d4c7d82012-03-13 11:21:21 +11006351 >= conf->previous_raid_disks)
NeilBrown87a8dec2011-01-31 11:57:43 +11006352 set_bit(In_sync, &rdev->flags);
NeilBrown9d4c7d82012-03-13 11:21:21 +11006353 else
NeilBrown87a8dec2011-01-31 11:57:43 +11006354 rdev->recovery_offset = 0;
Namhyung Kim36fad852011-07-27 11:00:36 +10006355
6356 if (sysfs_link_rdev(mddev, rdev))
NeilBrown87a8dec2011-01-31 11:57:43 +11006357 /* Failure here is OK */;
NeilBrown50da0842011-01-31 11:57:43 +11006358 }
NeilBrown87a8dec2011-01-31 11:57:43 +11006359 } else if (rdev->raid_disk >= conf->previous_raid_disks
6360 && !test_bit(Faulty, &rdev->flags)) {
6361 /* This is a spare that was manually added */
6362 set_bit(In_sync, &rdev->flags);
NeilBrown87a8dec2011-01-31 11:57:43 +11006363 }
NeilBrown29269552006-03-27 01:18:10 -08006364
NeilBrown87a8dec2011-01-31 11:57:43 +11006365 /* When a reshape changes the number of devices,
6366 * ->degraded is measured against the larger of the
6367 * pre and post number of devices.
6368 */
NeilBrownec32a2b2009-03-31 15:17:38 +11006369 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrown908f4fb2011-12-23 10:17:50 +11006370 mddev->degraded = calc_degraded(conf);
NeilBrownec32a2b2009-03-31 15:17:38 +11006371 spin_unlock_irqrestore(&conf->device_lock, flags);
6372 }
NeilBrown63c70c42006-03-27 01:18:13 -08006373 mddev->raid_disks = conf->raid_disks;
NeilBrowne5164022009-08-03 10:59:57 +10006374 mddev->reshape_position = conf->reshape_progress;
NeilBrown850b2b42006-10-03 01:15:46 -07006375 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrownf6705572006-03-27 01:18:11 -08006376
NeilBrown29269552006-03-27 01:18:10 -08006377 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
6378 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
6379 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
6380 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
6381 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
NeilBrown0da3c612009-09-23 18:09:45 +10006382 "reshape");
NeilBrown29269552006-03-27 01:18:10 -08006383 if (!mddev->sync_thread) {
6384 mddev->recovery = 0;
6385 spin_lock_irq(&conf->device_lock);
6386 mddev->raid_disks = conf->raid_disks = conf->previous_raid_disks;
NeilBrown05616be2012-05-21 09:27:00 +10006387 rdev_for_each(rdev, mddev)
6388 rdev->new_data_offset = rdev->data_offset;
6389 smp_wmb();
NeilBrownfef9c612009-03-31 15:16:46 +11006390 conf->reshape_progress = MaxSector;
NeilBrown1e3fa9b2012-03-13 11:21:18 +11006391 mddev->reshape_position = MaxSector;
NeilBrown29269552006-03-27 01:18:10 -08006392 spin_unlock_irq(&conf->device_lock);
6393 return -EAGAIN;
6394 }
NeilBrownc8f517c2009-03-31 15:28:40 +11006395 conf->reshape_checkpoint = jiffies;
NeilBrown29269552006-03-27 01:18:10 -08006396 md_wakeup_thread(mddev->sync_thread);
6397 md_new_event(mddev);
6398 return 0;
6399}
NeilBrown29269552006-03-27 01:18:10 -08006400
NeilBrownec32a2b2009-03-31 15:17:38 +11006401/* This is called from the reshape thread and should make any
6402 * changes needed in 'conf'
6403 */
NeilBrownd1688a62011-10-11 16:49:52 +11006404static void end_reshape(struct r5conf *conf)
NeilBrown29269552006-03-27 01:18:10 -08006405{
NeilBrown29269552006-03-27 01:18:10 -08006406
NeilBrownf6705572006-03-27 01:18:11 -08006407 if (!test_bit(MD_RECOVERY_INTR, &conf->mddev->recovery)) {
NeilBrown05616be2012-05-21 09:27:00 +10006408 struct md_rdev *rdev;
Dan Williams80c3a6c2009-03-17 18:10:40 -07006409
NeilBrownf6705572006-03-27 01:18:11 -08006410 spin_lock_irq(&conf->device_lock);
NeilBrowncea9c222009-03-31 15:15:05 +11006411 conf->previous_raid_disks = conf->raid_disks;
NeilBrown05616be2012-05-21 09:27:00 +10006412 rdev_for_each(rdev, conf->mddev)
6413 rdev->data_offset = rdev->new_data_offset;
6414 smp_wmb();
NeilBrownfef9c612009-03-31 15:16:46 +11006415 conf->reshape_progress = MaxSector;
NeilBrownf6705572006-03-27 01:18:11 -08006416 spin_unlock_irq(&conf->device_lock);
NeilBrownb0f9ec02009-03-31 15:27:18 +11006417 wake_up(&conf->wait_for_overlap);
NeilBrown16a53ec2006-06-26 00:27:38 -07006418
6419 /* read-ahead size must cover two whole stripes, which is
6420 * 2 * (datadisks) * chunksize where 'n' is the number of raid devices
6421 */
NeilBrown4a5add42010-06-01 19:37:28 +10006422 if (conf->mddev->queue) {
NeilBrowncea9c222009-03-31 15:15:05 +11006423 int data_disks = conf->raid_disks - conf->max_degraded;
Andre Noll09c9e5f2009-06-18 08:45:55 +10006424 int stripe = data_disks * ((conf->chunk_sectors << 9)
NeilBrowncea9c222009-03-31 15:15:05 +11006425 / PAGE_SIZE);
NeilBrown16a53ec2006-06-26 00:27:38 -07006426 if (conf->mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
6427 conf->mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
6428 }
NeilBrown29269552006-03-27 01:18:10 -08006429 }
NeilBrown29269552006-03-27 01:18:10 -08006430}
6431
NeilBrownec32a2b2009-03-31 15:17:38 +11006432/* This is called from the raid5d thread with mddev_lock held.
6433 * It makes config changes to the device.
6434 */
NeilBrownfd01b882011-10-11 16:47:53 +11006435static void raid5_finish_reshape(struct mddev *mddev)
NeilBrowncea9c222009-03-31 15:15:05 +11006436{
NeilBrownd1688a62011-10-11 16:49:52 +11006437 struct r5conf *conf = mddev->private;
NeilBrowncea9c222009-03-31 15:15:05 +11006438
6439 if (!test_bit(MD_RECOVERY_INTR, &mddev->recovery)) {
6440
NeilBrownec32a2b2009-03-31 15:17:38 +11006441 if (mddev->delta_disks > 0) {
6442 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
6443 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10006444 revalidate_disk(mddev->gendisk);
NeilBrownec32a2b2009-03-31 15:17:38 +11006445 } else {
6446 int d;
NeilBrown908f4fb2011-12-23 10:17:50 +11006447 spin_lock_irq(&conf->device_lock);
6448 mddev->degraded = calc_degraded(conf);
6449 spin_unlock_irq(&conf->device_lock);
NeilBrownec32a2b2009-03-31 15:17:38 +11006450 for (d = conf->raid_disks ;
6451 d < conf->raid_disks - mddev->delta_disks;
NeilBrown1a67dde2009-08-13 10:41:49 +10006452 d++) {
NeilBrown3cb03002011-10-11 16:45:26 +11006453 struct md_rdev *rdev = conf->disks[d].rdev;
NeilBrownda7613b2012-05-22 13:55:33 +10006454 if (rdev)
6455 clear_bit(In_sync, &rdev->flags);
6456 rdev = conf->disks[d].replacement;
6457 if (rdev)
6458 clear_bit(In_sync, &rdev->flags);
NeilBrown1a67dde2009-08-13 10:41:49 +10006459 }
NeilBrowncea9c222009-03-31 15:15:05 +11006460 }
NeilBrown88ce4932009-03-31 15:24:23 +11006461 mddev->layout = conf->algorithm;
Andre Noll09c9e5f2009-06-18 08:45:55 +10006462 mddev->chunk_sectors = conf->chunk_sectors;
NeilBrownec32a2b2009-03-31 15:17:38 +11006463 mddev->reshape_position = MaxSector;
6464 mddev->delta_disks = 0;
NeilBrown2c810cd2012-05-21 09:27:00 +10006465 mddev->reshape_backwards = 0;
NeilBrowncea9c222009-03-31 15:15:05 +11006466 }
6467}
6468
NeilBrownfd01b882011-10-11 16:47:53 +11006469static void raid5_quiesce(struct mddev *mddev, int state)
NeilBrown72626682005-09-09 16:23:54 -07006470{
NeilBrownd1688a62011-10-11 16:49:52 +11006471 struct r5conf *conf = mddev->private;
NeilBrown72626682005-09-09 16:23:54 -07006472
6473 switch(state) {
NeilBrowne464eaf2006-03-27 01:18:14 -08006474 case 2: /* resume for a suspend */
6475 wake_up(&conf->wait_for_overlap);
6476 break;
6477
NeilBrown72626682005-09-09 16:23:54 -07006478 case 1: /* stop all writes */
6479 spin_lock_irq(&conf->device_lock);
NeilBrown64bd6602009-08-03 10:59:58 +10006480 /* '2' tells resync/reshape to pause so that all
6481 * active stripes can drain
6482 */
6483 conf->quiesce = 2;
NeilBrown72626682005-09-09 16:23:54 -07006484 wait_event_lock_irq(conf->wait_for_stripe,
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006485 atomic_read(&conf->active_stripes) == 0 &&
6486 atomic_read(&conf->active_aligned_reads) == 0,
Lukas Czernereed8c022012-11-30 11:42:40 +01006487 conf->device_lock);
NeilBrown64bd6602009-08-03 10:59:58 +10006488 conf->quiesce = 1;
NeilBrown72626682005-09-09 16:23:54 -07006489 spin_unlock_irq(&conf->device_lock);
NeilBrown64bd6602009-08-03 10:59:58 +10006490 /* allow reshape to continue */
6491 wake_up(&conf->wait_for_overlap);
NeilBrown72626682005-09-09 16:23:54 -07006492 break;
6493
6494 case 0: /* re-enable writes */
6495 spin_lock_irq(&conf->device_lock);
6496 conf->quiesce = 0;
6497 wake_up(&conf->wait_for_stripe);
NeilBrowne464eaf2006-03-27 01:18:14 -08006498 wake_up(&conf->wait_for_overlap);
NeilBrown72626682005-09-09 16:23:54 -07006499 spin_unlock_irq(&conf->device_lock);
6500 break;
6501 }
NeilBrown72626682005-09-09 16:23:54 -07006502}
NeilBrownb15c2e52006-01-06 00:20:16 -08006503
NeilBrownd562b0c2009-03-31 14:39:39 +11006504
NeilBrownfd01b882011-10-11 16:47:53 +11006505static void *raid45_takeover_raid0(struct mddev *mddev, int level)
Trela Maciej54071b32010-03-08 16:02:42 +11006506{
NeilBrowne373ab12011-10-11 16:48:59 +11006507 struct r0conf *raid0_conf = mddev->private;
Randy Dunlapd76c8422011-04-21 09:07:26 -07006508 sector_t sectors;
Trela Maciej54071b32010-03-08 16:02:42 +11006509
Dan Williamsf1b29bc2010-05-01 18:09:05 -07006510 /* for raid0 takeover only one zone is supported */
NeilBrowne373ab12011-10-11 16:48:59 +11006511 if (raid0_conf->nr_strip_zones > 1) {
NeilBrown0c55e022010-05-03 14:09:02 +10006512 printk(KERN_ERR "md/raid:%s: cannot takeover raid0 with more than one zone.\n",
6513 mdname(mddev));
Dan Williamsf1b29bc2010-05-01 18:09:05 -07006514 return ERR_PTR(-EINVAL);
6515 }
6516
NeilBrowne373ab12011-10-11 16:48:59 +11006517 sectors = raid0_conf->strip_zone[0].zone_end;
6518 sector_div(sectors, raid0_conf->strip_zone[0].nb_dev);
NeilBrown3b71bd92011-04-20 15:38:18 +10006519 mddev->dev_sectors = sectors;
Dan Williamsf1b29bc2010-05-01 18:09:05 -07006520 mddev->new_level = level;
Trela Maciej54071b32010-03-08 16:02:42 +11006521 mddev->new_layout = ALGORITHM_PARITY_N;
6522 mddev->new_chunk_sectors = mddev->chunk_sectors;
6523 mddev->raid_disks += 1;
6524 mddev->delta_disks = 1;
6525 /* make sure it will be not marked as dirty */
6526 mddev->recovery_cp = MaxSector;
6527
6528 return setup_conf(mddev);
6529}
6530
6531
NeilBrownfd01b882011-10-11 16:47:53 +11006532static void *raid5_takeover_raid1(struct mddev *mddev)
NeilBrownd562b0c2009-03-31 14:39:39 +11006533{
6534 int chunksect;
6535
6536 if (mddev->raid_disks != 2 ||
6537 mddev->degraded > 1)
6538 return ERR_PTR(-EINVAL);
6539
6540 /* Should check if there are write-behind devices? */
6541
6542 chunksect = 64*2; /* 64K by default */
6543
6544 /* The array must be an exact multiple of chunksize */
6545 while (chunksect && (mddev->array_sectors & (chunksect-1)))
6546 chunksect >>= 1;
6547
6548 if ((chunksect<<9) < STRIPE_SIZE)
6549 /* array size does not allow a suitable chunk size */
6550 return ERR_PTR(-EINVAL);
6551
6552 mddev->new_level = 5;
6553 mddev->new_layout = ALGORITHM_LEFT_SYMMETRIC;
Andre Noll664e7c42009-06-18 08:45:27 +10006554 mddev->new_chunk_sectors = chunksect;
NeilBrownd562b0c2009-03-31 14:39:39 +11006555
6556 return setup_conf(mddev);
6557}
6558
NeilBrownfd01b882011-10-11 16:47:53 +11006559static void *raid5_takeover_raid6(struct mddev *mddev)
NeilBrownfc9739c2009-03-31 14:57:20 +11006560{
6561 int new_layout;
6562
6563 switch (mddev->layout) {
6564 case ALGORITHM_LEFT_ASYMMETRIC_6:
6565 new_layout = ALGORITHM_LEFT_ASYMMETRIC;
6566 break;
6567 case ALGORITHM_RIGHT_ASYMMETRIC_6:
6568 new_layout = ALGORITHM_RIGHT_ASYMMETRIC;
6569 break;
6570 case ALGORITHM_LEFT_SYMMETRIC_6:
6571 new_layout = ALGORITHM_LEFT_SYMMETRIC;
6572 break;
6573 case ALGORITHM_RIGHT_SYMMETRIC_6:
6574 new_layout = ALGORITHM_RIGHT_SYMMETRIC;
6575 break;
6576 case ALGORITHM_PARITY_0_6:
6577 new_layout = ALGORITHM_PARITY_0;
6578 break;
6579 case ALGORITHM_PARITY_N:
6580 new_layout = ALGORITHM_PARITY_N;
6581 break;
6582 default:
6583 return ERR_PTR(-EINVAL);
6584 }
6585 mddev->new_level = 5;
6586 mddev->new_layout = new_layout;
6587 mddev->delta_disks = -1;
6588 mddev->raid_disks -= 1;
6589 return setup_conf(mddev);
6590}
6591
NeilBrownd562b0c2009-03-31 14:39:39 +11006592
NeilBrownfd01b882011-10-11 16:47:53 +11006593static int raid5_check_reshape(struct mddev *mddev)
NeilBrownb3546032009-03-31 14:56:41 +11006594{
NeilBrown88ce4932009-03-31 15:24:23 +11006595 /* For a 2-drive array, the layout and chunk size can be changed
6596 * immediately as not restriping is needed.
6597 * For larger arrays we record the new value - after validation
6598 * to be used by a reshape pass.
NeilBrownb3546032009-03-31 14:56:41 +11006599 */
NeilBrownd1688a62011-10-11 16:49:52 +11006600 struct r5conf *conf = mddev->private;
NeilBrown597a7112009-06-18 08:47:42 +10006601 int new_chunk = mddev->new_chunk_sectors;
NeilBrownb3546032009-03-31 14:56:41 +11006602
NeilBrown597a7112009-06-18 08:47:42 +10006603 if (mddev->new_layout >= 0 && !algorithm_valid_raid5(mddev->new_layout))
NeilBrownb3546032009-03-31 14:56:41 +11006604 return -EINVAL;
6605 if (new_chunk > 0) {
Andre Noll0ba459d2009-06-18 08:46:10 +10006606 if (!is_power_of_2(new_chunk))
NeilBrownb3546032009-03-31 14:56:41 +11006607 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10006608 if (new_chunk < (PAGE_SIZE>>9))
NeilBrownb3546032009-03-31 14:56:41 +11006609 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10006610 if (mddev->array_sectors & (new_chunk-1))
NeilBrownb3546032009-03-31 14:56:41 +11006611 /* not factor of array size */
6612 return -EINVAL;
6613 }
6614
6615 /* They look valid */
6616
NeilBrown88ce4932009-03-31 15:24:23 +11006617 if (mddev->raid_disks == 2) {
NeilBrown597a7112009-06-18 08:47:42 +10006618 /* can make the change immediately */
6619 if (mddev->new_layout >= 0) {
6620 conf->algorithm = mddev->new_layout;
6621 mddev->layout = mddev->new_layout;
NeilBrown88ce4932009-03-31 15:24:23 +11006622 }
6623 if (new_chunk > 0) {
NeilBrown597a7112009-06-18 08:47:42 +10006624 conf->chunk_sectors = new_chunk ;
6625 mddev->chunk_sectors = new_chunk;
NeilBrown88ce4932009-03-31 15:24:23 +11006626 }
6627 set_bit(MD_CHANGE_DEVS, &mddev->flags);
6628 md_wakeup_thread(mddev->thread);
NeilBrownb3546032009-03-31 14:56:41 +11006629 }
NeilBrown50ac1682009-06-18 08:47:55 +10006630 return check_reshape(mddev);
NeilBrown88ce4932009-03-31 15:24:23 +11006631}
6632
NeilBrownfd01b882011-10-11 16:47:53 +11006633static int raid6_check_reshape(struct mddev *mddev)
NeilBrown88ce4932009-03-31 15:24:23 +11006634{
NeilBrown597a7112009-06-18 08:47:42 +10006635 int new_chunk = mddev->new_chunk_sectors;
NeilBrown50ac1682009-06-18 08:47:55 +10006636
NeilBrown597a7112009-06-18 08:47:42 +10006637 if (mddev->new_layout >= 0 && !algorithm_valid_raid6(mddev->new_layout))
NeilBrown88ce4932009-03-31 15:24:23 +11006638 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11006639 if (new_chunk > 0) {
Andre Noll0ba459d2009-06-18 08:46:10 +10006640 if (!is_power_of_2(new_chunk))
NeilBrown88ce4932009-03-31 15:24:23 +11006641 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10006642 if (new_chunk < (PAGE_SIZE >> 9))
NeilBrown88ce4932009-03-31 15:24:23 +11006643 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10006644 if (mddev->array_sectors & (new_chunk-1))
NeilBrown88ce4932009-03-31 15:24:23 +11006645 /* not factor of array size */
6646 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11006647 }
NeilBrown88ce4932009-03-31 15:24:23 +11006648
6649 /* They look valid */
NeilBrown50ac1682009-06-18 08:47:55 +10006650 return check_reshape(mddev);
NeilBrownb3546032009-03-31 14:56:41 +11006651}
6652
NeilBrownfd01b882011-10-11 16:47:53 +11006653static void *raid5_takeover(struct mddev *mddev)
NeilBrownd562b0c2009-03-31 14:39:39 +11006654{
6655 /* raid5 can take over:
Dan Williamsf1b29bc2010-05-01 18:09:05 -07006656 * raid0 - if there is only one strip zone - make it a raid4 layout
NeilBrownd562b0c2009-03-31 14:39:39 +11006657 * raid1 - if there are two drives. We need to know the chunk size
6658 * raid4 - trivial - just use a raid4 layout.
6659 * raid6 - Providing it is a *_6 layout
NeilBrownd562b0c2009-03-31 14:39:39 +11006660 */
Dan Williamsf1b29bc2010-05-01 18:09:05 -07006661 if (mddev->level == 0)
6662 return raid45_takeover_raid0(mddev, 5);
NeilBrownd562b0c2009-03-31 14:39:39 +11006663 if (mddev->level == 1)
6664 return raid5_takeover_raid1(mddev);
NeilBrowne9d47582009-03-31 14:57:09 +11006665 if (mddev->level == 4) {
6666 mddev->new_layout = ALGORITHM_PARITY_N;
6667 mddev->new_level = 5;
6668 return setup_conf(mddev);
6669 }
NeilBrownfc9739c2009-03-31 14:57:20 +11006670 if (mddev->level == 6)
6671 return raid5_takeover_raid6(mddev);
NeilBrownd562b0c2009-03-31 14:39:39 +11006672
6673 return ERR_PTR(-EINVAL);
6674}
6675
NeilBrownfd01b882011-10-11 16:47:53 +11006676static void *raid4_takeover(struct mddev *mddev)
NeilBrowna78d38a2010-03-22 16:53:49 +11006677{
Dan Williamsf1b29bc2010-05-01 18:09:05 -07006678 /* raid4 can take over:
6679 * raid0 - if there is only one strip zone
6680 * raid5 - if layout is right
NeilBrowna78d38a2010-03-22 16:53:49 +11006681 */
Dan Williamsf1b29bc2010-05-01 18:09:05 -07006682 if (mddev->level == 0)
6683 return raid45_takeover_raid0(mddev, 4);
NeilBrowna78d38a2010-03-22 16:53:49 +11006684 if (mddev->level == 5 &&
6685 mddev->layout == ALGORITHM_PARITY_N) {
6686 mddev->new_layout = 0;
6687 mddev->new_level = 4;
6688 return setup_conf(mddev);
6689 }
6690 return ERR_PTR(-EINVAL);
6691}
NeilBrownd562b0c2009-03-31 14:39:39 +11006692
NeilBrown84fc4b52011-10-11 16:49:58 +11006693static struct md_personality raid5_personality;
NeilBrown245f46c2009-03-31 14:39:39 +11006694
NeilBrownfd01b882011-10-11 16:47:53 +11006695static void *raid6_takeover(struct mddev *mddev)
NeilBrown245f46c2009-03-31 14:39:39 +11006696{
6697 /* Currently can only take over a raid5. We map the
6698 * personality to an equivalent raid6 personality
6699 * with the Q block at the end.
6700 */
6701 int new_layout;
6702
6703 if (mddev->pers != &raid5_personality)
6704 return ERR_PTR(-EINVAL);
6705 if (mddev->degraded > 1)
6706 return ERR_PTR(-EINVAL);
6707 if (mddev->raid_disks > 253)
6708 return ERR_PTR(-EINVAL);
6709 if (mddev->raid_disks < 3)
6710 return ERR_PTR(-EINVAL);
6711
6712 switch (mddev->layout) {
6713 case ALGORITHM_LEFT_ASYMMETRIC:
6714 new_layout = ALGORITHM_LEFT_ASYMMETRIC_6;
6715 break;
6716 case ALGORITHM_RIGHT_ASYMMETRIC:
6717 new_layout = ALGORITHM_RIGHT_ASYMMETRIC_6;
6718 break;
6719 case ALGORITHM_LEFT_SYMMETRIC:
6720 new_layout = ALGORITHM_LEFT_SYMMETRIC_6;
6721 break;
6722 case ALGORITHM_RIGHT_SYMMETRIC:
6723 new_layout = ALGORITHM_RIGHT_SYMMETRIC_6;
6724 break;
6725 case ALGORITHM_PARITY_0:
6726 new_layout = ALGORITHM_PARITY_0_6;
6727 break;
6728 case ALGORITHM_PARITY_N:
6729 new_layout = ALGORITHM_PARITY_N;
6730 break;
6731 default:
6732 return ERR_PTR(-EINVAL);
6733 }
6734 mddev->new_level = 6;
6735 mddev->new_layout = new_layout;
6736 mddev->delta_disks = 1;
6737 mddev->raid_disks += 1;
6738 return setup_conf(mddev);
6739}
6740
6741
NeilBrown84fc4b52011-10-11 16:49:58 +11006742static struct md_personality raid6_personality =
NeilBrown16a53ec2006-06-26 00:27:38 -07006743{
6744 .name = "raid6",
6745 .level = 6,
6746 .owner = THIS_MODULE,
6747 .make_request = make_request,
6748 .run = run,
6749 .stop = stop,
6750 .status = status,
6751 .error_handler = error,
6752 .hot_add_disk = raid5_add_disk,
6753 .hot_remove_disk= raid5_remove_disk,
6754 .spare_active = raid5_spare_active,
6755 .sync_request = sync_request,
6756 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07006757 .size = raid5_size,
NeilBrown50ac1682009-06-18 08:47:55 +10006758 .check_reshape = raid6_check_reshape,
NeilBrownf4168852007-02-28 20:11:53 -08006759 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11006760 .finish_reshape = raid5_finish_reshape,
NeilBrown16a53ec2006-06-26 00:27:38 -07006761 .quiesce = raid5_quiesce,
NeilBrown245f46c2009-03-31 14:39:39 +11006762 .takeover = raid6_takeover,
NeilBrown16a53ec2006-06-26 00:27:38 -07006763};
NeilBrown84fc4b52011-10-11 16:49:58 +11006764static struct md_personality raid5_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07006765{
6766 .name = "raid5",
NeilBrown2604b702006-01-06 00:20:36 -08006767 .level = 5,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006768 .owner = THIS_MODULE,
6769 .make_request = make_request,
6770 .run = run,
6771 .stop = stop,
6772 .status = status,
6773 .error_handler = error,
6774 .hot_add_disk = raid5_add_disk,
6775 .hot_remove_disk= raid5_remove_disk,
6776 .spare_active = raid5_spare_active,
6777 .sync_request = sync_request,
6778 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07006779 .size = raid5_size,
NeilBrown63c70c42006-03-27 01:18:13 -08006780 .check_reshape = raid5_check_reshape,
6781 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11006782 .finish_reshape = raid5_finish_reshape,
NeilBrown72626682005-09-09 16:23:54 -07006783 .quiesce = raid5_quiesce,
NeilBrownd562b0c2009-03-31 14:39:39 +11006784 .takeover = raid5_takeover,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006785};
6786
NeilBrown84fc4b52011-10-11 16:49:58 +11006787static struct md_personality raid4_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07006788{
NeilBrown2604b702006-01-06 00:20:36 -08006789 .name = "raid4",
6790 .level = 4,
6791 .owner = THIS_MODULE,
6792 .make_request = make_request,
6793 .run = run,
6794 .stop = stop,
6795 .status = status,
6796 .error_handler = error,
6797 .hot_add_disk = raid5_add_disk,
6798 .hot_remove_disk= raid5_remove_disk,
6799 .spare_active = raid5_spare_active,
6800 .sync_request = sync_request,
6801 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07006802 .size = raid5_size,
NeilBrown3d378902007-03-26 21:32:13 -08006803 .check_reshape = raid5_check_reshape,
6804 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11006805 .finish_reshape = raid5_finish_reshape,
NeilBrown2604b702006-01-06 00:20:36 -08006806 .quiesce = raid5_quiesce,
NeilBrowna78d38a2010-03-22 16:53:49 +11006807 .takeover = raid4_takeover,
NeilBrown2604b702006-01-06 00:20:36 -08006808};
6809
6810static int __init raid5_init(void)
6811{
Shaohua Li851c30c2013-08-28 14:30:16 +08006812 raid5_wq = alloc_workqueue("raid5wq",
6813 WQ_UNBOUND|WQ_MEM_RECLAIM|WQ_CPU_INTENSIVE|WQ_SYSFS, 0);
6814 if (!raid5_wq)
6815 return -ENOMEM;
NeilBrown16a53ec2006-06-26 00:27:38 -07006816 register_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08006817 register_md_personality(&raid5_personality);
6818 register_md_personality(&raid4_personality);
6819 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006820}
6821
NeilBrown2604b702006-01-06 00:20:36 -08006822static void raid5_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006823{
NeilBrown16a53ec2006-06-26 00:27:38 -07006824 unregister_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08006825 unregister_md_personality(&raid5_personality);
6826 unregister_md_personality(&raid4_personality);
Shaohua Li851c30c2013-08-28 14:30:16 +08006827 destroy_workqueue(raid5_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006828}
6829
6830module_init(raid5_init);
6831module_exit(raid5_exit);
6832MODULE_LICENSE("GPL");
NeilBrown0efb9e62009-12-14 12:49:58 +11006833MODULE_DESCRIPTION("RAID4/5/6 (striping with parity) personality for MD");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006834MODULE_ALIAS("md-personality-4"); /* RAID5 */
NeilBrownd9d166c2006-01-06 00:20:51 -08006835MODULE_ALIAS("md-raid5");
6836MODULE_ALIAS("md-raid4");
NeilBrown2604b702006-01-06 00:20:36 -08006837MODULE_ALIAS("md-level-5");
6838MODULE_ALIAS("md-level-4");
NeilBrown16a53ec2006-06-26 00:27:38 -07006839MODULE_ALIAS("md-personality-8"); /* RAID6 */
6840MODULE_ALIAS("md-raid6");
6841MODULE_ALIAS("md-level-6");
6842
6843/* This used to be two separate modules, they were: */
6844MODULE_ALIAS("raid5");
6845MODULE_ALIAS("raid6");