blob: 6ef1eeb68f7c470f763bf8953276dca20ad4895b [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>
NeilBrown43b2e5d2009-03-31 14:33:13 +110056#include "md.h"
NeilBrownbff61972009-03-31 14:33:13 +110057#include "raid5.h"
Trela Maciej54071b32010-03-08 16:02:42 +110058#include "raid0.h"
Christoph Hellwigef740c32009-03-31 14:27:03 +110059#include "bitmap.h"
NeilBrown72626682005-09-09 16:23:54 -070060
Linus Torvalds1da177e2005-04-16 15:20:36 -070061/*
62 * Stripe cache
63 */
64
65#define NR_STRIPES 256
66#define STRIPE_SIZE PAGE_SIZE
67#define STRIPE_SHIFT (PAGE_SHIFT - 9)
68#define STRIPE_SECTORS (STRIPE_SIZE>>9)
69#define IO_THRESHOLD 1
Dan Williams8b3e6cd2008-04-28 02:15:53 -070070#define BYPASS_THRESHOLD 1
NeilBrownfccddba2006-01-06 00:20:33 -080071#define NR_HASH (PAGE_SIZE / sizeof(struct hlist_head))
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#define HASH_MASK (NR_HASH - 1)
73
NeilBrownd1688a62011-10-11 16:49:52 +110074static inline struct hlist_head *stripe_hash(struct r5conf *conf, sector_t sect)
NeilBrowndb298e12011-10-07 14:23:00 +110075{
76 int hash = (sect >> STRIPE_SHIFT) & HASH_MASK;
77 return &conf->stripe_hashtbl[hash];
78}
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80/* bio's attached to a stripe+device for I/O are linked together in bi_sector
81 * order without overlap. There may be several bio's per stripe+device, and
82 * a bio could span several devices.
83 * When walking this list for a particular stripe+device, we must never proceed
84 * beyond a bio that extends past this device, as the next bio might no longer
85 * be valid.
NeilBrowndb298e12011-10-07 14:23:00 +110086 * This function is used to determine the 'next' bio in the list, given the sector
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 * of the current stripe+device
88 */
NeilBrowndb298e12011-10-07 14:23:00 +110089static inline struct bio *r5_next_bio(struct bio *bio, sector_t sector)
90{
91 int sectors = bio->bi_size >> 9;
92 if (bio->bi_sector + sectors < sector + STRIPE_SECTORS)
93 return bio->bi_next;
94 else
95 return NULL;
96}
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Jens Axboe960e7392008-08-15 10:41:18 +020098/*
Jens Axboe5b99c2f2008-08-15 10:56:11 +020099 * We maintain a biased count of active stripes in the bottom 16 bits of
100 * bi_phys_segments, and a count of processed stripes in the upper 16 bits
Jens Axboe960e7392008-08-15 10:41:18 +0200101 */
Shaohua Lie7836bd62012-07-19 16:01:31 +1000102static inline int raid5_bi_processed_stripes(struct bio *bio)
Jens Axboe960e7392008-08-15 10:41:18 +0200103{
Shaohua Lie7836bd62012-07-19 16:01:31 +1000104 atomic_t *segments = (atomic_t *)&bio->bi_phys_segments;
105 return (atomic_read(segments) >> 16) & 0xffff;
Jens Axboe960e7392008-08-15 10:41:18 +0200106}
107
Shaohua Lie7836bd62012-07-19 16:01:31 +1000108static inline int raid5_dec_bi_active_stripes(struct bio *bio)
Jens Axboe960e7392008-08-15 10:41:18 +0200109{
Shaohua Lie7836bd62012-07-19 16:01:31 +1000110 atomic_t *segments = (atomic_t *)&bio->bi_phys_segments;
111 return atomic_sub_return(1, segments) & 0xffff;
Jens Axboe960e7392008-08-15 10:41:18 +0200112}
113
Shaohua Lie7836bd62012-07-19 16:01:31 +1000114static inline void raid5_inc_bi_active_stripes(struct bio *bio)
Jens Axboe960e7392008-08-15 10:41:18 +0200115{
Shaohua Lie7836bd62012-07-19 16:01:31 +1000116 atomic_t *segments = (atomic_t *)&bio->bi_phys_segments;
117 atomic_inc(segments);
Jens Axboe960e7392008-08-15 10:41:18 +0200118}
119
Shaohua Lie7836bd62012-07-19 16:01:31 +1000120static inline void raid5_set_bi_processed_stripes(struct bio *bio,
121 unsigned int cnt)
Jens Axboe960e7392008-08-15 10:41:18 +0200122{
Shaohua Lie7836bd62012-07-19 16:01:31 +1000123 atomic_t *segments = (atomic_t *)&bio->bi_phys_segments;
124 int old, new;
Jens Axboe960e7392008-08-15 10:41:18 +0200125
Shaohua Lie7836bd62012-07-19 16:01:31 +1000126 do {
127 old = atomic_read(segments);
128 new = (old & 0xffff) | (cnt << 16);
129 } while (atomic_cmpxchg(segments, old, new) != old);
Jens Axboe960e7392008-08-15 10:41:18 +0200130}
131
Shaohua Lie7836bd62012-07-19 16:01:31 +1000132static inline void raid5_set_bi_stripes(struct bio *bio, unsigned int cnt)
Jens Axboe960e7392008-08-15 10:41:18 +0200133{
Shaohua Lie7836bd62012-07-19 16:01:31 +1000134 atomic_t *segments = (atomic_t *)&bio->bi_phys_segments;
135 atomic_set(segments, cnt);
Jens Axboe960e7392008-08-15 10:41:18 +0200136}
137
NeilBrownd0dabf72009-03-31 14:39:38 +1100138/* Find first data disk in a raid6 stripe */
139static inline int raid6_d0(struct stripe_head *sh)
140{
NeilBrown67cc2b82009-03-31 14:39:38 +1100141 if (sh->ddf_layout)
142 /* ddf always start from first device */
143 return 0;
144 /* md starts just after Q block */
NeilBrownd0dabf72009-03-31 14:39:38 +1100145 if (sh->qd_idx == sh->disks - 1)
146 return 0;
147 else
148 return sh->qd_idx + 1;
149}
NeilBrown16a53ec2006-06-26 00:27:38 -0700150static inline int raid6_next_disk(int disk, int raid_disks)
151{
152 disk++;
153 return (disk < raid_disks) ? disk : 0;
154}
Dan Williamsa4456852007-07-09 11:56:43 -0700155
NeilBrownd0dabf72009-03-31 14:39:38 +1100156/* When walking through the disks in a raid5, starting at raid6_d0,
157 * We need to map each disk to a 'slot', where the data disks are slot
158 * 0 .. raid_disks-3, the parity disk is raid_disks-2 and the Q disk
159 * is raid_disks-1. This help does that mapping.
160 */
NeilBrown67cc2b82009-03-31 14:39:38 +1100161static int raid6_idx_to_slot(int idx, struct stripe_head *sh,
162 int *count, int syndrome_disks)
NeilBrownd0dabf72009-03-31 14:39:38 +1100163{
Dan Williams66295422009-10-19 18:09:32 -0700164 int slot = *count;
NeilBrown67cc2b82009-03-31 14:39:38 +1100165
NeilBrowne4424fe2009-10-16 16:27:34 +1100166 if (sh->ddf_layout)
Dan Williams66295422009-10-19 18:09:32 -0700167 (*count)++;
NeilBrownd0dabf72009-03-31 14:39:38 +1100168 if (idx == sh->pd_idx)
NeilBrown67cc2b82009-03-31 14:39:38 +1100169 return syndrome_disks;
NeilBrownd0dabf72009-03-31 14:39:38 +1100170 if (idx == sh->qd_idx)
NeilBrown67cc2b82009-03-31 14:39:38 +1100171 return syndrome_disks + 1;
NeilBrowne4424fe2009-10-16 16:27:34 +1100172 if (!sh->ddf_layout)
Dan Williams66295422009-10-19 18:09:32 -0700173 (*count)++;
NeilBrownd0dabf72009-03-31 14:39:38 +1100174 return slot;
175}
176
Dan Williamsa4456852007-07-09 11:56:43 -0700177static void return_io(struct bio *return_bi)
178{
179 struct bio *bi = return_bi;
180 while (bi) {
Dan Williamsa4456852007-07-09 11:56:43 -0700181
182 return_bi = bi->bi_next;
183 bi->bi_next = NULL;
184 bi->bi_size = 0;
Neil Brown0e13fe232008-06-28 08:31:20 +1000185 bio_endio(bi, 0);
Dan Williamsa4456852007-07-09 11:56:43 -0700186 bi = return_bi;
187 }
188}
189
NeilBrownd1688a62011-10-11 16:49:52 +1100190static void print_raid5_conf (struct r5conf *conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Dan Williams600aa102008-06-28 08:32:05 +1000192static int stripe_operations_active(struct stripe_head *sh)
193{
194 return sh->check_state || sh->reconstruct_state ||
195 test_bit(STRIPE_BIOFILL_RUN, &sh->state) ||
196 test_bit(STRIPE_COMPUTE_RUN, &sh->state);
197}
198
Shaohua Li4eb788d2012-07-19 16:01:31 +1000199static void do_release_stripe(struct r5conf *conf, struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
Shaohua Li4eb788d2012-07-19 16:01:31 +1000201 BUG_ON(!list_empty(&sh->lru));
202 BUG_ON(atomic_read(&conf->active_stripes)==0);
203 if (test_bit(STRIPE_HANDLE, &sh->state)) {
204 if (test_bit(STRIPE_DELAYED, &sh->state) &&
205 !test_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
206 list_add_tail(&sh->lru, &conf->delayed_list);
207 else if (test_bit(STRIPE_BIT_DELAY, &sh->state) &&
208 sh->bm_seq - conf->seq_write > 0)
209 list_add_tail(&sh->lru, &conf->bitmap_list);
210 else {
211 clear_bit(STRIPE_DELAYED, &sh->state);
212 clear_bit(STRIPE_BIT_DELAY, &sh->state);
213 list_add_tail(&sh->lru, &conf->handle_list);
214 }
215 md_wakeup_thread(conf->mddev->thread);
216 } else {
217 BUG_ON(stripe_operations_active(sh));
218 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
219 if (atomic_dec_return(&conf->preread_active_stripes)
220 < IO_THRESHOLD)
221 md_wakeup_thread(conf->mddev->thread);
222 atomic_dec(&conf->active_stripes);
223 if (!test_bit(STRIPE_EXPANDING, &sh->state)) {
224 list_add_tail(&sh->lru, &conf->inactive_list);
225 wake_up(&conf->wait_for_stripe);
226 if (conf->retry_read_aligned)
227 md_wakeup_thread(conf->mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 }
229 }
230}
NeilBrownd0dabf72009-03-31 14:39:38 +1100231
Shaohua Li4eb788d2012-07-19 16:01:31 +1000232static void __release_stripe(struct r5conf *conf, struct stripe_head *sh)
233{
234 if (atomic_dec_and_test(&sh->count))
235 do_release_stripe(conf, sh);
236}
237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238static void release_stripe(struct stripe_head *sh)
239{
NeilBrownd1688a62011-10-11 16:49:52 +1100240 struct r5conf *conf = sh->raid_conf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 unsigned long flags;
NeilBrown16a53ec2006-06-26 00:27:38 -0700242
Shaohua Li4eb788d2012-07-19 16:01:31 +1000243 local_irq_save(flags);
244 if (atomic_dec_and_lock(&sh->count, &conf->device_lock)) {
245 do_release_stripe(conf, sh);
246 spin_unlock(&conf->device_lock);
247 }
248 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
250
NeilBrownfccddba2006-01-06 00:20:33 -0800251static inline void remove_hash(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
Dan Williams45b42332007-07-09 11:56:43 -0700253 pr_debug("remove_hash(), stripe %llu\n",
254 (unsigned long long)sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
NeilBrownfccddba2006-01-06 00:20:33 -0800256 hlist_del_init(&sh->hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}
258
NeilBrownd1688a62011-10-11 16:49:52 +1100259static inline void insert_hash(struct r5conf *conf, struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
NeilBrownfccddba2006-01-06 00:20:33 -0800261 struct hlist_head *hp = stripe_hash(conf, sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Dan Williams45b42332007-07-09 11:56:43 -0700263 pr_debug("insert_hash(), stripe %llu\n",
264 (unsigned long long)sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
NeilBrownfccddba2006-01-06 00:20:33 -0800266 hlist_add_head(&sh->hash, hp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
269
270/* find an idle stripe, make sure it is unhashed, and return it. */
NeilBrownd1688a62011-10-11 16:49:52 +1100271static struct stripe_head *get_free_stripe(struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
273 struct stripe_head *sh = NULL;
274 struct list_head *first;
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 if (list_empty(&conf->inactive_list))
277 goto out;
278 first = conf->inactive_list.next;
279 sh = list_entry(first, struct stripe_head, lru);
280 list_del_init(first);
281 remove_hash(sh);
282 atomic_inc(&conf->active_stripes);
283out:
284 return sh;
285}
286
NeilBrowne4e11e32010-06-16 16:45:16 +1000287static void shrink_buffers(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
289 struct page *p;
290 int i;
NeilBrowne4e11e32010-06-16 16:45:16 +1000291 int num = sh->raid_conf->pool_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
NeilBrowne4e11e32010-06-16 16:45:16 +1000293 for (i = 0; i < num ; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 p = sh->dev[i].page;
295 if (!p)
296 continue;
297 sh->dev[i].page = NULL;
NeilBrown2d1f3b52006-01-06 00:20:31 -0800298 put_page(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 }
300}
301
NeilBrowne4e11e32010-06-16 16:45:16 +1000302static int grow_buffers(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
304 int i;
NeilBrowne4e11e32010-06-16 16:45:16 +1000305 int num = sh->raid_conf->pool_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
NeilBrowne4e11e32010-06-16 16:45:16 +1000307 for (i = 0; i < num; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 struct page *page;
309
310 if (!(page = alloc_page(GFP_KERNEL))) {
311 return 1;
312 }
313 sh->dev[i].page = page;
314 }
315 return 0;
316}
317
NeilBrown784052e2009-03-31 15:19:07 +1100318static void raid5_build_block(struct stripe_head *sh, int i, int previous);
NeilBrownd1688a62011-10-11 16:49:52 +1100319static void stripe_set_idx(sector_t stripe, struct r5conf *conf, int previous,
NeilBrown911d4ee2009-03-31 14:39:38 +1100320 struct stripe_head *sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
NeilBrownb5663ba2009-03-31 14:39:38 +1100322static void init_stripe(struct stripe_head *sh, sector_t sector, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
NeilBrownd1688a62011-10-11 16:49:52 +1100324 struct r5conf *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800325 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +0200327 BUG_ON(atomic_read(&sh->count) != 0);
328 BUG_ON(test_bit(STRIPE_HANDLE, &sh->state));
Dan Williams600aa102008-06-28 08:32:05 +1000329 BUG_ON(stripe_operations_active(sh));
Dan Williamsd84e0f12007-01-02 13:52:30 -0700330
Dan Williams45b42332007-07-09 11:56:43 -0700331 pr_debug("init_stripe called, stripe %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 (unsigned long long)sh->sector);
333
334 remove_hash(sh);
NeilBrown16a53ec2006-06-26 00:27:38 -0700335
NeilBrown86b42c72009-03-31 15:19:03 +1100336 sh->generation = conf->generation - previous;
NeilBrownb5663ba2009-03-31 14:39:38 +1100337 sh->disks = previous ? conf->previous_raid_disks : conf->raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 sh->sector = sector;
NeilBrown911d4ee2009-03-31 14:39:38 +1100339 stripe_set_idx(sector, conf, previous, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 sh->state = 0;
341
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800342
343 for (i = sh->disks; i--; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 struct r5dev *dev = &sh->dev[i];
345
Dan Williamsd84e0f12007-01-02 13:52:30 -0700346 if (dev->toread || dev->read || dev->towrite || dev->written ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 test_bit(R5_LOCKED, &dev->flags)) {
Dan Williamsd84e0f12007-01-02 13:52:30 -0700348 printk(KERN_ERR "sector=%llx i=%d %p %p %p %p %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 (unsigned long long)sh->sector, i, dev->toread,
Dan Williamsd84e0f12007-01-02 13:52:30 -0700350 dev->read, dev->towrite, dev->written,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 test_bit(R5_LOCKED, &dev->flags));
NeilBrown8cfa7b02011-07-27 11:00:36 +1000352 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 }
354 dev->flags = 0;
NeilBrown784052e2009-03-31 15:19:07 +1100355 raid5_build_block(sh, i, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 }
357 insert_hash(conf, sh);
358}
359
NeilBrownd1688a62011-10-11 16:49:52 +1100360static struct stripe_head *__find_stripe(struct r5conf *conf, sector_t sector,
NeilBrown86b42c72009-03-31 15:19:03 +1100361 short generation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
363 struct stripe_head *sh;
NeilBrownfccddba2006-01-06 00:20:33 -0800364 struct hlist_node *hn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Dan Williams45b42332007-07-09 11:56:43 -0700366 pr_debug("__find_stripe, sector %llu\n", (unsigned long long)sector);
NeilBrownfccddba2006-01-06 00:20:33 -0800367 hlist_for_each_entry(sh, hn, stripe_hash(conf, sector), hash)
NeilBrown86b42c72009-03-31 15:19:03 +1100368 if (sh->sector == sector && sh->generation == generation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 return sh;
Dan Williams45b42332007-07-09 11:56:43 -0700370 pr_debug("__stripe %llu not in cache\n", (unsigned long long)sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 return NULL;
372}
373
NeilBrown674806d2010-06-16 17:17:53 +1000374/*
375 * Need to check if array has failed when deciding whether to:
376 * - start an array
377 * - remove non-faulty devices
378 * - add a spare
379 * - allow a reshape
380 * This determination is simple when no reshape is happening.
381 * However if there is a reshape, we need to carefully check
382 * both the before and after sections.
383 * This is because some failed devices may only affect one
384 * of the two sections, and some non-in_sync devices may
385 * be insync in the section most affected by failed devices.
386 */
NeilBrown908f4fb2011-12-23 10:17:50 +1100387static int calc_degraded(struct r5conf *conf)
NeilBrown674806d2010-06-16 17:17:53 +1000388{
NeilBrown908f4fb2011-12-23 10:17:50 +1100389 int degraded, degraded2;
NeilBrown674806d2010-06-16 17:17:53 +1000390 int i;
NeilBrown674806d2010-06-16 17:17:53 +1000391
392 rcu_read_lock();
393 degraded = 0;
394 for (i = 0; i < conf->previous_raid_disks; i++) {
NeilBrown3cb03002011-10-11 16:45:26 +1100395 struct md_rdev *rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrown674806d2010-06-16 17:17:53 +1000396 if (!rdev || test_bit(Faulty, &rdev->flags))
397 degraded++;
398 else if (test_bit(In_sync, &rdev->flags))
399 ;
400 else
401 /* not in-sync or faulty.
402 * If the reshape increases the number of devices,
403 * this is being recovered by the reshape, so
404 * this 'previous' section is not in_sync.
405 * If the number of devices is being reduced however,
406 * the device can only be part of the array if
407 * we are reverting a reshape, so this section will
408 * be in-sync.
409 */
410 if (conf->raid_disks >= conf->previous_raid_disks)
411 degraded++;
412 }
413 rcu_read_unlock();
NeilBrown908f4fb2011-12-23 10:17:50 +1100414 if (conf->raid_disks == conf->previous_raid_disks)
415 return degraded;
NeilBrown674806d2010-06-16 17:17:53 +1000416 rcu_read_lock();
NeilBrown908f4fb2011-12-23 10:17:50 +1100417 degraded2 = 0;
NeilBrown674806d2010-06-16 17:17:53 +1000418 for (i = 0; i < conf->raid_disks; i++) {
NeilBrown3cb03002011-10-11 16:45:26 +1100419 struct md_rdev *rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrown674806d2010-06-16 17:17:53 +1000420 if (!rdev || test_bit(Faulty, &rdev->flags))
NeilBrown908f4fb2011-12-23 10:17:50 +1100421 degraded2++;
NeilBrown674806d2010-06-16 17:17:53 +1000422 else if (test_bit(In_sync, &rdev->flags))
423 ;
424 else
425 /* not in-sync or faulty.
426 * If reshape increases the number of devices, this
427 * section has already been recovered, else it
428 * almost certainly hasn't.
429 */
430 if (conf->raid_disks <= conf->previous_raid_disks)
NeilBrown908f4fb2011-12-23 10:17:50 +1100431 degraded2++;
NeilBrown674806d2010-06-16 17:17:53 +1000432 }
433 rcu_read_unlock();
NeilBrown908f4fb2011-12-23 10:17:50 +1100434 if (degraded2 > degraded)
435 return degraded2;
436 return degraded;
437}
438
439static int has_failed(struct r5conf *conf)
440{
441 int degraded;
442
443 if (conf->mddev->reshape_position == MaxSector)
444 return conf->mddev->degraded > conf->max_degraded;
445
446 degraded = calc_degraded(conf);
NeilBrown674806d2010-06-16 17:17:53 +1000447 if (degraded > conf->max_degraded)
448 return 1;
449 return 0;
450}
451
NeilBrownb5663ba2009-03-31 14:39:38 +1100452static struct stripe_head *
NeilBrownd1688a62011-10-11 16:49:52 +1100453get_active_stripe(struct r5conf *conf, sector_t sector,
NeilBrowna8c906c2009-06-09 14:39:59 +1000454 int previous, int noblock, int noquiesce)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
456 struct stripe_head *sh;
457
Dan Williams45b42332007-07-09 11:56:43 -0700458 pr_debug("get_stripe, sector %llu\n", (unsigned long long)sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
460 spin_lock_irq(&conf->device_lock);
461
462 do {
NeilBrown72626682005-09-09 16:23:54 -0700463 wait_event_lock_irq(conf->wait_for_stripe,
NeilBrowna8c906c2009-06-09 14:39:59 +1000464 conf->quiesce == 0 || noquiesce,
NeilBrown72626682005-09-09 16:23:54 -0700465 conf->device_lock, /* nothing */);
NeilBrown86b42c72009-03-31 15:19:03 +1100466 sh = __find_stripe(conf, sector, conf->generation - previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 if (!sh) {
468 if (!conf->inactive_blocked)
469 sh = get_free_stripe(conf);
470 if (noblock && sh == NULL)
471 break;
472 if (!sh) {
473 conf->inactive_blocked = 1;
474 wait_event_lock_irq(conf->wait_for_stripe,
475 !list_empty(&conf->inactive_list) &&
NeilBrown50368052005-12-12 02:39:17 -0800476 (atomic_read(&conf->active_stripes)
477 < (conf->max_nr_stripes *3/4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 || !conf->inactive_blocked),
479 conf->device_lock,
NeilBrown7c13edc2011-04-18 18:25:43 +1000480 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 conf->inactive_blocked = 0;
482 } else
NeilBrownb5663ba2009-03-31 14:39:38 +1100483 init_stripe(sh, sector, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 } else {
485 if (atomic_read(&sh->count)) {
NeilBrownab69ae12009-03-31 15:26:47 +1100486 BUG_ON(!list_empty(&sh->lru)
487 && !test_bit(STRIPE_EXPANDING, &sh->state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 } else {
489 if (!test_bit(STRIPE_HANDLE, &sh->state))
490 atomic_inc(&conf->active_stripes);
NeilBrownff4e8d92006-07-10 04:44:16 -0700491 if (list_empty(&sh->lru) &&
492 !test_bit(STRIPE_EXPANDING, &sh->state))
NeilBrown16a53ec2006-06-26 00:27:38 -0700493 BUG();
494 list_del_init(&sh->lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 }
496 }
497 } while (sh == NULL);
498
499 if (sh)
500 atomic_inc(&sh->count);
501
502 spin_unlock_irq(&conf->device_lock);
503 return sh;
504}
505
NeilBrown05616be2012-05-21 09:27:00 +1000506/* Determine if 'data_offset' or 'new_data_offset' should be used
507 * in this stripe_head.
508 */
509static int use_new_offset(struct r5conf *conf, struct stripe_head *sh)
510{
511 sector_t progress = conf->reshape_progress;
512 /* Need a memory barrier to make sure we see the value
513 * of conf->generation, or ->data_offset that was set before
514 * reshape_progress was updated.
515 */
516 smp_rmb();
517 if (progress == MaxSector)
518 return 0;
519 if (sh->generation == conf->generation - 1)
520 return 0;
521 /* We are in a reshape, and this is a new-generation stripe,
522 * so use new_data_offset.
523 */
524 return 1;
525}
526
NeilBrown6712ecf2007-09-27 12:47:43 +0200527static void
528raid5_end_read_request(struct bio *bi, int error);
529static void
530raid5_end_write_request(struct bio *bi, int error);
Dan Williams91c00922007-01-02 13:52:30 -0700531
Dan Williamsc4e5ac02008-06-28 08:31:53 +1000532static void ops_run_io(struct stripe_head *sh, struct stripe_head_state *s)
Dan Williams91c00922007-01-02 13:52:30 -0700533{
NeilBrownd1688a62011-10-11 16:49:52 +1100534 struct r5conf *conf = sh->raid_conf;
Dan Williams91c00922007-01-02 13:52:30 -0700535 int i, disks = sh->disks;
536
537 might_sleep();
538
539 for (i = disks; i--; ) {
540 int rw;
NeilBrown9a3e1102011-12-23 10:17:53 +1100541 int replace_only = 0;
NeilBrown977df362011-12-23 10:17:53 +1100542 struct bio *bi, *rbi;
543 struct md_rdev *rdev, *rrdev = NULL;
Tejun Heoe9c74692010-09-03 11:56:18 +0200544 if (test_and_clear_bit(R5_Wantwrite, &sh->dev[i].flags)) {
545 if (test_and_clear_bit(R5_WantFUA, &sh->dev[i].flags))
546 rw = WRITE_FUA;
547 else
548 rw = WRITE;
549 } else if (test_and_clear_bit(R5_Wantread, &sh->dev[i].flags))
Dan Williams91c00922007-01-02 13:52:30 -0700550 rw = READ;
NeilBrown9a3e1102011-12-23 10:17:53 +1100551 else if (test_and_clear_bit(R5_WantReplace,
552 &sh->dev[i].flags)) {
553 rw = WRITE;
554 replace_only = 1;
555 } else
Dan Williams91c00922007-01-02 13:52:30 -0700556 continue;
Shaohua Libc0934f2012-05-22 13:55:05 +1000557 if (test_and_clear_bit(R5_SyncIO, &sh->dev[i].flags))
558 rw |= REQ_SYNC;
Dan Williams91c00922007-01-02 13:52:30 -0700559
560 bi = &sh->dev[i].req;
NeilBrown977df362011-12-23 10:17:53 +1100561 rbi = &sh->dev[i].rreq; /* For writing to replacement */
Dan Williams91c00922007-01-02 13:52:30 -0700562
563 bi->bi_rw = rw;
NeilBrown977df362011-12-23 10:17:53 +1100564 rbi->bi_rw = rw;
565 if (rw & WRITE) {
Dan Williams91c00922007-01-02 13:52:30 -0700566 bi->bi_end_io = raid5_end_write_request;
NeilBrown977df362011-12-23 10:17:53 +1100567 rbi->bi_end_io = raid5_end_write_request;
568 } else
Dan Williams91c00922007-01-02 13:52:30 -0700569 bi->bi_end_io = raid5_end_read_request;
570
571 rcu_read_lock();
NeilBrown9a3e1102011-12-23 10:17:53 +1100572 rrdev = rcu_dereference(conf->disks[i].replacement);
NeilBrowndd054fc2011-12-23 10:17:53 +1100573 smp_mb(); /* Ensure that if rrdev is NULL, rdev won't be */
574 rdev = rcu_dereference(conf->disks[i].rdev);
575 if (!rdev) {
576 rdev = rrdev;
577 rrdev = NULL;
578 }
NeilBrown9a3e1102011-12-23 10:17:53 +1100579 if (rw & WRITE) {
580 if (replace_only)
581 rdev = NULL;
NeilBrowndd054fc2011-12-23 10:17:53 +1100582 if (rdev == rrdev)
583 /* We raced and saw duplicates */
584 rrdev = NULL;
NeilBrown9a3e1102011-12-23 10:17:53 +1100585 } else {
NeilBrowndd054fc2011-12-23 10:17:53 +1100586 if (test_bit(R5_ReadRepl, &sh->dev[i].flags) && rrdev)
NeilBrown9a3e1102011-12-23 10:17:53 +1100587 rdev = rrdev;
588 rrdev = NULL;
589 }
NeilBrown977df362011-12-23 10:17:53 +1100590
Dan Williams91c00922007-01-02 13:52:30 -0700591 if (rdev && test_bit(Faulty, &rdev->flags))
592 rdev = NULL;
593 if (rdev)
594 atomic_inc(&rdev->nr_pending);
NeilBrown977df362011-12-23 10:17:53 +1100595 if (rrdev && test_bit(Faulty, &rrdev->flags))
596 rrdev = NULL;
597 if (rrdev)
598 atomic_inc(&rrdev->nr_pending);
Dan Williams91c00922007-01-02 13:52:30 -0700599 rcu_read_unlock();
600
NeilBrown73e92e52011-07-28 11:39:22 +1000601 /* We have already checked bad blocks for reads. Now
NeilBrown977df362011-12-23 10:17:53 +1100602 * need to check for writes. We never accept write errors
603 * on the replacement, so we don't to check rrdev.
NeilBrown73e92e52011-07-28 11:39:22 +1000604 */
605 while ((rw & WRITE) && rdev &&
606 test_bit(WriteErrorSeen, &rdev->flags)) {
607 sector_t first_bad;
608 int bad_sectors;
609 int bad = is_badblock(rdev, sh->sector, STRIPE_SECTORS,
610 &first_bad, &bad_sectors);
611 if (!bad)
612 break;
613
614 if (bad < 0) {
615 set_bit(BlockedBadBlocks, &rdev->flags);
616 if (!conf->mddev->external &&
617 conf->mddev->flags) {
618 /* It is very unlikely, but we might
619 * still need to write out the
620 * bad block log - better give it
621 * a chance*/
622 md_check_recovery(conf->mddev);
623 }
majianpeng18507532012-07-03 12:11:54 +1000624 /*
625 * Because md_wait_for_blocked_rdev
626 * will dec nr_pending, we must
627 * increment it first.
628 */
629 atomic_inc(&rdev->nr_pending);
NeilBrown73e92e52011-07-28 11:39:22 +1000630 md_wait_for_blocked_rdev(rdev, conf->mddev);
631 } else {
632 /* Acknowledged bad block - skip the write */
633 rdev_dec_pending(rdev, conf->mddev);
634 rdev = NULL;
635 }
636 }
637
Dan Williams91c00922007-01-02 13:52:30 -0700638 if (rdev) {
NeilBrown9a3e1102011-12-23 10:17:53 +1100639 if (s->syncing || s->expanding || s->expanded
640 || s->replacing)
Dan Williams91c00922007-01-02 13:52:30 -0700641 md_sync_acct(rdev->bdev, STRIPE_SECTORS);
642
Dan Williams2b7497f2008-06-28 08:31:52 +1000643 set_bit(STRIPE_IO_STARTED, &sh->state);
644
Dan Williams91c00922007-01-02 13:52:30 -0700645 bi->bi_bdev = rdev->bdev;
646 pr_debug("%s: for %llu schedule op %ld on disc %d\n",
Harvey Harrisone46b272b2008-04-28 02:15:50 -0700647 __func__, (unsigned long long)sh->sector,
Dan Williams91c00922007-01-02 13:52:30 -0700648 bi->bi_rw, i);
649 atomic_inc(&sh->count);
NeilBrown05616be2012-05-21 09:27:00 +1000650 if (use_new_offset(conf, sh))
651 bi->bi_sector = (sh->sector
652 + rdev->new_data_offset);
653 else
654 bi->bi_sector = (sh->sector
655 + rdev->data_offset);
Dan Williams91c00922007-01-02 13:52:30 -0700656 bi->bi_flags = 1 << BIO_UPTODATE;
Dan Williams91c00922007-01-02 13:52:30 -0700657 bi->bi_idx = 0;
Dan Williams91c00922007-01-02 13:52:30 -0700658 bi->bi_io_vec[0].bv_len = STRIPE_SIZE;
659 bi->bi_io_vec[0].bv_offset = 0;
660 bi->bi_size = STRIPE_SIZE;
661 bi->bi_next = NULL;
NeilBrown977df362011-12-23 10:17:53 +1100662 if (rrdev)
663 set_bit(R5_DOUBLE_LOCKED, &sh->dev[i].flags);
Dan Williams91c00922007-01-02 13:52:30 -0700664 generic_make_request(bi);
NeilBrown977df362011-12-23 10:17:53 +1100665 }
666 if (rrdev) {
NeilBrown9a3e1102011-12-23 10:17:53 +1100667 if (s->syncing || s->expanding || s->expanded
668 || s->replacing)
NeilBrown977df362011-12-23 10:17:53 +1100669 md_sync_acct(rrdev->bdev, STRIPE_SECTORS);
670
671 set_bit(STRIPE_IO_STARTED, &sh->state);
672
673 rbi->bi_bdev = rrdev->bdev;
674 pr_debug("%s: for %llu schedule op %ld on "
675 "replacement disc %d\n",
676 __func__, (unsigned long long)sh->sector,
677 rbi->bi_rw, i);
678 atomic_inc(&sh->count);
NeilBrown05616be2012-05-21 09:27:00 +1000679 if (use_new_offset(conf, sh))
680 rbi->bi_sector = (sh->sector
681 + rrdev->new_data_offset);
682 else
683 rbi->bi_sector = (sh->sector
684 + rrdev->data_offset);
NeilBrown977df362011-12-23 10:17:53 +1100685 rbi->bi_flags = 1 << BIO_UPTODATE;
686 rbi->bi_idx = 0;
687 rbi->bi_io_vec[0].bv_len = STRIPE_SIZE;
688 rbi->bi_io_vec[0].bv_offset = 0;
689 rbi->bi_size = STRIPE_SIZE;
690 rbi->bi_next = NULL;
691 generic_make_request(rbi);
692 }
693 if (!rdev && !rrdev) {
Namhyung Kimb0629622011-06-14 14:20:19 +1000694 if (rw & WRITE)
Dan Williams91c00922007-01-02 13:52:30 -0700695 set_bit(STRIPE_DEGRADED, &sh->state);
696 pr_debug("skip op %ld on disc %d for sector %llu\n",
697 bi->bi_rw, i, (unsigned long long)sh->sector);
698 clear_bit(R5_LOCKED, &sh->dev[i].flags);
699 set_bit(STRIPE_HANDLE, &sh->state);
700 }
701 }
702}
703
704static struct dma_async_tx_descriptor *
705async_copy_data(int frombio, struct bio *bio, struct page *page,
706 sector_t sector, struct dma_async_tx_descriptor *tx)
707{
708 struct bio_vec *bvl;
709 struct page *bio_page;
710 int i;
711 int page_offset;
Dan Williamsa08abd82009-06-03 11:43:59 -0700712 struct async_submit_ctl submit;
Dan Williams0403e382009-09-08 17:42:50 -0700713 enum async_tx_flags flags = 0;
Dan Williams91c00922007-01-02 13:52:30 -0700714
715 if (bio->bi_sector >= sector)
716 page_offset = (signed)(bio->bi_sector - sector) * 512;
717 else
718 page_offset = (signed)(sector - bio->bi_sector) * -512;
Dan Williamsa08abd82009-06-03 11:43:59 -0700719
Dan Williams0403e382009-09-08 17:42:50 -0700720 if (frombio)
721 flags |= ASYNC_TX_FENCE;
722 init_async_submit(&submit, flags, tx, NULL, NULL, NULL);
723
Dan Williams91c00922007-01-02 13:52:30 -0700724 bio_for_each_segment(bvl, bio, i) {
Namhyung Kimfcde9072011-06-14 14:23:57 +1000725 int len = bvl->bv_len;
Dan Williams91c00922007-01-02 13:52:30 -0700726 int clen;
727 int b_offset = 0;
728
729 if (page_offset < 0) {
730 b_offset = -page_offset;
731 page_offset += b_offset;
732 len -= b_offset;
733 }
734
735 if (len > 0 && page_offset + len > STRIPE_SIZE)
736 clen = STRIPE_SIZE - page_offset;
737 else
738 clen = len;
739
740 if (clen > 0) {
Namhyung Kimfcde9072011-06-14 14:23:57 +1000741 b_offset += bvl->bv_offset;
742 bio_page = bvl->bv_page;
Dan Williams91c00922007-01-02 13:52:30 -0700743 if (frombio)
744 tx = async_memcpy(page, bio_page, page_offset,
Dan Williamsa08abd82009-06-03 11:43:59 -0700745 b_offset, clen, &submit);
Dan Williams91c00922007-01-02 13:52:30 -0700746 else
747 tx = async_memcpy(bio_page, page, b_offset,
Dan Williamsa08abd82009-06-03 11:43:59 -0700748 page_offset, clen, &submit);
Dan Williams91c00922007-01-02 13:52:30 -0700749 }
Dan Williamsa08abd82009-06-03 11:43:59 -0700750 /* chain the operations */
751 submit.depend_tx = tx;
752
Dan Williams91c00922007-01-02 13:52:30 -0700753 if (clen < len) /* hit end of page */
754 break;
755 page_offset += len;
756 }
757
758 return tx;
759}
760
761static void ops_complete_biofill(void *stripe_head_ref)
762{
763 struct stripe_head *sh = stripe_head_ref;
764 struct bio *return_bi = NULL;
NeilBrownd1688a62011-10-11 16:49:52 +1100765 struct r5conf *conf = sh->raid_conf;
Dan Williamse4d84902007-09-24 10:06:13 -0700766 int i;
Dan Williams91c00922007-01-02 13:52:30 -0700767
Harvey Harrisone46b272b2008-04-28 02:15:50 -0700768 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700769 (unsigned long long)sh->sector);
770
771 /* clear completed biofills */
Dan Williams83de75c2008-06-28 08:31:58 +1000772 spin_lock_irq(&conf->device_lock);
Dan Williams91c00922007-01-02 13:52:30 -0700773 for (i = sh->disks; i--; ) {
774 struct r5dev *dev = &sh->dev[i];
Dan Williams91c00922007-01-02 13:52:30 -0700775
776 /* acknowledge completion of a biofill operation */
Dan Williamse4d84902007-09-24 10:06:13 -0700777 /* and check if we need to reply to a read request,
778 * new R5_Wantfill requests are held off until
Dan Williams83de75c2008-06-28 08:31:58 +1000779 * !STRIPE_BIOFILL_RUN
Dan Williamse4d84902007-09-24 10:06:13 -0700780 */
781 if (test_and_clear_bit(R5_Wantfill, &dev->flags)) {
Dan Williams91c00922007-01-02 13:52:30 -0700782 struct bio *rbi, *rbi2;
Dan Williams91c00922007-01-02 13:52:30 -0700783
Dan Williams91c00922007-01-02 13:52:30 -0700784 BUG_ON(!dev->read);
785 rbi = dev->read;
786 dev->read = NULL;
787 while (rbi && rbi->bi_sector <
788 dev->sector + STRIPE_SECTORS) {
789 rbi2 = r5_next_bio(rbi, dev->sector);
Shaohua Lie7836bd62012-07-19 16:01:31 +1000790 if (!raid5_dec_bi_active_stripes(rbi)) {
Dan Williams91c00922007-01-02 13:52:30 -0700791 rbi->bi_next = return_bi;
792 return_bi = rbi;
793 }
Dan Williams91c00922007-01-02 13:52:30 -0700794 rbi = rbi2;
795 }
796 }
797 }
Dan Williams83de75c2008-06-28 08:31:58 +1000798 spin_unlock_irq(&conf->device_lock);
799 clear_bit(STRIPE_BIOFILL_RUN, &sh->state);
Dan Williams91c00922007-01-02 13:52:30 -0700800
801 return_io(return_bi);
802
Dan Williamse4d84902007-09-24 10:06:13 -0700803 set_bit(STRIPE_HANDLE, &sh->state);
Dan Williams91c00922007-01-02 13:52:30 -0700804 release_stripe(sh);
805}
806
807static void ops_run_biofill(struct stripe_head *sh)
808{
809 struct dma_async_tx_descriptor *tx = NULL;
NeilBrownd1688a62011-10-11 16:49:52 +1100810 struct r5conf *conf = sh->raid_conf;
Dan Williamsa08abd82009-06-03 11:43:59 -0700811 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -0700812 int i;
813
Harvey Harrisone46b272b2008-04-28 02:15:50 -0700814 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700815 (unsigned long long)sh->sector);
816
817 for (i = sh->disks; i--; ) {
818 struct r5dev *dev = &sh->dev[i];
819 if (test_bit(R5_Wantfill, &dev->flags)) {
820 struct bio *rbi;
821 spin_lock_irq(&conf->device_lock);
822 dev->read = rbi = dev->toread;
823 dev->toread = NULL;
824 spin_unlock_irq(&conf->device_lock);
825 while (rbi && rbi->bi_sector <
826 dev->sector + STRIPE_SECTORS) {
827 tx = async_copy_data(0, rbi, dev->page,
828 dev->sector, tx);
829 rbi = r5_next_bio(rbi, dev->sector);
830 }
831 }
832 }
833
834 atomic_inc(&sh->count);
Dan Williamsa08abd82009-06-03 11:43:59 -0700835 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_biofill, sh, NULL);
836 async_trigger_callback(&submit);
Dan Williams91c00922007-01-02 13:52:30 -0700837}
838
Dan Williams4e7d2c02009-08-29 19:13:11 -0700839static void mark_target_uptodate(struct stripe_head *sh, int target)
840{
841 struct r5dev *tgt;
842
843 if (target < 0)
844 return;
845
846 tgt = &sh->dev[target];
847 set_bit(R5_UPTODATE, &tgt->flags);
848 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
849 clear_bit(R5_Wantcompute, &tgt->flags);
850}
851
Dan Williamsac6b53b2009-07-14 13:40:19 -0700852static void ops_complete_compute(void *stripe_head_ref)
Dan Williams91c00922007-01-02 13:52:30 -0700853{
854 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -0700855
Harvey Harrisone46b272b2008-04-28 02:15:50 -0700856 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700857 (unsigned long long)sh->sector);
858
Dan Williamsac6b53b2009-07-14 13:40:19 -0700859 /* mark the computed target(s) as uptodate */
Dan Williams4e7d2c02009-08-29 19:13:11 -0700860 mark_target_uptodate(sh, sh->ops.target);
Dan Williamsac6b53b2009-07-14 13:40:19 -0700861 mark_target_uptodate(sh, sh->ops.target2);
Dan Williams4e7d2c02009-08-29 19:13:11 -0700862
Dan Williamsecc65c92008-06-28 08:31:57 +1000863 clear_bit(STRIPE_COMPUTE_RUN, &sh->state);
864 if (sh->check_state == check_state_compute_run)
865 sh->check_state = check_state_compute_result;
Dan Williams91c00922007-01-02 13:52:30 -0700866 set_bit(STRIPE_HANDLE, &sh->state);
867 release_stripe(sh);
868}
869
Dan Williamsd6f38f32009-07-14 11:50:52 -0700870/* return a pointer to the address conversion region of the scribble buffer */
871static addr_conv_t *to_addr_conv(struct stripe_head *sh,
872 struct raid5_percpu *percpu)
Dan Williams91c00922007-01-02 13:52:30 -0700873{
Dan Williamsd6f38f32009-07-14 11:50:52 -0700874 return percpu->scribble + sizeof(struct page *) * (sh->disks + 2);
875}
876
877static struct dma_async_tx_descriptor *
878ops_run_compute5(struct stripe_head *sh, struct raid5_percpu *percpu)
879{
Dan Williams91c00922007-01-02 13:52:30 -0700880 int disks = sh->disks;
Dan Williamsd6f38f32009-07-14 11:50:52 -0700881 struct page **xor_srcs = percpu->scribble;
Dan Williams91c00922007-01-02 13:52:30 -0700882 int target = sh->ops.target;
883 struct r5dev *tgt = &sh->dev[target];
884 struct page *xor_dest = tgt->page;
885 int count = 0;
886 struct dma_async_tx_descriptor *tx;
Dan Williamsa08abd82009-06-03 11:43:59 -0700887 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -0700888 int i;
889
890 pr_debug("%s: stripe %llu block: %d\n",
Harvey Harrisone46b272b2008-04-28 02:15:50 -0700891 __func__, (unsigned long long)sh->sector, target);
Dan Williams91c00922007-01-02 13:52:30 -0700892 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
893
894 for (i = disks; i--; )
895 if (i != target)
896 xor_srcs[count++] = sh->dev[i].page;
897
898 atomic_inc(&sh->count);
899
Dan Williams0403e382009-09-08 17:42:50 -0700900 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST, NULL,
Dan Williamsac6b53b2009-07-14 13:40:19 -0700901 ops_complete_compute, sh, to_addr_conv(sh, percpu));
Dan Williams91c00922007-01-02 13:52:30 -0700902 if (unlikely(count == 1))
Dan Williamsa08abd82009-06-03 11:43:59 -0700903 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -0700904 else
Dan Williamsa08abd82009-06-03 11:43:59 -0700905 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -0700906
Dan Williams91c00922007-01-02 13:52:30 -0700907 return tx;
908}
909
Dan Williamsac6b53b2009-07-14 13:40:19 -0700910/* set_syndrome_sources - populate source buffers for gen_syndrome
911 * @srcs - (struct page *) array of size sh->disks
912 * @sh - stripe_head to parse
913 *
914 * Populates srcs in proper layout order for the stripe and returns the
915 * 'count' of sources to be used in a call to async_gen_syndrome. The P
916 * destination buffer is recorded in srcs[count] and the Q destination
917 * is recorded in srcs[count+1]].
918 */
919static int set_syndrome_sources(struct page **srcs, struct stripe_head *sh)
920{
921 int disks = sh->disks;
922 int syndrome_disks = sh->ddf_layout ? disks : (disks - 2);
923 int d0_idx = raid6_d0(sh);
924 int count;
925 int i;
926
927 for (i = 0; i < disks; i++)
NeilBrown5dd33c92009-10-16 16:40:25 +1100928 srcs[i] = NULL;
Dan Williamsac6b53b2009-07-14 13:40:19 -0700929
930 count = 0;
931 i = d0_idx;
932 do {
933 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
934
935 srcs[slot] = sh->dev[i].page;
936 i = raid6_next_disk(i, disks);
937 } while (i != d0_idx);
Dan Williamsac6b53b2009-07-14 13:40:19 -0700938
NeilBrowne4424fe2009-10-16 16:27:34 +1100939 return syndrome_disks;
Dan Williamsac6b53b2009-07-14 13:40:19 -0700940}
941
942static struct dma_async_tx_descriptor *
943ops_run_compute6_1(struct stripe_head *sh, struct raid5_percpu *percpu)
944{
945 int disks = sh->disks;
946 struct page **blocks = percpu->scribble;
947 int target;
948 int qd_idx = sh->qd_idx;
949 struct dma_async_tx_descriptor *tx;
950 struct async_submit_ctl submit;
951 struct r5dev *tgt;
952 struct page *dest;
953 int i;
954 int count;
955
956 if (sh->ops.target < 0)
957 target = sh->ops.target2;
958 else if (sh->ops.target2 < 0)
959 target = sh->ops.target;
960 else
961 /* we should only have one valid target */
962 BUG();
963 BUG_ON(target < 0);
964 pr_debug("%s: stripe %llu block: %d\n",
965 __func__, (unsigned long long)sh->sector, target);
966
967 tgt = &sh->dev[target];
968 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
969 dest = tgt->page;
970
971 atomic_inc(&sh->count);
972
973 if (target == qd_idx) {
974 count = set_syndrome_sources(blocks, sh);
975 blocks[count] = NULL; /* regenerating p is not necessary */
976 BUG_ON(blocks[count+1] != dest); /* q should already be set */
Dan Williams0403e382009-09-08 17:42:50 -0700977 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
978 ops_complete_compute, sh,
Dan Williamsac6b53b2009-07-14 13:40:19 -0700979 to_addr_conv(sh, percpu));
980 tx = async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
981 } else {
982 /* Compute any data- or p-drive using XOR */
983 count = 0;
984 for (i = disks; i-- ; ) {
985 if (i == target || i == qd_idx)
986 continue;
987 blocks[count++] = sh->dev[i].page;
988 }
989
Dan Williams0403e382009-09-08 17:42:50 -0700990 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
991 NULL, ops_complete_compute, sh,
Dan Williamsac6b53b2009-07-14 13:40:19 -0700992 to_addr_conv(sh, percpu));
993 tx = async_xor(dest, blocks, 0, count, STRIPE_SIZE, &submit);
994 }
995
996 return tx;
997}
998
999static struct dma_async_tx_descriptor *
1000ops_run_compute6_2(struct stripe_head *sh, struct raid5_percpu *percpu)
1001{
1002 int i, count, disks = sh->disks;
1003 int syndrome_disks = sh->ddf_layout ? disks : disks-2;
1004 int d0_idx = raid6_d0(sh);
1005 int faila = -1, failb = -1;
1006 int target = sh->ops.target;
1007 int target2 = sh->ops.target2;
1008 struct r5dev *tgt = &sh->dev[target];
1009 struct r5dev *tgt2 = &sh->dev[target2];
1010 struct dma_async_tx_descriptor *tx;
1011 struct page **blocks = percpu->scribble;
1012 struct async_submit_ctl submit;
1013
1014 pr_debug("%s: stripe %llu block1: %d block2: %d\n",
1015 __func__, (unsigned long long)sh->sector, target, target2);
1016 BUG_ON(target < 0 || target2 < 0);
1017 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
1018 BUG_ON(!test_bit(R5_Wantcompute, &tgt2->flags));
1019
Dan Williams6c910a72009-09-16 12:24:54 -07001020 /* we need to open-code set_syndrome_sources to handle the
Dan Williamsac6b53b2009-07-14 13:40:19 -07001021 * slot number conversion for 'faila' and 'failb'
1022 */
1023 for (i = 0; i < disks ; i++)
NeilBrown5dd33c92009-10-16 16:40:25 +11001024 blocks[i] = NULL;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001025 count = 0;
1026 i = d0_idx;
1027 do {
1028 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
1029
1030 blocks[slot] = sh->dev[i].page;
1031
1032 if (i == target)
1033 faila = slot;
1034 if (i == target2)
1035 failb = slot;
1036 i = raid6_next_disk(i, disks);
1037 } while (i != d0_idx);
Dan Williamsac6b53b2009-07-14 13:40:19 -07001038
1039 BUG_ON(faila == failb);
1040 if (failb < faila)
1041 swap(faila, failb);
1042 pr_debug("%s: stripe: %llu faila: %d failb: %d\n",
1043 __func__, (unsigned long long)sh->sector, faila, failb);
1044
1045 atomic_inc(&sh->count);
1046
1047 if (failb == syndrome_disks+1) {
1048 /* Q disk is one of the missing disks */
1049 if (faila == syndrome_disks) {
1050 /* Missing P+Q, just recompute */
Dan Williams0403e382009-09-08 17:42:50 -07001051 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1052 ops_complete_compute, sh,
1053 to_addr_conv(sh, percpu));
NeilBrowne4424fe2009-10-16 16:27:34 +11001054 return async_gen_syndrome(blocks, 0, syndrome_disks+2,
Dan Williamsac6b53b2009-07-14 13:40:19 -07001055 STRIPE_SIZE, &submit);
1056 } else {
1057 struct page *dest;
1058 int data_target;
1059 int qd_idx = sh->qd_idx;
1060
1061 /* Missing D+Q: recompute D from P, then recompute Q */
1062 if (target == qd_idx)
1063 data_target = target2;
1064 else
1065 data_target = target;
1066
1067 count = 0;
1068 for (i = disks; i-- ; ) {
1069 if (i == data_target || i == qd_idx)
1070 continue;
1071 blocks[count++] = sh->dev[i].page;
1072 }
1073 dest = sh->dev[data_target].page;
Dan Williams0403e382009-09-08 17:42:50 -07001074 init_async_submit(&submit,
1075 ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
1076 NULL, NULL, NULL,
1077 to_addr_conv(sh, percpu));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001078 tx = async_xor(dest, blocks, 0, count, STRIPE_SIZE,
1079 &submit);
1080
1081 count = set_syndrome_sources(blocks, sh);
Dan Williams0403e382009-09-08 17:42:50 -07001082 init_async_submit(&submit, ASYNC_TX_FENCE, tx,
1083 ops_complete_compute, sh,
1084 to_addr_conv(sh, percpu));
Dan Williamsac6b53b2009-07-14 13:40:19 -07001085 return async_gen_syndrome(blocks, 0, count+2,
1086 STRIPE_SIZE, &submit);
1087 }
Dan Williamsac6b53b2009-07-14 13:40:19 -07001088 } else {
Dan Williams6c910a72009-09-16 12:24:54 -07001089 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
1090 ops_complete_compute, sh,
1091 to_addr_conv(sh, percpu));
1092 if (failb == syndrome_disks) {
1093 /* We're missing D+P. */
1094 return async_raid6_datap_recov(syndrome_disks+2,
1095 STRIPE_SIZE, faila,
1096 blocks, &submit);
1097 } else {
1098 /* We're missing D+D. */
1099 return async_raid6_2data_recov(syndrome_disks+2,
1100 STRIPE_SIZE, faila, failb,
1101 blocks, &submit);
1102 }
Dan Williamsac6b53b2009-07-14 13:40:19 -07001103 }
1104}
1105
1106
Dan Williams91c00922007-01-02 13:52:30 -07001107static void ops_complete_prexor(void *stripe_head_ref)
1108{
1109 struct stripe_head *sh = stripe_head_ref;
1110
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001111 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001112 (unsigned long long)sh->sector);
Dan Williams91c00922007-01-02 13:52:30 -07001113}
1114
1115static struct dma_async_tx_descriptor *
Dan Williamsd6f38f32009-07-14 11:50:52 -07001116ops_run_prexor(struct stripe_head *sh, struct raid5_percpu *percpu,
1117 struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001118{
Dan Williams91c00922007-01-02 13:52:30 -07001119 int disks = sh->disks;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001120 struct page **xor_srcs = percpu->scribble;
Dan Williams91c00922007-01-02 13:52:30 -07001121 int count = 0, pd_idx = sh->pd_idx, i;
Dan Williamsa08abd82009-06-03 11:43:59 -07001122 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001123
1124 /* existing parity data subtracted */
1125 struct page *xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
1126
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001127 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001128 (unsigned long long)sh->sector);
1129
1130 for (i = disks; i--; ) {
1131 struct r5dev *dev = &sh->dev[i];
1132 /* Only process blocks that are known to be uptodate */
Dan Williamsd8ee0722008-06-28 08:32:06 +10001133 if (test_bit(R5_Wantdrain, &dev->flags))
Dan Williams91c00922007-01-02 13:52:30 -07001134 xor_srcs[count++] = dev->page;
1135 }
1136
Dan Williams0403e382009-09-08 17:42:50 -07001137 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_DROP_DST, tx,
Dan Williamsd6f38f32009-07-14 11:50:52 -07001138 ops_complete_prexor, sh, to_addr_conv(sh, percpu));
Dan Williamsa08abd82009-06-03 11:43:59 -07001139 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001140
1141 return tx;
1142}
1143
1144static struct dma_async_tx_descriptor *
Dan Williamsd8ee0722008-06-28 08:32:06 +10001145ops_run_biodrain(struct stripe_head *sh, struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001146{
1147 int disks = sh->disks;
Dan Williamsd8ee0722008-06-28 08:32:06 +10001148 int i;
Dan Williams91c00922007-01-02 13:52:30 -07001149
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001150 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001151 (unsigned long long)sh->sector);
1152
1153 for (i = disks; i--; ) {
1154 struct r5dev *dev = &sh->dev[i];
1155 struct bio *chosen;
Dan Williams91c00922007-01-02 13:52:30 -07001156
Dan Williamsd8ee0722008-06-28 08:32:06 +10001157 if (test_and_clear_bit(R5_Wantdrain, &dev->flags)) {
Dan Williams91c00922007-01-02 13:52:30 -07001158 struct bio *wbi;
1159
NeilBrowncbe47ec2011-07-26 11:20:35 +10001160 spin_lock_irq(&sh->raid_conf->device_lock);
Dan Williams91c00922007-01-02 13:52:30 -07001161 chosen = dev->towrite;
1162 dev->towrite = NULL;
1163 BUG_ON(dev->written);
1164 wbi = dev->written = chosen;
NeilBrowncbe47ec2011-07-26 11:20:35 +10001165 spin_unlock_irq(&sh->raid_conf->device_lock);
Dan Williams91c00922007-01-02 13:52:30 -07001166
1167 while (wbi && wbi->bi_sector <
1168 dev->sector + STRIPE_SECTORS) {
Tejun Heoe9c74692010-09-03 11:56:18 +02001169 if (wbi->bi_rw & REQ_FUA)
1170 set_bit(R5_WantFUA, &dev->flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001171 if (wbi->bi_rw & REQ_SYNC)
1172 set_bit(R5_SyncIO, &dev->flags);
Dan Williams91c00922007-01-02 13:52:30 -07001173 tx = async_copy_data(1, wbi, dev->page,
1174 dev->sector, tx);
1175 wbi = r5_next_bio(wbi, dev->sector);
1176 }
1177 }
1178 }
1179
1180 return tx;
1181}
1182
Dan Williamsac6b53b2009-07-14 13:40:19 -07001183static void ops_complete_reconstruct(void *stripe_head_ref)
Dan Williams91c00922007-01-02 13:52:30 -07001184{
1185 struct stripe_head *sh = stripe_head_ref;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001186 int disks = sh->disks;
1187 int pd_idx = sh->pd_idx;
1188 int qd_idx = sh->qd_idx;
1189 int i;
Shaohua Libc0934f2012-05-22 13:55:05 +10001190 bool fua = false, sync = false;
Dan Williams91c00922007-01-02 13:52:30 -07001191
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001192 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001193 (unsigned long long)sh->sector);
1194
Shaohua Libc0934f2012-05-22 13:55:05 +10001195 for (i = disks; i--; ) {
Tejun Heoe9c74692010-09-03 11:56:18 +02001196 fua |= test_bit(R5_WantFUA, &sh->dev[i].flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001197 sync |= test_bit(R5_SyncIO, &sh->dev[i].flags);
1198 }
Tejun Heoe9c74692010-09-03 11:56:18 +02001199
Dan Williams91c00922007-01-02 13:52:30 -07001200 for (i = disks; i--; ) {
1201 struct r5dev *dev = &sh->dev[i];
Dan Williamsac6b53b2009-07-14 13:40:19 -07001202
Tejun Heoe9c74692010-09-03 11:56:18 +02001203 if (dev->written || i == pd_idx || i == qd_idx) {
Dan Williams91c00922007-01-02 13:52:30 -07001204 set_bit(R5_UPTODATE, &dev->flags);
Tejun Heoe9c74692010-09-03 11:56:18 +02001205 if (fua)
1206 set_bit(R5_WantFUA, &dev->flags);
Shaohua Libc0934f2012-05-22 13:55:05 +10001207 if (sync)
1208 set_bit(R5_SyncIO, &dev->flags);
Tejun Heoe9c74692010-09-03 11:56:18 +02001209 }
Dan Williams91c00922007-01-02 13:52:30 -07001210 }
1211
Dan Williamsd8ee0722008-06-28 08:32:06 +10001212 if (sh->reconstruct_state == reconstruct_state_drain_run)
1213 sh->reconstruct_state = reconstruct_state_drain_result;
1214 else if (sh->reconstruct_state == reconstruct_state_prexor_drain_run)
1215 sh->reconstruct_state = reconstruct_state_prexor_drain_result;
1216 else {
1217 BUG_ON(sh->reconstruct_state != reconstruct_state_run);
1218 sh->reconstruct_state = reconstruct_state_result;
1219 }
Dan Williams91c00922007-01-02 13:52:30 -07001220
1221 set_bit(STRIPE_HANDLE, &sh->state);
1222 release_stripe(sh);
1223}
1224
1225static void
Dan Williamsac6b53b2009-07-14 13:40:19 -07001226ops_run_reconstruct5(struct stripe_head *sh, struct raid5_percpu *percpu,
1227 struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001228{
Dan Williams91c00922007-01-02 13:52:30 -07001229 int disks = sh->disks;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001230 struct page **xor_srcs = percpu->scribble;
Dan Williamsa08abd82009-06-03 11:43:59 -07001231 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001232 int count = 0, pd_idx = sh->pd_idx, i;
1233 struct page *xor_dest;
Dan Williamsd8ee0722008-06-28 08:32:06 +10001234 int prexor = 0;
Dan Williams91c00922007-01-02 13:52:30 -07001235 unsigned long flags;
Dan Williams91c00922007-01-02 13:52:30 -07001236
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001237 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001238 (unsigned long long)sh->sector);
1239
1240 /* check if prexor is active which means only process blocks
1241 * that are part of a read-modify-write (written)
1242 */
Dan Williamsd8ee0722008-06-28 08:32:06 +10001243 if (sh->reconstruct_state == reconstruct_state_prexor_drain_run) {
1244 prexor = 1;
Dan Williams91c00922007-01-02 13:52:30 -07001245 xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
1246 for (i = disks; i--; ) {
1247 struct r5dev *dev = &sh->dev[i];
1248 if (dev->written)
1249 xor_srcs[count++] = dev->page;
1250 }
1251 } else {
1252 xor_dest = sh->dev[pd_idx].page;
1253 for (i = disks; i--; ) {
1254 struct r5dev *dev = &sh->dev[i];
1255 if (i != pd_idx)
1256 xor_srcs[count++] = dev->page;
1257 }
1258 }
1259
Dan Williams91c00922007-01-02 13:52:30 -07001260 /* 1/ if we prexor'd then the dest is reused as a source
1261 * 2/ if we did not prexor then we are redoing the parity
1262 * set ASYNC_TX_XOR_DROP_DST and ASYNC_TX_XOR_ZERO_DST
1263 * for the synchronous xor case
1264 */
Dan Williams88ba2aa2009-04-09 16:16:18 -07001265 flags = ASYNC_TX_ACK |
Dan Williams91c00922007-01-02 13:52:30 -07001266 (prexor ? ASYNC_TX_XOR_DROP_DST : ASYNC_TX_XOR_ZERO_DST);
1267
1268 atomic_inc(&sh->count);
1269
Dan Williamsac6b53b2009-07-14 13:40:19 -07001270 init_async_submit(&submit, flags, tx, ops_complete_reconstruct, sh,
Dan Williamsd6f38f32009-07-14 11:50:52 -07001271 to_addr_conv(sh, percpu));
Dan Williamsa08abd82009-06-03 11:43:59 -07001272 if (unlikely(count == 1))
1273 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
1274 else
1275 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001276}
1277
Dan Williamsac6b53b2009-07-14 13:40:19 -07001278static void
1279ops_run_reconstruct6(struct stripe_head *sh, struct raid5_percpu *percpu,
1280 struct dma_async_tx_descriptor *tx)
1281{
1282 struct async_submit_ctl submit;
1283 struct page **blocks = percpu->scribble;
1284 int count;
1285
1286 pr_debug("%s: stripe %llu\n", __func__, (unsigned long long)sh->sector);
1287
1288 count = set_syndrome_sources(blocks, sh);
1289
1290 atomic_inc(&sh->count);
1291
1292 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_reconstruct,
1293 sh, to_addr_conv(sh, percpu));
1294 async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001295}
1296
1297static void ops_complete_check(void *stripe_head_ref)
1298{
1299 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -07001300
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001301 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001302 (unsigned long long)sh->sector);
1303
Dan Williamsecc65c92008-06-28 08:31:57 +10001304 sh->check_state = check_state_check_result;
Dan Williams91c00922007-01-02 13:52:30 -07001305 set_bit(STRIPE_HANDLE, &sh->state);
1306 release_stripe(sh);
1307}
1308
Dan Williamsac6b53b2009-07-14 13:40:19 -07001309static void ops_run_check_p(struct stripe_head *sh, struct raid5_percpu *percpu)
Dan Williams91c00922007-01-02 13:52:30 -07001310{
Dan Williams91c00922007-01-02 13:52:30 -07001311 int disks = sh->disks;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001312 int pd_idx = sh->pd_idx;
1313 int qd_idx = sh->qd_idx;
1314 struct page *xor_dest;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001315 struct page **xor_srcs = percpu->scribble;
Dan Williams91c00922007-01-02 13:52:30 -07001316 struct dma_async_tx_descriptor *tx;
Dan Williamsa08abd82009-06-03 11:43:59 -07001317 struct async_submit_ctl submit;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001318 int count;
1319 int i;
Dan Williams91c00922007-01-02 13:52:30 -07001320
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001321 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001322 (unsigned long long)sh->sector);
1323
Dan Williamsac6b53b2009-07-14 13:40:19 -07001324 count = 0;
1325 xor_dest = sh->dev[pd_idx].page;
1326 xor_srcs[count++] = xor_dest;
Dan Williams91c00922007-01-02 13:52:30 -07001327 for (i = disks; i--; ) {
Dan Williamsac6b53b2009-07-14 13:40:19 -07001328 if (i == pd_idx || i == qd_idx)
1329 continue;
1330 xor_srcs[count++] = sh->dev[i].page;
Dan Williams91c00922007-01-02 13:52:30 -07001331 }
1332
Dan Williamsd6f38f32009-07-14 11:50:52 -07001333 init_async_submit(&submit, 0, NULL, NULL, NULL,
1334 to_addr_conv(sh, percpu));
Dan Williams099f53c2009-04-08 14:28:37 -07001335 tx = async_xor_val(xor_dest, xor_srcs, 0, count, STRIPE_SIZE,
Dan Williamsa08abd82009-06-03 11:43:59 -07001336 &sh->ops.zero_sum_result, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001337
Dan Williams91c00922007-01-02 13:52:30 -07001338 atomic_inc(&sh->count);
Dan Williamsa08abd82009-06-03 11:43:59 -07001339 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_check, sh, NULL);
1340 tx = async_trigger_callback(&submit);
Dan Williams91c00922007-01-02 13:52:30 -07001341}
1342
Dan Williamsac6b53b2009-07-14 13:40:19 -07001343static void ops_run_check_pq(struct stripe_head *sh, struct raid5_percpu *percpu, int checkp)
1344{
1345 struct page **srcs = percpu->scribble;
1346 struct async_submit_ctl submit;
1347 int count;
1348
1349 pr_debug("%s: stripe %llu checkp: %d\n", __func__,
1350 (unsigned long long)sh->sector, checkp);
1351
1352 count = set_syndrome_sources(srcs, sh);
1353 if (!checkp)
1354 srcs[count] = NULL;
1355
1356 atomic_inc(&sh->count);
1357 init_async_submit(&submit, ASYNC_TX_ACK, NULL, ops_complete_check,
1358 sh, to_addr_conv(sh, percpu));
1359 async_syndrome_val(srcs, 0, count+2, STRIPE_SIZE,
1360 &sh->ops.zero_sum_result, percpu->spare_page, &submit);
1361}
1362
Dan Williams417b8d42009-10-16 16:25:22 +11001363static void __raid_run_ops(struct stripe_head *sh, unsigned long ops_request)
Dan Williams91c00922007-01-02 13:52:30 -07001364{
1365 int overlap_clear = 0, i, disks = sh->disks;
1366 struct dma_async_tx_descriptor *tx = NULL;
NeilBrownd1688a62011-10-11 16:49:52 +11001367 struct r5conf *conf = sh->raid_conf;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001368 int level = conf->level;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001369 struct raid5_percpu *percpu;
1370 unsigned long cpu;
Dan Williams91c00922007-01-02 13:52:30 -07001371
Dan Williamsd6f38f32009-07-14 11:50:52 -07001372 cpu = get_cpu();
1373 percpu = per_cpu_ptr(conf->percpu, cpu);
Dan Williams83de75c2008-06-28 08:31:58 +10001374 if (test_bit(STRIPE_OP_BIOFILL, &ops_request)) {
Dan Williams91c00922007-01-02 13:52:30 -07001375 ops_run_biofill(sh);
1376 overlap_clear++;
1377 }
1378
Dan Williams7b3a8712008-06-28 08:32:09 +10001379 if (test_bit(STRIPE_OP_COMPUTE_BLK, &ops_request)) {
Dan Williamsac6b53b2009-07-14 13:40:19 -07001380 if (level < 6)
1381 tx = ops_run_compute5(sh, percpu);
1382 else {
1383 if (sh->ops.target2 < 0 || sh->ops.target < 0)
1384 tx = ops_run_compute6_1(sh, percpu);
1385 else
1386 tx = ops_run_compute6_2(sh, percpu);
1387 }
1388 /* terminate the chain if reconstruct is not set to be run */
1389 if (tx && !test_bit(STRIPE_OP_RECONSTRUCT, &ops_request))
Dan Williams7b3a8712008-06-28 08:32:09 +10001390 async_tx_ack(tx);
1391 }
Dan Williams91c00922007-01-02 13:52:30 -07001392
Dan Williams600aa102008-06-28 08:32:05 +10001393 if (test_bit(STRIPE_OP_PREXOR, &ops_request))
Dan Williamsd6f38f32009-07-14 11:50:52 -07001394 tx = ops_run_prexor(sh, percpu, tx);
Dan Williams91c00922007-01-02 13:52:30 -07001395
Dan Williams600aa102008-06-28 08:32:05 +10001396 if (test_bit(STRIPE_OP_BIODRAIN, &ops_request)) {
Dan Williamsd8ee0722008-06-28 08:32:06 +10001397 tx = ops_run_biodrain(sh, tx);
Dan Williams91c00922007-01-02 13:52:30 -07001398 overlap_clear++;
1399 }
1400
Dan Williamsac6b53b2009-07-14 13:40:19 -07001401 if (test_bit(STRIPE_OP_RECONSTRUCT, &ops_request)) {
1402 if (level < 6)
1403 ops_run_reconstruct5(sh, percpu, tx);
1404 else
1405 ops_run_reconstruct6(sh, percpu, tx);
1406 }
Dan Williams91c00922007-01-02 13:52:30 -07001407
Dan Williamsac6b53b2009-07-14 13:40:19 -07001408 if (test_bit(STRIPE_OP_CHECK, &ops_request)) {
1409 if (sh->check_state == check_state_run)
1410 ops_run_check_p(sh, percpu);
1411 else if (sh->check_state == check_state_run_q)
1412 ops_run_check_pq(sh, percpu, 0);
1413 else if (sh->check_state == check_state_run_pq)
1414 ops_run_check_pq(sh, percpu, 1);
1415 else
1416 BUG();
1417 }
Dan Williams91c00922007-01-02 13:52:30 -07001418
Dan Williams91c00922007-01-02 13:52:30 -07001419 if (overlap_clear)
1420 for (i = disks; i--; ) {
1421 struct r5dev *dev = &sh->dev[i];
1422 if (test_and_clear_bit(R5_Overlap, &dev->flags))
1423 wake_up(&sh->raid_conf->wait_for_overlap);
1424 }
Dan Williamsd6f38f32009-07-14 11:50:52 -07001425 put_cpu();
Dan Williams91c00922007-01-02 13:52:30 -07001426}
1427
Dan Williams417b8d42009-10-16 16:25:22 +11001428#ifdef CONFIG_MULTICORE_RAID456
1429static void async_run_ops(void *param, async_cookie_t cookie)
1430{
1431 struct stripe_head *sh = param;
1432 unsigned long ops_request = sh->ops.request;
1433
1434 clear_bit_unlock(STRIPE_OPS_REQ_PENDING, &sh->state);
1435 wake_up(&sh->ops.wait_for_ops);
1436
1437 __raid_run_ops(sh, ops_request);
1438 release_stripe(sh);
1439}
1440
1441static void raid_run_ops(struct stripe_head *sh, unsigned long ops_request)
1442{
1443 /* since handle_stripe can be called outside of raid5d context
1444 * we need to ensure sh->ops.request is de-staged before another
1445 * request arrives
1446 */
1447 wait_event(sh->ops.wait_for_ops,
1448 !test_and_set_bit_lock(STRIPE_OPS_REQ_PENDING, &sh->state));
1449 sh->ops.request = ops_request;
1450
1451 atomic_inc(&sh->count);
1452 async_schedule(async_run_ops, sh);
1453}
1454#else
1455#define raid_run_ops __raid_run_ops
1456#endif
1457
NeilBrownd1688a62011-10-11 16:49:52 +11001458static int grow_one_stripe(struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459{
1460 struct stripe_head *sh;
Namhyung Kim6ce32842011-07-18 17:38:50 +10001461 sh = kmem_cache_zalloc(conf->slab_cache, GFP_KERNEL);
NeilBrown3f294f42005-11-08 21:39:25 -08001462 if (!sh)
1463 return 0;
Namhyung Kim6ce32842011-07-18 17:38:50 +10001464
NeilBrown3f294f42005-11-08 21:39:25 -08001465 sh->raid_conf = conf;
Dan Williams417b8d42009-10-16 16:25:22 +11001466 #ifdef CONFIG_MULTICORE_RAID456
1467 init_waitqueue_head(&sh->ops.wait_for_ops);
1468 #endif
NeilBrown3f294f42005-11-08 21:39:25 -08001469
NeilBrowne4e11e32010-06-16 16:45:16 +10001470 if (grow_buffers(sh)) {
1471 shrink_buffers(sh);
NeilBrown3f294f42005-11-08 21:39:25 -08001472 kmem_cache_free(conf->slab_cache, sh);
1473 return 0;
1474 }
1475 /* we just created an active stripe so... */
1476 atomic_set(&sh->count, 1);
1477 atomic_inc(&conf->active_stripes);
1478 INIT_LIST_HEAD(&sh->lru);
1479 release_stripe(sh);
1480 return 1;
1481}
1482
NeilBrownd1688a62011-10-11 16:49:52 +11001483static int grow_stripes(struct r5conf *conf, int num)
NeilBrown3f294f42005-11-08 21:39:25 -08001484{
Christoph Lametere18b8902006-12-06 20:33:20 -08001485 struct kmem_cache *sc;
NeilBrown5e5e3e72009-10-16 16:35:30 +11001486 int devs = max(conf->raid_disks, conf->previous_raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
NeilBrownf4be6b42010-06-01 19:37:25 +10001488 if (conf->mddev->gendisk)
1489 sprintf(conf->cache_name[0],
1490 "raid%d-%s", conf->level, mdname(conf->mddev));
1491 else
1492 sprintf(conf->cache_name[0],
1493 "raid%d-%p", conf->level, conf->mddev);
1494 sprintf(conf->cache_name[1], "%s-alt", conf->cache_name[0]);
1495
NeilBrownad01c9e2006-03-27 01:18:07 -08001496 conf->active_name = 0;
1497 sc = kmem_cache_create(conf->cache_name[conf->active_name],
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 sizeof(struct stripe_head)+(devs-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +09001499 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 if (!sc)
1501 return 1;
1502 conf->slab_cache = sc;
NeilBrownad01c9e2006-03-27 01:18:07 -08001503 conf->pool_size = devs;
NeilBrown16a53ec2006-06-26 00:27:38 -07001504 while (num--)
NeilBrown3f294f42005-11-08 21:39:25 -08001505 if (!grow_one_stripe(conf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 return 0;
1508}
NeilBrown29269552006-03-27 01:18:10 -08001509
Dan Williamsd6f38f32009-07-14 11:50:52 -07001510/**
1511 * scribble_len - return the required size of the scribble region
1512 * @num - total number of disks in the array
1513 *
1514 * The size must be enough to contain:
1515 * 1/ a struct page pointer for each device in the array +2
1516 * 2/ room to convert each entry in (1) to its corresponding dma
1517 * (dma_map_page()) or page (page_address()) address.
1518 *
1519 * Note: the +2 is for the destination buffers of the ddf/raid6 case where we
1520 * calculate over all devices (not just the data blocks), using zeros in place
1521 * of the P and Q blocks.
1522 */
1523static size_t scribble_len(int num)
1524{
1525 size_t len;
1526
1527 len = sizeof(struct page *) * (num+2) + sizeof(addr_conv_t) * (num+2);
1528
1529 return len;
1530}
1531
NeilBrownd1688a62011-10-11 16:49:52 +11001532static int resize_stripes(struct r5conf *conf, int newsize)
NeilBrownad01c9e2006-03-27 01:18:07 -08001533{
1534 /* Make all the stripes able to hold 'newsize' devices.
1535 * New slots in each stripe get 'page' set to a new page.
1536 *
1537 * This happens in stages:
1538 * 1/ create a new kmem_cache and allocate the required number of
1539 * stripe_heads.
1540 * 2/ gather all the old stripe_heads and tranfer the pages across
1541 * to the new stripe_heads. This will have the side effect of
1542 * freezing the array as once all stripe_heads have been collected,
1543 * no IO will be possible. Old stripe heads are freed once their
1544 * pages have been transferred over, and the old kmem_cache is
1545 * freed when all stripes are done.
1546 * 3/ reallocate conf->disks to be suitable bigger. If this fails,
1547 * we simple return a failre status - no need to clean anything up.
1548 * 4/ allocate new pages for the new slots in the new stripe_heads.
1549 * If this fails, we don't bother trying the shrink the
1550 * stripe_heads down again, we just leave them as they are.
1551 * As each stripe_head is processed the new one is released into
1552 * active service.
1553 *
1554 * Once step2 is started, we cannot afford to wait for a write,
1555 * so we use GFP_NOIO allocations.
1556 */
1557 struct stripe_head *osh, *nsh;
1558 LIST_HEAD(newstripes);
1559 struct disk_info *ndisks;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001560 unsigned long cpu;
Dan Williamsb5470dc2008-06-27 21:44:04 -07001561 int err;
Christoph Lametere18b8902006-12-06 20:33:20 -08001562 struct kmem_cache *sc;
NeilBrownad01c9e2006-03-27 01:18:07 -08001563 int i;
1564
1565 if (newsize <= conf->pool_size)
1566 return 0; /* never bother to shrink */
1567
Dan Williamsb5470dc2008-06-27 21:44:04 -07001568 err = md_allow_write(conf->mddev);
1569 if (err)
1570 return err;
NeilBrown2a2275d2007-01-26 00:57:11 -08001571
NeilBrownad01c9e2006-03-27 01:18:07 -08001572 /* Step 1 */
1573 sc = kmem_cache_create(conf->cache_name[1-conf->active_name],
1574 sizeof(struct stripe_head)+(newsize-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +09001575 0, 0, NULL);
NeilBrownad01c9e2006-03-27 01:18:07 -08001576 if (!sc)
1577 return -ENOMEM;
1578
1579 for (i = conf->max_nr_stripes; i; i--) {
Namhyung Kim6ce32842011-07-18 17:38:50 +10001580 nsh = kmem_cache_zalloc(sc, GFP_KERNEL);
NeilBrownad01c9e2006-03-27 01:18:07 -08001581 if (!nsh)
1582 break;
1583
NeilBrownad01c9e2006-03-27 01:18:07 -08001584 nsh->raid_conf = conf;
Dan Williams417b8d42009-10-16 16:25:22 +11001585 #ifdef CONFIG_MULTICORE_RAID456
1586 init_waitqueue_head(&nsh->ops.wait_for_ops);
1587 #endif
NeilBrownad01c9e2006-03-27 01:18:07 -08001588
1589 list_add(&nsh->lru, &newstripes);
1590 }
1591 if (i) {
1592 /* didn't get enough, give up */
1593 while (!list_empty(&newstripes)) {
1594 nsh = list_entry(newstripes.next, struct stripe_head, lru);
1595 list_del(&nsh->lru);
1596 kmem_cache_free(sc, nsh);
1597 }
1598 kmem_cache_destroy(sc);
1599 return -ENOMEM;
1600 }
1601 /* Step 2 - Must use GFP_NOIO now.
1602 * OK, we have enough stripes, start collecting inactive
1603 * stripes and copying them over
1604 */
1605 list_for_each_entry(nsh, &newstripes, lru) {
1606 spin_lock_irq(&conf->device_lock);
1607 wait_event_lock_irq(conf->wait_for_stripe,
1608 !list_empty(&conf->inactive_list),
1609 conf->device_lock,
NeilBrown482c0832011-04-18 18:25:42 +10001610 );
NeilBrownad01c9e2006-03-27 01:18:07 -08001611 osh = get_free_stripe(conf);
1612 spin_unlock_irq(&conf->device_lock);
1613 atomic_set(&nsh->count, 1);
1614 for(i=0; i<conf->pool_size; i++)
1615 nsh->dev[i].page = osh->dev[i].page;
1616 for( ; i<newsize; i++)
1617 nsh->dev[i].page = NULL;
1618 kmem_cache_free(conf->slab_cache, osh);
1619 }
1620 kmem_cache_destroy(conf->slab_cache);
1621
1622 /* Step 3.
1623 * At this point, we are holding all the stripes so the array
1624 * is completely stalled, so now is a good time to resize
Dan Williamsd6f38f32009-07-14 11:50:52 -07001625 * conf->disks and the scribble region
NeilBrownad01c9e2006-03-27 01:18:07 -08001626 */
1627 ndisks = kzalloc(newsize * sizeof(struct disk_info), GFP_NOIO);
1628 if (ndisks) {
1629 for (i=0; i<conf->raid_disks; i++)
1630 ndisks[i] = conf->disks[i];
1631 kfree(conf->disks);
1632 conf->disks = ndisks;
1633 } else
1634 err = -ENOMEM;
1635
Dan Williamsd6f38f32009-07-14 11:50:52 -07001636 get_online_cpus();
1637 conf->scribble_len = scribble_len(newsize);
1638 for_each_present_cpu(cpu) {
1639 struct raid5_percpu *percpu;
1640 void *scribble;
1641
1642 percpu = per_cpu_ptr(conf->percpu, cpu);
1643 scribble = kmalloc(conf->scribble_len, GFP_NOIO);
1644
1645 if (scribble) {
1646 kfree(percpu->scribble);
1647 percpu->scribble = scribble;
1648 } else {
1649 err = -ENOMEM;
1650 break;
1651 }
1652 }
1653 put_online_cpus();
1654
NeilBrownad01c9e2006-03-27 01:18:07 -08001655 /* Step 4, return new stripes to service */
1656 while(!list_empty(&newstripes)) {
1657 nsh = list_entry(newstripes.next, struct stripe_head, lru);
1658 list_del_init(&nsh->lru);
Dan Williamsd6f38f32009-07-14 11:50:52 -07001659
NeilBrownad01c9e2006-03-27 01:18:07 -08001660 for (i=conf->raid_disks; i < newsize; i++)
1661 if (nsh->dev[i].page == NULL) {
1662 struct page *p = alloc_page(GFP_NOIO);
1663 nsh->dev[i].page = p;
1664 if (!p)
1665 err = -ENOMEM;
1666 }
1667 release_stripe(nsh);
1668 }
1669 /* critical section pass, GFP_NOIO no longer needed */
1670
1671 conf->slab_cache = sc;
1672 conf->active_name = 1-conf->active_name;
1673 conf->pool_size = newsize;
1674 return err;
1675}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676
NeilBrownd1688a62011-10-11 16:49:52 +11001677static int drop_one_stripe(struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678{
1679 struct stripe_head *sh;
1680
NeilBrown3f294f42005-11-08 21:39:25 -08001681 spin_lock_irq(&conf->device_lock);
1682 sh = get_free_stripe(conf);
1683 spin_unlock_irq(&conf->device_lock);
1684 if (!sh)
1685 return 0;
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02001686 BUG_ON(atomic_read(&sh->count));
NeilBrowne4e11e32010-06-16 16:45:16 +10001687 shrink_buffers(sh);
NeilBrown3f294f42005-11-08 21:39:25 -08001688 kmem_cache_free(conf->slab_cache, sh);
1689 atomic_dec(&conf->active_stripes);
1690 return 1;
1691}
1692
NeilBrownd1688a62011-10-11 16:49:52 +11001693static void shrink_stripes(struct r5conf *conf)
NeilBrown3f294f42005-11-08 21:39:25 -08001694{
1695 while (drop_one_stripe(conf))
1696 ;
1697
NeilBrown29fc7e32006-02-03 03:03:41 -08001698 if (conf->slab_cache)
1699 kmem_cache_destroy(conf->slab_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 conf->slab_cache = NULL;
1701}
1702
NeilBrown6712ecf2007-09-27 12:47:43 +02001703static void raid5_end_read_request(struct bio * bi, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704{
NeilBrown99c0fb52009-03-31 14:39:38 +11001705 struct stripe_head *sh = bi->bi_private;
NeilBrownd1688a62011-10-11 16:49:52 +11001706 struct r5conf *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08001707 int disks = sh->disks, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
NeilBrownd6950432006-07-10 04:44:20 -07001709 char b[BDEVNAME_SIZE];
NeilBrowndd054fc2011-12-23 10:17:53 +11001710 struct md_rdev *rdev = NULL;
NeilBrown05616be2012-05-21 09:27:00 +10001711 sector_t s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
1713 for (i=0 ; i<disks; i++)
1714 if (bi == &sh->dev[i].req)
1715 break;
1716
Dan Williams45b42332007-07-09 11:56:43 -07001717 pr_debug("end_read_request %llu/%d, count: %d, uptodate %d.\n",
1718 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 uptodate);
1720 if (i == disks) {
1721 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02001722 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 }
NeilBrown14a75d32011-12-23 10:17:52 +11001724 if (test_bit(R5_ReadRepl, &sh->dev[i].flags))
NeilBrowndd054fc2011-12-23 10:17:53 +11001725 /* If replacement finished while this request was outstanding,
1726 * 'replacement' might be NULL already.
1727 * In that case it moved down to 'rdev'.
1728 * rdev is not removed until all requests are finished.
1729 */
NeilBrown14a75d32011-12-23 10:17:52 +11001730 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11001731 if (!rdev)
NeilBrown14a75d32011-12-23 10:17:52 +11001732 rdev = conf->disks[i].rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
NeilBrown05616be2012-05-21 09:27:00 +10001734 if (use_new_offset(conf, sh))
1735 s = sh->sector + rdev->new_data_offset;
1736 else
1737 s = sh->sector + rdev->data_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 if (uptodate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 set_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrown4e5314b2005-11-08 21:39:22 -08001740 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11001741 /* Note that this cannot happen on a
1742 * replacement device. We just fail those on
1743 * any error
1744 */
Christian Dietrich8bda4702011-07-27 11:00:36 +10001745 printk_ratelimited(
1746 KERN_INFO
1747 "md/raid:%s: read error corrected"
1748 " (%lu sectors at %llu on %s)\n",
1749 mdname(conf->mddev), STRIPE_SECTORS,
NeilBrown05616be2012-05-21 09:27:00 +10001750 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10001751 bdevname(rdev->bdev, b));
Namhyung Kimddd51152011-07-27 11:00:36 +10001752 atomic_add(STRIPE_SECTORS, &rdev->corrected_errors);
NeilBrown4e5314b2005-11-08 21:39:22 -08001753 clear_bit(R5_ReadError, &sh->dev[i].flags);
1754 clear_bit(R5_ReWrite, &sh->dev[i].flags);
1755 }
NeilBrown14a75d32011-12-23 10:17:52 +11001756 if (atomic_read(&rdev->read_errors))
1757 atomic_set(&rdev->read_errors, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 } else {
NeilBrown14a75d32011-12-23 10:17:52 +11001759 const char *bdn = bdevname(rdev->bdev, b);
NeilBrownba22dcb2005-11-08 21:39:31 -08001760 int retry = 0;
majianpeng2e8ac3032012-07-03 15:57:02 +10001761 int set_bad = 0;
NeilBrownd6950432006-07-10 04:44:20 -07001762
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 clear_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrownd6950432006-07-10 04:44:20 -07001764 atomic_inc(&rdev->read_errors);
NeilBrown14a75d32011-12-23 10:17:52 +11001765 if (test_bit(R5_ReadRepl, &sh->dev[i].flags))
1766 printk_ratelimited(
1767 KERN_WARNING
1768 "md/raid:%s: read error on replacement device "
1769 "(sector %llu on %s).\n",
1770 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10001771 (unsigned long long)s,
NeilBrown14a75d32011-12-23 10:17:52 +11001772 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10001773 else if (conf->mddev->degraded >= conf->max_degraded) {
1774 set_bad = 1;
Christian Dietrich8bda4702011-07-27 11:00:36 +10001775 printk_ratelimited(
1776 KERN_WARNING
1777 "md/raid:%s: read error not correctable "
1778 "(sector %llu on %s).\n",
1779 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10001780 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10001781 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10001782 } else if (test_bit(R5_ReWrite, &sh->dev[i].flags)) {
NeilBrown4e5314b2005-11-08 21:39:22 -08001783 /* Oh, no!!! */
majianpeng2e8ac3032012-07-03 15:57:02 +10001784 set_bad = 1;
Christian Dietrich8bda4702011-07-27 11:00:36 +10001785 printk_ratelimited(
1786 KERN_WARNING
1787 "md/raid:%s: read error NOT corrected!! "
1788 "(sector %llu on %s).\n",
1789 mdname(conf->mddev),
NeilBrown05616be2012-05-21 09:27:00 +10001790 (unsigned long long)s,
Christian Dietrich8bda4702011-07-27 11:00:36 +10001791 bdn);
majianpeng2e8ac3032012-07-03 15:57:02 +10001792 } else if (atomic_read(&rdev->read_errors)
NeilBrownba22dcb2005-11-08 21:39:31 -08001793 > conf->max_nr_stripes)
NeilBrown14f8d262006-01-06 00:20:14 -08001794 printk(KERN_WARNING
NeilBrown0c55e022010-05-03 14:09:02 +10001795 "md/raid:%s: Too many read errors, failing device %s.\n",
NeilBrownd6950432006-07-10 04:44:20 -07001796 mdname(conf->mddev), bdn);
NeilBrownba22dcb2005-11-08 21:39:31 -08001797 else
1798 retry = 1;
1799 if (retry)
1800 set_bit(R5_ReadError, &sh->dev[i].flags);
1801 else {
NeilBrown4e5314b2005-11-08 21:39:22 -08001802 clear_bit(R5_ReadError, &sh->dev[i].flags);
1803 clear_bit(R5_ReWrite, &sh->dev[i].flags);
majianpeng2e8ac3032012-07-03 15:57:02 +10001804 if (!(set_bad
1805 && test_bit(In_sync, &rdev->flags)
1806 && rdev_set_badblocks(
1807 rdev, sh->sector, STRIPE_SECTORS, 0)))
1808 md_error(conf->mddev, rdev);
NeilBrownba22dcb2005-11-08 21:39:31 -08001809 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 }
NeilBrown14a75d32011-12-23 10:17:52 +11001811 rdev_dec_pending(rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 clear_bit(R5_LOCKED, &sh->dev[i].flags);
1813 set_bit(STRIPE_HANDLE, &sh->state);
1814 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815}
1816
NeilBrownd710e132008-10-13 11:55:12 +11001817static void raid5_end_write_request(struct bio *bi, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818{
NeilBrown99c0fb52009-03-31 14:39:38 +11001819 struct stripe_head *sh = bi->bi_private;
NeilBrownd1688a62011-10-11 16:49:52 +11001820 struct r5conf *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08001821 int disks = sh->disks, i;
NeilBrown977df362011-12-23 10:17:53 +11001822 struct md_rdev *uninitialized_var(rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
NeilBrownb84db562011-07-28 11:39:23 +10001824 sector_t first_bad;
1825 int bad_sectors;
NeilBrown977df362011-12-23 10:17:53 +11001826 int replacement = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
NeilBrown977df362011-12-23 10:17:53 +11001828 for (i = 0 ; i < disks; i++) {
1829 if (bi == &sh->dev[i].req) {
1830 rdev = conf->disks[i].rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 break;
NeilBrown977df362011-12-23 10:17:53 +11001832 }
1833 if (bi == &sh->dev[i].rreq) {
1834 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11001835 if (rdev)
1836 replacement = 1;
1837 else
1838 /* rdev was removed and 'replacement'
1839 * replaced it. rdev is not removed
1840 * until all requests are finished.
1841 */
1842 rdev = conf->disks[i].rdev;
NeilBrown977df362011-12-23 10:17:53 +11001843 break;
1844 }
1845 }
Dan Williams45b42332007-07-09 11:56:43 -07001846 pr_debug("end_write_request %llu/%d, count %d, uptodate: %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
1848 uptodate);
1849 if (i == disks) {
1850 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02001851 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 }
1853
NeilBrown977df362011-12-23 10:17:53 +11001854 if (replacement) {
1855 if (!uptodate)
1856 md_error(conf->mddev, rdev);
1857 else if (is_badblock(rdev, sh->sector,
1858 STRIPE_SECTORS,
1859 &first_bad, &bad_sectors))
1860 set_bit(R5_MadeGoodRepl, &sh->dev[i].flags);
1861 } else {
1862 if (!uptodate) {
1863 set_bit(WriteErrorSeen, &rdev->flags);
1864 set_bit(R5_WriteError, &sh->dev[i].flags);
NeilBrown3a6de292011-12-23 10:17:54 +11001865 if (!test_and_set_bit(WantReplacement, &rdev->flags))
1866 set_bit(MD_RECOVERY_NEEDED,
1867 &rdev->mddev->recovery);
NeilBrown977df362011-12-23 10:17:53 +11001868 } else if (is_badblock(rdev, sh->sector,
1869 STRIPE_SECTORS,
1870 &first_bad, &bad_sectors))
1871 set_bit(R5_MadeGood, &sh->dev[i].flags);
1872 }
1873 rdev_dec_pending(rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
NeilBrown977df362011-12-23 10:17:53 +11001875 if (!test_and_clear_bit(R5_DOUBLE_LOCKED, &sh->dev[i].flags))
1876 clear_bit(R5_LOCKED, &sh->dev[i].flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 set_bit(STRIPE_HANDLE, &sh->state);
NeilBrownc04be0a2006-10-03 01:15:53 -07001878 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879}
1880
NeilBrown784052e2009-03-31 15:19:07 +11001881static sector_t compute_blocknr(struct stripe_head *sh, int i, int previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882
NeilBrown784052e2009-03-31 15:19:07 +11001883static void raid5_build_block(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884{
1885 struct r5dev *dev = &sh->dev[i];
1886
1887 bio_init(&dev->req);
1888 dev->req.bi_io_vec = &dev->vec;
1889 dev->req.bi_vcnt++;
1890 dev->req.bi_max_vecs++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 dev->req.bi_private = sh;
NeilBrown995c4272011-12-23 10:17:52 +11001892 dev->vec.bv_page = dev->page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
NeilBrown977df362011-12-23 10:17:53 +11001894 bio_init(&dev->rreq);
1895 dev->rreq.bi_io_vec = &dev->rvec;
1896 dev->rreq.bi_vcnt++;
1897 dev->rreq.bi_max_vecs++;
1898 dev->rreq.bi_private = sh;
1899 dev->rvec.bv_page = dev->page;
1900
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 dev->flags = 0;
NeilBrown784052e2009-03-31 15:19:07 +11001902 dev->sector = compute_blocknr(sh, i, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903}
1904
NeilBrownfd01b882011-10-11 16:47:53 +11001905static void error(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906{
1907 char b[BDEVNAME_SIZE];
NeilBrownd1688a62011-10-11 16:49:52 +11001908 struct r5conf *conf = mddev->private;
NeilBrown908f4fb2011-12-23 10:17:50 +11001909 unsigned long flags;
NeilBrown0c55e022010-05-03 14:09:02 +10001910 pr_debug("raid456: error called\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
NeilBrown908f4fb2011-12-23 10:17:50 +11001912 spin_lock_irqsave(&conf->device_lock, flags);
1913 clear_bit(In_sync, &rdev->flags);
1914 mddev->degraded = calc_degraded(conf);
1915 spin_unlock_irqrestore(&conf->device_lock, flags);
1916 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
1917
NeilBrownde393cd2011-07-28 11:31:48 +10001918 set_bit(Blocked, &rdev->flags);
NeilBrown6f8d0c72011-05-11 14:38:44 +10001919 set_bit(Faulty, &rdev->flags);
1920 set_bit(MD_CHANGE_DEVS, &mddev->flags);
1921 printk(KERN_ALERT
1922 "md/raid:%s: Disk failure on %s, disabling device.\n"
1923 "md/raid:%s: Operation continuing on %d devices.\n",
1924 mdname(mddev),
1925 bdevname(rdev->bdev, b),
1926 mdname(mddev),
1927 conf->raid_disks - mddev->degraded);
NeilBrown16a53ec2006-06-26 00:27:38 -07001928}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929
1930/*
1931 * Input: a 'big' sector number,
1932 * Output: index of the data and parity disk, and the sector # in them.
1933 */
NeilBrownd1688a62011-10-11 16:49:52 +11001934static sector_t raid5_compute_sector(struct r5conf *conf, sector_t r_sector,
NeilBrown911d4ee2009-03-31 14:39:38 +11001935 int previous, int *dd_idx,
1936 struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937{
NeilBrown6e3b96e2010-04-23 07:08:28 +10001938 sector_t stripe, stripe2;
NeilBrown35f2a592010-04-20 14:13:34 +10001939 sector_t chunk_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 unsigned int chunk_offset;
NeilBrown911d4ee2009-03-31 14:39:38 +11001941 int pd_idx, qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11001942 int ddf_layout = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 sector_t new_sector;
NeilBrowne183eae2009-03-31 15:20:22 +11001944 int algorithm = previous ? conf->prev_algo
1945 : conf->algorithm;
Andre Noll09c9e5f2009-06-18 08:45:55 +10001946 int sectors_per_chunk = previous ? conf->prev_chunk_sectors
1947 : conf->chunk_sectors;
NeilBrown112bf892009-03-31 14:39:38 +11001948 int raid_disks = previous ? conf->previous_raid_disks
1949 : conf->raid_disks;
1950 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
1952 /* First compute the information on this sector */
1953
1954 /*
1955 * Compute the chunk number and the sector offset inside the chunk
1956 */
1957 chunk_offset = sector_div(r_sector, sectors_per_chunk);
1958 chunk_number = r_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
1960 /*
1961 * Compute the stripe number
1962 */
NeilBrown35f2a592010-04-20 14:13:34 +10001963 stripe = chunk_number;
1964 *dd_idx = sector_div(stripe, data_disks);
NeilBrown6e3b96e2010-04-23 07:08:28 +10001965 stripe2 = stripe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 /*
1967 * Select the parity disk based on the user selected algorithm.
1968 */
NeilBrown84789552011-07-27 11:00:36 +10001969 pd_idx = qd_idx = -1;
NeilBrown16a53ec2006-06-26 00:27:38 -07001970 switch(conf->level) {
1971 case 4:
NeilBrown911d4ee2009-03-31 14:39:38 +11001972 pd_idx = data_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07001973 break;
1974 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11001975 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001977 pd_idx = data_disks - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001978 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 (*dd_idx)++;
1980 break;
1981 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001982 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001983 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 (*dd_idx)++;
1985 break;
1986 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001987 pd_idx = data_disks - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001988 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 break;
1990 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001991 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001992 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11001994 case ALGORITHM_PARITY_0:
1995 pd_idx = 0;
1996 (*dd_idx)++;
1997 break;
1998 case ALGORITHM_PARITY_N:
1999 pd_idx = data_disks;
2000 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002002 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002003 }
2004 break;
2005 case 6:
2006
NeilBrowne183eae2009-03-31 15:20:22 +11002007 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07002008 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002009 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002010 qd_idx = pd_idx + 1;
2011 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11002012 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11002013 qd_idx = 0;
2014 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002015 (*dd_idx) += 2; /* D D P Q D */
2016 break;
2017 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002018 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002019 qd_idx = pd_idx + 1;
2020 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11002021 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11002022 qd_idx = 0;
2023 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002024 (*dd_idx) += 2; /* D D P Q D */
2025 break;
2026 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002027 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002028 qd_idx = (pd_idx + 1) % raid_disks;
2029 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002030 break;
2031 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002032 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11002033 qd_idx = (pd_idx + 1) % raid_disks;
2034 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002035 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002036
2037 case ALGORITHM_PARITY_0:
2038 pd_idx = 0;
2039 qd_idx = 1;
2040 (*dd_idx) += 2;
2041 break;
2042 case ALGORITHM_PARITY_N:
2043 pd_idx = data_disks;
2044 qd_idx = data_disks + 1;
2045 break;
2046
2047 case ALGORITHM_ROTATING_ZERO_RESTART:
2048 /* Exactly the same as RIGHT_ASYMMETRIC, but or
2049 * of blocks for computing Q is different.
2050 */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002051 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11002052 qd_idx = pd_idx + 1;
2053 if (pd_idx == raid_disks-1) {
2054 (*dd_idx)++; /* Q D D D P */
2055 qd_idx = 0;
2056 } else if (*dd_idx >= pd_idx)
2057 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11002058 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11002059 break;
2060
2061 case ALGORITHM_ROTATING_N_RESTART:
2062 /* Same a left_asymmetric, by first stripe is
2063 * D D D P Q rather than
2064 * Q D D D P
2065 */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002066 stripe2 += 1;
2067 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11002068 qd_idx = pd_idx + 1;
2069 if (pd_idx == raid_disks-1) {
2070 (*dd_idx)++; /* Q D D D P */
2071 qd_idx = 0;
2072 } else if (*dd_idx >= pd_idx)
2073 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11002074 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11002075 break;
2076
2077 case ALGORITHM_ROTATING_N_CONTINUE:
2078 /* Same as left_symmetric but Q is before P */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002079 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11002080 qd_idx = (pd_idx + raid_disks - 1) % raid_disks;
2081 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
NeilBrown67cc2b82009-03-31 14:39:38 +11002082 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11002083 break;
2084
2085 case ALGORITHM_LEFT_ASYMMETRIC_6:
2086 /* RAID5 left_asymmetric, with Q on last device */
NeilBrown6e3b96e2010-04-23 07:08:28 +10002087 pd_idx = data_disks - sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002088 if (*dd_idx >= pd_idx)
2089 (*dd_idx)++;
2090 qd_idx = raid_disks - 1;
2091 break;
2092
2093 case ALGORITHM_RIGHT_ASYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002094 pd_idx = sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002095 if (*dd_idx >= pd_idx)
2096 (*dd_idx)++;
2097 qd_idx = raid_disks - 1;
2098 break;
2099
2100 case ALGORITHM_LEFT_SYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002101 pd_idx = data_disks - sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002102 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
2103 qd_idx = raid_disks - 1;
2104 break;
2105
2106 case ALGORITHM_RIGHT_SYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10002107 pd_idx = sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11002108 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
2109 qd_idx = raid_disks - 1;
2110 break;
2111
2112 case ALGORITHM_PARITY_0_6:
2113 pd_idx = 0;
2114 (*dd_idx)++;
2115 qd_idx = raid_disks - 1;
2116 break;
2117
NeilBrown16a53ec2006-06-26 00:27:38 -07002118 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002119 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002120 }
2121 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 }
2123
NeilBrown911d4ee2009-03-31 14:39:38 +11002124 if (sh) {
2125 sh->pd_idx = pd_idx;
2126 sh->qd_idx = qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11002127 sh->ddf_layout = ddf_layout;
NeilBrown911d4ee2009-03-31 14:39:38 +11002128 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 /*
2130 * Finally, compute the new sector number
2131 */
2132 new_sector = (sector_t)stripe * sectors_per_chunk + chunk_offset;
2133 return new_sector;
2134}
2135
2136
NeilBrown784052e2009-03-31 15:19:07 +11002137static sector_t compute_blocknr(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138{
NeilBrownd1688a62011-10-11 16:49:52 +11002139 struct r5conf *conf = sh->raid_conf;
NeilBrownb875e532006-12-10 02:20:49 -08002140 int raid_disks = sh->disks;
2141 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 sector_t new_sector = sh->sector, check;
Andre Noll09c9e5f2009-06-18 08:45:55 +10002143 int sectors_per_chunk = previous ? conf->prev_chunk_sectors
2144 : conf->chunk_sectors;
NeilBrowne183eae2009-03-31 15:20:22 +11002145 int algorithm = previous ? conf->prev_algo
2146 : conf->algorithm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 sector_t stripe;
2148 int chunk_offset;
NeilBrown35f2a592010-04-20 14:13:34 +10002149 sector_t chunk_number;
2150 int dummy1, dd_idx = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 sector_t r_sector;
NeilBrown911d4ee2009-03-31 14:39:38 +11002152 struct stripe_head sh2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153
NeilBrown16a53ec2006-06-26 00:27:38 -07002154
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 chunk_offset = sector_div(new_sector, sectors_per_chunk);
2156 stripe = new_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
NeilBrown16a53ec2006-06-26 00:27:38 -07002158 if (i == sh->pd_idx)
2159 return 0;
2160 switch(conf->level) {
2161 case 4: break;
2162 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11002163 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 case ALGORITHM_LEFT_ASYMMETRIC:
2165 case ALGORITHM_RIGHT_ASYMMETRIC:
2166 if (i > sh->pd_idx)
2167 i--;
2168 break;
2169 case ALGORITHM_LEFT_SYMMETRIC:
2170 case ALGORITHM_RIGHT_SYMMETRIC:
2171 if (i < sh->pd_idx)
2172 i += raid_disks;
2173 i -= (sh->pd_idx + 1);
2174 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002175 case ALGORITHM_PARITY_0:
2176 i -= 1;
2177 break;
2178 case ALGORITHM_PARITY_N:
2179 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002181 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002182 }
2183 break;
2184 case 6:
NeilBrownd0dabf72009-03-31 14:39:38 +11002185 if (i == sh->qd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07002186 return 0; /* It is the Q disk */
NeilBrowne183eae2009-03-31 15:20:22 +11002187 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07002188 case ALGORITHM_LEFT_ASYMMETRIC:
2189 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown99c0fb52009-03-31 14:39:38 +11002190 case ALGORITHM_ROTATING_ZERO_RESTART:
2191 case ALGORITHM_ROTATING_N_RESTART:
2192 if (sh->pd_idx == raid_disks-1)
2193 i--; /* Q D D D P */
NeilBrown16a53ec2006-06-26 00:27:38 -07002194 else if (i > sh->pd_idx)
2195 i -= 2; /* D D P Q D */
2196 break;
2197 case ALGORITHM_LEFT_SYMMETRIC:
2198 case ALGORITHM_RIGHT_SYMMETRIC:
2199 if (sh->pd_idx == raid_disks-1)
2200 i--; /* Q D D D P */
2201 else {
2202 /* D D P Q D */
2203 if (i < sh->pd_idx)
2204 i += raid_disks;
2205 i -= (sh->pd_idx + 2);
2206 }
2207 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002208 case ALGORITHM_PARITY_0:
2209 i -= 2;
2210 break;
2211 case ALGORITHM_PARITY_N:
2212 break;
2213 case ALGORITHM_ROTATING_N_CONTINUE:
NeilBrowne4424fe2009-10-16 16:27:34 +11002214 /* Like left_symmetric, but P is before Q */
NeilBrown99c0fb52009-03-31 14:39:38 +11002215 if (sh->pd_idx == 0)
2216 i--; /* P D D D Q */
NeilBrowne4424fe2009-10-16 16:27:34 +11002217 else {
2218 /* D D Q P D */
2219 if (i < sh->pd_idx)
2220 i += raid_disks;
2221 i -= (sh->pd_idx + 1);
2222 }
NeilBrown99c0fb52009-03-31 14:39:38 +11002223 break;
2224 case ALGORITHM_LEFT_ASYMMETRIC_6:
2225 case ALGORITHM_RIGHT_ASYMMETRIC_6:
2226 if (i > sh->pd_idx)
2227 i--;
2228 break;
2229 case ALGORITHM_LEFT_SYMMETRIC_6:
2230 case ALGORITHM_RIGHT_SYMMETRIC_6:
2231 if (i < sh->pd_idx)
2232 i += data_disks + 1;
2233 i -= (sh->pd_idx + 1);
2234 break;
2235 case ALGORITHM_PARITY_0_6:
2236 i -= 1;
2237 break;
NeilBrown16a53ec2006-06-26 00:27:38 -07002238 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002239 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002240 }
2241 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 }
2243
2244 chunk_number = stripe * data_disks + i;
NeilBrown35f2a592010-04-20 14:13:34 +10002245 r_sector = chunk_number * sectors_per_chunk + chunk_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246
NeilBrown112bf892009-03-31 14:39:38 +11002247 check = raid5_compute_sector(conf, r_sector,
NeilBrown784052e2009-03-31 15:19:07 +11002248 previous, &dummy1, &sh2);
NeilBrown911d4ee2009-03-31 14:39:38 +11002249 if (check != sh->sector || dummy1 != dd_idx || sh2.pd_idx != sh->pd_idx
2250 || sh2.qd_idx != sh->qd_idx) {
NeilBrown0c55e022010-05-03 14:09:02 +10002251 printk(KERN_ERR "md/raid:%s: compute_blocknr: map not correct\n",
2252 mdname(conf->mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 return 0;
2254 }
2255 return r_sector;
2256}
2257
2258
Dan Williams600aa102008-06-28 08:32:05 +10002259static void
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002260schedule_reconstruction(struct stripe_head *sh, struct stripe_head_state *s,
Dan Williams600aa102008-06-28 08:32:05 +10002261 int rcw, int expand)
Dan Williamse33129d2007-01-02 13:52:30 -07002262{
2263 int i, pd_idx = sh->pd_idx, disks = sh->disks;
NeilBrownd1688a62011-10-11 16:49:52 +11002264 struct r5conf *conf = sh->raid_conf;
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002265 int level = conf->level;
NeilBrown16a53ec2006-06-26 00:27:38 -07002266
Dan Williamse33129d2007-01-02 13:52:30 -07002267 if (rcw) {
2268 /* if we are not expanding this is a proper write request, and
2269 * there will be bios with new data to be drained into the
2270 * stripe cache
2271 */
2272 if (!expand) {
Dan Williams600aa102008-06-28 08:32:05 +10002273 sh->reconstruct_state = reconstruct_state_drain_run;
2274 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
2275 } else
2276 sh->reconstruct_state = reconstruct_state_run;
Dan Williamse33129d2007-01-02 13:52:30 -07002277
Dan Williamsac6b53b2009-07-14 13:40:19 -07002278 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07002279
2280 for (i = disks; i--; ) {
2281 struct r5dev *dev = &sh->dev[i];
2282
2283 if (dev->towrite) {
2284 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsd8ee0722008-06-28 08:32:06 +10002285 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07002286 if (!expand)
2287 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10002288 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002289 }
2290 }
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002291 if (s->locked + conf->max_degraded == disks)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002292 if (!test_and_set_bit(STRIPE_FULL_WRITE, &sh->state))
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002293 atomic_inc(&conf->pending_full_writes);
Dan Williamse33129d2007-01-02 13:52:30 -07002294 } else {
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002295 BUG_ON(level == 6);
Dan Williamse33129d2007-01-02 13:52:30 -07002296 BUG_ON(!(test_bit(R5_UPTODATE, &sh->dev[pd_idx].flags) ||
2297 test_bit(R5_Wantcompute, &sh->dev[pd_idx].flags)));
2298
Dan Williamsd8ee0722008-06-28 08:32:06 +10002299 sh->reconstruct_state = reconstruct_state_prexor_drain_run;
Dan Williams600aa102008-06-28 08:32:05 +10002300 set_bit(STRIPE_OP_PREXOR, &s->ops_request);
2301 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
Dan Williamsac6b53b2009-07-14 13:40:19 -07002302 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07002303
2304 for (i = disks; i--; ) {
2305 struct r5dev *dev = &sh->dev[i];
2306 if (i == pd_idx)
2307 continue;
2308
Dan Williamse33129d2007-01-02 13:52:30 -07002309 if (dev->towrite &&
2310 (test_bit(R5_UPTODATE, &dev->flags) ||
Dan Williamsd8ee0722008-06-28 08:32:06 +10002311 test_bit(R5_Wantcompute, &dev->flags))) {
2312 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07002313 set_bit(R5_LOCKED, &dev->flags);
2314 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10002315 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002316 }
2317 }
2318 }
2319
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002320 /* keep the parity disk(s) locked while asynchronous operations
Dan Williamse33129d2007-01-02 13:52:30 -07002321 * are in flight
2322 */
2323 set_bit(R5_LOCKED, &sh->dev[pd_idx].flags);
2324 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
Dan Williams600aa102008-06-28 08:32:05 +10002325 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002326
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002327 if (level == 6) {
2328 int qd_idx = sh->qd_idx;
2329 struct r5dev *dev = &sh->dev[qd_idx];
2330
2331 set_bit(R5_LOCKED, &dev->flags);
2332 clear_bit(R5_UPTODATE, &dev->flags);
2333 s->locked++;
2334 }
2335
Dan Williams600aa102008-06-28 08:32:05 +10002336 pr_debug("%s: stripe %llu locked: %d ops_request: %lx\n",
Harvey Harrisone46b272b2008-04-28 02:15:50 -07002337 __func__, (unsigned long long)sh->sector,
Dan Williams600aa102008-06-28 08:32:05 +10002338 s->locked, s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07002339}
NeilBrown16a53ec2006-06-26 00:27:38 -07002340
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341/*
2342 * Each stripe/dev can have one or more bion attached.
NeilBrown16a53ec2006-06-26 00:27:38 -07002343 * toread/towrite point to the first in a chain.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 * The bi_next chain must be in order.
2345 */
2346static int add_stripe_bio(struct stripe_head *sh, struct bio *bi, int dd_idx, int forwrite)
2347{
2348 struct bio **bip;
NeilBrownd1688a62011-10-11 16:49:52 +11002349 struct r5conf *conf = sh->raid_conf;
NeilBrown72626682005-09-09 16:23:54 -07002350 int firstwrite=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351
NeilBrowncbe47ec2011-07-26 11:20:35 +10002352 pr_debug("adding bi b#%llu to stripe s#%llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 (unsigned long long)bi->bi_sector,
2354 (unsigned long long)sh->sector);
2355
2356
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 spin_lock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07002358 if (forwrite) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 bip = &sh->dev[dd_idx].towrite;
NeilBrown72626682005-09-09 16:23:54 -07002360 if (*bip == NULL && sh->dev[dd_idx].written == NULL)
2361 firstwrite = 1;
2362 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 bip = &sh->dev[dd_idx].toread;
2364 while (*bip && (*bip)->bi_sector < bi->bi_sector) {
2365 if ((*bip)->bi_sector + ((*bip)->bi_size >> 9) > bi->bi_sector)
2366 goto overlap;
2367 bip = & (*bip)->bi_next;
2368 }
2369 if (*bip && (*bip)->bi_sector < bi->bi_sector + ((bi->bi_size)>>9))
2370 goto overlap;
2371
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02002372 BUG_ON(*bip && bi->bi_next && (*bip) != bi->bi_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 if (*bip)
2374 bi->bi_next = *bip;
2375 *bip = bi;
Shaohua Lie7836bd62012-07-19 16:01:31 +10002376 raid5_inc_bi_active_stripes(bi);
NeilBrown72626682005-09-09 16:23:54 -07002377
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 if (forwrite) {
2379 /* check if page is covered */
2380 sector_t sector = sh->dev[dd_idx].sector;
2381 for (bi=sh->dev[dd_idx].towrite;
2382 sector < sh->dev[dd_idx].sector + STRIPE_SECTORS &&
2383 bi && bi->bi_sector <= sector;
2384 bi = r5_next_bio(bi, sh->dev[dd_idx].sector)) {
2385 if (bi->bi_sector + (bi->bi_size>>9) >= sector)
2386 sector = bi->bi_sector + (bi->bi_size>>9);
2387 }
2388 if (sector >= sh->dev[dd_idx].sector + STRIPE_SECTORS)
2389 set_bit(R5_OVERWRITE, &sh->dev[dd_idx].flags);
2390 }
NeilBrowncbe47ec2011-07-26 11:20:35 +10002391 spin_unlock_irq(&conf->device_lock);
NeilBrowncbe47ec2011-07-26 11:20:35 +10002392
2393 pr_debug("added bi b#%llu to stripe s#%llu, disk %d.\n",
2394 (unsigned long long)(*bip)->bi_sector,
2395 (unsigned long long)sh->sector, dd_idx);
2396
2397 if (conf->mddev->bitmap && firstwrite) {
2398 bitmap_startwrite(conf->mddev->bitmap, sh->sector,
2399 STRIPE_SECTORS, 0);
2400 sh->bm_seq = conf->seq_flush+1;
2401 set_bit(STRIPE_BIT_DELAY, &sh->state);
2402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 return 1;
2404
2405 overlap:
2406 set_bit(R5_Overlap, &sh->dev[dd_idx].flags);
2407 spin_unlock_irq(&conf->device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 return 0;
2409}
2410
NeilBrownd1688a62011-10-11 16:49:52 +11002411static void end_reshape(struct r5conf *conf);
NeilBrown29269552006-03-27 01:18:10 -08002412
NeilBrownd1688a62011-10-11 16:49:52 +11002413static void stripe_set_idx(sector_t stripe, struct r5conf *conf, int previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11002414 struct stripe_head *sh)
NeilBrownccfcc3c2006-03-27 01:18:09 -08002415{
NeilBrown784052e2009-03-31 15:19:07 +11002416 int sectors_per_chunk =
Andre Noll09c9e5f2009-06-18 08:45:55 +10002417 previous ? conf->prev_chunk_sectors : conf->chunk_sectors;
NeilBrown911d4ee2009-03-31 14:39:38 +11002418 int dd_idx;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07002419 int chunk_offset = sector_div(stripe, sectors_per_chunk);
NeilBrown112bf892009-03-31 14:39:38 +11002420 int disks = previous ? conf->previous_raid_disks : conf->raid_disks;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07002421
NeilBrown112bf892009-03-31 14:39:38 +11002422 raid5_compute_sector(conf,
2423 stripe * (disks - conf->max_degraded)
NeilBrownb875e532006-12-10 02:20:49 -08002424 *sectors_per_chunk + chunk_offset,
NeilBrown112bf892009-03-31 14:39:38 +11002425 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11002426 &dd_idx, sh);
NeilBrownccfcc3c2006-03-27 01:18:09 -08002427}
2428
Dan Williamsa4456852007-07-09 11:56:43 -07002429static void
NeilBrownd1688a62011-10-11 16:49:52 +11002430handle_failed_stripe(struct r5conf *conf, struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07002431 struct stripe_head_state *s, int disks,
2432 struct bio **return_bi)
2433{
2434 int i;
2435 for (i = disks; i--; ) {
2436 struct bio *bi;
2437 int bitmap_end = 0;
2438
2439 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrown3cb03002011-10-11 16:45:26 +11002440 struct md_rdev *rdev;
Dan Williamsa4456852007-07-09 11:56:43 -07002441 rcu_read_lock();
2442 rdev = rcu_dereference(conf->disks[i].rdev);
2443 if (rdev && test_bit(In_sync, &rdev->flags))
NeilBrown7f0da592011-07-28 11:39:22 +10002444 atomic_inc(&rdev->nr_pending);
2445 else
2446 rdev = NULL;
Dan Williamsa4456852007-07-09 11:56:43 -07002447 rcu_read_unlock();
NeilBrown7f0da592011-07-28 11:39:22 +10002448 if (rdev) {
2449 if (!rdev_set_badblocks(
2450 rdev,
2451 sh->sector,
2452 STRIPE_SECTORS, 0))
2453 md_error(conf->mddev, rdev);
2454 rdev_dec_pending(rdev, conf->mddev);
2455 }
Dan Williamsa4456852007-07-09 11:56:43 -07002456 }
2457 spin_lock_irq(&conf->device_lock);
2458 /* fail all writes first */
2459 bi = sh->dev[i].towrite;
2460 sh->dev[i].towrite = NULL;
2461 if (bi) {
2462 s->to_write--;
2463 bitmap_end = 1;
2464 }
2465
2466 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
2467 wake_up(&conf->wait_for_overlap);
2468
2469 while (bi && bi->bi_sector <
2470 sh->dev[i].sector + STRIPE_SECTORS) {
2471 struct bio *nextbi = r5_next_bio(bi, sh->dev[i].sector);
2472 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Shaohua Lie7836bd62012-07-19 16:01:31 +10002473 if (!raid5_dec_bi_active_stripes(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002474 md_write_end(conf->mddev);
2475 bi->bi_next = *return_bi;
2476 *return_bi = bi;
2477 }
2478 bi = nextbi;
2479 }
2480 /* and fail all 'written' */
2481 bi = sh->dev[i].written;
2482 sh->dev[i].written = NULL;
2483 if (bi) bitmap_end = 1;
2484 while (bi && bi->bi_sector <
2485 sh->dev[i].sector + STRIPE_SECTORS) {
2486 struct bio *bi2 = r5_next_bio(bi, sh->dev[i].sector);
2487 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Shaohua Lie7836bd62012-07-19 16:01:31 +10002488 if (!raid5_dec_bi_active_stripes(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002489 md_write_end(conf->mddev);
2490 bi->bi_next = *return_bi;
2491 *return_bi = bi;
2492 }
2493 bi = bi2;
2494 }
2495
Dan Williamsb5e98d62007-01-02 13:52:31 -07002496 /* fail any reads if this device is non-operational and
2497 * the data has not reached the cache yet.
2498 */
2499 if (!test_bit(R5_Wantfill, &sh->dev[i].flags) &&
2500 (!test_bit(R5_Insync, &sh->dev[i].flags) ||
2501 test_bit(R5_ReadError, &sh->dev[i].flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07002502 bi = sh->dev[i].toread;
2503 sh->dev[i].toread = NULL;
2504 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
2505 wake_up(&conf->wait_for_overlap);
2506 if (bi) s->to_read--;
2507 while (bi && bi->bi_sector <
2508 sh->dev[i].sector + STRIPE_SECTORS) {
2509 struct bio *nextbi =
2510 r5_next_bio(bi, sh->dev[i].sector);
2511 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Shaohua Lie7836bd62012-07-19 16:01:31 +10002512 if (!raid5_dec_bi_active_stripes(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002513 bi->bi_next = *return_bi;
2514 *return_bi = bi;
2515 }
2516 bi = nextbi;
2517 }
2518 }
2519 spin_unlock_irq(&conf->device_lock);
2520 if (bitmap_end)
2521 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
2522 STRIPE_SECTORS, 0, 0);
NeilBrown8cfa7b02011-07-27 11:00:36 +10002523 /* If we were in the middle of a write the parity block might
2524 * still be locked - so just clear all R5_LOCKED flags
2525 */
2526 clear_bit(R5_LOCKED, &sh->dev[i].flags);
Dan Williamsa4456852007-07-09 11:56:43 -07002527 }
2528
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002529 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
2530 if (atomic_dec_and_test(&conf->pending_full_writes))
2531 md_wakeup_thread(conf->mddev->thread);
Dan Williamsa4456852007-07-09 11:56:43 -07002532}
2533
NeilBrown7f0da592011-07-28 11:39:22 +10002534static void
NeilBrownd1688a62011-10-11 16:49:52 +11002535handle_failed_sync(struct r5conf *conf, struct stripe_head *sh,
NeilBrown7f0da592011-07-28 11:39:22 +10002536 struct stripe_head_state *s)
2537{
2538 int abort = 0;
2539 int i;
2540
NeilBrown7f0da592011-07-28 11:39:22 +10002541 clear_bit(STRIPE_SYNCING, &sh->state);
2542 s->syncing = 0;
NeilBrown9a3e1102011-12-23 10:17:53 +11002543 s->replacing = 0;
NeilBrown7f0da592011-07-28 11:39:22 +10002544 /* There is nothing more to do for sync/check/repair.
NeilBrown18b98372012-04-01 23:48:38 +10002545 * Don't even need to abort as that is handled elsewhere
2546 * if needed, and not always wanted e.g. if there is a known
2547 * bad block here.
NeilBrown9a3e1102011-12-23 10:17:53 +11002548 * For recover/replace we need to record a bad block on all
NeilBrown7f0da592011-07-28 11:39:22 +10002549 * non-sync devices, or abort the recovery
2550 */
NeilBrown18b98372012-04-01 23:48:38 +10002551 if (test_bit(MD_RECOVERY_RECOVER, &conf->mddev->recovery)) {
2552 /* During recovery devices cannot be removed, so
2553 * locking and refcounting of rdevs is not needed
2554 */
2555 for (i = 0; i < conf->raid_disks; i++) {
2556 struct md_rdev *rdev = conf->disks[i].rdev;
2557 if (rdev
2558 && !test_bit(Faulty, &rdev->flags)
2559 && !test_bit(In_sync, &rdev->flags)
2560 && !rdev_set_badblocks(rdev, sh->sector,
2561 STRIPE_SECTORS, 0))
2562 abort = 1;
2563 rdev = conf->disks[i].replacement;
2564 if (rdev
2565 && !test_bit(Faulty, &rdev->flags)
2566 && !test_bit(In_sync, &rdev->flags)
2567 && !rdev_set_badblocks(rdev, sh->sector,
2568 STRIPE_SECTORS, 0))
2569 abort = 1;
2570 }
2571 if (abort)
2572 conf->recovery_disabled =
2573 conf->mddev->recovery_disabled;
NeilBrown7f0da592011-07-28 11:39:22 +10002574 }
NeilBrown18b98372012-04-01 23:48:38 +10002575 md_done_sync(conf->mddev, STRIPE_SECTORS, !abort);
NeilBrown7f0da592011-07-28 11:39:22 +10002576}
2577
NeilBrown9a3e1102011-12-23 10:17:53 +11002578static int want_replace(struct stripe_head *sh, int disk_idx)
2579{
2580 struct md_rdev *rdev;
2581 int rv = 0;
2582 /* Doing recovery so rcu locking not required */
2583 rdev = sh->raid_conf->disks[disk_idx].replacement;
2584 if (rdev
2585 && !test_bit(Faulty, &rdev->flags)
2586 && !test_bit(In_sync, &rdev->flags)
2587 && (rdev->recovery_offset <= sh->sector
2588 || rdev->mddev->recovery_cp <= sh->sector))
2589 rv = 1;
2590
2591 return rv;
2592}
2593
NeilBrown93b3dbc2011-07-27 11:00:36 +10002594/* fetch_block - checks the given member device to see if its data needs
Dan Williams1fe797e2008-06-28 09:16:30 +10002595 * to be read or computed to satisfy a request.
2596 *
2597 * Returns 1 when no more member devices need to be checked, otherwise returns
NeilBrown93b3dbc2011-07-27 11:00:36 +10002598 * 0 to tell the loop in handle_stripe_fill to continue
Dan Williamsf38e1212007-01-02 13:52:30 -07002599 */
NeilBrown93b3dbc2011-07-27 11:00:36 +10002600static int fetch_block(struct stripe_head *sh, struct stripe_head_state *s,
2601 int disk_idx, int disks)
Dan Williamsf38e1212007-01-02 13:52:30 -07002602{
2603 struct r5dev *dev = &sh->dev[disk_idx];
NeilBrown93b3dbc2011-07-27 11:00:36 +10002604 struct r5dev *fdev[2] = { &sh->dev[s->failed_num[0]],
2605 &sh->dev[s->failed_num[1]] };
Dan Williamsf38e1212007-01-02 13:52:30 -07002606
Dan Williamsf38e1212007-01-02 13:52:30 -07002607 /* is the data in this block needed, and can we get it? */
2608 if (!test_bit(R5_LOCKED, &dev->flags) &&
Dan Williams1fe797e2008-06-28 09:16:30 +10002609 !test_bit(R5_UPTODATE, &dev->flags) &&
2610 (dev->toread ||
2611 (dev->towrite && !test_bit(R5_OVERWRITE, &dev->flags)) ||
2612 s->syncing || s->expanding ||
NeilBrown9a3e1102011-12-23 10:17:53 +11002613 (s->replacing && want_replace(sh, disk_idx)) ||
NeilBrown5d35e092011-07-27 11:00:36 +10002614 (s->failed >= 1 && fdev[0]->toread) ||
2615 (s->failed >= 2 && fdev[1]->toread) ||
NeilBrown93b3dbc2011-07-27 11:00:36 +10002616 (sh->raid_conf->level <= 5 && s->failed && fdev[0]->towrite &&
2617 !test_bit(R5_OVERWRITE, &fdev[0]->flags)) ||
2618 (sh->raid_conf->level == 6 && s->failed && s->to_write))) {
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07002619 /* we would like to get this block, possibly by computing it,
2620 * otherwise read it if the backing disk is insync
2621 */
2622 BUG_ON(test_bit(R5_Wantcompute, &dev->flags));
2623 BUG_ON(test_bit(R5_Wantread, &dev->flags));
2624 if ((s->uptodate == disks - 1) &&
NeilBrownf2b3b442011-07-26 11:35:19 +10002625 (s->failed && (disk_idx == s->failed_num[0] ||
2626 disk_idx == s->failed_num[1]))) {
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07002627 /* have disk failed, and we're requested to fetch it;
2628 * do compute it
2629 */
2630 pr_debug("Computing stripe %llu block %d\n",
2631 (unsigned long long)sh->sector, disk_idx);
2632 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
2633 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
2634 set_bit(R5_Wantcompute, &dev->flags);
2635 sh->ops.target = disk_idx;
2636 sh->ops.target2 = -1; /* no 2nd target */
2637 s->req_compute = 1;
NeilBrown93b3dbc2011-07-27 11:00:36 +10002638 /* Careful: from this point on 'uptodate' is in the eye
2639 * of raid_run_ops which services 'compute' operations
2640 * before writes. R5_Wantcompute flags a block that will
2641 * be R5_UPTODATE by the time it is needed for a
2642 * subsequent operation.
2643 */
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07002644 s->uptodate++;
2645 return 1;
2646 } else if (s->uptodate == disks-2 && s->failed >= 2) {
2647 /* Computing 2-failure is *very* expensive; only
2648 * do it if failed >= 2
2649 */
2650 int other;
2651 for (other = disks; other--; ) {
2652 if (other == disk_idx)
2653 continue;
2654 if (!test_bit(R5_UPTODATE,
2655 &sh->dev[other].flags))
2656 break;
2657 }
2658 BUG_ON(other < 0);
2659 pr_debug("Computing stripe %llu blocks %d,%d\n",
2660 (unsigned long long)sh->sector,
2661 disk_idx, other);
2662 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
2663 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
2664 set_bit(R5_Wantcompute, &sh->dev[disk_idx].flags);
2665 set_bit(R5_Wantcompute, &sh->dev[other].flags);
2666 sh->ops.target = disk_idx;
2667 sh->ops.target2 = other;
2668 s->uptodate += 2;
2669 s->req_compute = 1;
2670 return 1;
2671 } else if (test_bit(R5_Insync, &dev->flags)) {
2672 set_bit(R5_LOCKED, &dev->flags);
2673 set_bit(R5_Wantread, &dev->flags);
2674 s->locked++;
2675 pr_debug("Reading block %d (sync=%d)\n",
2676 disk_idx, s->syncing);
2677 }
2678 }
2679
2680 return 0;
2681}
2682
2683/**
NeilBrown93b3dbc2011-07-27 11:00:36 +10002684 * handle_stripe_fill - read or compute data to satisfy pending requests.
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07002685 */
NeilBrown93b3dbc2011-07-27 11:00:36 +10002686static void handle_stripe_fill(struct stripe_head *sh,
2687 struct stripe_head_state *s,
2688 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07002689{
2690 int i;
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07002691
2692 /* look for blocks to read/compute, skip this if a compute
2693 * is already in flight, or if the stripe contents are in the
2694 * midst of changing due to a write
2695 */
2696 if (!test_bit(STRIPE_COMPUTE_RUN, &sh->state) && !sh->check_state &&
2697 !sh->reconstruct_state)
2698 for (i = disks; i--; )
NeilBrown93b3dbc2011-07-27 11:00:36 +10002699 if (fetch_block(sh, s, i, disks))
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07002700 break;
Dan Williamsa4456852007-07-09 11:56:43 -07002701 set_bit(STRIPE_HANDLE, &sh->state);
2702}
2703
2704
Dan Williams1fe797e2008-06-28 09:16:30 +10002705/* handle_stripe_clean_event
Dan Williamsa4456852007-07-09 11:56:43 -07002706 * any written block on an uptodate or failed drive can be returned.
2707 * Note that if we 'wrote' to a failed drive, it will be UPTODATE, but
2708 * never LOCKED, so we don't need to test 'failed' directly.
2709 */
NeilBrownd1688a62011-10-11 16:49:52 +11002710static void handle_stripe_clean_event(struct r5conf *conf,
Dan Williamsa4456852007-07-09 11:56:43 -07002711 struct stripe_head *sh, int disks, struct bio **return_bi)
2712{
2713 int i;
2714 struct r5dev *dev;
2715
2716 for (i = disks; i--; )
2717 if (sh->dev[i].written) {
2718 dev = &sh->dev[i];
2719 if (!test_bit(R5_LOCKED, &dev->flags) &&
2720 test_bit(R5_UPTODATE, &dev->flags)) {
2721 /* We can return any write requests */
2722 struct bio *wbi, *wbi2;
2723 int bitmap_end = 0;
Dan Williams45b42332007-07-09 11:56:43 -07002724 pr_debug("Return write for disc %d\n", i);
Dan Williamsa4456852007-07-09 11:56:43 -07002725 spin_lock_irq(&conf->device_lock);
2726 wbi = dev->written;
2727 dev->written = NULL;
2728 while (wbi && wbi->bi_sector <
2729 dev->sector + STRIPE_SECTORS) {
2730 wbi2 = r5_next_bio(wbi, dev->sector);
Shaohua Lie7836bd62012-07-19 16:01:31 +10002731 if (!raid5_dec_bi_active_stripes(wbi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002732 md_write_end(conf->mddev);
2733 wbi->bi_next = *return_bi;
2734 *return_bi = wbi;
2735 }
2736 wbi = wbi2;
2737 }
2738 if (dev->towrite == NULL)
2739 bitmap_end = 1;
2740 spin_unlock_irq(&conf->device_lock);
2741 if (bitmap_end)
2742 bitmap_endwrite(conf->mddev->bitmap,
2743 sh->sector,
2744 STRIPE_SECTORS,
2745 !test_bit(STRIPE_DEGRADED, &sh->state),
2746 0);
2747 }
2748 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002749
2750 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
2751 if (atomic_dec_and_test(&conf->pending_full_writes))
2752 md_wakeup_thread(conf->mddev->thread);
Dan Williamsa4456852007-07-09 11:56:43 -07002753}
2754
NeilBrownd1688a62011-10-11 16:49:52 +11002755static void handle_stripe_dirtying(struct r5conf *conf,
NeilBrownc8ac1802011-07-27 11:00:36 +10002756 struct stripe_head *sh,
2757 struct stripe_head_state *s,
2758 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07002759{
2760 int rmw = 0, rcw = 0, i;
NeilBrownc8ac1802011-07-27 11:00:36 +10002761 if (conf->max_degraded == 2) {
2762 /* RAID6 requires 'rcw' in current implementation
2763 * Calculate the real rcw later - for now fake it
2764 * look like rcw is cheaper
2765 */
2766 rcw = 1; rmw = 2;
2767 } else for (i = disks; i--; ) {
Dan Williamsa4456852007-07-09 11:56:43 -07002768 /* would I have to read this buffer for read_modify_write */
2769 struct r5dev *dev = &sh->dev[i];
2770 if ((dev->towrite || i == sh->pd_idx) &&
2771 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002772 !(test_bit(R5_UPTODATE, &dev->flags) ||
2773 test_bit(R5_Wantcompute, &dev->flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07002774 if (test_bit(R5_Insync, &dev->flags))
2775 rmw++;
2776 else
2777 rmw += 2*disks; /* cannot read it */
2778 }
2779 /* Would I have to read this buffer for reconstruct_write */
2780 if (!test_bit(R5_OVERWRITE, &dev->flags) && i != sh->pd_idx &&
2781 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002782 !(test_bit(R5_UPTODATE, &dev->flags) ||
2783 test_bit(R5_Wantcompute, &dev->flags))) {
2784 if (test_bit(R5_Insync, &dev->flags)) rcw++;
Dan Williamsa4456852007-07-09 11:56:43 -07002785 else
2786 rcw += 2*disks;
2787 }
2788 }
Dan Williams45b42332007-07-09 11:56:43 -07002789 pr_debug("for sector %llu, rmw=%d rcw=%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002790 (unsigned long long)sh->sector, rmw, rcw);
2791 set_bit(STRIPE_HANDLE, &sh->state);
2792 if (rmw < rcw && rmw > 0)
2793 /* prefer read-modify-write, but need to get some data */
2794 for (i = disks; i--; ) {
2795 struct r5dev *dev = &sh->dev[i];
2796 if ((dev->towrite || i == sh->pd_idx) &&
2797 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002798 !(test_bit(R5_UPTODATE, &dev->flags) ||
2799 test_bit(R5_Wantcompute, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07002800 test_bit(R5_Insync, &dev->flags)) {
2801 if (
2802 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07002803 pr_debug("Read_old block "
Dan Williamsa4456852007-07-09 11:56:43 -07002804 "%d for r-m-w\n", i);
2805 set_bit(R5_LOCKED, &dev->flags);
2806 set_bit(R5_Wantread, &dev->flags);
2807 s->locked++;
2808 } else {
2809 set_bit(STRIPE_DELAYED, &sh->state);
2810 set_bit(STRIPE_HANDLE, &sh->state);
2811 }
2812 }
2813 }
NeilBrownc8ac1802011-07-27 11:00:36 +10002814 if (rcw <= rmw && rcw > 0) {
Dan Williamsa4456852007-07-09 11:56:43 -07002815 /* want reconstruct write, but need to get some data */
NeilBrownc8ac1802011-07-27 11:00:36 +10002816 rcw = 0;
Dan Williamsa4456852007-07-09 11:56:43 -07002817 for (i = disks; i--; ) {
2818 struct r5dev *dev = &sh->dev[i];
2819 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
NeilBrownc8ac1802011-07-27 11:00:36 +10002820 i != sh->pd_idx && i != sh->qd_idx &&
Dan Williamsa4456852007-07-09 11:56:43 -07002821 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002822 !(test_bit(R5_UPTODATE, &dev->flags) ||
NeilBrownc8ac1802011-07-27 11:00:36 +10002823 test_bit(R5_Wantcompute, &dev->flags))) {
2824 rcw++;
2825 if (!test_bit(R5_Insync, &dev->flags))
2826 continue; /* it's a failed drive */
Dan Williamsa4456852007-07-09 11:56:43 -07002827 if (
2828 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07002829 pr_debug("Read_old block "
Dan Williamsa4456852007-07-09 11:56:43 -07002830 "%d for Reconstruct\n", i);
2831 set_bit(R5_LOCKED, &dev->flags);
2832 set_bit(R5_Wantread, &dev->flags);
2833 s->locked++;
2834 } else {
2835 set_bit(STRIPE_DELAYED, &sh->state);
2836 set_bit(STRIPE_HANDLE, &sh->state);
2837 }
2838 }
2839 }
NeilBrownc8ac1802011-07-27 11:00:36 +10002840 }
Dan Williamsa4456852007-07-09 11:56:43 -07002841 /* now if nothing is locked, and if we have enough data,
2842 * we can start a write request
2843 */
Dan Williamsf38e1212007-01-02 13:52:30 -07002844 /* since handle_stripe can be called at any time we need to handle the
2845 * case where a compute block operation has been submitted and then a
Dan Williamsac6b53b2009-07-14 13:40:19 -07002846 * subsequent call wants to start a write request. raid_run_ops only
2847 * handles the case where compute block and reconstruct are requested
Dan Williamsf38e1212007-01-02 13:52:30 -07002848 * simultaneously. If this is not the case then new writes need to be
2849 * held off until the compute completes.
2850 */
Dan Williams976ea8d2008-06-28 08:32:03 +10002851 if ((s->req_compute || !test_bit(STRIPE_COMPUTE_RUN, &sh->state)) &&
2852 (s->locked == 0 && (rcw == 0 || rmw == 0) &&
2853 !test_bit(STRIPE_BIT_DELAY, &sh->state)))
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002854 schedule_reconstruction(sh, s, rcw == 0, 0);
Dan Williamsa4456852007-07-09 11:56:43 -07002855}
2856
NeilBrownd1688a62011-10-11 16:49:52 +11002857static void handle_parity_checks5(struct r5conf *conf, struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07002858 struct stripe_head_state *s, int disks)
2859{
Dan Williamsecc65c92008-06-28 08:31:57 +10002860 struct r5dev *dev = NULL;
Dan Williamse89f8962007-01-02 13:52:31 -07002861
Dan Williamsbd2ab672008-04-10 21:29:27 -07002862 set_bit(STRIPE_HANDLE, &sh->state);
2863
Dan Williamsecc65c92008-06-28 08:31:57 +10002864 switch (sh->check_state) {
2865 case check_state_idle:
2866 /* start a new check operation if there are no failures */
Dan Williamsbd2ab672008-04-10 21:29:27 -07002867 if (s->failed == 0) {
Dan Williamsbd2ab672008-04-10 21:29:27 -07002868 BUG_ON(s->uptodate != disks);
Dan Williamsecc65c92008-06-28 08:31:57 +10002869 sh->check_state = check_state_run;
2870 set_bit(STRIPE_OP_CHECK, &s->ops_request);
Dan Williamsbd2ab672008-04-10 21:29:27 -07002871 clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
Dan Williamsbd2ab672008-04-10 21:29:27 -07002872 s->uptodate--;
Dan Williamsecc65c92008-06-28 08:31:57 +10002873 break;
Dan Williamsbd2ab672008-04-10 21:29:27 -07002874 }
NeilBrownf2b3b442011-07-26 11:35:19 +10002875 dev = &sh->dev[s->failed_num[0]];
Dan Williamsecc65c92008-06-28 08:31:57 +10002876 /* fall through */
2877 case check_state_compute_result:
2878 sh->check_state = check_state_idle;
2879 if (!dev)
2880 dev = &sh->dev[sh->pd_idx];
2881
2882 /* check that a write has not made the stripe insync */
2883 if (test_bit(STRIPE_INSYNC, &sh->state))
2884 break;
2885
2886 /* either failed parity check, or recovery is happening */
Dan Williamsa4456852007-07-09 11:56:43 -07002887 BUG_ON(!test_bit(R5_UPTODATE, &dev->flags));
2888 BUG_ON(s->uptodate != disks);
2889
2890 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsecc65c92008-06-28 08:31:57 +10002891 s->locked++;
Dan Williamsa4456852007-07-09 11:56:43 -07002892 set_bit(R5_Wantwrite, &dev->flags);
Dan Williams830ea012007-01-02 13:52:31 -07002893
Dan Williamsa4456852007-07-09 11:56:43 -07002894 clear_bit(STRIPE_DEGRADED, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07002895 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10002896 break;
2897 case check_state_run:
2898 break; /* we will be called again upon completion */
2899 case check_state_check_result:
2900 sh->check_state = check_state_idle;
2901
2902 /* if a failure occurred during the check operation, leave
2903 * STRIPE_INSYNC not set and let the stripe be handled again
2904 */
2905 if (s->failed)
2906 break;
2907
2908 /* handle a successful check operation, if parity is correct
2909 * we are done. Otherwise update the mismatch count and repair
2910 * parity if !MD_RECOVERY_CHECK
2911 */
Dan Williamsad283ea2009-08-29 19:09:26 -07002912 if ((sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) == 0)
Dan Williamsecc65c92008-06-28 08:31:57 +10002913 /* parity is correct (on disc,
2914 * not in buffer any more)
2915 */
2916 set_bit(STRIPE_INSYNC, &sh->state);
2917 else {
2918 conf->mddev->resync_mismatches += STRIPE_SECTORS;
2919 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
2920 /* don't try to repair!! */
2921 set_bit(STRIPE_INSYNC, &sh->state);
2922 else {
2923 sh->check_state = check_state_compute_run;
Dan Williams976ea8d2008-06-28 08:32:03 +10002924 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10002925 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
2926 set_bit(R5_Wantcompute,
2927 &sh->dev[sh->pd_idx].flags);
2928 sh->ops.target = sh->pd_idx;
Dan Williamsac6b53b2009-07-14 13:40:19 -07002929 sh->ops.target2 = -1;
Dan Williamsecc65c92008-06-28 08:31:57 +10002930 s->uptodate++;
2931 }
2932 }
2933 break;
2934 case check_state_compute_run:
2935 break;
2936 default:
2937 printk(KERN_ERR "%s: unknown check_state: %d sector: %llu\n",
2938 __func__, sh->check_state,
2939 (unsigned long long) sh->sector);
2940 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07002941 }
2942}
2943
2944
NeilBrownd1688a62011-10-11 16:49:52 +11002945static void handle_parity_checks6(struct r5conf *conf, struct stripe_head *sh,
Dan Williams36d1c642009-07-14 11:48:22 -07002946 struct stripe_head_state *s,
NeilBrownf2b3b442011-07-26 11:35:19 +10002947 int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07002948{
Dan Williamsa4456852007-07-09 11:56:43 -07002949 int pd_idx = sh->pd_idx;
NeilBrown34e04e82009-03-31 15:10:16 +11002950 int qd_idx = sh->qd_idx;
Dan Williamsd82dfee2009-07-14 13:40:57 -07002951 struct r5dev *dev;
Dan Williamsa4456852007-07-09 11:56:43 -07002952
2953 set_bit(STRIPE_HANDLE, &sh->state);
2954
2955 BUG_ON(s->failed > 2);
Dan Williamsd82dfee2009-07-14 13:40:57 -07002956
Dan Williamsa4456852007-07-09 11:56:43 -07002957 /* Want to check and possibly repair P and Q.
2958 * However there could be one 'failed' device, in which
2959 * case we can only check one of them, possibly using the
2960 * other to generate missing data
2961 */
2962
Dan Williamsd82dfee2009-07-14 13:40:57 -07002963 switch (sh->check_state) {
2964 case check_state_idle:
2965 /* start a new check operation if there are < 2 failures */
NeilBrownf2b3b442011-07-26 11:35:19 +10002966 if (s->failed == s->q_failed) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07002967 /* The only possible failed device holds Q, so it
Dan Williamsa4456852007-07-09 11:56:43 -07002968 * makes sense to check P (If anything else were failed,
2969 * we would have used P to recreate it).
2970 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07002971 sh->check_state = check_state_run;
Dan Williamsa4456852007-07-09 11:56:43 -07002972 }
NeilBrownf2b3b442011-07-26 11:35:19 +10002973 if (!s->q_failed && s->failed < 2) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07002974 /* Q is not failed, and we didn't use it to generate
Dan Williamsa4456852007-07-09 11:56:43 -07002975 * anything, so it makes sense to check it
2976 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07002977 if (sh->check_state == check_state_run)
2978 sh->check_state = check_state_run_pq;
2979 else
2980 sh->check_state = check_state_run_q;
Dan Williamsa4456852007-07-09 11:56:43 -07002981 }
Dan Williams36d1c642009-07-14 11:48:22 -07002982
Dan Williamsd82dfee2009-07-14 13:40:57 -07002983 /* discard potentially stale zero_sum_result */
2984 sh->ops.zero_sum_result = 0;
Dan Williams36d1c642009-07-14 11:48:22 -07002985
Dan Williamsd82dfee2009-07-14 13:40:57 -07002986 if (sh->check_state == check_state_run) {
2987 /* async_xor_zero_sum destroys the contents of P */
2988 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
2989 s->uptodate--;
Dan Williamsa4456852007-07-09 11:56:43 -07002990 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07002991 if (sh->check_state >= check_state_run &&
2992 sh->check_state <= check_state_run_pq) {
2993 /* async_syndrome_zero_sum preserves P and Q, so
2994 * no need to mark them !uptodate here
2995 */
2996 set_bit(STRIPE_OP_CHECK, &s->ops_request);
2997 break;
2998 }
Dan Williams36d1c642009-07-14 11:48:22 -07002999
Dan Williamsd82dfee2009-07-14 13:40:57 -07003000 /* we have 2-disk failure */
3001 BUG_ON(s->failed != 2);
3002 /* fall through */
3003 case check_state_compute_result:
3004 sh->check_state = check_state_idle;
Dan Williams36d1c642009-07-14 11:48:22 -07003005
Dan Williamsd82dfee2009-07-14 13:40:57 -07003006 /* check that a write has not made the stripe insync */
3007 if (test_bit(STRIPE_INSYNC, &sh->state))
3008 break;
Dan Williamsa4456852007-07-09 11:56:43 -07003009
3010 /* now write out any block on a failed drive,
Dan Williamsd82dfee2009-07-14 13:40:57 -07003011 * or P or Q if they were recomputed
Dan Williamsa4456852007-07-09 11:56:43 -07003012 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07003013 BUG_ON(s->uptodate < disks - 1); /* We don't need Q to recover */
Dan Williamsa4456852007-07-09 11:56:43 -07003014 if (s->failed == 2) {
NeilBrownf2b3b442011-07-26 11:35:19 +10003015 dev = &sh->dev[s->failed_num[1]];
Dan Williamsa4456852007-07-09 11:56:43 -07003016 s->locked++;
3017 set_bit(R5_LOCKED, &dev->flags);
3018 set_bit(R5_Wantwrite, &dev->flags);
3019 }
3020 if (s->failed >= 1) {
NeilBrownf2b3b442011-07-26 11:35:19 +10003021 dev = &sh->dev[s->failed_num[0]];
Dan Williamsa4456852007-07-09 11:56:43 -07003022 s->locked++;
3023 set_bit(R5_LOCKED, &dev->flags);
3024 set_bit(R5_Wantwrite, &dev->flags);
3025 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07003026 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
Dan Williamsa4456852007-07-09 11:56:43 -07003027 dev = &sh->dev[pd_idx];
3028 s->locked++;
3029 set_bit(R5_LOCKED, &dev->flags);
3030 set_bit(R5_Wantwrite, &dev->flags);
3031 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07003032 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
Dan Williamsa4456852007-07-09 11:56:43 -07003033 dev = &sh->dev[qd_idx];
3034 s->locked++;
3035 set_bit(R5_LOCKED, &dev->flags);
3036 set_bit(R5_Wantwrite, &dev->flags);
3037 }
3038 clear_bit(STRIPE_DEGRADED, &sh->state);
3039
3040 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsd82dfee2009-07-14 13:40:57 -07003041 break;
3042 case check_state_run:
3043 case check_state_run_q:
3044 case check_state_run_pq:
3045 break; /* we will be called again upon completion */
3046 case check_state_check_result:
3047 sh->check_state = check_state_idle;
3048
3049 /* handle a successful check operation, if parity is correct
3050 * we are done. Otherwise update the mismatch count and repair
3051 * parity if !MD_RECOVERY_CHECK
3052 */
3053 if (sh->ops.zero_sum_result == 0) {
3054 /* both parities are correct */
3055 if (!s->failed)
3056 set_bit(STRIPE_INSYNC, &sh->state);
3057 else {
3058 /* in contrast to the raid5 case we can validate
3059 * parity, but still have a failure to write
3060 * back
3061 */
3062 sh->check_state = check_state_compute_result;
3063 /* Returning at this point means that we may go
3064 * off and bring p and/or q uptodate again so
3065 * we make sure to check zero_sum_result again
3066 * to verify if p or q need writeback
3067 */
3068 }
3069 } else {
3070 conf->mddev->resync_mismatches += STRIPE_SECTORS;
3071 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
3072 /* don't try to repair!! */
3073 set_bit(STRIPE_INSYNC, &sh->state);
3074 else {
3075 int *target = &sh->ops.target;
3076
3077 sh->ops.target = -1;
3078 sh->ops.target2 = -1;
3079 sh->check_state = check_state_compute_run;
3080 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
3081 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
3082 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
3083 set_bit(R5_Wantcompute,
3084 &sh->dev[pd_idx].flags);
3085 *target = pd_idx;
3086 target = &sh->ops.target2;
3087 s->uptodate++;
3088 }
3089 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
3090 set_bit(R5_Wantcompute,
3091 &sh->dev[qd_idx].flags);
3092 *target = qd_idx;
3093 s->uptodate++;
3094 }
3095 }
3096 }
3097 break;
3098 case check_state_compute_run:
3099 break;
3100 default:
3101 printk(KERN_ERR "%s: unknown check_state: %d sector: %llu\n",
3102 __func__, sh->check_state,
3103 (unsigned long long) sh->sector);
3104 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07003105 }
3106}
3107
NeilBrownd1688a62011-10-11 16:49:52 +11003108static void handle_stripe_expansion(struct r5conf *conf, struct stripe_head *sh)
Dan Williamsa4456852007-07-09 11:56:43 -07003109{
3110 int i;
3111
3112 /* We have read all the blocks in this stripe and now we need to
3113 * copy some of them into a target stripe for expand.
3114 */
Dan Williamsf0a50d32007-01-02 13:52:31 -07003115 struct dma_async_tx_descriptor *tx = NULL;
Dan Williamsa4456852007-07-09 11:56:43 -07003116 clear_bit(STRIPE_EXPAND_SOURCE, &sh->state);
3117 for (i = 0; i < sh->disks; i++)
NeilBrown34e04e82009-03-31 15:10:16 +11003118 if (i != sh->pd_idx && i != sh->qd_idx) {
NeilBrown911d4ee2009-03-31 14:39:38 +11003119 int dd_idx, j;
Dan Williamsa4456852007-07-09 11:56:43 -07003120 struct stripe_head *sh2;
Dan Williamsa08abd82009-06-03 11:43:59 -07003121 struct async_submit_ctl submit;
Dan Williamsa4456852007-07-09 11:56:43 -07003122
NeilBrown784052e2009-03-31 15:19:07 +11003123 sector_t bn = compute_blocknr(sh, i, 1);
NeilBrown911d4ee2009-03-31 14:39:38 +11003124 sector_t s = raid5_compute_sector(conf, bn, 0,
3125 &dd_idx, NULL);
NeilBrowna8c906c2009-06-09 14:39:59 +10003126 sh2 = get_active_stripe(conf, s, 0, 1, 1);
Dan Williamsa4456852007-07-09 11:56:43 -07003127 if (sh2 == NULL)
3128 /* so far only the early blocks of this stripe
3129 * have been requested. When later blocks
3130 * get requested, we will try again
3131 */
3132 continue;
3133 if (!test_bit(STRIPE_EXPANDING, &sh2->state) ||
3134 test_bit(R5_Expanded, &sh2->dev[dd_idx].flags)) {
3135 /* must have already done this block */
3136 release_stripe(sh2);
3137 continue;
3138 }
Dan Williamsf0a50d32007-01-02 13:52:31 -07003139
3140 /* place all the copies on one channel */
Dan Williamsa08abd82009-06-03 11:43:59 -07003141 init_async_submit(&submit, 0, tx, NULL, NULL, NULL);
Dan Williamsf0a50d32007-01-02 13:52:31 -07003142 tx = async_memcpy(sh2->dev[dd_idx].page,
Dan Williams88ba2aa2009-04-09 16:16:18 -07003143 sh->dev[i].page, 0, 0, STRIPE_SIZE,
Dan Williamsa08abd82009-06-03 11:43:59 -07003144 &submit);
Dan Williamsf0a50d32007-01-02 13:52:31 -07003145
Dan Williamsa4456852007-07-09 11:56:43 -07003146 set_bit(R5_Expanded, &sh2->dev[dd_idx].flags);
3147 set_bit(R5_UPTODATE, &sh2->dev[dd_idx].flags);
3148 for (j = 0; j < conf->raid_disks; j++)
3149 if (j != sh2->pd_idx &&
NeilBrown86c374b2011-07-27 11:00:36 +10003150 j != sh2->qd_idx &&
Dan Williamsa4456852007-07-09 11:56:43 -07003151 !test_bit(R5_Expanded, &sh2->dev[j].flags))
3152 break;
3153 if (j == conf->raid_disks) {
3154 set_bit(STRIPE_EXPAND_READY, &sh2->state);
3155 set_bit(STRIPE_HANDLE, &sh2->state);
3156 }
3157 release_stripe(sh2);
Dan Williamsf0a50d32007-01-02 13:52:31 -07003158
Dan Williamsa4456852007-07-09 11:56:43 -07003159 }
NeilBrowna2e08552007-09-11 15:23:36 -07003160 /* done submitting copies, wait for them to complete */
3161 if (tx) {
3162 async_tx_ack(tx);
3163 dma_wait_for_async_tx(tx);
3164 }
Dan Williamsa4456852007-07-09 11:56:43 -07003165}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166
3167/*
3168 * handle_stripe - do things to a stripe.
3169 *
NeilBrown9a3e1102011-12-23 10:17:53 +11003170 * We lock the stripe by setting STRIPE_ACTIVE and then examine the
3171 * state of various bits to see what needs to be done.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 * Possible results:
NeilBrown9a3e1102011-12-23 10:17:53 +11003173 * return some read requests which now have data
3174 * return some write requests which are safely on storage
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175 * schedule a read on some buffers
3176 * schedule a write of some buffers
3177 * return confirmation of parity correctness
3178 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179 */
Dan Williamsa4456852007-07-09 11:56:43 -07003180
NeilBrownacfe7262011-07-27 11:00:36 +10003181static void analyse_stripe(struct stripe_head *sh, struct stripe_head_state *s)
NeilBrown16a53ec2006-06-26 00:27:38 -07003182{
NeilBrownd1688a62011-10-11 16:49:52 +11003183 struct r5conf *conf = sh->raid_conf;
NeilBrownf4168852007-02-28 20:11:53 -08003184 int disks = sh->disks;
NeilBrown474af965fe2011-07-27 11:00:36 +10003185 struct r5dev *dev;
3186 int i;
NeilBrown9a3e1102011-12-23 10:17:53 +11003187 int do_recovery = 0;
NeilBrown16a53ec2006-06-26 00:27:38 -07003188
NeilBrownacfe7262011-07-27 11:00:36 +10003189 memset(s, 0, sizeof(*s));
NeilBrown16a53ec2006-06-26 00:27:38 -07003190
NeilBrownacfe7262011-07-27 11:00:36 +10003191 s->expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state);
3192 s->expanded = test_bit(STRIPE_EXPAND_READY, &sh->state);
3193 s->failed_num[0] = -1;
3194 s->failed_num[1] = -1;
3195
3196 /* Now to look around and see what can be done */
NeilBrown16a53ec2006-06-26 00:27:38 -07003197 rcu_read_lock();
NeilBrownc4c16632011-07-26 11:34:20 +10003198 spin_lock_irq(&conf->device_lock);
NeilBrown16a53ec2006-06-26 00:27:38 -07003199 for (i=disks; i--; ) {
NeilBrown3cb03002011-10-11 16:45:26 +11003200 struct md_rdev *rdev;
NeilBrown31c176e2011-07-28 11:39:22 +10003201 sector_t first_bad;
3202 int bad_sectors;
3203 int is_bad = 0;
NeilBrownacfe7262011-07-27 11:00:36 +10003204
NeilBrown16a53ec2006-06-26 00:27:38 -07003205 dev = &sh->dev[i];
NeilBrown16a53ec2006-06-26 00:27:38 -07003206
Dan Williams45b42332007-07-09 11:56:43 -07003207 pr_debug("check %d: state 0x%lx read %p write %p written %p\n",
NeilBrown9a3e1102011-12-23 10:17:53 +11003208 i, dev->flags,
3209 dev->toread, dev->towrite, dev->written);
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003210 /* maybe we can reply to a read
3211 *
3212 * new wantfill requests are only permitted while
3213 * ops_complete_biofill is guaranteed to be inactive
3214 */
3215 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread &&
3216 !test_bit(STRIPE_BIOFILL_RUN, &sh->state))
3217 set_bit(R5_Wantfill, &dev->flags);
NeilBrown16a53ec2006-06-26 00:27:38 -07003218
3219 /* now count some things */
NeilBrowncc940152011-07-26 11:35:35 +10003220 if (test_bit(R5_LOCKED, &dev->flags))
3221 s->locked++;
3222 if (test_bit(R5_UPTODATE, &dev->flags))
3223 s->uptodate++;
Dan Williams2d6e4ec2009-09-16 12:11:54 -07003224 if (test_bit(R5_Wantcompute, &dev->flags)) {
NeilBrowncc940152011-07-26 11:35:35 +10003225 s->compute++;
3226 BUG_ON(s->compute > 2);
Dan Williams2d6e4ec2009-09-16 12:11:54 -07003227 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003228
NeilBrownacfe7262011-07-27 11:00:36 +10003229 if (test_bit(R5_Wantfill, &dev->flags))
NeilBrowncc940152011-07-26 11:35:35 +10003230 s->to_fill++;
NeilBrownacfe7262011-07-27 11:00:36 +10003231 else if (dev->toread)
NeilBrowncc940152011-07-26 11:35:35 +10003232 s->to_read++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003233 if (dev->towrite) {
NeilBrowncc940152011-07-26 11:35:35 +10003234 s->to_write++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003235 if (!test_bit(R5_OVERWRITE, &dev->flags))
NeilBrowncc940152011-07-26 11:35:35 +10003236 s->non_overwrite++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003237 }
Dan Williamsa4456852007-07-09 11:56:43 -07003238 if (dev->written)
NeilBrowncc940152011-07-26 11:35:35 +10003239 s->written++;
NeilBrown14a75d32011-12-23 10:17:52 +11003240 /* Prefer to use the replacement for reads, but only
3241 * if it is recovered enough and has no bad blocks.
3242 */
3243 rdev = rcu_dereference(conf->disks[i].replacement);
3244 if (rdev && !test_bit(Faulty, &rdev->flags) &&
3245 rdev->recovery_offset >= sh->sector + STRIPE_SECTORS &&
3246 !is_badblock(rdev, sh->sector, STRIPE_SECTORS,
3247 &first_bad, &bad_sectors))
3248 set_bit(R5_ReadRepl, &dev->flags);
3249 else {
NeilBrown9a3e1102011-12-23 10:17:53 +11003250 if (rdev)
3251 set_bit(R5_NeedReplace, &dev->flags);
NeilBrown14a75d32011-12-23 10:17:52 +11003252 rdev = rcu_dereference(conf->disks[i].rdev);
3253 clear_bit(R5_ReadRepl, &dev->flags);
3254 }
NeilBrown9283d8c2011-12-08 16:27:57 +11003255 if (rdev && test_bit(Faulty, &rdev->flags))
3256 rdev = NULL;
NeilBrown31c176e2011-07-28 11:39:22 +10003257 if (rdev) {
3258 is_bad = is_badblock(rdev, sh->sector, STRIPE_SECTORS,
3259 &first_bad, &bad_sectors);
3260 if (s->blocked_rdev == NULL
3261 && (test_bit(Blocked, &rdev->flags)
3262 || is_bad < 0)) {
3263 if (is_bad < 0)
3264 set_bit(BlockedBadBlocks,
3265 &rdev->flags);
3266 s->blocked_rdev = rdev;
3267 atomic_inc(&rdev->nr_pending);
3268 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07003269 }
NeilBrown415e72d2010-06-17 17:25:21 +10003270 clear_bit(R5_Insync, &dev->flags);
3271 if (!rdev)
3272 /* Not in-sync */;
NeilBrown31c176e2011-07-28 11:39:22 +10003273 else if (is_bad) {
3274 /* also not in-sync */
NeilBrown18b98372012-04-01 23:48:38 +10003275 if (!test_bit(WriteErrorSeen, &rdev->flags) &&
3276 test_bit(R5_UPTODATE, &dev->flags)) {
NeilBrown31c176e2011-07-28 11:39:22 +10003277 /* treat as in-sync, but with a read error
3278 * which we can now try to correct
3279 */
3280 set_bit(R5_Insync, &dev->flags);
3281 set_bit(R5_ReadError, &dev->flags);
3282 }
3283 } else if (test_bit(In_sync, &rdev->flags))
NeilBrown415e72d2010-06-17 17:25:21 +10003284 set_bit(R5_Insync, &dev->flags);
NeilBrown30d7a482011-12-23 09:57:00 +11003285 else if (sh->sector + STRIPE_SECTORS <= rdev->recovery_offset)
NeilBrown415e72d2010-06-17 17:25:21 +10003286 /* in sync if before recovery_offset */
NeilBrown30d7a482011-12-23 09:57:00 +11003287 set_bit(R5_Insync, &dev->flags);
3288 else if (test_bit(R5_UPTODATE, &dev->flags) &&
3289 test_bit(R5_Expanded, &dev->flags))
3290 /* If we've reshaped into here, we assume it is Insync.
3291 * We will shortly update recovery_offset to make
3292 * it official.
3293 */
3294 set_bit(R5_Insync, &dev->flags);
3295
Adam Kwolek5d8c71f2011-12-09 14:26:11 +11003296 if (rdev && test_bit(R5_WriteError, &dev->flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11003297 /* This flag does not apply to '.replacement'
3298 * only to .rdev, so make sure to check that*/
3299 struct md_rdev *rdev2 = rcu_dereference(
3300 conf->disks[i].rdev);
3301 if (rdev2 == rdev)
3302 clear_bit(R5_Insync, &dev->flags);
3303 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
NeilBrownbc2607f2011-07-28 11:39:22 +10003304 s->handle_bad_blocks = 1;
NeilBrown14a75d32011-12-23 10:17:52 +11003305 atomic_inc(&rdev2->nr_pending);
NeilBrownbc2607f2011-07-28 11:39:22 +10003306 } else
3307 clear_bit(R5_WriteError, &dev->flags);
3308 }
Adam Kwolek5d8c71f2011-12-09 14:26:11 +11003309 if (rdev && test_bit(R5_MadeGood, &dev->flags)) {
NeilBrown14a75d32011-12-23 10:17:52 +11003310 /* This flag does not apply to '.replacement'
3311 * only to .rdev, so make sure to check that*/
3312 struct md_rdev *rdev2 = rcu_dereference(
3313 conf->disks[i].rdev);
3314 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
NeilBrownb84db562011-07-28 11:39:23 +10003315 s->handle_bad_blocks = 1;
NeilBrown14a75d32011-12-23 10:17:52 +11003316 atomic_inc(&rdev2->nr_pending);
NeilBrownb84db562011-07-28 11:39:23 +10003317 } else
3318 clear_bit(R5_MadeGood, &dev->flags);
3319 }
NeilBrown977df362011-12-23 10:17:53 +11003320 if (test_bit(R5_MadeGoodRepl, &dev->flags)) {
3321 struct md_rdev *rdev2 = rcu_dereference(
3322 conf->disks[i].replacement);
3323 if (rdev2 && !test_bit(Faulty, &rdev2->flags)) {
3324 s->handle_bad_blocks = 1;
3325 atomic_inc(&rdev2->nr_pending);
3326 } else
3327 clear_bit(R5_MadeGoodRepl, &dev->flags);
3328 }
NeilBrown415e72d2010-06-17 17:25:21 +10003329 if (!test_bit(R5_Insync, &dev->flags)) {
NeilBrown16a53ec2006-06-26 00:27:38 -07003330 /* The ReadError flag will just be confusing now */
3331 clear_bit(R5_ReadError, &dev->flags);
3332 clear_bit(R5_ReWrite, &dev->flags);
3333 }
NeilBrown415e72d2010-06-17 17:25:21 +10003334 if (test_bit(R5_ReadError, &dev->flags))
3335 clear_bit(R5_Insync, &dev->flags);
3336 if (!test_bit(R5_Insync, &dev->flags)) {
NeilBrowncc940152011-07-26 11:35:35 +10003337 if (s->failed < 2)
3338 s->failed_num[s->failed] = i;
3339 s->failed++;
NeilBrown9a3e1102011-12-23 10:17:53 +11003340 if (rdev && !test_bit(Faulty, &rdev->flags))
3341 do_recovery = 1;
NeilBrown415e72d2010-06-17 17:25:21 +10003342 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003343 }
NeilBrownc4c16632011-07-26 11:34:20 +10003344 spin_unlock_irq(&conf->device_lock);
NeilBrown9a3e1102011-12-23 10:17:53 +11003345 if (test_bit(STRIPE_SYNCING, &sh->state)) {
3346 /* If there is a failed device being replaced,
3347 * we must be recovering.
3348 * else if we are after recovery_cp, we must be syncing
majianpengc6d2e082012-04-02 01:16:59 +10003349 * else if MD_RECOVERY_REQUESTED is set, we also are syncing.
NeilBrown9a3e1102011-12-23 10:17:53 +11003350 * else we can only be replacing
3351 * sync and recovery both need to read all devices, and so
3352 * use the same flag.
3353 */
3354 if (do_recovery ||
majianpengc6d2e082012-04-02 01:16:59 +10003355 sh->sector >= conf->mddev->recovery_cp ||
3356 test_bit(MD_RECOVERY_REQUESTED, &(conf->mddev->recovery)))
NeilBrown9a3e1102011-12-23 10:17:53 +11003357 s->syncing = 1;
3358 else
3359 s->replacing = 1;
3360 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003361 rcu_read_unlock();
NeilBrowncc940152011-07-26 11:35:35 +10003362}
NeilBrownf4168852007-02-28 20:11:53 -08003363
NeilBrowncc940152011-07-26 11:35:35 +10003364static void handle_stripe(struct stripe_head *sh)
3365{
3366 struct stripe_head_state s;
NeilBrownd1688a62011-10-11 16:49:52 +11003367 struct r5conf *conf = sh->raid_conf;
NeilBrown3687c062011-07-27 11:00:36 +10003368 int i;
NeilBrown84789552011-07-27 11:00:36 +10003369 int prexor;
3370 int disks = sh->disks;
NeilBrown474af965fe2011-07-27 11:00:36 +10003371 struct r5dev *pdev, *qdev;
NeilBrowncc940152011-07-26 11:35:35 +10003372
3373 clear_bit(STRIPE_HANDLE, &sh->state);
Dan Williams257a4b42011-11-08 16:22:06 +11003374 if (test_and_set_bit_lock(STRIPE_ACTIVE, &sh->state)) {
NeilBrowncc940152011-07-26 11:35:35 +10003375 /* already being handled, ensure it gets handled
3376 * again when current action finishes */
3377 set_bit(STRIPE_HANDLE, &sh->state);
3378 return;
3379 }
3380
3381 if (test_and_clear_bit(STRIPE_SYNC_REQUESTED, &sh->state)) {
3382 set_bit(STRIPE_SYNCING, &sh->state);
3383 clear_bit(STRIPE_INSYNC, &sh->state);
3384 }
3385 clear_bit(STRIPE_DELAYED, &sh->state);
3386
3387 pr_debug("handling stripe %llu, state=%#lx cnt=%d, "
3388 "pd_idx=%d, qd_idx=%d\n, check:%d, reconstruct:%d\n",
3389 (unsigned long long)sh->sector, sh->state,
3390 atomic_read(&sh->count), sh->pd_idx, sh->qd_idx,
3391 sh->check_state, sh->reconstruct_state);
NeilBrowncc940152011-07-26 11:35:35 +10003392
NeilBrownacfe7262011-07-27 11:00:36 +10003393 analyse_stripe(sh, &s);
NeilBrownc5a31002011-07-27 11:00:36 +10003394
NeilBrownbc2607f2011-07-28 11:39:22 +10003395 if (s.handle_bad_blocks) {
3396 set_bit(STRIPE_HANDLE, &sh->state);
3397 goto finish;
3398 }
3399
NeilBrown474af965fe2011-07-27 11:00:36 +10003400 if (unlikely(s.blocked_rdev)) {
3401 if (s.syncing || s.expanding || s.expanded ||
NeilBrown9a3e1102011-12-23 10:17:53 +11003402 s.replacing || s.to_write || s.written) {
NeilBrown474af965fe2011-07-27 11:00:36 +10003403 set_bit(STRIPE_HANDLE, &sh->state);
3404 goto finish;
3405 }
3406 /* There is nothing for the blocked_rdev to block */
3407 rdev_dec_pending(s.blocked_rdev, conf->mddev);
3408 s.blocked_rdev = NULL;
3409 }
3410
3411 if (s.to_fill && !test_bit(STRIPE_BIOFILL_RUN, &sh->state)) {
3412 set_bit(STRIPE_OP_BIOFILL, &s.ops_request);
3413 set_bit(STRIPE_BIOFILL_RUN, &sh->state);
3414 }
3415
3416 pr_debug("locked=%d uptodate=%d to_read=%d"
3417 " to_write=%d failed=%d failed_num=%d,%d\n",
3418 s.locked, s.uptodate, s.to_read, s.to_write, s.failed,
3419 s.failed_num[0], s.failed_num[1]);
3420 /* check if the array has lost more than max_degraded devices and,
3421 * if so, some requests might need to be failed.
3422 */
NeilBrown9a3f5302011-11-08 16:22:01 +11003423 if (s.failed > conf->max_degraded) {
3424 sh->check_state = 0;
3425 sh->reconstruct_state = 0;
3426 if (s.to_read+s.to_write+s.written)
3427 handle_failed_stripe(conf, sh, &s, disks, &s.return_bi);
NeilBrown9a3e1102011-12-23 10:17:53 +11003428 if (s.syncing + s.replacing)
NeilBrown9a3f5302011-11-08 16:22:01 +11003429 handle_failed_sync(conf, sh, &s);
3430 }
NeilBrown474af965fe2011-07-27 11:00:36 +10003431
3432 /*
3433 * might be able to return some write requests if the parity blocks
3434 * are safe, or on a failed drive
3435 */
3436 pdev = &sh->dev[sh->pd_idx];
3437 s.p_failed = (s.failed >= 1 && s.failed_num[0] == sh->pd_idx)
3438 || (s.failed >= 2 && s.failed_num[1] == sh->pd_idx);
3439 qdev = &sh->dev[sh->qd_idx];
3440 s.q_failed = (s.failed >= 1 && s.failed_num[0] == sh->qd_idx)
3441 || (s.failed >= 2 && s.failed_num[1] == sh->qd_idx)
3442 || conf->level < 6;
3443
3444 if (s.written &&
3445 (s.p_failed || ((test_bit(R5_Insync, &pdev->flags)
3446 && !test_bit(R5_LOCKED, &pdev->flags)
3447 && test_bit(R5_UPTODATE, &pdev->flags)))) &&
3448 (s.q_failed || ((test_bit(R5_Insync, &qdev->flags)
3449 && !test_bit(R5_LOCKED, &qdev->flags)
3450 && test_bit(R5_UPTODATE, &qdev->flags)))))
3451 handle_stripe_clean_event(conf, sh, disks, &s.return_bi);
3452
3453 /* Now we might consider reading some blocks, either to check/generate
3454 * parity, or to satisfy requests
3455 * or to load a block that is being partially written.
3456 */
3457 if (s.to_read || s.non_overwrite
3458 || (conf->level == 6 && s.to_write && s.failed)
NeilBrown9a3e1102011-12-23 10:17:53 +11003459 || (s.syncing && (s.uptodate + s.compute < disks))
3460 || s.replacing
3461 || s.expanding)
NeilBrown474af965fe2011-07-27 11:00:36 +10003462 handle_stripe_fill(sh, &s, disks);
3463
NeilBrown84789552011-07-27 11:00:36 +10003464 /* Now we check to see if any write operations have recently
3465 * completed
3466 */
3467 prexor = 0;
3468 if (sh->reconstruct_state == reconstruct_state_prexor_drain_result)
3469 prexor = 1;
3470 if (sh->reconstruct_state == reconstruct_state_drain_result ||
3471 sh->reconstruct_state == reconstruct_state_prexor_drain_result) {
3472 sh->reconstruct_state = reconstruct_state_idle;
3473
3474 /* All the 'written' buffers and the parity block are ready to
3475 * be written back to disk
3476 */
3477 BUG_ON(!test_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags));
3478 BUG_ON(sh->qd_idx >= 0 &&
3479 !test_bit(R5_UPTODATE, &sh->dev[sh->qd_idx].flags));
3480 for (i = disks; i--; ) {
3481 struct r5dev *dev = &sh->dev[i];
3482 if (test_bit(R5_LOCKED, &dev->flags) &&
3483 (i == sh->pd_idx || i == sh->qd_idx ||
3484 dev->written)) {
3485 pr_debug("Writing block %d\n", i);
3486 set_bit(R5_Wantwrite, &dev->flags);
3487 if (prexor)
3488 continue;
3489 if (!test_bit(R5_Insync, &dev->flags) ||
3490 ((i == sh->pd_idx || i == sh->qd_idx) &&
3491 s.failed == 0))
3492 set_bit(STRIPE_INSYNC, &sh->state);
3493 }
3494 }
3495 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3496 s.dec_preread_active = 1;
3497 }
3498
3499 /* Now to consider new write requests and what else, if anything
3500 * should be read. We do not handle new writes when:
3501 * 1/ A 'write' operation (copy+xor) is already in flight.
3502 * 2/ A 'check' operation is in flight, as it may clobber the parity
3503 * block.
3504 */
3505 if (s.to_write && !sh->reconstruct_state && !sh->check_state)
3506 handle_stripe_dirtying(conf, sh, &s, disks);
3507
3508 /* maybe we need to check and possibly fix the parity for this stripe
3509 * Any reads will already have been scheduled, so we just see if enough
3510 * data is available. The parity check is held off while parity
3511 * dependent operations are in flight.
3512 */
3513 if (sh->check_state ||
3514 (s.syncing && s.locked == 0 &&
3515 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
3516 !test_bit(STRIPE_INSYNC, &sh->state))) {
3517 if (conf->level == 6)
3518 handle_parity_checks6(conf, sh, &s, disks);
3519 else
3520 handle_parity_checks5(conf, sh, &s, disks);
3521 }
NeilBrownc5a31002011-07-27 11:00:36 +10003522
NeilBrown9a3e1102011-12-23 10:17:53 +11003523 if (s.replacing && s.locked == 0
3524 && !test_bit(STRIPE_INSYNC, &sh->state)) {
3525 /* Write out to replacement devices where possible */
3526 for (i = 0; i < conf->raid_disks; i++)
3527 if (test_bit(R5_UPTODATE, &sh->dev[i].flags) &&
3528 test_bit(R5_NeedReplace, &sh->dev[i].flags)) {
3529 set_bit(R5_WantReplace, &sh->dev[i].flags);
3530 set_bit(R5_LOCKED, &sh->dev[i].flags);
3531 s.locked++;
3532 }
3533 set_bit(STRIPE_INSYNC, &sh->state);
3534 }
3535 if ((s.syncing || s.replacing) && s.locked == 0 &&
3536 test_bit(STRIPE_INSYNC, &sh->state)) {
NeilBrownc5a31002011-07-27 11:00:36 +10003537 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
3538 clear_bit(STRIPE_SYNCING, &sh->state);
3539 }
3540
3541 /* If the failed drives are just a ReadError, then we might need
3542 * to progress the repair/check process
3543 */
3544 if (s.failed <= conf->max_degraded && !conf->mddev->ro)
3545 for (i = 0; i < s.failed; i++) {
3546 struct r5dev *dev = &sh->dev[s.failed_num[i]];
3547 if (test_bit(R5_ReadError, &dev->flags)
3548 && !test_bit(R5_LOCKED, &dev->flags)
3549 && test_bit(R5_UPTODATE, &dev->flags)
3550 ) {
3551 if (!test_bit(R5_ReWrite, &dev->flags)) {
3552 set_bit(R5_Wantwrite, &dev->flags);
3553 set_bit(R5_ReWrite, &dev->flags);
3554 set_bit(R5_LOCKED, &dev->flags);
3555 s.locked++;
3556 } else {
3557 /* let's read it back */
3558 set_bit(R5_Wantread, &dev->flags);
3559 set_bit(R5_LOCKED, &dev->flags);
3560 s.locked++;
3561 }
3562 }
3563 }
3564
3565
NeilBrown3687c062011-07-27 11:00:36 +10003566 /* Finish reconstruct operations initiated by the expansion process */
3567 if (sh->reconstruct_state == reconstruct_state_result) {
3568 struct stripe_head *sh_src
3569 = get_active_stripe(conf, sh->sector, 1, 1, 1);
3570 if (sh_src && test_bit(STRIPE_EXPAND_SOURCE, &sh_src->state)) {
3571 /* sh cannot be written until sh_src has been read.
3572 * so arrange for sh to be delayed a little
3573 */
3574 set_bit(STRIPE_DELAYED, &sh->state);
3575 set_bit(STRIPE_HANDLE, &sh->state);
3576 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE,
3577 &sh_src->state))
3578 atomic_inc(&conf->preread_active_stripes);
3579 release_stripe(sh_src);
3580 goto finish;
3581 }
3582 if (sh_src)
3583 release_stripe(sh_src);
NeilBrown16a53ec2006-06-26 00:27:38 -07003584
NeilBrown3687c062011-07-27 11:00:36 +10003585 sh->reconstruct_state = reconstruct_state_idle;
3586 clear_bit(STRIPE_EXPANDING, &sh->state);
3587 for (i = conf->raid_disks; i--; ) {
3588 set_bit(R5_Wantwrite, &sh->dev[i].flags);
3589 set_bit(R5_LOCKED, &sh->dev[i].flags);
3590 s.locked++;
3591 }
3592 }
3593
3594 if (s.expanded && test_bit(STRIPE_EXPANDING, &sh->state) &&
3595 !sh->reconstruct_state) {
3596 /* Need to write out all blocks after computing parity */
3597 sh->disks = conf->raid_disks;
3598 stripe_set_idx(sh->sector, conf, 0, sh);
3599 schedule_reconstruction(sh, &s, 1, 1);
3600 } else if (s.expanded && !sh->reconstruct_state && s.locked == 0) {
3601 clear_bit(STRIPE_EXPAND_READY, &sh->state);
3602 atomic_dec(&conf->reshape_stripes);
3603 wake_up(&conf->wait_for_overlap);
3604 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
3605 }
3606
3607 if (s.expanding && s.locked == 0 &&
3608 !test_bit(STRIPE_COMPUTE_RUN, &sh->state))
3609 handle_stripe_expansion(conf, sh);
3610
3611finish:
Dan Williams6bfe0b42008-04-30 00:52:32 -07003612 /* wait for this device to become unblocked */
NeilBrown5f066c62012-07-03 12:13:29 +10003613 if (unlikely(s.blocked_rdev)) {
3614 if (conf->mddev->external)
3615 md_wait_for_blocked_rdev(s.blocked_rdev,
3616 conf->mddev);
3617 else
3618 /* Internal metadata will immediately
3619 * be written by raid5d, so we don't
3620 * need to wait here.
3621 */
3622 rdev_dec_pending(s.blocked_rdev,
3623 conf->mddev);
3624 }
Dan Williams6bfe0b42008-04-30 00:52:32 -07003625
NeilBrownbc2607f2011-07-28 11:39:22 +10003626 if (s.handle_bad_blocks)
3627 for (i = disks; i--; ) {
NeilBrown3cb03002011-10-11 16:45:26 +11003628 struct md_rdev *rdev;
NeilBrownbc2607f2011-07-28 11:39:22 +10003629 struct r5dev *dev = &sh->dev[i];
3630 if (test_and_clear_bit(R5_WriteError, &dev->flags)) {
3631 /* We own a safe reference to the rdev */
3632 rdev = conf->disks[i].rdev;
3633 if (!rdev_set_badblocks(rdev, sh->sector,
3634 STRIPE_SECTORS, 0))
3635 md_error(conf->mddev, rdev);
3636 rdev_dec_pending(rdev, conf->mddev);
3637 }
NeilBrownb84db562011-07-28 11:39:23 +10003638 if (test_and_clear_bit(R5_MadeGood, &dev->flags)) {
3639 rdev = conf->disks[i].rdev;
3640 rdev_clear_badblocks(rdev, sh->sector,
NeilBrownc6563a82012-05-21 09:27:00 +10003641 STRIPE_SECTORS, 0);
NeilBrownb84db562011-07-28 11:39:23 +10003642 rdev_dec_pending(rdev, conf->mddev);
3643 }
NeilBrown977df362011-12-23 10:17:53 +11003644 if (test_and_clear_bit(R5_MadeGoodRepl, &dev->flags)) {
3645 rdev = conf->disks[i].replacement;
NeilBrowndd054fc2011-12-23 10:17:53 +11003646 if (!rdev)
3647 /* rdev have been moved down */
3648 rdev = conf->disks[i].rdev;
NeilBrown977df362011-12-23 10:17:53 +11003649 rdev_clear_badblocks(rdev, sh->sector,
NeilBrownc6563a82012-05-21 09:27:00 +10003650 STRIPE_SECTORS, 0);
NeilBrown977df362011-12-23 10:17:53 +11003651 rdev_dec_pending(rdev, conf->mddev);
3652 }
NeilBrownbc2607f2011-07-28 11:39:22 +10003653 }
3654
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003655 if (s.ops_request)
3656 raid_run_ops(sh, s.ops_request);
3657
Dan Williamsf0e43bc2008-06-28 08:31:55 +10003658 ops_run_io(sh, &s);
3659
NeilBrownc5709ef2011-07-26 11:35:20 +10003660 if (s.dec_preread_active) {
NeilBrown729a1862009-12-14 12:49:50 +11003661 /* We delay this until after ops_run_io so that if make_request
Tejun Heoe9c74692010-09-03 11:56:18 +02003662 * is waiting on a flush, it won't continue until the writes
NeilBrown729a1862009-12-14 12:49:50 +11003663 * have actually been submitted.
3664 */
3665 atomic_dec(&conf->preread_active_stripes);
3666 if (atomic_read(&conf->preread_active_stripes) <
3667 IO_THRESHOLD)
3668 md_wakeup_thread(conf->mddev->thread);
3669 }
3670
NeilBrownc5709ef2011-07-26 11:35:20 +10003671 return_io(s.return_bi);
NeilBrown16a53ec2006-06-26 00:27:38 -07003672
Dan Williams257a4b42011-11-08 16:22:06 +11003673 clear_bit_unlock(STRIPE_ACTIVE, &sh->state);
NeilBrown16a53ec2006-06-26 00:27:38 -07003674}
3675
NeilBrownd1688a62011-10-11 16:49:52 +11003676static void raid5_activate_delayed(struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677{
3678 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD) {
3679 while (!list_empty(&conf->delayed_list)) {
3680 struct list_head *l = conf->delayed_list.next;
3681 struct stripe_head *sh;
3682 sh = list_entry(l, struct stripe_head, lru);
3683 list_del_init(l);
3684 clear_bit(STRIPE_DELAYED, &sh->state);
3685 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3686 atomic_inc(&conf->preread_active_stripes);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003687 list_add_tail(&sh->lru, &conf->hold_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688 }
NeilBrown482c0832011-04-18 18:25:42 +10003689 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690}
3691
NeilBrownd1688a62011-10-11 16:49:52 +11003692static void activate_bit_delay(struct r5conf *conf)
NeilBrown72626682005-09-09 16:23:54 -07003693{
3694 /* device_lock is held */
3695 struct list_head head;
3696 list_add(&head, &conf->bitmap_list);
3697 list_del_init(&conf->bitmap_list);
3698 while (!list_empty(&head)) {
3699 struct stripe_head *sh = list_entry(head.next, struct stripe_head, lru);
3700 list_del_init(&sh->lru);
3701 atomic_inc(&sh->count);
3702 __release_stripe(conf, sh);
3703 }
3704}
3705
NeilBrownfd01b882011-10-11 16:47:53 +11003706int md_raid5_congested(struct mddev *mddev, int bits)
NeilBrownf022b2f2006-10-03 01:15:56 -07003707{
NeilBrownd1688a62011-10-11 16:49:52 +11003708 struct r5conf *conf = mddev->private;
NeilBrownf022b2f2006-10-03 01:15:56 -07003709
3710 /* No difference between reads and writes. Just check
3711 * how busy the stripe_cache is
3712 */
NeilBrown3fa841d2009-09-23 18:10:29 +10003713
NeilBrownf022b2f2006-10-03 01:15:56 -07003714 if (conf->inactive_blocked)
3715 return 1;
3716 if (conf->quiesce)
3717 return 1;
3718 if (list_empty_careful(&conf->inactive_list))
3719 return 1;
3720
3721 return 0;
3722}
NeilBrown11d8a6e2010-07-26 11:57:07 +10003723EXPORT_SYMBOL_GPL(md_raid5_congested);
3724
3725static int raid5_congested(void *data, int bits)
3726{
NeilBrownfd01b882011-10-11 16:47:53 +11003727 struct mddev *mddev = data;
NeilBrown11d8a6e2010-07-26 11:57:07 +10003728
3729 return mddev_congested(mddev, bits) ||
3730 md_raid5_congested(mddev, bits);
3731}
NeilBrownf022b2f2006-10-03 01:15:56 -07003732
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003733/* We want read requests to align with chunks where possible,
3734 * but write requests don't need to.
3735 */
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003736static int raid5_mergeable_bvec(struct request_queue *q,
3737 struct bvec_merge_data *bvm,
3738 struct bio_vec *biovec)
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003739{
NeilBrownfd01b882011-10-11 16:47:53 +11003740 struct mddev *mddev = q->queuedata;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003741 sector_t sector = bvm->bi_sector + get_start_sect(bvm->bi_bdev);
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003742 int max;
Andre Noll9d8f0362009-06-18 08:45:01 +10003743 unsigned int chunk_sectors = mddev->chunk_sectors;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003744 unsigned int bio_sectors = bvm->bi_size >> 9;
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003745
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003746 if ((bvm->bi_rw & 1) == WRITE)
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003747 return biovec->bv_len; /* always allow writes to be mergeable */
3748
Andre Noll664e7c42009-06-18 08:45:27 +10003749 if (mddev->new_chunk_sectors < mddev->chunk_sectors)
3750 chunk_sectors = mddev->new_chunk_sectors;
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003751 max = (chunk_sectors - ((sector & (chunk_sectors - 1)) + bio_sectors)) << 9;
3752 if (max < 0) max = 0;
3753 if (max <= biovec->bv_len && bio_sectors == 0)
3754 return biovec->bv_len;
3755 else
3756 return max;
3757}
3758
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003759
NeilBrownfd01b882011-10-11 16:47:53 +11003760static int in_chunk_boundary(struct mddev *mddev, struct bio *bio)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003761{
3762 sector_t sector = bio->bi_sector + get_start_sect(bio->bi_bdev);
Andre Noll9d8f0362009-06-18 08:45:01 +10003763 unsigned int chunk_sectors = mddev->chunk_sectors;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003764 unsigned int bio_sectors = bio->bi_size >> 9;
3765
Andre Noll664e7c42009-06-18 08:45:27 +10003766 if (mddev->new_chunk_sectors < mddev->chunk_sectors)
3767 chunk_sectors = mddev->new_chunk_sectors;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003768 return chunk_sectors >=
3769 ((sector & (chunk_sectors - 1)) + bio_sectors);
3770}
3771
3772/*
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003773 * add bio to the retry LIFO ( in O(1) ... we are in interrupt )
3774 * later sampled by raid5d.
3775 */
NeilBrownd1688a62011-10-11 16:49:52 +11003776static void add_bio_to_retry(struct bio *bi,struct r5conf *conf)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003777{
3778 unsigned long flags;
3779
3780 spin_lock_irqsave(&conf->device_lock, flags);
3781
3782 bi->bi_next = conf->retry_read_aligned_list;
3783 conf->retry_read_aligned_list = bi;
3784
3785 spin_unlock_irqrestore(&conf->device_lock, flags);
3786 md_wakeup_thread(conf->mddev->thread);
3787}
3788
3789
NeilBrownd1688a62011-10-11 16:49:52 +11003790static struct bio *remove_bio_from_retry(struct r5conf *conf)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003791{
3792 struct bio *bi;
3793
3794 bi = conf->retry_read_aligned;
3795 if (bi) {
3796 conf->retry_read_aligned = NULL;
3797 return bi;
3798 }
3799 bi = conf->retry_read_aligned_list;
3800 if(bi) {
Neil Brown387bb172007-02-08 14:20:29 -08003801 conf->retry_read_aligned_list = bi->bi_next;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003802 bi->bi_next = NULL;
Jens Axboe960e7392008-08-15 10:41:18 +02003803 /*
3804 * this sets the active strip count to 1 and the processed
3805 * strip count to zero (upper 8 bits)
3806 */
Shaohua Lie7836bd62012-07-19 16:01:31 +10003807 raid5_set_bi_stripes(bi, 1); /* biased count of active stripes */
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003808 }
3809
3810 return bi;
3811}
3812
3813
3814/*
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003815 * The "raid5_align_endio" should check if the read succeeded and if it
3816 * did, call bio_endio on the original bio (having bio_put the new bio
3817 * first).
3818 * If the read failed..
3819 */
NeilBrown6712ecf2007-09-27 12:47:43 +02003820static void raid5_align_endio(struct bio *bi, int error)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003821{
3822 struct bio* raid_bi = bi->bi_private;
NeilBrownfd01b882011-10-11 16:47:53 +11003823 struct mddev *mddev;
NeilBrownd1688a62011-10-11 16:49:52 +11003824 struct r5conf *conf;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003825 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
NeilBrown3cb03002011-10-11 16:45:26 +11003826 struct md_rdev *rdev;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003827
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003828 bio_put(bi);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003829
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003830 rdev = (void*)raid_bi->bi_next;
3831 raid_bi->bi_next = NULL;
NeilBrown2b7f2222010-03-25 16:06:03 +11003832 mddev = rdev->mddev;
3833 conf = mddev->private;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003834
3835 rdev_dec_pending(rdev, conf->mddev);
3836
3837 if (!error && uptodate) {
NeilBrown6712ecf2007-09-27 12:47:43 +02003838 bio_endio(raid_bi, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003839 if (atomic_dec_and_test(&conf->active_aligned_reads))
3840 wake_up(&conf->wait_for_stripe);
NeilBrown6712ecf2007-09-27 12:47:43 +02003841 return;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003842 }
3843
3844
Dan Williams45b42332007-07-09 11:56:43 -07003845 pr_debug("raid5_align_endio : io error...handing IO for a retry\n");
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003846
3847 add_bio_to_retry(raid_bi, conf);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003848}
3849
Neil Brown387bb172007-02-08 14:20:29 -08003850static int bio_fits_rdev(struct bio *bi)
3851{
Jens Axboe165125e2007-07-24 09:28:11 +02003852 struct request_queue *q = bdev_get_queue(bi->bi_bdev);
Neil Brown387bb172007-02-08 14:20:29 -08003853
Martin K. Petersenae03bf62009-05-22 17:17:50 -04003854 if ((bi->bi_size>>9) > queue_max_sectors(q))
Neil Brown387bb172007-02-08 14:20:29 -08003855 return 0;
3856 blk_recount_segments(q, bi);
Martin K. Petersen8a783622010-02-26 00:20:39 -05003857 if (bi->bi_phys_segments > queue_max_segments(q))
Neil Brown387bb172007-02-08 14:20:29 -08003858 return 0;
3859
3860 if (q->merge_bvec_fn)
3861 /* it's too hard to apply the merge_bvec_fn at this stage,
3862 * just just give up
3863 */
3864 return 0;
3865
3866 return 1;
3867}
3868
3869
NeilBrownfd01b882011-10-11 16:47:53 +11003870static int chunk_aligned_read(struct mddev *mddev, struct bio * raid_bio)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003871{
NeilBrownd1688a62011-10-11 16:49:52 +11003872 struct r5conf *conf = mddev->private;
NeilBrown8553fe7ec2009-12-14 12:49:47 +11003873 int dd_idx;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003874 struct bio* align_bi;
NeilBrown3cb03002011-10-11 16:45:26 +11003875 struct md_rdev *rdev;
NeilBrown671488c2011-12-23 10:17:52 +11003876 sector_t end_sector;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003877
3878 if (!in_chunk_boundary(mddev, raid_bio)) {
Dan Williams45b42332007-07-09 11:56:43 -07003879 pr_debug("chunk_aligned_read : non aligned\n");
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003880 return 0;
3881 }
3882 /*
NeilBrowna167f662010-10-26 18:31:13 +11003883 * use bio_clone_mddev to make a copy of the bio
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003884 */
NeilBrowna167f662010-10-26 18:31:13 +11003885 align_bi = bio_clone_mddev(raid_bio, GFP_NOIO, mddev);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003886 if (!align_bi)
3887 return 0;
3888 /*
3889 * set bi_end_io to a new function, and set bi_private to the
3890 * original bio.
3891 */
3892 align_bi->bi_end_io = raid5_align_endio;
3893 align_bi->bi_private = raid_bio;
3894 /*
3895 * compute position
3896 */
NeilBrown112bf892009-03-31 14:39:38 +11003897 align_bi->bi_sector = raid5_compute_sector(conf, raid_bio->bi_sector,
3898 0,
NeilBrown911d4ee2009-03-31 14:39:38 +11003899 &dd_idx, NULL);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003900
NeilBrown671488c2011-12-23 10:17:52 +11003901 end_sector = align_bi->bi_sector + (align_bi->bi_size >> 9);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003902 rcu_read_lock();
NeilBrown671488c2011-12-23 10:17:52 +11003903 rdev = rcu_dereference(conf->disks[dd_idx].replacement);
3904 if (!rdev || test_bit(Faulty, &rdev->flags) ||
3905 rdev->recovery_offset < end_sector) {
3906 rdev = rcu_dereference(conf->disks[dd_idx].rdev);
3907 if (rdev &&
3908 (test_bit(Faulty, &rdev->flags) ||
3909 !(test_bit(In_sync, &rdev->flags) ||
3910 rdev->recovery_offset >= end_sector)))
3911 rdev = NULL;
3912 }
3913 if (rdev) {
NeilBrown31c176e2011-07-28 11:39:22 +10003914 sector_t first_bad;
3915 int bad_sectors;
3916
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003917 atomic_inc(&rdev->nr_pending);
3918 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003919 raid_bio->bi_next = (void*)rdev;
3920 align_bi->bi_bdev = rdev->bdev;
3921 align_bi->bi_flags &= ~(1 << BIO_SEG_VALID);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003922
NeilBrown31c176e2011-07-28 11:39:22 +10003923 if (!bio_fits_rdev(align_bi) ||
3924 is_badblock(rdev, align_bi->bi_sector, align_bi->bi_size>>9,
3925 &first_bad, &bad_sectors)) {
3926 /* too big in some way, or has a known bad block */
Neil Brown387bb172007-02-08 14:20:29 -08003927 bio_put(align_bi);
3928 rdev_dec_pending(rdev, mddev);
3929 return 0;
3930 }
3931
majianpeng6c0544e2012-06-12 08:31:10 +08003932 /* No reshape active, so we can trust rdev->data_offset */
3933 align_bi->bi_sector += rdev->data_offset;
3934
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003935 spin_lock_irq(&conf->device_lock);
3936 wait_event_lock_irq(conf->wait_for_stripe,
3937 conf->quiesce == 0,
3938 conf->device_lock, /* nothing */);
3939 atomic_inc(&conf->active_aligned_reads);
3940 spin_unlock_irq(&conf->device_lock);
3941
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003942 generic_make_request(align_bi);
3943 return 1;
3944 } else {
3945 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003946 bio_put(align_bi);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003947 return 0;
3948 }
3949}
3950
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003951/* __get_priority_stripe - get the next stripe to process
3952 *
3953 * Full stripe writes are allowed to pass preread active stripes up until
3954 * the bypass_threshold is exceeded. In general the bypass_count
3955 * increments when the handle_list is handled before the hold_list; however, it
3956 * will not be incremented when STRIPE_IO_STARTED is sampled set signifying a
3957 * stripe with in flight i/o. The bypass_count will be reset when the
3958 * head of the hold_list has changed, i.e. the head was promoted to the
3959 * handle_list.
3960 */
NeilBrownd1688a62011-10-11 16:49:52 +11003961static struct stripe_head *__get_priority_stripe(struct r5conf *conf)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003962{
3963 struct stripe_head *sh;
3964
3965 pr_debug("%s: handle: %s hold: %s full_writes: %d bypass_count: %d\n",
3966 __func__,
3967 list_empty(&conf->handle_list) ? "empty" : "busy",
3968 list_empty(&conf->hold_list) ? "empty" : "busy",
3969 atomic_read(&conf->pending_full_writes), conf->bypass_count);
3970
3971 if (!list_empty(&conf->handle_list)) {
3972 sh = list_entry(conf->handle_list.next, typeof(*sh), lru);
3973
3974 if (list_empty(&conf->hold_list))
3975 conf->bypass_count = 0;
3976 else if (!test_bit(STRIPE_IO_STARTED, &sh->state)) {
3977 if (conf->hold_list.next == conf->last_hold)
3978 conf->bypass_count++;
3979 else {
3980 conf->last_hold = conf->hold_list.next;
3981 conf->bypass_count -= conf->bypass_threshold;
3982 if (conf->bypass_count < 0)
3983 conf->bypass_count = 0;
3984 }
3985 }
3986 } else if (!list_empty(&conf->hold_list) &&
3987 ((conf->bypass_threshold &&
3988 conf->bypass_count > conf->bypass_threshold) ||
3989 atomic_read(&conf->pending_full_writes) == 0)) {
3990 sh = list_entry(conf->hold_list.next,
3991 typeof(*sh), lru);
3992 conf->bypass_count -= conf->bypass_threshold;
3993 if (conf->bypass_count < 0)
3994 conf->bypass_count = 0;
3995 } else
3996 return NULL;
3997
3998 list_del_init(&sh->lru);
3999 atomic_inc(&sh->count);
4000 BUG_ON(atomic_read(&sh->count) != 1);
4001 return sh;
4002}
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08004003
Linus Torvaldsb4fdcb02011-11-04 17:06:58 -07004004static void make_request(struct mddev *mddev, struct bio * bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005{
NeilBrownd1688a62011-10-11 16:49:52 +11004006 struct r5conf *conf = mddev->private;
NeilBrown911d4ee2009-03-31 14:39:38 +11004007 int dd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008 sector_t new_sector;
4009 sector_t logical_sector, last_sector;
4010 struct stripe_head *sh;
Jens Axboea3623572005-11-01 09:26:16 +01004011 const int rw = bio_data_dir(bi);
NeilBrown49077322010-03-25 16:20:56 +11004012 int remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013
Tejun Heoe9c74692010-09-03 11:56:18 +02004014 if (unlikely(bi->bi_rw & REQ_FLUSH)) {
4015 md_flush_request(mddev, bi);
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02004016 return;
NeilBrowne5dcdd82005-09-09 16:23:41 -07004017 }
4018
NeilBrown3d310eb2005-06-21 17:17:26 -07004019 md_write_start(mddev, bi);
NeilBrown06d91a52005-06-21 17:17:12 -07004020
NeilBrown802ba062006-12-13 00:34:13 -08004021 if (rw == READ &&
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08004022 mddev->reshape_position == MaxSector &&
NeilBrown21a52c62010-04-01 15:02:13 +11004023 chunk_aligned_read(mddev,bi))
Christoph Hellwig5a7bbad2011-09-12 12:12:01 +02004024 return;
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08004025
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026 logical_sector = bi->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
4027 last_sector = bi->bi_sector + (bi->bi_size>>9);
4028 bi->bi_next = NULL;
4029 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
NeilBrown06d91a52005-06-21 17:17:12 -07004030
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031 for (;logical_sector < last_sector; logical_sector += STRIPE_SECTORS) {
4032 DEFINE_WAIT(w);
NeilBrownb5663ba2009-03-31 14:39:38 +11004033 int previous;
NeilBrownb578d552006-03-27 01:18:12 -08004034
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004035 retry:
NeilBrownb5663ba2009-03-31 14:39:38 +11004036 previous = 0;
NeilBrownb578d552006-03-27 01:18:12 -08004037 prepare_to_wait(&conf->wait_for_overlap, &w, TASK_UNINTERRUPTIBLE);
NeilBrownb0f9ec02009-03-31 15:27:18 +11004038 if (unlikely(conf->reshape_progress != MaxSector)) {
NeilBrownfef9c612009-03-31 15:16:46 +11004039 /* spinlock is needed as reshape_progress may be
NeilBrowndf8e7f762006-03-27 01:18:15 -08004040 * 64bit on a 32bit platform, and so it might be
4041 * possible to see a half-updated value
Jesper Juhlaeb878b2011-04-10 18:06:17 +02004042 * Of course reshape_progress could change after
NeilBrowndf8e7f762006-03-27 01:18:15 -08004043 * the lock is dropped, so once we get a reference
4044 * to the stripe that we think it is, we will have
4045 * to check again.
4046 */
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004047 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10004048 if (mddev->reshape_backwards
NeilBrownfef9c612009-03-31 15:16:46 +11004049 ? logical_sector < conf->reshape_progress
4050 : logical_sector >= conf->reshape_progress) {
NeilBrownb5663ba2009-03-31 14:39:38 +11004051 previous = 1;
4052 } else {
NeilBrown2c810cd2012-05-21 09:27:00 +10004053 if (mddev->reshape_backwards
NeilBrownfef9c612009-03-31 15:16:46 +11004054 ? logical_sector < conf->reshape_safe
4055 : logical_sector >= conf->reshape_safe) {
NeilBrownb578d552006-03-27 01:18:12 -08004056 spin_unlock_irq(&conf->device_lock);
4057 schedule();
4058 goto retry;
4059 }
4060 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004061 spin_unlock_irq(&conf->device_lock);
4062 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004063
NeilBrown112bf892009-03-31 14:39:38 +11004064 new_sector = raid5_compute_sector(conf, logical_sector,
4065 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11004066 &dd_idx, NULL);
NeilBrown0c55e022010-05-03 14:09:02 +10004067 pr_debug("raid456: make_request, sector %llu logical %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068 (unsigned long long)new_sector,
4069 (unsigned long long)logical_sector);
4070
NeilBrownb5663ba2009-03-31 14:39:38 +11004071 sh = get_active_stripe(conf, new_sector, previous,
NeilBrowna8c906c2009-06-09 14:39:59 +10004072 (bi->bi_rw&RWA_MASK), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073 if (sh) {
NeilBrownb0f9ec02009-03-31 15:27:18 +11004074 if (unlikely(previous)) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004075 /* expansion might have moved on while waiting for a
NeilBrowndf8e7f762006-03-27 01:18:15 -08004076 * stripe, so we must do the range check again.
4077 * Expansion could still move past after this
4078 * test, but as we are holding a reference to
4079 * 'sh', we know that if that happens,
4080 * STRIPE_EXPANDING will get set and the expansion
4081 * won't proceed until we finish with the stripe.
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004082 */
4083 int must_retry = 0;
4084 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10004085 if (mddev->reshape_backwards
NeilBrownb0f9ec02009-03-31 15:27:18 +11004086 ? logical_sector >= conf->reshape_progress
4087 : logical_sector < conf->reshape_progress)
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004088 /* mismatch, need to try again */
4089 must_retry = 1;
4090 spin_unlock_irq(&conf->device_lock);
4091 if (must_retry) {
4092 release_stripe(sh);
Dan Williams7a3ab902009-06-16 16:00:33 -07004093 schedule();
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004094 goto retry;
4095 }
4096 }
NeilBrowne62e58a2009-07-01 13:15:35 +10004097
Namhyung Kimffd96e32011-07-18 17:38:51 +10004098 if (rw == WRITE &&
NeilBrowna5c308d2009-07-01 13:15:35 +10004099 logical_sector >= mddev->suspend_lo &&
NeilBrowne464eaf2006-03-27 01:18:14 -08004100 logical_sector < mddev->suspend_hi) {
4101 release_stripe(sh);
NeilBrowne62e58a2009-07-01 13:15:35 +10004102 /* As the suspend_* range is controlled by
4103 * userspace, we want an interruptible
4104 * wait.
4105 */
4106 flush_signals(current);
4107 prepare_to_wait(&conf->wait_for_overlap,
4108 &w, TASK_INTERRUPTIBLE);
4109 if (logical_sector >= mddev->suspend_lo &&
4110 logical_sector < mddev->suspend_hi)
4111 schedule();
NeilBrowne464eaf2006-03-27 01:18:14 -08004112 goto retry;
4113 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004114
4115 if (test_bit(STRIPE_EXPANDING, &sh->state) ||
Namhyung Kimffd96e32011-07-18 17:38:51 +10004116 !add_stripe_bio(sh, bi, dd_idx, rw)) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004117 /* Stripe is busy expanding or
4118 * add failed due to overlap. Flush everything
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119 * and wait a while
4120 */
NeilBrown482c0832011-04-18 18:25:42 +10004121 md_wakeup_thread(mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122 release_stripe(sh);
4123 schedule();
4124 goto retry;
4125 }
4126 finish_wait(&conf->wait_for_overlap, &w);
NeilBrown6ed30032008-02-06 01:40:00 -08004127 set_bit(STRIPE_HANDLE, &sh->state);
4128 clear_bit(STRIPE_DELAYED, &sh->state);
Tejun Heoe9c74692010-09-03 11:56:18 +02004129 if ((bi->bi_rw & REQ_SYNC) &&
NeilBrown729a1862009-12-14 12:49:50 +11004130 !test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
4131 atomic_inc(&conf->preread_active_stripes);
NeilBrownb357f042012-07-03 17:45:31 +10004132 mddev_check_plugged(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134 } else {
4135 /* cannot get stripe for read-ahead, just give-up */
4136 clear_bit(BIO_UPTODATE, &bi->bi_flags);
4137 finish_wait(&conf->wait_for_overlap, &w);
4138 break;
4139 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140 }
NeilBrown7c13edc2011-04-18 18:25:43 +10004141
Shaohua Lie7836bd62012-07-19 16:01:31 +10004142 remaining = raid5_dec_bi_active_stripes(bi);
NeilBrownf6344752006-03-27 01:18:17 -08004143 if (remaining == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144
NeilBrown16a53ec2006-06-26 00:27:38 -07004145 if ( rw == WRITE )
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146 md_write_end(mddev);
NeilBrown6712ecf2007-09-27 12:47:43 +02004147
Neil Brown0e13fe232008-06-28 08:31:20 +10004148 bio_endio(bi, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150}
4151
NeilBrownfd01b882011-10-11 16:47:53 +11004152static sector_t raid5_size(struct mddev *mddev, sector_t sectors, int raid_disks);
Dan Williamsb522adc2009-03-31 15:00:31 +11004153
NeilBrownfd01b882011-10-11 16:47:53 +11004154static sector_t reshape_request(struct mddev *mddev, sector_t sector_nr, int *skipped)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004155{
NeilBrown52c03292006-06-26 00:27:43 -07004156 /* reshaping is quite different to recovery/resync so it is
4157 * handled quite separately ... here.
4158 *
4159 * On each call to sync_request, we gather one chunk worth of
4160 * destination stripes and flag them as expanding.
4161 * Then we find all the source stripes and request reads.
4162 * As the reads complete, handle_stripe will copy the data
4163 * into the destination stripe and release that stripe.
4164 */
NeilBrownd1688a62011-10-11 16:49:52 +11004165 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166 struct stripe_head *sh;
NeilBrownccfcc3c2006-03-27 01:18:09 -08004167 sector_t first_sector, last_sector;
NeilBrownf4168852007-02-28 20:11:53 -08004168 int raid_disks = conf->previous_raid_disks;
4169 int data_disks = raid_disks - conf->max_degraded;
4170 int new_data_disks = conf->raid_disks - conf->max_degraded;
NeilBrown52c03292006-06-26 00:27:43 -07004171 int i;
4172 int dd_idx;
NeilBrownc8f517c2009-03-31 15:28:40 +11004173 sector_t writepos, readpos, safepos;
NeilBrownec32a2b2009-03-31 15:17:38 +11004174 sector_t stripe_addr;
NeilBrown7a661382009-03-31 15:21:40 +11004175 int reshape_sectors;
NeilBrownab69ae12009-03-31 15:26:47 +11004176 struct list_head stripes;
NeilBrown52c03292006-06-26 00:27:43 -07004177
NeilBrownfef9c612009-03-31 15:16:46 +11004178 if (sector_nr == 0) {
4179 /* If restarting in the middle, skip the initial sectors */
NeilBrown2c810cd2012-05-21 09:27:00 +10004180 if (mddev->reshape_backwards &&
NeilBrownfef9c612009-03-31 15:16:46 +11004181 conf->reshape_progress < raid5_size(mddev, 0, 0)) {
4182 sector_nr = raid5_size(mddev, 0, 0)
4183 - conf->reshape_progress;
NeilBrown2c810cd2012-05-21 09:27:00 +10004184 } else if (!mddev->reshape_backwards &&
NeilBrownfef9c612009-03-31 15:16:46 +11004185 conf->reshape_progress > 0)
4186 sector_nr = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08004187 sector_div(sector_nr, new_data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11004188 if (sector_nr) {
NeilBrown8dee7212009-11-06 14:59:29 +11004189 mddev->curr_resync_completed = sector_nr;
4190 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrownfef9c612009-03-31 15:16:46 +11004191 *skipped = 1;
4192 return sector_nr;
4193 }
NeilBrown52c03292006-06-26 00:27:43 -07004194 }
4195
NeilBrown7a661382009-03-31 15:21:40 +11004196 /* We need to process a full chunk at a time.
4197 * If old and new chunk sizes differ, we need to process the
4198 * largest of these
4199 */
Andre Noll664e7c42009-06-18 08:45:27 +10004200 if (mddev->new_chunk_sectors > mddev->chunk_sectors)
4201 reshape_sectors = mddev->new_chunk_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11004202 else
Andre Noll9d8f0362009-06-18 08:45:01 +10004203 reshape_sectors = mddev->chunk_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11004204
NeilBrownb5254dd2012-05-21 09:27:01 +10004205 /* We update the metadata at least every 10 seconds, or when
4206 * the data about to be copied would over-write the source of
4207 * the data at the front of the range. i.e. one new_stripe
4208 * along from reshape_progress new_maps to after where
4209 * reshape_safe old_maps to
NeilBrown52c03292006-06-26 00:27:43 -07004210 */
NeilBrownfef9c612009-03-31 15:16:46 +11004211 writepos = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08004212 sector_div(writepos, new_data_disks);
NeilBrownc8f517c2009-03-31 15:28:40 +11004213 readpos = conf->reshape_progress;
4214 sector_div(readpos, data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11004215 safepos = conf->reshape_safe;
NeilBrownf4168852007-02-28 20:11:53 -08004216 sector_div(safepos, data_disks);
NeilBrown2c810cd2012-05-21 09:27:00 +10004217 if (mddev->reshape_backwards) {
NeilBrowned37d832009-05-27 21:39:05 +10004218 writepos -= min_t(sector_t, reshape_sectors, writepos);
NeilBrownc8f517c2009-03-31 15:28:40 +11004219 readpos += reshape_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11004220 safepos += reshape_sectors;
NeilBrownfef9c612009-03-31 15:16:46 +11004221 } else {
NeilBrown7a661382009-03-31 15:21:40 +11004222 writepos += reshape_sectors;
NeilBrowned37d832009-05-27 21:39:05 +10004223 readpos -= min_t(sector_t, reshape_sectors, readpos);
4224 safepos -= min_t(sector_t, reshape_sectors, safepos);
NeilBrownfef9c612009-03-31 15:16:46 +11004225 }
NeilBrown52c03292006-06-26 00:27:43 -07004226
NeilBrownb5254dd2012-05-21 09:27:01 +10004227 /* Having calculated the 'writepos' possibly use it
4228 * to set 'stripe_addr' which is where we will write to.
4229 */
4230 if (mddev->reshape_backwards) {
4231 BUG_ON(conf->reshape_progress == 0);
4232 stripe_addr = writepos;
4233 BUG_ON((mddev->dev_sectors &
4234 ~((sector_t)reshape_sectors - 1))
4235 - reshape_sectors - stripe_addr
4236 != sector_nr);
4237 } else {
4238 BUG_ON(writepos != sector_nr + reshape_sectors);
4239 stripe_addr = sector_nr;
4240 }
4241
NeilBrownc8f517c2009-03-31 15:28:40 +11004242 /* 'writepos' is the most advanced device address we might write.
4243 * 'readpos' is the least advanced device address we might read.
4244 * 'safepos' is the least address recorded in the metadata as having
4245 * been reshaped.
NeilBrownb5254dd2012-05-21 09:27:01 +10004246 * If there is a min_offset_diff, these are adjusted either by
4247 * increasing the safepos/readpos if diff is negative, or
4248 * increasing writepos if diff is positive.
4249 * If 'readpos' is then behind 'writepos', there is no way that we can
NeilBrownc8f517c2009-03-31 15:28:40 +11004250 * ensure safety in the face of a crash - that must be done by userspace
4251 * making a backup of the data. So in that case there is no particular
4252 * rush to update metadata.
4253 * Otherwise if 'safepos' is behind 'writepos', then we really need to
4254 * update the metadata to advance 'safepos' to match 'readpos' so that
4255 * we can be safe in the event of a crash.
4256 * So we insist on updating metadata if safepos is behind writepos and
4257 * readpos is beyond writepos.
4258 * In any case, update the metadata every 10 seconds.
4259 * Maybe that number should be configurable, but I'm not sure it is
4260 * worth it.... maybe it could be a multiple of safemode_delay???
4261 */
NeilBrownb5254dd2012-05-21 09:27:01 +10004262 if (conf->min_offset_diff < 0) {
4263 safepos += -conf->min_offset_diff;
4264 readpos += -conf->min_offset_diff;
4265 } else
4266 writepos += conf->min_offset_diff;
4267
NeilBrown2c810cd2012-05-21 09:27:00 +10004268 if ((mddev->reshape_backwards
NeilBrownc8f517c2009-03-31 15:28:40 +11004269 ? (safepos > writepos && readpos < writepos)
4270 : (safepos < writepos && readpos > writepos)) ||
4271 time_after(jiffies, conf->reshape_checkpoint + 10*HZ)) {
NeilBrown52c03292006-06-26 00:27:43 -07004272 /* Cannot proceed until we've updated the superblock... */
4273 wait_event(conf->wait_for_overlap,
4274 atomic_read(&conf->reshape_stripes)==0);
NeilBrownfef9c612009-03-31 15:16:46 +11004275 mddev->reshape_position = conf->reshape_progress;
NeilBrown75d3da42011-01-14 09:14:34 +11004276 mddev->curr_resync_completed = sector_nr;
NeilBrownc8f517c2009-03-31 15:28:40 +11004277 conf->reshape_checkpoint = jiffies;
NeilBrown850b2b422006-10-03 01:15:46 -07004278 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrown52c03292006-06-26 00:27:43 -07004279 md_wakeup_thread(mddev->thread);
NeilBrown850b2b422006-10-03 01:15:46 -07004280 wait_event(mddev->sb_wait, mddev->flags == 0 ||
NeilBrown52c03292006-06-26 00:27:43 -07004281 kthread_should_stop());
4282 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11004283 conf->reshape_safe = mddev->reshape_position;
NeilBrown52c03292006-06-26 00:27:43 -07004284 spin_unlock_irq(&conf->device_lock);
4285 wake_up(&conf->wait_for_overlap);
NeilBrownacb180b2009-04-14 16:28:34 +10004286 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrown52c03292006-06-26 00:27:43 -07004287 }
4288
NeilBrownab69ae12009-03-31 15:26:47 +11004289 INIT_LIST_HEAD(&stripes);
NeilBrown7a661382009-03-31 15:21:40 +11004290 for (i = 0; i < reshape_sectors; i += STRIPE_SECTORS) {
NeilBrown52c03292006-06-26 00:27:43 -07004291 int j;
NeilBrowna9f326e2009-09-23 18:06:41 +10004292 int skipped_disk = 0;
NeilBrowna8c906c2009-06-09 14:39:59 +10004293 sh = get_active_stripe(conf, stripe_addr+i, 0, 0, 1);
NeilBrown52c03292006-06-26 00:27:43 -07004294 set_bit(STRIPE_EXPANDING, &sh->state);
4295 atomic_inc(&conf->reshape_stripes);
4296 /* If any of this stripe is beyond the end of the old
4297 * array, then we need to zero those blocks
4298 */
4299 for (j=sh->disks; j--;) {
4300 sector_t s;
4301 if (j == sh->pd_idx)
4302 continue;
NeilBrownf4168852007-02-28 20:11:53 -08004303 if (conf->level == 6 &&
NeilBrownd0dabf72009-03-31 14:39:38 +11004304 j == sh->qd_idx)
NeilBrownf4168852007-02-28 20:11:53 -08004305 continue;
NeilBrown784052e2009-03-31 15:19:07 +11004306 s = compute_blocknr(sh, j, 0);
Dan Williamsb522adc2009-03-31 15:00:31 +11004307 if (s < raid5_size(mddev, 0, 0)) {
NeilBrowna9f326e2009-09-23 18:06:41 +10004308 skipped_disk = 1;
NeilBrown52c03292006-06-26 00:27:43 -07004309 continue;
4310 }
4311 memset(page_address(sh->dev[j].page), 0, STRIPE_SIZE);
4312 set_bit(R5_Expanded, &sh->dev[j].flags);
4313 set_bit(R5_UPTODATE, &sh->dev[j].flags);
4314 }
NeilBrowna9f326e2009-09-23 18:06:41 +10004315 if (!skipped_disk) {
NeilBrown52c03292006-06-26 00:27:43 -07004316 set_bit(STRIPE_EXPAND_READY, &sh->state);
4317 set_bit(STRIPE_HANDLE, &sh->state);
4318 }
NeilBrownab69ae12009-03-31 15:26:47 +11004319 list_add(&sh->lru, &stripes);
NeilBrown52c03292006-06-26 00:27:43 -07004320 }
4321 spin_lock_irq(&conf->device_lock);
NeilBrown2c810cd2012-05-21 09:27:00 +10004322 if (mddev->reshape_backwards)
NeilBrown7a661382009-03-31 15:21:40 +11004323 conf->reshape_progress -= reshape_sectors * new_data_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11004324 else
NeilBrown7a661382009-03-31 15:21:40 +11004325 conf->reshape_progress += reshape_sectors * new_data_disks;
NeilBrown52c03292006-06-26 00:27:43 -07004326 spin_unlock_irq(&conf->device_lock);
4327 /* Ok, those stripe are ready. We can start scheduling
4328 * reads on the source stripes.
4329 * The source stripes are determined by mapping the first and last
4330 * block on the destination stripes.
4331 */
NeilBrown52c03292006-06-26 00:27:43 -07004332 first_sector =
NeilBrownec32a2b2009-03-31 15:17:38 +11004333 raid5_compute_sector(conf, stripe_addr*(new_data_disks),
NeilBrown911d4ee2009-03-31 14:39:38 +11004334 1, &dd_idx, NULL);
NeilBrown52c03292006-06-26 00:27:43 -07004335 last_sector =
NeilBrown0e6e0272009-06-09 16:32:22 +10004336 raid5_compute_sector(conf, ((stripe_addr+reshape_sectors)
Andre Noll09c9e5f2009-06-18 08:45:55 +10004337 * new_data_disks - 1),
NeilBrown911d4ee2009-03-31 14:39:38 +11004338 1, &dd_idx, NULL);
Andre Noll58c0fed2009-03-31 14:33:13 +11004339 if (last_sector >= mddev->dev_sectors)
4340 last_sector = mddev->dev_sectors - 1;
NeilBrown52c03292006-06-26 00:27:43 -07004341 while (first_sector <= last_sector) {
NeilBrowna8c906c2009-06-09 14:39:59 +10004342 sh = get_active_stripe(conf, first_sector, 1, 0, 1);
NeilBrown52c03292006-06-26 00:27:43 -07004343 set_bit(STRIPE_EXPAND_SOURCE, &sh->state);
4344 set_bit(STRIPE_HANDLE, &sh->state);
4345 release_stripe(sh);
4346 first_sector += STRIPE_SECTORS;
4347 }
NeilBrownab69ae12009-03-31 15:26:47 +11004348 /* Now that the sources are clearly marked, we can release
4349 * the destination stripes
4350 */
4351 while (!list_empty(&stripes)) {
4352 sh = list_entry(stripes.next, struct stripe_head, lru);
4353 list_del_init(&sh->lru);
4354 release_stripe(sh);
4355 }
NeilBrownc6207272008-02-06 01:39:52 -08004356 /* If this takes us to the resync_max point where we have to pause,
4357 * then we need to write out the superblock.
4358 */
NeilBrown7a661382009-03-31 15:21:40 +11004359 sector_nr += reshape_sectors;
NeilBrownc03f6a12009-04-17 11:06:30 +10004360 if ((sector_nr - mddev->curr_resync_completed) * 2
4361 >= mddev->resync_max - mddev->curr_resync_completed) {
NeilBrownc6207272008-02-06 01:39:52 -08004362 /* Cannot proceed until we've updated the superblock... */
4363 wait_event(conf->wait_for_overlap,
4364 atomic_read(&conf->reshape_stripes) == 0);
NeilBrownfef9c612009-03-31 15:16:46 +11004365 mddev->reshape_position = conf->reshape_progress;
NeilBrown75d3da42011-01-14 09:14:34 +11004366 mddev->curr_resync_completed = sector_nr;
NeilBrownc8f517c2009-03-31 15:28:40 +11004367 conf->reshape_checkpoint = jiffies;
NeilBrownc6207272008-02-06 01:39:52 -08004368 set_bit(MD_CHANGE_DEVS, &mddev->flags);
4369 md_wakeup_thread(mddev->thread);
4370 wait_event(mddev->sb_wait,
4371 !test_bit(MD_CHANGE_DEVS, &mddev->flags)
4372 || kthread_should_stop());
4373 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11004374 conf->reshape_safe = mddev->reshape_position;
NeilBrownc6207272008-02-06 01:39:52 -08004375 spin_unlock_irq(&conf->device_lock);
4376 wake_up(&conf->wait_for_overlap);
NeilBrownacb180b2009-04-14 16:28:34 +10004377 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrownc6207272008-02-06 01:39:52 -08004378 }
NeilBrown7a661382009-03-31 15:21:40 +11004379 return reshape_sectors;
NeilBrown52c03292006-06-26 00:27:43 -07004380}
4381
4382/* FIXME go_faster isn't used */
NeilBrownfd01b882011-10-11 16:47:53 +11004383static inline sector_t sync_request(struct mddev *mddev, sector_t sector_nr, int *skipped, int go_faster)
NeilBrown52c03292006-06-26 00:27:43 -07004384{
NeilBrownd1688a62011-10-11 16:49:52 +11004385 struct r5conf *conf = mddev->private;
NeilBrown52c03292006-06-26 00:27:43 -07004386 struct stripe_head *sh;
Andre Noll58c0fed2009-03-31 14:33:13 +11004387 sector_t max_sector = mddev->dev_sectors;
NeilBrown57dab0b2010-10-19 10:03:39 +11004388 sector_t sync_blocks;
NeilBrown16a53ec2006-06-26 00:27:38 -07004389 int still_degraded = 0;
4390 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004391
NeilBrown72626682005-09-09 16:23:54 -07004392 if (sector_nr >= max_sector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004393 /* just being told to finish up .. nothing much to do */
NeilBrowncea9c222009-03-31 15:15:05 +11004394
NeilBrown29269552006-03-27 01:18:10 -08004395 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery)) {
4396 end_reshape(conf);
4397 return 0;
4398 }
NeilBrown72626682005-09-09 16:23:54 -07004399
4400 if (mddev->curr_resync < max_sector) /* aborted */
4401 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
4402 &sync_blocks, 1);
NeilBrown16a53ec2006-06-26 00:27:38 -07004403 else /* completed sync */
NeilBrown72626682005-09-09 16:23:54 -07004404 conf->fullsync = 0;
4405 bitmap_close_sync(mddev->bitmap);
4406
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407 return 0;
4408 }
NeilBrownccfcc3c2006-03-27 01:18:09 -08004409
NeilBrown64bd6602009-08-03 10:59:58 +10004410 /* Allow raid5_quiesce to complete */
4411 wait_event(conf->wait_for_overlap, conf->quiesce != 2);
4412
NeilBrown52c03292006-06-26 00:27:43 -07004413 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery))
4414 return reshape_request(mddev, sector_nr, skipped);
NeilBrownf6705572006-03-27 01:18:11 -08004415
NeilBrownc6207272008-02-06 01:39:52 -08004416 /* No need to check resync_max as we never do more than one
4417 * stripe, and as resync_max will always be on a chunk boundary,
4418 * if the check in md_do_sync didn't fire, there is no chance
4419 * of overstepping resync_max here
4420 */
4421
NeilBrown16a53ec2006-06-26 00:27:38 -07004422 /* if there is too many failed drives and we are trying
Linus Torvalds1da177e2005-04-16 15:20:36 -07004423 * to resync, then assert that we are finished, because there is
4424 * nothing we can do.
4425 */
NeilBrown3285edf2006-06-26 00:27:55 -07004426 if (mddev->degraded >= conf->max_degraded &&
NeilBrown16a53ec2006-06-26 00:27:38 -07004427 test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
Andre Noll58c0fed2009-03-31 14:33:13 +11004428 sector_t rv = mddev->dev_sectors - sector_nr;
NeilBrown57afd892005-06-21 17:17:13 -07004429 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004430 return rv;
4431 }
NeilBrown72626682005-09-09 16:23:54 -07004432 if (!bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
NeilBrown3855ad92005-11-08 21:39:38 -08004433 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
NeilBrown72626682005-09-09 16:23:54 -07004434 !conf->fullsync && sync_blocks >= STRIPE_SECTORS) {
4435 /* we can skip this block, and probably more */
4436 sync_blocks /= STRIPE_SECTORS;
4437 *skipped = 1;
4438 return sync_blocks * STRIPE_SECTORS; /* keep things rounded to whole stripes */
4439 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004440
NeilBrownb47490c2008-02-06 01:39:50 -08004441 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
4442
NeilBrowna8c906c2009-06-09 14:39:59 +10004443 sh = get_active_stripe(conf, sector_nr, 0, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444 if (sh == NULL) {
NeilBrowna8c906c2009-06-09 14:39:59 +10004445 sh = get_active_stripe(conf, sector_nr, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004446 /* make sure we don't swamp the stripe cache if someone else
NeilBrown16a53ec2006-06-26 00:27:38 -07004447 * is trying to get access
Linus Torvalds1da177e2005-04-16 15:20:36 -07004448 */
Nishanth Aravamudan66c006a2005-11-07 01:01:17 -08004449 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004450 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004451 /* Need to check if array will still be degraded after recovery/resync
4452 * We don't need to check the 'failed' flag as when that gets set,
4453 * recovery aborts.
4454 */
NeilBrownf001a702009-06-09 14:30:31 +10004455 for (i = 0; i < conf->raid_disks; i++)
NeilBrown16a53ec2006-06-26 00:27:38 -07004456 if (conf->disks[i].rdev == NULL)
4457 still_degraded = 1;
4458
4459 bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, still_degraded);
4460
NeilBrown83206d62011-07-26 11:19:49 +10004461 set_bit(STRIPE_SYNC_REQUESTED, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462
NeilBrown14425772009-10-16 15:55:25 +11004463 handle_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464 release_stripe(sh);
4465
4466 return STRIPE_SECTORS;
4467}
4468
NeilBrownd1688a62011-10-11 16:49:52 +11004469static int retry_aligned_read(struct r5conf *conf, struct bio *raid_bio)
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004470{
4471 /* We may not be able to submit a whole bio at once as there
4472 * may not be enough stripe_heads available.
4473 * We cannot pre-allocate enough stripe_heads as we may need
4474 * more than exist in the cache (if we allow ever large chunks).
4475 * So we do one stripe head at a time and record in
4476 * ->bi_hw_segments how many have been done.
4477 *
4478 * We *know* that this entire raid_bio is in one chunk, so
4479 * it will be only one 'dd_idx' and only need one call to raid5_compute_sector.
4480 */
4481 struct stripe_head *sh;
NeilBrown911d4ee2009-03-31 14:39:38 +11004482 int dd_idx;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004483 sector_t sector, logical_sector, last_sector;
4484 int scnt = 0;
4485 int remaining;
4486 int handled = 0;
4487
4488 logical_sector = raid_bio->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
NeilBrown112bf892009-03-31 14:39:38 +11004489 sector = raid5_compute_sector(conf, logical_sector,
NeilBrown911d4ee2009-03-31 14:39:38 +11004490 0, &dd_idx, NULL);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004491 last_sector = raid_bio->bi_sector + (raid_bio->bi_size>>9);
4492
4493 for (; logical_sector < last_sector;
Neil Brown387bb172007-02-08 14:20:29 -08004494 logical_sector += STRIPE_SECTORS,
4495 sector += STRIPE_SECTORS,
4496 scnt++) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004497
Shaohua Lie7836bd62012-07-19 16:01:31 +10004498 if (scnt < raid5_bi_processed_stripes(raid_bio))
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004499 /* already done this stripe */
4500 continue;
4501
NeilBrowna8c906c2009-06-09 14:39:59 +10004502 sh = get_active_stripe(conf, sector, 0, 1, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004503
4504 if (!sh) {
4505 /* failed to get a stripe - must wait */
Shaohua Lie7836bd62012-07-19 16:01:31 +10004506 raid5_set_bi_processed_stripes(raid_bio, scnt);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004507 conf->retry_read_aligned = raid_bio;
4508 return handled;
4509 }
4510
Neil Brown387bb172007-02-08 14:20:29 -08004511 if (!add_stripe_bio(sh, raid_bio, dd_idx, 0)) {
4512 release_stripe(sh);
Shaohua Lie7836bd62012-07-19 16:01:31 +10004513 raid5_set_bi_processed_stripes(raid_bio, scnt);
Neil Brown387bb172007-02-08 14:20:29 -08004514 conf->retry_read_aligned = raid_bio;
4515 return handled;
4516 }
4517
Dan Williams36d1c642009-07-14 11:48:22 -07004518 handle_stripe(sh);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004519 release_stripe(sh);
4520 handled++;
4521 }
Shaohua Lie7836bd62012-07-19 16:01:31 +10004522 remaining = raid5_dec_bi_active_stripes(raid_bio);
Neil Brown0e13fe232008-06-28 08:31:20 +10004523 if (remaining == 0)
4524 bio_endio(raid_bio, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004525 if (atomic_dec_and_test(&conf->active_aligned_reads))
4526 wake_up(&conf->wait_for_stripe);
4527 return handled;
4528}
4529
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004530
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531/*
4532 * This is our raid5 kernel thread.
4533 *
4534 * We scan the hash table for stripes which can be handled now.
4535 * During the scan, completed stripes are saved for us by the interrupt
4536 * handler, so that they will not have to wait for our next wakeup.
4537 */
NeilBrownfd01b882011-10-11 16:47:53 +11004538static void raid5d(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004539{
4540 struct stripe_head *sh;
NeilBrownd1688a62011-10-11 16:49:52 +11004541 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004542 int handled;
NeilBrowne1dfa0a2011-04-18 18:25:41 +10004543 struct blk_plug plug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544
Dan Williams45b42332007-07-09 11:56:43 -07004545 pr_debug("+++ raid5d active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546
4547 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548
NeilBrowne1dfa0a2011-04-18 18:25:41 +10004549 blk_start_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550 handled = 0;
4551 spin_lock_irq(&conf->device_lock);
4552 while (1) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004553 struct bio *bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554
NeilBrown7c13edc2011-04-18 18:25:43 +10004555 if (atomic_read(&mddev->plug_cnt) == 0 &&
4556 !list_empty(&conf->bitmap_list)) {
4557 /* Now is a good time to flush some bitmap updates */
4558 conf->seq_flush++;
NeilBrown700e4322005-11-28 13:44:10 -08004559 spin_unlock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07004560 bitmap_unplug(mddev->bitmap);
NeilBrown700e4322005-11-28 13:44:10 -08004561 spin_lock_irq(&conf->device_lock);
NeilBrown7c13edc2011-04-18 18:25:43 +10004562 conf->seq_write = conf->seq_flush;
NeilBrown72626682005-09-09 16:23:54 -07004563 activate_bit_delay(conf);
4564 }
NeilBrown7c13edc2011-04-18 18:25:43 +10004565 if (atomic_read(&mddev->plug_cnt) == 0)
4566 raid5_activate_delayed(conf);
NeilBrown72626682005-09-09 16:23:54 -07004567
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004568 while ((bio = remove_bio_from_retry(conf))) {
4569 int ok;
4570 spin_unlock_irq(&conf->device_lock);
4571 ok = retry_aligned_read(conf, bio);
4572 spin_lock_irq(&conf->device_lock);
4573 if (!ok)
4574 break;
4575 handled++;
4576 }
4577
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004578 sh = __get_priority_stripe(conf);
4579
Dan Williamsc9f21aa2008-07-23 12:05:51 -07004580 if (!sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582 spin_unlock_irq(&conf->device_lock);
4583
4584 handled++;
Dan Williams417b8d42009-10-16 16:25:22 +11004585 handle_stripe(sh);
4586 release_stripe(sh);
4587 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004588
NeilBrownde393cd2011-07-28 11:31:48 +10004589 if (mddev->flags & ~(1<<MD_CHANGE_PENDING))
4590 md_check_recovery(mddev);
4591
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592 spin_lock_irq(&conf->device_lock);
4593 }
Dan Williams45b42332007-07-09 11:56:43 -07004594 pr_debug("%d stripes handled\n", handled);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595
4596 spin_unlock_irq(&conf->device_lock);
4597
Dan Williamsc9f21aa2008-07-23 12:05:51 -07004598 async_tx_issue_pending_all();
NeilBrowne1dfa0a2011-04-18 18:25:41 +10004599 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600
Dan Williams45b42332007-07-09 11:56:43 -07004601 pr_debug("--- raid5d inactive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602}
4603
NeilBrown3f294f42005-11-08 21:39:25 -08004604static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11004605raid5_show_stripe_cache_size(struct mddev *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08004606{
NeilBrownd1688a62011-10-11 16:49:52 +11004607 struct r5conf *conf = mddev->private;
NeilBrown96de1e62005-11-08 21:39:39 -08004608 if (conf)
4609 return sprintf(page, "%d\n", conf->max_nr_stripes);
4610 else
4611 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08004612}
4613
NeilBrownc41d4ac2010-06-01 19:37:24 +10004614int
NeilBrownfd01b882011-10-11 16:47:53 +11004615raid5_set_cache_size(struct mddev *mddev, int size)
NeilBrownc41d4ac2010-06-01 19:37:24 +10004616{
NeilBrownd1688a62011-10-11 16:49:52 +11004617 struct r5conf *conf = mddev->private;
NeilBrownc41d4ac2010-06-01 19:37:24 +10004618 int err;
4619
4620 if (size <= 16 || size > 32768)
4621 return -EINVAL;
4622 while (size < conf->max_nr_stripes) {
4623 if (drop_one_stripe(conf))
4624 conf->max_nr_stripes--;
4625 else
4626 break;
4627 }
4628 err = md_allow_write(mddev);
4629 if (err)
4630 return err;
4631 while (size > conf->max_nr_stripes) {
4632 if (grow_one_stripe(conf))
4633 conf->max_nr_stripes++;
4634 else break;
4635 }
4636 return 0;
4637}
4638EXPORT_SYMBOL(raid5_set_cache_size);
4639
NeilBrown3f294f42005-11-08 21:39:25 -08004640static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11004641raid5_store_stripe_cache_size(struct mddev *mddev, const char *page, size_t len)
NeilBrown3f294f42005-11-08 21:39:25 -08004642{
NeilBrownd1688a62011-10-11 16:49:52 +11004643 struct r5conf *conf = mddev->private;
Dan Williams4ef197d82008-04-28 02:15:54 -07004644 unsigned long new;
Dan Williamsb5470dc2008-06-27 21:44:04 -07004645 int err;
4646
NeilBrown3f294f42005-11-08 21:39:25 -08004647 if (len >= PAGE_SIZE)
4648 return -EINVAL;
NeilBrown96de1e62005-11-08 21:39:39 -08004649 if (!conf)
4650 return -ENODEV;
NeilBrown3f294f42005-11-08 21:39:25 -08004651
Dan Williams4ef197d82008-04-28 02:15:54 -07004652 if (strict_strtoul(page, 10, &new))
NeilBrown3f294f42005-11-08 21:39:25 -08004653 return -EINVAL;
NeilBrownc41d4ac2010-06-01 19:37:24 +10004654 err = raid5_set_cache_size(mddev, new);
Dan Williamsb5470dc2008-06-27 21:44:04 -07004655 if (err)
4656 return err;
NeilBrown3f294f42005-11-08 21:39:25 -08004657 return len;
4658}
NeilBrown007583c2005-11-08 21:39:30 -08004659
NeilBrown96de1e62005-11-08 21:39:39 -08004660static struct md_sysfs_entry
4661raid5_stripecache_size = __ATTR(stripe_cache_size, S_IRUGO | S_IWUSR,
4662 raid5_show_stripe_cache_size,
4663 raid5_store_stripe_cache_size);
NeilBrown3f294f42005-11-08 21:39:25 -08004664
4665static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11004666raid5_show_preread_threshold(struct mddev *mddev, char *page)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004667{
NeilBrownd1688a62011-10-11 16:49:52 +11004668 struct r5conf *conf = mddev->private;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004669 if (conf)
4670 return sprintf(page, "%d\n", conf->bypass_threshold);
4671 else
4672 return 0;
4673}
4674
4675static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11004676raid5_store_preread_threshold(struct mddev *mddev, const char *page, size_t len)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004677{
NeilBrownd1688a62011-10-11 16:49:52 +11004678 struct r5conf *conf = mddev->private;
Dan Williams4ef197d82008-04-28 02:15:54 -07004679 unsigned long new;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004680 if (len >= PAGE_SIZE)
4681 return -EINVAL;
4682 if (!conf)
4683 return -ENODEV;
4684
Dan Williams4ef197d82008-04-28 02:15:54 -07004685 if (strict_strtoul(page, 10, &new))
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004686 return -EINVAL;
Dan Williams4ef197d82008-04-28 02:15:54 -07004687 if (new > conf->max_nr_stripes)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004688 return -EINVAL;
4689 conf->bypass_threshold = new;
4690 return len;
4691}
4692
4693static struct md_sysfs_entry
4694raid5_preread_bypass_threshold = __ATTR(preread_bypass_threshold,
4695 S_IRUGO | S_IWUSR,
4696 raid5_show_preread_threshold,
4697 raid5_store_preread_threshold);
4698
4699static ssize_t
NeilBrownfd01b882011-10-11 16:47:53 +11004700stripe_cache_active_show(struct mddev *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08004701{
NeilBrownd1688a62011-10-11 16:49:52 +11004702 struct r5conf *conf = mddev->private;
NeilBrown96de1e62005-11-08 21:39:39 -08004703 if (conf)
4704 return sprintf(page, "%d\n", atomic_read(&conf->active_stripes));
4705 else
4706 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08004707}
4708
NeilBrown96de1e62005-11-08 21:39:39 -08004709static struct md_sysfs_entry
4710raid5_stripecache_active = __ATTR_RO(stripe_cache_active);
NeilBrown3f294f42005-11-08 21:39:25 -08004711
NeilBrown007583c2005-11-08 21:39:30 -08004712static struct attribute *raid5_attrs[] = {
NeilBrown3f294f42005-11-08 21:39:25 -08004713 &raid5_stripecache_size.attr,
4714 &raid5_stripecache_active.attr,
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004715 &raid5_preread_bypass_threshold.attr,
NeilBrown3f294f42005-11-08 21:39:25 -08004716 NULL,
4717};
NeilBrown007583c2005-11-08 21:39:30 -08004718static struct attribute_group raid5_attrs_group = {
4719 .name = NULL,
4720 .attrs = raid5_attrs,
NeilBrown3f294f42005-11-08 21:39:25 -08004721};
4722
Dan Williams80c3a6c2009-03-17 18:10:40 -07004723static sector_t
NeilBrownfd01b882011-10-11 16:47:53 +11004724raid5_size(struct mddev *mddev, sector_t sectors, int raid_disks)
Dan Williams80c3a6c2009-03-17 18:10:40 -07004725{
NeilBrownd1688a62011-10-11 16:49:52 +11004726 struct r5conf *conf = mddev->private;
Dan Williams80c3a6c2009-03-17 18:10:40 -07004727
4728 if (!sectors)
4729 sectors = mddev->dev_sectors;
NeilBrown5e5e3e72009-10-16 16:35:30 +11004730 if (!raid_disks)
NeilBrown7ec05472009-03-31 15:10:36 +11004731 /* size is defined by the smallest of previous and new size */
NeilBrown5e5e3e72009-10-16 16:35:30 +11004732 raid_disks = min(conf->raid_disks, conf->previous_raid_disks);
Dan Williams80c3a6c2009-03-17 18:10:40 -07004733
Andre Noll9d8f0362009-06-18 08:45:01 +10004734 sectors &= ~((sector_t)mddev->chunk_sectors - 1);
Andre Noll664e7c42009-06-18 08:45:27 +10004735 sectors &= ~((sector_t)mddev->new_chunk_sectors - 1);
Dan Williams80c3a6c2009-03-17 18:10:40 -07004736 return sectors * (raid_disks - conf->max_degraded);
4737}
4738
NeilBrownd1688a62011-10-11 16:49:52 +11004739static void raid5_free_percpu(struct r5conf *conf)
Dan Williams36d1c642009-07-14 11:48:22 -07004740{
4741 struct raid5_percpu *percpu;
4742 unsigned long cpu;
4743
4744 if (!conf->percpu)
4745 return;
4746
4747 get_online_cpus();
4748 for_each_possible_cpu(cpu) {
4749 percpu = per_cpu_ptr(conf->percpu, cpu);
4750 safe_put_page(percpu->spare_page);
Dan Williamsd6f38f32009-07-14 11:50:52 -07004751 kfree(percpu->scribble);
Dan Williams36d1c642009-07-14 11:48:22 -07004752 }
4753#ifdef CONFIG_HOTPLUG_CPU
4754 unregister_cpu_notifier(&conf->cpu_notify);
4755#endif
4756 put_online_cpus();
4757
4758 free_percpu(conf->percpu);
4759}
4760
NeilBrownd1688a62011-10-11 16:49:52 +11004761static void free_conf(struct r5conf *conf)
Dan Williams95fc17a2009-07-31 12:39:15 +10004762{
4763 shrink_stripes(conf);
Dan Williams36d1c642009-07-14 11:48:22 -07004764 raid5_free_percpu(conf);
Dan Williams95fc17a2009-07-31 12:39:15 +10004765 kfree(conf->disks);
4766 kfree(conf->stripe_hashtbl);
4767 kfree(conf);
4768}
4769
Dan Williams36d1c642009-07-14 11:48:22 -07004770#ifdef CONFIG_HOTPLUG_CPU
4771static int raid456_cpu_notify(struct notifier_block *nfb, unsigned long action,
4772 void *hcpu)
4773{
NeilBrownd1688a62011-10-11 16:49:52 +11004774 struct r5conf *conf = container_of(nfb, struct r5conf, cpu_notify);
Dan Williams36d1c642009-07-14 11:48:22 -07004775 long cpu = (long)hcpu;
4776 struct raid5_percpu *percpu = per_cpu_ptr(conf->percpu, cpu);
4777
4778 switch (action) {
4779 case CPU_UP_PREPARE:
4780 case CPU_UP_PREPARE_FROZEN:
Dan Williamsd6f38f32009-07-14 11:50:52 -07004781 if (conf->level == 6 && !percpu->spare_page)
Dan Williams36d1c642009-07-14 11:48:22 -07004782 percpu->spare_page = alloc_page(GFP_KERNEL);
Dan Williamsd6f38f32009-07-14 11:50:52 -07004783 if (!percpu->scribble)
4784 percpu->scribble = kmalloc(conf->scribble_len, GFP_KERNEL);
4785
4786 if (!percpu->scribble ||
4787 (conf->level == 6 && !percpu->spare_page)) {
4788 safe_put_page(percpu->spare_page);
4789 kfree(percpu->scribble);
Dan Williams36d1c642009-07-14 11:48:22 -07004790 pr_err("%s: failed memory allocation for cpu%ld\n",
4791 __func__, cpu);
Akinobu Mita55af6bb2010-05-26 14:43:35 -07004792 return notifier_from_errno(-ENOMEM);
Dan Williams36d1c642009-07-14 11:48:22 -07004793 }
4794 break;
4795 case CPU_DEAD:
4796 case CPU_DEAD_FROZEN:
4797 safe_put_page(percpu->spare_page);
Dan Williamsd6f38f32009-07-14 11:50:52 -07004798 kfree(percpu->scribble);
Dan Williams36d1c642009-07-14 11:48:22 -07004799 percpu->spare_page = NULL;
Dan Williamsd6f38f32009-07-14 11:50:52 -07004800 percpu->scribble = NULL;
Dan Williams36d1c642009-07-14 11:48:22 -07004801 break;
4802 default:
4803 break;
4804 }
4805 return NOTIFY_OK;
4806}
4807#endif
4808
NeilBrownd1688a62011-10-11 16:49:52 +11004809static int raid5_alloc_percpu(struct r5conf *conf)
Dan Williams36d1c642009-07-14 11:48:22 -07004810{
4811 unsigned long cpu;
4812 struct page *spare_page;
Tejun Heoa29d8b82010-02-02 14:39:15 +09004813 struct raid5_percpu __percpu *allcpus;
Dan Williamsd6f38f32009-07-14 11:50:52 -07004814 void *scribble;
Dan Williams36d1c642009-07-14 11:48:22 -07004815 int err;
4816
Dan Williams36d1c642009-07-14 11:48:22 -07004817 allcpus = alloc_percpu(struct raid5_percpu);
4818 if (!allcpus)
4819 return -ENOMEM;
4820 conf->percpu = allcpus;
4821
4822 get_online_cpus();
4823 err = 0;
4824 for_each_present_cpu(cpu) {
Dan Williamsd6f38f32009-07-14 11:50:52 -07004825 if (conf->level == 6) {
4826 spare_page = alloc_page(GFP_KERNEL);
4827 if (!spare_page) {
4828 err = -ENOMEM;
4829 break;
4830 }
4831 per_cpu_ptr(conf->percpu, cpu)->spare_page = spare_page;
4832 }
NeilBrown5e5e3e72009-10-16 16:35:30 +11004833 scribble = kmalloc(conf->scribble_len, GFP_KERNEL);
Dan Williamsd6f38f32009-07-14 11:50:52 -07004834 if (!scribble) {
Dan Williams36d1c642009-07-14 11:48:22 -07004835 err = -ENOMEM;
4836 break;
4837 }
Dan Williamsd6f38f32009-07-14 11:50:52 -07004838 per_cpu_ptr(conf->percpu, cpu)->scribble = scribble;
Dan Williams36d1c642009-07-14 11:48:22 -07004839 }
4840#ifdef CONFIG_HOTPLUG_CPU
4841 conf->cpu_notify.notifier_call = raid456_cpu_notify;
4842 conf->cpu_notify.priority = 0;
4843 if (err == 0)
4844 err = register_cpu_notifier(&conf->cpu_notify);
4845#endif
4846 put_online_cpus();
4847
4848 return err;
4849}
4850
NeilBrownd1688a62011-10-11 16:49:52 +11004851static struct r5conf *setup_conf(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852{
NeilBrownd1688a62011-10-11 16:49:52 +11004853 struct r5conf *conf;
NeilBrown5e5e3e72009-10-16 16:35:30 +11004854 int raid_disk, memory, max_disks;
NeilBrown3cb03002011-10-11 16:45:26 +11004855 struct md_rdev *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004856 struct disk_info *disk;
NeilBrown02326052012-07-03 15:56:52 +10004857 char pers_name[6];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004858
NeilBrown91adb562009-03-31 14:39:39 +11004859 if (mddev->new_level != 5
4860 && mddev->new_level != 4
4861 && mddev->new_level != 6) {
NeilBrown0c55e022010-05-03 14:09:02 +10004862 printk(KERN_ERR "md/raid:%s: raid level not set to 4/5/6 (%d)\n",
NeilBrown91adb562009-03-31 14:39:39 +11004863 mdname(mddev), mddev->new_level);
4864 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865 }
NeilBrown91adb562009-03-31 14:39:39 +11004866 if ((mddev->new_level == 5
4867 && !algorithm_valid_raid5(mddev->new_layout)) ||
4868 (mddev->new_level == 6
4869 && !algorithm_valid_raid6(mddev->new_layout))) {
NeilBrown0c55e022010-05-03 14:09:02 +10004870 printk(KERN_ERR "md/raid:%s: layout %d not supported\n",
NeilBrown91adb562009-03-31 14:39:39 +11004871 mdname(mddev), mddev->new_layout);
4872 return ERR_PTR(-EIO);
4873 }
4874 if (mddev->new_level == 6 && mddev->raid_disks < 4) {
NeilBrown0c55e022010-05-03 14:09:02 +10004875 printk(KERN_ERR "md/raid:%s: not enough configured devices (%d, minimum 4)\n",
NeilBrown91adb562009-03-31 14:39:39 +11004876 mdname(mddev), mddev->raid_disks);
4877 return ERR_PTR(-EINVAL);
NeilBrown99c0fb52009-03-31 14:39:38 +11004878 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004879
Andre Noll664e7c42009-06-18 08:45:27 +10004880 if (!mddev->new_chunk_sectors ||
4881 (mddev->new_chunk_sectors << 9) % PAGE_SIZE ||
4882 !is_power_of_2(mddev->new_chunk_sectors)) {
NeilBrown0c55e022010-05-03 14:09:02 +10004883 printk(KERN_ERR "md/raid:%s: invalid chunk size %d\n",
4884 mdname(mddev), mddev->new_chunk_sectors << 9);
NeilBrown91adb562009-03-31 14:39:39 +11004885 return ERR_PTR(-EINVAL);
NeilBrown4bbf3772008-10-13 11:55:12 +11004886 }
4887
NeilBrownd1688a62011-10-11 16:49:52 +11004888 conf = kzalloc(sizeof(struct r5conf), GFP_KERNEL);
NeilBrown91adb562009-03-31 14:39:39 +11004889 if (conf == NULL)
4890 goto abort;
Dan Williamsf5efd452009-10-16 15:55:38 +11004891 spin_lock_init(&conf->device_lock);
4892 init_waitqueue_head(&conf->wait_for_stripe);
4893 init_waitqueue_head(&conf->wait_for_overlap);
4894 INIT_LIST_HEAD(&conf->handle_list);
4895 INIT_LIST_HEAD(&conf->hold_list);
4896 INIT_LIST_HEAD(&conf->delayed_list);
4897 INIT_LIST_HEAD(&conf->bitmap_list);
4898 INIT_LIST_HEAD(&conf->inactive_list);
4899 atomic_set(&conf->active_stripes, 0);
4900 atomic_set(&conf->preread_active_stripes, 0);
4901 atomic_set(&conf->active_aligned_reads, 0);
4902 conf->bypass_threshold = BYPASS_THRESHOLD;
NeilBrownd890fa22011-10-26 11:54:39 +11004903 conf->recovery_disabled = mddev->recovery_disabled - 1;
NeilBrown91adb562009-03-31 14:39:39 +11004904
4905 conf->raid_disks = mddev->raid_disks;
4906 if (mddev->reshape_position == MaxSector)
4907 conf->previous_raid_disks = mddev->raid_disks;
4908 else
4909 conf->previous_raid_disks = mddev->raid_disks - mddev->delta_disks;
NeilBrown5e5e3e72009-10-16 16:35:30 +11004910 max_disks = max(conf->raid_disks, conf->previous_raid_disks);
4911 conf->scribble_len = scribble_len(max_disks);
NeilBrown91adb562009-03-31 14:39:39 +11004912
NeilBrown5e5e3e72009-10-16 16:35:30 +11004913 conf->disks = kzalloc(max_disks * sizeof(struct disk_info),
NeilBrown91adb562009-03-31 14:39:39 +11004914 GFP_KERNEL);
4915 if (!conf->disks)
4916 goto abort;
4917
4918 conf->mddev = mddev;
4919
4920 if ((conf->stripe_hashtbl = kzalloc(PAGE_SIZE, GFP_KERNEL)) == NULL)
4921 goto abort;
4922
Dan Williams36d1c642009-07-14 11:48:22 -07004923 conf->level = mddev->new_level;
4924 if (raid5_alloc_percpu(conf) != 0)
4925 goto abort;
4926
NeilBrown0c55e022010-05-03 14:09:02 +10004927 pr_debug("raid456: run(%s) called.\n", mdname(mddev));
NeilBrown91adb562009-03-31 14:39:39 +11004928
NeilBrowndafb20f2012-03-19 12:46:39 +11004929 rdev_for_each(rdev, mddev) {
NeilBrown91adb562009-03-31 14:39:39 +11004930 raid_disk = rdev->raid_disk;
NeilBrown5e5e3e72009-10-16 16:35:30 +11004931 if (raid_disk >= max_disks
NeilBrown91adb562009-03-31 14:39:39 +11004932 || raid_disk < 0)
4933 continue;
4934 disk = conf->disks + raid_disk;
4935
NeilBrown17045f52011-12-23 10:17:53 +11004936 if (test_bit(Replacement, &rdev->flags)) {
4937 if (disk->replacement)
4938 goto abort;
4939 disk->replacement = rdev;
4940 } else {
4941 if (disk->rdev)
4942 goto abort;
4943 disk->rdev = rdev;
4944 }
NeilBrown91adb562009-03-31 14:39:39 +11004945
4946 if (test_bit(In_sync, &rdev->flags)) {
4947 char b[BDEVNAME_SIZE];
NeilBrown0c55e022010-05-03 14:09:02 +10004948 printk(KERN_INFO "md/raid:%s: device %s operational as raid"
4949 " disk %d\n",
4950 mdname(mddev), bdevname(rdev->bdev, b), raid_disk);
Jonathan Brassowd6b212f2011-06-08 18:00:28 -05004951 } else if (rdev->saved_raid_disk != raid_disk)
NeilBrown91adb562009-03-31 14:39:39 +11004952 /* Cannot rely on bitmap to complete recovery */
4953 conf->fullsync = 1;
4954 }
4955
Andre Noll09c9e5f2009-06-18 08:45:55 +10004956 conf->chunk_sectors = mddev->new_chunk_sectors;
NeilBrown91adb562009-03-31 14:39:39 +11004957 conf->level = mddev->new_level;
4958 if (conf->level == 6)
4959 conf->max_degraded = 2;
4960 else
4961 conf->max_degraded = 1;
4962 conf->algorithm = mddev->new_layout;
4963 conf->max_nr_stripes = NR_STRIPES;
NeilBrownfef9c612009-03-31 15:16:46 +11004964 conf->reshape_progress = mddev->reshape_position;
NeilBrowne183eae2009-03-31 15:20:22 +11004965 if (conf->reshape_progress != MaxSector) {
Andre Noll09c9e5f2009-06-18 08:45:55 +10004966 conf->prev_chunk_sectors = mddev->chunk_sectors;
NeilBrowne183eae2009-03-31 15:20:22 +11004967 conf->prev_algo = mddev->layout;
4968 }
NeilBrown91adb562009-03-31 14:39:39 +11004969
4970 memory = conf->max_nr_stripes * (sizeof(struct stripe_head) +
NeilBrown5e5e3e72009-10-16 16:35:30 +11004971 max_disks * ((sizeof(struct bio) + PAGE_SIZE))) / 1024;
NeilBrown91adb562009-03-31 14:39:39 +11004972 if (grow_stripes(conf, conf->max_nr_stripes)) {
4973 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10004974 "md/raid:%s: couldn't allocate %dkB for buffers\n",
4975 mdname(mddev), memory);
NeilBrown91adb562009-03-31 14:39:39 +11004976 goto abort;
4977 } else
NeilBrown0c55e022010-05-03 14:09:02 +10004978 printk(KERN_INFO "md/raid:%s: allocated %dkB\n",
4979 mdname(mddev), memory);
NeilBrown91adb562009-03-31 14:39:39 +11004980
NeilBrown02326052012-07-03 15:56:52 +10004981 sprintf(pers_name, "raid%d", mddev->new_level);
4982 conf->thread = md_register_thread(raid5d, mddev, pers_name);
NeilBrown91adb562009-03-31 14:39:39 +11004983 if (!conf->thread) {
4984 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10004985 "md/raid:%s: couldn't allocate thread.\n",
NeilBrown91adb562009-03-31 14:39:39 +11004986 mdname(mddev));
4987 goto abort;
4988 }
4989
4990 return conf;
4991
4992 abort:
4993 if (conf) {
Dan Williams95fc17a2009-07-31 12:39:15 +10004994 free_conf(conf);
NeilBrown91adb562009-03-31 14:39:39 +11004995 return ERR_PTR(-EIO);
4996 } else
4997 return ERR_PTR(-ENOMEM);
4998}
4999
NeilBrownc148ffd2009-11-13 17:47:00 +11005000
5001static int only_parity(int raid_disk, int algo, int raid_disks, int max_degraded)
5002{
5003 switch (algo) {
5004 case ALGORITHM_PARITY_0:
5005 if (raid_disk < max_degraded)
5006 return 1;
5007 break;
5008 case ALGORITHM_PARITY_N:
5009 if (raid_disk >= raid_disks - max_degraded)
5010 return 1;
5011 break;
5012 case ALGORITHM_PARITY_0_6:
5013 if (raid_disk == 0 ||
5014 raid_disk == raid_disks - 1)
5015 return 1;
5016 break;
5017 case ALGORITHM_LEFT_ASYMMETRIC_6:
5018 case ALGORITHM_RIGHT_ASYMMETRIC_6:
5019 case ALGORITHM_LEFT_SYMMETRIC_6:
5020 case ALGORITHM_RIGHT_SYMMETRIC_6:
5021 if (raid_disk == raid_disks - 1)
5022 return 1;
5023 }
5024 return 0;
5025}
5026
NeilBrownfd01b882011-10-11 16:47:53 +11005027static int run(struct mddev *mddev)
NeilBrown91adb562009-03-31 14:39:39 +11005028{
NeilBrownd1688a62011-10-11 16:49:52 +11005029 struct r5conf *conf;
NeilBrown9f7c2222010-07-26 12:04:13 +10005030 int working_disks = 0;
NeilBrownc148ffd2009-11-13 17:47:00 +11005031 int dirty_parity_disks = 0;
NeilBrown3cb03002011-10-11 16:45:26 +11005032 struct md_rdev *rdev;
NeilBrownc148ffd2009-11-13 17:47:00 +11005033 sector_t reshape_offset = 0;
NeilBrown17045f52011-12-23 10:17:53 +11005034 int i;
NeilBrownb5254dd2012-05-21 09:27:01 +10005035 long long min_offset_diff = 0;
5036 int first = 1;
NeilBrown91adb562009-03-31 14:39:39 +11005037
Andre Noll8c6ac8682009-06-18 08:48:06 +10005038 if (mddev->recovery_cp != MaxSector)
NeilBrown0c55e022010-05-03 14:09:02 +10005039 printk(KERN_NOTICE "md/raid:%s: not clean"
Andre Noll8c6ac8682009-06-18 08:48:06 +10005040 " -- starting background reconstruction\n",
5041 mdname(mddev));
NeilBrownb5254dd2012-05-21 09:27:01 +10005042
5043 rdev_for_each(rdev, mddev) {
5044 long long diff;
5045 if (rdev->raid_disk < 0)
5046 continue;
5047 diff = (rdev->new_data_offset - rdev->data_offset);
5048 if (first) {
5049 min_offset_diff = diff;
5050 first = 0;
5051 } else if (mddev->reshape_backwards &&
5052 diff < min_offset_diff)
5053 min_offset_diff = diff;
5054 else if (!mddev->reshape_backwards &&
5055 diff > min_offset_diff)
5056 min_offset_diff = diff;
5057 }
5058
NeilBrownf6705572006-03-27 01:18:11 -08005059 if (mddev->reshape_position != MaxSector) {
5060 /* Check that we can continue the reshape.
NeilBrownb5254dd2012-05-21 09:27:01 +10005061 * Difficulties arise if the stripe we would write to
5062 * next is at or after the stripe we would read from next.
5063 * For a reshape that changes the number of devices, this
5064 * is only possible for a very short time, and mdadm makes
5065 * sure that time appears to have past before assembling
5066 * the array. So we fail if that time hasn't passed.
5067 * For a reshape that keeps the number of devices the same
5068 * mdadm must be monitoring the reshape can keeping the
5069 * critical areas read-only and backed up. It will start
5070 * the array in read-only mode, so we check for that.
NeilBrownf6705572006-03-27 01:18:11 -08005071 */
5072 sector_t here_new, here_old;
5073 int old_disks;
Andre Noll18b00332009-03-31 15:00:56 +11005074 int max_degraded = (mddev->level == 6 ? 2 : 1);
NeilBrownf6705572006-03-27 01:18:11 -08005075
NeilBrown88ce4932009-03-31 15:24:23 +11005076 if (mddev->new_level != mddev->level) {
NeilBrown0c55e022010-05-03 14:09:02 +10005077 printk(KERN_ERR "md/raid:%s: unsupported reshape "
NeilBrownf4168852007-02-28 20:11:53 -08005078 "required - aborting.\n",
NeilBrownf6705572006-03-27 01:18:11 -08005079 mdname(mddev));
5080 return -EINVAL;
5081 }
NeilBrownf6705572006-03-27 01:18:11 -08005082 old_disks = mddev->raid_disks - mddev->delta_disks;
5083 /* reshape_position must be on a new-stripe boundary, and one
NeilBrownf4168852007-02-28 20:11:53 -08005084 * further up in new geometry must map after here in old
5085 * geometry.
NeilBrownf6705572006-03-27 01:18:11 -08005086 */
5087 here_new = mddev->reshape_position;
Andre Noll664e7c42009-06-18 08:45:27 +10005088 if (sector_div(here_new, mddev->new_chunk_sectors *
NeilBrownf4168852007-02-28 20:11:53 -08005089 (mddev->raid_disks - max_degraded))) {
NeilBrown0c55e022010-05-03 14:09:02 +10005090 printk(KERN_ERR "md/raid:%s: reshape_position not "
5091 "on a stripe boundary\n", mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08005092 return -EINVAL;
5093 }
NeilBrownc148ffd2009-11-13 17:47:00 +11005094 reshape_offset = here_new * mddev->new_chunk_sectors;
NeilBrownf6705572006-03-27 01:18:11 -08005095 /* here_new is the stripe we will write to */
5096 here_old = mddev->reshape_position;
Andre Noll9d8f0362009-06-18 08:45:01 +10005097 sector_div(here_old, mddev->chunk_sectors *
NeilBrownf4168852007-02-28 20:11:53 -08005098 (old_disks-max_degraded));
5099 /* here_old is the first stripe that we might need to read
5100 * from */
NeilBrown67ac6012009-08-13 10:06:24 +10005101 if (mddev->delta_disks == 0) {
NeilBrownb5254dd2012-05-21 09:27:01 +10005102 if ((here_new * mddev->new_chunk_sectors !=
5103 here_old * mddev->chunk_sectors)) {
5104 printk(KERN_ERR "md/raid:%s: reshape position is"
5105 " confused - aborting\n", mdname(mddev));
5106 return -EINVAL;
5107 }
NeilBrown67ac6012009-08-13 10:06:24 +10005108 /* We cannot be sure it is safe to start an in-place
NeilBrownb5254dd2012-05-21 09:27:01 +10005109 * reshape. It is only safe if user-space is monitoring
NeilBrown67ac6012009-08-13 10:06:24 +10005110 * and taking constant backups.
5111 * mdadm always starts a situation like this in
5112 * readonly mode so it can take control before
5113 * allowing any writes. So just check for that.
5114 */
NeilBrownb5254dd2012-05-21 09:27:01 +10005115 if (abs(min_offset_diff) >= mddev->chunk_sectors &&
5116 abs(min_offset_diff) >= mddev->new_chunk_sectors)
5117 /* not really in-place - so OK */;
5118 else if (mddev->ro == 0) {
5119 printk(KERN_ERR "md/raid:%s: in-place reshape "
5120 "must be started in read-only mode "
5121 "- aborting\n",
NeilBrown0c55e022010-05-03 14:09:02 +10005122 mdname(mddev));
NeilBrown67ac6012009-08-13 10:06:24 +10005123 return -EINVAL;
5124 }
NeilBrown2c810cd2012-05-21 09:27:00 +10005125 } else if (mddev->reshape_backwards
NeilBrownb5254dd2012-05-21 09:27:01 +10005126 ? (here_new * mddev->new_chunk_sectors + min_offset_diff <=
NeilBrown67ac6012009-08-13 10:06:24 +10005127 here_old * mddev->chunk_sectors)
5128 : (here_new * mddev->new_chunk_sectors >=
NeilBrownb5254dd2012-05-21 09:27:01 +10005129 here_old * mddev->chunk_sectors + (-min_offset_diff))) {
NeilBrownf6705572006-03-27 01:18:11 -08005130 /* Reading from the same stripe as writing to - bad */
NeilBrown0c55e022010-05-03 14:09:02 +10005131 printk(KERN_ERR "md/raid:%s: reshape_position too early for "
5132 "auto-recovery - aborting.\n",
5133 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08005134 return -EINVAL;
5135 }
NeilBrown0c55e022010-05-03 14:09:02 +10005136 printk(KERN_INFO "md/raid:%s: reshape will continue\n",
5137 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08005138 /* OK, we should be able to continue; */
NeilBrownf6705572006-03-27 01:18:11 -08005139 } else {
NeilBrown91adb562009-03-31 14:39:39 +11005140 BUG_ON(mddev->level != mddev->new_level);
5141 BUG_ON(mddev->layout != mddev->new_layout);
Andre Noll664e7c42009-06-18 08:45:27 +10005142 BUG_ON(mddev->chunk_sectors != mddev->new_chunk_sectors);
NeilBrown91adb562009-03-31 14:39:39 +11005143 BUG_ON(mddev->delta_disks != 0);
NeilBrownf6705572006-03-27 01:18:11 -08005144 }
5145
NeilBrown245f46c2009-03-31 14:39:39 +11005146 if (mddev->private == NULL)
5147 conf = setup_conf(mddev);
5148 else
5149 conf = mddev->private;
5150
NeilBrown91adb562009-03-31 14:39:39 +11005151 if (IS_ERR(conf))
5152 return PTR_ERR(conf);
NeilBrown9ffae0c2006-01-06 00:20:32 -08005153
NeilBrownb5254dd2012-05-21 09:27:01 +10005154 conf->min_offset_diff = min_offset_diff;
NeilBrown91adb562009-03-31 14:39:39 +11005155 mddev->thread = conf->thread;
5156 conf->thread = NULL;
5157 mddev->private = conf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005158
NeilBrown17045f52011-12-23 10:17:53 +11005159 for (i = 0; i < conf->raid_disks && conf->previous_raid_disks;
5160 i++) {
5161 rdev = conf->disks[i].rdev;
5162 if (!rdev && conf->disks[i].replacement) {
5163 /* The replacement is all we have yet */
5164 rdev = conf->disks[i].replacement;
5165 conf->disks[i].replacement = NULL;
5166 clear_bit(Replacement, &rdev->flags);
5167 conf->disks[i].rdev = rdev;
5168 }
5169 if (!rdev)
NeilBrownc148ffd2009-11-13 17:47:00 +11005170 continue;
NeilBrown17045f52011-12-23 10:17:53 +11005171 if (conf->disks[i].replacement &&
5172 conf->reshape_progress != MaxSector) {
5173 /* replacements and reshape simply do not mix. */
5174 printk(KERN_ERR "md: cannot handle concurrent "
5175 "replacement and reshape.\n");
5176 goto abort;
5177 }
NeilBrown2f115882010-06-17 17:41:03 +10005178 if (test_bit(In_sync, &rdev->flags)) {
NeilBrown91adb562009-03-31 14:39:39 +11005179 working_disks++;
NeilBrown2f115882010-06-17 17:41:03 +10005180 continue;
5181 }
NeilBrownc148ffd2009-11-13 17:47:00 +11005182 /* This disc is not fully in-sync. However if it
5183 * just stored parity (beyond the recovery_offset),
5184 * when we don't need to be concerned about the
5185 * array being dirty.
5186 * When reshape goes 'backwards', we never have
5187 * partially completed devices, so we only need
5188 * to worry about reshape going forwards.
5189 */
5190 /* Hack because v0.91 doesn't store recovery_offset properly. */
5191 if (mddev->major_version == 0 &&
5192 mddev->minor_version > 90)
5193 rdev->recovery_offset = reshape_offset;
5194
NeilBrownc148ffd2009-11-13 17:47:00 +11005195 if (rdev->recovery_offset < reshape_offset) {
5196 /* We need to check old and new layout */
5197 if (!only_parity(rdev->raid_disk,
5198 conf->algorithm,
5199 conf->raid_disks,
5200 conf->max_degraded))
5201 continue;
5202 }
5203 if (!only_parity(rdev->raid_disk,
5204 conf->prev_algo,
5205 conf->previous_raid_disks,
5206 conf->max_degraded))
5207 continue;
5208 dirty_parity_disks++;
5209 }
NeilBrown91adb562009-03-31 14:39:39 +11005210
NeilBrown17045f52011-12-23 10:17:53 +11005211 /*
5212 * 0 for a fully functional array, 1 or 2 for a degraded array.
5213 */
NeilBrown908f4fb2011-12-23 10:17:50 +11005214 mddev->degraded = calc_degraded(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005215
NeilBrown674806d2010-06-16 17:17:53 +10005216 if (has_failed(conf)) {
NeilBrown0c55e022010-05-03 14:09:02 +10005217 printk(KERN_ERR "md/raid:%s: not enough operational devices"
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218 " (%d/%d failed)\n",
NeilBrown02c2de82006-10-03 01:15:47 -07005219 mdname(mddev), mddev->degraded, conf->raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005220 goto abort;
5221 }
5222
NeilBrown91adb562009-03-31 14:39:39 +11005223 /* device size must be a multiple of chunk size */
Andre Noll9d8f0362009-06-18 08:45:01 +10005224 mddev->dev_sectors &= ~(mddev->chunk_sectors - 1);
NeilBrown91adb562009-03-31 14:39:39 +11005225 mddev->resync_max_sectors = mddev->dev_sectors;
5226
NeilBrownc148ffd2009-11-13 17:47:00 +11005227 if (mddev->degraded > dirty_parity_disks &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005228 mddev->recovery_cp != MaxSector) {
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08005229 if (mddev->ok_start_degraded)
5230 printk(KERN_WARNING
NeilBrown0c55e022010-05-03 14:09:02 +10005231 "md/raid:%s: starting dirty degraded array"
5232 " - data corruption possible.\n",
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08005233 mdname(mddev));
5234 else {
5235 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10005236 "md/raid:%s: cannot start dirty degraded array.\n",
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08005237 mdname(mddev));
5238 goto abort;
5239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005240 }
5241
Linus Torvalds1da177e2005-04-16 15:20:36 -07005242 if (mddev->degraded == 0)
NeilBrown0c55e022010-05-03 14:09:02 +10005243 printk(KERN_INFO "md/raid:%s: raid level %d active with %d out of %d"
5244 " devices, algorithm %d\n", mdname(mddev), conf->level,
NeilBrowne183eae2009-03-31 15:20:22 +11005245 mddev->raid_disks-mddev->degraded, mddev->raid_disks,
5246 mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005247 else
NeilBrown0c55e022010-05-03 14:09:02 +10005248 printk(KERN_ALERT "md/raid:%s: raid level %d active with %d"
5249 " out of %d devices, algorithm %d\n",
5250 mdname(mddev), conf->level,
5251 mddev->raid_disks - mddev->degraded,
5252 mddev->raid_disks, mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005253
5254 print_raid5_conf(conf);
5255
NeilBrownfef9c612009-03-31 15:16:46 +11005256 if (conf->reshape_progress != MaxSector) {
NeilBrownfef9c612009-03-31 15:16:46 +11005257 conf->reshape_safe = conf->reshape_progress;
NeilBrownf6705572006-03-27 01:18:11 -08005258 atomic_set(&conf->reshape_stripes, 0);
5259 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
5260 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
5261 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
5262 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
5263 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
NeilBrown0da3c612009-09-23 18:09:45 +10005264 "reshape");
NeilBrownf6705572006-03-27 01:18:11 -08005265 }
5266
Linus Torvalds1da177e2005-04-16 15:20:36 -07005267
5268 /* Ok, everything is just fine now */
NeilBrowna64c8762010-04-14 17:15:37 +10005269 if (mddev->to_remove == &raid5_attrs_group)
5270 mddev->to_remove = NULL;
NeilBrown00bcb4a2010-06-01 19:37:23 +10005271 else if (mddev->kobj.sd &&
5272 sysfs_create_group(&mddev->kobj, &raid5_attrs_group))
NeilBrown5e55e2f2007-03-26 21:32:14 -08005273 printk(KERN_WARNING
NeilBrown4a5add42010-06-01 19:37:28 +10005274 "raid5: failed to create sysfs attributes for %s\n",
NeilBrown5e55e2f2007-03-26 21:32:14 -08005275 mdname(mddev));
NeilBrown4a5add42010-06-01 19:37:28 +10005276 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
5277
5278 if (mddev->queue) {
NeilBrown9f7c2222010-07-26 12:04:13 +10005279 int chunk_size;
NeilBrown4a5add42010-06-01 19:37:28 +10005280 /* read-ahead size must cover two whole stripes, which
5281 * is 2 * (datadisks) * chunksize where 'n' is the
5282 * number of raid devices
5283 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005284 int data_disks = conf->previous_raid_disks - conf->max_degraded;
5285 int stripe = data_disks *
5286 ((mddev->chunk_sectors << 9) / PAGE_SIZE);
5287 if (mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
5288 mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
NeilBrown4a5add42010-06-01 19:37:28 +10005289
5290 blk_queue_merge_bvec(mddev->queue, raid5_mergeable_bvec);
NeilBrown11d8a6e2010-07-26 11:57:07 +10005291
5292 mddev->queue->backing_dev_info.congested_data = mddev;
5293 mddev->queue->backing_dev_info.congested_fn = raid5_congested;
NeilBrown9f7c2222010-07-26 12:04:13 +10005294
5295 chunk_size = mddev->chunk_sectors << 9;
5296 blk_queue_io_min(mddev->queue, chunk_size);
5297 blk_queue_io_opt(mddev->queue, chunk_size *
5298 (conf->raid_disks - conf->max_degraded));
5299
NeilBrown05616be2012-05-21 09:27:00 +10005300 rdev_for_each(rdev, mddev) {
NeilBrown9f7c2222010-07-26 12:04:13 +10005301 disk_stack_limits(mddev->gendisk, rdev->bdev,
5302 rdev->data_offset << 9);
NeilBrown05616be2012-05-21 09:27:00 +10005303 disk_stack_limits(mddev->gendisk, rdev->bdev,
5304 rdev->new_data_offset << 9);
5305 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005306 }
5307
Linus Torvalds1da177e2005-04-16 15:20:36 -07005308 return 0;
5309abort:
NeilBrown01f96c02011-09-21 15:30:20 +10005310 md_unregister_thread(&mddev->thread);
NeilBrowne4f869d2011-10-07 14:22:49 +11005311 print_raid5_conf(conf);
5312 free_conf(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005313 mddev->private = NULL;
NeilBrown0c55e022010-05-03 14:09:02 +10005314 printk(KERN_ALERT "md/raid:%s: failed to run raid set.\n", mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005315 return -EIO;
5316}
5317
NeilBrownfd01b882011-10-11 16:47:53 +11005318static int stop(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005319{
NeilBrownd1688a62011-10-11 16:49:52 +11005320 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005321
NeilBrown01f96c02011-09-21 15:30:20 +10005322 md_unregister_thread(&mddev->thread);
NeilBrown11d8a6e2010-07-26 11:57:07 +10005323 if (mddev->queue)
5324 mddev->queue->backing_dev_info.congested_fn = NULL;
Dan Williams95fc17a2009-07-31 12:39:15 +10005325 free_conf(conf);
NeilBrowna64c8762010-04-14 17:15:37 +10005326 mddev->private = NULL;
5327 mddev->to_remove = &raid5_attrs_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005328 return 0;
5329}
5330
NeilBrownfd01b882011-10-11 16:47:53 +11005331static void status(struct seq_file *seq, struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005332{
NeilBrownd1688a62011-10-11 16:49:52 +11005333 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005334 int i;
5335
Andre Noll9d8f0362009-06-18 08:45:01 +10005336 seq_printf(seq, " level %d, %dk chunk, algorithm %d", mddev->level,
5337 mddev->chunk_sectors / 2, mddev->layout);
NeilBrown02c2de82006-10-03 01:15:47 -07005338 seq_printf (seq, " [%d/%d] [", conf->raid_disks, conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005339 for (i = 0; i < conf->raid_disks; i++)
5340 seq_printf (seq, "%s",
5341 conf->disks[i].rdev &&
NeilBrownb2d444d2005-11-08 21:39:31 -08005342 test_bit(In_sync, &conf->disks[i].rdev->flags) ? "U" : "_");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005343 seq_printf (seq, "]");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005344}
5345
NeilBrownd1688a62011-10-11 16:49:52 +11005346static void print_raid5_conf (struct r5conf *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005347{
5348 int i;
5349 struct disk_info *tmp;
5350
NeilBrown0c55e022010-05-03 14:09:02 +10005351 printk(KERN_DEBUG "RAID conf printout:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005352 if (!conf) {
5353 printk("(conf==NULL)\n");
5354 return;
5355 }
NeilBrown0c55e022010-05-03 14:09:02 +10005356 printk(KERN_DEBUG " --- level:%d rd:%d wd:%d\n", conf->level,
5357 conf->raid_disks,
5358 conf->raid_disks - conf->mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005359
5360 for (i = 0; i < conf->raid_disks; i++) {
5361 char b[BDEVNAME_SIZE];
5362 tmp = conf->disks + i;
5363 if (tmp->rdev)
NeilBrown0c55e022010-05-03 14:09:02 +10005364 printk(KERN_DEBUG " disk %d, o:%d, dev:%s\n",
5365 i, !test_bit(Faulty, &tmp->rdev->flags),
5366 bdevname(tmp->rdev->bdev, b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005367 }
5368}
5369
NeilBrownfd01b882011-10-11 16:47:53 +11005370static int raid5_spare_active(struct mddev *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005371{
5372 int i;
NeilBrownd1688a62011-10-11 16:49:52 +11005373 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005374 struct disk_info *tmp;
NeilBrown6b965622010-08-18 11:56:59 +10005375 int count = 0;
5376 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377
5378 for (i = 0; i < conf->raid_disks; i++) {
5379 tmp = conf->disks + i;
NeilBrowndd054fc2011-12-23 10:17:53 +11005380 if (tmp->replacement
5381 && tmp->replacement->recovery_offset == MaxSector
5382 && !test_bit(Faulty, &tmp->replacement->flags)
5383 && !test_and_set_bit(In_sync, &tmp->replacement->flags)) {
5384 /* Replacement has just become active. */
5385 if (!tmp->rdev
5386 || !test_and_clear_bit(In_sync, &tmp->rdev->flags))
5387 count++;
5388 if (tmp->rdev) {
5389 /* Replaced device not technically faulty,
5390 * but we need to be sure it gets removed
5391 * and never re-added.
5392 */
5393 set_bit(Faulty, &tmp->rdev->flags);
5394 sysfs_notify_dirent_safe(
5395 tmp->rdev->sysfs_state);
5396 }
5397 sysfs_notify_dirent_safe(tmp->replacement->sysfs_state);
5398 } else if (tmp->rdev
NeilBrown70fffd02010-06-16 17:01:25 +10005399 && tmp->rdev->recovery_offset == MaxSector
NeilBrownb2d444d2005-11-08 21:39:31 -08005400 && !test_bit(Faulty, &tmp->rdev->flags)
NeilBrownc04be0a2006-10-03 01:15:53 -07005401 && !test_and_set_bit(In_sync, &tmp->rdev->flags)) {
NeilBrown6b965622010-08-18 11:56:59 +10005402 count++;
Jonathan Brassow43c73ca2011-01-14 09:14:33 +11005403 sysfs_notify_dirent_safe(tmp->rdev->sysfs_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005404 }
5405 }
NeilBrown6b965622010-08-18 11:56:59 +10005406 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrown908f4fb2011-12-23 10:17:50 +11005407 mddev->degraded = calc_degraded(conf);
NeilBrown6b965622010-08-18 11:56:59 +10005408 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005409 print_raid5_conf(conf);
NeilBrown6b965622010-08-18 11:56:59 +10005410 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005411}
5412
NeilBrownb8321b62011-12-23 10:17:51 +11005413static int raid5_remove_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005414{
NeilBrownd1688a62011-10-11 16:49:52 +11005415 struct r5conf *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005416 int err = 0;
NeilBrownb8321b62011-12-23 10:17:51 +11005417 int number = rdev->raid_disk;
NeilBrown657e3e42011-12-23 10:17:52 +11005418 struct md_rdev **rdevp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005419 struct disk_info *p = conf->disks + number;
5420
5421 print_raid5_conf(conf);
NeilBrown657e3e42011-12-23 10:17:52 +11005422 if (rdev == p->rdev)
5423 rdevp = &p->rdev;
5424 else if (rdev == p->replacement)
5425 rdevp = &p->replacement;
5426 else
5427 return 0;
NeilBrownec32a2b2009-03-31 15:17:38 +11005428
NeilBrown657e3e42011-12-23 10:17:52 +11005429 if (number >= conf->raid_disks &&
5430 conf->reshape_progress == MaxSector)
5431 clear_bit(In_sync, &rdev->flags);
5432
5433 if (test_bit(In_sync, &rdev->flags) ||
5434 atomic_read(&rdev->nr_pending)) {
5435 err = -EBUSY;
5436 goto abort;
5437 }
5438 /* Only remove non-faulty devices if recovery
5439 * isn't possible.
5440 */
5441 if (!test_bit(Faulty, &rdev->flags) &&
5442 mddev->recovery_disabled != conf->recovery_disabled &&
5443 !has_failed(conf) &&
NeilBrowndd054fc2011-12-23 10:17:53 +11005444 (!p->replacement || p->replacement == rdev) &&
NeilBrown657e3e42011-12-23 10:17:52 +11005445 number < conf->raid_disks) {
5446 err = -EBUSY;
5447 goto abort;
5448 }
5449 *rdevp = NULL;
5450 synchronize_rcu();
5451 if (atomic_read(&rdev->nr_pending)) {
5452 /* lost the race, try later */
5453 err = -EBUSY;
5454 *rdevp = rdev;
NeilBrowndd054fc2011-12-23 10:17:53 +11005455 } else if (p->replacement) {
5456 /* We must have just cleared 'rdev' */
5457 p->rdev = p->replacement;
5458 clear_bit(Replacement, &p->replacement->flags);
5459 smp_mb(); /* Make sure other CPUs may see both as identical
5460 * but will never see neither - if they are careful
5461 */
5462 p->replacement = NULL;
5463 clear_bit(WantReplacement, &rdev->flags);
5464 } else
5465 /* We might have just removed the Replacement as faulty-
5466 * clear the bit just in case
5467 */
5468 clear_bit(WantReplacement, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005469abort:
5470
5471 print_raid5_conf(conf);
5472 return err;
5473}
5474
NeilBrownfd01b882011-10-11 16:47:53 +11005475static int raid5_add_disk(struct mddev *mddev, struct md_rdev *rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005476{
NeilBrownd1688a62011-10-11 16:49:52 +11005477 struct r5conf *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10005478 int err = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005479 int disk;
5480 struct disk_info *p;
Neil Brown6c2fce22008-06-28 08:31:31 +10005481 int first = 0;
5482 int last = conf->raid_disks - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005483
NeilBrown7f0da592011-07-28 11:39:22 +10005484 if (mddev->recovery_disabled == conf->recovery_disabled)
5485 return -EBUSY;
5486
NeilBrowndc10c642012-03-19 12:46:37 +11005487 if (rdev->saved_raid_disk < 0 && has_failed(conf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005488 /* no point adding a device */
Neil Brown199050e2008-06-28 08:31:33 +10005489 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005490
Neil Brown6c2fce22008-06-28 08:31:31 +10005491 if (rdev->raid_disk >= 0)
5492 first = last = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005493
5494 /*
NeilBrown16a53ec2006-06-26 00:27:38 -07005495 * find the disk ... but prefer rdev->saved_raid_disk
5496 * if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005497 */
NeilBrown16a53ec2006-06-26 00:27:38 -07005498 if (rdev->saved_raid_disk >= 0 &&
Neil Brown6c2fce22008-06-28 08:31:31 +10005499 rdev->saved_raid_disk >= first &&
NeilBrown16a53ec2006-06-26 00:27:38 -07005500 conf->disks[rdev->saved_raid_disk].rdev == NULL)
NeilBrown5cfb22a2012-07-03 11:46:53 +10005501 first = rdev->saved_raid_disk;
5502
5503 for (disk = first; disk <= last; disk++) {
NeilBrown7bfec5f2011-12-23 10:17:53 +11005504 p = conf->disks + disk;
5505 if (p->rdev == NULL) {
NeilBrownb2d444d2005-11-08 21:39:31 -08005506 clear_bit(In_sync, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005507 rdev->raid_disk = disk;
Neil Brown199050e2008-06-28 08:31:33 +10005508 err = 0;
NeilBrown72626682005-09-09 16:23:54 -07005509 if (rdev->saved_raid_disk != disk)
5510 conf->fullsync = 1;
Suzanne Woodd6065f72005-11-08 21:39:27 -08005511 rcu_assign_pointer(p->rdev, rdev);
NeilBrown5cfb22a2012-07-03 11:46:53 +10005512 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005513 }
NeilBrown5cfb22a2012-07-03 11:46:53 +10005514 }
5515 for (disk = first; disk <= last; disk++) {
5516 p = conf->disks + disk;
NeilBrown7bfec5f2011-12-23 10:17:53 +11005517 if (test_bit(WantReplacement, &p->rdev->flags) &&
5518 p->replacement == NULL) {
5519 clear_bit(In_sync, &rdev->flags);
5520 set_bit(Replacement, &rdev->flags);
5521 rdev->raid_disk = disk;
5522 err = 0;
5523 conf->fullsync = 1;
5524 rcu_assign_pointer(p->replacement, rdev);
5525 break;
5526 }
5527 }
NeilBrown5cfb22a2012-07-03 11:46:53 +10005528out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07005529 print_raid5_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10005530 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005531}
5532
NeilBrownfd01b882011-10-11 16:47:53 +11005533static int raid5_resize(struct mddev *mddev, sector_t sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005534{
5535 /* no resync is happening, and there is enough space
5536 * on all devices, so we can resize.
5537 * We need to make sure resync covers any new space.
5538 * If the array is shrinking we should possibly wait until
5539 * any io in the removed space completes, but it hardly seems
5540 * worth it.
5541 */
NeilBrowna4a61252012-05-22 13:55:27 +10005542 sector_t newsize;
Andre Noll9d8f0362009-06-18 08:45:01 +10005543 sectors &= ~((sector_t)mddev->chunk_sectors - 1);
NeilBrowna4a61252012-05-22 13:55:27 +10005544 newsize = raid5_size(mddev, sectors, mddev->raid_disks);
5545 if (mddev->external_size &&
5546 mddev->array_sectors > newsize)
Dan Williamsb522adc2009-03-31 15:00:31 +11005547 return -EINVAL;
NeilBrowna4a61252012-05-22 13:55:27 +10005548 if (mddev->bitmap) {
5549 int ret = bitmap_resize(mddev->bitmap, sectors, 0, 0);
5550 if (ret)
5551 return ret;
5552 }
5553 md_set_array_sectors(mddev, newsize);
Andre Nollf233ea52008-07-21 17:05:22 +10005554 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10005555 revalidate_disk(mddev->gendisk);
NeilBrownb0986362011-05-11 15:52:21 +10005556 if (sectors > mddev->dev_sectors &&
5557 mddev->recovery_cp > mddev->dev_sectors) {
Andre Noll58c0fed2009-03-31 14:33:13 +11005558 mddev->recovery_cp = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005559 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
5560 }
Andre Noll58c0fed2009-03-31 14:33:13 +11005561 mddev->dev_sectors = sectors;
NeilBrown4b5c7ae2005-07-27 11:43:28 -07005562 mddev->resync_max_sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005563 return 0;
5564}
5565
NeilBrownfd01b882011-10-11 16:47:53 +11005566static int check_stripe_cache(struct mddev *mddev)
NeilBrown01ee22b2009-06-18 08:47:20 +10005567{
5568 /* Can only proceed if there are plenty of stripe_heads.
5569 * We need a minimum of one full stripe,, and for sensible progress
5570 * it is best to have about 4 times that.
5571 * If we require 4 times, then the default 256 4K stripe_heads will
5572 * allow for chunk sizes up to 256K, which is probably OK.
5573 * If the chunk size is greater, user-space should request more
5574 * stripe_heads first.
5575 */
NeilBrownd1688a62011-10-11 16:49:52 +11005576 struct r5conf *conf = mddev->private;
NeilBrown01ee22b2009-06-18 08:47:20 +10005577 if (((mddev->chunk_sectors << 9) / STRIPE_SIZE) * 4
5578 > conf->max_nr_stripes ||
5579 ((mddev->new_chunk_sectors << 9) / STRIPE_SIZE) * 4
5580 > conf->max_nr_stripes) {
NeilBrown0c55e022010-05-03 14:09:02 +10005581 printk(KERN_WARNING "md/raid:%s: reshape: not enough stripes. Needed %lu\n",
5582 mdname(mddev),
NeilBrown01ee22b2009-06-18 08:47:20 +10005583 ((max(mddev->chunk_sectors, mddev->new_chunk_sectors) << 9)
5584 / STRIPE_SIZE)*4);
5585 return 0;
5586 }
5587 return 1;
5588}
5589
NeilBrownfd01b882011-10-11 16:47:53 +11005590static int check_reshape(struct mddev *mddev)
NeilBrown29269552006-03-27 01:18:10 -08005591{
NeilBrownd1688a62011-10-11 16:49:52 +11005592 struct r5conf *conf = mddev->private;
NeilBrown29269552006-03-27 01:18:10 -08005593
NeilBrown88ce4932009-03-31 15:24:23 +11005594 if (mddev->delta_disks == 0 &&
5595 mddev->new_layout == mddev->layout &&
Andre Noll664e7c42009-06-18 08:45:27 +10005596 mddev->new_chunk_sectors == mddev->chunk_sectors)
NeilBrown50ac1682009-06-18 08:47:55 +10005597 return 0; /* nothing to do */
NeilBrown674806d2010-06-16 17:17:53 +10005598 if (has_failed(conf))
NeilBrownec32a2b2009-03-31 15:17:38 +11005599 return -EINVAL;
5600 if (mddev->delta_disks < 0) {
5601 /* We might be able to shrink, but the devices must
5602 * be made bigger first.
5603 * For raid6, 4 is the minimum size.
5604 * Otherwise 2 is the minimum
5605 */
5606 int min = 2;
5607 if (mddev->level == 6)
5608 min = 4;
5609 if (mddev->raid_disks + mddev->delta_disks < min)
5610 return -EINVAL;
5611 }
NeilBrown29269552006-03-27 01:18:10 -08005612
NeilBrown01ee22b2009-06-18 08:47:20 +10005613 if (!check_stripe_cache(mddev))
NeilBrown29269552006-03-27 01:18:10 -08005614 return -ENOSPC;
NeilBrown29269552006-03-27 01:18:10 -08005615
NeilBrownec32a2b2009-03-31 15:17:38 +11005616 return resize_stripes(conf, conf->raid_disks + mddev->delta_disks);
NeilBrown63c70c42006-03-27 01:18:13 -08005617}
5618
NeilBrownfd01b882011-10-11 16:47:53 +11005619static int raid5_start_reshape(struct mddev *mddev)
NeilBrown63c70c42006-03-27 01:18:13 -08005620{
NeilBrownd1688a62011-10-11 16:49:52 +11005621 struct r5conf *conf = mddev->private;
NeilBrown3cb03002011-10-11 16:45:26 +11005622 struct md_rdev *rdev;
NeilBrown63c70c42006-03-27 01:18:13 -08005623 int spares = 0;
NeilBrownc04be0a2006-10-03 01:15:53 -07005624 unsigned long flags;
NeilBrown63c70c42006-03-27 01:18:13 -08005625
NeilBrownf4168852007-02-28 20:11:53 -08005626 if (test_bit(MD_RECOVERY_RUNNING, &mddev->recovery))
NeilBrown63c70c42006-03-27 01:18:13 -08005627 return -EBUSY;
5628
NeilBrown01ee22b2009-06-18 08:47:20 +10005629 if (!check_stripe_cache(mddev))
5630 return -ENOSPC;
5631
NeilBrown30b67642012-05-22 13:55:28 +10005632 if (has_failed(conf))
5633 return -EINVAL;
5634
NeilBrownc6563a82012-05-21 09:27:00 +10005635 rdev_for_each(rdev, mddev) {
NeilBrown469518a2011-01-31 11:57:43 +11005636 if (!test_bit(In_sync, &rdev->flags)
5637 && !test_bit(Faulty, &rdev->flags))
NeilBrown29269552006-03-27 01:18:10 -08005638 spares++;
NeilBrownc6563a82012-05-21 09:27:00 +10005639 }
NeilBrown63c70c42006-03-27 01:18:13 -08005640
NeilBrownf4168852007-02-28 20:11:53 -08005641 if (spares - mddev->degraded < mddev->delta_disks - conf->max_degraded)
NeilBrown29269552006-03-27 01:18:10 -08005642 /* Not enough devices even to make a degraded array
5643 * of that size
5644 */
5645 return -EINVAL;
5646
NeilBrownec32a2b2009-03-31 15:17:38 +11005647 /* Refuse to reduce size of the array. Any reductions in
5648 * array size must be through explicit setting of array_size
5649 * attribute.
5650 */
5651 if (raid5_size(mddev, 0, conf->raid_disks + mddev->delta_disks)
5652 < mddev->array_sectors) {
NeilBrown0c55e022010-05-03 14:09:02 +10005653 printk(KERN_ERR "md/raid:%s: array size must be reduced "
NeilBrownec32a2b2009-03-31 15:17:38 +11005654 "before number of disks\n", mdname(mddev));
5655 return -EINVAL;
5656 }
5657
NeilBrownf6705572006-03-27 01:18:11 -08005658 atomic_set(&conf->reshape_stripes, 0);
NeilBrown29269552006-03-27 01:18:10 -08005659 spin_lock_irq(&conf->device_lock);
5660 conf->previous_raid_disks = conf->raid_disks;
NeilBrown63c70c42006-03-27 01:18:13 -08005661 conf->raid_disks += mddev->delta_disks;
Andre Noll09c9e5f2009-06-18 08:45:55 +10005662 conf->prev_chunk_sectors = conf->chunk_sectors;
5663 conf->chunk_sectors = mddev->new_chunk_sectors;
NeilBrown88ce4932009-03-31 15:24:23 +11005664 conf->prev_algo = conf->algorithm;
5665 conf->algorithm = mddev->new_layout;
NeilBrown05616be2012-05-21 09:27:00 +10005666 conf->generation++;
5667 /* Code that selects data_offset needs to see the generation update
5668 * if reshape_progress has been set - so a memory barrier needed.
5669 */
5670 smp_mb();
NeilBrown2c810cd2012-05-21 09:27:00 +10005671 if (mddev->reshape_backwards)
NeilBrownfef9c612009-03-31 15:16:46 +11005672 conf->reshape_progress = raid5_size(mddev, 0, 0);
5673 else
5674 conf->reshape_progress = 0;
5675 conf->reshape_safe = conf->reshape_progress;
NeilBrown29269552006-03-27 01:18:10 -08005676 spin_unlock_irq(&conf->device_lock);
5677
5678 /* Add some new drives, as many as will fit.
5679 * We know there are enough to make the newly sized array work.
NeilBrown3424bf62010-06-17 17:48:26 +10005680 * Don't add devices if we are reducing the number of
5681 * devices in the array. This is because it is not possible
5682 * to correctly record the "partially reconstructed" state of
5683 * such devices during the reshape and confusion could result.
NeilBrown29269552006-03-27 01:18:10 -08005684 */
NeilBrown87a8dec2011-01-31 11:57:43 +11005685 if (mddev->delta_disks >= 0) {
NeilBrowndafb20f2012-03-19 12:46:39 +11005686 rdev_for_each(rdev, mddev)
NeilBrown87a8dec2011-01-31 11:57:43 +11005687 if (rdev->raid_disk < 0 &&
5688 !test_bit(Faulty, &rdev->flags)) {
5689 if (raid5_add_disk(mddev, rdev) == 0) {
NeilBrown87a8dec2011-01-31 11:57:43 +11005690 if (rdev->raid_disk
NeilBrown9d4c7d82012-03-13 11:21:21 +11005691 >= conf->previous_raid_disks)
NeilBrown87a8dec2011-01-31 11:57:43 +11005692 set_bit(In_sync, &rdev->flags);
NeilBrown9d4c7d82012-03-13 11:21:21 +11005693 else
NeilBrown87a8dec2011-01-31 11:57:43 +11005694 rdev->recovery_offset = 0;
Namhyung Kim36fad852011-07-27 11:00:36 +10005695
5696 if (sysfs_link_rdev(mddev, rdev))
NeilBrown87a8dec2011-01-31 11:57:43 +11005697 /* Failure here is OK */;
NeilBrown50da0842011-01-31 11:57:43 +11005698 }
NeilBrown87a8dec2011-01-31 11:57:43 +11005699 } else if (rdev->raid_disk >= conf->previous_raid_disks
5700 && !test_bit(Faulty, &rdev->flags)) {
5701 /* This is a spare that was manually added */
5702 set_bit(In_sync, &rdev->flags);
NeilBrown87a8dec2011-01-31 11:57:43 +11005703 }
NeilBrown29269552006-03-27 01:18:10 -08005704
NeilBrown87a8dec2011-01-31 11:57:43 +11005705 /* When a reshape changes the number of devices,
5706 * ->degraded is measured against the larger of the
5707 * pre and post number of devices.
5708 */
NeilBrownec32a2b2009-03-31 15:17:38 +11005709 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrown908f4fb2011-12-23 10:17:50 +11005710 mddev->degraded = calc_degraded(conf);
NeilBrownec32a2b2009-03-31 15:17:38 +11005711 spin_unlock_irqrestore(&conf->device_lock, flags);
5712 }
NeilBrown63c70c42006-03-27 01:18:13 -08005713 mddev->raid_disks = conf->raid_disks;
NeilBrowne5164022009-08-03 10:59:57 +10005714 mddev->reshape_position = conf->reshape_progress;
NeilBrown850b2b422006-10-03 01:15:46 -07005715 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrownf6705572006-03-27 01:18:11 -08005716
NeilBrown29269552006-03-27 01:18:10 -08005717 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
5718 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
5719 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
5720 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
5721 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
NeilBrown0da3c612009-09-23 18:09:45 +10005722 "reshape");
NeilBrown29269552006-03-27 01:18:10 -08005723 if (!mddev->sync_thread) {
5724 mddev->recovery = 0;
5725 spin_lock_irq(&conf->device_lock);
5726 mddev->raid_disks = conf->raid_disks = conf->previous_raid_disks;
NeilBrown05616be2012-05-21 09:27:00 +10005727 rdev_for_each(rdev, mddev)
5728 rdev->new_data_offset = rdev->data_offset;
5729 smp_wmb();
NeilBrownfef9c612009-03-31 15:16:46 +11005730 conf->reshape_progress = MaxSector;
NeilBrown1e3fa9b2012-03-13 11:21:18 +11005731 mddev->reshape_position = MaxSector;
NeilBrown29269552006-03-27 01:18:10 -08005732 spin_unlock_irq(&conf->device_lock);
5733 return -EAGAIN;
5734 }
NeilBrownc8f517c2009-03-31 15:28:40 +11005735 conf->reshape_checkpoint = jiffies;
NeilBrown29269552006-03-27 01:18:10 -08005736 md_wakeup_thread(mddev->sync_thread);
5737 md_new_event(mddev);
5738 return 0;
5739}
NeilBrown29269552006-03-27 01:18:10 -08005740
NeilBrownec32a2b2009-03-31 15:17:38 +11005741/* This is called from the reshape thread and should make any
5742 * changes needed in 'conf'
5743 */
NeilBrownd1688a62011-10-11 16:49:52 +11005744static void end_reshape(struct r5conf *conf)
NeilBrown29269552006-03-27 01:18:10 -08005745{
NeilBrown29269552006-03-27 01:18:10 -08005746
NeilBrownf6705572006-03-27 01:18:11 -08005747 if (!test_bit(MD_RECOVERY_INTR, &conf->mddev->recovery)) {
NeilBrown05616be2012-05-21 09:27:00 +10005748 struct md_rdev *rdev;
Dan Williams80c3a6c2009-03-17 18:10:40 -07005749
NeilBrownf6705572006-03-27 01:18:11 -08005750 spin_lock_irq(&conf->device_lock);
NeilBrowncea9c222009-03-31 15:15:05 +11005751 conf->previous_raid_disks = conf->raid_disks;
NeilBrown05616be2012-05-21 09:27:00 +10005752 rdev_for_each(rdev, conf->mddev)
5753 rdev->data_offset = rdev->new_data_offset;
5754 smp_wmb();
NeilBrownfef9c612009-03-31 15:16:46 +11005755 conf->reshape_progress = MaxSector;
NeilBrownf6705572006-03-27 01:18:11 -08005756 spin_unlock_irq(&conf->device_lock);
NeilBrownb0f9ec02009-03-31 15:27:18 +11005757 wake_up(&conf->wait_for_overlap);
NeilBrown16a53ec2006-06-26 00:27:38 -07005758
5759 /* read-ahead size must cover two whole stripes, which is
5760 * 2 * (datadisks) * chunksize where 'n' is the number of raid devices
5761 */
NeilBrown4a5add42010-06-01 19:37:28 +10005762 if (conf->mddev->queue) {
NeilBrowncea9c222009-03-31 15:15:05 +11005763 int data_disks = conf->raid_disks - conf->max_degraded;
Andre Noll09c9e5f2009-06-18 08:45:55 +10005764 int stripe = data_disks * ((conf->chunk_sectors << 9)
NeilBrowncea9c222009-03-31 15:15:05 +11005765 / PAGE_SIZE);
NeilBrown16a53ec2006-06-26 00:27:38 -07005766 if (conf->mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
5767 conf->mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
5768 }
NeilBrown29269552006-03-27 01:18:10 -08005769 }
NeilBrown29269552006-03-27 01:18:10 -08005770}
5771
NeilBrownec32a2b2009-03-31 15:17:38 +11005772/* This is called from the raid5d thread with mddev_lock held.
5773 * It makes config changes to the device.
5774 */
NeilBrownfd01b882011-10-11 16:47:53 +11005775static void raid5_finish_reshape(struct mddev *mddev)
NeilBrowncea9c222009-03-31 15:15:05 +11005776{
NeilBrownd1688a62011-10-11 16:49:52 +11005777 struct r5conf *conf = mddev->private;
NeilBrowncea9c222009-03-31 15:15:05 +11005778
5779 if (!test_bit(MD_RECOVERY_INTR, &mddev->recovery)) {
5780
NeilBrownec32a2b2009-03-31 15:17:38 +11005781 if (mddev->delta_disks > 0) {
5782 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
5783 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10005784 revalidate_disk(mddev->gendisk);
NeilBrownec32a2b2009-03-31 15:17:38 +11005785 } else {
5786 int d;
NeilBrown908f4fb2011-12-23 10:17:50 +11005787 spin_lock_irq(&conf->device_lock);
5788 mddev->degraded = calc_degraded(conf);
5789 spin_unlock_irq(&conf->device_lock);
NeilBrownec32a2b2009-03-31 15:17:38 +11005790 for (d = conf->raid_disks ;
5791 d < conf->raid_disks - mddev->delta_disks;
NeilBrown1a67dde2009-08-13 10:41:49 +10005792 d++) {
NeilBrown3cb03002011-10-11 16:45:26 +11005793 struct md_rdev *rdev = conf->disks[d].rdev;
NeilBrownda7613b2012-05-22 13:55:33 +10005794 if (rdev)
5795 clear_bit(In_sync, &rdev->flags);
5796 rdev = conf->disks[d].replacement;
5797 if (rdev)
5798 clear_bit(In_sync, &rdev->flags);
NeilBrown1a67dde2009-08-13 10:41:49 +10005799 }
NeilBrowncea9c222009-03-31 15:15:05 +11005800 }
NeilBrown88ce4932009-03-31 15:24:23 +11005801 mddev->layout = conf->algorithm;
Andre Noll09c9e5f2009-06-18 08:45:55 +10005802 mddev->chunk_sectors = conf->chunk_sectors;
NeilBrownec32a2b2009-03-31 15:17:38 +11005803 mddev->reshape_position = MaxSector;
5804 mddev->delta_disks = 0;
NeilBrown2c810cd2012-05-21 09:27:00 +10005805 mddev->reshape_backwards = 0;
NeilBrowncea9c222009-03-31 15:15:05 +11005806 }
5807}
5808
NeilBrownfd01b882011-10-11 16:47:53 +11005809static void raid5_quiesce(struct mddev *mddev, int state)
NeilBrown72626682005-09-09 16:23:54 -07005810{
NeilBrownd1688a62011-10-11 16:49:52 +11005811 struct r5conf *conf = mddev->private;
NeilBrown72626682005-09-09 16:23:54 -07005812
5813 switch(state) {
NeilBrowne464eaf2006-03-27 01:18:14 -08005814 case 2: /* resume for a suspend */
5815 wake_up(&conf->wait_for_overlap);
5816 break;
5817
NeilBrown72626682005-09-09 16:23:54 -07005818 case 1: /* stop all writes */
5819 spin_lock_irq(&conf->device_lock);
NeilBrown64bd6602009-08-03 10:59:58 +10005820 /* '2' tells resync/reshape to pause so that all
5821 * active stripes can drain
5822 */
5823 conf->quiesce = 2;
NeilBrown72626682005-09-09 16:23:54 -07005824 wait_event_lock_irq(conf->wait_for_stripe,
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005825 atomic_read(&conf->active_stripes) == 0 &&
5826 atomic_read(&conf->active_aligned_reads) == 0,
NeilBrown72626682005-09-09 16:23:54 -07005827 conf->device_lock, /* nothing */);
NeilBrown64bd6602009-08-03 10:59:58 +10005828 conf->quiesce = 1;
NeilBrown72626682005-09-09 16:23:54 -07005829 spin_unlock_irq(&conf->device_lock);
NeilBrown64bd6602009-08-03 10:59:58 +10005830 /* allow reshape to continue */
5831 wake_up(&conf->wait_for_overlap);
NeilBrown72626682005-09-09 16:23:54 -07005832 break;
5833
5834 case 0: /* re-enable writes */
5835 spin_lock_irq(&conf->device_lock);
5836 conf->quiesce = 0;
5837 wake_up(&conf->wait_for_stripe);
NeilBrowne464eaf2006-03-27 01:18:14 -08005838 wake_up(&conf->wait_for_overlap);
NeilBrown72626682005-09-09 16:23:54 -07005839 spin_unlock_irq(&conf->device_lock);
5840 break;
5841 }
NeilBrown72626682005-09-09 16:23:54 -07005842}
NeilBrownb15c2e52006-01-06 00:20:16 -08005843
NeilBrownd562b0c2009-03-31 14:39:39 +11005844
NeilBrownfd01b882011-10-11 16:47:53 +11005845static void *raid45_takeover_raid0(struct mddev *mddev, int level)
Trela Maciej54071b32010-03-08 16:02:42 +11005846{
NeilBrowne373ab12011-10-11 16:48:59 +11005847 struct r0conf *raid0_conf = mddev->private;
Randy Dunlapd76c8422011-04-21 09:07:26 -07005848 sector_t sectors;
Trela Maciej54071b32010-03-08 16:02:42 +11005849
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005850 /* for raid0 takeover only one zone is supported */
NeilBrowne373ab12011-10-11 16:48:59 +11005851 if (raid0_conf->nr_strip_zones > 1) {
NeilBrown0c55e022010-05-03 14:09:02 +10005852 printk(KERN_ERR "md/raid:%s: cannot takeover raid0 with more than one zone.\n",
5853 mdname(mddev));
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005854 return ERR_PTR(-EINVAL);
5855 }
5856
NeilBrowne373ab12011-10-11 16:48:59 +11005857 sectors = raid0_conf->strip_zone[0].zone_end;
5858 sector_div(sectors, raid0_conf->strip_zone[0].nb_dev);
NeilBrown3b71bd92011-04-20 15:38:18 +10005859 mddev->dev_sectors = sectors;
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005860 mddev->new_level = level;
Trela Maciej54071b32010-03-08 16:02:42 +11005861 mddev->new_layout = ALGORITHM_PARITY_N;
5862 mddev->new_chunk_sectors = mddev->chunk_sectors;
5863 mddev->raid_disks += 1;
5864 mddev->delta_disks = 1;
5865 /* make sure it will be not marked as dirty */
5866 mddev->recovery_cp = MaxSector;
5867
5868 return setup_conf(mddev);
5869}
5870
5871
NeilBrownfd01b882011-10-11 16:47:53 +11005872static void *raid5_takeover_raid1(struct mddev *mddev)
NeilBrownd562b0c2009-03-31 14:39:39 +11005873{
5874 int chunksect;
5875
5876 if (mddev->raid_disks != 2 ||
5877 mddev->degraded > 1)
5878 return ERR_PTR(-EINVAL);
5879
5880 /* Should check if there are write-behind devices? */
5881
5882 chunksect = 64*2; /* 64K by default */
5883
5884 /* The array must be an exact multiple of chunksize */
5885 while (chunksect && (mddev->array_sectors & (chunksect-1)))
5886 chunksect >>= 1;
5887
5888 if ((chunksect<<9) < STRIPE_SIZE)
5889 /* array size does not allow a suitable chunk size */
5890 return ERR_PTR(-EINVAL);
5891
5892 mddev->new_level = 5;
5893 mddev->new_layout = ALGORITHM_LEFT_SYMMETRIC;
Andre Noll664e7c42009-06-18 08:45:27 +10005894 mddev->new_chunk_sectors = chunksect;
NeilBrownd562b0c2009-03-31 14:39:39 +11005895
5896 return setup_conf(mddev);
5897}
5898
NeilBrownfd01b882011-10-11 16:47:53 +11005899static void *raid5_takeover_raid6(struct mddev *mddev)
NeilBrownfc9739c2009-03-31 14:57:20 +11005900{
5901 int new_layout;
5902
5903 switch (mddev->layout) {
5904 case ALGORITHM_LEFT_ASYMMETRIC_6:
5905 new_layout = ALGORITHM_LEFT_ASYMMETRIC;
5906 break;
5907 case ALGORITHM_RIGHT_ASYMMETRIC_6:
5908 new_layout = ALGORITHM_RIGHT_ASYMMETRIC;
5909 break;
5910 case ALGORITHM_LEFT_SYMMETRIC_6:
5911 new_layout = ALGORITHM_LEFT_SYMMETRIC;
5912 break;
5913 case ALGORITHM_RIGHT_SYMMETRIC_6:
5914 new_layout = ALGORITHM_RIGHT_SYMMETRIC;
5915 break;
5916 case ALGORITHM_PARITY_0_6:
5917 new_layout = ALGORITHM_PARITY_0;
5918 break;
5919 case ALGORITHM_PARITY_N:
5920 new_layout = ALGORITHM_PARITY_N;
5921 break;
5922 default:
5923 return ERR_PTR(-EINVAL);
5924 }
5925 mddev->new_level = 5;
5926 mddev->new_layout = new_layout;
5927 mddev->delta_disks = -1;
5928 mddev->raid_disks -= 1;
5929 return setup_conf(mddev);
5930}
5931
NeilBrownd562b0c2009-03-31 14:39:39 +11005932
NeilBrownfd01b882011-10-11 16:47:53 +11005933static int raid5_check_reshape(struct mddev *mddev)
NeilBrownb3546032009-03-31 14:56:41 +11005934{
NeilBrown88ce4932009-03-31 15:24:23 +11005935 /* For a 2-drive array, the layout and chunk size can be changed
5936 * immediately as not restriping is needed.
5937 * For larger arrays we record the new value - after validation
5938 * to be used by a reshape pass.
NeilBrownb3546032009-03-31 14:56:41 +11005939 */
NeilBrownd1688a62011-10-11 16:49:52 +11005940 struct r5conf *conf = mddev->private;
NeilBrown597a7112009-06-18 08:47:42 +10005941 int new_chunk = mddev->new_chunk_sectors;
NeilBrownb3546032009-03-31 14:56:41 +11005942
NeilBrown597a7112009-06-18 08:47:42 +10005943 if (mddev->new_layout >= 0 && !algorithm_valid_raid5(mddev->new_layout))
NeilBrownb3546032009-03-31 14:56:41 +11005944 return -EINVAL;
5945 if (new_chunk > 0) {
Andre Noll0ba459d2009-06-18 08:46:10 +10005946 if (!is_power_of_2(new_chunk))
NeilBrownb3546032009-03-31 14:56:41 +11005947 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10005948 if (new_chunk < (PAGE_SIZE>>9))
NeilBrownb3546032009-03-31 14:56:41 +11005949 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10005950 if (mddev->array_sectors & (new_chunk-1))
NeilBrownb3546032009-03-31 14:56:41 +11005951 /* not factor of array size */
5952 return -EINVAL;
5953 }
5954
5955 /* They look valid */
5956
NeilBrown88ce4932009-03-31 15:24:23 +11005957 if (mddev->raid_disks == 2) {
NeilBrown597a7112009-06-18 08:47:42 +10005958 /* can make the change immediately */
5959 if (mddev->new_layout >= 0) {
5960 conf->algorithm = mddev->new_layout;
5961 mddev->layout = mddev->new_layout;
NeilBrown88ce4932009-03-31 15:24:23 +11005962 }
5963 if (new_chunk > 0) {
NeilBrown597a7112009-06-18 08:47:42 +10005964 conf->chunk_sectors = new_chunk ;
5965 mddev->chunk_sectors = new_chunk;
NeilBrown88ce4932009-03-31 15:24:23 +11005966 }
5967 set_bit(MD_CHANGE_DEVS, &mddev->flags);
5968 md_wakeup_thread(mddev->thread);
NeilBrownb3546032009-03-31 14:56:41 +11005969 }
NeilBrown50ac1682009-06-18 08:47:55 +10005970 return check_reshape(mddev);
NeilBrown88ce4932009-03-31 15:24:23 +11005971}
5972
NeilBrownfd01b882011-10-11 16:47:53 +11005973static int raid6_check_reshape(struct mddev *mddev)
NeilBrown88ce4932009-03-31 15:24:23 +11005974{
NeilBrown597a7112009-06-18 08:47:42 +10005975 int new_chunk = mddev->new_chunk_sectors;
NeilBrown50ac1682009-06-18 08:47:55 +10005976
NeilBrown597a7112009-06-18 08:47:42 +10005977 if (mddev->new_layout >= 0 && !algorithm_valid_raid6(mddev->new_layout))
NeilBrown88ce4932009-03-31 15:24:23 +11005978 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11005979 if (new_chunk > 0) {
Andre Noll0ba459d2009-06-18 08:46:10 +10005980 if (!is_power_of_2(new_chunk))
NeilBrown88ce4932009-03-31 15:24:23 +11005981 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10005982 if (new_chunk < (PAGE_SIZE >> 9))
NeilBrown88ce4932009-03-31 15:24:23 +11005983 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10005984 if (mddev->array_sectors & (new_chunk-1))
NeilBrown88ce4932009-03-31 15:24:23 +11005985 /* not factor of array size */
5986 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11005987 }
NeilBrown88ce4932009-03-31 15:24:23 +11005988
5989 /* They look valid */
NeilBrown50ac1682009-06-18 08:47:55 +10005990 return check_reshape(mddev);
NeilBrownb3546032009-03-31 14:56:41 +11005991}
5992
NeilBrownfd01b882011-10-11 16:47:53 +11005993static void *raid5_takeover(struct mddev *mddev)
NeilBrownd562b0c2009-03-31 14:39:39 +11005994{
5995 /* raid5 can take over:
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005996 * raid0 - if there is only one strip zone - make it a raid4 layout
NeilBrownd562b0c2009-03-31 14:39:39 +11005997 * raid1 - if there are two drives. We need to know the chunk size
5998 * raid4 - trivial - just use a raid4 layout.
5999 * raid6 - Providing it is a *_6 layout
NeilBrownd562b0c2009-03-31 14:39:39 +11006000 */
Dan Williamsf1b29bc2010-05-01 18:09:05 -07006001 if (mddev->level == 0)
6002 return raid45_takeover_raid0(mddev, 5);
NeilBrownd562b0c2009-03-31 14:39:39 +11006003 if (mddev->level == 1)
6004 return raid5_takeover_raid1(mddev);
NeilBrowne9d47582009-03-31 14:57:09 +11006005 if (mddev->level == 4) {
6006 mddev->new_layout = ALGORITHM_PARITY_N;
6007 mddev->new_level = 5;
6008 return setup_conf(mddev);
6009 }
NeilBrownfc9739c2009-03-31 14:57:20 +11006010 if (mddev->level == 6)
6011 return raid5_takeover_raid6(mddev);
NeilBrownd562b0c2009-03-31 14:39:39 +11006012
6013 return ERR_PTR(-EINVAL);
6014}
6015
NeilBrownfd01b882011-10-11 16:47:53 +11006016static void *raid4_takeover(struct mddev *mddev)
NeilBrowna78d38a2010-03-22 16:53:49 +11006017{
Dan Williamsf1b29bc2010-05-01 18:09:05 -07006018 /* raid4 can take over:
6019 * raid0 - if there is only one strip zone
6020 * raid5 - if layout is right
NeilBrowna78d38a2010-03-22 16:53:49 +11006021 */
Dan Williamsf1b29bc2010-05-01 18:09:05 -07006022 if (mddev->level == 0)
6023 return raid45_takeover_raid0(mddev, 4);
NeilBrowna78d38a2010-03-22 16:53:49 +11006024 if (mddev->level == 5 &&
6025 mddev->layout == ALGORITHM_PARITY_N) {
6026 mddev->new_layout = 0;
6027 mddev->new_level = 4;
6028 return setup_conf(mddev);
6029 }
6030 return ERR_PTR(-EINVAL);
6031}
NeilBrownd562b0c2009-03-31 14:39:39 +11006032
NeilBrown84fc4b52011-10-11 16:49:58 +11006033static struct md_personality raid5_personality;
NeilBrown245f46c2009-03-31 14:39:39 +11006034
NeilBrownfd01b882011-10-11 16:47:53 +11006035static void *raid6_takeover(struct mddev *mddev)
NeilBrown245f46c2009-03-31 14:39:39 +11006036{
6037 /* Currently can only take over a raid5. We map the
6038 * personality to an equivalent raid6 personality
6039 * with the Q block at the end.
6040 */
6041 int new_layout;
6042
6043 if (mddev->pers != &raid5_personality)
6044 return ERR_PTR(-EINVAL);
6045 if (mddev->degraded > 1)
6046 return ERR_PTR(-EINVAL);
6047 if (mddev->raid_disks > 253)
6048 return ERR_PTR(-EINVAL);
6049 if (mddev->raid_disks < 3)
6050 return ERR_PTR(-EINVAL);
6051
6052 switch (mddev->layout) {
6053 case ALGORITHM_LEFT_ASYMMETRIC:
6054 new_layout = ALGORITHM_LEFT_ASYMMETRIC_6;
6055 break;
6056 case ALGORITHM_RIGHT_ASYMMETRIC:
6057 new_layout = ALGORITHM_RIGHT_ASYMMETRIC_6;
6058 break;
6059 case ALGORITHM_LEFT_SYMMETRIC:
6060 new_layout = ALGORITHM_LEFT_SYMMETRIC_6;
6061 break;
6062 case ALGORITHM_RIGHT_SYMMETRIC:
6063 new_layout = ALGORITHM_RIGHT_SYMMETRIC_6;
6064 break;
6065 case ALGORITHM_PARITY_0:
6066 new_layout = ALGORITHM_PARITY_0_6;
6067 break;
6068 case ALGORITHM_PARITY_N:
6069 new_layout = ALGORITHM_PARITY_N;
6070 break;
6071 default:
6072 return ERR_PTR(-EINVAL);
6073 }
6074 mddev->new_level = 6;
6075 mddev->new_layout = new_layout;
6076 mddev->delta_disks = 1;
6077 mddev->raid_disks += 1;
6078 return setup_conf(mddev);
6079}
6080
6081
NeilBrown84fc4b52011-10-11 16:49:58 +11006082static struct md_personality raid6_personality =
NeilBrown16a53ec2006-06-26 00:27:38 -07006083{
6084 .name = "raid6",
6085 .level = 6,
6086 .owner = THIS_MODULE,
6087 .make_request = make_request,
6088 .run = run,
6089 .stop = stop,
6090 .status = status,
6091 .error_handler = error,
6092 .hot_add_disk = raid5_add_disk,
6093 .hot_remove_disk= raid5_remove_disk,
6094 .spare_active = raid5_spare_active,
6095 .sync_request = sync_request,
6096 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07006097 .size = raid5_size,
NeilBrown50ac1682009-06-18 08:47:55 +10006098 .check_reshape = raid6_check_reshape,
NeilBrownf4168852007-02-28 20:11:53 -08006099 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11006100 .finish_reshape = raid5_finish_reshape,
NeilBrown16a53ec2006-06-26 00:27:38 -07006101 .quiesce = raid5_quiesce,
NeilBrown245f46c2009-03-31 14:39:39 +11006102 .takeover = raid6_takeover,
NeilBrown16a53ec2006-06-26 00:27:38 -07006103};
NeilBrown84fc4b52011-10-11 16:49:58 +11006104static struct md_personality raid5_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07006105{
6106 .name = "raid5",
NeilBrown2604b702006-01-06 00:20:36 -08006107 .level = 5,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006108 .owner = THIS_MODULE,
6109 .make_request = make_request,
6110 .run = run,
6111 .stop = stop,
6112 .status = status,
6113 .error_handler = error,
6114 .hot_add_disk = raid5_add_disk,
6115 .hot_remove_disk= raid5_remove_disk,
6116 .spare_active = raid5_spare_active,
6117 .sync_request = sync_request,
6118 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07006119 .size = raid5_size,
NeilBrown63c70c42006-03-27 01:18:13 -08006120 .check_reshape = raid5_check_reshape,
6121 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11006122 .finish_reshape = raid5_finish_reshape,
NeilBrown72626682005-09-09 16:23:54 -07006123 .quiesce = raid5_quiesce,
NeilBrownd562b0c2009-03-31 14:39:39 +11006124 .takeover = raid5_takeover,
Linus Torvalds1da177e2005-04-16 15:20:36 -07006125};
6126
NeilBrown84fc4b52011-10-11 16:49:58 +11006127static struct md_personality raid4_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07006128{
NeilBrown2604b702006-01-06 00:20:36 -08006129 .name = "raid4",
6130 .level = 4,
6131 .owner = THIS_MODULE,
6132 .make_request = make_request,
6133 .run = run,
6134 .stop = stop,
6135 .status = status,
6136 .error_handler = error,
6137 .hot_add_disk = raid5_add_disk,
6138 .hot_remove_disk= raid5_remove_disk,
6139 .spare_active = raid5_spare_active,
6140 .sync_request = sync_request,
6141 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07006142 .size = raid5_size,
NeilBrown3d378902007-03-26 21:32:13 -08006143 .check_reshape = raid5_check_reshape,
6144 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11006145 .finish_reshape = raid5_finish_reshape,
NeilBrown2604b702006-01-06 00:20:36 -08006146 .quiesce = raid5_quiesce,
NeilBrowna78d38a2010-03-22 16:53:49 +11006147 .takeover = raid4_takeover,
NeilBrown2604b702006-01-06 00:20:36 -08006148};
6149
6150static int __init raid5_init(void)
6151{
NeilBrown16a53ec2006-06-26 00:27:38 -07006152 register_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08006153 register_md_personality(&raid5_personality);
6154 register_md_personality(&raid4_personality);
6155 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006156}
6157
NeilBrown2604b702006-01-06 00:20:36 -08006158static void raid5_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006159{
NeilBrown16a53ec2006-06-26 00:27:38 -07006160 unregister_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08006161 unregister_md_personality(&raid5_personality);
6162 unregister_md_personality(&raid4_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006163}
6164
6165module_init(raid5_init);
6166module_exit(raid5_exit);
6167MODULE_LICENSE("GPL");
NeilBrown0efb9e62009-12-14 12:49:58 +11006168MODULE_DESCRIPTION("RAID4/5/6 (striping with parity) personality for MD");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006169MODULE_ALIAS("md-personality-4"); /* RAID5 */
NeilBrownd9d166c2006-01-06 00:20:51 -08006170MODULE_ALIAS("md-raid5");
6171MODULE_ALIAS("md-raid4");
NeilBrown2604b702006-01-06 00:20:36 -08006172MODULE_ALIAS("md-level-5");
6173MODULE_ALIAS("md-level-4");
NeilBrown16a53ec2006-06-26 00:27:38 -07006174MODULE_ALIAS("md-personality-8"); /* RAID6 */
6175MODULE_ALIAS("md-raid6");
6176MODULE_ALIAS("md-level-6");
6177
6178/* This used to be two separate modules, they were: */
6179MODULE_ALIAS("raid5");
6180MODULE_ALIAS("raid6");