blob: ce6960b1c682290157c85e871e00d90427515311 [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.
30 * conf->bm_write is the number of the last batch successfully written.
31 * conf->bm_flush is the number of the last batch that was closed to
32 * new additions.
33 * When we discover that we will need to write to any block in a stripe
34 * (in add_stripe_bio) we update the in-memory bitmap and record in sh->bm_seq
35 * the number of the batch it will be in. This is bm_flush+1.
36 * When we are ready to do a write, if that batch hasn't been written yet,
37 * we plug the array and queue the stripe for later.
38 * When an unplug happens, we increment bm_flush, thus closing the current
39 * batch.
40 * When we notice that bm_flush > bm_write, we write out all pending updates
41 * to the bitmap, and advance bm_write to where bm_flush was.
42 * This may occasionally write a bit out twice, but is sure never to
43 * miss any bits.
44 */
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>
Dan Williams07a3b412009-08-29 19:13:13 -070050#include <linux/async.h>
NeilBrownbff61972009-03-31 14:33:13 +110051#include <linux/seq_file.h>
Dan Williams36d1c642009-07-14 11:48:22 -070052#include <linux/cpu.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090053#include <linux/slab.h>
NeilBrown43b2e5d2009-03-31 14:33:13 +110054#include "md.h"
NeilBrownbff61972009-03-31 14:33:13 +110055#include "raid5.h"
Trela Maciej54071b32010-03-08 16:02:42 +110056#include "raid0.h"
Christoph Hellwigef740c32009-03-31 14:27:03 +110057#include "bitmap.h"
NeilBrown72626682005-09-09 16:23:54 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059/*
60 * Stripe cache
61 */
62
63#define NR_STRIPES 256
64#define STRIPE_SIZE PAGE_SIZE
65#define STRIPE_SHIFT (PAGE_SHIFT - 9)
66#define STRIPE_SECTORS (STRIPE_SIZE>>9)
67#define IO_THRESHOLD 1
Dan Williams8b3e6cd2008-04-28 02:15:53 -070068#define BYPASS_THRESHOLD 1
NeilBrownfccddba2006-01-06 00:20:33 -080069#define NR_HASH (PAGE_SIZE / sizeof(struct hlist_head))
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#define HASH_MASK (NR_HASH - 1)
71
NeilBrownfccddba2006-01-06 00:20:33 -080072#define stripe_hash(conf, sect) (&((conf)->stripe_hashtbl[((sect) >> STRIPE_SHIFT) & HASH_MASK]))
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74/* bio's attached to a stripe+device for I/O are linked together in bi_sector
75 * order without overlap. There may be several bio's per stripe+device, and
76 * a bio could span several devices.
77 * When walking this list for a particular stripe+device, we must never proceed
78 * beyond a bio that extends past this device, as the next bio might no longer
79 * be valid.
80 * This macro is used to determine the 'next' bio in the list, given the sector
81 * of the current stripe+device
82 */
83#define r5_next_bio(bio, sect) ( ( (bio)->bi_sector + ((bio)->bi_size>>9) < sect + STRIPE_SECTORS) ? (bio)->bi_next : NULL)
84/*
85 * The following can be used to debug the driver
86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#define RAID5_PARANOIA 1
88#if RAID5_PARANOIA && defined(CONFIG_SMP)
89# define CHECK_DEVLOCK() assert_spin_locked(&conf->device_lock)
90#else
91# define CHECK_DEVLOCK()
92#endif
93
Dan Williams45b42332007-07-09 11:56:43 -070094#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#define inline
96#define __inline__
97#endif
98
Bernd Schubert6be9d492008-05-23 13:04:34 -070099#define printk_rl(args...) ((void) (printk_ratelimit() && printk(args)))
100
Jens Axboe960e7392008-08-15 10:41:18 +0200101/*
Jens Axboe5b99c2f2008-08-15 10:56:11 +0200102 * We maintain a biased count of active stripes in the bottom 16 bits of
103 * bi_phys_segments, and a count of processed stripes in the upper 16 bits
Jens Axboe960e7392008-08-15 10:41:18 +0200104 */
105static inline int raid5_bi_phys_segments(struct bio *bio)
106{
Jens Axboe5b99c2f2008-08-15 10:56:11 +0200107 return bio->bi_phys_segments & 0xffff;
Jens Axboe960e7392008-08-15 10:41:18 +0200108}
109
110static inline int raid5_bi_hw_segments(struct bio *bio)
111{
Jens Axboe5b99c2f2008-08-15 10:56:11 +0200112 return (bio->bi_phys_segments >> 16) & 0xffff;
Jens Axboe960e7392008-08-15 10:41:18 +0200113}
114
115static inline int raid5_dec_bi_phys_segments(struct bio *bio)
116{
117 --bio->bi_phys_segments;
118 return raid5_bi_phys_segments(bio);
119}
120
121static inline int raid5_dec_bi_hw_segments(struct bio *bio)
122{
123 unsigned short val = raid5_bi_hw_segments(bio);
124
125 --val;
Jens Axboe5b99c2f2008-08-15 10:56:11 +0200126 bio->bi_phys_segments = (val << 16) | raid5_bi_phys_segments(bio);
Jens Axboe960e7392008-08-15 10:41:18 +0200127 return val;
128}
129
130static inline void raid5_set_bi_hw_segments(struct bio *bio, unsigned int cnt)
131{
Jens Axboe5b99c2f2008-08-15 10:56:11 +0200132 bio->bi_phys_segments = raid5_bi_phys_segments(bio) || (cnt << 16);
Jens Axboe960e7392008-08-15 10:41:18 +0200133}
134
NeilBrownd0dabf72009-03-31 14:39:38 +1100135/* Find first data disk in a raid6 stripe */
136static inline int raid6_d0(struct stripe_head *sh)
137{
NeilBrown67cc2b82009-03-31 14:39:38 +1100138 if (sh->ddf_layout)
139 /* ddf always start from first device */
140 return 0;
141 /* md starts just after Q block */
NeilBrownd0dabf72009-03-31 14:39:38 +1100142 if (sh->qd_idx == sh->disks - 1)
143 return 0;
144 else
145 return sh->qd_idx + 1;
146}
NeilBrown16a53ec2006-06-26 00:27:38 -0700147static inline int raid6_next_disk(int disk, int raid_disks)
148{
149 disk++;
150 return (disk < raid_disks) ? disk : 0;
151}
Dan Williamsa4456852007-07-09 11:56:43 -0700152
NeilBrownd0dabf72009-03-31 14:39:38 +1100153/* When walking through the disks in a raid5, starting at raid6_d0,
154 * We need to map each disk to a 'slot', where the data disks are slot
155 * 0 .. raid_disks-3, the parity disk is raid_disks-2 and the Q disk
156 * is raid_disks-1. This help does that mapping.
157 */
NeilBrown67cc2b82009-03-31 14:39:38 +1100158static int raid6_idx_to_slot(int idx, struct stripe_head *sh,
159 int *count, int syndrome_disks)
NeilBrownd0dabf72009-03-31 14:39:38 +1100160{
Dan Williams66295422009-10-19 18:09:32 -0700161 int slot = *count;
NeilBrown67cc2b82009-03-31 14:39:38 +1100162
NeilBrowne4424fe2009-10-16 16:27:34 +1100163 if (sh->ddf_layout)
Dan Williams66295422009-10-19 18:09:32 -0700164 (*count)++;
NeilBrownd0dabf72009-03-31 14:39:38 +1100165 if (idx == sh->pd_idx)
NeilBrown67cc2b82009-03-31 14:39:38 +1100166 return syndrome_disks;
NeilBrownd0dabf72009-03-31 14:39:38 +1100167 if (idx == sh->qd_idx)
NeilBrown67cc2b82009-03-31 14:39:38 +1100168 return syndrome_disks + 1;
NeilBrowne4424fe2009-10-16 16:27:34 +1100169 if (!sh->ddf_layout)
Dan Williams66295422009-10-19 18:09:32 -0700170 (*count)++;
NeilBrownd0dabf72009-03-31 14:39:38 +1100171 return slot;
172}
173
Dan Williamsa4456852007-07-09 11:56:43 -0700174static void return_io(struct bio *return_bi)
175{
176 struct bio *bi = return_bi;
177 while (bi) {
Dan Williamsa4456852007-07-09 11:56:43 -0700178
179 return_bi = bi->bi_next;
180 bi->bi_next = NULL;
181 bi->bi_size = 0;
Neil Brown0e13fe232008-06-28 08:31:20 +1000182 bio_endio(bi, 0);
Dan Williamsa4456852007-07-09 11:56:43 -0700183 bi = return_bi;
184 }
185}
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187static void print_raid5_conf (raid5_conf_t *conf);
188
Dan Williams600aa102008-06-28 08:32:05 +1000189static int stripe_operations_active(struct stripe_head *sh)
190{
191 return sh->check_state || sh->reconstruct_state ||
192 test_bit(STRIPE_BIOFILL_RUN, &sh->state) ||
193 test_bit(STRIPE_COMPUTE_RUN, &sh->state);
194}
195
Arjan van de Ven858119e2006-01-14 13:20:43 -0800196static void __release_stripe(raid5_conf_t *conf, struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
198 if (atomic_dec_and_test(&sh->count)) {
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +0200199 BUG_ON(!list_empty(&sh->lru));
200 BUG_ON(atomic_read(&conf->active_stripes)==0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 if (test_bit(STRIPE_HANDLE, &sh->state)) {
NeilBrown7c785b72006-07-10 04:44:16 -0700202 if (test_bit(STRIPE_DELAYED, &sh->state)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 list_add_tail(&sh->lru, &conf->delayed_list);
NeilBrown2ac87402010-06-01 19:37:29 +1000204 plugger_set_plug(&conf->plug);
NeilBrown7c785b72006-07-10 04:44:16 -0700205 } else if (test_bit(STRIPE_BIT_DELAY, &sh->state) &&
NeilBrownae3c20c2006-07-10 04:44:17 -0700206 sh->bm_seq - conf->seq_write > 0) {
NeilBrown72626682005-09-09 16:23:54 -0700207 list_add_tail(&sh->lru, &conf->bitmap_list);
NeilBrown2ac87402010-06-01 19:37:29 +1000208 plugger_set_plug(&conf->plug);
NeilBrown7c785b72006-07-10 04:44:16 -0700209 } else {
NeilBrown72626682005-09-09 16:23:54 -0700210 clear_bit(STRIPE_BIT_DELAY, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 list_add_tail(&sh->lru, &conf->handle_list);
NeilBrown72626682005-09-09 16:23:54 -0700212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 md_wakeup_thread(conf->mddev->thread);
214 } else {
Dan Williams600aa102008-06-28 08:32:05 +1000215 BUG_ON(stripe_operations_active(sh));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
217 atomic_dec(&conf->preread_active_stripes);
218 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD)
219 md_wakeup_thread(conf->mddev->thread);
220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 atomic_dec(&conf->active_stripes);
NeilBrownccfcc3c2006-03-27 01:18:09 -0800222 if (!test_bit(STRIPE_EXPANDING, &sh->state)) {
223 list_add_tail(&sh->lru, &conf->inactive_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 wake_up(&conf->wait_for_stripe);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -0800225 if (conf->retry_read_aligned)
226 md_wakeup_thread(conf->mddev->thread);
NeilBrownccfcc3c2006-03-27 01:18:09 -0800227 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 }
229 }
230}
NeilBrownd0dabf72009-03-31 14:39:38 +1100231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232static void release_stripe(struct stripe_head *sh)
233{
234 raid5_conf_t *conf = sh->raid_conf;
235 unsigned long flags;
NeilBrown16a53ec2006-06-26 00:27:38 -0700236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 spin_lock_irqsave(&conf->device_lock, flags);
238 __release_stripe(conf, sh);
239 spin_unlock_irqrestore(&conf->device_lock, flags);
240}
241
NeilBrownfccddba2006-01-06 00:20:33 -0800242static inline void remove_hash(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
Dan Williams45b42332007-07-09 11:56:43 -0700244 pr_debug("remove_hash(), stripe %llu\n",
245 (unsigned long long)sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
NeilBrownfccddba2006-01-06 00:20:33 -0800247 hlist_del_init(&sh->hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248}
249
NeilBrown16a53ec2006-06-26 00:27:38 -0700250static inline void insert_hash(raid5_conf_t *conf, struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
NeilBrownfccddba2006-01-06 00:20:33 -0800252 struct hlist_head *hp = stripe_hash(conf, sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Dan Williams45b42332007-07-09 11:56:43 -0700254 pr_debug("insert_hash(), stripe %llu\n",
255 (unsigned long long)sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257 CHECK_DEVLOCK();
NeilBrownfccddba2006-01-06 00:20:33 -0800258 hlist_add_head(&sh->hash, hp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259}
260
261
262/* find an idle stripe, make sure it is unhashed, and return it. */
263static struct stripe_head *get_free_stripe(raid5_conf_t *conf)
264{
265 struct stripe_head *sh = NULL;
266 struct list_head *first;
267
268 CHECK_DEVLOCK();
269 if (list_empty(&conf->inactive_list))
270 goto out;
271 first = conf->inactive_list.next;
272 sh = list_entry(first, struct stripe_head, lru);
273 list_del_init(first);
274 remove_hash(sh);
275 atomic_inc(&conf->active_stripes);
276out:
277 return sh;
278}
279
NeilBrowne4e11e32010-06-16 16:45:16 +1000280static void shrink_buffers(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
282 struct page *p;
283 int i;
NeilBrowne4e11e32010-06-16 16:45:16 +1000284 int num = sh->raid_conf->pool_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
NeilBrowne4e11e32010-06-16 16:45:16 +1000286 for (i = 0; i < num ; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 p = sh->dev[i].page;
288 if (!p)
289 continue;
290 sh->dev[i].page = NULL;
NeilBrown2d1f3b52006-01-06 00:20:31 -0800291 put_page(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
293}
294
NeilBrowne4e11e32010-06-16 16:45:16 +1000295static int grow_buffers(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
297 int i;
NeilBrowne4e11e32010-06-16 16:45:16 +1000298 int num = sh->raid_conf->pool_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
NeilBrowne4e11e32010-06-16 16:45:16 +1000300 for (i = 0; i < num; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 struct page *page;
302
303 if (!(page = alloc_page(GFP_KERNEL))) {
304 return 1;
305 }
306 sh->dev[i].page = page;
307 }
308 return 0;
309}
310
NeilBrown784052e2009-03-31 15:19:07 +1100311static void raid5_build_block(struct stripe_head *sh, int i, int previous);
NeilBrown911d4ee2009-03-31 14:39:38 +1100312static void stripe_set_idx(sector_t stripe, raid5_conf_t *conf, int previous,
313 struct stripe_head *sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
NeilBrownb5663ba2009-03-31 14:39:38 +1100315static void init_stripe(struct stripe_head *sh, sector_t sector, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
317 raid5_conf_t *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800318 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +0200320 BUG_ON(atomic_read(&sh->count) != 0);
321 BUG_ON(test_bit(STRIPE_HANDLE, &sh->state));
Dan Williams600aa102008-06-28 08:32:05 +1000322 BUG_ON(stripe_operations_active(sh));
Dan Williamsd84e0f12007-01-02 13:52:30 -0700323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 CHECK_DEVLOCK();
Dan Williams45b42332007-07-09 11:56:43 -0700325 pr_debug("init_stripe called, stripe %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 (unsigned long long)sh->sector);
327
328 remove_hash(sh);
NeilBrown16a53ec2006-06-26 00:27:38 -0700329
NeilBrown86b42c72009-03-31 15:19:03 +1100330 sh->generation = conf->generation - previous;
NeilBrownb5663ba2009-03-31 14:39:38 +1100331 sh->disks = previous ? conf->previous_raid_disks : conf->raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 sh->sector = sector;
NeilBrown911d4ee2009-03-31 14:39:38 +1100333 stripe_set_idx(sector, conf, previous, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 sh->state = 0;
335
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800336
337 for (i = sh->disks; i--; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 struct r5dev *dev = &sh->dev[i];
339
Dan Williamsd84e0f12007-01-02 13:52:30 -0700340 if (dev->toread || dev->read || dev->towrite || dev->written ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 test_bit(R5_LOCKED, &dev->flags)) {
Dan Williamsd84e0f12007-01-02 13:52:30 -0700342 printk(KERN_ERR "sector=%llx i=%d %p %p %p %p %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 (unsigned long long)sh->sector, i, dev->toread,
Dan Williamsd84e0f12007-01-02 13:52:30 -0700344 dev->read, dev->towrite, dev->written,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 test_bit(R5_LOCKED, &dev->flags));
346 BUG();
347 }
348 dev->flags = 0;
NeilBrown784052e2009-03-31 15:19:07 +1100349 raid5_build_block(sh, i, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 }
351 insert_hash(conf, sh);
352}
353
NeilBrown86b42c72009-03-31 15:19:03 +1100354static struct stripe_head *__find_stripe(raid5_conf_t *conf, sector_t sector,
355 short generation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
357 struct stripe_head *sh;
NeilBrownfccddba2006-01-06 00:20:33 -0800358 struct hlist_node *hn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 CHECK_DEVLOCK();
Dan Williams45b42332007-07-09 11:56:43 -0700361 pr_debug("__find_stripe, sector %llu\n", (unsigned long long)sector);
NeilBrownfccddba2006-01-06 00:20:33 -0800362 hlist_for_each_entry(sh, hn, stripe_hash(conf, sector), hash)
NeilBrown86b42c72009-03-31 15:19:03 +1100363 if (sh->sector == sector && sh->generation == generation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 return sh;
Dan Williams45b42332007-07-09 11:56:43 -0700365 pr_debug("__stripe %llu not in cache\n", (unsigned long long)sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 return NULL;
367}
368
NeilBrown674806d2010-06-16 17:17:53 +1000369/*
370 * Need to check if array has failed when deciding whether to:
371 * - start an array
372 * - remove non-faulty devices
373 * - add a spare
374 * - allow a reshape
375 * This determination is simple when no reshape is happening.
376 * However if there is a reshape, we need to carefully check
377 * both the before and after sections.
378 * This is because some failed devices may only affect one
379 * of the two sections, and some non-in_sync devices may
380 * be insync in the section most affected by failed devices.
381 */
382static int has_failed(raid5_conf_t *conf)
383{
384 int degraded;
385 int i;
386 if (conf->mddev->reshape_position == MaxSector)
387 return conf->mddev->degraded > conf->max_degraded;
388
389 rcu_read_lock();
390 degraded = 0;
391 for (i = 0; i < conf->previous_raid_disks; i++) {
392 mdk_rdev_t *rdev = rcu_dereference(conf->disks[i].rdev);
393 if (!rdev || test_bit(Faulty, &rdev->flags))
394 degraded++;
395 else if (test_bit(In_sync, &rdev->flags))
396 ;
397 else
398 /* not in-sync or faulty.
399 * If the reshape increases the number of devices,
400 * this is being recovered by the reshape, so
401 * this 'previous' section is not in_sync.
402 * If the number of devices is being reduced however,
403 * the device can only be part of the array if
404 * we are reverting a reshape, so this section will
405 * be in-sync.
406 */
407 if (conf->raid_disks >= conf->previous_raid_disks)
408 degraded++;
409 }
410 rcu_read_unlock();
411 if (degraded > conf->max_degraded)
412 return 1;
413 rcu_read_lock();
414 degraded = 0;
415 for (i = 0; i < conf->raid_disks; i++) {
416 mdk_rdev_t *rdev = rcu_dereference(conf->disks[i].rdev);
417 if (!rdev || test_bit(Faulty, &rdev->flags))
418 degraded++;
419 else if (test_bit(In_sync, &rdev->flags))
420 ;
421 else
422 /* not in-sync or faulty.
423 * If reshape increases the number of devices, this
424 * section has already been recovered, else it
425 * almost certainly hasn't.
426 */
427 if (conf->raid_disks <= conf->previous_raid_disks)
428 degraded++;
429 }
430 rcu_read_unlock();
431 if (degraded > conf->max_degraded)
432 return 1;
433 return 0;
434}
435
NeilBrownb5663ba2009-03-31 14:39:38 +1100436static struct stripe_head *
437get_active_stripe(raid5_conf_t *conf, sector_t sector,
NeilBrowna8c906c2009-06-09 14:39:59 +1000438 int previous, int noblock, int noquiesce)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
440 struct stripe_head *sh;
441
Dan Williams45b42332007-07-09 11:56:43 -0700442 pr_debug("get_stripe, sector %llu\n", (unsigned long long)sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444 spin_lock_irq(&conf->device_lock);
445
446 do {
NeilBrown72626682005-09-09 16:23:54 -0700447 wait_event_lock_irq(conf->wait_for_stripe,
NeilBrowna8c906c2009-06-09 14:39:59 +1000448 conf->quiesce == 0 || noquiesce,
NeilBrown72626682005-09-09 16:23:54 -0700449 conf->device_lock, /* nothing */);
NeilBrown86b42c72009-03-31 15:19:03 +1100450 sh = __find_stripe(conf, sector, conf->generation - previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 if (!sh) {
452 if (!conf->inactive_blocked)
453 sh = get_free_stripe(conf);
454 if (noblock && sh == NULL)
455 break;
456 if (!sh) {
457 conf->inactive_blocked = 1;
458 wait_event_lock_irq(conf->wait_for_stripe,
459 !list_empty(&conf->inactive_list) &&
NeilBrown50368052005-12-12 02:39:17 -0800460 (atomic_read(&conf->active_stripes)
461 < (conf->max_nr_stripes *3/4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 || !conf->inactive_blocked),
463 conf->device_lock,
Jens Axboe7eaceac2011-03-10 08:52:07 +0100464 md_raid5_kick_device(conf));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 conf->inactive_blocked = 0;
466 } else
NeilBrownb5663ba2009-03-31 14:39:38 +1100467 init_stripe(sh, sector, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 } else {
469 if (atomic_read(&sh->count)) {
NeilBrownab69ae12009-03-31 15:26:47 +1100470 BUG_ON(!list_empty(&sh->lru)
471 && !test_bit(STRIPE_EXPANDING, &sh->state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 } else {
473 if (!test_bit(STRIPE_HANDLE, &sh->state))
474 atomic_inc(&conf->active_stripes);
NeilBrownff4e8d92006-07-10 04:44:16 -0700475 if (list_empty(&sh->lru) &&
476 !test_bit(STRIPE_EXPANDING, &sh->state))
NeilBrown16a53ec2006-06-26 00:27:38 -0700477 BUG();
478 list_del_init(&sh->lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 }
480 }
481 } while (sh == NULL);
482
483 if (sh)
484 atomic_inc(&sh->count);
485
486 spin_unlock_irq(&conf->device_lock);
487 return sh;
488}
489
NeilBrown6712ecf2007-09-27 12:47:43 +0200490static void
491raid5_end_read_request(struct bio *bi, int error);
492static void
493raid5_end_write_request(struct bio *bi, int error);
Dan Williams91c00922007-01-02 13:52:30 -0700494
Dan Williamsc4e5ac02008-06-28 08:31:53 +1000495static void ops_run_io(struct stripe_head *sh, struct stripe_head_state *s)
Dan Williams91c00922007-01-02 13:52:30 -0700496{
497 raid5_conf_t *conf = sh->raid_conf;
498 int i, disks = sh->disks;
499
500 might_sleep();
501
502 for (i = disks; i--; ) {
503 int rw;
504 struct bio *bi;
505 mdk_rdev_t *rdev;
Tejun Heoe9c74692010-09-03 11:56:18 +0200506 if (test_and_clear_bit(R5_Wantwrite, &sh->dev[i].flags)) {
507 if (test_and_clear_bit(R5_WantFUA, &sh->dev[i].flags))
508 rw = WRITE_FUA;
509 else
510 rw = WRITE;
511 } else if (test_and_clear_bit(R5_Wantread, &sh->dev[i].flags))
Dan Williams91c00922007-01-02 13:52:30 -0700512 rw = READ;
513 else
514 continue;
515
516 bi = &sh->dev[i].req;
517
518 bi->bi_rw = rw;
519 if (rw == WRITE)
520 bi->bi_end_io = raid5_end_write_request;
521 else
522 bi->bi_end_io = raid5_end_read_request;
523
524 rcu_read_lock();
525 rdev = rcu_dereference(conf->disks[i].rdev);
526 if (rdev && test_bit(Faulty, &rdev->flags))
527 rdev = NULL;
528 if (rdev)
529 atomic_inc(&rdev->nr_pending);
530 rcu_read_unlock();
531
532 if (rdev) {
Dan Williamsc4e5ac02008-06-28 08:31:53 +1000533 if (s->syncing || s->expanding || s->expanded)
Dan Williams91c00922007-01-02 13:52:30 -0700534 md_sync_acct(rdev->bdev, STRIPE_SECTORS);
535
Dan Williams2b7497f2008-06-28 08:31:52 +1000536 set_bit(STRIPE_IO_STARTED, &sh->state);
537
Dan Williams91c00922007-01-02 13:52:30 -0700538 bi->bi_bdev = rdev->bdev;
539 pr_debug("%s: for %llu schedule op %ld on disc %d\n",
Harvey Harrisone46b272b2008-04-28 02:15:50 -0700540 __func__, (unsigned long long)sh->sector,
Dan Williams91c00922007-01-02 13:52:30 -0700541 bi->bi_rw, i);
542 atomic_inc(&sh->count);
543 bi->bi_sector = sh->sector + rdev->data_offset;
544 bi->bi_flags = 1 << BIO_UPTODATE;
545 bi->bi_vcnt = 1;
546 bi->bi_max_vecs = 1;
547 bi->bi_idx = 0;
548 bi->bi_io_vec = &sh->dev[i].vec;
549 bi->bi_io_vec[0].bv_len = STRIPE_SIZE;
550 bi->bi_io_vec[0].bv_offset = 0;
551 bi->bi_size = STRIPE_SIZE;
552 bi->bi_next = NULL;
553 if (rw == WRITE &&
554 test_bit(R5_ReWrite, &sh->dev[i].flags))
555 atomic_add(STRIPE_SECTORS,
556 &rdev->corrected_errors);
557 generic_make_request(bi);
558 } else {
559 if (rw == WRITE)
560 set_bit(STRIPE_DEGRADED, &sh->state);
561 pr_debug("skip op %ld on disc %d for sector %llu\n",
562 bi->bi_rw, i, (unsigned long long)sh->sector);
563 clear_bit(R5_LOCKED, &sh->dev[i].flags);
564 set_bit(STRIPE_HANDLE, &sh->state);
565 }
566 }
567}
568
569static struct dma_async_tx_descriptor *
570async_copy_data(int frombio, struct bio *bio, struct page *page,
571 sector_t sector, struct dma_async_tx_descriptor *tx)
572{
573 struct bio_vec *bvl;
574 struct page *bio_page;
575 int i;
576 int page_offset;
Dan Williamsa08abd82009-06-03 11:43:59 -0700577 struct async_submit_ctl submit;
Dan Williams0403e382009-09-08 17:42:50 -0700578 enum async_tx_flags flags = 0;
Dan Williams91c00922007-01-02 13:52:30 -0700579
580 if (bio->bi_sector >= sector)
581 page_offset = (signed)(bio->bi_sector - sector) * 512;
582 else
583 page_offset = (signed)(sector - bio->bi_sector) * -512;
Dan Williamsa08abd82009-06-03 11:43:59 -0700584
Dan Williams0403e382009-09-08 17:42:50 -0700585 if (frombio)
586 flags |= ASYNC_TX_FENCE;
587 init_async_submit(&submit, flags, tx, NULL, NULL, NULL);
588
Dan Williams91c00922007-01-02 13:52:30 -0700589 bio_for_each_segment(bvl, bio, i) {
590 int len = bio_iovec_idx(bio, i)->bv_len;
591 int clen;
592 int b_offset = 0;
593
594 if (page_offset < 0) {
595 b_offset = -page_offset;
596 page_offset += b_offset;
597 len -= b_offset;
598 }
599
600 if (len > 0 && page_offset + len > STRIPE_SIZE)
601 clen = STRIPE_SIZE - page_offset;
602 else
603 clen = len;
604
605 if (clen > 0) {
606 b_offset += bio_iovec_idx(bio, i)->bv_offset;
607 bio_page = bio_iovec_idx(bio, i)->bv_page;
608 if (frombio)
609 tx = async_memcpy(page, bio_page, page_offset,
Dan Williamsa08abd82009-06-03 11:43:59 -0700610 b_offset, clen, &submit);
Dan Williams91c00922007-01-02 13:52:30 -0700611 else
612 tx = async_memcpy(bio_page, page, b_offset,
Dan Williamsa08abd82009-06-03 11:43:59 -0700613 page_offset, clen, &submit);
Dan Williams91c00922007-01-02 13:52:30 -0700614 }
Dan Williamsa08abd82009-06-03 11:43:59 -0700615 /* chain the operations */
616 submit.depend_tx = tx;
617
Dan Williams91c00922007-01-02 13:52:30 -0700618 if (clen < len) /* hit end of page */
619 break;
620 page_offset += len;
621 }
622
623 return tx;
624}
625
626static void ops_complete_biofill(void *stripe_head_ref)
627{
628 struct stripe_head *sh = stripe_head_ref;
629 struct bio *return_bi = NULL;
630 raid5_conf_t *conf = sh->raid_conf;
Dan Williamse4d84902007-09-24 10:06:13 -0700631 int i;
Dan Williams91c00922007-01-02 13:52:30 -0700632
Harvey Harrisone46b272b2008-04-28 02:15:50 -0700633 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700634 (unsigned long long)sh->sector);
635
636 /* clear completed biofills */
Dan Williams83de75c2008-06-28 08:31:58 +1000637 spin_lock_irq(&conf->device_lock);
Dan Williams91c00922007-01-02 13:52:30 -0700638 for (i = sh->disks; i--; ) {
639 struct r5dev *dev = &sh->dev[i];
Dan Williams91c00922007-01-02 13:52:30 -0700640
641 /* acknowledge completion of a biofill operation */
Dan Williamse4d84902007-09-24 10:06:13 -0700642 /* and check if we need to reply to a read request,
643 * new R5_Wantfill requests are held off until
Dan Williams83de75c2008-06-28 08:31:58 +1000644 * !STRIPE_BIOFILL_RUN
Dan Williamse4d84902007-09-24 10:06:13 -0700645 */
646 if (test_and_clear_bit(R5_Wantfill, &dev->flags)) {
Dan Williams91c00922007-01-02 13:52:30 -0700647 struct bio *rbi, *rbi2;
Dan Williams91c00922007-01-02 13:52:30 -0700648
Dan Williams91c00922007-01-02 13:52:30 -0700649 BUG_ON(!dev->read);
650 rbi = dev->read;
651 dev->read = NULL;
652 while (rbi && rbi->bi_sector <
653 dev->sector + STRIPE_SECTORS) {
654 rbi2 = r5_next_bio(rbi, dev->sector);
Jens Axboe960e7392008-08-15 10:41:18 +0200655 if (!raid5_dec_bi_phys_segments(rbi)) {
Dan Williams91c00922007-01-02 13:52:30 -0700656 rbi->bi_next = return_bi;
657 return_bi = rbi;
658 }
Dan Williams91c00922007-01-02 13:52:30 -0700659 rbi = rbi2;
660 }
661 }
662 }
Dan Williams83de75c2008-06-28 08:31:58 +1000663 spin_unlock_irq(&conf->device_lock);
664 clear_bit(STRIPE_BIOFILL_RUN, &sh->state);
Dan Williams91c00922007-01-02 13:52:30 -0700665
666 return_io(return_bi);
667
Dan Williamse4d84902007-09-24 10:06:13 -0700668 set_bit(STRIPE_HANDLE, &sh->state);
Dan Williams91c00922007-01-02 13:52:30 -0700669 release_stripe(sh);
670}
671
672static void ops_run_biofill(struct stripe_head *sh)
673{
674 struct dma_async_tx_descriptor *tx = NULL;
675 raid5_conf_t *conf = sh->raid_conf;
Dan Williamsa08abd82009-06-03 11:43:59 -0700676 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -0700677 int i;
678
Harvey Harrisone46b272b2008-04-28 02:15:50 -0700679 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700680 (unsigned long long)sh->sector);
681
682 for (i = sh->disks; i--; ) {
683 struct r5dev *dev = &sh->dev[i];
684 if (test_bit(R5_Wantfill, &dev->flags)) {
685 struct bio *rbi;
686 spin_lock_irq(&conf->device_lock);
687 dev->read = rbi = dev->toread;
688 dev->toread = NULL;
689 spin_unlock_irq(&conf->device_lock);
690 while (rbi && rbi->bi_sector <
691 dev->sector + STRIPE_SECTORS) {
692 tx = async_copy_data(0, rbi, dev->page,
693 dev->sector, tx);
694 rbi = r5_next_bio(rbi, dev->sector);
695 }
696 }
697 }
698
699 atomic_inc(&sh->count);
Dan Williamsa08abd82009-06-03 11:43:59 -0700700 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_biofill, sh, NULL);
701 async_trigger_callback(&submit);
Dan Williams91c00922007-01-02 13:52:30 -0700702}
703
Dan Williams4e7d2c02009-08-29 19:13:11 -0700704static void mark_target_uptodate(struct stripe_head *sh, int target)
705{
706 struct r5dev *tgt;
707
708 if (target < 0)
709 return;
710
711 tgt = &sh->dev[target];
712 set_bit(R5_UPTODATE, &tgt->flags);
713 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
714 clear_bit(R5_Wantcompute, &tgt->flags);
715}
716
Dan Williamsac6b53b2009-07-14 13:40:19 -0700717static void ops_complete_compute(void *stripe_head_ref)
Dan Williams91c00922007-01-02 13:52:30 -0700718{
719 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -0700720
Harvey Harrisone46b272b2008-04-28 02:15:50 -0700721 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700722 (unsigned long long)sh->sector);
723
Dan Williamsac6b53b2009-07-14 13:40:19 -0700724 /* mark the computed target(s) as uptodate */
Dan Williams4e7d2c02009-08-29 19:13:11 -0700725 mark_target_uptodate(sh, sh->ops.target);
Dan Williamsac6b53b2009-07-14 13:40:19 -0700726 mark_target_uptodate(sh, sh->ops.target2);
Dan Williams4e7d2c02009-08-29 19:13:11 -0700727
Dan Williamsecc65c92008-06-28 08:31:57 +1000728 clear_bit(STRIPE_COMPUTE_RUN, &sh->state);
729 if (sh->check_state == check_state_compute_run)
730 sh->check_state = check_state_compute_result;
Dan Williams91c00922007-01-02 13:52:30 -0700731 set_bit(STRIPE_HANDLE, &sh->state);
732 release_stripe(sh);
733}
734
Dan Williamsd6f38f32009-07-14 11:50:52 -0700735/* return a pointer to the address conversion region of the scribble buffer */
736static addr_conv_t *to_addr_conv(struct stripe_head *sh,
737 struct raid5_percpu *percpu)
Dan Williams91c00922007-01-02 13:52:30 -0700738{
Dan Williamsd6f38f32009-07-14 11:50:52 -0700739 return percpu->scribble + sizeof(struct page *) * (sh->disks + 2);
740}
741
742static struct dma_async_tx_descriptor *
743ops_run_compute5(struct stripe_head *sh, struct raid5_percpu *percpu)
744{
Dan Williams91c00922007-01-02 13:52:30 -0700745 int disks = sh->disks;
Dan Williamsd6f38f32009-07-14 11:50:52 -0700746 struct page **xor_srcs = percpu->scribble;
Dan Williams91c00922007-01-02 13:52:30 -0700747 int target = sh->ops.target;
748 struct r5dev *tgt = &sh->dev[target];
749 struct page *xor_dest = tgt->page;
750 int count = 0;
751 struct dma_async_tx_descriptor *tx;
Dan Williamsa08abd82009-06-03 11:43:59 -0700752 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -0700753 int i;
754
755 pr_debug("%s: stripe %llu block: %d\n",
Harvey Harrisone46b272b2008-04-28 02:15:50 -0700756 __func__, (unsigned long long)sh->sector, target);
Dan Williams91c00922007-01-02 13:52:30 -0700757 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
758
759 for (i = disks; i--; )
760 if (i != target)
761 xor_srcs[count++] = sh->dev[i].page;
762
763 atomic_inc(&sh->count);
764
Dan Williams0403e382009-09-08 17:42:50 -0700765 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST, NULL,
Dan Williamsac6b53b2009-07-14 13:40:19 -0700766 ops_complete_compute, sh, to_addr_conv(sh, percpu));
Dan Williams91c00922007-01-02 13:52:30 -0700767 if (unlikely(count == 1))
Dan Williamsa08abd82009-06-03 11:43:59 -0700768 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -0700769 else
Dan Williamsa08abd82009-06-03 11:43:59 -0700770 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -0700771
Dan Williams91c00922007-01-02 13:52:30 -0700772 return tx;
773}
774
Dan Williamsac6b53b2009-07-14 13:40:19 -0700775/* set_syndrome_sources - populate source buffers for gen_syndrome
776 * @srcs - (struct page *) array of size sh->disks
777 * @sh - stripe_head to parse
778 *
779 * Populates srcs in proper layout order for the stripe and returns the
780 * 'count' of sources to be used in a call to async_gen_syndrome. The P
781 * destination buffer is recorded in srcs[count] and the Q destination
782 * is recorded in srcs[count+1]].
783 */
784static int set_syndrome_sources(struct page **srcs, struct stripe_head *sh)
785{
786 int disks = sh->disks;
787 int syndrome_disks = sh->ddf_layout ? disks : (disks - 2);
788 int d0_idx = raid6_d0(sh);
789 int count;
790 int i;
791
792 for (i = 0; i < disks; i++)
NeilBrown5dd33c92009-10-16 16:40:25 +1100793 srcs[i] = NULL;
Dan Williamsac6b53b2009-07-14 13:40:19 -0700794
795 count = 0;
796 i = d0_idx;
797 do {
798 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
799
800 srcs[slot] = sh->dev[i].page;
801 i = raid6_next_disk(i, disks);
802 } while (i != d0_idx);
Dan Williamsac6b53b2009-07-14 13:40:19 -0700803
NeilBrowne4424fe2009-10-16 16:27:34 +1100804 return syndrome_disks;
Dan Williamsac6b53b2009-07-14 13:40:19 -0700805}
806
807static struct dma_async_tx_descriptor *
808ops_run_compute6_1(struct stripe_head *sh, struct raid5_percpu *percpu)
809{
810 int disks = sh->disks;
811 struct page **blocks = percpu->scribble;
812 int target;
813 int qd_idx = sh->qd_idx;
814 struct dma_async_tx_descriptor *tx;
815 struct async_submit_ctl submit;
816 struct r5dev *tgt;
817 struct page *dest;
818 int i;
819 int count;
820
821 if (sh->ops.target < 0)
822 target = sh->ops.target2;
823 else if (sh->ops.target2 < 0)
824 target = sh->ops.target;
825 else
826 /* we should only have one valid target */
827 BUG();
828 BUG_ON(target < 0);
829 pr_debug("%s: stripe %llu block: %d\n",
830 __func__, (unsigned long long)sh->sector, target);
831
832 tgt = &sh->dev[target];
833 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
834 dest = tgt->page;
835
836 atomic_inc(&sh->count);
837
838 if (target == qd_idx) {
839 count = set_syndrome_sources(blocks, sh);
840 blocks[count] = NULL; /* regenerating p is not necessary */
841 BUG_ON(blocks[count+1] != dest); /* q should already be set */
Dan Williams0403e382009-09-08 17:42:50 -0700842 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
843 ops_complete_compute, sh,
Dan Williamsac6b53b2009-07-14 13:40:19 -0700844 to_addr_conv(sh, percpu));
845 tx = async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
846 } else {
847 /* Compute any data- or p-drive using XOR */
848 count = 0;
849 for (i = disks; i-- ; ) {
850 if (i == target || i == qd_idx)
851 continue;
852 blocks[count++] = sh->dev[i].page;
853 }
854
Dan Williams0403e382009-09-08 17:42:50 -0700855 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
856 NULL, ops_complete_compute, sh,
Dan Williamsac6b53b2009-07-14 13:40:19 -0700857 to_addr_conv(sh, percpu));
858 tx = async_xor(dest, blocks, 0, count, STRIPE_SIZE, &submit);
859 }
860
861 return tx;
862}
863
864static struct dma_async_tx_descriptor *
865ops_run_compute6_2(struct stripe_head *sh, struct raid5_percpu *percpu)
866{
867 int i, count, disks = sh->disks;
868 int syndrome_disks = sh->ddf_layout ? disks : disks-2;
869 int d0_idx = raid6_d0(sh);
870 int faila = -1, failb = -1;
871 int target = sh->ops.target;
872 int target2 = sh->ops.target2;
873 struct r5dev *tgt = &sh->dev[target];
874 struct r5dev *tgt2 = &sh->dev[target2];
875 struct dma_async_tx_descriptor *tx;
876 struct page **blocks = percpu->scribble;
877 struct async_submit_ctl submit;
878
879 pr_debug("%s: stripe %llu block1: %d block2: %d\n",
880 __func__, (unsigned long long)sh->sector, target, target2);
881 BUG_ON(target < 0 || target2 < 0);
882 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
883 BUG_ON(!test_bit(R5_Wantcompute, &tgt2->flags));
884
Dan Williams6c910a72009-09-16 12:24:54 -0700885 /* we need to open-code set_syndrome_sources to handle the
Dan Williamsac6b53b2009-07-14 13:40:19 -0700886 * slot number conversion for 'faila' and 'failb'
887 */
888 for (i = 0; i < disks ; i++)
NeilBrown5dd33c92009-10-16 16:40:25 +1100889 blocks[i] = NULL;
Dan Williamsac6b53b2009-07-14 13:40:19 -0700890 count = 0;
891 i = d0_idx;
892 do {
893 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
894
895 blocks[slot] = sh->dev[i].page;
896
897 if (i == target)
898 faila = slot;
899 if (i == target2)
900 failb = slot;
901 i = raid6_next_disk(i, disks);
902 } while (i != d0_idx);
Dan Williamsac6b53b2009-07-14 13:40:19 -0700903
904 BUG_ON(faila == failb);
905 if (failb < faila)
906 swap(faila, failb);
907 pr_debug("%s: stripe: %llu faila: %d failb: %d\n",
908 __func__, (unsigned long long)sh->sector, faila, failb);
909
910 atomic_inc(&sh->count);
911
912 if (failb == syndrome_disks+1) {
913 /* Q disk is one of the missing disks */
914 if (faila == syndrome_disks) {
915 /* Missing P+Q, just recompute */
Dan Williams0403e382009-09-08 17:42:50 -0700916 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
917 ops_complete_compute, sh,
918 to_addr_conv(sh, percpu));
NeilBrowne4424fe2009-10-16 16:27:34 +1100919 return async_gen_syndrome(blocks, 0, syndrome_disks+2,
Dan Williamsac6b53b2009-07-14 13:40:19 -0700920 STRIPE_SIZE, &submit);
921 } else {
922 struct page *dest;
923 int data_target;
924 int qd_idx = sh->qd_idx;
925
926 /* Missing D+Q: recompute D from P, then recompute Q */
927 if (target == qd_idx)
928 data_target = target2;
929 else
930 data_target = target;
931
932 count = 0;
933 for (i = disks; i-- ; ) {
934 if (i == data_target || i == qd_idx)
935 continue;
936 blocks[count++] = sh->dev[i].page;
937 }
938 dest = sh->dev[data_target].page;
Dan Williams0403e382009-09-08 17:42:50 -0700939 init_async_submit(&submit,
940 ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
941 NULL, NULL, NULL,
942 to_addr_conv(sh, percpu));
Dan Williamsac6b53b2009-07-14 13:40:19 -0700943 tx = async_xor(dest, blocks, 0, count, STRIPE_SIZE,
944 &submit);
945
946 count = set_syndrome_sources(blocks, sh);
Dan Williams0403e382009-09-08 17:42:50 -0700947 init_async_submit(&submit, ASYNC_TX_FENCE, tx,
948 ops_complete_compute, sh,
949 to_addr_conv(sh, percpu));
Dan Williamsac6b53b2009-07-14 13:40:19 -0700950 return async_gen_syndrome(blocks, 0, count+2,
951 STRIPE_SIZE, &submit);
952 }
Dan Williamsac6b53b2009-07-14 13:40:19 -0700953 } else {
Dan Williams6c910a72009-09-16 12:24:54 -0700954 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
955 ops_complete_compute, sh,
956 to_addr_conv(sh, percpu));
957 if (failb == syndrome_disks) {
958 /* We're missing D+P. */
959 return async_raid6_datap_recov(syndrome_disks+2,
960 STRIPE_SIZE, faila,
961 blocks, &submit);
962 } else {
963 /* We're missing D+D. */
964 return async_raid6_2data_recov(syndrome_disks+2,
965 STRIPE_SIZE, faila, failb,
966 blocks, &submit);
967 }
Dan Williamsac6b53b2009-07-14 13:40:19 -0700968 }
969}
970
971
Dan Williams91c00922007-01-02 13:52:30 -0700972static void ops_complete_prexor(void *stripe_head_ref)
973{
974 struct stripe_head *sh = stripe_head_ref;
975
Harvey Harrisone46b272b2008-04-28 02:15:50 -0700976 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700977 (unsigned long long)sh->sector);
Dan Williams91c00922007-01-02 13:52:30 -0700978}
979
980static struct dma_async_tx_descriptor *
Dan Williamsd6f38f32009-07-14 11:50:52 -0700981ops_run_prexor(struct stripe_head *sh, struct raid5_percpu *percpu,
982 struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -0700983{
Dan Williams91c00922007-01-02 13:52:30 -0700984 int disks = sh->disks;
Dan Williamsd6f38f32009-07-14 11:50:52 -0700985 struct page **xor_srcs = percpu->scribble;
Dan Williams91c00922007-01-02 13:52:30 -0700986 int count = 0, pd_idx = sh->pd_idx, i;
Dan Williamsa08abd82009-06-03 11:43:59 -0700987 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -0700988
989 /* existing parity data subtracted */
990 struct page *xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
991
Harvey Harrisone46b272b2008-04-28 02:15:50 -0700992 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700993 (unsigned long long)sh->sector);
994
995 for (i = disks; i--; ) {
996 struct r5dev *dev = &sh->dev[i];
997 /* Only process blocks that are known to be uptodate */
Dan Williamsd8ee0722008-06-28 08:32:06 +1000998 if (test_bit(R5_Wantdrain, &dev->flags))
Dan Williams91c00922007-01-02 13:52:30 -0700999 xor_srcs[count++] = dev->page;
1000 }
1001
Dan Williams0403e382009-09-08 17:42:50 -07001002 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_DROP_DST, tx,
Dan Williamsd6f38f32009-07-14 11:50:52 -07001003 ops_complete_prexor, sh, to_addr_conv(sh, percpu));
Dan Williamsa08abd82009-06-03 11:43:59 -07001004 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001005
1006 return tx;
1007}
1008
1009static struct dma_async_tx_descriptor *
Dan Williamsd8ee0722008-06-28 08:32:06 +10001010ops_run_biodrain(struct stripe_head *sh, struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001011{
1012 int disks = sh->disks;
Dan Williamsd8ee0722008-06-28 08:32:06 +10001013 int i;
Dan Williams91c00922007-01-02 13:52:30 -07001014
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001015 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001016 (unsigned long long)sh->sector);
1017
1018 for (i = disks; i--; ) {
1019 struct r5dev *dev = &sh->dev[i];
1020 struct bio *chosen;
Dan Williams91c00922007-01-02 13:52:30 -07001021
Dan Williamsd8ee0722008-06-28 08:32:06 +10001022 if (test_and_clear_bit(R5_Wantdrain, &dev->flags)) {
Dan Williams91c00922007-01-02 13:52:30 -07001023 struct bio *wbi;
1024
1025 spin_lock(&sh->lock);
1026 chosen = dev->towrite;
1027 dev->towrite = NULL;
1028 BUG_ON(dev->written);
1029 wbi = dev->written = chosen;
1030 spin_unlock(&sh->lock);
1031
1032 while (wbi && wbi->bi_sector <
1033 dev->sector + STRIPE_SECTORS) {
Tejun Heoe9c74692010-09-03 11:56:18 +02001034 if (wbi->bi_rw & REQ_FUA)
1035 set_bit(R5_WantFUA, &dev->flags);
Dan Williams91c00922007-01-02 13:52:30 -07001036 tx = async_copy_data(1, wbi, dev->page,
1037 dev->sector, tx);
1038 wbi = r5_next_bio(wbi, dev->sector);
1039 }
1040 }
1041 }
1042
1043 return tx;
1044}
1045
Dan Williamsac6b53b2009-07-14 13:40:19 -07001046static void ops_complete_reconstruct(void *stripe_head_ref)
Dan Williams91c00922007-01-02 13:52:30 -07001047{
1048 struct stripe_head *sh = stripe_head_ref;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001049 int disks = sh->disks;
1050 int pd_idx = sh->pd_idx;
1051 int qd_idx = sh->qd_idx;
1052 int i;
Tejun Heoe9c74692010-09-03 11:56:18 +02001053 bool fua = false;
Dan Williams91c00922007-01-02 13:52:30 -07001054
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001055 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001056 (unsigned long long)sh->sector);
1057
Tejun Heoe9c74692010-09-03 11:56:18 +02001058 for (i = disks; i--; )
1059 fua |= test_bit(R5_WantFUA, &sh->dev[i].flags);
1060
Dan Williams91c00922007-01-02 13:52:30 -07001061 for (i = disks; i--; ) {
1062 struct r5dev *dev = &sh->dev[i];
Dan Williamsac6b53b2009-07-14 13:40:19 -07001063
Tejun Heoe9c74692010-09-03 11:56:18 +02001064 if (dev->written || i == pd_idx || i == qd_idx) {
Dan Williams91c00922007-01-02 13:52:30 -07001065 set_bit(R5_UPTODATE, &dev->flags);
Tejun Heoe9c74692010-09-03 11:56:18 +02001066 if (fua)
1067 set_bit(R5_WantFUA, &dev->flags);
1068 }
Dan Williams91c00922007-01-02 13:52:30 -07001069 }
1070
Dan Williamsd8ee0722008-06-28 08:32:06 +10001071 if (sh->reconstruct_state == reconstruct_state_drain_run)
1072 sh->reconstruct_state = reconstruct_state_drain_result;
1073 else if (sh->reconstruct_state == reconstruct_state_prexor_drain_run)
1074 sh->reconstruct_state = reconstruct_state_prexor_drain_result;
1075 else {
1076 BUG_ON(sh->reconstruct_state != reconstruct_state_run);
1077 sh->reconstruct_state = reconstruct_state_result;
1078 }
Dan Williams91c00922007-01-02 13:52:30 -07001079
1080 set_bit(STRIPE_HANDLE, &sh->state);
1081 release_stripe(sh);
1082}
1083
1084static void
Dan Williamsac6b53b2009-07-14 13:40:19 -07001085ops_run_reconstruct5(struct stripe_head *sh, struct raid5_percpu *percpu,
1086 struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001087{
Dan Williams91c00922007-01-02 13:52:30 -07001088 int disks = sh->disks;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001089 struct page **xor_srcs = percpu->scribble;
Dan Williamsa08abd82009-06-03 11:43:59 -07001090 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001091 int count = 0, pd_idx = sh->pd_idx, i;
1092 struct page *xor_dest;
Dan Williamsd8ee0722008-06-28 08:32:06 +10001093 int prexor = 0;
Dan Williams91c00922007-01-02 13:52:30 -07001094 unsigned long flags;
Dan Williams91c00922007-01-02 13:52:30 -07001095
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001096 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001097 (unsigned long long)sh->sector);
1098
1099 /* check if prexor is active which means only process blocks
1100 * that are part of a read-modify-write (written)
1101 */
Dan Williamsd8ee0722008-06-28 08:32:06 +10001102 if (sh->reconstruct_state == reconstruct_state_prexor_drain_run) {
1103 prexor = 1;
Dan Williams91c00922007-01-02 13:52:30 -07001104 xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
1105 for (i = disks; i--; ) {
1106 struct r5dev *dev = &sh->dev[i];
1107 if (dev->written)
1108 xor_srcs[count++] = dev->page;
1109 }
1110 } else {
1111 xor_dest = sh->dev[pd_idx].page;
1112 for (i = disks; i--; ) {
1113 struct r5dev *dev = &sh->dev[i];
1114 if (i != pd_idx)
1115 xor_srcs[count++] = dev->page;
1116 }
1117 }
1118
Dan Williams91c00922007-01-02 13:52:30 -07001119 /* 1/ if we prexor'd then the dest is reused as a source
1120 * 2/ if we did not prexor then we are redoing the parity
1121 * set ASYNC_TX_XOR_DROP_DST and ASYNC_TX_XOR_ZERO_DST
1122 * for the synchronous xor case
1123 */
Dan Williams88ba2aa2009-04-09 16:16:18 -07001124 flags = ASYNC_TX_ACK |
Dan Williams91c00922007-01-02 13:52:30 -07001125 (prexor ? ASYNC_TX_XOR_DROP_DST : ASYNC_TX_XOR_ZERO_DST);
1126
1127 atomic_inc(&sh->count);
1128
Dan Williamsac6b53b2009-07-14 13:40:19 -07001129 init_async_submit(&submit, flags, tx, ops_complete_reconstruct, sh,
Dan Williamsd6f38f32009-07-14 11:50:52 -07001130 to_addr_conv(sh, percpu));
Dan Williamsa08abd82009-06-03 11:43:59 -07001131 if (unlikely(count == 1))
1132 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
1133 else
1134 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001135}
1136
Dan Williamsac6b53b2009-07-14 13:40:19 -07001137static void
1138ops_run_reconstruct6(struct stripe_head *sh, struct raid5_percpu *percpu,
1139 struct dma_async_tx_descriptor *tx)
1140{
1141 struct async_submit_ctl submit;
1142 struct page **blocks = percpu->scribble;
1143 int count;
1144
1145 pr_debug("%s: stripe %llu\n", __func__, (unsigned long long)sh->sector);
1146
1147 count = set_syndrome_sources(blocks, sh);
1148
1149 atomic_inc(&sh->count);
1150
1151 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_reconstruct,
1152 sh, to_addr_conv(sh, percpu));
1153 async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001154}
1155
1156static void ops_complete_check(void *stripe_head_ref)
1157{
1158 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -07001159
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001160 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001161 (unsigned long long)sh->sector);
1162
Dan Williamsecc65c92008-06-28 08:31:57 +10001163 sh->check_state = check_state_check_result;
Dan Williams91c00922007-01-02 13:52:30 -07001164 set_bit(STRIPE_HANDLE, &sh->state);
1165 release_stripe(sh);
1166}
1167
Dan Williamsac6b53b2009-07-14 13:40:19 -07001168static void ops_run_check_p(struct stripe_head *sh, struct raid5_percpu *percpu)
Dan Williams91c00922007-01-02 13:52:30 -07001169{
Dan Williams91c00922007-01-02 13:52:30 -07001170 int disks = sh->disks;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001171 int pd_idx = sh->pd_idx;
1172 int qd_idx = sh->qd_idx;
1173 struct page *xor_dest;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001174 struct page **xor_srcs = percpu->scribble;
Dan Williams91c00922007-01-02 13:52:30 -07001175 struct dma_async_tx_descriptor *tx;
Dan Williamsa08abd82009-06-03 11:43:59 -07001176 struct async_submit_ctl submit;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001177 int count;
1178 int i;
Dan Williams91c00922007-01-02 13:52:30 -07001179
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001180 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001181 (unsigned long long)sh->sector);
1182
Dan Williamsac6b53b2009-07-14 13:40:19 -07001183 count = 0;
1184 xor_dest = sh->dev[pd_idx].page;
1185 xor_srcs[count++] = xor_dest;
Dan Williams91c00922007-01-02 13:52:30 -07001186 for (i = disks; i--; ) {
Dan Williamsac6b53b2009-07-14 13:40:19 -07001187 if (i == pd_idx || i == qd_idx)
1188 continue;
1189 xor_srcs[count++] = sh->dev[i].page;
Dan Williams91c00922007-01-02 13:52:30 -07001190 }
1191
Dan Williamsd6f38f32009-07-14 11:50:52 -07001192 init_async_submit(&submit, 0, NULL, NULL, NULL,
1193 to_addr_conv(sh, percpu));
Dan Williams099f53c2009-04-08 14:28:37 -07001194 tx = async_xor_val(xor_dest, xor_srcs, 0, count, STRIPE_SIZE,
Dan Williamsa08abd82009-06-03 11:43:59 -07001195 &sh->ops.zero_sum_result, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001196
Dan Williams91c00922007-01-02 13:52:30 -07001197 atomic_inc(&sh->count);
Dan Williamsa08abd82009-06-03 11:43:59 -07001198 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_check, sh, NULL);
1199 tx = async_trigger_callback(&submit);
Dan Williams91c00922007-01-02 13:52:30 -07001200}
1201
Dan Williamsac6b53b2009-07-14 13:40:19 -07001202static void ops_run_check_pq(struct stripe_head *sh, struct raid5_percpu *percpu, int checkp)
1203{
1204 struct page **srcs = percpu->scribble;
1205 struct async_submit_ctl submit;
1206 int count;
1207
1208 pr_debug("%s: stripe %llu checkp: %d\n", __func__,
1209 (unsigned long long)sh->sector, checkp);
1210
1211 count = set_syndrome_sources(srcs, sh);
1212 if (!checkp)
1213 srcs[count] = NULL;
1214
1215 atomic_inc(&sh->count);
1216 init_async_submit(&submit, ASYNC_TX_ACK, NULL, ops_complete_check,
1217 sh, to_addr_conv(sh, percpu));
1218 async_syndrome_val(srcs, 0, count+2, STRIPE_SIZE,
1219 &sh->ops.zero_sum_result, percpu->spare_page, &submit);
1220}
1221
Dan Williams417b8d42009-10-16 16:25:22 +11001222static void __raid_run_ops(struct stripe_head *sh, unsigned long ops_request)
Dan Williams91c00922007-01-02 13:52:30 -07001223{
1224 int overlap_clear = 0, i, disks = sh->disks;
1225 struct dma_async_tx_descriptor *tx = NULL;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001226 raid5_conf_t *conf = sh->raid_conf;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001227 int level = conf->level;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001228 struct raid5_percpu *percpu;
1229 unsigned long cpu;
Dan Williams91c00922007-01-02 13:52:30 -07001230
Dan Williamsd6f38f32009-07-14 11:50:52 -07001231 cpu = get_cpu();
1232 percpu = per_cpu_ptr(conf->percpu, cpu);
Dan Williams83de75c2008-06-28 08:31:58 +10001233 if (test_bit(STRIPE_OP_BIOFILL, &ops_request)) {
Dan Williams91c00922007-01-02 13:52:30 -07001234 ops_run_biofill(sh);
1235 overlap_clear++;
1236 }
1237
Dan Williams7b3a8712008-06-28 08:32:09 +10001238 if (test_bit(STRIPE_OP_COMPUTE_BLK, &ops_request)) {
Dan Williamsac6b53b2009-07-14 13:40:19 -07001239 if (level < 6)
1240 tx = ops_run_compute5(sh, percpu);
1241 else {
1242 if (sh->ops.target2 < 0 || sh->ops.target < 0)
1243 tx = ops_run_compute6_1(sh, percpu);
1244 else
1245 tx = ops_run_compute6_2(sh, percpu);
1246 }
1247 /* terminate the chain if reconstruct is not set to be run */
1248 if (tx && !test_bit(STRIPE_OP_RECONSTRUCT, &ops_request))
Dan Williams7b3a8712008-06-28 08:32:09 +10001249 async_tx_ack(tx);
1250 }
Dan Williams91c00922007-01-02 13:52:30 -07001251
Dan Williams600aa102008-06-28 08:32:05 +10001252 if (test_bit(STRIPE_OP_PREXOR, &ops_request))
Dan Williamsd6f38f32009-07-14 11:50:52 -07001253 tx = ops_run_prexor(sh, percpu, tx);
Dan Williams91c00922007-01-02 13:52:30 -07001254
Dan Williams600aa102008-06-28 08:32:05 +10001255 if (test_bit(STRIPE_OP_BIODRAIN, &ops_request)) {
Dan Williamsd8ee0722008-06-28 08:32:06 +10001256 tx = ops_run_biodrain(sh, tx);
Dan Williams91c00922007-01-02 13:52:30 -07001257 overlap_clear++;
1258 }
1259
Dan Williamsac6b53b2009-07-14 13:40:19 -07001260 if (test_bit(STRIPE_OP_RECONSTRUCT, &ops_request)) {
1261 if (level < 6)
1262 ops_run_reconstruct5(sh, percpu, tx);
1263 else
1264 ops_run_reconstruct6(sh, percpu, tx);
1265 }
Dan Williams91c00922007-01-02 13:52:30 -07001266
Dan Williamsac6b53b2009-07-14 13:40:19 -07001267 if (test_bit(STRIPE_OP_CHECK, &ops_request)) {
1268 if (sh->check_state == check_state_run)
1269 ops_run_check_p(sh, percpu);
1270 else if (sh->check_state == check_state_run_q)
1271 ops_run_check_pq(sh, percpu, 0);
1272 else if (sh->check_state == check_state_run_pq)
1273 ops_run_check_pq(sh, percpu, 1);
1274 else
1275 BUG();
1276 }
Dan Williams91c00922007-01-02 13:52:30 -07001277
Dan Williams91c00922007-01-02 13:52:30 -07001278 if (overlap_clear)
1279 for (i = disks; i--; ) {
1280 struct r5dev *dev = &sh->dev[i];
1281 if (test_and_clear_bit(R5_Overlap, &dev->flags))
1282 wake_up(&sh->raid_conf->wait_for_overlap);
1283 }
Dan Williamsd6f38f32009-07-14 11:50:52 -07001284 put_cpu();
Dan Williams91c00922007-01-02 13:52:30 -07001285}
1286
Dan Williams417b8d42009-10-16 16:25:22 +11001287#ifdef CONFIG_MULTICORE_RAID456
1288static void async_run_ops(void *param, async_cookie_t cookie)
1289{
1290 struct stripe_head *sh = param;
1291 unsigned long ops_request = sh->ops.request;
1292
1293 clear_bit_unlock(STRIPE_OPS_REQ_PENDING, &sh->state);
1294 wake_up(&sh->ops.wait_for_ops);
1295
1296 __raid_run_ops(sh, ops_request);
1297 release_stripe(sh);
1298}
1299
1300static void raid_run_ops(struct stripe_head *sh, unsigned long ops_request)
1301{
1302 /* since handle_stripe can be called outside of raid5d context
1303 * we need to ensure sh->ops.request is de-staged before another
1304 * request arrives
1305 */
1306 wait_event(sh->ops.wait_for_ops,
1307 !test_and_set_bit_lock(STRIPE_OPS_REQ_PENDING, &sh->state));
1308 sh->ops.request = ops_request;
1309
1310 atomic_inc(&sh->count);
1311 async_schedule(async_run_ops, sh);
1312}
1313#else
1314#define raid_run_ops __raid_run_ops
1315#endif
1316
NeilBrown3f294f42005-11-08 21:39:25 -08001317static int grow_one_stripe(raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318{
1319 struct stripe_head *sh;
NeilBrown3f294f42005-11-08 21:39:25 -08001320 sh = kmem_cache_alloc(conf->slab_cache, GFP_KERNEL);
1321 if (!sh)
1322 return 0;
NeilBrowne4e11e32010-06-16 16:45:16 +10001323 memset(sh, 0, sizeof(*sh) + (conf->pool_size-1)*sizeof(struct r5dev));
NeilBrown3f294f42005-11-08 21:39:25 -08001324 sh->raid_conf = conf;
1325 spin_lock_init(&sh->lock);
Dan Williams417b8d42009-10-16 16:25:22 +11001326 #ifdef CONFIG_MULTICORE_RAID456
1327 init_waitqueue_head(&sh->ops.wait_for_ops);
1328 #endif
NeilBrown3f294f42005-11-08 21:39:25 -08001329
NeilBrowne4e11e32010-06-16 16:45:16 +10001330 if (grow_buffers(sh)) {
1331 shrink_buffers(sh);
NeilBrown3f294f42005-11-08 21:39:25 -08001332 kmem_cache_free(conf->slab_cache, sh);
1333 return 0;
1334 }
1335 /* we just created an active stripe so... */
1336 atomic_set(&sh->count, 1);
1337 atomic_inc(&conf->active_stripes);
1338 INIT_LIST_HEAD(&sh->lru);
1339 release_stripe(sh);
1340 return 1;
1341}
1342
1343static int grow_stripes(raid5_conf_t *conf, int num)
1344{
Christoph Lametere18b8902006-12-06 20:33:20 -08001345 struct kmem_cache *sc;
NeilBrown5e5e3e72009-10-16 16:35:30 +11001346 int devs = max(conf->raid_disks, conf->previous_raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
NeilBrownf4be6b42010-06-01 19:37:25 +10001348 if (conf->mddev->gendisk)
1349 sprintf(conf->cache_name[0],
1350 "raid%d-%s", conf->level, mdname(conf->mddev));
1351 else
1352 sprintf(conf->cache_name[0],
1353 "raid%d-%p", conf->level, conf->mddev);
1354 sprintf(conf->cache_name[1], "%s-alt", conf->cache_name[0]);
1355
NeilBrownad01c9e2006-03-27 01:18:07 -08001356 conf->active_name = 0;
1357 sc = kmem_cache_create(conf->cache_name[conf->active_name],
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 sizeof(struct stripe_head)+(devs-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +09001359 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 if (!sc)
1361 return 1;
1362 conf->slab_cache = sc;
NeilBrownad01c9e2006-03-27 01:18:07 -08001363 conf->pool_size = devs;
NeilBrown16a53ec2006-06-26 00:27:38 -07001364 while (num--)
NeilBrown3f294f42005-11-08 21:39:25 -08001365 if (!grow_one_stripe(conf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 return 0;
1368}
NeilBrown29269552006-03-27 01:18:10 -08001369
Dan Williamsd6f38f32009-07-14 11:50:52 -07001370/**
1371 * scribble_len - return the required size of the scribble region
1372 * @num - total number of disks in the array
1373 *
1374 * The size must be enough to contain:
1375 * 1/ a struct page pointer for each device in the array +2
1376 * 2/ room to convert each entry in (1) to its corresponding dma
1377 * (dma_map_page()) or page (page_address()) address.
1378 *
1379 * Note: the +2 is for the destination buffers of the ddf/raid6 case where we
1380 * calculate over all devices (not just the data blocks), using zeros in place
1381 * of the P and Q blocks.
1382 */
1383static size_t scribble_len(int num)
1384{
1385 size_t len;
1386
1387 len = sizeof(struct page *) * (num+2) + sizeof(addr_conv_t) * (num+2);
1388
1389 return len;
1390}
1391
NeilBrownad01c9e2006-03-27 01:18:07 -08001392static int resize_stripes(raid5_conf_t *conf, int newsize)
1393{
1394 /* Make all the stripes able to hold 'newsize' devices.
1395 * New slots in each stripe get 'page' set to a new page.
1396 *
1397 * This happens in stages:
1398 * 1/ create a new kmem_cache and allocate the required number of
1399 * stripe_heads.
1400 * 2/ gather all the old stripe_heads and tranfer the pages across
1401 * to the new stripe_heads. This will have the side effect of
1402 * freezing the array as once all stripe_heads have been collected,
1403 * no IO will be possible. Old stripe heads are freed once their
1404 * pages have been transferred over, and the old kmem_cache is
1405 * freed when all stripes are done.
1406 * 3/ reallocate conf->disks to be suitable bigger. If this fails,
1407 * we simple return a failre status - no need to clean anything up.
1408 * 4/ allocate new pages for the new slots in the new stripe_heads.
1409 * If this fails, we don't bother trying the shrink the
1410 * stripe_heads down again, we just leave them as they are.
1411 * As each stripe_head is processed the new one is released into
1412 * active service.
1413 *
1414 * Once step2 is started, we cannot afford to wait for a write,
1415 * so we use GFP_NOIO allocations.
1416 */
1417 struct stripe_head *osh, *nsh;
1418 LIST_HEAD(newstripes);
1419 struct disk_info *ndisks;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001420 unsigned long cpu;
Dan Williamsb5470dc2008-06-27 21:44:04 -07001421 int err;
Christoph Lametere18b8902006-12-06 20:33:20 -08001422 struct kmem_cache *sc;
NeilBrownad01c9e2006-03-27 01:18:07 -08001423 int i;
1424
1425 if (newsize <= conf->pool_size)
1426 return 0; /* never bother to shrink */
1427
Dan Williamsb5470dc2008-06-27 21:44:04 -07001428 err = md_allow_write(conf->mddev);
1429 if (err)
1430 return err;
NeilBrown2a2275d2007-01-26 00:57:11 -08001431
NeilBrownad01c9e2006-03-27 01:18:07 -08001432 /* Step 1 */
1433 sc = kmem_cache_create(conf->cache_name[1-conf->active_name],
1434 sizeof(struct stripe_head)+(newsize-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +09001435 0, 0, NULL);
NeilBrownad01c9e2006-03-27 01:18:07 -08001436 if (!sc)
1437 return -ENOMEM;
1438
1439 for (i = conf->max_nr_stripes; i; i--) {
1440 nsh = kmem_cache_alloc(sc, GFP_KERNEL);
1441 if (!nsh)
1442 break;
1443
1444 memset(nsh, 0, sizeof(*nsh) + (newsize-1)*sizeof(struct r5dev));
1445
1446 nsh->raid_conf = conf;
1447 spin_lock_init(&nsh->lock);
Dan Williams417b8d42009-10-16 16:25:22 +11001448 #ifdef CONFIG_MULTICORE_RAID456
1449 init_waitqueue_head(&nsh->ops.wait_for_ops);
1450 #endif
NeilBrownad01c9e2006-03-27 01:18:07 -08001451
1452 list_add(&nsh->lru, &newstripes);
1453 }
1454 if (i) {
1455 /* didn't get enough, give up */
1456 while (!list_empty(&newstripes)) {
1457 nsh = list_entry(newstripes.next, struct stripe_head, lru);
1458 list_del(&nsh->lru);
1459 kmem_cache_free(sc, nsh);
1460 }
1461 kmem_cache_destroy(sc);
1462 return -ENOMEM;
1463 }
1464 /* Step 2 - Must use GFP_NOIO now.
1465 * OK, we have enough stripes, start collecting inactive
1466 * stripes and copying them over
1467 */
1468 list_for_each_entry(nsh, &newstripes, lru) {
1469 spin_lock_irq(&conf->device_lock);
1470 wait_event_lock_irq(conf->wait_for_stripe,
1471 !list_empty(&conf->inactive_list),
1472 conf->device_lock,
Jens Axboe7eaceac2011-03-10 08:52:07 +01001473 blk_flush_plug(current));
NeilBrownad01c9e2006-03-27 01:18:07 -08001474 osh = get_free_stripe(conf);
1475 spin_unlock_irq(&conf->device_lock);
1476 atomic_set(&nsh->count, 1);
1477 for(i=0; i<conf->pool_size; i++)
1478 nsh->dev[i].page = osh->dev[i].page;
1479 for( ; i<newsize; i++)
1480 nsh->dev[i].page = NULL;
1481 kmem_cache_free(conf->slab_cache, osh);
1482 }
1483 kmem_cache_destroy(conf->slab_cache);
1484
1485 /* Step 3.
1486 * At this point, we are holding all the stripes so the array
1487 * is completely stalled, so now is a good time to resize
Dan Williamsd6f38f32009-07-14 11:50:52 -07001488 * conf->disks and the scribble region
NeilBrownad01c9e2006-03-27 01:18:07 -08001489 */
1490 ndisks = kzalloc(newsize * sizeof(struct disk_info), GFP_NOIO);
1491 if (ndisks) {
1492 for (i=0; i<conf->raid_disks; i++)
1493 ndisks[i] = conf->disks[i];
1494 kfree(conf->disks);
1495 conf->disks = ndisks;
1496 } else
1497 err = -ENOMEM;
1498
Dan Williamsd6f38f32009-07-14 11:50:52 -07001499 get_online_cpus();
1500 conf->scribble_len = scribble_len(newsize);
1501 for_each_present_cpu(cpu) {
1502 struct raid5_percpu *percpu;
1503 void *scribble;
1504
1505 percpu = per_cpu_ptr(conf->percpu, cpu);
1506 scribble = kmalloc(conf->scribble_len, GFP_NOIO);
1507
1508 if (scribble) {
1509 kfree(percpu->scribble);
1510 percpu->scribble = scribble;
1511 } else {
1512 err = -ENOMEM;
1513 break;
1514 }
1515 }
1516 put_online_cpus();
1517
NeilBrownad01c9e2006-03-27 01:18:07 -08001518 /* Step 4, return new stripes to service */
1519 while(!list_empty(&newstripes)) {
1520 nsh = list_entry(newstripes.next, struct stripe_head, lru);
1521 list_del_init(&nsh->lru);
Dan Williamsd6f38f32009-07-14 11:50:52 -07001522
NeilBrownad01c9e2006-03-27 01:18:07 -08001523 for (i=conf->raid_disks; i < newsize; i++)
1524 if (nsh->dev[i].page == NULL) {
1525 struct page *p = alloc_page(GFP_NOIO);
1526 nsh->dev[i].page = p;
1527 if (!p)
1528 err = -ENOMEM;
1529 }
1530 release_stripe(nsh);
1531 }
1532 /* critical section pass, GFP_NOIO no longer needed */
1533
1534 conf->slab_cache = sc;
1535 conf->active_name = 1-conf->active_name;
1536 conf->pool_size = newsize;
1537 return err;
1538}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539
NeilBrown3f294f42005-11-08 21:39:25 -08001540static int drop_one_stripe(raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541{
1542 struct stripe_head *sh;
1543
NeilBrown3f294f42005-11-08 21:39:25 -08001544 spin_lock_irq(&conf->device_lock);
1545 sh = get_free_stripe(conf);
1546 spin_unlock_irq(&conf->device_lock);
1547 if (!sh)
1548 return 0;
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02001549 BUG_ON(atomic_read(&sh->count));
NeilBrowne4e11e32010-06-16 16:45:16 +10001550 shrink_buffers(sh);
NeilBrown3f294f42005-11-08 21:39:25 -08001551 kmem_cache_free(conf->slab_cache, sh);
1552 atomic_dec(&conf->active_stripes);
1553 return 1;
1554}
1555
1556static void shrink_stripes(raid5_conf_t *conf)
1557{
1558 while (drop_one_stripe(conf))
1559 ;
1560
NeilBrown29fc7e32006-02-03 03:03:41 -08001561 if (conf->slab_cache)
1562 kmem_cache_destroy(conf->slab_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 conf->slab_cache = NULL;
1564}
1565
NeilBrown6712ecf2007-09-27 12:47:43 +02001566static void raid5_end_read_request(struct bio * bi, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567{
NeilBrown99c0fb52009-03-31 14:39:38 +11001568 struct stripe_head *sh = bi->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 raid5_conf_t *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08001570 int disks = sh->disks, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
NeilBrownd6950432006-07-10 04:44:20 -07001572 char b[BDEVNAME_SIZE];
1573 mdk_rdev_t *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
1576 for (i=0 ; i<disks; i++)
1577 if (bi == &sh->dev[i].req)
1578 break;
1579
Dan Williams45b42332007-07-09 11:56:43 -07001580 pr_debug("end_read_request %llu/%d, count: %d, uptodate %d.\n",
1581 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 uptodate);
1583 if (i == disks) {
1584 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02001585 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 }
1587
1588 if (uptodate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 set_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrown4e5314b2005-11-08 21:39:22 -08001590 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrownd6950432006-07-10 04:44:20 -07001591 rdev = conf->disks[i].rdev;
NeilBrown0c55e022010-05-03 14:09:02 +10001592 printk_rl(KERN_INFO "md/raid:%s: read error corrected"
Bernd Schubert6be9d492008-05-23 13:04:34 -07001593 " (%lu sectors at %llu on %s)\n",
1594 mdname(conf->mddev), STRIPE_SECTORS,
1595 (unsigned long long)(sh->sector
1596 + rdev->data_offset),
1597 bdevname(rdev->bdev, b));
NeilBrown4e5314b2005-11-08 21:39:22 -08001598 clear_bit(R5_ReadError, &sh->dev[i].flags);
1599 clear_bit(R5_ReWrite, &sh->dev[i].flags);
1600 }
NeilBrownba22dcb2005-11-08 21:39:31 -08001601 if (atomic_read(&conf->disks[i].rdev->read_errors))
1602 atomic_set(&conf->disks[i].rdev->read_errors, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 } else {
NeilBrownd6950432006-07-10 04:44:20 -07001604 const char *bdn = bdevname(conf->disks[i].rdev->bdev, b);
NeilBrownba22dcb2005-11-08 21:39:31 -08001605 int retry = 0;
NeilBrownd6950432006-07-10 04:44:20 -07001606 rdev = conf->disks[i].rdev;
1607
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 clear_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrownd6950432006-07-10 04:44:20 -07001609 atomic_inc(&rdev->read_errors);
Gabriele A. Trombetti7b0bb532010-04-28 11:51:17 +10001610 if (conf->mddev->degraded >= conf->max_degraded)
Bernd Schubert6be9d492008-05-23 13:04:34 -07001611 printk_rl(KERN_WARNING
NeilBrown0c55e022010-05-03 14:09:02 +10001612 "md/raid:%s: read error not correctable "
Bernd Schubert6be9d492008-05-23 13:04:34 -07001613 "(sector %llu on %s).\n",
1614 mdname(conf->mddev),
1615 (unsigned long long)(sh->sector
1616 + rdev->data_offset),
1617 bdn);
NeilBrownba22dcb2005-11-08 21:39:31 -08001618 else if (test_bit(R5_ReWrite, &sh->dev[i].flags))
NeilBrown4e5314b2005-11-08 21:39:22 -08001619 /* Oh, no!!! */
Bernd Schubert6be9d492008-05-23 13:04:34 -07001620 printk_rl(KERN_WARNING
NeilBrown0c55e022010-05-03 14:09:02 +10001621 "md/raid:%s: read error NOT corrected!! "
Bernd Schubert6be9d492008-05-23 13:04:34 -07001622 "(sector %llu on %s).\n",
1623 mdname(conf->mddev),
1624 (unsigned long long)(sh->sector
1625 + rdev->data_offset),
1626 bdn);
NeilBrownd6950432006-07-10 04:44:20 -07001627 else if (atomic_read(&rdev->read_errors)
NeilBrownba22dcb2005-11-08 21:39:31 -08001628 > conf->max_nr_stripes)
NeilBrown14f8d262006-01-06 00:20:14 -08001629 printk(KERN_WARNING
NeilBrown0c55e022010-05-03 14:09:02 +10001630 "md/raid:%s: Too many read errors, failing device %s.\n",
NeilBrownd6950432006-07-10 04:44:20 -07001631 mdname(conf->mddev), bdn);
NeilBrownba22dcb2005-11-08 21:39:31 -08001632 else
1633 retry = 1;
1634 if (retry)
1635 set_bit(R5_ReadError, &sh->dev[i].flags);
1636 else {
NeilBrown4e5314b2005-11-08 21:39:22 -08001637 clear_bit(R5_ReadError, &sh->dev[i].flags);
1638 clear_bit(R5_ReWrite, &sh->dev[i].flags);
NeilBrownd6950432006-07-10 04:44:20 -07001639 md_error(conf->mddev, rdev);
NeilBrownba22dcb2005-11-08 21:39:31 -08001640 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 }
1642 rdev_dec_pending(conf->disks[i].rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 clear_bit(R5_LOCKED, &sh->dev[i].flags);
1644 set_bit(STRIPE_HANDLE, &sh->state);
1645 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646}
1647
NeilBrownd710e132008-10-13 11:55:12 +11001648static void raid5_end_write_request(struct bio *bi, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649{
NeilBrown99c0fb52009-03-31 14:39:38 +11001650 struct stripe_head *sh = bi->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 raid5_conf_t *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08001652 int disks = sh->disks, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
1654
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 for (i=0 ; i<disks; i++)
1656 if (bi == &sh->dev[i].req)
1657 break;
1658
Dan Williams45b42332007-07-09 11:56:43 -07001659 pr_debug("end_write_request %llu/%d, count %d, uptodate: %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
1661 uptodate);
1662 if (i == disks) {
1663 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02001664 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 }
1666
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 if (!uptodate)
1668 md_error(conf->mddev, conf->disks[i].rdev);
1669
1670 rdev_dec_pending(conf->disks[i].rdev, conf->mddev);
1671
1672 clear_bit(R5_LOCKED, &sh->dev[i].flags);
1673 set_bit(STRIPE_HANDLE, &sh->state);
NeilBrownc04be0a2006-10-03 01:15:53 -07001674 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675}
1676
1677
NeilBrown784052e2009-03-31 15:19:07 +11001678static sector_t compute_blocknr(struct stripe_head *sh, int i, int previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
NeilBrown784052e2009-03-31 15:19:07 +11001680static void raid5_build_block(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681{
1682 struct r5dev *dev = &sh->dev[i];
1683
1684 bio_init(&dev->req);
1685 dev->req.bi_io_vec = &dev->vec;
1686 dev->req.bi_vcnt++;
1687 dev->req.bi_max_vecs++;
1688 dev->vec.bv_page = dev->page;
1689 dev->vec.bv_len = STRIPE_SIZE;
1690 dev->vec.bv_offset = 0;
1691
1692 dev->req.bi_sector = sh->sector;
1693 dev->req.bi_private = sh;
1694
1695 dev->flags = 0;
NeilBrown784052e2009-03-31 15:19:07 +11001696 dev->sector = compute_blocknr(sh, i, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697}
1698
1699static void error(mddev_t *mddev, mdk_rdev_t *rdev)
1700{
1701 char b[BDEVNAME_SIZE];
H Hartley Sweeten7b928132010-03-08 16:02:40 +11001702 raid5_conf_t *conf = mddev->private;
NeilBrown0c55e022010-05-03 14:09:02 +10001703 pr_debug("raid456: error called\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
NeilBrownb2d444d2005-11-08 21:39:31 -08001705 if (!test_bit(Faulty, &rdev->flags)) {
NeilBrown850b2b422006-10-03 01:15:46 -07001706 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrownc04be0a2006-10-03 01:15:53 -07001707 if (test_and_clear_bit(In_sync, &rdev->flags)) {
1708 unsigned long flags;
1709 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 mddev->degraded++;
NeilBrownc04be0a2006-10-03 01:15:53 -07001711 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 /*
1713 * if recovery was running, make sure it aborts.
1714 */
NeilBrowndfc70642008-05-23 13:04:39 -07001715 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 }
NeilBrownb2d444d2005-11-08 21:39:31 -08001717 set_bit(Faulty, &rdev->flags);
NeilBrownd710e132008-10-13 11:55:12 +11001718 printk(KERN_ALERT
NeilBrown0c55e022010-05-03 14:09:02 +10001719 "md/raid:%s: Disk failure on %s, disabling device.\n"
NeilBrown0c55e022010-05-03 14:09:02 +10001720 "md/raid:%s: Operation continuing on %d devices.\n",
1721 mdname(mddev),
1722 bdevname(rdev->bdev, b),
1723 mdname(mddev),
1724 conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 }
NeilBrown16a53ec2006-06-26 00:27:38 -07001726}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
1728/*
1729 * Input: a 'big' sector number,
1730 * Output: index of the data and parity disk, and the sector # in them.
1731 */
NeilBrown112bf892009-03-31 14:39:38 +11001732static sector_t raid5_compute_sector(raid5_conf_t *conf, sector_t r_sector,
NeilBrown911d4ee2009-03-31 14:39:38 +11001733 int previous, int *dd_idx,
1734 struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735{
NeilBrown6e3b96e2010-04-23 07:08:28 +10001736 sector_t stripe, stripe2;
NeilBrown35f2a592010-04-20 14:13:34 +10001737 sector_t chunk_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 unsigned int chunk_offset;
NeilBrown911d4ee2009-03-31 14:39:38 +11001739 int pd_idx, qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11001740 int ddf_layout = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 sector_t new_sector;
NeilBrowne183eae2009-03-31 15:20:22 +11001742 int algorithm = previous ? conf->prev_algo
1743 : conf->algorithm;
Andre Noll09c9e5f2009-06-18 08:45:55 +10001744 int sectors_per_chunk = previous ? conf->prev_chunk_sectors
1745 : conf->chunk_sectors;
NeilBrown112bf892009-03-31 14:39:38 +11001746 int raid_disks = previous ? conf->previous_raid_disks
1747 : conf->raid_disks;
1748 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
1750 /* First compute the information on this sector */
1751
1752 /*
1753 * Compute the chunk number and the sector offset inside the chunk
1754 */
1755 chunk_offset = sector_div(r_sector, sectors_per_chunk);
1756 chunk_number = r_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
1758 /*
1759 * Compute the stripe number
1760 */
NeilBrown35f2a592010-04-20 14:13:34 +10001761 stripe = chunk_number;
1762 *dd_idx = sector_div(stripe, data_disks);
NeilBrown6e3b96e2010-04-23 07:08:28 +10001763 stripe2 = stripe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 /*
1765 * Select the parity disk based on the user selected algorithm.
1766 */
NeilBrown911d4ee2009-03-31 14:39:38 +11001767 pd_idx = qd_idx = ~0;
NeilBrown16a53ec2006-06-26 00:27:38 -07001768 switch(conf->level) {
1769 case 4:
NeilBrown911d4ee2009-03-31 14:39:38 +11001770 pd_idx = data_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07001771 break;
1772 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11001773 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001775 pd_idx = data_disks - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001776 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 (*dd_idx)++;
1778 break;
1779 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001780 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001781 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 (*dd_idx)++;
1783 break;
1784 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001785 pd_idx = data_disks - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001786 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 break;
1788 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001789 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001790 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11001792 case ALGORITHM_PARITY_0:
1793 pd_idx = 0;
1794 (*dd_idx)++;
1795 break;
1796 case ALGORITHM_PARITY_N:
1797 pd_idx = data_disks;
1798 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11001800 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07001801 }
1802 break;
1803 case 6:
1804
NeilBrowne183eae2009-03-31 15:20:22 +11001805 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07001806 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001807 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001808 qd_idx = pd_idx + 1;
1809 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11001810 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11001811 qd_idx = 0;
1812 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07001813 (*dd_idx) += 2; /* D D P Q D */
1814 break;
1815 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001816 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001817 qd_idx = pd_idx + 1;
1818 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11001819 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11001820 qd_idx = 0;
1821 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07001822 (*dd_idx) += 2; /* D D P Q D */
1823 break;
1824 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001825 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001826 qd_idx = (pd_idx + 1) % raid_disks;
1827 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07001828 break;
1829 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001830 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001831 qd_idx = (pd_idx + 1) % raid_disks;
1832 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07001833 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11001834
1835 case ALGORITHM_PARITY_0:
1836 pd_idx = 0;
1837 qd_idx = 1;
1838 (*dd_idx) += 2;
1839 break;
1840 case ALGORITHM_PARITY_N:
1841 pd_idx = data_disks;
1842 qd_idx = data_disks + 1;
1843 break;
1844
1845 case ALGORITHM_ROTATING_ZERO_RESTART:
1846 /* Exactly the same as RIGHT_ASYMMETRIC, but or
1847 * of blocks for computing Q is different.
1848 */
NeilBrown6e3b96e2010-04-23 07:08:28 +10001849 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11001850 qd_idx = pd_idx + 1;
1851 if (pd_idx == raid_disks-1) {
1852 (*dd_idx)++; /* Q D D D P */
1853 qd_idx = 0;
1854 } else if (*dd_idx >= pd_idx)
1855 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11001856 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11001857 break;
1858
1859 case ALGORITHM_ROTATING_N_RESTART:
1860 /* Same a left_asymmetric, by first stripe is
1861 * D D D P Q rather than
1862 * Q D D D P
1863 */
NeilBrown6e3b96e2010-04-23 07:08:28 +10001864 stripe2 += 1;
1865 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11001866 qd_idx = pd_idx + 1;
1867 if (pd_idx == raid_disks-1) {
1868 (*dd_idx)++; /* Q D D D P */
1869 qd_idx = 0;
1870 } else if (*dd_idx >= pd_idx)
1871 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11001872 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11001873 break;
1874
1875 case ALGORITHM_ROTATING_N_CONTINUE:
1876 /* Same as left_symmetric but Q is before P */
NeilBrown6e3b96e2010-04-23 07:08:28 +10001877 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11001878 qd_idx = (pd_idx + raid_disks - 1) % raid_disks;
1879 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
NeilBrown67cc2b82009-03-31 14:39:38 +11001880 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11001881 break;
1882
1883 case ALGORITHM_LEFT_ASYMMETRIC_6:
1884 /* RAID5 left_asymmetric, with Q on last device */
NeilBrown6e3b96e2010-04-23 07:08:28 +10001885 pd_idx = data_disks - sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11001886 if (*dd_idx >= pd_idx)
1887 (*dd_idx)++;
1888 qd_idx = raid_disks - 1;
1889 break;
1890
1891 case ALGORITHM_RIGHT_ASYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001892 pd_idx = sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11001893 if (*dd_idx >= pd_idx)
1894 (*dd_idx)++;
1895 qd_idx = raid_disks - 1;
1896 break;
1897
1898 case ALGORITHM_LEFT_SYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001899 pd_idx = data_disks - sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11001900 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
1901 qd_idx = raid_disks - 1;
1902 break;
1903
1904 case ALGORITHM_RIGHT_SYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001905 pd_idx = sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11001906 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
1907 qd_idx = raid_disks - 1;
1908 break;
1909
1910 case ALGORITHM_PARITY_0_6:
1911 pd_idx = 0;
1912 (*dd_idx)++;
1913 qd_idx = raid_disks - 1;
1914 break;
1915
NeilBrown16a53ec2006-06-26 00:27:38 -07001916 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11001917 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07001918 }
1919 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 }
1921
NeilBrown911d4ee2009-03-31 14:39:38 +11001922 if (sh) {
1923 sh->pd_idx = pd_idx;
1924 sh->qd_idx = qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11001925 sh->ddf_layout = ddf_layout;
NeilBrown911d4ee2009-03-31 14:39:38 +11001926 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 /*
1928 * Finally, compute the new sector number
1929 */
1930 new_sector = (sector_t)stripe * sectors_per_chunk + chunk_offset;
1931 return new_sector;
1932}
1933
1934
NeilBrown784052e2009-03-31 15:19:07 +11001935static sector_t compute_blocknr(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936{
1937 raid5_conf_t *conf = sh->raid_conf;
NeilBrownb875e532006-12-10 02:20:49 -08001938 int raid_disks = sh->disks;
1939 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 sector_t new_sector = sh->sector, check;
Andre Noll09c9e5f2009-06-18 08:45:55 +10001941 int sectors_per_chunk = previous ? conf->prev_chunk_sectors
1942 : conf->chunk_sectors;
NeilBrowne183eae2009-03-31 15:20:22 +11001943 int algorithm = previous ? conf->prev_algo
1944 : conf->algorithm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 sector_t stripe;
1946 int chunk_offset;
NeilBrown35f2a592010-04-20 14:13:34 +10001947 sector_t chunk_number;
1948 int dummy1, dd_idx = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 sector_t r_sector;
NeilBrown911d4ee2009-03-31 14:39:38 +11001950 struct stripe_head sh2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
NeilBrown16a53ec2006-06-26 00:27:38 -07001952
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 chunk_offset = sector_div(new_sector, sectors_per_chunk);
1954 stripe = new_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
NeilBrown16a53ec2006-06-26 00:27:38 -07001956 if (i == sh->pd_idx)
1957 return 0;
1958 switch(conf->level) {
1959 case 4: break;
1960 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11001961 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 case ALGORITHM_LEFT_ASYMMETRIC:
1963 case ALGORITHM_RIGHT_ASYMMETRIC:
1964 if (i > sh->pd_idx)
1965 i--;
1966 break;
1967 case ALGORITHM_LEFT_SYMMETRIC:
1968 case ALGORITHM_RIGHT_SYMMETRIC:
1969 if (i < sh->pd_idx)
1970 i += raid_disks;
1971 i -= (sh->pd_idx + 1);
1972 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11001973 case ALGORITHM_PARITY_0:
1974 i -= 1;
1975 break;
1976 case ALGORITHM_PARITY_N:
1977 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11001979 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07001980 }
1981 break;
1982 case 6:
NeilBrownd0dabf72009-03-31 14:39:38 +11001983 if (i == sh->qd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07001984 return 0; /* It is the Q disk */
NeilBrowne183eae2009-03-31 15:20:22 +11001985 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07001986 case ALGORITHM_LEFT_ASYMMETRIC:
1987 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown99c0fb52009-03-31 14:39:38 +11001988 case ALGORITHM_ROTATING_ZERO_RESTART:
1989 case ALGORITHM_ROTATING_N_RESTART:
1990 if (sh->pd_idx == raid_disks-1)
1991 i--; /* Q D D D P */
NeilBrown16a53ec2006-06-26 00:27:38 -07001992 else if (i > sh->pd_idx)
1993 i -= 2; /* D D P Q D */
1994 break;
1995 case ALGORITHM_LEFT_SYMMETRIC:
1996 case ALGORITHM_RIGHT_SYMMETRIC:
1997 if (sh->pd_idx == raid_disks-1)
1998 i--; /* Q D D D P */
1999 else {
2000 /* D D P Q D */
2001 if (i < sh->pd_idx)
2002 i += raid_disks;
2003 i -= (sh->pd_idx + 2);
2004 }
2005 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002006 case ALGORITHM_PARITY_0:
2007 i -= 2;
2008 break;
2009 case ALGORITHM_PARITY_N:
2010 break;
2011 case ALGORITHM_ROTATING_N_CONTINUE:
NeilBrowne4424fe2009-10-16 16:27:34 +11002012 /* Like left_symmetric, but P is before Q */
NeilBrown99c0fb52009-03-31 14:39:38 +11002013 if (sh->pd_idx == 0)
2014 i--; /* P D D D Q */
NeilBrowne4424fe2009-10-16 16:27:34 +11002015 else {
2016 /* D D Q P D */
2017 if (i < sh->pd_idx)
2018 i += raid_disks;
2019 i -= (sh->pd_idx + 1);
2020 }
NeilBrown99c0fb52009-03-31 14:39:38 +11002021 break;
2022 case ALGORITHM_LEFT_ASYMMETRIC_6:
2023 case ALGORITHM_RIGHT_ASYMMETRIC_6:
2024 if (i > sh->pd_idx)
2025 i--;
2026 break;
2027 case ALGORITHM_LEFT_SYMMETRIC_6:
2028 case ALGORITHM_RIGHT_SYMMETRIC_6:
2029 if (i < sh->pd_idx)
2030 i += data_disks + 1;
2031 i -= (sh->pd_idx + 1);
2032 break;
2033 case ALGORITHM_PARITY_0_6:
2034 i -= 1;
2035 break;
NeilBrown16a53ec2006-06-26 00:27:38 -07002036 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002037 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002038 }
2039 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 }
2041
2042 chunk_number = stripe * data_disks + i;
NeilBrown35f2a592010-04-20 14:13:34 +10002043 r_sector = chunk_number * sectors_per_chunk + chunk_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
NeilBrown112bf892009-03-31 14:39:38 +11002045 check = raid5_compute_sector(conf, r_sector,
NeilBrown784052e2009-03-31 15:19:07 +11002046 previous, &dummy1, &sh2);
NeilBrown911d4ee2009-03-31 14:39:38 +11002047 if (check != sh->sector || dummy1 != dd_idx || sh2.pd_idx != sh->pd_idx
2048 || sh2.qd_idx != sh->qd_idx) {
NeilBrown0c55e022010-05-03 14:09:02 +10002049 printk(KERN_ERR "md/raid:%s: compute_blocknr: map not correct\n",
2050 mdname(conf->mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 return 0;
2052 }
2053 return r_sector;
2054}
2055
2056
Dan Williams600aa102008-06-28 08:32:05 +10002057static void
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002058schedule_reconstruction(struct stripe_head *sh, struct stripe_head_state *s,
Dan Williams600aa102008-06-28 08:32:05 +10002059 int rcw, int expand)
Dan Williamse33129d2007-01-02 13:52:30 -07002060{
2061 int i, pd_idx = sh->pd_idx, disks = sh->disks;
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002062 raid5_conf_t *conf = sh->raid_conf;
2063 int level = conf->level;
NeilBrown16a53ec2006-06-26 00:27:38 -07002064
Dan Williamse33129d2007-01-02 13:52:30 -07002065 if (rcw) {
2066 /* if we are not expanding this is a proper write request, and
2067 * there will be bios with new data to be drained into the
2068 * stripe cache
2069 */
2070 if (!expand) {
Dan Williams600aa102008-06-28 08:32:05 +10002071 sh->reconstruct_state = reconstruct_state_drain_run;
2072 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
2073 } else
2074 sh->reconstruct_state = reconstruct_state_run;
Dan Williamse33129d2007-01-02 13:52:30 -07002075
Dan Williamsac6b53b2009-07-14 13:40:19 -07002076 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07002077
2078 for (i = disks; i--; ) {
2079 struct r5dev *dev = &sh->dev[i];
2080
2081 if (dev->towrite) {
2082 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsd8ee0722008-06-28 08:32:06 +10002083 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07002084 if (!expand)
2085 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10002086 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002087 }
2088 }
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002089 if (s->locked + conf->max_degraded == disks)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002090 if (!test_and_set_bit(STRIPE_FULL_WRITE, &sh->state))
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002091 atomic_inc(&conf->pending_full_writes);
Dan Williamse33129d2007-01-02 13:52:30 -07002092 } else {
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002093 BUG_ON(level == 6);
Dan Williamse33129d2007-01-02 13:52:30 -07002094 BUG_ON(!(test_bit(R5_UPTODATE, &sh->dev[pd_idx].flags) ||
2095 test_bit(R5_Wantcompute, &sh->dev[pd_idx].flags)));
2096
Dan Williamsd8ee0722008-06-28 08:32:06 +10002097 sh->reconstruct_state = reconstruct_state_prexor_drain_run;
Dan Williams600aa102008-06-28 08:32:05 +10002098 set_bit(STRIPE_OP_PREXOR, &s->ops_request);
2099 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
Dan Williamsac6b53b2009-07-14 13:40:19 -07002100 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07002101
2102 for (i = disks; i--; ) {
2103 struct r5dev *dev = &sh->dev[i];
2104 if (i == pd_idx)
2105 continue;
2106
Dan Williamse33129d2007-01-02 13:52:30 -07002107 if (dev->towrite &&
2108 (test_bit(R5_UPTODATE, &dev->flags) ||
Dan Williamsd8ee0722008-06-28 08:32:06 +10002109 test_bit(R5_Wantcompute, &dev->flags))) {
2110 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07002111 set_bit(R5_LOCKED, &dev->flags);
2112 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10002113 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002114 }
2115 }
2116 }
2117
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002118 /* keep the parity disk(s) locked while asynchronous operations
Dan Williamse33129d2007-01-02 13:52:30 -07002119 * are in flight
2120 */
2121 set_bit(R5_LOCKED, &sh->dev[pd_idx].flags);
2122 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
Dan Williams600aa102008-06-28 08:32:05 +10002123 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002124
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002125 if (level == 6) {
2126 int qd_idx = sh->qd_idx;
2127 struct r5dev *dev = &sh->dev[qd_idx];
2128
2129 set_bit(R5_LOCKED, &dev->flags);
2130 clear_bit(R5_UPTODATE, &dev->flags);
2131 s->locked++;
2132 }
2133
Dan Williams600aa102008-06-28 08:32:05 +10002134 pr_debug("%s: stripe %llu locked: %d ops_request: %lx\n",
Harvey Harrisone46b272b2008-04-28 02:15:50 -07002135 __func__, (unsigned long long)sh->sector,
Dan Williams600aa102008-06-28 08:32:05 +10002136 s->locked, s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07002137}
NeilBrown16a53ec2006-06-26 00:27:38 -07002138
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139/*
2140 * Each stripe/dev can have one or more bion attached.
NeilBrown16a53ec2006-06-26 00:27:38 -07002141 * toread/towrite point to the first in a chain.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 * The bi_next chain must be in order.
2143 */
2144static int add_stripe_bio(struct stripe_head *sh, struct bio *bi, int dd_idx, int forwrite)
2145{
2146 struct bio **bip;
2147 raid5_conf_t *conf = sh->raid_conf;
NeilBrown72626682005-09-09 16:23:54 -07002148 int firstwrite=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
Dan Williams45b42332007-07-09 11:56:43 -07002150 pr_debug("adding bh b#%llu to stripe s#%llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 (unsigned long long)bi->bi_sector,
2152 (unsigned long long)sh->sector);
2153
2154
2155 spin_lock(&sh->lock);
2156 spin_lock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07002157 if (forwrite) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 bip = &sh->dev[dd_idx].towrite;
NeilBrown72626682005-09-09 16:23:54 -07002159 if (*bip == NULL && sh->dev[dd_idx].written == NULL)
2160 firstwrite = 1;
2161 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 bip = &sh->dev[dd_idx].toread;
2163 while (*bip && (*bip)->bi_sector < bi->bi_sector) {
2164 if ((*bip)->bi_sector + ((*bip)->bi_size >> 9) > bi->bi_sector)
2165 goto overlap;
2166 bip = & (*bip)->bi_next;
2167 }
2168 if (*bip && (*bip)->bi_sector < bi->bi_sector + ((bi->bi_size)>>9))
2169 goto overlap;
2170
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02002171 BUG_ON(*bip && bi->bi_next && (*bip) != bi->bi_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 if (*bip)
2173 bi->bi_next = *bip;
2174 *bip = bi;
Jens Axboe960e7392008-08-15 10:41:18 +02002175 bi->bi_phys_segments++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 spin_unlock_irq(&conf->device_lock);
2177 spin_unlock(&sh->lock);
2178
Dan Williams45b42332007-07-09 11:56:43 -07002179 pr_debug("added bi b#%llu to stripe s#%llu, disk %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 (unsigned long long)bi->bi_sector,
2181 (unsigned long long)sh->sector, dd_idx);
2182
NeilBrown72626682005-09-09 16:23:54 -07002183 if (conf->mddev->bitmap && firstwrite) {
NeilBrown72626682005-09-09 16:23:54 -07002184 bitmap_startwrite(conf->mddev->bitmap, sh->sector,
2185 STRIPE_SECTORS, 0);
NeilBrownae3c20c2006-07-10 04:44:17 -07002186 sh->bm_seq = conf->seq_flush+1;
NeilBrown72626682005-09-09 16:23:54 -07002187 set_bit(STRIPE_BIT_DELAY, &sh->state);
2188 }
2189
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 if (forwrite) {
2191 /* check if page is covered */
2192 sector_t sector = sh->dev[dd_idx].sector;
2193 for (bi=sh->dev[dd_idx].towrite;
2194 sector < sh->dev[dd_idx].sector + STRIPE_SECTORS &&
2195 bi && bi->bi_sector <= sector;
2196 bi = r5_next_bio(bi, sh->dev[dd_idx].sector)) {
2197 if (bi->bi_sector + (bi->bi_size>>9) >= sector)
2198 sector = bi->bi_sector + (bi->bi_size>>9);
2199 }
2200 if (sector >= sh->dev[dd_idx].sector + STRIPE_SECTORS)
2201 set_bit(R5_OVERWRITE, &sh->dev[dd_idx].flags);
2202 }
2203 return 1;
2204
2205 overlap:
2206 set_bit(R5_Overlap, &sh->dev[dd_idx].flags);
2207 spin_unlock_irq(&conf->device_lock);
2208 spin_unlock(&sh->lock);
2209 return 0;
2210}
2211
NeilBrown29269552006-03-27 01:18:10 -08002212static void end_reshape(raid5_conf_t *conf);
2213
NeilBrown911d4ee2009-03-31 14:39:38 +11002214static void stripe_set_idx(sector_t stripe, raid5_conf_t *conf, int previous,
2215 struct stripe_head *sh)
NeilBrownccfcc3c2006-03-27 01:18:09 -08002216{
NeilBrown784052e2009-03-31 15:19:07 +11002217 int sectors_per_chunk =
Andre Noll09c9e5f2009-06-18 08:45:55 +10002218 previous ? conf->prev_chunk_sectors : conf->chunk_sectors;
NeilBrown911d4ee2009-03-31 14:39:38 +11002219 int dd_idx;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07002220 int chunk_offset = sector_div(stripe, sectors_per_chunk);
NeilBrown112bf892009-03-31 14:39:38 +11002221 int disks = previous ? conf->previous_raid_disks : conf->raid_disks;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07002222
NeilBrown112bf892009-03-31 14:39:38 +11002223 raid5_compute_sector(conf,
2224 stripe * (disks - conf->max_degraded)
NeilBrownb875e532006-12-10 02:20:49 -08002225 *sectors_per_chunk + chunk_offset,
NeilBrown112bf892009-03-31 14:39:38 +11002226 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11002227 &dd_idx, sh);
NeilBrownccfcc3c2006-03-27 01:18:09 -08002228}
2229
Dan Williamsa4456852007-07-09 11:56:43 -07002230static void
Dan Williams1fe797e2008-06-28 09:16:30 +10002231handle_failed_stripe(raid5_conf_t *conf, struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07002232 struct stripe_head_state *s, int disks,
2233 struct bio **return_bi)
2234{
2235 int i;
2236 for (i = disks; i--; ) {
2237 struct bio *bi;
2238 int bitmap_end = 0;
2239
2240 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
2241 mdk_rdev_t *rdev;
2242 rcu_read_lock();
2243 rdev = rcu_dereference(conf->disks[i].rdev);
2244 if (rdev && test_bit(In_sync, &rdev->flags))
2245 /* multiple read failures in one stripe */
2246 md_error(conf->mddev, rdev);
2247 rcu_read_unlock();
2248 }
2249 spin_lock_irq(&conf->device_lock);
2250 /* fail all writes first */
2251 bi = sh->dev[i].towrite;
2252 sh->dev[i].towrite = NULL;
2253 if (bi) {
2254 s->to_write--;
2255 bitmap_end = 1;
2256 }
2257
2258 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
2259 wake_up(&conf->wait_for_overlap);
2260
2261 while (bi && bi->bi_sector <
2262 sh->dev[i].sector + STRIPE_SECTORS) {
2263 struct bio *nextbi = r5_next_bio(bi, sh->dev[i].sector);
2264 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Jens Axboe960e7392008-08-15 10:41:18 +02002265 if (!raid5_dec_bi_phys_segments(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002266 md_write_end(conf->mddev);
2267 bi->bi_next = *return_bi;
2268 *return_bi = bi;
2269 }
2270 bi = nextbi;
2271 }
2272 /* and fail all 'written' */
2273 bi = sh->dev[i].written;
2274 sh->dev[i].written = NULL;
2275 if (bi) bitmap_end = 1;
2276 while (bi && bi->bi_sector <
2277 sh->dev[i].sector + STRIPE_SECTORS) {
2278 struct bio *bi2 = r5_next_bio(bi, sh->dev[i].sector);
2279 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Jens Axboe960e7392008-08-15 10:41:18 +02002280 if (!raid5_dec_bi_phys_segments(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002281 md_write_end(conf->mddev);
2282 bi->bi_next = *return_bi;
2283 *return_bi = bi;
2284 }
2285 bi = bi2;
2286 }
2287
Dan Williamsb5e98d62007-01-02 13:52:31 -07002288 /* fail any reads if this device is non-operational and
2289 * the data has not reached the cache yet.
2290 */
2291 if (!test_bit(R5_Wantfill, &sh->dev[i].flags) &&
2292 (!test_bit(R5_Insync, &sh->dev[i].flags) ||
2293 test_bit(R5_ReadError, &sh->dev[i].flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07002294 bi = sh->dev[i].toread;
2295 sh->dev[i].toread = NULL;
2296 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
2297 wake_up(&conf->wait_for_overlap);
2298 if (bi) s->to_read--;
2299 while (bi && bi->bi_sector <
2300 sh->dev[i].sector + STRIPE_SECTORS) {
2301 struct bio *nextbi =
2302 r5_next_bio(bi, sh->dev[i].sector);
2303 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Jens Axboe960e7392008-08-15 10:41:18 +02002304 if (!raid5_dec_bi_phys_segments(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002305 bi->bi_next = *return_bi;
2306 *return_bi = bi;
2307 }
2308 bi = nextbi;
2309 }
2310 }
2311 spin_unlock_irq(&conf->device_lock);
2312 if (bitmap_end)
2313 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
2314 STRIPE_SECTORS, 0, 0);
2315 }
2316
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002317 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
2318 if (atomic_dec_and_test(&conf->pending_full_writes))
2319 md_wakeup_thread(conf->mddev->thread);
Dan Williamsa4456852007-07-09 11:56:43 -07002320}
2321
Dan Williams1fe797e2008-06-28 09:16:30 +10002322/* fetch_block5 - checks the given member device to see if its data needs
2323 * to be read or computed to satisfy a request.
2324 *
2325 * Returns 1 when no more member devices need to be checked, otherwise returns
2326 * 0 to tell the loop in handle_stripe_fill5 to continue
Dan Williamsf38e1212007-01-02 13:52:30 -07002327 */
Dan Williams1fe797e2008-06-28 09:16:30 +10002328static int fetch_block5(struct stripe_head *sh, struct stripe_head_state *s,
2329 int disk_idx, int disks)
Dan Williamsf38e1212007-01-02 13:52:30 -07002330{
2331 struct r5dev *dev = &sh->dev[disk_idx];
2332 struct r5dev *failed_dev = &sh->dev[s->failed_num];
2333
Dan Williamsf38e1212007-01-02 13:52:30 -07002334 /* is the data in this block needed, and can we get it? */
2335 if (!test_bit(R5_LOCKED, &dev->flags) &&
Dan Williams1fe797e2008-06-28 09:16:30 +10002336 !test_bit(R5_UPTODATE, &dev->flags) &&
2337 (dev->toread ||
2338 (dev->towrite && !test_bit(R5_OVERWRITE, &dev->flags)) ||
2339 s->syncing || s->expanding ||
2340 (s->failed &&
2341 (failed_dev->toread ||
2342 (failed_dev->towrite &&
2343 !test_bit(R5_OVERWRITE, &failed_dev->flags)))))) {
Dan Williams976ea8d2008-06-28 08:32:03 +10002344 /* We would like to get this block, possibly by computing it,
2345 * otherwise read it if the backing disk is insync
Dan Williamsf38e1212007-01-02 13:52:30 -07002346 */
2347 if ((s->uptodate == disks - 1) &&
Dan Williamsecc65c92008-06-28 08:31:57 +10002348 (s->failed && disk_idx == s->failed_num)) {
Dan Williams976ea8d2008-06-28 08:32:03 +10002349 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
2350 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
Dan Williamsf38e1212007-01-02 13:52:30 -07002351 set_bit(R5_Wantcompute, &dev->flags);
2352 sh->ops.target = disk_idx;
Dan Williamsac6b53b2009-07-14 13:40:19 -07002353 sh->ops.target2 = -1;
Dan Williamsf38e1212007-01-02 13:52:30 -07002354 s->req_compute = 1;
Dan Williamsf38e1212007-01-02 13:52:30 -07002355 /* Careful: from this point on 'uptodate' is in the eye
Dan Williamsac6b53b2009-07-14 13:40:19 -07002356 * of raid_run_ops which services 'compute' operations
Dan Williamsf38e1212007-01-02 13:52:30 -07002357 * before writes. R5_Wantcompute flags a block that will
2358 * be R5_UPTODATE by the time it is needed for a
2359 * subsequent operation.
2360 */
2361 s->uptodate++;
Dan Williams1fe797e2008-06-28 09:16:30 +10002362 return 1; /* uptodate + compute == disks */
Dan Williams7a1fc532008-07-10 04:54:57 -07002363 } else if (test_bit(R5_Insync, &dev->flags)) {
Dan Williamsf38e1212007-01-02 13:52:30 -07002364 set_bit(R5_LOCKED, &dev->flags);
2365 set_bit(R5_Wantread, &dev->flags);
Dan Williamsf38e1212007-01-02 13:52:30 -07002366 s->locked++;
2367 pr_debug("Reading block %d (sync=%d)\n", disk_idx,
2368 s->syncing);
2369 }
2370 }
2371
Dan Williams1fe797e2008-06-28 09:16:30 +10002372 return 0;
Dan Williamsf38e1212007-01-02 13:52:30 -07002373}
2374
Dan Williams1fe797e2008-06-28 09:16:30 +10002375/**
2376 * handle_stripe_fill5 - read or compute data to satisfy pending requests.
2377 */
2378static void handle_stripe_fill5(struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07002379 struct stripe_head_state *s, int disks)
2380{
2381 int i;
Dan Williamsf38e1212007-01-02 13:52:30 -07002382
Dan Williamsf38e1212007-01-02 13:52:30 -07002383 /* look for blocks to read/compute, skip this if a compute
2384 * is already in flight, or if the stripe contents are in the
2385 * midst of changing due to a write
2386 */
Dan Williams976ea8d2008-06-28 08:32:03 +10002387 if (!test_bit(STRIPE_COMPUTE_RUN, &sh->state) && !sh->check_state &&
Dan Williams1fe797e2008-06-28 09:16:30 +10002388 !sh->reconstruct_state)
Dan Williamsf38e1212007-01-02 13:52:30 -07002389 for (i = disks; i--; )
Dan Williams1fe797e2008-06-28 09:16:30 +10002390 if (fetch_block5(sh, s, i, disks))
Dan Williamsf38e1212007-01-02 13:52:30 -07002391 break;
Dan Williamsa4456852007-07-09 11:56:43 -07002392 set_bit(STRIPE_HANDLE, &sh->state);
2393}
2394
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07002395/* fetch_block6 - checks the given member device to see if its data needs
2396 * to be read or computed to satisfy a request.
2397 *
2398 * Returns 1 when no more member devices need to be checked, otherwise returns
2399 * 0 to tell the loop in handle_stripe_fill6 to continue
2400 */
2401static int fetch_block6(struct stripe_head *sh, struct stripe_head_state *s,
2402 struct r6_state *r6s, int disk_idx, int disks)
2403{
2404 struct r5dev *dev = &sh->dev[disk_idx];
2405 struct r5dev *fdev[2] = { &sh->dev[r6s->failed_num[0]],
2406 &sh->dev[r6s->failed_num[1]] };
2407
2408 if (!test_bit(R5_LOCKED, &dev->flags) &&
2409 !test_bit(R5_UPTODATE, &dev->flags) &&
2410 (dev->toread ||
2411 (dev->towrite && !test_bit(R5_OVERWRITE, &dev->flags)) ||
2412 s->syncing || s->expanding ||
2413 (s->failed >= 1 &&
2414 (fdev[0]->toread || s->to_write)) ||
2415 (s->failed >= 2 &&
2416 (fdev[1]->toread || s->to_write)))) {
2417 /* we would like to get this block, possibly by computing it,
2418 * otherwise read it if the backing disk is insync
2419 */
2420 BUG_ON(test_bit(R5_Wantcompute, &dev->flags));
2421 BUG_ON(test_bit(R5_Wantread, &dev->flags));
2422 if ((s->uptodate == disks - 1) &&
2423 (s->failed && (disk_idx == r6s->failed_num[0] ||
2424 disk_idx == r6s->failed_num[1]))) {
2425 /* have disk failed, and we're requested to fetch it;
2426 * do compute it
2427 */
2428 pr_debug("Computing stripe %llu block %d\n",
2429 (unsigned long long)sh->sector, disk_idx);
2430 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
2431 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
2432 set_bit(R5_Wantcompute, &dev->flags);
2433 sh->ops.target = disk_idx;
2434 sh->ops.target2 = -1; /* no 2nd target */
2435 s->req_compute = 1;
2436 s->uptodate++;
2437 return 1;
2438 } else if (s->uptodate == disks-2 && s->failed >= 2) {
2439 /* Computing 2-failure is *very* expensive; only
2440 * do it if failed >= 2
2441 */
2442 int other;
2443 for (other = disks; other--; ) {
2444 if (other == disk_idx)
2445 continue;
2446 if (!test_bit(R5_UPTODATE,
2447 &sh->dev[other].flags))
2448 break;
2449 }
2450 BUG_ON(other < 0);
2451 pr_debug("Computing stripe %llu blocks %d,%d\n",
2452 (unsigned long long)sh->sector,
2453 disk_idx, other);
2454 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
2455 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
2456 set_bit(R5_Wantcompute, &sh->dev[disk_idx].flags);
2457 set_bit(R5_Wantcompute, &sh->dev[other].flags);
2458 sh->ops.target = disk_idx;
2459 sh->ops.target2 = other;
2460 s->uptodate += 2;
2461 s->req_compute = 1;
2462 return 1;
2463 } else if (test_bit(R5_Insync, &dev->flags)) {
2464 set_bit(R5_LOCKED, &dev->flags);
2465 set_bit(R5_Wantread, &dev->flags);
2466 s->locked++;
2467 pr_debug("Reading block %d (sync=%d)\n",
2468 disk_idx, s->syncing);
2469 }
2470 }
2471
2472 return 0;
2473}
2474
2475/**
2476 * handle_stripe_fill6 - read or compute data to satisfy pending requests.
2477 */
Dan Williams1fe797e2008-06-28 09:16:30 +10002478static void handle_stripe_fill6(struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07002479 struct stripe_head_state *s, struct r6_state *r6s,
2480 int disks)
2481{
2482 int i;
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07002483
2484 /* look for blocks to read/compute, skip this if a compute
2485 * is already in flight, or if the stripe contents are in the
2486 * midst of changing due to a write
2487 */
2488 if (!test_bit(STRIPE_COMPUTE_RUN, &sh->state) && !sh->check_state &&
2489 !sh->reconstruct_state)
2490 for (i = disks; i--; )
2491 if (fetch_block6(sh, s, r6s, i, disks))
2492 break;
Dan Williamsa4456852007-07-09 11:56:43 -07002493 set_bit(STRIPE_HANDLE, &sh->state);
2494}
2495
2496
Dan Williams1fe797e2008-06-28 09:16:30 +10002497/* handle_stripe_clean_event
Dan Williamsa4456852007-07-09 11:56:43 -07002498 * any written block on an uptodate or failed drive can be returned.
2499 * Note that if we 'wrote' to a failed drive, it will be UPTODATE, but
2500 * never LOCKED, so we don't need to test 'failed' directly.
2501 */
Dan Williams1fe797e2008-06-28 09:16:30 +10002502static void handle_stripe_clean_event(raid5_conf_t *conf,
Dan Williamsa4456852007-07-09 11:56:43 -07002503 struct stripe_head *sh, int disks, struct bio **return_bi)
2504{
2505 int i;
2506 struct r5dev *dev;
2507
2508 for (i = disks; i--; )
2509 if (sh->dev[i].written) {
2510 dev = &sh->dev[i];
2511 if (!test_bit(R5_LOCKED, &dev->flags) &&
2512 test_bit(R5_UPTODATE, &dev->flags)) {
2513 /* We can return any write requests */
2514 struct bio *wbi, *wbi2;
2515 int bitmap_end = 0;
Dan Williams45b42332007-07-09 11:56:43 -07002516 pr_debug("Return write for disc %d\n", i);
Dan Williamsa4456852007-07-09 11:56:43 -07002517 spin_lock_irq(&conf->device_lock);
2518 wbi = dev->written;
2519 dev->written = NULL;
2520 while (wbi && wbi->bi_sector <
2521 dev->sector + STRIPE_SECTORS) {
2522 wbi2 = r5_next_bio(wbi, dev->sector);
Jens Axboe960e7392008-08-15 10:41:18 +02002523 if (!raid5_dec_bi_phys_segments(wbi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002524 md_write_end(conf->mddev);
2525 wbi->bi_next = *return_bi;
2526 *return_bi = wbi;
2527 }
2528 wbi = wbi2;
2529 }
2530 if (dev->towrite == NULL)
2531 bitmap_end = 1;
2532 spin_unlock_irq(&conf->device_lock);
2533 if (bitmap_end)
2534 bitmap_endwrite(conf->mddev->bitmap,
2535 sh->sector,
2536 STRIPE_SECTORS,
2537 !test_bit(STRIPE_DEGRADED, &sh->state),
2538 0);
2539 }
2540 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002541
2542 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
2543 if (atomic_dec_and_test(&conf->pending_full_writes))
2544 md_wakeup_thread(conf->mddev->thread);
Dan Williamsa4456852007-07-09 11:56:43 -07002545}
2546
Dan Williams1fe797e2008-06-28 09:16:30 +10002547static void handle_stripe_dirtying5(raid5_conf_t *conf,
Dan Williamsa4456852007-07-09 11:56:43 -07002548 struct stripe_head *sh, struct stripe_head_state *s, int disks)
2549{
2550 int rmw = 0, rcw = 0, i;
2551 for (i = disks; i--; ) {
2552 /* would I have to read this buffer for read_modify_write */
2553 struct r5dev *dev = &sh->dev[i];
2554 if ((dev->towrite || i == sh->pd_idx) &&
2555 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002556 !(test_bit(R5_UPTODATE, &dev->flags) ||
2557 test_bit(R5_Wantcompute, &dev->flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07002558 if (test_bit(R5_Insync, &dev->flags))
2559 rmw++;
2560 else
2561 rmw += 2*disks; /* cannot read it */
2562 }
2563 /* Would I have to read this buffer for reconstruct_write */
2564 if (!test_bit(R5_OVERWRITE, &dev->flags) && i != sh->pd_idx &&
2565 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002566 !(test_bit(R5_UPTODATE, &dev->flags) ||
2567 test_bit(R5_Wantcompute, &dev->flags))) {
2568 if (test_bit(R5_Insync, &dev->flags)) rcw++;
Dan Williamsa4456852007-07-09 11:56:43 -07002569 else
2570 rcw += 2*disks;
2571 }
2572 }
Dan Williams45b42332007-07-09 11:56:43 -07002573 pr_debug("for sector %llu, rmw=%d rcw=%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002574 (unsigned long long)sh->sector, rmw, rcw);
2575 set_bit(STRIPE_HANDLE, &sh->state);
2576 if (rmw < rcw && rmw > 0)
2577 /* prefer read-modify-write, but need to get some data */
2578 for (i = disks; i--; ) {
2579 struct r5dev *dev = &sh->dev[i];
2580 if ((dev->towrite || i == sh->pd_idx) &&
2581 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002582 !(test_bit(R5_UPTODATE, &dev->flags) ||
2583 test_bit(R5_Wantcompute, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07002584 test_bit(R5_Insync, &dev->flags)) {
2585 if (
2586 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07002587 pr_debug("Read_old block "
Dan Williamsa4456852007-07-09 11:56:43 -07002588 "%d for r-m-w\n", i);
2589 set_bit(R5_LOCKED, &dev->flags);
2590 set_bit(R5_Wantread, &dev->flags);
2591 s->locked++;
2592 } else {
2593 set_bit(STRIPE_DELAYED, &sh->state);
2594 set_bit(STRIPE_HANDLE, &sh->state);
2595 }
2596 }
2597 }
2598 if (rcw <= rmw && rcw > 0)
2599 /* want reconstruct write, but need to get some data */
2600 for (i = disks; i--; ) {
2601 struct r5dev *dev = &sh->dev[i];
2602 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
2603 i != sh->pd_idx &&
2604 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002605 !(test_bit(R5_UPTODATE, &dev->flags) ||
2606 test_bit(R5_Wantcompute, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07002607 test_bit(R5_Insync, &dev->flags)) {
2608 if (
2609 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07002610 pr_debug("Read_old block "
Dan Williamsa4456852007-07-09 11:56:43 -07002611 "%d for Reconstruct\n", i);
2612 set_bit(R5_LOCKED, &dev->flags);
2613 set_bit(R5_Wantread, &dev->flags);
2614 s->locked++;
2615 } else {
2616 set_bit(STRIPE_DELAYED, &sh->state);
2617 set_bit(STRIPE_HANDLE, &sh->state);
2618 }
2619 }
2620 }
2621 /* now if nothing is locked, and if we have enough data,
2622 * we can start a write request
2623 */
Dan Williamsf38e1212007-01-02 13:52:30 -07002624 /* since handle_stripe can be called at any time we need to handle the
2625 * case where a compute block operation has been submitted and then a
Dan Williamsac6b53b2009-07-14 13:40:19 -07002626 * subsequent call wants to start a write request. raid_run_ops only
2627 * handles the case where compute block and reconstruct are requested
Dan Williamsf38e1212007-01-02 13:52:30 -07002628 * simultaneously. If this is not the case then new writes need to be
2629 * held off until the compute completes.
2630 */
Dan Williams976ea8d2008-06-28 08:32:03 +10002631 if ((s->req_compute || !test_bit(STRIPE_COMPUTE_RUN, &sh->state)) &&
2632 (s->locked == 0 && (rcw == 0 || rmw == 0) &&
2633 !test_bit(STRIPE_BIT_DELAY, &sh->state)))
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002634 schedule_reconstruction(sh, s, rcw == 0, 0);
Dan Williamsa4456852007-07-09 11:56:43 -07002635}
2636
Dan Williams1fe797e2008-06-28 09:16:30 +10002637static void handle_stripe_dirtying6(raid5_conf_t *conf,
Dan Williamsa4456852007-07-09 11:56:43 -07002638 struct stripe_head *sh, struct stripe_head_state *s,
2639 struct r6_state *r6s, int disks)
2640{
Yuri Tikhonova9b39a72009-08-29 19:13:12 -07002641 int rcw = 0, pd_idx = sh->pd_idx, i;
NeilBrown34e04e82009-03-31 15:10:16 +11002642 int qd_idx = sh->qd_idx;
Yuri Tikhonova9b39a72009-08-29 19:13:12 -07002643
2644 set_bit(STRIPE_HANDLE, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07002645 for (i = disks; i--; ) {
2646 struct r5dev *dev = &sh->dev[i];
Yuri Tikhonova9b39a72009-08-29 19:13:12 -07002647 /* check if we haven't enough data */
2648 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
2649 i != pd_idx && i != qd_idx &&
2650 !test_bit(R5_LOCKED, &dev->flags) &&
2651 !(test_bit(R5_UPTODATE, &dev->flags) ||
2652 test_bit(R5_Wantcompute, &dev->flags))) {
2653 rcw++;
2654 if (!test_bit(R5_Insync, &dev->flags))
2655 continue; /* it's a failed drive */
2656
2657 if (
2658 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
2659 pr_debug("Read_old stripe %llu "
2660 "block %d for Reconstruct\n",
2661 (unsigned long long)sh->sector, i);
2662 set_bit(R5_LOCKED, &dev->flags);
2663 set_bit(R5_Wantread, &dev->flags);
2664 s->locked++;
2665 } else {
2666 pr_debug("Request delayed stripe %llu "
2667 "block %d for Reconstruct\n",
2668 (unsigned long long)sh->sector, i);
2669 set_bit(STRIPE_DELAYED, &sh->state);
2670 set_bit(STRIPE_HANDLE, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07002671 }
2672 }
2673 }
Dan Williamsa4456852007-07-09 11:56:43 -07002674 /* now if nothing is locked, and if we have enough data, we can start a
2675 * write request
2676 */
Yuri Tikhonova9b39a72009-08-29 19:13:12 -07002677 if ((s->req_compute || !test_bit(STRIPE_COMPUTE_RUN, &sh->state)) &&
2678 s->locked == 0 && rcw == 0 &&
Dan Williamsa4456852007-07-09 11:56:43 -07002679 !test_bit(STRIPE_BIT_DELAY, &sh->state)) {
Yuri Tikhonova9b39a72009-08-29 19:13:12 -07002680 schedule_reconstruction(sh, s, 1, 0);
Dan Williamsa4456852007-07-09 11:56:43 -07002681 }
2682}
2683
2684static void handle_parity_checks5(raid5_conf_t *conf, struct stripe_head *sh,
2685 struct stripe_head_state *s, int disks)
2686{
Dan Williamsecc65c92008-06-28 08:31:57 +10002687 struct r5dev *dev = NULL;
Dan Williamse89f8962007-01-02 13:52:31 -07002688
Dan Williamsbd2ab672008-04-10 21:29:27 -07002689 set_bit(STRIPE_HANDLE, &sh->state);
2690
Dan Williamsecc65c92008-06-28 08:31:57 +10002691 switch (sh->check_state) {
2692 case check_state_idle:
2693 /* start a new check operation if there are no failures */
Dan Williamsbd2ab672008-04-10 21:29:27 -07002694 if (s->failed == 0) {
Dan Williamsbd2ab672008-04-10 21:29:27 -07002695 BUG_ON(s->uptodate != disks);
Dan Williamsecc65c92008-06-28 08:31:57 +10002696 sh->check_state = check_state_run;
2697 set_bit(STRIPE_OP_CHECK, &s->ops_request);
Dan Williamsbd2ab672008-04-10 21:29:27 -07002698 clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
Dan Williamsbd2ab672008-04-10 21:29:27 -07002699 s->uptodate--;
Dan Williamsecc65c92008-06-28 08:31:57 +10002700 break;
Dan Williamsbd2ab672008-04-10 21:29:27 -07002701 }
Dan Williamsa4456852007-07-09 11:56:43 -07002702 dev = &sh->dev[s->failed_num];
Dan Williamsecc65c92008-06-28 08:31:57 +10002703 /* fall through */
2704 case check_state_compute_result:
2705 sh->check_state = check_state_idle;
2706 if (!dev)
2707 dev = &sh->dev[sh->pd_idx];
2708
2709 /* check that a write has not made the stripe insync */
2710 if (test_bit(STRIPE_INSYNC, &sh->state))
2711 break;
2712
2713 /* either failed parity check, or recovery is happening */
Dan Williamsa4456852007-07-09 11:56:43 -07002714 BUG_ON(!test_bit(R5_UPTODATE, &dev->flags));
2715 BUG_ON(s->uptodate != disks);
2716
2717 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsecc65c92008-06-28 08:31:57 +10002718 s->locked++;
Dan Williamsa4456852007-07-09 11:56:43 -07002719 set_bit(R5_Wantwrite, &dev->flags);
Dan Williams830ea012007-01-02 13:52:31 -07002720
Dan Williamsa4456852007-07-09 11:56:43 -07002721 clear_bit(STRIPE_DEGRADED, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07002722 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10002723 break;
2724 case check_state_run:
2725 break; /* we will be called again upon completion */
2726 case check_state_check_result:
2727 sh->check_state = check_state_idle;
2728
2729 /* if a failure occurred during the check operation, leave
2730 * STRIPE_INSYNC not set and let the stripe be handled again
2731 */
2732 if (s->failed)
2733 break;
2734
2735 /* handle a successful check operation, if parity is correct
2736 * we are done. Otherwise update the mismatch count and repair
2737 * parity if !MD_RECOVERY_CHECK
2738 */
Dan Williamsad283ea2009-08-29 19:09:26 -07002739 if ((sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) == 0)
Dan Williamsecc65c92008-06-28 08:31:57 +10002740 /* parity is correct (on disc,
2741 * not in buffer any more)
2742 */
2743 set_bit(STRIPE_INSYNC, &sh->state);
2744 else {
2745 conf->mddev->resync_mismatches += STRIPE_SECTORS;
2746 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
2747 /* don't try to repair!! */
2748 set_bit(STRIPE_INSYNC, &sh->state);
2749 else {
2750 sh->check_state = check_state_compute_run;
Dan Williams976ea8d2008-06-28 08:32:03 +10002751 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10002752 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
2753 set_bit(R5_Wantcompute,
2754 &sh->dev[sh->pd_idx].flags);
2755 sh->ops.target = sh->pd_idx;
Dan Williamsac6b53b2009-07-14 13:40:19 -07002756 sh->ops.target2 = -1;
Dan Williamsecc65c92008-06-28 08:31:57 +10002757 s->uptodate++;
2758 }
2759 }
2760 break;
2761 case check_state_compute_run:
2762 break;
2763 default:
2764 printk(KERN_ERR "%s: unknown check_state: %d sector: %llu\n",
2765 __func__, sh->check_state,
2766 (unsigned long long) sh->sector);
2767 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07002768 }
2769}
2770
2771
2772static void handle_parity_checks6(raid5_conf_t *conf, struct stripe_head *sh,
Dan Williams36d1c642009-07-14 11:48:22 -07002773 struct stripe_head_state *s,
2774 struct r6_state *r6s, int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07002775{
Dan Williamsa4456852007-07-09 11:56:43 -07002776 int pd_idx = sh->pd_idx;
NeilBrown34e04e82009-03-31 15:10:16 +11002777 int qd_idx = sh->qd_idx;
Dan Williamsd82dfee2009-07-14 13:40:57 -07002778 struct r5dev *dev;
Dan Williamsa4456852007-07-09 11:56:43 -07002779
2780 set_bit(STRIPE_HANDLE, &sh->state);
2781
2782 BUG_ON(s->failed > 2);
Dan Williamsd82dfee2009-07-14 13:40:57 -07002783
Dan Williamsa4456852007-07-09 11:56:43 -07002784 /* Want to check and possibly repair P and Q.
2785 * However there could be one 'failed' device, in which
2786 * case we can only check one of them, possibly using the
2787 * other to generate missing data
2788 */
2789
Dan Williamsd82dfee2009-07-14 13:40:57 -07002790 switch (sh->check_state) {
2791 case check_state_idle:
2792 /* start a new check operation if there are < 2 failures */
Dan Williamsa4456852007-07-09 11:56:43 -07002793 if (s->failed == r6s->q_failed) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07002794 /* The only possible failed device holds Q, so it
Dan Williamsa4456852007-07-09 11:56:43 -07002795 * makes sense to check P (If anything else were failed,
2796 * we would have used P to recreate it).
2797 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07002798 sh->check_state = check_state_run;
Dan Williamsa4456852007-07-09 11:56:43 -07002799 }
2800 if (!r6s->q_failed && s->failed < 2) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07002801 /* Q is not failed, and we didn't use it to generate
Dan Williamsa4456852007-07-09 11:56:43 -07002802 * anything, so it makes sense to check it
2803 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07002804 if (sh->check_state == check_state_run)
2805 sh->check_state = check_state_run_pq;
2806 else
2807 sh->check_state = check_state_run_q;
Dan Williamsa4456852007-07-09 11:56:43 -07002808 }
Dan Williams36d1c642009-07-14 11:48:22 -07002809
Dan Williamsd82dfee2009-07-14 13:40:57 -07002810 /* discard potentially stale zero_sum_result */
2811 sh->ops.zero_sum_result = 0;
Dan Williams36d1c642009-07-14 11:48:22 -07002812
Dan Williamsd82dfee2009-07-14 13:40:57 -07002813 if (sh->check_state == check_state_run) {
2814 /* async_xor_zero_sum destroys the contents of P */
2815 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
2816 s->uptodate--;
Dan Williamsa4456852007-07-09 11:56:43 -07002817 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07002818 if (sh->check_state >= check_state_run &&
2819 sh->check_state <= check_state_run_pq) {
2820 /* async_syndrome_zero_sum preserves P and Q, so
2821 * no need to mark them !uptodate here
2822 */
2823 set_bit(STRIPE_OP_CHECK, &s->ops_request);
2824 break;
2825 }
Dan Williams36d1c642009-07-14 11:48:22 -07002826
Dan Williamsd82dfee2009-07-14 13:40:57 -07002827 /* we have 2-disk failure */
2828 BUG_ON(s->failed != 2);
2829 /* fall through */
2830 case check_state_compute_result:
2831 sh->check_state = check_state_idle;
Dan Williams36d1c642009-07-14 11:48:22 -07002832
Dan Williamsd82dfee2009-07-14 13:40:57 -07002833 /* check that a write has not made the stripe insync */
2834 if (test_bit(STRIPE_INSYNC, &sh->state))
2835 break;
Dan Williamsa4456852007-07-09 11:56:43 -07002836
2837 /* now write out any block on a failed drive,
Dan Williamsd82dfee2009-07-14 13:40:57 -07002838 * or P or Q if they were recomputed
Dan Williamsa4456852007-07-09 11:56:43 -07002839 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07002840 BUG_ON(s->uptodate < disks - 1); /* We don't need Q to recover */
Dan Williamsa4456852007-07-09 11:56:43 -07002841 if (s->failed == 2) {
2842 dev = &sh->dev[r6s->failed_num[1]];
2843 s->locked++;
2844 set_bit(R5_LOCKED, &dev->flags);
2845 set_bit(R5_Wantwrite, &dev->flags);
2846 }
2847 if (s->failed >= 1) {
2848 dev = &sh->dev[r6s->failed_num[0]];
2849 s->locked++;
2850 set_bit(R5_LOCKED, &dev->flags);
2851 set_bit(R5_Wantwrite, &dev->flags);
2852 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07002853 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
Dan Williamsa4456852007-07-09 11:56:43 -07002854 dev = &sh->dev[pd_idx];
2855 s->locked++;
2856 set_bit(R5_LOCKED, &dev->flags);
2857 set_bit(R5_Wantwrite, &dev->flags);
2858 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07002859 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
Dan Williamsa4456852007-07-09 11:56:43 -07002860 dev = &sh->dev[qd_idx];
2861 s->locked++;
2862 set_bit(R5_LOCKED, &dev->flags);
2863 set_bit(R5_Wantwrite, &dev->flags);
2864 }
2865 clear_bit(STRIPE_DEGRADED, &sh->state);
2866
2867 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsd82dfee2009-07-14 13:40:57 -07002868 break;
2869 case check_state_run:
2870 case check_state_run_q:
2871 case check_state_run_pq:
2872 break; /* we will be called again upon completion */
2873 case check_state_check_result:
2874 sh->check_state = check_state_idle;
2875
2876 /* handle a successful check operation, if parity is correct
2877 * we are done. Otherwise update the mismatch count and repair
2878 * parity if !MD_RECOVERY_CHECK
2879 */
2880 if (sh->ops.zero_sum_result == 0) {
2881 /* both parities are correct */
2882 if (!s->failed)
2883 set_bit(STRIPE_INSYNC, &sh->state);
2884 else {
2885 /* in contrast to the raid5 case we can validate
2886 * parity, but still have a failure to write
2887 * back
2888 */
2889 sh->check_state = check_state_compute_result;
2890 /* Returning at this point means that we may go
2891 * off and bring p and/or q uptodate again so
2892 * we make sure to check zero_sum_result again
2893 * to verify if p or q need writeback
2894 */
2895 }
2896 } else {
2897 conf->mddev->resync_mismatches += STRIPE_SECTORS;
2898 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
2899 /* don't try to repair!! */
2900 set_bit(STRIPE_INSYNC, &sh->state);
2901 else {
2902 int *target = &sh->ops.target;
2903
2904 sh->ops.target = -1;
2905 sh->ops.target2 = -1;
2906 sh->check_state = check_state_compute_run;
2907 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
2908 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
2909 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
2910 set_bit(R5_Wantcompute,
2911 &sh->dev[pd_idx].flags);
2912 *target = pd_idx;
2913 target = &sh->ops.target2;
2914 s->uptodate++;
2915 }
2916 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
2917 set_bit(R5_Wantcompute,
2918 &sh->dev[qd_idx].flags);
2919 *target = qd_idx;
2920 s->uptodate++;
2921 }
2922 }
2923 }
2924 break;
2925 case check_state_compute_run:
2926 break;
2927 default:
2928 printk(KERN_ERR "%s: unknown check_state: %d sector: %llu\n",
2929 __func__, sh->check_state,
2930 (unsigned long long) sh->sector);
2931 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07002932 }
2933}
2934
2935static void handle_stripe_expansion(raid5_conf_t *conf, struct stripe_head *sh,
2936 struct r6_state *r6s)
2937{
2938 int i;
2939
2940 /* We have read all the blocks in this stripe and now we need to
2941 * copy some of them into a target stripe for expand.
2942 */
Dan Williamsf0a50d32007-01-02 13:52:31 -07002943 struct dma_async_tx_descriptor *tx = NULL;
Dan Williamsa4456852007-07-09 11:56:43 -07002944 clear_bit(STRIPE_EXPAND_SOURCE, &sh->state);
2945 for (i = 0; i < sh->disks; i++)
NeilBrown34e04e82009-03-31 15:10:16 +11002946 if (i != sh->pd_idx && i != sh->qd_idx) {
NeilBrown911d4ee2009-03-31 14:39:38 +11002947 int dd_idx, j;
Dan Williamsa4456852007-07-09 11:56:43 -07002948 struct stripe_head *sh2;
Dan Williamsa08abd82009-06-03 11:43:59 -07002949 struct async_submit_ctl submit;
Dan Williamsa4456852007-07-09 11:56:43 -07002950
NeilBrown784052e2009-03-31 15:19:07 +11002951 sector_t bn = compute_blocknr(sh, i, 1);
NeilBrown911d4ee2009-03-31 14:39:38 +11002952 sector_t s = raid5_compute_sector(conf, bn, 0,
2953 &dd_idx, NULL);
NeilBrowna8c906c2009-06-09 14:39:59 +10002954 sh2 = get_active_stripe(conf, s, 0, 1, 1);
Dan Williamsa4456852007-07-09 11:56:43 -07002955 if (sh2 == NULL)
2956 /* so far only the early blocks of this stripe
2957 * have been requested. When later blocks
2958 * get requested, we will try again
2959 */
2960 continue;
2961 if (!test_bit(STRIPE_EXPANDING, &sh2->state) ||
2962 test_bit(R5_Expanded, &sh2->dev[dd_idx].flags)) {
2963 /* must have already done this block */
2964 release_stripe(sh2);
2965 continue;
2966 }
Dan Williamsf0a50d32007-01-02 13:52:31 -07002967
2968 /* place all the copies on one channel */
Dan Williamsa08abd82009-06-03 11:43:59 -07002969 init_async_submit(&submit, 0, tx, NULL, NULL, NULL);
Dan Williamsf0a50d32007-01-02 13:52:31 -07002970 tx = async_memcpy(sh2->dev[dd_idx].page,
Dan Williams88ba2aa2009-04-09 16:16:18 -07002971 sh->dev[i].page, 0, 0, STRIPE_SIZE,
Dan Williamsa08abd82009-06-03 11:43:59 -07002972 &submit);
Dan Williamsf0a50d32007-01-02 13:52:31 -07002973
Dan Williamsa4456852007-07-09 11:56:43 -07002974 set_bit(R5_Expanded, &sh2->dev[dd_idx].flags);
2975 set_bit(R5_UPTODATE, &sh2->dev[dd_idx].flags);
2976 for (j = 0; j < conf->raid_disks; j++)
2977 if (j != sh2->pd_idx &&
NeilBrownd0dabf72009-03-31 14:39:38 +11002978 (!r6s || j != sh2->qd_idx) &&
Dan Williamsa4456852007-07-09 11:56:43 -07002979 !test_bit(R5_Expanded, &sh2->dev[j].flags))
2980 break;
2981 if (j == conf->raid_disks) {
2982 set_bit(STRIPE_EXPAND_READY, &sh2->state);
2983 set_bit(STRIPE_HANDLE, &sh2->state);
2984 }
2985 release_stripe(sh2);
Dan Williamsf0a50d32007-01-02 13:52:31 -07002986
Dan Williamsa4456852007-07-09 11:56:43 -07002987 }
NeilBrowna2e08552007-09-11 15:23:36 -07002988 /* done submitting copies, wait for them to complete */
2989 if (tx) {
2990 async_tx_ack(tx);
2991 dma_wait_for_async_tx(tx);
2992 }
Dan Williamsa4456852007-07-09 11:56:43 -07002993}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994
Dan Williams6bfe0b42008-04-30 00:52:32 -07002995
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996/*
2997 * handle_stripe - do things to a stripe.
2998 *
2999 * We lock the stripe and then examine the state of various bits
3000 * to see what needs to be done.
3001 * Possible results:
3002 * return some read request which now have data
3003 * return some write requests which are safely on disc
3004 * schedule a read on some buffers
3005 * schedule a write of some buffers
3006 * return confirmation of parity correctness
3007 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 * buffers are taken off read_list or write_list, and bh_cache buffers
3009 * get BH_Lock set before the stripe lock is released.
3010 *
3011 */
Dan Williamsa4456852007-07-09 11:56:43 -07003012
NeilBrown14425772009-10-16 15:55:25 +11003013static void handle_stripe5(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014{
3015 raid5_conf_t *conf = sh->raid_conf;
Dan Williamsa4456852007-07-09 11:56:43 -07003016 int disks = sh->disks, i;
3017 struct bio *return_bi = NULL;
3018 struct stripe_head_state s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 struct r5dev *dev;
Dan Williams6bfe0b42008-04-30 00:52:32 -07003020 mdk_rdev_t *blocked_rdev = NULL;
Dan Williamse0a115e2008-06-05 22:45:52 -07003021 int prexor;
NeilBrown729a1862009-12-14 12:49:50 +11003022 int dec_preread_active = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023
Dan Williamsa4456852007-07-09 11:56:43 -07003024 memset(&s, 0, sizeof(s));
Dan Williams600aa102008-06-28 08:32:05 +10003025 pr_debug("handling stripe %llu, state=%#lx cnt=%d, pd_idx=%d check:%d "
3026 "reconstruct:%d\n", (unsigned long long)sh->sector, sh->state,
3027 atomic_read(&sh->count), sh->pd_idx, sh->check_state,
3028 sh->reconstruct_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029
3030 spin_lock(&sh->lock);
3031 clear_bit(STRIPE_HANDLE, &sh->state);
3032 clear_bit(STRIPE_DELAYED, &sh->state);
3033
Dan Williamsa4456852007-07-09 11:56:43 -07003034 s.syncing = test_bit(STRIPE_SYNCING, &sh->state);
3035 s.expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state);
3036 s.expanded = test_bit(STRIPE_EXPAND_READY, &sh->state);
Dan Williams83de75c2008-06-28 08:31:58 +10003037
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 /* Now to look around and see what can be done */
NeilBrown9910f162006-01-06 00:20:24 -08003039 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 for (i=disks; i--; ) {
3041 mdk_rdev_t *rdev;
NeilBrowna9f326e2009-09-23 18:06:41 +10003042
3043 dev = &sh->dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044
Dan Williamsb5e98d62007-01-02 13:52:31 -07003045 pr_debug("check %d: state 0x%lx toread %p read %p write %p "
3046 "written %p\n", i, dev->flags, dev->toread, dev->read,
3047 dev->towrite, dev->written);
3048
3049 /* maybe we can request a biofill operation
3050 *
3051 * new wantfill requests are only permitted while
Dan Williams83de75c2008-06-28 08:31:58 +10003052 * ops_complete_biofill is guaranteed to be inactive
Dan Williamsb5e98d62007-01-02 13:52:31 -07003053 */
3054 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread &&
Dan Williams83de75c2008-06-28 08:31:58 +10003055 !test_bit(STRIPE_BIOFILL_RUN, &sh->state))
Dan Williamsb5e98d62007-01-02 13:52:31 -07003056 set_bit(R5_Wantfill, &dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057
3058 /* now count some things */
Dan Williamsa4456852007-07-09 11:56:43 -07003059 if (test_bit(R5_LOCKED, &dev->flags)) s.locked++;
3060 if (test_bit(R5_UPTODATE, &dev->flags)) s.uptodate++;
Dan Williamsf38e1212007-01-02 13:52:30 -07003061 if (test_bit(R5_Wantcompute, &dev->flags)) s.compute++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062
Dan Williamsb5e98d62007-01-02 13:52:31 -07003063 if (test_bit(R5_Wantfill, &dev->flags))
3064 s.to_fill++;
3065 else if (dev->toread)
Dan Williamsa4456852007-07-09 11:56:43 -07003066 s.to_read++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 if (dev->towrite) {
Dan Williamsa4456852007-07-09 11:56:43 -07003068 s.to_write++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 if (!test_bit(R5_OVERWRITE, &dev->flags))
Dan Williamsa4456852007-07-09 11:56:43 -07003070 s.non_overwrite++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 }
Dan Williamsa4456852007-07-09 11:56:43 -07003072 if (dev->written)
3073 s.written++;
NeilBrown9910f162006-01-06 00:20:24 -08003074 rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownac4090d2008-08-05 15:54:13 +10003075 if (blocked_rdev == NULL &&
3076 rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
Dan Williams6bfe0b42008-04-30 00:52:32 -07003077 blocked_rdev = rdev;
3078 atomic_inc(&rdev->nr_pending);
Dan Williams6bfe0b42008-04-30 00:52:32 -07003079 }
NeilBrown415e72d2010-06-17 17:25:21 +10003080 clear_bit(R5_Insync, &dev->flags);
3081 if (!rdev)
3082 /* Not in-sync */;
3083 else if (test_bit(In_sync, &rdev->flags))
3084 set_bit(R5_Insync, &dev->flags);
3085 else {
3086 /* could be in-sync depending on recovery/reshape status */
3087 if (sh->sector + STRIPE_SECTORS <= rdev->recovery_offset)
3088 set_bit(R5_Insync, &dev->flags);
3089 }
3090 if (!test_bit(R5_Insync, &dev->flags)) {
NeilBrown14f8d262006-01-06 00:20:14 -08003091 /* The ReadError flag will just be confusing now */
NeilBrown4e5314b2005-11-08 21:39:22 -08003092 clear_bit(R5_ReadError, &dev->flags);
3093 clear_bit(R5_ReWrite, &dev->flags);
3094 }
NeilBrown415e72d2010-06-17 17:25:21 +10003095 if (test_bit(R5_ReadError, &dev->flags))
3096 clear_bit(R5_Insync, &dev->flags);
3097 if (!test_bit(R5_Insync, &dev->flags)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003098 s.failed++;
3099 s.failed_num = i;
NeilBrown415e72d2010-06-17 17:25:21 +10003100 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 }
NeilBrown9910f162006-01-06 00:20:24 -08003102 rcu_read_unlock();
Dan Williamsb5e98d62007-01-02 13:52:31 -07003103
Dan Williams6bfe0b42008-04-30 00:52:32 -07003104 if (unlikely(blocked_rdev)) {
NeilBrownac4090d2008-08-05 15:54:13 +10003105 if (s.syncing || s.expanding || s.expanded ||
3106 s.to_write || s.written) {
3107 set_bit(STRIPE_HANDLE, &sh->state);
3108 goto unlock;
3109 }
3110 /* There is nothing for the blocked_rdev to block */
3111 rdev_dec_pending(blocked_rdev, conf->mddev);
3112 blocked_rdev = NULL;
Dan Williams6bfe0b42008-04-30 00:52:32 -07003113 }
3114
Dan Williams83de75c2008-06-28 08:31:58 +10003115 if (s.to_fill && !test_bit(STRIPE_BIOFILL_RUN, &sh->state)) {
3116 set_bit(STRIPE_OP_BIOFILL, &s.ops_request);
3117 set_bit(STRIPE_BIOFILL_RUN, &sh->state);
3118 }
Dan Williamsb5e98d62007-01-02 13:52:31 -07003119
Dan Williams45b42332007-07-09 11:56:43 -07003120 pr_debug("locked=%d uptodate=%d to_read=%d"
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 " to_write=%d failed=%d failed_num=%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07003122 s.locked, s.uptodate, s.to_read, s.to_write,
3123 s.failed, s.failed_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 /* check if the array has lost two devices and, if so, some requests might
3125 * need to be failed
3126 */
Dan Williamsa4456852007-07-09 11:56:43 -07003127 if (s.failed > 1 && s.to_read+s.to_write+s.written)
Dan Williams1fe797e2008-06-28 09:16:30 +10003128 handle_failed_stripe(conf, sh, &s, disks, &return_bi);
Dan Williamsa4456852007-07-09 11:56:43 -07003129 if (s.failed > 1 && s.syncing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 md_done_sync(conf->mddev, STRIPE_SECTORS,0);
3131 clear_bit(STRIPE_SYNCING, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07003132 s.syncing = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133 }
3134
3135 /* might be able to return some write requests if the parity block
3136 * is safe, or on a failed drive
3137 */
3138 dev = &sh->dev[sh->pd_idx];
Dan Williamsa4456852007-07-09 11:56:43 -07003139 if ( s.written &&
3140 ((test_bit(R5_Insync, &dev->flags) &&
3141 !test_bit(R5_LOCKED, &dev->flags) &&
3142 test_bit(R5_UPTODATE, &dev->flags)) ||
3143 (s.failed == 1 && s.failed_num == sh->pd_idx)))
Dan Williams1fe797e2008-06-28 09:16:30 +10003144 handle_stripe_clean_event(conf, sh, disks, &return_bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145
3146 /* Now we might consider reading some blocks, either to check/generate
3147 * parity, or to satisfy requests
3148 * or to load a block that is being partially written.
3149 */
Dan Williamsa4456852007-07-09 11:56:43 -07003150 if (s.to_read || s.non_overwrite ||
Dan Williams976ea8d2008-06-28 08:32:03 +10003151 (s.syncing && (s.uptodate + s.compute < disks)) || s.expanding)
Dan Williams1fe797e2008-06-28 09:16:30 +10003152 handle_stripe_fill5(sh, &s, disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153
Dan Williamse33129d2007-01-02 13:52:30 -07003154 /* Now we check to see if any write operations have recently
3155 * completed
3156 */
Dan Williamse0a115e2008-06-05 22:45:52 -07003157 prexor = 0;
Dan Williamsd8ee0722008-06-28 08:32:06 +10003158 if (sh->reconstruct_state == reconstruct_state_prexor_drain_result)
Dan Williamse0a115e2008-06-05 22:45:52 -07003159 prexor = 1;
Dan Williamsd8ee0722008-06-28 08:32:06 +10003160 if (sh->reconstruct_state == reconstruct_state_drain_result ||
3161 sh->reconstruct_state == reconstruct_state_prexor_drain_result) {
Dan Williams600aa102008-06-28 08:32:05 +10003162 sh->reconstruct_state = reconstruct_state_idle;
Dan Williamse33129d2007-01-02 13:52:30 -07003163
3164 /* All the 'written' buffers and the parity block are ready to
3165 * be written back to disk
3166 */
3167 BUG_ON(!test_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags));
3168 for (i = disks; i--; ) {
3169 dev = &sh->dev[i];
3170 if (test_bit(R5_LOCKED, &dev->flags) &&
3171 (i == sh->pd_idx || dev->written)) {
3172 pr_debug("Writing block %d\n", i);
3173 set_bit(R5_Wantwrite, &dev->flags);
Dan Williamse0a115e2008-06-05 22:45:52 -07003174 if (prexor)
3175 continue;
Dan Williamse33129d2007-01-02 13:52:30 -07003176 if (!test_bit(R5_Insync, &dev->flags) ||
3177 (i == sh->pd_idx && s.failed == 0))
3178 set_bit(STRIPE_INSYNC, &sh->state);
3179 }
3180 }
NeilBrown729a1862009-12-14 12:49:50 +11003181 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3182 dec_preread_active = 1;
Dan Williamse33129d2007-01-02 13:52:30 -07003183 }
3184
3185 /* Now to consider new write requests and what else, if anything
3186 * should be read. We do not handle new writes when:
3187 * 1/ A 'write' operation (copy+xor) is already in flight.
3188 * 2/ A 'check' operation is in flight, as it may clobber the parity
3189 * block.
3190 */
Dan Williams600aa102008-06-28 08:32:05 +10003191 if (s.to_write && !sh->reconstruct_state && !sh->check_state)
Dan Williams1fe797e2008-06-28 09:16:30 +10003192 handle_stripe_dirtying5(conf, sh, &s, disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193
3194 /* maybe we need to check and possibly fix the parity for this stripe
Dan Williamse89f8962007-01-02 13:52:31 -07003195 * Any reads will already have been scheduled, so we just see if enough
3196 * data is available. The parity check is held off while parity
3197 * dependent operations are in flight.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 */
Dan Williamsecc65c92008-06-28 08:31:57 +10003199 if (sh->check_state ||
3200 (s.syncing && s.locked == 0 &&
Dan Williams976ea8d2008-06-28 08:32:03 +10003201 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
Dan Williamsecc65c92008-06-28 08:31:57 +10003202 !test_bit(STRIPE_INSYNC, &sh->state)))
Dan Williamsa4456852007-07-09 11:56:43 -07003203 handle_parity_checks5(conf, sh, &s, disks);
Dan Williamse89f8962007-01-02 13:52:31 -07003204
Dan Williamsa4456852007-07-09 11:56:43 -07003205 if (s.syncing && s.locked == 0 && test_bit(STRIPE_INSYNC, &sh->state)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206 md_done_sync(conf->mddev, STRIPE_SECTORS,1);
3207 clear_bit(STRIPE_SYNCING, &sh->state);
3208 }
NeilBrown4e5314b2005-11-08 21:39:22 -08003209
3210 /* If the failed drive is just a ReadError, then we might need to progress
3211 * the repair/check process
3212 */
Dan Williamsa4456852007-07-09 11:56:43 -07003213 if (s.failed == 1 && !conf->mddev->ro &&
3214 test_bit(R5_ReadError, &sh->dev[s.failed_num].flags)
3215 && !test_bit(R5_LOCKED, &sh->dev[s.failed_num].flags)
3216 && test_bit(R5_UPTODATE, &sh->dev[s.failed_num].flags)
NeilBrown4e5314b2005-11-08 21:39:22 -08003217 ) {
Dan Williamsa4456852007-07-09 11:56:43 -07003218 dev = &sh->dev[s.failed_num];
NeilBrown4e5314b2005-11-08 21:39:22 -08003219 if (!test_bit(R5_ReWrite, &dev->flags)) {
3220 set_bit(R5_Wantwrite, &dev->flags);
3221 set_bit(R5_ReWrite, &dev->flags);
3222 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsa4456852007-07-09 11:56:43 -07003223 s.locked++;
NeilBrown4e5314b2005-11-08 21:39:22 -08003224 } else {
3225 /* let's read it back */
3226 set_bit(R5_Wantread, &dev->flags);
3227 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsa4456852007-07-09 11:56:43 -07003228 s.locked++;
NeilBrown4e5314b2005-11-08 21:39:22 -08003229 }
3230 }
3231
Dan Williams600aa102008-06-28 08:32:05 +10003232 /* Finish reconstruct operations initiated by the expansion process */
3233 if (sh->reconstruct_state == reconstruct_state_result) {
NeilBrownab69ae12009-03-31 15:26:47 +11003234 struct stripe_head *sh2
NeilBrowna8c906c2009-06-09 14:39:59 +10003235 = get_active_stripe(conf, sh->sector, 1, 1, 1);
NeilBrownab69ae12009-03-31 15:26:47 +11003236 if (sh2 && test_bit(STRIPE_EXPAND_SOURCE, &sh2->state)) {
3237 /* sh cannot be written until sh2 has been read.
3238 * so arrange for sh to be delayed a little
3239 */
3240 set_bit(STRIPE_DELAYED, &sh->state);
3241 set_bit(STRIPE_HANDLE, &sh->state);
3242 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE,
3243 &sh2->state))
3244 atomic_inc(&conf->preread_active_stripes);
3245 release_stripe(sh2);
3246 goto unlock;
3247 }
3248 if (sh2)
3249 release_stripe(sh2);
3250
Dan Williams600aa102008-06-28 08:32:05 +10003251 sh->reconstruct_state = reconstruct_state_idle;
Dan Williamsf0a50d32007-01-02 13:52:31 -07003252 clear_bit(STRIPE_EXPANDING, &sh->state);
Dan Williams23397882008-07-23 20:05:34 -07003253 for (i = conf->raid_disks; i--; ) {
Dan Williamsf0a50d32007-01-02 13:52:31 -07003254 set_bit(R5_Wantwrite, &sh->dev[i].flags);
Dan Williams23397882008-07-23 20:05:34 -07003255 set_bit(R5_LOCKED, &sh->dev[i].flags);
Neil Brownefe31142008-06-28 08:31:14 +10003256 s.locked++;
Dan Williams23397882008-07-23 20:05:34 -07003257 }
Dan Williamsf0a50d32007-01-02 13:52:31 -07003258 }
3259
3260 if (s.expanded && test_bit(STRIPE_EXPANDING, &sh->state) &&
Dan Williams600aa102008-06-28 08:32:05 +10003261 !sh->reconstruct_state) {
NeilBrownccfcc3c2006-03-27 01:18:09 -08003262 /* Need to write out all blocks after computing parity */
3263 sh->disks = conf->raid_disks;
NeilBrown911d4ee2009-03-31 14:39:38 +11003264 stripe_set_idx(sh->sector, conf, 0, sh);
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07003265 schedule_reconstruction(sh, &s, 1, 1);
Dan Williams600aa102008-06-28 08:32:05 +10003266 } else if (s.expanded && !sh->reconstruct_state && s.locked == 0) {
NeilBrownccfcc3c2006-03-27 01:18:09 -08003267 clear_bit(STRIPE_EXPAND_READY, &sh->state);
NeilBrownf6705572006-03-27 01:18:11 -08003268 atomic_dec(&conf->reshape_stripes);
NeilBrownccfcc3c2006-03-27 01:18:09 -08003269 wake_up(&conf->wait_for_overlap);
3270 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
3271 }
3272
Dan Williams0f94e87c2008-01-08 15:32:53 -08003273 if (s.expanding && s.locked == 0 &&
Dan Williams976ea8d2008-06-28 08:32:03 +10003274 !test_bit(STRIPE_COMPUTE_RUN, &sh->state))
Dan Williamsa4456852007-07-09 11:56:43 -07003275 handle_stripe_expansion(conf, sh, NULL);
NeilBrownccfcc3c2006-03-27 01:18:09 -08003276
Dan Williams6bfe0b42008-04-30 00:52:32 -07003277 unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278 spin_unlock(&sh->lock);
3279
Dan Williams6bfe0b42008-04-30 00:52:32 -07003280 /* wait for this device to become unblocked */
3281 if (unlikely(blocked_rdev))
3282 md_wait_for_blocked_rdev(blocked_rdev, conf->mddev);
3283
Dan Williams600aa102008-06-28 08:32:05 +10003284 if (s.ops_request)
Dan Williamsac6b53b2009-07-14 13:40:19 -07003285 raid_run_ops(sh, s.ops_request);
Dan Williamsd84e0f12007-01-02 13:52:30 -07003286
Dan Williamsc4e5ac02008-06-28 08:31:53 +10003287 ops_run_io(sh, &s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288
NeilBrown729a1862009-12-14 12:49:50 +11003289 if (dec_preread_active) {
3290 /* We delay this until after ops_run_io so that if make_request
Tejun Heoe9c74692010-09-03 11:56:18 +02003291 * is waiting on a flush, it won't continue until the writes
NeilBrown729a1862009-12-14 12:49:50 +11003292 * have actually been submitted.
3293 */
3294 atomic_dec(&conf->preread_active_stripes);
3295 if (atomic_read(&conf->preread_active_stripes) <
3296 IO_THRESHOLD)
3297 md_wakeup_thread(conf->mddev->thread);
3298 }
Dan Williamsa4456852007-07-09 11:56:43 -07003299 return_io(return_bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300}
3301
NeilBrown14425772009-10-16 15:55:25 +11003302static void handle_stripe6(struct stripe_head *sh)
NeilBrown16a53ec2006-06-26 00:27:38 -07003303{
NeilBrownbff61972009-03-31 14:33:13 +11003304 raid5_conf_t *conf = sh->raid_conf;
NeilBrownf4168852007-02-28 20:11:53 -08003305 int disks = sh->disks;
Dan Williamsa4456852007-07-09 11:56:43 -07003306 struct bio *return_bi = NULL;
NeilBrown34e04e82009-03-31 15:10:16 +11003307 int i, pd_idx = sh->pd_idx, qd_idx = sh->qd_idx;
Dan Williamsa4456852007-07-09 11:56:43 -07003308 struct stripe_head_state s;
3309 struct r6_state r6s;
NeilBrown16a53ec2006-06-26 00:27:38 -07003310 struct r5dev *dev, *pdev, *qdev;
Dan Williams6bfe0b42008-04-30 00:52:32 -07003311 mdk_rdev_t *blocked_rdev = NULL;
NeilBrown729a1862009-12-14 12:49:50 +11003312 int dec_preread_active = 0;
NeilBrown16a53ec2006-06-26 00:27:38 -07003313
Dan Williams45b42332007-07-09 11:56:43 -07003314 pr_debug("handling stripe %llu, state=%#lx cnt=%d, "
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003315 "pd_idx=%d, qd_idx=%d\n, check:%d, reconstruct:%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07003316 (unsigned long long)sh->sector, sh->state,
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003317 atomic_read(&sh->count), pd_idx, qd_idx,
3318 sh->check_state, sh->reconstruct_state);
Dan Williamsa4456852007-07-09 11:56:43 -07003319 memset(&s, 0, sizeof(s));
NeilBrown16a53ec2006-06-26 00:27:38 -07003320
3321 spin_lock(&sh->lock);
3322 clear_bit(STRIPE_HANDLE, &sh->state);
3323 clear_bit(STRIPE_DELAYED, &sh->state);
3324
Dan Williamsa4456852007-07-09 11:56:43 -07003325 s.syncing = test_bit(STRIPE_SYNCING, &sh->state);
3326 s.expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state);
3327 s.expanded = test_bit(STRIPE_EXPAND_READY, &sh->state);
NeilBrown16a53ec2006-06-26 00:27:38 -07003328 /* Now to look around and see what can be done */
3329
3330 rcu_read_lock();
3331 for (i=disks; i--; ) {
3332 mdk_rdev_t *rdev;
3333 dev = &sh->dev[i];
NeilBrown16a53ec2006-06-26 00:27:38 -07003334
Dan Williams45b42332007-07-09 11:56:43 -07003335 pr_debug("check %d: state 0x%lx read %p write %p written %p\n",
NeilBrown16a53ec2006-06-26 00:27:38 -07003336 i, dev->flags, dev->toread, dev->towrite, dev->written);
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003337 /* maybe we can reply to a read
3338 *
3339 * new wantfill requests are only permitted while
3340 * ops_complete_biofill is guaranteed to be inactive
3341 */
3342 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread &&
3343 !test_bit(STRIPE_BIOFILL_RUN, &sh->state))
3344 set_bit(R5_Wantfill, &dev->flags);
NeilBrown16a53ec2006-06-26 00:27:38 -07003345
3346 /* now count some things */
Dan Williamsa4456852007-07-09 11:56:43 -07003347 if (test_bit(R5_LOCKED, &dev->flags)) s.locked++;
3348 if (test_bit(R5_UPTODATE, &dev->flags)) s.uptodate++;
Dan Williams2d6e4ec2009-09-16 12:11:54 -07003349 if (test_bit(R5_Wantcompute, &dev->flags)) {
3350 s.compute++;
3351 BUG_ON(s.compute > 2);
3352 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003353
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003354 if (test_bit(R5_Wantfill, &dev->flags)) {
3355 s.to_fill++;
3356 } else if (dev->toread)
Dan Williamsa4456852007-07-09 11:56:43 -07003357 s.to_read++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003358 if (dev->towrite) {
Dan Williamsa4456852007-07-09 11:56:43 -07003359 s.to_write++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003360 if (!test_bit(R5_OVERWRITE, &dev->flags))
Dan Williamsa4456852007-07-09 11:56:43 -07003361 s.non_overwrite++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003362 }
Dan Williamsa4456852007-07-09 11:56:43 -07003363 if (dev->written)
3364 s.written++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003365 rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownac4090d2008-08-05 15:54:13 +10003366 if (blocked_rdev == NULL &&
3367 rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
Dan Williams6bfe0b42008-04-30 00:52:32 -07003368 blocked_rdev = rdev;
3369 atomic_inc(&rdev->nr_pending);
Dan Williams6bfe0b42008-04-30 00:52:32 -07003370 }
NeilBrown415e72d2010-06-17 17:25:21 +10003371 clear_bit(R5_Insync, &dev->flags);
3372 if (!rdev)
3373 /* Not in-sync */;
3374 else if (test_bit(In_sync, &rdev->flags))
3375 set_bit(R5_Insync, &dev->flags);
3376 else {
3377 /* in sync if before recovery_offset */
3378 if (sh->sector + STRIPE_SECTORS <= rdev->recovery_offset)
3379 set_bit(R5_Insync, &dev->flags);
3380 }
3381 if (!test_bit(R5_Insync, &dev->flags)) {
NeilBrown16a53ec2006-06-26 00:27:38 -07003382 /* The ReadError flag will just be confusing now */
3383 clear_bit(R5_ReadError, &dev->flags);
3384 clear_bit(R5_ReWrite, &dev->flags);
3385 }
NeilBrown415e72d2010-06-17 17:25:21 +10003386 if (test_bit(R5_ReadError, &dev->flags))
3387 clear_bit(R5_Insync, &dev->flags);
3388 if (!test_bit(R5_Insync, &dev->flags)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003389 if (s.failed < 2)
3390 r6s.failed_num[s.failed] = i;
3391 s.failed++;
NeilBrown415e72d2010-06-17 17:25:21 +10003392 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003393 }
3394 rcu_read_unlock();
Dan Williams6bfe0b42008-04-30 00:52:32 -07003395
3396 if (unlikely(blocked_rdev)) {
NeilBrownac4090d2008-08-05 15:54:13 +10003397 if (s.syncing || s.expanding || s.expanded ||
3398 s.to_write || s.written) {
3399 set_bit(STRIPE_HANDLE, &sh->state);
3400 goto unlock;
3401 }
3402 /* There is nothing for the blocked_rdev to block */
3403 rdev_dec_pending(blocked_rdev, conf->mddev);
3404 blocked_rdev = NULL;
Dan Williams6bfe0b42008-04-30 00:52:32 -07003405 }
NeilBrownac4090d2008-08-05 15:54:13 +10003406
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003407 if (s.to_fill && !test_bit(STRIPE_BIOFILL_RUN, &sh->state)) {
3408 set_bit(STRIPE_OP_BIOFILL, &s.ops_request);
3409 set_bit(STRIPE_BIOFILL_RUN, &sh->state);
3410 }
3411
Dan Williams45b42332007-07-09 11:56:43 -07003412 pr_debug("locked=%d uptodate=%d to_read=%d"
NeilBrown16a53ec2006-06-26 00:27:38 -07003413 " to_write=%d failed=%d failed_num=%d,%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07003414 s.locked, s.uptodate, s.to_read, s.to_write, s.failed,
3415 r6s.failed_num[0], r6s.failed_num[1]);
3416 /* check if the array has lost >2 devices and, if so, some requests
3417 * might need to be failed
NeilBrown16a53ec2006-06-26 00:27:38 -07003418 */
Dan Williamsa4456852007-07-09 11:56:43 -07003419 if (s.failed > 2 && s.to_read+s.to_write+s.written)
Dan Williams1fe797e2008-06-28 09:16:30 +10003420 handle_failed_stripe(conf, sh, &s, disks, &return_bi);
Dan Williamsa4456852007-07-09 11:56:43 -07003421 if (s.failed > 2 && s.syncing) {
NeilBrown16a53ec2006-06-26 00:27:38 -07003422 md_done_sync(conf->mddev, STRIPE_SECTORS,0);
3423 clear_bit(STRIPE_SYNCING, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07003424 s.syncing = 0;
NeilBrown16a53ec2006-06-26 00:27:38 -07003425 }
3426
3427 /*
3428 * might be able to return some write requests if the parity blocks
3429 * are safe, or on a failed drive
3430 */
3431 pdev = &sh->dev[pd_idx];
Dan Williamsa4456852007-07-09 11:56:43 -07003432 r6s.p_failed = (s.failed >= 1 && r6s.failed_num[0] == pd_idx)
3433 || (s.failed >= 2 && r6s.failed_num[1] == pd_idx);
NeilBrown34e04e82009-03-31 15:10:16 +11003434 qdev = &sh->dev[qd_idx];
3435 r6s.q_failed = (s.failed >= 1 && r6s.failed_num[0] == qd_idx)
3436 || (s.failed >= 2 && r6s.failed_num[1] == qd_idx);
NeilBrown16a53ec2006-06-26 00:27:38 -07003437
Dan Williamsa4456852007-07-09 11:56:43 -07003438 if ( s.written &&
3439 ( r6s.p_failed || ((test_bit(R5_Insync, &pdev->flags)
NeilBrown16a53ec2006-06-26 00:27:38 -07003440 && !test_bit(R5_LOCKED, &pdev->flags)
Dan Williamsa4456852007-07-09 11:56:43 -07003441 && test_bit(R5_UPTODATE, &pdev->flags)))) &&
3442 ( r6s.q_failed || ((test_bit(R5_Insync, &qdev->flags)
NeilBrown16a53ec2006-06-26 00:27:38 -07003443 && !test_bit(R5_LOCKED, &qdev->flags)
Dan Williamsa4456852007-07-09 11:56:43 -07003444 && test_bit(R5_UPTODATE, &qdev->flags)))))
Dan Williams1fe797e2008-06-28 09:16:30 +10003445 handle_stripe_clean_event(conf, sh, disks, &return_bi);
NeilBrown16a53ec2006-06-26 00:27:38 -07003446
3447 /* Now we might consider reading some blocks, either to check/generate
3448 * parity, or to satisfy requests
3449 * or to load a block that is being partially written.
3450 */
Dan Williamsa4456852007-07-09 11:56:43 -07003451 if (s.to_read || s.non_overwrite || (s.to_write && s.failed) ||
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003452 (s.syncing && (s.uptodate + s.compute < disks)) || s.expanding)
Dan Williams1fe797e2008-06-28 09:16:30 +10003453 handle_stripe_fill6(sh, &s, &r6s, disks);
NeilBrown16a53ec2006-06-26 00:27:38 -07003454
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003455 /* Now we check to see if any write operations have recently
3456 * completed
3457 */
3458 if (sh->reconstruct_state == reconstruct_state_drain_result) {
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003459
3460 sh->reconstruct_state = reconstruct_state_idle;
3461 /* All the 'written' buffers and the parity blocks are ready to
3462 * be written back to disk
3463 */
3464 BUG_ON(!test_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags));
3465 BUG_ON(!test_bit(R5_UPTODATE, &sh->dev[qd_idx].flags));
3466 for (i = disks; i--; ) {
3467 dev = &sh->dev[i];
3468 if (test_bit(R5_LOCKED, &dev->flags) &&
3469 (i == sh->pd_idx || i == qd_idx ||
3470 dev->written)) {
3471 pr_debug("Writing block %d\n", i);
3472 BUG_ON(!test_bit(R5_UPTODATE, &dev->flags));
3473 set_bit(R5_Wantwrite, &dev->flags);
3474 if (!test_bit(R5_Insync, &dev->flags) ||
3475 ((i == sh->pd_idx || i == qd_idx) &&
3476 s.failed == 0))
3477 set_bit(STRIPE_INSYNC, &sh->state);
3478 }
3479 }
NeilBrown729a1862009-12-14 12:49:50 +11003480 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3481 dec_preread_active = 1;
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003482 }
3483
Yuri Tikhonova9b39a72009-08-29 19:13:12 -07003484 /* Now to consider new write requests and what else, if anything
3485 * should be read. We do not handle new writes when:
3486 * 1/ A 'write' operation (copy+gen_syndrome) is already in flight.
3487 * 2/ A 'check' operation is in flight, as it may clobber the parity
3488 * block.
3489 */
3490 if (s.to_write && !sh->reconstruct_state && !sh->check_state)
Dan Williams1fe797e2008-06-28 09:16:30 +10003491 handle_stripe_dirtying6(conf, sh, &s, &r6s, disks);
NeilBrown16a53ec2006-06-26 00:27:38 -07003492
3493 /* maybe we need to check and possibly fix the parity for this stripe
Dan Williamsa4456852007-07-09 11:56:43 -07003494 * Any reads will already have been scheduled, so we just see if enough
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003495 * data is available. The parity check is held off while parity
3496 * dependent operations are in flight.
NeilBrown16a53ec2006-06-26 00:27:38 -07003497 */
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003498 if (sh->check_state ||
3499 (s.syncing && s.locked == 0 &&
3500 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
3501 !test_bit(STRIPE_INSYNC, &sh->state)))
Dan Williams36d1c642009-07-14 11:48:22 -07003502 handle_parity_checks6(conf, sh, &s, &r6s, disks);
NeilBrown16a53ec2006-06-26 00:27:38 -07003503
Dan Williamsa4456852007-07-09 11:56:43 -07003504 if (s.syncing && s.locked == 0 && test_bit(STRIPE_INSYNC, &sh->state)) {
NeilBrown16a53ec2006-06-26 00:27:38 -07003505 md_done_sync(conf->mddev, STRIPE_SECTORS,1);
3506 clear_bit(STRIPE_SYNCING, &sh->state);
3507 }
3508
3509 /* If the failed drives are just a ReadError, then we might need
3510 * to progress the repair/check process
3511 */
Dan Williamsa4456852007-07-09 11:56:43 -07003512 if (s.failed <= 2 && !conf->mddev->ro)
3513 for (i = 0; i < s.failed; i++) {
3514 dev = &sh->dev[r6s.failed_num[i]];
NeilBrown16a53ec2006-06-26 00:27:38 -07003515 if (test_bit(R5_ReadError, &dev->flags)
3516 && !test_bit(R5_LOCKED, &dev->flags)
3517 && test_bit(R5_UPTODATE, &dev->flags)
3518 ) {
3519 if (!test_bit(R5_ReWrite, &dev->flags)) {
3520 set_bit(R5_Wantwrite, &dev->flags);
3521 set_bit(R5_ReWrite, &dev->flags);
3522 set_bit(R5_LOCKED, &dev->flags);
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003523 s.locked++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003524 } else {
3525 /* let's read it back */
3526 set_bit(R5_Wantread, &dev->flags);
3527 set_bit(R5_LOCKED, &dev->flags);
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003528 s.locked++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003529 }
3530 }
3531 }
NeilBrownf4168852007-02-28 20:11:53 -08003532
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003533 /* Finish reconstruct operations initiated by the expansion process */
3534 if (sh->reconstruct_state == reconstruct_state_result) {
3535 sh->reconstruct_state = reconstruct_state_idle;
3536 clear_bit(STRIPE_EXPANDING, &sh->state);
3537 for (i = conf->raid_disks; i--; ) {
3538 set_bit(R5_Wantwrite, &sh->dev[i].flags);
3539 set_bit(R5_LOCKED, &sh->dev[i].flags);
3540 s.locked++;
3541 }
3542 }
3543
3544 if (s.expanded && test_bit(STRIPE_EXPANDING, &sh->state) &&
3545 !sh->reconstruct_state) {
NeilBrownab69ae12009-03-31 15:26:47 +11003546 struct stripe_head *sh2
NeilBrowna8c906c2009-06-09 14:39:59 +10003547 = get_active_stripe(conf, sh->sector, 1, 1, 1);
NeilBrownab69ae12009-03-31 15:26:47 +11003548 if (sh2 && test_bit(STRIPE_EXPAND_SOURCE, &sh2->state)) {
3549 /* sh cannot be written until sh2 has been read.
3550 * so arrange for sh to be delayed a little
3551 */
3552 set_bit(STRIPE_DELAYED, &sh->state);
3553 set_bit(STRIPE_HANDLE, &sh->state);
3554 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE,
3555 &sh2->state))
3556 atomic_inc(&conf->preread_active_stripes);
3557 release_stripe(sh2);
3558 goto unlock;
3559 }
3560 if (sh2)
3561 release_stripe(sh2);
3562
NeilBrownf4168852007-02-28 20:11:53 -08003563 /* Need to write out all blocks after computing P&Q */
3564 sh->disks = conf->raid_disks;
NeilBrown911d4ee2009-03-31 14:39:38 +11003565 stripe_set_idx(sh->sector, conf, 0, sh);
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003566 schedule_reconstruction(sh, &s, 1, 1);
3567 } else if (s.expanded && !sh->reconstruct_state && s.locked == 0) {
NeilBrownf4168852007-02-28 20:11:53 -08003568 clear_bit(STRIPE_EXPAND_READY, &sh->state);
3569 atomic_dec(&conf->reshape_stripes);
3570 wake_up(&conf->wait_for_overlap);
3571 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
3572 }
3573
Dan Williams0f94e87c2008-01-08 15:32:53 -08003574 if (s.expanding && s.locked == 0 &&
Dan Williams976ea8d2008-06-28 08:32:03 +10003575 !test_bit(STRIPE_COMPUTE_RUN, &sh->state))
Dan Williamsa4456852007-07-09 11:56:43 -07003576 handle_stripe_expansion(conf, sh, &r6s);
NeilBrownf4168852007-02-28 20:11:53 -08003577
Dan Williams6bfe0b42008-04-30 00:52:32 -07003578 unlock:
NeilBrown16a53ec2006-06-26 00:27:38 -07003579 spin_unlock(&sh->lock);
3580
Dan Williams6bfe0b42008-04-30 00:52:32 -07003581 /* wait for this device to become unblocked */
3582 if (unlikely(blocked_rdev))
3583 md_wait_for_blocked_rdev(blocked_rdev, conf->mddev);
3584
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003585 if (s.ops_request)
3586 raid_run_ops(sh, s.ops_request);
3587
Dan Williamsf0e43bc2008-06-28 08:31:55 +10003588 ops_run_io(sh, &s);
3589
NeilBrown729a1862009-12-14 12:49:50 +11003590
3591 if (dec_preread_active) {
3592 /* We delay this until after ops_run_io so that if make_request
Tejun Heoe9c74692010-09-03 11:56:18 +02003593 * is waiting on a flush, it won't continue until the writes
NeilBrown729a1862009-12-14 12:49:50 +11003594 * have actually been submitted.
3595 */
3596 atomic_dec(&conf->preread_active_stripes);
3597 if (atomic_read(&conf->preread_active_stripes) <
3598 IO_THRESHOLD)
3599 md_wakeup_thread(conf->mddev->thread);
3600 }
3601
Dan Williamsa4456852007-07-09 11:56:43 -07003602 return_io(return_bi);
NeilBrown16a53ec2006-06-26 00:27:38 -07003603}
3604
NeilBrown14425772009-10-16 15:55:25 +11003605static void handle_stripe(struct stripe_head *sh)
NeilBrown16a53ec2006-06-26 00:27:38 -07003606{
3607 if (sh->raid_conf->level == 6)
NeilBrown14425772009-10-16 15:55:25 +11003608 handle_stripe6(sh);
NeilBrown16a53ec2006-06-26 00:27:38 -07003609 else
NeilBrown14425772009-10-16 15:55:25 +11003610 handle_stripe5(sh);
NeilBrown16a53ec2006-06-26 00:27:38 -07003611}
3612
Arjan van de Ven858119e2006-01-14 13:20:43 -08003613static void raid5_activate_delayed(raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614{
3615 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD) {
3616 while (!list_empty(&conf->delayed_list)) {
3617 struct list_head *l = conf->delayed_list.next;
3618 struct stripe_head *sh;
3619 sh = list_entry(l, struct stripe_head, lru);
3620 list_del_init(l);
3621 clear_bit(STRIPE_DELAYED, &sh->state);
3622 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3623 atomic_inc(&conf->preread_active_stripes);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003624 list_add_tail(&sh->lru, &conf->hold_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625 }
NeilBrown6ed30032008-02-06 01:40:00 -08003626 } else
NeilBrown2ac87402010-06-01 19:37:29 +10003627 plugger_set_plug(&conf->plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628}
3629
Arjan van de Ven858119e2006-01-14 13:20:43 -08003630static void activate_bit_delay(raid5_conf_t *conf)
NeilBrown72626682005-09-09 16:23:54 -07003631{
3632 /* device_lock is held */
3633 struct list_head head;
3634 list_add(&head, &conf->bitmap_list);
3635 list_del_init(&conf->bitmap_list);
3636 while (!list_empty(&head)) {
3637 struct stripe_head *sh = list_entry(head.next, struct stripe_head, lru);
3638 list_del_init(&sh->lru);
3639 atomic_inc(&sh->count);
3640 __release_stripe(conf, sh);
3641 }
3642}
3643
Jens Axboe7eaceac2011-03-10 08:52:07 +01003644void md_raid5_kick_device(raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645{
Jens Axboe7eaceac2011-03-10 08:52:07 +01003646 blk_flush_plug(current);
3647 raid5_activate_delayed(conf);
NeilBrown2ac87402010-06-01 19:37:29 +10003648 md_wakeup_thread(conf->mddev->thread);
NeilBrown2ac87402010-06-01 19:37:29 +10003649}
Jens Axboe7eaceac2011-03-10 08:52:07 +01003650EXPORT_SYMBOL_GPL(md_raid5_kick_device);
NeilBrown2ac87402010-06-01 19:37:29 +10003651
3652static void raid5_unplug(struct plug_handle *plug)
3653{
3654 raid5_conf_t *conf = container_of(plug, raid5_conf_t, plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655
Jens Axboe7eaceac2011-03-10 08:52:07 +01003656 md_raid5_kick_device(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657}
3658
NeilBrown11d8a6e2010-07-26 11:57:07 +10003659int md_raid5_congested(mddev_t *mddev, int bits)
NeilBrownf022b2f2006-10-03 01:15:56 -07003660{
NeilBrown070ec552009-06-16 16:54:21 +10003661 raid5_conf_t *conf = mddev->private;
NeilBrownf022b2f2006-10-03 01:15:56 -07003662
3663 /* No difference between reads and writes. Just check
3664 * how busy the stripe_cache is
3665 */
NeilBrown3fa841d2009-09-23 18:10:29 +10003666
NeilBrownf022b2f2006-10-03 01:15:56 -07003667 if (conf->inactive_blocked)
3668 return 1;
3669 if (conf->quiesce)
3670 return 1;
3671 if (list_empty_careful(&conf->inactive_list))
3672 return 1;
3673
3674 return 0;
3675}
NeilBrown11d8a6e2010-07-26 11:57:07 +10003676EXPORT_SYMBOL_GPL(md_raid5_congested);
3677
3678static int raid5_congested(void *data, int bits)
3679{
3680 mddev_t *mddev = data;
3681
3682 return mddev_congested(mddev, bits) ||
3683 md_raid5_congested(mddev, bits);
3684}
NeilBrownf022b2f2006-10-03 01:15:56 -07003685
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003686/* We want read requests to align with chunks where possible,
3687 * but write requests don't need to.
3688 */
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003689static int raid5_mergeable_bvec(struct request_queue *q,
3690 struct bvec_merge_data *bvm,
3691 struct bio_vec *biovec)
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003692{
3693 mddev_t *mddev = q->queuedata;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003694 sector_t sector = bvm->bi_sector + get_start_sect(bvm->bi_bdev);
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003695 int max;
Andre Noll9d8f0362009-06-18 08:45:01 +10003696 unsigned int chunk_sectors = mddev->chunk_sectors;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003697 unsigned int bio_sectors = bvm->bi_size >> 9;
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003698
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003699 if ((bvm->bi_rw & 1) == WRITE)
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003700 return biovec->bv_len; /* always allow writes to be mergeable */
3701
Andre Noll664e7c42009-06-18 08:45:27 +10003702 if (mddev->new_chunk_sectors < mddev->chunk_sectors)
3703 chunk_sectors = mddev->new_chunk_sectors;
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003704 max = (chunk_sectors - ((sector & (chunk_sectors - 1)) + bio_sectors)) << 9;
3705 if (max < 0) max = 0;
3706 if (max <= biovec->bv_len && bio_sectors == 0)
3707 return biovec->bv_len;
3708 else
3709 return max;
3710}
3711
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003712
3713static int in_chunk_boundary(mddev_t *mddev, struct bio *bio)
3714{
3715 sector_t sector = bio->bi_sector + get_start_sect(bio->bi_bdev);
Andre Noll9d8f0362009-06-18 08:45:01 +10003716 unsigned int chunk_sectors = mddev->chunk_sectors;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003717 unsigned int bio_sectors = bio->bi_size >> 9;
3718
Andre Noll664e7c42009-06-18 08:45:27 +10003719 if (mddev->new_chunk_sectors < mddev->chunk_sectors)
3720 chunk_sectors = mddev->new_chunk_sectors;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003721 return chunk_sectors >=
3722 ((sector & (chunk_sectors - 1)) + bio_sectors);
3723}
3724
3725/*
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003726 * add bio to the retry LIFO ( in O(1) ... we are in interrupt )
3727 * later sampled by raid5d.
3728 */
3729static void add_bio_to_retry(struct bio *bi,raid5_conf_t *conf)
3730{
3731 unsigned long flags;
3732
3733 spin_lock_irqsave(&conf->device_lock, flags);
3734
3735 bi->bi_next = conf->retry_read_aligned_list;
3736 conf->retry_read_aligned_list = bi;
3737
3738 spin_unlock_irqrestore(&conf->device_lock, flags);
3739 md_wakeup_thread(conf->mddev->thread);
3740}
3741
3742
3743static struct bio *remove_bio_from_retry(raid5_conf_t *conf)
3744{
3745 struct bio *bi;
3746
3747 bi = conf->retry_read_aligned;
3748 if (bi) {
3749 conf->retry_read_aligned = NULL;
3750 return bi;
3751 }
3752 bi = conf->retry_read_aligned_list;
3753 if(bi) {
Neil Brown387bb172007-02-08 14:20:29 -08003754 conf->retry_read_aligned_list = bi->bi_next;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003755 bi->bi_next = NULL;
Jens Axboe960e7392008-08-15 10:41:18 +02003756 /*
3757 * this sets the active strip count to 1 and the processed
3758 * strip count to zero (upper 8 bits)
3759 */
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003760 bi->bi_phys_segments = 1; /* biased count of active stripes */
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003761 }
3762
3763 return bi;
3764}
3765
3766
3767/*
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003768 * The "raid5_align_endio" should check if the read succeeded and if it
3769 * did, call bio_endio on the original bio (having bio_put the new bio
3770 * first).
3771 * If the read failed..
3772 */
NeilBrown6712ecf2007-09-27 12:47:43 +02003773static void raid5_align_endio(struct bio *bi, int error)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003774{
3775 struct bio* raid_bi = bi->bi_private;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003776 mddev_t *mddev;
3777 raid5_conf_t *conf;
3778 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
3779 mdk_rdev_t *rdev;
3780
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003781 bio_put(bi);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003782
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003783 rdev = (void*)raid_bi->bi_next;
3784 raid_bi->bi_next = NULL;
NeilBrown2b7f2222010-03-25 16:06:03 +11003785 mddev = rdev->mddev;
3786 conf = mddev->private;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003787
3788 rdev_dec_pending(rdev, conf->mddev);
3789
3790 if (!error && uptodate) {
NeilBrown6712ecf2007-09-27 12:47:43 +02003791 bio_endio(raid_bi, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003792 if (atomic_dec_and_test(&conf->active_aligned_reads))
3793 wake_up(&conf->wait_for_stripe);
NeilBrown6712ecf2007-09-27 12:47:43 +02003794 return;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003795 }
3796
3797
Dan Williams45b42332007-07-09 11:56:43 -07003798 pr_debug("raid5_align_endio : io error...handing IO for a retry\n");
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003799
3800 add_bio_to_retry(raid_bi, conf);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003801}
3802
Neil Brown387bb172007-02-08 14:20:29 -08003803static int bio_fits_rdev(struct bio *bi)
3804{
Jens Axboe165125e2007-07-24 09:28:11 +02003805 struct request_queue *q = bdev_get_queue(bi->bi_bdev);
Neil Brown387bb172007-02-08 14:20:29 -08003806
Martin K. Petersenae03bf62009-05-22 17:17:50 -04003807 if ((bi->bi_size>>9) > queue_max_sectors(q))
Neil Brown387bb172007-02-08 14:20:29 -08003808 return 0;
3809 blk_recount_segments(q, bi);
Martin K. Petersen8a783622010-02-26 00:20:39 -05003810 if (bi->bi_phys_segments > queue_max_segments(q))
Neil Brown387bb172007-02-08 14:20:29 -08003811 return 0;
3812
3813 if (q->merge_bvec_fn)
3814 /* it's too hard to apply the merge_bvec_fn at this stage,
3815 * just just give up
3816 */
3817 return 0;
3818
3819 return 1;
3820}
3821
3822
NeilBrown21a52c62010-04-01 15:02:13 +11003823static int chunk_aligned_read(mddev_t *mddev, struct bio * raid_bio)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003824{
NeilBrown070ec552009-06-16 16:54:21 +10003825 raid5_conf_t *conf = mddev->private;
NeilBrown8553fe7ec2009-12-14 12:49:47 +11003826 int dd_idx;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003827 struct bio* align_bi;
3828 mdk_rdev_t *rdev;
3829
3830 if (!in_chunk_boundary(mddev, raid_bio)) {
Dan Williams45b42332007-07-09 11:56:43 -07003831 pr_debug("chunk_aligned_read : non aligned\n");
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003832 return 0;
3833 }
3834 /*
NeilBrowna167f662010-10-26 18:31:13 +11003835 * use bio_clone_mddev to make a copy of the bio
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003836 */
NeilBrowna167f662010-10-26 18:31:13 +11003837 align_bi = bio_clone_mddev(raid_bio, GFP_NOIO, mddev);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003838 if (!align_bi)
3839 return 0;
3840 /*
3841 * set bi_end_io to a new function, and set bi_private to the
3842 * original bio.
3843 */
3844 align_bi->bi_end_io = raid5_align_endio;
3845 align_bi->bi_private = raid_bio;
3846 /*
3847 * compute position
3848 */
NeilBrown112bf892009-03-31 14:39:38 +11003849 align_bi->bi_sector = raid5_compute_sector(conf, raid_bio->bi_sector,
3850 0,
NeilBrown911d4ee2009-03-31 14:39:38 +11003851 &dd_idx, NULL);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003852
3853 rcu_read_lock();
3854 rdev = rcu_dereference(conf->disks[dd_idx].rdev);
3855 if (rdev && test_bit(In_sync, &rdev->flags)) {
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003856 atomic_inc(&rdev->nr_pending);
3857 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003858 raid_bio->bi_next = (void*)rdev;
3859 align_bi->bi_bdev = rdev->bdev;
3860 align_bi->bi_flags &= ~(1 << BIO_SEG_VALID);
3861 align_bi->bi_sector += rdev->data_offset;
3862
Neil Brown387bb172007-02-08 14:20:29 -08003863 if (!bio_fits_rdev(align_bi)) {
3864 /* too big in some way */
3865 bio_put(align_bi);
3866 rdev_dec_pending(rdev, mddev);
3867 return 0;
3868 }
3869
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003870 spin_lock_irq(&conf->device_lock);
3871 wait_event_lock_irq(conf->wait_for_stripe,
3872 conf->quiesce == 0,
3873 conf->device_lock, /* nothing */);
3874 atomic_inc(&conf->active_aligned_reads);
3875 spin_unlock_irq(&conf->device_lock);
3876
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003877 generic_make_request(align_bi);
3878 return 1;
3879 } else {
3880 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003881 bio_put(align_bi);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003882 return 0;
3883 }
3884}
3885
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003886/* __get_priority_stripe - get the next stripe to process
3887 *
3888 * Full stripe writes are allowed to pass preread active stripes up until
3889 * the bypass_threshold is exceeded. In general the bypass_count
3890 * increments when the handle_list is handled before the hold_list; however, it
3891 * will not be incremented when STRIPE_IO_STARTED is sampled set signifying a
3892 * stripe with in flight i/o. The bypass_count will be reset when the
3893 * head of the hold_list has changed, i.e. the head was promoted to the
3894 * handle_list.
3895 */
3896static struct stripe_head *__get_priority_stripe(raid5_conf_t *conf)
3897{
3898 struct stripe_head *sh;
3899
3900 pr_debug("%s: handle: %s hold: %s full_writes: %d bypass_count: %d\n",
3901 __func__,
3902 list_empty(&conf->handle_list) ? "empty" : "busy",
3903 list_empty(&conf->hold_list) ? "empty" : "busy",
3904 atomic_read(&conf->pending_full_writes), conf->bypass_count);
3905
3906 if (!list_empty(&conf->handle_list)) {
3907 sh = list_entry(conf->handle_list.next, typeof(*sh), lru);
3908
3909 if (list_empty(&conf->hold_list))
3910 conf->bypass_count = 0;
3911 else if (!test_bit(STRIPE_IO_STARTED, &sh->state)) {
3912 if (conf->hold_list.next == conf->last_hold)
3913 conf->bypass_count++;
3914 else {
3915 conf->last_hold = conf->hold_list.next;
3916 conf->bypass_count -= conf->bypass_threshold;
3917 if (conf->bypass_count < 0)
3918 conf->bypass_count = 0;
3919 }
3920 }
3921 } else if (!list_empty(&conf->hold_list) &&
3922 ((conf->bypass_threshold &&
3923 conf->bypass_count > conf->bypass_threshold) ||
3924 atomic_read(&conf->pending_full_writes) == 0)) {
3925 sh = list_entry(conf->hold_list.next,
3926 typeof(*sh), lru);
3927 conf->bypass_count -= conf->bypass_threshold;
3928 if (conf->bypass_count < 0)
3929 conf->bypass_count = 0;
3930 } else
3931 return NULL;
3932
3933 list_del_init(&sh->lru);
3934 atomic_inc(&sh->count);
3935 BUG_ON(atomic_read(&sh->count) != 1);
3936 return sh;
3937}
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003938
NeilBrown21a52c62010-04-01 15:02:13 +11003939static int make_request(mddev_t *mddev, struct bio * bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940{
NeilBrown070ec552009-06-16 16:54:21 +10003941 raid5_conf_t *conf = mddev->private;
NeilBrown911d4ee2009-03-31 14:39:38 +11003942 int dd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943 sector_t new_sector;
3944 sector_t logical_sector, last_sector;
3945 struct stripe_head *sh;
Jens Axboea3623572005-11-01 09:26:16 +01003946 const int rw = bio_data_dir(bi);
NeilBrown49077322010-03-25 16:20:56 +11003947 int remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948
Tejun Heoe9c74692010-09-03 11:56:18 +02003949 if (unlikely(bi->bi_rw & REQ_FLUSH)) {
3950 md_flush_request(mddev, bi);
NeilBrowne5dcdd82005-09-09 16:23:41 -07003951 return 0;
3952 }
3953
NeilBrown3d310eb2005-06-21 17:17:26 -07003954 md_write_start(mddev, bi);
NeilBrown06d91a52005-06-21 17:17:12 -07003955
NeilBrown802ba062006-12-13 00:34:13 -08003956 if (rw == READ &&
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08003957 mddev->reshape_position == MaxSector &&
NeilBrown21a52c62010-04-01 15:02:13 +11003958 chunk_aligned_read(mddev,bi))
NeilBrown99c0fb52009-03-31 14:39:38 +11003959 return 0;
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08003960
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961 logical_sector = bi->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
3962 last_sector = bi->bi_sector + (bi->bi_size>>9);
3963 bi->bi_next = NULL;
3964 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
NeilBrown06d91a52005-06-21 17:17:12 -07003965
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966 for (;logical_sector < last_sector; logical_sector += STRIPE_SECTORS) {
3967 DEFINE_WAIT(w);
NeilBrown16a53ec2006-06-26 00:27:38 -07003968 int disks, data_disks;
NeilBrownb5663ba2009-03-31 14:39:38 +11003969 int previous;
NeilBrownb578d552006-03-27 01:18:12 -08003970
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003971 retry:
NeilBrownb5663ba2009-03-31 14:39:38 +11003972 previous = 0;
NeilBrownb0f9ec02009-03-31 15:27:18 +11003973 disks = conf->raid_disks;
NeilBrownb578d552006-03-27 01:18:12 -08003974 prepare_to_wait(&conf->wait_for_overlap, &w, TASK_UNINTERRUPTIBLE);
NeilBrownb0f9ec02009-03-31 15:27:18 +11003975 if (unlikely(conf->reshape_progress != MaxSector)) {
NeilBrownfef9c612009-03-31 15:16:46 +11003976 /* spinlock is needed as reshape_progress may be
NeilBrowndf8e7f762006-03-27 01:18:15 -08003977 * 64bit on a 32bit platform, and so it might be
3978 * possible to see a half-updated value
NeilBrownfef9c612009-03-31 15:16:46 +11003979 * Ofcourse reshape_progress could change after
NeilBrowndf8e7f762006-03-27 01:18:15 -08003980 * the lock is dropped, so once we get a reference
3981 * to the stripe that we think it is, we will have
3982 * to check again.
3983 */
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003984 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11003985 if (mddev->delta_disks < 0
3986 ? logical_sector < conf->reshape_progress
3987 : logical_sector >= conf->reshape_progress) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003988 disks = conf->previous_raid_disks;
NeilBrownb5663ba2009-03-31 14:39:38 +11003989 previous = 1;
3990 } else {
NeilBrownfef9c612009-03-31 15:16:46 +11003991 if (mddev->delta_disks < 0
3992 ? logical_sector < conf->reshape_safe
3993 : logical_sector >= conf->reshape_safe) {
NeilBrownb578d552006-03-27 01:18:12 -08003994 spin_unlock_irq(&conf->device_lock);
3995 schedule();
3996 goto retry;
3997 }
3998 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003999 spin_unlock_irq(&conf->device_lock);
4000 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004001 data_disks = disks - conf->max_degraded;
4002
NeilBrown112bf892009-03-31 14:39:38 +11004003 new_sector = raid5_compute_sector(conf, logical_sector,
4004 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11004005 &dd_idx, NULL);
NeilBrown0c55e022010-05-03 14:09:02 +10004006 pr_debug("raid456: make_request, sector %llu logical %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007 (unsigned long long)new_sector,
4008 (unsigned long long)logical_sector);
4009
NeilBrownb5663ba2009-03-31 14:39:38 +11004010 sh = get_active_stripe(conf, new_sector, previous,
NeilBrowna8c906c2009-06-09 14:39:59 +10004011 (bi->bi_rw&RWA_MASK), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012 if (sh) {
NeilBrownb0f9ec02009-03-31 15:27:18 +11004013 if (unlikely(previous)) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004014 /* expansion might have moved on while waiting for a
NeilBrowndf8e7f762006-03-27 01:18:15 -08004015 * stripe, so we must do the range check again.
4016 * Expansion could still move past after this
4017 * test, but as we are holding a reference to
4018 * 'sh', we know that if that happens,
4019 * STRIPE_EXPANDING will get set and the expansion
4020 * won't proceed until we finish with the stripe.
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004021 */
4022 int must_retry = 0;
4023 spin_lock_irq(&conf->device_lock);
NeilBrownb0f9ec02009-03-31 15:27:18 +11004024 if (mddev->delta_disks < 0
4025 ? logical_sector >= conf->reshape_progress
4026 : logical_sector < conf->reshape_progress)
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004027 /* mismatch, need to try again */
4028 must_retry = 1;
4029 spin_unlock_irq(&conf->device_lock);
4030 if (must_retry) {
4031 release_stripe(sh);
Dan Williams7a3ab902009-06-16 16:00:33 -07004032 schedule();
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004033 goto retry;
4034 }
4035 }
NeilBrowne62e58a2009-07-01 13:15:35 +10004036
NeilBrowna5c308d2009-07-01 13:15:35 +10004037 if (bio_data_dir(bi) == WRITE &&
4038 logical_sector >= mddev->suspend_lo &&
NeilBrowne464eaf2006-03-27 01:18:14 -08004039 logical_sector < mddev->suspend_hi) {
4040 release_stripe(sh);
NeilBrowne62e58a2009-07-01 13:15:35 +10004041 /* As the suspend_* range is controlled by
4042 * userspace, we want an interruptible
4043 * wait.
4044 */
4045 flush_signals(current);
4046 prepare_to_wait(&conf->wait_for_overlap,
4047 &w, TASK_INTERRUPTIBLE);
4048 if (logical_sector >= mddev->suspend_lo &&
4049 logical_sector < mddev->suspend_hi)
4050 schedule();
NeilBrowne464eaf2006-03-27 01:18:14 -08004051 goto retry;
4052 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004053
4054 if (test_bit(STRIPE_EXPANDING, &sh->state) ||
4055 !add_stripe_bio(sh, bi, dd_idx, (bi->bi_rw&RW_MASK))) {
4056 /* Stripe is busy expanding or
4057 * add failed due to overlap. Flush everything
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058 * and wait a while
4059 */
Jens Axboe7eaceac2011-03-10 08:52:07 +01004060 md_raid5_kick_device(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061 release_stripe(sh);
4062 schedule();
4063 goto retry;
4064 }
4065 finish_wait(&conf->wait_for_overlap, &w);
NeilBrown6ed30032008-02-06 01:40:00 -08004066 set_bit(STRIPE_HANDLE, &sh->state);
4067 clear_bit(STRIPE_DELAYED, &sh->state);
Tejun Heoe9c74692010-09-03 11:56:18 +02004068 if ((bi->bi_rw & REQ_SYNC) &&
NeilBrown729a1862009-12-14 12:49:50 +11004069 !test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
4070 atomic_inc(&conf->preread_active_stripes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072 } else {
4073 /* cannot get stripe for read-ahead, just give-up */
4074 clear_bit(BIO_UPTODATE, &bi->bi_flags);
4075 finish_wait(&conf->wait_for_overlap, &w);
4076 break;
4077 }
4078
4079 }
4080 spin_lock_irq(&conf->device_lock);
Jens Axboe960e7392008-08-15 10:41:18 +02004081 remaining = raid5_dec_bi_phys_segments(bi);
NeilBrownf6344752006-03-27 01:18:17 -08004082 spin_unlock_irq(&conf->device_lock);
4083 if (remaining == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084
NeilBrown16a53ec2006-06-26 00:27:38 -07004085 if ( rw == WRITE )
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086 md_write_end(mddev);
NeilBrown6712ecf2007-09-27 12:47:43 +02004087
Neil Brown0e13fe232008-06-28 08:31:20 +10004088 bio_endio(bi, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089 }
NeilBrown729a1862009-12-14 12:49:50 +11004090
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091 return 0;
4092}
4093
Dan Williamsb522adc2009-03-31 15:00:31 +11004094static sector_t raid5_size(mddev_t *mddev, sector_t sectors, int raid_disks);
4095
NeilBrown52c03292006-06-26 00:27:43 -07004096static sector_t reshape_request(mddev_t *mddev, sector_t sector_nr, int *skipped)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097{
NeilBrown52c03292006-06-26 00:27:43 -07004098 /* reshaping is quite different to recovery/resync so it is
4099 * handled quite separately ... here.
4100 *
4101 * On each call to sync_request, we gather one chunk worth of
4102 * destination stripes and flag them as expanding.
4103 * Then we find all the source stripes and request reads.
4104 * As the reads complete, handle_stripe will copy the data
4105 * into the destination stripe and release that stripe.
4106 */
H Hartley Sweeten7b928132010-03-08 16:02:40 +11004107 raid5_conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108 struct stripe_head *sh;
NeilBrownccfcc3c2006-03-27 01:18:09 -08004109 sector_t first_sector, last_sector;
NeilBrownf4168852007-02-28 20:11:53 -08004110 int raid_disks = conf->previous_raid_disks;
4111 int data_disks = raid_disks - conf->max_degraded;
4112 int new_data_disks = conf->raid_disks - conf->max_degraded;
NeilBrown52c03292006-06-26 00:27:43 -07004113 int i;
4114 int dd_idx;
NeilBrownc8f517c2009-03-31 15:28:40 +11004115 sector_t writepos, readpos, safepos;
NeilBrownec32a2b2009-03-31 15:17:38 +11004116 sector_t stripe_addr;
NeilBrown7a661382009-03-31 15:21:40 +11004117 int reshape_sectors;
NeilBrownab69ae12009-03-31 15:26:47 +11004118 struct list_head stripes;
NeilBrown52c03292006-06-26 00:27:43 -07004119
NeilBrownfef9c612009-03-31 15:16:46 +11004120 if (sector_nr == 0) {
4121 /* If restarting in the middle, skip the initial sectors */
4122 if (mddev->delta_disks < 0 &&
4123 conf->reshape_progress < raid5_size(mddev, 0, 0)) {
4124 sector_nr = raid5_size(mddev, 0, 0)
4125 - conf->reshape_progress;
NeilBrowna6397552009-08-13 10:13:00 +10004126 } else if (mddev->delta_disks >= 0 &&
NeilBrownfef9c612009-03-31 15:16:46 +11004127 conf->reshape_progress > 0)
4128 sector_nr = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08004129 sector_div(sector_nr, new_data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11004130 if (sector_nr) {
NeilBrown8dee7212009-11-06 14:59:29 +11004131 mddev->curr_resync_completed = sector_nr;
4132 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrownfef9c612009-03-31 15:16:46 +11004133 *skipped = 1;
4134 return sector_nr;
4135 }
NeilBrown52c03292006-06-26 00:27:43 -07004136 }
4137
NeilBrown7a661382009-03-31 15:21:40 +11004138 /* We need to process a full chunk at a time.
4139 * If old and new chunk sizes differ, we need to process the
4140 * largest of these
4141 */
Andre Noll664e7c42009-06-18 08:45:27 +10004142 if (mddev->new_chunk_sectors > mddev->chunk_sectors)
4143 reshape_sectors = mddev->new_chunk_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11004144 else
Andre Noll9d8f0362009-06-18 08:45:01 +10004145 reshape_sectors = mddev->chunk_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11004146
NeilBrown52c03292006-06-26 00:27:43 -07004147 /* we update the metadata when there is more than 3Meg
4148 * in the block range (that is rather arbitrary, should
4149 * probably be time based) or when the data about to be
4150 * copied would over-write the source of the data at
4151 * the front of the range.
NeilBrownfef9c612009-03-31 15:16:46 +11004152 * i.e. one new_stripe along from reshape_progress new_maps
4153 * to after where reshape_safe old_maps to
NeilBrown52c03292006-06-26 00:27:43 -07004154 */
NeilBrownfef9c612009-03-31 15:16:46 +11004155 writepos = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08004156 sector_div(writepos, new_data_disks);
NeilBrownc8f517c2009-03-31 15:28:40 +11004157 readpos = conf->reshape_progress;
4158 sector_div(readpos, data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11004159 safepos = conf->reshape_safe;
NeilBrownf4168852007-02-28 20:11:53 -08004160 sector_div(safepos, data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11004161 if (mddev->delta_disks < 0) {
NeilBrowned37d832009-05-27 21:39:05 +10004162 writepos -= min_t(sector_t, reshape_sectors, writepos);
NeilBrownc8f517c2009-03-31 15:28:40 +11004163 readpos += reshape_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11004164 safepos += reshape_sectors;
NeilBrownfef9c612009-03-31 15:16:46 +11004165 } else {
NeilBrown7a661382009-03-31 15:21:40 +11004166 writepos += reshape_sectors;
NeilBrowned37d832009-05-27 21:39:05 +10004167 readpos -= min_t(sector_t, reshape_sectors, readpos);
4168 safepos -= min_t(sector_t, reshape_sectors, safepos);
NeilBrownfef9c612009-03-31 15:16:46 +11004169 }
NeilBrown52c03292006-06-26 00:27:43 -07004170
NeilBrownc8f517c2009-03-31 15:28:40 +11004171 /* 'writepos' is the most advanced device address we might write.
4172 * 'readpos' is the least advanced device address we might read.
4173 * 'safepos' is the least address recorded in the metadata as having
4174 * been reshaped.
4175 * If 'readpos' is behind 'writepos', then there is no way that we can
4176 * ensure safety in the face of a crash - that must be done by userspace
4177 * making a backup of the data. So in that case there is no particular
4178 * rush to update metadata.
4179 * Otherwise if 'safepos' is behind 'writepos', then we really need to
4180 * update the metadata to advance 'safepos' to match 'readpos' so that
4181 * we can be safe in the event of a crash.
4182 * So we insist on updating metadata if safepos is behind writepos and
4183 * readpos is beyond writepos.
4184 * In any case, update the metadata every 10 seconds.
4185 * Maybe that number should be configurable, but I'm not sure it is
4186 * worth it.... maybe it could be a multiple of safemode_delay???
4187 */
NeilBrownfef9c612009-03-31 15:16:46 +11004188 if ((mddev->delta_disks < 0
NeilBrownc8f517c2009-03-31 15:28:40 +11004189 ? (safepos > writepos && readpos < writepos)
4190 : (safepos < writepos && readpos > writepos)) ||
4191 time_after(jiffies, conf->reshape_checkpoint + 10*HZ)) {
NeilBrown52c03292006-06-26 00:27:43 -07004192 /* Cannot proceed until we've updated the superblock... */
4193 wait_event(conf->wait_for_overlap,
4194 atomic_read(&conf->reshape_stripes)==0);
NeilBrownfef9c612009-03-31 15:16:46 +11004195 mddev->reshape_position = conf->reshape_progress;
NeilBrown75d3da42011-01-14 09:14:34 +11004196 mddev->curr_resync_completed = sector_nr;
NeilBrownc8f517c2009-03-31 15:28:40 +11004197 conf->reshape_checkpoint = jiffies;
NeilBrown850b2b422006-10-03 01:15:46 -07004198 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrown52c03292006-06-26 00:27:43 -07004199 md_wakeup_thread(mddev->thread);
NeilBrown850b2b422006-10-03 01:15:46 -07004200 wait_event(mddev->sb_wait, mddev->flags == 0 ||
NeilBrown52c03292006-06-26 00:27:43 -07004201 kthread_should_stop());
4202 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11004203 conf->reshape_safe = mddev->reshape_position;
NeilBrown52c03292006-06-26 00:27:43 -07004204 spin_unlock_irq(&conf->device_lock);
4205 wake_up(&conf->wait_for_overlap);
NeilBrownacb180b2009-04-14 16:28:34 +10004206 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrown52c03292006-06-26 00:27:43 -07004207 }
4208
NeilBrownec32a2b2009-03-31 15:17:38 +11004209 if (mddev->delta_disks < 0) {
4210 BUG_ON(conf->reshape_progress == 0);
4211 stripe_addr = writepos;
4212 BUG_ON((mddev->dev_sectors &
NeilBrown7a661382009-03-31 15:21:40 +11004213 ~((sector_t)reshape_sectors - 1))
4214 - reshape_sectors - stripe_addr
NeilBrownec32a2b2009-03-31 15:17:38 +11004215 != sector_nr);
4216 } else {
NeilBrown7a661382009-03-31 15:21:40 +11004217 BUG_ON(writepos != sector_nr + reshape_sectors);
NeilBrownec32a2b2009-03-31 15:17:38 +11004218 stripe_addr = sector_nr;
4219 }
NeilBrownab69ae12009-03-31 15:26:47 +11004220 INIT_LIST_HEAD(&stripes);
NeilBrown7a661382009-03-31 15:21:40 +11004221 for (i = 0; i < reshape_sectors; i += STRIPE_SECTORS) {
NeilBrown52c03292006-06-26 00:27:43 -07004222 int j;
NeilBrowna9f326e2009-09-23 18:06:41 +10004223 int skipped_disk = 0;
NeilBrowna8c906c2009-06-09 14:39:59 +10004224 sh = get_active_stripe(conf, stripe_addr+i, 0, 0, 1);
NeilBrown52c03292006-06-26 00:27:43 -07004225 set_bit(STRIPE_EXPANDING, &sh->state);
4226 atomic_inc(&conf->reshape_stripes);
4227 /* If any of this stripe is beyond the end of the old
4228 * array, then we need to zero those blocks
4229 */
4230 for (j=sh->disks; j--;) {
4231 sector_t s;
4232 if (j == sh->pd_idx)
4233 continue;
NeilBrownf4168852007-02-28 20:11:53 -08004234 if (conf->level == 6 &&
NeilBrownd0dabf72009-03-31 14:39:38 +11004235 j == sh->qd_idx)
NeilBrownf4168852007-02-28 20:11:53 -08004236 continue;
NeilBrown784052e2009-03-31 15:19:07 +11004237 s = compute_blocknr(sh, j, 0);
Dan Williamsb522adc2009-03-31 15:00:31 +11004238 if (s < raid5_size(mddev, 0, 0)) {
NeilBrowna9f326e2009-09-23 18:06:41 +10004239 skipped_disk = 1;
NeilBrown52c03292006-06-26 00:27:43 -07004240 continue;
4241 }
4242 memset(page_address(sh->dev[j].page), 0, STRIPE_SIZE);
4243 set_bit(R5_Expanded, &sh->dev[j].flags);
4244 set_bit(R5_UPTODATE, &sh->dev[j].flags);
4245 }
NeilBrowna9f326e2009-09-23 18:06:41 +10004246 if (!skipped_disk) {
NeilBrown52c03292006-06-26 00:27:43 -07004247 set_bit(STRIPE_EXPAND_READY, &sh->state);
4248 set_bit(STRIPE_HANDLE, &sh->state);
4249 }
NeilBrownab69ae12009-03-31 15:26:47 +11004250 list_add(&sh->lru, &stripes);
NeilBrown52c03292006-06-26 00:27:43 -07004251 }
4252 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11004253 if (mddev->delta_disks < 0)
NeilBrown7a661382009-03-31 15:21:40 +11004254 conf->reshape_progress -= reshape_sectors * new_data_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11004255 else
NeilBrown7a661382009-03-31 15:21:40 +11004256 conf->reshape_progress += reshape_sectors * new_data_disks;
NeilBrown52c03292006-06-26 00:27:43 -07004257 spin_unlock_irq(&conf->device_lock);
4258 /* Ok, those stripe are ready. We can start scheduling
4259 * reads on the source stripes.
4260 * The source stripes are determined by mapping the first and last
4261 * block on the destination stripes.
4262 */
NeilBrown52c03292006-06-26 00:27:43 -07004263 first_sector =
NeilBrownec32a2b2009-03-31 15:17:38 +11004264 raid5_compute_sector(conf, stripe_addr*(new_data_disks),
NeilBrown911d4ee2009-03-31 14:39:38 +11004265 1, &dd_idx, NULL);
NeilBrown52c03292006-06-26 00:27:43 -07004266 last_sector =
NeilBrown0e6e0272009-06-09 16:32:22 +10004267 raid5_compute_sector(conf, ((stripe_addr+reshape_sectors)
Andre Noll09c9e5f2009-06-18 08:45:55 +10004268 * new_data_disks - 1),
NeilBrown911d4ee2009-03-31 14:39:38 +11004269 1, &dd_idx, NULL);
Andre Noll58c0fed2009-03-31 14:33:13 +11004270 if (last_sector >= mddev->dev_sectors)
4271 last_sector = mddev->dev_sectors - 1;
NeilBrown52c03292006-06-26 00:27:43 -07004272 while (first_sector <= last_sector) {
NeilBrowna8c906c2009-06-09 14:39:59 +10004273 sh = get_active_stripe(conf, first_sector, 1, 0, 1);
NeilBrown52c03292006-06-26 00:27:43 -07004274 set_bit(STRIPE_EXPAND_SOURCE, &sh->state);
4275 set_bit(STRIPE_HANDLE, &sh->state);
4276 release_stripe(sh);
4277 first_sector += STRIPE_SECTORS;
4278 }
NeilBrownab69ae12009-03-31 15:26:47 +11004279 /* Now that the sources are clearly marked, we can release
4280 * the destination stripes
4281 */
4282 while (!list_empty(&stripes)) {
4283 sh = list_entry(stripes.next, struct stripe_head, lru);
4284 list_del_init(&sh->lru);
4285 release_stripe(sh);
4286 }
NeilBrownc6207272008-02-06 01:39:52 -08004287 /* If this takes us to the resync_max point where we have to pause,
4288 * then we need to write out the superblock.
4289 */
NeilBrown7a661382009-03-31 15:21:40 +11004290 sector_nr += reshape_sectors;
NeilBrownc03f6a12009-04-17 11:06:30 +10004291 if ((sector_nr - mddev->curr_resync_completed) * 2
4292 >= mddev->resync_max - mddev->curr_resync_completed) {
NeilBrownc6207272008-02-06 01:39:52 -08004293 /* Cannot proceed until we've updated the superblock... */
4294 wait_event(conf->wait_for_overlap,
4295 atomic_read(&conf->reshape_stripes) == 0);
NeilBrownfef9c612009-03-31 15:16:46 +11004296 mddev->reshape_position = conf->reshape_progress;
NeilBrown75d3da42011-01-14 09:14:34 +11004297 mddev->curr_resync_completed = sector_nr;
NeilBrownc8f517c2009-03-31 15:28:40 +11004298 conf->reshape_checkpoint = jiffies;
NeilBrownc6207272008-02-06 01:39:52 -08004299 set_bit(MD_CHANGE_DEVS, &mddev->flags);
4300 md_wakeup_thread(mddev->thread);
4301 wait_event(mddev->sb_wait,
4302 !test_bit(MD_CHANGE_DEVS, &mddev->flags)
4303 || kthread_should_stop());
4304 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11004305 conf->reshape_safe = mddev->reshape_position;
NeilBrownc6207272008-02-06 01:39:52 -08004306 spin_unlock_irq(&conf->device_lock);
4307 wake_up(&conf->wait_for_overlap);
NeilBrownacb180b2009-04-14 16:28:34 +10004308 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrownc6207272008-02-06 01:39:52 -08004309 }
NeilBrown7a661382009-03-31 15:21:40 +11004310 return reshape_sectors;
NeilBrown52c03292006-06-26 00:27:43 -07004311}
4312
4313/* FIXME go_faster isn't used */
4314static inline sector_t sync_request(mddev_t *mddev, sector_t sector_nr, int *skipped, int go_faster)
4315{
H Hartley Sweeten7b928132010-03-08 16:02:40 +11004316 raid5_conf_t *conf = mddev->private;
NeilBrown52c03292006-06-26 00:27:43 -07004317 struct stripe_head *sh;
Andre Noll58c0fed2009-03-31 14:33:13 +11004318 sector_t max_sector = mddev->dev_sectors;
NeilBrown57dab0b2010-10-19 10:03:39 +11004319 sector_t sync_blocks;
NeilBrown16a53ec2006-06-26 00:27:38 -07004320 int still_degraded = 0;
4321 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322
NeilBrown72626682005-09-09 16:23:54 -07004323 if (sector_nr >= max_sector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324 /* just being told to finish up .. nothing much to do */
NeilBrowncea9c222009-03-31 15:15:05 +11004325
NeilBrown29269552006-03-27 01:18:10 -08004326 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery)) {
4327 end_reshape(conf);
4328 return 0;
4329 }
NeilBrown72626682005-09-09 16:23:54 -07004330
4331 if (mddev->curr_resync < max_sector) /* aborted */
4332 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
4333 &sync_blocks, 1);
NeilBrown16a53ec2006-06-26 00:27:38 -07004334 else /* completed sync */
NeilBrown72626682005-09-09 16:23:54 -07004335 conf->fullsync = 0;
4336 bitmap_close_sync(mddev->bitmap);
4337
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338 return 0;
4339 }
NeilBrownccfcc3c2006-03-27 01:18:09 -08004340
NeilBrown64bd6602009-08-03 10:59:58 +10004341 /* Allow raid5_quiesce to complete */
4342 wait_event(conf->wait_for_overlap, conf->quiesce != 2);
4343
NeilBrown52c03292006-06-26 00:27:43 -07004344 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery))
4345 return reshape_request(mddev, sector_nr, skipped);
NeilBrownf6705572006-03-27 01:18:11 -08004346
NeilBrownc6207272008-02-06 01:39:52 -08004347 /* No need to check resync_max as we never do more than one
4348 * stripe, and as resync_max will always be on a chunk boundary,
4349 * if the check in md_do_sync didn't fire, there is no chance
4350 * of overstepping resync_max here
4351 */
4352
NeilBrown16a53ec2006-06-26 00:27:38 -07004353 /* if there is too many failed drives and we are trying
Linus Torvalds1da177e2005-04-16 15:20:36 -07004354 * to resync, then assert that we are finished, because there is
4355 * nothing we can do.
4356 */
NeilBrown3285edf2006-06-26 00:27:55 -07004357 if (mddev->degraded >= conf->max_degraded &&
NeilBrown16a53ec2006-06-26 00:27:38 -07004358 test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
Andre Noll58c0fed2009-03-31 14:33:13 +11004359 sector_t rv = mddev->dev_sectors - sector_nr;
NeilBrown57afd892005-06-21 17:17:13 -07004360 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361 return rv;
4362 }
NeilBrown72626682005-09-09 16:23:54 -07004363 if (!bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
NeilBrown3855ad92005-11-08 21:39:38 -08004364 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
NeilBrown72626682005-09-09 16:23:54 -07004365 !conf->fullsync && sync_blocks >= STRIPE_SECTORS) {
4366 /* we can skip this block, and probably more */
4367 sync_blocks /= STRIPE_SECTORS;
4368 *skipped = 1;
4369 return sync_blocks * STRIPE_SECTORS; /* keep things rounded to whole stripes */
4370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371
NeilBrownb47490c2008-02-06 01:39:50 -08004372
4373 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
4374
NeilBrowna8c906c2009-06-09 14:39:59 +10004375 sh = get_active_stripe(conf, sector_nr, 0, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004376 if (sh == NULL) {
NeilBrowna8c906c2009-06-09 14:39:59 +10004377 sh = get_active_stripe(conf, sector_nr, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004378 /* make sure we don't swamp the stripe cache if someone else
NeilBrown16a53ec2006-06-26 00:27:38 -07004379 * is trying to get access
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380 */
Nishanth Aravamudan66c006a2005-11-07 01:01:17 -08004381 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004383 /* Need to check if array will still be degraded after recovery/resync
4384 * We don't need to check the 'failed' flag as when that gets set,
4385 * recovery aborts.
4386 */
NeilBrownf001a702009-06-09 14:30:31 +10004387 for (i = 0; i < conf->raid_disks; i++)
NeilBrown16a53ec2006-06-26 00:27:38 -07004388 if (conf->disks[i].rdev == NULL)
4389 still_degraded = 1;
4390
4391 bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, still_degraded);
4392
4393 spin_lock(&sh->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394 set_bit(STRIPE_SYNCING, &sh->state);
4395 clear_bit(STRIPE_INSYNC, &sh->state);
4396 spin_unlock(&sh->lock);
4397
NeilBrown14425772009-10-16 15:55:25 +11004398 handle_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399 release_stripe(sh);
4400
4401 return STRIPE_SECTORS;
4402}
4403
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004404static int retry_aligned_read(raid5_conf_t *conf, struct bio *raid_bio)
4405{
4406 /* We may not be able to submit a whole bio at once as there
4407 * may not be enough stripe_heads available.
4408 * We cannot pre-allocate enough stripe_heads as we may need
4409 * more than exist in the cache (if we allow ever large chunks).
4410 * So we do one stripe head at a time and record in
4411 * ->bi_hw_segments how many have been done.
4412 *
4413 * We *know* that this entire raid_bio is in one chunk, so
4414 * it will be only one 'dd_idx' and only need one call to raid5_compute_sector.
4415 */
4416 struct stripe_head *sh;
NeilBrown911d4ee2009-03-31 14:39:38 +11004417 int dd_idx;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004418 sector_t sector, logical_sector, last_sector;
4419 int scnt = 0;
4420 int remaining;
4421 int handled = 0;
4422
4423 logical_sector = raid_bio->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
NeilBrown112bf892009-03-31 14:39:38 +11004424 sector = raid5_compute_sector(conf, logical_sector,
NeilBrown911d4ee2009-03-31 14:39:38 +11004425 0, &dd_idx, NULL);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004426 last_sector = raid_bio->bi_sector + (raid_bio->bi_size>>9);
4427
4428 for (; logical_sector < last_sector;
Neil Brown387bb172007-02-08 14:20:29 -08004429 logical_sector += STRIPE_SECTORS,
4430 sector += STRIPE_SECTORS,
4431 scnt++) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004432
Jens Axboe960e7392008-08-15 10:41:18 +02004433 if (scnt < raid5_bi_hw_segments(raid_bio))
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004434 /* already done this stripe */
4435 continue;
4436
NeilBrowna8c906c2009-06-09 14:39:59 +10004437 sh = get_active_stripe(conf, sector, 0, 1, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004438
4439 if (!sh) {
4440 /* failed to get a stripe - must wait */
Jens Axboe960e7392008-08-15 10:41:18 +02004441 raid5_set_bi_hw_segments(raid_bio, scnt);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004442 conf->retry_read_aligned = raid_bio;
4443 return handled;
4444 }
4445
4446 set_bit(R5_ReadError, &sh->dev[dd_idx].flags);
Neil Brown387bb172007-02-08 14:20:29 -08004447 if (!add_stripe_bio(sh, raid_bio, dd_idx, 0)) {
4448 release_stripe(sh);
Jens Axboe960e7392008-08-15 10:41:18 +02004449 raid5_set_bi_hw_segments(raid_bio, scnt);
Neil Brown387bb172007-02-08 14:20:29 -08004450 conf->retry_read_aligned = raid_bio;
4451 return handled;
4452 }
4453
Dan Williams36d1c642009-07-14 11:48:22 -07004454 handle_stripe(sh);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004455 release_stripe(sh);
4456 handled++;
4457 }
4458 spin_lock_irq(&conf->device_lock);
Jens Axboe960e7392008-08-15 10:41:18 +02004459 remaining = raid5_dec_bi_phys_segments(raid_bio);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004460 spin_unlock_irq(&conf->device_lock);
Neil Brown0e13fe232008-06-28 08:31:20 +10004461 if (remaining == 0)
4462 bio_endio(raid_bio, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004463 if (atomic_dec_and_test(&conf->active_aligned_reads))
4464 wake_up(&conf->wait_for_stripe);
4465 return handled;
4466}
4467
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004468
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469/*
4470 * This is our raid5 kernel thread.
4471 *
4472 * We scan the hash table for stripes which can be handled now.
4473 * During the scan, completed stripes are saved for us by the interrupt
4474 * handler, so that they will not have to wait for our next wakeup.
4475 */
NeilBrown6ed30032008-02-06 01:40:00 -08004476static void raid5d(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004477{
4478 struct stripe_head *sh;
NeilBrown070ec552009-06-16 16:54:21 +10004479 raid5_conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004480 int handled;
NeilBrowne1dfa0a2011-04-18 18:25:41 +10004481 struct blk_plug plug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482
Dan Williams45b42332007-07-09 11:56:43 -07004483 pr_debug("+++ raid5d active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004484
4485 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004486
NeilBrowne1dfa0a2011-04-18 18:25:41 +10004487 blk_start_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488 handled = 0;
4489 spin_lock_irq(&conf->device_lock);
4490 while (1) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004491 struct bio *bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492
NeilBrownae3c20c2006-07-10 04:44:17 -07004493 if (conf->seq_flush != conf->seq_write) {
NeilBrown72626682005-09-09 16:23:54 -07004494 int seq = conf->seq_flush;
NeilBrown700e4322005-11-28 13:44:10 -08004495 spin_unlock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07004496 bitmap_unplug(mddev->bitmap);
NeilBrown700e4322005-11-28 13:44:10 -08004497 spin_lock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07004498 conf->seq_write = seq;
4499 activate_bit_delay(conf);
4500 }
4501
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004502 while ((bio = remove_bio_from_retry(conf))) {
4503 int ok;
4504 spin_unlock_irq(&conf->device_lock);
4505 ok = retry_aligned_read(conf, bio);
4506 spin_lock_irq(&conf->device_lock);
4507 if (!ok)
4508 break;
4509 handled++;
4510 }
4511
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004512 sh = __get_priority_stripe(conf);
4513
Dan Williamsc9f21aa2008-07-23 12:05:51 -07004514 if (!sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516 spin_unlock_irq(&conf->device_lock);
4517
4518 handled++;
Dan Williams417b8d42009-10-16 16:25:22 +11004519 handle_stripe(sh);
4520 release_stripe(sh);
4521 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522
4523 spin_lock_irq(&conf->device_lock);
4524 }
Dan Williams45b42332007-07-09 11:56:43 -07004525 pr_debug("%d stripes handled\n", handled);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526
4527 spin_unlock_irq(&conf->device_lock);
4528
Dan Williamsc9f21aa2008-07-23 12:05:51 -07004529 async_tx_issue_pending_all();
NeilBrowne1dfa0a2011-04-18 18:25:41 +10004530 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004531
Dan Williams45b42332007-07-09 11:56:43 -07004532 pr_debug("--- raid5d inactive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004533}
4534
NeilBrown3f294f42005-11-08 21:39:25 -08004535static ssize_t
NeilBrown007583c2005-11-08 21:39:30 -08004536raid5_show_stripe_cache_size(mddev_t *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08004537{
NeilBrown070ec552009-06-16 16:54:21 +10004538 raid5_conf_t *conf = mddev->private;
NeilBrown96de1e62005-11-08 21:39:39 -08004539 if (conf)
4540 return sprintf(page, "%d\n", conf->max_nr_stripes);
4541 else
4542 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08004543}
4544
NeilBrownc41d4ac2010-06-01 19:37:24 +10004545int
4546raid5_set_cache_size(mddev_t *mddev, int size)
4547{
4548 raid5_conf_t *conf = mddev->private;
4549 int err;
4550
4551 if (size <= 16 || size > 32768)
4552 return -EINVAL;
4553 while (size < conf->max_nr_stripes) {
4554 if (drop_one_stripe(conf))
4555 conf->max_nr_stripes--;
4556 else
4557 break;
4558 }
4559 err = md_allow_write(mddev);
4560 if (err)
4561 return err;
4562 while (size > conf->max_nr_stripes) {
4563 if (grow_one_stripe(conf))
4564 conf->max_nr_stripes++;
4565 else break;
4566 }
4567 return 0;
4568}
4569EXPORT_SYMBOL(raid5_set_cache_size);
4570
NeilBrown3f294f42005-11-08 21:39:25 -08004571static ssize_t
NeilBrown007583c2005-11-08 21:39:30 -08004572raid5_store_stripe_cache_size(mddev_t *mddev, const char *page, size_t len)
NeilBrown3f294f42005-11-08 21:39:25 -08004573{
NeilBrown070ec552009-06-16 16:54:21 +10004574 raid5_conf_t *conf = mddev->private;
Dan Williams4ef197d82008-04-28 02:15:54 -07004575 unsigned long new;
Dan Williamsb5470dc2008-06-27 21:44:04 -07004576 int err;
4577
NeilBrown3f294f42005-11-08 21:39:25 -08004578 if (len >= PAGE_SIZE)
4579 return -EINVAL;
NeilBrown96de1e62005-11-08 21:39:39 -08004580 if (!conf)
4581 return -ENODEV;
NeilBrown3f294f42005-11-08 21:39:25 -08004582
Dan Williams4ef197d82008-04-28 02:15:54 -07004583 if (strict_strtoul(page, 10, &new))
NeilBrown3f294f42005-11-08 21:39:25 -08004584 return -EINVAL;
NeilBrownc41d4ac2010-06-01 19:37:24 +10004585 err = raid5_set_cache_size(mddev, new);
Dan Williamsb5470dc2008-06-27 21:44:04 -07004586 if (err)
4587 return err;
NeilBrown3f294f42005-11-08 21:39:25 -08004588 return len;
4589}
NeilBrown007583c2005-11-08 21:39:30 -08004590
NeilBrown96de1e62005-11-08 21:39:39 -08004591static struct md_sysfs_entry
4592raid5_stripecache_size = __ATTR(stripe_cache_size, S_IRUGO | S_IWUSR,
4593 raid5_show_stripe_cache_size,
4594 raid5_store_stripe_cache_size);
NeilBrown3f294f42005-11-08 21:39:25 -08004595
4596static ssize_t
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004597raid5_show_preread_threshold(mddev_t *mddev, char *page)
4598{
NeilBrown070ec552009-06-16 16:54:21 +10004599 raid5_conf_t *conf = mddev->private;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004600 if (conf)
4601 return sprintf(page, "%d\n", conf->bypass_threshold);
4602 else
4603 return 0;
4604}
4605
4606static ssize_t
4607raid5_store_preread_threshold(mddev_t *mddev, const char *page, size_t len)
4608{
NeilBrown070ec552009-06-16 16:54:21 +10004609 raid5_conf_t *conf = mddev->private;
Dan Williams4ef197d82008-04-28 02:15:54 -07004610 unsigned long new;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004611 if (len >= PAGE_SIZE)
4612 return -EINVAL;
4613 if (!conf)
4614 return -ENODEV;
4615
Dan Williams4ef197d82008-04-28 02:15:54 -07004616 if (strict_strtoul(page, 10, &new))
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004617 return -EINVAL;
Dan Williams4ef197d82008-04-28 02:15:54 -07004618 if (new > conf->max_nr_stripes)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004619 return -EINVAL;
4620 conf->bypass_threshold = new;
4621 return len;
4622}
4623
4624static struct md_sysfs_entry
4625raid5_preread_bypass_threshold = __ATTR(preread_bypass_threshold,
4626 S_IRUGO | S_IWUSR,
4627 raid5_show_preread_threshold,
4628 raid5_store_preread_threshold);
4629
4630static ssize_t
NeilBrown96de1e62005-11-08 21:39:39 -08004631stripe_cache_active_show(mddev_t *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08004632{
NeilBrown070ec552009-06-16 16:54:21 +10004633 raid5_conf_t *conf = mddev->private;
NeilBrown96de1e62005-11-08 21:39:39 -08004634 if (conf)
4635 return sprintf(page, "%d\n", atomic_read(&conf->active_stripes));
4636 else
4637 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08004638}
4639
NeilBrown96de1e62005-11-08 21:39:39 -08004640static struct md_sysfs_entry
4641raid5_stripecache_active = __ATTR_RO(stripe_cache_active);
NeilBrown3f294f42005-11-08 21:39:25 -08004642
NeilBrown007583c2005-11-08 21:39:30 -08004643static struct attribute *raid5_attrs[] = {
NeilBrown3f294f42005-11-08 21:39:25 -08004644 &raid5_stripecache_size.attr,
4645 &raid5_stripecache_active.attr,
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004646 &raid5_preread_bypass_threshold.attr,
NeilBrown3f294f42005-11-08 21:39:25 -08004647 NULL,
4648};
NeilBrown007583c2005-11-08 21:39:30 -08004649static struct attribute_group raid5_attrs_group = {
4650 .name = NULL,
4651 .attrs = raid5_attrs,
NeilBrown3f294f42005-11-08 21:39:25 -08004652};
4653
Dan Williams80c3a6c2009-03-17 18:10:40 -07004654static sector_t
4655raid5_size(mddev_t *mddev, sector_t sectors, int raid_disks)
4656{
NeilBrown070ec552009-06-16 16:54:21 +10004657 raid5_conf_t *conf = mddev->private;
Dan Williams80c3a6c2009-03-17 18:10:40 -07004658
4659 if (!sectors)
4660 sectors = mddev->dev_sectors;
NeilBrown5e5e3e72009-10-16 16:35:30 +11004661 if (!raid_disks)
NeilBrown7ec05472009-03-31 15:10:36 +11004662 /* size is defined by the smallest of previous and new size */
NeilBrown5e5e3e72009-10-16 16:35:30 +11004663 raid_disks = min(conf->raid_disks, conf->previous_raid_disks);
Dan Williams80c3a6c2009-03-17 18:10:40 -07004664
Andre Noll9d8f0362009-06-18 08:45:01 +10004665 sectors &= ~((sector_t)mddev->chunk_sectors - 1);
Andre Noll664e7c42009-06-18 08:45:27 +10004666 sectors &= ~((sector_t)mddev->new_chunk_sectors - 1);
Dan Williams80c3a6c2009-03-17 18:10:40 -07004667 return sectors * (raid_disks - conf->max_degraded);
4668}
4669
Dan Williams36d1c642009-07-14 11:48:22 -07004670static void raid5_free_percpu(raid5_conf_t *conf)
4671{
4672 struct raid5_percpu *percpu;
4673 unsigned long cpu;
4674
4675 if (!conf->percpu)
4676 return;
4677
4678 get_online_cpus();
4679 for_each_possible_cpu(cpu) {
4680 percpu = per_cpu_ptr(conf->percpu, cpu);
4681 safe_put_page(percpu->spare_page);
Dan Williamsd6f38f32009-07-14 11:50:52 -07004682 kfree(percpu->scribble);
Dan Williams36d1c642009-07-14 11:48:22 -07004683 }
4684#ifdef CONFIG_HOTPLUG_CPU
4685 unregister_cpu_notifier(&conf->cpu_notify);
4686#endif
4687 put_online_cpus();
4688
4689 free_percpu(conf->percpu);
4690}
4691
Dan Williams95fc17a2009-07-31 12:39:15 +10004692static void free_conf(raid5_conf_t *conf)
4693{
4694 shrink_stripes(conf);
Dan Williams36d1c642009-07-14 11:48:22 -07004695 raid5_free_percpu(conf);
Dan Williams95fc17a2009-07-31 12:39:15 +10004696 kfree(conf->disks);
4697 kfree(conf->stripe_hashtbl);
4698 kfree(conf);
4699}
4700
Dan Williams36d1c642009-07-14 11:48:22 -07004701#ifdef CONFIG_HOTPLUG_CPU
4702static int raid456_cpu_notify(struct notifier_block *nfb, unsigned long action,
4703 void *hcpu)
4704{
4705 raid5_conf_t *conf = container_of(nfb, raid5_conf_t, cpu_notify);
4706 long cpu = (long)hcpu;
4707 struct raid5_percpu *percpu = per_cpu_ptr(conf->percpu, cpu);
4708
4709 switch (action) {
4710 case CPU_UP_PREPARE:
4711 case CPU_UP_PREPARE_FROZEN:
Dan Williamsd6f38f32009-07-14 11:50:52 -07004712 if (conf->level == 6 && !percpu->spare_page)
Dan Williams36d1c642009-07-14 11:48:22 -07004713 percpu->spare_page = alloc_page(GFP_KERNEL);
Dan Williamsd6f38f32009-07-14 11:50:52 -07004714 if (!percpu->scribble)
4715 percpu->scribble = kmalloc(conf->scribble_len, GFP_KERNEL);
4716
4717 if (!percpu->scribble ||
4718 (conf->level == 6 && !percpu->spare_page)) {
4719 safe_put_page(percpu->spare_page);
4720 kfree(percpu->scribble);
Dan Williams36d1c642009-07-14 11:48:22 -07004721 pr_err("%s: failed memory allocation for cpu%ld\n",
4722 __func__, cpu);
Akinobu Mita55af6bb2010-05-26 14:43:35 -07004723 return notifier_from_errno(-ENOMEM);
Dan Williams36d1c642009-07-14 11:48:22 -07004724 }
4725 break;
4726 case CPU_DEAD:
4727 case CPU_DEAD_FROZEN:
4728 safe_put_page(percpu->spare_page);
Dan Williamsd6f38f32009-07-14 11:50:52 -07004729 kfree(percpu->scribble);
Dan Williams36d1c642009-07-14 11:48:22 -07004730 percpu->spare_page = NULL;
Dan Williamsd6f38f32009-07-14 11:50:52 -07004731 percpu->scribble = NULL;
Dan Williams36d1c642009-07-14 11:48:22 -07004732 break;
4733 default:
4734 break;
4735 }
4736 return NOTIFY_OK;
4737}
4738#endif
4739
4740static int raid5_alloc_percpu(raid5_conf_t *conf)
4741{
4742 unsigned long cpu;
4743 struct page *spare_page;
Tejun Heoa29d8b82010-02-02 14:39:15 +09004744 struct raid5_percpu __percpu *allcpus;
Dan Williamsd6f38f32009-07-14 11:50:52 -07004745 void *scribble;
Dan Williams36d1c642009-07-14 11:48:22 -07004746 int err;
4747
Dan Williams36d1c642009-07-14 11:48:22 -07004748 allcpus = alloc_percpu(struct raid5_percpu);
4749 if (!allcpus)
4750 return -ENOMEM;
4751 conf->percpu = allcpus;
4752
4753 get_online_cpus();
4754 err = 0;
4755 for_each_present_cpu(cpu) {
Dan Williamsd6f38f32009-07-14 11:50:52 -07004756 if (conf->level == 6) {
4757 spare_page = alloc_page(GFP_KERNEL);
4758 if (!spare_page) {
4759 err = -ENOMEM;
4760 break;
4761 }
4762 per_cpu_ptr(conf->percpu, cpu)->spare_page = spare_page;
4763 }
NeilBrown5e5e3e72009-10-16 16:35:30 +11004764 scribble = kmalloc(conf->scribble_len, GFP_KERNEL);
Dan Williamsd6f38f32009-07-14 11:50:52 -07004765 if (!scribble) {
Dan Williams36d1c642009-07-14 11:48:22 -07004766 err = -ENOMEM;
4767 break;
4768 }
Dan Williamsd6f38f32009-07-14 11:50:52 -07004769 per_cpu_ptr(conf->percpu, cpu)->scribble = scribble;
Dan Williams36d1c642009-07-14 11:48:22 -07004770 }
4771#ifdef CONFIG_HOTPLUG_CPU
4772 conf->cpu_notify.notifier_call = raid456_cpu_notify;
4773 conf->cpu_notify.priority = 0;
4774 if (err == 0)
4775 err = register_cpu_notifier(&conf->cpu_notify);
4776#endif
4777 put_online_cpus();
4778
4779 return err;
4780}
4781
NeilBrown91adb562009-03-31 14:39:39 +11004782static raid5_conf_t *setup_conf(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783{
4784 raid5_conf_t *conf;
NeilBrown5e5e3e72009-10-16 16:35:30 +11004785 int raid_disk, memory, max_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786 mdk_rdev_t *rdev;
4787 struct disk_info *disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004788
NeilBrown91adb562009-03-31 14:39:39 +11004789 if (mddev->new_level != 5
4790 && mddev->new_level != 4
4791 && mddev->new_level != 6) {
NeilBrown0c55e022010-05-03 14:09:02 +10004792 printk(KERN_ERR "md/raid:%s: raid level not set to 4/5/6 (%d)\n",
NeilBrown91adb562009-03-31 14:39:39 +11004793 mdname(mddev), mddev->new_level);
4794 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795 }
NeilBrown91adb562009-03-31 14:39:39 +11004796 if ((mddev->new_level == 5
4797 && !algorithm_valid_raid5(mddev->new_layout)) ||
4798 (mddev->new_level == 6
4799 && !algorithm_valid_raid6(mddev->new_layout))) {
NeilBrown0c55e022010-05-03 14:09:02 +10004800 printk(KERN_ERR "md/raid:%s: layout %d not supported\n",
NeilBrown91adb562009-03-31 14:39:39 +11004801 mdname(mddev), mddev->new_layout);
4802 return ERR_PTR(-EIO);
4803 }
4804 if (mddev->new_level == 6 && mddev->raid_disks < 4) {
NeilBrown0c55e022010-05-03 14:09:02 +10004805 printk(KERN_ERR "md/raid:%s: not enough configured devices (%d, minimum 4)\n",
NeilBrown91adb562009-03-31 14:39:39 +11004806 mdname(mddev), mddev->raid_disks);
4807 return ERR_PTR(-EINVAL);
NeilBrown99c0fb52009-03-31 14:39:38 +11004808 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004809
Andre Noll664e7c42009-06-18 08:45:27 +10004810 if (!mddev->new_chunk_sectors ||
4811 (mddev->new_chunk_sectors << 9) % PAGE_SIZE ||
4812 !is_power_of_2(mddev->new_chunk_sectors)) {
NeilBrown0c55e022010-05-03 14:09:02 +10004813 printk(KERN_ERR "md/raid:%s: invalid chunk size %d\n",
4814 mdname(mddev), mddev->new_chunk_sectors << 9);
NeilBrown91adb562009-03-31 14:39:39 +11004815 return ERR_PTR(-EINVAL);
NeilBrown4bbf3772008-10-13 11:55:12 +11004816 }
4817
NeilBrown91adb562009-03-31 14:39:39 +11004818 conf = kzalloc(sizeof(raid5_conf_t), GFP_KERNEL);
4819 if (conf == NULL)
4820 goto abort;
Dan Williamsf5efd452009-10-16 15:55:38 +11004821 spin_lock_init(&conf->device_lock);
4822 init_waitqueue_head(&conf->wait_for_stripe);
4823 init_waitqueue_head(&conf->wait_for_overlap);
4824 INIT_LIST_HEAD(&conf->handle_list);
4825 INIT_LIST_HEAD(&conf->hold_list);
4826 INIT_LIST_HEAD(&conf->delayed_list);
4827 INIT_LIST_HEAD(&conf->bitmap_list);
4828 INIT_LIST_HEAD(&conf->inactive_list);
4829 atomic_set(&conf->active_stripes, 0);
4830 atomic_set(&conf->preread_active_stripes, 0);
4831 atomic_set(&conf->active_aligned_reads, 0);
4832 conf->bypass_threshold = BYPASS_THRESHOLD;
NeilBrown91adb562009-03-31 14:39:39 +11004833
4834 conf->raid_disks = mddev->raid_disks;
4835 if (mddev->reshape_position == MaxSector)
4836 conf->previous_raid_disks = mddev->raid_disks;
4837 else
4838 conf->previous_raid_disks = mddev->raid_disks - mddev->delta_disks;
NeilBrown5e5e3e72009-10-16 16:35:30 +11004839 max_disks = max(conf->raid_disks, conf->previous_raid_disks);
4840 conf->scribble_len = scribble_len(max_disks);
NeilBrown91adb562009-03-31 14:39:39 +11004841
NeilBrown5e5e3e72009-10-16 16:35:30 +11004842 conf->disks = kzalloc(max_disks * sizeof(struct disk_info),
NeilBrown91adb562009-03-31 14:39:39 +11004843 GFP_KERNEL);
4844 if (!conf->disks)
4845 goto abort;
4846
4847 conf->mddev = mddev;
4848
4849 if ((conf->stripe_hashtbl = kzalloc(PAGE_SIZE, GFP_KERNEL)) == NULL)
4850 goto abort;
4851
Dan Williams36d1c642009-07-14 11:48:22 -07004852 conf->level = mddev->new_level;
4853 if (raid5_alloc_percpu(conf) != 0)
4854 goto abort;
4855
NeilBrown0c55e022010-05-03 14:09:02 +10004856 pr_debug("raid456: run(%s) called.\n", mdname(mddev));
NeilBrown91adb562009-03-31 14:39:39 +11004857
4858 list_for_each_entry(rdev, &mddev->disks, same_set) {
4859 raid_disk = rdev->raid_disk;
NeilBrown5e5e3e72009-10-16 16:35:30 +11004860 if (raid_disk >= max_disks
NeilBrown91adb562009-03-31 14:39:39 +11004861 || raid_disk < 0)
4862 continue;
4863 disk = conf->disks + raid_disk;
4864
4865 disk->rdev = rdev;
4866
4867 if (test_bit(In_sync, &rdev->flags)) {
4868 char b[BDEVNAME_SIZE];
NeilBrown0c55e022010-05-03 14:09:02 +10004869 printk(KERN_INFO "md/raid:%s: device %s operational as raid"
4870 " disk %d\n",
4871 mdname(mddev), bdevname(rdev->bdev, b), raid_disk);
NeilBrown91adb562009-03-31 14:39:39 +11004872 } else
4873 /* Cannot rely on bitmap to complete recovery */
4874 conf->fullsync = 1;
4875 }
4876
Andre Noll09c9e5f2009-06-18 08:45:55 +10004877 conf->chunk_sectors = mddev->new_chunk_sectors;
NeilBrown91adb562009-03-31 14:39:39 +11004878 conf->level = mddev->new_level;
4879 if (conf->level == 6)
4880 conf->max_degraded = 2;
4881 else
4882 conf->max_degraded = 1;
4883 conf->algorithm = mddev->new_layout;
4884 conf->max_nr_stripes = NR_STRIPES;
NeilBrownfef9c612009-03-31 15:16:46 +11004885 conf->reshape_progress = mddev->reshape_position;
NeilBrowne183eae2009-03-31 15:20:22 +11004886 if (conf->reshape_progress != MaxSector) {
Andre Noll09c9e5f2009-06-18 08:45:55 +10004887 conf->prev_chunk_sectors = mddev->chunk_sectors;
NeilBrowne183eae2009-03-31 15:20:22 +11004888 conf->prev_algo = mddev->layout;
4889 }
NeilBrown91adb562009-03-31 14:39:39 +11004890
4891 memory = conf->max_nr_stripes * (sizeof(struct stripe_head) +
NeilBrown5e5e3e72009-10-16 16:35:30 +11004892 max_disks * ((sizeof(struct bio) + PAGE_SIZE))) / 1024;
NeilBrown91adb562009-03-31 14:39:39 +11004893 if (grow_stripes(conf, conf->max_nr_stripes)) {
4894 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10004895 "md/raid:%s: couldn't allocate %dkB for buffers\n",
4896 mdname(mddev), memory);
NeilBrown91adb562009-03-31 14:39:39 +11004897 goto abort;
4898 } else
NeilBrown0c55e022010-05-03 14:09:02 +10004899 printk(KERN_INFO "md/raid:%s: allocated %dkB\n",
4900 mdname(mddev), memory);
NeilBrown91adb562009-03-31 14:39:39 +11004901
NeilBrown0da3c612009-09-23 18:09:45 +10004902 conf->thread = md_register_thread(raid5d, mddev, NULL);
NeilBrown91adb562009-03-31 14:39:39 +11004903 if (!conf->thread) {
4904 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10004905 "md/raid:%s: couldn't allocate thread.\n",
NeilBrown91adb562009-03-31 14:39:39 +11004906 mdname(mddev));
4907 goto abort;
4908 }
4909
4910 return conf;
4911
4912 abort:
4913 if (conf) {
Dan Williams95fc17a2009-07-31 12:39:15 +10004914 free_conf(conf);
NeilBrown91adb562009-03-31 14:39:39 +11004915 return ERR_PTR(-EIO);
4916 } else
4917 return ERR_PTR(-ENOMEM);
4918}
4919
NeilBrownc148ffd2009-11-13 17:47:00 +11004920
4921static int only_parity(int raid_disk, int algo, int raid_disks, int max_degraded)
4922{
4923 switch (algo) {
4924 case ALGORITHM_PARITY_0:
4925 if (raid_disk < max_degraded)
4926 return 1;
4927 break;
4928 case ALGORITHM_PARITY_N:
4929 if (raid_disk >= raid_disks - max_degraded)
4930 return 1;
4931 break;
4932 case ALGORITHM_PARITY_0_6:
4933 if (raid_disk == 0 ||
4934 raid_disk == raid_disks - 1)
4935 return 1;
4936 break;
4937 case ALGORITHM_LEFT_ASYMMETRIC_6:
4938 case ALGORITHM_RIGHT_ASYMMETRIC_6:
4939 case ALGORITHM_LEFT_SYMMETRIC_6:
4940 case ALGORITHM_RIGHT_SYMMETRIC_6:
4941 if (raid_disk == raid_disks - 1)
4942 return 1;
4943 }
4944 return 0;
4945}
4946
NeilBrown91adb562009-03-31 14:39:39 +11004947static int run(mddev_t *mddev)
4948{
4949 raid5_conf_t *conf;
NeilBrown9f7c2222010-07-26 12:04:13 +10004950 int working_disks = 0;
NeilBrownc148ffd2009-11-13 17:47:00 +11004951 int dirty_parity_disks = 0;
NeilBrown91adb562009-03-31 14:39:39 +11004952 mdk_rdev_t *rdev;
NeilBrownc148ffd2009-11-13 17:47:00 +11004953 sector_t reshape_offset = 0;
NeilBrown91adb562009-03-31 14:39:39 +11004954
Andre Noll8c6ac8682009-06-18 08:48:06 +10004955 if (mddev->recovery_cp != MaxSector)
NeilBrown0c55e022010-05-03 14:09:02 +10004956 printk(KERN_NOTICE "md/raid:%s: not clean"
Andre Noll8c6ac8682009-06-18 08:48:06 +10004957 " -- starting background reconstruction\n",
4958 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08004959 if (mddev->reshape_position != MaxSector) {
4960 /* Check that we can continue the reshape.
4961 * Currently only disks can change, it must
4962 * increase, and we must be past the point where
4963 * a stripe over-writes itself
4964 */
4965 sector_t here_new, here_old;
4966 int old_disks;
Andre Noll18b00332009-03-31 15:00:56 +11004967 int max_degraded = (mddev->level == 6 ? 2 : 1);
NeilBrownf6705572006-03-27 01:18:11 -08004968
NeilBrown88ce4932009-03-31 15:24:23 +11004969 if (mddev->new_level != mddev->level) {
NeilBrown0c55e022010-05-03 14:09:02 +10004970 printk(KERN_ERR "md/raid:%s: unsupported reshape "
NeilBrownf4168852007-02-28 20:11:53 -08004971 "required - aborting.\n",
NeilBrownf6705572006-03-27 01:18:11 -08004972 mdname(mddev));
4973 return -EINVAL;
4974 }
NeilBrownf6705572006-03-27 01:18:11 -08004975 old_disks = mddev->raid_disks - mddev->delta_disks;
4976 /* reshape_position must be on a new-stripe boundary, and one
NeilBrownf4168852007-02-28 20:11:53 -08004977 * further up in new geometry must map after here in old
4978 * geometry.
NeilBrownf6705572006-03-27 01:18:11 -08004979 */
4980 here_new = mddev->reshape_position;
Andre Noll664e7c42009-06-18 08:45:27 +10004981 if (sector_div(here_new, mddev->new_chunk_sectors *
NeilBrownf4168852007-02-28 20:11:53 -08004982 (mddev->raid_disks - max_degraded))) {
NeilBrown0c55e022010-05-03 14:09:02 +10004983 printk(KERN_ERR "md/raid:%s: reshape_position not "
4984 "on a stripe boundary\n", mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08004985 return -EINVAL;
4986 }
NeilBrownc148ffd2009-11-13 17:47:00 +11004987 reshape_offset = here_new * mddev->new_chunk_sectors;
NeilBrownf6705572006-03-27 01:18:11 -08004988 /* here_new is the stripe we will write to */
4989 here_old = mddev->reshape_position;
Andre Noll9d8f0362009-06-18 08:45:01 +10004990 sector_div(here_old, mddev->chunk_sectors *
NeilBrownf4168852007-02-28 20:11:53 -08004991 (old_disks-max_degraded));
4992 /* here_old is the first stripe that we might need to read
4993 * from */
NeilBrown67ac6012009-08-13 10:06:24 +10004994 if (mddev->delta_disks == 0) {
4995 /* We cannot be sure it is safe to start an in-place
4996 * reshape. It is only safe if user-space if monitoring
4997 * and taking constant backups.
4998 * mdadm always starts a situation like this in
4999 * readonly mode so it can take control before
5000 * allowing any writes. So just check for that.
5001 */
5002 if ((here_new * mddev->new_chunk_sectors !=
5003 here_old * mddev->chunk_sectors) ||
5004 mddev->ro == 0) {
NeilBrown0c55e022010-05-03 14:09:02 +10005005 printk(KERN_ERR "md/raid:%s: in-place reshape must be started"
5006 " in read-only mode - aborting\n",
5007 mdname(mddev));
NeilBrown67ac6012009-08-13 10:06:24 +10005008 return -EINVAL;
5009 }
5010 } else if (mddev->delta_disks < 0
5011 ? (here_new * mddev->new_chunk_sectors <=
5012 here_old * mddev->chunk_sectors)
5013 : (here_new * mddev->new_chunk_sectors >=
5014 here_old * mddev->chunk_sectors)) {
NeilBrownf6705572006-03-27 01:18:11 -08005015 /* Reading from the same stripe as writing to - bad */
NeilBrown0c55e022010-05-03 14:09:02 +10005016 printk(KERN_ERR "md/raid:%s: reshape_position too early for "
5017 "auto-recovery - aborting.\n",
5018 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08005019 return -EINVAL;
5020 }
NeilBrown0c55e022010-05-03 14:09:02 +10005021 printk(KERN_INFO "md/raid:%s: reshape will continue\n",
5022 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08005023 /* OK, we should be able to continue; */
NeilBrownf6705572006-03-27 01:18:11 -08005024 } else {
NeilBrown91adb562009-03-31 14:39:39 +11005025 BUG_ON(mddev->level != mddev->new_level);
5026 BUG_ON(mddev->layout != mddev->new_layout);
Andre Noll664e7c42009-06-18 08:45:27 +10005027 BUG_ON(mddev->chunk_sectors != mddev->new_chunk_sectors);
NeilBrown91adb562009-03-31 14:39:39 +11005028 BUG_ON(mddev->delta_disks != 0);
NeilBrownf6705572006-03-27 01:18:11 -08005029 }
5030
NeilBrown245f46c2009-03-31 14:39:39 +11005031 if (mddev->private == NULL)
5032 conf = setup_conf(mddev);
5033 else
5034 conf = mddev->private;
5035
NeilBrown91adb562009-03-31 14:39:39 +11005036 if (IS_ERR(conf))
5037 return PTR_ERR(conf);
NeilBrown9ffae0c2006-01-06 00:20:32 -08005038
NeilBrown91adb562009-03-31 14:39:39 +11005039 mddev->thread = conf->thread;
5040 conf->thread = NULL;
5041 mddev->private = conf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005042
Linus Torvalds1da177e2005-04-16 15:20:36 -07005043 /*
NeilBrown16a53ec2006-06-26 00:27:38 -07005044 * 0 for a fully functional array, 1 or 2 for a degraded array.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005045 */
NeilBrownc148ffd2009-11-13 17:47:00 +11005046 list_for_each_entry(rdev, &mddev->disks, same_set) {
5047 if (rdev->raid_disk < 0)
5048 continue;
NeilBrown2f115882010-06-17 17:41:03 +10005049 if (test_bit(In_sync, &rdev->flags)) {
NeilBrown91adb562009-03-31 14:39:39 +11005050 working_disks++;
NeilBrown2f115882010-06-17 17:41:03 +10005051 continue;
5052 }
NeilBrownc148ffd2009-11-13 17:47:00 +11005053 /* This disc is not fully in-sync. However if it
5054 * just stored parity (beyond the recovery_offset),
5055 * when we don't need to be concerned about the
5056 * array being dirty.
5057 * When reshape goes 'backwards', we never have
5058 * partially completed devices, so we only need
5059 * to worry about reshape going forwards.
5060 */
5061 /* Hack because v0.91 doesn't store recovery_offset properly. */
5062 if (mddev->major_version == 0 &&
5063 mddev->minor_version > 90)
5064 rdev->recovery_offset = reshape_offset;
5065
NeilBrownc148ffd2009-11-13 17:47:00 +11005066 if (rdev->recovery_offset < reshape_offset) {
5067 /* We need to check old and new layout */
5068 if (!only_parity(rdev->raid_disk,
5069 conf->algorithm,
5070 conf->raid_disks,
5071 conf->max_degraded))
5072 continue;
5073 }
5074 if (!only_parity(rdev->raid_disk,
5075 conf->prev_algo,
5076 conf->previous_raid_disks,
5077 conf->max_degraded))
5078 continue;
5079 dirty_parity_disks++;
5080 }
NeilBrown91adb562009-03-31 14:39:39 +11005081
NeilBrown5e5e3e72009-10-16 16:35:30 +11005082 mddev->degraded = (max(conf->raid_disks, conf->previous_raid_disks)
5083 - working_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005084
NeilBrown674806d2010-06-16 17:17:53 +10005085 if (has_failed(conf)) {
NeilBrown0c55e022010-05-03 14:09:02 +10005086 printk(KERN_ERR "md/raid:%s: not enough operational devices"
Linus Torvalds1da177e2005-04-16 15:20:36 -07005087 " (%d/%d failed)\n",
NeilBrown02c2de82006-10-03 01:15:47 -07005088 mdname(mddev), mddev->degraded, conf->raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005089 goto abort;
5090 }
5091
NeilBrown91adb562009-03-31 14:39:39 +11005092 /* device size must be a multiple of chunk size */
Andre Noll9d8f0362009-06-18 08:45:01 +10005093 mddev->dev_sectors &= ~(mddev->chunk_sectors - 1);
NeilBrown91adb562009-03-31 14:39:39 +11005094 mddev->resync_max_sectors = mddev->dev_sectors;
5095
NeilBrownc148ffd2009-11-13 17:47:00 +11005096 if (mddev->degraded > dirty_parity_disks &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097 mddev->recovery_cp != MaxSector) {
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08005098 if (mddev->ok_start_degraded)
5099 printk(KERN_WARNING
NeilBrown0c55e022010-05-03 14:09:02 +10005100 "md/raid:%s: starting dirty degraded array"
5101 " - data corruption possible.\n",
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08005102 mdname(mddev));
5103 else {
5104 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10005105 "md/raid:%s: cannot start dirty degraded array.\n",
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08005106 mdname(mddev));
5107 goto abort;
5108 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005109 }
5110
Linus Torvalds1da177e2005-04-16 15:20:36 -07005111 if (mddev->degraded == 0)
NeilBrown0c55e022010-05-03 14:09:02 +10005112 printk(KERN_INFO "md/raid:%s: raid level %d active with %d out of %d"
5113 " devices, algorithm %d\n", mdname(mddev), conf->level,
NeilBrowne183eae2009-03-31 15:20:22 +11005114 mddev->raid_disks-mddev->degraded, mddev->raid_disks,
5115 mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005116 else
NeilBrown0c55e022010-05-03 14:09:02 +10005117 printk(KERN_ALERT "md/raid:%s: raid level %d active with %d"
5118 " out of %d devices, algorithm %d\n",
5119 mdname(mddev), conf->level,
5120 mddev->raid_disks - mddev->degraded,
5121 mddev->raid_disks, mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005122
5123 print_raid5_conf(conf);
5124
NeilBrownfef9c612009-03-31 15:16:46 +11005125 if (conf->reshape_progress != MaxSector) {
NeilBrownfef9c612009-03-31 15:16:46 +11005126 conf->reshape_safe = conf->reshape_progress;
NeilBrownf6705572006-03-27 01:18:11 -08005127 atomic_set(&conf->reshape_stripes, 0);
5128 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
5129 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
5130 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
5131 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
5132 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
NeilBrown0da3c612009-09-23 18:09:45 +10005133 "reshape");
NeilBrownf6705572006-03-27 01:18:11 -08005134 }
5135
Linus Torvalds1da177e2005-04-16 15:20:36 -07005136
5137 /* Ok, everything is just fine now */
NeilBrowna64c8762010-04-14 17:15:37 +10005138 if (mddev->to_remove == &raid5_attrs_group)
5139 mddev->to_remove = NULL;
NeilBrown00bcb4a2010-06-01 19:37:23 +10005140 else if (mddev->kobj.sd &&
5141 sysfs_create_group(&mddev->kobj, &raid5_attrs_group))
NeilBrown5e55e2f2007-03-26 21:32:14 -08005142 printk(KERN_WARNING
NeilBrown4a5add42010-06-01 19:37:28 +10005143 "raid5: failed to create sysfs attributes for %s\n",
NeilBrown5e55e2f2007-03-26 21:32:14 -08005144 mdname(mddev));
NeilBrown4a5add42010-06-01 19:37:28 +10005145 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
5146
NeilBrown2ac87402010-06-01 19:37:29 +10005147 plugger_init(&conf->plug, raid5_unplug);
NeilBrown252ac522010-06-01 19:37:29 +10005148 mddev->plug = &conf->plug;
NeilBrown4a5add42010-06-01 19:37:28 +10005149 if (mddev->queue) {
NeilBrown9f7c2222010-07-26 12:04:13 +10005150 int chunk_size;
NeilBrown4a5add42010-06-01 19:37:28 +10005151 /* read-ahead size must cover two whole stripes, which
5152 * is 2 * (datadisks) * chunksize where 'n' is the
5153 * number of raid devices
5154 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005155 int data_disks = conf->previous_raid_disks - conf->max_degraded;
5156 int stripe = data_disks *
5157 ((mddev->chunk_sectors << 9) / PAGE_SIZE);
5158 if (mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
5159 mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
NeilBrown4a5add42010-06-01 19:37:28 +10005160
5161 blk_queue_merge_bvec(mddev->queue, raid5_mergeable_bvec);
NeilBrown11d8a6e2010-07-26 11:57:07 +10005162
5163 mddev->queue->backing_dev_info.congested_data = mddev;
5164 mddev->queue->backing_dev_info.congested_fn = raid5_congested;
NeilBrown9f7c2222010-07-26 12:04:13 +10005165 mddev->queue->queue_lock = &conf->device_lock;
NeilBrown9f7c2222010-07-26 12:04:13 +10005166
5167 chunk_size = mddev->chunk_sectors << 9;
5168 blk_queue_io_min(mddev->queue, chunk_size);
5169 blk_queue_io_opt(mddev->queue, chunk_size *
5170 (conf->raid_disks - conf->max_degraded));
5171
5172 list_for_each_entry(rdev, &mddev->disks, same_set)
5173 disk_stack_limits(mddev->gendisk, rdev->bdev,
5174 rdev->data_offset << 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005175 }
5176
Linus Torvalds1da177e2005-04-16 15:20:36 -07005177 return 0;
5178abort:
NeilBrowne0cf8f02009-03-31 14:39:39 +11005179 md_unregister_thread(mddev->thread);
NeilBrown91adb562009-03-31 14:39:39 +11005180 mddev->thread = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005181 if (conf) {
5182 print_raid5_conf(conf);
Dan Williams95fc17a2009-07-31 12:39:15 +10005183 free_conf(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005184 }
5185 mddev->private = NULL;
NeilBrown0c55e022010-05-03 14:09:02 +10005186 printk(KERN_ALERT "md/raid:%s: failed to run raid set.\n", mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005187 return -EIO;
5188}
5189
NeilBrown3f294f42005-11-08 21:39:25 -08005190static int stop(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005191{
H Hartley Sweeten7b928132010-03-08 16:02:40 +11005192 raid5_conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005193
5194 md_unregister_thread(mddev->thread);
5195 mddev->thread = NULL;
NeilBrown11d8a6e2010-07-26 11:57:07 +10005196 if (mddev->queue)
5197 mddev->queue->backing_dev_info.congested_fn = NULL;
NeilBrown2ac87402010-06-01 19:37:29 +10005198 plugger_flush(&conf->plug); /* the unplug fn references 'conf'*/
Dan Williams95fc17a2009-07-31 12:39:15 +10005199 free_conf(conf);
NeilBrowna64c8762010-04-14 17:15:37 +10005200 mddev->private = NULL;
5201 mddev->to_remove = &raid5_attrs_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005202 return 0;
5203}
5204
Dan Williams45b42332007-07-09 11:56:43 -07005205#ifdef DEBUG
NeilBrownd710e132008-10-13 11:55:12 +11005206static void print_sh(struct seq_file *seq, struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005207{
5208 int i;
5209
NeilBrown16a53ec2006-06-26 00:27:38 -07005210 seq_printf(seq, "sh %llu, pd_idx %d, state %ld.\n",
5211 (unsigned long long)sh->sector, sh->pd_idx, sh->state);
5212 seq_printf(seq, "sh %llu, count %d.\n",
5213 (unsigned long long)sh->sector, atomic_read(&sh->count));
5214 seq_printf(seq, "sh %llu, ", (unsigned long long)sh->sector);
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005215 for (i = 0; i < sh->disks; i++) {
NeilBrown16a53ec2006-06-26 00:27:38 -07005216 seq_printf(seq, "(cache%d: %p %ld) ",
5217 i, sh->dev[i].page, sh->dev[i].flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218 }
NeilBrown16a53ec2006-06-26 00:27:38 -07005219 seq_printf(seq, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005220}
5221
NeilBrownd710e132008-10-13 11:55:12 +11005222static void printall(struct seq_file *seq, raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005223{
5224 struct stripe_head *sh;
NeilBrownfccddba2006-01-06 00:20:33 -08005225 struct hlist_node *hn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005226 int i;
5227
5228 spin_lock_irq(&conf->device_lock);
5229 for (i = 0; i < NR_HASH; i++) {
NeilBrownfccddba2006-01-06 00:20:33 -08005230 hlist_for_each_entry(sh, hn, &conf->stripe_hashtbl[i], hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005231 if (sh->raid_conf != conf)
5232 continue;
NeilBrown16a53ec2006-06-26 00:27:38 -07005233 print_sh(seq, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005234 }
5235 }
5236 spin_unlock_irq(&conf->device_lock);
5237}
5238#endif
5239
NeilBrownd710e132008-10-13 11:55:12 +11005240static void status(struct seq_file *seq, mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005241{
H Hartley Sweeten7b928132010-03-08 16:02:40 +11005242 raid5_conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005243 int i;
5244
Andre Noll9d8f0362009-06-18 08:45:01 +10005245 seq_printf(seq, " level %d, %dk chunk, algorithm %d", mddev->level,
5246 mddev->chunk_sectors / 2, mddev->layout);
NeilBrown02c2de82006-10-03 01:15:47 -07005247 seq_printf (seq, " [%d/%d] [", conf->raid_disks, conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005248 for (i = 0; i < conf->raid_disks; i++)
5249 seq_printf (seq, "%s",
5250 conf->disks[i].rdev &&
NeilBrownb2d444d2005-11-08 21:39:31 -08005251 test_bit(In_sync, &conf->disks[i].rdev->flags) ? "U" : "_");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005252 seq_printf (seq, "]");
Dan Williams45b42332007-07-09 11:56:43 -07005253#ifdef DEBUG
NeilBrown16a53ec2006-06-26 00:27:38 -07005254 seq_printf (seq, "\n");
5255 printall(seq, conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005256#endif
5257}
5258
5259static void print_raid5_conf (raid5_conf_t *conf)
5260{
5261 int i;
5262 struct disk_info *tmp;
5263
NeilBrown0c55e022010-05-03 14:09:02 +10005264 printk(KERN_DEBUG "RAID conf printout:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005265 if (!conf) {
5266 printk("(conf==NULL)\n");
5267 return;
5268 }
NeilBrown0c55e022010-05-03 14:09:02 +10005269 printk(KERN_DEBUG " --- level:%d rd:%d wd:%d\n", conf->level,
5270 conf->raid_disks,
5271 conf->raid_disks - conf->mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005272
5273 for (i = 0; i < conf->raid_disks; i++) {
5274 char b[BDEVNAME_SIZE];
5275 tmp = conf->disks + i;
5276 if (tmp->rdev)
NeilBrown0c55e022010-05-03 14:09:02 +10005277 printk(KERN_DEBUG " disk %d, o:%d, dev:%s\n",
5278 i, !test_bit(Faulty, &tmp->rdev->flags),
5279 bdevname(tmp->rdev->bdev, b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005280 }
5281}
5282
5283static int raid5_spare_active(mddev_t *mddev)
5284{
5285 int i;
5286 raid5_conf_t *conf = mddev->private;
5287 struct disk_info *tmp;
NeilBrown6b965622010-08-18 11:56:59 +10005288 int count = 0;
5289 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005290
5291 for (i = 0; i < conf->raid_disks; i++) {
5292 tmp = conf->disks + i;
5293 if (tmp->rdev
NeilBrown70fffd02010-06-16 17:01:25 +10005294 && tmp->rdev->recovery_offset == MaxSector
NeilBrownb2d444d2005-11-08 21:39:31 -08005295 && !test_bit(Faulty, &tmp->rdev->flags)
NeilBrownc04be0a2006-10-03 01:15:53 -07005296 && !test_and_set_bit(In_sync, &tmp->rdev->flags)) {
NeilBrown6b965622010-08-18 11:56:59 +10005297 count++;
Jonathan Brassow43c73ca2011-01-14 09:14:33 +11005298 sysfs_notify_dirent_safe(tmp->rdev->sysfs_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005299 }
5300 }
NeilBrown6b965622010-08-18 11:56:59 +10005301 spin_lock_irqsave(&conf->device_lock, flags);
5302 mddev->degraded -= count;
5303 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005304 print_raid5_conf(conf);
NeilBrown6b965622010-08-18 11:56:59 +10005305 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005306}
5307
5308static int raid5_remove_disk(mddev_t *mddev, int number)
5309{
5310 raid5_conf_t *conf = mddev->private;
5311 int err = 0;
5312 mdk_rdev_t *rdev;
5313 struct disk_info *p = conf->disks + number;
5314
5315 print_raid5_conf(conf);
5316 rdev = p->rdev;
5317 if (rdev) {
NeilBrownec32a2b2009-03-31 15:17:38 +11005318 if (number >= conf->raid_disks &&
5319 conf->reshape_progress == MaxSector)
5320 clear_bit(In_sync, &rdev->flags);
5321
NeilBrownb2d444d2005-11-08 21:39:31 -08005322 if (test_bit(In_sync, &rdev->flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07005323 atomic_read(&rdev->nr_pending)) {
5324 err = -EBUSY;
5325 goto abort;
5326 }
NeilBrowndfc70642008-05-23 13:04:39 -07005327 /* Only remove non-faulty devices if recovery
5328 * isn't possible.
5329 */
5330 if (!test_bit(Faulty, &rdev->flags) &&
NeilBrown674806d2010-06-16 17:17:53 +10005331 !has_failed(conf) &&
NeilBrownec32a2b2009-03-31 15:17:38 +11005332 number < conf->raid_disks) {
NeilBrowndfc70642008-05-23 13:04:39 -07005333 err = -EBUSY;
5334 goto abort;
5335 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005336 p->rdev = NULL;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07005337 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005338 if (atomic_read(&rdev->nr_pending)) {
5339 /* lost the race, try later */
5340 err = -EBUSY;
5341 p->rdev = rdev;
5342 }
5343 }
5344abort:
5345
5346 print_raid5_conf(conf);
5347 return err;
5348}
5349
5350static int raid5_add_disk(mddev_t *mddev, mdk_rdev_t *rdev)
5351{
5352 raid5_conf_t *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10005353 int err = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005354 int disk;
5355 struct disk_info *p;
Neil Brown6c2fce22008-06-28 08:31:31 +10005356 int first = 0;
5357 int last = conf->raid_disks - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005358
NeilBrown674806d2010-06-16 17:17:53 +10005359 if (has_failed(conf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005360 /* no point adding a device */
Neil Brown199050e2008-06-28 08:31:33 +10005361 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005362
Neil Brown6c2fce22008-06-28 08:31:31 +10005363 if (rdev->raid_disk >= 0)
5364 first = last = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005365
5366 /*
NeilBrown16a53ec2006-06-26 00:27:38 -07005367 * find the disk ... but prefer rdev->saved_raid_disk
5368 * if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005369 */
NeilBrown16a53ec2006-06-26 00:27:38 -07005370 if (rdev->saved_raid_disk >= 0 &&
Neil Brown6c2fce22008-06-28 08:31:31 +10005371 rdev->saved_raid_disk >= first &&
NeilBrown16a53ec2006-06-26 00:27:38 -07005372 conf->disks[rdev->saved_raid_disk].rdev == NULL)
5373 disk = rdev->saved_raid_disk;
5374 else
Neil Brown6c2fce22008-06-28 08:31:31 +10005375 disk = first;
5376 for ( ; disk <= last ; disk++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005377 if ((p=conf->disks + disk)->rdev == NULL) {
NeilBrownb2d444d2005-11-08 21:39:31 -08005378 clear_bit(In_sync, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005379 rdev->raid_disk = disk;
Neil Brown199050e2008-06-28 08:31:33 +10005380 err = 0;
NeilBrown72626682005-09-09 16:23:54 -07005381 if (rdev->saved_raid_disk != disk)
5382 conf->fullsync = 1;
Suzanne Woodd6065f72005-11-08 21:39:27 -08005383 rcu_assign_pointer(p->rdev, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005384 break;
5385 }
5386 print_raid5_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10005387 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005388}
5389
5390static int raid5_resize(mddev_t *mddev, sector_t sectors)
5391{
5392 /* no resync is happening, and there is enough space
5393 * on all devices, so we can resize.
5394 * We need to make sure resync covers any new space.
5395 * If the array is shrinking we should possibly wait until
5396 * any io in the removed space completes, but it hardly seems
5397 * worth it.
5398 */
Andre Noll9d8f0362009-06-18 08:45:01 +10005399 sectors &= ~((sector_t)mddev->chunk_sectors - 1);
Dan Williams1f403622009-03-31 14:59:03 +11005400 md_set_array_sectors(mddev, raid5_size(mddev, sectors,
5401 mddev->raid_disks));
Dan Williamsb522adc2009-03-31 15:00:31 +11005402 if (mddev->array_sectors >
5403 raid5_size(mddev, sectors, mddev->raid_disks))
5404 return -EINVAL;
Andre Nollf233ea52008-07-21 17:05:22 +10005405 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10005406 revalidate_disk(mddev->gendisk);
Andre Noll58c0fed2009-03-31 14:33:13 +11005407 if (sectors > mddev->dev_sectors && mddev->recovery_cp == MaxSector) {
5408 mddev->recovery_cp = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005409 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
5410 }
Andre Noll58c0fed2009-03-31 14:33:13 +11005411 mddev->dev_sectors = sectors;
NeilBrown4b5c7ae2005-07-27 11:43:28 -07005412 mddev->resync_max_sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005413 return 0;
5414}
5415
NeilBrown01ee22b2009-06-18 08:47:20 +10005416static int check_stripe_cache(mddev_t *mddev)
5417{
5418 /* Can only proceed if there are plenty of stripe_heads.
5419 * We need a minimum of one full stripe,, and for sensible progress
5420 * it is best to have about 4 times that.
5421 * If we require 4 times, then the default 256 4K stripe_heads will
5422 * allow for chunk sizes up to 256K, which is probably OK.
5423 * If the chunk size is greater, user-space should request more
5424 * stripe_heads first.
5425 */
5426 raid5_conf_t *conf = mddev->private;
5427 if (((mddev->chunk_sectors << 9) / STRIPE_SIZE) * 4
5428 > conf->max_nr_stripes ||
5429 ((mddev->new_chunk_sectors << 9) / STRIPE_SIZE) * 4
5430 > conf->max_nr_stripes) {
NeilBrown0c55e022010-05-03 14:09:02 +10005431 printk(KERN_WARNING "md/raid:%s: reshape: not enough stripes. Needed %lu\n",
5432 mdname(mddev),
NeilBrown01ee22b2009-06-18 08:47:20 +10005433 ((max(mddev->chunk_sectors, mddev->new_chunk_sectors) << 9)
5434 / STRIPE_SIZE)*4);
5435 return 0;
5436 }
5437 return 1;
5438}
5439
NeilBrown50ac1682009-06-18 08:47:55 +10005440static int check_reshape(mddev_t *mddev)
NeilBrown29269552006-03-27 01:18:10 -08005441{
NeilBrown070ec552009-06-16 16:54:21 +10005442 raid5_conf_t *conf = mddev->private;
NeilBrown29269552006-03-27 01:18:10 -08005443
NeilBrown88ce4932009-03-31 15:24:23 +11005444 if (mddev->delta_disks == 0 &&
5445 mddev->new_layout == mddev->layout &&
Andre Noll664e7c42009-06-18 08:45:27 +10005446 mddev->new_chunk_sectors == mddev->chunk_sectors)
NeilBrown50ac1682009-06-18 08:47:55 +10005447 return 0; /* nothing to do */
NeilBrowndba034e2008-08-05 15:54:13 +10005448 if (mddev->bitmap)
5449 /* Cannot grow a bitmap yet */
5450 return -EBUSY;
NeilBrown674806d2010-06-16 17:17:53 +10005451 if (has_failed(conf))
NeilBrownec32a2b2009-03-31 15:17:38 +11005452 return -EINVAL;
5453 if (mddev->delta_disks < 0) {
5454 /* We might be able to shrink, but the devices must
5455 * be made bigger first.
5456 * For raid6, 4 is the minimum size.
5457 * Otherwise 2 is the minimum
5458 */
5459 int min = 2;
5460 if (mddev->level == 6)
5461 min = 4;
5462 if (mddev->raid_disks + mddev->delta_disks < min)
5463 return -EINVAL;
5464 }
NeilBrown29269552006-03-27 01:18:10 -08005465
NeilBrown01ee22b2009-06-18 08:47:20 +10005466 if (!check_stripe_cache(mddev))
NeilBrown29269552006-03-27 01:18:10 -08005467 return -ENOSPC;
NeilBrown29269552006-03-27 01:18:10 -08005468
NeilBrownec32a2b2009-03-31 15:17:38 +11005469 return resize_stripes(conf, conf->raid_disks + mddev->delta_disks);
NeilBrown63c70c42006-03-27 01:18:13 -08005470}
5471
5472static int raid5_start_reshape(mddev_t *mddev)
5473{
NeilBrown070ec552009-06-16 16:54:21 +10005474 raid5_conf_t *conf = mddev->private;
NeilBrown63c70c42006-03-27 01:18:13 -08005475 mdk_rdev_t *rdev;
NeilBrown63c70c42006-03-27 01:18:13 -08005476 int spares = 0;
NeilBrownc04be0a2006-10-03 01:15:53 -07005477 unsigned long flags;
NeilBrown63c70c42006-03-27 01:18:13 -08005478
NeilBrownf4168852007-02-28 20:11:53 -08005479 if (test_bit(MD_RECOVERY_RUNNING, &mddev->recovery))
NeilBrown63c70c42006-03-27 01:18:13 -08005480 return -EBUSY;
5481
NeilBrown01ee22b2009-06-18 08:47:20 +10005482 if (!check_stripe_cache(mddev))
5483 return -ENOSPC;
5484
Cheng Renquan159ec1f2009-01-09 08:31:08 +11005485 list_for_each_entry(rdev, &mddev->disks, same_set)
NeilBrown469518a2011-01-31 11:57:43 +11005486 if (!test_bit(In_sync, &rdev->flags)
5487 && !test_bit(Faulty, &rdev->flags))
NeilBrown29269552006-03-27 01:18:10 -08005488 spares++;
NeilBrown63c70c42006-03-27 01:18:13 -08005489
NeilBrownf4168852007-02-28 20:11:53 -08005490 if (spares - mddev->degraded < mddev->delta_disks - conf->max_degraded)
NeilBrown29269552006-03-27 01:18:10 -08005491 /* Not enough devices even to make a degraded array
5492 * of that size
5493 */
5494 return -EINVAL;
5495
NeilBrownec32a2b2009-03-31 15:17:38 +11005496 /* Refuse to reduce size of the array. Any reductions in
5497 * array size must be through explicit setting of array_size
5498 * attribute.
5499 */
5500 if (raid5_size(mddev, 0, conf->raid_disks + mddev->delta_disks)
5501 < mddev->array_sectors) {
NeilBrown0c55e022010-05-03 14:09:02 +10005502 printk(KERN_ERR "md/raid:%s: array size must be reduced "
NeilBrownec32a2b2009-03-31 15:17:38 +11005503 "before number of disks\n", mdname(mddev));
5504 return -EINVAL;
5505 }
5506
NeilBrownf6705572006-03-27 01:18:11 -08005507 atomic_set(&conf->reshape_stripes, 0);
NeilBrown29269552006-03-27 01:18:10 -08005508 spin_lock_irq(&conf->device_lock);
5509 conf->previous_raid_disks = conf->raid_disks;
NeilBrown63c70c42006-03-27 01:18:13 -08005510 conf->raid_disks += mddev->delta_disks;
Andre Noll09c9e5f2009-06-18 08:45:55 +10005511 conf->prev_chunk_sectors = conf->chunk_sectors;
5512 conf->chunk_sectors = mddev->new_chunk_sectors;
NeilBrown88ce4932009-03-31 15:24:23 +11005513 conf->prev_algo = conf->algorithm;
5514 conf->algorithm = mddev->new_layout;
NeilBrownfef9c612009-03-31 15:16:46 +11005515 if (mddev->delta_disks < 0)
5516 conf->reshape_progress = raid5_size(mddev, 0, 0);
5517 else
5518 conf->reshape_progress = 0;
5519 conf->reshape_safe = conf->reshape_progress;
NeilBrown86b42c72009-03-31 15:19:03 +11005520 conf->generation++;
NeilBrown29269552006-03-27 01:18:10 -08005521 spin_unlock_irq(&conf->device_lock);
5522
5523 /* Add some new drives, as many as will fit.
5524 * We know there are enough to make the newly sized array work.
NeilBrown3424bf62010-06-17 17:48:26 +10005525 * Don't add devices if we are reducing the number of
5526 * devices in the array. This is because it is not possible
5527 * to correctly record the "partially reconstructed" state of
5528 * such devices during the reshape and confusion could result.
NeilBrown29269552006-03-27 01:18:10 -08005529 */
NeilBrown87a8dec2011-01-31 11:57:43 +11005530 if (mddev->delta_disks >= 0) {
5531 int added_devices = 0;
5532 list_for_each_entry(rdev, &mddev->disks, same_set)
5533 if (rdev->raid_disk < 0 &&
5534 !test_bit(Faulty, &rdev->flags)) {
5535 if (raid5_add_disk(mddev, rdev) == 0) {
5536 char nm[20];
5537 if (rdev->raid_disk
5538 >= conf->previous_raid_disks) {
5539 set_bit(In_sync, &rdev->flags);
5540 added_devices++;
5541 } else
5542 rdev->recovery_offset = 0;
5543 sprintf(nm, "rd%d", rdev->raid_disk);
5544 if (sysfs_create_link(&mddev->kobj,
5545 &rdev->kobj, nm))
5546 /* Failure here is OK */;
NeilBrown50da0842011-01-31 11:57:43 +11005547 }
NeilBrown87a8dec2011-01-31 11:57:43 +11005548 } else if (rdev->raid_disk >= conf->previous_raid_disks
5549 && !test_bit(Faulty, &rdev->flags)) {
5550 /* This is a spare that was manually added */
5551 set_bit(In_sync, &rdev->flags);
5552 added_devices++;
5553 }
NeilBrown29269552006-03-27 01:18:10 -08005554
NeilBrown87a8dec2011-01-31 11:57:43 +11005555 /* When a reshape changes the number of devices,
5556 * ->degraded is measured against the larger of the
5557 * pre and post number of devices.
5558 */
NeilBrownec32a2b2009-03-31 15:17:38 +11005559 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrown9eb07c22010-02-09 12:31:47 +11005560 mddev->degraded += (conf->raid_disks - conf->previous_raid_disks)
NeilBrownec32a2b2009-03-31 15:17:38 +11005561 - added_devices;
5562 spin_unlock_irqrestore(&conf->device_lock, flags);
5563 }
NeilBrown63c70c42006-03-27 01:18:13 -08005564 mddev->raid_disks = conf->raid_disks;
NeilBrowne5164022009-08-03 10:59:57 +10005565 mddev->reshape_position = conf->reshape_progress;
NeilBrown850b2b422006-10-03 01:15:46 -07005566 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrownf6705572006-03-27 01:18:11 -08005567
NeilBrown29269552006-03-27 01:18:10 -08005568 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
5569 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
5570 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
5571 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
5572 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
NeilBrown0da3c612009-09-23 18:09:45 +10005573 "reshape");
NeilBrown29269552006-03-27 01:18:10 -08005574 if (!mddev->sync_thread) {
5575 mddev->recovery = 0;
5576 spin_lock_irq(&conf->device_lock);
5577 mddev->raid_disks = conf->raid_disks = conf->previous_raid_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11005578 conf->reshape_progress = MaxSector;
NeilBrown29269552006-03-27 01:18:10 -08005579 spin_unlock_irq(&conf->device_lock);
5580 return -EAGAIN;
5581 }
NeilBrownc8f517c2009-03-31 15:28:40 +11005582 conf->reshape_checkpoint = jiffies;
NeilBrown29269552006-03-27 01:18:10 -08005583 md_wakeup_thread(mddev->sync_thread);
5584 md_new_event(mddev);
5585 return 0;
5586}
NeilBrown29269552006-03-27 01:18:10 -08005587
NeilBrownec32a2b2009-03-31 15:17:38 +11005588/* This is called from the reshape thread and should make any
5589 * changes needed in 'conf'
5590 */
NeilBrown29269552006-03-27 01:18:10 -08005591static void end_reshape(raid5_conf_t *conf)
5592{
NeilBrown29269552006-03-27 01:18:10 -08005593
NeilBrownf6705572006-03-27 01:18:11 -08005594 if (!test_bit(MD_RECOVERY_INTR, &conf->mddev->recovery)) {
Dan Williams80c3a6c2009-03-17 18:10:40 -07005595
NeilBrownf6705572006-03-27 01:18:11 -08005596 spin_lock_irq(&conf->device_lock);
NeilBrowncea9c222009-03-31 15:15:05 +11005597 conf->previous_raid_disks = conf->raid_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11005598 conf->reshape_progress = MaxSector;
NeilBrownf6705572006-03-27 01:18:11 -08005599 spin_unlock_irq(&conf->device_lock);
NeilBrownb0f9ec02009-03-31 15:27:18 +11005600 wake_up(&conf->wait_for_overlap);
NeilBrown16a53ec2006-06-26 00:27:38 -07005601
5602 /* read-ahead size must cover two whole stripes, which is
5603 * 2 * (datadisks) * chunksize where 'n' is the number of raid devices
5604 */
NeilBrown4a5add42010-06-01 19:37:28 +10005605 if (conf->mddev->queue) {
NeilBrowncea9c222009-03-31 15:15:05 +11005606 int data_disks = conf->raid_disks - conf->max_degraded;
Andre Noll09c9e5f2009-06-18 08:45:55 +10005607 int stripe = data_disks * ((conf->chunk_sectors << 9)
NeilBrowncea9c222009-03-31 15:15:05 +11005608 / PAGE_SIZE);
NeilBrown16a53ec2006-06-26 00:27:38 -07005609 if (conf->mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
5610 conf->mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
5611 }
NeilBrown29269552006-03-27 01:18:10 -08005612 }
NeilBrown29269552006-03-27 01:18:10 -08005613}
5614
NeilBrownec32a2b2009-03-31 15:17:38 +11005615/* This is called from the raid5d thread with mddev_lock held.
5616 * It makes config changes to the device.
5617 */
NeilBrowncea9c222009-03-31 15:15:05 +11005618static void raid5_finish_reshape(mddev_t *mddev)
5619{
NeilBrown070ec552009-06-16 16:54:21 +10005620 raid5_conf_t *conf = mddev->private;
NeilBrowncea9c222009-03-31 15:15:05 +11005621
5622 if (!test_bit(MD_RECOVERY_INTR, &mddev->recovery)) {
5623
NeilBrownec32a2b2009-03-31 15:17:38 +11005624 if (mddev->delta_disks > 0) {
5625 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
5626 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10005627 revalidate_disk(mddev->gendisk);
NeilBrownec32a2b2009-03-31 15:17:38 +11005628 } else {
5629 int d;
NeilBrownec32a2b2009-03-31 15:17:38 +11005630 mddev->degraded = conf->raid_disks;
5631 for (d = 0; d < conf->raid_disks ; d++)
5632 if (conf->disks[d].rdev &&
5633 test_bit(In_sync,
5634 &conf->disks[d].rdev->flags))
5635 mddev->degraded--;
5636 for (d = conf->raid_disks ;
5637 d < conf->raid_disks - mddev->delta_disks;
NeilBrown1a67dde2009-08-13 10:41:49 +10005638 d++) {
5639 mdk_rdev_t *rdev = conf->disks[d].rdev;
5640 if (rdev && raid5_remove_disk(mddev, d) == 0) {
5641 char nm[20];
5642 sprintf(nm, "rd%d", rdev->raid_disk);
5643 sysfs_remove_link(&mddev->kobj, nm);
5644 rdev->raid_disk = -1;
5645 }
5646 }
NeilBrowncea9c222009-03-31 15:15:05 +11005647 }
NeilBrown88ce4932009-03-31 15:24:23 +11005648 mddev->layout = conf->algorithm;
Andre Noll09c9e5f2009-06-18 08:45:55 +10005649 mddev->chunk_sectors = conf->chunk_sectors;
NeilBrownec32a2b2009-03-31 15:17:38 +11005650 mddev->reshape_position = MaxSector;
5651 mddev->delta_disks = 0;
NeilBrowncea9c222009-03-31 15:15:05 +11005652 }
5653}
5654
NeilBrown72626682005-09-09 16:23:54 -07005655static void raid5_quiesce(mddev_t *mddev, int state)
5656{
NeilBrown070ec552009-06-16 16:54:21 +10005657 raid5_conf_t *conf = mddev->private;
NeilBrown72626682005-09-09 16:23:54 -07005658
5659 switch(state) {
NeilBrowne464eaf2006-03-27 01:18:14 -08005660 case 2: /* resume for a suspend */
5661 wake_up(&conf->wait_for_overlap);
5662 break;
5663
NeilBrown72626682005-09-09 16:23:54 -07005664 case 1: /* stop all writes */
5665 spin_lock_irq(&conf->device_lock);
NeilBrown64bd6602009-08-03 10:59:58 +10005666 /* '2' tells resync/reshape to pause so that all
5667 * active stripes can drain
5668 */
5669 conf->quiesce = 2;
NeilBrown72626682005-09-09 16:23:54 -07005670 wait_event_lock_irq(conf->wait_for_stripe,
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005671 atomic_read(&conf->active_stripes) == 0 &&
5672 atomic_read(&conf->active_aligned_reads) == 0,
NeilBrown72626682005-09-09 16:23:54 -07005673 conf->device_lock, /* nothing */);
NeilBrown64bd6602009-08-03 10:59:58 +10005674 conf->quiesce = 1;
NeilBrown72626682005-09-09 16:23:54 -07005675 spin_unlock_irq(&conf->device_lock);
NeilBrown64bd6602009-08-03 10:59:58 +10005676 /* allow reshape to continue */
5677 wake_up(&conf->wait_for_overlap);
NeilBrown72626682005-09-09 16:23:54 -07005678 break;
5679
5680 case 0: /* re-enable writes */
5681 spin_lock_irq(&conf->device_lock);
5682 conf->quiesce = 0;
5683 wake_up(&conf->wait_for_stripe);
NeilBrowne464eaf2006-03-27 01:18:14 -08005684 wake_up(&conf->wait_for_overlap);
NeilBrown72626682005-09-09 16:23:54 -07005685 spin_unlock_irq(&conf->device_lock);
5686 break;
5687 }
NeilBrown72626682005-09-09 16:23:54 -07005688}
NeilBrownb15c2e52006-01-06 00:20:16 -08005689
NeilBrownd562b0c2009-03-31 14:39:39 +11005690
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005691static void *raid45_takeover_raid0(mddev_t *mddev, int level)
Trela Maciej54071b32010-03-08 16:02:42 +11005692{
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005693 struct raid0_private_data *raid0_priv = mddev->private;
Trela Maciej54071b32010-03-08 16:02:42 +11005694
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005695 /* for raid0 takeover only one zone is supported */
5696 if (raid0_priv->nr_strip_zones > 1) {
NeilBrown0c55e022010-05-03 14:09:02 +10005697 printk(KERN_ERR "md/raid:%s: cannot takeover raid0 with more than one zone.\n",
5698 mdname(mddev));
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005699 return ERR_PTR(-EINVAL);
5700 }
5701
5702 mddev->new_level = level;
Trela Maciej54071b32010-03-08 16:02:42 +11005703 mddev->new_layout = ALGORITHM_PARITY_N;
5704 mddev->new_chunk_sectors = mddev->chunk_sectors;
5705 mddev->raid_disks += 1;
5706 mddev->delta_disks = 1;
5707 /* make sure it will be not marked as dirty */
5708 mddev->recovery_cp = MaxSector;
5709
5710 return setup_conf(mddev);
5711}
5712
5713
NeilBrownd562b0c2009-03-31 14:39:39 +11005714static void *raid5_takeover_raid1(mddev_t *mddev)
5715{
5716 int chunksect;
5717
5718 if (mddev->raid_disks != 2 ||
5719 mddev->degraded > 1)
5720 return ERR_PTR(-EINVAL);
5721
5722 /* Should check if there are write-behind devices? */
5723
5724 chunksect = 64*2; /* 64K by default */
5725
5726 /* The array must be an exact multiple of chunksize */
5727 while (chunksect && (mddev->array_sectors & (chunksect-1)))
5728 chunksect >>= 1;
5729
5730 if ((chunksect<<9) < STRIPE_SIZE)
5731 /* array size does not allow a suitable chunk size */
5732 return ERR_PTR(-EINVAL);
5733
5734 mddev->new_level = 5;
5735 mddev->new_layout = ALGORITHM_LEFT_SYMMETRIC;
Andre Noll664e7c42009-06-18 08:45:27 +10005736 mddev->new_chunk_sectors = chunksect;
NeilBrownd562b0c2009-03-31 14:39:39 +11005737
5738 return setup_conf(mddev);
5739}
5740
NeilBrownfc9739c2009-03-31 14:57:20 +11005741static void *raid5_takeover_raid6(mddev_t *mddev)
5742{
5743 int new_layout;
5744
5745 switch (mddev->layout) {
5746 case ALGORITHM_LEFT_ASYMMETRIC_6:
5747 new_layout = ALGORITHM_LEFT_ASYMMETRIC;
5748 break;
5749 case ALGORITHM_RIGHT_ASYMMETRIC_6:
5750 new_layout = ALGORITHM_RIGHT_ASYMMETRIC;
5751 break;
5752 case ALGORITHM_LEFT_SYMMETRIC_6:
5753 new_layout = ALGORITHM_LEFT_SYMMETRIC;
5754 break;
5755 case ALGORITHM_RIGHT_SYMMETRIC_6:
5756 new_layout = ALGORITHM_RIGHT_SYMMETRIC;
5757 break;
5758 case ALGORITHM_PARITY_0_6:
5759 new_layout = ALGORITHM_PARITY_0;
5760 break;
5761 case ALGORITHM_PARITY_N:
5762 new_layout = ALGORITHM_PARITY_N;
5763 break;
5764 default:
5765 return ERR_PTR(-EINVAL);
5766 }
5767 mddev->new_level = 5;
5768 mddev->new_layout = new_layout;
5769 mddev->delta_disks = -1;
5770 mddev->raid_disks -= 1;
5771 return setup_conf(mddev);
5772}
5773
NeilBrownd562b0c2009-03-31 14:39:39 +11005774
NeilBrown50ac1682009-06-18 08:47:55 +10005775static int raid5_check_reshape(mddev_t *mddev)
NeilBrownb3546032009-03-31 14:56:41 +11005776{
NeilBrown88ce4932009-03-31 15:24:23 +11005777 /* For a 2-drive array, the layout and chunk size can be changed
5778 * immediately as not restriping is needed.
5779 * For larger arrays we record the new value - after validation
5780 * to be used by a reshape pass.
NeilBrownb3546032009-03-31 14:56:41 +11005781 */
NeilBrown070ec552009-06-16 16:54:21 +10005782 raid5_conf_t *conf = mddev->private;
NeilBrown597a7112009-06-18 08:47:42 +10005783 int new_chunk = mddev->new_chunk_sectors;
NeilBrownb3546032009-03-31 14:56:41 +11005784
NeilBrown597a7112009-06-18 08:47:42 +10005785 if (mddev->new_layout >= 0 && !algorithm_valid_raid5(mddev->new_layout))
NeilBrownb3546032009-03-31 14:56:41 +11005786 return -EINVAL;
5787 if (new_chunk > 0) {
Andre Noll0ba459d2009-06-18 08:46:10 +10005788 if (!is_power_of_2(new_chunk))
NeilBrownb3546032009-03-31 14:56:41 +11005789 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10005790 if (new_chunk < (PAGE_SIZE>>9))
NeilBrownb3546032009-03-31 14:56:41 +11005791 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10005792 if (mddev->array_sectors & (new_chunk-1))
NeilBrownb3546032009-03-31 14:56:41 +11005793 /* not factor of array size */
5794 return -EINVAL;
5795 }
5796
5797 /* They look valid */
5798
NeilBrown88ce4932009-03-31 15:24:23 +11005799 if (mddev->raid_disks == 2) {
NeilBrown597a7112009-06-18 08:47:42 +10005800 /* can make the change immediately */
5801 if (mddev->new_layout >= 0) {
5802 conf->algorithm = mddev->new_layout;
5803 mddev->layout = mddev->new_layout;
NeilBrown88ce4932009-03-31 15:24:23 +11005804 }
5805 if (new_chunk > 0) {
NeilBrown597a7112009-06-18 08:47:42 +10005806 conf->chunk_sectors = new_chunk ;
5807 mddev->chunk_sectors = new_chunk;
NeilBrown88ce4932009-03-31 15:24:23 +11005808 }
5809 set_bit(MD_CHANGE_DEVS, &mddev->flags);
5810 md_wakeup_thread(mddev->thread);
NeilBrownb3546032009-03-31 14:56:41 +11005811 }
NeilBrown50ac1682009-06-18 08:47:55 +10005812 return check_reshape(mddev);
NeilBrown88ce4932009-03-31 15:24:23 +11005813}
5814
NeilBrown50ac1682009-06-18 08:47:55 +10005815static int raid6_check_reshape(mddev_t *mddev)
NeilBrown88ce4932009-03-31 15:24:23 +11005816{
NeilBrown597a7112009-06-18 08:47:42 +10005817 int new_chunk = mddev->new_chunk_sectors;
NeilBrown50ac1682009-06-18 08:47:55 +10005818
NeilBrown597a7112009-06-18 08:47:42 +10005819 if (mddev->new_layout >= 0 && !algorithm_valid_raid6(mddev->new_layout))
NeilBrown88ce4932009-03-31 15:24:23 +11005820 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11005821 if (new_chunk > 0) {
Andre Noll0ba459d2009-06-18 08:46:10 +10005822 if (!is_power_of_2(new_chunk))
NeilBrown88ce4932009-03-31 15:24:23 +11005823 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10005824 if (new_chunk < (PAGE_SIZE >> 9))
NeilBrown88ce4932009-03-31 15:24:23 +11005825 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10005826 if (mddev->array_sectors & (new_chunk-1))
NeilBrown88ce4932009-03-31 15:24:23 +11005827 /* not factor of array size */
5828 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11005829 }
NeilBrown88ce4932009-03-31 15:24:23 +11005830
5831 /* They look valid */
NeilBrown50ac1682009-06-18 08:47:55 +10005832 return check_reshape(mddev);
NeilBrownb3546032009-03-31 14:56:41 +11005833}
5834
NeilBrownd562b0c2009-03-31 14:39:39 +11005835static void *raid5_takeover(mddev_t *mddev)
5836{
5837 /* raid5 can take over:
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005838 * raid0 - if there is only one strip zone - make it a raid4 layout
NeilBrownd562b0c2009-03-31 14:39:39 +11005839 * raid1 - if there are two drives. We need to know the chunk size
5840 * raid4 - trivial - just use a raid4 layout.
5841 * raid6 - Providing it is a *_6 layout
NeilBrownd562b0c2009-03-31 14:39:39 +11005842 */
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005843 if (mddev->level == 0)
5844 return raid45_takeover_raid0(mddev, 5);
NeilBrownd562b0c2009-03-31 14:39:39 +11005845 if (mddev->level == 1)
5846 return raid5_takeover_raid1(mddev);
NeilBrowne9d47582009-03-31 14:57:09 +11005847 if (mddev->level == 4) {
5848 mddev->new_layout = ALGORITHM_PARITY_N;
5849 mddev->new_level = 5;
5850 return setup_conf(mddev);
5851 }
NeilBrownfc9739c2009-03-31 14:57:20 +11005852 if (mddev->level == 6)
5853 return raid5_takeover_raid6(mddev);
NeilBrownd562b0c2009-03-31 14:39:39 +11005854
5855 return ERR_PTR(-EINVAL);
5856}
5857
NeilBrowna78d38a2010-03-22 16:53:49 +11005858static void *raid4_takeover(mddev_t *mddev)
5859{
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005860 /* raid4 can take over:
5861 * raid0 - if there is only one strip zone
5862 * raid5 - if layout is right
NeilBrowna78d38a2010-03-22 16:53:49 +11005863 */
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005864 if (mddev->level == 0)
5865 return raid45_takeover_raid0(mddev, 4);
NeilBrowna78d38a2010-03-22 16:53:49 +11005866 if (mddev->level == 5 &&
5867 mddev->layout == ALGORITHM_PARITY_N) {
5868 mddev->new_layout = 0;
5869 mddev->new_level = 4;
5870 return setup_conf(mddev);
5871 }
5872 return ERR_PTR(-EINVAL);
5873}
NeilBrownd562b0c2009-03-31 14:39:39 +11005874
NeilBrown245f46c2009-03-31 14:39:39 +11005875static struct mdk_personality raid5_personality;
5876
5877static void *raid6_takeover(mddev_t *mddev)
5878{
5879 /* Currently can only take over a raid5. We map the
5880 * personality to an equivalent raid6 personality
5881 * with the Q block at the end.
5882 */
5883 int new_layout;
5884
5885 if (mddev->pers != &raid5_personality)
5886 return ERR_PTR(-EINVAL);
5887 if (mddev->degraded > 1)
5888 return ERR_PTR(-EINVAL);
5889 if (mddev->raid_disks > 253)
5890 return ERR_PTR(-EINVAL);
5891 if (mddev->raid_disks < 3)
5892 return ERR_PTR(-EINVAL);
5893
5894 switch (mddev->layout) {
5895 case ALGORITHM_LEFT_ASYMMETRIC:
5896 new_layout = ALGORITHM_LEFT_ASYMMETRIC_6;
5897 break;
5898 case ALGORITHM_RIGHT_ASYMMETRIC:
5899 new_layout = ALGORITHM_RIGHT_ASYMMETRIC_6;
5900 break;
5901 case ALGORITHM_LEFT_SYMMETRIC:
5902 new_layout = ALGORITHM_LEFT_SYMMETRIC_6;
5903 break;
5904 case ALGORITHM_RIGHT_SYMMETRIC:
5905 new_layout = ALGORITHM_RIGHT_SYMMETRIC_6;
5906 break;
5907 case ALGORITHM_PARITY_0:
5908 new_layout = ALGORITHM_PARITY_0_6;
5909 break;
5910 case ALGORITHM_PARITY_N:
5911 new_layout = ALGORITHM_PARITY_N;
5912 break;
5913 default:
5914 return ERR_PTR(-EINVAL);
5915 }
5916 mddev->new_level = 6;
5917 mddev->new_layout = new_layout;
5918 mddev->delta_disks = 1;
5919 mddev->raid_disks += 1;
5920 return setup_conf(mddev);
5921}
5922
5923
NeilBrown16a53ec2006-06-26 00:27:38 -07005924static struct mdk_personality raid6_personality =
5925{
5926 .name = "raid6",
5927 .level = 6,
5928 .owner = THIS_MODULE,
5929 .make_request = make_request,
5930 .run = run,
5931 .stop = stop,
5932 .status = status,
5933 .error_handler = error,
5934 .hot_add_disk = raid5_add_disk,
5935 .hot_remove_disk= raid5_remove_disk,
5936 .spare_active = raid5_spare_active,
5937 .sync_request = sync_request,
5938 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07005939 .size = raid5_size,
NeilBrown50ac1682009-06-18 08:47:55 +10005940 .check_reshape = raid6_check_reshape,
NeilBrownf4168852007-02-28 20:11:53 -08005941 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11005942 .finish_reshape = raid5_finish_reshape,
NeilBrown16a53ec2006-06-26 00:27:38 -07005943 .quiesce = raid5_quiesce,
NeilBrown245f46c2009-03-31 14:39:39 +11005944 .takeover = raid6_takeover,
NeilBrown16a53ec2006-06-26 00:27:38 -07005945};
NeilBrown2604b702006-01-06 00:20:36 -08005946static struct mdk_personality raid5_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07005947{
5948 .name = "raid5",
NeilBrown2604b702006-01-06 00:20:36 -08005949 .level = 5,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005950 .owner = THIS_MODULE,
5951 .make_request = make_request,
5952 .run = run,
5953 .stop = stop,
5954 .status = status,
5955 .error_handler = error,
5956 .hot_add_disk = raid5_add_disk,
5957 .hot_remove_disk= raid5_remove_disk,
5958 .spare_active = raid5_spare_active,
5959 .sync_request = sync_request,
5960 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07005961 .size = raid5_size,
NeilBrown63c70c42006-03-27 01:18:13 -08005962 .check_reshape = raid5_check_reshape,
5963 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11005964 .finish_reshape = raid5_finish_reshape,
NeilBrown72626682005-09-09 16:23:54 -07005965 .quiesce = raid5_quiesce,
NeilBrownd562b0c2009-03-31 14:39:39 +11005966 .takeover = raid5_takeover,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005967};
5968
NeilBrown2604b702006-01-06 00:20:36 -08005969static struct mdk_personality raid4_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07005970{
NeilBrown2604b702006-01-06 00:20:36 -08005971 .name = "raid4",
5972 .level = 4,
5973 .owner = THIS_MODULE,
5974 .make_request = make_request,
5975 .run = run,
5976 .stop = stop,
5977 .status = status,
5978 .error_handler = error,
5979 .hot_add_disk = raid5_add_disk,
5980 .hot_remove_disk= raid5_remove_disk,
5981 .spare_active = raid5_spare_active,
5982 .sync_request = sync_request,
5983 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07005984 .size = raid5_size,
NeilBrown3d378902007-03-26 21:32:13 -08005985 .check_reshape = raid5_check_reshape,
5986 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11005987 .finish_reshape = raid5_finish_reshape,
NeilBrown2604b702006-01-06 00:20:36 -08005988 .quiesce = raid5_quiesce,
NeilBrowna78d38a2010-03-22 16:53:49 +11005989 .takeover = raid4_takeover,
NeilBrown2604b702006-01-06 00:20:36 -08005990};
5991
5992static int __init raid5_init(void)
5993{
NeilBrown16a53ec2006-06-26 00:27:38 -07005994 register_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08005995 register_md_personality(&raid5_personality);
5996 register_md_personality(&raid4_personality);
5997 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005998}
5999
NeilBrown2604b702006-01-06 00:20:36 -08006000static void raid5_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006001{
NeilBrown16a53ec2006-06-26 00:27:38 -07006002 unregister_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08006003 unregister_md_personality(&raid5_personality);
6004 unregister_md_personality(&raid4_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006005}
6006
6007module_init(raid5_init);
6008module_exit(raid5_exit);
6009MODULE_LICENSE("GPL");
NeilBrown0efb9e62009-12-14 12:49:58 +11006010MODULE_DESCRIPTION("RAID4/5/6 (striping with parity) personality for MD");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006011MODULE_ALIAS("md-personality-4"); /* RAID5 */
NeilBrownd9d166c2006-01-06 00:20:51 -08006012MODULE_ALIAS("md-raid5");
6013MODULE_ALIAS("md-raid4");
NeilBrown2604b702006-01-06 00:20:36 -08006014MODULE_ALIAS("md-level-5");
6015MODULE_ALIAS("md-level-4");
NeilBrown16a53ec2006-06-26 00:27:38 -07006016MODULE_ALIAS("md-personality-8"); /* RAID6 */
6017MODULE_ALIAS("md-raid6");
6018MODULE_ALIAS("md-level-6");
6019
6020/* This used to be two separate modules, they were: */
6021MODULE_ALIAS("raid5");
6022MODULE_ALIAS("raid6");