blob: 302d7cd2076c61ea557caf0f77c2ba3f4f6f8b79 [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);
2925 if (test_bit(STRIPE_SYNC_REQUESTED, &sh->state))
2926 set_bit(STRIPE_HANDLE, &sh->state);
2927
2928 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002929
2930 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
2931 if (atomic_dec_and_test(&conf->pending_full_writes))
2932 md_wakeup_thread(conf->mddev->thread);
Dan Williamsa4456852007-07-09 11:56:43 -07002933}
2934
NeilBrownd1688a62011-10-11 16:49:52 +11002935static void handle_stripe_dirtying(struct r5conf *conf,
NeilBrownc8ac1802011-07-27 11:00:36 +10002936 struct stripe_head *sh,
2937 struct stripe_head_state *s,
2938 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07002939{
2940 int rmw = 0, rcw = 0, i;
Alexander Lyakasa7854482012-10-11 13:50:12 +11002941 sector_t recovery_cp = conf->mddev->recovery_cp;
2942
2943 /* RAID6 requires 'rcw' in current implementation.
2944 * Otherwise, check whether resync is now happening or should start.
2945 * If yes, then the array is dirty (after unclean shutdown or
2946 * initial creation), so parity in some stripes might be inconsistent.
2947 * In this case, we need to always do reconstruct-write, to ensure
2948 * that in case of drive failure or read-error correction, we
2949 * generate correct data from the parity.
2950 */
2951 if (conf->max_degraded == 2 ||
2952 (recovery_cp < MaxSector && sh->sector >= recovery_cp)) {
2953 /* Calculate the real rcw later - for now make it
NeilBrownc8ac1802011-07-27 11:00:36 +10002954 * look like rcw is cheaper
2955 */
2956 rcw = 1; rmw = 2;
Alexander Lyakasa7854482012-10-11 13:50:12 +11002957 pr_debug("force RCW max_degraded=%u, recovery_cp=%llu sh->sector=%llu\n",
2958 conf->max_degraded, (unsigned long long)recovery_cp,
2959 (unsigned long long)sh->sector);
NeilBrownc8ac1802011-07-27 11:00:36 +10002960 } else for (i = disks; i--; ) {
Dan Williamsa4456852007-07-09 11:56:43 -07002961 /* would I have to read this buffer for read_modify_write */
2962 struct r5dev *dev = &sh->dev[i];
2963 if ((dev->towrite || i == sh->pd_idx) &&
2964 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002965 !(test_bit(R5_UPTODATE, &dev->flags) ||
2966 test_bit(R5_Wantcompute, &dev->flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07002967 if (test_bit(R5_Insync, &dev->flags))
2968 rmw++;
2969 else
2970 rmw += 2*disks; /* cannot read it */
2971 }
2972 /* Would I have to read this buffer for reconstruct_write */
2973 if (!test_bit(R5_OVERWRITE, &dev->flags) && i != sh->pd_idx &&
2974 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002975 !(test_bit(R5_UPTODATE, &dev->flags) ||
2976 test_bit(R5_Wantcompute, &dev->flags))) {
2977 if (test_bit(R5_Insync, &dev->flags)) rcw++;
Dan Williamsa4456852007-07-09 11:56:43 -07002978 else
2979 rcw += 2*disks;
2980 }
2981 }
Dan Williams45b42332007-07-09 11:56:43 -07002982 pr_debug("for sector %llu, rmw=%d rcw=%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002983 (unsigned long long)sh->sector, rmw, rcw);
2984 set_bit(STRIPE_HANDLE, &sh->state);
NeilBrowna9add5d2012-10-31 11:59:09 +11002985 if (rmw < rcw && rmw > 0) {
Dan Williamsa4456852007-07-09 11:56:43 -07002986 /* prefer read-modify-write, but need to get some data */
Jonathan Brassowe3620a32013-03-07 16:22:01 -06002987 if (conf->mddev->queue)
2988 blk_add_trace_msg(conf->mddev->queue,
2989 "raid5 rmw %llu %d",
2990 (unsigned long long)sh->sector, rmw);
Dan Williamsa4456852007-07-09 11:56:43 -07002991 for (i = disks; i--; ) {
2992 struct r5dev *dev = &sh->dev[i];
2993 if ((dev->towrite || i == sh->pd_idx) &&
2994 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002995 !(test_bit(R5_UPTODATE, &dev->flags) ||
2996 test_bit(R5_Wantcompute, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07002997 test_bit(R5_Insync, &dev->flags)) {
2998 if (
2999 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07003000 pr_debug("Read_old block "
NeilBrowna9add5d2012-10-31 11:59:09 +11003001 "%d for r-m-w\n", i);
Dan Williamsa4456852007-07-09 11:56:43 -07003002 set_bit(R5_LOCKED, &dev->flags);
3003 set_bit(R5_Wantread, &dev->flags);
3004 s->locked++;
3005 } else {
3006 set_bit(STRIPE_DELAYED, &sh->state);
3007 set_bit(STRIPE_HANDLE, &sh->state);
3008 }
3009 }
3010 }
NeilBrowna9add5d2012-10-31 11:59:09 +11003011 }
NeilBrownc8ac1802011-07-27 11:00:36 +10003012 if (rcw <= rmw && rcw > 0) {
Dan Williamsa4456852007-07-09 11:56:43 -07003013 /* want reconstruct write, but need to get some data */
NeilBrowna9add5d2012-10-31 11:59:09 +11003014 int qread =0;
NeilBrownc8ac1802011-07-27 11:00:36 +10003015 rcw = 0;
Dan Williamsa4456852007-07-09 11:56:43 -07003016 for (i = disks; i--; ) {
3017 struct r5dev *dev = &sh->dev[i];
3018 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
NeilBrownc8ac1802011-07-27 11:00:36 +10003019 i != sh->pd_idx && i != sh->qd_idx &&
Dan Williamsa4456852007-07-09 11:56:43 -07003020 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07003021 !(test_bit(R5_UPTODATE, &dev->flags) ||
NeilBrownc8ac1802011-07-27 11:00:36 +10003022 test_bit(R5_Wantcompute, &dev->flags))) {
3023 rcw++;
3024 if (!test_bit(R5_Insync, &dev->flags))
3025 continue; /* it's a failed drive */
Dan Williamsa4456852007-07-09 11:56:43 -07003026 if (
3027 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07003028 pr_debug("Read_old block "
Dan Williamsa4456852007-07-09 11:56:43 -07003029 "%d for Reconstruct\n", i);
3030 set_bit(R5_LOCKED, &dev->flags);
3031 set_bit(R5_Wantread, &dev->flags);
3032 s->locked++;
NeilBrowna9add5d2012-10-31 11:59:09 +11003033 qread++;
Dan Williamsa4456852007-07-09 11:56:43 -07003034 } else {
3035 set_bit(STRIPE_DELAYED, &sh->state);
3036 set_bit(STRIPE_HANDLE, &sh->state);
3037 }
3038 }
3039 }
Jonathan Brassowe3620a32013-03-07 16:22:01 -06003040 if (rcw && conf->mddev->queue)
NeilBrowna9add5d2012-10-31 11:59:09 +11003041 blk_add_trace_msg(conf->mddev->queue, "raid5 rcw %llu %d %d %d",
3042 (unsigned long long)sh->sector,
3043 rcw, qread, test_bit(STRIPE_DELAYED, &sh->state));
NeilBrownc8ac1802011-07-27 11:00:36 +10003044 }
Dan Williamsa4456852007-07-09 11:56:43 -07003045 /* now if nothing is locked, and if we have enough data,
3046 * we can start a write request
3047 */
Dan Williamsf38e1212007-01-02 13:52:30 -07003048 /* since handle_stripe can be called at any time we need to handle the
3049 * case where a compute block operation has been submitted and then a
Dan Williamsac6b53b2009-07-14 13:40:19 -07003050 * subsequent call wants to start a write request. raid_run_ops only
3051 * handles the case where compute block and reconstruct are requested
Dan Williamsf38e1212007-01-02 13:52:30 -07003052 * simultaneously. If this is not the case then new writes need to be
3053 * held off until the compute completes.
3054 */
Dan Williams976ea8d2008-06-28 08:32:03 +10003055 if ((s->req_compute || !test_bit(STRIPE_COMPUTE_RUN, &sh->state)) &&
3056 (s->locked == 0 && (rcw == 0 || rmw == 0) &&
3057 !test_bit(STRIPE_BIT_DELAY, &sh->state)))
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07003058 schedule_reconstruction(sh, s, rcw == 0, 0);
Dan Williamsa4456852007-07-09 11:56:43 -07003059}
3060
NeilBrownd1688a62011-10-11 16:49:52 +11003061static void handle_parity_checks5(struct r5conf *conf, struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07003062 struct stripe_head_state *s, int disks)
3063{
Dan Williamsecc65c92008-06-28 08:31:57 +10003064 struct r5dev *dev = NULL;
Dan Williamse89f8962007-01-02 13:52:31 -07003065
Dan Williamsbd2ab672008-04-10 21:29:27 -07003066 set_bit(STRIPE_HANDLE, &sh->state);
3067
Dan Williamsecc65c92008-06-28 08:31:57 +10003068 switch (sh->check_state) {
3069 case check_state_idle:
3070 /* start a new check operation if there are no failures */
Dan Williamsbd2ab672008-04-10 21:29:27 -07003071 if (s->failed == 0) {
Dan Williamsbd2ab672008-04-10 21:29:27 -07003072 BUG_ON(s->uptodate != disks);
Dan Williamsecc65c92008-06-28 08:31:57 +10003073 sh->check_state = check_state_run;
3074 set_bit(STRIPE_OP_CHECK, &s->ops_request);
Dan Williamsbd2ab672008-04-10 21:29:27 -07003075 clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
Dan Williamsbd2ab672008-04-10 21:29:27 -07003076 s->uptodate--;
Dan Williamsecc65c92008-06-28 08:31:57 +10003077 break;
Dan Williamsbd2ab672008-04-10 21:29:27 -07003078 }
NeilBrownf2b3b442011-07-26 11:35:19 +10003079 dev = &sh->dev[s->failed_num[0]];
Dan Williamsecc65c92008-06-28 08:31:57 +10003080 /* fall through */
3081 case check_state_compute_result:
3082 sh->check_state = check_state_idle;
3083 if (!dev)
3084 dev = &sh->dev[sh->pd_idx];
3085
3086 /* check that a write has not made the stripe insync */
3087 if (test_bit(STRIPE_INSYNC, &sh->state))
3088 break;
3089
3090 /* either failed parity check, or recovery is happening */
Dan Williamsa4456852007-07-09 11:56:43 -07003091 BUG_ON(!test_bit(R5_UPTODATE, &dev->flags));
3092 BUG_ON(s->uptodate != disks);
3093
3094 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsecc65c92008-06-28 08:31:57 +10003095 s->locked++;
Dan Williamsa4456852007-07-09 11:56:43 -07003096 set_bit(R5_Wantwrite, &dev->flags);
Dan Williams830ea012007-01-02 13:52:31 -07003097
Dan Williamsa4456852007-07-09 11:56:43 -07003098 clear_bit(STRIPE_DEGRADED, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07003099 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10003100 break;
3101 case check_state_run:
3102 break; /* we will be called again upon completion */
3103 case check_state_check_result:
3104 sh->check_state = check_state_idle;
3105
3106 /* if a failure occurred during the check operation, leave
3107 * STRIPE_INSYNC not set and let the stripe be handled again
3108 */
3109 if (s->failed)
3110 break;
3111
3112 /* handle a successful check operation, if parity is correct
3113 * we are done. Otherwise update the mismatch count and repair
3114 * parity if !MD_RECOVERY_CHECK
3115 */
Dan Williamsad283ea2009-08-29 19:09:26 -07003116 if ((sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) == 0)
Dan Williamsecc65c92008-06-28 08:31:57 +10003117 /* parity is correct (on disc,
3118 * not in buffer any more)
3119 */
3120 set_bit(STRIPE_INSYNC, &sh->state);
3121 else {
Jianpeng Ma7f7583d2012-10-11 14:17:59 +11003122 atomic64_add(STRIPE_SECTORS, &conf->mddev->resync_mismatches);
Dan Williamsecc65c92008-06-28 08:31:57 +10003123 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
3124 /* don't try to repair!! */
3125 set_bit(STRIPE_INSYNC, &sh->state);
3126 else {
3127 sh->check_state = check_state_compute_run;
Dan Williams976ea8d2008-06-28 08:32:03 +10003128 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10003129 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3130 set_bit(R5_Wantcompute,
3131 &sh->dev[sh->pd_idx].flags);
3132 sh->ops.target = sh->pd_idx;
Dan Williamsac6b53b2009-07-14 13:40:19 -07003133 sh->ops.target2 = -1;
Dan Williamsecc65c92008-06-28 08:31:57 +10003134 s->uptodate++;
3135 }
3136 }
3137 break;
3138 case check_state_compute_run:
3139 break;
3140 default:
3141 printk(KERN_ERR "%s: unknown check_state: %d sector: %llu\n",
3142 __func__, sh->check_state,
3143 (unsigned long long) sh->sector);
3144 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07003145 }
3146}
3147
3148
NeilBrownd1688a62011-10-11 16:49:52 +11003149static void handle_parity_checks6(struct r5conf *conf, struct stripe_head *sh,
Dan Williams36d1c642009-07-14 11:48:22 -07003150 struct stripe_head_state *s,
NeilBrownf2b3b442011-07-26 11:35:19 +10003151 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07003152{
Dan Williamsa4456852007-07-09 11:56:43 -07003153 int pd_idx = sh->pd_idx;
NeilBrown34e04e82009-03-31 15:10:16 +11003154 int qd_idx = sh->qd_idx;
Dan Williamsd82dfee2009-07-14 13:40:57 -07003155 struct r5dev *dev;
Dan Williamsa4456852007-07-09 11:56:43 -07003156
3157 set_bit(STRIPE_HANDLE, &sh->state);
3158
3159 BUG_ON(s->failed > 2);
Dan Williamsd82dfee2009-07-14 13:40:57 -07003160
Dan Williamsa4456852007-07-09 11:56:43 -07003161 /* Want to check and possibly repair P and Q.
3162 * However there could be one 'failed' device, in which
3163 * case we can only check one of them, possibly using the
3164 * other to generate missing data
3165 */
3166
Dan Williamsd82dfee2009-07-14 13:40:57 -07003167 switch (sh->check_state) {
3168 case check_state_idle:
3169 /* start a new check operation if there are < 2 failures */
NeilBrownf2b3b442011-07-26 11:35:19 +10003170 if (s->failed == s->q_failed) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07003171 /* The only possible failed device holds Q, so it
Dan Williamsa4456852007-07-09 11:56:43 -07003172 * makes sense to check P (If anything else were failed,
3173 * we would have used P to recreate it).
3174 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07003175 sh->check_state = check_state_run;
Dan Williamsa4456852007-07-09 11:56:43 -07003176 }
NeilBrownf2b3b442011-07-26 11:35:19 +10003177 if (!s->q_failed && s->failed < 2) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07003178 /* Q is not failed, and we didn't use it to generate
Dan Williamsa4456852007-07-09 11:56:43 -07003179 * anything, so it makes sense to check it
3180 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07003181 if (sh->check_state == check_state_run)
3182 sh->check_state = check_state_run_pq;
3183 else
3184 sh->check_state = check_state_run_q;
Dan Williamsa4456852007-07-09 11:56:43 -07003185 }
Dan Williams36d1c642009-07-14 11:48:22 -07003186
Dan Williamsd82dfee2009-07-14 13:40:57 -07003187 /* discard potentially stale zero_sum_result */
3188 sh->ops.zero_sum_result = 0;
Dan Williams36d1c642009-07-14 11:48:22 -07003189
Dan Williamsd82dfee2009-07-14 13:40:57 -07003190 if (sh->check_state == check_state_run) {
3191 /* async_xor_zero_sum destroys the contents of P */
3192 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
3193 s->uptodate--;
Dan Williamsa4456852007-07-09 11:56:43 -07003194 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07003195 if (sh->check_state >= check_state_run &&
3196 sh->check_state <= check_state_run_pq) {
3197 /* async_syndrome_zero_sum preserves P and Q, so
3198 * no need to mark them !uptodate here
3199 */
3200 set_bit(STRIPE_OP_CHECK, &s->ops_request);
3201 break;
3202 }
Dan Williams36d1c642009-07-14 11:48:22 -07003203
Dan Williamsd82dfee2009-07-14 13:40:57 -07003204 /* we have 2-disk failure */
3205 BUG_ON(s->failed != 2);
3206 /* fall through */
3207 case check_state_compute_result:
3208 sh->check_state = check_state_idle;
Dan Williams36d1c642009-07-14 11:48:22 -07003209
Dan Williamsd82dfee2009-07-14 13:40:57 -07003210 /* check that a write has not made the stripe insync */
3211 if (test_bit(STRIPE_INSYNC, &sh->state))
3212 break;
Dan Williamsa4456852007-07-09 11:56:43 -07003213
3214 /* now write out any block on a failed drive,
Dan Williamsd82dfee2009-07-14 13:40:57 -07003215 * or P or Q if they were recomputed
Dan Williamsa4456852007-07-09 11:56:43 -07003216 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07003217 BUG_ON(s->uptodate < disks - 1); /* We don't need Q to recover */
Dan Williamsa4456852007-07-09 11:56:43 -07003218 if (s->failed == 2) {
NeilBrownf2b3b442011-07-26 11:35:19 +10003219 dev = &sh->dev[s->failed_num[1]];
Dan Williamsa4456852007-07-09 11:56:43 -07003220 s->locked++;
3221 set_bit(R5_LOCKED, &dev->flags);
3222 set_bit(R5_Wantwrite, &dev->flags);
3223 }
3224 if (s->failed >= 1) {
NeilBrownf2b3b442011-07-26 11:35:19 +10003225 dev = &sh->dev[s->failed_num[0]];
Dan Williamsa4456852007-07-09 11:56:43 -07003226 s->locked++;
3227 set_bit(R5_LOCKED, &dev->flags);
3228 set_bit(R5_Wantwrite, &dev->flags);
3229 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07003230 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
Dan Williamsa4456852007-07-09 11:56:43 -07003231 dev = &sh->dev[pd_idx];
3232 s->locked++;
3233 set_bit(R5_LOCKED, &dev->flags);
3234 set_bit(R5_Wantwrite, &dev->flags);
3235 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07003236 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
Dan Williamsa4456852007-07-09 11:56:43 -07003237 dev = &sh->dev[qd_idx];
3238 s->locked++;
3239 set_bit(R5_LOCKED, &dev->flags);
3240 set_bit(R5_Wantwrite, &dev->flags);
3241 }
3242 clear_bit(STRIPE_DEGRADED, &sh->state);
3243
3244 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsd82dfee2009-07-14 13:40:57 -07003245 break;
3246 case check_state_run:
3247 case check_state_run_q:
3248 case check_state_run_pq:
3249 break; /* we will be called again upon completion */
3250 case check_state_check_result:
3251 sh->check_state = check_state_idle;
3252
3253 /* handle a successful check operation, if parity is correct
3254 * we are done. Otherwise update the mismatch count and repair
3255 * parity if !MD_RECOVERY_CHECK
3256 */
3257 if (sh->ops.zero_sum_result == 0) {
3258 /* both parities are correct */
3259 if (!s->failed)
3260 set_bit(STRIPE_INSYNC, &sh->state);
3261 else {
3262 /* in contrast to the raid5 case we can validate
3263 * parity, but still have a failure to write
3264 * back
3265 */
3266 sh->check_state = check_state_compute_result;
3267 /* Returning at this point means that we may go
3268 * off and bring p and/or q uptodate again so
3269 * we make sure to check zero_sum_result again
3270 * to verify if p or q need writeback
3271 */
3272 }
3273 } else {
Jianpeng Ma7f7583d2012-10-11 14:17:59 +11003274 atomic64_add(STRIPE_SECTORS, &conf->mddev->resync_mismatches);
Dan Williamsd82dfee2009-07-14 13:40:57 -07003275 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
3276 /* don't try to repair!! */
3277 set_bit(STRIPE_INSYNC, &sh->state);
3278 else {
3279 int *target = &sh->ops.target;
3280
3281 sh->ops.target = -1;
3282 sh->ops.target2 = -1;
3283 sh->check_state = check_state_compute_run;
3284 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
3285 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3286 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
3287 set_bit(R5_Wantcompute,
3288 &sh->dev[pd_idx].flags);
3289 *target = pd_idx;
3290 target = &sh->ops.target2;
3291 s->uptodate++;
3292 }
3293 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
3294 set_bit(R5_Wantcompute,
3295 &sh->dev[qd_idx].flags);
3296 *target = qd_idx;
3297 s->uptodate++;
3298 }
3299 }
3300 }
3301 break;
3302 case check_state_compute_run:
3303 break;
3304 default:
3305 printk(KERN_ERR "%s: unknown check_state: %d sector: %llu\n",
3306 __func__, sh->check_state,
3307 (unsigned long long) sh->sector);
3308 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07003309 }
3310}
3311
NeilBrownd1688a62011-10-11 16:49:52 +11003312static void handle_stripe_expansion(struct r5conf *conf, struct stripe_head *sh)
Dan Williamsa4456852007-07-09 11:56:43 -07003313{
3314 int i;
3315
3316 /* We have read all the blocks in this stripe and now we need to
3317 * copy some of them into a target stripe for expand.
3318 */
Dan Williamsf0a50d32007-01-02 13:52:31 -07003319 struct dma_async_tx_descriptor *tx = NULL;
Dan Williamsa4456852007-07-09 11:56:43 -07003320 clear_bit(STRIPE_EXPAND_SOURCE, &sh->state);
3321 for (i = 0; i < sh->disks; i++)
NeilBrown34e04e82009-03-31 15:10:16 +11003322 if (i != sh->pd_idx && i != sh->qd_idx) {
NeilBrown911d4ee2009-03-31 14:39:38 +11003323 int dd_idx, j;
Dan Williamsa4456852007-07-09 11:56:43 -07003324 struct stripe_head *sh2;
Dan Williamsa08abd82009-06-03 11:43:59 -07003325 struct async_submit_ctl submit;
Dan Williamsa4456852007-07-09 11:56:43 -07003326
NeilBrown784052e2009-03-31 15:19:07 +11003327 sector_t bn = compute_blocknr(sh, i, 1);
NeilBrown911d4ee2009-03-31 14:39:38 +11003328 sector_t s = raid5_compute_sector(conf, bn, 0,
3329 &dd_idx, NULL);
NeilBrowna8c906c2009-06-09 14:39:59 +10003330 sh2 = get_active_stripe(conf, s, 0, 1, 1);
Dan Williamsa4456852007-07-09 11:56:43 -07003331 if (sh2 == NULL)
3332 /* so far only the early blocks of this stripe
3333 * have been requested. When later blocks
3334 * get requested, we will try again
3335 */
3336 continue;
3337 if (!test_bit(STRIPE_EXPANDING, &sh2->state) ||
3338 test_bit(R5_Expanded, &sh2->dev[dd_idx].flags)) {
3339 /* must have already done this block */
3340 release_stripe(sh2);
3341 continue;
3342 }
Dan Williamsf0a50d32007-01-02 13:52:31 -07003343
3344 /* place all the copies on one channel */
Dan Williamsa08abd82009-06-03 11:43:59 -07003345 init_async_submit(&submit, 0, tx, NULL, NULL, NULL);
Dan Williamsf0a50d32007-01-02 13:52:31 -07003346 tx = async_memcpy(sh2->dev[dd_idx].page,
Dan Williams88ba2aa2009-04-09 16:16:18 -07003347 sh->dev[i].page, 0, 0, STRIPE_SIZE,
Dan Williamsa08abd82009-06-03 11:43:59 -07003348 &submit);
Dan Williamsf0a50d32007-01-02 13:52:31 -07003349
Dan Williamsa4456852007-07-09 11:56:43 -07003350 set_bit(R5_Expanded, &sh2->dev[dd_idx].flags);
3351 set_bit(R5_UPTODATE, &sh2->dev[dd_idx].flags);
3352 for (j = 0; j < conf->raid_disks; j++)
3353 if (j != sh2->pd_idx &&
NeilBrown86c374b2011-07-27 11:00:36 +10003354 j != sh2->qd_idx &&
Dan Williamsa4456852007-07-09 11:56:43 -07003355 !test_bit(R5_Expanded, &sh2->dev[j].flags))
3356 break;
3357 if (j == conf->raid_disks) {
3358 set_bit(STRIPE_EXPAND_READY, &sh2->state);
3359 set_bit(STRIPE_HANDLE, &sh2->state);
3360 }
3361 release_stripe(sh2);
Dan Williamsf0a50d32007-01-02 13:52:31 -07003362
Dan Williamsa4456852007-07-09 11:56:43 -07003363 }
NeilBrowna2e08552007-09-11 15:23:36 -07003364 /* done submitting copies, wait for them to complete */
NeilBrown749586b2012-11-20 14:11:15 +11003365 async_tx_quiesce(&tx);
Dan Williamsa4456852007-07-09 11:56:43 -07003366}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367
3368/*
3369 * handle_stripe - do things to a stripe.
3370 *
NeilBrown9a3e1102011-12-23 10:17:53 +11003371 * We lock the stripe by setting STRIPE_ACTIVE and then examine the
3372 * state of various bits to see what needs to be done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373 * Possible results:
NeilBrown9a3e1102011-12-23 10:17:53 +11003374 * return some read requests which now have data
3375 * return some write requests which are safely on storage
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376 * schedule a read on some buffers
3377 * schedule a write of some buffers
3378 * return confirmation of parity correctness
3379 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380 */
Dan Williamsa4456852007-07-09 11:56:43 -07003381
NeilBrownacfe7262011-07-27 11:00:36 +10003382static void analyse_stripe(struct stripe_head *sh, struct stripe_head_state *s)
NeilBrown16a53ec2006-06-26 00:27:38 -07003383{
NeilBrownd1688a62011-10-11 16:49:52 +11003384 struct r5conf *conf = sh->raid_conf;
NeilBrownf4168852007-02-28 20:11:53 -08003385 int disks = sh->disks;
NeilBrown474af965fe2011-07-27 11:00:36 +10003386 struct r5dev *dev;
3387 int i;
NeilBrown9a3e1102011-12-23 10:17:53 +11003388 int do_recovery = 0;
NeilBrown16a53ec2006-06-26 00:27:38 -07003389
NeilBrownacfe7262011-07-27 11:00:36 +10003390 memset(s, 0, sizeof(*s));
NeilBrown16a53ec2006-06-26 00:27:38 -07003391
NeilBrownacfe7262011-07-27 11:00:36 +10003392 s->expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state);
3393 s->expanded = test_bit(STRIPE_EXPAND_READY, &sh->state);
3394 s->failed_num[0] = -1;
3395 s->failed_num[1] = -1;
3396
3397 /* Now to look around and see what can be done */
NeilBrown16a53ec2006-06-26 00:27:38 -07003398 rcu_read_lock();
3399 for (i=disks; i--; ) {
NeilBrown3cb03002011-10-11 16:45:26 +11003400 struct md_rdev *rdev;
NeilBrown31c176e2011-07-28 11:39:22 +10003401 sector_t first_bad;
3402 int bad_sectors;
3403 int is_bad = 0;
NeilBrownacfe7262011-07-27 11:00:36 +10003404
NeilBrown16a53ec2006-06-26 00:27:38 -07003405 dev = &sh->dev[i];
NeilBrown16a53ec2006-06-26 00:27:38 -07003406
Dan Williams45b42332007-07-09 11:56:43 -07003407 pr_debug("check %d: state 0x%lx read %p write %p written %p\n",
NeilBrown9a3e1102011-12-23 10:17:53 +11003408 i, dev->flags,
3409 dev->toread, dev->towrite, dev->written);
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003410 /* maybe we can reply to a read
3411 *
3412 * new wantfill requests are only permitted while
3413 * ops_complete_biofill is guaranteed to be inactive
3414 */
3415 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread &&
3416 !test_bit(STRIPE_BIOFILL_RUN, &sh->state))
3417 set_bit(R5_Wantfill, &dev->flags);
NeilBrown16a53ec2006-06-26 00:27:38 -07003418
3419 /* now count some things */
NeilBrowncc940152011-07-26 11:35:35 +10003420 if (test_bit(R5_LOCKED, &dev->flags))
3421 s->locked++;
3422 if (test_bit(R5_UPTODATE, &dev->flags))
3423 s->uptodate++;
Dan Williams2d6e4ec2009-09-16 12:11:54 -07003424 if (test_bit(R5_Wantcompute, &dev->flags)) {
NeilBrowncc940152011-07-26 11:35:35 +10003425 s->compute++;
3426 BUG_ON(s->compute > 2);
Dan Williams2d6e4ec2009-09-16 12:11:54 -07003427 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003428
NeilBrownacfe7262011-07-27 11:00:36 +10003429 if (test_bit(R5_Wantfill, &dev->flags))
NeilBrowncc940152011-07-26 11:35:35 +10003430 s->to_fill++;
NeilBrownacfe7262011-07-27 11:00:36 +10003431 else if (dev->toread)
NeilBrowncc940152011-07-26 11:35:35 +10003432 s->to_read++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003433 if (dev->towrite) {
NeilBrowncc940152011-07-26 11:35:35 +10003434 s->to_write++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003435 if (!test_bit(R5_OVERWRITE, &dev->flags))
NeilBrowncc940152011-07-26 11:35:35 +10003436 s->non_overwrite++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003437 }
Dan Williamsa4456852007-07-09 11:56:43 -07003438 if (dev->written)
NeilBrowncc940152011-07-26 11:35:35 +10003439 s->written++;
NeilBrown14a75d32011-12-23 10:17:52 +11003440 /* Prefer to use the replacement for reads, but only
3441 * if it is recovered enough and has no bad blocks.
3442 */
3443 rdev = rcu_dereference(conf->disks[i].replacement);
3444 if (rdev && !test_bit(Faulty, &rdev->flags) &&
3445 rdev->recovery_offset >= sh->sector + STRIPE_SECTORS &&
3446 !is_badblock(rdev, sh->sector, STRIPE_SECTORS,
3447 &first_bad, &bad_sectors))
3448 set_bit(R5_ReadRepl, &dev->flags);
3449 else {
NeilBrown9a3e1102011-12-23 10:17:53 +11003450 if (rdev)
3451 set_bit(R5_NeedReplace, &dev->flags);
NeilBrown14a75d32011-12-23 10:17:52 +11003452 rdev = rcu_dereference(conf->disks[i].rdev);
3453 clear_bit(R5_ReadRepl, &dev->flags);
3454 }
NeilBrown9283d8c2011-12-08 16:27:57 +11003455 if (rdev && test_bit(Faulty, &rdev->flags))
3456 rdev = NULL;
NeilBrown31c176e2011-07-28 11:39:22 +10003457 if (rdev) {
3458 is_bad = is_badblock(rdev, sh->sector, STRIPE_SECTORS,
3459 &first_bad, &bad_sectors);
3460 if (s->blocked_rdev == NULL
3461 && (test_bit(Blocked, &rdev->flags)
3462 || is_bad < 0)) {
3463 if (is_bad < 0)
3464 set_bit(BlockedBadBlocks,
3465 &rdev->flags);
3466 s->blocked_rdev = rdev;
3467 atomic_inc(&rdev->nr_pending);
3468 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07003469 }
NeilBrown415e72d2010-06-17 17:25:21 +10003470 clear_bit(R5_Insync, &dev->flags);
3471 if (!rdev)
3472 /* Not in-sync */;
NeilBrown31c176e2011-07-28 11:39:22 +10003473 else if (is_bad) {
3474 /* also not in-sync */
NeilBrown18b98372012-04-01 23:48:38 +10003475 if (!test_bit(WriteErrorSeen, &rdev->flags) &&
3476 test_bit(R5_UPTODATE, &dev->flags)) {
NeilBrown31c176e2011-07-28 11:39:22 +10003477 /* treat as in-sync, but with a read error
3478 * which we can now try to correct
3479 */
3480 set_bit(R5_Insync, &dev->flags);
3481 set_bit(R5_ReadError, &dev->flags);
3482 }
3483 } else if (test_bit(In_sync, &rdev->flags))
NeilBrown415e72d2010-06-17 17:25:21 +10003484 set_bit(R5_Insync, &dev->flags);
NeilBrown30d7a482011-12-23 09:57:00 +11003485 else if (sh->sector + STRIPE_SECTORS <= rdev->recovery_offset)
NeilBrown415e72d2010-06-17 17:25:21 +10003486 /* in sync if before recovery_offset */
NeilBrown30d7a482011-12-23 09:57:00 +11003487 set_bit(R5_Insync, &dev->flags);
3488 else if (test_bit(R5_UPTODATE, &dev->flags) &&
3489 test_bit(R5_Expanded, &dev->flags))
3490 /* If we've reshaped into here, we assume it is Insync.
3491 * We will shortly update recovery_offset to make
3492 * it official.
3493 */
3494 set_bit(R5_Insync, &dev->flags);
3495
Adam Kwolek5d8c71f2011-12-09 14:26:11 +11003496 if (rdev && test_bit(R5_WriteError, &dev->flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11003497 /* This flag does not apply to '.replacement'
3498 * only to .rdev, so make sure to check that*/
3499 struct md_rdev *rdev2 = rcu_dereference(
3500 conf->disks[i].rdev);
3501 if (rdev2 == rdev)
3502 clear_bit(R5_Insync, &dev->flags);
3503 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
NeilBrownbc2607f2011-07-28 11:39:22 +10003504 s->handle_bad_blocks = 1;
NeilBrown14a75d32011-12-23 10:17:52 +11003505 atomic_inc(&rdev2->nr_pending);
NeilBrownbc2607f2011-07-28 11:39:22 +10003506 } else
3507 clear_bit(R5_WriteError, &dev->flags);
3508 }
Adam Kwolek5d8c71f2011-12-09 14:26:11 +11003509 if (rdev && test_bit(R5_MadeGood, &dev->flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11003510 /* This flag does not apply to '.replacement'
3511 * only to .rdev, so make sure to check that*/
3512 struct md_rdev *rdev2 = rcu_dereference(
3513 conf->disks[i].rdev);
3514 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
NeilBrownb84db562011-07-28 11:39:23 +10003515 s->handle_bad_blocks = 1;
NeilBrown14a75d32011-12-23 10:17:52 +11003516 atomic_inc(&rdev2->nr_pending);
NeilBrownb84db562011-07-28 11:39:23 +10003517 } else
3518 clear_bit(R5_MadeGood, &dev->flags);
3519 }
NeilBrown977df362011-12-23 10:17:53 +11003520 if (test_bit(R5_MadeGoodRepl, &dev->flags)) {
3521 struct md_rdev *rdev2 = rcu_dereference(
3522 conf->disks[i].replacement);
3523 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
3524 s->handle_bad_blocks = 1;
3525 atomic_inc(&rdev2->nr_pending);
3526 } else
3527 clear_bit(R5_MadeGoodRepl, &dev->flags);
3528 }
NeilBrown415e72d2010-06-17 17:25:21 +10003529 if (!test_bit(R5_Insync, &dev->flags)) {
NeilBrown16a53ec2006-06-26 00:27:38 -07003530 /* The ReadError flag will just be confusing now */
3531 clear_bit(R5_ReadError, &dev->flags);
3532 clear_bit(R5_ReWrite, &dev->flags);
3533 }
NeilBrown415e72d2010-06-17 17:25:21 +10003534 if (test_bit(R5_ReadError, &dev->flags))
3535 clear_bit(R5_Insync, &dev->flags);
3536 if (!test_bit(R5_Insync, &dev->flags)) {
NeilBrowncc940152011-07-26 11:35:35 +10003537 if (s->failed < 2)
3538 s->failed_num[s->failed] = i;
3539 s->failed++;
NeilBrown9a3e1102011-12-23 10:17:53 +11003540 if (rdev && !test_bit(Faulty, &rdev->flags))
3541 do_recovery = 1;
NeilBrown415e72d2010-06-17 17:25:21 +10003542 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003543 }
NeilBrown9a3e1102011-12-23 10:17:53 +11003544 if (test_bit(STRIPE_SYNCING, &sh->state)) {
3545 /* If there is a failed device being replaced,
3546 * we must be recovering.
3547 * else if we are after recovery_cp, we must be syncing
majianpengc6d2e082012-04-02 01:16:59 +10003548 * else if MD_RECOVERY_REQUESTED is set, we also are syncing.
NeilBrown9a3e1102011-12-23 10:17:53 +11003549 * else we can only be replacing
3550 * sync and recovery both need to read all devices, and so
3551 * use the same flag.
3552 */
3553 if (do_recovery ||
majianpengc6d2e082012-04-02 01:16:59 +10003554 sh->sector >= conf->mddev->recovery_cp ||
3555 test_bit(MD_RECOVERY_REQUESTED, &(conf->mddev->recovery)))
NeilBrown9a3e1102011-12-23 10:17:53 +11003556 s->syncing = 1;
3557 else
3558 s->replacing = 1;
3559 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003560 rcu_read_unlock();
NeilBrowncc940152011-07-26 11:35:35 +10003561}
NeilBrownf4168852007-02-28 20:11:53 -08003562
NeilBrowncc940152011-07-26 11:35:35 +10003563static void handle_stripe(struct stripe_head *sh)
3564{
3565 struct stripe_head_state s;
NeilBrownd1688a62011-10-11 16:49:52 +11003566 struct r5conf *conf = sh->raid_conf;
NeilBrown3687c062011-07-27 11:00:36 +10003567 int i;
NeilBrown84789552011-07-27 11:00:36 +10003568 int prexor;
3569 int disks = sh->disks;
NeilBrown474af965fe2011-07-27 11:00:36 +10003570 struct r5dev *pdev, *qdev;
NeilBrowncc940152011-07-26 11:35:35 +10003571
3572 clear_bit(STRIPE_HANDLE, &sh->state);
Dan Williams257a4b42011-11-08 16:22:06 +11003573 if (test_and_set_bit_lock(STRIPE_ACTIVE, &sh->state)) {
NeilBrowncc940152011-07-26 11:35:35 +10003574 /* already being handled, ensure it gets handled
3575 * again when current action finishes */
3576 set_bit(STRIPE_HANDLE, &sh->state);
3577 return;
3578 }
3579
NeilBrownf8dfcff2013-03-12 12:18:06 +11003580 if (test_bit(STRIPE_SYNC_REQUESTED, &sh->state)) {
3581 spin_lock(&sh->stripe_lock);
3582 /* Cannot process 'sync' concurrently with 'discard' */
3583 if (!test_bit(STRIPE_DISCARD, &sh->state) &&
3584 test_and_clear_bit(STRIPE_SYNC_REQUESTED, &sh->state)) {
3585 set_bit(STRIPE_SYNCING, &sh->state);
3586 clear_bit(STRIPE_INSYNC, &sh->state);
NeilBrownf94c0b62013-07-22 12:57:21 +10003587 clear_bit(STRIPE_REPLACED, &sh->state);
NeilBrownf8dfcff2013-03-12 12:18:06 +11003588 }
3589 spin_unlock(&sh->stripe_lock);
NeilBrowncc940152011-07-26 11:35:35 +10003590 }
3591 clear_bit(STRIPE_DELAYED, &sh->state);
3592
3593 pr_debug("handling stripe %llu, state=%#lx cnt=%d, "
3594 "pd_idx=%d, qd_idx=%d\n, check:%d, reconstruct:%d\n",
3595 (unsigned long long)sh->sector, sh->state,
3596 atomic_read(&sh->count), sh->pd_idx, sh->qd_idx,
3597 sh->check_state, sh->reconstruct_state);
NeilBrowncc940152011-07-26 11:35:35 +10003598
NeilBrownacfe7262011-07-27 11:00:36 +10003599 analyse_stripe(sh, &s);
NeilBrownc5a31002011-07-27 11:00:36 +10003600
NeilBrownbc2607f2011-07-28 11:39:22 +10003601 if (s.handle_bad_blocks) {
3602 set_bit(STRIPE_HANDLE, &sh->state);
3603 goto finish;
3604 }
3605
NeilBrown474af965fe2011-07-27 11:00:36 +10003606 if (unlikely(s.blocked_rdev)) {
3607 if (s.syncing || s.expanding || s.expanded ||
NeilBrown9a3e1102011-12-23 10:17:53 +11003608 s.replacing || s.to_write || s.written) {
NeilBrown474af965fe2011-07-27 11:00:36 +10003609 set_bit(STRIPE_HANDLE, &sh->state);
3610 goto finish;
3611 }
3612 /* There is nothing for the blocked_rdev to block */
3613 rdev_dec_pending(s.blocked_rdev, conf->mddev);
3614 s.blocked_rdev = NULL;
3615 }
3616
3617 if (s.to_fill && !test_bit(STRIPE_BIOFILL_RUN, &sh->state)) {
3618 set_bit(STRIPE_OP_BIOFILL, &s.ops_request);
3619 set_bit(STRIPE_BIOFILL_RUN, &sh->state);
3620 }
3621
3622 pr_debug("locked=%d uptodate=%d to_read=%d"
3623 " to_write=%d failed=%d failed_num=%d,%d\n",
3624 s.locked, s.uptodate, s.to_read, s.to_write, s.failed,
3625 s.failed_num[0], s.failed_num[1]);
3626 /* check if the array has lost more than max_degraded devices and,
3627 * if so, some requests might need to be failed.
3628 */
NeilBrown9a3f5302011-11-08 16:22:01 +11003629 if (s.failed > conf->max_degraded) {
3630 sh->check_state = 0;
3631 sh->reconstruct_state = 0;
3632 if (s.to_read+s.to_write+s.written)
3633 handle_failed_stripe(conf, sh, &s, disks, &s.return_bi);
NeilBrown9a3e1102011-12-23 10:17:53 +11003634 if (s.syncing + s.replacing)
NeilBrown9a3f5302011-11-08 16:22:01 +11003635 handle_failed_sync(conf, sh, &s);
3636 }
NeilBrown474af965fe2011-07-27 11:00:36 +10003637
NeilBrown84789552011-07-27 11:00:36 +10003638 /* Now we check to see if any write operations have recently
3639 * completed
3640 */
3641 prexor = 0;
3642 if (sh->reconstruct_state == reconstruct_state_prexor_drain_result)
3643 prexor = 1;
3644 if (sh->reconstruct_state == reconstruct_state_drain_result ||
3645 sh->reconstruct_state == reconstruct_state_prexor_drain_result) {
3646 sh->reconstruct_state = reconstruct_state_idle;
3647
3648 /* All the 'written' buffers and the parity block are ready to
3649 * be written back to disk
3650 */
Shaohua Li9e4447682012-10-11 13:49:49 +11003651 BUG_ON(!test_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags) &&
3652 !test_bit(R5_Discard, &sh->dev[sh->pd_idx].flags));
NeilBrown84789552011-07-27 11:00:36 +10003653 BUG_ON(sh->qd_idx >= 0 &&
Shaohua Li9e4447682012-10-11 13:49:49 +11003654 !test_bit(R5_UPTODATE, &sh->dev[sh->qd_idx].flags) &&
3655 !test_bit(R5_Discard, &sh->dev[sh->qd_idx].flags));
NeilBrown84789552011-07-27 11:00:36 +10003656 for (i = disks; i--; ) {
3657 struct r5dev *dev = &sh->dev[i];
3658 if (test_bit(R5_LOCKED, &dev->flags) &&
3659 (i == sh->pd_idx || i == sh->qd_idx ||
3660 dev->written)) {
3661 pr_debug("Writing block %d\n", i);
3662 set_bit(R5_Wantwrite, &dev->flags);
3663 if (prexor)
3664 continue;
3665 if (!test_bit(R5_Insync, &dev->flags) ||
3666 ((i == sh->pd_idx || i == sh->qd_idx) &&
3667 s.failed == 0))
3668 set_bit(STRIPE_INSYNC, &sh->state);
3669 }
3670 }
3671 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3672 s.dec_preread_active = 1;
3673 }
3674
NeilBrownef5b7c62012-11-22 09:13:36 +11003675 /*
3676 * might be able to return some write requests if the parity blocks
3677 * are safe, or on a failed drive
3678 */
3679 pdev = &sh->dev[sh->pd_idx];
3680 s.p_failed = (s.failed >= 1 && s.failed_num[0] == sh->pd_idx)
3681 || (s.failed >= 2 && s.failed_num[1] == sh->pd_idx);
3682 qdev = &sh->dev[sh->qd_idx];
3683 s.q_failed = (s.failed >= 1 && s.failed_num[0] == sh->qd_idx)
3684 || (s.failed >= 2 && s.failed_num[1] == sh->qd_idx)
3685 || conf->level < 6;
3686
3687 if (s.written &&
3688 (s.p_failed || ((test_bit(R5_Insync, &pdev->flags)
3689 && !test_bit(R5_LOCKED, &pdev->flags)
3690 && (test_bit(R5_UPTODATE, &pdev->flags) ||
3691 test_bit(R5_Discard, &pdev->flags))))) &&
3692 (s.q_failed || ((test_bit(R5_Insync, &qdev->flags)
3693 && !test_bit(R5_LOCKED, &qdev->flags)
3694 && (test_bit(R5_UPTODATE, &qdev->flags) ||
3695 test_bit(R5_Discard, &qdev->flags))))))
3696 handle_stripe_clean_event(conf, sh, disks, &s.return_bi);
3697
3698 /* Now we might consider reading some blocks, either to check/generate
3699 * parity, or to satisfy requests
3700 * or to load a block that is being partially written.
3701 */
3702 if (s.to_read || s.non_overwrite
3703 || (conf->level == 6 && s.to_write && s.failed)
3704 || (s.syncing && (s.uptodate + s.compute < disks))
3705 || s.replacing
3706 || s.expanding)
3707 handle_stripe_fill(sh, &s, disks);
3708
NeilBrown84789552011-07-27 11:00:36 +10003709 /* Now to consider new write requests and what else, if anything
3710 * should be read. We do not handle new writes when:
3711 * 1/ A 'write' operation (copy+xor) is already in flight.
3712 * 2/ A 'check' operation is in flight, as it may clobber the parity
3713 * block.
3714 */
3715 if (s.to_write && !sh->reconstruct_state && !sh->check_state)
3716 handle_stripe_dirtying(conf, sh, &s, disks);
3717
3718 /* maybe we need to check and possibly fix the parity for this stripe
3719 * Any reads will already have been scheduled, so we just see if enough
3720 * data is available. The parity check is held off while parity
3721 * dependent operations are in flight.
3722 */
3723 if (sh->check_state ||
3724 (s.syncing && s.locked == 0 &&
3725 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
3726 !test_bit(STRIPE_INSYNC, &sh->state))) {
3727 if (conf->level == 6)
3728 handle_parity_checks6(conf, sh, &s, disks);
3729 else
3730 handle_parity_checks5(conf, sh, &s, disks);
3731 }
NeilBrownc5a31002011-07-27 11:00:36 +10003732
NeilBrownf94c0b62013-07-22 12:57:21 +10003733 if ((s.replacing || s.syncing) && s.locked == 0
3734 && !test_bit(STRIPE_COMPUTE_RUN, &sh->state)
3735 && !test_bit(STRIPE_REPLACED, &sh->state)) {
NeilBrown9a3e1102011-12-23 10:17:53 +11003736 /* Write out to replacement devices where possible */
3737 for (i = 0; i < conf->raid_disks; i++)
NeilBrownf94c0b62013-07-22 12:57:21 +10003738 if (test_bit(R5_NeedReplace, &sh->dev[i].flags)) {
3739 WARN_ON(!test_bit(R5_UPTODATE, &sh->dev[i].flags));
NeilBrown9a3e1102011-12-23 10:17:53 +11003740 set_bit(R5_WantReplace, &sh->dev[i].flags);
3741 set_bit(R5_LOCKED, &sh->dev[i].flags);
3742 s.locked++;
3743 }
NeilBrownf94c0b62013-07-22 12:57:21 +10003744 if (s.replacing)
3745 set_bit(STRIPE_INSYNC, &sh->state);
3746 set_bit(STRIPE_REPLACED, &sh->state);
NeilBrown9a3e1102011-12-23 10:17:53 +11003747 }
3748 if ((s.syncing || s.replacing) && s.locked == 0 &&
NeilBrownf94c0b62013-07-22 12:57:21 +10003749 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
NeilBrown9a3e1102011-12-23 10:17:53 +11003750 test_bit(STRIPE_INSYNC, &sh->state)) {
NeilBrownc5a31002011-07-27 11:00:36 +10003751 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
3752 clear_bit(STRIPE_SYNCING, &sh->state);
NeilBrownf8dfcff2013-03-12 12:18:06 +11003753 if (test_and_clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags))
3754 wake_up(&conf->wait_for_overlap);
NeilBrownc5a31002011-07-27 11:00:36 +10003755 }
3756
3757 /* If the failed drives are just a ReadError, then we might need
3758 * to progress the repair/check process
3759 */
3760 if (s.failed <= conf->max_degraded && !conf->mddev->ro)
3761 for (i = 0; i < s.failed; i++) {
3762 struct r5dev *dev = &sh->dev[s.failed_num[i]];
3763 if (test_bit(R5_ReadError, &dev->flags)
3764 && !test_bit(R5_LOCKED, &dev->flags)
3765 && test_bit(R5_UPTODATE, &dev->flags)
3766 ) {
3767 if (!test_bit(R5_ReWrite, &dev->flags)) {
3768 set_bit(R5_Wantwrite, &dev->flags);
3769 set_bit(R5_ReWrite, &dev->flags);
3770 set_bit(R5_LOCKED, &dev->flags);
3771 s.locked++;
3772 } else {
3773 /* let's read it back */
3774 set_bit(R5_Wantread, &dev->flags);
3775 set_bit(R5_LOCKED, &dev->flags);
3776 s.locked++;
3777 }
3778 }
3779 }
3780
3781
NeilBrown3687c062011-07-27 11:00:36 +10003782 /* Finish reconstruct operations initiated by the expansion process */
3783 if (sh->reconstruct_state == reconstruct_state_result) {
3784 struct stripe_head *sh_src
3785 = get_active_stripe(conf, sh->sector, 1, 1, 1);
3786 if (sh_src && test_bit(STRIPE_EXPAND_SOURCE, &sh_src->state)) {
3787 /* sh cannot be written until sh_src has been read.
3788 * so arrange for sh to be delayed a little
3789 */
3790 set_bit(STRIPE_DELAYED, &sh->state);
3791 set_bit(STRIPE_HANDLE, &sh->state);
3792 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE,
3793 &sh_src->state))
3794 atomic_inc(&conf->preread_active_stripes);
3795 release_stripe(sh_src);
3796 goto finish;
3797 }
3798 if (sh_src)
3799 release_stripe(sh_src);
NeilBrown16a53ec2006-06-26 00:27:38 -07003800
NeilBrown3687c062011-07-27 11:00:36 +10003801 sh->reconstruct_state = reconstruct_state_idle;
3802 clear_bit(STRIPE_EXPANDING, &sh->state);
3803 for (i = conf->raid_disks; i--; ) {
3804 set_bit(R5_Wantwrite, &sh->dev[i].flags);
3805 set_bit(R5_LOCKED, &sh->dev[i].flags);
3806 s.locked++;
3807 }
3808 }
3809
3810 if (s.expanded && test_bit(STRIPE_EXPANDING, &sh->state) &&
3811 !sh->reconstruct_state) {
3812 /* Need to write out all blocks after computing parity */
3813 sh->disks = conf->raid_disks;
3814 stripe_set_idx(sh->sector, conf, 0, sh);
3815 schedule_reconstruction(sh, &s, 1, 1);
3816 } else if (s.expanded && !sh->reconstruct_state && s.locked == 0) {
3817 clear_bit(STRIPE_EXPAND_READY, &sh->state);
3818 atomic_dec(&conf->reshape_stripes);
3819 wake_up(&conf->wait_for_overlap);
3820 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
3821 }
3822
3823 if (s.expanding && s.locked == 0 &&
3824 !test_bit(STRIPE_COMPUTE_RUN, &sh->state))
3825 handle_stripe_expansion(conf, sh);
3826
3827finish:
Dan Williams6bfe0b42008-04-30 00:52:32 -07003828 /* wait for this device to become unblocked */
NeilBrown5f066c62012-07-03 12:13:29 +10003829 if (unlikely(s.blocked_rdev)) {
3830 if (conf->mddev->external)
3831 md_wait_for_blocked_rdev(s.blocked_rdev,
3832 conf->mddev);
3833 else
3834 /* Internal metadata will immediately
3835 * be written by raid5d, so we don't
3836 * need to wait here.
3837 */
3838 rdev_dec_pending(s.blocked_rdev,
3839 conf->mddev);
3840 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07003841
NeilBrownbc2607f2011-07-28 11:39:22 +10003842 if (s.handle_bad_blocks)
3843 for (i = disks; i--; ) {
NeilBrown3cb03002011-10-11 16:45:26 +11003844 struct md_rdev *rdev;
NeilBrownbc2607f2011-07-28 11:39:22 +10003845 struct r5dev *dev = &sh->dev[i];
3846 if (test_and_clear_bit(R5_WriteError, &dev->flags)) {
3847 /* We own a safe reference to the rdev */
3848 rdev = conf->disks[i].rdev;
3849 if (!rdev_set_badblocks(rdev, sh->sector,
3850 STRIPE_SECTORS, 0))
3851 md_error(conf->mddev, rdev);
3852 rdev_dec_pending(rdev, conf->mddev);
3853 }
NeilBrownb84db562011-07-28 11:39:23 +10003854 if (test_and_clear_bit(R5_MadeGood, &dev->flags)) {
3855 rdev = conf->disks[i].rdev;
3856 rdev_clear_badblocks(rdev, sh->sector,
NeilBrownc6563a82012-05-21 09:27:00 +10003857 STRIPE_SECTORS, 0);
NeilBrownb84db562011-07-28 11:39:23 +10003858 rdev_dec_pending(rdev, conf->mddev);
3859 }
NeilBrown977df362011-12-23 10:17:53 +11003860 if (test_and_clear_bit(R5_MadeGoodRepl, &dev->flags)) {
3861 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11003862 if (!rdev)
3863 /* rdev have been moved down */
3864 rdev = conf->disks[i].rdev;
NeilBrown977df362011-12-23 10:17:53 +11003865 rdev_clear_badblocks(rdev, sh->sector,
NeilBrownc6563a82012-05-21 09:27:00 +10003866 STRIPE_SECTORS, 0);
NeilBrown977df362011-12-23 10:17:53 +11003867 rdev_dec_pending(rdev, conf->mddev);
3868 }
NeilBrownbc2607f2011-07-28 11:39:22 +10003869 }
3870
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003871 if (s.ops_request)
3872 raid_run_ops(sh, s.ops_request);
3873
Dan Williamsf0e43bc2008-06-28 08:31:55 +10003874 ops_run_io(sh, &s);
3875
NeilBrownc5709ef2011-07-26 11:35:20 +10003876 if (s.dec_preread_active) {
NeilBrown729a1862009-12-14 12:49:50 +11003877 /* We delay this until after ops_run_io so that if make_request
Tejun Heoe9c74692010-09-03 11:56:18 +02003878 * is waiting on a flush, it won't continue until the writes
NeilBrown729a1862009-12-14 12:49:50 +11003879 * have actually been submitted.
3880 */
3881 atomic_dec(&conf->preread_active_stripes);
3882 if (atomic_read(&conf->preread_active_stripes) <
3883 IO_THRESHOLD)
3884 md_wakeup_thread(conf->mddev->thread);
3885 }
3886
NeilBrownc5709ef2011-07-26 11:35:20 +10003887 return_io(s.return_bi);
NeilBrown16a53ec2006-06-26 00:27:38 -07003888
Dan Williams257a4b42011-11-08 16:22:06 +11003889 clear_bit_unlock(STRIPE_ACTIVE, &sh->state);
NeilBrown16a53ec2006-06-26 00:27:38 -07003890}
3891
NeilBrownd1688a62011-10-11 16:49:52 +11003892static void raid5_activate_delayed(struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893{
3894 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD) {
3895 while (!list_empty(&conf->delayed_list)) {
3896 struct list_head *l = conf->delayed_list.next;
3897 struct stripe_head *sh;
3898 sh = list_entry(l, struct stripe_head, lru);
3899 list_del_init(l);
3900 clear_bit(STRIPE_DELAYED, &sh->state);
3901 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3902 atomic_inc(&conf->preread_active_stripes);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003903 list_add_tail(&sh->lru, &conf->hold_list);
Shaohua Li851c30c2013-08-28 14:30:16 +08003904 raid5_wakeup_stripe_thread(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 }
NeilBrown482c0832011-04-18 18:25:42 +10003906 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907}
3908
NeilBrownd1688a62011-10-11 16:49:52 +11003909static void activate_bit_delay(struct r5conf *conf)
NeilBrown72626682005-09-09 16:23:54 -07003910{
3911 /* device_lock is held */
3912 struct list_head head;
3913 list_add(&head, &conf->bitmap_list);
3914 list_del_init(&conf->bitmap_list);
3915 while (!list_empty(&head)) {
3916 struct stripe_head *sh = list_entry(head.next, struct stripe_head, lru);
3917 list_del_init(&sh->lru);
3918 atomic_inc(&sh->count);
3919 __release_stripe(conf, sh);
3920 }
3921}
3922
NeilBrownfd01b882011-10-11 16:47:53 +11003923int md_raid5_congested(struct mddev *mddev, int bits)
NeilBrownf022b2f2006-10-03 01:15:56 -07003924{
NeilBrownd1688a62011-10-11 16:49:52 +11003925 struct r5conf *conf = mddev->private;
NeilBrownf022b2f2006-10-03 01:15:56 -07003926
3927 /* No difference between reads and writes. Just check
3928 * how busy the stripe_cache is
3929 */
NeilBrown3fa841d2009-09-23 18:10:29 +10003930
NeilBrownf022b2f2006-10-03 01:15:56 -07003931 if (conf->inactive_blocked)
3932 return 1;
3933 if (conf->quiesce)
3934 return 1;
3935 if (list_empty_careful(&conf->inactive_list))
3936 return 1;
3937
3938 return 0;
3939}
NeilBrown11d8a6e2010-07-26 11:57:07 +10003940EXPORT_SYMBOL_GPL(md_raid5_congested);
3941
3942static int raid5_congested(void *data, int bits)
3943{
NeilBrownfd01b882011-10-11 16:47:53 +11003944 struct mddev *mddev = data;
NeilBrown11d8a6e2010-07-26 11:57:07 +10003945
3946 return mddev_congested(mddev, bits) ||
3947 md_raid5_congested(mddev, bits);
3948}
NeilBrownf022b2f2006-10-03 01:15:56 -07003949
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003950/* We want read requests to align with chunks where possible,
3951 * but write requests don't need to.
3952 */
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003953static int raid5_mergeable_bvec(struct request_queue *q,
3954 struct bvec_merge_data *bvm,
3955 struct bio_vec *biovec)
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003956{
NeilBrownfd01b882011-10-11 16:47:53 +11003957 struct mddev *mddev = q->queuedata;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003958 sector_t sector = bvm->bi_sector + get_start_sect(bvm->bi_bdev);
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003959 int max;
Andre Noll9d8f0362009-06-18 08:45:01 +10003960 unsigned int chunk_sectors = mddev->chunk_sectors;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003961 unsigned int bio_sectors = bvm->bi_size >> 9;
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003962
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003963 if ((bvm->bi_rw & 1) == WRITE)
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003964 return biovec->bv_len; /* always allow writes to be mergeable */
3965
Andre Noll664e7c42009-06-18 08:45:27 +10003966 if (mddev->new_chunk_sectors < mddev->chunk_sectors)
3967 chunk_sectors = mddev->new_chunk_sectors;
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003968 max = (chunk_sectors - ((sector & (chunk_sectors - 1)) + bio_sectors)) << 9;
3969 if (max < 0) max = 0;
3970 if (max <= biovec->bv_len && bio_sectors == 0)
3971 return biovec->bv_len;
3972 else
3973 return max;
3974}
3975
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003976
NeilBrownfd01b882011-10-11 16:47:53 +11003977static int in_chunk_boundary(struct mddev *mddev, struct bio *bio)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003978{
3979 sector_t sector = bio->bi_sector + get_start_sect(bio->bi_bdev);
Andre Noll9d8f0362009-06-18 08:45:01 +10003980 unsigned int chunk_sectors = mddev->chunk_sectors;
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08003981 unsigned int bio_sectors = bio_sectors(bio);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003982
Andre Noll664e7c42009-06-18 08:45:27 +10003983 if (mddev->new_chunk_sectors < mddev->chunk_sectors)
3984 chunk_sectors = mddev->new_chunk_sectors;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003985 return chunk_sectors >=
3986 ((sector & (chunk_sectors - 1)) + bio_sectors);
3987}
3988
3989/*
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003990 * add bio to the retry LIFO ( in O(1) ... we are in interrupt )
3991 * later sampled by raid5d.
3992 */
NeilBrownd1688a62011-10-11 16:49:52 +11003993static void add_bio_to_retry(struct bio *bi,struct r5conf *conf)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003994{
3995 unsigned long flags;
3996
3997 spin_lock_irqsave(&conf->device_lock, flags);
3998
3999 bi->bi_next = conf->retry_read_aligned_list;
4000 conf->retry_read_aligned_list = bi;
4001
4002 spin_unlock_irqrestore(&conf->device_lock, flags);
4003 md_wakeup_thread(conf->mddev->thread);
4004}
4005
4006
NeilBrownd1688a62011-10-11 16:49:52 +11004007static struct bio *remove_bio_from_retry(struct r5conf *conf)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004008{
4009 struct bio *bi;
4010
4011 bi = conf->retry_read_aligned;
4012 if (bi) {
4013 conf->retry_read_aligned = NULL;
4014 return bi;
4015 }
4016 bi = conf->retry_read_aligned_list;
4017 if(bi) {
Neil Brown387bb172007-02-08 14:20:29 -08004018 conf->retry_read_aligned_list = bi->bi_next;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004019 bi->bi_next = NULL;
Jens Axboe960e7392008-08-15 10:41:18 +02004020 /*
4021 * this sets the active strip count to 1 and the processed
4022 * strip count to zero (upper 8 bits)
4023 */
Shaohua Lie7836bd62012-07-19 16:01:31 +10004024 raid5_set_bi_stripes(bi, 1); /* biased count of active stripes */
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004025 }
4026
4027 return bi;
4028}
4029
4030
4031/*
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004032 * The "raid5_align_endio" should check if the read succeeded and if it
4033 * did, call bio_endio on the original bio (having bio_put the new bio
4034 * first).
4035 * If the read failed..
4036 */
NeilBrown6712ecf2007-09-27 12:47:43 +02004037static void raid5_align_endio(struct bio *bi, int error)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004038{
4039 struct bio* raid_bi = bi->bi_private;
NeilBrownfd01b882011-10-11 16:47:53 +11004040 struct mddev *mddev;
NeilBrownd1688a62011-10-11 16:49:52 +11004041 struct r5conf *conf;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004042 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
NeilBrown3cb03002011-10-11 16:45:26 +11004043 struct md_rdev *rdev;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004044
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004045 bio_put(bi);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004046
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004047 rdev = (void*)raid_bi->bi_next;
4048 raid_bi->bi_next = NULL;
NeilBrown2b7f2222010-03-25 16:06:03 +11004049 mddev = rdev->mddev;
4050 conf = mddev->private;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004051
4052 rdev_dec_pending(rdev, conf->mddev);
4053
4054 if (!error && uptodate) {
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07004055 trace_block_bio_complete(bdev_get_queue(raid_bi->bi_bdev),
4056 raid_bi, 0);
NeilBrown6712ecf2007-09-27 12:47:43 +02004057 bio_endio(raid_bi, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004058 if (atomic_dec_and_test(&conf->active_aligned_reads))
4059 wake_up(&conf->wait_for_stripe);
NeilBrown6712ecf2007-09-27 12:47:43 +02004060 return;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004061 }
4062
4063
Dan Williams45b42332007-07-09 11:56:43 -07004064 pr_debug("raid5_align_endio : io error...handing IO for a retry\n");
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004065
4066 add_bio_to_retry(raid_bi, conf);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004067}
4068
Neil Brown387bb172007-02-08 14:20:29 -08004069static int bio_fits_rdev(struct bio *bi)
4070{
Jens Axboe165125e2007-07-24 09:28:11 +02004071 struct request_queue *q = bdev_get_queue(bi->bi_bdev);
Neil Brown387bb172007-02-08 14:20:29 -08004072
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08004073 if (bio_sectors(bi) > queue_max_sectors(q))
Neil Brown387bb172007-02-08 14:20:29 -08004074 return 0;
4075 blk_recount_segments(q, bi);
Martin K. Petersen8a783622010-02-26 00:20:39 -05004076 if (bi->bi_phys_segments > queue_max_segments(q))
Neil Brown387bb172007-02-08 14:20:29 -08004077 return 0;
4078
4079 if (q->merge_bvec_fn)
4080 /* it's too hard to apply the merge_bvec_fn at this stage,
4081 * just just give up
4082 */
4083 return 0;
4084
4085 return 1;
4086}
4087
4088
NeilBrownfd01b882011-10-11 16:47:53 +11004089static int chunk_aligned_read(struct mddev *mddev, struct bio * raid_bio)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004090{
NeilBrownd1688a62011-10-11 16:49:52 +11004091 struct r5conf *conf = mddev->private;
NeilBrown8553fe72009-12-14 12:49:47 +11004092 int dd_idx;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004093 struct bio* align_bi;
NeilBrown3cb03002011-10-11 16:45:26 +11004094 struct md_rdev *rdev;
NeilBrown671488c2011-12-23 10:17:52 +11004095 sector_t end_sector;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004096
4097 if (!in_chunk_boundary(mddev, raid_bio)) {
Dan Williams45b42332007-07-09 11:56:43 -07004098 pr_debug("chunk_aligned_read : non aligned\n");
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004099 return 0;
4100 }
4101 /*
NeilBrowna167f662010-10-26 18:31:13 +11004102 * use bio_clone_mddev to make a copy of the bio
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004103 */
NeilBrowna167f662010-10-26 18:31:13 +11004104 align_bi = bio_clone_mddev(raid_bio, GFP_NOIO, mddev);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004105 if (!align_bi)
4106 return 0;
4107 /*
4108 * set bi_end_io to a new function, and set bi_private to the
4109 * original bio.
4110 */
4111 align_bi->bi_end_io = raid5_align_endio;
4112 align_bi->bi_private = raid_bio;
4113 /*
4114 * compute position
4115 */
NeilBrown112bf892009-03-31 14:39:38 +11004116 align_bi->bi_sector = raid5_compute_sector(conf, raid_bio->bi_sector,
4117 0,
NeilBrown911d4ee2009-03-31 14:39:38 +11004118 &dd_idx, NULL);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004119
Kent Overstreetf73a1c72012-09-25 15:05:12 -07004120 end_sector = bio_end_sector(align_bi);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004121 rcu_read_lock();
NeilBrown671488c2011-12-23 10:17:52 +11004122 rdev = rcu_dereference(conf->disks[dd_idx].replacement);
4123 if (!rdev || test_bit(Faulty, &rdev->flags) ||
4124 rdev->recovery_offset < end_sector) {
4125 rdev = rcu_dereference(conf->disks[dd_idx].rdev);
4126 if (rdev &&
4127 (test_bit(Faulty, &rdev->flags) ||
4128 !(test_bit(In_sync, &rdev->flags) ||
4129 rdev->recovery_offset >= end_sector)))
4130 rdev = NULL;
4131 }
4132 if (rdev) {
NeilBrown31c176e2011-07-28 11:39:22 +10004133 sector_t first_bad;
4134 int bad_sectors;
4135
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004136 atomic_inc(&rdev->nr_pending);
4137 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004138 raid_bio->bi_next = (void*)rdev;
4139 align_bi->bi_bdev = rdev->bdev;
4140 align_bi->bi_flags &= ~(1 << BIO_SEG_VALID);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004141
NeilBrown31c176e2011-07-28 11:39:22 +10004142 if (!bio_fits_rdev(align_bi) ||
Kent Overstreetaa8b57a2013-02-05 15:19:29 -08004143 is_badblock(rdev, align_bi->bi_sector, bio_sectors(align_bi),
NeilBrown31c176e2011-07-28 11:39:22 +10004144 &first_bad, &bad_sectors)) {
4145 /* too big in some way, or has a known bad block */
Neil Brown387bb172007-02-08 14:20:29 -08004146 bio_put(align_bi);
4147 rdev_dec_pending(rdev, mddev);
4148 return 0;
4149 }
4150
majianpeng6c0544e2012-06-12 08:31:10 +08004151 /* No reshape active, so we can trust rdev->data_offset */
4152 align_bi->bi_sector += rdev->data_offset;
4153
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004154 spin_lock_irq(&conf->device_lock);
4155 wait_event_lock_irq(conf->wait_for_stripe,
4156 conf->quiesce == 0,
Lukas Czernereed8c022012-11-30 11:42:40 +01004157 conf->device_lock);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004158 atomic_inc(&conf->active_aligned_reads);
4159 spin_unlock_irq(&conf->device_lock);
4160
Jonathan Brassowe3620a32013-03-07 16:22:01 -06004161 if (mddev->gendisk)
4162 trace_block_bio_remap(bdev_get_queue(align_bi->bi_bdev),
4163 align_bi, disk_devt(mddev->gendisk),
4164 raid_bio->bi_sector);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004165 generic_make_request(align_bi);
4166 return 1;
4167 } else {
4168 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004169 bio_put(align_bi);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004170 return 0;
4171 }
4172}
4173
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004174/* __get_priority_stripe - get the next stripe to process
4175 *
4176 * Full stripe writes are allowed to pass preread active stripes up until
4177 * the bypass_threshold is exceeded. In general the bypass_count
4178 * increments when the handle_list is handled before the hold_list; however, it
4179 * will not be incremented when STRIPE_IO_STARTED is sampled set signifying a
4180 * stripe with in flight i/o. The bypass_count will be reset when the
4181 * head of the hold_list has changed, i.e. the head was promoted to the
4182 * handle_list.
4183 */
Shaohua Li851c30c2013-08-28 14:30:16 +08004184static struct stripe_head *__get_priority_stripe(struct r5conf *conf, int group)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004185{
Shaohua Li851c30c2013-08-28 14:30:16 +08004186 struct stripe_head *sh = NULL, *tmp;
4187 struct list_head *handle_list = NULL;
Shaohua Libfc90cb2013-08-29 15:40:32 +08004188 struct r5worker_group *wg = NULL;
Shaohua Li851c30c2013-08-28 14:30:16 +08004189
4190 if (conf->worker_cnt_per_group == 0) {
4191 handle_list = &conf->handle_list;
4192 } else if (group != ANY_GROUP) {
4193 handle_list = &conf->worker_groups[group].handle_list;
Shaohua Libfc90cb2013-08-29 15:40:32 +08004194 wg = &conf->worker_groups[group];
Shaohua Li851c30c2013-08-28 14:30:16 +08004195 } else {
4196 int i;
4197 for (i = 0; i < conf->group_cnt; i++) {
4198 handle_list = &conf->worker_groups[i].handle_list;
Shaohua Libfc90cb2013-08-29 15:40:32 +08004199 wg = &conf->worker_groups[i];
Shaohua Li851c30c2013-08-28 14:30:16 +08004200 if (!list_empty(handle_list))
4201 break;
4202 }
4203 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004204
4205 pr_debug("%s: handle: %s hold: %s full_writes: %d bypass_count: %d\n",
4206 __func__,
Shaohua Li851c30c2013-08-28 14:30:16 +08004207 list_empty(handle_list) ? "empty" : "busy",
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004208 list_empty(&conf->hold_list) ? "empty" : "busy",
4209 atomic_read(&conf->pending_full_writes), conf->bypass_count);
4210
Shaohua Li851c30c2013-08-28 14:30:16 +08004211 if (!list_empty(handle_list)) {
4212 sh = list_entry(handle_list->next, typeof(*sh), lru);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004213
4214 if (list_empty(&conf->hold_list))
4215 conf->bypass_count = 0;
4216 else if (!test_bit(STRIPE_IO_STARTED, &sh->state)) {
4217 if (conf->hold_list.next == conf->last_hold)
4218 conf->bypass_count++;
4219 else {
4220 conf->last_hold = conf->hold_list.next;
4221 conf->bypass_count -= conf->bypass_threshold;
4222 if (conf->bypass_count < 0)
4223 conf->bypass_count = 0;
4224 }
4225 }
4226 } else if (!list_empty(&conf->hold_list) &&
4227 ((conf->bypass_threshold &&
4228 conf->bypass_count > conf->bypass_threshold) ||
4229 atomic_read(&conf->pending_full_writes) == 0)) {
Shaohua Li851c30c2013-08-28 14:30:16 +08004230
4231 list_for_each_entry(tmp, &conf->hold_list, lru) {
4232 if (conf->worker_cnt_per_group == 0 ||
4233 group == ANY_GROUP ||
4234 !cpu_online(tmp->cpu) ||
4235 cpu_to_group(tmp->cpu) == group) {
4236 sh = tmp;
4237 break;
4238 }
4239 }
4240
4241 if (sh) {
4242 conf->bypass_count -= conf->bypass_threshold;
4243 if (conf->bypass_count < 0)
4244 conf->bypass_count = 0;
4245 }
Shaohua Libfc90cb2013-08-29 15:40:32 +08004246 wg = NULL;
Shaohua Li851c30c2013-08-28 14:30:16 +08004247 }
4248
4249 if (!sh)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004250 return NULL;
4251
Shaohua Libfc90cb2013-08-29 15:40:32 +08004252 if (wg) {
4253 wg->stripes_cnt--;
4254 sh->group = NULL;
4255 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004256 list_del_init(&sh->lru);
4257 atomic_inc(&sh->count);
4258 BUG_ON(atomic_read(&sh->count) != 1);
4259 return sh;
4260}
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004261
Shaohua Li8811b592012-08-02 08:33:00 +10004262struct raid5_plug_cb {
4263 struct blk_plug_cb cb;
4264 struct list_head list;
4265};
4266
4267static void raid5_unplug(struct blk_plug_cb *blk_cb, bool from_schedule)
4268{
4269 struct raid5_plug_cb *cb = container_of(
4270 blk_cb, struct raid5_plug_cb, cb);
4271 struct stripe_head *sh;
4272 struct mddev *mddev = cb->cb.data;
4273 struct r5conf *conf = mddev->private;
NeilBrowna9add5d2012-10-31 11:59:09 +11004274 int cnt = 0;
Shaohua Li8811b592012-08-02 08:33:00 +10004275
4276 if (cb->list.next && !list_empty(&cb->list)) {
4277 spin_lock_irq(&conf->device_lock);
4278 while (!list_empty(&cb->list)) {
4279 sh = list_first_entry(&cb->list, struct stripe_head, lru);
4280 list_del_init(&sh->lru);
4281 /*
4282 * avoid race release_stripe_plug() sees
4283 * STRIPE_ON_UNPLUG_LIST clear but the stripe
4284 * is still in our list
4285 */
4286 smp_mb__before_clear_bit();
4287 clear_bit(STRIPE_ON_UNPLUG_LIST, &sh->state);
Shaohua Li773ca822013-08-27 17:50:39 +08004288 /*
4289 * STRIPE_ON_RELEASE_LIST could be set here. In that
4290 * case, the count is always > 1 here
4291 */
Shaohua Li8811b592012-08-02 08:33:00 +10004292 __release_stripe(conf, sh);
NeilBrowna9add5d2012-10-31 11:59:09 +11004293 cnt++;
Shaohua Li8811b592012-08-02 08:33:00 +10004294 }
4295 spin_unlock_irq(&conf->device_lock);
4296 }
Jonathan Brassowe3620a32013-03-07 16:22:01 -06004297 if (mddev->queue)
4298 trace_block_unplug(mddev->queue, cnt, !from_schedule);
Shaohua Li8811b592012-08-02 08:33:00 +10004299 kfree(cb);
4300}
4301
4302static void release_stripe_plug(struct mddev *mddev,
4303 struct stripe_head *sh)
4304{
4305 struct blk_plug_cb *blk_cb = blk_check_plugged(
4306 raid5_unplug, mddev,
4307 sizeof(struct raid5_plug_cb));
4308 struct raid5_plug_cb *cb;
4309
4310 if (!blk_cb) {
4311 release_stripe(sh);
4312 return;
4313 }
4314
4315 cb = container_of(blk_cb, struct raid5_plug_cb, cb);
4316
4317 if (cb->list.next == NULL)
4318 INIT_LIST_HEAD(&cb->list);
4319
4320 if (!test_and_set_bit(STRIPE_ON_UNPLUG_LIST, &sh->state))
4321 list_add_tail(&sh->lru, &cb->list);
4322 else
4323 release_stripe(sh);
4324}
4325
Shaohua Li620125f2012-10-11 13:49:05 +11004326static void make_discard_request(struct mddev *mddev, struct bio *bi)
4327{
4328 struct r5conf *conf = mddev->private;
4329 sector_t logical_sector, last_sector;
4330 struct stripe_head *sh;
4331 int remaining;
4332 int stripe_sectors;
4333
4334 if (mddev->reshape_position != MaxSector)
4335 /* Skip discard while reshape is happening */
4336 return;
4337
4338 logical_sector = bi->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
4339 last_sector = bi->bi_sector + (bi->bi_size>>9);
4340
4341 bi->bi_next = NULL;
4342 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
4343
4344 stripe_sectors = conf->chunk_sectors *
4345 (conf->raid_disks - conf->max_degraded);
4346 logical_sector = DIV_ROUND_UP_SECTOR_T(logical_sector,
4347 stripe_sectors);
4348 sector_div(last_sector, stripe_sectors);
4349
4350 logical_sector *= conf->chunk_sectors;
4351 last_sector *= conf->chunk_sectors;
4352
4353 for (; logical_sector < last_sector;
4354 logical_sector += STRIPE_SECTORS) {
4355 DEFINE_WAIT(w);
4356 int d;
4357 again:
4358 sh = get_active_stripe(conf, logical_sector, 0, 0, 0);
4359 prepare_to_wait(&conf->wait_for_overlap, &w,
4360 TASK_UNINTERRUPTIBLE);
NeilBrownf8dfcff2013-03-12 12:18:06 +11004361 set_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags);
4362 if (test_bit(STRIPE_SYNCING, &sh->state)) {
4363 release_stripe(sh);
4364 schedule();
4365 goto again;
4366 }
4367 clear_bit(R5_Overlap, &sh->dev[sh->pd_idx].flags);
Shaohua Li620125f2012-10-11 13:49:05 +11004368 spin_lock_irq(&sh->stripe_lock);
4369 for (d = 0; d < conf->raid_disks; d++) {
4370 if (d == sh->pd_idx || d == sh->qd_idx)
4371 continue;
4372 if (sh->dev[d].towrite || sh->dev[d].toread) {
4373 set_bit(R5_Overlap, &sh->dev[d].flags);
4374 spin_unlock_irq(&sh->stripe_lock);
4375 release_stripe(sh);
4376 schedule();
4377 goto again;
4378 }
4379 }
NeilBrownf8dfcff2013-03-12 12:18:06 +11004380 set_bit(STRIPE_DISCARD, &sh->state);
Shaohua Li620125f2012-10-11 13:49:05 +11004381 finish_wait(&conf->wait_for_overlap, &w);
4382 for (d = 0; d < conf->raid_disks; d++) {
4383 if (d == sh->pd_idx || d == sh->qd_idx)
4384 continue;
4385 sh->dev[d].towrite = bi;
4386 set_bit(R5_OVERWRITE, &sh->dev[d].flags);
4387 raid5_inc_bi_active_stripes(bi);
4388 }
4389 spin_unlock_irq(&sh->stripe_lock);
4390 if (conf->mddev->bitmap) {
4391 for (d = 0;
4392 d < conf->raid_disks - conf->max_degraded;
4393 d++)
4394 bitmap_startwrite(mddev->bitmap,
4395 sh->sector,
4396 STRIPE_SECTORS,
4397 0);
4398 sh->bm_seq = conf->seq_flush + 1;
4399 set_bit(STRIPE_BIT_DELAY, &sh->state);
4400 }
4401
4402 set_bit(STRIPE_HANDLE, &sh->state);
4403 clear_bit(STRIPE_DELAYED, &sh->state);
4404 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
4405 atomic_inc(&conf->preread_active_stripes);
4406 release_stripe_plug(mddev, sh);
4407 }
4408
4409 remaining = raid5_dec_bi_active_stripes(bi);
4410 if (remaining == 0) {
4411 md_write_end(mddev);
4412 bio_endio(bi, 0);
4413 }
4414}
4415
Linus Torvaldsb4fdcb02011-11-04 17:06:58 -07004416static void make_request(struct mddev *mddev, struct bio * bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417{
NeilBrownd1688a62011-10-11 16:49:52 +11004418 struct r5conf *conf = mddev->private;
NeilBrown911d4ee2009-03-31 14:39:38 +11004419 int dd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420 sector_t new_sector;
4421 sector_t logical_sector, last_sector;
4422 struct stripe_head *sh;
Jens Axboea3623572005-11-01 09:26:16 +01004423 const int rw = bio_data_dir(bi);
NeilBrown49077322010-03-25 16:20:56 +11004424 int remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004425
Tejun Heoe9c74692010-09-03 11:56:18 +02004426 if (unlikely(bi->bi_rw & REQ_FLUSH)) {
4427 md_flush_request(mddev, bi);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02004428 return;
NeilBrowne5dcdd82005-09-09 16:23:41 -07004429 }
4430
NeilBrown3d310eb2005-06-21 17:17:26 -07004431 md_write_start(mddev, bi);
NeilBrown06d91a52005-06-21 17:17:12 -07004432
NeilBrown802ba062006-12-13 00:34:13 -08004433 if (rw == READ &&
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08004434 mddev->reshape_position == MaxSector &&
NeilBrown21a52c62010-04-01 15:02:13 +11004435 chunk_aligned_read(mddev,bi))
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02004436 return;
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08004437
Shaohua Li620125f2012-10-11 13:49:05 +11004438 if (unlikely(bi->bi_rw & REQ_DISCARD)) {
4439 make_discard_request(mddev, bi);
4440 return;
4441 }
4442
Linus Torvalds1da177e2005-04-16 15:20:36 -07004443 logical_sector = bi->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
Kent Overstreetf73a1c72012-09-25 15:05:12 -07004444 last_sector = bio_end_sector(bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004445 bi->bi_next = NULL;
4446 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
NeilBrown06d91a52005-06-21 17:17:12 -07004447
Linus Torvalds1da177e2005-04-16 15:20:36 -07004448 for (;logical_sector < last_sector; logical_sector += STRIPE_SECTORS) {
4449 DEFINE_WAIT(w);
NeilBrownb5663ba2009-03-31 14:39:38 +11004450 int previous;
NeilBrownc46501b2013-08-27 15:52:13 +10004451 int seq;
NeilBrownb578d552006-03-27 01:18:12 -08004452
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004453 retry:
NeilBrownc46501b2013-08-27 15:52:13 +10004454 seq = read_seqcount_begin(&conf->gen_lock);
NeilBrownb5663ba2009-03-31 14:39:38 +11004455 previous = 0;
NeilBrownb578d552006-03-27 01:18:12 -08004456 prepare_to_wait(&conf->wait_for_overlap, &w, TASK_UNINTERRUPTIBLE);
NeilBrownb0f9ec02009-03-31 15:27:18 +11004457 if (unlikely(conf->reshape_progress != MaxSector)) {
NeilBrownfef9c612009-03-31 15:16:46 +11004458 /* spinlock is needed as reshape_progress may be
NeilBrowndf8e7f72006-03-27 01:18:15 -08004459 * 64bit on a 32bit platform, and so it might be
4460 * possible to see a half-updated value
Jesper Juhlaeb878b2011-04-10 18:06:17 +02004461 * Of course reshape_progress could change after
NeilBrowndf8e7f72006-03-27 01:18:15 -08004462 * the lock is dropped, so once we get a reference
4463 * to the stripe that we think it is, we will have
4464 * to check again.
4465 */
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004466 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10004467 if (mddev->reshape_backwards
NeilBrownfef9c612009-03-31 15:16:46 +11004468 ? logical_sector < conf->reshape_progress
4469 : logical_sector >= conf->reshape_progress) {
NeilBrownb5663ba2009-03-31 14:39:38 +11004470 previous = 1;
4471 } else {
NeilBrown2c810cd2012-05-21 09:27:00 +10004472 if (mddev->reshape_backwards
NeilBrownfef9c612009-03-31 15:16:46 +11004473 ? logical_sector < conf->reshape_safe
4474 : logical_sector >= conf->reshape_safe) {
NeilBrownb578d552006-03-27 01:18:12 -08004475 spin_unlock_irq(&conf->device_lock);
4476 schedule();
4477 goto retry;
4478 }
4479 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004480 spin_unlock_irq(&conf->device_lock);
4481 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004482
NeilBrown112bf892009-03-31 14:39:38 +11004483 new_sector = raid5_compute_sector(conf, logical_sector,
4484 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11004485 &dd_idx, NULL);
NeilBrown0c55e022010-05-03 14:09:02 +10004486 pr_debug("raid456: make_request, sector %llu logical %llu\n",
NeilBrownc46501b2013-08-27 15:52:13 +10004487 (unsigned long long)new_sector,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488 (unsigned long long)logical_sector);
4489
NeilBrownb5663ba2009-03-31 14:39:38 +11004490 sh = get_active_stripe(conf, new_sector, previous,
NeilBrowna8c906c2009-06-09 14:39:59 +10004491 (bi->bi_rw&RWA_MASK), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492 if (sh) {
NeilBrownb0f9ec02009-03-31 15:27:18 +11004493 if (unlikely(previous)) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004494 /* expansion might have moved on while waiting for a
NeilBrowndf8e7f72006-03-27 01:18:15 -08004495 * stripe, so we must do the range check again.
4496 * Expansion could still move past after this
4497 * test, but as we are holding a reference to
4498 * 'sh', we know that if that happens,
4499 * STRIPE_EXPANDING will get set and the expansion
4500 * won't proceed until we finish with the stripe.
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004501 */
4502 int must_retry = 0;
4503 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10004504 if (mddev->reshape_backwards
NeilBrownb0f9ec02009-03-31 15:27:18 +11004505 ? logical_sector >= conf->reshape_progress
4506 : logical_sector < conf->reshape_progress)
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004507 /* mismatch, need to try again */
4508 must_retry = 1;
4509 spin_unlock_irq(&conf->device_lock);
4510 if (must_retry) {
4511 release_stripe(sh);
Dan Williams7a3ab902009-06-16 16:00:33 -07004512 schedule();
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004513 goto retry;
4514 }
4515 }
NeilBrownc46501b2013-08-27 15:52:13 +10004516 if (read_seqcount_retry(&conf->gen_lock, seq)) {
4517 /* Might have got the wrong stripe_head
4518 * by accident
4519 */
4520 release_stripe(sh);
4521 goto retry;
4522 }
NeilBrowne62e58a2009-07-01 13:15:35 +10004523
Namhyung Kimffd96e32011-07-18 17:38:51 +10004524 if (rw == WRITE &&
NeilBrowna5c308d2009-07-01 13:15:35 +10004525 logical_sector >= mddev->suspend_lo &&
NeilBrowne464eaf2006-03-27 01:18:14 -08004526 logical_sector < mddev->suspend_hi) {
4527 release_stripe(sh);
NeilBrowne62e58a2009-07-01 13:15:35 +10004528 /* As the suspend_* range is controlled by
4529 * userspace, we want an interruptible
4530 * wait.
4531 */
4532 flush_signals(current);
4533 prepare_to_wait(&conf->wait_for_overlap,
4534 &w, TASK_INTERRUPTIBLE);
4535 if (logical_sector >= mddev->suspend_lo &&
4536 logical_sector < mddev->suspend_hi)
4537 schedule();
NeilBrowne464eaf2006-03-27 01:18:14 -08004538 goto retry;
4539 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004540
4541 if (test_bit(STRIPE_EXPANDING, &sh->state) ||
Namhyung Kimffd96e32011-07-18 17:38:51 +10004542 !add_stripe_bio(sh, bi, dd_idx, rw)) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004543 /* Stripe is busy expanding or
4544 * add failed due to overlap. Flush everything
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545 * and wait a while
4546 */
NeilBrown482c0832011-04-18 18:25:42 +10004547 md_wakeup_thread(mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548 release_stripe(sh);
4549 schedule();
4550 goto retry;
4551 }
4552 finish_wait(&conf->wait_for_overlap, &w);
NeilBrown6ed30032008-02-06 01:40:00 -08004553 set_bit(STRIPE_HANDLE, &sh->state);
4554 clear_bit(STRIPE_DELAYED, &sh->state);
NeilBrowna852d7b2012-09-19 12:48:30 +10004555 if ((bi->bi_rw & REQ_SYNC) &&
NeilBrown729a1862009-12-14 12:49:50 +11004556 !test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
4557 atomic_inc(&conf->preread_active_stripes);
Shaohua Li8811b592012-08-02 08:33:00 +10004558 release_stripe_plug(mddev, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559 } else {
4560 /* cannot get stripe for read-ahead, just give-up */
4561 clear_bit(BIO_UPTODATE, &bi->bi_flags);
4562 finish_wait(&conf->wait_for_overlap, &w);
4563 break;
4564 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565 }
NeilBrown7c13edc2011-04-18 18:25:43 +10004566
Shaohua Lie7836bd62012-07-19 16:01:31 +10004567 remaining = raid5_dec_bi_active_stripes(bi);
NeilBrownf6344752006-03-27 01:18:17 -08004568 if (remaining == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569
NeilBrown16a53ec2006-06-26 00:27:38 -07004570 if ( rw == WRITE )
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571 md_write_end(mddev);
NeilBrown6712ecf2007-09-27 12:47:43 +02004572
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07004573 trace_block_bio_complete(bdev_get_queue(bi->bi_bdev),
4574 bi, 0);
Neil Brown0e13fe232008-06-28 08:31:20 +10004575 bio_endio(bi, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004576 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577}
4578
NeilBrownfd01b882011-10-11 16:47:53 +11004579static sector_t raid5_size(struct mddev *mddev, sector_t sectors, int raid_disks);
Dan Williamsb522adc2009-03-31 15:00:31 +11004580
NeilBrownfd01b882011-10-11 16:47:53 +11004581static sector_t reshape_request(struct mddev *mddev, sector_t sector_nr, int *skipped)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582{
NeilBrown52c03292006-06-26 00:27:43 -07004583 /* reshaping is quite different to recovery/resync so it is
4584 * handled quite separately ... here.
4585 *
4586 * On each call to sync_request, we gather one chunk worth of
4587 * destination stripes and flag them as expanding.
4588 * Then we find all the source stripes and request reads.
4589 * As the reads complete, handle_stripe will copy the data
4590 * into the destination stripe and release that stripe.
4591 */
NeilBrownd1688a62011-10-11 16:49:52 +11004592 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593 struct stripe_head *sh;
NeilBrownccfcc3c2006-03-27 01:18:09 -08004594 sector_t first_sector, last_sector;
NeilBrownf4168852007-02-28 20:11:53 -08004595 int raid_disks = conf->previous_raid_disks;
4596 int data_disks = raid_disks - conf->max_degraded;
4597 int new_data_disks = conf->raid_disks - conf->max_degraded;
NeilBrown52c03292006-06-26 00:27:43 -07004598 int i;
4599 int dd_idx;
NeilBrownc8f517c2009-03-31 15:28:40 +11004600 sector_t writepos, readpos, safepos;
NeilBrownec32a2b2009-03-31 15:17:38 +11004601 sector_t stripe_addr;
NeilBrown7a661382009-03-31 15:21:40 +11004602 int reshape_sectors;
NeilBrownab69ae12009-03-31 15:26:47 +11004603 struct list_head stripes;
NeilBrown52c03292006-06-26 00:27:43 -07004604
NeilBrownfef9c612009-03-31 15:16:46 +11004605 if (sector_nr == 0) {
4606 /* If restarting in the middle, skip the initial sectors */
NeilBrown2c810cd2012-05-21 09:27:00 +10004607 if (mddev->reshape_backwards &&
NeilBrownfef9c612009-03-31 15:16:46 +11004608 conf->reshape_progress < raid5_size(mddev, 0, 0)) {
4609 sector_nr = raid5_size(mddev, 0, 0)
4610 - conf->reshape_progress;
NeilBrown2c810cd2012-05-21 09:27:00 +10004611 } else if (!mddev->reshape_backwards &&
NeilBrownfef9c612009-03-31 15:16:46 +11004612 conf->reshape_progress > 0)
4613 sector_nr = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08004614 sector_div(sector_nr, new_data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11004615 if (sector_nr) {
NeilBrown8dee7212009-11-06 14:59:29 +11004616 mddev->curr_resync_completed = sector_nr;
4617 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrownfef9c612009-03-31 15:16:46 +11004618 *skipped = 1;
4619 return sector_nr;
4620 }
NeilBrown52c03292006-06-26 00:27:43 -07004621 }
4622
NeilBrown7a661382009-03-31 15:21:40 +11004623 /* We need to process a full chunk at a time.
4624 * If old and new chunk sizes differ, we need to process the
4625 * largest of these
4626 */
Andre Noll664e7c42009-06-18 08:45:27 +10004627 if (mddev->new_chunk_sectors > mddev->chunk_sectors)
4628 reshape_sectors = mddev->new_chunk_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11004629 else
Andre Noll9d8f0362009-06-18 08:45:01 +10004630 reshape_sectors = mddev->chunk_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11004631
NeilBrownb5254dd2012-05-21 09:27:01 +10004632 /* We update the metadata at least every 10 seconds, or when
4633 * the data about to be copied would over-write the source of
4634 * the data at the front of the range. i.e. one new_stripe
4635 * along from reshape_progress new_maps to after where
4636 * reshape_safe old_maps to
NeilBrown52c03292006-06-26 00:27:43 -07004637 */
NeilBrownfef9c612009-03-31 15:16:46 +11004638 writepos = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08004639 sector_div(writepos, new_data_disks);
NeilBrownc8f517c2009-03-31 15:28:40 +11004640 readpos = conf->reshape_progress;
4641 sector_div(readpos, data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11004642 safepos = conf->reshape_safe;
NeilBrownf4168852007-02-28 20:11:53 -08004643 sector_div(safepos, data_disks);
NeilBrown2c810cd2012-05-21 09:27:00 +10004644 if (mddev->reshape_backwards) {
NeilBrowned37d832009-05-27 21:39:05 +10004645 writepos -= min_t(sector_t, reshape_sectors, writepos);
NeilBrownc8f517c2009-03-31 15:28:40 +11004646 readpos += reshape_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11004647 safepos += reshape_sectors;
NeilBrownfef9c612009-03-31 15:16:46 +11004648 } else {
NeilBrown7a661382009-03-31 15:21:40 +11004649 writepos += reshape_sectors;
NeilBrowned37d832009-05-27 21:39:05 +10004650 readpos -= min_t(sector_t, reshape_sectors, readpos);
4651 safepos -= min_t(sector_t, reshape_sectors, safepos);
NeilBrownfef9c612009-03-31 15:16:46 +11004652 }
NeilBrown52c03292006-06-26 00:27:43 -07004653
NeilBrownb5254dd2012-05-21 09:27:01 +10004654 /* Having calculated the 'writepos' possibly use it
4655 * to set 'stripe_addr' which is where we will write to.
4656 */
4657 if (mddev->reshape_backwards) {
4658 BUG_ON(conf->reshape_progress == 0);
4659 stripe_addr = writepos;
4660 BUG_ON((mddev->dev_sectors &
4661 ~((sector_t)reshape_sectors - 1))
4662 - reshape_sectors - stripe_addr
4663 != sector_nr);
4664 } else {
4665 BUG_ON(writepos != sector_nr + reshape_sectors);
4666 stripe_addr = sector_nr;
4667 }
4668
NeilBrownc8f517c2009-03-31 15:28:40 +11004669 /* 'writepos' is the most advanced device address we might write.
4670 * 'readpos' is the least advanced device address we might read.
4671 * 'safepos' is the least address recorded in the metadata as having
4672 * been reshaped.
NeilBrownb5254dd2012-05-21 09:27:01 +10004673 * If there is a min_offset_diff, these are adjusted either by
4674 * increasing the safepos/readpos if diff is negative, or
4675 * increasing writepos if diff is positive.
4676 * If 'readpos' is then behind 'writepos', there is no way that we can
NeilBrownc8f517c2009-03-31 15:28:40 +11004677 * ensure safety in the face of a crash - that must be done by userspace
4678 * making a backup of the data. So in that case there is no particular
4679 * rush to update metadata.
4680 * Otherwise if 'safepos' is behind 'writepos', then we really need to
4681 * update the metadata to advance 'safepos' to match 'readpos' so that
4682 * we can be safe in the event of a crash.
4683 * So we insist on updating metadata if safepos is behind writepos and
4684 * readpos is beyond writepos.
4685 * In any case, update the metadata every 10 seconds.
4686 * Maybe that number should be configurable, but I'm not sure it is
4687 * worth it.... maybe it could be a multiple of safemode_delay???
4688 */
NeilBrownb5254dd2012-05-21 09:27:01 +10004689 if (conf->min_offset_diff < 0) {
4690 safepos += -conf->min_offset_diff;
4691 readpos += -conf->min_offset_diff;
4692 } else
4693 writepos += conf->min_offset_diff;
4694
NeilBrown2c810cd2012-05-21 09:27:00 +10004695 if ((mddev->reshape_backwards
NeilBrownc8f517c2009-03-31 15:28:40 +11004696 ? (safepos > writepos && readpos < writepos)
4697 : (safepos < writepos && readpos > writepos)) ||
4698 time_after(jiffies, conf->reshape_checkpoint + 10*HZ)) {
NeilBrown52c03292006-06-26 00:27:43 -07004699 /* Cannot proceed until we've updated the superblock... */
4700 wait_event(conf->wait_for_overlap,
4701 atomic_read(&conf->reshape_stripes)==0);
NeilBrownfef9c612009-03-31 15:16:46 +11004702 mddev->reshape_position = conf->reshape_progress;
NeilBrown75d3da42011-01-14 09:14:34 +11004703 mddev->curr_resync_completed = sector_nr;
NeilBrownc8f517c2009-03-31 15:28:40 +11004704 conf->reshape_checkpoint = jiffies;
NeilBrown850b2b42006-10-03 01:15:46 -07004705 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrown52c03292006-06-26 00:27:43 -07004706 md_wakeup_thread(mddev->thread);
NeilBrown850b2b42006-10-03 01:15:46 -07004707 wait_event(mddev->sb_wait, mddev->flags == 0 ||
NeilBrown52c03292006-06-26 00:27:43 -07004708 kthread_should_stop());
4709 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11004710 conf->reshape_safe = mddev->reshape_position;
NeilBrown52c03292006-06-26 00:27:43 -07004711 spin_unlock_irq(&conf->device_lock);
4712 wake_up(&conf->wait_for_overlap);
NeilBrownacb180b2009-04-14 16:28:34 +10004713 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrown52c03292006-06-26 00:27:43 -07004714 }
4715
NeilBrownab69ae12009-03-31 15:26:47 +11004716 INIT_LIST_HEAD(&stripes);
NeilBrown7a661382009-03-31 15:21:40 +11004717 for (i = 0; i < reshape_sectors; i += STRIPE_SECTORS) {
NeilBrown52c03292006-06-26 00:27:43 -07004718 int j;
NeilBrowna9f326e2009-09-23 18:06:41 +10004719 int skipped_disk = 0;
NeilBrowna8c906c2009-06-09 14:39:59 +10004720 sh = get_active_stripe(conf, stripe_addr+i, 0, 0, 1);
NeilBrown52c03292006-06-26 00:27:43 -07004721 set_bit(STRIPE_EXPANDING, &sh->state);
4722 atomic_inc(&conf->reshape_stripes);
4723 /* If any of this stripe is beyond the end of the old
4724 * array, then we need to zero those blocks
4725 */
4726 for (j=sh->disks; j--;) {
4727 sector_t s;
4728 if (j == sh->pd_idx)
4729 continue;
NeilBrownf4168852007-02-28 20:11:53 -08004730 if (conf->level == 6 &&
NeilBrownd0dabf72009-03-31 14:39:38 +11004731 j == sh->qd_idx)
NeilBrownf4168852007-02-28 20:11:53 -08004732 continue;
NeilBrown784052e2009-03-31 15:19:07 +11004733 s = compute_blocknr(sh, j, 0);
Dan Williamsb522adc2009-03-31 15:00:31 +11004734 if (s < raid5_size(mddev, 0, 0)) {
NeilBrowna9f326e2009-09-23 18:06:41 +10004735 skipped_disk = 1;
NeilBrown52c03292006-06-26 00:27:43 -07004736 continue;
4737 }
4738 memset(page_address(sh->dev[j].page), 0, STRIPE_SIZE);
4739 set_bit(R5_Expanded, &sh->dev[j].flags);
4740 set_bit(R5_UPTODATE, &sh->dev[j].flags);
4741 }
NeilBrowna9f326e2009-09-23 18:06:41 +10004742 if (!skipped_disk) {
NeilBrown52c03292006-06-26 00:27:43 -07004743 set_bit(STRIPE_EXPAND_READY, &sh->state);
4744 set_bit(STRIPE_HANDLE, &sh->state);
4745 }
NeilBrownab69ae12009-03-31 15:26:47 +11004746 list_add(&sh->lru, &stripes);
NeilBrown52c03292006-06-26 00:27:43 -07004747 }
4748 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10004749 if (mddev->reshape_backwards)
NeilBrown7a661382009-03-31 15:21:40 +11004750 conf->reshape_progress -= reshape_sectors * new_data_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11004751 else
NeilBrown7a661382009-03-31 15:21:40 +11004752 conf->reshape_progress += reshape_sectors * new_data_disks;
NeilBrown52c03292006-06-26 00:27:43 -07004753 spin_unlock_irq(&conf->device_lock);
4754 /* Ok, those stripe are ready. We can start scheduling
4755 * reads on the source stripes.
4756 * The source stripes are determined by mapping the first and last
4757 * block on the destination stripes.
4758 */
NeilBrown52c03292006-06-26 00:27:43 -07004759 first_sector =
NeilBrownec32a2b2009-03-31 15:17:38 +11004760 raid5_compute_sector(conf, stripe_addr*(new_data_disks),
NeilBrown911d4ee2009-03-31 14:39:38 +11004761 1, &dd_idx, NULL);
NeilBrown52c03292006-06-26 00:27:43 -07004762 last_sector =
NeilBrown0e6e0272009-06-09 16:32:22 +10004763 raid5_compute_sector(conf, ((stripe_addr+reshape_sectors)
Andre Noll09c9e5f2009-06-18 08:45:55 +10004764 * new_data_disks - 1),
NeilBrown911d4ee2009-03-31 14:39:38 +11004765 1, &dd_idx, NULL);
Andre Noll58c0fed2009-03-31 14:33:13 +11004766 if (last_sector >= mddev->dev_sectors)
4767 last_sector = mddev->dev_sectors - 1;
NeilBrown52c03292006-06-26 00:27:43 -07004768 while (first_sector <= last_sector) {
NeilBrowna8c906c2009-06-09 14:39:59 +10004769 sh = get_active_stripe(conf, first_sector, 1, 0, 1);
NeilBrown52c03292006-06-26 00:27:43 -07004770 set_bit(STRIPE_EXPAND_SOURCE, &sh->state);
4771 set_bit(STRIPE_HANDLE, &sh->state);
4772 release_stripe(sh);
4773 first_sector += STRIPE_SECTORS;
4774 }
NeilBrownab69ae12009-03-31 15:26:47 +11004775 /* Now that the sources are clearly marked, we can release
4776 * the destination stripes
4777 */
4778 while (!list_empty(&stripes)) {
4779 sh = list_entry(stripes.next, struct stripe_head, lru);
4780 list_del_init(&sh->lru);
4781 release_stripe(sh);
4782 }
NeilBrownc6207272008-02-06 01:39:52 -08004783 /* If this takes us to the resync_max point where we have to pause,
4784 * then we need to write out the superblock.
4785 */
NeilBrown7a661382009-03-31 15:21:40 +11004786 sector_nr += reshape_sectors;
NeilBrownc03f6a12009-04-17 11:06:30 +10004787 if ((sector_nr - mddev->curr_resync_completed) * 2
4788 >= mddev->resync_max - mddev->curr_resync_completed) {
NeilBrownc6207272008-02-06 01:39:52 -08004789 /* Cannot proceed until we've updated the superblock... */
4790 wait_event(conf->wait_for_overlap,
4791 atomic_read(&conf->reshape_stripes) == 0);
NeilBrownfef9c612009-03-31 15:16:46 +11004792 mddev->reshape_position = conf->reshape_progress;
NeilBrown75d3da42011-01-14 09:14:34 +11004793 mddev->curr_resync_completed = sector_nr;
NeilBrownc8f517c2009-03-31 15:28:40 +11004794 conf->reshape_checkpoint = jiffies;
NeilBrownc6207272008-02-06 01:39:52 -08004795 set_bit(MD_CHANGE_DEVS, &mddev->flags);
4796 md_wakeup_thread(mddev->thread);
4797 wait_event(mddev->sb_wait,
4798 !test_bit(MD_CHANGE_DEVS, &mddev->flags)
4799 || kthread_should_stop());
4800 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11004801 conf->reshape_safe = mddev->reshape_position;
NeilBrownc6207272008-02-06 01:39:52 -08004802 spin_unlock_irq(&conf->device_lock);
4803 wake_up(&conf->wait_for_overlap);
NeilBrownacb180b2009-04-14 16:28:34 +10004804 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrownc6207272008-02-06 01:39:52 -08004805 }
NeilBrown7a661382009-03-31 15:21:40 +11004806 return reshape_sectors;
NeilBrown52c03292006-06-26 00:27:43 -07004807}
4808
4809/* FIXME go_faster isn't used */
NeilBrownfd01b882011-10-11 16:47:53 +11004810static inline sector_t sync_request(struct mddev *mddev, sector_t sector_nr, int *skipped, int go_faster)
NeilBrown52c03292006-06-26 00:27:43 -07004811{
NeilBrownd1688a62011-10-11 16:49:52 +11004812 struct r5conf *conf = mddev->private;
NeilBrown52c03292006-06-26 00:27:43 -07004813 struct stripe_head *sh;
Andre Noll58c0fed2009-03-31 14:33:13 +11004814 sector_t max_sector = mddev->dev_sectors;
NeilBrown57dab0b2010-10-19 10:03:39 +11004815 sector_t sync_blocks;
NeilBrown16a53ec2006-06-26 00:27:38 -07004816 int still_degraded = 0;
4817 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004818
NeilBrown72626682005-09-09 16:23:54 -07004819 if (sector_nr >= max_sector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820 /* just being told to finish up .. nothing much to do */
NeilBrowncea9c222009-03-31 15:15:05 +11004821
NeilBrown29269552006-03-27 01:18:10 -08004822 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery)) {
4823 end_reshape(conf);
4824 return 0;
4825 }
NeilBrown72626682005-09-09 16:23:54 -07004826
4827 if (mddev->curr_resync < max_sector) /* aborted */
4828 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
4829 &sync_blocks, 1);
NeilBrown16a53ec2006-06-26 00:27:38 -07004830 else /* completed sync */
NeilBrown72626682005-09-09 16:23:54 -07004831 conf->fullsync = 0;
4832 bitmap_close_sync(mddev->bitmap);
4833
Linus Torvalds1da177e2005-04-16 15:20:36 -07004834 return 0;
4835 }
NeilBrownccfcc3c2006-03-27 01:18:09 -08004836
NeilBrown64bd6602009-08-03 10:59:58 +10004837 /* Allow raid5_quiesce to complete */
4838 wait_event(conf->wait_for_overlap, conf->quiesce != 2);
4839
NeilBrown52c03292006-06-26 00:27:43 -07004840 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery))
4841 return reshape_request(mddev, sector_nr, skipped);
NeilBrownf6705572006-03-27 01:18:11 -08004842
NeilBrownc6207272008-02-06 01:39:52 -08004843 /* No need to check resync_max as we never do more than one
4844 * stripe, and as resync_max will always be on a chunk boundary,
4845 * if the check in md_do_sync didn't fire, there is no chance
4846 * of overstepping resync_max here
4847 */
4848
NeilBrown16a53ec2006-06-26 00:27:38 -07004849 /* if there is too many failed drives and we are trying
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850 * to resync, then assert that we are finished, because there is
4851 * nothing we can do.
4852 */
NeilBrown3285edf2006-06-26 00:27:55 -07004853 if (mddev->degraded >= conf->max_degraded &&
NeilBrown16a53ec2006-06-26 00:27:38 -07004854 test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
Andre Noll58c0fed2009-03-31 14:33:13 +11004855 sector_t rv = mddev->dev_sectors - sector_nr;
NeilBrown57afd892005-06-21 17:17:13 -07004856 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004857 return rv;
4858 }
majianpeng6f608042013-04-24 11:42:41 +10004859 if (!test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
4860 !conf->fullsync &&
4861 !bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
4862 sync_blocks >= STRIPE_SECTORS) {
NeilBrown72626682005-09-09 16:23:54 -07004863 /* we can skip this block, and probably more */
4864 sync_blocks /= STRIPE_SECTORS;
4865 *skipped = 1;
4866 return sync_blocks * STRIPE_SECTORS; /* keep things rounded to whole stripes */
4867 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004868
NeilBrownb47490c2008-02-06 01:39:50 -08004869 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
4870
NeilBrowna8c906c2009-06-09 14:39:59 +10004871 sh = get_active_stripe(conf, sector_nr, 0, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004872 if (sh == NULL) {
NeilBrowna8c906c2009-06-09 14:39:59 +10004873 sh = get_active_stripe(conf, sector_nr, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004874 /* make sure we don't swamp the stripe cache if someone else
NeilBrown16a53ec2006-06-26 00:27:38 -07004875 * is trying to get access
Linus Torvalds1da177e2005-04-16 15:20:36 -07004876 */
Nishanth Aravamudan66c006a2005-11-07 01:01:17 -08004877 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004878 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004879 /* Need to check if array will still be degraded after recovery/resync
4880 * We don't need to check the 'failed' flag as when that gets set,
4881 * recovery aborts.
4882 */
NeilBrownf001a702009-06-09 14:30:31 +10004883 for (i = 0; i < conf->raid_disks; i++)
NeilBrown16a53ec2006-06-26 00:27:38 -07004884 if (conf->disks[i].rdev == NULL)
4885 still_degraded = 1;
4886
4887 bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, still_degraded);
4888
NeilBrown83206d62011-07-26 11:19:49 +10004889 set_bit(STRIPE_SYNC_REQUESTED, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890
NeilBrown14425772009-10-16 15:55:25 +11004891 handle_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004892 release_stripe(sh);
4893
4894 return STRIPE_SECTORS;
4895}
4896
NeilBrownd1688a62011-10-11 16:49:52 +11004897static int retry_aligned_read(struct r5conf *conf, struct bio *raid_bio)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004898{
4899 /* We may not be able to submit a whole bio at once as there
4900 * may not be enough stripe_heads available.
4901 * We cannot pre-allocate enough stripe_heads as we may need
4902 * more than exist in the cache (if we allow ever large chunks).
4903 * So we do one stripe head at a time and record in
4904 * ->bi_hw_segments how many have been done.
4905 *
4906 * We *know* that this entire raid_bio is in one chunk, so
4907 * it will be only one 'dd_idx' and only need one call to raid5_compute_sector.
4908 */
4909 struct stripe_head *sh;
NeilBrown911d4ee2009-03-31 14:39:38 +11004910 int dd_idx;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004911 sector_t sector, logical_sector, last_sector;
4912 int scnt = 0;
4913 int remaining;
4914 int handled = 0;
4915
4916 logical_sector = raid_bio->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
NeilBrown112bf892009-03-31 14:39:38 +11004917 sector = raid5_compute_sector(conf, logical_sector,
NeilBrown911d4ee2009-03-31 14:39:38 +11004918 0, &dd_idx, NULL);
Kent Overstreetf73a1c72012-09-25 15:05:12 -07004919 last_sector = bio_end_sector(raid_bio);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004920
4921 for (; logical_sector < last_sector;
Neil Brown387bb172007-02-08 14:20:29 -08004922 logical_sector += STRIPE_SECTORS,
4923 sector += STRIPE_SECTORS,
4924 scnt++) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004925
Shaohua Lie7836bd62012-07-19 16:01:31 +10004926 if (scnt < raid5_bi_processed_stripes(raid_bio))
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004927 /* already done this stripe */
4928 continue;
4929
NeilBrowna8c906c2009-06-09 14:39:59 +10004930 sh = get_active_stripe(conf, sector, 0, 1, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004931
4932 if (!sh) {
4933 /* failed to get a stripe - must wait */
Shaohua Lie7836bd62012-07-19 16:01:31 +10004934 raid5_set_bi_processed_stripes(raid_bio, scnt);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004935 conf->retry_read_aligned = raid_bio;
4936 return handled;
4937 }
4938
Neil Brown387bb172007-02-08 14:20:29 -08004939 if (!add_stripe_bio(sh, raid_bio, dd_idx, 0)) {
4940 release_stripe(sh);
Shaohua Lie7836bd62012-07-19 16:01:31 +10004941 raid5_set_bi_processed_stripes(raid_bio, scnt);
Neil Brown387bb172007-02-08 14:20:29 -08004942 conf->retry_read_aligned = raid_bio;
4943 return handled;
4944 }
4945
majianpeng3f9e7c12012-07-31 10:04:21 +10004946 set_bit(R5_ReadNoMerge, &sh->dev[dd_idx].flags);
Dan Williams36d1c642009-07-14 11:48:22 -07004947 handle_stripe(sh);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004948 release_stripe(sh);
4949 handled++;
4950 }
Shaohua Lie7836bd62012-07-19 16:01:31 +10004951 remaining = raid5_dec_bi_active_stripes(raid_bio);
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07004952 if (remaining == 0) {
4953 trace_block_bio_complete(bdev_get_queue(raid_bio->bi_bdev),
4954 raid_bio, 0);
Neil Brown0e13fe232008-06-28 08:31:20 +10004955 bio_endio(raid_bio, 0);
Linus Torvalds0a82a8d2013-04-18 09:00:26 -07004956 }
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004957 if (atomic_dec_and_test(&conf->active_aligned_reads))
4958 wake_up(&conf->wait_for_stripe);
4959 return handled;
4960}
4961
Shaohua Libfc90cb2013-08-29 15:40:32 +08004962static int handle_active_stripes(struct r5conf *conf, int group,
4963 struct r5worker *worker)
Shaohua Li46a06402012-08-02 08:33:15 +10004964{
4965 struct stripe_head *batch[MAX_STRIPE_BATCH], *sh;
4966 int i, batch_size = 0;
4967
4968 while (batch_size < MAX_STRIPE_BATCH &&
Shaohua Li851c30c2013-08-28 14:30:16 +08004969 (sh = __get_priority_stripe(conf, group)) != NULL)
Shaohua Li46a06402012-08-02 08:33:15 +10004970 batch[batch_size++] = sh;
4971
4972 if (batch_size == 0)
4973 return batch_size;
4974 spin_unlock_irq(&conf->device_lock);
4975
4976 for (i = 0; i < batch_size; i++)
4977 handle_stripe(batch[i]);
4978
4979 cond_resched();
4980
4981 spin_lock_irq(&conf->device_lock);
4982 for (i = 0; i < batch_size; i++)
4983 __release_stripe(conf, batch[i]);
4984 return batch_size;
4985}
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004986
Shaohua Li851c30c2013-08-28 14:30:16 +08004987static void raid5_do_work(struct work_struct *work)
4988{
4989 struct r5worker *worker = container_of(work, struct r5worker, work);
4990 struct r5worker_group *group = worker->group;
4991 struct r5conf *conf = group->conf;
4992 int group_id = group - conf->worker_groups;
4993 int handled;
4994 struct blk_plug plug;
4995
4996 pr_debug("+++ raid5worker active\n");
4997
4998 blk_start_plug(&plug);
4999 handled = 0;
5000 spin_lock_irq(&conf->device_lock);
5001 while (1) {
5002 int batch_size, released;
5003
5004 released = release_stripe_list(conf);
5005
Shaohua Libfc90cb2013-08-29 15:40:32 +08005006 batch_size = handle_active_stripes(conf, group_id, worker);
5007 worker->working = false;
Shaohua Li851c30c2013-08-28 14:30:16 +08005008 if (!batch_size && !released)
5009 break;
5010 handled += batch_size;
5011 }
5012 pr_debug("%d stripes handled\n", handled);
5013
5014 spin_unlock_irq(&conf->device_lock);
5015 blk_finish_plug(&plug);
5016
5017 pr_debug("--- raid5worker inactive\n");
5018}
5019
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020/*
5021 * This is our raid5 kernel thread.
5022 *
5023 * We scan the hash table for stripes which can be handled now.
5024 * During the scan, completed stripes are saved for us by the interrupt
5025 * handler, so that they will not have to wait for our next wakeup.
5026 */
Shaohua Li4ed87312012-10-11 13:34:00 +11005027static void raid5d(struct md_thread *thread)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005028{
Shaohua Li4ed87312012-10-11 13:34:00 +11005029 struct mddev *mddev = thread->mddev;
NeilBrownd1688a62011-10-11 16:49:52 +11005030 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005031 int handled;
NeilBrowne1dfa0a2011-04-18 18:25:41 +10005032 struct blk_plug plug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005033
Dan Williams45b42332007-07-09 11:56:43 -07005034 pr_debug("+++ raid5d active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035
5036 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005037
NeilBrowne1dfa0a2011-04-18 18:25:41 +10005038 blk_start_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005039 handled = 0;
5040 spin_lock_irq(&conf->device_lock);
5041 while (1) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005042 struct bio *bio;
Shaohua Li773ca822013-08-27 17:50:39 +08005043 int batch_size, released;
5044
5045 released = release_stripe_list(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005046
NeilBrown0021b7b2012-07-31 09:08:14 +02005047 if (
NeilBrown7c13edc2011-04-18 18:25:43 +10005048 !list_empty(&conf->bitmap_list)) {
5049 /* Now is a good time to flush some bitmap updates */
5050 conf->seq_flush++;
NeilBrown700e4322005-11-28 13:44:10 -08005051 spin_unlock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07005052 bitmap_unplug(mddev->bitmap);
NeilBrown700e4322005-11-28 13:44:10 -08005053 spin_lock_irq(&conf->device_lock);
NeilBrown7c13edc2011-04-18 18:25:43 +10005054 conf->seq_write = conf->seq_flush;
NeilBrown72626682005-09-09 16:23:54 -07005055 activate_bit_delay(conf);
5056 }
NeilBrown0021b7b2012-07-31 09:08:14 +02005057 raid5_activate_delayed(conf);
NeilBrown72626682005-09-09 16:23:54 -07005058
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005059 while ((bio = remove_bio_from_retry(conf))) {
5060 int ok;
5061 spin_unlock_irq(&conf->device_lock);
5062 ok = retry_aligned_read(conf, bio);
5063 spin_lock_irq(&conf->device_lock);
5064 if (!ok)
5065 break;
5066 handled++;
5067 }
5068
Shaohua Libfc90cb2013-08-29 15:40:32 +08005069 batch_size = handle_active_stripes(conf, ANY_GROUP, NULL);
Shaohua Li773ca822013-08-27 17:50:39 +08005070 if (!batch_size && !released)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005071 break;
Shaohua Li46a06402012-08-02 08:33:15 +10005072 handled += batch_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005073
Shaohua Li46a06402012-08-02 08:33:15 +10005074 if (mddev->flags & ~(1<<MD_CHANGE_PENDING)) {
5075 spin_unlock_irq(&conf->device_lock);
NeilBrownde393cd2011-07-28 11:31:48 +10005076 md_check_recovery(mddev);
Shaohua Li46a06402012-08-02 08:33:15 +10005077 spin_lock_irq(&conf->device_lock);
5078 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005079 }
Dan Williams45b42332007-07-09 11:56:43 -07005080 pr_debug("%d stripes handled\n", handled);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005081
5082 spin_unlock_irq(&conf->device_lock);
5083
Dan Williamsc9f21aa2008-07-23 12:05:51 -07005084 async_tx_issue_pending_all();
NeilBrowne1dfa0a2011-04-18 18:25:41 +10005085 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005086
Dan Williams45b42332007-07-09 11:56:43 -07005087 pr_debug("--- raid5d inactive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005088}
5089
NeilBrown3f294f42005-11-08 21:39:25 -08005090static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11005091raid5_show_stripe_cache_size(struct mddev *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08005092{
NeilBrownd1688a62011-10-11 16:49:52 +11005093 struct r5conf *conf = mddev->private;
NeilBrown96de1e62005-11-08 21:39:39 -08005094 if (conf)
5095 return sprintf(page, "%d\n", conf->max_nr_stripes);
5096 else
5097 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08005098}
5099
NeilBrownc41d4ac2010-06-01 19:37:24 +10005100int
NeilBrownfd01b882011-10-11 16:47:53 +11005101raid5_set_cache_size(struct mddev *mddev, int size)
NeilBrownc41d4ac2010-06-01 19:37:24 +10005102{
NeilBrownd1688a62011-10-11 16:49:52 +11005103 struct r5conf *conf = mddev->private;
NeilBrownc41d4ac2010-06-01 19:37:24 +10005104 int err;
5105
5106 if (size <= 16 || size > 32768)
5107 return -EINVAL;
5108 while (size < conf->max_nr_stripes) {
5109 if (drop_one_stripe(conf))
5110 conf->max_nr_stripes--;
5111 else
5112 break;
5113 }
5114 err = md_allow_write(mddev);
5115 if (err)
5116 return err;
5117 while (size > conf->max_nr_stripes) {
5118 if (grow_one_stripe(conf))
5119 conf->max_nr_stripes++;
5120 else break;
5121 }
5122 return 0;
5123}
5124EXPORT_SYMBOL(raid5_set_cache_size);
5125
NeilBrown3f294f42005-11-08 21:39:25 -08005126static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11005127raid5_store_stripe_cache_size(struct mddev *mddev, const char *page, size_t len)
NeilBrown3f294f42005-11-08 21:39:25 -08005128{
NeilBrownd1688a62011-10-11 16:49:52 +11005129 struct r5conf *conf = mddev->private;
Dan Williams4ef197d82008-04-28 02:15:54 -07005130 unsigned long new;
Dan Williamsb5470dc2008-06-27 21:44:04 -07005131 int err;
5132
NeilBrown3f294f42005-11-08 21:39:25 -08005133 if (len >= PAGE_SIZE)
5134 return -EINVAL;
NeilBrown96de1e62005-11-08 21:39:39 -08005135 if (!conf)
5136 return -ENODEV;
NeilBrown3f294f42005-11-08 21:39:25 -08005137
Jingoo Hanb29bebd2013-06-01 16:15:16 +09005138 if (kstrtoul(page, 10, &new))
NeilBrown3f294f42005-11-08 21:39:25 -08005139 return -EINVAL;
NeilBrownc41d4ac2010-06-01 19:37:24 +10005140 err = raid5_set_cache_size(mddev, new);
Dan Williamsb5470dc2008-06-27 21:44:04 -07005141 if (err)
5142 return err;
NeilBrown3f294f42005-11-08 21:39:25 -08005143 return len;
5144}
NeilBrown007583c2005-11-08 21:39:30 -08005145
NeilBrown96de1e62005-11-08 21:39:39 -08005146static struct md_sysfs_entry
5147raid5_stripecache_size = __ATTR(stripe_cache_size, S_IRUGO | S_IWUSR,
5148 raid5_show_stripe_cache_size,
5149 raid5_store_stripe_cache_size);
NeilBrown3f294f42005-11-08 21:39:25 -08005150
5151static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11005152raid5_show_preread_threshold(struct mddev *mddev, char *page)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005153{
NeilBrownd1688a62011-10-11 16:49:52 +11005154 struct r5conf *conf = mddev->private;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005155 if (conf)
5156 return sprintf(page, "%d\n", conf->bypass_threshold);
5157 else
5158 return 0;
5159}
5160
5161static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11005162raid5_store_preread_threshold(struct mddev *mddev, const char *page, size_t len)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005163{
NeilBrownd1688a62011-10-11 16:49:52 +11005164 struct r5conf *conf = mddev->private;
Dan Williams4ef197d82008-04-28 02:15:54 -07005165 unsigned long new;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005166 if (len >= PAGE_SIZE)
5167 return -EINVAL;
5168 if (!conf)
5169 return -ENODEV;
5170
Jingoo Hanb29bebd2013-06-01 16:15:16 +09005171 if (kstrtoul(page, 10, &new))
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005172 return -EINVAL;
Dan Williams4ef197d82008-04-28 02:15:54 -07005173 if (new > conf->max_nr_stripes)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005174 return -EINVAL;
5175 conf->bypass_threshold = new;
5176 return len;
5177}
5178
5179static struct md_sysfs_entry
5180raid5_preread_bypass_threshold = __ATTR(preread_bypass_threshold,
5181 S_IRUGO | S_IWUSR,
5182 raid5_show_preread_threshold,
5183 raid5_store_preread_threshold);
5184
5185static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11005186stripe_cache_active_show(struct mddev *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08005187{
NeilBrownd1688a62011-10-11 16:49:52 +11005188 struct r5conf *conf = mddev->private;
NeilBrown96de1e62005-11-08 21:39:39 -08005189 if (conf)
5190 return sprintf(page, "%d\n", atomic_read(&conf->active_stripes));
5191 else
5192 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08005193}
5194
NeilBrown96de1e62005-11-08 21:39:39 -08005195static struct md_sysfs_entry
5196raid5_stripecache_active = __ATTR_RO(stripe_cache_active);
NeilBrown3f294f42005-11-08 21:39:25 -08005197
Shaohua Lib7214202013-08-27 17:50:42 +08005198static ssize_t
5199raid5_show_group_thread_cnt(struct mddev *mddev, char *page)
5200{
5201 struct r5conf *conf = mddev->private;
5202 if (conf)
5203 return sprintf(page, "%d\n", conf->worker_cnt_per_group);
5204 else
5205 return 0;
5206}
5207
5208static int alloc_thread_groups(struct r5conf *conf, int cnt);
5209static ssize_t
5210raid5_store_group_thread_cnt(struct mddev *mddev, const char *page, size_t len)
5211{
5212 struct r5conf *conf = mddev->private;
5213 unsigned long new;
5214 int err;
5215 struct r5worker_group *old_groups;
5216 int old_group_cnt;
5217
5218 if (len >= PAGE_SIZE)
5219 return -EINVAL;
5220 if (!conf)
5221 return -ENODEV;
5222
5223 if (kstrtoul(page, 10, &new))
5224 return -EINVAL;
5225
5226 if (new == conf->worker_cnt_per_group)
5227 return len;
5228
5229 mddev_suspend(mddev);
5230
5231 old_groups = conf->worker_groups;
5232 old_group_cnt = conf->worker_cnt_per_group;
5233
5234 conf->worker_groups = NULL;
5235 err = alloc_thread_groups(conf, new);
5236 if (err) {
5237 conf->worker_groups = old_groups;
5238 conf->worker_cnt_per_group = old_group_cnt;
5239 } else {
5240 if (old_groups)
5241 kfree(old_groups[0].workers);
5242 kfree(old_groups);
5243 }
5244
5245 mddev_resume(mddev);
5246
5247 if (err)
5248 return err;
5249 return len;
5250}
5251
5252static struct md_sysfs_entry
5253raid5_group_thread_cnt = __ATTR(group_thread_cnt, S_IRUGO | S_IWUSR,
5254 raid5_show_group_thread_cnt,
5255 raid5_store_group_thread_cnt);
5256
NeilBrown007583c2005-11-08 21:39:30 -08005257static struct attribute *raid5_attrs[] = {
NeilBrown3f294f42005-11-08 21:39:25 -08005258 &raid5_stripecache_size.attr,
5259 &raid5_stripecache_active.attr,
Dan Williams8b3e6cd2008-04-28 02:15:53 -07005260 &raid5_preread_bypass_threshold.attr,
Shaohua Lib7214202013-08-27 17:50:42 +08005261 &raid5_group_thread_cnt.attr,
NeilBrown3f294f42005-11-08 21:39:25 -08005262 NULL,
5263};
NeilBrown007583c2005-11-08 21:39:30 -08005264static struct attribute_group raid5_attrs_group = {
5265 .name = NULL,
5266 .attrs = raid5_attrs,
NeilBrown3f294f42005-11-08 21:39:25 -08005267};
5268
Shaohua Li851c30c2013-08-28 14:30:16 +08005269static int alloc_thread_groups(struct r5conf *conf, int cnt)
5270{
5271 int i, j;
5272 ssize_t size;
5273 struct r5worker *workers;
5274
5275 conf->worker_cnt_per_group = cnt;
5276 if (cnt == 0) {
5277 conf->worker_groups = NULL;
5278 return 0;
5279 }
5280 conf->group_cnt = num_possible_nodes();
5281 size = sizeof(struct r5worker) * cnt;
5282 workers = kzalloc(size * conf->group_cnt, GFP_NOIO);
5283 conf->worker_groups = kzalloc(sizeof(struct r5worker_group) *
5284 conf->group_cnt, GFP_NOIO);
5285 if (!conf->worker_groups || !workers) {
5286 kfree(workers);
5287 kfree(conf->worker_groups);
5288 conf->worker_groups = NULL;
5289 return -ENOMEM;
5290 }
5291
5292 for (i = 0; i < conf->group_cnt; i++) {
5293 struct r5worker_group *group;
5294
5295 group = &conf->worker_groups[i];
5296 INIT_LIST_HEAD(&group->handle_list);
5297 group->conf = conf;
5298 group->workers = workers + i * cnt;
5299
5300 for (j = 0; j < cnt; j++) {
5301 group->workers[j].group = group;
5302 INIT_WORK(&group->workers[j].work, raid5_do_work);
5303 }
5304 }
5305
5306 return 0;
5307}
5308
5309static void free_thread_groups(struct r5conf *conf)
5310{
5311 if (conf->worker_groups)
5312 kfree(conf->worker_groups[0].workers);
5313 kfree(conf->worker_groups);
5314 conf->worker_groups = NULL;
5315}
5316
Dan Williams80c3a6c2009-03-17 18:10:40 -07005317static sector_t
NeilBrownfd01b882011-10-11 16:47:53 +11005318raid5_size(struct mddev *mddev, sector_t sectors, int raid_disks)
Dan Williams80c3a6c2009-03-17 18:10:40 -07005319{
NeilBrownd1688a62011-10-11 16:49:52 +11005320 struct r5conf *conf = mddev->private;
Dan Williams80c3a6c2009-03-17 18:10:40 -07005321
5322 if (!sectors)
5323 sectors = mddev->dev_sectors;
NeilBrown5e5e3e72009-10-16 16:35:30 +11005324 if (!raid_disks)
NeilBrown7ec05472009-03-31 15:10:36 +11005325 /* size is defined by the smallest of previous and new size */
NeilBrown5e5e3e72009-10-16 16:35:30 +11005326 raid_disks = min(conf->raid_disks, conf->previous_raid_disks);
Dan Williams80c3a6c2009-03-17 18:10:40 -07005327
Andre Noll9d8f0362009-06-18 08:45:01 +10005328 sectors &= ~((sector_t)mddev->chunk_sectors - 1);
Andre Noll664e7c42009-06-18 08:45:27 +10005329 sectors &= ~((sector_t)mddev->new_chunk_sectors - 1);
Dan Williams80c3a6c2009-03-17 18:10:40 -07005330 return sectors * (raid_disks - conf->max_degraded);
5331}
5332
NeilBrownd1688a62011-10-11 16:49:52 +11005333static void raid5_free_percpu(struct r5conf *conf)
Dan Williams36d1c642009-07-14 11:48:22 -07005334{
5335 struct raid5_percpu *percpu;
5336 unsigned long cpu;
5337
5338 if (!conf->percpu)
5339 return;
5340
5341 get_online_cpus();
5342 for_each_possible_cpu(cpu) {
5343 percpu = per_cpu_ptr(conf->percpu, cpu);
5344 safe_put_page(percpu->spare_page);
Dan Williamsd6f38f32009-07-14 11:50:52 -07005345 kfree(percpu->scribble);
Dan Williams36d1c642009-07-14 11:48:22 -07005346 }
5347#ifdef CONFIG_HOTPLUG_CPU
5348 unregister_cpu_notifier(&conf->cpu_notify);
5349#endif
5350 put_online_cpus();
5351
5352 free_percpu(conf->percpu);
5353}
5354
NeilBrownd1688a62011-10-11 16:49:52 +11005355static void free_conf(struct r5conf *conf)
Dan Williams95fc17a2009-07-31 12:39:15 +10005356{
Shaohua Li851c30c2013-08-28 14:30:16 +08005357 free_thread_groups(conf);
Dan Williams95fc17a2009-07-31 12:39:15 +10005358 shrink_stripes(conf);
Dan Williams36d1c642009-07-14 11:48:22 -07005359 raid5_free_percpu(conf);
Dan Williams95fc17a2009-07-31 12:39:15 +10005360 kfree(conf->disks);
5361 kfree(conf->stripe_hashtbl);
5362 kfree(conf);
5363}
5364
Dan Williams36d1c642009-07-14 11:48:22 -07005365#ifdef CONFIG_HOTPLUG_CPU
5366static int raid456_cpu_notify(struct notifier_block *nfb, unsigned long action,
5367 void *hcpu)
5368{
NeilBrownd1688a62011-10-11 16:49:52 +11005369 struct r5conf *conf = container_of(nfb, struct r5conf, cpu_notify);
Dan Williams36d1c642009-07-14 11:48:22 -07005370 long cpu = (long)hcpu;
5371 struct raid5_percpu *percpu = per_cpu_ptr(conf->percpu, cpu);
5372
5373 switch (action) {
5374 case CPU_UP_PREPARE:
5375 case CPU_UP_PREPARE_FROZEN:
Dan Williamsd6f38f32009-07-14 11:50:52 -07005376 if (conf->level == 6 && !percpu->spare_page)
Dan Williams36d1c642009-07-14 11:48:22 -07005377 percpu->spare_page = alloc_page(GFP_KERNEL);
Dan Williamsd6f38f32009-07-14 11:50:52 -07005378 if (!percpu->scribble)
5379 percpu->scribble = kmalloc(conf->scribble_len, GFP_KERNEL);
5380
5381 if (!percpu->scribble ||
5382 (conf->level == 6 && !percpu->spare_page)) {
5383 safe_put_page(percpu->spare_page);
5384 kfree(percpu->scribble);
Dan Williams36d1c642009-07-14 11:48:22 -07005385 pr_err("%s: failed memory allocation for cpu%ld\n",
5386 __func__, cpu);
Akinobu Mita55af6bb2010-05-26 14:43:35 -07005387 return notifier_from_errno(-ENOMEM);
Dan Williams36d1c642009-07-14 11:48:22 -07005388 }
5389 break;
5390 case CPU_DEAD:
5391 case CPU_DEAD_FROZEN:
5392 safe_put_page(percpu->spare_page);
Dan Williamsd6f38f32009-07-14 11:50:52 -07005393 kfree(percpu->scribble);
Dan Williams36d1c642009-07-14 11:48:22 -07005394 percpu->spare_page = NULL;
Dan Williamsd6f38f32009-07-14 11:50:52 -07005395 percpu->scribble = NULL;
Dan Williams36d1c642009-07-14 11:48:22 -07005396 break;
5397 default:
5398 break;
5399 }
5400 return NOTIFY_OK;
5401}
5402#endif
5403
NeilBrownd1688a62011-10-11 16:49:52 +11005404static int raid5_alloc_percpu(struct r5conf *conf)
Dan Williams36d1c642009-07-14 11:48:22 -07005405{
5406 unsigned long cpu;
5407 struct page *spare_page;
Tejun Heoa29d8b82010-02-02 14:39:15 +09005408 struct raid5_percpu __percpu *allcpus;
Dan Williamsd6f38f32009-07-14 11:50:52 -07005409 void *scribble;
Dan Williams36d1c642009-07-14 11:48:22 -07005410 int err;
5411
Dan Williams36d1c642009-07-14 11:48:22 -07005412 allcpus = alloc_percpu(struct raid5_percpu);
5413 if (!allcpus)
5414 return -ENOMEM;
5415 conf->percpu = allcpus;
5416
5417 get_online_cpus();
5418 err = 0;
5419 for_each_present_cpu(cpu) {
Dan Williamsd6f38f32009-07-14 11:50:52 -07005420 if (conf->level == 6) {
5421 spare_page = alloc_page(GFP_KERNEL);
5422 if (!spare_page) {
5423 err = -ENOMEM;
5424 break;
5425 }
5426 per_cpu_ptr(conf->percpu, cpu)->spare_page = spare_page;
5427 }
NeilBrown5e5e3e72009-10-16 16:35:30 +11005428 scribble = kmalloc(conf->scribble_len, GFP_KERNEL);
Dan Williamsd6f38f32009-07-14 11:50:52 -07005429 if (!scribble) {
Dan Williams36d1c642009-07-14 11:48:22 -07005430 err = -ENOMEM;
5431 break;
5432 }
Dan Williamsd6f38f32009-07-14 11:50:52 -07005433 per_cpu_ptr(conf->percpu, cpu)->scribble = scribble;
Dan Williams36d1c642009-07-14 11:48:22 -07005434 }
5435#ifdef CONFIG_HOTPLUG_CPU
5436 conf->cpu_notify.notifier_call = raid456_cpu_notify;
5437 conf->cpu_notify.priority = 0;
5438 if (err == 0)
5439 err = register_cpu_notifier(&conf->cpu_notify);
5440#endif
5441 put_online_cpus();
5442
5443 return err;
5444}
5445
NeilBrownd1688a62011-10-11 16:49:52 +11005446static struct r5conf *setup_conf(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005447{
NeilBrownd1688a62011-10-11 16:49:52 +11005448 struct r5conf *conf;
NeilBrown5e5e3e72009-10-16 16:35:30 +11005449 int raid_disk, memory, max_disks;
NeilBrown3cb03002011-10-11 16:45:26 +11005450 struct md_rdev *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005451 struct disk_info *disk;
NeilBrown02326052012-07-03 15:56:52 +10005452 char pers_name[6];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005453
NeilBrown91adb562009-03-31 14:39:39 +11005454 if (mddev->new_level != 5
5455 && mddev->new_level != 4
5456 && mddev->new_level != 6) {
NeilBrown0c55e022010-05-03 14:09:02 +10005457 printk(KERN_ERR "md/raid:%s: raid level not set to 4/5/6 (%d)\n",
NeilBrown91adb562009-03-31 14:39:39 +11005458 mdname(mddev), mddev->new_level);
5459 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460 }
NeilBrown91adb562009-03-31 14:39:39 +11005461 if ((mddev->new_level == 5
5462 && !algorithm_valid_raid5(mddev->new_layout)) ||
5463 (mddev->new_level == 6
5464 && !algorithm_valid_raid6(mddev->new_layout))) {
NeilBrown0c55e022010-05-03 14:09:02 +10005465 printk(KERN_ERR "md/raid:%s: layout %d not supported\n",
NeilBrown91adb562009-03-31 14:39:39 +11005466 mdname(mddev), mddev->new_layout);
5467 return ERR_PTR(-EIO);
5468 }
5469 if (mddev->new_level == 6 && mddev->raid_disks < 4) {
NeilBrown0c55e022010-05-03 14:09:02 +10005470 printk(KERN_ERR "md/raid:%s: not enough configured devices (%d, minimum 4)\n",
NeilBrown91adb562009-03-31 14:39:39 +11005471 mdname(mddev), mddev->raid_disks);
5472 return ERR_PTR(-EINVAL);
NeilBrown99c0fb52009-03-31 14:39:38 +11005473 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005474
Andre Noll664e7c42009-06-18 08:45:27 +10005475 if (!mddev->new_chunk_sectors ||
5476 (mddev->new_chunk_sectors << 9) % PAGE_SIZE ||
5477 !is_power_of_2(mddev->new_chunk_sectors)) {
NeilBrown0c55e022010-05-03 14:09:02 +10005478 printk(KERN_ERR "md/raid:%s: invalid chunk size %d\n",
5479 mdname(mddev), mddev->new_chunk_sectors << 9);
NeilBrown91adb562009-03-31 14:39:39 +11005480 return ERR_PTR(-EINVAL);
NeilBrown4bbf3772008-10-13 11:55:12 +11005481 }
5482
NeilBrownd1688a62011-10-11 16:49:52 +11005483 conf = kzalloc(sizeof(struct r5conf), GFP_KERNEL);
NeilBrown91adb562009-03-31 14:39:39 +11005484 if (conf == NULL)
5485 goto abort;
Shaohua Li851c30c2013-08-28 14:30:16 +08005486 /* Don't enable multi-threading by default*/
5487 if (alloc_thread_groups(conf, 0))
5488 goto abort;
Dan Williamsf5efd452009-10-16 15:55:38 +11005489 spin_lock_init(&conf->device_lock);
NeilBrownc46501b2013-08-27 15:52:13 +10005490 seqcount_init(&conf->gen_lock);
Dan Williamsf5efd452009-10-16 15:55:38 +11005491 init_waitqueue_head(&conf->wait_for_stripe);
5492 init_waitqueue_head(&conf->wait_for_overlap);
5493 INIT_LIST_HEAD(&conf->handle_list);
5494 INIT_LIST_HEAD(&conf->hold_list);
5495 INIT_LIST_HEAD(&conf->delayed_list);
5496 INIT_LIST_HEAD(&conf->bitmap_list);
5497 INIT_LIST_HEAD(&conf->inactive_list);
Shaohua Li773ca822013-08-27 17:50:39 +08005498 init_llist_head(&conf->released_stripes);
Dan Williamsf5efd452009-10-16 15:55:38 +11005499 atomic_set(&conf->active_stripes, 0);
5500 atomic_set(&conf->preread_active_stripes, 0);
5501 atomic_set(&conf->active_aligned_reads, 0);
5502 conf->bypass_threshold = BYPASS_THRESHOLD;
NeilBrownd890fa22011-10-26 11:54:39 +11005503 conf->recovery_disabled = mddev->recovery_disabled - 1;
NeilBrown91adb562009-03-31 14:39:39 +11005504
5505 conf->raid_disks = mddev->raid_disks;
5506 if (mddev->reshape_position == MaxSector)
5507 conf->previous_raid_disks = mddev->raid_disks;
5508 else
5509 conf->previous_raid_disks = mddev->raid_disks - mddev->delta_disks;
NeilBrown5e5e3e72009-10-16 16:35:30 +11005510 max_disks = max(conf->raid_disks, conf->previous_raid_disks);
5511 conf->scribble_len = scribble_len(max_disks);
NeilBrown91adb562009-03-31 14:39:39 +11005512
NeilBrown5e5e3e72009-10-16 16:35:30 +11005513 conf->disks = kzalloc(max_disks * sizeof(struct disk_info),
NeilBrown91adb562009-03-31 14:39:39 +11005514 GFP_KERNEL);
5515 if (!conf->disks)
5516 goto abort;
5517
5518 conf->mddev = mddev;
5519
5520 if ((conf->stripe_hashtbl = kzalloc(PAGE_SIZE, GFP_KERNEL)) == NULL)
5521 goto abort;
5522
Dan Williams36d1c642009-07-14 11:48:22 -07005523 conf->level = mddev->new_level;
5524 if (raid5_alloc_percpu(conf) != 0)
5525 goto abort;
5526
NeilBrown0c55e022010-05-03 14:09:02 +10005527 pr_debug("raid456: run(%s) called.\n", mdname(mddev));
NeilBrown91adb562009-03-31 14:39:39 +11005528
NeilBrowndafb20f2012-03-19 12:46:39 +11005529 rdev_for_each(rdev, mddev) {
NeilBrown91adb562009-03-31 14:39:39 +11005530 raid_disk = rdev->raid_disk;
NeilBrown5e5e3e72009-10-16 16:35:30 +11005531 if (raid_disk >= max_disks
NeilBrown91adb562009-03-31 14:39:39 +11005532 || raid_disk < 0)
5533 continue;
5534 disk = conf->disks + raid_disk;
5535
NeilBrown17045f52011-12-23 10:17:53 +11005536 if (test_bit(Replacement, &rdev->flags)) {
5537 if (disk->replacement)
5538 goto abort;
5539 disk->replacement = rdev;
5540 } else {
5541 if (disk->rdev)
5542 goto abort;
5543 disk->rdev = rdev;
5544 }
NeilBrown91adb562009-03-31 14:39:39 +11005545
5546 if (test_bit(In_sync, &rdev->flags)) {
5547 char b[BDEVNAME_SIZE];
NeilBrown0c55e022010-05-03 14:09:02 +10005548 printk(KERN_INFO "md/raid:%s: device %s operational as raid"
5549 " disk %d\n",
5550 mdname(mddev), bdevname(rdev->bdev, b), raid_disk);
Jonathan Brassowd6b212f2011-06-08 18:00:28 -05005551 } else if (rdev->saved_raid_disk != raid_disk)
NeilBrown91adb562009-03-31 14:39:39 +11005552 /* Cannot rely on bitmap to complete recovery */
5553 conf->fullsync = 1;
5554 }
5555
Andre Noll09c9e5f2009-06-18 08:45:55 +10005556 conf->chunk_sectors = mddev->new_chunk_sectors;
NeilBrown91adb562009-03-31 14:39:39 +11005557 conf->level = mddev->new_level;
5558 if (conf->level == 6)
5559 conf->max_degraded = 2;
5560 else
5561 conf->max_degraded = 1;
5562 conf->algorithm = mddev->new_layout;
5563 conf->max_nr_stripes = NR_STRIPES;
NeilBrownfef9c612009-03-31 15:16:46 +11005564 conf->reshape_progress = mddev->reshape_position;
NeilBrowne183eae2009-03-31 15:20:22 +11005565 if (conf->reshape_progress != MaxSector) {
Andre Noll09c9e5f2009-06-18 08:45:55 +10005566 conf->prev_chunk_sectors = mddev->chunk_sectors;
NeilBrowne183eae2009-03-31 15:20:22 +11005567 conf->prev_algo = mddev->layout;
5568 }
NeilBrown91adb562009-03-31 14:39:39 +11005569
5570 memory = conf->max_nr_stripes * (sizeof(struct stripe_head) +
NeilBrown5e5e3e72009-10-16 16:35:30 +11005571 max_disks * ((sizeof(struct bio) + PAGE_SIZE))) / 1024;
NeilBrown91adb562009-03-31 14:39:39 +11005572 if (grow_stripes(conf, conf->max_nr_stripes)) {
5573 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10005574 "md/raid:%s: couldn't allocate %dkB for buffers\n",
5575 mdname(mddev), memory);
NeilBrown91adb562009-03-31 14:39:39 +11005576 goto abort;
5577 } else
NeilBrown0c55e022010-05-03 14:09:02 +10005578 printk(KERN_INFO "md/raid:%s: allocated %dkB\n",
5579 mdname(mddev), memory);
NeilBrown91adb562009-03-31 14:39:39 +11005580
NeilBrown02326052012-07-03 15:56:52 +10005581 sprintf(pers_name, "raid%d", mddev->new_level);
5582 conf->thread = md_register_thread(raid5d, mddev, pers_name);
NeilBrown91adb562009-03-31 14:39:39 +11005583 if (!conf->thread) {
5584 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10005585 "md/raid:%s: couldn't allocate thread.\n",
NeilBrown91adb562009-03-31 14:39:39 +11005586 mdname(mddev));
5587 goto abort;
5588 }
5589
5590 return conf;
5591
5592 abort:
5593 if (conf) {
Dan Williams95fc17a2009-07-31 12:39:15 +10005594 free_conf(conf);
NeilBrown91adb562009-03-31 14:39:39 +11005595 return ERR_PTR(-EIO);
5596 } else
5597 return ERR_PTR(-ENOMEM);
5598}
5599
NeilBrownc148ffd2009-11-13 17:47:00 +11005600
5601static int only_parity(int raid_disk, int algo, int raid_disks, int max_degraded)
5602{
5603 switch (algo) {
5604 case ALGORITHM_PARITY_0:
5605 if (raid_disk < max_degraded)
5606 return 1;
5607 break;
5608 case ALGORITHM_PARITY_N:
5609 if (raid_disk >= raid_disks - max_degraded)
5610 return 1;
5611 break;
5612 case ALGORITHM_PARITY_0_6:
5613 if (raid_disk == 0 ||
5614 raid_disk == raid_disks - 1)
5615 return 1;
5616 break;
5617 case ALGORITHM_LEFT_ASYMMETRIC_6:
5618 case ALGORITHM_RIGHT_ASYMMETRIC_6:
5619 case ALGORITHM_LEFT_SYMMETRIC_6:
5620 case ALGORITHM_RIGHT_SYMMETRIC_6:
5621 if (raid_disk == raid_disks - 1)
5622 return 1;
5623 }
5624 return 0;
5625}
5626
NeilBrownfd01b882011-10-11 16:47:53 +11005627static int run(struct mddev *mddev)
NeilBrown91adb562009-03-31 14:39:39 +11005628{
NeilBrownd1688a62011-10-11 16:49:52 +11005629 struct r5conf *conf;
NeilBrown9f7c2222010-07-26 12:04:13 +10005630 int working_disks = 0;
NeilBrownc148ffd2009-11-13 17:47:00 +11005631 int dirty_parity_disks = 0;
NeilBrown3cb03002011-10-11 16:45:26 +11005632 struct md_rdev *rdev;
NeilBrownc148ffd2009-11-13 17:47:00 +11005633 sector_t reshape_offset = 0;
NeilBrown17045f52011-12-23 10:17:53 +11005634 int i;
NeilBrownb5254dd2012-05-21 09:27:01 +10005635 long long min_offset_diff = 0;
5636 int first = 1;
NeilBrown91adb562009-03-31 14:39:39 +11005637
Andre Noll8c6ac862009-06-18 08:48:06 +10005638 if (mddev->recovery_cp != MaxSector)
NeilBrown0c55e022010-05-03 14:09:02 +10005639 printk(KERN_NOTICE "md/raid:%s: not clean"
Andre Noll8c6ac862009-06-18 08:48:06 +10005640 " -- starting background reconstruction\n",
5641 mdname(mddev));
NeilBrownb5254dd2012-05-21 09:27:01 +10005642
5643 rdev_for_each(rdev, mddev) {
5644 long long diff;
5645 if (rdev->raid_disk < 0)
5646 continue;
5647 diff = (rdev->new_data_offset - rdev->data_offset);
5648 if (first) {
5649 min_offset_diff = diff;
5650 first = 0;
5651 } else if (mddev->reshape_backwards &&
5652 diff < min_offset_diff)
5653 min_offset_diff = diff;
5654 else if (!mddev->reshape_backwards &&
5655 diff > min_offset_diff)
5656 min_offset_diff = diff;
5657 }
5658
NeilBrownf6705572006-03-27 01:18:11 -08005659 if (mddev->reshape_position != MaxSector) {
5660 /* Check that we can continue the reshape.
NeilBrownb5254dd2012-05-21 09:27:01 +10005661 * Difficulties arise if the stripe we would write to
5662 * next is at or after the stripe we would read from next.
5663 * For a reshape that changes the number of devices, this
5664 * is only possible for a very short time, and mdadm makes
5665 * sure that time appears to have past before assembling
5666 * the array. So we fail if that time hasn't passed.
5667 * For a reshape that keeps the number of devices the same
5668 * mdadm must be monitoring the reshape can keeping the
5669 * critical areas read-only and backed up. It will start
5670 * the array in read-only mode, so we check for that.
NeilBrownf6705572006-03-27 01:18:11 -08005671 */
5672 sector_t here_new, here_old;
5673 int old_disks;
Andre Noll18b00332009-03-31 15:00:56 +11005674 int max_degraded = (mddev->level == 6 ? 2 : 1);
NeilBrownf6705572006-03-27 01:18:11 -08005675
NeilBrown88ce4932009-03-31 15:24:23 +11005676 if (mddev->new_level != mddev->level) {
NeilBrown0c55e022010-05-03 14:09:02 +10005677 printk(KERN_ERR "md/raid:%s: unsupported reshape "
NeilBrownf4168852007-02-28 20:11:53 -08005678 "required - aborting.\n",
NeilBrownf6705572006-03-27 01:18:11 -08005679 mdname(mddev));
5680 return -EINVAL;
5681 }
NeilBrownf6705572006-03-27 01:18:11 -08005682 old_disks = mddev->raid_disks - mddev->delta_disks;
5683 /* reshape_position must be on a new-stripe boundary, and one
NeilBrownf4168852007-02-28 20:11:53 -08005684 * further up in new geometry must map after here in old
5685 * geometry.
NeilBrownf6705572006-03-27 01:18:11 -08005686 */
5687 here_new = mddev->reshape_position;
Andre Noll664e7c42009-06-18 08:45:27 +10005688 if (sector_div(here_new, mddev->new_chunk_sectors *
NeilBrownf4168852007-02-28 20:11:53 -08005689 (mddev->raid_disks - max_degraded))) {
NeilBrown0c55e022010-05-03 14:09:02 +10005690 printk(KERN_ERR "md/raid:%s: reshape_position not "
5691 "on a stripe boundary\n", mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08005692 return -EINVAL;
5693 }
NeilBrownc148ffd2009-11-13 17:47:00 +11005694 reshape_offset = here_new * mddev->new_chunk_sectors;
NeilBrownf6705572006-03-27 01:18:11 -08005695 /* here_new is the stripe we will write to */
5696 here_old = mddev->reshape_position;
Andre Noll9d8f0362009-06-18 08:45:01 +10005697 sector_div(here_old, mddev->chunk_sectors *
NeilBrownf4168852007-02-28 20:11:53 -08005698 (old_disks-max_degraded));
5699 /* here_old is the first stripe that we might need to read
5700 * from */
NeilBrown67ac6012009-08-13 10:06:24 +10005701 if (mddev->delta_disks == 0) {
NeilBrownb5254dd2012-05-21 09:27:01 +10005702 if ((here_new * mddev->new_chunk_sectors !=
5703 here_old * mddev->chunk_sectors)) {
5704 printk(KERN_ERR "md/raid:%s: reshape position is"
5705 " confused - aborting\n", mdname(mddev));
5706 return -EINVAL;
5707 }
NeilBrown67ac6012009-08-13 10:06:24 +10005708 /* We cannot be sure it is safe to start an in-place
NeilBrownb5254dd2012-05-21 09:27:01 +10005709 * reshape. It is only safe if user-space is monitoring
NeilBrown67ac6012009-08-13 10:06:24 +10005710 * and taking constant backups.
5711 * mdadm always starts a situation like this in
5712 * readonly mode so it can take control before
5713 * allowing any writes. So just check for that.
5714 */
NeilBrownb5254dd2012-05-21 09:27:01 +10005715 if (abs(min_offset_diff) >= mddev->chunk_sectors &&
5716 abs(min_offset_diff) >= mddev->new_chunk_sectors)
5717 /* not really in-place - so OK */;
5718 else if (mddev->ro == 0) {
5719 printk(KERN_ERR "md/raid:%s: in-place reshape "
5720 "must be started in read-only mode "
5721 "- aborting\n",
NeilBrown0c55e022010-05-03 14:09:02 +10005722 mdname(mddev));
NeilBrown67ac6012009-08-13 10:06:24 +10005723 return -EINVAL;
5724 }
NeilBrown2c810cd2012-05-21 09:27:00 +10005725 } else if (mddev->reshape_backwards
NeilBrownb5254dd2012-05-21 09:27:01 +10005726 ? (here_new * mddev->new_chunk_sectors + min_offset_diff <=
NeilBrown67ac6012009-08-13 10:06:24 +10005727 here_old * mddev->chunk_sectors)
5728 : (here_new * mddev->new_chunk_sectors >=
NeilBrownb5254dd2012-05-21 09:27:01 +10005729 here_old * mddev->chunk_sectors + (-min_offset_diff))) {
NeilBrownf6705572006-03-27 01:18:11 -08005730 /* Reading from the same stripe as writing to - bad */
NeilBrown0c55e022010-05-03 14:09:02 +10005731 printk(KERN_ERR "md/raid:%s: reshape_position too early for "
5732 "auto-recovery - aborting.\n",
5733 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08005734 return -EINVAL;
5735 }
NeilBrown0c55e022010-05-03 14:09:02 +10005736 printk(KERN_INFO "md/raid:%s: reshape will continue\n",
5737 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08005738 /* OK, we should be able to continue; */
NeilBrownf6705572006-03-27 01:18:11 -08005739 } else {
NeilBrown91adb562009-03-31 14:39:39 +11005740 BUG_ON(mddev->level != mddev->new_level);
5741 BUG_ON(mddev->layout != mddev->new_layout);
Andre Noll664e7c42009-06-18 08:45:27 +10005742 BUG_ON(mddev->chunk_sectors != mddev->new_chunk_sectors);
NeilBrown91adb562009-03-31 14:39:39 +11005743 BUG_ON(mddev->delta_disks != 0);
NeilBrownf6705572006-03-27 01:18:11 -08005744 }
5745
NeilBrown245f46c2009-03-31 14:39:39 +11005746 if (mddev->private == NULL)
5747 conf = setup_conf(mddev);
5748 else
5749 conf = mddev->private;
5750
NeilBrown91adb562009-03-31 14:39:39 +11005751 if (IS_ERR(conf))
5752 return PTR_ERR(conf);
NeilBrown9ffae0c2006-01-06 00:20:32 -08005753
NeilBrownb5254dd2012-05-21 09:27:01 +10005754 conf->min_offset_diff = min_offset_diff;
NeilBrown91adb562009-03-31 14:39:39 +11005755 mddev->thread = conf->thread;
5756 conf->thread = NULL;
5757 mddev->private = conf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005758
NeilBrown17045f52011-12-23 10:17:53 +11005759 for (i = 0; i < conf->raid_disks && conf->previous_raid_disks;
5760 i++) {
5761 rdev = conf->disks[i].rdev;
5762 if (!rdev && conf->disks[i].replacement) {
5763 /* The replacement is all we have yet */
5764 rdev = conf->disks[i].replacement;
5765 conf->disks[i].replacement = NULL;
5766 clear_bit(Replacement, &rdev->flags);
5767 conf->disks[i].rdev = rdev;
5768 }
5769 if (!rdev)
NeilBrownc148ffd2009-11-13 17:47:00 +11005770 continue;
NeilBrown17045f52011-12-23 10:17:53 +11005771 if (conf->disks[i].replacement &&
5772 conf->reshape_progress != MaxSector) {
5773 /* replacements and reshape simply do not mix. */
5774 printk(KERN_ERR "md: cannot handle concurrent "
5775 "replacement and reshape.\n");
5776 goto abort;
5777 }
NeilBrown2f115882010-06-17 17:41:03 +10005778 if (test_bit(In_sync, &rdev->flags)) {
NeilBrown91adb562009-03-31 14:39:39 +11005779 working_disks++;
NeilBrown2f115882010-06-17 17:41:03 +10005780 continue;
5781 }
NeilBrownc148ffd2009-11-13 17:47:00 +11005782 /* This disc is not fully in-sync. However if it
5783 * just stored parity (beyond the recovery_offset),
5784 * when we don't need to be concerned about the
5785 * array being dirty.
5786 * When reshape goes 'backwards', we never have
5787 * partially completed devices, so we only need
5788 * to worry about reshape going forwards.
5789 */
5790 /* Hack because v0.91 doesn't store recovery_offset properly. */
5791 if (mddev->major_version == 0 &&
5792 mddev->minor_version > 90)
5793 rdev->recovery_offset = reshape_offset;
H. Peter Anvin5026d7a2013-06-12 07:37:43 -07005794
NeilBrownc148ffd2009-11-13 17:47:00 +11005795 if (rdev->recovery_offset < reshape_offset) {
5796 /* We need to check old and new layout */
5797 if (!only_parity(rdev->raid_disk,
5798 conf->algorithm,
5799 conf->raid_disks,
5800 conf->max_degraded))
5801 continue;
5802 }
5803 if (!only_parity(rdev->raid_disk,
5804 conf->prev_algo,
5805 conf->previous_raid_disks,
5806 conf->max_degraded))
5807 continue;
5808 dirty_parity_disks++;
5809 }
NeilBrown91adb562009-03-31 14:39:39 +11005810
NeilBrown17045f52011-12-23 10:17:53 +11005811 /*
5812 * 0 for a fully functional array, 1 or 2 for a degraded array.
5813 */
NeilBrown908f4fb2011-12-23 10:17:50 +11005814 mddev->degraded = calc_degraded(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005815
NeilBrown674806d2010-06-16 17:17:53 +10005816 if (has_failed(conf)) {
NeilBrown0c55e022010-05-03 14:09:02 +10005817 printk(KERN_ERR "md/raid:%s: not enough operational devices"
Linus Torvalds1da177e2005-04-16 15:20:36 -07005818 " (%d/%d failed)\n",
NeilBrown02c2de82006-10-03 01:15:47 -07005819 mdname(mddev), mddev->degraded, conf->raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005820 goto abort;
5821 }
5822
NeilBrown91adb562009-03-31 14:39:39 +11005823 /* device size must be a multiple of chunk size */
Andre Noll9d8f0362009-06-18 08:45:01 +10005824 mddev->dev_sectors &= ~(mddev->chunk_sectors - 1);
NeilBrown91adb562009-03-31 14:39:39 +11005825 mddev->resync_max_sectors = mddev->dev_sectors;
5826
NeilBrownc148ffd2009-11-13 17:47:00 +11005827 if (mddev->degraded > dirty_parity_disks &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005828 mddev->recovery_cp != MaxSector) {
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08005829 if (mddev->ok_start_degraded)
5830 printk(KERN_WARNING
NeilBrown0c55e022010-05-03 14:09:02 +10005831 "md/raid:%s: starting dirty degraded array"
5832 " - data corruption possible.\n",
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08005833 mdname(mddev));
5834 else {
5835 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10005836 "md/raid:%s: cannot start dirty degraded array.\n",
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08005837 mdname(mddev));
5838 goto abort;
5839 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005840 }
5841
Linus Torvalds1da177e2005-04-16 15:20:36 -07005842 if (mddev->degraded == 0)
NeilBrown0c55e022010-05-03 14:09:02 +10005843 printk(KERN_INFO "md/raid:%s: raid level %d active with %d out of %d"
5844 " devices, algorithm %d\n", mdname(mddev), conf->level,
NeilBrowne183eae2009-03-31 15:20:22 +11005845 mddev->raid_disks-mddev->degraded, mddev->raid_disks,
5846 mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005847 else
NeilBrown0c55e022010-05-03 14:09:02 +10005848 printk(KERN_ALERT "md/raid:%s: raid level %d active with %d"
5849 " out of %d devices, algorithm %d\n",
5850 mdname(mddev), conf->level,
5851 mddev->raid_disks - mddev->degraded,
5852 mddev->raid_disks, mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005853
5854 print_raid5_conf(conf);
5855
NeilBrownfef9c612009-03-31 15:16:46 +11005856 if (conf->reshape_progress != MaxSector) {
NeilBrownfef9c612009-03-31 15:16:46 +11005857 conf->reshape_safe = conf->reshape_progress;
NeilBrownf6705572006-03-27 01:18:11 -08005858 atomic_set(&conf->reshape_stripes, 0);
5859 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
5860 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
5861 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
5862 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
5863 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
NeilBrown0da3c612009-09-23 18:09:45 +10005864 "reshape");
NeilBrownf6705572006-03-27 01:18:11 -08005865 }
5866
Linus Torvalds1da177e2005-04-16 15:20:36 -07005867
5868 /* Ok, everything is just fine now */
NeilBrowna64c8762010-04-14 17:15:37 +10005869 if (mddev->to_remove == &raid5_attrs_group)
5870 mddev->to_remove = NULL;
NeilBrown00bcb4a2010-06-01 19:37:23 +10005871 else if (mddev->kobj.sd &&
5872 sysfs_create_group(&mddev->kobj, &raid5_attrs_group))
NeilBrown5e55e2f2007-03-26 21:32:14 -08005873 printk(KERN_WARNING
NeilBrown4a5add42010-06-01 19:37:28 +10005874 "raid5: failed to create sysfs attributes for %s\n",
NeilBrown5e55e2f2007-03-26 21:32:14 -08005875 mdname(mddev));
NeilBrown4a5add42010-06-01 19:37:28 +10005876 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
5877
5878 if (mddev->queue) {
NeilBrown9f7c2222010-07-26 12:04:13 +10005879 int chunk_size;
Shaohua Li620125f2012-10-11 13:49:05 +11005880 bool discard_supported = true;
NeilBrown4a5add42010-06-01 19:37:28 +10005881 /* read-ahead size must cover two whole stripes, which
5882 * is 2 * (datadisks) * chunksize where 'n' is the
5883 * number of raid devices
5884 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005885 int data_disks = conf->previous_raid_disks - conf->max_degraded;
5886 int stripe = data_disks *
5887 ((mddev->chunk_sectors << 9) / PAGE_SIZE);
5888 if (mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
5889 mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
NeilBrown4a5add42010-06-01 19:37:28 +10005890
5891 blk_queue_merge_bvec(mddev->queue, raid5_mergeable_bvec);
NeilBrown11d8a6e2010-07-26 11:57:07 +10005892
5893 mddev->queue->backing_dev_info.congested_data = mddev;
5894 mddev->queue->backing_dev_info.congested_fn = raid5_congested;
NeilBrown9f7c2222010-07-26 12:04:13 +10005895
5896 chunk_size = mddev->chunk_sectors << 9;
5897 blk_queue_io_min(mddev->queue, chunk_size);
5898 blk_queue_io_opt(mddev->queue, chunk_size *
5899 (conf->raid_disks - conf->max_degraded));
Shaohua Li620125f2012-10-11 13:49:05 +11005900 /*
5901 * We can only discard a whole stripe. It doesn't make sense to
5902 * discard data disk but write parity disk
5903 */
5904 stripe = stripe * PAGE_SIZE;
NeilBrown4ac68752012-11-19 13:11:26 +11005905 /* Round up to power of 2, as discard handling
5906 * currently assumes that */
5907 while ((stripe-1) & stripe)
5908 stripe = (stripe | (stripe-1)) + 1;
Shaohua Li620125f2012-10-11 13:49:05 +11005909 mddev->queue->limits.discard_alignment = stripe;
5910 mddev->queue->limits.discard_granularity = stripe;
5911 /*
5912 * unaligned part of discard request will be ignored, so can't
5913 * guarantee discard_zerors_data
5914 */
5915 mddev->queue->limits.discard_zeroes_data = 0;
NeilBrown9f7c2222010-07-26 12:04:13 +10005916
H. Peter Anvin5026d7a2013-06-12 07:37:43 -07005917 blk_queue_max_write_same_sectors(mddev->queue, 0);
5918
NeilBrown05616be2012-05-21 09:27:00 +10005919 rdev_for_each(rdev, mddev) {
NeilBrown9f7c2222010-07-26 12:04:13 +10005920 disk_stack_limits(mddev->gendisk, rdev->bdev,
5921 rdev->data_offset << 9);
NeilBrown05616be2012-05-21 09:27:00 +10005922 disk_stack_limits(mddev->gendisk, rdev->bdev,
5923 rdev->new_data_offset << 9);
Shaohua Li620125f2012-10-11 13:49:05 +11005924 /*
5925 * discard_zeroes_data is required, otherwise data
5926 * could be lost. Consider a scenario: discard a stripe
5927 * (the stripe could be inconsistent if
5928 * discard_zeroes_data is 0); write one disk of the
5929 * stripe (the stripe could be inconsistent again
5930 * depending on which disks are used to calculate
5931 * parity); the disk is broken; The stripe data of this
5932 * disk is lost.
5933 */
5934 if (!blk_queue_discard(bdev_get_queue(rdev->bdev)) ||
5935 !bdev_get_queue(rdev->bdev)->
5936 limits.discard_zeroes_data)
5937 discard_supported = false;
NeilBrown05616be2012-05-21 09:27:00 +10005938 }
Shaohua Li620125f2012-10-11 13:49:05 +11005939
5940 if (discard_supported &&
5941 mddev->queue->limits.max_discard_sectors >= stripe &&
5942 mddev->queue->limits.discard_granularity >= stripe)
5943 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD,
5944 mddev->queue);
5945 else
5946 queue_flag_clear_unlocked(QUEUE_FLAG_DISCARD,
5947 mddev->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005948 }
5949
Linus Torvalds1da177e2005-04-16 15:20:36 -07005950 return 0;
5951abort:
NeilBrown01f96c02011-09-21 15:30:20 +10005952 md_unregister_thread(&mddev->thread);
NeilBrowne4f869d2011-10-07 14:22:49 +11005953 print_raid5_conf(conf);
5954 free_conf(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005955 mddev->private = NULL;
NeilBrown0c55e022010-05-03 14:09:02 +10005956 printk(KERN_ALERT "md/raid:%s: failed to run raid set.\n", mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005957 return -EIO;
5958}
5959
NeilBrownfd01b882011-10-11 16:47:53 +11005960static int stop(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005961{
NeilBrownd1688a62011-10-11 16:49:52 +11005962 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005963
NeilBrown01f96c02011-09-21 15:30:20 +10005964 md_unregister_thread(&mddev->thread);
NeilBrown11d8a6e2010-07-26 11:57:07 +10005965 if (mddev->queue)
5966 mddev->queue->backing_dev_info.congested_fn = NULL;
Dan Williams95fc17a2009-07-31 12:39:15 +10005967 free_conf(conf);
NeilBrowna64c8762010-04-14 17:15:37 +10005968 mddev->private = NULL;
5969 mddev->to_remove = &raid5_attrs_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005970 return 0;
5971}
5972
NeilBrownfd01b882011-10-11 16:47:53 +11005973static void status(struct seq_file *seq, struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005974{
NeilBrownd1688a62011-10-11 16:49:52 +11005975 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005976 int i;
5977
Andre Noll9d8f0362009-06-18 08:45:01 +10005978 seq_printf(seq, " level %d, %dk chunk, algorithm %d", mddev->level,
5979 mddev->chunk_sectors / 2, mddev->layout);
NeilBrown02c2de82006-10-03 01:15:47 -07005980 seq_printf (seq, " [%d/%d] [", conf->raid_disks, conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005981 for (i = 0; i < conf->raid_disks; i++)
5982 seq_printf (seq, "%s",
5983 conf->disks[i].rdev &&
NeilBrownb2d444d2005-11-08 21:39:31 -08005984 test_bit(In_sync, &conf->disks[i].rdev->flags) ? "U" : "_");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005985 seq_printf (seq, "]");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005986}
5987
NeilBrownd1688a62011-10-11 16:49:52 +11005988static void print_raid5_conf (struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005989{
5990 int i;
5991 struct disk_info *tmp;
5992
NeilBrown0c55e022010-05-03 14:09:02 +10005993 printk(KERN_DEBUG "RAID conf printout:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005994 if (!conf) {
5995 printk("(conf==NULL)\n");
5996 return;
5997 }
NeilBrown0c55e022010-05-03 14:09:02 +10005998 printk(KERN_DEBUG " --- level:%d rd:%d wd:%d\n", conf->level,
5999 conf->raid_disks,
6000 conf->raid_disks - conf->mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006001
6002 for (i = 0; i < conf->raid_disks; i++) {
6003 char b[BDEVNAME_SIZE];
6004 tmp = conf->disks + i;
6005 if (tmp->rdev)
NeilBrown0c55e022010-05-03 14:09:02 +10006006 printk(KERN_DEBUG " disk %d, o:%d, dev:%s\n",
6007 i, !test_bit(Faulty, &tmp->rdev->flags),
6008 bdevname(tmp->rdev->bdev, b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07006009 }
6010}
6011
NeilBrownfd01b882011-10-11 16:47:53 +11006012static int raid5_spare_active(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006013{
6014 int i;
NeilBrownd1688a62011-10-11 16:49:52 +11006015 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006016 struct disk_info *tmp;
NeilBrown6b965622010-08-18 11:56:59 +10006017 int count = 0;
6018 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006019
6020 for (i = 0; i < conf->raid_disks; i++) {
6021 tmp = conf->disks + i;
NeilBrowndd054fc2011-12-23 10:17:53 +11006022 if (tmp->replacement
6023 && tmp->replacement->recovery_offset == MaxSector
6024 && !test_bit(Faulty, &tmp->replacement->flags)
6025 && !test_and_set_bit(In_sync, &tmp->replacement->flags)) {
6026 /* Replacement has just become active. */
6027 if (!tmp->rdev
6028 || !test_and_clear_bit(In_sync, &tmp->rdev->flags))
6029 count++;
6030 if (tmp->rdev) {
6031 /* Replaced device not technically faulty,
6032 * but we need to be sure it gets removed
6033 * and never re-added.
6034 */
6035 set_bit(Faulty, &tmp->rdev->flags);
6036 sysfs_notify_dirent_safe(
6037 tmp->rdev->sysfs_state);
6038 }
6039 sysfs_notify_dirent_safe(tmp->replacement->sysfs_state);
6040 } else if (tmp->rdev
NeilBrown70fffd02010-06-16 17:01:25 +10006041 && tmp->rdev->recovery_offset == MaxSector
NeilBrownb2d444d2005-11-08 21:39:31 -08006042 && !test_bit(Faulty, &tmp->rdev->flags)
NeilBrownc04be0a2006-10-03 01:15:53 -07006043 && !test_and_set_bit(In_sync, &tmp->rdev->flags)) {
NeilBrown6b965622010-08-18 11:56:59 +10006044 count++;
Jonathan Brassow43c73ca2011-01-14 09:14:33 +11006045 sysfs_notify_dirent_safe(tmp->rdev->sysfs_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006046 }
6047 }
NeilBrown6b965622010-08-18 11:56:59 +10006048 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrown908f4fb2011-12-23 10:17:50 +11006049 mddev->degraded = calc_degraded(conf);
NeilBrown6b965622010-08-18 11:56:59 +10006050 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006051 print_raid5_conf(conf);
NeilBrown6b965622010-08-18 11:56:59 +10006052 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006053}
6054
NeilBrownb8321b62011-12-23 10:17:51 +11006055static int raid5_remove_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006056{
NeilBrownd1688a62011-10-11 16:49:52 +11006057 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006058 int err = 0;
NeilBrownb8321b62011-12-23 10:17:51 +11006059 int number = rdev->raid_disk;
NeilBrown657e3e42011-12-23 10:17:52 +11006060 struct md_rdev **rdevp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006061 struct disk_info *p = conf->disks + number;
6062
6063 print_raid5_conf(conf);
NeilBrown657e3e42011-12-23 10:17:52 +11006064 if (rdev == p->rdev)
6065 rdevp = &p->rdev;
6066 else if (rdev == p->replacement)
6067 rdevp = &p->replacement;
6068 else
6069 return 0;
NeilBrownec32a2b2009-03-31 15:17:38 +11006070
NeilBrown657e3e42011-12-23 10:17:52 +11006071 if (number >= conf->raid_disks &&
6072 conf->reshape_progress == MaxSector)
6073 clear_bit(In_sync, &rdev->flags);
6074
6075 if (test_bit(In_sync, &rdev->flags) ||
6076 atomic_read(&rdev->nr_pending)) {
6077 err = -EBUSY;
6078 goto abort;
6079 }
6080 /* Only remove non-faulty devices if recovery
6081 * isn't possible.
6082 */
6083 if (!test_bit(Faulty, &rdev->flags) &&
6084 mddev->recovery_disabled != conf->recovery_disabled &&
6085 !has_failed(conf) &&
NeilBrowndd054fc2011-12-23 10:17:53 +11006086 (!p->replacement || p->replacement == rdev) &&
NeilBrown657e3e42011-12-23 10:17:52 +11006087 number < conf->raid_disks) {
6088 err = -EBUSY;
6089 goto abort;
6090 }
6091 *rdevp = NULL;
6092 synchronize_rcu();
6093 if (atomic_read(&rdev->nr_pending)) {
6094 /* lost the race, try later */
6095 err = -EBUSY;
6096 *rdevp = rdev;
NeilBrowndd054fc2011-12-23 10:17:53 +11006097 } else if (p->replacement) {
6098 /* We must have just cleared 'rdev' */
6099 p->rdev = p->replacement;
6100 clear_bit(Replacement, &p->replacement->flags);
6101 smp_mb(); /* Make sure other CPUs may see both as identical
6102 * but will never see neither - if they are careful
6103 */
6104 p->replacement = NULL;
6105 clear_bit(WantReplacement, &rdev->flags);
6106 } else
6107 /* We might have just removed the Replacement as faulty-
6108 * clear the bit just in case
6109 */
6110 clear_bit(WantReplacement, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006111abort:
6112
6113 print_raid5_conf(conf);
6114 return err;
6115}
6116
NeilBrownfd01b882011-10-11 16:47:53 +11006117static int raid5_add_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006118{
NeilBrownd1688a62011-10-11 16:49:52 +11006119 struct r5conf *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10006120 int err = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006121 int disk;
6122 struct disk_info *p;
Neil Brown6c2fce22008-06-28 08:31:31 +10006123 int first = 0;
6124 int last = conf->raid_disks - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006125
NeilBrown7f0da592011-07-28 11:39:22 +10006126 if (mddev->recovery_disabled == conf->recovery_disabled)
6127 return -EBUSY;
6128
NeilBrowndc10c642012-03-19 12:46:37 +11006129 if (rdev->saved_raid_disk < 0 && has_failed(conf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07006130 /* no point adding a device */
Neil Brown199050e2008-06-28 08:31:33 +10006131 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006132
Neil Brown6c2fce22008-06-28 08:31:31 +10006133 if (rdev->raid_disk >= 0)
6134 first = last = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006135
6136 /*
NeilBrown16a53ec2006-06-26 00:27:38 -07006137 * find the disk ... but prefer rdev->saved_raid_disk
6138 * if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006139 */
NeilBrown16a53ec2006-06-26 00:27:38 -07006140 if (rdev->saved_raid_disk >= 0 &&
Neil Brown6c2fce22008-06-28 08:31:31 +10006141 rdev->saved_raid_disk >= first &&
NeilBrown16a53ec2006-06-26 00:27:38 -07006142 conf->disks[rdev->saved_raid_disk].rdev == NULL)
NeilBrown5cfb22a2012-07-03 11:46:53 +10006143 first = rdev->saved_raid_disk;
6144
6145 for (disk = first; disk <= last; disk++) {
NeilBrown7bfec5f2011-12-23 10:17:53 +11006146 p = conf->disks + disk;
6147 if (p->rdev == NULL) {
NeilBrownb2d444d2005-11-08 21:39:31 -08006148 clear_bit(In_sync, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006149 rdev->raid_disk = disk;
Neil Brown199050e2008-06-28 08:31:33 +10006150 err = 0;
NeilBrown72626682005-09-09 16:23:54 -07006151 if (rdev->saved_raid_disk != disk)
6152 conf->fullsync = 1;
Suzanne Woodd6065f72005-11-08 21:39:27 -08006153 rcu_assign_pointer(p->rdev, rdev);
NeilBrown5cfb22a2012-07-03 11:46:53 +10006154 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006155 }
NeilBrown5cfb22a2012-07-03 11:46:53 +10006156 }
6157 for (disk = first; disk <= last; disk++) {
6158 p = conf->disks + disk;
NeilBrown7bfec5f2011-12-23 10:17:53 +11006159 if (test_bit(WantReplacement, &p->rdev->flags) &&
6160 p->replacement == NULL) {
6161 clear_bit(In_sync, &rdev->flags);
6162 set_bit(Replacement, &rdev->flags);
6163 rdev->raid_disk = disk;
6164 err = 0;
6165 conf->fullsync = 1;
6166 rcu_assign_pointer(p->replacement, rdev);
6167 break;
6168 }
6169 }
NeilBrown5cfb22a2012-07-03 11:46:53 +10006170out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07006171 print_raid5_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10006172 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006173}
6174
NeilBrownfd01b882011-10-11 16:47:53 +11006175static int raid5_resize(struct mddev *mddev, sector_t sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006176{
6177 /* no resync is happening, and there is enough space
6178 * on all devices, so we can resize.
6179 * We need to make sure resync covers any new space.
6180 * If the array is shrinking we should possibly wait until
6181 * any io in the removed space completes, but it hardly seems
6182 * worth it.
6183 */
NeilBrowna4a61252012-05-22 13:55:27 +10006184 sector_t newsize;
Andre Noll9d8f0362009-06-18 08:45:01 +10006185 sectors &= ~((sector_t)mddev->chunk_sectors - 1);
NeilBrowna4a61252012-05-22 13:55:27 +10006186 newsize = raid5_size(mddev, sectors, mddev->raid_disks);
6187 if (mddev->external_size &&
6188 mddev->array_sectors > newsize)
Dan Williamsb522adc2009-03-31 15:00:31 +11006189 return -EINVAL;
NeilBrowna4a61252012-05-22 13:55:27 +10006190 if (mddev->bitmap) {
6191 int ret = bitmap_resize(mddev->bitmap, sectors, 0, 0);
6192 if (ret)
6193 return ret;
6194 }
6195 md_set_array_sectors(mddev, newsize);
Andre Nollf233ea52008-07-21 17:05:22 +10006196 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10006197 revalidate_disk(mddev->gendisk);
NeilBrownb0986362011-05-11 15:52:21 +10006198 if (sectors > mddev->dev_sectors &&
6199 mddev->recovery_cp > mddev->dev_sectors) {
Andre Noll58c0fed2009-03-31 14:33:13 +11006200 mddev->recovery_cp = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006201 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
6202 }
Andre Noll58c0fed2009-03-31 14:33:13 +11006203 mddev->dev_sectors = sectors;
NeilBrown4b5c7ae2005-07-27 11:43:28 -07006204 mddev->resync_max_sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006205 return 0;
6206}
6207
NeilBrownfd01b882011-10-11 16:47:53 +11006208static int check_stripe_cache(struct mddev *mddev)
NeilBrown01ee22b2009-06-18 08:47:20 +10006209{
6210 /* Can only proceed if there are plenty of stripe_heads.
6211 * We need a minimum of one full stripe,, and for sensible progress
6212 * it is best to have about 4 times that.
6213 * If we require 4 times, then the default 256 4K stripe_heads will
6214 * allow for chunk sizes up to 256K, which is probably OK.
6215 * If the chunk size is greater, user-space should request more
6216 * stripe_heads first.
6217 */
NeilBrownd1688a62011-10-11 16:49:52 +11006218 struct r5conf *conf = mddev->private;
NeilBrown01ee22b2009-06-18 08:47:20 +10006219 if (((mddev->chunk_sectors << 9) / STRIPE_SIZE) * 4
6220 > conf->max_nr_stripes ||
6221 ((mddev->new_chunk_sectors << 9) / STRIPE_SIZE) * 4
6222 > conf->max_nr_stripes) {
NeilBrown0c55e022010-05-03 14:09:02 +10006223 printk(KERN_WARNING "md/raid:%s: reshape: not enough stripes. Needed %lu\n",
6224 mdname(mddev),
NeilBrown01ee22b2009-06-18 08:47:20 +10006225 ((max(mddev->chunk_sectors, mddev->new_chunk_sectors) << 9)
6226 / STRIPE_SIZE)*4);
6227 return 0;
6228 }
6229 return 1;
6230}
6231
NeilBrownfd01b882011-10-11 16:47:53 +11006232static int check_reshape(struct mddev *mddev)
NeilBrown29269552006-03-27 01:18:10 -08006233{
NeilBrownd1688a62011-10-11 16:49:52 +11006234 struct r5conf *conf = mddev->private;
NeilBrown29269552006-03-27 01:18:10 -08006235
NeilBrown88ce4932009-03-31 15:24:23 +11006236 if (mddev->delta_disks == 0 &&
6237 mddev->new_layout == mddev->layout &&
Andre Noll664e7c42009-06-18 08:45:27 +10006238 mddev->new_chunk_sectors == mddev->chunk_sectors)
NeilBrown50ac1682009-06-18 08:47:55 +10006239 return 0; /* nothing to do */
NeilBrown674806d2010-06-16 17:17:53 +10006240 if (has_failed(conf))
NeilBrownec32a2b2009-03-31 15:17:38 +11006241 return -EINVAL;
NeilBrownfdcfbbb2013-07-04 16:38:16 +10006242 if (mddev->delta_disks < 0 && mddev->reshape_position == MaxSector) {
NeilBrownec32a2b2009-03-31 15:17:38 +11006243 /* We might be able to shrink, but the devices must
6244 * be made bigger first.
6245 * For raid6, 4 is the minimum size.
6246 * Otherwise 2 is the minimum
6247 */
6248 int min = 2;
6249 if (mddev->level == 6)
6250 min = 4;
6251 if (mddev->raid_disks + mddev->delta_disks < min)
6252 return -EINVAL;
6253 }
NeilBrown29269552006-03-27 01:18:10 -08006254
NeilBrown01ee22b2009-06-18 08:47:20 +10006255 if (!check_stripe_cache(mddev))
NeilBrown29269552006-03-27 01:18:10 -08006256 return -ENOSPC;
NeilBrown29269552006-03-27 01:18:10 -08006257
NeilBrowne56108d62012-10-11 14:24:13 +11006258 return resize_stripes(conf, (conf->previous_raid_disks
6259 + mddev->delta_disks));
NeilBrown63c70c42006-03-27 01:18:13 -08006260}
6261
NeilBrownfd01b882011-10-11 16:47:53 +11006262static int raid5_start_reshape(struct mddev *mddev)
NeilBrown63c70c42006-03-27 01:18:13 -08006263{
NeilBrownd1688a62011-10-11 16:49:52 +11006264 struct r5conf *conf = mddev->private;
NeilBrown3cb03002011-10-11 16:45:26 +11006265 struct md_rdev *rdev;
NeilBrown63c70c42006-03-27 01:18:13 -08006266 int spares = 0;
NeilBrownc04be0a2006-10-03 01:15:53 -07006267 unsigned long flags;
NeilBrown63c70c42006-03-27 01:18:13 -08006268
NeilBrownf4168852007-02-28 20:11:53 -08006269 if (test_bit(MD_RECOVERY_RUNNING, &mddev->recovery))
NeilBrown63c70c42006-03-27 01:18:13 -08006270 return -EBUSY;
6271
NeilBrown01ee22b2009-06-18 08:47:20 +10006272 if (!check_stripe_cache(mddev))
6273 return -ENOSPC;
6274
NeilBrown30b67642012-05-22 13:55:28 +10006275 if (has_failed(conf))
6276 return -EINVAL;
6277
NeilBrownc6563a82012-05-21 09:27:00 +10006278 rdev_for_each(rdev, mddev) {
NeilBrown469518a2011-01-31 11:57:43 +11006279 if (!test_bit(In_sync, &rdev->flags)
6280 && !test_bit(Faulty, &rdev->flags))
NeilBrown29269552006-03-27 01:18:10 -08006281 spares++;
NeilBrownc6563a82012-05-21 09:27:00 +10006282 }
NeilBrown63c70c42006-03-27 01:18:13 -08006283
NeilBrownf4168852007-02-28 20:11:53 -08006284 if (spares - mddev->degraded < mddev->delta_disks - conf->max_degraded)
NeilBrown29269552006-03-27 01:18:10 -08006285 /* Not enough devices even to make a degraded array
6286 * of that size
6287 */
6288 return -EINVAL;
6289
NeilBrownec32a2b2009-03-31 15:17:38 +11006290 /* Refuse to reduce size of the array. Any reductions in
6291 * array size must be through explicit setting of array_size
6292 * attribute.
6293 */
6294 if (raid5_size(mddev, 0, conf->raid_disks + mddev->delta_disks)
6295 < mddev->array_sectors) {
NeilBrown0c55e022010-05-03 14:09:02 +10006296 printk(KERN_ERR "md/raid:%s: array size must be reduced "
NeilBrownec32a2b2009-03-31 15:17:38 +11006297 "before number of disks\n", mdname(mddev));
6298 return -EINVAL;
6299 }
6300
NeilBrownf6705572006-03-27 01:18:11 -08006301 atomic_set(&conf->reshape_stripes, 0);
NeilBrown29269552006-03-27 01:18:10 -08006302 spin_lock_irq(&conf->device_lock);
NeilBrownc46501b2013-08-27 15:52:13 +10006303 write_seqcount_begin(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08006304 conf->previous_raid_disks = conf->raid_disks;
NeilBrown63c70c42006-03-27 01:18:13 -08006305 conf->raid_disks += mddev->delta_disks;
Andre Noll09c9e5f2009-06-18 08:45:55 +10006306 conf->prev_chunk_sectors = conf->chunk_sectors;
6307 conf->chunk_sectors = mddev->new_chunk_sectors;
NeilBrown88ce4932009-03-31 15:24:23 +11006308 conf->prev_algo = conf->algorithm;
6309 conf->algorithm = mddev->new_layout;
NeilBrown05616be2012-05-21 09:27:00 +10006310 conf->generation++;
6311 /* Code that selects data_offset needs to see the generation update
6312 * if reshape_progress has been set - so a memory barrier needed.
6313 */
6314 smp_mb();
NeilBrown2c810cd2012-05-21 09:27:00 +10006315 if (mddev->reshape_backwards)
NeilBrownfef9c612009-03-31 15:16:46 +11006316 conf->reshape_progress = raid5_size(mddev, 0, 0);
6317 else
6318 conf->reshape_progress = 0;
6319 conf->reshape_safe = conf->reshape_progress;
NeilBrownc46501b2013-08-27 15:52:13 +10006320 write_seqcount_end(&conf->gen_lock);
NeilBrown29269552006-03-27 01:18:10 -08006321 spin_unlock_irq(&conf->device_lock);
6322
NeilBrown4d77e3b2013-08-27 15:57:47 +10006323 /* Now make sure any requests that proceeded on the assumption
6324 * the reshape wasn't running - like Discard or Read - have
6325 * completed.
6326 */
6327 mddev_suspend(mddev);
6328 mddev_resume(mddev);
6329
NeilBrown29269552006-03-27 01:18:10 -08006330 /* Add some new drives, as many as will fit.
6331 * We know there are enough to make the newly sized array work.
NeilBrown3424bf62010-06-17 17:48:26 +10006332 * Don't add devices if we are reducing the number of
6333 * devices in the array. This is because it is not possible
6334 * to correctly record the "partially reconstructed" state of
6335 * such devices during the reshape and confusion could result.
NeilBrown29269552006-03-27 01:18:10 -08006336 */
NeilBrown87a8dec2011-01-31 11:57:43 +11006337 if (mddev->delta_disks >= 0) {
NeilBrowndafb20f2012-03-19 12:46:39 +11006338 rdev_for_each(rdev, mddev)
NeilBrown87a8dec2011-01-31 11:57:43 +11006339 if (rdev->raid_disk < 0 &&
6340 !test_bit(Faulty, &rdev->flags)) {
6341 if (raid5_add_disk(mddev, rdev) == 0) {
NeilBrown87a8dec2011-01-31 11:57:43 +11006342 if (rdev->raid_disk
NeilBrown9d4c7d82012-03-13 11:21:21 +11006343 >= conf->previous_raid_disks)
NeilBrown87a8dec2011-01-31 11:57:43 +11006344 set_bit(In_sync, &rdev->flags);
NeilBrown9d4c7d82012-03-13 11:21:21 +11006345 else
NeilBrown87a8dec2011-01-31 11:57:43 +11006346 rdev->recovery_offset = 0;
Namhyung Kim36fad852011-07-27 11:00:36 +10006347
6348 if (sysfs_link_rdev(mddev, rdev))
NeilBrown87a8dec2011-01-31 11:57:43 +11006349 /* Failure here is OK */;
NeilBrown50da0842011-01-31 11:57:43 +11006350 }
NeilBrown87a8dec2011-01-31 11:57:43 +11006351 } else if (rdev->raid_disk >= conf->previous_raid_disks
6352 && !test_bit(Faulty, &rdev->flags)) {
6353 /* This is a spare that was manually added */
6354 set_bit(In_sync, &rdev->flags);
NeilBrown87a8dec2011-01-31 11:57:43 +11006355 }
NeilBrown29269552006-03-27 01:18:10 -08006356
NeilBrown87a8dec2011-01-31 11:57:43 +11006357 /* When a reshape changes the number of devices,
6358 * ->degraded is measured against the larger of the
6359 * pre and post number of devices.
6360 */
NeilBrownec32a2b2009-03-31 15:17:38 +11006361 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrown908f4fb2011-12-23 10:17:50 +11006362 mddev->degraded = calc_degraded(conf);
NeilBrownec32a2b2009-03-31 15:17:38 +11006363 spin_unlock_irqrestore(&conf->device_lock, flags);
6364 }
NeilBrown63c70c42006-03-27 01:18:13 -08006365 mddev->raid_disks = conf->raid_disks;
NeilBrowne5164022009-08-03 10:59:57 +10006366 mddev->reshape_position = conf->reshape_progress;
NeilBrown850b2b42006-10-03 01:15:46 -07006367 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrownf6705572006-03-27 01:18:11 -08006368
NeilBrown29269552006-03-27 01:18:10 -08006369 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
6370 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
6371 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
6372 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
6373 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
NeilBrown0da3c612009-09-23 18:09:45 +10006374 "reshape");
NeilBrown29269552006-03-27 01:18:10 -08006375 if (!mddev->sync_thread) {
6376 mddev->recovery = 0;
6377 spin_lock_irq(&conf->device_lock);
6378 mddev->raid_disks = conf->raid_disks = conf->previous_raid_disks;
NeilBrown05616be2012-05-21 09:27:00 +10006379 rdev_for_each(rdev, mddev)
6380 rdev->new_data_offset = rdev->data_offset;
6381 smp_wmb();
NeilBrownfef9c612009-03-31 15:16:46 +11006382 conf->reshape_progress = MaxSector;
NeilBrown1e3fa9b2012-03-13 11:21:18 +11006383 mddev->reshape_position = MaxSector;
NeilBrown29269552006-03-27 01:18:10 -08006384 spin_unlock_irq(&conf->device_lock);
6385 return -EAGAIN;
6386 }
NeilBrownc8f517c2009-03-31 15:28:40 +11006387 conf->reshape_checkpoint = jiffies;
NeilBrown29269552006-03-27 01:18:10 -08006388 md_wakeup_thread(mddev->sync_thread);
6389 md_new_event(mddev);
6390 return 0;
6391}
NeilBrown29269552006-03-27 01:18:10 -08006392
NeilBrownec32a2b2009-03-31 15:17:38 +11006393/* This is called from the reshape thread and should make any
6394 * changes needed in 'conf'
6395 */
NeilBrownd1688a62011-10-11 16:49:52 +11006396static void end_reshape(struct r5conf *conf)
NeilBrown29269552006-03-27 01:18:10 -08006397{
NeilBrown29269552006-03-27 01:18:10 -08006398
NeilBrownf6705572006-03-27 01:18:11 -08006399 if (!test_bit(MD_RECOVERY_INTR, &conf->mddev->recovery)) {
NeilBrown05616be2012-05-21 09:27:00 +10006400 struct md_rdev *rdev;
Dan Williams80c3a6c2009-03-17 18:10:40 -07006401
NeilBrownf6705572006-03-27 01:18:11 -08006402 spin_lock_irq(&conf->device_lock);
NeilBrowncea9c222009-03-31 15:15:05 +11006403 conf->previous_raid_disks = conf->raid_disks;
NeilBrown05616be2012-05-21 09:27:00 +10006404 rdev_for_each(rdev, conf->mddev)
6405 rdev->data_offset = rdev->new_data_offset;
6406 smp_wmb();
NeilBrownfef9c612009-03-31 15:16:46 +11006407 conf->reshape_progress = MaxSector;
NeilBrownf6705572006-03-27 01:18:11 -08006408 spin_unlock_irq(&conf->device_lock);
NeilBrownb0f9ec02009-03-31 15:27:18 +11006409 wake_up(&conf->wait_for_overlap);
NeilBrown16a53ec2006-06-26 00:27:38 -07006410
6411 /* read-ahead size must cover two whole stripes, which is
6412 * 2 * (datadisks) * chunksize where 'n' is the number of raid devices
6413 */
NeilBrown4a5add42010-06-01 19:37:28 +10006414 if (conf->mddev->queue) {
NeilBrowncea9c222009-03-31 15:15:05 +11006415 int data_disks = conf->raid_disks - conf->max_degraded;
Andre Noll09c9e5f2009-06-18 08:45:55 +10006416 int stripe = data_disks * ((conf->chunk_sectors << 9)
NeilBrowncea9c222009-03-31 15:15:05 +11006417 / PAGE_SIZE);
NeilBrown16a53ec2006-06-26 00:27:38 -07006418 if (conf->mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
6419 conf->mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
6420 }
NeilBrown29269552006-03-27 01:18:10 -08006421 }
NeilBrown29269552006-03-27 01:18:10 -08006422}
6423
NeilBrownec32a2b2009-03-31 15:17:38 +11006424/* This is called from the raid5d thread with mddev_lock held.
6425 * It makes config changes to the device.
6426 */
NeilBrownfd01b882011-10-11 16:47:53 +11006427static void raid5_finish_reshape(struct mddev *mddev)
NeilBrowncea9c222009-03-31 15:15:05 +11006428{
NeilBrownd1688a62011-10-11 16:49:52 +11006429 struct r5conf *conf = mddev->private;
NeilBrowncea9c222009-03-31 15:15:05 +11006430
6431 if (!test_bit(MD_RECOVERY_INTR, &mddev->recovery)) {
6432
NeilBrownec32a2b2009-03-31 15:17:38 +11006433 if (mddev->delta_disks > 0) {
6434 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
6435 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10006436 revalidate_disk(mddev->gendisk);
NeilBrownec32a2b2009-03-31 15:17:38 +11006437 } else {
6438 int d;
NeilBrown908f4fb2011-12-23 10:17:50 +11006439 spin_lock_irq(&conf->device_lock);
6440 mddev->degraded = calc_degraded(conf);
6441 spin_unlock_irq(&conf->device_lock);
NeilBrownec32a2b2009-03-31 15:17:38 +11006442 for (d = conf->raid_disks ;
6443 d < conf->raid_disks - mddev->delta_disks;
NeilBrown1a67dde2009-08-13 10:41:49 +10006444 d++) {
NeilBrown3cb03002011-10-11 16:45:26 +11006445 struct md_rdev *rdev = conf->disks[d].rdev;
NeilBrownda7613b2012-05-22 13:55:33 +10006446 if (rdev)
6447 clear_bit(In_sync, &rdev->flags);
6448 rdev = conf->disks[d].replacement;
6449 if (rdev)
6450 clear_bit(In_sync, &rdev->flags);
NeilBrown1a67dde2009-08-13 10:41:49 +10006451 }
NeilBrowncea9c222009-03-31 15:15:05 +11006452 }
NeilBrown88ce4932009-03-31 15:24:23 +11006453 mddev->layout = conf->algorithm;
Andre Noll09c9e5f2009-06-18 08:45:55 +10006454 mddev->chunk_sectors = conf->chunk_sectors;
NeilBrownec32a2b2009-03-31 15:17:38 +11006455 mddev->reshape_position = MaxSector;
6456 mddev->delta_disks = 0;
NeilBrown2c810cd2012-05-21 09:27:00 +10006457 mddev->reshape_backwards = 0;
NeilBrowncea9c222009-03-31 15:15:05 +11006458 }
6459}
6460
NeilBrownfd01b882011-10-11 16:47:53 +11006461static void raid5_quiesce(struct mddev *mddev, int state)
NeilBrown72626682005-09-09 16:23:54 -07006462{
NeilBrownd1688a62011-10-11 16:49:52 +11006463 struct r5conf *conf = mddev->private;
NeilBrown72626682005-09-09 16:23:54 -07006464
6465 switch(state) {
NeilBrowne464eaf2006-03-27 01:18:14 -08006466 case 2: /* resume for a suspend */
6467 wake_up(&conf->wait_for_overlap);
6468 break;
6469
NeilBrown72626682005-09-09 16:23:54 -07006470 case 1: /* stop all writes */
6471 spin_lock_irq(&conf->device_lock);
NeilBrown64bd6602009-08-03 10:59:58 +10006472 /* '2' tells resync/reshape to pause so that all
6473 * active stripes can drain
6474 */
6475 conf->quiesce = 2;
NeilBrown72626682005-09-09 16:23:54 -07006476 wait_event_lock_irq(conf->wait_for_stripe,
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006477 atomic_read(&conf->active_stripes) == 0 &&
6478 atomic_read(&conf->active_aligned_reads) == 0,
Lukas Czernereed8c022012-11-30 11:42:40 +01006479 conf->device_lock);
NeilBrown64bd6602009-08-03 10:59:58 +10006480 conf->quiesce = 1;
NeilBrown72626682005-09-09 16:23:54 -07006481 spin_unlock_irq(&conf->device_lock);
NeilBrown64bd6602009-08-03 10:59:58 +10006482 /* allow reshape to continue */
6483 wake_up(&conf->wait_for_overlap);
NeilBrown72626682005-09-09 16:23:54 -07006484 break;
6485
6486 case 0: /* re-enable writes */
6487 spin_lock_irq(&conf->device_lock);
6488 conf->quiesce = 0;
6489 wake_up(&conf->wait_for_stripe);
NeilBrowne464eaf2006-03-27 01:18:14 -08006490 wake_up(&conf->wait_for_overlap);
NeilBrown72626682005-09-09 16:23:54 -07006491 spin_unlock_irq(&conf->device_lock);
6492 break;
6493 }
NeilBrown72626682005-09-09 16:23:54 -07006494}
NeilBrownb15c2e52006-01-06 00:20:16 -08006495
NeilBrownd562b0c2009-03-31 14:39:39 +11006496
NeilBrownfd01b882011-10-11 16:47:53 +11006497static void *raid45_takeover_raid0(struct mddev *mddev, int level)
Trela Maciej54071b32010-03-08 16:02:42 +11006498{
NeilBrowne373ab12011-10-11 16:48:59 +11006499 struct r0conf *raid0_conf = mddev->private;
Randy Dunlapd76c8422011-04-21 09:07:26 -07006500 sector_t sectors;
Trela Maciej54071b32010-03-08 16:02:42 +11006501
Dan Williamsf1b29bc2010-05-01 18:09:05 -07006502 /* for raid0 takeover only one zone is supported */
NeilBrowne373ab12011-10-11 16:48:59 +11006503 if (raid0_conf->nr_strip_zones > 1) {
NeilBrown0c55e022010-05-03 14:09:02 +10006504 printk(KERN_ERR "md/raid:%s: cannot takeover raid0 with more than one zone.\n",
6505 mdname(mddev));
Dan Williamsf1b29bc2010-05-01 18:09:05 -07006506 return ERR_PTR(-EINVAL);
6507 }
6508
NeilBrowne373ab12011-10-11 16:48:59 +11006509 sectors = raid0_conf->strip_zone[0].zone_end;
6510 sector_div(sectors, raid0_conf->strip_zone[0].nb_dev);
NeilBrown3b71bd92011-04-20 15:38:18 +10006511 mddev->dev_sectors = sectors;
Dan Williamsf1b29bc2010-05-01 18:09:05 -07006512 mddev->new_level = level;
Trela Maciej54071b32010-03-08 16:02:42 +11006513 mddev->new_layout = ALGORITHM_PARITY_N;
6514 mddev->new_chunk_sectors = mddev->chunk_sectors;
6515 mddev->raid_disks += 1;
6516 mddev->delta_disks = 1;
6517 /* make sure it will be not marked as dirty */
6518 mddev->recovery_cp = MaxSector;
6519
6520 return setup_conf(mddev);
6521}
6522
6523
NeilBrownfd01b882011-10-11 16:47:53 +11006524static void *raid5_takeover_raid1(struct mddev *mddev)
NeilBrownd562b0c2009-03-31 14:39:39 +11006525{
6526 int chunksect;
6527
6528 if (mddev->raid_disks != 2 ||
6529 mddev->degraded > 1)
6530 return ERR_PTR(-EINVAL);
6531
6532 /* Should check if there are write-behind devices? */
6533
6534 chunksect = 64*2; /* 64K by default */
6535
6536 /* The array must be an exact multiple of chunksize */
6537 while (chunksect && (mddev->array_sectors & (chunksect-1)))
6538 chunksect >>= 1;
6539
6540 if ((chunksect<<9) < STRIPE_SIZE)
6541 /* array size does not allow a suitable chunk size */
6542 return ERR_PTR(-EINVAL);
6543
6544 mddev->new_level = 5;
6545 mddev->new_layout = ALGORITHM_LEFT_SYMMETRIC;
Andre Noll664e7c42009-06-18 08:45:27 +10006546 mddev->new_chunk_sectors = chunksect;
NeilBrownd562b0c2009-03-31 14:39:39 +11006547
6548 return setup_conf(mddev);
6549}
6550
NeilBrownfd01b882011-10-11 16:47:53 +11006551static void *raid5_takeover_raid6(struct mddev *mddev)
NeilBrownfc9739c2009-03-31 14:57:20 +11006552{
6553 int new_layout;
6554
6555 switch (mddev->layout) {
6556 case ALGORITHM_LEFT_ASYMMETRIC_6:
6557 new_layout = ALGORITHM_LEFT_ASYMMETRIC;
6558 break;
6559 case ALGORITHM_RIGHT_ASYMMETRIC_6:
6560 new_layout = ALGORITHM_RIGHT_ASYMMETRIC;
6561 break;
6562 case ALGORITHM_LEFT_SYMMETRIC_6:
6563 new_layout = ALGORITHM_LEFT_SYMMETRIC;
6564 break;
6565 case ALGORITHM_RIGHT_SYMMETRIC_6:
6566 new_layout = ALGORITHM_RIGHT_SYMMETRIC;
6567 break;
6568 case ALGORITHM_PARITY_0_6:
6569 new_layout = ALGORITHM_PARITY_0;
6570 break;
6571 case ALGORITHM_PARITY_N:
6572 new_layout = ALGORITHM_PARITY_N;
6573 break;
6574 default:
6575 return ERR_PTR(-EINVAL);
6576 }
6577 mddev->new_level = 5;
6578 mddev->new_layout = new_layout;
6579 mddev->delta_disks = -1;
6580 mddev->raid_disks -= 1;
6581 return setup_conf(mddev);
6582}
6583
NeilBrownd562b0c2009-03-31 14:39:39 +11006584
NeilBrownfd01b882011-10-11 16:47:53 +11006585static int raid5_check_reshape(struct mddev *mddev)
NeilBrownb3546032009-03-31 14:56:41 +11006586{
NeilBrown88ce4932009-03-31 15:24:23 +11006587 /* For a 2-drive array, the layout and chunk size can be changed
6588 * immediately as not restriping is needed.
6589 * For larger arrays we record the new value - after validation
6590 * to be used by a reshape pass.
NeilBrownb3546032009-03-31 14:56:41 +11006591 */
NeilBrownd1688a62011-10-11 16:49:52 +11006592 struct r5conf *conf = mddev->private;
NeilBrown597a7112009-06-18 08:47:42 +10006593 int new_chunk = mddev->new_chunk_sectors;
NeilBrownb3546032009-03-31 14:56:41 +11006594
NeilBrown597a7112009-06-18 08:47:42 +10006595 if (mddev->new_layout >= 0 && !algorithm_valid_raid5(mddev->new_layout))
NeilBrownb3546032009-03-31 14:56:41 +11006596 return -EINVAL;
6597 if (new_chunk > 0) {
Andre Noll0ba459d2009-06-18 08:46:10 +10006598 if (!is_power_of_2(new_chunk))
NeilBrownb3546032009-03-31 14:56:41 +11006599 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10006600 if (new_chunk < (PAGE_SIZE>>9))
NeilBrownb3546032009-03-31 14:56:41 +11006601 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10006602 if (mddev->array_sectors & (new_chunk-1))
NeilBrownb3546032009-03-31 14:56:41 +11006603 /* not factor of array size */
6604 return -EINVAL;
6605 }
6606
6607 /* They look valid */
6608
NeilBrown88ce4932009-03-31 15:24:23 +11006609 if (mddev->raid_disks == 2) {
NeilBrown597a7112009-06-18 08:47:42 +10006610 /* can make the change immediately */
6611 if (mddev->new_layout >= 0) {
6612 conf->algorithm = mddev->new_layout;
6613 mddev->layout = mddev->new_layout;
NeilBrown88ce4932009-03-31 15:24:23 +11006614 }
6615 if (new_chunk > 0) {
NeilBrown597a7112009-06-18 08:47:42 +10006616 conf->chunk_sectors = new_chunk ;
6617 mddev->chunk_sectors = new_chunk;
NeilBrown88ce4932009-03-31 15:24:23 +11006618 }
6619 set_bit(MD_CHANGE_DEVS, &mddev->flags);
6620 md_wakeup_thread(mddev->thread);
NeilBrownb3546032009-03-31 14:56:41 +11006621 }
NeilBrown50ac1682009-06-18 08:47:55 +10006622 return check_reshape(mddev);
NeilBrown88ce4932009-03-31 15:24:23 +11006623}
6624
NeilBrownfd01b882011-10-11 16:47:53 +11006625static int raid6_check_reshape(struct mddev *mddev)
NeilBrown88ce4932009-03-31 15:24:23 +11006626{
NeilBrown597a7112009-06-18 08:47:42 +10006627 int new_chunk = mddev->new_chunk_sectors;
NeilBrown50ac1682009-06-18 08:47:55 +10006628
NeilBrown597a7112009-06-18 08:47:42 +10006629 if (mddev->new_layout >= 0 && !algorithm_valid_raid6(mddev->new_layout))
NeilBrown88ce4932009-03-31 15:24:23 +11006630 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11006631 if (new_chunk > 0) {
Andre Noll0ba459d2009-06-18 08:46:10 +10006632 if (!is_power_of_2(new_chunk))
NeilBrown88ce4932009-03-31 15:24:23 +11006633 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10006634 if (new_chunk < (PAGE_SIZE >> 9))
NeilBrown88ce4932009-03-31 15:24:23 +11006635 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10006636 if (mddev->array_sectors & (new_chunk-1))
NeilBrown88ce4932009-03-31 15:24:23 +11006637 /* not factor of array size */
6638 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11006639 }
NeilBrown88ce4932009-03-31 15:24:23 +11006640
6641 /* They look valid */
NeilBrown50ac1682009-06-18 08:47:55 +10006642 return check_reshape(mddev);
NeilBrownb3546032009-03-31 14:56:41 +11006643}
6644
NeilBrownfd01b882011-10-11 16:47:53 +11006645static void *raid5_takeover(struct mddev *mddev)
NeilBrownd562b0c2009-03-31 14:39:39 +11006646{
6647 /* raid5 can take over:
Dan Williamsf1b29bc2010-05-01 18:09:05 -07006648 * raid0 - if there is only one strip zone - make it a raid4 layout
NeilBrownd562b0c2009-03-31 14:39:39 +11006649 * raid1 - if there are two drives. We need to know the chunk size
6650 * raid4 - trivial - just use a raid4 layout.
6651 * raid6 - Providing it is a *_6 layout
NeilBrownd562b0c2009-03-31 14:39:39 +11006652 */
Dan Williamsf1b29bc2010-05-01 18:09:05 -07006653 if (mddev->level == 0)
6654 return raid45_takeover_raid0(mddev, 5);
NeilBrownd562b0c2009-03-31 14:39:39 +11006655 if (mddev->level == 1)
6656 return raid5_takeover_raid1(mddev);
NeilBrowne9d47582009-03-31 14:57:09 +11006657 if (mddev->level == 4) {
6658 mddev->new_layout = ALGORITHM_PARITY_N;
6659 mddev->new_level = 5;
6660 return setup_conf(mddev);
6661 }
NeilBrownfc9739c2009-03-31 14:57:20 +11006662 if (mddev->level == 6)
6663 return raid5_takeover_raid6(mddev);
NeilBrownd562b0c2009-03-31 14:39:39 +11006664
6665 return ERR_PTR(-EINVAL);
6666}
6667
NeilBrownfd01b882011-10-11 16:47:53 +11006668static void *raid4_takeover(struct mddev *mddev)
NeilBrowna78d38a2010-03-22 16:53:49 +11006669{
Dan Williamsf1b29bc2010-05-01 18:09:05 -07006670 /* raid4 can take over:
6671 * raid0 - if there is only one strip zone
6672 * raid5 - if layout is right
NeilBrowna78d38a2010-03-22 16:53:49 +11006673 */
Dan Williamsf1b29bc2010-05-01 18:09:05 -07006674 if (mddev->level == 0)
6675 return raid45_takeover_raid0(mddev, 4);
NeilBrowna78d38a2010-03-22 16:53:49 +11006676 if (mddev->level == 5 &&
6677 mddev->layout == ALGORITHM_PARITY_N) {
6678 mddev->new_layout = 0;
6679 mddev->new_level = 4;
6680 return setup_conf(mddev);
6681 }
6682 return ERR_PTR(-EINVAL);
6683}
NeilBrownd562b0c2009-03-31 14:39:39 +11006684
NeilBrown84fc4b52011-10-11 16:49:58 +11006685static struct md_personality raid5_personality;
NeilBrown245f46c2009-03-31 14:39:39 +11006686
NeilBrownfd01b882011-10-11 16:47:53 +11006687static void *raid6_takeover(struct mddev *mddev)
NeilBrown245f46c2009-03-31 14:39:39 +11006688{
6689 /* Currently can only take over a raid5. We map the
6690 * personality to an equivalent raid6 personality
6691 * with the Q block at the end.
6692 */
6693 int new_layout;
6694
6695 if (mddev->pers != &raid5_personality)
6696 return ERR_PTR(-EINVAL);
6697 if (mddev->degraded > 1)
6698 return ERR_PTR(-EINVAL);
6699 if (mddev->raid_disks > 253)
6700 return ERR_PTR(-EINVAL);
6701 if (mddev->raid_disks < 3)
6702 return ERR_PTR(-EINVAL);
6703
6704 switch (mddev->layout) {
6705 case ALGORITHM_LEFT_ASYMMETRIC:
6706 new_layout = ALGORITHM_LEFT_ASYMMETRIC_6;
6707 break;
6708 case ALGORITHM_RIGHT_ASYMMETRIC:
6709 new_layout = ALGORITHM_RIGHT_ASYMMETRIC_6;
6710 break;
6711 case ALGORITHM_LEFT_SYMMETRIC:
6712 new_layout = ALGORITHM_LEFT_SYMMETRIC_6;
6713 break;
6714 case ALGORITHM_RIGHT_SYMMETRIC:
6715 new_layout = ALGORITHM_RIGHT_SYMMETRIC_6;
6716 break;
6717 case ALGORITHM_PARITY_0:
6718 new_layout = ALGORITHM_PARITY_0_6;
6719 break;
6720 case ALGORITHM_PARITY_N:
6721 new_layout = ALGORITHM_PARITY_N;
6722 break;
6723 default:
6724 return ERR_PTR(-EINVAL);
6725 }
6726 mddev->new_level = 6;
6727 mddev->new_layout = new_layout;
6728 mddev->delta_disks = 1;
6729 mddev->raid_disks += 1;
6730 return setup_conf(mddev);
6731}
6732
6733
NeilBrown84fc4b52011-10-11 16:49:58 +11006734static struct md_personality raid6_personality =
NeilBrown16a53ec2006-06-26 00:27:38 -07006735{
6736 .name = "raid6",
6737 .level = 6,
6738 .owner = THIS_MODULE,
6739 .make_request = make_request,
6740 .run = run,
6741 .stop = stop,
6742 .status = status,
6743 .error_handler = error,
6744 .hot_add_disk = raid5_add_disk,
6745 .hot_remove_disk= raid5_remove_disk,
6746 .spare_active = raid5_spare_active,
6747 .sync_request = sync_request,
6748 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07006749 .size = raid5_size,
NeilBrown50ac1682009-06-18 08:47:55 +10006750 .check_reshape = raid6_check_reshape,
NeilBrownf4168852007-02-28 20:11:53 -08006751 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11006752 .finish_reshape = raid5_finish_reshape,
NeilBrown16a53ec2006-06-26 00:27:38 -07006753 .quiesce = raid5_quiesce,
NeilBrown245f46c2009-03-31 14:39:39 +11006754 .takeover = raid6_takeover,
NeilBrown16a53ec2006-06-26 00:27:38 -07006755};
NeilBrown84fc4b52011-10-11 16:49:58 +11006756static struct md_personality raid5_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07006757{
6758 .name = "raid5",
NeilBrown2604b702006-01-06 00:20:36 -08006759 .level = 5,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006760 .owner = THIS_MODULE,
6761 .make_request = make_request,
6762 .run = run,
6763 .stop = stop,
6764 .status = status,
6765 .error_handler = error,
6766 .hot_add_disk = raid5_add_disk,
6767 .hot_remove_disk= raid5_remove_disk,
6768 .spare_active = raid5_spare_active,
6769 .sync_request = sync_request,
6770 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07006771 .size = raid5_size,
NeilBrown63c70c42006-03-27 01:18:13 -08006772 .check_reshape = raid5_check_reshape,
6773 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11006774 .finish_reshape = raid5_finish_reshape,
NeilBrown72626682005-09-09 16:23:54 -07006775 .quiesce = raid5_quiesce,
NeilBrownd562b0c2009-03-31 14:39:39 +11006776 .takeover = raid5_takeover,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006777};
6778
NeilBrown84fc4b52011-10-11 16:49:58 +11006779static struct md_personality raid4_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07006780{
NeilBrown2604b702006-01-06 00:20:36 -08006781 .name = "raid4",
6782 .level = 4,
6783 .owner = THIS_MODULE,
6784 .make_request = make_request,
6785 .run = run,
6786 .stop = stop,
6787 .status = status,
6788 .error_handler = error,
6789 .hot_add_disk = raid5_add_disk,
6790 .hot_remove_disk= raid5_remove_disk,
6791 .spare_active = raid5_spare_active,
6792 .sync_request = sync_request,
6793 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07006794 .size = raid5_size,
NeilBrown3d378902007-03-26 21:32:13 -08006795 .check_reshape = raid5_check_reshape,
6796 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11006797 .finish_reshape = raid5_finish_reshape,
NeilBrown2604b702006-01-06 00:20:36 -08006798 .quiesce = raid5_quiesce,
NeilBrowna78d38a2010-03-22 16:53:49 +11006799 .takeover = raid4_takeover,
NeilBrown2604b702006-01-06 00:20:36 -08006800};
6801
6802static int __init raid5_init(void)
6803{
Shaohua Li851c30c2013-08-28 14:30:16 +08006804 raid5_wq = alloc_workqueue("raid5wq",
6805 WQ_UNBOUND|WQ_MEM_RECLAIM|WQ_CPU_INTENSIVE|WQ_SYSFS, 0);
6806 if (!raid5_wq)
6807 return -ENOMEM;
NeilBrown16a53ec2006-06-26 00:27:38 -07006808 register_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08006809 register_md_personality(&raid5_personality);
6810 register_md_personality(&raid4_personality);
6811 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006812}
6813
NeilBrown2604b702006-01-06 00:20:36 -08006814static void raid5_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006815{
NeilBrown16a53ec2006-06-26 00:27:38 -07006816 unregister_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08006817 unregister_md_personality(&raid5_personality);
6818 unregister_md_personality(&raid4_personality);
Shaohua Li851c30c2013-08-28 14:30:16 +08006819 destroy_workqueue(raid5_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006820}
6821
6822module_init(raid5_init);
6823module_exit(raid5_exit);
6824MODULE_LICENSE("GPL");
NeilBrown0efb9e62009-12-14 12:49:58 +11006825MODULE_DESCRIPTION("RAID4/5/6 (striping with parity) personality for MD");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006826MODULE_ALIAS("md-personality-4"); /* RAID5 */
NeilBrownd9d166c2006-01-06 00:20:51 -08006827MODULE_ALIAS("md-raid5");
6828MODULE_ALIAS("md-raid4");
NeilBrown2604b702006-01-06 00:20:36 -08006829MODULE_ALIAS("md-level-5");
6830MODULE_ALIAS("md-level-4");
NeilBrown16a53ec2006-06-26 00:27:38 -07006831MODULE_ALIAS("md-personality-8"); /* RAID6 */
6832MODULE_ALIAS("md-raid6");
6833MODULE_ALIAS("md-level-6");
6834
6835/* This used to be two separate modules, they were: */
6836MODULE_ALIAS("raid5");
6837MODULE_ALIAS("raid6");