blob: 5af2d270908178b2628a3db42c508417fc4f5579 [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>
NeilBrowna9add5d2012-10-31 11:59:09 +110056#include <trace/events/block.h>
57
NeilBrown43b2e5d2009-03-31 14:33:13 +110058#include "md.h"
NeilBrownbff61972009-03-31 14:33:13 +110059#include "raid5.h"
Trela Maciej54071b32010-03-08 16:02:42 +110060#include "raid0.h"
Christoph Hellwigef740c32009-03-31 14:27:03 +110061#include "bitmap.h"
NeilBrown72626682005-09-09 16:23:54 -070062
Linus Torvalds1da177e2005-04-16 15:20:36 -070063/*
64 * Stripe cache
65 */
66
67#define NR_STRIPES 256
68#define STRIPE_SIZE PAGE_SIZE
69#define STRIPE_SHIFT (PAGE_SHIFT - 9)
70#define STRIPE_SECTORS (STRIPE_SIZE>>9)
71#define IO_THRESHOLD 1
Dan Williams8b3e6cd2008-04-28 02:15:53 -070072#define BYPASS_THRESHOLD 1
NeilBrownfccddba2006-01-06 00:20:33 -080073#define NR_HASH (PAGE_SIZE / sizeof(struct hlist_head))
Linus Torvalds1da177e2005-04-16 15:20:36 -070074#define HASH_MASK (NR_HASH - 1)
75
NeilBrownd1688a62011-10-11 16:49:52 +110076static inline struct hlist_head *stripe_hash(struct r5conf *conf, sector_t sect)
NeilBrowndb298e12011-10-07 14:23:00 +110077{
78 int hash = (sect >> STRIPE_SHIFT) & HASH_MASK;
79 return &conf->stripe_hashtbl[hash];
80}
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82/* bio's attached to a stripe+device for I/O are linked together in bi_sector
83 * order without overlap. There may be several bio's per stripe+device, and
84 * a bio could span several devices.
85 * When walking this list for a particular stripe+device, we must never proceed
86 * beyond a bio that extends past this device, as the next bio might no longer
87 * be valid.
NeilBrowndb298e12011-10-07 14:23:00 +110088 * This function is used to determine the 'next' bio in the list, given the sector
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 * of the current stripe+device
90 */
NeilBrowndb298e12011-10-07 14:23:00 +110091static inline struct bio *r5_next_bio(struct bio *bio, sector_t sector)
92{
93 int sectors = bio->bi_size >> 9;
94 if (bio->bi_sector + sectors < sector + STRIPE_SECTORS)
95 return bio->bi_next;
96 else
97 return NULL;
98}
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Jens Axboe960e7392008-08-15 10:41:18 +0200100/*
Jens Axboe5b99c2f2008-08-15 10:56:11 +0200101 * We maintain a biased count of active stripes in the bottom 16 bits of
102 * bi_phys_segments, and a count of processed stripes in the upper 16 bits
Jens Axboe960e7392008-08-15 10:41:18 +0200103 */
Shaohua Lie7836bd62012-07-19 16:01:31 +1000104static inline int raid5_bi_processed_stripes(struct bio *bio)
Jens Axboe960e7392008-08-15 10:41:18 +0200105{
Shaohua Lie7836bd62012-07-19 16:01:31 +1000106 atomic_t *segments = (atomic_t *)&bio->bi_phys_segments;
107 return (atomic_read(segments) >> 16) & 0xffff;
Jens Axboe960e7392008-08-15 10:41:18 +0200108}
109
Shaohua Lie7836bd62012-07-19 16:01:31 +1000110static inline int raid5_dec_bi_active_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_sub_return(1, segments) & 0xffff;
Jens Axboe960e7392008-08-15 10:41:18 +0200114}
115
Shaohua Lie7836bd62012-07-19 16:01:31 +1000116static inline void raid5_inc_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 atomic_inc(segments);
Jens Axboe960e7392008-08-15 10:41:18 +0200120}
121
Shaohua Lie7836bd62012-07-19 16:01:31 +1000122static inline void raid5_set_bi_processed_stripes(struct bio *bio,
123 unsigned int cnt)
Jens Axboe960e7392008-08-15 10:41:18 +0200124{
Shaohua Lie7836bd62012-07-19 16:01:31 +1000125 atomic_t *segments = (atomic_t *)&bio->bi_phys_segments;
126 int old, new;
Jens Axboe960e7392008-08-15 10:41:18 +0200127
Shaohua Lie7836bd62012-07-19 16:01:31 +1000128 do {
129 old = atomic_read(segments);
130 new = (old & 0xffff) | (cnt << 16);
131 } while (atomic_cmpxchg(segments, old, new) != old);
Jens Axboe960e7392008-08-15 10:41:18 +0200132}
133
Shaohua Lie7836bd62012-07-19 16:01:31 +1000134static inline void raid5_set_bi_stripes(struct bio *bio, unsigned int cnt)
Jens Axboe960e7392008-08-15 10:41:18 +0200135{
Shaohua Lie7836bd62012-07-19 16:01:31 +1000136 atomic_t *segments = (atomic_t *)&bio->bi_phys_segments;
137 atomic_set(segments, cnt);
Jens Axboe960e7392008-08-15 10:41:18 +0200138}
139
NeilBrownd0dabf72009-03-31 14:39:38 +1100140/* Find first data disk in a raid6 stripe */
141static inline int raid6_d0(struct stripe_head *sh)
142{
NeilBrown67cc2b82009-03-31 14:39:38 +1100143 if (sh->ddf_layout)
144 /* ddf always start from first device */
145 return 0;
146 /* md starts just after Q block */
NeilBrownd0dabf72009-03-31 14:39:38 +1100147 if (sh->qd_idx == sh->disks - 1)
148 return 0;
149 else
150 return sh->qd_idx + 1;
151}
NeilBrown16a53ec2006-06-26 00:27:38 -0700152static inline int raid6_next_disk(int disk, int raid_disks)
153{
154 disk++;
155 return (disk < raid_disks) ? disk : 0;
156}
Dan Williamsa4456852007-07-09 11:56:43 -0700157
NeilBrownd0dabf72009-03-31 14:39:38 +1100158/* When walking through the disks in a raid5, starting at raid6_d0,
159 * We need to map each disk to a 'slot', where the data disks are slot
160 * 0 .. raid_disks-3, the parity disk is raid_disks-2 and the Q disk
161 * is raid_disks-1. This help does that mapping.
162 */
NeilBrown67cc2b82009-03-31 14:39:38 +1100163static int raid6_idx_to_slot(int idx, struct stripe_head *sh,
164 int *count, int syndrome_disks)
NeilBrownd0dabf72009-03-31 14:39:38 +1100165{
Dan Williams66295422009-10-19 18:09:32 -0700166 int slot = *count;
NeilBrown67cc2b82009-03-31 14:39:38 +1100167
NeilBrowne4424fe2009-10-16 16:27:34 +1100168 if (sh->ddf_layout)
Dan Williams66295422009-10-19 18:09:32 -0700169 (*count)++;
NeilBrownd0dabf72009-03-31 14:39:38 +1100170 if (idx == sh->pd_idx)
NeilBrown67cc2b82009-03-31 14:39:38 +1100171 return syndrome_disks;
NeilBrownd0dabf72009-03-31 14:39:38 +1100172 if (idx == sh->qd_idx)
NeilBrown67cc2b82009-03-31 14:39:38 +1100173 return syndrome_disks + 1;
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 return slot;
177}
178
Dan Williamsa4456852007-07-09 11:56:43 -0700179static void return_io(struct bio *return_bi)
180{
181 struct bio *bi = return_bi;
182 while (bi) {
Dan Williamsa4456852007-07-09 11:56:43 -0700183
184 return_bi = bi->bi_next;
185 bi->bi_next = NULL;
186 bi->bi_size = 0;
Neil Brown0e13fe232008-06-28 08:31:20 +1000187 bio_endio(bi, 0);
Dan Williamsa4456852007-07-09 11:56:43 -0700188 bi = return_bi;
189 }
190}
191
NeilBrownd1688a62011-10-11 16:49:52 +1100192static void print_raid5_conf (struct r5conf *conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Dan Williams600aa102008-06-28 08:32:05 +1000194static int stripe_operations_active(struct stripe_head *sh)
195{
196 return sh->check_state || sh->reconstruct_state ||
197 test_bit(STRIPE_BIOFILL_RUN, &sh->state) ||
198 test_bit(STRIPE_COMPUTE_RUN, &sh->state);
199}
200
Shaohua Li4eb788d2012-07-19 16:01:31 +1000201static void do_release_stripe(struct r5conf *conf, struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Shaohua Li4eb788d2012-07-19 16:01:31 +1000203 BUG_ON(!list_empty(&sh->lru));
204 BUG_ON(atomic_read(&conf->active_stripes)==0);
205 if (test_bit(STRIPE_HANDLE, &sh->state)) {
206 if (test_bit(STRIPE_DELAYED, &sh->state) &&
207 !test_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
208 list_add_tail(&sh->lru, &conf->delayed_list);
209 else if (test_bit(STRIPE_BIT_DELAY, &sh->state) &&
210 sh->bm_seq - conf->seq_write > 0)
211 list_add_tail(&sh->lru, &conf->bitmap_list);
212 else {
213 clear_bit(STRIPE_DELAYED, &sh->state);
214 clear_bit(STRIPE_BIT_DELAY, &sh->state);
215 list_add_tail(&sh->lru, &conf->handle_list);
216 }
217 md_wakeup_thread(conf->mddev->thread);
218 } else {
219 BUG_ON(stripe_operations_active(sh));
220 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
221 if (atomic_dec_return(&conf->preread_active_stripes)
222 < IO_THRESHOLD)
223 md_wakeup_thread(conf->mddev->thread);
224 atomic_dec(&conf->active_stripes);
225 if (!test_bit(STRIPE_EXPANDING, &sh->state)) {
226 list_add_tail(&sh->lru, &conf->inactive_list);
227 wake_up(&conf->wait_for_stripe);
228 if (conf->retry_read_aligned)
229 md_wakeup_thread(conf->mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 }
231 }
232}
NeilBrownd0dabf72009-03-31 14:39:38 +1100233
Shaohua Li4eb788d2012-07-19 16:01:31 +1000234static void __release_stripe(struct r5conf *conf, struct stripe_head *sh)
235{
236 if (atomic_dec_and_test(&sh->count))
237 do_release_stripe(conf, sh);
238}
239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240static void release_stripe(struct stripe_head *sh)
241{
NeilBrownd1688a62011-10-11 16:49:52 +1100242 struct r5conf *conf = sh->raid_conf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 unsigned long flags;
NeilBrown16a53ec2006-06-26 00:27:38 -0700244
Shaohua Li4eb788d2012-07-19 16:01:31 +1000245 local_irq_save(flags);
246 if (atomic_dec_and_lock(&sh->count, &conf->device_lock)) {
247 do_release_stripe(conf, sh);
248 spin_unlock(&conf->device_lock);
249 }
250 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251}
252
NeilBrownfccddba2006-01-06 00:20:33 -0800253static inline void remove_hash(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
Dan Williams45b42332007-07-09 11:56:43 -0700255 pr_debug("remove_hash(), stripe %llu\n",
256 (unsigned long long)sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
NeilBrownfccddba2006-01-06 00:20:33 -0800258 hlist_del_init(&sh->hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259}
260
NeilBrownd1688a62011-10-11 16:49:52 +1100261static inline void insert_hash(struct r5conf *conf, struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
NeilBrownfccddba2006-01-06 00:20:33 -0800263 struct hlist_head *hp = stripe_hash(conf, sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Dan Williams45b42332007-07-09 11:56:43 -0700265 pr_debug("insert_hash(), stripe %llu\n",
266 (unsigned long long)sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
NeilBrownfccddba2006-01-06 00:20:33 -0800268 hlist_add_head(&sh->hash, hp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
271
272/* find an idle stripe, make sure it is unhashed, and return it. */
NeilBrownd1688a62011-10-11 16:49:52 +1100273static struct stripe_head *get_free_stripe(struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
275 struct stripe_head *sh = NULL;
276 struct list_head *first;
277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 if (list_empty(&conf->inactive_list))
279 goto out;
280 first = conf->inactive_list.next;
281 sh = list_entry(first, struct stripe_head, lru);
282 list_del_init(first);
283 remove_hash(sh);
284 atomic_inc(&conf->active_stripes);
285out:
286 return sh;
287}
288
NeilBrowne4e11e32010-06-16 16:45:16 +1000289static void shrink_buffers(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
291 struct page *p;
292 int i;
NeilBrowne4e11e32010-06-16 16:45:16 +1000293 int num = sh->raid_conf->pool_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
NeilBrowne4e11e32010-06-16 16:45:16 +1000295 for (i = 0; i < num ; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 p = sh->dev[i].page;
297 if (!p)
298 continue;
299 sh->dev[i].page = NULL;
NeilBrown2d1f3b52006-01-06 00:20:31 -0800300 put_page(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 }
302}
303
NeilBrowne4e11e32010-06-16 16:45:16 +1000304static int grow_buffers(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
306 int i;
NeilBrowne4e11e32010-06-16 16:45:16 +1000307 int num = sh->raid_conf->pool_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308
NeilBrowne4e11e32010-06-16 16:45:16 +1000309 for (i = 0; i < num; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 struct page *page;
311
312 if (!(page = alloc_page(GFP_KERNEL))) {
313 return 1;
314 }
315 sh->dev[i].page = page;
316 }
317 return 0;
318}
319
NeilBrown784052e2009-03-31 15:19:07 +1100320static void raid5_build_block(struct stripe_head *sh, int i, int previous);
NeilBrownd1688a62011-10-11 16:49:52 +1100321static void stripe_set_idx(sector_t stripe, struct r5conf *conf, int previous,
NeilBrown911d4ee2009-03-31 14:39:38 +1100322 struct stripe_head *sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
NeilBrownb5663ba2009-03-31 14:39:38 +1100324static void init_stripe(struct stripe_head *sh, sector_t sector, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
NeilBrownd1688a62011-10-11 16:49:52 +1100326 struct r5conf *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800327 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +0200329 BUG_ON(atomic_read(&sh->count) != 0);
330 BUG_ON(test_bit(STRIPE_HANDLE, &sh->state));
Dan Williams600aa102008-06-28 08:32:05 +1000331 BUG_ON(stripe_operations_active(sh));
Dan Williamsd84e0f12007-01-02 13:52:30 -0700332
Dan Williams45b42332007-07-09 11:56:43 -0700333 pr_debug("init_stripe called, stripe %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 (unsigned long long)sh->sector);
335
336 remove_hash(sh);
NeilBrown16a53ec2006-06-26 00:27:38 -0700337
NeilBrown86b42c72009-03-31 15:19:03 +1100338 sh->generation = conf->generation - previous;
NeilBrownb5663ba2009-03-31 14:39:38 +1100339 sh->disks = previous ? conf->previous_raid_disks : conf->raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 sh->sector = sector;
NeilBrown911d4ee2009-03-31 14:39:38 +1100341 stripe_set_idx(sector, conf, previous, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 sh->state = 0;
343
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800344
345 for (i = sh->disks; i--; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 struct r5dev *dev = &sh->dev[i];
347
Dan Williamsd84e0f12007-01-02 13:52:30 -0700348 if (dev->toread || dev->read || dev->towrite || dev->written ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 test_bit(R5_LOCKED, &dev->flags)) {
Dan Williamsd84e0f12007-01-02 13:52:30 -0700350 printk(KERN_ERR "sector=%llx i=%d %p %p %p %p %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 (unsigned long long)sh->sector, i, dev->toread,
Dan Williamsd84e0f12007-01-02 13:52:30 -0700352 dev->read, dev->towrite, dev->written,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 test_bit(R5_LOCKED, &dev->flags));
NeilBrown8cfa7b02011-07-27 11:00:36 +1000354 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 }
356 dev->flags = 0;
NeilBrown784052e2009-03-31 15:19:07 +1100357 raid5_build_block(sh, i, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 }
359 insert_hash(conf, sh);
360}
361
NeilBrownd1688a62011-10-11 16:49:52 +1100362static struct stripe_head *__find_stripe(struct r5conf *conf, sector_t sector,
NeilBrown86b42c72009-03-31 15:19:03 +1100363 short generation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
365 struct stripe_head *sh;
366
Dan Williams45b42332007-07-09 11:56:43 -0700367 pr_debug("__find_stripe, sector %llu\n", (unsigned long long)sector);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800368 hlist_for_each_entry(sh, stripe_hash(conf, sector), hash)
NeilBrown86b42c72009-03-31 15:19:03 +1100369 if (sh->sector == sector && sh->generation == generation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 return sh;
Dan Williams45b42332007-07-09 11:56:43 -0700371 pr_debug("__stripe %llu not in cache\n", (unsigned long long)sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 return NULL;
373}
374
NeilBrown674806d2010-06-16 17:17:53 +1000375/*
376 * Need to check if array has failed when deciding whether to:
377 * - start an array
378 * - remove non-faulty devices
379 * - add a spare
380 * - allow a reshape
381 * This determination is simple when no reshape is happening.
382 * However if there is a reshape, we need to carefully check
383 * both the before and after sections.
384 * This is because some failed devices may only affect one
385 * of the two sections, and some non-in_sync devices may
386 * be insync in the section most affected by failed devices.
387 */
NeilBrown908f4fb2011-12-23 10:17:50 +1100388static int calc_degraded(struct r5conf *conf)
NeilBrown674806d2010-06-16 17:17:53 +1000389{
NeilBrown908f4fb2011-12-23 10:17:50 +1100390 int degraded, degraded2;
NeilBrown674806d2010-06-16 17:17:53 +1000391 int i;
NeilBrown674806d2010-06-16 17:17:53 +1000392
393 rcu_read_lock();
394 degraded = 0;
395 for (i = 0; i < conf->previous_raid_disks; i++) {
NeilBrown3cb03002011-10-11 16:45:26 +1100396 struct md_rdev *rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrowne5c86472012-09-19 12:52:30 +1000397 if (rdev && test_bit(Faulty, &rdev->flags))
398 rdev = rcu_dereference(conf->disks[i].replacement);
NeilBrown674806d2010-06-16 17:17:53 +1000399 if (!rdev || test_bit(Faulty, &rdev->flags))
400 degraded++;
401 else if (test_bit(In_sync, &rdev->flags))
402 ;
403 else
404 /* not in-sync or faulty.
405 * If the reshape increases the number of devices,
406 * this is being recovered by the reshape, so
407 * this 'previous' section is not in_sync.
408 * If the number of devices is being reduced however,
409 * the device can only be part of the array if
410 * we are reverting a reshape, so this section will
411 * be in-sync.
412 */
413 if (conf->raid_disks >= conf->previous_raid_disks)
414 degraded++;
415 }
416 rcu_read_unlock();
NeilBrown908f4fb2011-12-23 10:17:50 +1100417 if (conf->raid_disks == conf->previous_raid_disks)
418 return degraded;
NeilBrown674806d2010-06-16 17:17:53 +1000419 rcu_read_lock();
NeilBrown908f4fb2011-12-23 10:17:50 +1100420 degraded2 = 0;
NeilBrown674806d2010-06-16 17:17:53 +1000421 for (i = 0; i < conf->raid_disks; i++) {
NeilBrown3cb03002011-10-11 16:45:26 +1100422 struct md_rdev *rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrowne5c86472012-09-19 12:52:30 +1000423 if (rdev && test_bit(Faulty, &rdev->flags))
424 rdev = rcu_dereference(conf->disks[i].replacement);
NeilBrown674806d2010-06-16 17:17:53 +1000425 if (!rdev || test_bit(Faulty, &rdev->flags))
NeilBrown908f4fb2011-12-23 10:17:50 +1100426 degraded2++;
NeilBrown674806d2010-06-16 17:17:53 +1000427 else if (test_bit(In_sync, &rdev->flags))
428 ;
429 else
430 /* not in-sync or faulty.
431 * If reshape increases the number of devices, this
432 * section has already been recovered, else it
433 * almost certainly hasn't.
434 */
435 if (conf->raid_disks <= conf->previous_raid_disks)
NeilBrown908f4fb2011-12-23 10:17:50 +1100436 degraded2++;
NeilBrown674806d2010-06-16 17:17:53 +1000437 }
438 rcu_read_unlock();
NeilBrown908f4fb2011-12-23 10:17:50 +1100439 if (degraded2 > degraded)
440 return degraded2;
441 return degraded;
442}
443
444static int has_failed(struct r5conf *conf)
445{
446 int degraded;
447
448 if (conf->mddev->reshape_position == MaxSector)
449 return conf->mddev->degraded > conf->max_degraded;
450
451 degraded = calc_degraded(conf);
NeilBrown674806d2010-06-16 17:17:53 +1000452 if (degraded > conf->max_degraded)
453 return 1;
454 return 0;
455}
456
NeilBrownb5663ba2009-03-31 14:39:38 +1100457static struct stripe_head *
NeilBrownd1688a62011-10-11 16:49:52 +1100458get_active_stripe(struct r5conf *conf, sector_t sector,
NeilBrowna8c906c2009-06-09 14:39:59 +1000459 int previous, int noblock, int noquiesce)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460{
461 struct stripe_head *sh;
462
Dan Williams45b42332007-07-09 11:56:43 -0700463 pr_debug("get_stripe, sector %llu\n", (unsigned long long)sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465 spin_lock_irq(&conf->device_lock);
466
467 do {
NeilBrown72626682005-09-09 16:23:54 -0700468 wait_event_lock_irq(conf->wait_for_stripe,
NeilBrowna8c906c2009-06-09 14:39:59 +1000469 conf->quiesce == 0 || noquiesce,
Lukas Czernereed8c022012-11-30 11:42:40 +0100470 conf->device_lock);
NeilBrown86b42c72009-03-31 15:19:03 +1100471 sh = __find_stripe(conf, sector, conf->generation - previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 if (!sh) {
473 if (!conf->inactive_blocked)
474 sh = get_free_stripe(conf);
475 if (noblock && sh == NULL)
476 break;
477 if (!sh) {
478 conf->inactive_blocked = 1;
479 wait_event_lock_irq(conf->wait_for_stripe,
480 !list_empty(&conf->inactive_list) &&
NeilBrown50368052005-12-12 02:39:17 -0800481 (atomic_read(&conf->active_stripes)
482 < (conf->max_nr_stripes *3/4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 || !conf->inactive_blocked),
Lukas Czernereed8c022012-11-30 11:42:40 +0100484 conf->device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 conf->inactive_blocked = 0;
486 } else
NeilBrownb5663ba2009-03-31 14:39:38 +1100487 init_stripe(sh, sector, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 } else {
489 if (atomic_read(&sh->count)) {
NeilBrownab69ae12009-03-31 15:26:47 +1100490 BUG_ON(!list_empty(&sh->lru)
Shaohua Li8811b592012-08-02 08:33:00 +1000491 && !test_bit(STRIPE_EXPANDING, &sh->state)
492 && !test_bit(STRIPE_ON_UNPLUG_LIST, &sh->state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 } else {
494 if (!test_bit(STRIPE_HANDLE, &sh->state))
495 atomic_inc(&conf->active_stripes);
NeilBrownff4e8d92006-07-10 04:44:16 -0700496 if (list_empty(&sh->lru) &&
497 !test_bit(STRIPE_EXPANDING, &sh->state))
NeilBrown16a53ec2006-06-26 00:27:38 -0700498 BUG();
499 list_del_init(&sh->lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 }
501 }
502 } while (sh == NULL);
503
504 if (sh)
505 atomic_inc(&sh->count);
506
507 spin_unlock_irq(&conf->device_lock);
508 return sh;
509}
510
NeilBrown05616be2012-05-21 09:27:00 +1000511/* Determine if 'data_offset' or 'new_data_offset' should be used
512 * in this stripe_head.
513 */
514static int use_new_offset(struct r5conf *conf, struct stripe_head *sh)
515{
516 sector_t progress = conf->reshape_progress;
517 /* Need a memory barrier to make sure we see the value
518 * of conf->generation, or ->data_offset that was set before
519 * reshape_progress was updated.
520 */
521 smp_rmb();
522 if (progress == MaxSector)
523 return 0;
524 if (sh->generation == conf->generation - 1)
525 return 0;
526 /* We are in a reshape, and this is a new-generation stripe,
527 * so use new_data_offset.
528 */
529 return 1;
530}
531
NeilBrown6712ecf2007-09-27 12:47:43 +0200532static void
533raid5_end_read_request(struct bio *bi, int error);
534static void
535raid5_end_write_request(struct bio *bi, int error);
Dan Williams91c00922007-01-02 13:52:30 -0700536
Dan Williamsc4e5ac02008-06-28 08:31:53 +1000537static void ops_run_io(struct stripe_head *sh, struct stripe_head_state *s)
Dan Williams91c00922007-01-02 13:52:30 -0700538{
NeilBrownd1688a62011-10-11 16:49:52 +1100539 struct r5conf *conf = sh->raid_conf;
Dan Williams91c00922007-01-02 13:52:30 -0700540 int i, disks = sh->disks;
541
542 might_sleep();
543
544 for (i = disks; i--; ) {
545 int rw;
NeilBrown9a3e1102011-12-23 10:17:53 +1100546 int replace_only = 0;
NeilBrown977df362011-12-23 10:17:53 +1100547 struct bio *bi, *rbi;
548 struct md_rdev *rdev, *rrdev = NULL;
Tejun Heoe9c74692010-09-03 11:56:18 +0200549 if (test_and_clear_bit(R5_Wantwrite, &sh->dev[i].flags)) {
550 if (test_and_clear_bit(R5_WantFUA, &sh->dev[i].flags))
551 rw = WRITE_FUA;
552 else
553 rw = WRITE;
Shaohua Li9e4447682012-10-11 13:49:49 +1100554 if (test_bit(R5_Discard, &sh->dev[i].flags))
Shaohua Li620125f2012-10-11 13:49:05 +1100555 rw |= REQ_DISCARD;
Tejun Heoe9c74692010-09-03 11:56:18 +0200556 } else if (test_and_clear_bit(R5_Wantread, &sh->dev[i].flags))
Dan Williams91c00922007-01-02 13:52:30 -0700557 rw = READ;
NeilBrown9a3e1102011-12-23 10:17:53 +1100558 else if (test_and_clear_bit(R5_WantReplace,
559 &sh->dev[i].flags)) {
560 rw = WRITE;
561 replace_only = 1;
562 } else
Dan Williams91c00922007-01-02 13:52:30 -0700563 continue;
Shaohua Libc0934f2012-05-22 13:55:05 +1000564 if (test_and_clear_bit(R5_SyncIO, &sh->dev[i].flags))
565 rw |= REQ_SYNC;
Dan Williams91c00922007-01-02 13:52:30 -0700566
567 bi = &sh->dev[i].req;
NeilBrown977df362011-12-23 10:17:53 +1100568 rbi = &sh->dev[i].rreq; /* For writing to replacement */
Dan Williams91c00922007-01-02 13:52:30 -0700569
570 bi->bi_rw = rw;
NeilBrown977df362011-12-23 10:17:53 +1100571 rbi->bi_rw = rw;
572 if (rw & WRITE) {
Dan Williams91c00922007-01-02 13:52:30 -0700573 bi->bi_end_io = raid5_end_write_request;
NeilBrown977df362011-12-23 10:17:53 +1100574 rbi->bi_end_io = raid5_end_write_request;
575 } else
Dan Williams91c00922007-01-02 13:52:30 -0700576 bi->bi_end_io = raid5_end_read_request;
577
578 rcu_read_lock();
NeilBrown9a3e1102011-12-23 10:17:53 +1100579 rrdev = rcu_dereference(conf->disks[i].replacement);
NeilBrowndd054fc2011-12-23 10:17:53 +1100580 smp_mb(); /* Ensure that if rrdev is NULL, rdev won't be */
581 rdev = rcu_dereference(conf->disks[i].rdev);
582 if (!rdev) {
583 rdev = rrdev;
584 rrdev = NULL;
585 }
NeilBrown9a3e1102011-12-23 10:17:53 +1100586 if (rw & WRITE) {
587 if (replace_only)
588 rdev = NULL;
NeilBrowndd054fc2011-12-23 10:17:53 +1100589 if (rdev == rrdev)
590 /* We raced and saw duplicates */
591 rrdev = NULL;
NeilBrown9a3e1102011-12-23 10:17:53 +1100592 } else {
NeilBrowndd054fc2011-12-23 10:17:53 +1100593 if (test_bit(R5_ReadRepl, &sh->dev[i].flags) && rrdev)
NeilBrown9a3e1102011-12-23 10:17:53 +1100594 rdev = rrdev;
595 rrdev = NULL;
596 }
NeilBrown977df362011-12-23 10:17:53 +1100597
Dan Williams91c00922007-01-02 13:52:30 -0700598 if (rdev && test_bit(Faulty, &rdev->flags))
599 rdev = NULL;
600 if (rdev)
601 atomic_inc(&rdev->nr_pending);
NeilBrown977df362011-12-23 10:17:53 +1100602 if (rrdev && test_bit(Faulty, &rrdev->flags))
603 rrdev = NULL;
604 if (rrdev)
605 atomic_inc(&rrdev->nr_pending);
Dan Williams91c00922007-01-02 13:52:30 -0700606 rcu_read_unlock();
607
NeilBrown73e92e52011-07-28 11:39:22 +1000608 /* We have already checked bad blocks for reads. Now
NeilBrown977df362011-12-23 10:17:53 +1100609 * need to check for writes. We never accept write errors
610 * on the replacement, so we don't to check rrdev.
NeilBrown73e92e52011-07-28 11:39:22 +1000611 */
612 while ((rw & WRITE) && rdev &&
613 test_bit(WriteErrorSeen, &rdev->flags)) {
614 sector_t first_bad;
615 int bad_sectors;
616 int bad = is_badblock(rdev, sh->sector, STRIPE_SECTORS,
617 &first_bad, &bad_sectors);
618 if (!bad)
619 break;
620
621 if (bad < 0) {
622 set_bit(BlockedBadBlocks, &rdev->flags);
623 if (!conf->mddev->external &&
624 conf->mddev->flags) {
625 /* It is very unlikely, but we might
626 * still need to write out the
627 * bad block log - better give it
628 * a chance*/
629 md_check_recovery(conf->mddev);
630 }
majianpeng18507532012-07-03 12:11:54 +1000631 /*
632 * Because md_wait_for_blocked_rdev
633 * will dec nr_pending, we must
634 * increment it first.
635 */
636 atomic_inc(&rdev->nr_pending);
NeilBrown73e92e52011-07-28 11:39:22 +1000637 md_wait_for_blocked_rdev(rdev, conf->mddev);
638 } else {
639 /* Acknowledged bad block - skip the write */
640 rdev_dec_pending(rdev, conf->mddev);
641 rdev = NULL;
642 }
643 }
644
Dan Williams91c00922007-01-02 13:52:30 -0700645 if (rdev) {
NeilBrown9a3e1102011-12-23 10:17:53 +1100646 if (s->syncing || s->expanding || s->expanded
647 || s->replacing)
Dan Williams91c00922007-01-02 13:52:30 -0700648 md_sync_acct(rdev->bdev, STRIPE_SECTORS);
649
Dan Williams2b7497f2008-06-28 08:31:52 +1000650 set_bit(STRIPE_IO_STARTED, &sh->state);
651
Dan Williams91c00922007-01-02 13:52:30 -0700652 bi->bi_bdev = rdev->bdev;
653 pr_debug("%s: for %llu schedule op %ld on disc %d\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -0700654 __func__, (unsigned long long)sh->sector,
Dan Williams91c00922007-01-02 13:52:30 -0700655 bi->bi_rw, i);
656 atomic_inc(&sh->count);
NeilBrown05616be2012-05-21 09:27:00 +1000657 if (use_new_offset(conf, sh))
658 bi->bi_sector = (sh->sector
659 + rdev->new_data_offset);
660 else
661 bi->bi_sector = (sh->sector
662 + rdev->data_offset);
majianpeng3f9e7c12012-07-31 10:04:21 +1000663 if (test_bit(R5_ReadNoMerge, &sh->dev[i].flags))
664 bi->bi_rw |= REQ_FLUSH;
665
Dan Williams91c00922007-01-02 13:52:30 -0700666 bi->bi_flags = 1 << BIO_UPTODATE;
Dan Williams91c00922007-01-02 13:52:30 -0700667 bi->bi_idx = 0;
Dan Williams91c00922007-01-02 13:52:30 -0700668 bi->bi_io_vec[0].bv_len = STRIPE_SIZE;
669 bi->bi_io_vec[0].bv_offset = 0;
670 bi->bi_size = STRIPE_SIZE;
671 bi->bi_next = NULL;
NeilBrown977df362011-12-23 10:17:53 +1100672 if (rrdev)
673 set_bit(R5_DOUBLE_LOCKED, &sh->dev[i].flags);
NeilBrowna9add5d2012-10-31 11:59:09 +1100674 trace_block_bio_remap(bdev_get_queue(bi->bi_bdev),
675 bi, disk_devt(conf->mddev->gendisk),
676 sh->dev[i].sector);
Dan Williams91c00922007-01-02 13:52:30 -0700677 generic_make_request(bi);
NeilBrown977df362011-12-23 10:17:53 +1100678 }
679 if (rrdev) {
NeilBrown9a3e1102011-12-23 10:17:53 +1100680 if (s->syncing || s->expanding || s->expanded
681 || s->replacing)
NeilBrown977df362011-12-23 10:17:53 +1100682 md_sync_acct(rrdev->bdev, STRIPE_SECTORS);
683
684 set_bit(STRIPE_IO_STARTED, &sh->state);
685
686 rbi->bi_bdev = rrdev->bdev;
687 pr_debug("%s: for %llu schedule op %ld on "
688 "replacement disc %d\n",
689 __func__, (unsigned long long)sh->sector,
690 rbi->bi_rw, i);
691 atomic_inc(&sh->count);
NeilBrown05616be2012-05-21 09:27:00 +1000692 if (use_new_offset(conf, sh))
693 rbi->bi_sector = (sh->sector
694 + rrdev->new_data_offset);
695 else
696 rbi->bi_sector = (sh->sector
697 + rrdev->data_offset);
NeilBrown977df362011-12-23 10:17:53 +1100698 rbi->bi_flags = 1 << BIO_UPTODATE;
699 rbi->bi_idx = 0;
700 rbi->bi_io_vec[0].bv_len = STRIPE_SIZE;
701 rbi->bi_io_vec[0].bv_offset = 0;
702 rbi->bi_size = STRIPE_SIZE;
703 rbi->bi_next = NULL;
NeilBrowna9add5d2012-10-31 11:59:09 +1100704 trace_block_bio_remap(bdev_get_queue(rbi->bi_bdev),
705 rbi, disk_devt(conf->mddev->gendisk),
706 sh->dev[i].sector);
NeilBrown977df362011-12-23 10:17:53 +1100707 generic_make_request(rbi);
708 }
709 if (!rdev && !rrdev) {
Namhyung Kimb0629622011-06-14 14:20:19 +1000710 if (rw & WRITE)
Dan Williams91c00922007-01-02 13:52:30 -0700711 set_bit(STRIPE_DEGRADED, &sh->state);
712 pr_debug("skip op %ld on disc %d for sector %llu\n",
713 bi->bi_rw, i, (unsigned long long)sh->sector);
714 clear_bit(R5_LOCKED, &sh->dev[i].flags);
715 set_bit(STRIPE_HANDLE, &sh->state);
716 }
717 }
718}
719
720static struct dma_async_tx_descriptor *
721async_copy_data(int frombio, struct bio *bio, struct page *page,
722 sector_t sector, struct dma_async_tx_descriptor *tx)
723{
724 struct bio_vec *bvl;
725 struct page *bio_page;
726 int i;
727 int page_offset;
Dan Williamsa08abd82009-06-03 11:43:59 -0700728 struct async_submit_ctl submit;
Dan Williams0403e382009-09-08 17:42:50 -0700729 enum async_tx_flags flags = 0;
Dan Williams91c00922007-01-02 13:52:30 -0700730
731 if (bio->bi_sector >= sector)
732 page_offset = (signed)(bio->bi_sector - sector) * 512;
733 else
734 page_offset = (signed)(sector - bio->bi_sector) * -512;
Dan Williamsa08abd82009-06-03 11:43:59 -0700735
Dan Williams0403e382009-09-08 17:42:50 -0700736 if (frombio)
737 flags |= ASYNC_TX_FENCE;
738 init_async_submit(&submit, flags, tx, NULL, NULL, NULL);
739
Dan Williams91c00922007-01-02 13:52:30 -0700740 bio_for_each_segment(bvl, bio, i) {
Namhyung Kimfcde9072011-06-14 14:23:57 +1000741 int len = bvl->bv_len;
Dan Williams91c00922007-01-02 13:52:30 -0700742 int clen;
743 int b_offset = 0;
744
745 if (page_offset < 0) {
746 b_offset = -page_offset;
747 page_offset += b_offset;
748 len -= b_offset;
749 }
750
751 if (len > 0 && page_offset + len > STRIPE_SIZE)
752 clen = STRIPE_SIZE - page_offset;
753 else
754 clen = len;
755
756 if (clen > 0) {
Namhyung Kimfcde9072011-06-14 14:23:57 +1000757 b_offset += bvl->bv_offset;
758 bio_page = bvl->bv_page;
Dan Williams91c00922007-01-02 13:52:30 -0700759 if (frombio)
760 tx = async_memcpy(page, bio_page, page_offset,
Dan Williamsa08abd82009-06-03 11:43:59 -0700761 b_offset, clen, &submit);
Dan Williams91c00922007-01-02 13:52:30 -0700762 else
763 tx = async_memcpy(bio_page, page, b_offset,
Dan Williamsa08abd82009-06-03 11:43:59 -0700764 page_offset, clen, &submit);
Dan Williams91c00922007-01-02 13:52:30 -0700765 }
Dan Williamsa08abd82009-06-03 11:43:59 -0700766 /* chain the operations */
767 submit.depend_tx = tx;
768
Dan Williams91c00922007-01-02 13:52:30 -0700769 if (clen < len) /* hit end of page */
770 break;
771 page_offset += len;
772 }
773
774 return tx;
775}
776
777static void ops_complete_biofill(void *stripe_head_ref)
778{
779 struct stripe_head *sh = stripe_head_ref;
780 struct bio *return_bi = NULL;
Dan Williamse4d84902007-09-24 10:06:13 -0700781 int i;
Dan Williams91c00922007-01-02 13:52:30 -0700782
Harvey Harrisone46b2722008-04-28 02:15:50 -0700783 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700784 (unsigned long long)sh->sector);
785
786 /* clear completed biofills */
787 for (i = sh->disks; i--; ) {
788 struct r5dev *dev = &sh->dev[i];
Dan Williams91c00922007-01-02 13:52:30 -0700789
790 /* acknowledge completion of a biofill operation */
Dan Williamse4d84902007-09-24 10:06:13 -0700791 /* and check if we need to reply to a read request,
792 * new R5_Wantfill requests are held off until
Dan Williams83de75c2008-06-28 08:31:58 +1000793 * !STRIPE_BIOFILL_RUN
Dan Williamse4d84902007-09-24 10:06:13 -0700794 */
795 if (test_and_clear_bit(R5_Wantfill, &dev->flags)) {
Dan Williams91c00922007-01-02 13:52:30 -0700796 struct bio *rbi, *rbi2;
Dan Williams91c00922007-01-02 13:52:30 -0700797
Dan Williams91c00922007-01-02 13:52:30 -0700798 BUG_ON(!dev->read);
799 rbi = dev->read;
800 dev->read = NULL;
801 while (rbi && rbi->bi_sector <
802 dev->sector + STRIPE_SECTORS) {
803 rbi2 = r5_next_bio(rbi, dev->sector);
Shaohua Lie7836bd62012-07-19 16:01:31 +1000804 if (!raid5_dec_bi_active_stripes(rbi)) {
Dan Williams91c00922007-01-02 13:52:30 -0700805 rbi->bi_next = return_bi;
806 return_bi = rbi;
807 }
Dan Williams91c00922007-01-02 13:52:30 -0700808 rbi = rbi2;
809 }
810 }
811 }
Dan Williams83de75c2008-06-28 08:31:58 +1000812 clear_bit(STRIPE_BIOFILL_RUN, &sh->state);
Dan Williams91c00922007-01-02 13:52:30 -0700813
814 return_io(return_bi);
815
Dan Williamse4d84902007-09-24 10:06:13 -0700816 set_bit(STRIPE_HANDLE, &sh->state);
Dan Williams91c00922007-01-02 13:52:30 -0700817 release_stripe(sh);
818}
819
820static void ops_run_biofill(struct stripe_head *sh)
821{
822 struct dma_async_tx_descriptor *tx = NULL;
Dan Williamsa08abd82009-06-03 11:43:59 -0700823 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -0700824 int i;
825
Harvey Harrisone46b2722008-04-28 02:15:50 -0700826 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700827 (unsigned long long)sh->sector);
828
829 for (i = sh->disks; i--; ) {
830 struct r5dev *dev = &sh->dev[i];
831 if (test_bit(R5_Wantfill, &dev->flags)) {
832 struct bio *rbi;
Shaohua Lib17459c2012-07-19 16:01:31 +1000833 spin_lock_irq(&sh->stripe_lock);
Dan Williams91c00922007-01-02 13:52:30 -0700834 dev->read = rbi = dev->toread;
835 dev->toread = NULL;
Shaohua Lib17459c2012-07-19 16:01:31 +1000836 spin_unlock_irq(&sh->stripe_lock);
Dan Williams91c00922007-01-02 13:52:30 -0700837 while (rbi && rbi->bi_sector <
838 dev->sector + STRIPE_SECTORS) {
839 tx = async_copy_data(0, rbi, dev->page,
840 dev->sector, tx);
841 rbi = r5_next_bio(rbi, dev->sector);
842 }
843 }
844 }
845
846 atomic_inc(&sh->count);
Dan Williamsa08abd82009-06-03 11:43:59 -0700847 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_biofill, sh, NULL);
848 async_trigger_callback(&submit);
Dan Williams91c00922007-01-02 13:52:30 -0700849}
850
Dan Williams4e7d2c02009-08-29 19:13:11 -0700851static void mark_target_uptodate(struct stripe_head *sh, int target)
852{
853 struct r5dev *tgt;
854
855 if (target < 0)
856 return;
857
858 tgt = &sh->dev[target];
859 set_bit(R5_UPTODATE, &tgt->flags);
860 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
861 clear_bit(R5_Wantcompute, &tgt->flags);
862}
863
Dan Williamsac6b53b2009-07-14 13:40:19 -0700864static void ops_complete_compute(void *stripe_head_ref)
Dan Williams91c00922007-01-02 13:52:30 -0700865{
866 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -0700867
Harvey Harrisone46b2722008-04-28 02:15:50 -0700868 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700869 (unsigned long long)sh->sector);
870
Dan Williamsac6b53b2009-07-14 13:40:19 -0700871 /* mark the computed target(s) as uptodate */
Dan Williams4e7d2c02009-08-29 19:13:11 -0700872 mark_target_uptodate(sh, sh->ops.target);
Dan Williamsac6b53b2009-07-14 13:40:19 -0700873 mark_target_uptodate(sh, sh->ops.target2);
Dan Williams4e7d2c02009-08-29 19:13:11 -0700874
Dan Williamsecc65c92008-06-28 08:31:57 +1000875 clear_bit(STRIPE_COMPUTE_RUN, &sh->state);
876 if (sh->check_state == check_state_compute_run)
877 sh->check_state = check_state_compute_result;
Dan Williams91c00922007-01-02 13:52:30 -0700878 set_bit(STRIPE_HANDLE, &sh->state);
879 release_stripe(sh);
880}
881
Dan Williamsd6f38f32009-07-14 11:50:52 -0700882/* return a pointer to the address conversion region of the scribble buffer */
883static addr_conv_t *to_addr_conv(struct stripe_head *sh,
884 struct raid5_percpu *percpu)
Dan Williams91c00922007-01-02 13:52:30 -0700885{
Dan Williamsd6f38f32009-07-14 11:50:52 -0700886 return percpu->scribble + sizeof(struct page *) * (sh->disks + 2);
887}
888
889static struct dma_async_tx_descriptor *
890ops_run_compute5(struct stripe_head *sh, struct raid5_percpu *percpu)
891{
Dan Williams91c00922007-01-02 13:52:30 -0700892 int disks = sh->disks;
Dan Williamsd6f38f32009-07-14 11:50:52 -0700893 struct page **xor_srcs = percpu->scribble;
Dan Williams91c00922007-01-02 13:52:30 -0700894 int target = sh->ops.target;
895 struct r5dev *tgt = &sh->dev[target];
896 struct page *xor_dest = tgt->page;
897 int count = 0;
898 struct dma_async_tx_descriptor *tx;
Dan Williamsa08abd82009-06-03 11:43:59 -0700899 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -0700900 int i;
901
902 pr_debug("%s: stripe %llu block: %d\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -0700903 __func__, (unsigned long long)sh->sector, target);
Dan Williams91c00922007-01-02 13:52:30 -0700904 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
905
906 for (i = disks; i--; )
907 if (i != target)
908 xor_srcs[count++] = sh->dev[i].page;
909
910 atomic_inc(&sh->count);
911
Dan Williams0403e382009-09-08 17:42:50 -0700912 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST, NULL,
Dan Williamsac6b53b2009-07-14 13:40:19 -0700913 ops_complete_compute, sh, to_addr_conv(sh, percpu));
Dan Williams91c00922007-01-02 13:52:30 -0700914 if (unlikely(count == 1))
Dan Williamsa08abd82009-06-03 11:43:59 -0700915 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -0700916 else
Dan Williamsa08abd82009-06-03 11:43:59 -0700917 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -0700918
Dan Williams91c00922007-01-02 13:52:30 -0700919 return tx;
920}
921
Dan Williamsac6b53b2009-07-14 13:40:19 -0700922/* set_syndrome_sources - populate source buffers for gen_syndrome
923 * @srcs - (struct page *) array of size sh->disks
924 * @sh - stripe_head to parse
925 *
926 * Populates srcs in proper layout order for the stripe and returns the
927 * 'count' of sources to be used in a call to async_gen_syndrome. The P
928 * destination buffer is recorded in srcs[count] and the Q destination
929 * is recorded in srcs[count+1]].
930 */
931static int set_syndrome_sources(struct page **srcs, struct stripe_head *sh)
932{
933 int disks = sh->disks;
934 int syndrome_disks = sh->ddf_layout ? disks : (disks - 2);
935 int d0_idx = raid6_d0(sh);
936 int count;
937 int i;
938
939 for (i = 0; i < disks; i++)
NeilBrown5dd33c92009-10-16 16:40:25 +1100940 srcs[i] = NULL;
Dan Williamsac6b53b2009-07-14 13:40:19 -0700941
942 count = 0;
943 i = d0_idx;
944 do {
945 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
946
947 srcs[slot] = sh->dev[i].page;
948 i = raid6_next_disk(i, disks);
949 } while (i != d0_idx);
Dan Williamsac6b53b2009-07-14 13:40:19 -0700950
NeilBrowne4424fe2009-10-16 16:27:34 +1100951 return syndrome_disks;
Dan Williamsac6b53b2009-07-14 13:40:19 -0700952}
953
954static struct dma_async_tx_descriptor *
955ops_run_compute6_1(struct stripe_head *sh, struct raid5_percpu *percpu)
956{
957 int disks = sh->disks;
958 struct page **blocks = percpu->scribble;
959 int target;
960 int qd_idx = sh->qd_idx;
961 struct dma_async_tx_descriptor *tx;
962 struct async_submit_ctl submit;
963 struct r5dev *tgt;
964 struct page *dest;
965 int i;
966 int count;
967
968 if (sh->ops.target < 0)
969 target = sh->ops.target2;
970 else if (sh->ops.target2 < 0)
971 target = sh->ops.target;
972 else
973 /* we should only have one valid target */
974 BUG();
975 BUG_ON(target < 0);
976 pr_debug("%s: stripe %llu block: %d\n",
977 __func__, (unsigned long long)sh->sector, target);
978
979 tgt = &sh->dev[target];
980 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
981 dest = tgt->page;
982
983 atomic_inc(&sh->count);
984
985 if (target == qd_idx) {
986 count = set_syndrome_sources(blocks, sh);
987 blocks[count] = NULL; /* regenerating p is not necessary */
988 BUG_ON(blocks[count+1] != dest); /* q should already be set */
Dan Williams0403e382009-09-08 17:42:50 -0700989 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
990 ops_complete_compute, sh,
Dan Williamsac6b53b2009-07-14 13:40:19 -0700991 to_addr_conv(sh, percpu));
992 tx = async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
993 } else {
994 /* Compute any data- or p-drive using XOR */
995 count = 0;
996 for (i = disks; i-- ; ) {
997 if (i == target || i == qd_idx)
998 continue;
999 blocks[count++] = sh->dev[i].page;
1000 }
1001
Dan Williams0403e382009-09-08 17:42:50 -07001002 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
1003 NULL, ops_complete_compute, sh,
Dan Williamsac6b53b2009-07-14 13:40:19 -07001004 to_addr_conv(sh, percpu));
1005 tx = async_xor(dest, blocks, 0, count, STRIPE_SIZE, &submit);
1006 }
1007
1008 return tx;
1009}
1010
1011static struct dma_async_tx_descriptor *
1012ops_run_compute6_2(struct stripe_head *sh, struct raid5_percpu *percpu)
1013{
1014 int i, count, disks = sh->disks;
1015 int syndrome_disks = sh->ddf_layout ? disks : disks-2;
1016 int d0_idx = raid6_d0(sh);
1017 int faila = -1, failb = -1;
1018 int target = sh->ops.target;
1019 int target2 = sh->ops.target2;
1020 struct r5dev *tgt = &sh->dev[target];
1021 struct r5dev *tgt2 = &sh->dev[target2];
1022 struct dma_async_tx_descriptor *tx;
1023 struct page **blocks = percpu->scribble;
1024 struct async_submit_ctl submit;
1025
1026 pr_debug("%s: stripe %llu block1: %d block2: %d\n",
1027 __func__, (unsigned long long)sh->sector, target, target2);
1028 BUG_ON(target < 0 || target2 < 0);
1029 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1030 BUG_ON(!test_bit(R5_Wantcompute, &tgt2->flags));
1031
Dan Williams6c910a72009-09-16 12:24:54 -07001032 /* we need to open-code set_syndrome_sources to handle the
Dan Williamsac6b53b2009-07-14 13:40:19 -07001033 * slot number conversion for 'faila' and 'failb'
1034 */
1035 for (i = 0; i < disks ; i++)
NeilBrown5dd33c92009-10-16 16:40:25 +11001036 blocks[i] = NULL;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001037 count = 0;
1038 i = d0_idx;
1039 do {
1040 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
1041
1042 blocks[slot] = sh->dev[i].page;
1043
1044 if (i == target)
1045 faila = slot;
1046 if (i == target2)
1047 failb = slot;
1048 i = raid6_next_disk(i, disks);
1049 } while (i != d0_idx);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001050
1051 BUG_ON(faila == failb);
1052 if (failb < faila)
1053 swap(faila, failb);
1054 pr_debug("%s: stripe: %llu faila: %d failb: %d\n",
1055 __func__, (unsigned long long)sh->sector, faila, failb);
1056
1057 atomic_inc(&sh->count);
1058
1059 if (failb == syndrome_disks+1) {
1060 /* Q disk is one of the missing disks */
1061 if (faila == syndrome_disks) {
1062 /* Missing P+Q, just recompute */
Dan Williams0403e382009-09-08 17:42:50 -07001063 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1064 ops_complete_compute, sh,
1065 to_addr_conv(sh, percpu));
NeilBrowne4424fe2009-10-16 16:27:34 +11001066 return async_gen_syndrome(blocks, 0, syndrome_disks+2,
Dan Williamsac6b53b2009-07-14 13:40:19 -07001067 STRIPE_SIZE, &submit);
1068 } else {
1069 struct page *dest;
1070 int data_target;
1071 int qd_idx = sh->qd_idx;
1072
1073 /* Missing D+Q: recompute D from P, then recompute Q */
1074 if (target == qd_idx)
1075 data_target = target2;
1076 else
1077 data_target = target;
1078
1079 count = 0;
1080 for (i = disks; i-- ; ) {
1081 if (i == data_target || i == qd_idx)
1082 continue;
1083 blocks[count++] = sh->dev[i].page;
1084 }
1085 dest = sh->dev[data_target].page;
Dan Williams0403e382009-09-08 17:42:50 -07001086 init_async_submit(&submit,
1087 ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
1088 NULL, NULL, NULL,
1089 to_addr_conv(sh, percpu));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001090 tx = async_xor(dest, blocks, 0, count, STRIPE_SIZE,
1091 &submit);
1092
1093 count = set_syndrome_sources(blocks, sh);
Dan Williams0403e382009-09-08 17:42:50 -07001094 init_async_submit(&submit, ASYNC_TX_FENCE, tx,
1095 ops_complete_compute, sh,
1096 to_addr_conv(sh, percpu));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001097 return async_gen_syndrome(blocks, 0, count+2,
1098 STRIPE_SIZE, &submit);
1099 }
Dan Williamsac6b53b2009-07-14 13:40:19 -07001100 } else {
Dan Williams6c910a72009-09-16 12:24:54 -07001101 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1102 ops_complete_compute, sh,
1103 to_addr_conv(sh, percpu));
1104 if (failb == syndrome_disks) {
1105 /* We're missing D+P. */
1106 return async_raid6_datap_recov(syndrome_disks+2,
1107 STRIPE_SIZE, faila,
1108 blocks, &submit);
1109 } else {
1110 /* We're missing D+D. */
1111 return async_raid6_2data_recov(syndrome_disks+2,
1112 STRIPE_SIZE, faila, failb,
1113 blocks, &submit);
1114 }
Dan Williamsac6b53b2009-07-14 13:40:19 -07001115 }
1116}
1117
1118
Dan Williams91c00922007-01-02 13:52:30 -07001119static void ops_complete_prexor(void *stripe_head_ref)
1120{
1121 struct stripe_head *sh = stripe_head_ref;
1122
Harvey Harrisone46b2722008-04-28 02:15:50 -07001123 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001124 (unsigned long long)sh->sector);
Dan Williams91c00922007-01-02 13:52:30 -07001125}
1126
1127static struct dma_async_tx_descriptor *
Dan Williamsd6f38f32009-07-14 11:50:52 -07001128ops_run_prexor(struct stripe_head *sh, struct raid5_percpu *percpu,
1129 struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001130{
Dan Williams91c00922007-01-02 13:52:30 -07001131 int disks = sh->disks;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001132 struct page **xor_srcs = percpu->scribble;
Dan Williams91c00922007-01-02 13:52:30 -07001133 int count = 0, pd_idx = sh->pd_idx, i;
Dan Williamsa08abd82009-06-03 11:43:59 -07001134 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001135
1136 /* existing parity data subtracted */
1137 struct page *xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
1138
Harvey Harrisone46b2722008-04-28 02:15:50 -07001139 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001140 (unsigned long long)sh->sector);
1141
1142 for (i = disks; i--; ) {
1143 struct r5dev *dev = &sh->dev[i];
1144 /* Only process blocks that are known to be uptodate */
Dan Williamsd8ee0722008-06-28 08:32:06 +10001145 if (test_bit(R5_Wantdrain, &dev->flags))
Dan Williams91c00922007-01-02 13:52:30 -07001146 xor_srcs[count++] = dev->page;
1147 }
1148
Dan Williams0403e382009-09-08 17:42:50 -07001149 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_DROP_DST, tx,
Dan Williamsd6f38f32009-07-14 11:50:52 -07001150 ops_complete_prexor, sh, to_addr_conv(sh, percpu));
Dan Williamsa08abd82009-06-03 11:43:59 -07001151 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001152
1153 return tx;
1154}
1155
1156static struct dma_async_tx_descriptor *
Dan Williamsd8ee0722008-06-28 08:32:06 +10001157ops_run_biodrain(struct stripe_head *sh, struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001158{
1159 int disks = sh->disks;
Dan Williamsd8ee0722008-06-28 08:32:06 +10001160 int i;
Dan Williams91c00922007-01-02 13:52:30 -07001161
Harvey Harrisone46b2722008-04-28 02:15:50 -07001162 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001163 (unsigned long long)sh->sector);
1164
1165 for (i = disks; i--; ) {
1166 struct r5dev *dev = &sh->dev[i];
1167 struct bio *chosen;
Dan Williams91c00922007-01-02 13:52:30 -07001168
Dan Williamsd8ee0722008-06-28 08:32:06 +10001169 if (test_and_clear_bit(R5_Wantdrain, &dev->flags)) {
Dan Williams91c00922007-01-02 13:52:30 -07001170 struct bio *wbi;
1171
Shaohua Lib17459c2012-07-19 16:01:31 +10001172 spin_lock_irq(&sh->stripe_lock);
Dan Williams91c00922007-01-02 13:52:30 -07001173 chosen = dev->towrite;
1174 dev->towrite = NULL;
1175 BUG_ON(dev->written);
1176 wbi = dev->written = chosen;
Shaohua Lib17459c2012-07-19 16:01:31 +10001177 spin_unlock_irq(&sh->stripe_lock);
Dan Williams91c00922007-01-02 13:52:30 -07001178
1179 while (wbi && wbi->bi_sector <
1180 dev->sector + STRIPE_SECTORS) {
Tejun Heoe9c74692010-09-03 11:56:18 +02001181 if (wbi->bi_rw & REQ_FUA)
1182 set_bit(R5_WantFUA, &dev->flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001183 if (wbi->bi_rw & REQ_SYNC)
1184 set_bit(R5_SyncIO, &dev->flags);
Shaohua Li9e4447682012-10-11 13:49:49 +11001185 if (wbi->bi_rw & REQ_DISCARD)
Shaohua Li620125f2012-10-11 13:49:05 +11001186 set_bit(R5_Discard, &dev->flags);
Shaohua Li9e4447682012-10-11 13:49:49 +11001187 else
Shaohua Li620125f2012-10-11 13:49:05 +11001188 tx = async_copy_data(1, wbi, dev->page,
1189 dev->sector, tx);
Dan Williams91c00922007-01-02 13:52:30 -07001190 wbi = r5_next_bio(wbi, dev->sector);
1191 }
1192 }
1193 }
1194
1195 return tx;
1196}
1197
Dan Williamsac6b53b2009-07-14 13:40:19 -07001198static void ops_complete_reconstruct(void *stripe_head_ref)
Dan Williams91c00922007-01-02 13:52:30 -07001199{
1200 struct stripe_head *sh = stripe_head_ref;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001201 int disks = sh->disks;
1202 int pd_idx = sh->pd_idx;
1203 int qd_idx = sh->qd_idx;
1204 int i;
Shaohua Li9e4447682012-10-11 13:49:49 +11001205 bool fua = false, sync = false, discard = false;
Dan Williams91c00922007-01-02 13:52:30 -07001206
Harvey Harrisone46b2722008-04-28 02:15:50 -07001207 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001208 (unsigned long long)sh->sector);
1209
Shaohua Libc0934f2012-05-22 13:55:05 +10001210 for (i = disks; i--; ) {
Tejun Heoe9c74692010-09-03 11:56:18 +02001211 fua |= test_bit(R5_WantFUA, &sh->dev[i].flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001212 sync |= test_bit(R5_SyncIO, &sh->dev[i].flags);
Shaohua Li9e4447682012-10-11 13:49:49 +11001213 discard |= test_bit(R5_Discard, &sh->dev[i].flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001214 }
Tejun Heoe9c74692010-09-03 11:56:18 +02001215
Dan Williams91c00922007-01-02 13:52:30 -07001216 for (i = disks; i--; ) {
1217 struct r5dev *dev = &sh->dev[i];
Dan Williamsac6b53b2009-07-14 13:40:19 -07001218
Tejun Heoe9c74692010-09-03 11:56:18 +02001219 if (dev->written || i == pd_idx || i == qd_idx) {
Shaohua Li9e4447682012-10-11 13:49:49 +11001220 if (!discard)
1221 set_bit(R5_UPTODATE, &dev->flags);
Tejun Heoe9c74692010-09-03 11:56:18 +02001222 if (fua)
1223 set_bit(R5_WantFUA, &dev->flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001224 if (sync)
1225 set_bit(R5_SyncIO, &dev->flags);
Tejun Heoe9c74692010-09-03 11:56:18 +02001226 }
Dan Williams91c00922007-01-02 13:52:30 -07001227 }
1228
Dan Williamsd8ee0722008-06-28 08:32:06 +10001229 if (sh->reconstruct_state == reconstruct_state_drain_run)
1230 sh->reconstruct_state = reconstruct_state_drain_result;
1231 else if (sh->reconstruct_state == reconstruct_state_prexor_drain_run)
1232 sh->reconstruct_state = reconstruct_state_prexor_drain_result;
1233 else {
1234 BUG_ON(sh->reconstruct_state != reconstruct_state_run);
1235 sh->reconstruct_state = reconstruct_state_result;
1236 }
Dan Williams91c00922007-01-02 13:52:30 -07001237
1238 set_bit(STRIPE_HANDLE, &sh->state);
1239 release_stripe(sh);
1240}
1241
1242static void
Dan Williamsac6b53b2009-07-14 13:40:19 -07001243ops_run_reconstruct5(struct stripe_head *sh, struct raid5_percpu *percpu,
1244 struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001245{
Dan Williams91c00922007-01-02 13:52:30 -07001246 int disks = sh->disks;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001247 struct page **xor_srcs = percpu->scribble;
Dan Williamsa08abd82009-06-03 11:43:59 -07001248 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001249 int count = 0, pd_idx = sh->pd_idx, i;
1250 struct page *xor_dest;
Dan Williamsd8ee0722008-06-28 08:32:06 +10001251 int prexor = 0;
Dan Williams91c00922007-01-02 13:52:30 -07001252 unsigned long flags;
Dan Williams91c00922007-01-02 13:52:30 -07001253
Harvey Harrisone46b2722008-04-28 02:15:50 -07001254 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001255 (unsigned long long)sh->sector);
1256
Shaohua Li620125f2012-10-11 13:49:05 +11001257 for (i = 0; i < sh->disks; i++) {
1258 if (pd_idx == i)
1259 continue;
1260 if (!test_bit(R5_Discard, &sh->dev[i].flags))
1261 break;
1262 }
1263 if (i >= sh->disks) {
1264 atomic_inc(&sh->count);
Shaohua Li620125f2012-10-11 13:49:05 +11001265 set_bit(R5_Discard, &sh->dev[pd_idx].flags);
1266 ops_complete_reconstruct(sh);
1267 return;
1268 }
Dan Williams91c00922007-01-02 13:52:30 -07001269 /* check if prexor is active which means only process blocks
1270 * that are part of a read-modify-write (written)
1271 */
Dan Williamsd8ee0722008-06-28 08:32:06 +10001272 if (sh->reconstruct_state == reconstruct_state_prexor_drain_run) {
1273 prexor = 1;
Dan Williams91c00922007-01-02 13:52:30 -07001274 xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
1275 for (i = disks; i--; ) {
1276 struct r5dev *dev = &sh->dev[i];
1277 if (dev->written)
1278 xor_srcs[count++] = dev->page;
1279 }
1280 } else {
1281 xor_dest = sh->dev[pd_idx].page;
1282 for (i = disks; i--; ) {
1283 struct r5dev *dev = &sh->dev[i];
1284 if (i != pd_idx)
1285 xor_srcs[count++] = dev->page;
1286 }
1287 }
1288
Dan Williams91c00922007-01-02 13:52:30 -07001289 /* 1/ if we prexor'd then the dest is reused as a source
1290 * 2/ if we did not prexor then we are redoing the parity
1291 * set ASYNC_TX_XOR_DROP_DST and ASYNC_TX_XOR_ZERO_DST
1292 * for the synchronous xor case
1293 */
Dan Williams88ba2aa2009-04-09 16:16:18 -07001294 flags = ASYNC_TX_ACK |
Dan Williams91c00922007-01-02 13:52:30 -07001295 (prexor ? ASYNC_TX_XOR_DROP_DST : ASYNC_TX_XOR_ZERO_DST);
1296
1297 atomic_inc(&sh->count);
1298
Dan Williamsac6b53b2009-07-14 13:40:19 -07001299 init_async_submit(&submit, flags, tx, ops_complete_reconstruct, sh,
Dan Williamsd6f38f32009-07-14 11:50:52 -07001300 to_addr_conv(sh, percpu));
Dan Williamsa08abd82009-06-03 11:43:59 -07001301 if (unlikely(count == 1))
1302 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
1303 else
1304 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001305}
1306
Dan Williamsac6b53b2009-07-14 13:40:19 -07001307static void
1308ops_run_reconstruct6(struct stripe_head *sh, struct raid5_percpu *percpu,
1309 struct dma_async_tx_descriptor *tx)
1310{
1311 struct async_submit_ctl submit;
1312 struct page **blocks = percpu->scribble;
Shaohua Li620125f2012-10-11 13:49:05 +11001313 int count, i;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001314
1315 pr_debug("%s: stripe %llu\n", __func__, (unsigned long long)sh->sector);
1316
Shaohua Li620125f2012-10-11 13:49:05 +11001317 for (i = 0; i < sh->disks; i++) {
1318 if (sh->pd_idx == i || sh->qd_idx == i)
1319 continue;
1320 if (!test_bit(R5_Discard, &sh->dev[i].flags))
1321 break;
1322 }
1323 if (i >= sh->disks) {
1324 atomic_inc(&sh->count);
Shaohua Li620125f2012-10-11 13:49:05 +11001325 set_bit(R5_Discard, &sh->dev[sh->pd_idx].flags);
1326 set_bit(R5_Discard, &sh->dev[sh->qd_idx].flags);
1327 ops_complete_reconstruct(sh);
1328 return;
1329 }
1330
Dan Williamsac6b53b2009-07-14 13:40:19 -07001331 count = set_syndrome_sources(blocks, sh);
1332
1333 atomic_inc(&sh->count);
1334
1335 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_reconstruct,
1336 sh, to_addr_conv(sh, percpu));
1337 async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001338}
1339
1340static void ops_complete_check(void *stripe_head_ref)
1341{
1342 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -07001343
Harvey Harrisone46b2722008-04-28 02:15:50 -07001344 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001345 (unsigned long long)sh->sector);
1346
Dan Williamsecc65c92008-06-28 08:31:57 +10001347 sh->check_state = check_state_check_result;
Dan Williams91c00922007-01-02 13:52:30 -07001348 set_bit(STRIPE_HANDLE, &sh->state);
1349 release_stripe(sh);
1350}
1351
Dan Williamsac6b53b2009-07-14 13:40:19 -07001352static void ops_run_check_p(struct stripe_head *sh, struct raid5_percpu *percpu)
Dan Williams91c00922007-01-02 13:52:30 -07001353{
Dan Williams91c00922007-01-02 13:52:30 -07001354 int disks = sh->disks;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001355 int pd_idx = sh->pd_idx;
1356 int qd_idx = sh->qd_idx;
1357 struct page *xor_dest;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001358 struct page **xor_srcs = percpu->scribble;
Dan Williams91c00922007-01-02 13:52:30 -07001359 struct dma_async_tx_descriptor *tx;
Dan Williamsa08abd82009-06-03 11:43:59 -07001360 struct async_submit_ctl submit;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001361 int count;
1362 int i;
Dan Williams91c00922007-01-02 13:52:30 -07001363
Harvey Harrisone46b2722008-04-28 02:15:50 -07001364 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001365 (unsigned long long)sh->sector);
1366
Dan Williamsac6b53b2009-07-14 13:40:19 -07001367 count = 0;
1368 xor_dest = sh->dev[pd_idx].page;
1369 xor_srcs[count++] = xor_dest;
Dan Williams91c00922007-01-02 13:52:30 -07001370 for (i = disks; i--; ) {
Dan Williamsac6b53b2009-07-14 13:40:19 -07001371 if (i == pd_idx || i == qd_idx)
1372 continue;
1373 xor_srcs[count++] = sh->dev[i].page;
Dan Williams91c00922007-01-02 13:52:30 -07001374 }
1375
Dan Williamsd6f38f32009-07-14 11:50:52 -07001376 init_async_submit(&submit, 0, NULL, NULL, NULL,
1377 to_addr_conv(sh, percpu));
Dan Williams099f53c2009-04-08 14:28:37 -07001378 tx = async_xor_val(xor_dest, xor_srcs, 0, count, STRIPE_SIZE,
Dan Williamsa08abd82009-06-03 11:43:59 -07001379 &sh->ops.zero_sum_result, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001380
Dan Williams91c00922007-01-02 13:52:30 -07001381 atomic_inc(&sh->count);
Dan Williamsa08abd82009-06-03 11:43:59 -07001382 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_check, sh, NULL);
1383 tx = async_trigger_callback(&submit);
Dan Williams91c00922007-01-02 13:52:30 -07001384}
1385
Dan Williamsac6b53b2009-07-14 13:40:19 -07001386static void ops_run_check_pq(struct stripe_head *sh, struct raid5_percpu *percpu, int checkp)
1387{
1388 struct page **srcs = percpu->scribble;
1389 struct async_submit_ctl submit;
1390 int count;
1391
1392 pr_debug("%s: stripe %llu checkp: %d\n", __func__,
1393 (unsigned long long)sh->sector, checkp);
1394
1395 count = set_syndrome_sources(srcs, sh);
1396 if (!checkp)
1397 srcs[count] = NULL;
1398
1399 atomic_inc(&sh->count);
1400 init_async_submit(&submit, ASYNC_TX_ACK, NULL, ops_complete_check,
1401 sh, to_addr_conv(sh, percpu));
1402 async_syndrome_val(srcs, 0, count+2, STRIPE_SIZE,
1403 &sh->ops.zero_sum_result, percpu->spare_page, &submit);
1404}
1405
Dan Williams417b8d42009-10-16 16:25:22 +11001406static void __raid_run_ops(struct stripe_head *sh, unsigned long ops_request)
Dan Williams91c00922007-01-02 13:52:30 -07001407{
1408 int overlap_clear = 0, i, disks = sh->disks;
1409 struct dma_async_tx_descriptor *tx = NULL;
NeilBrownd1688a62011-10-11 16:49:52 +11001410 struct r5conf *conf = sh->raid_conf;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001411 int level = conf->level;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001412 struct raid5_percpu *percpu;
1413 unsigned long cpu;
Dan Williams91c00922007-01-02 13:52:30 -07001414
Dan Williamsd6f38f32009-07-14 11:50:52 -07001415 cpu = get_cpu();
1416 percpu = per_cpu_ptr(conf->percpu, cpu);
Dan Williams83de75c2008-06-28 08:31:58 +10001417 if (test_bit(STRIPE_OP_BIOFILL, &ops_request)) {
Dan Williams91c00922007-01-02 13:52:30 -07001418 ops_run_biofill(sh);
1419 overlap_clear++;
1420 }
1421
Dan Williams7b3a8712008-06-28 08:32:09 +10001422 if (test_bit(STRIPE_OP_COMPUTE_BLK, &ops_request)) {
Dan Williamsac6b53b2009-07-14 13:40:19 -07001423 if (level < 6)
1424 tx = ops_run_compute5(sh, percpu);
1425 else {
1426 if (sh->ops.target2 < 0 || sh->ops.target < 0)
1427 tx = ops_run_compute6_1(sh, percpu);
1428 else
1429 tx = ops_run_compute6_2(sh, percpu);
1430 }
1431 /* terminate the chain if reconstruct is not set to be run */
1432 if (tx && !test_bit(STRIPE_OP_RECONSTRUCT, &ops_request))
Dan Williams7b3a8712008-06-28 08:32:09 +10001433 async_tx_ack(tx);
1434 }
Dan Williams91c00922007-01-02 13:52:30 -07001435
Dan Williams600aa102008-06-28 08:32:05 +10001436 if (test_bit(STRIPE_OP_PREXOR, &ops_request))
Dan Williamsd6f38f32009-07-14 11:50:52 -07001437 tx = ops_run_prexor(sh, percpu, tx);
Dan Williams91c00922007-01-02 13:52:30 -07001438
Dan Williams600aa102008-06-28 08:32:05 +10001439 if (test_bit(STRIPE_OP_BIODRAIN, &ops_request)) {
Dan Williamsd8ee0722008-06-28 08:32:06 +10001440 tx = ops_run_biodrain(sh, tx);
Dan Williams91c00922007-01-02 13:52:30 -07001441 overlap_clear++;
1442 }
1443
Dan Williamsac6b53b2009-07-14 13:40:19 -07001444 if (test_bit(STRIPE_OP_RECONSTRUCT, &ops_request)) {
1445 if (level < 6)
1446 ops_run_reconstruct5(sh, percpu, tx);
1447 else
1448 ops_run_reconstruct6(sh, percpu, tx);
1449 }
Dan Williams91c00922007-01-02 13:52:30 -07001450
Dan Williamsac6b53b2009-07-14 13:40:19 -07001451 if (test_bit(STRIPE_OP_CHECK, &ops_request)) {
1452 if (sh->check_state == check_state_run)
1453 ops_run_check_p(sh, percpu);
1454 else if (sh->check_state == check_state_run_q)
1455 ops_run_check_pq(sh, percpu, 0);
1456 else if (sh->check_state == check_state_run_pq)
1457 ops_run_check_pq(sh, percpu, 1);
1458 else
1459 BUG();
1460 }
Dan Williams91c00922007-01-02 13:52:30 -07001461
Dan Williams91c00922007-01-02 13:52:30 -07001462 if (overlap_clear)
1463 for (i = disks; i--; ) {
1464 struct r5dev *dev = &sh->dev[i];
1465 if (test_and_clear_bit(R5_Overlap, &dev->flags))
1466 wake_up(&sh->raid_conf->wait_for_overlap);
1467 }
Dan Williamsd6f38f32009-07-14 11:50:52 -07001468 put_cpu();
Dan Williams91c00922007-01-02 13:52:30 -07001469}
1470
Dan Williams417b8d42009-10-16 16:25:22 +11001471#ifdef CONFIG_MULTICORE_RAID456
1472static void async_run_ops(void *param, async_cookie_t cookie)
1473{
1474 struct stripe_head *sh = param;
1475 unsigned long ops_request = sh->ops.request;
1476
1477 clear_bit_unlock(STRIPE_OPS_REQ_PENDING, &sh->state);
1478 wake_up(&sh->ops.wait_for_ops);
1479
1480 __raid_run_ops(sh, ops_request);
1481 release_stripe(sh);
1482}
1483
1484static void raid_run_ops(struct stripe_head *sh, unsigned long ops_request)
1485{
1486 /* since handle_stripe can be called outside of raid5d context
1487 * we need to ensure sh->ops.request is de-staged before another
1488 * request arrives
1489 */
1490 wait_event(sh->ops.wait_for_ops,
1491 !test_and_set_bit_lock(STRIPE_OPS_REQ_PENDING, &sh->state));
1492 sh->ops.request = ops_request;
1493
1494 atomic_inc(&sh->count);
1495 async_schedule(async_run_ops, sh);
1496}
1497#else
1498#define raid_run_ops __raid_run_ops
1499#endif
1500
NeilBrownd1688a62011-10-11 16:49:52 +11001501static int grow_one_stripe(struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502{
1503 struct stripe_head *sh;
Namhyung Kim6ce32842011-07-18 17:38:50 +10001504 sh = kmem_cache_zalloc(conf->slab_cache, GFP_KERNEL);
NeilBrown3f294f42005-11-08 21:39:25 -08001505 if (!sh)
1506 return 0;
Namhyung Kim6ce32842011-07-18 17:38:50 +10001507
NeilBrown3f294f42005-11-08 21:39:25 -08001508 sh->raid_conf = conf;
Dan Williams417b8d42009-10-16 16:25:22 +11001509 #ifdef CONFIG_MULTICORE_RAID456
1510 init_waitqueue_head(&sh->ops.wait_for_ops);
1511 #endif
NeilBrown3f294f42005-11-08 21:39:25 -08001512
Shaohua Lib17459c2012-07-19 16:01:31 +10001513 spin_lock_init(&sh->stripe_lock);
1514
NeilBrowne4e11e32010-06-16 16:45:16 +10001515 if (grow_buffers(sh)) {
1516 shrink_buffers(sh);
NeilBrown3f294f42005-11-08 21:39:25 -08001517 kmem_cache_free(conf->slab_cache, sh);
1518 return 0;
1519 }
1520 /* we just created an active stripe so... */
1521 atomic_set(&sh->count, 1);
1522 atomic_inc(&conf->active_stripes);
1523 INIT_LIST_HEAD(&sh->lru);
1524 release_stripe(sh);
1525 return 1;
1526}
1527
NeilBrownd1688a62011-10-11 16:49:52 +11001528static int grow_stripes(struct r5conf *conf, int num)
NeilBrown3f294f42005-11-08 21:39:25 -08001529{
Christoph Lametere18b8902006-12-06 20:33:20 -08001530 struct kmem_cache *sc;
NeilBrown5e5e3e72009-10-16 16:35:30 +11001531 int devs = max(conf->raid_disks, conf->previous_raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
NeilBrownf4be6b42010-06-01 19:37:25 +10001533 if (conf->mddev->gendisk)
1534 sprintf(conf->cache_name[0],
1535 "raid%d-%s", conf->level, mdname(conf->mddev));
1536 else
1537 sprintf(conf->cache_name[0],
1538 "raid%d-%p", conf->level, conf->mddev);
1539 sprintf(conf->cache_name[1], "%s-alt", conf->cache_name[0]);
1540
NeilBrownad01c9e2006-03-27 01:18:07 -08001541 conf->active_name = 0;
1542 sc = kmem_cache_create(conf->cache_name[conf->active_name],
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 sizeof(struct stripe_head)+(devs-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +09001544 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 if (!sc)
1546 return 1;
1547 conf->slab_cache = sc;
NeilBrownad01c9e2006-03-27 01:18:07 -08001548 conf->pool_size = devs;
NeilBrown16a53ec2006-06-26 00:27:38 -07001549 while (num--)
NeilBrown3f294f42005-11-08 21:39:25 -08001550 if (!grow_one_stripe(conf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 return 0;
1553}
NeilBrown29269552006-03-27 01:18:10 -08001554
Dan Williamsd6f38f32009-07-14 11:50:52 -07001555/**
1556 * scribble_len - return the required size of the scribble region
1557 * @num - total number of disks in the array
1558 *
1559 * The size must be enough to contain:
1560 * 1/ a struct page pointer for each device in the array +2
1561 * 2/ room to convert each entry in (1) to its corresponding dma
1562 * (dma_map_page()) or page (page_address()) address.
1563 *
1564 * Note: the +2 is for the destination buffers of the ddf/raid6 case where we
1565 * calculate over all devices (not just the data blocks), using zeros in place
1566 * of the P and Q blocks.
1567 */
1568static size_t scribble_len(int num)
1569{
1570 size_t len;
1571
1572 len = sizeof(struct page *) * (num+2) + sizeof(addr_conv_t) * (num+2);
1573
1574 return len;
1575}
1576
NeilBrownd1688a62011-10-11 16:49:52 +11001577static int resize_stripes(struct r5conf *conf, int newsize)
NeilBrownad01c9e2006-03-27 01:18:07 -08001578{
1579 /* Make all the stripes able to hold 'newsize' devices.
1580 * New slots in each stripe get 'page' set to a new page.
1581 *
1582 * This happens in stages:
1583 * 1/ create a new kmem_cache and allocate the required number of
1584 * stripe_heads.
Masanari Iida83f0d772012-10-30 00:18:08 +09001585 * 2/ gather all the old stripe_heads and transfer the pages across
NeilBrownad01c9e2006-03-27 01:18:07 -08001586 * to the new stripe_heads. This will have the side effect of
1587 * freezing the array as once all stripe_heads have been collected,
1588 * no IO will be possible. Old stripe heads are freed once their
1589 * pages have been transferred over, and the old kmem_cache is
1590 * freed when all stripes are done.
1591 * 3/ reallocate conf->disks to be suitable bigger. If this fails,
1592 * we simple return a failre status - no need to clean anything up.
1593 * 4/ allocate new pages for the new slots in the new stripe_heads.
1594 * If this fails, we don't bother trying the shrink the
1595 * stripe_heads down again, we just leave them as they are.
1596 * As each stripe_head is processed the new one is released into
1597 * active service.
1598 *
1599 * Once step2 is started, we cannot afford to wait for a write,
1600 * so we use GFP_NOIO allocations.
1601 */
1602 struct stripe_head *osh, *nsh;
1603 LIST_HEAD(newstripes);
1604 struct disk_info *ndisks;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001605 unsigned long cpu;
Dan Williamsb5470dc2008-06-27 21:44:04 -07001606 int err;
Christoph Lametere18b8902006-12-06 20:33:20 -08001607 struct kmem_cache *sc;
NeilBrownad01c9e2006-03-27 01:18:07 -08001608 int i;
1609
1610 if (newsize <= conf->pool_size)
1611 return 0; /* never bother to shrink */
1612
Dan Williamsb5470dc2008-06-27 21:44:04 -07001613 err = md_allow_write(conf->mddev);
1614 if (err)
1615 return err;
NeilBrown2a2275d2007-01-26 00:57:11 -08001616
NeilBrownad01c9e2006-03-27 01:18:07 -08001617 /* Step 1 */
1618 sc = kmem_cache_create(conf->cache_name[1-conf->active_name],
1619 sizeof(struct stripe_head)+(newsize-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +09001620 0, 0, NULL);
NeilBrownad01c9e2006-03-27 01:18:07 -08001621 if (!sc)
1622 return -ENOMEM;
1623
1624 for (i = conf->max_nr_stripes; i; i--) {
Namhyung Kim6ce32842011-07-18 17:38:50 +10001625 nsh = kmem_cache_zalloc(sc, GFP_KERNEL);
NeilBrownad01c9e2006-03-27 01:18:07 -08001626 if (!nsh)
1627 break;
1628
NeilBrownad01c9e2006-03-27 01:18:07 -08001629 nsh->raid_conf = conf;
Dan Williams417b8d42009-10-16 16:25:22 +11001630 #ifdef CONFIG_MULTICORE_RAID456
1631 init_waitqueue_head(&nsh->ops.wait_for_ops);
1632 #endif
NeilBrowncb13ff62012-09-24 16:27:20 +10001633 spin_lock_init(&nsh->stripe_lock);
NeilBrownad01c9e2006-03-27 01:18:07 -08001634
1635 list_add(&nsh->lru, &newstripes);
1636 }
1637 if (i) {
1638 /* didn't get enough, give up */
1639 while (!list_empty(&newstripes)) {
1640 nsh = list_entry(newstripes.next, struct stripe_head, lru);
1641 list_del(&nsh->lru);
1642 kmem_cache_free(sc, nsh);
1643 }
1644 kmem_cache_destroy(sc);
1645 return -ENOMEM;
1646 }
1647 /* Step 2 - Must use GFP_NOIO now.
1648 * OK, we have enough stripes, start collecting inactive
1649 * stripes and copying them over
1650 */
1651 list_for_each_entry(nsh, &newstripes, lru) {
1652 spin_lock_irq(&conf->device_lock);
1653 wait_event_lock_irq(conf->wait_for_stripe,
1654 !list_empty(&conf->inactive_list),
Lukas Czernereed8c022012-11-30 11:42:40 +01001655 conf->device_lock);
NeilBrownad01c9e2006-03-27 01:18:07 -08001656 osh = get_free_stripe(conf);
1657 spin_unlock_irq(&conf->device_lock);
1658 atomic_set(&nsh->count, 1);
1659 for(i=0; i<conf->pool_size; i++)
1660 nsh->dev[i].page = osh->dev[i].page;
1661 for( ; i<newsize; i++)
1662 nsh->dev[i].page = NULL;
1663 kmem_cache_free(conf->slab_cache, osh);
1664 }
1665 kmem_cache_destroy(conf->slab_cache);
1666
1667 /* Step 3.
1668 * At this point, we are holding all the stripes so the array
1669 * is completely stalled, so now is a good time to resize
Dan Williamsd6f38f32009-07-14 11:50:52 -07001670 * conf->disks and the scribble region
NeilBrownad01c9e2006-03-27 01:18:07 -08001671 */
1672 ndisks = kzalloc(newsize * sizeof(struct disk_info), GFP_NOIO);
1673 if (ndisks) {
1674 for (i=0; i<conf->raid_disks; i++)
1675 ndisks[i] = conf->disks[i];
1676 kfree(conf->disks);
1677 conf->disks = ndisks;
1678 } else
1679 err = -ENOMEM;
1680
Dan Williamsd6f38f32009-07-14 11:50:52 -07001681 get_online_cpus();
1682 conf->scribble_len = scribble_len(newsize);
1683 for_each_present_cpu(cpu) {
1684 struct raid5_percpu *percpu;
1685 void *scribble;
1686
1687 percpu = per_cpu_ptr(conf->percpu, cpu);
1688 scribble = kmalloc(conf->scribble_len, GFP_NOIO);
1689
1690 if (scribble) {
1691 kfree(percpu->scribble);
1692 percpu->scribble = scribble;
1693 } else {
1694 err = -ENOMEM;
1695 break;
1696 }
1697 }
1698 put_online_cpus();
1699
NeilBrownad01c9e2006-03-27 01:18:07 -08001700 /* Step 4, return new stripes to service */
1701 while(!list_empty(&newstripes)) {
1702 nsh = list_entry(newstripes.next, struct stripe_head, lru);
1703 list_del_init(&nsh->lru);
Dan Williamsd6f38f32009-07-14 11:50:52 -07001704
NeilBrownad01c9e2006-03-27 01:18:07 -08001705 for (i=conf->raid_disks; i < newsize; i++)
1706 if (nsh->dev[i].page == NULL) {
1707 struct page *p = alloc_page(GFP_NOIO);
1708 nsh->dev[i].page = p;
1709 if (!p)
1710 err = -ENOMEM;
1711 }
1712 release_stripe(nsh);
1713 }
1714 /* critical section pass, GFP_NOIO no longer needed */
1715
1716 conf->slab_cache = sc;
1717 conf->active_name = 1-conf->active_name;
1718 conf->pool_size = newsize;
1719 return err;
1720}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
NeilBrownd1688a62011-10-11 16:49:52 +11001722static int drop_one_stripe(struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723{
1724 struct stripe_head *sh;
1725
NeilBrown3f294f42005-11-08 21:39:25 -08001726 spin_lock_irq(&conf->device_lock);
1727 sh = get_free_stripe(conf);
1728 spin_unlock_irq(&conf->device_lock);
1729 if (!sh)
1730 return 0;
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02001731 BUG_ON(atomic_read(&sh->count));
NeilBrowne4e11e32010-06-16 16:45:16 +10001732 shrink_buffers(sh);
NeilBrown3f294f42005-11-08 21:39:25 -08001733 kmem_cache_free(conf->slab_cache, sh);
1734 atomic_dec(&conf->active_stripes);
1735 return 1;
1736}
1737
NeilBrownd1688a62011-10-11 16:49:52 +11001738static void shrink_stripes(struct r5conf *conf)
NeilBrown3f294f42005-11-08 21:39:25 -08001739{
1740 while (drop_one_stripe(conf))
1741 ;
1742
NeilBrown29fc7e32006-02-03 03:03:41 -08001743 if (conf->slab_cache)
1744 kmem_cache_destroy(conf->slab_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 conf->slab_cache = NULL;
1746}
1747
NeilBrown6712ecf2007-09-27 12:47:43 +02001748static void raid5_end_read_request(struct bio * bi, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749{
NeilBrown99c0fb52009-03-31 14:39:38 +11001750 struct stripe_head *sh = bi->bi_private;
NeilBrownd1688a62011-10-11 16:49:52 +11001751 struct r5conf *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08001752 int disks = sh->disks, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
NeilBrownd6950432006-07-10 04:44:20 -07001754 char b[BDEVNAME_SIZE];
NeilBrowndd054fc2011-12-23 10:17:53 +11001755 struct md_rdev *rdev = NULL;
NeilBrown05616be2012-05-21 09:27:00 +10001756 sector_t s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
1758 for (i=0 ; i<disks; i++)
1759 if (bi == &sh->dev[i].req)
1760 break;
1761
Dan Williams45b42332007-07-09 11:56:43 -07001762 pr_debug("end_read_request %llu/%d, count: %d, uptodate %d.\n",
1763 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 uptodate);
1765 if (i == disks) {
1766 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02001767 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 }
NeilBrown14a75d32011-12-23 10:17:52 +11001769 if (test_bit(R5_ReadRepl, &sh->dev[i].flags))
NeilBrowndd054fc2011-12-23 10:17:53 +11001770 /* If replacement finished while this request was outstanding,
1771 * 'replacement' might be NULL already.
1772 * In that case it moved down to 'rdev'.
1773 * rdev is not removed until all requests are finished.
1774 */
NeilBrown14a75d32011-12-23 10:17:52 +11001775 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11001776 if (!rdev)
NeilBrown14a75d32011-12-23 10:17:52 +11001777 rdev = conf->disks[i].rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
NeilBrown05616be2012-05-21 09:27:00 +10001779 if (use_new_offset(conf, sh))
1780 s = sh->sector + rdev->new_data_offset;
1781 else
1782 s = sh->sector + rdev->data_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 if (uptodate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 set_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrown4e5314b2005-11-08 21:39:22 -08001785 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11001786 /* Note that this cannot happen on a
1787 * replacement device. We just fail those on
1788 * any error
1789 */
Christian Dietrich8bda4702011-07-27 11:00:36 +10001790 printk_ratelimited(
1791 KERN_INFO
1792 "md/raid:%s: read error corrected"
1793 " (%lu sectors at %llu on %s)\n",
1794 mdname(conf->mddev), STRIPE_SECTORS,
NeilBrown05616be2012-05-21 09:27:00 +10001795 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10001796 bdevname(rdev->bdev, b));
Namhyung Kimddd51152011-07-27 11:00:36 +10001797 atomic_add(STRIPE_SECTORS, &rdev->corrected_errors);
NeilBrown4e5314b2005-11-08 21:39:22 -08001798 clear_bit(R5_ReadError, &sh->dev[i].flags);
1799 clear_bit(R5_ReWrite, &sh->dev[i].flags);
majianpeng3f9e7c12012-07-31 10:04:21 +10001800 } else if (test_bit(R5_ReadNoMerge, &sh->dev[i].flags))
1801 clear_bit(R5_ReadNoMerge, &sh->dev[i].flags);
1802
NeilBrown14a75d32011-12-23 10:17:52 +11001803 if (atomic_read(&rdev->read_errors))
1804 atomic_set(&rdev->read_errors, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 } else {
NeilBrown14a75d32011-12-23 10:17:52 +11001806 const char *bdn = bdevname(rdev->bdev, b);
NeilBrownba22dcb2005-11-08 21:39:31 -08001807 int retry = 0;
majianpeng2e8ac3032012-07-03 15:57:02 +10001808 int set_bad = 0;
NeilBrownd6950432006-07-10 04:44:20 -07001809
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 clear_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrownd6950432006-07-10 04:44:20 -07001811 atomic_inc(&rdev->read_errors);
NeilBrown14a75d32011-12-23 10:17:52 +11001812 if (test_bit(R5_ReadRepl, &sh->dev[i].flags))
1813 printk_ratelimited(
1814 KERN_WARNING
1815 "md/raid:%s: read error on replacement device "
1816 "(sector %llu on %s).\n",
1817 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10001818 (unsigned long long)s,
NeilBrown14a75d32011-12-23 10:17:52 +11001819 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10001820 else if (conf->mddev->degraded >= conf->max_degraded) {
1821 set_bad = 1;
Christian Dietrich8bda4702011-07-27 11:00:36 +10001822 printk_ratelimited(
1823 KERN_WARNING
1824 "md/raid:%s: read error not correctable "
1825 "(sector %llu on %s).\n",
1826 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10001827 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10001828 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10001829 } else if (test_bit(R5_ReWrite, &sh->dev[i].flags)) {
NeilBrown4e5314b2005-11-08 21:39:22 -08001830 /* Oh, no!!! */
majianpeng2e8ac3032012-07-03 15:57:02 +10001831 set_bad = 1;
Christian Dietrich8bda4702011-07-27 11:00:36 +10001832 printk_ratelimited(
1833 KERN_WARNING
1834 "md/raid:%s: read error NOT corrected!! "
1835 "(sector %llu on %s).\n",
1836 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10001837 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10001838 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10001839 } else if (atomic_read(&rdev->read_errors)
NeilBrownba22dcb2005-11-08 21:39:31 -08001840 > conf->max_nr_stripes)
NeilBrown14f8d262006-01-06 00:20:14 -08001841 printk(KERN_WARNING
NeilBrown0c55e022010-05-03 14:09:02 +10001842 "md/raid:%s: Too many read errors, failing device %s.\n",
NeilBrownd6950432006-07-10 04:44:20 -07001843 mdname(conf->mddev), bdn);
NeilBrownba22dcb2005-11-08 21:39:31 -08001844 else
1845 retry = 1;
1846 if (retry)
majianpeng3f9e7c12012-07-31 10:04:21 +10001847 if (test_bit(R5_ReadNoMerge, &sh->dev[i].flags)) {
1848 set_bit(R5_ReadError, &sh->dev[i].flags);
1849 clear_bit(R5_ReadNoMerge, &sh->dev[i].flags);
1850 } else
1851 set_bit(R5_ReadNoMerge, &sh->dev[i].flags);
NeilBrownba22dcb2005-11-08 21:39:31 -08001852 else {
NeilBrown4e5314b2005-11-08 21:39:22 -08001853 clear_bit(R5_ReadError, &sh->dev[i].flags);
1854 clear_bit(R5_ReWrite, &sh->dev[i].flags);
majianpeng2e8ac3032012-07-03 15:57:02 +10001855 if (!(set_bad
1856 && test_bit(In_sync, &rdev->flags)
1857 && rdev_set_badblocks(
1858 rdev, sh->sector, STRIPE_SECTORS, 0)))
1859 md_error(conf->mddev, rdev);
NeilBrownba22dcb2005-11-08 21:39:31 -08001860 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 }
NeilBrown14a75d32011-12-23 10:17:52 +11001862 rdev_dec_pending(rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 clear_bit(R5_LOCKED, &sh->dev[i].flags);
1864 set_bit(STRIPE_HANDLE, &sh->state);
1865 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866}
1867
NeilBrownd710e132008-10-13 11:55:12 +11001868static void raid5_end_write_request(struct bio *bi, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869{
NeilBrown99c0fb52009-03-31 14:39:38 +11001870 struct stripe_head *sh = bi->bi_private;
NeilBrownd1688a62011-10-11 16:49:52 +11001871 struct r5conf *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08001872 int disks = sh->disks, i;
NeilBrown977df362011-12-23 10:17:53 +11001873 struct md_rdev *uninitialized_var(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
NeilBrownb84db562011-07-28 11:39:23 +10001875 sector_t first_bad;
1876 int bad_sectors;
NeilBrown977df362011-12-23 10:17:53 +11001877 int replacement = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
NeilBrown977df362011-12-23 10:17:53 +11001879 for (i = 0 ; i < disks; i++) {
1880 if (bi == &sh->dev[i].req) {
1881 rdev = conf->disks[i].rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 break;
NeilBrown977df362011-12-23 10:17:53 +11001883 }
1884 if (bi == &sh->dev[i].rreq) {
1885 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11001886 if (rdev)
1887 replacement = 1;
1888 else
1889 /* rdev was removed and 'replacement'
1890 * replaced it. rdev is not removed
1891 * until all requests are finished.
1892 */
1893 rdev = conf->disks[i].rdev;
NeilBrown977df362011-12-23 10:17:53 +11001894 break;
1895 }
1896 }
Dan Williams45b42332007-07-09 11:56:43 -07001897 pr_debug("end_write_request %llu/%d, count %d, uptodate: %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
1899 uptodate);
1900 if (i == disks) {
1901 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02001902 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 }
1904
NeilBrown977df362011-12-23 10:17:53 +11001905 if (replacement) {
1906 if (!uptodate)
1907 md_error(conf->mddev, rdev);
1908 else if (is_badblock(rdev, sh->sector,
1909 STRIPE_SECTORS,
1910 &first_bad, &bad_sectors))
1911 set_bit(R5_MadeGoodRepl, &sh->dev[i].flags);
1912 } else {
1913 if (!uptodate) {
1914 set_bit(WriteErrorSeen, &rdev->flags);
1915 set_bit(R5_WriteError, &sh->dev[i].flags);
NeilBrown3a6de292011-12-23 10:17:54 +11001916 if (!test_and_set_bit(WantReplacement, &rdev->flags))
1917 set_bit(MD_RECOVERY_NEEDED,
1918 &rdev->mddev->recovery);
NeilBrown977df362011-12-23 10:17:53 +11001919 } else if (is_badblock(rdev, sh->sector,
1920 STRIPE_SECTORS,
1921 &first_bad, &bad_sectors))
1922 set_bit(R5_MadeGood, &sh->dev[i].flags);
1923 }
1924 rdev_dec_pending(rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
NeilBrown977df362011-12-23 10:17:53 +11001926 if (!test_and_clear_bit(R5_DOUBLE_LOCKED, &sh->dev[i].flags))
1927 clear_bit(R5_LOCKED, &sh->dev[i].flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 set_bit(STRIPE_HANDLE, &sh->state);
NeilBrownc04be0a2006-10-03 01:15:53 -07001929 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930}
1931
NeilBrown784052e2009-03-31 15:19:07 +11001932static sector_t compute_blocknr(struct stripe_head *sh, int i, int previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
NeilBrown784052e2009-03-31 15:19:07 +11001934static void raid5_build_block(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935{
1936 struct r5dev *dev = &sh->dev[i];
1937
1938 bio_init(&dev->req);
1939 dev->req.bi_io_vec = &dev->vec;
1940 dev->req.bi_vcnt++;
1941 dev->req.bi_max_vecs++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 dev->req.bi_private = sh;
NeilBrown995c4272011-12-23 10:17:52 +11001943 dev->vec.bv_page = dev->page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
NeilBrown977df362011-12-23 10:17:53 +11001945 bio_init(&dev->rreq);
1946 dev->rreq.bi_io_vec = &dev->rvec;
1947 dev->rreq.bi_vcnt++;
1948 dev->rreq.bi_max_vecs++;
1949 dev->rreq.bi_private = sh;
1950 dev->rvec.bv_page = dev->page;
1951
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 dev->flags = 0;
NeilBrown784052e2009-03-31 15:19:07 +11001953 dev->sector = compute_blocknr(sh, i, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954}
1955
NeilBrownfd01b882011-10-11 16:47:53 +11001956static void error(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957{
1958 char b[BDEVNAME_SIZE];
NeilBrownd1688a62011-10-11 16:49:52 +11001959 struct r5conf *conf = mddev->private;
NeilBrown908f4fb2011-12-23 10:17:50 +11001960 unsigned long flags;
NeilBrown0c55e022010-05-03 14:09:02 +10001961 pr_debug("raid456: error called\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
NeilBrown908f4fb2011-12-23 10:17:50 +11001963 spin_lock_irqsave(&conf->device_lock, flags);
1964 clear_bit(In_sync, &rdev->flags);
1965 mddev->degraded = calc_degraded(conf);
1966 spin_unlock_irqrestore(&conf->device_lock, flags);
1967 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
1968
NeilBrownde393cd2011-07-28 11:31:48 +10001969 set_bit(Blocked, &rdev->flags);
NeilBrown6f8d0c72011-05-11 14:38:44 +10001970 set_bit(Faulty, &rdev->flags);
1971 set_bit(MD_CHANGE_DEVS, &mddev->flags);
1972 printk(KERN_ALERT
1973 "md/raid:%s: Disk failure on %s, disabling device.\n"
1974 "md/raid:%s: Operation continuing on %d devices.\n",
1975 mdname(mddev),
1976 bdevname(rdev->bdev, b),
1977 mdname(mddev),
1978 conf->raid_disks - mddev->degraded);
NeilBrown16a53ec2006-06-26 00:27:38 -07001979}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980
1981/*
1982 * Input: a 'big' sector number,
1983 * Output: index of the data and parity disk, and the sector # in them.
1984 */
NeilBrownd1688a62011-10-11 16:49:52 +11001985static sector_t raid5_compute_sector(struct r5conf *conf, sector_t r_sector,
NeilBrown911d4ee2009-03-31 14:39:38 +11001986 int previous, int *dd_idx,
1987 struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988{
NeilBrown6e3b96e2010-04-23 07:08:28 +10001989 sector_t stripe, stripe2;
NeilBrown35f2a592010-04-20 14:13:34 +10001990 sector_t chunk_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 unsigned int chunk_offset;
NeilBrown911d4ee2009-03-31 14:39:38 +11001992 int pd_idx, qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11001993 int ddf_layout = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 sector_t new_sector;
NeilBrowne183eae2009-03-31 15:20:22 +11001995 int algorithm = previous ? conf->prev_algo
1996 : conf->algorithm;
Andre Noll09c9e5f2009-06-18 08:45:55 +10001997 int sectors_per_chunk = previous ? conf->prev_chunk_sectors
1998 : conf->chunk_sectors;
NeilBrown112bf892009-03-31 14:39:38 +11001999 int raid_disks = previous ? conf->previous_raid_disks
2000 : conf->raid_disks;
2001 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002
2003 /* First compute the information on this sector */
2004
2005 /*
2006 * Compute the chunk number and the sector offset inside the chunk
2007 */
2008 chunk_offset = sector_div(r_sector, sectors_per_chunk);
2009 chunk_number = r_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
2011 /*
2012 * Compute the stripe number
2013 */
NeilBrown35f2a592010-04-20 14:13:34 +10002014 stripe = chunk_number;
2015 *dd_idx = sector_div(stripe, data_disks);
NeilBrown6e3b96e2010-04-23 07:08:28 +10002016 stripe2 = stripe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 /*
2018 * Select the parity disk based on the user selected algorithm.
2019 */
NeilBrown84789552011-07-27 11:00:36 +10002020 pd_idx = qd_idx = -1;
NeilBrown16a53ec2006-06-26 00:27:38 -07002021 switch(conf->level) {
2022 case 4:
NeilBrown911d4ee2009-03-31 14:39:38 +11002023 pd_idx = data_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002024 break;
2025 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11002026 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002028 pd_idx = data_disks - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002029 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 (*dd_idx)++;
2031 break;
2032 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002033 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002034 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 (*dd_idx)++;
2036 break;
2037 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002038 pd_idx = data_disks - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002039 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 break;
2041 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002042 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002043 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002045 case ALGORITHM_PARITY_0:
2046 pd_idx = 0;
2047 (*dd_idx)++;
2048 break;
2049 case ALGORITHM_PARITY_N:
2050 pd_idx = data_disks;
2051 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002053 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002054 }
2055 break;
2056 case 6:
2057
NeilBrowne183eae2009-03-31 15:20:22 +11002058 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07002059 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002060 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002061 qd_idx = pd_idx + 1;
2062 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11002063 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11002064 qd_idx = 0;
2065 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002066 (*dd_idx) += 2; /* D D P Q D */
2067 break;
2068 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002069 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002070 qd_idx = pd_idx + 1;
2071 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11002072 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11002073 qd_idx = 0;
2074 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002075 (*dd_idx) += 2; /* D D P Q D */
2076 break;
2077 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002078 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002079 qd_idx = (pd_idx + 1) % raid_disks;
2080 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002081 break;
2082 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002083 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002084 qd_idx = (pd_idx + 1) % raid_disks;
2085 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002086 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002087
2088 case ALGORITHM_PARITY_0:
2089 pd_idx = 0;
2090 qd_idx = 1;
2091 (*dd_idx) += 2;
2092 break;
2093 case ALGORITHM_PARITY_N:
2094 pd_idx = data_disks;
2095 qd_idx = data_disks + 1;
2096 break;
2097
2098 case ALGORITHM_ROTATING_ZERO_RESTART:
2099 /* Exactly the same as RIGHT_ASYMMETRIC, but or
2100 * of blocks for computing Q is different.
2101 */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002102 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11002103 qd_idx = pd_idx + 1;
2104 if (pd_idx == raid_disks-1) {
2105 (*dd_idx)++; /* Q D D D P */
2106 qd_idx = 0;
2107 } else if (*dd_idx >= pd_idx)
2108 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11002109 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11002110 break;
2111
2112 case ALGORITHM_ROTATING_N_RESTART:
2113 /* Same a left_asymmetric, by first stripe is
2114 * D D D P Q rather than
2115 * Q D D D P
2116 */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002117 stripe2 += 1;
2118 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11002119 qd_idx = pd_idx + 1;
2120 if (pd_idx == raid_disks-1) {
2121 (*dd_idx)++; /* Q D D D P */
2122 qd_idx = 0;
2123 } else if (*dd_idx >= pd_idx)
2124 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11002125 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11002126 break;
2127
2128 case ALGORITHM_ROTATING_N_CONTINUE:
2129 /* Same as left_symmetric but Q is before P */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002130 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11002131 qd_idx = (pd_idx + raid_disks - 1) % raid_disks;
2132 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
NeilBrown67cc2b82009-03-31 14:39:38 +11002133 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11002134 break;
2135
2136 case ALGORITHM_LEFT_ASYMMETRIC_6:
2137 /* RAID5 left_asymmetric, with Q on last device */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002138 pd_idx = data_disks - sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002139 if (*dd_idx >= pd_idx)
2140 (*dd_idx)++;
2141 qd_idx = raid_disks - 1;
2142 break;
2143
2144 case ALGORITHM_RIGHT_ASYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002145 pd_idx = sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002146 if (*dd_idx >= pd_idx)
2147 (*dd_idx)++;
2148 qd_idx = raid_disks - 1;
2149 break;
2150
2151 case ALGORITHM_LEFT_SYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002152 pd_idx = data_disks - sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002153 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
2154 qd_idx = raid_disks - 1;
2155 break;
2156
2157 case ALGORITHM_RIGHT_SYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002158 pd_idx = sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002159 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
2160 qd_idx = raid_disks - 1;
2161 break;
2162
2163 case ALGORITHM_PARITY_0_6:
2164 pd_idx = 0;
2165 (*dd_idx)++;
2166 qd_idx = raid_disks - 1;
2167 break;
2168
NeilBrown16a53ec2006-06-26 00:27:38 -07002169 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002170 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002171 }
2172 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 }
2174
NeilBrown911d4ee2009-03-31 14:39:38 +11002175 if (sh) {
2176 sh->pd_idx = pd_idx;
2177 sh->qd_idx = qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11002178 sh->ddf_layout = ddf_layout;
NeilBrown911d4ee2009-03-31 14:39:38 +11002179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 /*
2181 * Finally, compute the new sector number
2182 */
2183 new_sector = (sector_t)stripe * sectors_per_chunk + chunk_offset;
2184 return new_sector;
2185}
2186
2187
NeilBrown784052e2009-03-31 15:19:07 +11002188static sector_t compute_blocknr(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189{
NeilBrownd1688a62011-10-11 16:49:52 +11002190 struct r5conf *conf = sh->raid_conf;
NeilBrownb875e532006-12-10 02:20:49 -08002191 int raid_disks = sh->disks;
2192 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 sector_t new_sector = sh->sector, check;
Andre Noll09c9e5f2009-06-18 08:45:55 +10002194 int sectors_per_chunk = previous ? conf->prev_chunk_sectors
2195 : conf->chunk_sectors;
NeilBrowne183eae2009-03-31 15:20:22 +11002196 int algorithm = previous ? conf->prev_algo
2197 : conf->algorithm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 sector_t stripe;
2199 int chunk_offset;
NeilBrown35f2a592010-04-20 14:13:34 +10002200 sector_t chunk_number;
2201 int dummy1, dd_idx = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 sector_t r_sector;
NeilBrown911d4ee2009-03-31 14:39:38 +11002203 struct stripe_head sh2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204
NeilBrown16a53ec2006-06-26 00:27:38 -07002205
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 chunk_offset = sector_div(new_sector, sectors_per_chunk);
2207 stripe = new_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208
NeilBrown16a53ec2006-06-26 00:27:38 -07002209 if (i == sh->pd_idx)
2210 return 0;
2211 switch(conf->level) {
2212 case 4: break;
2213 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11002214 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 case ALGORITHM_LEFT_ASYMMETRIC:
2216 case ALGORITHM_RIGHT_ASYMMETRIC:
2217 if (i > sh->pd_idx)
2218 i--;
2219 break;
2220 case ALGORITHM_LEFT_SYMMETRIC:
2221 case ALGORITHM_RIGHT_SYMMETRIC:
2222 if (i < sh->pd_idx)
2223 i += raid_disks;
2224 i -= (sh->pd_idx + 1);
2225 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002226 case ALGORITHM_PARITY_0:
2227 i -= 1;
2228 break;
2229 case ALGORITHM_PARITY_N:
2230 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002232 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002233 }
2234 break;
2235 case 6:
NeilBrownd0dabf72009-03-31 14:39:38 +11002236 if (i == sh->qd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002237 return 0; /* It is the Q disk */
NeilBrowne183eae2009-03-31 15:20:22 +11002238 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07002239 case ALGORITHM_LEFT_ASYMMETRIC:
2240 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown99c0fb52009-03-31 14:39:38 +11002241 case ALGORITHM_ROTATING_ZERO_RESTART:
2242 case ALGORITHM_ROTATING_N_RESTART:
2243 if (sh->pd_idx == raid_disks-1)
2244 i--; /* Q D D D P */
NeilBrown16a53ec2006-06-26 00:27:38 -07002245 else if (i > sh->pd_idx)
2246 i -= 2; /* D D P Q D */
2247 break;
2248 case ALGORITHM_LEFT_SYMMETRIC:
2249 case ALGORITHM_RIGHT_SYMMETRIC:
2250 if (sh->pd_idx == raid_disks-1)
2251 i--; /* Q D D D P */
2252 else {
2253 /* D D P Q D */
2254 if (i < sh->pd_idx)
2255 i += raid_disks;
2256 i -= (sh->pd_idx + 2);
2257 }
2258 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002259 case ALGORITHM_PARITY_0:
2260 i -= 2;
2261 break;
2262 case ALGORITHM_PARITY_N:
2263 break;
2264 case ALGORITHM_ROTATING_N_CONTINUE:
NeilBrowne4424fe2009-10-16 16:27:34 +11002265 /* Like left_symmetric, but P is before Q */
NeilBrown99c0fb52009-03-31 14:39:38 +11002266 if (sh->pd_idx == 0)
2267 i--; /* P D D D Q */
NeilBrowne4424fe2009-10-16 16:27:34 +11002268 else {
2269 /* D D Q P D */
2270 if (i < sh->pd_idx)
2271 i += raid_disks;
2272 i -= (sh->pd_idx + 1);
2273 }
NeilBrown99c0fb52009-03-31 14:39:38 +11002274 break;
2275 case ALGORITHM_LEFT_ASYMMETRIC_6:
2276 case ALGORITHM_RIGHT_ASYMMETRIC_6:
2277 if (i > sh->pd_idx)
2278 i--;
2279 break;
2280 case ALGORITHM_LEFT_SYMMETRIC_6:
2281 case ALGORITHM_RIGHT_SYMMETRIC_6:
2282 if (i < sh->pd_idx)
2283 i += data_disks + 1;
2284 i -= (sh->pd_idx + 1);
2285 break;
2286 case ALGORITHM_PARITY_0_6:
2287 i -= 1;
2288 break;
NeilBrown16a53ec2006-06-26 00:27:38 -07002289 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002290 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002291 }
2292 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 }
2294
2295 chunk_number = stripe * data_disks + i;
NeilBrown35f2a592010-04-20 14:13:34 +10002296 r_sector = chunk_number * sectors_per_chunk + chunk_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297
NeilBrown112bf892009-03-31 14:39:38 +11002298 check = raid5_compute_sector(conf, r_sector,
NeilBrown784052e2009-03-31 15:19:07 +11002299 previous, &dummy1, &sh2);
NeilBrown911d4ee2009-03-31 14:39:38 +11002300 if (check != sh->sector || dummy1 != dd_idx || sh2.pd_idx != sh->pd_idx
2301 || sh2.qd_idx != sh->qd_idx) {
NeilBrown0c55e022010-05-03 14:09:02 +10002302 printk(KERN_ERR "md/raid:%s: compute_blocknr: map not correct\n",
2303 mdname(conf->mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 return 0;
2305 }
2306 return r_sector;
2307}
2308
2309
Dan Williams600aa102008-06-28 08:32:05 +10002310static void
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002311schedule_reconstruction(struct stripe_head *sh, struct stripe_head_state *s,
Dan Williams600aa102008-06-28 08:32:05 +10002312 int rcw, int expand)
Dan Williamse33129d2007-01-02 13:52:30 -07002313{
2314 int i, pd_idx = sh->pd_idx, disks = sh->disks;
NeilBrownd1688a62011-10-11 16:49:52 +11002315 struct r5conf *conf = sh->raid_conf;
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002316 int level = conf->level;
NeilBrown16a53ec2006-06-26 00:27:38 -07002317
Dan Williamse33129d2007-01-02 13:52:30 -07002318 if (rcw) {
2319 /* if we are not expanding this is a proper write request, and
2320 * there will be bios with new data to be drained into the
2321 * stripe cache
2322 */
2323 if (!expand) {
Dan Williams600aa102008-06-28 08:32:05 +10002324 sh->reconstruct_state = reconstruct_state_drain_run;
2325 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
2326 } else
2327 sh->reconstruct_state = reconstruct_state_run;
Dan Williamse33129d2007-01-02 13:52:30 -07002328
Dan Williamsac6b53b2009-07-14 13:40:19 -07002329 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07002330
2331 for (i = disks; i--; ) {
2332 struct r5dev *dev = &sh->dev[i];
2333
2334 if (dev->towrite) {
2335 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsd8ee0722008-06-28 08:32:06 +10002336 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07002337 if (!expand)
2338 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10002339 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002340 }
2341 }
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002342 if (s->locked + conf->max_degraded == disks)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002343 if (!test_and_set_bit(STRIPE_FULL_WRITE, &sh->state))
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002344 atomic_inc(&conf->pending_full_writes);
Dan Williamse33129d2007-01-02 13:52:30 -07002345 } else {
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002346 BUG_ON(level == 6);
Dan Williamse33129d2007-01-02 13:52:30 -07002347 BUG_ON(!(test_bit(R5_UPTODATE, &sh->dev[pd_idx].flags) ||
2348 test_bit(R5_Wantcompute, &sh->dev[pd_idx].flags)));
2349
Dan Williamsd8ee0722008-06-28 08:32:06 +10002350 sh->reconstruct_state = reconstruct_state_prexor_drain_run;
Dan Williams600aa102008-06-28 08:32:05 +10002351 set_bit(STRIPE_OP_PREXOR, &s->ops_request);
2352 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
Dan Williamsac6b53b2009-07-14 13:40:19 -07002353 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07002354
2355 for (i = disks; i--; ) {
2356 struct r5dev *dev = &sh->dev[i];
2357 if (i == pd_idx)
2358 continue;
2359
Dan Williamse33129d2007-01-02 13:52:30 -07002360 if (dev->towrite &&
2361 (test_bit(R5_UPTODATE, &dev->flags) ||
Dan Williamsd8ee0722008-06-28 08:32:06 +10002362 test_bit(R5_Wantcompute, &dev->flags))) {
2363 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07002364 set_bit(R5_LOCKED, &dev->flags);
2365 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10002366 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002367 }
2368 }
2369 }
2370
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002371 /* keep the parity disk(s) locked while asynchronous operations
Dan Williamse33129d2007-01-02 13:52:30 -07002372 * are in flight
2373 */
2374 set_bit(R5_LOCKED, &sh->dev[pd_idx].flags);
2375 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
Dan Williams600aa102008-06-28 08:32:05 +10002376 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002377
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002378 if (level == 6) {
2379 int qd_idx = sh->qd_idx;
2380 struct r5dev *dev = &sh->dev[qd_idx];
2381
2382 set_bit(R5_LOCKED, &dev->flags);
2383 clear_bit(R5_UPTODATE, &dev->flags);
2384 s->locked++;
2385 }
2386
Dan Williams600aa102008-06-28 08:32:05 +10002387 pr_debug("%s: stripe %llu locked: %d ops_request: %lx\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -07002388 __func__, (unsigned long long)sh->sector,
Dan Williams600aa102008-06-28 08:32:05 +10002389 s->locked, s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07002390}
NeilBrown16a53ec2006-06-26 00:27:38 -07002391
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392/*
2393 * Each stripe/dev can have one or more bion attached.
NeilBrown16a53ec2006-06-26 00:27:38 -07002394 * toread/towrite point to the first in a chain.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 * The bi_next chain must be in order.
2396 */
2397static int add_stripe_bio(struct stripe_head *sh, struct bio *bi, int dd_idx, int forwrite)
2398{
2399 struct bio **bip;
NeilBrownd1688a62011-10-11 16:49:52 +11002400 struct r5conf *conf = sh->raid_conf;
NeilBrown72626682005-09-09 16:23:54 -07002401 int firstwrite=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402
NeilBrowncbe47ec2011-07-26 11:20:35 +10002403 pr_debug("adding bi b#%llu to stripe s#%llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 (unsigned long long)bi->bi_sector,
2405 (unsigned long long)sh->sector);
2406
Shaohua Lib17459c2012-07-19 16:01:31 +10002407 /*
2408 * If several bio share a stripe. The bio bi_phys_segments acts as a
2409 * reference count to avoid race. The reference count should already be
2410 * increased before this function is called (for example, in
2411 * make_request()), so other bio sharing this stripe will not free the
2412 * stripe. If a stripe is owned by one stripe, the stripe lock will
2413 * protect it.
2414 */
2415 spin_lock_irq(&sh->stripe_lock);
NeilBrown72626682005-09-09 16:23:54 -07002416 if (forwrite) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 bip = &sh->dev[dd_idx].towrite;
Shaohua Li7eaf7e82012-07-19 16:01:31 +10002418 if (*bip == NULL)
NeilBrown72626682005-09-09 16:23:54 -07002419 firstwrite = 1;
2420 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 bip = &sh->dev[dd_idx].toread;
2422 while (*bip && (*bip)->bi_sector < bi->bi_sector) {
2423 if ((*bip)->bi_sector + ((*bip)->bi_size >> 9) > bi->bi_sector)
2424 goto overlap;
2425 bip = & (*bip)->bi_next;
2426 }
2427 if (*bip && (*bip)->bi_sector < bi->bi_sector + ((bi->bi_size)>>9))
2428 goto overlap;
2429
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02002430 BUG_ON(*bip && bi->bi_next && (*bip) != bi->bi_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 if (*bip)
2432 bi->bi_next = *bip;
2433 *bip = bi;
Shaohua Lie7836bd62012-07-19 16:01:31 +10002434 raid5_inc_bi_active_stripes(bi);
NeilBrown72626682005-09-09 16:23:54 -07002435
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 if (forwrite) {
2437 /* check if page is covered */
2438 sector_t sector = sh->dev[dd_idx].sector;
2439 for (bi=sh->dev[dd_idx].towrite;
2440 sector < sh->dev[dd_idx].sector + STRIPE_SECTORS &&
2441 bi && bi->bi_sector <= sector;
2442 bi = r5_next_bio(bi, sh->dev[dd_idx].sector)) {
2443 if (bi->bi_sector + (bi->bi_size>>9) >= sector)
2444 sector = bi->bi_sector + (bi->bi_size>>9);
2445 }
2446 if (sector >= sh->dev[dd_idx].sector + STRIPE_SECTORS)
2447 set_bit(R5_OVERWRITE, &sh->dev[dd_idx].flags);
2448 }
NeilBrowncbe47ec2011-07-26 11:20:35 +10002449
2450 pr_debug("added bi b#%llu to stripe s#%llu, disk %d.\n",
2451 (unsigned long long)(*bip)->bi_sector,
2452 (unsigned long long)sh->sector, dd_idx);
NeilBrownb97390a2012-10-11 13:50:12 +11002453 spin_unlock_irq(&sh->stripe_lock);
NeilBrowncbe47ec2011-07-26 11:20:35 +10002454
2455 if (conf->mddev->bitmap && firstwrite) {
2456 bitmap_startwrite(conf->mddev->bitmap, sh->sector,
2457 STRIPE_SECTORS, 0);
2458 sh->bm_seq = conf->seq_flush+1;
2459 set_bit(STRIPE_BIT_DELAY, &sh->state);
2460 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 return 1;
2462
2463 overlap:
2464 set_bit(R5_Overlap, &sh->dev[dd_idx].flags);
Shaohua Lib17459c2012-07-19 16:01:31 +10002465 spin_unlock_irq(&sh->stripe_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 return 0;
2467}
2468
NeilBrownd1688a62011-10-11 16:49:52 +11002469static void end_reshape(struct r5conf *conf);
NeilBrown29269552006-03-27 01:18:10 -08002470
NeilBrownd1688a62011-10-11 16:49:52 +11002471static void stripe_set_idx(sector_t stripe, struct r5conf *conf, int previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11002472 struct stripe_head *sh)
NeilBrownccfcc3c2006-03-27 01:18:09 -08002473{
NeilBrown784052e2009-03-31 15:19:07 +11002474 int sectors_per_chunk =
Andre Noll09c9e5f2009-06-18 08:45:55 +10002475 previous ? conf->prev_chunk_sectors : conf->chunk_sectors;
NeilBrown911d4ee2009-03-31 14:39:38 +11002476 int dd_idx;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07002477 int chunk_offset = sector_div(stripe, sectors_per_chunk);
NeilBrown112bf892009-03-31 14:39:38 +11002478 int disks = previous ? conf->previous_raid_disks : conf->raid_disks;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07002479
NeilBrown112bf892009-03-31 14:39:38 +11002480 raid5_compute_sector(conf,
2481 stripe * (disks - conf->max_degraded)
NeilBrownb875e532006-12-10 02:20:49 -08002482 *sectors_per_chunk + chunk_offset,
NeilBrown112bf892009-03-31 14:39:38 +11002483 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11002484 &dd_idx, sh);
NeilBrownccfcc3c2006-03-27 01:18:09 -08002485}
2486
Dan Williamsa4456852007-07-09 11:56:43 -07002487static void
NeilBrownd1688a62011-10-11 16:49:52 +11002488handle_failed_stripe(struct r5conf *conf, struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07002489 struct stripe_head_state *s, int disks,
2490 struct bio **return_bi)
2491{
2492 int i;
2493 for (i = disks; i--; ) {
2494 struct bio *bi;
2495 int bitmap_end = 0;
2496
2497 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrown3cb03002011-10-11 16:45:26 +11002498 struct md_rdev *rdev;
Dan Williamsa4456852007-07-09 11:56:43 -07002499 rcu_read_lock();
2500 rdev = rcu_dereference(conf->disks[i].rdev);
2501 if (rdev && test_bit(In_sync, &rdev->flags))
NeilBrown7f0da592011-07-28 11:39:22 +10002502 atomic_inc(&rdev->nr_pending);
2503 else
2504 rdev = NULL;
Dan Williamsa4456852007-07-09 11:56:43 -07002505 rcu_read_unlock();
NeilBrown7f0da592011-07-28 11:39:22 +10002506 if (rdev) {
2507 if (!rdev_set_badblocks(
2508 rdev,
2509 sh->sector,
2510 STRIPE_SECTORS, 0))
2511 md_error(conf->mddev, rdev);
2512 rdev_dec_pending(rdev, conf->mddev);
2513 }
Dan Williamsa4456852007-07-09 11:56:43 -07002514 }
Shaohua Lib17459c2012-07-19 16:01:31 +10002515 spin_lock_irq(&sh->stripe_lock);
Dan Williamsa4456852007-07-09 11:56:43 -07002516 /* fail all writes first */
2517 bi = sh->dev[i].towrite;
2518 sh->dev[i].towrite = NULL;
Shaohua Lib17459c2012-07-19 16:01:31 +10002519 spin_unlock_irq(&sh->stripe_lock);
NeilBrown1ed850f2012-10-11 13:50:13 +11002520 if (bi)
Dan Williamsa4456852007-07-09 11:56:43 -07002521 bitmap_end = 1;
Dan Williamsa4456852007-07-09 11:56:43 -07002522
2523 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
2524 wake_up(&conf->wait_for_overlap);
2525
2526 while (bi && bi->bi_sector <
2527 sh->dev[i].sector + STRIPE_SECTORS) {
2528 struct bio *nextbi = r5_next_bio(bi, sh->dev[i].sector);
2529 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Shaohua Lie7836bd62012-07-19 16:01:31 +10002530 if (!raid5_dec_bi_active_stripes(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002531 md_write_end(conf->mddev);
2532 bi->bi_next = *return_bi;
2533 *return_bi = bi;
2534 }
2535 bi = nextbi;
2536 }
Shaohua Li7eaf7e82012-07-19 16:01:31 +10002537 if (bitmap_end)
2538 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
2539 STRIPE_SECTORS, 0, 0);
2540 bitmap_end = 0;
Dan Williamsa4456852007-07-09 11:56:43 -07002541 /* and fail all 'written' */
2542 bi = sh->dev[i].written;
2543 sh->dev[i].written = NULL;
2544 if (bi) bitmap_end = 1;
2545 while (bi && bi->bi_sector <
2546 sh->dev[i].sector + STRIPE_SECTORS) {
2547 struct bio *bi2 = r5_next_bio(bi, sh->dev[i].sector);
2548 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Shaohua Lie7836bd62012-07-19 16:01:31 +10002549 if (!raid5_dec_bi_active_stripes(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002550 md_write_end(conf->mddev);
2551 bi->bi_next = *return_bi;
2552 *return_bi = bi;
2553 }
2554 bi = bi2;
2555 }
2556
Dan Williamsb5e98d62007-01-02 13:52:31 -07002557 /* fail any reads if this device is non-operational and
2558 * the data has not reached the cache yet.
2559 */
2560 if (!test_bit(R5_Wantfill, &sh->dev[i].flags) &&
2561 (!test_bit(R5_Insync, &sh->dev[i].flags) ||
2562 test_bit(R5_ReadError, &sh->dev[i].flags))) {
NeilBrown143c4d02012-10-11 13:50:12 +11002563 spin_lock_irq(&sh->stripe_lock);
Dan Williamsa4456852007-07-09 11:56:43 -07002564 bi = sh->dev[i].toread;
2565 sh->dev[i].toread = NULL;
NeilBrown143c4d02012-10-11 13:50:12 +11002566 spin_unlock_irq(&sh->stripe_lock);
Dan Williamsa4456852007-07-09 11:56:43 -07002567 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
2568 wake_up(&conf->wait_for_overlap);
Dan Williamsa4456852007-07-09 11:56:43 -07002569 while (bi && bi->bi_sector <
2570 sh->dev[i].sector + STRIPE_SECTORS) {
2571 struct bio *nextbi =
2572 r5_next_bio(bi, sh->dev[i].sector);
2573 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Shaohua Lie7836bd62012-07-19 16:01:31 +10002574 if (!raid5_dec_bi_active_stripes(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002575 bi->bi_next = *return_bi;
2576 *return_bi = bi;
2577 }
2578 bi = nextbi;
2579 }
2580 }
Dan Williamsa4456852007-07-09 11:56:43 -07002581 if (bitmap_end)
2582 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
2583 STRIPE_SECTORS, 0, 0);
NeilBrown8cfa7b02011-07-27 11:00:36 +10002584 /* If we were in the middle of a write the parity block might
2585 * still be locked - so just clear all R5_LOCKED flags
2586 */
2587 clear_bit(R5_LOCKED, &sh->dev[i].flags);
Dan Williamsa4456852007-07-09 11:56:43 -07002588 }
2589
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002590 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
2591 if (atomic_dec_and_test(&conf->pending_full_writes))
2592 md_wakeup_thread(conf->mddev->thread);
Dan Williamsa4456852007-07-09 11:56:43 -07002593}
2594
NeilBrown7f0da592011-07-28 11:39:22 +10002595static void
NeilBrownd1688a62011-10-11 16:49:52 +11002596handle_failed_sync(struct r5conf *conf, struct stripe_head *sh,
NeilBrown7f0da592011-07-28 11:39:22 +10002597 struct stripe_head_state *s)
2598{
2599 int abort = 0;
2600 int i;
2601
NeilBrown7f0da592011-07-28 11:39:22 +10002602 clear_bit(STRIPE_SYNCING, &sh->state);
2603 s->syncing = 0;
NeilBrown9a3e1102011-12-23 10:17:53 +11002604 s->replacing = 0;
NeilBrown7f0da592011-07-28 11:39:22 +10002605 /* There is nothing more to do for sync/check/repair.
NeilBrown18b98372012-04-01 23:48:38 +10002606 * Don't even need to abort as that is handled elsewhere
2607 * if needed, and not always wanted e.g. if there is a known
2608 * bad block here.
NeilBrown9a3e1102011-12-23 10:17:53 +11002609 * For recover/replace we need to record a bad block on all
NeilBrown7f0da592011-07-28 11:39:22 +10002610 * non-sync devices, or abort the recovery
2611 */
NeilBrown18b98372012-04-01 23:48:38 +10002612 if (test_bit(MD_RECOVERY_RECOVER, &conf->mddev->recovery)) {
2613 /* During recovery devices cannot be removed, so
2614 * locking and refcounting of rdevs is not needed
2615 */
2616 for (i = 0; i < conf->raid_disks; i++) {
2617 struct md_rdev *rdev = conf->disks[i].rdev;
2618 if (rdev
2619 && !test_bit(Faulty, &rdev->flags)
2620 && !test_bit(In_sync, &rdev->flags)
2621 && !rdev_set_badblocks(rdev, sh->sector,
2622 STRIPE_SECTORS, 0))
2623 abort = 1;
2624 rdev = conf->disks[i].replacement;
2625 if (rdev
2626 && !test_bit(Faulty, &rdev->flags)
2627 && !test_bit(In_sync, &rdev->flags)
2628 && !rdev_set_badblocks(rdev, sh->sector,
2629 STRIPE_SECTORS, 0))
2630 abort = 1;
2631 }
2632 if (abort)
2633 conf->recovery_disabled =
2634 conf->mddev->recovery_disabled;
NeilBrown7f0da592011-07-28 11:39:22 +10002635 }
NeilBrown18b98372012-04-01 23:48:38 +10002636 md_done_sync(conf->mddev, STRIPE_SECTORS, !abort);
NeilBrown7f0da592011-07-28 11:39:22 +10002637}
2638
NeilBrown9a3e1102011-12-23 10:17:53 +11002639static int want_replace(struct stripe_head *sh, int disk_idx)
2640{
2641 struct md_rdev *rdev;
2642 int rv = 0;
2643 /* Doing recovery so rcu locking not required */
2644 rdev = sh->raid_conf->disks[disk_idx].replacement;
2645 if (rdev
2646 && !test_bit(Faulty, &rdev->flags)
2647 && !test_bit(In_sync, &rdev->flags)
2648 && (rdev->recovery_offset <= sh->sector
2649 || rdev->mddev->recovery_cp <= sh->sector))
2650 rv = 1;
2651
2652 return rv;
2653}
2654
NeilBrown93b3dbc2011-07-27 11:00:36 +10002655/* fetch_block - checks the given member device to see if its data needs
Dan Williams1fe797e2008-06-28 09:16:30 +10002656 * to be read or computed to satisfy a request.
2657 *
2658 * Returns 1 when no more member devices need to be checked, otherwise returns
NeilBrown93b3dbc2011-07-27 11:00:36 +10002659 * 0 to tell the loop in handle_stripe_fill to continue
Dan Williamsf38e1212007-01-02 13:52:30 -07002660 */
NeilBrown93b3dbc2011-07-27 11:00:36 +10002661static int fetch_block(struct stripe_head *sh, struct stripe_head_state *s,
2662 int disk_idx, int disks)
Dan Williamsf38e1212007-01-02 13:52:30 -07002663{
2664 struct r5dev *dev = &sh->dev[disk_idx];
NeilBrown93b3dbc2011-07-27 11:00:36 +10002665 struct r5dev *fdev[2] = { &sh->dev[s->failed_num[0]],
2666 &sh->dev[s->failed_num[1]] };
Dan Williamsf38e1212007-01-02 13:52:30 -07002667
Dan Williamsf38e1212007-01-02 13:52:30 -07002668 /* is the data in this block needed, and can we get it? */
2669 if (!test_bit(R5_LOCKED, &dev->flags) &&
Dan Williams1fe797e2008-06-28 09:16:30 +10002670 !test_bit(R5_UPTODATE, &dev->flags) &&
2671 (dev->toread ||
2672 (dev->towrite && !test_bit(R5_OVERWRITE, &dev->flags)) ||
2673 s->syncing || s->expanding ||
NeilBrown9a3e1102011-12-23 10:17:53 +11002674 (s->replacing && want_replace(sh, disk_idx)) ||
NeilBrown5d35e092011-07-27 11:00:36 +10002675 (s->failed >= 1 && fdev[0]->toread) ||
2676 (s->failed >= 2 && fdev[1]->toread) ||
NeilBrown93b3dbc2011-07-27 11:00:36 +10002677 (sh->raid_conf->level <= 5 && s->failed && fdev[0]->towrite &&
2678 !test_bit(R5_OVERWRITE, &fdev[0]->flags)) ||
2679 (sh->raid_conf->level == 6 && s->failed && s->to_write))) {
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07002680 /* we would like to get this block, possibly by computing it,
2681 * otherwise read it if the backing disk is insync
2682 */
2683 BUG_ON(test_bit(R5_Wantcompute, &dev->flags));
2684 BUG_ON(test_bit(R5_Wantread, &dev->flags));
2685 if ((s->uptodate == disks - 1) &&
NeilBrownf2b3b442011-07-26 11:35:19 +10002686 (s->failed && (disk_idx == s->failed_num[0] ||
2687 disk_idx == s->failed_num[1]))) {
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07002688 /* have disk failed, and we're requested to fetch it;
2689 * do compute it
2690 */
2691 pr_debug("Computing stripe %llu block %d\n",
2692 (unsigned long long)sh->sector, disk_idx);
2693 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
2694 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
2695 set_bit(R5_Wantcompute, &dev->flags);
2696 sh->ops.target = disk_idx;
2697 sh->ops.target2 = -1; /* no 2nd target */
2698 s->req_compute = 1;
NeilBrown93b3dbc2011-07-27 11:00:36 +10002699 /* Careful: from this point on 'uptodate' is in the eye
2700 * of raid_run_ops which services 'compute' operations
2701 * before writes. R5_Wantcompute flags a block that will
2702 * be R5_UPTODATE by the time it is needed for a
2703 * subsequent operation.
2704 */
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07002705 s->uptodate++;
2706 return 1;
2707 } else if (s->uptodate == disks-2 && s->failed >= 2) {
2708 /* Computing 2-failure is *very* expensive; only
2709 * do it if failed >= 2
2710 */
2711 int other;
2712 for (other = disks; other--; ) {
2713 if (other == disk_idx)
2714 continue;
2715 if (!test_bit(R5_UPTODATE,
2716 &sh->dev[other].flags))
2717 break;
2718 }
2719 BUG_ON(other < 0);
2720 pr_debug("Computing stripe %llu blocks %d,%d\n",
2721 (unsigned long long)sh->sector,
2722 disk_idx, other);
2723 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
2724 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
2725 set_bit(R5_Wantcompute, &sh->dev[disk_idx].flags);
2726 set_bit(R5_Wantcompute, &sh->dev[other].flags);
2727 sh->ops.target = disk_idx;
2728 sh->ops.target2 = other;
2729 s->uptodate += 2;
2730 s->req_compute = 1;
2731 return 1;
2732 } else if (test_bit(R5_Insync, &dev->flags)) {
2733 set_bit(R5_LOCKED, &dev->flags);
2734 set_bit(R5_Wantread, &dev->flags);
2735 s->locked++;
2736 pr_debug("Reading block %d (sync=%d)\n",
2737 disk_idx, s->syncing);
2738 }
2739 }
2740
2741 return 0;
2742}
2743
2744/**
NeilBrown93b3dbc2011-07-27 11:00:36 +10002745 * handle_stripe_fill - read or compute data to satisfy pending requests.
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07002746 */
NeilBrown93b3dbc2011-07-27 11:00:36 +10002747static void handle_stripe_fill(struct stripe_head *sh,
2748 struct stripe_head_state *s,
2749 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07002750{
2751 int i;
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07002752
2753 /* look for blocks to read/compute, skip this if a compute
2754 * is already in flight, or if the stripe contents are in the
2755 * midst of changing due to a write
2756 */
2757 if (!test_bit(STRIPE_COMPUTE_RUN, &sh->state) && !sh->check_state &&
2758 !sh->reconstruct_state)
2759 for (i = disks; i--; )
NeilBrown93b3dbc2011-07-27 11:00:36 +10002760 if (fetch_block(sh, s, i, disks))
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07002761 break;
Dan Williamsa4456852007-07-09 11:56:43 -07002762 set_bit(STRIPE_HANDLE, &sh->state);
2763}
2764
2765
Dan Williams1fe797e2008-06-28 09:16:30 +10002766/* handle_stripe_clean_event
Dan Williamsa4456852007-07-09 11:56:43 -07002767 * any written block on an uptodate or failed drive can be returned.
2768 * Note that if we 'wrote' to a failed drive, it will be UPTODATE, but
2769 * never LOCKED, so we don't need to test 'failed' directly.
2770 */
NeilBrownd1688a62011-10-11 16:49:52 +11002771static void handle_stripe_clean_event(struct r5conf *conf,
Dan Williamsa4456852007-07-09 11:56:43 -07002772 struct stripe_head *sh, int disks, struct bio **return_bi)
2773{
2774 int i;
2775 struct r5dev *dev;
2776
2777 for (i = disks; i--; )
2778 if (sh->dev[i].written) {
2779 dev = &sh->dev[i];
2780 if (!test_bit(R5_LOCKED, &dev->flags) &&
Shaohua Li9e4447682012-10-11 13:49:49 +11002781 (test_bit(R5_UPTODATE, &dev->flags) ||
NeilBrownca64cae2012-11-21 16:33:40 +11002782 test_bit(R5_Discard, &dev->flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07002783 /* We can return any write requests */
2784 struct bio *wbi, *wbi2;
Dan Williams45b42332007-07-09 11:56:43 -07002785 pr_debug("Return write for disc %d\n", i);
NeilBrownca64cae2012-11-21 16:33:40 +11002786 if (test_and_clear_bit(R5_Discard, &dev->flags))
2787 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williamsa4456852007-07-09 11:56:43 -07002788 wbi = dev->written;
2789 dev->written = NULL;
2790 while (wbi && wbi->bi_sector <
2791 dev->sector + STRIPE_SECTORS) {
2792 wbi2 = r5_next_bio(wbi, dev->sector);
Shaohua Lie7836bd62012-07-19 16:01:31 +10002793 if (!raid5_dec_bi_active_stripes(wbi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002794 md_write_end(conf->mddev);
2795 wbi->bi_next = *return_bi;
2796 *return_bi = wbi;
2797 }
2798 wbi = wbi2;
2799 }
Shaohua Li7eaf7e82012-07-19 16:01:31 +10002800 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
2801 STRIPE_SECTORS,
Dan Williamsa4456852007-07-09 11:56:43 -07002802 !test_bit(STRIPE_DEGRADED, &sh->state),
Shaohua Li7eaf7e82012-07-19 16:01:31 +10002803 0);
Dan Williamsa4456852007-07-09 11:56:43 -07002804 }
NeilBrownca64cae2012-11-21 16:33:40 +11002805 } else if (test_bit(R5_Discard, &sh->dev[i].flags))
2806 clear_bit(R5_Discard, &sh->dev[i].flags);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002807
2808 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
2809 if (atomic_dec_and_test(&conf->pending_full_writes))
2810 md_wakeup_thread(conf->mddev->thread);
Dan Williamsa4456852007-07-09 11:56:43 -07002811}
2812
NeilBrownd1688a62011-10-11 16:49:52 +11002813static void handle_stripe_dirtying(struct r5conf *conf,
NeilBrownc8ac1802011-07-27 11:00:36 +10002814 struct stripe_head *sh,
2815 struct stripe_head_state *s,
2816 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07002817{
2818 int rmw = 0, rcw = 0, i;
Alexander Lyakasa7854482012-10-11 13:50:12 +11002819 sector_t recovery_cp = conf->mddev->recovery_cp;
2820
2821 /* RAID6 requires 'rcw' in current implementation.
2822 * Otherwise, check whether resync is now happening or should start.
2823 * If yes, then the array is dirty (after unclean shutdown or
2824 * initial creation), so parity in some stripes might be inconsistent.
2825 * In this case, we need to always do reconstruct-write, to ensure
2826 * that in case of drive failure or read-error correction, we
2827 * generate correct data from the parity.
2828 */
2829 if (conf->max_degraded == 2 ||
2830 (recovery_cp < MaxSector && sh->sector >= recovery_cp)) {
2831 /* Calculate the real rcw later - for now make it
NeilBrownc8ac1802011-07-27 11:00:36 +10002832 * look like rcw is cheaper
2833 */
2834 rcw = 1; rmw = 2;
Alexander Lyakasa7854482012-10-11 13:50:12 +11002835 pr_debug("force RCW max_degraded=%u, recovery_cp=%llu sh->sector=%llu\n",
2836 conf->max_degraded, (unsigned long long)recovery_cp,
2837 (unsigned long long)sh->sector);
NeilBrownc8ac1802011-07-27 11:00:36 +10002838 } else for (i = disks; i--; ) {
Dan Williamsa4456852007-07-09 11:56:43 -07002839 /* would I have to read this buffer for read_modify_write */
2840 struct r5dev *dev = &sh->dev[i];
2841 if ((dev->towrite || i == sh->pd_idx) &&
2842 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002843 !(test_bit(R5_UPTODATE, &dev->flags) ||
2844 test_bit(R5_Wantcompute, &dev->flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07002845 if (test_bit(R5_Insync, &dev->flags))
2846 rmw++;
2847 else
2848 rmw += 2*disks; /* cannot read it */
2849 }
2850 /* Would I have to read this buffer for reconstruct_write */
2851 if (!test_bit(R5_OVERWRITE, &dev->flags) && i != sh->pd_idx &&
2852 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002853 !(test_bit(R5_UPTODATE, &dev->flags) ||
2854 test_bit(R5_Wantcompute, &dev->flags))) {
2855 if (test_bit(R5_Insync, &dev->flags)) rcw++;
Dan Williamsa4456852007-07-09 11:56:43 -07002856 else
2857 rcw += 2*disks;
2858 }
2859 }
Dan Williams45b42332007-07-09 11:56:43 -07002860 pr_debug("for sector %llu, rmw=%d rcw=%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002861 (unsigned long long)sh->sector, rmw, rcw);
2862 set_bit(STRIPE_HANDLE, &sh->state);
NeilBrowna9add5d2012-10-31 11:59:09 +11002863 if (rmw < rcw && rmw > 0) {
Dan Williamsa4456852007-07-09 11:56:43 -07002864 /* prefer read-modify-write, but need to get some data */
NeilBrowna9add5d2012-10-31 11:59:09 +11002865 blk_add_trace_msg(conf->mddev->queue, "raid5 rmw %llu %d",
2866 (unsigned long long)sh->sector, rmw);
Dan Williamsa4456852007-07-09 11:56:43 -07002867 for (i = disks; i--; ) {
2868 struct r5dev *dev = &sh->dev[i];
2869 if ((dev->towrite || i == sh->pd_idx) &&
2870 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002871 !(test_bit(R5_UPTODATE, &dev->flags) ||
2872 test_bit(R5_Wantcompute, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07002873 test_bit(R5_Insync, &dev->flags)) {
2874 if (
2875 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07002876 pr_debug("Read_old block "
NeilBrowna9add5d2012-10-31 11:59:09 +11002877 "%d for r-m-w\n", i);
Dan Williamsa4456852007-07-09 11:56:43 -07002878 set_bit(R5_LOCKED, &dev->flags);
2879 set_bit(R5_Wantread, &dev->flags);
2880 s->locked++;
2881 } else {
2882 set_bit(STRIPE_DELAYED, &sh->state);
2883 set_bit(STRIPE_HANDLE, &sh->state);
2884 }
2885 }
2886 }
NeilBrowna9add5d2012-10-31 11:59:09 +11002887 }
NeilBrownc8ac1802011-07-27 11:00:36 +10002888 if (rcw <= rmw && rcw > 0) {
Dan Williamsa4456852007-07-09 11:56:43 -07002889 /* want reconstruct write, but need to get some data */
NeilBrowna9add5d2012-10-31 11:59:09 +11002890 int qread =0;
NeilBrownc8ac1802011-07-27 11:00:36 +10002891 rcw = 0;
Dan Williamsa4456852007-07-09 11:56:43 -07002892 for (i = disks; i--; ) {
2893 struct r5dev *dev = &sh->dev[i];
2894 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
NeilBrownc8ac1802011-07-27 11:00:36 +10002895 i != sh->pd_idx && i != sh->qd_idx &&
Dan Williamsa4456852007-07-09 11:56:43 -07002896 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002897 !(test_bit(R5_UPTODATE, &dev->flags) ||
NeilBrownc8ac1802011-07-27 11:00:36 +10002898 test_bit(R5_Wantcompute, &dev->flags))) {
2899 rcw++;
2900 if (!test_bit(R5_Insync, &dev->flags))
2901 continue; /* it's a failed drive */
Dan Williamsa4456852007-07-09 11:56:43 -07002902 if (
2903 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07002904 pr_debug("Read_old block "
Dan Williamsa4456852007-07-09 11:56:43 -07002905 "%d for Reconstruct\n", i);
2906 set_bit(R5_LOCKED, &dev->flags);
2907 set_bit(R5_Wantread, &dev->flags);
2908 s->locked++;
NeilBrowna9add5d2012-10-31 11:59:09 +11002909 qread++;
Dan Williamsa4456852007-07-09 11:56:43 -07002910 } else {
2911 set_bit(STRIPE_DELAYED, &sh->state);
2912 set_bit(STRIPE_HANDLE, &sh->state);
2913 }
2914 }
2915 }
NeilBrowna9add5d2012-10-31 11:59:09 +11002916 if (rcw)
2917 blk_add_trace_msg(conf->mddev->queue, "raid5 rcw %llu %d %d %d",
2918 (unsigned long long)sh->sector,
2919 rcw, qread, test_bit(STRIPE_DELAYED, &sh->state));
NeilBrownc8ac1802011-07-27 11:00:36 +10002920 }
Dan Williamsa4456852007-07-09 11:56:43 -07002921 /* now if nothing is locked, and if we have enough data,
2922 * we can start a write request
2923 */
Dan Williamsf38e1212007-01-02 13:52:30 -07002924 /* since handle_stripe can be called at any time we need to handle the
2925 * case where a compute block operation has been submitted and then a
Dan Williamsac6b53b2009-07-14 13:40:19 -07002926 * subsequent call wants to start a write request. raid_run_ops only
2927 * handles the case where compute block and reconstruct are requested
Dan Williamsf38e1212007-01-02 13:52:30 -07002928 * simultaneously. If this is not the case then new writes need to be
2929 * held off until the compute completes.
2930 */
Dan Williams976ea8d2008-06-28 08:32:03 +10002931 if ((s->req_compute || !test_bit(STRIPE_COMPUTE_RUN, &sh->state)) &&
2932 (s->locked == 0 && (rcw == 0 || rmw == 0) &&
2933 !test_bit(STRIPE_BIT_DELAY, &sh->state)))
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002934 schedule_reconstruction(sh, s, rcw == 0, 0);
Dan Williamsa4456852007-07-09 11:56:43 -07002935}
2936
NeilBrownd1688a62011-10-11 16:49:52 +11002937static void handle_parity_checks5(struct r5conf *conf, struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07002938 struct stripe_head_state *s, int disks)
2939{
Dan Williamsecc65c92008-06-28 08:31:57 +10002940 struct r5dev *dev = NULL;
Dan Williamse89f8962007-01-02 13:52:31 -07002941
Dan Williamsbd2ab672008-04-10 21:29:27 -07002942 set_bit(STRIPE_HANDLE, &sh->state);
2943
Dan Williamsecc65c92008-06-28 08:31:57 +10002944 switch (sh->check_state) {
2945 case check_state_idle:
2946 /* start a new check operation if there are no failures */
Dan Williamsbd2ab672008-04-10 21:29:27 -07002947 if (s->failed == 0) {
Dan Williamsbd2ab672008-04-10 21:29:27 -07002948 BUG_ON(s->uptodate != disks);
Dan Williamsecc65c92008-06-28 08:31:57 +10002949 sh->check_state = check_state_run;
2950 set_bit(STRIPE_OP_CHECK, &s->ops_request);
Dan Williamsbd2ab672008-04-10 21:29:27 -07002951 clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
Dan Williamsbd2ab672008-04-10 21:29:27 -07002952 s->uptodate--;
Dan Williamsecc65c92008-06-28 08:31:57 +10002953 break;
Dan Williamsbd2ab672008-04-10 21:29:27 -07002954 }
NeilBrownf2b3b442011-07-26 11:35:19 +10002955 dev = &sh->dev[s->failed_num[0]];
Dan Williamsecc65c92008-06-28 08:31:57 +10002956 /* fall through */
2957 case check_state_compute_result:
2958 sh->check_state = check_state_idle;
2959 if (!dev)
2960 dev = &sh->dev[sh->pd_idx];
2961
2962 /* check that a write has not made the stripe insync */
2963 if (test_bit(STRIPE_INSYNC, &sh->state))
2964 break;
2965
2966 /* either failed parity check, or recovery is happening */
Dan Williamsa4456852007-07-09 11:56:43 -07002967 BUG_ON(!test_bit(R5_UPTODATE, &dev->flags));
2968 BUG_ON(s->uptodate != disks);
2969
2970 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsecc65c92008-06-28 08:31:57 +10002971 s->locked++;
Dan Williamsa4456852007-07-09 11:56:43 -07002972 set_bit(R5_Wantwrite, &dev->flags);
Dan Williams830ea012007-01-02 13:52:31 -07002973
Dan Williamsa4456852007-07-09 11:56:43 -07002974 clear_bit(STRIPE_DEGRADED, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07002975 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10002976 break;
2977 case check_state_run:
2978 break; /* we will be called again upon completion */
2979 case check_state_check_result:
2980 sh->check_state = check_state_idle;
2981
2982 /* if a failure occurred during the check operation, leave
2983 * STRIPE_INSYNC not set and let the stripe be handled again
2984 */
2985 if (s->failed)
2986 break;
2987
2988 /* handle a successful check operation, if parity is correct
2989 * we are done. Otherwise update the mismatch count and repair
2990 * parity if !MD_RECOVERY_CHECK
2991 */
Dan Williamsad283ea2009-08-29 19:09:26 -07002992 if ((sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) == 0)
Dan Williamsecc65c92008-06-28 08:31:57 +10002993 /* parity is correct (on disc,
2994 * not in buffer any more)
2995 */
2996 set_bit(STRIPE_INSYNC, &sh->state);
2997 else {
Jianpeng Ma7f7583d2012-10-11 14:17:59 +11002998 atomic64_add(STRIPE_SECTORS, &conf->mddev->resync_mismatches);
Dan Williamsecc65c92008-06-28 08:31:57 +10002999 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
3000 /* don't try to repair!! */
3001 set_bit(STRIPE_INSYNC, &sh->state);
3002 else {
3003 sh->check_state = check_state_compute_run;
Dan Williams976ea8d2008-06-28 08:32:03 +10003004 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10003005 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3006 set_bit(R5_Wantcompute,
3007 &sh->dev[sh->pd_idx].flags);
3008 sh->ops.target = sh->pd_idx;
Dan Williamsac6b53b2009-07-14 13:40:19 -07003009 sh->ops.target2 = -1;
Dan Williamsecc65c92008-06-28 08:31:57 +10003010 s->uptodate++;
3011 }
3012 }
3013 break;
3014 case check_state_compute_run:
3015 break;
3016 default:
3017 printk(KERN_ERR "%s: unknown check_state: %d sector: %llu\n",
3018 __func__, sh->check_state,
3019 (unsigned long long) sh->sector);
3020 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07003021 }
3022}
3023
3024
NeilBrownd1688a62011-10-11 16:49:52 +11003025static void handle_parity_checks6(struct r5conf *conf, struct stripe_head *sh,
Dan Williams36d1c642009-07-14 11:48:22 -07003026 struct stripe_head_state *s,
NeilBrownf2b3b442011-07-26 11:35:19 +10003027 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07003028{
Dan Williamsa4456852007-07-09 11:56:43 -07003029 int pd_idx = sh->pd_idx;
NeilBrown34e04e82009-03-31 15:10:16 +11003030 int qd_idx = sh->qd_idx;
Dan Williamsd82dfee2009-07-14 13:40:57 -07003031 struct r5dev *dev;
Dan Williamsa4456852007-07-09 11:56:43 -07003032
3033 set_bit(STRIPE_HANDLE, &sh->state);
3034
3035 BUG_ON(s->failed > 2);
Dan Williamsd82dfee2009-07-14 13:40:57 -07003036
Dan Williamsa4456852007-07-09 11:56:43 -07003037 /* Want to check and possibly repair P and Q.
3038 * However there could be one 'failed' device, in which
3039 * case we can only check one of them, possibly using the
3040 * other to generate missing data
3041 */
3042
Dan Williamsd82dfee2009-07-14 13:40:57 -07003043 switch (sh->check_state) {
3044 case check_state_idle:
3045 /* start a new check operation if there are < 2 failures */
NeilBrownf2b3b442011-07-26 11:35:19 +10003046 if (s->failed == s->q_failed) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07003047 /* The only possible failed device holds Q, so it
Dan Williamsa4456852007-07-09 11:56:43 -07003048 * makes sense to check P (If anything else were failed,
3049 * we would have used P to recreate it).
3050 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07003051 sh->check_state = check_state_run;
Dan Williamsa4456852007-07-09 11:56:43 -07003052 }
NeilBrownf2b3b442011-07-26 11:35:19 +10003053 if (!s->q_failed && s->failed < 2) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07003054 /* Q is not failed, and we didn't use it to generate
Dan Williamsa4456852007-07-09 11:56:43 -07003055 * anything, so it makes sense to check it
3056 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07003057 if (sh->check_state == check_state_run)
3058 sh->check_state = check_state_run_pq;
3059 else
3060 sh->check_state = check_state_run_q;
Dan Williamsa4456852007-07-09 11:56:43 -07003061 }
Dan Williams36d1c642009-07-14 11:48:22 -07003062
Dan Williamsd82dfee2009-07-14 13:40:57 -07003063 /* discard potentially stale zero_sum_result */
3064 sh->ops.zero_sum_result = 0;
Dan Williams36d1c642009-07-14 11:48:22 -07003065
Dan Williamsd82dfee2009-07-14 13:40:57 -07003066 if (sh->check_state == check_state_run) {
3067 /* async_xor_zero_sum destroys the contents of P */
3068 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
3069 s->uptodate--;
Dan Williamsa4456852007-07-09 11:56:43 -07003070 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07003071 if (sh->check_state >= check_state_run &&
3072 sh->check_state <= check_state_run_pq) {
3073 /* async_syndrome_zero_sum preserves P and Q, so
3074 * no need to mark them !uptodate here
3075 */
3076 set_bit(STRIPE_OP_CHECK, &s->ops_request);
3077 break;
3078 }
Dan Williams36d1c642009-07-14 11:48:22 -07003079
Dan Williamsd82dfee2009-07-14 13:40:57 -07003080 /* we have 2-disk failure */
3081 BUG_ON(s->failed != 2);
3082 /* fall through */
3083 case check_state_compute_result:
3084 sh->check_state = check_state_idle;
Dan Williams36d1c642009-07-14 11:48:22 -07003085
Dan Williamsd82dfee2009-07-14 13:40:57 -07003086 /* check that a write has not made the stripe insync */
3087 if (test_bit(STRIPE_INSYNC, &sh->state))
3088 break;
Dan Williamsa4456852007-07-09 11:56:43 -07003089
3090 /* now write out any block on a failed drive,
Dan Williamsd82dfee2009-07-14 13:40:57 -07003091 * or P or Q if they were recomputed
Dan Williamsa4456852007-07-09 11:56:43 -07003092 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07003093 BUG_ON(s->uptodate < disks - 1); /* We don't need Q to recover */
Dan Williamsa4456852007-07-09 11:56:43 -07003094 if (s->failed == 2) {
NeilBrownf2b3b442011-07-26 11:35:19 +10003095 dev = &sh->dev[s->failed_num[1]];
Dan Williamsa4456852007-07-09 11:56:43 -07003096 s->locked++;
3097 set_bit(R5_LOCKED, &dev->flags);
3098 set_bit(R5_Wantwrite, &dev->flags);
3099 }
3100 if (s->failed >= 1) {
NeilBrownf2b3b442011-07-26 11:35:19 +10003101 dev = &sh->dev[s->failed_num[0]];
Dan Williamsa4456852007-07-09 11:56:43 -07003102 s->locked++;
3103 set_bit(R5_LOCKED, &dev->flags);
3104 set_bit(R5_Wantwrite, &dev->flags);
3105 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07003106 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
Dan Williamsa4456852007-07-09 11:56:43 -07003107 dev = &sh->dev[pd_idx];
3108 s->locked++;
3109 set_bit(R5_LOCKED, &dev->flags);
3110 set_bit(R5_Wantwrite, &dev->flags);
3111 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07003112 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
Dan Williamsa4456852007-07-09 11:56:43 -07003113 dev = &sh->dev[qd_idx];
3114 s->locked++;
3115 set_bit(R5_LOCKED, &dev->flags);
3116 set_bit(R5_Wantwrite, &dev->flags);
3117 }
3118 clear_bit(STRIPE_DEGRADED, &sh->state);
3119
3120 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsd82dfee2009-07-14 13:40:57 -07003121 break;
3122 case check_state_run:
3123 case check_state_run_q:
3124 case check_state_run_pq:
3125 break; /* we will be called again upon completion */
3126 case check_state_check_result:
3127 sh->check_state = check_state_idle;
3128
3129 /* handle a successful check operation, if parity is correct
3130 * we are done. Otherwise update the mismatch count and repair
3131 * parity if !MD_RECOVERY_CHECK
3132 */
3133 if (sh->ops.zero_sum_result == 0) {
3134 /* both parities are correct */
3135 if (!s->failed)
3136 set_bit(STRIPE_INSYNC, &sh->state);
3137 else {
3138 /* in contrast to the raid5 case we can validate
3139 * parity, but still have a failure to write
3140 * back
3141 */
3142 sh->check_state = check_state_compute_result;
3143 /* Returning at this point means that we may go
3144 * off and bring p and/or q uptodate again so
3145 * we make sure to check zero_sum_result again
3146 * to verify if p or q need writeback
3147 */
3148 }
3149 } else {
Jianpeng Ma7f7583d2012-10-11 14:17:59 +11003150 atomic64_add(STRIPE_SECTORS, &conf->mddev->resync_mismatches);
Dan Williamsd82dfee2009-07-14 13:40:57 -07003151 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
3152 /* don't try to repair!! */
3153 set_bit(STRIPE_INSYNC, &sh->state);
3154 else {
3155 int *target = &sh->ops.target;
3156
3157 sh->ops.target = -1;
3158 sh->ops.target2 = -1;
3159 sh->check_state = check_state_compute_run;
3160 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
3161 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3162 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
3163 set_bit(R5_Wantcompute,
3164 &sh->dev[pd_idx].flags);
3165 *target = pd_idx;
3166 target = &sh->ops.target2;
3167 s->uptodate++;
3168 }
3169 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
3170 set_bit(R5_Wantcompute,
3171 &sh->dev[qd_idx].flags);
3172 *target = qd_idx;
3173 s->uptodate++;
3174 }
3175 }
3176 }
3177 break;
3178 case check_state_compute_run:
3179 break;
3180 default:
3181 printk(KERN_ERR "%s: unknown check_state: %d sector: %llu\n",
3182 __func__, sh->check_state,
3183 (unsigned long long) sh->sector);
3184 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07003185 }
3186}
3187
NeilBrownd1688a62011-10-11 16:49:52 +11003188static void handle_stripe_expansion(struct r5conf *conf, struct stripe_head *sh)
Dan Williamsa4456852007-07-09 11:56:43 -07003189{
3190 int i;
3191
3192 /* We have read all the blocks in this stripe and now we need to
3193 * copy some of them into a target stripe for expand.
3194 */
Dan Williamsf0a50d32007-01-02 13:52:31 -07003195 struct dma_async_tx_descriptor *tx = NULL;
Dan Williamsa4456852007-07-09 11:56:43 -07003196 clear_bit(STRIPE_EXPAND_SOURCE, &sh->state);
3197 for (i = 0; i < sh->disks; i++)
NeilBrown34e04e82009-03-31 15:10:16 +11003198 if (i != sh->pd_idx && i != sh->qd_idx) {
NeilBrown911d4ee2009-03-31 14:39:38 +11003199 int dd_idx, j;
Dan Williamsa4456852007-07-09 11:56:43 -07003200 struct stripe_head *sh2;
Dan Williamsa08abd82009-06-03 11:43:59 -07003201 struct async_submit_ctl submit;
Dan Williamsa4456852007-07-09 11:56:43 -07003202
NeilBrown784052e2009-03-31 15:19:07 +11003203 sector_t bn = compute_blocknr(sh, i, 1);
NeilBrown911d4ee2009-03-31 14:39:38 +11003204 sector_t s = raid5_compute_sector(conf, bn, 0,
3205 &dd_idx, NULL);
NeilBrowna8c906c2009-06-09 14:39:59 +10003206 sh2 = get_active_stripe(conf, s, 0, 1, 1);
Dan Williamsa4456852007-07-09 11:56:43 -07003207 if (sh2 == NULL)
3208 /* so far only the early blocks of this stripe
3209 * have been requested. When later blocks
3210 * get requested, we will try again
3211 */
3212 continue;
3213 if (!test_bit(STRIPE_EXPANDING, &sh2->state) ||
3214 test_bit(R5_Expanded, &sh2->dev[dd_idx].flags)) {
3215 /* must have already done this block */
3216 release_stripe(sh2);
3217 continue;
3218 }
Dan Williamsf0a50d32007-01-02 13:52:31 -07003219
3220 /* place all the copies on one channel */
Dan Williamsa08abd82009-06-03 11:43:59 -07003221 init_async_submit(&submit, 0, tx, NULL, NULL, NULL);
Dan Williamsf0a50d32007-01-02 13:52:31 -07003222 tx = async_memcpy(sh2->dev[dd_idx].page,
Dan Williams88ba2aa2009-04-09 16:16:18 -07003223 sh->dev[i].page, 0, 0, STRIPE_SIZE,
Dan Williamsa08abd82009-06-03 11:43:59 -07003224 &submit);
Dan Williamsf0a50d32007-01-02 13:52:31 -07003225
Dan Williamsa4456852007-07-09 11:56:43 -07003226 set_bit(R5_Expanded, &sh2->dev[dd_idx].flags);
3227 set_bit(R5_UPTODATE, &sh2->dev[dd_idx].flags);
3228 for (j = 0; j < conf->raid_disks; j++)
3229 if (j != sh2->pd_idx &&
NeilBrown86c374b2011-07-27 11:00:36 +10003230 j != sh2->qd_idx &&
Dan Williamsa4456852007-07-09 11:56:43 -07003231 !test_bit(R5_Expanded, &sh2->dev[j].flags))
3232 break;
3233 if (j == conf->raid_disks) {
3234 set_bit(STRIPE_EXPAND_READY, &sh2->state);
3235 set_bit(STRIPE_HANDLE, &sh2->state);
3236 }
3237 release_stripe(sh2);
Dan Williamsf0a50d32007-01-02 13:52:31 -07003238
Dan Williamsa4456852007-07-09 11:56:43 -07003239 }
NeilBrowna2e08552007-09-11 15:23:36 -07003240 /* done submitting copies, wait for them to complete */
NeilBrown749586b2012-11-20 14:11:15 +11003241 async_tx_quiesce(&tx);
Dan Williamsa4456852007-07-09 11:56:43 -07003242}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243
3244/*
3245 * handle_stripe - do things to a stripe.
3246 *
NeilBrown9a3e1102011-12-23 10:17:53 +11003247 * We lock the stripe by setting STRIPE_ACTIVE and then examine the
3248 * state of various bits to see what needs to be done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 * Possible results:
NeilBrown9a3e1102011-12-23 10:17:53 +11003250 * return some read requests which now have data
3251 * return some write requests which are safely on storage
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 * schedule a read on some buffers
3253 * schedule a write of some buffers
3254 * return confirmation of parity correctness
3255 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 */
Dan Williamsa4456852007-07-09 11:56:43 -07003257
NeilBrownacfe7262011-07-27 11:00:36 +10003258static void analyse_stripe(struct stripe_head *sh, struct stripe_head_state *s)
NeilBrown16a53ec2006-06-26 00:27:38 -07003259{
NeilBrownd1688a62011-10-11 16:49:52 +11003260 struct r5conf *conf = sh->raid_conf;
NeilBrownf4168852007-02-28 20:11:53 -08003261 int disks = sh->disks;
NeilBrown474af965fe2011-07-27 11:00:36 +10003262 struct r5dev *dev;
3263 int i;
NeilBrown9a3e1102011-12-23 10:17:53 +11003264 int do_recovery = 0;
NeilBrown16a53ec2006-06-26 00:27:38 -07003265
NeilBrownacfe7262011-07-27 11:00:36 +10003266 memset(s, 0, sizeof(*s));
NeilBrown16a53ec2006-06-26 00:27:38 -07003267
NeilBrownacfe7262011-07-27 11:00:36 +10003268 s->expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state);
3269 s->expanded = test_bit(STRIPE_EXPAND_READY, &sh->state);
3270 s->failed_num[0] = -1;
3271 s->failed_num[1] = -1;
3272
3273 /* Now to look around and see what can be done */
NeilBrown16a53ec2006-06-26 00:27:38 -07003274 rcu_read_lock();
3275 for (i=disks; i--; ) {
NeilBrown3cb03002011-10-11 16:45:26 +11003276 struct md_rdev *rdev;
NeilBrown31c176e2011-07-28 11:39:22 +10003277 sector_t first_bad;
3278 int bad_sectors;
3279 int is_bad = 0;
NeilBrownacfe7262011-07-27 11:00:36 +10003280
NeilBrown16a53ec2006-06-26 00:27:38 -07003281 dev = &sh->dev[i];
NeilBrown16a53ec2006-06-26 00:27:38 -07003282
Dan Williams45b42332007-07-09 11:56:43 -07003283 pr_debug("check %d: state 0x%lx read %p write %p written %p\n",
NeilBrown9a3e1102011-12-23 10:17:53 +11003284 i, dev->flags,
3285 dev->toread, dev->towrite, dev->written);
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003286 /* maybe we can reply to a read
3287 *
3288 * new wantfill requests are only permitted while
3289 * ops_complete_biofill is guaranteed to be inactive
3290 */
3291 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread &&
3292 !test_bit(STRIPE_BIOFILL_RUN, &sh->state))
3293 set_bit(R5_Wantfill, &dev->flags);
NeilBrown16a53ec2006-06-26 00:27:38 -07003294
3295 /* now count some things */
NeilBrowncc940152011-07-26 11:35:35 +10003296 if (test_bit(R5_LOCKED, &dev->flags))
3297 s->locked++;
3298 if (test_bit(R5_UPTODATE, &dev->flags))
3299 s->uptodate++;
Dan Williams2d6e4ec2009-09-16 12:11:54 -07003300 if (test_bit(R5_Wantcompute, &dev->flags)) {
NeilBrowncc940152011-07-26 11:35:35 +10003301 s->compute++;
3302 BUG_ON(s->compute > 2);
Dan Williams2d6e4ec2009-09-16 12:11:54 -07003303 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003304
NeilBrownacfe7262011-07-27 11:00:36 +10003305 if (test_bit(R5_Wantfill, &dev->flags))
NeilBrowncc940152011-07-26 11:35:35 +10003306 s->to_fill++;
NeilBrownacfe7262011-07-27 11:00:36 +10003307 else if (dev->toread)
NeilBrowncc940152011-07-26 11:35:35 +10003308 s->to_read++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003309 if (dev->towrite) {
NeilBrowncc940152011-07-26 11:35:35 +10003310 s->to_write++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003311 if (!test_bit(R5_OVERWRITE, &dev->flags))
NeilBrowncc940152011-07-26 11:35:35 +10003312 s->non_overwrite++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003313 }
Dan Williamsa4456852007-07-09 11:56:43 -07003314 if (dev->written)
NeilBrowncc940152011-07-26 11:35:35 +10003315 s->written++;
NeilBrown14a75d32011-12-23 10:17:52 +11003316 /* Prefer to use the replacement for reads, but only
3317 * if it is recovered enough and has no bad blocks.
3318 */
3319 rdev = rcu_dereference(conf->disks[i].replacement);
3320 if (rdev && !test_bit(Faulty, &rdev->flags) &&
3321 rdev->recovery_offset >= sh->sector + STRIPE_SECTORS &&
3322 !is_badblock(rdev, sh->sector, STRIPE_SECTORS,
3323 &first_bad, &bad_sectors))
3324 set_bit(R5_ReadRepl, &dev->flags);
3325 else {
NeilBrown9a3e1102011-12-23 10:17:53 +11003326 if (rdev)
3327 set_bit(R5_NeedReplace, &dev->flags);
NeilBrown14a75d32011-12-23 10:17:52 +11003328 rdev = rcu_dereference(conf->disks[i].rdev);
3329 clear_bit(R5_ReadRepl, &dev->flags);
3330 }
NeilBrown9283d8c2011-12-08 16:27:57 +11003331 if (rdev && test_bit(Faulty, &rdev->flags))
3332 rdev = NULL;
NeilBrown31c176e2011-07-28 11:39:22 +10003333 if (rdev) {
3334 is_bad = is_badblock(rdev, sh->sector, STRIPE_SECTORS,
3335 &first_bad, &bad_sectors);
3336 if (s->blocked_rdev == NULL
3337 && (test_bit(Blocked, &rdev->flags)
3338 || is_bad < 0)) {
3339 if (is_bad < 0)
3340 set_bit(BlockedBadBlocks,
3341 &rdev->flags);
3342 s->blocked_rdev = rdev;
3343 atomic_inc(&rdev->nr_pending);
3344 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07003345 }
NeilBrown415e72d2010-06-17 17:25:21 +10003346 clear_bit(R5_Insync, &dev->flags);
3347 if (!rdev)
3348 /* Not in-sync */;
NeilBrown31c176e2011-07-28 11:39:22 +10003349 else if (is_bad) {
3350 /* also not in-sync */
NeilBrown18b98372012-04-01 23:48:38 +10003351 if (!test_bit(WriteErrorSeen, &rdev->flags) &&
3352 test_bit(R5_UPTODATE, &dev->flags)) {
NeilBrown31c176e2011-07-28 11:39:22 +10003353 /* treat as in-sync, but with a read error
3354 * which we can now try to correct
3355 */
3356 set_bit(R5_Insync, &dev->flags);
3357 set_bit(R5_ReadError, &dev->flags);
3358 }
3359 } else if (test_bit(In_sync, &rdev->flags))
NeilBrown415e72d2010-06-17 17:25:21 +10003360 set_bit(R5_Insync, &dev->flags);
NeilBrown30d7a482011-12-23 09:57:00 +11003361 else if (sh->sector + STRIPE_SECTORS <= rdev->recovery_offset)
NeilBrown415e72d2010-06-17 17:25:21 +10003362 /* in sync if before recovery_offset */
NeilBrown30d7a482011-12-23 09:57:00 +11003363 set_bit(R5_Insync, &dev->flags);
3364 else if (test_bit(R5_UPTODATE, &dev->flags) &&
3365 test_bit(R5_Expanded, &dev->flags))
3366 /* If we've reshaped into here, we assume it is Insync.
3367 * We will shortly update recovery_offset to make
3368 * it official.
3369 */
3370 set_bit(R5_Insync, &dev->flags);
3371
Adam Kwolek5d8c71f2011-12-09 14:26:11 +11003372 if (rdev && test_bit(R5_WriteError, &dev->flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11003373 /* This flag does not apply to '.replacement'
3374 * only to .rdev, so make sure to check that*/
3375 struct md_rdev *rdev2 = rcu_dereference(
3376 conf->disks[i].rdev);
3377 if (rdev2 == rdev)
3378 clear_bit(R5_Insync, &dev->flags);
3379 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
NeilBrownbc2607f2011-07-28 11:39:22 +10003380 s->handle_bad_blocks = 1;
NeilBrown14a75d32011-12-23 10:17:52 +11003381 atomic_inc(&rdev2->nr_pending);
NeilBrownbc2607f2011-07-28 11:39:22 +10003382 } else
3383 clear_bit(R5_WriteError, &dev->flags);
3384 }
Adam Kwolek5d8c71f2011-12-09 14:26:11 +11003385 if (rdev && test_bit(R5_MadeGood, &dev->flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11003386 /* This flag does not apply to '.replacement'
3387 * only to .rdev, so make sure to check that*/
3388 struct md_rdev *rdev2 = rcu_dereference(
3389 conf->disks[i].rdev);
3390 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
NeilBrownb84db562011-07-28 11:39:23 +10003391 s->handle_bad_blocks = 1;
NeilBrown14a75d32011-12-23 10:17:52 +11003392 atomic_inc(&rdev2->nr_pending);
NeilBrownb84db562011-07-28 11:39:23 +10003393 } else
3394 clear_bit(R5_MadeGood, &dev->flags);
3395 }
NeilBrown977df362011-12-23 10:17:53 +11003396 if (test_bit(R5_MadeGoodRepl, &dev->flags)) {
3397 struct md_rdev *rdev2 = rcu_dereference(
3398 conf->disks[i].replacement);
3399 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
3400 s->handle_bad_blocks = 1;
3401 atomic_inc(&rdev2->nr_pending);
3402 } else
3403 clear_bit(R5_MadeGoodRepl, &dev->flags);
3404 }
NeilBrown415e72d2010-06-17 17:25:21 +10003405 if (!test_bit(R5_Insync, &dev->flags)) {
NeilBrown16a53ec2006-06-26 00:27:38 -07003406 /* The ReadError flag will just be confusing now */
3407 clear_bit(R5_ReadError, &dev->flags);
3408 clear_bit(R5_ReWrite, &dev->flags);
3409 }
NeilBrown415e72d2010-06-17 17:25:21 +10003410 if (test_bit(R5_ReadError, &dev->flags))
3411 clear_bit(R5_Insync, &dev->flags);
3412 if (!test_bit(R5_Insync, &dev->flags)) {
NeilBrowncc940152011-07-26 11:35:35 +10003413 if (s->failed < 2)
3414 s->failed_num[s->failed] = i;
3415 s->failed++;
NeilBrown9a3e1102011-12-23 10:17:53 +11003416 if (rdev && !test_bit(Faulty, &rdev->flags))
3417 do_recovery = 1;
NeilBrown415e72d2010-06-17 17:25:21 +10003418 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003419 }
NeilBrown9a3e1102011-12-23 10:17:53 +11003420 if (test_bit(STRIPE_SYNCING, &sh->state)) {
3421 /* If there is a failed device being replaced,
3422 * we must be recovering.
3423 * else if we are after recovery_cp, we must be syncing
majianpengc6d2e082012-04-02 01:16:59 +10003424 * else if MD_RECOVERY_REQUESTED is set, we also are syncing.
NeilBrown9a3e1102011-12-23 10:17:53 +11003425 * else we can only be replacing
3426 * sync and recovery both need to read all devices, and so
3427 * use the same flag.
3428 */
3429 if (do_recovery ||
majianpengc6d2e082012-04-02 01:16:59 +10003430 sh->sector >= conf->mddev->recovery_cp ||
3431 test_bit(MD_RECOVERY_REQUESTED, &(conf->mddev->recovery)))
NeilBrown9a3e1102011-12-23 10:17:53 +11003432 s->syncing = 1;
3433 else
3434 s->replacing = 1;
3435 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003436 rcu_read_unlock();
NeilBrowncc940152011-07-26 11:35:35 +10003437}
NeilBrownf4168852007-02-28 20:11:53 -08003438
NeilBrowncc940152011-07-26 11:35:35 +10003439static void handle_stripe(struct stripe_head *sh)
3440{
3441 struct stripe_head_state s;
NeilBrownd1688a62011-10-11 16:49:52 +11003442 struct r5conf *conf = sh->raid_conf;
NeilBrown3687c062011-07-27 11:00:36 +10003443 int i;
NeilBrown84789552011-07-27 11:00:36 +10003444 int prexor;
3445 int disks = sh->disks;
NeilBrown474af965fe2011-07-27 11:00:36 +10003446 struct r5dev *pdev, *qdev;
NeilBrowncc940152011-07-26 11:35:35 +10003447
3448 clear_bit(STRIPE_HANDLE, &sh->state);
Dan Williams257a4b42011-11-08 16:22:06 +11003449 if (test_and_set_bit_lock(STRIPE_ACTIVE, &sh->state)) {
NeilBrowncc940152011-07-26 11:35:35 +10003450 /* already being handled, ensure it gets handled
3451 * again when current action finishes */
3452 set_bit(STRIPE_HANDLE, &sh->state);
3453 return;
3454 }
3455
3456 if (test_and_clear_bit(STRIPE_SYNC_REQUESTED, &sh->state)) {
3457 set_bit(STRIPE_SYNCING, &sh->state);
3458 clear_bit(STRIPE_INSYNC, &sh->state);
3459 }
3460 clear_bit(STRIPE_DELAYED, &sh->state);
3461
3462 pr_debug("handling stripe %llu, state=%#lx cnt=%d, "
3463 "pd_idx=%d, qd_idx=%d\n, check:%d, reconstruct:%d\n",
3464 (unsigned long long)sh->sector, sh->state,
3465 atomic_read(&sh->count), sh->pd_idx, sh->qd_idx,
3466 sh->check_state, sh->reconstruct_state);
NeilBrowncc940152011-07-26 11:35:35 +10003467
NeilBrownacfe7262011-07-27 11:00:36 +10003468 analyse_stripe(sh, &s);
NeilBrownc5a31002011-07-27 11:00:36 +10003469
NeilBrownbc2607f2011-07-28 11:39:22 +10003470 if (s.handle_bad_blocks) {
3471 set_bit(STRIPE_HANDLE, &sh->state);
3472 goto finish;
3473 }
3474
NeilBrown474af965fe2011-07-27 11:00:36 +10003475 if (unlikely(s.blocked_rdev)) {
3476 if (s.syncing || s.expanding || s.expanded ||
NeilBrown9a3e1102011-12-23 10:17:53 +11003477 s.replacing || s.to_write || s.written) {
NeilBrown474af965fe2011-07-27 11:00:36 +10003478 set_bit(STRIPE_HANDLE, &sh->state);
3479 goto finish;
3480 }
3481 /* There is nothing for the blocked_rdev to block */
3482 rdev_dec_pending(s.blocked_rdev, conf->mddev);
3483 s.blocked_rdev = NULL;
3484 }
3485
3486 if (s.to_fill && !test_bit(STRIPE_BIOFILL_RUN, &sh->state)) {
3487 set_bit(STRIPE_OP_BIOFILL, &s.ops_request);
3488 set_bit(STRIPE_BIOFILL_RUN, &sh->state);
3489 }
3490
3491 pr_debug("locked=%d uptodate=%d to_read=%d"
3492 " to_write=%d failed=%d failed_num=%d,%d\n",
3493 s.locked, s.uptodate, s.to_read, s.to_write, s.failed,
3494 s.failed_num[0], s.failed_num[1]);
3495 /* check if the array has lost more than max_degraded devices and,
3496 * if so, some requests might need to be failed.
3497 */
NeilBrown9a3f5302011-11-08 16:22:01 +11003498 if (s.failed > conf->max_degraded) {
3499 sh->check_state = 0;
3500 sh->reconstruct_state = 0;
3501 if (s.to_read+s.to_write+s.written)
3502 handle_failed_stripe(conf, sh, &s, disks, &s.return_bi);
NeilBrown9a3e1102011-12-23 10:17:53 +11003503 if (s.syncing + s.replacing)
NeilBrown9a3f5302011-11-08 16:22:01 +11003504 handle_failed_sync(conf, sh, &s);
3505 }
NeilBrown474af965fe2011-07-27 11:00:36 +10003506
NeilBrown84789552011-07-27 11:00:36 +10003507 /* Now we check to see if any write operations have recently
3508 * completed
3509 */
3510 prexor = 0;
3511 if (sh->reconstruct_state == reconstruct_state_prexor_drain_result)
3512 prexor = 1;
3513 if (sh->reconstruct_state == reconstruct_state_drain_result ||
3514 sh->reconstruct_state == reconstruct_state_prexor_drain_result) {
3515 sh->reconstruct_state = reconstruct_state_idle;
3516
3517 /* All the 'written' buffers and the parity block are ready to
3518 * be written back to disk
3519 */
Shaohua Li9e4447682012-10-11 13:49:49 +11003520 BUG_ON(!test_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags) &&
3521 !test_bit(R5_Discard, &sh->dev[sh->pd_idx].flags));
NeilBrown84789552011-07-27 11:00:36 +10003522 BUG_ON(sh->qd_idx >= 0 &&
Shaohua Li9e4447682012-10-11 13:49:49 +11003523 !test_bit(R5_UPTODATE, &sh->dev[sh->qd_idx].flags) &&
3524 !test_bit(R5_Discard, &sh->dev[sh->qd_idx].flags));
NeilBrown84789552011-07-27 11:00:36 +10003525 for (i = disks; i--; ) {
3526 struct r5dev *dev = &sh->dev[i];
3527 if (test_bit(R5_LOCKED, &dev->flags) &&
3528 (i == sh->pd_idx || i == sh->qd_idx ||
3529 dev->written)) {
3530 pr_debug("Writing block %d\n", i);
3531 set_bit(R5_Wantwrite, &dev->flags);
3532 if (prexor)
3533 continue;
3534 if (!test_bit(R5_Insync, &dev->flags) ||
3535 ((i == sh->pd_idx || i == sh->qd_idx) &&
3536 s.failed == 0))
3537 set_bit(STRIPE_INSYNC, &sh->state);
3538 }
3539 }
3540 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3541 s.dec_preread_active = 1;
3542 }
3543
NeilBrownef5b7c62012-11-22 09:13:36 +11003544 /*
3545 * might be able to return some write requests if the parity blocks
3546 * are safe, or on a failed drive
3547 */
3548 pdev = &sh->dev[sh->pd_idx];
3549 s.p_failed = (s.failed >= 1 && s.failed_num[0] == sh->pd_idx)
3550 || (s.failed >= 2 && s.failed_num[1] == sh->pd_idx);
3551 qdev = &sh->dev[sh->qd_idx];
3552 s.q_failed = (s.failed >= 1 && s.failed_num[0] == sh->qd_idx)
3553 || (s.failed >= 2 && s.failed_num[1] == sh->qd_idx)
3554 || conf->level < 6;
3555
3556 if (s.written &&
3557 (s.p_failed || ((test_bit(R5_Insync, &pdev->flags)
3558 && !test_bit(R5_LOCKED, &pdev->flags)
3559 && (test_bit(R5_UPTODATE, &pdev->flags) ||
3560 test_bit(R5_Discard, &pdev->flags))))) &&
3561 (s.q_failed || ((test_bit(R5_Insync, &qdev->flags)
3562 && !test_bit(R5_LOCKED, &qdev->flags)
3563 && (test_bit(R5_UPTODATE, &qdev->flags) ||
3564 test_bit(R5_Discard, &qdev->flags))))))
3565 handle_stripe_clean_event(conf, sh, disks, &s.return_bi);
3566
3567 /* Now we might consider reading some blocks, either to check/generate
3568 * parity, or to satisfy requests
3569 * or to load a block that is being partially written.
3570 */
3571 if (s.to_read || s.non_overwrite
3572 || (conf->level == 6 && s.to_write && s.failed)
3573 || (s.syncing && (s.uptodate + s.compute < disks))
3574 || s.replacing
3575 || s.expanding)
3576 handle_stripe_fill(sh, &s, disks);
3577
NeilBrown84789552011-07-27 11:00:36 +10003578 /* Now to consider new write requests and what else, if anything
3579 * should be read. We do not handle new writes when:
3580 * 1/ A 'write' operation (copy+xor) is already in flight.
3581 * 2/ A 'check' operation is in flight, as it may clobber the parity
3582 * block.
3583 */
3584 if (s.to_write && !sh->reconstruct_state && !sh->check_state)
3585 handle_stripe_dirtying(conf, sh, &s, disks);
3586
3587 /* maybe we need to check and possibly fix the parity for this stripe
3588 * Any reads will already have been scheduled, so we just see if enough
3589 * data is available. The parity check is held off while parity
3590 * dependent operations are in flight.
3591 */
3592 if (sh->check_state ||
3593 (s.syncing && s.locked == 0 &&
3594 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
3595 !test_bit(STRIPE_INSYNC, &sh->state))) {
3596 if (conf->level == 6)
3597 handle_parity_checks6(conf, sh, &s, disks);
3598 else
3599 handle_parity_checks5(conf, sh, &s, disks);
3600 }
NeilBrownc5a31002011-07-27 11:00:36 +10003601
NeilBrown9a3e1102011-12-23 10:17:53 +11003602 if (s.replacing && s.locked == 0
3603 && !test_bit(STRIPE_INSYNC, &sh->state)) {
3604 /* Write out to replacement devices where possible */
3605 for (i = 0; i < conf->raid_disks; i++)
3606 if (test_bit(R5_UPTODATE, &sh->dev[i].flags) &&
3607 test_bit(R5_NeedReplace, &sh->dev[i].flags)) {
3608 set_bit(R5_WantReplace, &sh->dev[i].flags);
3609 set_bit(R5_LOCKED, &sh->dev[i].flags);
3610 s.locked++;
3611 }
3612 set_bit(STRIPE_INSYNC, &sh->state);
3613 }
3614 if ((s.syncing || s.replacing) && s.locked == 0 &&
3615 test_bit(STRIPE_INSYNC, &sh->state)) {
NeilBrownc5a31002011-07-27 11:00:36 +10003616 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
3617 clear_bit(STRIPE_SYNCING, &sh->state);
3618 }
3619
3620 /* If the failed drives are just a ReadError, then we might need
3621 * to progress the repair/check process
3622 */
3623 if (s.failed <= conf->max_degraded && !conf->mddev->ro)
3624 for (i = 0; i < s.failed; i++) {
3625 struct r5dev *dev = &sh->dev[s.failed_num[i]];
3626 if (test_bit(R5_ReadError, &dev->flags)
3627 && !test_bit(R5_LOCKED, &dev->flags)
3628 && test_bit(R5_UPTODATE, &dev->flags)
3629 ) {
3630 if (!test_bit(R5_ReWrite, &dev->flags)) {
3631 set_bit(R5_Wantwrite, &dev->flags);
3632 set_bit(R5_ReWrite, &dev->flags);
3633 set_bit(R5_LOCKED, &dev->flags);
3634 s.locked++;
3635 } else {
3636 /* let's read it back */
3637 set_bit(R5_Wantread, &dev->flags);
3638 set_bit(R5_LOCKED, &dev->flags);
3639 s.locked++;
3640 }
3641 }
3642 }
3643
3644
NeilBrown3687c062011-07-27 11:00:36 +10003645 /* Finish reconstruct operations initiated by the expansion process */
3646 if (sh->reconstruct_state == reconstruct_state_result) {
3647 struct stripe_head *sh_src
3648 = get_active_stripe(conf, sh->sector, 1, 1, 1);
3649 if (sh_src && test_bit(STRIPE_EXPAND_SOURCE, &sh_src->state)) {
3650 /* sh cannot be written until sh_src has been read.
3651 * so arrange for sh to be delayed a little
3652 */
3653 set_bit(STRIPE_DELAYED, &sh->state);
3654 set_bit(STRIPE_HANDLE, &sh->state);
3655 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE,
3656 &sh_src->state))
3657 atomic_inc(&conf->preread_active_stripes);
3658 release_stripe(sh_src);
3659 goto finish;
3660 }
3661 if (sh_src)
3662 release_stripe(sh_src);
NeilBrown16a53ec2006-06-26 00:27:38 -07003663
NeilBrown3687c062011-07-27 11:00:36 +10003664 sh->reconstruct_state = reconstruct_state_idle;
3665 clear_bit(STRIPE_EXPANDING, &sh->state);
3666 for (i = conf->raid_disks; i--; ) {
3667 set_bit(R5_Wantwrite, &sh->dev[i].flags);
3668 set_bit(R5_LOCKED, &sh->dev[i].flags);
3669 s.locked++;
3670 }
3671 }
3672
3673 if (s.expanded && test_bit(STRIPE_EXPANDING, &sh->state) &&
3674 !sh->reconstruct_state) {
3675 /* Need to write out all blocks after computing parity */
3676 sh->disks = conf->raid_disks;
3677 stripe_set_idx(sh->sector, conf, 0, sh);
3678 schedule_reconstruction(sh, &s, 1, 1);
3679 } else if (s.expanded && !sh->reconstruct_state && s.locked == 0) {
3680 clear_bit(STRIPE_EXPAND_READY, &sh->state);
3681 atomic_dec(&conf->reshape_stripes);
3682 wake_up(&conf->wait_for_overlap);
3683 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
3684 }
3685
3686 if (s.expanding && s.locked == 0 &&
3687 !test_bit(STRIPE_COMPUTE_RUN, &sh->state))
3688 handle_stripe_expansion(conf, sh);
3689
3690finish:
Dan Williams6bfe0b42008-04-30 00:52:32 -07003691 /* wait for this device to become unblocked */
NeilBrown5f066c62012-07-03 12:13:29 +10003692 if (unlikely(s.blocked_rdev)) {
3693 if (conf->mddev->external)
3694 md_wait_for_blocked_rdev(s.blocked_rdev,
3695 conf->mddev);
3696 else
3697 /* Internal metadata will immediately
3698 * be written by raid5d, so we don't
3699 * need to wait here.
3700 */
3701 rdev_dec_pending(s.blocked_rdev,
3702 conf->mddev);
3703 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07003704
NeilBrownbc2607f2011-07-28 11:39:22 +10003705 if (s.handle_bad_blocks)
3706 for (i = disks; i--; ) {
NeilBrown3cb03002011-10-11 16:45:26 +11003707 struct md_rdev *rdev;
NeilBrownbc2607f2011-07-28 11:39:22 +10003708 struct r5dev *dev = &sh->dev[i];
3709 if (test_and_clear_bit(R5_WriteError, &dev->flags)) {
3710 /* We own a safe reference to the rdev */
3711 rdev = conf->disks[i].rdev;
3712 if (!rdev_set_badblocks(rdev, sh->sector,
3713 STRIPE_SECTORS, 0))
3714 md_error(conf->mddev, rdev);
3715 rdev_dec_pending(rdev, conf->mddev);
3716 }
NeilBrownb84db562011-07-28 11:39:23 +10003717 if (test_and_clear_bit(R5_MadeGood, &dev->flags)) {
3718 rdev = conf->disks[i].rdev;
3719 rdev_clear_badblocks(rdev, sh->sector,
NeilBrownc6563a82012-05-21 09:27:00 +10003720 STRIPE_SECTORS, 0);
NeilBrownb84db562011-07-28 11:39:23 +10003721 rdev_dec_pending(rdev, conf->mddev);
3722 }
NeilBrown977df362011-12-23 10:17:53 +11003723 if (test_and_clear_bit(R5_MadeGoodRepl, &dev->flags)) {
3724 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11003725 if (!rdev)
3726 /* rdev have been moved down */
3727 rdev = conf->disks[i].rdev;
NeilBrown977df362011-12-23 10:17:53 +11003728 rdev_clear_badblocks(rdev, sh->sector,
NeilBrownc6563a82012-05-21 09:27:00 +10003729 STRIPE_SECTORS, 0);
NeilBrown977df362011-12-23 10:17:53 +11003730 rdev_dec_pending(rdev, conf->mddev);
3731 }
NeilBrownbc2607f2011-07-28 11:39:22 +10003732 }
3733
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003734 if (s.ops_request)
3735 raid_run_ops(sh, s.ops_request);
3736
Dan Williamsf0e43bc2008-06-28 08:31:55 +10003737 ops_run_io(sh, &s);
3738
NeilBrownc5709ef2011-07-26 11:35:20 +10003739 if (s.dec_preread_active) {
NeilBrown729a1862009-12-14 12:49:50 +11003740 /* We delay this until after ops_run_io so that if make_request
Tejun Heoe9c74692010-09-03 11:56:18 +02003741 * is waiting on a flush, it won't continue until the writes
NeilBrown729a1862009-12-14 12:49:50 +11003742 * have actually been submitted.
3743 */
3744 atomic_dec(&conf->preread_active_stripes);
3745 if (atomic_read(&conf->preread_active_stripes) <
3746 IO_THRESHOLD)
3747 md_wakeup_thread(conf->mddev->thread);
3748 }
3749
NeilBrownc5709ef2011-07-26 11:35:20 +10003750 return_io(s.return_bi);
NeilBrown16a53ec2006-06-26 00:27:38 -07003751
Dan Williams257a4b42011-11-08 16:22:06 +11003752 clear_bit_unlock(STRIPE_ACTIVE, &sh->state);
NeilBrown16a53ec2006-06-26 00:27:38 -07003753}
3754
NeilBrownd1688a62011-10-11 16:49:52 +11003755static void raid5_activate_delayed(struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756{
3757 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD) {
3758 while (!list_empty(&conf->delayed_list)) {
3759 struct list_head *l = conf->delayed_list.next;
3760 struct stripe_head *sh;
3761 sh = list_entry(l, struct stripe_head, lru);
3762 list_del_init(l);
3763 clear_bit(STRIPE_DELAYED, &sh->state);
3764 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3765 atomic_inc(&conf->preread_active_stripes);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003766 list_add_tail(&sh->lru, &conf->hold_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767 }
NeilBrown482c0832011-04-18 18:25:42 +10003768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769}
3770
NeilBrownd1688a62011-10-11 16:49:52 +11003771static void activate_bit_delay(struct r5conf *conf)
NeilBrown72626682005-09-09 16:23:54 -07003772{
3773 /* device_lock is held */
3774 struct list_head head;
3775 list_add(&head, &conf->bitmap_list);
3776 list_del_init(&conf->bitmap_list);
3777 while (!list_empty(&head)) {
3778 struct stripe_head *sh = list_entry(head.next, struct stripe_head, lru);
3779 list_del_init(&sh->lru);
3780 atomic_inc(&sh->count);
3781 __release_stripe(conf, sh);
3782 }
3783}
3784
NeilBrownfd01b882011-10-11 16:47:53 +11003785int md_raid5_congested(struct mddev *mddev, int bits)
NeilBrownf022b2f2006-10-03 01:15:56 -07003786{
NeilBrownd1688a62011-10-11 16:49:52 +11003787 struct r5conf *conf = mddev->private;
NeilBrownf022b2f2006-10-03 01:15:56 -07003788
3789 /* No difference between reads and writes. Just check
3790 * how busy the stripe_cache is
3791 */
NeilBrown3fa841d2009-09-23 18:10:29 +10003792
NeilBrownf022b2f2006-10-03 01:15:56 -07003793 if (conf->inactive_blocked)
3794 return 1;
3795 if (conf->quiesce)
3796 return 1;
3797 if (list_empty_careful(&conf->inactive_list))
3798 return 1;
3799
3800 return 0;
3801}
NeilBrown11d8a6e2010-07-26 11:57:07 +10003802EXPORT_SYMBOL_GPL(md_raid5_congested);
3803
3804static int raid5_congested(void *data, int bits)
3805{
NeilBrownfd01b882011-10-11 16:47:53 +11003806 struct mddev *mddev = data;
NeilBrown11d8a6e2010-07-26 11:57:07 +10003807
3808 return mddev_congested(mddev, bits) ||
3809 md_raid5_congested(mddev, bits);
3810}
NeilBrownf022b2f2006-10-03 01:15:56 -07003811
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003812/* We want read requests to align with chunks where possible,
3813 * but write requests don't need to.
3814 */
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003815static int raid5_mergeable_bvec(struct request_queue *q,
3816 struct bvec_merge_data *bvm,
3817 struct bio_vec *biovec)
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003818{
NeilBrownfd01b882011-10-11 16:47:53 +11003819 struct mddev *mddev = q->queuedata;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003820 sector_t sector = bvm->bi_sector + get_start_sect(bvm->bi_bdev);
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003821 int max;
Andre Noll9d8f0362009-06-18 08:45:01 +10003822 unsigned int chunk_sectors = mddev->chunk_sectors;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003823 unsigned int bio_sectors = bvm->bi_size >> 9;
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003824
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003825 if ((bvm->bi_rw & 1) == WRITE)
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003826 return biovec->bv_len; /* always allow writes to be mergeable */
3827
Andre Noll664e7c42009-06-18 08:45:27 +10003828 if (mddev->new_chunk_sectors < mddev->chunk_sectors)
3829 chunk_sectors = mddev->new_chunk_sectors;
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003830 max = (chunk_sectors - ((sector & (chunk_sectors - 1)) + bio_sectors)) << 9;
3831 if (max < 0) max = 0;
3832 if (max <= biovec->bv_len && bio_sectors == 0)
3833 return biovec->bv_len;
3834 else
3835 return max;
3836}
3837
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003838
NeilBrownfd01b882011-10-11 16:47:53 +11003839static int in_chunk_boundary(struct mddev *mddev, struct bio *bio)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003840{
3841 sector_t sector = bio->bi_sector + get_start_sect(bio->bi_bdev);
Andre Noll9d8f0362009-06-18 08:45:01 +10003842 unsigned int chunk_sectors = mddev->chunk_sectors;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003843 unsigned int bio_sectors = bio->bi_size >> 9;
3844
Andre Noll664e7c42009-06-18 08:45:27 +10003845 if (mddev->new_chunk_sectors < mddev->chunk_sectors)
3846 chunk_sectors = mddev->new_chunk_sectors;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003847 return chunk_sectors >=
3848 ((sector & (chunk_sectors - 1)) + bio_sectors);
3849}
3850
3851/*
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003852 * add bio to the retry LIFO ( in O(1) ... we are in interrupt )
3853 * later sampled by raid5d.
3854 */
NeilBrownd1688a62011-10-11 16:49:52 +11003855static void add_bio_to_retry(struct bio *bi,struct r5conf *conf)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003856{
3857 unsigned long flags;
3858
3859 spin_lock_irqsave(&conf->device_lock, flags);
3860
3861 bi->bi_next = conf->retry_read_aligned_list;
3862 conf->retry_read_aligned_list = bi;
3863
3864 spin_unlock_irqrestore(&conf->device_lock, flags);
3865 md_wakeup_thread(conf->mddev->thread);
3866}
3867
3868
NeilBrownd1688a62011-10-11 16:49:52 +11003869static struct bio *remove_bio_from_retry(struct r5conf *conf)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003870{
3871 struct bio *bi;
3872
3873 bi = conf->retry_read_aligned;
3874 if (bi) {
3875 conf->retry_read_aligned = NULL;
3876 return bi;
3877 }
3878 bi = conf->retry_read_aligned_list;
3879 if(bi) {
Neil Brown387bb172007-02-08 14:20:29 -08003880 conf->retry_read_aligned_list = bi->bi_next;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003881 bi->bi_next = NULL;
Jens Axboe960e7392008-08-15 10:41:18 +02003882 /*
3883 * this sets the active strip count to 1 and the processed
3884 * strip count to zero (upper 8 bits)
3885 */
Shaohua Lie7836bd62012-07-19 16:01:31 +10003886 raid5_set_bi_stripes(bi, 1); /* biased count of active stripes */
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003887 }
3888
3889 return bi;
3890}
3891
3892
3893/*
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003894 * The "raid5_align_endio" should check if the read succeeded and if it
3895 * did, call bio_endio on the original bio (having bio_put the new bio
3896 * first).
3897 * If the read failed..
3898 */
NeilBrown6712ecf2007-09-27 12:47:43 +02003899static void raid5_align_endio(struct bio *bi, int error)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003900{
3901 struct bio* raid_bi = bi->bi_private;
NeilBrownfd01b882011-10-11 16:47:53 +11003902 struct mddev *mddev;
NeilBrownd1688a62011-10-11 16:49:52 +11003903 struct r5conf *conf;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003904 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
NeilBrown3cb03002011-10-11 16:45:26 +11003905 struct md_rdev *rdev;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003906
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003907 bio_put(bi);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003908
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003909 rdev = (void*)raid_bi->bi_next;
3910 raid_bi->bi_next = NULL;
NeilBrown2b7f2222010-03-25 16:06:03 +11003911 mddev = rdev->mddev;
3912 conf = mddev->private;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003913
3914 rdev_dec_pending(rdev, conf->mddev);
3915
3916 if (!error && uptodate) {
NeilBrown6712ecf2007-09-27 12:47:43 +02003917 bio_endio(raid_bi, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003918 if (atomic_dec_and_test(&conf->active_aligned_reads))
3919 wake_up(&conf->wait_for_stripe);
NeilBrown6712ecf2007-09-27 12:47:43 +02003920 return;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003921 }
3922
3923
Dan Williams45b42332007-07-09 11:56:43 -07003924 pr_debug("raid5_align_endio : io error...handing IO for a retry\n");
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003925
3926 add_bio_to_retry(raid_bi, conf);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003927}
3928
Neil Brown387bb172007-02-08 14:20:29 -08003929static int bio_fits_rdev(struct bio *bi)
3930{
Jens Axboe165125e2007-07-24 09:28:11 +02003931 struct request_queue *q = bdev_get_queue(bi->bi_bdev);
Neil Brown387bb172007-02-08 14:20:29 -08003932
Martin K. Petersenae03bf62009-05-22 17:17:50 -04003933 if ((bi->bi_size>>9) > queue_max_sectors(q))
Neil Brown387bb172007-02-08 14:20:29 -08003934 return 0;
3935 blk_recount_segments(q, bi);
Martin K. Petersen8a783622010-02-26 00:20:39 -05003936 if (bi->bi_phys_segments > queue_max_segments(q))
Neil Brown387bb172007-02-08 14:20:29 -08003937 return 0;
3938
3939 if (q->merge_bvec_fn)
3940 /* it's too hard to apply the merge_bvec_fn at this stage,
3941 * just just give up
3942 */
3943 return 0;
3944
3945 return 1;
3946}
3947
3948
NeilBrownfd01b882011-10-11 16:47:53 +11003949static int chunk_aligned_read(struct mddev *mddev, struct bio * raid_bio)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003950{
NeilBrownd1688a62011-10-11 16:49:52 +11003951 struct r5conf *conf = mddev->private;
NeilBrown8553fe7ec2009-12-14 12:49:47 +11003952 int dd_idx;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003953 struct bio* align_bi;
NeilBrown3cb03002011-10-11 16:45:26 +11003954 struct md_rdev *rdev;
NeilBrown671488c2011-12-23 10:17:52 +11003955 sector_t end_sector;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003956
3957 if (!in_chunk_boundary(mddev, raid_bio)) {
Dan Williams45b42332007-07-09 11:56:43 -07003958 pr_debug("chunk_aligned_read : non aligned\n");
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003959 return 0;
3960 }
3961 /*
NeilBrowna167f662010-10-26 18:31:13 +11003962 * use bio_clone_mddev to make a copy of the bio
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003963 */
NeilBrowna167f662010-10-26 18:31:13 +11003964 align_bi = bio_clone_mddev(raid_bio, GFP_NOIO, mddev);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003965 if (!align_bi)
3966 return 0;
3967 /*
3968 * set bi_end_io to a new function, and set bi_private to the
3969 * original bio.
3970 */
3971 align_bi->bi_end_io = raid5_align_endio;
3972 align_bi->bi_private = raid_bio;
3973 /*
3974 * compute position
3975 */
NeilBrown112bf892009-03-31 14:39:38 +11003976 align_bi->bi_sector = raid5_compute_sector(conf, raid_bio->bi_sector,
3977 0,
NeilBrown911d4ee2009-03-31 14:39:38 +11003978 &dd_idx, NULL);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003979
NeilBrown671488c2011-12-23 10:17:52 +11003980 end_sector = align_bi->bi_sector + (align_bi->bi_size >> 9);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003981 rcu_read_lock();
NeilBrown671488c2011-12-23 10:17:52 +11003982 rdev = rcu_dereference(conf->disks[dd_idx].replacement);
3983 if (!rdev || test_bit(Faulty, &rdev->flags) ||
3984 rdev->recovery_offset < end_sector) {
3985 rdev = rcu_dereference(conf->disks[dd_idx].rdev);
3986 if (rdev &&
3987 (test_bit(Faulty, &rdev->flags) ||
3988 !(test_bit(In_sync, &rdev->flags) ||
3989 rdev->recovery_offset >= end_sector)))
3990 rdev = NULL;
3991 }
3992 if (rdev) {
NeilBrown31c176e2011-07-28 11:39:22 +10003993 sector_t first_bad;
3994 int bad_sectors;
3995
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003996 atomic_inc(&rdev->nr_pending);
3997 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003998 raid_bio->bi_next = (void*)rdev;
3999 align_bi->bi_bdev = rdev->bdev;
4000 align_bi->bi_flags &= ~(1 << BIO_SEG_VALID);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004001
NeilBrown31c176e2011-07-28 11:39:22 +10004002 if (!bio_fits_rdev(align_bi) ||
4003 is_badblock(rdev, align_bi->bi_sector, align_bi->bi_size>>9,
4004 &first_bad, &bad_sectors)) {
4005 /* too big in some way, or has a known bad block */
Neil Brown387bb172007-02-08 14:20:29 -08004006 bio_put(align_bi);
4007 rdev_dec_pending(rdev, mddev);
4008 return 0;
4009 }
4010
majianpeng6c0544e2012-06-12 08:31:10 +08004011 /* No reshape active, so we can trust rdev->data_offset */
4012 align_bi->bi_sector += rdev->data_offset;
4013
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004014 spin_lock_irq(&conf->device_lock);
4015 wait_event_lock_irq(conf->wait_for_stripe,
4016 conf->quiesce == 0,
Lukas Czernereed8c022012-11-30 11:42:40 +01004017 conf->device_lock);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004018 atomic_inc(&conf->active_aligned_reads);
4019 spin_unlock_irq(&conf->device_lock);
4020
NeilBrowna9add5d2012-10-31 11:59:09 +11004021 trace_block_bio_remap(bdev_get_queue(align_bi->bi_bdev),
4022 align_bi, disk_devt(mddev->gendisk),
4023 raid_bio->bi_sector);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004024 generic_make_request(align_bi);
4025 return 1;
4026 } else {
4027 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004028 bio_put(align_bi);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004029 return 0;
4030 }
4031}
4032
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004033/* __get_priority_stripe - get the next stripe to process
4034 *
4035 * Full stripe writes are allowed to pass preread active stripes up until
4036 * the bypass_threshold is exceeded. In general the bypass_count
4037 * increments when the handle_list is handled before the hold_list; however, it
4038 * will not be incremented when STRIPE_IO_STARTED is sampled set signifying a
4039 * stripe with in flight i/o. The bypass_count will be reset when the
4040 * head of the hold_list has changed, i.e. the head was promoted to the
4041 * handle_list.
4042 */
NeilBrownd1688a62011-10-11 16:49:52 +11004043static struct stripe_head *__get_priority_stripe(struct r5conf *conf)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004044{
4045 struct stripe_head *sh;
4046
4047 pr_debug("%s: handle: %s hold: %s full_writes: %d bypass_count: %d\n",
4048 __func__,
4049 list_empty(&conf->handle_list) ? "empty" : "busy",
4050 list_empty(&conf->hold_list) ? "empty" : "busy",
4051 atomic_read(&conf->pending_full_writes), conf->bypass_count);
4052
4053 if (!list_empty(&conf->handle_list)) {
4054 sh = list_entry(conf->handle_list.next, typeof(*sh), lru);
4055
4056 if (list_empty(&conf->hold_list))
4057 conf->bypass_count = 0;
4058 else if (!test_bit(STRIPE_IO_STARTED, &sh->state)) {
4059 if (conf->hold_list.next == conf->last_hold)
4060 conf->bypass_count++;
4061 else {
4062 conf->last_hold = conf->hold_list.next;
4063 conf->bypass_count -= conf->bypass_threshold;
4064 if (conf->bypass_count < 0)
4065 conf->bypass_count = 0;
4066 }
4067 }
4068 } else if (!list_empty(&conf->hold_list) &&
4069 ((conf->bypass_threshold &&
4070 conf->bypass_count > conf->bypass_threshold) ||
4071 atomic_read(&conf->pending_full_writes) == 0)) {
4072 sh = list_entry(conf->hold_list.next,
4073 typeof(*sh), lru);
4074 conf->bypass_count -= conf->bypass_threshold;
4075 if (conf->bypass_count < 0)
4076 conf->bypass_count = 0;
4077 } else
4078 return NULL;
4079
4080 list_del_init(&sh->lru);
4081 atomic_inc(&sh->count);
4082 BUG_ON(atomic_read(&sh->count) != 1);
4083 return sh;
4084}
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004085
Shaohua Li8811b592012-08-02 08:33:00 +10004086struct raid5_plug_cb {
4087 struct blk_plug_cb cb;
4088 struct list_head list;
4089};
4090
4091static void raid5_unplug(struct blk_plug_cb *blk_cb, bool from_schedule)
4092{
4093 struct raid5_plug_cb *cb = container_of(
4094 blk_cb, struct raid5_plug_cb, cb);
4095 struct stripe_head *sh;
4096 struct mddev *mddev = cb->cb.data;
4097 struct r5conf *conf = mddev->private;
NeilBrowna9add5d2012-10-31 11:59:09 +11004098 int cnt = 0;
Shaohua Li8811b592012-08-02 08:33:00 +10004099
4100 if (cb->list.next && !list_empty(&cb->list)) {
4101 spin_lock_irq(&conf->device_lock);
4102 while (!list_empty(&cb->list)) {
4103 sh = list_first_entry(&cb->list, struct stripe_head, lru);
4104 list_del_init(&sh->lru);
4105 /*
4106 * avoid race release_stripe_plug() sees
4107 * STRIPE_ON_UNPLUG_LIST clear but the stripe
4108 * is still in our list
4109 */
4110 smp_mb__before_clear_bit();
4111 clear_bit(STRIPE_ON_UNPLUG_LIST, &sh->state);
4112 __release_stripe(conf, sh);
NeilBrowna9add5d2012-10-31 11:59:09 +11004113 cnt++;
Shaohua Li8811b592012-08-02 08:33:00 +10004114 }
4115 spin_unlock_irq(&conf->device_lock);
4116 }
NeilBrowna9add5d2012-10-31 11:59:09 +11004117 trace_block_unplug(mddev->queue, cnt, !from_schedule);
Shaohua Li8811b592012-08-02 08:33:00 +10004118 kfree(cb);
4119}
4120
4121static void release_stripe_plug(struct mddev *mddev,
4122 struct stripe_head *sh)
4123{
4124 struct blk_plug_cb *blk_cb = blk_check_plugged(
4125 raid5_unplug, mddev,
4126 sizeof(struct raid5_plug_cb));
4127 struct raid5_plug_cb *cb;
4128
4129 if (!blk_cb) {
4130 release_stripe(sh);
4131 return;
4132 }
4133
4134 cb = container_of(blk_cb, struct raid5_plug_cb, cb);
4135
4136 if (cb->list.next == NULL)
4137 INIT_LIST_HEAD(&cb->list);
4138
4139 if (!test_and_set_bit(STRIPE_ON_UNPLUG_LIST, &sh->state))
4140 list_add_tail(&sh->lru, &cb->list);
4141 else
4142 release_stripe(sh);
4143}
4144
Shaohua Li620125f2012-10-11 13:49:05 +11004145static void make_discard_request(struct mddev *mddev, struct bio *bi)
4146{
4147 struct r5conf *conf = mddev->private;
4148 sector_t logical_sector, last_sector;
4149 struct stripe_head *sh;
4150 int remaining;
4151 int stripe_sectors;
4152
4153 if (mddev->reshape_position != MaxSector)
4154 /* Skip discard while reshape is happening */
4155 return;
4156
4157 logical_sector = bi->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
4158 last_sector = bi->bi_sector + (bi->bi_size>>9);
4159
4160 bi->bi_next = NULL;
4161 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
4162
4163 stripe_sectors = conf->chunk_sectors *
4164 (conf->raid_disks - conf->max_degraded);
4165 logical_sector = DIV_ROUND_UP_SECTOR_T(logical_sector,
4166 stripe_sectors);
4167 sector_div(last_sector, stripe_sectors);
4168
4169 logical_sector *= conf->chunk_sectors;
4170 last_sector *= conf->chunk_sectors;
4171
4172 for (; logical_sector < last_sector;
4173 logical_sector += STRIPE_SECTORS) {
4174 DEFINE_WAIT(w);
4175 int d;
4176 again:
4177 sh = get_active_stripe(conf, logical_sector, 0, 0, 0);
4178 prepare_to_wait(&conf->wait_for_overlap, &w,
4179 TASK_UNINTERRUPTIBLE);
4180 spin_lock_irq(&sh->stripe_lock);
4181 for (d = 0; d < conf->raid_disks; d++) {
4182 if (d == sh->pd_idx || d == sh->qd_idx)
4183 continue;
4184 if (sh->dev[d].towrite || sh->dev[d].toread) {
4185 set_bit(R5_Overlap, &sh->dev[d].flags);
4186 spin_unlock_irq(&sh->stripe_lock);
4187 release_stripe(sh);
4188 schedule();
4189 goto again;
4190 }
4191 }
4192 finish_wait(&conf->wait_for_overlap, &w);
4193 for (d = 0; d < conf->raid_disks; d++) {
4194 if (d == sh->pd_idx || d == sh->qd_idx)
4195 continue;
4196 sh->dev[d].towrite = bi;
4197 set_bit(R5_OVERWRITE, &sh->dev[d].flags);
4198 raid5_inc_bi_active_stripes(bi);
4199 }
4200 spin_unlock_irq(&sh->stripe_lock);
4201 if (conf->mddev->bitmap) {
4202 for (d = 0;
4203 d < conf->raid_disks - conf->max_degraded;
4204 d++)
4205 bitmap_startwrite(mddev->bitmap,
4206 sh->sector,
4207 STRIPE_SECTORS,
4208 0);
4209 sh->bm_seq = conf->seq_flush + 1;
4210 set_bit(STRIPE_BIT_DELAY, &sh->state);
4211 }
4212
4213 set_bit(STRIPE_HANDLE, &sh->state);
4214 clear_bit(STRIPE_DELAYED, &sh->state);
4215 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
4216 atomic_inc(&conf->preread_active_stripes);
4217 release_stripe_plug(mddev, sh);
4218 }
4219
4220 remaining = raid5_dec_bi_active_stripes(bi);
4221 if (remaining == 0) {
4222 md_write_end(mddev);
4223 bio_endio(bi, 0);
4224 }
4225}
4226
Linus Torvaldsb4fdcb02011-11-04 17:06:58 -07004227static void make_request(struct mddev *mddev, struct bio * bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228{
NeilBrownd1688a62011-10-11 16:49:52 +11004229 struct r5conf *conf = mddev->private;
NeilBrown911d4ee2009-03-31 14:39:38 +11004230 int dd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231 sector_t new_sector;
4232 sector_t logical_sector, last_sector;
4233 struct stripe_head *sh;
Jens Axboea3623572005-11-01 09:26:16 +01004234 const int rw = bio_data_dir(bi);
NeilBrown49077322010-03-25 16:20:56 +11004235 int remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004236
Tejun Heoe9c74692010-09-03 11:56:18 +02004237 if (unlikely(bi->bi_rw & REQ_FLUSH)) {
4238 md_flush_request(mddev, bi);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02004239 return;
NeilBrowne5dcdd82005-09-09 16:23:41 -07004240 }
4241
NeilBrown3d310eb2005-06-21 17:17:26 -07004242 md_write_start(mddev, bi);
NeilBrown06d91a52005-06-21 17:17:12 -07004243
NeilBrown802ba062006-12-13 00:34:13 -08004244 if (rw == READ &&
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08004245 mddev->reshape_position == MaxSector &&
NeilBrown21a52c62010-04-01 15:02:13 +11004246 chunk_aligned_read(mddev,bi))
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02004247 return;
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08004248
Shaohua Li620125f2012-10-11 13:49:05 +11004249 if (unlikely(bi->bi_rw & REQ_DISCARD)) {
4250 make_discard_request(mddev, bi);
4251 return;
4252 }
4253
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254 logical_sector = bi->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
4255 last_sector = bi->bi_sector + (bi->bi_size>>9);
4256 bi->bi_next = NULL;
4257 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
NeilBrown06d91a52005-06-21 17:17:12 -07004258
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259 for (;logical_sector < last_sector; logical_sector += STRIPE_SECTORS) {
4260 DEFINE_WAIT(w);
NeilBrownb5663ba2009-03-31 14:39:38 +11004261 int previous;
NeilBrownb578d552006-03-27 01:18:12 -08004262
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004263 retry:
NeilBrownb5663ba2009-03-31 14:39:38 +11004264 previous = 0;
NeilBrownb578d552006-03-27 01:18:12 -08004265 prepare_to_wait(&conf->wait_for_overlap, &w, TASK_UNINTERRUPTIBLE);
NeilBrownb0f9ec02009-03-31 15:27:18 +11004266 if (unlikely(conf->reshape_progress != MaxSector)) {
NeilBrownfef9c612009-03-31 15:16:46 +11004267 /* spinlock is needed as reshape_progress may be
NeilBrowndf8e7f72006-03-27 01:18:15 -08004268 * 64bit on a 32bit platform, and so it might be
4269 * possible to see a half-updated value
Jesper Juhlaeb878b2011-04-10 18:06:17 +02004270 * Of course reshape_progress could change after
NeilBrowndf8e7f72006-03-27 01:18:15 -08004271 * the lock is dropped, so once we get a reference
4272 * to the stripe that we think it is, we will have
4273 * to check again.
4274 */
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004275 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10004276 if (mddev->reshape_backwards
NeilBrownfef9c612009-03-31 15:16:46 +11004277 ? logical_sector < conf->reshape_progress
4278 : logical_sector >= conf->reshape_progress) {
NeilBrownb5663ba2009-03-31 14:39:38 +11004279 previous = 1;
4280 } else {
NeilBrown2c810cd2012-05-21 09:27:00 +10004281 if (mddev->reshape_backwards
NeilBrownfef9c612009-03-31 15:16:46 +11004282 ? logical_sector < conf->reshape_safe
4283 : logical_sector >= conf->reshape_safe) {
NeilBrownb578d552006-03-27 01:18:12 -08004284 spin_unlock_irq(&conf->device_lock);
4285 schedule();
4286 goto retry;
4287 }
4288 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004289 spin_unlock_irq(&conf->device_lock);
4290 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004291
NeilBrown112bf892009-03-31 14:39:38 +11004292 new_sector = raid5_compute_sector(conf, logical_sector,
4293 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11004294 &dd_idx, NULL);
NeilBrown0c55e022010-05-03 14:09:02 +10004295 pr_debug("raid456: make_request, sector %llu logical %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296 (unsigned long long)new_sector,
4297 (unsigned long long)logical_sector);
4298
NeilBrownb5663ba2009-03-31 14:39:38 +11004299 sh = get_active_stripe(conf, new_sector, previous,
NeilBrowna8c906c2009-06-09 14:39:59 +10004300 (bi->bi_rw&RWA_MASK), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301 if (sh) {
NeilBrownb0f9ec02009-03-31 15:27:18 +11004302 if (unlikely(previous)) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004303 /* expansion might have moved on while waiting for a
NeilBrowndf8e7f72006-03-27 01:18:15 -08004304 * stripe, so we must do the range check again.
4305 * Expansion could still move past after this
4306 * test, but as we are holding a reference to
4307 * 'sh', we know that if that happens,
4308 * STRIPE_EXPANDING will get set and the expansion
4309 * won't proceed until we finish with the stripe.
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004310 */
4311 int must_retry = 0;
4312 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10004313 if (mddev->reshape_backwards
NeilBrownb0f9ec02009-03-31 15:27:18 +11004314 ? logical_sector >= conf->reshape_progress
4315 : logical_sector < conf->reshape_progress)
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004316 /* mismatch, need to try again */
4317 must_retry = 1;
4318 spin_unlock_irq(&conf->device_lock);
4319 if (must_retry) {
4320 release_stripe(sh);
Dan Williams7a3ab902009-06-16 16:00:33 -07004321 schedule();
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004322 goto retry;
4323 }
4324 }
NeilBrowne62e58a2009-07-01 13:15:35 +10004325
Namhyung Kimffd96e32011-07-18 17:38:51 +10004326 if (rw == WRITE &&
NeilBrowna5c308d2009-07-01 13:15:35 +10004327 logical_sector >= mddev->suspend_lo &&
NeilBrowne464eaf2006-03-27 01:18:14 -08004328 logical_sector < mddev->suspend_hi) {
4329 release_stripe(sh);
NeilBrowne62e58a2009-07-01 13:15:35 +10004330 /* As the suspend_* range is controlled by
4331 * userspace, we want an interruptible
4332 * wait.
4333 */
4334 flush_signals(current);
4335 prepare_to_wait(&conf->wait_for_overlap,
4336 &w, TASK_INTERRUPTIBLE);
4337 if (logical_sector >= mddev->suspend_lo &&
4338 logical_sector < mddev->suspend_hi)
4339 schedule();
NeilBrowne464eaf2006-03-27 01:18:14 -08004340 goto retry;
4341 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004342
4343 if (test_bit(STRIPE_EXPANDING, &sh->state) ||
Namhyung Kimffd96e32011-07-18 17:38:51 +10004344 !add_stripe_bio(sh, bi, dd_idx, rw)) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004345 /* Stripe is busy expanding or
4346 * add failed due to overlap. Flush everything
Linus Torvalds1da177e2005-04-16 15:20:36 -07004347 * and wait a while
4348 */
NeilBrown482c0832011-04-18 18:25:42 +10004349 md_wakeup_thread(mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350 release_stripe(sh);
4351 schedule();
4352 goto retry;
4353 }
4354 finish_wait(&conf->wait_for_overlap, &w);
NeilBrown6ed30032008-02-06 01:40:00 -08004355 set_bit(STRIPE_HANDLE, &sh->state);
4356 clear_bit(STRIPE_DELAYED, &sh->state);
NeilBrowna852d7b2012-09-19 12:48:30 +10004357 if ((bi->bi_rw & REQ_SYNC) &&
NeilBrown729a1862009-12-14 12:49:50 +11004358 !test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
4359 atomic_inc(&conf->preread_active_stripes);
Shaohua Li8811b592012-08-02 08:33:00 +10004360 release_stripe_plug(mddev, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361 } else {
4362 /* cannot get stripe for read-ahead, just give-up */
4363 clear_bit(BIO_UPTODATE, &bi->bi_flags);
4364 finish_wait(&conf->wait_for_overlap, &w);
4365 break;
4366 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367 }
NeilBrown7c13edc2011-04-18 18:25:43 +10004368
Shaohua Lie7836bd62012-07-19 16:01:31 +10004369 remaining = raid5_dec_bi_active_stripes(bi);
NeilBrownf6344752006-03-27 01:18:17 -08004370 if (remaining == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371
NeilBrown16a53ec2006-06-26 00:27:38 -07004372 if ( rw == WRITE )
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373 md_write_end(mddev);
NeilBrown6712ecf2007-09-27 12:47:43 +02004374
Neil Brown0e13fe232008-06-28 08:31:20 +10004375 bio_endio(bi, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004376 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004377}
4378
NeilBrownfd01b882011-10-11 16:47:53 +11004379static sector_t raid5_size(struct mddev *mddev, sector_t sectors, int raid_disks);
Dan Williamsb522adc2009-03-31 15:00:31 +11004380
NeilBrownfd01b882011-10-11 16:47:53 +11004381static sector_t reshape_request(struct mddev *mddev, sector_t sector_nr, int *skipped)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382{
NeilBrown52c03292006-06-26 00:27:43 -07004383 /* reshaping is quite different to recovery/resync so it is
4384 * handled quite separately ... here.
4385 *
4386 * On each call to sync_request, we gather one chunk worth of
4387 * destination stripes and flag them as expanding.
4388 * Then we find all the source stripes and request reads.
4389 * As the reads complete, handle_stripe will copy the data
4390 * into the destination stripe and release that stripe.
4391 */
NeilBrownd1688a62011-10-11 16:49:52 +11004392 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004393 struct stripe_head *sh;
NeilBrownccfcc3c2006-03-27 01:18:09 -08004394 sector_t first_sector, last_sector;
NeilBrownf4168852007-02-28 20:11:53 -08004395 int raid_disks = conf->previous_raid_disks;
4396 int data_disks = raid_disks - conf->max_degraded;
4397 int new_data_disks = conf->raid_disks - conf->max_degraded;
NeilBrown52c03292006-06-26 00:27:43 -07004398 int i;
4399 int dd_idx;
NeilBrownc8f517c2009-03-31 15:28:40 +11004400 sector_t writepos, readpos, safepos;
NeilBrownec32a2b2009-03-31 15:17:38 +11004401 sector_t stripe_addr;
NeilBrown7a661382009-03-31 15:21:40 +11004402 int reshape_sectors;
NeilBrownab69ae12009-03-31 15:26:47 +11004403 struct list_head stripes;
NeilBrown52c03292006-06-26 00:27:43 -07004404
NeilBrownfef9c612009-03-31 15:16:46 +11004405 if (sector_nr == 0) {
4406 /* If restarting in the middle, skip the initial sectors */
NeilBrown2c810cd2012-05-21 09:27:00 +10004407 if (mddev->reshape_backwards &&
NeilBrownfef9c612009-03-31 15:16:46 +11004408 conf->reshape_progress < raid5_size(mddev, 0, 0)) {
4409 sector_nr = raid5_size(mddev, 0, 0)
4410 - conf->reshape_progress;
NeilBrown2c810cd2012-05-21 09:27:00 +10004411 } else if (!mddev->reshape_backwards &&
NeilBrownfef9c612009-03-31 15:16:46 +11004412 conf->reshape_progress > 0)
4413 sector_nr = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08004414 sector_div(sector_nr, new_data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11004415 if (sector_nr) {
NeilBrown8dee7212009-11-06 14:59:29 +11004416 mddev->curr_resync_completed = sector_nr;
4417 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrownfef9c612009-03-31 15:16:46 +11004418 *skipped = 1;
4419 return sector_nr;
4420 }
NeilBrown52c03292006-06-26 00:27:43 -07004421 }
4422
NeilBrown7a661382009-03-31 15:21:40 +11004423 /* We need to process a full chunk at a time.
4424 * If old and new chunk sizes differ, we need to process the
4425 * largest of these
4426 */
Andre Noll664e7c42009-06-18 08:45:27 +10004427 if (mddev->new_chunk_sectors > mddev->chunk_sectors)
4428 reshape_sectors = mddev->new_chunk_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11004429 else
Andre Noll9d8f0362009-06-18 08:45:01 +10004430 reshape_sectors = mddev->chunk_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11004431
NeilBrownb5254dd2012-05-21 09:27:01 +10004432 /* We update the metadata at least every 10 seconds, or when
4433 * the data about to be copied would over-write the source of
4434 * the data at the front of the range. i.e. one new_stripe
4435 * along from reshape_progress new_maps to after where
4436 * reshape_safe old_maps to
NeilBrown52c03292006-06-26 00:27:43 -07004437 */
NeilBrownfef9c612009-03-31 15:16:46 +11004438 writepos = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08004439 sector_div(writepos, new_data_disks);
NeilBrownc8f517c2009-03-31 15:28:40 +11004440 readpos = conf->reshape_progress;
4441 sector_div(readpos, data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11004442 safepos = conf->reshape_safe;
NeilBrownf4168852007-02-28 20:11:53 -08004443 sector_div(safepos, data_disks);
NeilBrown2c810cd2012-05-21 09:27:00 +10004444 if (mddev->reshape_backwards) {
NeilBrowned37d832009-05-27 21:39:05 +10004445 writepos -= min_t(sector_t, reshape_sectors, writepos);
NeilBrownc8f517c2009-03-31 15:28:40 +11004446 readpos += reshape_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11004447 safepos += reshape_sectors;
NeilBrownfef9c612009-03-31 15:16:46 +11004448 } else {
NeilBrown7a661382009-03-31 15:21:40 +11004449 writepos += reshape_sectors;
NeilBrowned37d832009-05-27 21:39:05 +10004450 readpos -= min_t(sector_t, reshape_sectors, readpos);
4451 safepos -= min_t(sector_t, reshape_sectors, safepos);
NeilBrownfef9c612009-03-31 15:16:46 +11004452 }
NeilBrown52c03292006-06-26 00:27:43 -07004453
NeilBrownb5254dd2012-05-21 09:27:01 +10004454 /* Having calculated the 'writepos' possibly use it
4455 * to set 'stripe_addr' which is where we will write to.
4456 */
4457 if (mddev->reshape_backwards) {
4458 BUG_ON(conf->reshape_progress == 0);
4459 stripe_addr = writepos;
4460 BUG_ON((mddev->dev_sectors &
4461 ~((sector_t)reshape_sectors - 1))
4462 - reshape_sectors - stripe_addr
4463 != sector_nr);
4464 } else {
4465 BUG_ON(writepos != sector_nr + reshape_sectors);
4466 stripe_addr = sector_nr;
4467 }
4468
NeilBrownc8f517c2009-03-31 15:28:40 +11004469 /* 'writepos' is the most advanced device address we might write.
4470 * 'readpos' is the least advanced device address we might read.
4471 * 'safepos' is the least address recorded in the metadata as having
4472 * been reshaped.
NeilBrownb5254dd2012-05-21 09:27:01 +10004473 * If there is a min_offset_diff, these are adjusted either by
4474 * increasing the safepos/readpos if diff is negative, or
4475 * increasing writepos if diff is positive.
4476 * If 'readpos' is then behind 'writepos', there is no way that we can
NeilBrownc8f517c2009-03-31 15:28:40 +11004477 * ensure safety in the face of a crash - that must be done by userspace
4478 * making a backup of the data. So in that case there is no particular
4479 * rush to update metadata.
4480 * Otherwise if 'safepos' is behind 'writepos', then we really need to
4481 * update the metadata to advance 'safepos' to match 'readpos' so that
4482 * we can be safe in the event of a crash.
4483 * So we insist on updating metadata if safepos is behind writepos and
4484 * readpos is beyond writepos.
4485 * In any case, update the metadata every 10 seconds.
4486 * Maybe that number should be configurable, but I'm not sure it is
4487 * worth it.... maybe it could be a multiple of safemode_delay???
4488 */
NeilBrownb5254dd2012-05-21 09:27:01 +10004489 if (conf->min_offset_diff < 0) {
4490 safepos += -conf->min_offset_diff;
4491 readpos += -conf->min_offset_diff;
4492 } else
4493 writepos += conf->min_offset_diff;
4494
NeilBrown2c810cd2012-05-21 09:27:00 +10004495 if ((mddev->reshape_backwards
NeilBrownc8f517c2009-03-31 15:28:40 +11004496 ? (safepos > writepos && readpos < writepos)
4497 : (safepos < writepos && readpos > writepos)) ||
4498 time_after(jiffies, conf->reshape_checkpoint + 10*HZ)) {
NeilBrown52c03292006-06-26 00:27:43 -07004499 /* Cannot proceed until we've updated the superblock... */
4500 wait_event(conf->wait_for_overlap,
4501 atomic_read(&conf->reshape_stripes)==0);
NeilBrownfef9c612009-03-31 15:16:46 +11004502 mddev->reshape_position = conf->reshape_progress;
NeilBrown75d3da42011-01-14 09:14:34 +11004503 mddev->curr_resync_completed = sector_nr;
NeilBrownc8f517c2009-03-31 15:28:40 +11004504 conf->reshape_checkpoint = jiffies;
NeilBrown850b2b42006-10-03 01:15:46 -07004505 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrown52c03292006-06-26 00:27:43 -07004506 md_wakeup_thread(mddev->thread);
NeilBrown850b2b42006-10-03 01:15:46 -07004507 wait_event(mddev->sb_wait, mddev->flags == 0 ||
NeilBrown52c03292006-06-26 00:27:43 -07004508 kthread_should_stop());
4509 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11004510 conf->reshape_safe = mddev->reshape_position;
NeilBrown52c03292006-06-26 00:27:43 -07004511 spin_unlock_irq(&conf->device_lock);
4512 wake_up(&conf->wait_for_overlap);
NeilBrownacb180b2009-04-14 16:28:34 +10004513 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrown52c03292006-06-26 00:27:43 -07004514 }
4515
NeilBrownab69ae12009-03-31 15:26:47 +11004516 INIT_LIST_HEAD(&stripes);
NeilBrown7a661382009-03-31 15:21:40 +11004517 for (i = 0; i < reshape_sectors; i += STRIPE_SECTORS) {
NeilBrown52c03292006-06-26 00:27:43 -07004518 int j;
NeilBrowna9f326e2009-09-23 18:06:41 +10004519 int skipped_disk = 0;
NeilBrowna8c906c2009-06-09 14:39:59 +10004520 sh = get_active_stripe(conf, stripe_addr+i, 0, 0, 1);
NeilBrown52c03292006-06-26 00:27:43 -07004521 set_bit(STRIPE_EXPANDING, &sh->state);
4522 atomic_inc(&conf->reshape_stripes);
4523 /* If any of this stripe is beyond the end of the old
4524 * array, then we need to zero those blocks
4525 */
4526 for (j=sh->disks; j--;) {
4527 sector_t s;
4528 if (j == sh->pd_idx)
4529 continue;
NeilBrownf4168852007-02-28 20:11:53 -08004530 if (conf->level == 6 &&
NeilBrownd0dabf72009-03-31 14:39:38 +11004531 j == sh->qd_idx)
NeilBrownf4168852007-02-28 20:11:53 -08004532 continue;
NeilBrown784052e2009-03-31 15:19:07 +11004533 s = compute_blocknr(sh, j, 0);
Dan Williamsb522adc2009-03-31 15:00:31 +11004534 if (s < raid5_size(mddev, 0, 0)) {
NeilBrowna9f326e2009-09-23 18:06:41 +10004535 skipped_disk = 1;
NeilBrown52c03292006-06-26 00:27:43 -07004536 continue;
4537 }
4538 memset(page_address(sh->dev[j].page), 0, STRIPE_SIZE);
4539 set_bit(R5_Expanded, &sh->dev[j].flags);
4540 set_bit(R5_UPTODATE, &sh->dev[j].flags);
4541 }
NeilBrowna9f326e2009-09-23 18:06:41 +10004542 if (!skipped_disk) {
NeilBrown52c03292006-06-26 00:27:43 -07004543 set_bit(STRIPE_EXPAND_READY, &sh->state);
4544 set_bit(STRIPE_HANDLE, &sh->state);
4545 }
NeilBrownab69ae12009-03-31 15:26:47 +11004546 list_add(&sh->lru, &stripes);
NeilBrown52c03292006-06-26 00:27:43 -07004547 }
4548 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10004549 if (mddev->reshape_backwards)
NeilBrown7a661382009-03-31 15:21:40 +11004550 conf->reshape_progress -= reshape_sectors * new_data_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11004551 else
NeilBrown7a661382009-03-31 15:21:40 +11004552 conf->reshape_progress += reshape_sectors * new_data_disks;
NeilBrown52c03292006-06-26 00:27:43 -07004553 spin_unlock_irq(&conf->device_lock);
4554 /* Ok, those stripe are ready. We can start scheduling
4555 * reads on the source stripes.
4556 * The source stripes are determined by mapping the first and last
4557 * block on the destination stripes.
4558 */
NeilBrown52c03292006-06-26 00:27:43 -07004559 first_sector =
NeilBrownec32a2b2009-03-31 15:17:38 +11004560 raid5_compute_sector(conf, stripe_addr*(new_data_disks),
NeilBrown911d4ee2009-03-31 14:39:38 +11004561 1, &dd_idx, NULL);
NeilBrown52c03292006-06-26 00:27:43 -07004562 last_sector =
NeilBrown0e6e0272009-06-09 16:32:22 +10004563 raid5_compute_sector(conf, ((stripe_addr+reshape_sectors)
Andre Noll09c9e5f2009-06-18 08:45:55 +10004564 * new_data_disks - 1),
NeilBrown911d4ee2009-03-31 14:39:38 +11004565 1, &dd_idx, NULL);
Andre Noll58c0fed2009-03-31 14:33:13 +11004566 if (last_sector >= mddev->dev_sectors)
4567 last_sector = mddev->dev_sectors - 1;
NeilBrown52c03292006-06-26 00:27:43 -07004568 while (first_sector <= last_sector) {
NeilBrowna8c906c2009-06-09 14:39:59 +10004569 sh = get_active_stripe(conf, first_sector, 1, 0, 1);
NeilBrown52c03292006-06-26 00:27:43 -07004570 set_bit(STRIPE_EXPAND_SOURCE, &sh->state);
4571 set_bit(STRIPE_HANDLE, &sh->state);
4572 release_stripe(sh);
4573 first_sector += STRIPE_SECTORS;
4574 }
NeilBrownab69ae12009-03-31 15:26:47 +11004575 /* Now that the sources are clearly marked, we can release
4576 * the destination stripes
4577 */
4578 while (!list_empty(&stripes)) {
4579 sh = list_entry(stripes.next, struct stripe_head, lru);
4580 list_del_init(&sh->lru);
4581 release_stripe(sh);
4582 }
NeilBrownc6207272008-02-06 01:39:52 -08004583 /* If this takes us to the resync_max point where we have to pause,
4584 * then we need to write out the superblock.
4585 */
NeilBrown7a661382009-03-31 15:21:40 +11004586 sector_nr += reshape_sectors;
NeilBrownc03f6a12009-04-17 11:06:30 +10004587 if ((sector_nr - mddev->curr_resync_completed) * 2
4588 >= mddev->resync_max - mddev->curr_resync_completed) {
NeilBrownc6207272008-02-06 01:39:52 -08004589 /* Cannot proceed until we've updated the superblock... */
4590 wait_event(conf->wait_for_overlap,
4591 atomic_read(&conf->reshape_stripes) == 0);
NeilBrownfef9c612009-03-31 15:16:46 +11004592 mddev->reshape_position = conf->reshape_progress;
NeilBrown75d3da42011-01-14 09:14:34 +11004593 mddev->curr_resync_completed = sector_nr;
NeilBrownc8f517c2009-03-31 15:28:40 +11004594 conf->reshape_checkpoint = jiffies;
NeilBrownc6207272008-02-06 01:39:52 -08004595 set_bit(MD_CHANGE_DEVS, &mddev->flags);
4596 md_wakeup_thread(mddev->thread);
4597 wait_event(mddev->sb_wait,
4598 !test_bit(MD_CHANGE_DEVS, &mddev->flags)
4599 || kthread_should_stop());
4600 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11004601 conf->reshape_safe = mddev->reshape_position;
NeilBrownc6207272008-02-06 01:39:52 -08004602 spin_unlock_irq(&conf->device_lock);
4603 wake_up(&conf->wait_for_overlap);
NeilBrownacb180b2009-04-14 16:28:34 +10004604 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrownc6207272008-02-06 01:39:52 -08004605 }
NeilBrown7a661382009-03-31 15:21:40 +11004606 return reshape_sectors;
NeilBrown52c03292006-06-26 00:27:43 -07004607}
4608
4609/* FIXME go_faster isn't used */
NeilBrownfd01b882011-10-11 16:47:53 +11004610static inline sector_t sync_request(struct mddev *mddev, sector_t sector_nr, int *skipped, int go_faster)
NeilBrown52c03292006-06-26 00:27:43 -07004611{
NeilBrownd1688a62011-10-11 16:49:52 +11004612 struct r5conf *conf = mddev->private;
NeilBrown52c03292006-06-26 00:27:43 -07004613 struct stripe_head *sh;
Andre Noll58c0fed2009-03-31 14:33:13 +11004614 sector_t max_sector = mddev->dev_sectors;
NeilBrown57dab0b2010-10-19 10:03:39 +11004615 sector_t sync_blocks;
NeilBrown16a53ec2006-06-26 00:27:38 -07004616 int still_degraded = 0;
4617 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618
NeilBrown72626682005-09-09 16:23:54 -07004619 if (sector_nr >= max_sector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004620 /* just being told to finish up .. nothing much to do */
NeilBrowncea9c222009-03-31 15:15:05 +11004621
NeilBrown29269552006-03-27 01:18:10 -08004622 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery)) {
4623 end_reshape(conf);
4624 return 0;
4625 }
NeilBrown72626682005-09-09 16:23:54 -07004626
4627 if (mddev->curr_resync < max_sector) /* aborted */
4628 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
4629 &sync_blocks, 1);
NeilBrown16a53ec2006-06-26 00:27:38 -07004630 else /* completed sync */
NeilBrown72626682005-09-09 16:23:54 -07004631 conf->fullsync = 0;
4632 bitmap_close_sync(mddev->bitmap);
4633
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634 return 0;
4635 }
NeilBrownccfcc3c2006-03-27 01:18:09 -08004636
NeilBrown64bd6602009-08-03 10:59:58 +10004637 /* Allow raid5_quiesce to complete */
4638 wait_event(conf->wait_for_overlap, conf->quiesce != 2);
4639
NeilBrown52c03292006-06-26 00:27:43 -07004640 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery))
4641 return reshape_request(mddev, sector_nr, skipped);
NeilBrownf6705572006-03-27 01:18:11 -08004642
NeilBrownc6207272008-02-06 01:39:52 -08004643 /* No need to check resync_max as we never do more than one
4644 * stripe, and as resync_max will always be on a chunk boundary,
4645 * if the check in md_do_sync didn't fire, there is no chance
4646 * of overstepping resync_max here
4647 */
4648
NeilBrown16a53ec2006-06-26 00:27:38 -07004649 /* if there is too many failed drives and we are trying
Linus Torvalds1da177e2005-04-16 15:20:36 -07004650 * to resync, then assert that we are finished, because there is
4651 * nothing we can do.
4652 */
NeilBrown3285edf2006-06-26 00:27:55 -07004653 if (mddev->degraded >= conf->max_degraded &&
NeilBrown16a53ec2006-06-26 00:27:38 -07004654 test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
Andre Noll58c0fed2009-03-31 14:33:13 +11004655 sector_t rv = mddev->dev_sectors - sector_nr;
NeilBrown57afd892005-06-21 17:17:13 -07004656 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657 return rv;
4658 }
NeilBrown72626682005-09-09 16:23:54 -07004659 if (!bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
NeilBrown3855ad92005-11-08 21:39:38 -08004660 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
NeilBrown72626682005-09-09 16:23:54 -07004661 !conf->fullsync && sync_blocks >= STRIPE_SECTORS) {
4662 /* we can skip this block, and probably more */
4663 sync_blocks /= STRIPE_SECTORS;
4664 *skipped = 1;
4665 return sync_blocks * STRIPE_SECTORS; /* keep things rounded to whole stripes */
4666 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004667
NeilBrownb47490c2008-02-06 01:39:50 -08004668 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
4669
NeilBrowna8c906c2009-06-09 14:39:59 +10004670 sh = get_active_stripe(conf, sector_nr, 0, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004671 if (sh == NULL) {
NeilBrowna8c906c2009-06-09 14:39:59 +10004672 sh = get_active_stripe(conf, sector_nr, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673 /* make sure we don't swamp the stripe cache if someone else
NeilBrown16a53ec2006-06-26 00:27:38 -07004674 * is trying to get access
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675 */
Nishanth Aravamudan66c006a2005-11-07 01:01:17 -08004676 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004678 /* Need to check if array will still be degraded after recovery/resync
4679 * We don't need to check the 'failed' flag as when that gets set,
4680 * recovery aborts.
4681 */
NeilBrownf001a702009-06-09 14:30:31 +10004682 for (i = 0; i < conf->raid_disks; i++)
NeilBrown16a53ec2006-06-26 00:27:38 -07004683 if (conf->disks[i].rdev == NULL)
4684 still_degraded = 1;
4685
4686 bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, still_degraded);
4687
NeilBrown83206d62011-07-26 11:19:49 +10004688 set_bit(STRIPE_SYNC_REQUESTED, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004689
NeilBrown14425772009-10-16 15:55:25 +11004690 handle_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691 release_stripe(sh);
4692
4693 return STRIPE_SECTORS;
4694}
4695
NeilBrownd1688a62011-10-11 16:49:52 +11004696static int retry_aligned_read(struct r5conf *conf, struct bio *raid_bio)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004697{
4698 /* We may not be able to submit a whole bio at once as there
4699 * may not be enough stripe_heads available.
4700 * We cannot pre-allocate enough stripe_heads as we may need
4701 * more than exist in the cache (if we allow ever large chunks).
4702 * So we do one stripe head at a time and record in
4703 * ->bi_hw_segments how many have been done.
4704 *
4705 * We *know* that this entire raid_bio is in one chunk, so
4706 * it will be only one 'dd_idx' and only need one call to raid5_compute_sector.
4707 */
4708 struct stripe_head *sh;
NeilBrown911d4ee2009-03-31 14:39:38 +11004709 int dd_idx;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004710 sector_t sector, logical_sector, last_sector;
4711 int scnt = 0;
4712 int remaining;
4713 int handled = 0;
4714
4715 logical_sector = raid_bio->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
NeilBrown112bf892009-03-31 14:39:38 +11004716 sector = raid5_compute_sector(conf, logical_sector,
NeilBrown911d4ee2009-03-31 14:39:38 +11004717 0, &dd_idx, NULL);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004718 last_sector = raid_bio->bi_sector + (raid_bio->bi_size>>9);
4719
4720 for (; logical_sector < last_sector;
Neil Brown387bb172007-02-08 14:20:29 -08004721 logical_sector += STRIPE_SECTORS,
4722 sector += STRIPE_SECTORS,
4723 scnt++) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004724
Shaohua Lie7836bd62012-07-19 16:01:31 +10004725 if (scnt < raid5_bi_processed_stripes(raid_bio))
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004726 /* already done this stripe */
4727 continue;
4728
NeilBrowna8c906c2009-06-09 14:39:59 +10004729 sh = get_active_stripe(conf, sector, 0, 1, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004730
4731 if (!sh) {
4732 /* failed to get a stripe - must wait */
Shaohua Lie7836bd62012-07-19 16:01:31 +10004733 raid5_set_bi_processed_stripes(raid_bio, scnt);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004734 conf->retry_read_aligned = raid_bio;
4735 return handled;
4736 }
4737
Neil Brown387bb172007-02-08 14:20:29 -08004738 if (!add_stripe_bio(sh, raid_bio, dd_idx, 0)) {
4739 release_stripe(sh);
Shaohua Lie7836bd62012-07-19 16:01:31 +10004740 raid5_set_bi_processed_stripes(raid_bio, scnt);
Neil Brown387bb172007-02-08 14:20:29 -08004741 conf->retry_read_aligned = raid_bio;
4742 return handled;
4743 }
4744
majianpeng3f9e7c12012-07-31 10:04:21 +10004745 set_bit(R5_ReadNoMerge, &sh->dev[dd_idx].flags);
Dan Williams36d1c642009-07-14 11:48:22 -07004746 handle_stripe(sh);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004747 release_stripe(sh);
4748 handled++;
4749 }
Shaohua Lie7836bd62012-07-19 16:01:31 +10004750 remaining = raid5_dec_bi_active_stripes(raid_bio);
Tejun Heo3a366e62013-01-11 13:06:33 -08004751 if (remaining == 0)
Neil Brown0e13fe232008-06-28 08:31:20 +10004752 bio_endio(raid_bio, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004753 if (atomic_dec_and_test(&conf->active_aligned_reads))
4754 wake_up(&conf->wait_for_stripe);
4755 return handled;
4756}
4757
Shaohua Li46a06402012-08-02 08:33:15 +10004758#define MAX_STRIPE_BATCH 8
4759static int handle_active_stripes(struct r5conf *conf)
4760{
4761 struct stripe_head *batch[MAX_STRIPE_BATCH], *sh;
4762 int i, batch_size = 0;
4763
4764 while (batch_size < MAX_STRIPE_BATCH &&
4765 (sh = __get_priority_stripe(conf)) != NULL)
4766 batch[batch_size++] = sh;
4767
4768 if (batch_size == 0)
4769 return batch_size;
4770 spin_unlock_irq(&conf->device_lock);
4771
4772 for (i = 0; i < batch_size; i++)
4773 handle_stripe(batch[i]);
4774
4775 cond_resched();
4776
4777 spin_lock_irq(&conf->device_lock);
4778 for (i = 0; i < batch_size; i++)
4779 __release_stripe(conf, batch[i]);
4780 return batch_size;
4781}
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004782
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783/*
4784 * This is our raid5 kernel thread.
4785 *
4786 * We scan the hash table for stripes which can be handled now.
4787 * During the scan, completed stripes are saved for us by the interrupt
4788 * handler, so that they will not have to wait for our next wakeup.
4789 */
Shaohua Li4ed87312012-10-11 13:34:00 +11004790static void raid5d(struct md_thread *thread)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004791{
Shaohua Li4ed87312012-10-11 13:34:00 +11004792 struct mddev *mddev = thread->mddev;
NeilBrownd1688a62011-10-11 16:49:52 +11004793 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794 int handled;
NeilBrowne1dfa0a2011-04-18 18:25:41 +10004795 struct blk_plug plug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796
Dan Williams45b42332007-07-09 11:56:43 -07004797 pr_debug("+++ raid5d active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798
4799 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004800
NeilBrowne1dfa0a2011-04-18 18:25:41 +10004801 blk_start_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004802 handled = 0;
4803 spin_lock_irq(&conf->device_lock);
4804 while (1) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004805 struct bio *bio;
Shaohua Li46a06402012-08-02 08:33:15 +10004806 int batch_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807
NeilBrown0021b7b2012-07-31 09:08:14 +02004808 if (
NeilBrown7c13edc2011-04-18 18:25:43 +10004809 !list_empty(&conf->bitmap_list)) {
4810 /* Now is a good time to flush some bitmap updates */
4811 conf->seq_flush++;
NeilBrown700e4322005-11-28 13:44:10 -08004812 spin_unlock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07004813 bitmap_unplug(mddev->bitmap);
NeilBrown700e4322005-11-28 13:44:10 -08004814 spin_lock_irq(&conf->device_lock);
NeilBrown7c13edc2011-04-18 18:25:43 +10004815 conf->seq_write = conf->seq_flush;
NeilBrown72626682005-09-09 16:23:54 -07004816 activate_bit_delay(conf);
4817 }
NeilBrown0021b7b2012-07-31 09:08:14 +02004818 raid5_activate_delayed(conf);
NeilBrown72626682005-09-09 16:23:54 -07004819
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004820 while ((bio = remove_bio_from_retry(conf))) {
4821 int ok;
4822 spin_unlock_irq(&conf->device_lock);
4823 ok = retry_aligned_read(conf, bio);
4824 spin_lock_irq(&conf->device_lock);
4825 if (!ok)
4826 break;
4827 handled++;
4828 }
4829
Shaohua Li46a06402012-08-02 08:33:15 +10004830 batch_size = handle_active_stripes(conf);
4831 if (!batch_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832 break;
Shaohua Li46a06402012-08-02 08:33:15 +10004833 handled += batch_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004834
Shaohua Li46a06402012-08-02 08:33:15 +10004835 if (mddev->flags & ~(1<<MD_CHANGE_PENDING)) {
4836 spin_unlock_irq(&conf->device_lock);
NeilBrownde393cd2011-07-28 11:31:48 +10004837 md_check_recovery(mddev);
Shaohua Li46a06402012-08-02 08:33:15 +10004838 spin_lock_irq(&conf->device_lock);
4839 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004840 }
Dan Williams45b42332007-07-09 11:56:43 -07004841 pr_debug("%d stripes handled\n", handled);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842
4843 spin_unlock_irq(&conf->device_lock);
4844
Dan Williamsc9f21aa2008-07-23 12:05:51 -07004845 async_tx_issue_pending_all();
NeilBrowne1dfa0a2011-04-18 18:25:41 +10004846 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004847
Dan Williams45b42332007-07-09 11:56:43 -07004848 pr_debug("--- raid5d inactive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004849}
4850
NeilBrown3f294f42005-11-08 21:39:25 -08004851static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11004852raid5_show_stripe_cache_size(struct mddev *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08004853{
NeilBrownd1688a62011-10-11 16:49:52 +11004854 struct r5conf *conf = mddev->private;
NeilBrown96de1e62005-11-08 21:39:39 -08004855 if (conf)
4856 return sprintf(page, "%d\n", conf->max_nr_stripes);
4857 else
4858 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08004859}
4860
NeilBrownc41d4ac2010-06-01 19:37:24 +10004861int
NeilBrownfd01b882011-10-11 16:47:53 +11004862raid5_set_cache_size(struct mddev *mddev, int size)
NeilBrownc41d4ac2010-06-01 19:37:24 +10004863{
NeilBrownd1688a62011-10-11 16:49:52 +11004864 struct r5conf *conf = mddev->private;
NeilBrownc41d4ac2010-06-01 19:37:24 +10004865 int err;
4866
4867 if (size <= 16 || size > 32768)
4868 return -EINVAL;
4869 while (size < conf->max_nr_stripes) {
4870 if (drop_one_stripe(conf))
4871 conf->max_nr_stripes--;
4872 else
4873 break;
4874 }
4875 err = md_allow_write(mddev);
4876 if (err)
4877 return err;
4878 while (size > conf->max_nr_stripes) {
4879 if (grow_one_stripe(conf))
4880 conf->max_nr_stripes++;
4881 else break;
4882 }
4883 return 0;
4884}
4885EXPORT_SYMBOL(raid5_set_cache_size);
4886
NeilBrown3f294f42005-11-08 21:39:25 -08004887static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11004888raid5_store_stripe_cache_size(struct mddev *mddev, const char *page, size_t len)
NeilBrown3f294f42005-11-08 21:39:25 -08004889{
NeilBrownd1688a62011-10-11 16:49:52 +11004890 struct r5conf *conf = mddev->private;
Dan Williams4ef197d82008-04-28 02:15:54 -07004891 unsigned long new;
Dan Williamsb5470dc2008-06-27 21:44:04 -07004892 int err;
4893
NeilBrown3f294f42005-11-08 21:39:25 -08004894 if (len >= PAGE_SIZE)
4895 return -EINVAL;
NeilBrown96de1e62005-11-08 21:39:39 -08004896 if (!conf)
4897 return -ENODEV;
NeilBrown3f294f42005-11-08 21:39:25 -08004898
Dan Williams4ef197d82008-04-28 02:15:54 -07004899 if (strict_strtoul(page, 10, &new))
NeilBrown3f294f42005-11-08 21:39:25 -08004900 return -EINVAL;
NeilBrownc41d4ac2010-06-01 19:37:24 +10004901 err = raid5_set_cache_size(mddev, new);
Dan Williamsb5470dc2008-06-27 21:44:04 -07004902 if (err)
4903 return err;
NeilBrown3f294f42005-11-08 21:39:25 -08004904 return len;
4905}
NeilBrown007583c2005-11-08 21:39:30 -08004906
NeilBrown96de1e62005-11-08 21:39:39 -08004907static struct md_sysfs_entry
4908raid5_stripecache_size = __ATTR(stripe_cache_size, S_IRUGO | S_IWUSR,
4909 raid5_show_stripe_cache_size,
4910 raid5_store_stripe_cache_size);
NeilBrown3f294f42005-11-08 21:39:25 -08004911
4912static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11004913raid5_show_preread_threshold(struct mddev *mddev, char *page)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004914{
NeilBrownd1688a62011-10-11 16:49:52 +11004915 struct r5conf *conf = mddev->private;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004916 if (conf)
4917 return sprintf(page, "%d\n", conf->bypass_threshold);
4918 else
4919 return 0;
4920}
4921
4922static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11004923raid5_store_preread_threshold(struct mddev *mddev, const char *page, size_t len)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004924{
NeilBrownd1688a62011-10-11 16:49:52 +11004925 struct r5conf *conf = mddev->private;
Dan Williams4ef197d82008-04-28 02:15:54 -07004926 unsigned long new;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004927 if (len >= PAGE_SIZE)
4928 return -EINVAL;
4929 if (!conf)
4930 return -ENODEV;
4931
Dan Williams4ef197d82008-04-28 02:15:54 -07004932 if (strict_strtoul(page, 10, &new))
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004933 return -EINVAL;
Dan Williams4ef197d82008-04-28 02:15:54 -07004934 if (new > conf->max_nr_stripes)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004935 return -EINVAL;
4936 conf->bypass_threshold = new;
4937 return len;
4938}
4939
4940static struct md_sysfs_entry
4941raid5_preread_bypass_threshold = __ATTR(preread_bypass_threshold,
4942 S_IRUGO | S_IWUSR,
4943 raid5_show_preread_threshold,
4944 raid5_store_preread_threshold);
4945
4946static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11004947stripe_cache_active_show(struct mddev *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08004948{
NeilBrownd1688a62011-10-11 16:49:52 +11004949 struct r5conf *conf = mddev->private;
NeilBrown96de1e62005-11-08 21:39:39 -08004950 if (conf)
4951 return sprintf(page, "%d\n", atomic_read(&conf->active_stripes));
4952 else
4953 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08004954}
4955
NeilBrown96de1e62005-11-08 21:39:39 -08004956static struct md_sysfs_entry
4957raid5_stripecache_active = __ATTR_RO(stripe_cache_active);
NeilBrown3f294f42005-11-08 21:39:25 -08004958
NeilBrown007583c2005-11-08 21:39:30 -08004959static struct attribute *raid5_attrs[] = {
NeilBrown3f294f42005-11-08 21:39:25 -08004960 &raid5_stripecache_size.attr,
4961 &raid5_stripecache_active.attr,
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004962 &raid5_preread_bypass_threshold.attr,
NeilBrown3f294f42005-11-08 21:39:25 -08004963 NULL,
4964};
NeilBrown007583c2005-11-08 21:39:30 -08004965static struct attribute_group raid5_attrs_group = {
4966 .name = NULL,
4967 .attrs = raid5_attrs,
NeilBrown3f294f42005-11-08 21:39:25 -08004968};
4969
Dan Williams80c3a6c2009-03-17 18:10:40 -07004970static sector_t
NeilBrownfd01b882011-10-11 16:47:53 +11004971raid5_size(struct mddev *mddev, sector_t sectors, int raid_disks)
Dan Williams80c3a6c2009-03-17 18:10:40 -07004972{
NeilBrownd1688a62011-10-11 16:49:52 +11004973 struct r5conf *conf = mddev->private;
Dan Williams80c3a6c2009-03-17 18:10:40 -07004974
4975 if (!sectors)
4976 sectors = mddev->dev_sectors;
NeilBrown5e5e3e72009-10-16 16:35:30 +11004977 if (!raid_disks)
NeilBrown7ec05472009-03-31 15:10:36 +11004978 /* size is defined by the smallest of previous and new size */
NeilBrown5e5e3e72009-10-16 16:35:30 +11004979 raid_disks = min(conf->raid_disks, conf->previous_raid_disks);
Dan Williams80c3a6c2009-03-17 18:10:40 -07004980
Andre Noll9d8f0362009-06-18 08:45:01 +10004981 sectors &= ~((sector_t)mddev->chunk_sectors - 1);
Andre Noll664e7c42009-06-18 08:45:27 +10004982 sectors &= ~((sector_t)mddev->new_chunk_sectors - 1);
Dan Williams80c3a6c2009-03-17 18:10:40 -07004983 return sectors * (raid_disks - conf->max_degraded);
4984}
4985
NeilBrownd1688a62011-10-11 16:49:52 +11004986static void raid5_free_percpu(struct r5conf *conf)
Dan Williams36d1c642009-07-14 11:48:22 -07004987{
4988 struct raid5_percpu *percpu;
4989 unsigned long cpu;
4990
4991 if (!conf->percpu)
4992 return;
4993
4994 get_online_cpus();
4995 for_each_possible_cpu(cpu) {
4996 percpu = per_cpu_ptr(conf->percpu, cpu);
4997 safe_put_page(percpu->spare_page);
Dan Williamsd6f38f32009-07-14 11:50:52 -07004998 kfree(percpu->scribble);
Dan Williams36d1c642009-07-14 11:48:22 -07004999 }
5000#ifdef CONFIG_HOTPLUG_CPU
5001 unregister_cpu_notifier(&conf->cpu_notify);
5002#endif
5003 put_online_cpus();
5004
5005 free_percpu(conf->percpu);
5006}
5007
NeilBrownd1688a62011-10-11 16:49:52 +11005008static void free_conf(struct r5conf *conf)
Dan Williams95fc17a2009-07-31 12:39:15 +10005009{
5010 shrink_stripes(conf);
Dan Williams36d1c642009-07-14 11:48:22 -07005011 raid5_free_percpu(conf);
Dan Williams95fc17a2009-07-31 12:39:15 +10005012 kfree(conf->disks);
5013 kfree(conf->stripe_hashtbl);
5014 kfree(conf);
5015}
5016
Dan Williams36d1c642009-07-14 11:48:22 -07005017#ifdef CONFIG_HOTPLUG_CPU
5018static int raid456_cpu_notify(struct notifier_block *nfb, unsigned long action,
5019 void *hcpu)
5020{
NeilBrownd1688a62011-10-11 16:49:52 +11005021 struct r5conf *conf = container_of(nfb, struct r5conf, cpu_notify);
Dan Williams36d1c642009-07-14 11:48:22 -07005022 long cpu = (long)hcpu;
5023 struct raid5_percpu *percpu = per_cpu_ptr(conf->percpu, cpu);
5024
5025 switch (action) {
5026 case CPU_UP_PREPARE:
5027 case CPU_UP_PREPARE_FROZEN:
Dan Williamsd6f38f32009-07-14 11:50:52 -07005028 if (conf->level == 6 && !percpu->spare_page)
Dan Williams36d1c642009-07-14 11:48:22 -07005029 percpu->spare_page = alloc_page(GFP_KERNEL);
Dan Williamsd6f38f32009-07-14 11:50:52 -07005030 if (!percpu->scribble)
5031 percpu->scribble = kmalloc(conf->scribble_len, GFP_KERNEL);
5032
5033 if (!percpu->scribble ||
5034 (conf->level == 6 && !percpu->spare_page)) {
5035 safe_put_page(percpu->spare_page);
5036 kfree(percpu->scribble);
Dan Williams36d1c642009-07-14 11:48:22 -07005037 pr_err("%s: failed memory allocation for cpu%ld\n",
5038 __func__, cpu);
Akinobu Mita55af6bb2010-05-26 14:43:35 -07005039 return notifier_from_errno(-ENOMEM);
Dan Williams36d1c642009-07-14 11:48:22 -07005040 }
5041 break;
5042 case CPU_DEAD:
5043 case CPU_DEAD_FROZEN:
5044 safe_put_page(percpu->spare_page);
Dan Williamsd6f38f32009-07-14 11:50:52 -07005045 kfree(percpu->scribble);
Dan Williams36d1c642009-07-14 11:48:22 -07005046 percpu->spare_page = NULL;
Dan Williamsd6f38f32009-07-14 11:50:52 -07005047 percpu->scribble = NULL;
Dan Williams36d1c642009-07-14 11:48:22 -07005048 break;
5049 default:
5050 break;
5051 }
5052 return NOTIFY_OK;
5053}
5054#endif
5055
NeilBrownd1688a62011-10-11 16:49:52 +11005056static int raid5_alloc_percpu(struct r5conf *conf)
Dan Williams36d1c642009-07-14 11:48:22 -07005057{
5058 unsigned long cpu;
5059 struct page *spare_page;
Tejun Heoa29d8b82010-02-02 14:39:15 +09005060 struct raid5_percpu __percpu *allcpus;
Dan Williamsd6f38f32009-07-14 11:50:52 -07005061 void *scribble;
Dan Williams36d1c642009-07-14 11:48:22 -07005062 int err;
5063
Dan Williams36d1c642009-07-14 11:48:22 -07005064 allcpus = alloc_percpu(struct raid5_percpu);
5065 if (!allcpus)
5066 return -ENOMEM;
5067 conf->percpu = allcpus;
5068
5069 get_online_cpus();
5070 err = 0;
5071 for_each_present_cpu(cpu) {
Dan Williamsd6f38f32009-07-14 11:50:52 -07005072 if (conf->level == 6) {
5073 spare_page = alloc_page(GFP_KERNEL);
5074 if (!spare_page) {
5075 err = -ENOMEM;
5076 break;
5077 }
5078 per_cpu_ptr(conf->percpu, cpu)->spare_page = spare_page;
5079 }
NeilBrown5e5e3e72009-10-16 16:35:30 +11005080 scribble = kmalloc(conf->scribble_len, GFP_KERNEL);
Dan Williamsd6f38f32009-07-14 11:50:52 -07005081 if (!scribble) {
Dan Williams36d1c642009-07-14 11:48:22 -07005082 err = -ENOMEM;
5083 break;
5084 }
Dan Williamsd6f38f32009-07-14 11:50:52 -07005085 per_cpu_ptr(conf->percpu, cpu)->scribble = scribble;
Dan Williams36d1c642009-07-14 11:48:22 -07005086 }
5087#ifdef CONFIG_HOTPLUG_CPU
5088 conf->cpu_notify.notifier_call = raid456_cpu_notify;
5089 conf->cpu_notify.priority = 0;
5090 if (err == 0)
5091 err = register_cpu_notifier(&conf->cpu_notify);
5092#endif
5093 put_online_cpus();
5094
5095 return err;
5096}
5097
NeilBrownd1688a62011-10-11 16:49:52 +11005098static struct r5conf *setup_conf(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005099{
NeilBrownd1688a62011-10-11 16:49:52 +11005100 struct r5conf *conf;
NeilBrown5e5e3e72009-10-16 16:35:30 +11005101 int raid_disk, memory, max_disks;
NeilBrown3cb03002011-10-11 16:45:26 +11005102 struct md_rdev *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005103 struct disk_info *disk;
NeilBrown02326052012-07-03 15:56:52 +10005104 char pers_name[6];
Linus Torvalds1da177e2005-04-16 15:20:36 -07005105
NeilBrown91adb562009-03-31 14:39:39 +11005106 if (mddev->new_level != 5
5107 && mddev->new_level != 4
5108 && mddev->new_level != 6) {
NeilBrown0c55e022010-05-03 14:09:02 +10005109 printk(KERN_ERR "md/raid:%s: raid level not set to 4/5/6 (%d)\n",
NeilBrown91adb562009-03-31 14:39:39 +11005110 mdname(mddev), mddev->new_level);
5111 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112 }
NeilBrown91adb562009-03-31 14:39:39 +11005113 if ((mddev->new_level == 5
5114 && !algorithm_valid_raid5(mddev->new_layout)) ||
5115 (mddev->new_level == 6
5116 && !algorithm_valid_raid6(mddev->new_layout))) {
NeilBrown0c55e022010-05-03 14:09:02 +10005117 printk(KERN_ERR "md/raid:%s: layout %d not supported\n",
NeilBrown91adb562009-03-31 14:39:39 +11005118 mdname(mddev), mddev->new_layout);
5119 return ERR_PTR(-EIO);
5120 }
5121 if (mddev->new_level == 6 && mddev->raid_disks < 4) {
NeilBrown0c55e022010-05-03 14:09:02 +10005122 printk(KERN_ERR "md/raid:%s: not enough configured devices (%d, minimum 4)\n",
NeilBrown91adb562009-03-31 14:39:39 +11005123 mdname(mddev), mddev->raid_disks);
5124 return ERR_PTR(-EINVAL);
NeilBrown99c0fb52009-03-31 14:39:38 +11005125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005126
Andre Noll664e7c42009-06-18 08:45:27 +10005127 if (!mddev->new_chunk_sectors ||
5128 (mddev->new_chunk_sectors << 9) % PAGE_SIZE ||
5129 !is_power_of_2(mddev->new_chunk_sectors)) {
NeilBrown0c55e022010-05-03 14:09:02 +10005130 printk(KERN_ERR "md/raid:%s: invalid chunk size %d\n",
5131 mdname(mddev), mddev->new_chunk_sectors << 9);
NeilBrown91adb562009-03-31 14:39:39 +11005132 return ERR_PTR(-EINVAL);
NeilBrown4bbf3772008-10-13 11:55:12 +11005133 }
5134
NeilBrownd1688a62011-10-11 16:49:52 +11005135 conf = kzalloc(sizeof(struct r5conf), GFP_KERNEL);
NeilBrown91adb562009-03-31 14:39:39 +11005136 if (conf == NULL)
5137 goto abort;
Dan Williamsf5efd452009-10-16 15:55:38 +11005138 spin_lock_init(&conf->device_lock);
5139 init_waitqueue_head(&conf->wait_for_stripe);
5140 init_waitqueue_head(&conf->wait_for_overlap);
5141 INIT_LIST_HEAD(&conf->handle_list);
5142 INIT_LIST_HEAD(&conf->hold_list);
5143 INIT_LIST_HEAD(&conf->delayed_list);
5144 INIT_LIST_HEAD(&conf->bitmap_list);
5145 INIT_LIST_HEAD(&conf->inactive_list);
5146 atomic_set(&conf->active_stripes, 0);
5147 atomic_set(&conf->preread_active_stripes, 0);
5148 atomic_set(&conf->active_aligned_reads, 0);
5149 conf->bypass_threshold = BYPASS_THRESHOLD;
NeilBrownd890fa22011-10-26 11:54:39 +11005150 conf->recovery_disabled = mddev->recovery_disabled - 1;
NeilBrown91adb562009-03-31 14:39:39 +11005151
5152 conf->raid_disks = mddev->raid_disks;
5153 if (mddev->reshape_position == MaxSector)
5154 conf->previous_raid_disks = mddev->raid_disks;
5155 else
5156 conf->previous_raid_disks = mddev->raid_disks - mddev->delta_disks;
NeilBrown5e5e3e72009-10-16 16:35:30 +11005157 max_disks = max(conf->raid_disks, conf->previous_raid_disks);
5158 conf->scribble_len = scribble_len(max_disks);
NeilBrown91adb562009-03-31 14:39:39 +11005159
NeilBrown5e5e3e72009-10-16 16:35:30 +11005160 conf->disks = kzalloc(max_disks * sizeof(struct disk_info),
NeilBrown91adb562009-03-31 14:39:39 +11005161 GFP_KERNEL);
5162 if (!conf->disks)
5163 goto abort;
5164
5165 conf->mddev = mddev;
5166
5167 if ((conf->stripe_hashtbl = kzalloc(PAGE_SIZE, GFP_KERNEL)) == NULL)
5168 goto abort;
5169
Dan Williams36d1c642009-07-14 11:48:22 -07005170 conf->level = mddev->new_level;
5171 if (raid5_alloc_percpu(conf) != 0)
5172 goto abort;
5173
NeilBrown0c55e022010-05-03 14:09:02 +10005174 pr_debug("raid456: run(%s) called.\n", mdname(mddev));
NeilBrown91adb562009-03-31 14:39:39 +11005175
NeilBrowndafb20f2012-03-19 12:46:39 +11005176 rdev_for_each(rdev, mddev) {
NeilBrown91adb562009-03-31 14:39:39 +11005177 raid_disk = rdev->raid_disk;
NeilBrown5e5e3e72009-10-16 16:35:30 +11005178 if (raid_disk >= max_disks
NeilBrown91adb562009-03-31 14:39:39 +11005179 || raid_disk < 0)
5180 continue;
5181 disk = conf->disks + raid_disk;
5182
NeilBrown17045f52011-12-23 10:17:53 +11005183 if (test_bit(Replacement, &rdev->flags)) {
5184 if (disk->replacement)
5185 goto abort;
5186 disk->replacement = rdev;
5187 } else {
5188 if (disk->rdev)
5189 goto abort;
5190 disk->rdev = rdev;
5191 }
NeilBrown91adb562009-03-31 14:39:39 +11005192
5193 if (test_bit(In_sync, &rdev->flags)) {
5194 char b[BDEVNAME_SIZE];
NeilBrown0c55e022010-05-03 14:09:02 +10005195 printk(KERN_INFO "md/raid:%s: device %s operational as raid"
5196 " disk %d\n",
5197 mdname(mddev), bdevname(rdev->bdev, b), raid_disk);
Jonathan Brassowd6b212f2011-06-08 18:00:28 -05005198 } else if (rdev->saved_raid_disk != raid_disk)
NeilBrown91adb562009-03-31 14:39:39 +11005199 /* Cannot rely on bitmap to complete recovery */
5200 conf->fullsync = 1;
5201 }
5202
Andre Noll09c9e5f2009-06-18 08:45:55 +10005203 conf->chunk_sectors = mddev->new_chunk_sectors;
NeilBrown91adb562009-03-31 14:39:39 +11005204 conf->level = mddev->new_level;
5205 if (conf->level == 6)
5206 conf->max_degraded = 2;
5207 else
5208 conf->max_degraded = 1;
5209 conf->algorithm = mddev->new_layout;
5210 conf->max_nr_stripes = NR_STRIPES;
NeilBrownfef9c612009-03-31 15:16:46 +11005211 conf->reshape_progress = mddev->reshape_position;
NeilBrowne183eae2009-03-31 15:20:22 +11005212 if (conf->reshape_progress != MaxSector) {
Andre Noll09c9e5f2009-06-18 08:45:55 +10005213 conf->prev_chunk_sectors = mddev->chunk_sectors;
NeilBrowne183eae2009-03-31 15:20:22 +11005214 conf->prev_algo = mddev->layout;
5215 }
NeilBrown91adb562009-03-31 14:39:39 +11005216
5217 memory = conf->max_nr_stripes * (sizeof(struct stripe_head) +
NeilBrown5e5e3e72009-10-16 16:35:30 +11005218 max_disks * ((sizeof(struct bio) + PAGE_SIZE))) / 1024;
NeilBrown91adb562009-03-31 14:39:39 +11005219 if (grow_stripes(conf, conf->max_nr_stripes)) {
5220 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10005221 "md/raid:%s: couldn't allocate %dkB for buffers\n",
5222 mdname(mddev), memory);
NeilBrown91adb562009-03-31 14:39:39 +11005223 goto abort;
5224 } else
NeilBrown0c55e022010-05-03 14:09:02 +10005225 printk(KERN_INFO "md/raid:%s: allocated %dkB\n",
5226 mdname(mddev), memory);
NeilBrown91adb562009-03-31 14:39:39 +11005227
NeilBrown02326052012-07-03 15:56:52 +10005228 sprintf(pers_name, "raid%d", mddev->new_level);
5229 conf->thread = md_register_thread(raid5d, mddev, pers_name);
NeilBrown91adb562009-03-31 14:39:39 +11005230 if (!conf->thread) {
5231 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10005232 "md/raid:%s: couldn't allocate thread.\n",
NeilBrown91adb562009-03-31 14:39:39 +11005233 mdname(mddev));
5234 goto abort;
5235 }
5236
5237 return conf;
5238
5239 abort:
5240 if (conf) {
Dan Williams95fc17a2009-07-31 12:39:15 +10005241 free_conf(conf);
NeilBrown91adb562009-03-31 14:39:39 +11005242 return ERR_PTR(-EIO);
5243 } else
5244 return ERR_PTR(-ENOMEM);
5245}
5246
NeilBrownc148ffd2009-11-13 17:47:00 +11005247
5248static int only_parity(int raid_disk, int algo, int raid_disks, int max_degraded)
5249{
5250 switch (algo) {
5251 case ALGORITHM_PARITY_0:
5252 if (raid_disk < max_degraded)
5253 return 1;
5254 break;
5255 case ALGORITHM_PARITY_N:
5256 if (raid_disk >= raid_disks - max_degraded)
5257 return 1;
5258 break;
5259 case ALGORITHM_PARITY_0_6:
5260 if (raid_disk == 0 ||
5261 raid_disk == raid_disks - 1)
5262 return 1;
5263 break;
5264 case ALGORITHM_LEFT_ASYMMETRIC_6:
5265 case ALGORITHM_RIGHT_ASYMMETRIC_6:
5266 case ALGORITHM_LEFT_SYMMETRIC_6:
5267 case ALGORITHM_RIGHT_SYMMETRIC_6:
5268 if (raid_disk == raid_disks - 1)
5269 return 1;
5270 }
5271 return 0;
5272}
5273
NeilBrownfd01b882011-10-11 16:47:53 +11005274static int run(struct mddev *mddev)
NeilBrown91adb562009-03-31 14:39:39 +11005275{
NeilBrownd1688a62011-10-11 16:49:52 +11005276 struct r5conf *conf;
NeilBrown9f7c2222010-07-26 12:04:13 +10005277 int working_disks = 0;
NeilBrownc148ffd2009-11-13 17:47:00 +11005278 int dirty_parity_disks = 0;
NeilBrown3cb03002011-10-11 16:45:26 +11005279 struct md_rdev *rdev;
NeilBrownc148ffd2009-11-13 17:47:00 +11005280 sector_t reshape_offset = 0;
NeilBrown17045f52011-12-23 10:17:53 +11005281 int i;
NeilBrownb5254dd2012-05-21 09:27:01 +10005282 long long min_offset_diff = 0;
5283 int first = 1;
NeilBrown91adb562009-03-31 14:39:39 +11005284
Andre Noll8c6ac862009-06-18 08:48:06 +10005285 if (mddev->recovery_cp != MaxSector)
NeilBrown0c55e022010-05-03 14:09:02 +10005286 printk(KERN_NOTICE "md/raid:%s: not clean"
Andre Noll8c6ac862009-06-18 08:48:06 +10005287 " -- starting background reconstruction\n",
5288 mdname(mddev));
NeilBrownb5254dd2012-05-21 09:27:01 +10005289
5290 rdev_for_each(rdev, mddev) {
5291 long long diff;
5292 if (rdev->raid_disk < 0)
5293 continue;
5294 diff = (rdev->new_data_offset - rdev->data_offset);
5295 if (first) {
5296 min_offset_diff = diff;
5297 first = 0;
5298 } else if (mddev->reshape_backwards &&
5299 diff < min_offset_diff)
5300 min_offset_diff = diff;
5301 else if (!mddev->reshape_backwards &&
5302 diff > min_offset_diff)
5303 min_offset_diff = diff;
5304 }
5305
NeilBrownf6705572006-03-27 01:18:11 -08005306 if (mddev->reshape_position != MaxSector) {
5307 /* Check that we can continue the reshape.
NeilBrownb5254dd2012-05-21 09:27:01 +10005308 * Difficulties arise if the stripe we would write to
5309 * next is at or after the stripe we would read from next.
5310 * For a reshape that changes the number of devices, this
5311 * is only possible for a very short time, and mdadm makes
5312 * sure that time appears to have past before assembling
5313 * the array. So we fail if that time hasn't passed.
5314 * For a reshape that keeps the number of devices the same
5315 * mdadm must be monitoring the reshape can keeping the
5316 * critical areas read-only and backed up. It will start
5317 * the array in read-only mode, so we check for that.
NeilBrownf6705572006-03-27 01:18:11 -08005318 */
5319 sector_t here_new, here_old;
5320 int old_disks;
Andre Noll18b00332009-03-31 15:00:56 +11005321 int max_degraded = (mddev->level == 6 ? 2 : 1);
NeilBrownf6705572006-03-27 01:18:11 -08005322
NeilBrown88ce4932009-03-31 15:24:23 +11005323 if (mddev->new_level != mddev->level) {
NeilBrown0c55e022010-05-03 14:09:02 +10005324 printk(KERN_ERR "md/raid:%s: unsupported reshape "
NeilBrownf4168852007-02-28 20:11:53 -08005325 "required - aborting.\n",
NeilBrownf6705572006-03-27 01:18:11 -08005326 mdname(mddev));
5327 return -EINVAL;
5328 }
NeilBrownf6705572006-03-27 01:18:11 -08005329 old_disks = mddev->raid_disks - mddev->delta_disks;
5330 /* reshape_position must be on a new-stripe boundary, and one
NeilBrownf4168852007-02-28 20:11:53 -08005331 * further up in new geometry must map after here in old
5332 * geometry.
NeilBrownf6705572006-03-27 01:18:11 -08005333 */
5334 here_new = mddev->reshape_position;
Andre Noll664e7c42009-06-18 08:45:27 +10005335 if (sector_div(here_new, mddev->new_chunk_sectors *
NeilBrownf4168852007-02-28 20:11:53 -08005336 (mddev->raid_disks - max_degraded))) {
NeilBrown0c55e022010-05-03 14:09:02 +10005337 printk(KERN_ERR "md/raid:%s: reshape_position not "
5338 "on a stripe boundary\n", mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08005339 return -EINVAL;
5340 }
NeilBrownc148ffd2009-11-13 17:47:00 +11005341 reshape_offset = here_new * mddev->new_chunk_sectors;
NeilBrownf6705572006-03-27 01:18:11 -08005342 /* here_new is the stripe we will write to */
5343 here_old = mddev->reshape_position;
Andre Noll9d8f0362009-06-18 08:45:01 +10005344 sector_div(here_old, mddev->chunk_sectors *
NeilBrownf4168852007-02-28 20:11:53 -08005345 (old_disks-max_degraded));
5346 /* here_old is the first stripe that we might need to read
5347 * from */
NeilBrown67ac6012009-08-13 10:06:24 +10005348 if (mddev->delta_disks == 0) {
NeilBrownb5254dd2012-05-21 09:27:01 +10005349 if ((here_new * mddev->new_chunk_sectors !=
5350 here_old * mddev->chunk_sectors)) {
5351 printk(KERN_ERR "md/raid:%s: reshape position is"
5352 " confused - aborting\n", mdname(mddev));
5353 return -EINVAL;
5354 }
NeilBrown67ac6012009-08-13 10:06:24 +10005355 /* We cannot be sure it is safe to start an in-place
NeilBrownb5254dd2012-05-21 09:27:01 +10005356 * reshape. It is only safe if user-space is monitoring
NeilBrown67ac6012009-08-13 10:06:24 +10005357 * and taking constant backups.
5358 * mdadm always starts a situation like this in
5359 * readonly mode so it can take control before
5360 * allowing any writes. So just check for that.
5361 */
NeilBrownb5254dd2012-05-21 09:27:01 +10005362 if (abs(min_offset_diff) >= mddev->chunk_sectors &&
5363 abs(min_offset_diff) >= mddev->new_chunk_sectors)
5364 /* not really in-place - so OK */;
5365 else if (mddev->ro == 0) {
5366 printk(KERN_ERR "md/raid:%s: in-place reshape "
5367 "must be started in read-only mode "
5368 "- aborting\n",
NeilBrown0c55e022010-05-03 14:09:02 +10005369 mdname(mddev));
NeilBrown67ac6012009-08-13 10:06:24 +10005370 return -EINVAL;
5371 }
NeilBrown2c810cd2012-05-21 09:27:00 +10005372 } else if (mddev->reshape_backwards
NeilBrownb5254dd2012-05-21 09:27:01 +10005373 ? (here_new * mddev->new_chunk_sectors + min_offset_diff <=
NeilBrown67ac6012009-08-13 10:06:24 +10005374 here_old * mddev->chunk_sectors)
5375 : (here_new * mddev->new_chunk_sectors >=
NeilBrownb5254dd2012-05-21 09:27:01 +10005376 here_old * mddev->chunk_sectors + (-min_offset_diff))) {
NeilBrownf6705572006-03-27 01:18:11 -08005377 /* Reading from the same stripe as writing to - bad */
NeilBrown0c55e022010-05-03 14:09:02 +10005378 printk(KERN_ERR "md/raid:%s: reshape_position too early for "
5379 "auto-recovery - aborting.\n",
5380 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08005381 return -EINVAL;
5382 }
NeilBrown0c55e022010-05-03 14:09:02 +10005383 printk(KERN_INFO "md/raid:%s: reshape will continue\n",
5384 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08005385 /* OK, we should be able to continue; */
NeilBrownf6705572006-03-27 01:18:11 -08005386 } else {
NeilBrown91adb562009-03-31 14:39:39 +11005387 BUG_ON(mddev->level != mddev->new_level);
5388 BUG_ON(mddev->layout != mddev->new_layout);
Andre Noll664e7c42009-06-18 08:45:27 +10005389 BUG_ON(mddev->chunk_sectors != mddev->new_chunk_sectors);
NeilBrown91adb562009-03-31 14:39:39 +11005390 BUG_ON(mddev->delta_disks != 0);
NeilBrownf6705572006-03-27 01:18:11 -08005391 }
5392
NeilBrown245f46c2009-03-31 14:39:39 +11005393 if (mddev->private == NULL)
5394 conf = setup_conf(mddev);
5395 else
5396 conf = mddev->private;
5397
NeilBrown91adb562009-03-31 14:39:39 +11005398 if (IS_ERR(conf))
5399 return PTR_ERR(conf);
NeilBrown9ffae0c2006-01-06 00:20:32 -08005400
NeilBrownb5254dd2012-05-21 09:27:01 +10005401 conf->min_offset_diff = min_offset_diff;
NeilBrown91adb562009-03-31 14:39:39 +11005402 mddev->thread = conf->thread;
5403 conf->thread = NULL;
5404 mddev->private = conf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005405
NeilBrown17045f52011-12-23 10:17:53 +11005406 for (i = 0; i < conf->raid_disks && conf->previous_raid_disks;
5407 i++) {
5408 rdev = conf->disks[i].rdev;
5409 if (!rdev && conf->disks[i].replacement) {
5410 /* The replacement is all we have yet */
5411 rdev = conf->disks[i].replacement;
5412 conf->disks[i].replacement = NULL;
5413 clear_bit(Replacement, &rdev->flags);
5414 conf->disks[i].rdev = rdev;
5415 }
5416 if (!rdev)
NeilBrownc148ffd2009-11-13 17:47:00 +11005417 continue;
NeilBrown17045f52011-12-23 10:17:53 +11005418 if (conf->disks[i].replacement &&
5419 conf->reshape_progress != MaxSector) {
5420 /* replacements and reshape simply do not mix. */
5421 printk(KERN_ERR "md: cannot handle concurrent "
5422 "replacement and reshape.\n");
5423 goto abort;
5424 }
NeilBrown2f115882010-06-17 17:41:03 +10005425 if (test_bit(In_sync, &rdev->flags)) {
NeilBrown91adb562009-03-31 14:39:39 +11005426 working_disks++;
NeilBrown2f115882010-06-17 17:41:03 +10005427 continue;
5428 }
NeilBrownc148ffd2009-11-13 17:47:00 +11005429 /* This disc is not fully in-sync. However if it
5430 * just stored parity (beyond the recovery_offset),
5431 * when we don't need to be concerned about the
5432 * array being dirty.
5433 * When reshape goes 'backwards', we never have
5434 * partially completed devices, so we only need
5435 * to worry about reshape going forwards.
5436 */
5437 /* Hack because v0.91 doesn't store recovery_offset properly. */
5438 if (mddev->major_version == 0 &&
5439 mddev->minor_version > 90)
5440 rdev->recovery_offset = reshape_offset;
5441
NeilBrownc148ffd2009-11-13 17:47:00 +11005442 if (rdev->recovery_offset < reshape_offset) {
5443 /* We need to check old and new layout */
5444 if (!only_parity(rdev->raid_disk,
5445 conf->algorithm,
5446 conf->raid_disks,
5447 conf->max_degraded))
5448 continue;
5449 }
5450 if (!only_parity(rdev->raid_disk,
5451 conf->prev_algo,
5452 conf->previous_raid_disks,
5453 conf->max_degraded))
5454 continue;
5455 dirty_parity_disks++;
5456 }
NeilBrown91adb562009-03-31 14:39:39 +11005457
NeilBrown17045f52011-12-23 10:17:53 +11005458 /*
5459 * 0 for a fully functional array, 1 or 2 for a degraded array.
5460 */
NeilBrown908f4fb2011-12-23 10:17:50 +11005461 mddev->degraded = calc_degraded(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005462
NeilBrown674806d2010-06-16 17:17:53 +10005463 if (has_failed(conf)) {
NeilBrown0c55e022010-05-03 14:09:02 +10005464 printk(KERN_ERR "md/raid:%s: not enough operational devices"
Linus Torvalds1da177e2005-04-16 15:20:36 -07005465 " (%d/%d failed)\n",
NeilBrown02c2de82006-10-03 01:15:47 -07005466 mdname(mddev), mddev->degraded, conf->raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005467 goto abort;
5468 }
5469
NeilBrown91adb562009-03-31 14:39:39 +11005470 /* device size must be a multiple of chunk size */
Andre Noll9d8f0362009-06-18 08:45:01 +10005471 mddev->dev_sectors &= ~(mddev->chunk_sectors - 1);
NeilBrown91adb562009-03-31 14:39:39 +11005472 mddev->resync_max_sectors = mddev->dev_sectors;
5473
NeilBrownc148ffd2009-11-13 17:47:00 +11005474 if (mddev->degraded > dirty_parity_disks &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005475 mddev->recovery_cp != MaxSector) {
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08005476 if (mddev->ok_start_degraded)
5477 printk(KERN_WARNING
NeilBrown0c55e022010-05-03 14:09:02 +10005478 "md/raid:%s: starting dirty degraded array"
5479 " - data corruption possible.\n",
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08005480 mdname(mddev));
5481 else {
5482 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10005483 "md/raid:%s: cannot start dirty degraded array.\n",
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08005484 mdname(mddev));
5485 goto abort;
5486 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005487 }
5488
Linus Torvalds1da177e2005-04-16 15:20:36 -07005489 if (mddev->degraded == 0)
NeilBrown0c55e022010-05-03 14:09:02 +10005490 printk(KERN_INFO "md/raid:%s: raid level %d active with %d out of %d"
5491 " devices, algorithm %d\n", mdname(mddev), conf->level,
NeilBrowne183eae2009-03-31 15:20:22 +11005492 mddev->raid_disks-mddev->degraded, mddev->raid_disks,
5493 mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005494 else
NeilBrown0c55e022010-05-03 14:09:02 +10005495 printk(KERN_ALERT "md/raid:%s: raid level %d active with %d"
5496 " out of %d devices, algorithm %d\n",
5497 mdname(mddev), conf->level,
5498 mddev->raid_disks - mddev->degraded,
5499 mddev->raid_disks, mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005500
5501 print_raid5_conf(conf);
5502
NeilBrownfef9c612009-03-31 15:16:46 +11005503 if (conf->reshape_progress != MaxSector) {
NeilBrownfef9c612009-03-31 15:16:46 +11005504 conf->reshape_safe = conf->reshape_progress;
NeilBrownf6705572006-03-27 01:18:11 -08005505 atomic_set(&conf->reshape_stripes, 0);
5506 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
5507 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
5508 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
5509 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
5510 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
NeilBrown0da3c612009-09-23 18:09:45 +10005511 "reshape");
NeilBrownf6705572006-03-27 01:18:11 -08005512 }
5513
Linus Torvalds1da177e2005-04-16 15:20:36 -07005514
5515 /* Ok, everything is just fine now */
NeilBrowna64c8762010-04-14 17:15:37 +10005516 if (mddev->to_remove == &raid5_attrs_group)
5517 mddev->to_remove = NULL;
NeilBrown00bcb4a2010-06-01 19:37:23 +10005518 else if (mddev->kobj.sd &&
5519 sysfs_create_group(&mddev->kobj, &raid5_attrs_group))
NeilBrown5e55e2f2007-03-26 21:32:14 -08005520 printk(KERN_WARNING
NeilBrown4a5add42010-06-01 19:37:28 +10005521 "raid5: failed to create sysfs attributes for %s\n",
NeilBrown5e55e2f2007-03-26 21:32:14 -08005522 mdname(mddev));
NeilBrown4a5add42010-06-01 19:37:28 +10005523 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
5524
5525 if (mddev->queue) {
NeilBrown9f7c2222010-07-26 12:04:13 +10005526 int chunk_size;
Shaohua Li620125f2012-10-11 13:49:05 +11005527 bool discard_supported = true;
NeilBrown4a5add42010-06-01 19:37:28 +10005528 /* read-ahead size must cover two whole stripes, which
5529 * is 2 * (datadisks) * chunksize where 'n' is the
5530 * number of raid devices
5531 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005532 int data_disks = conf->previous_raid_disks - conf->max_degraded;
5533 int stripe = data_disks *
5534 ((mddev->chunk_sectors << 9) / PAGE_SIZE);
5535 if (mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
5536 mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
NeilBrown4a5add42010-06-01 19:37:28 +10005537
5538 blk_queue_merge_bvec(mddev->queue, raid5_mergeable_bvec);
NeilBrown11d8a6e2010-07-26 11:57:07 +10005539
5540 mddev->queue->backing_dev_info.congested_data = mddev;
5541 mddev->queue->backing_dev_info.congested_fn = raid5_congested;
NeilBrown9f7c2222010-07-26 12:04:13 +10005542
5543 chunk_size = mddev->chunk_sectors << 9;
5544 blk_queue_io_min(mddev->queue, chunk_size);
5545 blk_queue_io_opt(mddev->queue, chunk_size *
5546 (conf->raid_disks - conf->max_degraded));
Shaohua Li620125f2012-10-11 13:49:05 +11005547 /*
5548 * We can only discard a whole stripe. It doesn't make sense to
5549 * discard data disk but write parity disk
5550 */
5551 stripe = stripe * PAGE_SIZE;
NeilBrown4ac68752012-11-19 13:11:26 +11005552 /* Round up to power of 2, as discard handling
5553 * currently assumes that */
5554 while ((stripe-1) & stripe)
5555 stripe = (stripe | (stripe-1)) + 1;
Shaohua Li620125f2012-10-11 13:49:05 +11005556 mddev->queue->limits.discard_alignment = stripe;
5557 mddev->queue->limits.discard_granularity = stripe;
5558 /*
5559 * unaligned part of discard request will be ignored, so can't
5560 * guarantee discard_zerors_data
5561 */
5562 mddev->queue->limits.discard_zeroes_data = 0;
NeilBrown9f7c2222010-07-26 12:04:13 +10005563
NeilBrown05616be2012-05-21 09:27:00 +10005564 rdev_for_each(rdev, mddev) {
NeilBrown9f7c2222010-07-26 12:04:13 +10005565 disk_stack_limits(mddev->gendisk, rdev->bdev,
5566 rdev->data_offset << 9);
NeilBrown05616be2012-05-21 09:27:00 +10005567 disk_stack_limits(mddev->gendisk, rdev->bdev,
5568 rdev->new_data_offset << 9);
Shaohua Li620125f2012-10-11 13:49:05 +11005569 /*
5570 * discard_zeroes_data is required, otherwise data
5571 * could be lost. Consider a scenario: discard a stripe
5572 * (the stripe could be inconsistent if
5573 * discard_zeroes_data is 0); write one disk of the
5574 * stripe (the stripe could be inconsistent again
5575 * depending on which disks are used to calculate
5576 * parity); the disk is broken; The stripe data of this
5577 * disk is lost.
5578 */
5579 if (!blk_queue_discard(bdev_get_queue(rdev->bdev)) ||
5580 !bdev_get_queue(rdev->bdev)->
5581 limits.discard_zeroes_data)
5582 discard_supported = false;
NeilBrown05616be2012-05-21 09:27:00 +10005583 }
Shaohua Li620125f2012-10-11 13:49:05 +11005584
5585 if (discard_supported &&
5586 mddev->queue->limits.max_discard_sectors >= stripe &&
5587 mddev->queue->limits.discard_granularity >= stripe)
5588 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD,
5589 mddev->queue);
5590 else
5591 queue_flag_clear_unlocked(QUEUE_FLAG_DISCARD,
5592 mddev->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005593 }
5594
Linus Torvalds1da177e2005-04-16 15:20:36 -07005595 return 0;
5596abort:
NeilBrown01f96c02011-09-21 15:30:20 +10005597 md_unregister_thread(&mddev->thread);
NeilBrowne4f869d2011-10-07 14:22:49 +11005598 print_raid5_conf(conf);
5599 free_conf(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005600 mddev->private = NULL;
NeilBrown0c55e022010-05-03 14:09:02 +10005601 printk(KERN_ALERT "md/raid:%s: failed to run raid set.\n", mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005602 return -EIO;
5603}
5604
NeilBrownfd01b882011-10-11 16:47:53 +11005605static int stop(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005606{
NeilBrownd1688a62011-10-11 16:49:52 +11005607 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005608
NeilBrown01f96c02011-09-21 15:30:20 +10005609 md_unregister_thread(&mddev->thread);
NeilBrown11d8a6e2010-07-26 11:57:07 +10005610 if (mddev->queue)
5611 mddev->queue->backing_dev_info.congested_fn = NULL;
Dan Williams95fc17a2009-07-31 12:39:15 +10005612 free_conf(conf);
NeilBrowna64c8762010-04-14 17:15:37 +10005613 mddev->private = NULL;
5614 mddev->to_remove = &raid5_attrs_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005615 return 0;
5616}
5617
NeilBrownfd01b882011-10-11 16:47:53 +11005618static void status(struct seq_file *seq, struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005619{
NeilBrownd1688a62011-10-11 16:49:52 +11005620 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005621 int i;
5622
Andre Noll9d8f0362009-06-18 08:45:01 +10005623 seq_printf(seq, " level %d, %dk chunk, algorithm %d", mddev->level,
5624 mddev->chunk_sectors / 2, mddev->layout);
NeilBrown02c2de82006-10-03 01:15:47 -07005625 seq_printf (seq, " [%d/%d] [", conf->raid_disks, conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005626 for (i = 0; i < conf->raid_disks; i++)
5627 seq_printf (seq, "%s",
5628 conf->disks[i].rdev &&
NeilBrownb2d444d2005-11-08 21:39:31 -08005629 test_bit(In_sync, &conf->disks[i].rdev->flags) ? "U" : "_");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005630 seq_printf (seq, "]");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005631}
5632
NeilBrownd1688a62011-10-11 16:49:52 +11005633static void print_raid5_conf (struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005634{
5635 int i;
5636 struct disk_info *tmp;
5637
NeilBrown0c55e022010-05-03 14:09:02 +10005638 printk(KERN_DEBUG "RAID conf printout:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005639 if (!conf) {
5640 printk("(conf==NULL)\n");
5641 return;
5642 }
NeilBrown0c55e022010-05-03 14:09:02 +10005643 printk(KERN_DEBUG " --- level:%d rd:%d wd:%d\n", conf->level,
5644 conf->raid_disks,
5645 conf->raid_disks - conf->mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005646
5647 for (i = 0; i < conf->raid_disks; i++) {
5648 char b[BDEVNAME_SIZE];
5649 tmp = conf->disks + i;
5650 if (tmp->rdev)
NeilBrown0c55e022010-05-03 14:09:02 +10005651 printk(KERN_DEBUG " disk %d, o:%d, dev:%s\n",
5652 i, !test_bit(Faulty, &tmp->rdev->flags),
5653 bdevname(tmp->rdev->bdev, b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005654 }
5655}
5656
NeilBrownfd01b882011-10-11 16:47:53 +11005657static int raid5_spare_active(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005658{
5659 int i;
NeilBrownd1688a62011-10-11 16:49:52 +11005660 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005661 struct disk_info *tmp;
NeilBrown6b965622010-08-18 11:56:59 +10005662 int count = 0;
5663 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005664
5665 for (i = 0; i < conf->raid_disks; i++) {
5666 tmp = conf->disks + i;
NeilBrowndd054fc2011-12-23 10:17:53 +11005667 if (tmp->replacement
5668 && tmp->replacement->recovery_offset == MaxSector
5669 && !test_bit(Faulty, &tmp->replacement->flags)
5670 && !test_and_set_bit(In_sync, &tmp->replacement->flags)) {
5671 /* Replacement has just become active. */
5672 if (!tmp->rdev
5673 || !test_and_clear_bit(In_sync, &tmp->rdev->flags))
5674 count++;
5675 if (tmp->rdev) {
5676 /* Replaced device not technically faulty,
5677 * but we need to be sure it gets removed
5678 * and never re-added.
5679 */
5680 set_bit(Faulty, &tmp->rdev->flags);
5681 sysfs_notify_dirent_safe(
5682 tmp->rdev->sysfs_state);
5683 }
5684 sysfs_notify_dirent_safe(tmp->replacement->sysfs_state);
5685 } else if (tmp->rdev
NeilBrown70fffd02010-06-16 17:01:25 +10005686 && tmp->rdev->recovery_offset == MaxSector
NeilBrownb2d444d2005-11-08 21:39:31 -08005687 && !test_bit(Faulty, &tmp->rdev->flags)
NeilBrownc04be0a2006-10-03 01:15:53 -07005688 && !test_and_set_bit(In_sync, &tmp->rdev->flags)) {
NeilBrown6b965622010-08-18 11:56:59 +10005689 count++;
Jonathan Brassow43c73ca2011-01-14 09:14:33 +11005690 sysfs_notify_dirent_safe(tmp->rdev->sysfs_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005691 }
5692 }
NeilBrown6b965622010-08-18 11:56:59 +10005693 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrown908f4fb2011-12-23 10:17:50 +11005694 mddev->degraded = calc_degraded(conf);
NeilBrown6b965622010-08-18 11:56:59 +10005695 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005696 print_raid5_conf(conf);
NeilBrown6b965622010-08-18 11:56:59 +10005697 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005698}
5699
NeilBrownb8321b62011-12-23 10:17:51 +11005700static int raid5_remove_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005701{
NeilBrownd1688a62011-10-11 16:49:52 +11005702 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005703 int err = 0;
NeilBrownb8321b62011-12-23 10:17:51 +11005704 int number = rdev->raid_disk;
NeilBrown657e3e42011-12-23 10:17:52 +11005705 struct md_rdev **rdevp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005706 struct disk_info *p = conf->disks + number;
5707
5708 print_raid5_conf(conf);
NeilBrown657e3e42011-12-23 10:17:52 +11005709 if (rdev == p->rdev)
5710 rdevp = &p->rdev;
5711 else if (rdev == p->replacement)
5712 rdevp = &p->replacement;
5713 else
5714 return 0;
NeilBrownec32a2b2009-03-31 15:17:38 +11005715
NeilBrown657e3e42011-12-23 10:17:52 +11005716 if (number >= conf->raid_disks &&
5717 conf->reshape_progress == MaxSector)
5718 clear_bit(In_sync, &rdev->flags);
5719
5720 if (test_bit(In_sync, &rdev->flags) ||
5721 atomic_read(&rdev->nr_pending)) {
5722 err = -EBUSY;
5723 goto abort;
5724 }
5725 /* Only remove non-faulty devices if recovery
5726 * isn't possible.
5727 */
5728 if (!test_bit(Faulty, &rdev->flags) &&
5729 mddev->recovery_disabled != conf->recovery_disabled &&
5730 !has_failed(conf) &&
NeilBrowndd054fc2011-12-23 10:17:53 +11005731 (!p->replacement || p->replacement == rdev) &&
NeilBrown657e3e42011-12-23 10:17:52 +11005732 number < conf->raid_disks) {
5733 err = -EBUSY;
5734 goto abort;
5735 }
5736 *rdevp = NULL;
5737 synchronize_rcu();
5738 if (atomic_read(&rdev->nr_pending)) {
5739 /* lost the race, try later */
5740 err = -EBUSY;
5741 *rdevp = rdev;
NeilBrowndd054fc2011-12-23 10:17:53 +11005742 } else if (p->replacement) {
5743 /* We must have just cleared 'rdev' */
5744 p->rdev = p->replacement;
5745 clear_bit(Replacement, &p->replacement->flags);
5746 smp_mb(); /* Make sure other CPUs may see both as identical
5747 * but will never see neither - if they are careful
5748 */
5749 p->replacement = NULL;
5750 clear_bit(WantReplacement, &rdev->flags);
5751 } else
5752 /* We might have just removed the Replacement as faulty-
5753 * clear the bit just in case
5754 */
5755 clear_bit(WantReplacement, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005756abort:
5757
5758 print_raid5_conf(conf);
5759 return err;
5760}
5761
NeilBrownfd01b882011-10-11 16:47:53 +11005762static int raid5_add_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005763{
NeilBrownd1688a62011-10-11 16:49:52 +11005764 struct r5conf *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10005765 int err = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005766 int disk;
5767 struct disk_info *p;
Neil Brown6c2fce22008-06-28 08:31:31 +10005768 int first = 0;
5769 int last = conf->raid_disks - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005770
NeilBrown7f0da592011-07-28 11:39:22 +10005771 if (mddev->recovery_disabled == conf->recovery_disabled)
5772 return -EBUSY;
5773
NeilBrowndc10c642012-03-19 12:46:37 +11005774 if (rdev->saved_raid_disk < 0 && has_failed(conf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005775 /* no point adding a device */
Neil Brown199050e2008-06-28 08:31:33 +10005776 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005777
Neil Brown6c2fce22008-06-28 08:31:31 +10005778 if (rdev->raid_disk >= 0)
5779 first = last = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005780
5781 /*
NeilBrown16a53ec2006-06-26 00:27:38 -07005782 * find the disk ... but prefer rdev->saved_raid_disk
5783 * if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005784 */
NeilBrown16a53ec2006-06-26 00:27:38 -07005785 if (rdev->saved_raid_disk >= 0 &&
Neil Brown6c2fce22008-06-28 08:31:31 +10005786 rdev->saved_raid_disk >= first &&
NeilBrown16a53ec2006-06-26 00:27:38 -07005787 conf->disks[rdev->saved_raid_disk].rdev == NULL)
NeilBrown5cfb22a2012-07-03 11:46:53 +10005788 first = rdev->saved_raid_disk;
5789
5790 for (disk = first; disk <= last; disk++) {
NeilBrown7bfec5f2011-12-23 10:17:53 +11005791 p = conf->disks + disk;
5792 if (p->rdev == NULL) {
NeilBrownb2d444d2005-11-08 21:39:31 -08005793 clear_bit(In_sync, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005794 rdev->raid_disk = disk;
Neil Brown199050e2008-06-28 08:31:33 +10005795 err = 0;
NeilBrown72626682005-09-09 16:23:54 -07005796 if (rdev->saved_raid_disk != disk)
5797 conf->fullsync = 1;
Suzanne Woodd6065f72005-11-08 21:39:27 -08005798 rcu_assign_pointer(p->rdev, rdev);
NeilBrown5cfb22a2012-07-03 11:46:53 +10005799 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005800 }
NeilBrown5cfb22a2012-07-03 11:46:53 +10005801 }
5802 for (disk = first; disk <= last; disk++) {
5803 p = conf->disks + disk;
NeilBrown7bfec5f2011-12-23 10:17:53 +11005804 if (test_bit(WantReplacement, &p->rdev->flags) &&
5805 p->replacement == NULL) {
5806 clear_bit(In_sync, &rdev->flags);
5807 set_bit(Replacement, &rdev->flags);
5808 rdev->raid_disk = disk;
5809 err = 0;
5810 conf->fullsync = 1;
5811 rcu_assign_pointer(p->replacement, rdev);
5812 break;
5813 }
5814 }
NeilBrown5cfb22a2012-07-03 11:46:53 +10005815out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005816 print_raid5_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10005817 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005818}
5819
NeilBrownfd01b882011-10-11 16:47:53 +11005820static int raid5_resize(struct mddev *mddev, sector_t sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005821{
5822 /* no resync is happening, and there is enough space
5823 * on all devices, so we can resize.
5824 * We need to make sure resync covers any new space.
5825 * If the array is shrinking we should possibly wait until
5826 * any io in the removed space completes, but it hardly seems
5827 * worth it.
5828 */
NeilBrowna4a61252012-05-22 13:55:27 +10005829 sector_t newsize;
Andre Noll9d8f0362009-06-18 08:45:01 +10005830 sectors &= ~((sector_t)mddev->chunk_sectors - 1);
NeilBrowna4a61252012-05-22 13:55:27 +10005831 newsize = raid5_size(mddev, sectors, mddev->raid_disks);
5832 if (mddev->external_size &&
5833 mddev->array_sectors > newsize)
Dan Williamsb522adc2009-03-31 15:00:31 +11005834 return -EINVAL;
NeilBrowna4a61252012-05-22 13:55:27 +10005835 if (mddev->bitmap) {
5836 int ret = bitmap_resize(mddev->bitmap, sectors, 0, 0);
5837 if (ret)
5838 return ret;
5839 }
5840 md_set_array_sectors(mddev, newsize);
Andre Nollf233ea52008-07-21 17:05:22 +10005841 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10005842 revalidate_disk(mddev->gendisk);
NeilBrownb0986362011-05-11 15:52:21 +10005843 if (sectors > mddev->dev_sectors &&
5844 mddev->recovery_cp > mddev->dev_sectors) {
Andre Noll58c0fed2009-03-31 14:33:13 +11005845 mddev->recovery_cp = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005846 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
5847 }
Andre Noll58c0fed2009-03-31 14:33:13 +11005848 mddev->dev_sectors = sectors;
NeilBrown4b5c7ae2005-07-27 11:43:28 -07005849 mddev->resync_max_sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005850 return 0;
5851}
5852
NeilBrownfd01b882011-10-11 16:47:53 +11005853static int check_stripe_cache(struct mddev *mddev)
NeilBrown01ee22b2009-06-18 08:47:20 +10005854{
5855 /* Can only proceed if there are plenty of stripe_heads.
5856 * We need a minimum of one full stripe,, and for sensible progress
5857 * it is best to have about 4 times that.
5858 * If we require 4 times, then the default 256 4K stripe_heads will
5859 * allow for chunk sizes up to 256K, which is probably OK.
5860 * If the chunk size is greater, user-space should request more
5861 * stripe_heads first.
5862 */
NeilBrownd1688a62011-10-11 16:49:52 +11005863 struct r5conf *conf = mddev->private;
NeilBrown01ee22b2009-06-18 08:47:20 +10005864 if (((mddev->chunk_sectors << 9) / STRIPE_SIZE) * 4
5865 > conf->max_nr_stripes ||
5866 ((mddev->new_chunk_sectors << 9) / STRIPE_SIZE) * 4
5867 > conf->max_nr_stripes) {
NeilBrown0c55e022010-05-03 14:09:02 +10005868 printk(KERN_WARNING "md/raid:%s: reshape: not enough stripes. Needed %lu\n",
5869 mdname(mddev),
NeilBrown01ee22b2009-06-18 08:47:20 +10005870 ((max(mddev->chunk_sectors, mddev->new_chunk_sectors) << 9)
5871 / STRIPE_SIZE)*4);
5872 return 0;
5873 }
5874 return 1;
5875}
5876
NeilBrownfd01b882011-10-11 16:47:53 +11005877static int check_reshape(struct mddev *mddev)
NeilBrown29269552006-03-27 01:18:10 -08005878{
NeilBrownd1688a62011-10-11 16:49:52 +11005879 struct r5conf *conf = mddev->private;
NeilBrown29269552006-03-27 01:18:10 -08005880
NeilBrown88ce4932009-03-31 15:24:23 +11005881 if (mddev->delta_disks == 0 &&
5882 mddev->new_layout == mddev->layout &&
Andre Noll664e7c42009-06-18 08:45:27 +10005883 mddev->new_chunk_sectors == mddev->chunk_sectors)
NeilBrown50ac1682009-06-18 08:47:55 +10005884 return 0; /* nothing to do */
NeilBrown674806d2010-06-16 17:17:53 +10005885 if (has_failed(conf))
NeilBrownec32a2b2009-03-31 15:17:38 +11005886 return -EINVAL;
5887 if (mddev->delta_disks < 0) {
5888 /* We might be able to shrink, but the devices must
5889 * be made bigger first.
5890 * For raid6, 4 is the minimum size.
5891 * Otherwise 2 is the minimum
5892 */
5893 int min = 2;
5894 if (mddev->level == 6)
5895 min = 4;
5896 if (mddev->raid_disks + mddev->delta_disks < min)
5897 return -EINVAL;
5898 }
NeilBrown29269552006-03-27 01:18:10 -08005899
NeilBrown01ee22b2009-06-18 08:47:20 +10005900 if (!check_stripe_cache(mddev))
NeilBrown29269552006-03-27 01:18:10 -08005901 return -ENOSPC;
NeilBrown29269552006-03-27 01:18:10 -08005902
NeilBrowne56108d62012-10-11 14:24:13 +11005903 return resize_stripes(conf, (conf->previous_raid_disks
5904 + mddev->delta_disks));
NeilBrown63c70c42006-03-27 01:18:13 -08005905}
5906
NeilBrownfd01b882011-10-11 16:47:53 +11005907static int raid5_start_reshape(struct mddev *mddev)
NeilBrown63c70c42006-03-27 01:18:13 -08005908{
NeilBrownd1688a62011-10-11 16:49:52 +11005909 struct r5conf *conf = mddev->private;
NeilBrown3cb03002011-10-11 16:45:26 +11005910 struct md_rdev *rdev;
NeilBrown63c70c42006-03-27 01:18:13 -08005911 int spares = 0;
NeilBrownc04be0a2006-10-03 01:15:53 -07005912 unsigned long flags;
NeilBrown63c70c42006-03-27 01:18:13 -08005913
NeilBrownf4168852007-02-28 20:11:53 -08005914 if (test_bit(MD_RECOVERY_RUNNING, &mddev->recovery))
NeilBrown63c70c42006-03-27 01:18:13 -08005915 return -EBUSY;
5916
NeilBrown01ee22b2009-06-18 08:47:20 +10005917 if (!check_stripe_cache(mddev))
5918 return -ENOSPC;
5919
NeilBrown30b67642012-05-22 13:55:28 +10005920 if (has_failed(conf))
5921 return -EINVAL;
5922
NeilBrownc6563a82012-05-21 09:27:00 +10005923 rdev_for_each(rdev, mddev) {
NeilBrown469518a2011-01-31 11:57:43 +11005924 if (!test_bit(In_sync, &rdev->flags)
5925 && !test_bit(Faulty, &rdev->flags))
NeilBrown29269552006-03-27 01:18:10 -08005926 spares++;
NeilBrownc6563a82012-05-21 09:27:00 +10005927 }
NeilBrown63c70c42006-03-27 01:18:13 -08005928
NeilBrownf4168852007-02-28 20:11:53 -08005929 if (spares - mddev->degraded < mddev->delta_disks - conf->max_degraded)
NeilBrown29269552006-03-27 01:18:10 -08005930 /* Not enough devices even to make a degraded array
5931 * of that size
5932 */
5933 return -EINVAL;
5934
NeilBrownec32a2b2009-03-31 15:17:38 +11005935 /* Refuse to reduce size of the array. Any reductions in
5936 * array size must be through explicit setting of array_size
5937 * attribute.
5938 */
5939 if (raid5_size(mddev, 0, conf->raid_disks + mddev->delta_disks)
5940 < mddev->array_sectors) {
NeilBrown0c55e022010-05-03 14:09:02 +10005941 printk(KERN_ERR "md/raid:%s: array size must be reduced "
NeilBrownec32a2b2009-03-31 15:17:38 +11005942 "before number of disks\n", mdname(mddev));
5943 return -EINVAL;
5944 }
5945
NeilBrownf6705572006-03-27 01:18:11 -08005946 atomic_set(&conf->reshape_stripes, 0);
NeilBrown29269552006-03-27 01:18:10 -08005947 spin_lock_irq(&conf->device_lock);
5948 conf->previous_raid_disks = conf->raid_disks;
NeilBrown63c70c42006-03-27 01:18:13 -08005949 conf->raid_disks += mddev->delta_disks;
Andre Noll09c9e5f2009-06-18 08:45:55 +10005950 conf->prev_chunk_sectors = conf->chunk_sectors;
5951 conf->chunk_sectors = mddev->new_chunk_sectors;
NeilBrown88ce4932009-03-31 15:24:23 +11005952 conf->prev_algo = conf->algorithm;
5953 conf->algorithm = mddev->new_layout;
NeilBrown05616be2012-05-21 09:27:00 +10005954 conf->generation++;
5955 /* Code that selects data_offset needs to see the generation update
5956 * if reshape_progress has been set - so a memory barrier needed.
5957 */
5958 smp_mb();
NeilBrown2c810cd2012-05-21 09:27:00 +10005959 if (mddev->reshape_backwards)
NeilBrownfef9c612009-03-31 15:16:46 +11005960 conf->reshape_progress = raid5_size(mddev, 0, 0);
5961 else
5962 conf->reshape_progress = 0;
5963 conf->reshape_safe = conf->reshape_progress;
NeilBrown29269552006-03-27 01:18:10 -08005964 spin_unlock_irq(&conf->device_lock);
5965
5966 /* Add some new drives, as many as will fit.
5967 * We know there are enough to make the newly sized array work.
NeilBrown3424bf62010-06-17 17:48:26 +10005968 * Don't add devices if we are reducing the number of
5969 * devices in the array. This is because it is not possible
5970 * to correctly record the "partially reconstructed" state of
5971 * such devices during the reshape and confusion could result.
NeilBrown29269552006-03-27 01:18:10 -08005972 */
NeilBrown87a8dec2011-01-31 11:57:43 +11005973 if (mddev->delta_disks >= 0) {
NeilBrowndafb20f2012-03-19 12:46:39 +11005974 rdev_for_each(rdev, mddev)
NeilBrown87a8dec2011-01-31 11:57:43 +11005975 if (rdev->raid_disk < 0 &&
5976 !test_bit(Faulty, &rdev->flags)) {
5977 if (raid5_add_disk(mddev, rdev) == 0) {
NeilBrown87a8dec2011-01-31 11:57:43 +11005978 if (rdev->raid_disk
NeilBrown9d4c7d82012-03-13 11:21:21 +11005979 >= conf->previous_raid_disks)
NeilBrown87a8dec2011-01-31 11:57:43 +11005980 set_bit(In_sync, &rdev->flags);
NeilBrown9d4c7d82012-03-13 11:21:21 +11005981 else
NeilBrown87a8dec2011-01-31 11:57:43 +11005982 rdev->recovery_offset = 0;
Namhyung Kim36fad852011-07-27 11:00:36 +10005983
5984 if (sysfs_link_rdev(mddev, rdev))
NeilBrown87a8dec2011-01-31 11:57:43 +11005985 /* Failure here is OK */;
NeilBrown50da0842011-01-31 11:57:43 +11005986 }
NeilBrown87a8dec2011-01-31 11:57:43 +11005987 } else if (rdev->raid_disk >= conf->previous_raid_disks
5988 && !test_bit(Faulty, &rdev->flags)) {
5989 /* This is a spare that was manually added */
5990 set_bit(In_sync, &rdev->flags);
NeilBrown87a8dec2011-01-31 11:57:43 +11005991 }
NeilBrown29269552006-03-27 01:18:10 -08005992
NeilBrown87a8dec2011-01-31 11:57:43 +11005993 /* When a reshape changes the number of devices,
5994 * ->degraded is measured against the larger of the
5995 * pre and post number of devices.
5996 */
NeilBrownec32a2b2009-03-31 15:17:38 +11005997 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrown908f4fb2011-12-23 10:17:50 +11005998 mddev->degraded = calc_degraded(conf);
NeilBrownec32a2b2009-03-31 15:17:38 +11005999 spin_unlock_irqrestore(&conf->device_lock, flags);
6000 }
NeilBrown63c70c42006-03-27 01:18:13 -08006001 mddev->raid_disks = conf->raid_disks;
NeilBrowne5164022009-08-03 10:59:57 +10006002 mddev->reshape_position = conf->reshape_progress;
NeilBrown850b2b42006-10-03 01:15:46 -07006003 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrownf6705572006-03-27 01:18:11 -08006004
NeilBrown29269552006-03-27 01:18:10 -08006005 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
6006 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
6007 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
6008 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
6009 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
NeilBrown0da3c612009-09-23 18:09:45 +10006010 "reshape");
NeilBrown29269552006-03-27 01:18:10 -08006011 if (!mddev->sync_thread) {
6012 mddev->recovery = 0;
6013 spin_lock_irq(&conf->device_lock);
6014 mddev->raid_disks = conf->raid_disks = conf->previous_raid_disks;
NeilBrown05616be2012-05-21 09:27:00 +10006015 rdev_for_each(rdev, mddev)
6016 rdev->new_data_offset = rdev->data_offset;
6017 smp_wmb();
NeilBrownfef9c612009-03-31 15:16:46 +11006018 conf->reshape_progress = MaxSector;
NeilBrown1e3fa9b2012-03-13 11:21:18 +11006019 mddev->reshape_position = MaxSector;
NeilBrown29269552006-03-27 01:18:10 -08006020 spin_unlock_irq(&conf->device_lock);
6021 return -EAGAIN;
6022 }
NeilBrownc8f517c2009-03-31 15:28:40 +11006023 conf->reshape_checkpoint = jiffies;
NeilBrown29269552006-03-27 01:18:10 -08006024 md_wakeup_thread(mddev->sync_thread);
6025 md_new_event(mddev);
6026 return 0;
6027}
NeilBrown29269552006-03-27 01:18:10 -08006028
NeilBrownec32a2b2009-03-31 15:17:38 +11006029/* This is called from the reshape thread and should make any
6030 * changes needed in 'conf'
6031 */
NeilBrownd1688a62011-10-11 16:49:52 +11006032static void end_reshape(struct r5conf *conf)
NeilBrown29269552006-03-27 01:18:10 -08006033{
NeilBrown29269552006-03-27 01:18:10 -08006034
NeilBrownf6705572006-03-27 01:18:11 -08006035 if (!test_bit(MD_RECOVERY_INTR, &conf->mddev->recovery)) {
NeilBrown05616be2012-05-21 09:27:00 +10006036 struct md_rdev *rdev;
Dan Williams80c3a6c2009-03-17 18:10:40 -07006037
NeilBrownf6705572006-03-27 01:18:11 -08006038 spin_lock_irq(&conf->device_lock);
NeilBrowncea9c222009-03-31 15:15:05 +11006039 conf->previous_raid_disks = conf->raid_disks;
NeilBrown05616be2012-05-21 09:27:00 +10006040 rdev_for_each(rdev, conf->mddev)
6041 rdev->data_offset = rdev->new_data_offset;
6042 smp_wmb();
NeilBrownfef9c612009-03-31 15:16:46 +11006043 conf->reshape_progress = MaxSector;
NeilBrownf6705572006-03-27 01:18:11 -08006044 spin_unlock_irq(&conf->device_lock);
NeilBrownb0f9ec02009-03-31 15:27:18 +11006045 wake_up(&conf->wait_for_overlap);
NeilBrown16a53ec2006-06-26 00:27:38 -07006046
6047 /* read-ahead size must cover two whole stripes, which is
6048 * 2 * (datadisks) * chunksize where 'n' is the number of raid devices
6049 */
NeilBrown4a5add42010-06-01 19:37:28 +10006050 if (conf->mddev->queue) {
NeilBrowncea9c222009-03-31 15:15:05 +11006051 int data_disks = conf->raid_disks - conf->max_degraded;
Andre Noll09c9e5f2009-06-18 08:45:55 +10006052 int stripe = data_disks * ((conf->chunk_sectors << 9)
NeilBrowncea9c222009-03-31 15:15:05 +11006053 / PAGE_SIZE);
NeilBrown16a53ec2006-06-26 00:27:38 -07006054 if (conf->mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
6055 conf->mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
6056 }
NeilBrown29269552006-03-27 01:18:10 -08006057 }
NeilBrown29269552006-03-27 01:18:10 -08006058}
6059
NeilBrownec32a2b2009-03-31 15:17:38 +11006060/* This is called from the raid5d thread with mddev_lock held.
6061 * It makes config changes to the device.
6062 */
NeilBrownfd01b882011-10-11 16:47:53 +11006063static void raid5_finish_reshape(struct mddev *mddev)
NeilBrowncea9c222009-03-31 15:15:05 +11006064{
NeilBrownd1688a62011-10-11 16:49:52 +11006065 struct r5conf *conf = mddev->private;
NeilBrowncea9c222009-03-31 15:15:05 +11006066
6067 if (!test_bit(MD_RECOVERY_INTR, &mddev->recovery)) {
6068
NeilBrownec32a2b2009-03-31 15:17:38 +11006069 if (mddev->delta_disks > 0) {
6070 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
6071 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10006072 revalidate_disk(mddev->gendisk);
NeilBrownec32a2b2009-03-31 15:17:38 +11006073 } else {
6074 int d;
NeilBrown908f4fb2011-12-23 10:17:50 +11006075 spin_lock_irq(&conf->device_lock);
6076 mddev->degraded = calc_degraded(conf);
6077 spin_unlock_irq(&conf->device_lock);
NeilBrownec32a2b2009-03-31 15:17:38 +11006078 for (d = conf->raid_disks ;
6079 d < conf->raid_disks - mddev->delta_disks;
NeilBrown1a67dde2009-08-13 10:41:49 +10006080 d++) {
NeilBrown3cb03002011-10-11 16:45:26 +11006081 struct md_rdev *rdev = conf->disks[d].rdev;
NeilBrownda7613b2012-05-22 13:55:33 +10006082 if (rdev)
6083 clear_bit(In_sync, &rdev->flags);
6084 rdev = conf->disks[d].replacement;
6085 if (rdev)
6086 clear_bit(In_sync, &rdev->flags);
NeilBrown1a67dde2009-08-13 10:41:49 +10006087 }
NeilBrowncea9c222009-03-31 15:15:05 +11006088 }
NeilBrown88ce4932009-03-31 15:24:23 +11006089 mddev->layout = conf->algorithm;
Andre Noll09c9e5f2009-06-18 08:45:55 +10006090 mddev->chunk_sectors = conf->chunk_sectors;
NeilBrownec32a2b2009-03-31 15:17:38 +11006091 mddev->reshape_position = MaxSector;
6092 mddev->delta_disks = 0;
NeilBrown2c810cd2012-05-21 09:27:00 +10006093 mddev->reshape_backwards = 0;
NeilBrowncea9c222009-03-31 15:15:05 +11006094 }
6095}
6096
NeilBrownfd01b882011-10-11 16:47:53 +11006097static void raid5_quiesce(struct mddev *mddev, int state)
NeilBrown72626682005-09-09 16:23:54 -07006098{
NeilBrownd1688a62011-10-11 16:49:52 +11006099 struct r5conf *conf = mddev->private;
NeilBrown72626682005-09-09 16:23:54 -07006100
6101 switch(state) {
NeilBrowne464eaf2006-03-27 01:18:14 -08006102 case 2: /* resume for a suspend */
6103 wake_up(&conf->wait_for_overlap);
6104 break;
6105
NeilBrown72626682005-09-09 16:23:54 -07006106 case 1: /* stop all writes */
6107 spin_lock_irq(&conf->device_lock);
NeilBrown64bd6602009-08-03 10:59:58 +10006108 /* '2' tells resync/reshape to pause so that all
6109 * active stripes can drain
6110 */
6111 conf->quiesce = 2;
NeilBrown72626682005-09-09 16:23:54 -07006112 wait_event_lock_irq(conf->wait_for_stripe,
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08006113 atomic_read(&conf->active_stripes) == 0 &&
6114 atomic_read(&conf->active_aligned_reads) == 0,
Lukas Czernereed8c022012-11-30 11:42:40 +01006115 conf->device_lock);
NeilBrown64bd6602009-08-03 10:59:58 +10006116 conf->quiesce = 1;
NeilBrown72626682005-09-09 16:23:54 -07006117 spin_unlock_irq(&conf->device_lock);
NeilBrown64bd6602009-08-03 10:59:58 +10006118 /* allow reshape to continue */
6119 wake_up(&conf->wait_for_overlap);
NeilBrown72626682005-09-09 16:23:54 -07006120 break;
6121
6122 case 0: /* re-enable writes */
6123 spin_lock_irq(&conf->device_lock);
6124 conf->quiesce = 0;
6125 wake_up(&conf->wait_for_stripe);
NeilBrowne464eaf2006-03-27 01:18:14 -08006126 wake_up(&conf->wait_for_overlap);
NeilBrown72626682005-09-09 16:23:54 -07006127 spin_unlock_irq(&conf->device_lock);
6128 break;
6129 }
NeilBrown72626682005-09-09 16:23:54 -07006130}
NeilBrownb15c2e52006-01-06 00:20:16 -08006131
NeilBrownd562b0c2009-03-31 14:39:39 +11006132
NeilBrownfd01b882011-10-11 16:47:53 +11006133static void *raid45_takeover_raid0(struct mddev *mddev, int level)
Trela Maciej54071b32010-03-08 16:02:42 +11006134{
NeilBrowne373ab12011-10-11 16:48:59 +11006135 struct r0conf *raid0_conf = mddev->private;
Randy Dunlapd76c8422011-04-21 09:07:26 -07006136 sector_t sectors;
Trela Maciej54071b32010-03-08 16:02:42 +11006137
Dan Williamsf1b29bc2010-05-01 18:09:05 -07006138 /* for raid0 takeover only one zone is supported */
NeilBrowne373ab12011-10-11 16:48:59 +11006139 if (raid0_conf->nr_strip_zones > 1) {
NeilBrown0c55e022010-05-03 14:09:02 +10006140 printk(KERN_ERR "md/raid:%s: cannot takeover raid0 with more than one zone.\n",
6141 mdname(mddev));
Dan Williamsf1b29bc2010-05-01 18:09:05 -07006142 return ERR_PTR(-EINVAL);
6143 }
6144
NeilBrowne373ab12011-10-11 16:48:59 +11006145 sectors = raid0_conf->strip_zone[0].zone_end;
6146 sector_div(sectors, raid0_conf->strip_zone[0].nb_dev);
NeilBrown3b71bd92011-04-20 15:38:18 +10006147 mddev->dev_sectors = sectors;
Dan Williamsf1b29bc2010-05-01 18:09:05 -07006148 mddev->new_level = level;
Trela Maciej54071b32010-03-08 16:02:42 +11006149 mddev->new_layout = ALGORITHM_PARITY_N;
6150 mddev->new_chunk_sectors = mddev->chunk_sectors;
6151 mddev->raid_disks += 1;
6152 mddev->delta_disks = 1;
6153 /* make sure it will be not marked as dirty */
6154 mddev->recovery_cp = MaxSector;
6155
6156 return setup_conf(mddev);
6157}
6158
6159
NeilBrownfd01b882011-10-11 16:47:53 +11006160static void *raid5_takeover_raid1(struct mddev *mddev)
NeilBrownd562b0c2009-03-31 14:39:39 +11006161{
6162 int chunksect;
6163
6164 if (mddev->raid_disks != 2 ||
6165 mddev->degraded > 1)
6166 return ERR_PTR(-EINVAL);
6167
6168 /* Should check if there are write-behind devices? */
6169
6170 chunksect = 64*2; /* 64K by default */
6171
6172 /* The array must be an exact multiple of chunksize */
6173 while (chunksect && (mddev->array_sectors & (chunksect-1)))
6174 chunksect >>= 1;
6175
6176 if ((chunksect<<9) < STRIPE_SIZE)
6177 /* array size does not allow a suitable chunk size */
6178 return ERR_PTR(-EINVAL);
6179
6180 mddev->new_level = 5;
6181 mddev->new_layout = ALGORITHM_LEFT_SYMMETRIC;
Andre Noll664e7c42009-06-18 08:45:27 +10006182 mddev->new_chunk_sectors = chunksect;
NeilBrownd562b0c2009-03-31 14:39:39 +11006183
6184 return setup_conf(mddev);
6185}
6186
NeilBrownfd01b882011-10-11 16:47:53 +11006187static void *raid5_takeover_raid6(struct mddev *mddev)
NeilBrownfc9739c2009-03-31 14:57:20 +11006188{
6189 int new_layout;
6190
6191 switch (mddev->layout) {
6192 case ALGORITHM_LEFT_ASYMMETRIC_6:
6193 new_layout = ALGORITHM_LEFT_ASYMMETRIC;
6194 break;
6195 case ALGORITHM_RIGHT_ASYMMETRIC_6:
6196 new_layout = ALGORITHM_RIGHT_ASYMMETRIC;
6197 break;
6198 case ALGORITHM_LEFT_SYMMETRIC_6:
6199 new_layout = ALGORITHM_LEFT_SYMMETRIC;
6200 break;
6201 case ALGORITHM_RIGHT_SYMMETRIC_6:
6202 new_layout = ALGORITHM_RIGHT_SYMMETRIC;
6203 break;
6204 case ALGORITHM_PARITY_0_6:
6205 new_layout = ALGORITHM_PARITY_0;
6206 break;
6207 case ALGORITHM_PARITY_N:
6208 new_layout = ALGORITHM_PARITY_N;
6209 break;
6210 default:
6211 return ERR_PTR(-EINVAL);
6212 }
6213 mddev->new_level = 5;
6214 mddev->new_layout = new_layout;
6215 mddev->delta_disks = -1;
6216 mddev->raid_disks -= 1;
6217 return setup_conf(mddev);
6218}
6219
NeilBrownd562b0c2009-03-31 14:39:39 +11006220
NeilBrownfd01b882011-10-11 16:47:53 +11006221static int raid5_check_reshape(struct mddev *mddev)
NeilBrownb3546032009-03-31 14:56:41 +11006222{
NeilBrown88ce4932009-03-31 15:24:23 +11006223 /* For a 2-drive array, the layout and chunk size can be changed
6224 * immediately as not restriping is needed.
6225 * For larger arrays we record the new value - after validation
6226 * to be used by a reshape pass.
NeilBrownb3546032009-03-31 14:56:41 +11006227 */
NeilBrownd1688a62011-10-11 16:49:52 +11006228 struct r5conf *conf = mddev->private;
NeilBrown597a7112009-06-18 08:47:42 +10006229 int new_chunk = mddev->new_chunk_sectors;
NeilBrownb3546032009-03-31 14:56:41 +11006230
NeilBrown597a7112009-06-18 08:47:42 +10006231 if (mddev->new_layout >= 0 && !algorithm_valid_raid5(mddev->new_layout))
NeilBrownb3546032009-03-31 14:56:41 +11006232 return -EINVAL;
6233 if (new_chunk > 0) {
Andre Noll0ba459d2009-06-18 08:46:10 +10006234 if (!is_power_of_2(new_chunk))
NeilBrownb3546032009-03-31 14:56:41 +11006235 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10006236 if (new_chunk < (PAGE_SIZE>>9))
NeilBrownb3546032009-03-31 14:56:41 +11006237 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10006238 if (mddev->array_sectors & (new_chunk-1))
NeilBrownb3546032009-03-31 14:56:41 +11006239 /* not factor of array size */
6240 return -EINVAL;
6241 }
6242
6243 /* They look valid */
6244
NeilBrown88ce4932009-03-31 15:24:23 +11006245 if (mddev->raid_disks == 2) {
NeilBrown597a7112009-06-18 08:47:42 +10006246 /* can make the change immediately */
6247 if (mddev->new_layout >= 0) {
6248 conf->algorithm = mddev->new_layout;
6249 mddev->layout = mddev->new_layout;
NeilBrown88ce4932009-03-31 15:24:23 +11006250 }
6251 if (new_chunk > 0) {
NeilBrown597a7112009-06-18 08:47:42 +10006252 conf->chunk_sectors = new_chunk ;
6253 mddev->chunk_sectors = new_chunk;
NeilBrown88ce4932009-03-31 15:24:23 +11006254 }
6255 set_bit(MD_CHANGE_DEVS, &mddev->flags);
6256 md_wakeup_thread(mddev->thread);
NeilBrownb3546032009-03-31 14:56:41 +11006257 }
NeilBrown50ac1682009-06-18 08:47:55 +10006258 return check_reshape(mddev);
NeilBrown88ce4932009-03-31 15:24:23 +11006259}
6260
NeilBrownfd01b882011-10-11 16:47:53 +11006261static int raid6_check_reshape(struct mddev *mddev)
NeilBrown88ce4932009-03-31 15:24:23 +11006262{
NeilBrown597a7112009-06-18 08:47:42 +10006263 int new_chunk = mddev->new_chunk_sectors;
NeilBrown50ac1682009-06-18 08:47:55 +10006264
NeilBrown597a7112009-06-18 08:47:42 +10006265 if (mddev->new_layout >= 0 && !algorithm_valid_raid6(mddev->new_layout))
NeilBrown88ce4932009-03-31 15:24:23 +11006266 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11006267 if (new_chunk > 0) {
Andre Noll0ba459d2009-06-18 08:46:10 +10006268 if (!is_power_of_2(new_chunk))
NeilBrown88ce4932009-03-31 15:24:23 +11006269 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10006270 if (new_chunk < (PAGE_SIZE >> 9))
NeilBrown88ce4932009-03-31 15:24:23 +11006271 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10006272 if (mddev->array_sectors & (new_chunk-1))
NeilBrown88ce4932009-03-31 15:24:23 +11006273 /* not factor of array size */
6274 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11006275 }
NeilBrown88ce4932009-03-31 15:24:23 +11006276
6277 /* They look valid */
NeilBrown50ac1682009-06-18 08:47:55 +10006278 return check_reshape(mddev);
NeilBrownb3546032009-03-31 14:56:41 +11006279}
6280
NeilBrownfd01b882011-10-11 16:47:53 +11006281static void *raid5_takeover(struct mddev *mddev)
NeilBrownd562b0c2009-03-31 14:39:39 +11006282{
6283 /* raid5 can take over:
Dan Williamsf1b29bc2010-05-01 18:09:05 -07006284 * raid0 - if there is only one strip zone - make it a raid4 layout
NeilBrownd562b0c2009-03-31 14:39:39 +11006285 * raid1 - if there are two drives. We need to know the chunk size
6286 * raid4 - trivial - just use a raid4 layout.
6287 * raid6 - Providing it is a *_6 layout
NeilBrownd562b0c2009-03-31 14:39:39 +11006288 */
Dan Williamsf1b29bc2010-05-01 18:09:05 -07006289 if (mddev->level == 0)
6290 return raid45_takeover_raid0(mddev, 5);
NeilBrownd562b0c2009-03-31 14:39:39 +11006291 if (mddev->level == 1)
6292 return raid5_takeover_raid1(mddev);
NeilBrowne9d47582009-03-31 14:57:09 +11006293 if (mddev->level == 4) {
6294 mddev->new_layout = ALGORITHM_PARITY_N;
6295 mddev->new_level = 5;
6296 return setup_conf(mddev);
6297 }
NeilBrownfc9739c2009-03-31 14:57:20 +11006298 if (mddev->level == 6)
6299 return raid5_takeover_raid6(mddev);
NeilBrownd562b0c2009-03-31 14:39:39 +11006300
6301 return ERR_PTR(-EINVAL);
6302}
6303
NeilBrownfd01b882011-10-11 16:47:53 +11006304static void *raid4_takeover(struct mddev *mddev)
NeilBrowna78d38a2010-03-22 16:53:49 +11006305{
Dan Williamsf1b29bc2010-05-01 18:09:05 -07006306 /* raid4 can take over:
6307 * raid0 - if there is only one strip zone
6308 * raid5 - if layout is right
NeilBrowna78d38a2010-03-22 16:53:49 +11006309 */
Dan Williamsf1b29bc2010-05-01 18:09:05 -07006310 if (mddev->level == 0)
6311 return raid45_takeover_raid0(mddev, 4);
NeilBrowna78d38a2010-03-22 16:53:49 +11006312 if (mddev->level == 5 &&
6313 mddev->layout == ALGORITHM_PARITY_N) {
6314 mddev->new_layout = 0;
6315 mddev->new_level = 4;
6316 return setup_conf(mddev);
6317 }
6318 return ERR_PTR(-EINVAL);
6319}
NeilBrownd562b0c2009-03-31 14:39:39 +11006320
NeilBrown84fc4b52011-10-11 16:49:58 +11006321static struct md_personality raid5_personality;
NeilBrown245f46c2009-03-31 14:39:39 +11006322
NeilBrownfd01b882011-10-11 16:47:53 +11006323static void *raid6_takeover(struct mddev *mddev)
NeilBrown245f46c2009-03-31 14:39:39 +11006324{
6325 /* Currently can only take over a raid5. We map the
6326 * personality to an equivalent raid6 personality
6327 * with the Q block at the end.
6328 */
6329 int new_layout;
6330
6331 if (mddev->pers != &raid5_personality)
6332 return ERR_PTR(-EINVAL);
6333 if (mddev->degraded > 1)
6334 return ERR_PTR(-EINVAL);
6335 if (mddev->raid_disks > 253)
6336 return ERR_PTR(-EINVAL);
6337 if (mddev->raid_disks < 3)
6338 return ERR_PTR(-EINVAL);
6339
6340 switch (mddev->layout) {
6341 case ALGORITHM_LEFT_ASYMMETRIC:
6342 new_layout = ALGORITHM_LEFT_ASYMMETRIC_6;
6343 break;
6344 case ALGORITHM_RIGHT_ASYMMETRIC:
6345 new_layout = ALGORITHM_RIGHT_ASYMMETRIC_6;
6346 break;
6347 case ALGORITHM_LEFT_SYMMETRIC:
6348 new_layout = ALGORITHM_LEFT_SYMMETRIC_6;
6349 break;
6350 case ALGORITHM_RIGHT_SYMMETRIC:
6351 new_layout = ALGORITHM_RIGHT_SYMMETRIC_6;
6352 break;
6353 case ALGORITHM_PARITY_0:
6354 new_layout = ALGORITHM_PARITY_0_6;
6355 break;
6356 case ALGORITHM_PARITY_N:
6357 new_layout = ALGORITHM_PARITY_N;
6358 break;
6359 default:
6360 return ERR_PTR(-EINVAL);
6361 }
6362 mddev->new_level = 6;
6363 mddev->new_layout = new_layout;
6364 mddev->delta_disks = 1;
6365 mddev->raid_disks += 1;
6366 return setup_conf(mddev);
6367}
6368
6369
NeilBrown84fc4b52011-10-11 16:49:58 +11006370static struct md_personality raid6_personality =
NeilBrown16a53ec2006-06-26 00:27:38 -07006371{
6372 .name = "raid6",
6373 .level = 6,
6374 .owner = THIS_MODULE,
6375 .make_request = make_request,
6376 .run = run,
6377 .stop = stop,
6378 .status = status,
6379 .error_handler = error,
6380 .hot_add_disk = raid5_add_disk,
6381 .hot_remove_disk= raid5_remove_disk,
6382 .spare_active = raid5_spare_active,
6383 .sync_request = sync_request,
6384 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07006385 .size = raid5_size,
NeilBrown50ac1682009-06-18 08:47:55 +10006386 .check_reshape = raid6_check_reshape,
NeilBrownf4168852007-02-28 20:11:53 -08006387 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11006388 .finish_reshape = raid5_finish_reshape,
NeilBrown16a53ec2006-06-26 00:27:38 -07006389 .quiesce = raid5_quiesce,
NeilBrown245f46c2009-03-31 14:39:39 +11006390 .takeover = raid6_takeover,
NeilBrown16a53ec2006-06-26 00:27:38 -07006391};
NeilBrown84fc4b52011-10-11 16:49:58 +11006392static struct md_personality raid5_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07006393{
6394 .name = "raid5",
NeilBrown2604b702006-01-06 00:20:36 -08006395 .level = 5,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006396 .owner = THIS_MODULE,
6397 .make_request = make_request,
6398 .run = run,
6399 .stop = stop,
6400 .status = status,
6401 .error_handler = error,
6402 .hot_add_disk = raid5_add_disk,
6403 .hot_remove_disk= raid5_remove_disk,
6404 .spare_active = raid5_spare_active,
6405 .sync_request = sync_request,
6406 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07006407 .size = raid5_size,
NeilBrown63c70c42006-03-27 01:18:13 -08006408 .check_reshape = raid5_check_reshape,
6409 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11006410 .finish_reshape = raid5_finish_reshape,
NeilBrown72626682005-09-09 16:23:54 -07006411 .quiesce = raid5_quiesce,
NeilBrownd562b0c2009-03-31 14:39:39 +11006412 .takeover = raid5_takeover,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006413};
6414
NeilBrown84fc4b52011-10-11 16:49:58 +11006415static struct md_personality raid4_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07006416{
NeilBrown2604b702006-01-06 00:20:36 -08006417 .name = "raid4",
6418 .level = 4,
6419 .owner = THIS_MODULE,
6420 .make_request = make_request,
6421 .run = run,
6422 .stop = stop,
6423 .status = status,
6424 .error_handler = error,
6425 .hot_add_disk = raid5_add_disk,
6426 .hot_remove_disk= raid5_remove_disk,
6427 .spare_active = raid5_spare_active,
6428 .sync_request = sync_request,
6429 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07006430 .size = raid5_size,
NeilBrown3d378902007-03-26 21:32:13 -08006431 .check_reshape = raid5_check_reshape,
6432 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11006433 .finish_reshape = raid5_finish_reshape,
NeilBrown2604b702006-01-06 00:20:36 -08006434 .quiesce = raid5_quiesce,
NeilBrowna78d38a2010-03-22 16:53:49 +11006435 .takeover = raid4_takeover,
NeilBrown2604b702006-01-06 00:20:36 -08006436};
6437
6438static int __init raid5_init(void)
6439{
NeilBrown16a53ec2006-06-26 00:27:38 -07006440 register_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08006441 register_md_personality(&raid5_personality);
6442 register_md_personality(&raid4_personality);
6443 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006444}
6445
NeilBrown2604b702006-01-06 00:20:36 -08006446static void raid5_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006447{
NeilBrown16a53ec2006-06-26 00:27:38 -07006448 unregister_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08006449 unregister_md_personality(&raid5_personality);
6450 unregister_md_personality(&raid4_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006451}
6452
6453module_init(raid5_init);
6454module_exit(raid5_exit);
6455MODULE_LICENSE("GPL");
NeilBrown0efb9e62009-12-14 12:49:58 +11006456MODULE_DESCRIPTION("RAID4/5/6 (striping with parity) personality for MD");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006457MODULE_ALIAS("md-personality-4"); /* RAID5 */
NeilBrownd9d166c2006-01-06 00:20:51 -08006458MODULE_ALIAS("md-raid5");
6459MODULE_ALIAS("md-raid4");
NeilBrown2604b702006-01-06 00:20:36 -08006460MODULE_ALIAS("md-level-5");
6461MODULE_ALIAS("md-level-4");
NeilBrown16a53ec2006-06-26 00:27:38 -07006462MODULE_ALIAS("md-personality-8"); /* RAID6 */
6463MODULE_ALIAS("md-raid6");
6464MODULE_ALIAS("md-level-6");
6465
6466/* This used to be two separate modules, they were: */
6467MODULE_ALIAS("raid5");
6468MODULE_ALIAS("raid6");