blob: 6fa60e416a097394815704d2b68d8a79de003ba1 [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);
NeilBrown7c785b72006-07-10 04:44:16 -0700204 blk_plug_device(conf->mddev->queue);
205 } 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);
NeilBrown7c785b72006-07-10 04:44:16 -0700208 blk_plug_device(conf->mddev->queue);
209 } 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436static void unplug_slaves(mddev_t *mddev);
Jens Axboe165125e2007-07-24 09:28:11 +0200437static void raid5_unplug_device(struct request_queue *q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
NeilBrownb5663ba2009-03-31 14:39:38 +1100439static struct stripe_head *
440get_active_stripe(raid5_conf_t *conf, sector_t sector,
NeilBrowna8c906c2009-06-09 14:39:59 +1000441 int previous, int noblock, int noquiesce)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
443 struct stripe_head *sh;
444
Dan Williams45b42332007-07-09 11:56:43 -0700445 pr_debug("get_stripe, sector %llu\n", (unsigned long long)sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447 spin_lock_irq(&conf->device_lock);
448
449 do {
NeilBrown72626682005-09-09 16:23:54 -0700450 wait_event_lock_irq(conf->wait_for_stripe,
NeilBrowna8c906c2009-06-09 14:39:59 +1000451 conf->quiesce == 0 || noquiesce,
NeilBrown72626682005-09-09 16:23:54 -0700452 conf->device_lock, /* nothing */);
NeilBrown86b42c72009-03-31 15:19:03 +1100453 sh = __find_stripe(conf, sector, conf->generation - previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 if (!sh) {
455 if (!conf->inactive_blocked)
456 sh = get_free_stripe(conf);
457 if (noblock && sh == NULL)
458 break;
459 if (!sh) {
460 conf->inactive_blocked = 1;
461 wait_event_lock_irq(conf->wait_for_stripe,
462 !list_empty(&conf->inactive_list) &&
NeilBrown50368052005-12-12 02:39:17 -0800463 (atomic_read(&conf->active_stripes)
464 < (conf->max_nr_stripes *3/4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 || !conf->inactive_blocked),
466 conf->device_lock,
NeilBrownf4370782006-07-10 04:44:14 -0700467 raid5_unplug_device(conf->mddev->queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 );
469 conf->inactive_blocked = 0;
470 } else
NeilBrownb5663ba2009-03-31 14:39:38 +1100471 init_stripe(sh, sector, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 } else {
473 if (atomic_read(&sh->count)) {
NeilBrownab69ae12009-03-31 15:26:47 +1100474 BUG_ON(!list_empty(&sh->lru)
475 && !test_bit(STRIPE_EXPANDING, &sh->state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 } else {
477 if (!test_bit(STRIPE_HANDLE, &sh->state))
478 atomic_inc(&conf->active_stripes);
NeilBrownff4e8d92006-07-10 04:44:16 -0700479 if (list_empty(&sh->lru) &&
480 !test_bit(STRIPE_EXPANDING, &sh->state))
NeilBrown16a53ec2006-06-26 00:27:38 -0700481 BUG();
482 list_del_init(&sh->lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 }
484 }
485 } while (sh == NULL);
486
487 if (sh)
488 atomic_inc(&sh->count);
489
490 spin_unlock_irq(&conf->device_lock);
491 return sh;
492}
493
NeilBrown6712ecf2007-09-27 12:47:43 +0200494static void
495raid5_end_read_request(struct bio *bi, int error);
496static void
497raid5_end_write_request(struct bio *bi, int error);
Dan Williams91c00922007-01-02 13:52:30 -0700498
Dan Williamsc4e5ac02008-06-28 08:31:53 +1000499static void ops_run_io(struct stripe_head *sh, struct stripe_head_state *s)
Dan Williams91c00922007-01-02 13:52:30 -0700500{
501 raid5_conf_t *conf = sh->raid_conf;
502 int i, disks = sh->disks;
503
504 might_sleep();
505
506 for (i = disks; i--; ) {
507 int rw;
508 struct bio *bi;
509 mdk_rdev_t *rdev;
510 if (test_and_clear_bit(R5_Wantwrite, &sh->dev[i].flags))
511 rw = WRITE;
512 else if (test_and_clear_bit(R5_Wantread, &sh->dev[i].flags))
513 rw = READ;
514 else
515 continue;
516
517 bi = &sh->dev[i].req;
518
519 bi->bi_rw = rw;
520 if (rw == WRITE)
521 bi->bi_end_io = raid5_end_write_request;
522 else
523 bi->bi_end_io = raid5_end_read_request;
524
525 rcu_read_lock();
526 rdev = rcu_dereference(conf->disks[i].rdev);
527 if (rdev && test_bit(Faulty, &rdev->flags))
528 rdev = NULL;
529 if (rdev)
530 atomic_inc(&rdev->nr_pending);
531 rcu_read_unlock();
532
533 if (rdev) {
Dan Williamsc4e5ac02008-06-28 08:31:53 +1000534 if (s->syncing || s->expanding || s->expanded)
Dan Williams91c00922007-01-02 13:52:30 -0700535 md_sync_acct(rdev->bdev, STRIPE_SECTORS);
536
Dan Williams2b7497f2008-06-28 08:31:52 +1000537 set_bit(STRIPE_IO_STARTED, &sh->state);
538
Dan Williams91c00922007-01-02 13:52:30 -0700539 bi->bi_bdev = rdev->bdev;
540 pr_debug("%s: for %llu schedule op %ld on disc %d\n",
Harvey Harrisone46b272b2008-04-28 02:15:50 -0700541 __func__, (unsigned long long)sh->sector,
Dan Williams91c00922007-01-02 13:52:30 -0700542 bi->bi_rw, i);
543 atomic_inc(&sh->count);
544 bi->bi_sector = sh->sector + rdev->data_offset;
545 bi->bi_flags = 1 << BIO_UPTODATE;
546 bi->bi_vcnt = 1;
547 bi->bi_max_vecs = 1;
548 bi->bi_idx = 0;
549 bi->bi_io_vec = &sh->dev[i].vec;
550 bi->bi_io_vec[0].bv_len = STRIPE_SIZE;
551 bi->bi_io_vec[0].bv_offset = 0;
552 bi->bi_size = STRIPE_SIZE;
553 bi->bi_next = NULL;
554 if (rw == WRITE &&
555 test_bit(R5_ReWrite, &sh->dev[i].flags))
556 atomic_add(STRIPE_SECTORS,
557 &rdev->corrected_errors);
558 generic_make_request(bi);
559 } else {
560 if (rw == WRITE)
561 set_bit(STRIPE_DEGRADED, &sh->state);
562 pr_debug("skip op %ld on disc %d for sector %llu\n",
563 bi->bi_rw, i, (unsigned long long)sh->sector);
564 clear_bit(R5_LOCKED, &sh->dev[i].flags);
565 set_bit(STRIPE_HANDLE, &sh->state);
566 }
567 }
568}
569
570static struct dma_async_tx_descriptor *
571async_copy_data(int frombio, struct bio *bio, struct page *page,
572 sector_t sector, struct dma_async_tx_descriptor *tx)
573{
574 struct bio_vec *bvl;
575 struct page *bio_page;
576 int i;
577 int page_offset;
Dan Williamsa08abd82009-06-03 11:43:59 -0700578 struct async_submit_ctl submit;
Dan Williams0403e382009-09-08 17:42:50 -0700579 enum async_tx_flags flags = 0;
Dan Williams91c00922007-01-02 13:52:30 -0700580
581 if (bio->bi_sector >= sector)
582 page_offset = (signed)(bio->bi_sector - sector) * 512;
583 else
584 page_offset = (signed)(sector - bio->bi_sector) * -512;
Dan Williamsa08abd82009-06-03 11:43:59 -0700585
Dan Williams0403e382009-09-08 17:42:50 -0700586 if (frombio)
587 flags |= ASYNC_TX_FENCE;
588 init_async_submit(&submit, flags, tx, NULL, NULL, NULL);
589
Dan Williams91c00922007-01-02 13:52:30 -0700590 bio_for_each_segment(bvl, bio, i) {
591 int len = bio_iovec_idx(bio, i)->bv_len;
592 int clen;
593 int b_offset = 0;
594
595 if (page_offset < 0) {
596 b_offset = -page_offset;
597 page_offset += b_offset;
598 len -= b_offset;
599 }
600
601 if (len > 0 && page_offset + len > STRIPE_SIZE)
602 clen = STRIPE_SIZE - page_offset;
603 else
604 clen = len;
605
606 if (clen > 0) {
607 b_offset += bio_iovec_idx(bio, i)->bv_offset;
608 bio_page = bio_iovec_idx(bio, i)->bv_page;
609 if (frombio)
610 tx = async_memcpy(page, bio_page, page_offset,
Dan Williamsa08abd82009-06-03 11:43:59 -0700611 b_offset, clen, &submit);
Dan Williams91c00922007-01-02 13:52:30 -0700612 else
613 tx = async_memcpy(bio_page, page, b_offset,
Dan Williamsa08abd82009-06-03 11:43:59 -0700614 page_offset, clen, &submit);
Dan Williams91c00922007-01-02 13:52:30 -0700615 }
Dan Williamsa08abd82009-06-03 11:43:59 -0700616 /* chain the operations */
617 submit.depend_tx = tx;
618
Dan Williams91c00922007-01-02 13:52:30 -0700619 if (clen < len) /* hit end of page */
620 break;
621 page_offset += len;
622 }
623
624 return tx;
625}
626
627static void ops_complete_biofill(void *stripe_head_ref)
628{
629 struct stripe_head *sh = stripe_head_ref;
630 struct bio *return_bi = NULL;
631 raid5_conf_t *conf = sh->raid_conf;
Dan Williamse4d84902007-09-24 10:06:13 -0700632 int i;
Dan Williams91c00922007-01-02 13:52:30 -0700633
Harvey Harrisone46b272b2008-04-28 02:15:50 -0700634 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700635 (unsigned long long)sh->sector);
636
637 /* clear completed biofills */
Dan Williams83de75c2008-06-28 08:31:58 +1000638 spin_lock_irq(&conf->device_lock);
Dan Williams91c00922007-01-02 13:52:30 -0700639 for (i = sh->disks; i--; ) {
640 struct r5dev *dev = &sh->dev[i];
Dan Williams91c00922007-01-02 13:52:30 -0700641
642 /* acknowledge completion of a biofill operation */
Dan Williamse4d84902007-09-24 10:06:13 -0700643 /* and check if we need to reply to a read request,
644 * new R5_Wantfill requests are held off until
Dan Williams83de75c2008-06-28 08:31:58 +1000645 * !STRIPE_BIOFILL_RUN
Dan Williamse4d84902007-09-24 10:06:13 -0700646 */
647 if (test_and_clear_bit(R5_Wantfill, &dev->flags)) {
Dan Williams91c00922007-01-02 13:52:30 -0700648 struct bio *rbi, *rbi2;
Dan Williams91c00922007-01-02 13:52:30 -0700649
Dan Williams91c00922007-01-02 13:52:30 -0700650 BUG_ON(!dev->read);
651 rbi = dev->read;
652 dev->read = NULL;
653 while (rbi && rbi->bi_sector <
654 dev->sector + STRIPE_SECTORS) {
655 rbi2 = r5_next_bio(rbi, dev->sector);
Jens Axboe960e7392008-08-15 10:41:18 +0200656 if (!raid5_dec_bi_phys_segments(rbi)) {
Dan Williams91c00922007-01-02 13:52:30 -0700657 rbi->bi_next = return_bi;
658 return_bi = rbi;
659 }
Dan Williams91c00922007-01-02 13:52:30 -0700660 rbi = rbi2;
661 }
662 }
663 }
Dan Williams83de75c2008-06-28 08:31:58 +1000664 spin_unlock_irq(&conf->device_lock);
665 clear_bit(STRIPE_BIOFILL_RUN, &sh->state);
Dan Williams91c00922007-01-02 13:52:30 -0700666
667 return_io(return_bi);
668
Dan Williamse4d84902007-09-24 10:06:13 -0700669 set_bit(STRIPE_HANDLE, &sh->state);
Dan Williams91c00922007-01-02 13:52:30 -0700670 release_stripe(sh);
671}
672
673static void ops_run_biofill(struct stripe_head *sh)
674{
675 struct dma_async_tx_descriptor *tx = NULL;
676 raid5_conf_t *conf = sh->raid_conf;
Dan Williamsa08abd82009-06-03 11:43:59 -0700677 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -0700678 int i;
679
Harvey Harrisone46b272b2008-04-28 02:15:50 -0700680 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700681 (unsigned long long)sh->sector);
682
683 for (i = sh->disks; i--; ) {
684 struct r5dev *dev = &sh->dev[i];
685 if (test_bit(R5_Wantfill, &dev->flags)) {
686 struct bio *rbi;
687 spin_lock_irq(&conf->device_lock);
688 dev->read = rbi = dev->toread;
689 dev->toread = NULL;
690 spin_unlock_irq(&conf->device_lock);
691 while (rbi && rbi->bi_sector <
692 dev->sector + STRIPE_SECTORS) {
693 tx = async_copy_data(0, rbi, dev->page,
694 dev->sector, tx);
695 rbi = r5_next_bio(rbi, dev->sector);
696 }
697 }
698 }
699
700 atomic_inc(&sh->count);
Dan Williamsa08abd82009-06-03 11:43:59 -0700701 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_biofill, sh, NULL);
702 async_trigger_callback(&submit);
Dan Williams91c00922007-01-02 13:52:30 -0700703}
704
Dan Williams4e7d2c02009-08-29 19:13:11 -0700705static void mark_target_uptodate(struct stripe_head *sh, int target)
706{
707 struct r5dev *tgt;
708
709 if (target < 0)
710 return;
711
712 tgt = &sh->dev[target];
713 set_bit(R5_UPTODATE, &tgt->flags);
714 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
715 clear_bit(R5_Wantcompute, &tgt->flags);
716}
717
Dan Williamsac6b53b2009-07-14 13:40:19 -0700718static void ops_complete_compute(void *stripe_head_ref)
Dan Williams91c00922007-01-02 13:52:30 -0700719{
720 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -0700721
Harvey Harrisone46b272b2008-04-28 02:15:50 -0700722 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700723 (unsigned long long)sh->sector);
724
Dan Williamsac6b53b2009-07-14 13:40:19 -0700725 /* mark the computed target(s) as uptodate */
Dan Williams4e7d2c02009-08-29 19:13:11 -0700726 mark_target_uptodate(sh, sh->ops.target);
Dan Williamsac6b53b2009-07-14 13:40:19 -0700727 mark_target_uptodate(sh, sh->ops.target2);
Dan Williams4e7d2c02009-08-29 19:13:11 -0700728
Dan Williamsecc65c92008-06-28 08:31:57 +1000729 clear_bit(STRIPE_COMPUTE_RUN, &sh->state);
730 if (sh->check_state == check_state_compute_run)
731 sh->check_state = check_state_compute_result;
Dan Williams91c00922007-01-02 13:52:30 -0700732 set_bit(STRIPE_HANDLE, &sh->state);
733 release_stripe(sh);
734}
735
Dan Williamsd6f38f32009-07-14 11:50:52 -0700736/* return a pointer to the address conversion region of the scribble buffer */
737static addr_conv_t *to_addr_conv(struct stripe_head *sh,
738 struct raid5_percpu *percpu)
Dan Williams91c00922007-01-02 13:52:30 -0700739{
Dan Williamsd6f38f32009-07-14 11:50:52 -0700740 return percpu->scribble + sizeof(struct page *) * (sh->disks + 2);
741}
742
743static struct dma_async_tx_descriptor *
744ops_run_compute5(struct stripe_head *sh, struct raid5_percpu *percpu)
745{
Dan Williams91c00922007-01-02 13:52:30 -0700746 int disks = sh->disks;
Dan Williamsd6f38f32009-07-14 11:50:52 -0700747 struct page **xor_srcs = percpu->scribble;
Dan Williams91c00922007-01-02 13:52:30 -0700748 int target = sh->ops.target;
749 struct r5dev *tgt = &sh->dev[target];
750 struct page *xor_dest = tgt->page;
751 int count = 0;
752 struct dma_async_tx_descriptor *tx;
Dan Williamsa08abd82009-06-03 11:43:59 -0700753 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -0700754 int i;
755
756 pr_debug("%s: stripe %llu block: %d\n",
Harvey Harrisone46b272b2008-04-28 02:15:50 -0700757 __func__, (unsigned long long)sh->sector, target);
Dan Williams91c00922007-01-02 13:52:30 -0700758 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
759
760 for (i = disks; i--; )
761 if (i != target)
762 xor_srcs[count++] = sh->dev[i].page;
763
764 atomic_inc(&sh->count);
765
Dan Williams0403e382009-09-08 17:42:50 -0700766 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST, NULL,
Dan Williamsac6b53b2009-07-14 13:40:19 -0700767 ops_complete_compute, sh, to_addr_conv(sh, percpu));
Dan Williams91c00922007-01-02 13:52:30 -0700768 if (unlikely(count == 1))
Dan Williamsa08abd82009-06-03 11:43:59 -0700769 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -0700770 else
Dan Williamsa08abd82009-06-03 11:43:59 -0700771 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -0700772
Dan Williams91c00922007-01-02 13:52:30 -0700773 return tx;
774}
775
Dan Williamsac6b53b2009-07-14 13:40:19 -0700776/* set_syndrome_sources - populate source buffers for gen_syndrome
777 * @srcs - (struct page *) array of size sh->disks
778 * @sh - stripe_head to parse
779 *
780 * Populates srcs in proper layout order for the stripe and returns the
781 * 'count' of sources to be used in a call to async_gen_syndrome. The P
782 * destination buffer is recorded in srcs[count] and the Q destination
783 * is recorded in srcs[count+1]].
784 */
785static int set_syndrome_sources(struct page **srcs, struct stripe_head *sh)
786{
787 int disks = sh->disks;
788 int syndrome_disks = sh->ddf_layout ? disks : (disks - 2);
789 int d0_idx = raid6_d0(sh);
790 int count;
791 int i;
792
793 for (i = 0; i < disks; i++)
NeilBrown5dd33c92009-10-16 16:40:25 +1100794 srcs[i] = NULL;
Dan Williamsac6b53b2009-07-14 13:40:19 -0700795
796 count = 0;
797 i = d0_idx;
798 do {
799 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
800
801 srcs[slot] = sh->dev[i].page;
802 i = raid6_next_disk(i, disks);
803 } while (i != d0_idx);
Dan Williamsac6b53b2009-07-14 13:40:19 -0700804
NeilBrowne4424fe2009-10-16 16:27:34 +1100805 return syndrome_disks;
Dan Williamsac6b53b2009-07-14 13:40:19 -0700806}
807
808static struct dma_async_tx_descriptor *
809ops_run_compute6_1(struct stripe_head *sh, struct raid5_percpu *percpu)
810{
811 int disks = sh->disks;
812 struct page **blocks = percpu->scribble;
813 int target;
814 int qd_idx = sh->qd_idx;
815 struct dma_async_tx_descriptor *tx;
816 struct async_submit_ctl submit;
817 struct r5dev *tgt;
818 struct page *dest;
819 int i;
820 int count;
821
822 if (sh->ops.target < 0)
823 target = sh->ops.target2;
824 else if (sh->ops.target2 < 0)
825 target = sh->ops.target;
826 else
827 /* we should only have one valid target */
828 BUG();
829 BUG_ON(target < 0);
830 pr_debug("%s: stripe %llu block: %d\n",
831 __func__, (unsigned long long)sh->sector, target);
832
833 tgt = &sh->dev[target];
834 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
835 dest = tgt->page;
836
837 atomic_inc(&sh->count);
838
839 if (target == qd_idx) {
840 count = set_syndrome_sources(blocks, sh);
841 blocks[count] = NULL; /* regenerating p is not necessary */
842 BUG_ON(blocks[count+1] != dest); /* q should already be set */
Dan Williams0403e382009-09-08 17:42:50 -0700843 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
844 ops_complete_compute, sh,
Dan Williamsac6b53b2009-07-14 13:40:19 -0700845 to_addr_conv(sh, percpu));
846 tx = async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
847 } else {
848 /* Compute any data- or p-drive using XOR */
849 count = 0;
850 for (i = disks; i-- ; ) {
851 if (i == target || i == qd_idx)
852 continue;
853 blocks[count++] = sh->dev[i].page;
854 }
855
Dan Williams0403e382009-09-08 17:42:50 -0700856 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
857 NULL, ops_complete_compute, sh,
Dan Williamsac6b53b2009-07-14 13:40:19 -0700858 to_addr_conv(sh, percpu));
859 tx = async_xor(dest, blocks, 0, count, STRIPE_SIZE, &submit);
860 }
861
862 return tx;
863}
864
865static struct dma_async_tx_descriptor *
866ops_run_compute6_2(struct stripe_head *sh, struct raid5_percpu *percpu)
867{
868 int i, count, disks = sh->disks;
869 int syndrome_disks = sh->ddf_layout ? disks : disks-2;
870 int d0_idx = raid6_d0(sh);
871 int faila = -1, failb = -1;
872 int target = sh->ops.target;
873 int target2 = sh->ops.target2;
874 struct r5dev *tgt = &sh->dev[target];
875 struct r5dev *tgt2 = &sh->dev[target2];
876 struct dma_async_tx_descriptor *tx;
877 struct page **blocks = percpu->scribble;
878 struct async_submit_ctl submit;
879
880 pr_debug("%s: stripe %llu block1: %d block2: %d\n",
881 __func__, (unsigned long long)sh->sector, target, target2);
882 BUG_ON(target < 0 || target2 < 0);
883 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
884 BUG_ON(!test_bit(R5_Wantcompute, &tgt2->flags));
885
Dan Williams6c910a72009-09-16 12:24:54 -0700886 /* we need to open-code set_syndrome_sources to handle the
Dan Williamsac6b53b2009-07-14 13:40:19 -0700887 * slot number conversion for 'faila' and 'failb'
888 */
889 for (i = 0; i < disks ; i++)
NeilBrown5dd33c92009-10-16 16:40:25 +1100890 blocks[i] = NULL;
Dan Williamsac6b53b2009-07-14 13:40:19 -0700891 count = 0;
892 i = d0_idx;
893 do {
894 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
895
896 blocks[slot] = sh->dev[i].page;
897
898 if (i == target)
899 faila = slot;
900 if (i == target2)
901 failb = slot;
902 i = raid6_next_disk(i, disks);
903 } while (i != d0_idx);
Dan Williamsac6b53b2009-07-14 13:40:19 -0700904
905 BUG_ON(faila == failb);
906 if (failb < faila)
907 swap(faila, failb);
908 pr_debug("%s: stripe: %llu faila: %d failb: %d\n",
909 __func__, (unsigned long long)sh->sector, faila, failb);
910
911 atomic_inc(&sh->count);
912
913 if (failb == syndrome_disks+1) {
914 /* Q disk is one of the missing disks */
915 if (faila == syndrome_disks) {
916 /* Missing P+Q, just recompute */
Dan Williams0403e382009-09-08 17:42:50 -0700917 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
918 ops_complete_compute, sh,
919 to_addr_conv(sh, percpu));
NeilBrowne4424fe2009-10-16 16:27:34 +1100920 return async_gen_syndrome(blocks, 0, syndrome_disks+2,
Dan Williamsac6b53b2009-07-14 13:40:19 -0700921 STRIPE_SIZE, &submit);
922 } else {
923 struct page *dest;
924 int data_target;
925 int qd_idx = sh->qd_idx;
926
927 /* Missing D+Q: recompute D from P, then recompute Q */
928 if (target == qd_idx)
929 data_target = target2;
930 else
931 data_target = target;
932
933 count = 0;
934 for (i = disks; i-- ; ) {
935 if (i == data_target || i == qd_idx)
936 continue;
937 blocks[count++] = sh->dev[i].page;
938 }
939 dest = sh->dev[data_target].page;
Dan Williams0403e382009-09-08 17:42:50 -0700940 init_async_submit(&submit,
941 ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
942 NULL, NULL, NULL,
943 to_addr_conv(sh, percpu));
Dan Williamsac6b53b2009-07-14 13:40:19 -0700944 tx = async_xor(dest, blocks, 0, count, STRIPE_SIZE,
945 &submit);
946
947 count = set_syndrome_sources(blocks, sh);
Dan Williams0403e382009-09-08 17:42:50 -0700948 init_async_submit(&submit, ASYNC_TX_FENCE, tx,
949 ops_complete_compute, sh,
950 to_addr_conv(sh, percpu));
Dan Williamsac6b53b2009-07-14 13:40:19 -0700951 return async_gen_syndrome(blocks, 0, count+2,
952 STRIPE_SIZE, &submit);
953 }
Dan Williamsac6b53b2009-07-14 13:40:19 -0700954 } else {
Dan Williams6c910a72009-09-16 12:24:54 -0700955 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
956 ops_complete_compute, sh,
957 to_addr_conv(sh, percpu));
958 if (failb == syndrome_disks) {
959 /* We're missing D+P. */
960 return async_raid6_datap_recov(syndrome_disks+2,
961 STRIPE_SIZE, faila,
962 blocks, &submit);
963 } else {
964 /* We're missing D+D. */
965 return async_raid6_2data_recov(syndrome_disks+2,
966 STRIPE_SIZE, faila, failb,
967 blocks, &submit);
968 }
Dan Williamsac6b53b2009-07-14 13:40:19 -0700969 }
970}
971
972
Dan Williams91c00922007-01-02 13:52:30 -0700973static void ops_complete_prexor(void *stripe_head_ref)
974{
975 struct stripe_head *sh = stripe_head_ref;
976
Harvey Harrisone46b272b2008-04-28 02:15:50 -0700977 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700978 (unsigned long long)sh->sector);
Dan Williams91c00922007-01-02 13:52:30 -0700979}
980
981static struct dma_async_tx_descriptor *
Dan Williamsd6f38f32009-07-14 11:50:52 -0700982ops_run_prexor(struct stripe_head *sh, struct raid5_percpu *percpu,
983 struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -0700984{
Dan Williams91c00922007-01-02 13:52:30 -0700985 int disks = sh->disks;
Dan Williamsd6f38f32009-07-14 11:50:52 -0700986 struct page **xor_srcs = percpu->scribble;
Dan Williams91c00922007-01-02 13:52:30 -0700987 int count = 0, pd_idx = sh->pd_idx, i;
Dan Williamsa08abd82009-06-03 11:43:59 -0700988 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -0700989
990 /* existing parity data subtracted */
991 struct page *xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
992
Harvey Harrisone46b272b2008-04-28 02:15:50 -0700993 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700994 (unsigned long long)sh->sector);
995
996 for (i = disks; i--; ) {
997 struct r5dev *dev = &sh->dev[i];
998 /* Only process blocks that are known to be uptodate */
Dan Williamsd8ee0722008-06-28 08:32:06 +1000999 if (test_bit(R5_Wantdrain, &dev->flags))
Dan Williams91c00922007-01-02 13:52:30 -07001000 xor_srcs[count++] = dev->page;
1001 }
1002
Dan Williams0403e382009-09-08 17:42:50 -07001003 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_DROP_DST, tx,
Dan Williamsd6f38f32009-07-14 11:50:52 -07001004 ops_complete_prexor, sh, to_addr_conv(sh, percpu));
Dan Williamsa08abd82009-06-03 11:43:59 -07001005 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001006
1007 return tx;
1008}
1009
1010static struct dma_async_tx_descriptor *
Dan Williamsd8ee0722008-06-28 08:32:06 +10001011ops_run_biodrain(struct stripe_head *sh, struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001012{
1013 int disks = sh->disks;
Dan Williamsd8ee0722008-06-28 08:32:06 +10001014 int i;
Dan Williams91c00922007-01-02 13:52:30 -07001015
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001016 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001017 (unsigned long long)sh->sector);
1018
1019 for (i = disks; i--; ) {
1020 struct r5dev *dev = &sh->dev[i];
1021 struct bio *chosen;
Dan Williams91c00922007-01-02 13:52:30 -07001022
Dan Williamsd8ee0722008-06-28 08:32:06 +10001023 if (test_and_clear_bit(R5_Wantdrain, &dev->flags)) {
Dan Williams91c00922007-01-02 13:52:30 -07001024 struct bio *wbi;
1025
1026 spin_lock(&sh->lock);
1027 chosen = dev->towrite;
1028 dev->towrite = NULL;
1029 BUG_ON(dev->written);
1030 wbi = dev->written = chosen;
1031 spin_unlock(&sh->lock);
1032
1033 while (wbi && wbi->bi_sector <
1034 dev->sector + STRIPE_SECTORS) {
1035 tx = async_copy_data(1, wbi, dev->page,
1036 dev->sector, tx);
1037 wbi = r5_next_bio(wbi, dev->sector);
1038 }
1039 }
1040 }
1041
1042 return tx;
1043}
1044
Dan Williamsac6b53b2009-07-14 13:40:19 -07001045static void ops_complete_reconstruct(void *stripe_head_ref)
Dan Williams91c00922007-01-02 13:52:30 -07001046{
1047 struct stripe_head *sh = stripe_head_ref;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001048 int disks = sh->disks;
1049 int pd_idx = sh->pd_idx;
1050 int qd_idx = sh->qd_idx;
1051 int i;
Dan Williams91c00922007-01-02 13:52:30 -07001052
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001053 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001054 (unsigned long long)sh->sector);
1055
1056 for (i = disks; i--; ) {
1057 struct r5dev *dev = &sh->dev[i];
Dan Williamsac6b53b2009-07-14 13:40:19 -07001058
1059 if (dev->written || i == pd_idx || i == qd_idx)
Dan Williams91c00922007-01-02 13:52:30 -07001060 set_bit(R5_UPTODATE, &dev->flags);
1061 }
1062
Dan Williamsd8ee0722008-06-28 08:32:06 +10001063 if (sh->reconstruct_state == reconstruct_state_drain_run)
1064 sh->reconstruct_state = reconstruct_state_drain_result;
1065 else if (sh->reconstruct_state == reconstruct_state_prexor_drain_run)
1066 sh->reconstruct_state = reconstruct_state_prexor_drain_result;
1067 else {
1068 BUG_ON(sh->reconstruct_state != reconstruct_state_run);
1069 sh->reconstruct_state = reconstruct_state_result;
1070 }
Dan Williams91c00922007-01-02 13:52:30 -07001071
1072 set_bit(STRIPE_HANDLE, &sh->state);
1073 release_stripe(sh);
1074}
1075
1076static void
Dan Williamsac6b53b2009-07-14 13:40:19 -07001077ops_run_reconstruct5(struct stripe_head *sh, struct raid5_percpu *percpu,
1078 struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001079{
Dan Williams91c00922007-01-02 13:52:30 -07001080 int disks = sh->disks;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001081 struct page **xor_srcs = percpu->scribble;
Dan Williamsa08abd82009-06-03 11:43:59 -07001082 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001083 int count = 0, pd_idx = sh->pd_idx, i;
1084 struct page *xor_dest;
Dan Williamsd8ee0722008-06-28 08:32:06 +10001085 int prexor = 0;
Dan Williams91c00922007-01-02 13:52:30 -07001086 unsigned long flags;
Dan Williams91c00922007-01-02 13:52:30 -07001087
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001088 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001089 (unsigned long long)sh->sector);
1090
1091 /* check if prexor is active which means only process blocks
1092 * that are part of a read-modify-write (written)
1093 */
Dan Williamsd8ee0722008-06-28 08:32:06 +10001094 if (sh->reconstruct_state == reconstruct_state_prexor_drain_run) {
1095 prexor = 1;
Dan Williams91c00922007-01-02 13:52:30 -07001096 xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
1097 for (i = disks; i--; ) {
1098 struct r5dev *dev = &sh->dev[i];
1099 if (dev->written)
1100 xor_srcs[count++] = dev->page;
1101 }
1102 } else {
1103 xor_dest = sh->dev[pd_idx].page;
1104 for (i = disks; i--; ) {
1105 struct r5dev *dev = &sh->dev[i];
1106 if (i != pd_idx)
1107 xor_srcs[count++] = dev->page;
1108 }
1109 }
1110
Dan Williams91c00922007-01-02 13:52:30 -07001111 /* 1/ if we prexor'd then the dest is reused as a source
1112 * 2/ if we did not prexor then we are redoing the parity
1113 * set ASYNC_TX_XOR_DROP_DST and ASYNC_TX_XOR_ZERO_DST
1114 * for the synchronous xor case
1115 */
Dan Williams88ba2aa2009-04-09 16:16:18 -07001116 flags = ASYNC_TX_ACK |
Dan Williams91c00922007-01-02 13:52:30 -07001117 (prexor ? ASYNC_TX_XOR_DROP_DST : ASYNC_TX_XOR_ZERO_DST);
1118
1119 atomic_inc(&sh->count);
1120
Dan Williamsac6b53b2009-07-14 13:40:19 -07001121 init_async_submit(&submit, flags, tx, ops_complete_reconstruct, sh,
Dan Williamsd6f38f32009-07-14 11:50:52 -07001122 to_addr_conv(sh, percpu));
Dan Williamsa08abd82009-06-03 11:43:59 -07001123 if (unlikely(count == 1))
1124 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
1125 else
1126 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001127}
1128
Dan Williamsac6b53b2009-07-14 13:40:19 -07001129static void
1130ops_run_reconstruct6(struct stripe_head *sh, struct raid5_percpu *percpu,
1131 struct dma_async_tx_descriptor *tx)
1132{
1133 struct async_submit_ctl submit;
1134 struct page **blocks = percpu->scribble;
1135 int count;
1136
1137 pr_debug("%s: stripe %llu\n", __func__, (unsigned long long)sh->sector);
1138
1139 count = set_syndrome_sources(blocks, sh);
1140
1141 atomic_inc(&sh->count);
1142
1143 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_reconstruct,
1144 sh, to_addr_conv(sh, percpu));
1145 async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001146}
1147
1148static void ops_complete_check(void *stripe_head_ref)
1149{
1150 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -07001151
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001152 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001153 (unsigned long long)sh->sector);
1154
Dan Williamsecc65c92008-06-28 08:31:57 +10001155 sh->check_state = check_state_check_result;
Dan Williams91c00922007-01-02 13:52:30 -07001156 set_bit(STRIPE_HANDLE, &sh->state);
1157 release_stripe(sh);
1158}
1159
Dan Williamsac6b53b2009-07-14 13:40:19 -07001160static void ops_run_check_p(struct stripe_head *sh, struct raid5_percpu *percpu)
Dan Williams91c00922007-01-02 13:52:30 -07001161{
Dan Williams91c00922007-01-02 13:52:30 -07001162 int disks = sh->disks;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001163 int pd_idx = sh->pd_idx;
1164 int qd_idx = sh->qd_idx;
1165 struct page *xor_dest;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001166 struct page **xor_srcs = percpu->scribble;
Dan Williams91c00922007-01-02 13:52:30 -07001167 struct dma_async_tx_descriptor *tx;
Dan Williamsa08abd82009-06-03 11:43:59 -07001168 struct async_submit_ctl submit;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001169 int count;
1170 int i;
Dan Williams91c00922007-01-02 13:52:30 -07001171
Harvey Harrisone46b272b2008-04-28 02:15:50 -07001172 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001173 (unsigned long long)sh->sector);
1174
Dan Williamsac6b53b2009-07-14 13:40:19 -07001175 count = 0;
1176 xor_dest = sh->dev[pd_idx].page;
1177 xor_srcs[count++] = xor_dest;
Dan Williams91c00922007-01-02 13:52:30 -07001178 for (i = disks; i--; ) {
Dan Williamsac6b53b2009-07-14 13:40:19 -07001179 if (i == pd_idx || i == qd_idx)
1180 continue;
1181 xor_srcs[count++] = sh->dev[i].page;
Dan Williams91c00922007-01-02 13:52:30 -07001182 }
1183
Dan Williamsd6f38f32009-07-14 11:50:52 -07001184 init_async_submit(&submit, 0, NULL, NULL, NULL,
1185 to_addr_conv(sh, percpu));
Dan Williams099f53c2009-04-08 14:28:37 -07001186 tx = async_xor_val(xor_dest, xor_srcs, 0, count, STRIPE_SIZE,
Dan Williamsa08abd82009-06-03 11:43:59 -07001187 &sh->ops.zero_sum_result, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001188
Dan Williams91c00922007-01-02 13:52:30 -07001189 atomic_inc(&sh->count);
Dan Williamsa08abd82009-06-03 11:43:59 -07001190 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_check, sh, NULL);
1191 tx = async_trigger_callback(&submit);
Dan Williams91c00922007-01-02 13:52:30 -07001192}
1193
Dan Williamsac6b53b2009-07-14 13:40:19 -07001194static void ops_run_check_pq(struct stripe_head *sh, struct raid5_percpu *percpu, int checkp)
1195{
1196 struct page **srcs = percpu->scribble;
1197 struct async_submit_ctl submit;
1198 int count;
1199
1200 pr_debug("%s: stripe %llu checkp: %d\n", __func__,
1201 (unsigned long long)sh->sector, checkp);
1202
1203 count = set_syndrome_sources(srcs, sh);
1204 if (!checkp)
1205 srcs[count] = NULL;
1206
1207 atomic_inc(&sh->count);
1208 init_async_submit(&submit, ASYNC_TX_ACK, NULL, ops_complete_check,
1209 sh, to_addr_conv(sh, percpu));
1210 async_syndrome_val(srcs, 0, count+2, STRIPE_SIZE,
1211 &sh->ops.zero_sum_result, percpu->spare_page, &submit);
1212}
1213
Dan Williams417b8d42009-10-16 16:25:22 +11001214static void __raid_run_ops(struct stripe_head *sh, unsigned long ops_request)
Dan Williams91c00922007-01-02 13:52:30 -07001215{
1216 int overlap_clear = 0, i, disks = sh->disks;
1217 struct dma_async_tx_descriptor *tx = NULL;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001218 raid5_conf_t *conf = sh->raid_conf;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001219 int level = conf->level;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001220 struct raid5_percpu *percpu;
1221 unsigned long cpu;
Dan Williams91c00922007-01-02 13:52:30 -07001222
Dan Williamsd6f38f32009-07-14 11:50:52 -07001223 cpu = get_cpu();
1224 percpu = per_cpu_ptr(conf->percpu, cpu);
Dan Williams83de75c2008-06-28 08:31:58 +10001225 if (test_bit(STRIPE_OP_BIOFILL, &ops_request)) {
Dan Williams91c00922007-01-02 13:52:30 -07001226 ops_run_biofill(sh);
1227 overlap_clear++;
1228 }
1229
Dan Williams7b3a8712008-06-28 08:32:09 +10001230 if (test_bit(STRIPE_OP_COMPUTE_BLK, &ops_request)) {
Dan Williamsac6b53b2009-07-14 13:40:19 -07001231 if (level < 6)
1232 tx = ops_run_compute5(sh, percpu);
1233 else {
1234 if (sh->ops.target2 < 0 || sh->ops.target < 0)
1235 tx = ops_run_compute6_1(sh, percpu);
1236 else
1237 tx = ops_run_compute6_2(sh, percpu);
1238 }
1239 /* terminate the chain if reconstruct is not set to be run */
1240 if (tx && !test_bit(STRIPE_OP_RECONSTRUCT, &ops_request))
Dan Williams7b3a8712008-06-28 08:32:09 +10001241 async_tx_ack(tx);
1242 }
Dan Williams91c00922007-01-02 13:52:30 -07001243
Dan Williams600aa102008-06-28 08:32:05 +10001244 if (test_bit(STRIPE_OP_PREXOR, &ops_request))
Dan Williamsd6f38f32009-07-14 11:50:52 -07001245 tx = ops_run_prexor(sh, percpu, tx);
Dan Williams91c00922007-01-02 13:52:30 -07001246
Dan Williams600aa102008-06-28 08:32:05 +10001247 if (test_bit(STRIPE_OP_BIODRAIN, &ops_request)) {
Dan Williamsd8ee0722008-06-28 08:32:06 +10001248 tx = ops_run_biodrain(sh, tx);
Dan Williams91c00922007-01-02 13:52:30 -07001249 overlap_clear++;
1250 }
1251
Dan Williamsac6b53b2009-07-14 13:40:19 -07001252 if (test_bit(STRIPE_OP_RECONSTRUCT, &ops_request)) {
1253 if (level < 6)
1254 ops_run_reconstruct5(sh, percpu, tx);
1255 else
1256 ops_run_reconstruct6(sh, percpu, tx);
1257 }
Dan Williams91c00922007-01-02 13:52:30 -07001258
Dan Williamsac6b53b2009-07-14 13:40:19 -07001259 if (test_bit(STRIPE_OP_CHECK, &ops_request)) {
1260 if (sh->check_state == check_state_run)
1261 ops_run_check_p(sh, percpu);
1262 else if (sh->check_state == check_state_run_q)
1263 ops_run_check_pq(sh, percpu, 0);
1264 else if (sh->check_state == check_state_run_pq)
1265 ops_run_check_pq(sh, percpu, 1);
1266 else
1267 BUG();
1268 }
Dan Williams91c00922007-01-02 13:52:30 -07001269
Dan Williams91c00922007-01-02 13:52:30 -07001270 if (overlap_clear)
1271 for (i = disks; i--; ) {
1272 struct r5dev *dev = &sh->dev[i];
1273 if (test_and_clear_bit(R5_Overlap, &dev->flags))
1274 wake_up(&sh->raid_conf->wait_for_overlap);
1275 }
Dan Williamsd6f38f32009-07-14 11:50:52 -07001276 put_cpu();
Dan Williams91c00922007-01-02 13:52:30 -07001277}
1278
Dan Williams417b8d42009-10-16 16:25:22 +11001279#ifdef CONFIG_MULTICORE_RAID456
1280static void async_run_ops(void *param, async_cookie_t cookie)
1281{
1282 struct stripe_head *sh = param;
1283 unsigned long ops_request = sh->ops.request;
1284
1285 clear_bit_unlock(STRIPE_OPS_REQ_PENDING, &sh->state);
1286 wake_up(&sh->ops.wait_for_ops);
1287
1288 __raid_run_ops(sh, ops_request);
1289 release_stripe(sh);
1290}
1291
1292static void raid_run_ops(struct stripe_head *sh, unsigned long ops_request)
1293{
1294 /* since handle_stripe can be called outside of raid5d context
1295 * we need to ensure sh->ops.request is de-staged before another
1296 * request arrives
1297 */
1298 wait_event(sh->ops.wait_for_ops,
1299 !test_and_set_bit_lock(STRIPE_OPS_REQ_PENDING, &sh->state));
1300 sh->ops.request = ops_request;
1301
1302 atomic_inc(&sh->count);
1303 async_schedule(async_run_ops, sh);
1304}
1305#else
1306#define raid_run_ops __raid_run_ops
1307#endif
1308
NeilBrown3f294f42005-11-08 21:39:25 -08001309static int grow_one_stripe(raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310{
1311 struct stripe_head *sh;
NeilBrown3f294f42005-11-08 21:39:25 -08001312 sh = kmem_cache_alloc(conf->slab_cache, GFP_KERNEL);
1313 if (!sh)
1314 return 0;
NeilBrowne4e11e32010-06-16 16:45:16 +10001315 memset(sh, 0, sizeof(*sh) + (conf->pool_size-1)*sizeof(struct r5dev));
NeilBrown3f294f42005-11-08 21:39:25 -08001316 sh->raid_conf = conf;
1317 spin_lock_init(&sh->lock);
Dan Williams417b8d42009-10-16 16:25:22 +11001318 #ifdef CONFIG_MULTICORE_RAID456
1319 init_waitqueue_head(&sh->ops.wait_for_ops);
1320 #endif
NeilBrown3f294f42005-11-08 21:39:25 -08001321
NeilBrowne4e11e32010-06-16 16:45:16 +10001322 if (grow_buffers(sh)) {
1323 shrink_buffers(sh);
NeilBrown3f294f42005-11-08 21:39:25 -08001324 kmem_cache_free(conf->slab_cache, sh);
1325 return 0;
1326 }
1327 /* we just created an active stripe so... */
1328 atomic_set(&sh->count, 1);
1329 atomic_inc(&conf->active_stripes);
1330 INIT_LIST_HEAD(&sh->lru);
1331 release_stripe(sh);
1332 return 1;
1333}
1334
1335static int grow_stripes(raid5_conf_t *conf, int num)
1336{
Christoph Lametere18b8902006-12-06 20:33:20 -08001337 struct kmem_cache *sc;
NeilBrown5e5e3e72009-10-16 16:35:30 +11001338 int devs = max(conf->raid_disks, conf->previous_raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
NeilBrownf4be6b42010-06-01 19:37:25 +10001340 if (conf->mddev->gendisk)
1341 sprintf(conf->cache_name[0],
1342 "raid%d-%s", conf->level, mdname(conf->mddev));
1343 else
1344 sprintf(conf->cache_name[0],
1345 "raid%d-%p", conf->level, conf->mddev);
1346 sprintf(conf->cache_name[1], "%s-alt", conf->cache_name[0]);
1347
NeilBrownad01c9e2006-03-27 01:18:07 -08001348 conf->active_name = 0;
1349 sc = kmem_cache_create(conf->cache_name[conf->active_name],
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 sizeof(struct stripe_head)+(devs-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +09001351 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 if (!sc)
1353 return 1;
1354 conf->slab_cache = sc;
NeilBrownad01c9e2006-03-27 01:18:07 -08001355 conf->pool_size = devs;
NeilBrown16a53ec2006-06-26 00:27:38 -07001356 while (num--)
NeilBrown3f294f42005-11-08 21:39:25 -08001357 if (!grow_one_stripe(conf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 return 0;
1360}
NeilBrown29269552006-03-27 01:18:10 -08001361
Dan Williamsd6f38f32009-07-14 11:50:52 -07001362/**
1363 * scribble_len - return the required size of the scribble region
1364 * @num - total number of disks in the array
1365 *
1366 * The size must be enough to contain:
1367 * 1/ a struct page pointer for each device in the array +2
1368 * 2/ room to convert each entry in (1) to its corresponding dma
1369 * (dma_map_page()) or page (page_address()) address.
1370 *
1371 * Note: the +2 is for the destination buffers of the ddf/raid6 case where we
1372 * calculate over all devices (not just the data blocks), using zeros in place
1373 * of the P and Q blocks.
1374 */
1375static size_t scribble_len(int num)
1376{
1377 size_t len;
1378
1379 len = sizeof(struct page *) * (num+2) + sizeof(addr_conv_t) * (num+2);
1380
1381 return len;
1382}
1383
NeilBrownad01c9e2006-03-27 01:18:07 -08001384static int resize_stripes(raid5_conf_t *conf, int newsize)
1385{
1386 /* Make all the stripes able to hold 'newsize' devices.
1387 * New slots in each stripe get 'page' set to a new page.
1388 *
1389 * This happens in stages:
1390 * 1/ create a new kmem_cache and allocate the required number of
1391 * stripe_heads.
1392 * 2/ gather all the old stripe_heads and tranfer the pages across
1393 * to the new stripe_heads. This will have the side effect of
1394 * freezing the array as once all stripe_heads have been collected,
1395 * no IO will be possible. Old stripe heads are freed once their
1396 * pages have been transferred over, and the old kmem_cache is
1397 * freed when all stripes are done.
1398 * 3/ reallocate conf->disks to be suitable bigger. If this fails,
1399 * we simple return a failre status - no need to clean anything up.
1400 * 4/ allocate new pages for the new slots in the new stripe_heads.
1401 * If this fails, we don't bother trying the shrink the
1402 * stripe_heads down again, we just leave them as they are.
1403 * As each stripe_head is processed the new one is released into
1404 * active service.
1405 *
1406 * Once step2 is started, we cannot afford to wait for a write,
1407 * so we use GFP_NOIO allocations.
1408 */
1409 struct stripe_head *osh, *nsh;
1410 LIST_HEAD(newstripes);
1411 struct disk_info *ndisks;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001412 unsigned long cpu;
Dan Williamsb5470dc2008-06-27 21:44:04 -07001413 int err;
Christoph Lametere18b8902006-12-06 20:33:20 -08001414 struct kmem_cache *sc;
NeilBrownad01c9e2006-03-27 01:18:07 -08001415 int i;
1416
1417 if (newsize <= conf->pool_size)
1418 return 0; /* never bother to shrink */
1419
Dan Williamsb5470dc2008-06-27 21:44:04 -07001420 err = md_allow_write(conf->mddev);
1421 if (err)
1422 return err;
NeilBrown2a2275d2007-01-26 00:57:11 -08001423
NeilBrownad01c9e2006-03-27 01:18:07 -08001424 /* Step 1 */
1425 sc = kmem_cache_create(conf->cache_name[1-conf->active_name],
1426 sizeof(struct stripe_head)+(newsize-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +09001427 0, 0, NULL);
NeilBrownad01c9e2006-03-27 01:18:07 -08001428 if (!sc)
1429 return -ENOMEM;
1430
1431 for (i = conf->max_nr_stripes; i; i--) {
1432 nsh = kmem_cache_alloc(sc, GFP_KERNEL);
1433 if (!nsh)
1434 break;
1435
1436 memset(nsh, 0, sizeof(*nsh) + (newsize-1)*sizeof(struct r5dev));
1437
1438 nsh->raid_conf = conf;
1439 spin_lock_init(&nsh->lock);
Dan Williams417b8d42009-10-16 16:25:22 +11001440 #ifdef CONFIG_MULTICORE_RAID456
1441 init_waitqueue_head(&nsh->ops.wait_for_ops);
1442 #endif
NeilBrownad01c9e2006-03-27 01:18:07 -08001443
1444 list_add(&nsh->lru, &newstripes);
1445 }
1446 if (i) {
1447 /* didn't get enough, give up */
1448 while (!list_empty(&newstripes)) {
1449 nsh = list_entry(newstripes.next, struct stripe_head, lru);
1450 list_del(&nsh->lru);
1451 kmem_cache_free(sc, nsh);
1452 }
1453 kmem_cache_destroy(sc);
1454 return -ENOMEM;
1455 }
1456 /* Step 2 - Must use GFP_NOIO now.
1457 * OK, we have enough stripes, start collecting inactive
1458 * stripes and copying them over
1459 */
1460 list_for_each_entry(nsh, &newstripes, lru) {
1461 spin_lock_irq(&conf->device_lock);
1462 wait_event_lock_irq(conf->wait_for_stripe,
1463 !list_empty(&conf->inactive_list),
1464 conf->device_lock,
NeilBrownb3b46be2006-03-27 01:18:16 -08001465 unplug_slaves(conf->mddev)
NeilBrownad01c9e2006-03-27 01:18:07 -08001466 );
1467 osh = get_free_stripe(conf);
1468 spin_unlock_irq(&conf->device_lock);
1469 atomic_set(&nsh->count, 1);
1470 for(i=0; i<conf->pool_size; i++)
1471 nsh->dev[i].page = osh->dev[i].page;
1472 for( ; i<newsize; i++)
1473 nsh->dev[i].page = NULL;
1474 kmem_cache_free(conf->slab_cache, osh);
1475 }
1476 kmem_cache_destroy(conf->slab_cache);
1477
1478 /* Step 3.
1479 * At this point, we are holding all the stripes so the array
1480 * is completely stalled, so now is a good time to resize
Dan Williamsd6f38f32009-07-14 11:50:52 -07001481 * conf->disks and the scribble region
NeilBrownad01c9e2006-03-27 01:18:07 -08001482 */
1483 ndisks = kzalloc(newsize * sizeof(struct disk_info), GFP_NOIO);
1484 if (ndisks) {
1485 for (i=0; i<conf->raid_disks; i++)
1486 ndisks[i] = conf->disks[i];
1487 kfree(conf->disks);
1488 conf->disks = ndisks;
1489 } else
1490 err = -ENOMEM;
1491
Dan Williamsd6f38f32009-07-14 11:50:52 -07001492 get_online_cpus();
1493 conf->scribble_len = scribble_len(newsize);
1494 for_each_present_cpu(cpu) {
1495 struct raid5_percpu *percpu;
1496 void *scribble;
1497
1498 percpu = per_cpu_ptr(conf->percpu, cpu);
1499 scribble = kmalloc(conf->scribble_len, GFP_NOIO);
1500
1501 if (scribble) {
1502 kfree(percpu->scribble);
1503 percpu->scribble = scribble;
1504 } else {
1505 err = -ENOMEM;
1506 break;
1507 }
1508 }
1509 put_online_cpus();
1510
NeilBrownad01c9e2006-03-27 01:18:07 -08001511 /* Step 4, return new stripes to service */
1512 while(!list_empty(&newstripes)) {
1513 nsh = list_entry(newstripes.next, struct stripe_head, lru);
1514 list_del_init(&nsh->lru);
Dan Williamsd6f38f32009-07-14 11:50:52 -07001515
NeilBrownad01c9e2006-03-27 01:18:07 -08001516 for (i=conf->raid_disks; i < newsize; i++)
1517 if (nsh->dev[i].page == NULL) {
1518 struct page *p = alloc_page(GFP_NOIO);
1519 nsh->dev[i].page = p;
1520 if (!p)
1521 err = -ENOMEM;
1522 }
1523 release_stripe(nsh);
1524 }
1525 /* critical section pass, GFP_NOIO no longer needed */
1526
1527 conf->slab_cache = sc;
1528 conf->active_name = 1-conf->active_name;
1529 conf->pool_size = newsize;
1530 return err;
1531}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
NeilBrown3f294f42005-11-08 21:39:25 -08001533static int drop_one_stripe(raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534{
1535 struct stripe_head *sh;
1536
NeilBrown3f294f42005-11-08 21:39:25 -08001537 spin_lock_irq(&conf->device_lock);
1538 sh = get_free_stripe(conf);
1539 spin_unlock_irq(&conf->device_lock);
1540 if (!sh)
1541 return 0;
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02001542 BUG_ON(atomic_read(&sh->count));
NeilBrowne4e11e32010-06-16 16:45:16 +10001543 shrink_buffers(sh);
NeilBrown3f294f42005-11-08 21:39:25 -08001544 kmem_cache_free(conf->slab_cache, sh);
1545 atomic_dec(&conf->active_stripes);
1546 return 1;
1547}
1548
1549static void shrink_stripes(raid5_conf_t *conf)
1550{
1551 while (drop_one_stripe(conf))
1552 ;
1553
NeilBrown29fc7e32006-02-03 03:03:41 -08001554 if (conf->slab_cache)
1555 kmem_cache_destroy(conf->slab_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 conf->slab_cache = NULL;
1557}
1558
NeilBrown6712ecf2007-09-27 12:47:43 +02001559static void raid5_end_read_request(struct bio * bi, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560{
NeilBrown99c0fb52009-03-31 14:39:38 +11001561 struct stripe_head *sh = bi->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 raid5_conf_t *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08001563 int disks = sh->disks, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
NeilBrownd6950432006-07-10 04:44:20 -07001565 char b[BDEVNAME_SIZE];
1566 mdk_rdev_t *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
1569 for (i=0 ; i<disks; i++)
1570 if (bi == &sh->dev[i].req)
1571 break;
1572
Dan Williams45b42332007-07-09 11:56:43 -07001573 pr_debug("end_read_request %llu/%d, count: %d, uptodate %d.\n",
1574 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 uptodate);
1576 if (i == disks) {
1577 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02001578 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 }
1580
1581 if (uptodate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 set_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrown4e5314b2005-11-08 21:39:22 -08001583 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrownd6950432006-07-10 04:44:20 -07001584 rdev = conf->disks[i].rdev;
NeilBrown0c55e022010-05-03 14:09:02 +10001585 printk_rl(KERN_INFO "md/raid:%s: read error corrected"
Bernd Schubert6be9d492008-05-23 13:04:34 -07001586 " (%lu sectors at %llu on %s)\n",
1587 mdname(conf->mddev), STRIPE_SECTORS,
1588 (unsigned long long)(sh->sector
1589 + rdev->data_offset),
1590 bdevname(rdev->bdev, b));
NeilBrown4e5314b2005-11-08 21:39:22 -08001591 clear_bit(R5_ReadError, &sh->dev[i].flags);
1592 clear_bit(R5_ReWrite, &sh->dev[i].flags);
1593 }
NeilBrownba22dcb2005-11-08 21:39:31 -08001594 if (atomic_read(&conf->disks[i].rdev->read_errors))
1595 atomic_set(&conf->disks[i].rdev->read_errors, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 } else {
NeilBrownd6950432006-07-10 04:44:20 -07001597 const char *bdn = bdevname(conf->disks[i].rdev->bdev, b);
NeilBrownba22dcb2005-11-08 21:39:31 -08001598 int retry = 0;
NeilBrownd6950432006-07-10 04:44:20 -07001599 rdev = conf->disks[i].rdev;
1600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 clear_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrownd6950432006-07-10 04:44:20 -07001602 atomic_inc(&rdev->read_errors);
Gabriele A. Trombetti7b0bb532010-04-28 11:51:17 +10001603 if (conf->mddev->degraded >= conf->max_degraded)
Bernd Schubert6be9d492008-05-23 13:04:34 -07001604 printk_rl(KERN_WARNING
NeilBrown0c55e022010-05-03 14:09:02 +10001605 "md/raid:%s: read error not correctable "
Bernd Schubert6be9d492008-05-23 13:04:34 -07001606 "(sector %llu on %s).\n",
1607 mdname(conf->mddev),
1608 (unsigned long long)(sh->sector
1609 + rdev->data_offset),
1610 bdn);
NeilBrownba22dcb2005-11-08 21:39:31 -08001611 else if (test_bit(R5_ReWrite, &sh->dev[i].flags))
NeilBrown4e5314b2005-11-08 21:39:22 -08001612 /* Oh, no!!! */
Bernd Schubert6be9d492008-05-23 13:04:34 -07001613 printk_rl(KERN_WARNING
NeilBrown0c55e022010-05-03 14:09:02 +10001614 "md/raid:%s: read error NOT corrected!! "
Bernd Schubert6be9d492008-05-23 13:04:34 -07001615 "(sector %llu on %s).\n",
1616 mdname(conf->mddev),
1617 (unsigned long long)(sh->sector
1618 + rdev->data_offset),
1619 bdn);
NeilBrownd6950432006-07-10 04:44:20 -07001620 else if (atomic_read(&rdev->read_errors)
NeilBrownba22dcb2005-11-08 21:39:31 -08001621 > conf->max_nr_stripes)
NeilBrown14f8d262006-01-06 00:20:14 -08001622 printk(KERN_WARNING
NeilBrown0c55e022010-05-03 14:09:02 +10001623 "md/raid:%s: Too many read errors, failing device %s.\n",
NeilBrownd6950432006-07-10 04:44:20 -07001624 mdname(conf->mddev), bdn);
NeilBrownba22dcb2005-11-08 21:39:31 -08001625 else
1626 retry = 1;
1627 if (retry)
1628 set_bit(R5_ReadError, &sh->dev[i].flags);
1629 else {
NeilBrown4e5314b2005-11-08 21:39:22 -08001630 clear_bit(R5_ReadError, &sh->dev[i].flags);
1631 clear_bit(R5_ReWrite, &sh->dev[i].flags);
NeilBrownd6950432006-07-10 04:44:20 -07001632 md_error(conf->mddev, rdev);
NeilBrownba22dcb2005-11-08 21:39:31 -08001633 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 }
1635 rdev_dec_pending(conf->disks[i].rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 clear_bit(R5_LOCKED, &sh->dev[i].flags);
1637 set_bit(STRIPE_HANDLE, &sh->state);
1638 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639}
1640
NeilBrownd710e132008-10-13 11:55:12 +11001641static void raid5_end_write_request(struct bio *bi, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642{
NeilBrown99c0fb52009-03-31 14:39:38 +11001643 struct stripe_head *sh = bi->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 raid5_conf_t *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08001645 int disks = sh->disks, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
1647
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 for (i=0 ; i<disks; i++)
1649 if (bi == &sh->dev[i].req)
1650 break;
1651
Dan Williams45b42332007-07-09 11:56:43 -07001652 pr_debug("end_write_request %llu/%d, count %d, uptodate: %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
1654 uptodate);
1655 if (i == disks) {
1656 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02001657 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 }
1659
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 if (!uptodate)
1661 md_error(conf->mddev, conf->disks[i].rdev);
1662
1663 rdev_dec_pending(conf->disks[i].rdev, conf->mddev);
1664
1665 clear_bit(R5_LOCKED, &sh->dev[i].flags);
1666 set_bit(STRIPE_HANDLE, &sh->state);
NeilBrownc04be0a2006-10-03 01:15:53 -07001667 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668}
1669
1670
NeilBrown784052e2009-03-31 15:19:07 +11001671static sector_t compute_blocknr(struct stripe_head *sh, int i, int previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
NeilBrown784052e2009-03-31 15:19:07 +11001673static void raid5_build_block(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674{
1675 struct r5dev *dev = &sh->dev[i];
1676
1677 bio_init(&dev->req);
1678 dev->req.bi_io_vec = &dev->vec;
1679 dev->req.bi_vcnt++;
1680 dev->req.bi_max_vecs++;
1681 dev->vec.bv_page = dev->page;
1682 dev->vec.bv_len = STRIPE_SIZE;
1683 dev->vec.bv_offset = 0;
1684
1685 dev->req.bi_sector = sh->sector;
1686 dev->req.bi_private = sh;
1687
1688 dev->flags = 0;
NeilBrown784052e2009-03-31 15:19:07 +11001689 dev->sector = compute_blocknr(sh, i, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690}
1691
1692static void error(mddev_t *mddev, mdk_rdev_t *rdev)
1693{
1694 char b[BDEVNAME_SIZE];
H Hartley Sweeten7b928132010-03-08 16:02:40 +11001695 raid5_conf_t *conf = mddev->private;
NeilBrown0c55e022010-05-03 14:09:02 +10001696 pr_debug("raid456: error called\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697
NeilBrownb2d444d2005-11-08 21:39:31 -08001698 if (!test_bit(Faulty, &rdev->flags)) {
NeilBrown850b2b422006-10-03 01:15:46 -07001699 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrownc04be0a2006-10-03 01:15:53 -07001700 if (test_and_clear_bit(In_sync, &rdev->flags)) {
1701 unsigned long flags;
1702 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 mddev->degraded++;
NeilBrownc04be0a2006-10-03 01:15:53 -07001704 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 /*
1706 * if recovery was running, make sure it aborts.
1707 */
NeilBrowndfc70642008-05-23 13:04:39 -07001708 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 }
NeilBrownb2d444d2005-11-08 21:39:31 -08001710 set_bit(Faulty, &rdev->flags);
NeilBrownd710e132008-10-13 11:55:12 +11001711 printk(KERN_ALERT
NeilBrown0c55e022010-05-03 14:09:02 +10001712 "md/raid:%s: Disk failure on %s, disabling device.\n"
1713 KERN_ALERT
1714 "md/raid:%s: Operation continuing on %d devices.\n",
1715 mdname(mddev),
1716 bdevname(rdev->bdev, b),
1717 mdname(mddev),
1718 conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 }
NeilBrown16a53ec2006-06-26 00:27:38 -07001720}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
1722/*
1723 * Input: a 'big' sector number,
1724 * Output: index of the data and parity disk, and the sector # in them.
1725 */
NeilBrown112bf892009-03-31 14:39:38 +11001726static sector_t raid5_compute_sector(raid5_conf_t *conf, sector_t r_sector,
NeilBrown911d4ee2009-03-31 14:39:38 +11001727 int previous, int *dd_idx,
1728 struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729{
NeilBrown6e3b96e2010-04-23 07:08:28 +10001730 sector_t stripe, stripe2;
NeilBrown35f2a592010-04-20 14:13:34 +10001731 sector_t chunk_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 unsigned int chunk_offset;
NeilBrown911d4ee2009-03-31 14:39:38 +11001733 int pd_idx, qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11001734 int ddf_layout = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 sector_t new_sector;
NeilBrowne183eae2009-03-31 15:20:22 +11001736 int algorithm = previous ? conf->prev_algo
1737 : conf->algorithm;
Andre Noll09c9e5f2009-06-18 08:45:55 +10001738 int sectors_per_chunk = previous ? conf->prev_chunk_sectors
1739 : conf->chunk_sectors;
NeilBrown112bf892009-03-31 14:39:38 +11001740 int raid_disks = previous ? conf->previous_raid_disks
1741 : conf->raid_disks;
1742 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
1744 /* First compute the information on this sector */
1745
1746 /*
1747 * Compute the chunk number and the sector offset inside the chunk
1748 */
1749 chunk_offset = sector_div(r_sector, sectors_per_chunk);
1750 chunk_number = r_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
1752 /*
1753 * Compute the stripe number
1754 */
NeilBrown35f2a592010-04-20 14:13:34 +10001755 stripe = chunk_number;
1756 *dd_idx = sector_div(stripe, data_disks);
NeilBrown6e3b96e2010-04-23 07:08:28 +10001757 stripe2 = stripe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 /*
1759 * Select the parity disk based on the user selected algorithm.
1760 */
NeilBrown911d4ee2009-03-31 14:39:38 +11001761 pd_idx = qd_idx = ~0;
NeilBrown16a53ec2006-06-26 00:27:38 -07001762 switch(conf->level) {
1763 case 4:
NeilBrown911d4ee2009-03-31 14:39:38 +11001764 pd_idx = data_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07001765 break;
1766 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11001767 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001769 pd_idx = data_disks - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001770 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 (*dd_idx)++;
1772 break;
1773 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001774 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001775 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 (*dd_idx)++;
1777 break;
1778 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001779 pd_idx = data_disks - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001780 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 break;
1782 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001783 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001784 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11001786 case ALGORITHM_PARITY_0:
1787 pd_idx = 0;
1788 (*dd_idx)++;
1789 break;
1790 case ALGORITHM_PARITY_N:
1791 pd_idx = data_disks;
1792 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11001794 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07001795 }
1796 break;
1797 case 6:
1798
NeilBrowne183eae2009-03-31 15:20:22 +11001799 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07001800 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001801 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001802 qd_idx = pd_idx + 1;
1803 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11001804 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11001805 qd_idx = 0;
1806 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07001807 (*dd_idx) += 2; /* D D P Q D */
1808 break;
1809 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001810 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001811 qd_idx = pd_idx + 1;
1812 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11001813 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11001814 qd_idx = 0;
1815 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07001816 (*dd_idx) += 2; /* D D P Q D */
1817 break;
1818 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001819 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001820 qd_idx = (pd_idx + 1) % raid_disks;
1821 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07001822 break;
1823 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001824 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001825 qd_idx = (pd_idx + 1) % raid_disks;
1826 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07001827 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11001828
1829 case ALGORITHM_PARITY_0:
1830 pd_idx = 0;
1831 qd_idx = 1;
1832 (*dd_idx) += 2;
1833 break;
1834 case ALGORITHM_PARITY_N:
1835 pd_idx = data_disks;
1836 qd_idx = data_disks + 1;
1837 break;
1838
1839 case ALGORITHM_ROTATING_ZERO_RESTART:
1840 /* Exactly the same as RIGHT_ASYMMETRIC, but or
1841 * of blocks for computing Q is different.
1842 */
NeilBrown6e3b96e2010-04-23 07:08:28 +10001843 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11001844 qd_idx = pd_idx + 1;
1845 if (pd_idx == raid_disks-1) {
1846 (*dd_idx)++; /* Q D D D P */
1847 qd_idx = 0;
1848 } else if (*dd_idx >= pd_idx)
1849 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11001850 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11001851 break;
1852
1853 case ALGORITHM_ROTATING_N_RESTART:
1854 /* Same a left_asymmetric, by first stripe is
1855 * D D D P Q rather than
1856 * Q D D D P
1857 */
NeilBrown6e3b96e2010-04-23 07:08:28 +10001858 stripe2 += 1;
1859 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11001860 qd_idx = pd_idx + 1;
1861 if (pd_idx == raid_disks-1) {
1862 (*dd_idx)++; /* Q D D D P */
1863 qd_idx = 0;
1864 } else if (*dd_idx >= pd_idx)
1865 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11001866 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11001867 break;
1868
1869 case ALGORITHM_ROTATING_N_CONTINUE:
1870 /* Same as left_symmetric but Q is before P */
NeilBrown6e3b96e2010-04-23 07:08:28 +10001871 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11001872 qd_idx = (pd_idx + raid_disks - 1) % raid_disks;
1873 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
NeilBrown67cc2b82009-03-31 14:39:38 +11001874 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11001875 break;
1876
1877 case ALGORITHM_LEFT_ASYMMETRIC_6:
1878 /* RAID5 left_asymmetric, with Q on last device */
NeilBrown6e3b96e2010-04-23 07:08:28 +10001879 pd_idx = data_disks - sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11001880 if (*dd_idx >= pd_idx)
1881 (*dd_idx)++;
1882 qd_idx = raid_disks - 1;
1883 break;
1884
1885 case ALGORITHM_RIGHT_ASYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001886 pd_idx = sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11001887 if (*dd_idx >= pd_idx)
1888 (*dd_idx)++;
1889 qd_idx = raid_disks - 1;
1890 break;
1891
1892 case ALGORITHM_LEFT_SYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001893 pd_idx = data_disks - sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11001894 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
1895 qd_idx = raid_disks - 1;
1896 break;
1897
1898 case ALGORITHM_RIGHT_SYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001899 pd_idx = 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_PARITY_0_6:
1905 pd_idx = 0;
1906 (*dd_idx)++;
1907 qd_idx = raid_disks - 1;
1908 break;
1909
NeilBrown16a53ec2006-06-26 00:27:38 -07001910 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11001911 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07001912 }
1913 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 }
1915
NeilBrown911d4ee2009-03-31 14:39:38 +11001916 if (sh) {
1917 sh->pd_idx = pd_idx;
1918 sh->qd_idx = qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11001919 sh->ddf_layout = ddf_layout;
NeilBrown911d4ee2009-03-31 14:39:38 +11001920 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 /*
1922 * Finally, compute the new sector number
1923 */
1924 new_sector = (sector_t)stripe * sectors_per_chunk + chunk_offset;
1925 return new_sector;
1926}
1927
1928
NeilBrown784052e2009-03-31 15:19:07 +11001929static sector_t compute_blocknr(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930{
1931 raid5_conf_t *conf = sh->raid_conf;
NeilBrownb875e532006-12-10 02:20:49 -08001932 int raid_disks = sh->disks;
1933 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 sector_t new_sector = sh->sector, check;
Andre Noll09c9e5f2009-06-18 08:45:55 +10001935 int sectors_per_chunk = previous ? conf->prev_chunk_sectors
1936 : conf->chunk_sectors;
NeilBrowne183eae2009-03-31 15:20:22 +11001937 int algorithm = previous ? conf->prev_algo
1938 : conf->algorithm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 sector_t stripe;
1940 int chunk_offset;
NeilBrown35f2a592010-04-20 14:13:34 +10001941 sector_t chunk_number;
1942 int dummy1, dd_idx = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 sector_t r_sector;
NeilBrown911d4ee2009-03-31 14:39:38 +11001944 struct stripe_head sh2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
NeilBrown16a53ec2006-06-26 00:27:38 -07001946
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 chunk_offset = sector_div(new_sector, sectors_per_chunk);
1948 stripe = new_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
NeilBrown16a53ec2006-06-26 00:27:38 -07001950 if (i == sh->pd_idx)
1951 return 0;
1952 switch(conf->level) {
1953 case 4: break;
1954 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11001955 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 case ALGORITHM_LEFT_ASYMMETRIC:
1957 case ALGORITHM_RIGHT_ASYMMETRIC:
1958 if (i > sh->pd_idx)
1959 i--;
1960 break;
1961 case ALGORITHM_LEFT_SYMMETRIC:
1962 case ALGORITHM_RIGHT_SYMMETRIC:
1963 if (i < sh->pd_idx)
1964 i += raid_disks;
1965 i -= (sh->pd_idx + 1);
1966 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11001967 case ALGORITHM_PARITY_0:
1968 i -= 1;
1969 break;
1970 case ALGORITHM_PARITY_N:
1971 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11001973 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07001974 }
1975 break;
1976 case 6:
NeilBrownd0dabf72009-03-31 14:39:38 +11001977 if (i == sh->qd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07001978 return 0; /* It is the Q disk */
NeilBrowne183eae2009-03-31 15:20:22 +11001979 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07001980 case ALGORITHM_LEFT_ASYMMETRIC:
1981 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown99c0fb52009-03-31 14:39:38 +11001982 case ALGORITHM_ROTATING_ZERO_RESTART:
1983 case ALGORITHM_ROTATING_N_RESTART:
1984 if (sh->pd_idx == raid_disks-1)
1985 i--; /* Q D D D P */
NeilBrown16a53ec2006-06-26 00:27:38 -07001986 else if (i > sh->pd_idx)
1987 i -= 2; /* D D P Q D */
1988 break;
1989 case ALGORITHM_LEFT_SYMMETRIC:
1990 case ALGORITHM_RIGHT_SYMMETRIC:
1991 if (sh->pd_idx == raid_disks-1)
1992 i--; /* Q D D D P */
1993 else {
1994 /* D D P Q D */
1995 if (i < sh->pd_idx)
1996 i += raid_disks;
1997 i -= (sh->pd_idx + 2);
1998 }
1999 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002000 case ALGORITHM_PARITY_0:
2001 i -= 2;
2002 break;
2003 case ALGORITHM_PARITY_N:
2004 break;
2005 case ALGORITHM_ROTATING_N_CONTINUE:
NeilBrowne4424fe2009-10-16 16:27:34 +11002006 /* Like left_symmetric, but P is before Q */
NeilBrown99c0fb52009-03-31 14:39:38 +11002007 if (sh->pd_idx == 0)
2008 i--; /* P D D D Q */
NeilBrowne4424fe2009-10-16 16:27:34 +11002009 else {
2010 /* D D Q P D */
2011 if (i < sh->pd_idx)
2012 i += raid_disks;
2013 i -= (sh->pd_idx + 1);
2014 }
NeilBrown99c0fb52009-03-31 14:39:38 +11002015 break;
2016 case ALGORITHM_LEFT_ASYMMETRIC_6:
2017 case ALGORITHM_RIGHT_ASYMMETRIC_6:
2018 if (i > sh->pd_idx)
2019 i--;
2020 break;
2021 case ALGORITHM_LEFT_SYMMETRIC_6:
2022 case ALGORITHM_RIGHT_SYMMETRIC_6:
2023 if (i < sh->pd_idx)
2024 i += data_disks + 1;
2025 i -= (sh->pd_idx + 1);
2026 break;
2027 case ALGORITHM_PARITY_0_6:
2028 i -= 1;
2029 break;
NeilBrown16a53ec2006-06-26 00:27:38 -07002030 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002031 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002032 }
2033 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 }
2035
2036 chunk_number = stripe * data_disks + i;
NeilBrown35f2a592010-04-20 14:13:34 +10002037 r_sector = chunk_number * sectors_per_chunk + chunk_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
NeilBrown112bf892009-03-31 14:39:38 +11002039 check = raid5_compute_sector(conf, r_sector,
NeilBrown784052e2009-03-31 15:19:07 +11002040 previous, &dummy1, &sh2);
NeilBrown911d4ee2009-03-31 14:39:38 +11002041 if (check != sh->sector || dummy1 != dd_idx || sh2.pd_idx != sh->pd_idx
2042 || sh2.qd_idx != sh->qd_idx) {
NeilBrown0c55e022010-05-03 14:09:02 +10002043 printk(KERN_ERR "md/raid:%s: compute_blocknr: map not correct\n",
2044 mdname(conf->mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 return 0;
2046 }
2047 return r_sector;
2048}
2049
2050
Dan Williams600aa102008-06-28 08:32:05 +10002051static void
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002052schedule_reconstruction(struct stripe_head *sh, struct stripe_head_state *s,
Dan Williams600aa102008-06-28 08:32:05 +10002053 int rcw, int expand)
Dan Williamse33129d2007-01-02 13:52:30 -07002054{
2055 int i, pd_idx = sh->pd_idx, disks = sh->disks;
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002056 raid5_conf_t *conf = sh->raid_conf;
2057 int level = conf->level;
NeilBrown16a53ec2006-06-26 00:27:38 -07002058
Dan Williamse33129d2007-01-02 13:52:30 -07002059 if (rcw) {
2060 /* if we are not expanding this is a proper write request, and
2061 * there will be bios with new data to be drained into the
2062 * stripe cache
2063 */
2064 if (!expand) {
Dan Williams600aa102008-06-28 08:32:05 +10002065 sh->reconstruct_state = reconstruct_state_drain_run;
2066 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
2067 } else
2068 sh->reconstruct_state = reconstruct_state_run;
Dan Williamse33129d2007-01-02 13:52:30 -07002069
Dan Williamsac6b53b2009-07-14 13:40:19 -07002070 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07002071
2072 for (i = disks; i--; ) {
2073 struct r5dev *dev = &sh->dev[i];
2074
2075 if (dev->towrite) {
2076 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsd8ee0722008-06-28 08:32:06 +10002077 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07002078 if (!expand)
2079 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10002080 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002081 }
2082 }
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002083 if (s->locked + conf->max_degraded == disks)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002084 if (!test_and_set_bit(STRIPE_FULL_WRITE, &sh->state))
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002085 atomic_inc(&conf->pending_full_writes);
Dan Williamse33129d2007-01-02 13:52:30 -07002086 } else {
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002087 BUG_ON(level == 6);
Dan Williamse33129d2007-01-02 13:52:30 -07002088 BUG_ON(!(test_bit(R5_UPTODATE, &sh->dev[pd_idx].flags) ||
2089 test_bit(R5_Wantcompute, &sh->dev[pd_idx].flags)));
2090
Dan Williamsd8ee0722008-06-28 08:32:06 +10002091 sh->reconstruct_state = reconstruct_state_prexor_drain_run;
Dan Williams600aa102008-06-28 08:32:05 +10002092 set_bit(STRIPE_OP_PREXOR, &s->ops_request);
2093 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
Dan Williamsac6b53b2009-07-14 13:40:19 -07002094 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07002095
2096 for (i = disks; i--; ) {
2097 struct r5dev *dev = &sh->dev[i];
2098 if (i == pd_idx)
2099 continue;
2100
Dan Williamse33129d2007-01-02 13:52:30 -07002101 if (dev->towrite &&
2102 (test_bit(R5_UPTODATE, &dev->flags) ||
Dan Williamsd8ee0722008-06-28 08:32:06 +10002103 test_bit(R5_Wantcompute, &dev->flags))) {
2104 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07002105 set_bit(R5_LOCKED, &dev->flags);
2106 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10002107 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002108 }
2109 }
2110 }
2111
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002112 /* keep the parity disk(s) locked while asynchronous operations
Dan Williamse33129d2007-01-02 13:52:30 -07002113 * are in flight
2114 */
2115 set_bit(R5_LOCKED, &sh->dev[pd_idx].flags);
2116 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
Dan Williams600aa102008-06-28 08:32:05 +10002117 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002118
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002119 if (level == 6) {
2120 int qd_idx = sh->qd_idx;
2121 struct r5dev *dev = &sh->dev[qd_idx];
2122
2123 set_bit(R5_LOCKED, &dev->flags);
2124 clear_bit(R5_UPTODATE, &dev->flags);
2125 s->locked++;
2126 }
2127
Dan Williams600aa102008-06-28 08:32:05 +10002128 pr_debug("%s: stripe %llu locked: %d ops_request: %lx\n",
Harvey Harrisone46b272b2008-04-28 02:15:50 -07002129 __func__, (unsigned long long)sh->sector,
Dan Williams600aa102008-06-28 08:32:05 +10002130 s->locked, s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07002131}
NeilBrown16a53ec2006-06-26 00:27:38 -07002132
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133/*
2134 * Each stripe/dev can have one or more bion attached.
NeilBrown16a53ec2006-06-26 00:27:38 -07002135 * toread/towrite point to the first in a chain.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 * The bi_next chain must be in order.
2137 */
2138static int add_stripe_bio(struct stripe_head *sh, struct bio *bi, int dd_idx, int forwrite)
2139{
2140 struct bio **bip;
2141 raid5_conf_t *conf = sh->raid_conf;
NeilBrown72626682005-09-09 16:23:54 -07002142 int firstwrite=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143
Dan Williams45b42332007-07-09 11:56:43 -07002144 pr_debug("adding bh b#%llu to stripe s#%llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 (unsigned long long)bi->bi_sector,
2146 (unsigned long long)sh->sector);
2147
2148
2149 spin_lock(&sh->lock);
2150 spin_lock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07002151 if (forwrite) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 bip = &sh->dev[dd_idx].towrite;
NeilBrown72626682005-09-09 16:23:54 -07002153 if (*bip == NULL && sh->dev[dd_idx].written == NULL)
2154 firstwrite = 1;
2155 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 bip = &sh->dev[dd_idx].toread;
2157 while (*bip && (*bip)->bi_sector < bi->bi_sector) {
2158 if ((*bip)->bi_sector + ((*bip)->bi_size >> 9) > bi->bi_sector)
2159 goto overlap;
2160 bip = & (*bip)->bi_next;
2161 }
2162 if (*bip && (*bip)->bi_sector < bi->bi_sector + ((bi->bi_size)>>9))
2163 goto overlap;
2164
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02002165 BUG_ON(*bip && bi->bi_next && (*bip) != bi->bi_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 if (*bip)
2167 bi->bi_next = *bip;
2168 *bip = bi;
Jens Axboe960e7392008-08-15 10:41:18 +02002169 bi->bi_phys_segments++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 spin_unlock_irq(&conf->device_lock);
2171 spin_unlock(&sh->lock);
2172
Dan Williams45b42332007-07-09 11:56:43 -07002173 pr_debug("added bi b#%llu to stripe s#%llu, disk %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 (unsigned long long)bi->bi_sector,
2175 (unsigned long long)sh->sector, dd_idx);
2176
NeilBrown72626682005-09-09 16:23:54 -07002177 if (conf->mddev->bitmap && firstwrite) {
NeilBrown72626682005-09-09 16:23:54 -07002178 bitmap_startwrite(conf->mddev->bitmap, sh->sector,
2179 STRIPE_SECTORS, 0);
NeilBrownae3c20c2006-07-10 04:44:17 -07002180 sh->bm_seq = conf->seq_flush+1;
NeilBrown72626682005-09-09 16:23:54 -07002181 set_bit(STRIPE_BIT_DELAY, &sh->state);
2182 }
2183
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 if (forwrite) {
2185 /* check if page is covered */
2186 sector_t sector = sh->dev[dd_idx].sector;
2187 for (bi=sh->dev[dd_idx].towrite;
2188 sector < sh->dev[dd_idx].sector + STRIPE_SECTORS &&
2189 bi && bi->bi_sector <= sector;
2190 bi = r5_next_bio(bi, sh->dev[dd_idx].sector)) {
2191 if (bi->bi_sector + (bi->bi_size>>9) >= sector)
2192 sector = bi->bi_sector + (bi->bi_size>>9);
2193 }
2194 if (sector >= sh->dev[dd_idx].sector + STRIPE_SECTORS)
2195 set_bit(R5_OVERWRITE, &sh->dev[dd_idx].flags);
2196 }
2197 return 1;
2198
2199 overlap:
2200 set_bit(R5_Overlap, &sh->dev[dd_idx].flags);
2201 spin_unlock_irq(&conf->device_lock);
2202 spin_unlock(&sh->lock);
2203 return 0;
2204}
2205
NeilBrown29269552006-03-27 01:18:10 -08002206static void end_reshape(raid5_conf_t *conf);
2207
NeilBrown911d4ee2009-03-31 14:39:38 +11002208static void stripe_set_idx(sector_t stripe, raid5_conf_t *conf, int previous,
2209 struct stripe_head *sh)
NeilBrownccfcc3c2006-03-27 01:18:09 -08002210{
NeilBrown784052e2009-03-31 15:19:07 +11002211 int sectors_per_chunk =
Andre Noll09c9e5f2009-06-18 08:45:55 +10002212 previous ? conf->prev_chunk_sectors : conf->chunk_sectors;
NeilBrown911d4ee2009-03-31 14:39:38 +11002213 int dd_idx;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07002214 int chunk_offset = sector_div(stripe, sectors_per_chunk);
NeilBrown112bf892009-03-31 14:39:38 +11002215 int disks = previous ? conf->previous_raid_disks : conf->raid_disks;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07002216
NeilBrown112bf892009-03-31 14:39:38 +11002217 raid5_compute_sector(conf,
2218 stripe * (disks - conf->max_degraded)
NeilBrownb875e532006-12-10 02:20:49 -08002219 *sectors_per_chunk + chunk_offset,
NeilBrown112bf892009-03-31 14:39:38 +11002220 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11002221 &dd_idx, sh);
NeilBrownccfcc3c2006-03-27 01:18:09 -08002222}
2223
Dan Williamsa4456852007-07-09 11:56:43 -07002224static void
Dan Williams1fe797e2008-06-28 09:16:30 +10002225handle_failed_stripe(raid5_conf_t *conf, struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07002226 struct stripe_head_state *s, int disks,
2227 struct bio **return_bi)
2228{
2229 int i;
2230 for (i = disks; i--; ) {
2231 struct bio *bi;
2232 int bitmap_end = 0;
2233
2234 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
2235 mdk_rdev_t *rdev;
2236 rcu_read_lock();
2237 rdev = rcu_dereference(conf->disks[i].rdev);
2238 if (rdev && test_bit(In_sync, &rdev->flags))
2239 /* multiple read failures in one stripe */
2240 md_error(conf->mddev, rdev);
2241 rcu_read_unlock();
2242 }
2243 spin_lock_irq(&conf->device_lock);
2244 /* fail all writes first */
2245 bi = sh->dev[i].towrite;
2246 sh->dev[i].towrite = NULL;
2247 if (bi) {
2248 s->to_write--;
2249 bitmap_end = 1;
2250 }
2251
2252 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
2253 wake_up(&conf->wait_for_overlap);
2254
2255 while (bi && bi->bi_sector <
2256 sh->dev[i].sector + STRIPE_SECTORS) {
2257 struct bio *nextbi = r5_next_bio(bi, sh->dev[i].sector);
2258 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Jens Axboe960e7392008-08-15 10:41:18 +02002259 if (!raid5_dec_bi_phys_segments(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002260 md_write_end(conf->mddev);
2261 bi->bi_next = *return_bi;
2262 *return_bi = bi;
2263 }
2264 bi = nextbi;
2265 }
2266 /* and fail all 'written' */
2267 bi = sh->dev[i].written;
2268 sh->dev[i].written = NULL;
2269 if (bi) bitmap_end = 1;
2270 while (bi && bi->bi_sector <
2271 sh->dev[i].sector + STRIPE_SECTORS) {
2272 struct bio *bi2 = r5_next_bio(bi, sh->dev[i].sector);
2273 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Jens Axboe960e7392008-08-15 10:41:18 +02002274 if (!raid5_dec_bi_phys_segments(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002275 md_write_end(conf->mddev);
2276 bi->bi_next = *return_bi;
2277 *return_bi = bi;
2278 }
2279 bi = bi2;
2280 }
2281
Dan Williamsb5e98d62007-01-02 13:52:31 -07002282 /* fail any reads if this device is non-operational and
2283 * the data has not reached the cache yet.
2284 */
2285 if (!test_bit(R5_Wantfill, &sh->dev[i].flags) &&
2286 (!test_bit(R5_Insync, &sh->dev[i].flags) ||
2287 test_bit(R5_ReadError, &sh->dev[i].flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07002288 bi = sh->dev[i].toread;
2289 sh->dev[i].toread = NULL;
2290 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
2291 wake_up(&conf->wait_for_overlap);
2292 if (bi) s->to_read--;
2293 while (bi && bi->bi_sector <
2294 sh->dev[i].sector + STRIPE_SECTORS) {
2295 struct bio *nextbi =
2296 r5_next_bio(bi, sh->dev[i].sector);
2297 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Jens Axboe960e7392008-08-15 10:41:18 +02002298 if (!raid5_dec_bi_phys_segments(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002299 bi->bi_next = *return_bi;
2300 *return_bi = bi;
2301 }
2302 bi = nextbi;
2303 }
2304 }
2305 spin_unlock_irq(&conf->device_lock);
2306 if (bitmap_end)
2307 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
2308 STRIPE_SECTORS, 0, 0);
2309 }
2310
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002311 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
2312 if (atomic_dec_and_test(&conf->pending_full_writes))
2313 md_wakeup_thread(conf->mddev->thread);
Dan Williamsa4456852007-07-09 11:56:43 -07002314}
2315
Dan Williams1fe797e2008-06-28 09:16:30 +10002316/* fetch_block5 - checks the given member device to see if its data needs
2317 * to be read or computed to satisfy a request.
2318 *
2319 * Returns 1 when no more member devices need to be checked, otherwise returns
2320 * 0 to tell the loop in handle_stripe_fill5 to continue
Dan Williamsf38e1212007-01-02 13:52:30 -07002321 */
Dan Williams1fe797e2008-06-28 09:16:30 +10002322static int fetch_block5(struct stripe_head *sh, struct stripe_head_state *s,
2323 int disk_idx, int disks)
Dan Williamsf38e1212007-01-02 13:52:30 -07002324{
2325 struct r5dev *dev = &sh->dev[disk_idx];
2326 struct r5dev *failed_dev = &sh->dev[s->failed_num];
2327
Dan Williamsf38e1212007-01-02 13:52:30 -07002328 /* is the data in this block needed, and can we get it? */
2329 if (!test_bit(R5_LOCKED, &dev->flags) &&
Dan Williams1fe797e2008-06-28 09:16:30 +10002330 !test_bit(R5_UPTODATE, &dev->flags) &&
2331 (dev->toread ||
2332 (dev->towrite && !test_bit(R5_OVERWRITE, &dev->flags)) ||
2333 s->syncing || s->expanding ||
2334 (s->failed &&
2335 (failed_dev->toread ||
2336 (failed_dev->towrite &&
2337 !test_bit(R5_OVERWRITE, &failed_dev->flags)))))) {
Dan Williams976ea8d2008-06-28 08:32:03 +10002338 /* We would like to get this block, possibly by computing it,
2339 * otherwise read it if the backing disk is insync
Dan Williamsf38e1212007-01-02 13:52:30 -07002340 */
2341 if ((s->uptodate == disks - 1) &&
Dan Williamsecc65c92008-06-28 08:31:57 +10002342 (s->failed && disk_idx == s->failed_num)) {
Dan Williams976ea8d2008-06-28 08:32:03 +10002343 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
2344 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
Dan Williamsf38e1212007-01-02 13:52:30 -07002345 set_bit(R5_Wantcompute, &dev->flags);
2346 sh->ops.target = disk_idx;
Dan Williamsac6b53b2009-07-14 13:40:19 -07002347 sh->ops.target2 = -1;
Dan Williamsf38e1212007-01-02 13:52:30 -07002348 s->req_compute = 1;
Dan Williamsf38e1212007-01-02 13:52:30 -07002349 /* Careful: from this point on 'uptodate' is in the eye
Dan Williamsac6b53b2009-07-14 13:40:19 -07002350 * of raid_run_ops which services 'compute' operations
Dan Williamsf38e1212007-01-02 13:52:30 -07002351 * before writes. R5_Wantcompute flags a block that will
2352 * be R5_UPTODATE by the time it is needed for a
2353 * subsequent operation.
2354 */
2355 s->uptodate++;
Dan Williams1fe797e2008-06-28 09:16:30 +10002356 return 1; /* uptodate + compute == disks */
Dan Williams7a1fc532008-07-10 04:54:57 -07002357 } else if (test_bit(R5_Insync, &dev->flags)) {
Dan Williamsf38e1212007-01-02 13:52:30 -07002358 set_bit(R5_LOCKED, &dev->flags);
2359 set_bit(R5_Wantread, &dev->flags);
Dan Williamsf38e1212007-01-02 13:52:30 -07002360 s->locked++;
2361 pr_debug("Reading block %d (sync=%d)\n", disk_idx,
2362 s->syncing);
2363 }
2364 }
2365
Dan Williams1fe797e2008-06-28 09:16:30 +10002366 return 0;
Dan Williamsf38e1212007-01-02 13:52:30 -07002367}
2368
Dan Williams1fe797e2008-06-28 09:16:30 +10002369/**
2370 * handle_stripe_fill5 - read or compute data to satisfy pending requests.
2371 */
2372static void handle_stripe_fill5(struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07002373 struct stripe_head_state *s, int disks)
2374{
2375 int i;
Dan Williamsf38e1212007-01-02 13:52:30 -07002376
Dan Williamsf38e1212007-01-02 13:52:30 -07002377 /* look for blocks to read/compute, skip this if a compute
2378 * is already in flight, or if the stripe contents are in the
2379 * midst of changing due to a write
2380 */
Dan Williams976ea8d2008-06-28 08:32:03 +10002381 if (!test_bit(STRIPE_COMPUTE_RUN, &sh->state) && !sh->check_state &&
Dan Williams1fe797e2008-06-28 09:16:30 +10002382 !sh->reconstruct_state)
Dan Williamsf38e1212007-01-02 13:52:30 -07002383 for (i = disks; i--; )
Dan Williams1fe797e2008-06-28 09:16:30 +10002384 if (fetch_block5(sh, s, i, disks))
Dan Williamsf38e1212007-01-02 13:52:30 -07002385 break;
Dan Williamsa4456852007-07-09 11:56:43 -07002386 set_bit(STRIPE_HANDLE, &sh->state);
2387}
2388
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07002389/* fetch_block6 - checks the given member device to see if its data needs
2390 * to be read or computed to satisfy a request.
2391 *
2392 * Returns 1 when no more member devices need to be checked, otherwise returns
2393 * 0 to tell the loop in handle_stripe_fill6 to continue
2394 */
2395static int fetch_block6(struct stripe_head *sh, struct stripe_head_state *s,
2396 struct r6_state *r6s, int disk_idx, int disks)
2397{
2398 struct r5dev *dev = &sh->dev[disk_idx];
2399 struct r5dev *fdev[2] = { &sh->dev[r6s->failed_num[0]],
2400 &sh->dev[r6s->failed_num[1]] };
2401
2402 if (!test_bit(R5_LOCKED, &dev->flags) &&
2403 !test_bit(R5_UPTODATE, &dev->flags) &&
2404 (dev->toread ||
2405 (dev->towrite && !test_bit(R5_OVERWRITE, &dev->flags)) ||
2406 s->syncing || s->expanding ||
2407 (s->failed >= 1 &&
2408 (fdev[0]->toread || s->to_write)) ||
2409 (s->failed >= 2 &&
2410 (fdev[1]->toread || s->to_write)))) {
2411 /* we would like to get this block, possibly by computing it,
2412 * otherwise read it if the backing disk is insync
2413 */
2414 BUG_ON(test_bit(R5_Wantcompute, &dev->flags));
2415 BUG_ON(test_bit(R5_Wantread, &dev->flags));
2416 if ((s->uptodate == disks - 1) &&
2417 (s->failed && (disk_idx == r6s->failed_num[0] ||
2418 disk_idx == r6s->failed_num[1]))) {
2419 /* have disk failed, and we're requested to fetch it;
2420 * do compute it
2421 */
2422 pr_debug("Computing stripe %llu block %d\n",
2423 (unsigned long long)sh->sector, disk_idx);
2424 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
2425 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
2426 set_bit(R5_Wantcompute, &dev->flags);
2427 sh->ops.target = disk_idx;
2428 sh->ops.target2 = -1; /* no 2nd target */
2429 s->req_compute = 1;
2430 s->uptodate++;
2431 return 1;
2432 } else if (s->uptodate == disks-2 && s->failed >= 2) {
2433 /* Computing 2-failure is *very* expensive; only
2434 * do it if failed >= 2
2435 */
2436 int other;
2437 for (other = disks; other--; ) {
2438 if (other == disk_idx)
2439 continue;
2440 if (!test_bit(R5_UPTODATE,
2441 &sh->dev[other].flags))
2442 break;
2443 }
2444 BUG_ON(other < 0);
2445 pr_debug("Computing stripe %llu blocks %d,%d\n",
2446 (unsigned long long)sh->sector,
2447 disk_idx, other);
2448 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
2449 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
2450 set_bit(R5_Wantcompute, &sh->dev[disk_idx].flags);
2451 set_bit(R5_Wantcompute, &sh->dev[other].flags);
2452 sh->ops.target = disk_idx;
2453 sh->ops.target2 = other;
2454 s->uptodate += 2;
2455 s->req_compute = 1;
2456 return 1;
2457 } else if (test_bit(R5_Insync, &dev->flags)) {
2458 set_bit(R5_LOCKED, &dev->flags);
2459 set_bit(R5_Wantread, &dev->flags);
2460 s->locked++;
2461 pr_debug("Reading block %d (sync=%d)\n",
2462 disk_idx, s->syncing);
2463 }
2464 }
2465
2466 return 0;
2467}
2468
2469/**
2470 * handle_stripe_fill6 - read or compute data to satisfy pending requests.
2471 */
Dan Williams1fe797e2008-06-28 09:16:30 +10002472static void handle_stripe_fill6(struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07002473 struct stripe_head_state *s, struct r6_state *r6s,
2474 int disks)
2475{
2476 int i;
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07002477
2478 /* look for blocks to read/compute, skip this if a compute
2479 * is already in flight, or if the stripe contents are in the
2480 * midst of changing due to a write
2481 */
2482 if (!test_bit(STRIPE_COMPUTE_RUN, &sh->state) && !sh->check_state &&
2483 !sh->reconstruct_state)
2484 for (i = disks; i--; )
2485 if (fetch_block6(sh, s, r6s, i, disks))
2486 break;
Dan Williamsa4456852007-07-09 11:56:43 -07002487 set_bit(STRIPE_HANDLE, &sh->state);
2488}
2489
2490
Dan Williams1fe797e2008-06-28 09:16:30 +10002491/* handle_stripe_clean_event
Dan Williamsa4456852007-07-09 11:56:43 -07002492 * any written block on an uptodate or failed drive can be returned.
2493 * Note that if we 'wrote' to a failed drive, it will be UPTODATE, but
2494 * never LOCKED, so we don't need to test 'failed' directly.
2495 */
Dan Williams1fe797e2008-06-28 09:16:30 +10002496static void handle_stripe_clean_event(raid5_conf_t *conf,
Dan Williamsa4456852007-07-09 11:56:43 -07002497 struct stripe_head *sh, int disks, struct bio **return_bi)
2498{
2499 int i;
2500 struct r5dev *dev;
2501
2502 for (i = disks; i--; )
2503 if (sh->dev[i].written) {
2504 dev = &sh->dev[i];
2505 if (!test_bit(R5_LOCKED, &dev->flags) &&
2506 test_bit(R5_UPTODATE, &dev->flags)) {
2507 /* We can return any write requests */
2508 struct bio *wbi, *wbi2;
2509 int bitmap_end = 0;
Dan Williams45b42332007-07-09 11:56:43 -07002510 pr_debug("Return write for disc %d\n", i);
Dan Williamsa4456852007-07-09 11:56:43 -07002511 spin_lock_irq(&conf->device_lock);
2512 wbi = dev->written;
2513 dev->written = NULL;
2514 while (wbi && wbi->bi_sector <
2515 dev->sector + STRIPE_SECTORS) {
2516 wbi2 = r5_next_bio(wbi, dev->sector);
Jens Axboe960e7392008-08-15 10:41:18 +02002517 if (!raid5_dec_bi_phys_segments(wbi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002518 md_write_end(conf->mddev);
2519 wbi->bi_next = *return_bi;
2520 *return_bi = wbi;
2521 }
2522 wbi = wbi2;
2523 }
2524 if (dev->towrite == NULL)
2525 bitmap_end = 1;
2526 spin_unlock_irq(&conf->device_lock);
2527 if (bitmap_end)
2528 bitmap_endwrite(conf->mddev->bitmap,
2529 sh->sector,
2530 STRIPE_SECTORS,
2531 !test_bit(STRIPE_DEGRADED, &sh->state),
2532 0);
2533 }
2534 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002535
2536 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
2537 if (atomic_dec_and_test(&conf->pending_full_writes))
2538 md_wakeup_thread(conf->mddev->thread);
Dan Williamsa4456852007-07-09 11:56:43 -07002539}
2540
Dan Williams1fe797e2008-06-28 09:16:30 +10002541static void handle_stripe_dirtying5(raid5_conf_t *conf,
Dan Williamsa4456852007-07-09 11:56:43 -07002542 struct stripe_head *sh, struct stripe_head_state *s, int disks)
2543{
2544 int rmw = 0, rcw = 0, i;
2545 for (i = disks; i--; ) {
2546 /* would I have to read this buffer for read_modify_write */
2547 struct r5dev *dev = &sh->dev[i];
2548 if ((dev->towrite || i == sh->pd_idx) &&
2549 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002550 !(test_bit(R5_UPTODATE, &dev->flags) ||
2551 test_bit(R5_Wantcompute, &dev->flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07002552 if (test_bit(R5_Insync, &dev->flags))
2553 rmw++;
2554 else
2555 rmw += 2*disks; /* cannot read it */
2556 }
2557 /* Would I have to read this buffer for reconstruct_write */
2558 if (!test_bit(R5_OVERWRITE, &dev->flags) && i != sh->pd_idx &&
2559 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002560 !(test_bit(R5_UPTODATE, &dev->flags) ||
2561 test_bit(R5_Wantcompute, &dev->flags))) {
2562 if (test_bit(R5_Insync, &dev->flags)) rcw++;
Dan Williamsa4456852007-07-09 11:56:43 -07002563 else
2564 rcw += 2*disks;
2565 }
2566 }
Dan Williams45b42332007-07-09 11:56:43 -07002567 pr_debug("for sector %llu, rmw=%d rcw=%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002568 (unsigned long long)sh->sector, rmw, rcw);
2569 set_bit(STRIPE_HANDLE, &sh->state);
2570 if (rmw < rcw && rmw > 0)
2571 /* prefer read-modify-write, but need to get some data */
2572 for (i = disks; i--; ) {
2573 struct r5dev *dev = &sh->dev[i];
2574 if ((dev->towrite || i == sh->pd_idx) &&
2575 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002576 !(test_bit(R5_UPTODATE, &dev->flags) ||
2577 test_bit(R5_Wantcompute, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07002578 test_bit(R5_Insync, &dev->flags)) {
2579 if (
2580 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07002581 pr_debug("Read_old block "
Dan Williamsa4456852007-07-09 11:56:43 -07002582 "%d for r-m-w\n", i);
2583 set_bit(R5_LOCKED, &dev->flags);
2584 set_bit(R5_Wantread, &dev->flags);
2585 s->locked++;
2586 } else {
2587 set_bit(STRIPE_DELAYED, &sh->state);
2588 set_bit(STRIPE_HANDLE, &sh->state);
2589 }
2590 }
2591 }
2592 if (rcw <= rmw && rcw > 0)
2593 /* want reconstruct write, but need to get some data */
2594 for (i = disks; i--; ) {
2595 struct r5dev *dev = &sh->dev[i];
2596 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
2597 i != sh->pd_idx &&
2598 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002599 !(test_bit(R5_UPTODATE, &dev->flags) ||
2600 test_bit(R5_Wantcompute, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07002601 test_bit(R5_Insync, &dev->flags)) {
2602 if (
2603 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07002604 pr_debug("Read_old block "
Dan Williamsa4456852007-07-09 11:56:43 -07002605 "%d for Reconstruct\n", i);
2606 set_bit(R5_LOCKED, &dev->flags);
2607 set_bit(R5_Wantread, &dev->flags);
2608 s->locked++;
2609 } else {
2610 set_bit(STRIPE_DELAYED, &sh->state);
2611 set_bit(STRIPE_HANDLE, &sh->state);
2612 }
2613 }
2614 }
2615 /* now if nothing is locked, and if we have enough data,
2616 * we can start a write request
2617 */
Dan Williamsf38e1212007-01-02 13:52:30 -07002618 /* since handle_stripe can be called at any time we need to handle the
2619 * case where a compute block operation has been submitted and then a
Dan Williamsac6b53b2009-07-14 13:40:19 -07002620 * subsequent call wants to start a write request. raid_run_ops only
2621 * handles the case where compute block and reconstruct are requested
Dan Williamsf38e1212007-01-02 13:52:30 -07002622 * simultaneously. If this is not the case then new writes need to be
2623 * held off until the compute completes.
2624 */
Dan Williams976ea8d2008-06-28 08:32:03 +10002625 if ((s->req_compute || !test_bit(STRIPE_COMPUTE_RUN, &sh->state)) &&
2626 (s->locked == 0 && (rcw == 0 || rmw == 0) &&
2627 !test_bit(STRIPE_BIT_DELAY, &sh->state)))
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002628 schedule_reconstruction(sh, s, rcw == 0, 0);
Dan Williamsa4456852007-07-09 11:56:43 -07002629}
2630
Dan Williams1fe797e2008-06-28 09:16:30 +10002631static void handle_stripe_dirtying6(raid5_conf_t *conf,
Dan Williamsa4456852007-07-09 11:56:43 -07002632 struct stripe_head *sh, struct stripe_head_state *s,
2633 struct r6_state *r6s, int disks)
2634{
Yuri Tikhonova9b39a72009-08-29 19:13:12 -07002635 int rcw = 0, pd_idx = sh->pd_idx, i;
NeilBrown34e04e82009-03-31 15:10:16 +11002636 int qd_idx = sh->qd_idx;
Yuri Tikhonova9b39a72009-08-29 19:13:12 -07002637
2638 set_bit(STRIPE_HANDLE, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07002639 for (i = disks; i--; ) {
2640 struct r5dev *dev = &sh->dev[i];
Yuri Tikhonova9b39a72009-08-29 19:13:12 -07002641 /* check if we haven't enough data */
2642 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
2643 i != pd_idx && i != qd_idx &&
2644 !test_bit(R5_LOCKED, &dev->flags) &&
2645 !(test_bit(R5_UPTODATE, &dev->flags) ||
2646 test_bit(R5_Wantcompute, &dev->flags))) {
2647 rcw++;
2648 if (!test_bit(R5_Insync, &dev->flags))
2649 continue; /* it's a failed drive */
2650
2651 if (
2652 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
2653 pr_debug("Read_old stripe %llu "
2654 "block %d for Reconstruct\n",
2655 (unsigned long long)sh->sector, i);
2656 set_bit(R5_LOCKED, &dev->flags);
2657 set_bit(R5_Wantread, &dev->flags);
2658 s->locked++;
2659 } else {
2660 pr_debug("Request delayed stripe %llu "
2661 "block %d for Reconstruct\n",
2662 (unsigned long long)sh->sector, i);
2663 set_bit(STRIPE_DELAYED, &sh->state);
2664 set_bit(STRIPE_HANDLE, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07002665 }
2666 }
2667 }
Dan Williamsa4456852007-07-09 11:56:43 -07002668 /* now if nothing is locked, and if we have enough data, we can start a
2669 * write request
2670 */
Yuri Tikhonova9b39a72009-08-29 19:13:12 -07002671 if ((s->req_compute || !test_bit(STRIPE_COMPUTE_RUN, &sh->state)) &&
2672 s->locked == 0 && rcw == 0 &&
Dan Williamsa4456852007-07-09 11:56:43 -07002673 !test_bit(STRIPE_BIT_DELAY, &sh->state)) {
Yuri Tikhonova9b39a72009-08-29 19:13:12 -07002674 schedule_reconstruction(sh, s, 1, 0);
Dan Williamsa4456852007-07-09 11:56:43 -07002675 }
2676}
2677
2678static void handle_parity_checks5(raid5_conf_t *conf, struct stripe_head *sh,
2679 struct stripe_head_state *s, int disks)
2680{
Dan Williamsecc65c92008-06-28 08:31:57 +10002681 struct r5dev *dev = NULL;
Dan Williamse89f8962007-01-02 13:52:31 -07002682
Dan Williamsbd2ab672008-04-10 21:29:27 -07002683 set_bit(STRIPE_HANDLE, &sh->state);
2684
Dan Williamsecc65c92008-06-28 08:31:57 +10002685 switch (sh->check_state) {
2686 case check_state_idle:
2687 /* start a new check operation if there are no failures */
Dan Williamsbd2ab672008-04-10 21:29:27 -07002688 if (s->failed == 0) {
Dan Williamsbd2ab672008-04-10 21:29:27 -07002689 BUG_ON(s->uptodate != disks);
Dan Williamsecc65c92008-06-28 08:31:57 +10002690 sh->check_state = check_state_run;
2691 set_bit(STRIPE_OP_CHECK, &s->ops_request);
Dan Williamsbd2ab672008-04-10 21:29:27 -07002692 clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
Dan Williamsbd2ab672008-04-10 21:29:27 -07002693 s->uptodate--;
Dan Williamsecc65c92008-06-28 08:31:57 +10002694 break;
Dan Williamsbd2ab672008-04-10 21:29:27 -07002695 }
Dan Williamsa4456852007-07-09 11:56:43 -07002696 dev = &sh->dev[s->failed_num];
Dan Williamsecc65c92008-06-28 08:31:57 +10002697 /* fall through */
2698 case check_state_compute_result:
2699 sh->check_state = check_state_idle;
2700 if (!dev)
2701 dev = &sh->dev[sh->pd_idx];
2702
2703 /* check that a write has not made the stripe insync */
2704 if (test_bit(STRIPE_INSYNC, &sh->state))
2705 break;
2706
2707 /* either failed parity check, or recovery is happening */
Dan Williamsa4456852007-07-09 11:56:43 -07002708 BUG_ON(!test_bit(R5_UPTODATE, &dev->flags));
2709 BUG_ON(s->uptodate != disks);
2710
2711 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsecc65c92008-06-28 08:31:57 +10002712 s->locked++;
Dan Williamsa4456852007-07-09 11:56:43 -07002713 set_bit(R5_Wantwrite, &dev->flags);
Dan Williams830ea012007-01-02 13:52:31 -07002714
Dan Williamsa4456852007-07-09 11:56:43 -07002715 clear_bit(STRIPE_DEGRADED, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07002716 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10002717 break;
2718 case check_state_run:
2719 break; /* we will be called again upon completion */
2720 case check_state_check_result:
2721 sh->check_state = check_state_idle;
2722
2723 /* if a failure occurred during the check operation, leave
2724 * STRIPE_INSYNC not set and let the stripe be handled again
2725 */
2726 if (s->failed)
2727 break;
2728
2729 /* handle a successful check operation, if parity is correct
2730 * we are done. Otherwise update the mismatch count and repair
2731 * parity if !MD_RECOVERY_CHECK
2732 */
Dan Williamsad283ea2009-08-29 19:09:26 -07002733 if ((sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) == 0)
Dan Williamsecc65c92008-06-28 08:31:57 +10002734 /* parity is correct (on disc,
2735 * not in buffer any more)
2736 */
2737 set_bit(STRIPE_INSYNC, &sh->state);
2738 else {
2739 conf->mddev->resync_mismatches += STRIPE_SECTORS;
2740 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
2741 /* don't try to repair!! */
2742 set_bit(STRIPE_INSYNC, &sh->state);
2743 else {
2744 sh->check_state = check_state_compute_run;
Dan Williams976ea8d2008-06-28 08:32:03 +10002745 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10002746 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
2747 set_bit(R5_Wantcompute,
2748 &sh->dev[sh->pd_idx].flags);
2749 sh->ops.target = sh->pd_idx;
Dan Williamsac6b53b2009-07-14 13:40:19 -07002750 sh->ops.target2 = -1;
Dan Williamsecc65c92008-06-28 08:31:57 +10002751 s->uptodate++;
2752 }
2753 }
2754 break;
2755 case check_state_compute_run:
2756 break;
2757 default:
2758 printk(KERN_ERR "%s: unknown check_state: %d sector: %llu\n",
2759 __func__, sh->check_state,
2760 (unsigned long long) sh->sector);
2761 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07002762 }
2763}
2764
2765
2766static void handle_parity_checks6(raid5_conf_t *conf, struct stripe_head *sh,
Dan Williams36d1c642009-07-14 11:48:22 -07002767 struct stripe_head_state *s,
2768 struct r6_state *r6s, int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07002769{
Dan Williamsa4456852007-07-09 11:56:43 -07002770 int pd_idx = sh->pd_idx;
NeilBrown34e04e82009-03-31 15:10:16 +11002771 int qd_idx = sh->qd_idx;
Dan Williamsd82dfee2009-07-14 13:40:57 -07002772 struct r5dev *dev;
Dan Williamsa4456852007-07-09 11:56:43 -07002773
2774 set_bit(STRIPE_HANDLE, &sh->state);
2775
2776 BUG_ON(s->failed > 2);
Dan Williamsd82dfee2009-07-14 13:40:57 -07002777
Dan Williamsa4456852007-07-09 11:56:43 -07002778 /* Want to check and possibly repair P and Q.
2779 * However there could be one 'failed' device, in which
2780 * case we can only check one of them, possibly using the
2781 * other to generate missing data
2782 */
2783
Dan Williamsd82dfee2009-07-14 13:40:57 -07002784 switch (sh->check_state) {
2785 case check_state_idle:
2786 /* start a new check operation if there are < 2 failures */
Dan Williamsa4456852007-07-09 11:56:43 -07002787 if (s->failed == r6s->q_failed) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07002788 /* The only possible failed device holds Q, so it
Dan Williamsa4456852007-07-09 11:56:43 -07002789 * makes sense to check P (If anything else were failed,
2790 * we would have used P to recreate it).
2791 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07002792 sh->check_state = check_state_run;
Dan Williamsa4456852007-07-09 11:56:43 -07002793 }
2794 if (!r6s->q_failed && s->failed < 2) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07002795 /* Q is not failed, and we didn't use it to generate
Dan Williamsa4456852007-07-09 11:56:43 -07002796 * anything, so it makes sense to check it
2797 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07002798 if (sh->check_state == check_state_run)
2799 sh->check_state = check_state_run_pq;
2800 else
2801 sh->check_state = check_state_run_q;
Dan Williamsa4456852007-07-09 11:56:43 -07002802 }
Dan Williams36d1c642009-07-14 11:48:22 -07002803
Dan Williamsd82dfee2009-07-14 13:40:57 -07002804 /* discard potentially stale zero_sum_result */
2805 sh->ops.zero_sum_result = 0;
Dan Williams36d1c642009-07-14 11:48:22 -07002806
Dan Williamsd82dfee2009-07-14 13:40:57 -07002807 if (sh->check_state == check_state_run) {
2808 /* async_xor_zero_sum destroys the contents of P */
2809 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
2810 s->uptodate--;
Dan Williamsa4456852007-07-09 11:56:43 -07002811 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07002812 if (sh->check_state >= check_state_run &&
2813 sh->check_state <= check_state_run_pq) {
2814 /* async_syndrome_zero_sum preserves P and Q, so
2815 * no need to mark them !uptodate here
2816 */
2817 set_bit(STRIPE_OP_CHECK, &s->ops_request);
2818 break;
2819 }
Dan Williams36d1c642009-07-14 11:48:22 -07002820
Dan Williamsd82dfee2009-07-14 13:40:57 -07002821 /* we have 2-disk failure */
2822 BUG_ON(s->failed != 2);
2823 /* fall through */
2824 case check_state_compute_result:
2825 sh->check_state = check_state_idle;
Dan Williams36d1c642009-07-14 11:48:22 -07002826
Dan Williamsd82dfee2009-07-14 13:40:57 -07002827 /* check that a write has not made the stripe insync */
2828 if (test_bit(STRIPE_INSYNC, &sh->state))
2829 break;
Dan Williamsa4456852007-07-09 11:56:43 -07002830
2831 /* now write out any block on a failed drive,
Dan Williamsd82dfee2009-07-14 13:40:57 -07002832 * or P or Q if they were recomputed
Dan Williamsa4456852007-07-09 11:56:43 -07002833 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07002834 BUG_ON(s->uptodate < disks - 1); /* We don't need Q to recover */
Dan Williamsa4456852007-07-09 11:56:43 -07002835 if (s->failed == 2) {
2836 dev = &sh->dev[r6s->failed_num[1]];
2837 s->locked++;
2838 set_bit(R5_LOCKED, &dev->flags);
2839 set_bit(R5_Wantwrite, &dev->flags);
2840 }
2841 if (s->failed >= 1) {
2842 dev = &sh->dev[r6s->failed_num[0]];
2843 s->locked++;
2844 set_bit(R5_LOCKED, &dev->flags);
2845 set_bit(R5_Wantwrite, &dev->flags);
2846 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07002847 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
Dan Williamsa4456852007-07-09 11:56:43 -07002848 dev = &sh->dev[pd_idx];
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_Q_RESULT) {
Dan Williamsa4456852007-07-09 11:56:43 -07002854 dev = &sh->dev[qd_idx];
2855 s->locked++;
2856 set_bit(R5_LOCKED, &dev->flags);
2857 set_bit(R5_Wantwrite, &dev->flags);
2858 }
2859 clear_bit(STRIPE_DEGRADED, &sh->state);
2860
2861 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsd82dfee2009-07-14 13:40:57 -07002862 break;
2863 case check_state_run:
2864 case check_state_run_q:
2865 case check_state_run_pq:
2866 break; /* we will be called again upon completion */
2867 case check_state_check_result:
2868 sh->check_state = check_state_idle;
2869
2870 /* handle a successful check operation, if parity is correct
2871 * we are done. Otherwise update the mismatch count and repair
2872 * parity if !MD_RECOVERY_CHECK
2873 */
2874 if (sh->ops.zero_sum_result == 0) {
2875 /* both parities are correct */
2876 if (!s->failed)
2877 set_bit(STRIPE_INSYNC, &sh->state);
2878 else {
2879 /* in contrast to the raid5 case we can validate
2880 * parity, but still have a failure to write
2881 * back
2882 */
2883 sh->check_state = check_state_compute_result;
2884 /* Returning at this point means that we may go
2885 * off and bring p and/or q uptodate again so
2886 * we make sure to check zero_sum_result again
2887 * to verify if p or q need writeback
2888 */
2889 }
2890 } else {
2891 conf->mddev->resync_mismatches += STRIPE_SECTORS;
2892 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
2893 /* don't try to repair!! */
2894 set_bit(STRIPE_INSYNC, &sh->state);
2895 else {
2896 int *target = &sh->ops.target;
2897
2898 sh->ops.target = -1;
2899 sh->ops.target2 = -1;
2900 sh->check_state = check_state_compute_run;
2901 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
2902 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
2903 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
2904 set_bit(R5_Wantcompute,
2905 &sh->dev[pd_idx].flags);
2906 *target = pd_idx;
2907 target = &sh->ops.target2;
2908 s->uptodate++;
2909 }
2910 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
2911 set_bit(R5_Wantcompute,
2912 &sh->dev[qd_idx].flags);
2913 *target = qd_idx;
2914 s->uptodate++;
2915 }
2916 }
2917 }
2918 break;
2919 case check_state_compute_run:
2920 break;
2921 default:
2922 printk(KERN_ERR "%s: unknown check_state: %d sector: %llu\n",
2923 __func__, sh->check_state,
2924 (unsigned long long) sh->sector);
2925 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07002926 }
2927}
2928
2929static void handle_stripe_expansion(raid5_conf_t *conf, struct stripe_head *sh,
2930 struct r6_state *r6s)
2931{
2932 int i;
2933
2934 /* We have read all the blocks in this stripe and now we need to
2935 * copy some of them into a target stripe for expand.
2936 */
Dan Williamsf0a50d32007-01-02 13:52:31 -07002937 struct dma_async_tx_descriptor *tx = NULL;
Dan Williamsa4456852007-07-09 11:56:43 -07002938 clear_bit(STRIPE_EXPAND_SOURCE, &sh->state);
2939 for (i = 0; i < sh->disks; i++)
NeilBrown34e04e82009-03-31 15:10:16 +11002940 if (i != sh->pd_idx && i != sh->qd_idx) {
NeilBrown911d4ee2009-03-31 14:39:38 +11002941 int dd_idx, j;
Dan Williamsa4456852007-07-09 11:56:43 -07002942 struct stripe_head *sh2;
Dan Williamsa08abd82009-06-03 11:43:59 -07002943 struct async_submit_ctl submit;
Dan Williamsa4456852007-07-09 11:56:43 -07002944
NeilBrown784052e2009-03-31 15:19:07 +11002945 sector_t bn = compute_blocknr(sh, i, 1);
NeilBrown911d4ee2009-03-31 14:39:38 +11002946 sector_t s = raid5_compute_sector(conf, bn, 0,
2947 &dd_idx, NULL);
NeilBrowna8c906c2009-06-09 14:39:59 +10002948 sh2 = get_active_stripe(conf, s, 0, 1, 1);
Dan Williamsa4456852007-07-09 11:56:43 -07002949 if (sh2 == NULL)
2950 /* so far only the early blocks of this stripe
2951 * have been requested. When later blocks
2952 * get requested, we will try again
2953 */
2954 continue;
2955 if (!test_bit(STRIPE_EXPANDING, &sh2->state) ||
2956 test_bit(R5_Expanded, &sh2->dev[dd_idx].flags)) {
2957 /* must have already done this block */
2958 release_stripe(sh2);
2959 continue;
2960 }
Dan Williamsf0a50d32007-01-02 13:52:31 -07002961
2962 /* place all the copies on one channel */
Dan Williamsa08abd82009-06-03 11:43:59 -07002963 init_async_submit(&submit, 0, tx, NULL, NULL, NULL);
Dan Williamsf0a50d32007-01-02 13:52:31 -07002964 tx = async_memcpy(sh2->dev[dd_idx].page,
Dan Williams88ba2aa2009-04-09 16:16:18 -07002965 sh->dev[i].page, 0, 0, STRIPE_SIZE,
Dan Williamsa08abd82009-06-03 11:43:59 -07002966 &submit);
Dan Williamsf0a50d32007-01-02 13:52:31 -07002967
Dan Williamsa4456852007-07-09 11:56:43 -07002968 set_bit(R5_Expanded, &sh2->dev[dd_idx].flags);
2969 set_bit(R5_UPTODATE, &sh2->dev[dd_idx].flags);
2970 for (j = 0; j < conf->raid_disks; j++)
2971 if (j != sh2->pd_idx &&
NeilBrownd0dabf72009-03-31 14:39:38 +11002972 (!r6s || j != sh2->qd_idx) &&
Dan Williamsa4456852007-07-09 11:56:43 -07002973 !test_bit(R5_Expanded, &sh2->dev[j].flags))
2974 break;
2975 if (j == conf->raid_disks) {
2976 set_bit(STRIPE_EXPAND_READY, &sh2->state);
2977 set_bit(STRIPE_HANDLE, &sh2->state);
2978 }
2979 release_stripe(sh2);
Dan Williamsf0a50d32007-01-02 13:52:31 -07002980
Dan Williamsa4456852007-07-09 11:56:43 -07002981 }
NeilBrowna2e08552007-09-11 15:23:36 -07002982 /* done submitting copies, wait for them to complete */
2983 if (tx) {
2984 async_tx_ack(tx);
2985 dma_wait_for_async_tx(tx);
2986 }
Dan Williamsa4456852007-07-09 11:56:43 -07002987}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988
Dan Williams6bfe0b42008-04-30 00:52:32 -07002989
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990/*
2991 * handle_stripe - do things to a stripe.
2992 *
2993 * We lock the stripe and then examine the state of various bits
2994 * to see what needs to be done.
2995 * Possible results:
2996 * return some read request which now have data
2997 * return some write requests which are safely on disc
2998 * schedule a read on some buffers
2999 * schedule a write of some buffers
3000 * return confirmation of parity correctness
3001 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 * buffers are taken off read_list or write_list, and bh_cache buffers
3003 * get BH_Lock set before the stripe lock is released.
3004 *
3005 */
Dan Williamsa4456852007-07-09 11:56:43 -07003006
NeilBrown14425772009-10-16 15:55:25 +11003007static void handle_stripe5(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008{
3009 raid5_conf_t *conf = sh->raid_conf;
Dan Williamsa4456852007-07-09 11:56:43 -07003010 int disks = sh->disks, i;
3011 struct bio *return_bi = NULL;
3012 struct stripe_head_state s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 struct r5dev *dev;
Dan Williams6bfe0b42008-04-30 00:52:32 -07003014 mdk_rdev_t *blocked_rdev = NULL;
Dan Williamse0a115e2008-06-05 22:45:52 -07003015 int prexor;
NeilBrown729a1862009-12-14 12:49:50 +11003016 int dec_preread_active = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017
Dan Williamsa4456852007-07-09 11:56:43 -07003018 memset(&s, 0, sizeof(s));
Dan Williams600aa102008-06-28 08:32:05 +10003019 pr_debug("handling stripe %llu, state=%#lx cnt=%d, pd_idx=%d check:%d "
3020 "reconstruct:%d\n", (unsigned long long)sh->sector, sh->state,
3021 atomic_read(&sh->count), sh->pd_idx, sh->check_state,
3022 sh->reconstruct_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023
3024 spin_lock(&sh->lock);
3025 clear_bit(STRIPE_HANDLE, &sh->state);
3026 clear_bit(STRIPE_DELAYED, &sh->state);
3027
Dan Williamsa4456852007-07-09 11:56:43 -07003028 s.syncing = test_bit(STRIPE_SYNCING, &sh->state);
3029 s.expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state);
3030 s.expanded = test_bit(STRIPE_EXPAND_READY, &sh->state);
Dan Williams83de75c2008-06-28 08:31:58 +10003031
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 /* Now to look around and see what can be done */
NeilBrown9910f162006-01-06 00:20:24 -08003033 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 for (i=disks; i--; ) {
3035 mdk_rdev_t *rdev;
NeilBrowna9f326e2009-09-23 18:06:41 +10003036
3037 dev = &sh->dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038
Dan Williamsb5e98d62007-01-02 13:52:31 -07003039 pr_debug("check %d: state 0x%lx toread %p read %p write %p "
3040 "written %p\n", i, dev->flags, dev->toread, dev->read,
3041 dev->towrite, dev->written);
3042
3043 /* maybe we can request a biofill operation
3044 *
3045 * new wantfill requests are only permitted while
Dan Williams83de75c2008-06-28 08:31:58 +10003046 * ops_complete_biofill is guaranteed to be inactive
Dan Williamsb5e98d62007-01-02 13:52:31 -07003047 */
3048 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread &&
Dan Williams83de75c2008-06-28 08:31:58 +10003049 !test_bit(STRIPE_BIOFILL_RUN, &sh->state))
Dan Williamsb5e98d62007-01-02 13:52:31 -07003050 set_bit(R5_Wantfill, &dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051
3052 /* now count some things */
Dan Williamsa4456852007-07-09 11:56:43 -07003053 if (test_bit(R5_LOCKED, &dev->flags)) s.locked++;
3054 if (test_bit(R5_UPTODATE, &dev->flags)) s.uptodate++;
Dan Williamsf38e1212007-01-02 13:52:30 -07003055 if (test_bit(R5_Wantcompute, &dev->flags)) s.compute++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056
Dan Williamsb5e98d62007-01-02 13:52:31 -07003057 if (test_bit(R5_Wantfill, &dev->flags))
3058 s.to_fill++;
3059 else if (dev->toread)
Dan Williamsa4456852007-07-09 11:56:43 -07003060 s.to_read++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 if (dev->towrite) {
Dan Williamsa4456852007-07-09 11:56:43 -07003062 s.to_write++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 if (!test_bit(R5_OVERWRITE, &dev->flags))
Dan Williamsa4456852007-07-09 11:56:43 -07003064 s.non_overwrite++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 }
Dan Williamsa4456852007-07-09 11:56:43 -07003066 if (dev->written)
3067 s.written++;
NeilBrown9910f162006-01-06 00:20:24 -08003068 rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownac4090d2008-08-05 15:54:13 +10003069 if (blocked_rdev == NULL &&
3070 rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
Dan Williams6bfe0b42008-04-30 00:52:32 -07003071 blocked_rdev = rdev;
3072 atomic_inc(&rdev->nr_pending);
Dan Williams6bfe0b42008-04-30 00:52:32 -07003073 }
NeilBrown415e72d2010-06-17 17:25:21 +10003074 clear_bit(R5_Insync, &dev->flags);
3075 if (!rdev)
3076 /* Not in-sync */;
3077 else if (test_bit(In_sync, &rdev->flags))
3078 set_bit(R5_Insync, &dev->flags);
3079 else {
3080 /* could be in-sync depending on recovery/reshape status */
3081 if (sh->sector + STRIPE_SECTORS <= rdev->recovery_offset)
3082 set_bit(R5_Insync, &dev->flags);
3083 }
3084 if (!test_bit(R5_Insync, &dev->flags)) {
NeilBrown14f8d262006-01-06 00:20:14 -08003085 /* The ReadError flag will just be confusing now */
NeilBrown4e5314b2005-11-08 21:39:22 -08003086 clear_bit(R5_ReadError, &dev->flags);
3087 clear_bit(R5_ReWrite, &dev->flags);
3088 }
NeilBrown415e72d2010-06-17 17:25:21 +10003089 if (test_bit(R5_ReadError, &dev->flags))
3090 clear_bit(R5_Insync, &dev->flags);
3091 if (!test_bit(R5_Insync, &dev->flags)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003092 s.failed++;
3093 s.failed_num = i;
NeilBrown415e72d2010-06-17 17:25:21 +10003094 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 }
NeilBrown9910f162006-01-06 00:20:24 -08003096 rcu_read_unlock();
Dan Williamsb5e98d62007-01-02 13:52:31 -07003097
Dan Williams6bfe0b42008-04-30 00:52:32 -07003098 if (unlikely(blocked_rdev)) {
NeilBrownac4090d2008-08-05 15:54:13 +10003099 if (s.syncing || s.expanding || s.expanded ||
3100 s.to_write || s.written) {
3101 set_bit(STRIPE_HANDLE, &sh->state);
3102 goto unlock;
3103 }
3104 /* There is nothing for the blocked_rdev to block */
3105 rdev_dec_pending(blocked_rdev, conf->mddev);
3106 blocked_rdev = NULL;
Dan Williams6bfe0b42008-04-30 00:52:32 -07003107 }
3108
Dan Williams83de75c2008-06-28 08:31:58 +10003109 if (s.to_fill && !test_bit(STRIPE_BIOFILL_RUN, &sh->state)) {
3110 set_bit(STRIPE_OP_BIOFILL, &s.ops_request);
3111 set_bit(STRIPE_BIOFILL_RUN, &sh->state);
3112 }
Dan Williamsb5e98d62007-01-02 13:52:31 -07003113
Dan Williams45b42332007-07-09 11:56:43 -07003114 pr_debug("locked=%d uptodate=%d to_read=%d"
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115 " to_write=%d failed=%d failed_num=%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07003116 s.locked, s.uptodate, s.to_read, s.to_write,
3117 s.failed, s.failed_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 /* check if the array has lost two devices and, if so, some requests might
3119 * need to be failed
3120 */
Dan Williamsa4456852007-07-09 11:56:43 -07003121 if (s.failed > 1 && s.to_read+s.to_write+s.written)
Dan Williams1fe797e2008-06-28 09:16:30 +10003122 handle_failed_stripe(conf, sh, &s, disks, &return_bi);
Dan Williamsa4456852007-07-09 11:56:43 -07003123 if (s.failed > 1 && s.syncing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 md_done_sync(conf->mddev, STRIPE_SECTORS,0);
3125 clear_bit(STRIPE_SYNCING, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07003126 s.syncing = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 }
3128
3129 /* might be able to return some write requests if the parity block
3130 * is safe, or on a failed drive
3131 */
3132 dev = &sh->dev[sh->pd_idx];
Dan Williamsa4456852007-07-09 11:56:43 -07003133 if ( s.written &&
3134 ((test_bit(R5_Insync, &dev->flags) &&
3135 !test_bit(R5_LOCKED, &dev->flags) &&
3136 test_bit(R5_UPTODATE, &dev->flags)) ||
3137 (s.failed == 1 && s.failed_num == sh->pd_idx)))
Dan Williams1fe797e2008-06-28 09:16:30 +10003138 handle_stripe_clean_event(conf, sh, disks, &return_bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139
3140 /* Now we might consider reading some blocks, either to check/generate
3141 * parity, or to satisfy requests
3142 * or to load a block that is being partially written.
3143 */
Dan Williamsa4456852007-07-09 11:56:43 -07003144 if (s.to_read || s.non_overwrite ||
Dan Williams976ea8d2008-06-28 08:32:03 +10003145 (s.syncing && (s.uptodate + s.compute < disks)) || s.expanding)
Dan Williams1fe797e2008-06-28 09:16:30 +10003146 handle_stripe_fill5(sh, &s, disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147
Dan Williamse33129d2007-01-02 13:52:30 -07003148 /* Now we check to see if any write operations have recently
3149 * completed
3150 */
Dan Williamse0a115e2008-06-05 22:45:52 -07003151 prexor = 0;
Dan Williamsd8ee0722008-06-28 08:32:06 +10003152 if (sh->reconstruct_state == reconstruct_state_prexor_drain_result)
Dan Williamse0a115e2008-06-05 22:45:52 -07003153 prexor = 1;
Dan Williamsd8ee0722008-06-28 08:32:06 +10003154 if (sh->reconstruct_state == reconstruct_state_drain_result ||
3155 sh->reconstruct_state == reconstruct_state_prexor_drain_result) {
Dan Williams600aa102008-06-28 08:32:05 +10003156 sh->reconstruct_state = reconstruct_state_idle;
Dan Williamse33129d2007-01-02 13:52:30 -07003157
3158 /* All the 'written' buffers and the parity block are ready to
3159 * be written back to disk
3160 */
3161 BUG_ON(!test_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags));
3162 for (i = disks; i--; ) {
3163 dev = &sh->dev[i];
3164 if (test_bit(R5_LOCKED, &dev->flags) &&
3165 (i == sh->pd_idx || dev->written)) {
3166 pr_debug("Writing block %d\n", i);
3167 set_bit(R5_Wantwrite, &dev->flags);
Dan Williamse0a115e2008-06-05 22:45:52 -07003168 if (prexor)
3169 continue;
Dan Williamse33129d2007-01-02 13:52:30 -07003170 if (!test_bit(R5_Insync, &dev->flags) ||
3171 (i == sh->pd_idx && s.failed == 0))
3172 set_bit(STRIPE_INSYNC, &sh->state);
3173 }
3174 }
NeilBrown729a1862009-12-14 12:49:50 +11003175 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3176 dec_preread_active = 1;
Dan Williamse33129d2007-01-02 13:52:30 -07003177 }
3178
3179 /* Now to consider new write requests and what else, if anything
3180 * should be read. We do not handle new writes when:
3181 * 1/ A 'write' operation (copy+xor) is already in flight.
3182 * 2/ A 'check' operation is in flight, as it may clobber the parity
3183 * block.
3184 */
Dan Williams600aa102008-06-28 08:32:05 +10003185 if (s.to_write && !sh->reconstruct_state && !sh->check_state)
Dan Williams1fe797e2008-06-28 09:16:30 +10003186 handle_stripe_dirtying5(conf, sh, &s, disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187
3188 /* maybe we need to check and possibly fix the parity for this stripe
Dan Williamse89f8962007-01-02 13:52:31 -07003189 * Any reads will already have been scheduled, so we just see if enough
3190 * data is available. The parity check is held off while parity
3191 * dependent operations are in flight.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 */
Dan Williamsecc65c92008-06-28 08:31:57 +10003193 if (sh->check_state ||
3194 (s.syncing && s.locked == 0 &&
Dan Williams976ea8d2008-06-28 08:32:03 +10003195 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
Dan Williamsecc65c92008-06-28 08:31:57 +10003196 !test_bit(STRIPE_INSYNC, &sh->state)))
Dan Williamsa4456852007-07-09 11:56:43 -07003197 handle_parity_checks5(conf, sh, &s, disks);
Dan Williamse89f8962007-01-02 13:52:31 -07003198
Dan Williamsa4456852007-07-09 11:56:43 -07003199 if (s.syncing && s.locked == 0 && test_bit(STRIPE_INSYNC, &sh->state)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 md_done_sync(conf->mddev, STRIPE_SECTORS,1);
3201 clear_bit(STRIPE_SYNCING, &sh->state);
3202 }
NeilBrown4e5314b2005-11-08 21:39:22 -08003203
3204 /* If the failed drive is just a ReadError, then we might need to progress
3205 * the repair/check process
3206 */
Dan Williamsa4456852007-07-09 11:56:43 -07003207 if (s.failed == 1 && !conf->mddev->ro &&
3208 test_bit(R5_ReadError, &sh->dev[s.failed_num].flags)
3209 && !test_bit(R5_LOCKED, &sh->dev[s.failed_num].flags)
3210 && test_bit(R5_UPTODATE, &sh->dev[s.failed_num].flags)
NeilBrown4e5314b2005-11-08 21:39:22 -08003211 ) {
Dan Williamsa4456852007-07-09 11:56:43 -07003212 dev = &sh->dev[s.failed_num];
NeilBrown4e5314b2005-11-08 21:39:22 -08003213 if (!test_bit(R5_ReWrite, &dev->flags)) {
3214 set_bit(R5_Wantwrite, &dev->flags);
3215 set_bit(R5_ReWrite, &dev->flags);
3216 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsa4456852007-07-09 11:56:43 -07003217 s.locked++;
NeilBrown4e5314b2005-11-08 21:39:22 -08003218 } else {
3219 /* let's read it back */
3220 set_bit(R5_Wantread, &dev->flags);
3221 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsa4456852007-07-09 11:56:43 -07003222 s.locked++;
NeilBrown4e5314b2005-11-08 21:39:22 -08003223 }
3224 }
3225
Dan Williams600aa102008-06-28 08:32:05 +10003226 /* Finish reconstruct operations initiated by the expansion process */
3227 if (sh->reconstruct_state == reconstruct_state_result) {
NeilBrownab69ae12009-03-31 15:26:47 +11003228 struct stripe_head *sh2
NeilBrowna8c906c2009-06-09 14:39:59 +10003229 = get_active_stripe(conf, sh->sector, 1, 1, 1);
NeilBrownab69ae12009-03-31 15:26:47 +11003230 if (sh2 && test_bit(STRIPE_EXPAND_SOURCE, &sh2->state)) {
3231 /* sh cannot be written until sh2 has been read.
3232 * so arrange for sh to be delayed a little
3233 */
3234 set_bit(STRIPE_DELAYED, &sh->state);
3235 set_bit(STRIPE_HANDLE, &sh->state);
3236 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE,
3237 &sh2->state))
3238 atomic_inc(&conf->preread_active_stripes);
3239 release_stripe(sh2);
3240 goto unlock;
3241 }
3242 if (sh2)
3243 release_stripe(sh2);
3244
Dan Williams600aa102008-06-28 08:32:05 +10003245 sh->reconstruct_state = reconstruct_state_idle;
Dan Williamsf0a50d32007-01-02 13:52:31 -07003246 clear_bit(STRIPE_EXPANDING, &sh->state);
Dan Williams23397882008-07-23 20:05:34 -07003247 for (i = conf->raid_disks; i--; ) {
Dan Williamsf0a50d32007-01-02 13:52:31 -07003248 set_bit(R5_Wantwrite, &sh->dev[i].flags);
Dan Williams23397882008-07-23 20:05:34 -07003249 set_bit(R5_LOCKED, &sh->dev[i].flags);
Neil Brownefe31142008-06-28 08:31:14 +10003250 s.locked++;
Dan Williams23397882008-07-23 20:05:34 -07003251 }
Dan Williamsf0a50d32007-01-02 13:52:31 -07003252 }
3253
3254 if (s.expanded && test_bit(STRIPE_EXPANDING, &sh->state) &&
Dan Williams600aa102008-06-28 08:32:05 +10003255 !sh->reconstruct_state) {
NeilBrownccfcc3c2006-03-27 01:18:09 -08003256 /* Need to write out all blocks after computing parity */
3257 sh->disks = conf->raid_disks;
NeilBrown911d4ee2009-03-31 14:39:38 +11003258 stripe_set_idx(sh->sector, conf, 0, sh);
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07003259 schedule_reconstruction(sh, &s, 1, 1);
Dan Williams600aa102008-06-28 08:32:05 +10003260 } else if (s.expanded && !sh->reconstruct_state && s.locked == 0) {
NeilBrownccfcc3c2006-03-27 01:18:09 -08003261 clear_bit(STRIPE_EXPAND_READY, &sh->state);
NeilBrownf6705572006-03-27 01:18:11 -08003262 atomic_dec(&conf->reshape_stripes);
NeilBrownccfcc3c2006-03-27 01:18:09 -08003263 wake_up(&conf->wait_for_overlap);
3264 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
3265 }
3266
Dan Williams0f94e87c2008-01-08 15:32:53 -08003267 if (s.expanding && s.locked == 0 &&
Dan Williams976ea8d2008-06-28 08:32:03 +10003268 !test_bit(STRIPE_COMPUTE_RUN, &sh->state))
Dan Williamsa4456852007-07-09 11:56:43 -07003269 handle_stripe_expansion(conf, sh, NULL);
NeilBrownccfcc3c2006-03-27 01:18:09 -08003270
Dan Williams6bfe0b42008-04-30 00:52:32 -07003271 unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 spin_unlock(&sh->lock);
3273
Dan Williams6bfe0b42008-04-30 00:52:32 -07003274 /* wait for this device to become unblocked */
3275 if (unlikely(blocked_rdev))
3276 md_wait_for_blocked_rdev(blocked_rdev, conf->mddev);
3277
Dan Williams600aa102008-06-28 08:32:05 +10003278 if (s.ops_request)
Dan Williamsac6b53b2009-07-14 13:40:19 -07003279 raid_run_ops(sh, s.ops_request);
Dan Williamsd84e0f12007-01-02 13:52:30 -07003280
Dan Williamsc4e5ac02008-06-28 08:31:53 +10003281 ops_run_io(sh, &s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282
NeilBrown729a1862009-12-14 12:49:50 +11003283 if (dec_preread_active) {
3284 /* We delay this until after ops_run_io so that if make_request
3285 * is waiting on a barrier, it won't continue until the writes
3286 * have actually been submitted.
3287 */
3288 atomic_dec(&conf->preread_active_stripes);
3289 if (atomic_read(&conf->preread_active_stripes) <
3290 IO_THRESHOLD)
3291 md_wakeup_thread(conf->mddev->thread);
3292 }
Dan Williamsa4456852007-07-09 11:56:43 -07003293 return_io(return_bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294}
3295
NeilBrown14425772009-10-16 15:55:25 +11003296static void handle_stripe6(struct stripe_head *sh)
NeilBrown16a53ec2006-06-26 00:27:38 -07003297{
NeilBrownbff61972009-03-31 14:33:13 +11003298 raid5_conf_t *conf = sh->raid_conf;
NeilBrownf4168852007-02-28 20:11:53 -08003299 int disks = sh->disks;
Dan Williamsa4456852007-07-09 11:56:43 -07003300 struct bio *return_bi = NULL;
NeilBrown34e04e82009-03-31 15:10:16 +11003301 int i, pd_idx = sh->pd_idx, qd_idx = sh->qd_idx;
Dan Williamsa4456852007-07-09 11:56:43 -07003302 struct stripe_head_state s;
3303 struct r6_state r6s;
NeilBrown16a53ec2006-06-26 00:27:38 -07003304 struct r5dev *dev, *pdev, *qdev;
Dan Williams6bfe0b42008-04-30 00:52:32 -07003305 mdk_rdev_t *blocked_rdev = NULL;
NeilBrown729a1862009-12-14 12:49:50 +11003306 int dec_preread_active = 0;
NeilBrown16a53ec2006-06-26 00:27:38 -07003307
Dan Williams45b42332007-07-09 11:56:43 -07003308 pr_debug("handling stripe %llu, state=%#lx cnt=%d, "
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003309 "pd_idx=%d, qd_idx=%d\n, check:%d, reconstruct:%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07003310 (unsigned long long)sh->sector, sh->state,
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003311 atomic_read(&sh->count), pd_idx, qd_idx,
3312 sh->check_state, sh->reconstruct_state);
Dan Williamsa4456852007-07-09 11:56:43 -07003313 memset(&s, 0, sizeof(s));
NeilBrown16a53ec2006-06-26 00:27:38 -07003314
3315 spin_lock(&sh->lock);
3316 clear_bit(STRIPE_HANDLE, &sh->state);
3317 clear_bit(STRIPE_DELAYED, &sh->state);
3318
Dan Williamsa4456852007-07-09 11:56:43 -07003319 s.syncing = test_bit(STRIPE_SYNCING, &sh->state);
3320 s.expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state);
3321 s.expanded = test_bit(STRIPE_EXPAND_READY, &sh->state);
NeilBrown16a53ec2006-06-26 00:27:38 -07003322 /* Now to look around and see what can be done */
3323
3324 rcu_read_lock();
3325 for (i=disks; i--; ) {
3326 mdk_rdev_t *rdev;
3327 dev = &sh->dev[i];
NeilBrown16a53ec2006-06-26 00:27:38 -07003328
Dan Williams45b42332007-07-09 11:56:43 -07003329 pr_debug("check %d: state 0x%lx read %p write %p written %p\n",
NeilBrown16a53ec2006-06-26 00:27:38 -07003330 i, dev->flags, dev->toread, dev->towrite, dev->written);
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003331 /* maybe we can reply to a read
3332 *
3333 * new wantfill requests are only permitted while
3334 * ops_complete_biofill is guaranteed to be inactive
3335 */
3336 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread &&
3337 !test_bit(STRIPE_BIOFILL_RUN, &sh->state))
3338 set_bit(R5_Wantfill, &dev->flags);
NeilBrown16a53ec2006-06-26 00:27:38 -07003339
3340 /* now count some things */
Dan Williamsa4456852007-07-09 11:56:43 -07003341 if (test_bit(R5_LOCKED, &dev->flags)) s.locked++;
3342 if (test_bit(R5_UPTODATE, &dev->flags)) s.uptodate++;
Dan Williams2d6e4ec2009-09-16 12:11:54 -07003343 if (test_bit(R5_Wantcompute, &dev->flags)) {
3344 s.compute++;
3345 BUG_ON(s.compute > 2);
3346 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003347
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003348 if (test_bit(R5_Wantfill, &dev->flags)) {
3349 s.to_fill++;
3350 } else if (dev->toread)
Dan Williamsa4456852007-07-09 11:56:43 -07003351 s.to_read++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003352 if (dev->towrite) {
Dan Williamsa4456852007-07-09 11:56:43 -07003353 s.to_write++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003354 if (!test_bit(R5_OVERWRITE, &dev->flags))
Dan Williamsa4456852007-07-09 11:56:43 -07003355 s.non_overwrite++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003356 }
Dan Williamsa4456852007-07-09 11:56:43 -07003357 if (dev->written)
3358 s.written++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003359 rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownac4090d2008-08-05 15:54:13 +10003360 if (blocked_rdev == NULL &&
3361 rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
Dan Williams6bfe0b42008-04-30 00:52:32 -07003362 blocked_rdev = rdev;
3363 atomic_inc(&rdev->nr_pending);
Dan Williams6bfe0b42008-04-30 00:52:32 -07003364 }
NeilBrown415e72d2010-06-17 17:25:21 +10003365 clear_bit(R5_Insync, &dev->flags);
3366 if (!rdev)
3367 /* Not in-sync */;
3368 else if (test_bit(In_sync, &rdev->flags))
3369 set_bit(R5_Insync, &dev->flags);
3370 else {
3371 /* in sync if before recovery_offset */
3372 if (sh->sector + STRIPE_SECTORS <= rdev->recovery_offset)
3373 set_bit(R5_Insync, &dev->flags);
3374 }
3375 if (!test_bit(R5_Insync, &dev->flags)) {
NeilBrown16a53ec2006-06-26 00:27:38 -07003376 /* The ReadError flag will just be confusing now */
3377 clear_bit(R5_ReadError, &dev->flags);
3378 clear_bit(R5_ReWrite, &dev->flags);
3379 }
NeilBrown415e72d2010-06-17 17:25:21 +10003380 if (test_bit(R5_ReadError, &dev->flags))
3381 clear_bit(R5_Insync, &dev->flags);
3382 if (!test_bit(R5_Insync, &dev->flags)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003383 if (s.failed < 2)
3384 r6s.failed_num[s.failed] = i;
3385 s.failed++;
NeilBrown415e72d2010-06-17 17:25:21 +10003386 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003387 }
3388 rcu_read_unlock();
Dan Williams6bfe0b42008-04-30 00:52:32 -07003389
3390 if (unlikely(blocked_rdev)) {
NeilBrownac4090d2008-08-05 15:54:13 +10003391 if (s.syncing || s.expanding || s.expanded ||
3392 s.to_write || s.written) {
3393 set_bit(STRIPE_HANDLE, &sh->state);
3394 goto unlock;
3395 }
3396 /* There is nothing for the blocked_rdev to block */
3397 rdev_dec_pending(blocked_rdev, conf->mddev);
3398 blocked_rdev = NULL;
Dan Williams6bfe0b42008-04-30 00:52:32 -07003399 }
NeilBrownac4090d2008-08-05 15:54:13 +10003400
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003401 if (s.to_fill && !test_bit(STRIPE_BIOFILL_RUN, &sh->state)) {
3402 set_bit(STRIPE_OP_BIOFILL, &s.ops_request);
3403 set_bit(STRIPE_BIOFILL_RUN, &sh->state);
3404 }
3405
Dan Williams45b42332007-07-09 11:56:43 -07003406 pr_debug("locked=%d uptodate=%d to_read=%d"
NeilBrown16a53ec2006-06-26 00:27:38 -07003407 " to_write=%d failed=%d failed_num=%d,%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07003408 s.locked, s.uptodate, s.to_read, s.to_write, s.failed,
3409 r6s.failed_num[0], r6s.failed_num[1]);
3410 /* check if the array has lost >2 devices and, if so, some requests
3411 * might need to be failed
NeilBrown16a53ec2006-06-26 00:27:38 -07003412 */
Dan Williamsa4456852007-07-09 11:56:43 -07003413 if (s.failed > 2 && s.to_read+s.to_write+s.written)
Dan Williams1fe797e2008-06-28 09:16:30 +10003414 handle_failed_stripe(conf, sh, &s, disks, &return_bi);
Dan Williamsa4456852007-07-09 11:56:43 -07003415 if (s.failed > 2 && s.syncing) {
NeilBrown16a53ec2006-06-26 00:27:38 -07003416 md_done_sync(conf->mddev, STRIPE_SECTORS,0);
3417 clear_bit(STRIPE_SYNCING, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07003418 s.syncing = 0;
NeilBrown16a53ec2006-06-26 00:27:38 -07003419 }
3420
3421 /*
3422 * might be able to return some write requests if the parity blocks
3423 * are safe, or on a failed drive
3424 */
3425 pdev = &sh->dev[pd_idx];
Dan Williamsa4456852007-07-09 11:56:43 -07003426 r6s.p_failed = (s.failed >= 1 && r6s.failed_num[0] == pd_idx)
3427 || (s.failed >= 2 && r6s.failed_num[1] == pd_idx);
NeilBrown34e04e82009-03-31 15:10:16 +11003428 qdev = &sh->dev[qd_idx];
3429 r6s.q_failed = (s.failed >= 1 && r6s.failed_num[0] == qd_idx)
3430 || (s.failed >= 2 && r6s.failed_num[1] == qd_idx);
NeilBrown16a53ec2006-06-26 00:27:38 -07003431
Dan Williamsa4456852007-07-09 11:56:43 -07003432 if ( s.written &&
3433 ( r6s.p_failed || ((test_bit(R5_Insync, &pdev->flags)
NeilBrown16a53ec2006-06-26 00:27:38 -07003434 && !test_bit(R5_LOCKED, &pdev->flags)
Dan Williamsa4456852007-07-09 11:56:43 -07003435 && test_bit(R5_UPTODATE, &pdev->flags)))) &&
3436 ( r6s.q_failed || ((test_bit(R5_Insync, &qdev->flags)
NeilBrown16a53ec2006-06-26 00:27:38 -07003437 && !test_bit(R5_LOCKED, &qdev->flags)
Dan Williamsa4456852007-07-09 11:56:43 -07003438 && test_bit(R5_UPTODATE, &qdev->flags)))))
Dan Williams1fe797e2008-06-28 09:16:30 +10003439 handle_stripe_clean_event(conf, sh, disks, &return_bi);
NeilBrown16a53ec2006-06-26 00:27:38 -07003440
3441 /* Now we might consider reading some blocks, either to check/generate
3442 * parity, or to satisfy requests
3443 * or to load a block that is being partially written.
3444 */
Dan Williamsa4456852007-07-09 11:56:43 -07003445 if (s.to_read || s.non_overwrite || (s.to_write && s.failed) ||
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003446 (s.syncing && (s.uptodate + s.compute < disks)) || s.expanding)
Dan Williams1fe797e2008-06-28 09:16:30 +10003447 handle_stripe_fill6(sh, &s, &r6s, disks);
NeilBrown16a53ec2006-06-26 00:27:38 -07003448
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003449 /* Now we check to see if any write operations have recently
3450 * completed
3451 */
3452 if (sh->reconstruct_state == reconstruct_state_drain_result) {
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003453
3454 sh->reconstruct_state = reconstruct_state_idle;
3455 /* All the 'written' buffers and the parity blocks are ready to
3456 * be written back to disk
3457 */
3458 BUG_ON(!test_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags));
3459 BUG_ON(!test_bit(R5_UPTODATE, &sh->dev[qd_idx].flags));
3460 for (i = disks; i--; ) {
3461 dev = &sh->dev[i];
3462 if (test_bit(R5_LOCKED, &dev->flags) &&
3463 (i == sh->pd_idx || i == qd_idx ||
3464 dev->written)) {
3465 pr_debug("Writing block %d\n", i);
3466 BUG_ON(!test_bit(R5_UPTODATE, &dev->flags));
3467 set_bit(R5_Wantwrite, &dev->flags);
3468 if (!test_bit(R5_Insync, &dev->flags) ||
3469 ((i == sh->pd_idx || i == qd_idx) &&
3470 s.failed == 0))
3471 set_bit(STRIPE_INSYNC, &sh->state);
3472 }
3473 }
NeilBrown729a1862009-12-14 12:49:50 +11003474 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3475 dec_preread_active = 1;
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003476 }
3477
Yuri Tikhonova9b39a72009-08-29 19:13:12 -07003478 /* Now to consider new write requests and what else, if anything
3479 * should be read. We do not handle new writes when:
3480 * 1/ A 'write' operation (copy+gen_syndrome) is already in flight.
3481 * 2/ A 'check' operation is in flight, as it may clobber the parity
3482 * block.
3483 */
3484 if (s.to_write && !sh->reconstruct_state && !sh->check_state)
Dan Williams1fe797e2008-06-28 09:16:30 +10003485 handle_stripe_dirtying6(conf, sh, &s, &r6s, disks);
NeilBrown16a53ec2006-06-26 00:27:38 -07003486
3487 /* maybe we need to check and possibly fix the parity for this stripe
Dan Williamsa4456852007-07-09 11:56:43 -07003488 * Any reads will already have been scheduled, so we just see if enough
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003489 * data is available. The parity check is held off while parity
3490 * dependent operations are in flight.
NeilBrown16a53ec2006-06-26 00:27:38 -07003491 */
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003492 if (sh->check_state ||
3493 (s.syncing && s.locked == 0 &&
3494 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
3495 !test_bit(STRIPE_INSYNC, &sh->state)))
Dan Williams36d1c642009-07-14 11:48:22 -07003496 handle_parity_checks6(conf, sh, &s, &r6s, disks);
NeilBrown16a53ec2006-06-26 00:27:38 -07003497
Dan Williamsa4456852007-07-09 11:56:43 -07003498 if (s.syncing && s.locked == 0 && test_bit(STRIPE_INSYNC, &sh->state)) {
NeilBrown16a53ec2006-06-26 00:27:38 -07003499 md_done_sync(conf->mddev, STRIPE_SECTORS,1);
3500 clear_bit(STRIPE_SYNCING, &sh->state);
3501 }
3502
3503 /* If the failed drives are just a ReadError, then we might need
3504 * to progress the repair/check process
3505 */
Dan Williamsa4456852007-07-09 11:56:43 -07003506 if (s.failed <= 2 && !conf->mddev->ro)
3507 for (i = 0; i < s.failed; i++) {
3508 dev = &sh->dev[r6s.failed_num[i]];
NeilBrown16a53ec2006-06-26 00:27:38 -07003509 if (test_bit(R5_ReadError, &dev->flags)
3510 && !test_bit(R5_LOCKED, &dev->flags)
3511 && test_bit(R5_UPTODATE, &dev->flags)
3512 ) {
3513 if (!test_bit(R5_ReWrite, &dev->flags)) {
3514 set_bit(R5_Wantwrite, &dev->flags);
3515 set_bit(R5_ReWrite, &dev->flags);
3516 set_bit(R5_LOCKED, &dev->flags);
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003517 s.locked++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003518 } else {
3519 /* let's read it back */
3520 set_bit(R5_Wantread, &dev->flags);
3521 set_bit(R5_LOCKED, &dev->flags);
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003522 s.locked++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003523 }
3524 }
3525 }
NeilBrownf4168852007-02-28 20:11:53 -08003526
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003527 /* Finish reconstruct operations initiated by the expansion process */
3528 if (sh->reconstruct_state == reconstruct_state_result) {
3529 sh->reconstruct_state = reconstruct_state_idle;
3530 clear_bit(STRIPE_EXPANDING, &sh->state);
3531 for (i = conf->raid_disks; i--; ) {
3532 set_bit(R5_Wantwrite, &sh->dev[i].flags);
3533 set_bit(R5_LOCKED, &sh->dev[i].flags);
3534 s.locked++;
3535 }
3536 }
3537
3538 if (s.expanded && test_bit(STRIPE_EXPANDING, &sh->state) &&
3539 !sh->reconstruct_state) {
NeilBrownab69ae12009-03-31 15:26:47 +11003540 struct stripe_head *sh2
NeilBrowna8c906c2009-06-09 14:39:59 +10003541 = get_active_stripe(conf, sh->sector, 1, 1, 1);
NeilBrownab69ae12009-03-31 15:26:47 +11003542 if (sh2 && test_bit(STRIPE_EXPAND_SOURCE, &sh2->state)) {
3543 /* sh cannot be written until sh2 has been read.
3544 * so arrange for sh to be delayed a little
3545 */
3546 set_bit(STRIPE_DELAYED, &sh->state);
3547 set_bit(STRIPE_HANDLE, &sh->state);
3548 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE,
3549 &sh2->state))
3550 atomic_inc(&conf->preread_active_stripes);
3551 release_stripe(sh2);
3552 goto unlock;
3553 }
3554 if (sh2)
3555 release_stripe(sh2);
3556
NeilBrownf4168852007-02-28 20:11:53 -08003557 /* Need to write out all blocks after computing P&Q */
3558 sh->disks = conf->raid_disks;
NeilBrown911d4ee2009-03-31 14:39:38 +11003559 stripe_set_idx(sh->sector, conf, 0, sh);
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003560 schedule_reconstruction(sh, &s, 1, 1);
3561 } else if (s.expanded && !sh->reconstruct_state && s.locked == 0) {
NeilBrownf4168852007-02-28 20:11:53 -08003562 clear_bit(STRIPE_EXPAND_READY, &sh->state);
3563 atomic_dec(&conf->reshape_stripes);
3564 wake_up(&conf->wait_for_overlap);
3565 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
3566 }
3567
Dan Williams0f94e87c2008-01-08 15:32:53 -08003568 if (s.expanding && s.locked == 0 &&
Dan Williams976ea8d2008-06-28 08:32:03 +10003569 !test_bit(STRIPE_COMPUTE_RUN, &sh->state))
Dan Williamsa4456852007-07-09 11:56:43 -07003570 handle_stripe_expansion(conf, sh, &r6s);
NeilBrownf4168852007-02-28 20:11:53 -08003571
Dan Williams6bfe0b42008-04-30 00:52:32 -07003572 unlock:
NeilBrown16a53ec2006-06-26 00:27:38 -07003573 spin_unlock(&sh->lock);
3574
Dan Williams6bfe0b42008-04-30 00:52:32 -07003575 /* wait for this device to become unblocked */
3576 if (unlikely(blocked_rdev))
3577 md_wait_for_blocked_rdev(blocked_rdev, conf->mddev);
3578
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003579 if (s.ops_request)
3580 raid_run_ops(sh, s.ops_request);
3581
Dan Williamsf0e43bc2008-06-28 08:31:55 +10003582 ops_run_io(sh, &s);
3583
NeilBrown729a1862009-12-14 12:49:50 +11003584
3585 if (dec_preread_active) {
3586 /* We delay this until after ops_run_io so that if make_request
3587 * is waiting on a barrier, it won't continue until the writes
3588 * have actually been submitted.
3589 */
3590 atomic_dec(&conf->preread_active_stripes);
3591 if (atomic_read(&conf->preread_active_stripes) <
3592 IO_THRESHOLD)
3593 md_wakeup_thread(conf->mddev->thread);
3594 }
3595
Dan Williamsa4456852007-07-09 11:56:43 -07003596 return_io(return_bi);
NeilBrown16a53ec2006-06-26 00:27:38 -07003597}
3598
NeilBrown14425772009-10-16 15:55:25 +11003599static void handle_stripe(struct stripe_head *sh)
NeilBrown16a53ec2006-06-26 00:27:38 -07003600{
3601 if (sh->raid_conf->level == 6)
NeilBrown14425772009-10-16 15:55:25 +11003602 handle_stripe6(sh);
NeilBrown16a53ec2006-06-26 00:27:38 -07003603 else
NeilBrown14425772009-10-16 15:55:25 +11003604 handle_stripe5(sh);
NeilBrown16a53ec2006-06-26 00:27:38 -07003605}
3606
Arjan van de Ven858119e2006-01-14 13:20:43 -08003607static void raid5_activate_delayed(raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608{
3609 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD) {
3610 while (!list_empty(&conf->delayed_list)) {
3611 struct list_head *l = conf->delayed_list.next;
3612 struct stripe_head *sh;
3613 sh = list_entry(l, struct stripe_head, lru);
3614 list_del_init(l);
3615 clear_bit(STRIPE_DELAYED, &sh->state);
3616 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3617 atomic_inc(&conf->preread_active_stripes);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003618 list_add_tail(&sh->lru, &conf->hold_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619 }
NeilBrown6ed30032008-02-06 01:40:00 -08003620 } else
3621 blk_plug_device(conf->mddev->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622}
3623
Arjan van de Ven858119e2006-01-14 13:20:43 -08003624static void activate_bit_delay(raid5_conf_t *conf)
NeilBrown72626682005-09-09 16:23:54 -07003625{
3626 /* device_lock is held */
3627 struct list_head head;
3628 list_add(&head, &conf->bitmap_list);
3629 list_del_init(&conf->bitmap_list);
3630 while (!list_empty(&head)) {
3631 struct stripe_head *sh = list_entry(head.next, struct stripe_head, lru);
3632 list_del_init(&sh->lru);
3633 atomic_inc(&sh->count);
3634 __release_stripe(conf, sh);
3635 }
3636}
3637
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638static void unplug_slaves(mddev_t *mddev)
3639{
NeilBrown070ec552009-06-16 16:54:21 +10003640 raid5_conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641 int i;
NeilBrown5e5e3e72009-10-16 16:35:30 +11003642 int devs = max(conf->raid_disks, conf->previous_raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643
3644 rcu_read_lock();
NeilBrown5e5e3e72009-10-16 16:35:30 +11003645 for (i = 0; i < devs; i++) {
Suzanne Woodd6065f72005-11-08 21:39:27 -08003646 mdk_rdev_t *rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownb2d444d2005-11-08 21:39:31 -08003647 if (rdev && !test_bit(Faulty, &rdev->flags) && atomic_read(&rdev->nr_pending)) {
Jens Axboe165125e2007-07-24 09:28:11 +02003648 struct request_queue *r_queue = bdev_get_queue(rdev->bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649
3650 atomic_inc(&rdev->nr_pending);
3651 rcu_read_unlock();
3652
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -05003653 blk_unplug(r_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654
3655 rdev_dec_pending(rdev, mddev);
3656 rcu_read_lock();
3657 }
3658 }
3659 rcu_read_unlock();
3660}
3661
Jens Axboe165125e2007-07-24 09:28:11 +02003662static void raid5_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663{
3664 mddev_t *mddev = q->queuedata;
NeilBrown070ec552009-06-16 16:54:21 +10003665 raid5_conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666 unsigned long flags;
3667
3668 spin_lock_irqsave(&conf->device_lock, flags);
3669
NeilBrown72626682005-09-09 16:23:54 -07003670 if (blk_remove_plug(q)) {
3671 conf->seq_flush++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672 raid5_activate_delayed(conf);
NeilBrown72626682005-09-09 16:23:54 -07003673 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674 md_wakeup_thread(mddev->thread);
3675
3676 spin_unlock_irqrestore(&conf->device_lock, flags);
3677
3678 unplug_slaves(mddev);
3679}
3680
NeilBrownf022b2f2006-10-03 01:15:56 -07003681static int raid5_congested(void *data, int bits)
3682{
3683 mddev_t *mddev = data;
NeilBrown070ec552009-06-16 16:54:21 +10003684 raid5_conf_t *conf = mddev->private;
NeilBrownf022b2f2006-10-03 01:15:56 -07003685
3686 /* No difference between reads and writes. Just check
3687 * how busy the stripe_cache is
3688 */
NeilBrown3fa841d2009-09-23 18:10:29 +10003689
3690 if (mddev_congested(mddev, bits))
3691 return 1;
NeilBrownf022b2f2006-10-03 01:15:56 -07003692 if (conf->inactive_blocked)
3693 return 1;
3694 if (conf->quiesce)
3695 return 1;
3696 if (list_empty_careful(&conf->inactive_list))
3697 return 1;
3698
3699 return 0;
3700}
3701
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003702/* We want read requests to align with chunks where possible,
3703 * but write requests don't need to.
3704 */
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003705static int raid5_mergeable_bvec(struct request_queue *q,
3706 struct bvec_merge_data *bvm,
3707 struct bio_vec *biovec)
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003708{
3709 mddev_t *mddev = q->queuedata;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003710 sector_t sector = bvm->bi_sector + get_start_sect(bvm->bi_bdev);
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003711 int max;
Andre Noll9d8f0362009-06-18 08:45:01 +10003712 unsigned int chunk_sectors = mddev->chunk_sectors;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003713 unsigned int bio_sectors = bvm->bi_size >> 9;
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003714
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003715 if ((bvm->bi_rw & 1) == WRITE)
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003716 return biovec->bv_len; /* always allow writes to be mergeable */
3717
Andre Noll664e7c42009-06-18 08:45:27 +10003718 if (mddev->new_chunk_sectors < mddev->chunk_sectors)
3719 chunk_sectors = mddev->new_chunk_sectors;
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003720 max = (chunk_sectors - ((sector & (chunk_sectors - 1)) + bio_sectors)) << 9;
3721 if (max < 0) max = 0;
3722 if (max <= biovec->bv_len && bio_sectors == 0)
3723 return biovec->bv_len;
3724 else
3725 return max;
3726}
3727
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003728
3729static int in_chunk_boundary(mddev_t *mddev, struct bio *bio)
3730{
3731 sector_t sector = bio->bi_sector + get_start_sect(bio->bi_bdev);
Andre Noll9d8f0362009-06-18 08:45:01 +10003732 unsigned int chunk_sectors = mddev->chunk_sectors;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003733 unsigned int bio_sectors = bio->bi_size >> 9;
3734
Andre Noll664e7c42009-06-18 08:45:27 +10003735 if (mddev->new_chunk_sectors < mddev->chunk_sectors)
3736 chunk_sectors = mddev->new_chunk_sectors;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003737 return chunk_sectors >=
3738 ((sector & (chunk_sectors - 1)) + bio_sectors);
3739}
3740
3741/*
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003742 * add bio to the retry LIFO ( in O(1) ... we are in interrupt )
3743 * later sampled by raid5d.
3744 */
3745static void add_bio_to_retry(struct bio *bi,raid5_conf_t *conf)
3746{
3747 unsigned long flags;
3748
3749 spin_lock_irqsave(&conf->device_lock, flags);
3750
3751 bi->bi_next = conf->retry_read_aligned_list;
3752 conf->retry_read_aligned_list = bi;
3753
3754 spin_unlock_irqrestore(&conf->device_lock, flags);
3755 md_wakeup_thread(conf->mddev->thread);
3756}
3757
3758
3759static struct bio *remove_bio_from_retry(raid5_conf_t *conf)
3760{
3761 struct bio *bi;
3762
3763 bi = conf->retry_read_aligned;
3764 if (bi) {
3765 conf->retry_read_aligned = NULL;
3766 return bi;
3767 }
3768 bi = conf->retry_read_aligned_list;
3769 if(bi) {
Neil Brown387bb172007-02-08 14:20:29 -08003770 conf->retry_read_aligned_list = bi->bi_next;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003771 bi->bi_next = NULL;
Jens Axboe960e7392008-08-15 10:41:18 +02003772 /*
3773 * this sets the active strip count to 1 and the processed
3774 * strip count to zero (upper 8 bits)
3775 */
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003776 bi->bi_phys_segments = 1; /* biased count of active stripes */
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003777 }
3778
3779 return bi;
3780}
3781
3782
3783/*
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003784 * The "raid5_align_endio" should check if the read succeeded and if it
3785 * did, call bio_endio on the original bio (having bio_put the new bio
3786 * first).
3787 * If the read failed..
3788 */
NeilBrown6712ecf2007-09-27 12:47:43 +02003789static void raid5_align_endio(struct bio *bi, int error)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003790{
3791 struct bio* raid_bi = bi->bi_private;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003792 mddev_t *mddev;
3793 raid5_conf_t *conf;
3794 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
3795 mdk_rdev_t *rdev;
3796
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003797 bio_put(bi);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003798
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003799 rdev = (void*)raid_bi->bi_next;
3800 raid_bi->bi_next = NULL;
NeilBrown2b7f2222010-03-25 16:06:03 +11003801 mddev = rdev->mddev;
3802 conf = mddev->private;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003803
3804 rdev_dec_pending(rdev, conf->mddev);
3805
3806 if (!error && uptodate) {
NeilBrown6712ecf2007-09-27 12:47:43 +02003807 bio_endio(raid_bi, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003808 if (atomic_dec_and_test(&conf->active_aligned_reads))
3809 wake_up(&conf->wait_for_stripe);
NeilBrown6712ecf2007-09-27 12:47:43 +02003810 return;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003811 }
3812
3813
Dan Williams45b42332007-07-09 11:56:43 -07003814 pr_debug("raid5_align_endio : io error...handing IO for a retry\n");
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003815
3816 add_bio_to_retry(raid_bi, conf);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003817}
3818
Neil Brown387bb172007-02-08 14:20:29 -08003819static int bio_fits_rdev(struct bio *bi)
3820{
Jens Axboe165125e2007-07-24 09:28:11 +02003821 struct request_queue *q = bdev_get_queue(bi->bi_bdev);
Neil Brown387bb172007-02-08 14:20:29 -08003822
Martin K. Petersenae03bf62009-05-22 17:17:50 -04003823 if ((bi->bi_size>>9) > queue_max_sectors(q))
Neil Brown387bb172007-02-08 14:20:29 -08003824 return 0;
3825 blk_recount_segments(q, bi);
Martin K. Petersen8a783622010-02-26 00:20:39 -05003826 if (bi->bi_phys_segments > queue_max_segments(q))
Neil Brown387bb172007-02-08 14:20:29 -08003827 return 0;
3828
3829 if (q->merge_bvec_fn)
3830 /* it's too hard to apply the merge_bvec_fn at this stage,
3831 * just just give up
3832 */
3833 return 0;
3834
3835 return 1;
3836}
3837
3838
NeilBrown21a52c62010-04-01 15:02:13 +11003839static int chunk_aligned_read(mddev_t *mddev, struct bio * raid_bio)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003840{
NeilBrown070ec552009-06-16 16:54:21 +10003841 raid5_conf_t *conf = mddev->private;
NeilBrown8553fe7ec2009-12-14 12:49:47 +11003842 int dd_idx;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003843 struct bio* align_bi;
3844 mdk_rdev_t *rdev;
3845
3846 if (!in_chunk_boundary(mddev, raid_bio)) {
Dan Williams45b42332007-07-09 11:56:43 -07003847 pr_debug("chunk_aligned_read : non aligned\n");
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003848 return 0;
3849 }
3850 /*
NeilBrown99c0fb52009-03-31 14:39:38 +11003851 * use bio_clone to make a copy of the bio
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003852 */
3853 align_bi = bio_clone(raid_bio, GFP_NOIO);
3854 if (!align_bi)
3855 return 0;
3856 /*
3857 * set bi_end_io to a new function, and set bi_private to the
3858 * original bio.
3859 */
3860 align_bi->bi_end_io = raid5_align_endio;
3861 align_bi->bi_private = raid_bio;
3862 /*
3863 * compute position
3864 */
NeilBrown112bf892009-03-31 14:39:38 +11003865 align_bi->bi_sector = raid5_compute_sector(conf, raid_bio->bi_sector,
3866 0,
NeilBrown911d4ee2009-03-31 14:39:38 +11003867 &dd_idx, NULL);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003868
3869 rcu_read_lock();
3870 rdev = rcu_dereference(conf->disks[dd_idx].rdev);
3871 if (rdev && test_bit(In_sync, &rdev->flags)) {
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003872 atomic_inc(&rdev->nr_pending);
3873 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003874 raid_bio->bi_next = (void*)rdev;
3875 align_bi->bi_bdev = rdev->bdev;
3876 align_bi->bi_flags &= ~(1 << BIO_SEG_VALID);
3877 align_bi->bi_sector += rdev->data_offset;
3878
Neil Brown387bb172007-02-08 14:20:29 -08003879 if (!bio_fits_rdev(align_bi)) {
3880 /* too big in some way */
3881 bio_put(align_bi);
3882 rdev_dec_pending(rdev, mddev);
3883 return 0;
3884 }
3885
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003886 spin_lock_irq(&conf->device_lock);
3887 wait_event_lock_irq(conf->wait_for_stripe,
3888 conf->quiesce == 0,
3889 conf->device_lock, /* nothing */);
3890 atomic_inc(&conf->active_aligned_reads);
3891 spin_unlock_irq(&conf->device_lock);
3892
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003893 generic_make_request(align_bi);
3894 return 1;
3895 } else {
3896 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003897 bio_put(align_bi);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003898 return 0;
3899 }
3900}
3901
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003902/* __get_priority_stripe - get the next stripe to process
3903 *
3904 * Full stripe writes are allowed to pass preread active stripes up until
3905 * the bypass_threshold is exceeded. In general the bypass_count
3906 * increments when the handle_list is handled before the hold_list; however, it
3907 * will not be incremented when STRIPE_IO_STARTED is sampled set signifying a
3908 * stripe with in flight i/o. The bypass_count will be reset when the
3909 * head of the hold_list has changed, i.e. the head was promoted to the
3910 * handle_list.
3911 */
3912static struct stripe_head *__get_priority_stripe(raid5_conf_t *conf)
3913{
3914 struct stripe_head *sh;
3915
3916 pr_debug("%s: handle: %s hold: %s full_writes: %d bypass_count: %d\n",
3917 __func__,
3918 list_empty(&conf->handle_list) ? "empty" : "busy",
3919 list_empty(&conf->hold_list) ? "empty" : "busy",
3920 atomic_read(&conf->pending_full_writes), conf->bypass_count);
3921
3922 if (!list_empty(&conf->handle_list)) {
3923 sh = list_entry(conf->handle_list.next, typeof(*sh), lru);
3924
3925 if (list_empty(&conf->hold_list))
3926 conf->bypass_count = 0;
3927 else if (!test_bit(STRIPE_IO_STARTED, &sh->state)) {
3928 if (conf->hold_list.next == conf->last_hold)
3929 conf->bypass_count++;
3930 else {
3931 conf->last_hold = conf->hold_list.next;
3932 conf->bypass_count -= conf->bypass_threshold;
3933 if (conf->bypass_count < 0)
3934 conf->bypass_count = 0;
3935 }
3936 }
3937 } else if (!list_empty(&conf->hold_list) &&
3938 ((conf->bypass_threshold &&
3939 conf->bypass_count > conf->bypass_threshold) ||
3940 atomic_read(&conf->pending_full_writes) == 0)) {
3941 sh = list_entry(conf->hold_list.next,
3942 typeof(*sh), lru);
3943 conf->bypass_count -= conf->bypass_threshold;
3944 if (conf->bypass_count < 0)
3945 conf->bypass_count = 0;
3946 } else
3947 return NULL;
3948
3949 list_del_init(&sh->lru);
3950 atomic_inc(&sh->count);
3951 BUG_ON(atomic_read(&sh->count) != 1);
3952 return sh;
3953}
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003954
NeilBrown21a52c62010-04-01 15:02:13 +11003955static int make_request(mddev_t *mddev, struct bio * bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956{
NeilBrown070ec552009-06-16 16:54:21 +10003957 raid5_conf_t *conf = mddev->private;
NeilBrown911d4ee2009-03-31 14:39:38 +11003958 int dd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959 sector_t new_sector;
3960 sector_t logical_sector, last_sector;
3961 struct stripe_head *sh;
Jens Axboea3623572005-11-01 09:26:16 +01003962 const int rw = bio_data_dir(bi);
NeilBrown49077322010-03-25 16:20:56 +11003963 int remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964
Jens Axboe1f98a132009-09-11 14:32:04 +02003965 if (unlikely(bio_rw_flagged(bi, BIO_RW_BARRIER))) {
NeilBrowna2826aa2009-12-14 12:49:49 +11003966 /* Drain all pending writes. We only really need
3967 * to ensure they have been submitted, but this is
3968 * easier.
3969 */
3970 mddev->pers->quiesce(mddev, 1);
3971 mddev->pers->quiesce(mddev, 0);
3972 md_barrier_request(mddev, bi);
NeilBrowne5dcdd82005-09-09 16:23:41 -07003973 return 0;
3974 }
3975
NeilBrown3d310eb2005-06-21 17:17:26 -07003976 md_write_start(mddev, bi);
NeilBrown06d91a52005-06-21 17:17:12 -07003977
NeilBrown802ba062006-12-13 00:34:13 -08003978 if (rw == READ &&
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08003979 mddev->reshape_position == MaxSector &&
NeilBrown21a52c62010-04-01 15:02:13 +11003980 chunk_aligned_read(mddev,bi))
NeilBrown99c0fb52009-03-31 14:39:38 +11003981 return 0;
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08003982
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983 logical_sector = bi->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
3984 last_sector = bi->bi_sector + (bi->bi_size>>9);
3985 bi->bi_next = NULL;
3986 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
NeilBrown06d91a52005-06-21 17:17:12 -07003987
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988 for (;logical_sector < last_sector; logical_sector += STRIPE_SECTORS) {
3989 DEFINE_WAIT(w);
NeilBrown16a53ec2006-06-26 00:27:38 -07003990 int disks, data_disks;
NeilBrownb5663ba2009-03-31 14:39:38 +11003991 int previous;
NeilBrownb578d552006-03-27 01:18:12 -08003992
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003993 retry:
NeilBrownb5663ba2009-03-31 14:39:38 +11003994 previous = 0;
NeilBrownb0f9ec02009-03-31 15:27:18 +11003995 disks = conf->raid_disks;
NeilBrownb578d552006-03-27 01:18:12 -08003996 prepare_to_wait(&conf->wait_for_overlap, &w, TASK_UNINTERRUPTIBLE);
NeilBrownb0f9ec02009-03-31 15:27:18 +11003997 if (unlikely(conf->reshape_progress != MaxSector)) {
NeilBrownfef9c612009-03-31 15:16:46 +11003998 /* spinlock is needed as reshape_progress may be
NeilBrowndf8e7f762006-03-27 01:18:15 -08003999 * 64bit on a 32bit platform, and so it might be
4000 * possible to see a half-updated value
NeilBrownfef9c612009-03-31 15:16:46 +11004001 * Ofcourse reshape_progress could change after
NeilBrowndf8e7f762006-03-27 01:18:15 -08004002 * the lock is dropped, so once we get a reference
4003 * to the stripe that we think it is, we will have
4004 * to check again.
4005 */
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004006 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11004007 if (mddev->delta_disks < 0
4008 ? logical_sector < conf->reshape_progress
4009 : logical_sector >= conf->reshape_progress) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004010 disks = conf->previous_raid_disks;
NeilBrownb5663ba2009-03-31 14:39:38 +11004011 previous = 1;
4012 } else {
NeilBrownfef9c612009-03-31 15:16:46 +11004013 if (mddev->delta_disks < 0
4014 ? logical_sector < conf->reshape_safe
4015 : logical_sector >= conf->reshape_safe) {
NeilBrownb578d552006-03-27 01:18:12 -08004016 spin_unlock_irq(&conf->device_lock);
4017 schedule();
4018 goto retry;
4019 }
4020 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004021 spin_unlock_irq(&conf->device_lock);
4022 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004023 data_disks = disks - conf->max_degraded;
4024
NeilBrown112bf892009-03-31 14:39:38 +11004025 new_sector = raid5_compute_sector(conf, logical_sector,
4026 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11004027 &dd_idx, NULL);
NeilBrown0c55e022010-05-03 14:09:02 +10004028 pr_debug("raid456: make_request, sector %llu logical %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029 (unsigned long long)new_sector,
4030 (unsigned long long)logical_sector);
4031
NeilBrownb5663ba2009-03-31 14:39:38 +11004032 sh = get_active_stripe(conf, new_sector, previous,
NeilBrowna8c906c2009-06-09 14:39:59 +10004033 (bi->bi_rw&RWA_MASK), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034 if (sh) {
NeilBrownb0f9ec02009-03-31 15:27:18 +11004035 if (unlikely(previous)) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004036 /* expansion might have moved on while waiting for a
NeilBrowndf8e7f762006-03-27 01:18:15 -08004037 * stripe, so we must do the range check again.
4038 * Expansion could still move past after this
4039 * test, but as we are holding a reference to
4040 * 'sh', we know that if that happens,
4041 * STRIPE_EXPANDING will get set and the expansion
4042 * won't proceed until we finish with the stripe.
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004043 */
4044 int must_retry = 0;
4045 spin_lock_irq(&conf->device_lock);
NeilBrownb0f9ec02009-03-31 15:27:18 +11004046 if (mddev->delta_disks < 0
4047 ? logical_sector >= conf->reshape_progress
4048 : logical_sector < conf->reshape_progress)
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004049 /* mismatch, need to try again */
4050 must_retry = 1;
4051 spin_unlock_irq(&conf->device_lock);
4052 if (must_retry) {
4053 release_stripe(sh);
Dan Williams7a3ab902009-06-16 16:00:33 -07004054 schedule();
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004055 goto retry;
4056 }
4057 }
NeilBrowne62e58a2009-07-01 13:15:35 +10004058
NeilBrowna5c308d2009-07-01 13:15:35 +10004059 if (bio_data_dir(bi) == WRITE &&
4060 logical_sector >= mddev->suspend_lo &&
NeilBrowne464eaf2006-03-27 01:18:14 -08004061 logical_sector < mddev->suspend_hi) {
4062 release_stripe(sh);
NeilBrowne62e58a2009-07-01 13:15:35 +10004063 /* As the suspend_* range is controlled by
4064 * userspace, we want an interruptible
4065 * wait.
4066 */
4067 flush_signals(current);
4068 prepare_to_wait(&conf->wait_for_overlap,
4069 &w, TASK_INTERRUPTIBLE);
4070 if (logical_sector >= mddev->suspend_lo &&
4071 logical_sector < mddev->suspend_hi)
4072 schedule();
NeilBrowne464eaf2006-03-27 01:18:14 -08004073 goto retry;
4074 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004075
4076 if (test_bit(STRIPE_EXPANDING, &sh->state) ||
4077 !add_stripe_bio(sh, bi, dd_idx, (bi->bi_rw&RW_MASK))) {
4078 /* Stripe is busy expanding or
4079 * add failed due to overlap. Flush everything
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080 * and wait a while
4081 */
4082 raid5_unplug_device(mddev->queue);
4083 release_stripe(sh);
4084 schedule();
4085 goto retry;
4086 }
4087 finish_wait(&conf->wait_for_overlap, &w);
NeilBrown6ed30032008-02-06 01:40:00 -08004088 set_bit(STRIPE_HANDLE, &sh->state);
4089 clear_bit(STRIPE_DELAYED, &sh->state);
NeilBrown729a1862009-12-14 12:49:50 +11004090 if (mddev->barrier &&
4091 !test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
4092 atomic_inc(&conf->preread_active_stripes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094 } else {
4095 /* cannot get stripe for read-ahead, just give-up */
4096 clear_bit(BIO_UPTODATE, &bi->bi_flags);
4097 finish_wait(&conf->wait_for_overlap, &w);
4098 break;
4099 }
4100
4101 }
4102 spin_lock_irq(&conf->device_lock);
Jens Axboe960e7392008-08-15 10:41:18 +02004103 remaining = raid5_dec_bi_phys_segments(bi);
NeilBrownf6344752006-03-27 01:18:17 -08004104 spin_unlock_irq(&conf->device_lock);
4105 if (remaining == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106
NeilBrown16a53ec2006-06-26 00:27:38 -07004107 if ( rw == WRITE )
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108 md_write_end(mddev);
NeilBrown6712ecf2007-09-27 12:47:43 +02004109
Neil Brown0e13fe232008-06-28 08:31:20 +10004110 bio_endio(bi, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111 }
NeilBrown729a1862009-12-14 12:49:50 +11004112
4113 if (mddev->barrier) {
4114 /* We need to wait for the stripes to all be handled.
4115 * So: wait for preread_active_stripes to drop to 0.
4116 */
4117 wait_event(mddev->thread->wqueue,
4118 atomic_read(&conf->preread_active_stripes) == 0);
4119 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120 return 0;
4121}
4122
Dan Williamsb522adc2009-03-31 15:00:31 +11004123static sector_t raid5_size(mddev_t *mddev, sector_t sectors, int raid_disks);
4124
NeilBrown52c03292006-06-26 00:27:43 -07004125static sector_t reshape_request(mddev_t *mddev, sector_t sector_nr, int *skipped)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126{
NeilBrown52c03292006-06-26 00:27:43 -07004127 /* reshaping is quite different to recovery/resync so it is
4128 * handled quite separately ... here.
4129 *
4130 * On each call to sync_request, we gather one chunk worth of
4131 * destination stripes and flag them as expanding.
4132 * Then we find all the source stripes and request reads.
4133 * As the reads complete, handle_stripe will copy the data
4134 * into the destination stripe and release that stripe.
4135 */
H Hartley Sweeten7b928132010-03-08 16:02:40 +11004136 raid5_conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137 struct stripe_head *sh;
NeilBrownccfcc3c2006-03-27 01:18:09 -08004138 sector_t first_sector, last_sector;
NeilBrownf4168852007-02-28 20:11:53 -08004139 int raid_disks = conf->previous_raid_disks;
4140 int data_disks = raid_disks - conf->max_degraded;
4141 int new_data_disks = conf->raid_disks - conf->max_degraded;
NeilBrown52c03292006-06-26 00:27:43 -07004142 int i;
4143 int dd_idx;
NeilBrownc8f517c2009-03-31 15:28:40 +11004144 sector_t writepos, readpos, safepos;
NeilBrownec32a2b2009-03-31 15:17:38 +11004145 sector_t stripe_addr;
NeilBrown7a661382009-03-31 15:21:40 +11004146 int reshape_sectors;
NeilBrownab69ae12009-03-31 15:26:47 +11004147 struct list_head stripes;
NeilBrown52c03292006-06-26 00:27:43 -07004148
NeilBrownfef9c612009-03-31 15:16:46 +11004149 if (sector_nr == 0) {
4150 /* If restarting in the middle, skip the initial sectors */
4151 if (mddev->delta_disks < 0 &&
4152 conf->reshape_progress < raid5_size(mddev, 0, 0)) {
4153 sector_nr = raid5_size(mddev, 0, 0)
4154 - conf->reshape_progress;
NeilBrowna6397552009-08-13 10:13:00 +10004155 } else if (mddev->delta_disks >= 0 &&
NeilBrownfef9c612009-03-31 15:16:46 +11004156 conf->reshape_progress > 0)
4157 sector_nr = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08004158 sector_div(sector_nr, new_data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11004159 if (sector_nr) {
NeilBrown8dee7212009-11-06 14:59:29 +11004160 mddev->curr_resync_completed = sector_nr;
4161 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrownfef9c612009-03-31 15:16:46 +11004162 *skipped = 1;
4163 return sector_nr;
4164 }
NeilBrown52c03292006-06-26 00:27:43 -07004165 }
4166
NeilBrown7a661382009-03-31 15:21:40 +11004167 /* We need to process a full chunk at a time.
4168 * If old and new chunk sizes differ, we need to process the
4169 * largest of these
4170 */
Andre Noll664e7c42009-06-18 08:45:27 +10004171 if (mddev->new_chunk_sectors > mddev->chunk_sectors)
4172 reshape_sectors = mddev->new_chunk_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11004173 else
Andre Noll9d8f0362009-06-18 08:45:01 +10004174 reshape_sectors = mddev->chunk_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11004175
NeilBrown52c03292006-06-26 00:27:43 -07004176 /* we update the metadata when there is more than 3Meg
4177 * in the block range (that is rather arbitrary, should
4178 * probably be time based) or when the data about to be
4179 * copied would over-write the source of the data at
4180 * the front of the range.
NeilBrownfef9c612009-03-31 15:16:46 +11004181 * i.e. one new_stripe along from reshape_progress new_maps
4182 * to after where reshape_safe old_maps to
NeilBrown52c03292006-06-26 00:27:43 -07004183 */
NeilBrownfef9c612009-03-31 15:16:46 +11004184 writepos = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08004185 sector_div(writepos, new_data_disks);
NeilBrownc8f517c2009-03-31 15:28:40 +11004186 readpos = conf->reshape_progress;
4187 sector_div(readpos, data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11004188 safepos = conf->reshape_safe;
NeilBrownf4168852007-02-28 20:11:53 -08004189 sector_div(safepos, data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11004190 if (mddev->delta_disks < 0) {
NeilBrowned37d832009-05-27 21:39:05 +10004191 writepos -= min_t(sector_t, reshape_sectors, writepos);
NeilBrownc8f517c2009-03-31 15:28:40 +11004192 readpos += reshape_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11004193 safepos += reshape_sectors;
NeilBrownfef9c612009-03-31 15:16:46 +11004194 } else {
NeilBrown7a661382009-03-31 15:21:40 +11004195 writepos += reshape_sectors;
NeilBrowned37d832009-05-27 21:39:05 +10004196 readpos -= min_t(sector_t, reshape_sectors, readpos);
4197 safepos -= min_t(sector_t, reshape_sectors, safepos);
NeilBrownfef9c612009-03-31 15:16:46 +11004198 }
NeilBrown52c03292006-06-26 00:27:43 -07004199
NeilBrownc8f517c2009-03-31 15:28:40 +11004200 /* 'writepos' is the most advanced device address we might write.
4201 * 'readpos' is the least advanced device address we might read.
4202 * 'safepos' is the least address recorded in the metadata as having
4203 * been reshaped.
4204 * If 'readpos' is behind 'writepos', then there is no way that we can
4205 * ensure safety in the face of a crash - that must be done by userspace
4206 * making a backup of the data. So in that case there is no particular
4207 * rush to update metadata.
4208 * Otherwise if 'safepos' is behind 'writepos', then we really need to
4209 * update the metadata to advance 'safepos' to match 'readpos' so that
4210 * we can be safe in the event of a crash.
4211 * So we insist on updating metadata if safepos is behind writepos and
4212 * readpos is beyond writepos.
4213 * In any case, update the metadata every 10 seconds.
4214 * Maybe that number should be configurable, but I'm not sure it is
4215 * worth it.... maybe it could be a multiple of safemode_delay???
4216 */
NeilBrownfef9c612009-03-31 15:16:46 +11004217 if ((mddev->delta_disks < 0
NeilBrownc8f517c2009-03-31 15:28:40 +11004218 ? (safepos > writepos && readpos < writepos)
4219 : (safepos < writepos && readpos > writepos)) ||
4220 time_after(jiffies, conf->reshape_checkpoint + 10*HZ)) {
NeilBrown52c03292006-06-26 00:27:43 -07004221 /* Cannot proceed until we've updated the superblock... */
4222 wait_event(conf->wait_for_overlap,
4223 atomic_read(&conf->reshape_stripes)==0);
NeilBrownfef9c612009-03-31 15:16:46 +11004224 mddev->reshape_position = conf->reshape_progress;
NeilBrownacb180b2009-04-14 16:28:34 +10004225 mddev->curr_resync_completed = mddev->curr_resync;
NeilBrownc8f517c2009-03-31 15:28:40 +11004226 conf->reshape_checkpoint = jiffies;
NeilBrown850b2b422006-10-03 01:15:46 -07004227 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrown52c03292006-06-26 00:27:43 -07004228 md_wakeup_thread(mddev->thread);
NeilBrown850b2b422006-10-03 01:15:46 -07004229 wait_event(mddev->sb_wait, mddev->flags == 0 ||
NeilBrown52c03292006-06-26 00:27:43 -07004230 kthread_should_stop());
4231 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11004232 conf->reshape_safe = mddev->reshape_position;
NeilBrown52c03292006-06-26 00:27:43 -07004233 spin_unlock_irq(&conf->device_lock);
4234 wake_up(&conf->wait_for_overlap);
NeilBrownacb180b2009-04-14 16:28:34 +10004235 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrown52c03292006-06-26 00:27:43 -07004236 }
4237
NeilBrownec32a2b2009-03-31 15:17:38 +11004238 if (mddev->delta_disks < 0) {
4239 BUG_ON(conf->reshape_progress == 0);
4240 stripe_addr = writepos;
4241 BUG_ON((mddev->dev_sectors &
NeilBrown7a661382009-03-31 15:21:40 +11004242 ~((sector_t)reshape_sectors - 1))
4243 - reshape_sectors - stripe_addr
NeilBrownec32a2b2009-03-31 15:17:38 +11004244 != sector_nr);
4245 } else {
NeilBrown7a661382009-03-31 15:21:40 +11004246 BUG_ON(writepos != sector_nr + reshape_sectors);
NeilBrownec32a2b2009-03-31 15:17:38 +11004247 stripe_addr = sector_nr;
4248 }
NeilBrownab69ae12009-03-31 15:26:47 +11004249 INIT_LIST_HEAD(&stripes);
NeilBrown7a661382009-03-31 15:21:40 +11004250 for (i = 0; i < reshape_sectors; i += STRIPE_SECTORS) {
NeilBrown52c03292006-06-26 00:27:43 -07004251 int j;
NeilBrowna9f326e2009-09-23 18:06:41 +10004252 int skipped_disk = 0;
NeilBrowna8c906c2009-06-09 14:39:59 +10004253 sh = get_active_stripe(conf, stripe_addr+i, 0, 0, 1);
NeilBrown52c03292006-06-26 00:27:43 -07004254 set_bit(STRIPE_EXPANDING, &sh->state);
4255 atomic_inc(&conf->reshape_stripes);
4256 /* If any of this stripe is beyond the end of the old
4257 * array, then we need to zero those blocks
4258 */
4259 for (j=sh->disks; j--;) {
4260 sector_t s;
4261 if (j == sh->pd_idx)
4262 continue;
NeilBrownf4168852007-02-28 20:11:53 -08004263 if (conf->level == 6 &&
NeilBrownd0dabf72009-03-31 14:39:38 +11004264 j == sh->qd_idx)
NeilBrownf4168852007-02-28 20:11:53 -08004265 continue;
NeilBrown784052e2009-03-31 15:19:07 +11004266 s = compute_blocknr(sh, j, 0);
Dan Williamsb522adc2009-03-31 15:00:31 +11004267 if (s < raid5_size(mddev, 0, 0)) {
NeilBrowna9f326e2009-09-23 18:06:41 +10004268 skipped_disk = 1;
NeilBrown52c03292006-06-26 00:27:43 -07004269 continue;
4270 }
4271 memset(page_address(sh->dev[j].page), 0, STRIPE_SIZE);
4272 set_bit(R5_Expanded, &sh->dev[j].flags);
4273 set_bit(R5_UPTODATE, &sh->dev[j].flags);
4274 }
NeilBrowna9f326e2009-09-23 18:06:41 +10004275 if (!skipped_disk) {
NeilBrown52c03292006-06-26 00:27:43 -07004276 set_bit(STRIPE_EXPAND_READY, &sh->state);
4277 set_bit(STRIPE_HANDLE, &sh->state);
4278 }
NeilBrownab69ae12009-03-31 15:26:47 +11004279 list_add(&sh->lru, &stripes);
NeilBrown52c03292006-06-26 00:27:43 -07004280 }
4281 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11004282 if (mddev->delta_disks < 0)
NeilBrown7a661382009-03-31 15:21:40 +11004283 conf->reshape_progress -= reshape_sectors * new_data_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11004284 else
NeilBrown7a661382009-03-31 15:21:40 +11004285 conf->reshape_progress += reshape_sectors * new_data_disks;
NeilBrown52c03292006-06-26 00:27:43 -07004286 spin_unlock_irq(&conf->device_lock);
4287 /* Ok, those stripe are ready. We can start scheduling
4288 * reads on the source stripes.
4289 * The source stripes are determined by mapping the first and last
4290 * block on the destination stripes.
4291 */
NeilBrown52c03292006-06-26 00:27:43 -07004292 first_sector =
NeilBrownec32a2b2009-03-31 15:17:38 +11004293 raid5_compute_sector(conf, stripe_addr*(new_data_disks),
NeilBrown911d4ee2009-03-31 14:39:38 +11004294 1, &dd_idx, NULL);
NeilBrown52c03292006-06-26 00:27:43 -07004295 last_sector =
NeilBrown0e6e0272009-06-09 16:32:22 +10004296 raid5_compute_sector(conf, ((stripe_addr+reshape_sectors)
Andre Noll09c9e5f2009-06-18 08:45:55 +10004297 * new_data_disks - 1),
NeilBrown911d4ee2009-03-31 14:39:38 +11004298 1, &dd_idx, NULL);
Andre Noll58c0fed2009-03-31 14:33:13 +11004299 if (last_sector >= mddev->dev_sectors)
4300 last_sector = mddev->dev_sectors - 1;
NeilBrown52c03292006-06-26 00:27:43 -07004301 while (first_sector <= last_sector) {
NeilBrowna8c906c2009-06-09 14:39:59 +10004302 sh = get_active_stripe(conf, first_sector, 1, 0, 1);
NeilBrown52c03292006-06-26 00:27:43 -07004303 set_bit(STRIPE_EXPAND_SOURCE, &sh->state);
4304 set_bit(STRIPE_HANDLE, &sh->state);
4305 release_stripe(sh);
4306 first_sector += STRIPE_SECTORS;
4307 }
NeilBrownab69ae12009-03-31 15:26:47 +11004308 /* Now that the sources are clearly marked, we can release
4309 * the destination stripes
4310 */
4311 while (!list_empty(&stripes)) {
4312 sh = list_entry(stripes.next, struct stripe_head, lru);
4313 list_del_init(&sh->lru);
4314 release_stripe(sh);
4315 }
NeilBrownc6207272008-02-06 01:39:52 -08004316 /* If this takes us to the resync_max point where we have to pause,
4317 * then we need to write out the superblock.
4318 */
NeilBrown7a661382009-03-31 15:21:40 +11004319 sector_nr += reshape_sectors;
NeilBrownc03f6a12009-04-17 11:06:30 +10004320 if ((sector_nr - mddev->curr_resync_completed) * 2
4321 >= mddev->resync_max - mddev->curr_resync_completed) {
NeilBrownc6207272008-02-06 01:39:52 -08004322 /* Cannot proceed until we've updated the superblock... */
4323 wait_event(conf->wait_for_overlap,
4324 atomic_read(&conf->reshape_stripes) == 0);
NeilBrownfef9c612009-03-31 15:16:46 +11004325 mddev->reshape_position = conf->reshape_progress;
NeilBrown48606a92009-06-18 09:14:12 +10004326 mddev->curr_resync_completed = mddev->curr_resync + reshape_sectors;
NeilBrownc8f517c2009-03-31 15:28:40 +11004327 conf->reshape_checkpoint = jiffies;
NeilBrownc6207272008-02-06 01:39:52 -08004328 set_bit(MD_CHANGE_DEVS, &mddev->flags);
4329 md_wakeup_thread(mddev->thread);
4330 wait_event(mddev->sb_wait,
4331 !test_bit(MD_CHANGE_DEVS, &mddev->flags)
4332 || kthread_should_stop());
4333 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11004334 conf->reshape_safe = mddev->reshape_position;
NeilBrownc6207272008-02-06 01:39:52 -08004335 spin_unlock_irq(&conf->device_lock);
4336 wake_up(&conf->wait_for_overlap);
NeilBrownacb180b2009-04-14 16:28:34 +10004337 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrownc6207272008-02-06 01:39:52 -08004338 }
NeilBrown7a661382009-03-31 15:21:40 +11004339 return reshape_sectors;
NeilBrown52c03292006-06-26 00:27:43 -07004340}
4341
4342/* FIXME go_faster isn't used */
4343static inline sector_t sync_request(mddev_t *mddev, sector_t sector_nr, int *skipped, int go_faster)
4344{
H Hartley Sweeten7b928132010-03-08 16:02:40 +11004345 raid5_conf_t *conf = mddev->private;
NeilBrown52c03292006-06-26 00:27:43 -07004346 struct stripe_head *sh;
Andre Noll58c0fed2009-03-31 14:33:13 +11004347 sector_t max_sector = mddev->dev_sectors;
NeilBrown72626682005-09-09 16:23:54 -07004348 int sync_blocks;
NeilBrown16a53ec2006-06-26 00:27:38 -07004349 int still_degraded = 0;
4350 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351
NeilBrown72626682005-09-09 16:23:54 -07004352 if (sector_nr >= max_sector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004353 /* just being told to finish up .. nothing much to do */
4354 unplug_slaves(mddev);
NeilBrowncea9c222009-03-31 15:15:05 +11004355
NeilBrown29269552006-03-27 01:18:10 -08004356 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery)) {
4357 end_reshape(conf);
4358 return 0;
4359 }
NeilBrown72626682005-09-09 16:23:54 -07004360
4361 if (mddev->curr_resync < max_sector) /* aborted */
4362 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
4363 &sync_blocks, 1);
NeilBrown16a53ec2006-06-26 00:27:38 -07004364 else /* completed sync */
NeilBrown72626682005-09-09 16:23:54 -07004365 conf->fullsync = 0;
4366 bitmap_close_sync(mddev->bitmap);
4367
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368 return 0;
4369 }
NeilBrownccfcc3c2006-03-27 01:18:09 -08004370
NeilBrown64bd6602009-08-03 10:59:58 +10004371 /* Allow raid5_quiesce to complete */
4372 wait_event(conf->wait_for_overlap, conf->quiesce != 2);
4373
NeilBrown52c03292006-06-26 00:27:43 -07004374 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery))
4375 return reshape_request(mddev, sector_nr, skipped);
NeilBrownf6705572006-03-27 01:18:11 -08004376
NeilBrownc6207272008-02-06 01:39:52 -08004377 /* No need to check resync_max as we never do more than one
4378 * stripe, and as resync_max will always be on a chunk boundary,
4379 * if the check in md_do_sync didn't fire, there is no chance
4380 * of overstepping resync_max here
4381 */
4382
NeilBrown16a53ec2006-06-26 00:27:38 -07004383 /* if there is too many failed drives and we are trying
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384 * to resync, then assert that we are finished, because there is
4385 * nothing we can do.
4386 */
NeilBrown3285edf2006-06-26 00:27:55 -07004387 if (mddev->degraded >= conf->max_degraded &&
NeilBrown16a53ec2006-06-26 00:27:38 -07004388 test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
Andre Noll58c0fed2009-03-31 14:33:13 +11004389 sector_t rv = mddev->dev_sectors - sector_nr;
NeilBrown57afd892005-06-21 17:17:13 -07004390 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004391 return rv;
4392 }
NeilBrown72626682005-09-09 16:23:54 -07004393 if (!bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
NeilBrown3855ad92005-11-08 21:39:38 -08004394 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
NeilBrown72626682005-09-09 16:23:54 -07004395 !conf->fullsync && sync_blocks >= STRIPE_SECTORS) {
4396 /* we can skip this block, and probably more */
4397 sync_blocks /= STRIPE_SECTORS;
4398 *skipped = 1;
4399 return sync_blocks * STRIPE_SECTORS; /* keep things rounded to whole stripes */
4400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004401
NeilBrownb47490c2008-02-06 01:39:50 -08004402
4403 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
4404
NeilBrowna8c906c2009-06-09 14:39:59 +10004405 sh = get_active_stripe(conf, sector_nr, 0, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406 if (sh == NULL) {
NeilBrowna8c906c2009-06-09 14:39:59 +10004407 sh = get_active_stripe(conf, sector_nr, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004408 /* make sure we don't swamp the stripe cache if someone else
NeilBrown16a53ec2006-06-26 00:27:38 -07004409 * is trying to get access
Linus Torvalds1da177e2005-04-16 15:20:36 -07004410 */
Nishanth Aravamudan66c006a2005-11-07 01:01:17 -08004411 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004412 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004413 /* Need to check if array will still be degraded after recovery/resync
4414 * We don't need to check the 'failed' flag as when that gets set,
4415 * recovery aborts.
4416 */
NeilBrownf001a702009-06-09 14:30:31 +10004417 for (i = 0; i < conf->raid_disks; i++)
NeilBrown16a53ec2006-06-26 00:27:38 -07004418 if (conf->disks[i].rdev == NULL)
4419 still_degraded = 1;
4420
4421 bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, still_degraded);
4422
4423 spin_lock(&sh->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004424 set_bit(STRIPE_SYNCING, &sh->state);
4425 clear_bit(STRIPE_INSYNC, &sh->state);
4426 spin_unlock(&sh->lock);
4427
NeilBrown14425772009-10-16 15:55:25 +11004428 handle_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429 release_stripe(sh);
4430
4431 return STRIPE_SECTORS;
4432}
4433
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004434static int retry_aligned_read(raid5_conf_t *conf, struct bio *raid_bio)
4435{
4436 /* We may not be able to submit a whole bio at once as there
4437 * may not be enough stripe_heads available.
4438 * We cannot pre-allocate enough stripe_heads as we may need
4439 * more than exist in the cache (if we allow ever large chunks).
4440 * So we do one stripe head at a time and record in
4441 * ->bi_hw_segments how many have been done.
4442 *
4443 * We *know* that this entire raid_bio is in one chunk, so
4444 * it will be only one 'dd_idx' and only need one call to raid5_compute_sector.
4445 */
4446 struct stripe_head *sh;
NeilBrown911d4ee2009-03-31 14:39:38 +11004447 int dd_idx;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004448 sector_t sector, logical_sector, last_sector;
4449 int scnt = 0;
4450 int remaining;
4451 int handled = 0;
4452
4453 logical_sector = raid_bio->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
NeilBrown112bf892009-03-31 14:39:38 +11004454 sector = raid5_compute_sector(conf, logical_sector,
NeilBrown911d4ee2009-03-31 14:39:38 +11004455 0, &dd_idx, NULL);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004456 last_sector = raid_bio->bi_sector + (raid_bio->bi_size>>9);
4457
4458 for (; logical_sector < last_sector;
Neil Brown387bb172007-02-08 14:20:29 -08004459 logical_sector += STRIPE_SECTORS,
4460 sector += STRIPE_SECTORS,
4461 scnt++) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004462
Jens Axboe960e7392008-08-15 10:41:18 +02004463 if (scnt < raid5_bi_hw_segments(raid_bio))
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004464 /* already done this stripe */
4465 continue;
4466
NeilBrowna8c906c2009-06-09 14:39:59 +10004467 sh = get_active_stripe(conf, sector, 0, 1, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004468
4469 if (!sh) {
4470 /* failed to get a stripe - must wait */
Jens Axboe960e7392008-08-15 10:41:18 +02004471 raid5_set_bi_hw_segments(raid_bio, scnt);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004472 conf->retry_read_aligned = raid_bio;
4473 return handled;
4474 }
4475
4476 set_bit(R5_ReadError, &sh->dev[dd_idx].flags);
Neil Brown387bb172007-02-08 14:20:29 -08004477 if (!add_stripe_bio(sh, raid_bio, dd_idx, 0)) {
4478 release_stripe(sh);
Jens Axboe960e7392008-08-15 10:41:18 +02004479 raid5_set_bi_hw_segments(raid_bio, scnt);
Neil Brown387bb172007-02-08 14:20:29 -08004480 conf->retry_read_aligned = raid_bio;
4481 return handled;
4482 }
4483
Dan Williams36d1c642009-07-14 11:48:22 -07004484 handle_stripe(sh);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004485 release_stripe(sh);
4486 handled++;
4487 }
4488 spin_lock_irq(&conf->device_lock);
Jens Axboe960e7392008-08-15 10:41:18 +02004489 remaining = raid5_dec_bi_phys_segments(raid_bio);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004490 spin_unlock_irq(&conf->device_lock);
Neil Brown0e13fe232008-06-28 08:31:20 +10004491 if (remaining == 0)
4492 bio_endio(raid_bio, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004493 if (atomic_dec_and_test(&conf->active_aligned_reads))
4494 wake_up(&conf->wait_for_stripe);
4495 return handled;
4496}
4497
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004498
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499/*
4500 * This is our raid5 kernel thread.
4501 *
4502 * We scan the hash table for stripes which can be handled now.
4503 * During the scan, completed stripes are saved for us by the interrupt
4504 * handler, so that they will not have to wait for our next wakeup.
4505 */
NeilBrown6ed30032008-02-06 01:40:00 -08004506static void raid5d(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004507{
4508 struct stripe_head *sh;
NeilBrown070ec552009-06-16 16:54:21 +10004509 raid5_conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510 int handled;
4511
Dan Williams45b42332007-07-09 11:56:43 -07004512 pr_debug("+++ raid5d active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513
4514 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515
4516 handled = 0;
4517 spin_lock_irq(&conf->device_lock);
4518 while (1) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004519 struct bio *bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004520
NeilBrownae3c20c2006-07-10 04:44:17 -07004521 if (conf->seq_flush != conf->seq_write) {
NeilBrown72626682005-09-09 16:23:54 -07004522 int seq = conf->seq_flush;
NeilBrown700e4322005-11-28 13:44:10 -08004523 spin_unlock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07004524 bitmap_unplug(mddev->bitmap);
NeilBrown700e4322005-11-28 13:44:10 -08004525 spin_lock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07004526 conf->seq_write = seq;
4527 activate_bit_delay(conf);
4528 }
4529
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004530 while ((bio = remove_bio_from_retry(conf))) {
4531 int ok;
4532 spin_unlock_irq(&conf->device_lock);
4533 ok = retry_aligned_read(conf, bio);
4534 spin_lock_irq(&conf->device_lock);
4535 if (!ok)
4536 break;
4537 handled++;
4538 }
4539
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004540 sh = __get_priority_stripe(conf);
4541
Dan Williamsc9f21aa2008-07-23 12:05:51 -07004542 if (!sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004544 spin_unlock_irq(&conf->device_lock);
4545
4546 handled++;
Dan Williams417b8d42009-10-16 16:25:22 +11004547 handle_stripe(sh);
4548 release_stripe(sh);
4549 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550
4551 spin_lock_irq(&conf->device_lock);
4552 }
Dan Williams45b42332007-07-09 11:56:43 -07004553 pr_debug("%d stripes handled\n", handled);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554
4555 spin_unlock_irq(&conf->device_lock);
4556
Dan Williamsc9f21aa2008-07-23 12:05:51 -07004557 async_tx_issue_pending_all();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004558 unplug_slaves(mddev);
4559
Dan Williams45b42332007-07-09 11:56:43 -07004560 pr_debug("--- raid5d inactive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561}
4562
NeilBrown3f294f42005-11-08 21:39:25 -08004563static ssize_t
NeilBrown007583c2005-11-08 21:39:30 -08004564raid5_show_stripe_cache_size(mddev_t *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08004565{
NeilBrown070ec552009-06-16 16:54:21 +10004566 raid5_conf_t *conf = mddev->private;
NeilBrown96de1e62005-11-08 21:39:39 -08004567 if (conf)
4568 return sprintf(page, "%d\n", conf->max_nr_stripes);
4569 else
4570 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08004571}
4572
NeilBrownc41d4ac2010-06-01 19:37:24 +10004573int
4574raid5_set_cache_size(mddev_t *mddev, int size)
4575{
4576 raid5_conf_t *conf = mddev->private;
4577 int err;
4578
4579 if (size <= 16 || size > 32768)
4580 return -EINVAL;
4581 while (size < conf->max_nr_stripes) {
4582 if (drop_one_stripe(conf))
4583 conf->max_nr_stripes--;
4584 else
4585 break;
4586 }
4587 err = md_allow_write(mddev);
4588 if (err)
4589 return err;
4590 while (size > conf->max_nr_stripes) {
4591 if (grow_one_stripe(conf))
4592 conf->max_nr_stripes++;
4593 else break;
4594 }
4595 return 0;
4596}
4597EXPORT_SYMBOL(raid5_set_cache_size);
4598
NeilBrown3f294f42005-11-08 21:39:25 -08004599static ssize_t
NeilBrown007583c2005-11-08 21:39:30 -08004600raid5_store_stripe_cache_size(mddev_t *mddev, const char *page, size_t len)
NeilBrown3f294f42005-11-08 21:39:25 -08004601{
NeilBrown070ec552009-06-16 16:54:21 +10004602 raid5_conf_t *conf = mddev->private;
Dan Williams4ef197d82008-04-28 02:15:54 -07004603 unsigned long new;
Dan Williamsb5470dc2008-06-27 21:44:04 -07004604 int err;
4605
NeilBrown3f294f42005-11-08 21:39:25 -08004606 if (len >= PAGE_SIZE)
4607 return -EINVAL;
NeilBrown96de1e62005-11-08 21:39:39 -08004608 if (!conf)
4609 return -ENODEV;
NeilBrown3f294f42005-11-08 21:39:25 -08004610
Dan Williams4ef197d82008-04-28 02:15:54 -07004611 if (strict_strtoul(page, 10, &new))
NeilBrown3f294f42005-11-08 21:39:25 -08004612 return -EINVAL;
NeilBrownc41d4ac2010-06-01 19:37:24 +10004613 err = raid5_set_cache_size(mddev, new);
Dan Williamsb5470dc2008-06-27 21:44:04 -07004614 if (err)
4615 return err;
NeilBrown3f294f42005-11-08 21:39:25 -08004616 return len;
4617}
NeilBrown007583c2005-11-08 21:39:30 -08004618
NeilBrown96de1e62005-11-08 21:39:39 -08004619static struct md_sysfs_entry
4620raid5_stripecache_size = __ATTR(stripe_cache_size, S_IRUGO | S_IWUSR,
4621 raid5_show_stripe_cache_size,
4622 raid5_store_stripe_cache_size);
NeilBrown3f294f42005-11-08 21:39:25 -08004623
4624static ssize_t
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004625raid5_show_preread_threshold(mddev_t *mddev, char *page)
4626{
NeilBrown070ec552009-06-16 16:54:21 +10004627 raid5_conf_t *conf = mddev->private;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004628 if (conf)
4629 return sprintf(page, "%d\n", conf->bypass_threshold);
4630 else
4631 return 0;
4632}
4633
4634static ssize_t
4635raid5_store_preread_threshold(mddev_t *mddev, const char *page, size_t len)
4636{
NeilBrown070ec552009-06-16 16:54:21 +10004637 raid5_conf_t *conf = mddev->private;
Dan Williams4ef197d82008-04-28 02:15:54 -07004638 unsigned long new;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004639 if (len >= PAGE_SIZE)
4640 return -EINVAL;
4641 if (!conf)
4642 return -ENODEV;
4643
Dan Williams4ef197d82008-04-28 02:15:54 -07004644 if (strict_strtoul(page, 10, &new))
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004645 return -EINVAL;
Dan Williams4ef197d82008-04-28 02:15:54 -07004646 if (new > conf->max_nr_stripes)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004647 return -EINVAL;
4648 conf->bypass_threshold = new;
4649 return len;
4650}
4651
4652static struct md_sysfs_entry
4653raid5_preread_bypass_threshold = __ATTR(preread_bypass_threshold,
4654 S_IRUGO | S_IWUSR,
4655 raid5_show_preread_threshold,
4656 raid5_store_preread_threshold);
4657
4658static ssize_t
NeilBrown96de1e62005-11-08 21:39:39 -08004659stripe_cache_active_show(mddev_t *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08004660{
NeilBrown070ec552009-06-16 16:54:21 +10004661 raid5_conf_t *conf = mddev->private;
NeilBrown96de1e62005-11-08 21:39:39 -08004662 if (conf)
4663 return sprintf(page, "%d\n", atomic_read(&conf->active_stripes));
4664 else
4665 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08004666}
4667
NeilBrown96de1e62005-11-08 21:39:39 -08004668static struct md_sysfs_entry
4669raid5_stripecache_active = __ATTR_RO(stripe_cache_active);
NeilBrown3f294f42005-11-08 21:39:25 -08004670
NeilBrown007583c2005-11-08 21:39:30 -08004671static struct attribute *raid5_attrs[] = {
NeilBrown3f294f42005-11-08 21:39:25 -08004672 &raid5_stripecache_size.attr,
4673 &raid5_stripecache_active.attr,
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004674 &raid5_preread_bypass_threshold.attr,
NeilBrown3f294f42005-11-08 21:39:25 -08004675 NULL,
4676};
NeilBrown007583c2005-11-08 21:39:30 -08004677static struct attribute_group raid5_attrs_group = {
4678 .name = NULL,
4679 .attrs = raid5_attrs,
NeilBrown3f294f42005-11-08 21:39:25 -08004680};
4681
Dan Williams80c3a6c2009-03-17 18:10:40 -07004682static sector_t
4683raid5_size(mddev_t *mddev, sector_t sectors, int raid_disks)
4684{
NeilBrown070ec552009-06-16 16:54:21 +10004685 raid5_conf_t *conf = mddev->private;
Dan Williams80c3a6c2009-03-17 18:10:40 -07004686
4687 if (!sectors)
4688 sectors = mddev->dev_sectors;
NeilBrown5e5e3e72009-10-16 16:35:30 +11004689 if (!raid_disks)
NeilBrown7ec05472009-03-31 15:10:36 +11004690 /* size is defined by the smallest of previous and new size */
NeilBrown5e5e3e72009-10-16 16:35:30 +11004691 raid_disks = min(conf->raid_disks, conf->previous_raid_disks);
Dan Williams80c3a6c2009-03-17 18:10:40 -07004692
Andre Noll9d8f0362009-06-18 08:45:01 +10004693 sectors &= ~((sector_t)mddev->chunk_sectors - 1);
Andre Noll664e7c42009-06-18 08:45:27 +10004694 sectors &= ~((sector_t)mddev->new_chunk_sectors - 1);
Dan Williams80c3a6c2009-03-17 18:10:40 -07004695 return sectors * (raid_disks - conf->max_degraded);
4696}
4697
Dan Williams36d1c642009-07-14 11:48:22 -07004698static void raid5_free_percpu(raid5_conf_t *conf)
4699{
4700 struct raid5_percpu *percpu;
4701 unsigned long cpu;
4702
4703 if (!conf->percpu)
4704 return;
4705
4706 get_online_cpus();
4707 for_each_possible_cpu(cpu) {
4708 percpu = per_cpu_ptr(conf->percpu, cpu);
4709 safe_put_page(percpu->spare_page);
Dan Williamsd6f38f32009-07-14 11:50:52 -07004710 kfree(percpu->scribble);
Dan Williams36d1c642009-07-14 11:48:22 -07004711 }
4712#ifdef CONFIG_HOTPLUG_CPU
4713 unregister_cpu_notifier(&conf->cpu_notify);
4714#endif
4715 put_online_cpus();
4716
4717 free_percpu(conf->percpu);
4718}
4719
Dan Williams95fc17a2009-07-31 12:39:15 +10004720static void free_conf(raid5_conf_t *conf)
4721{
4722 shrink_stripes(conf);
Dan Williams36d1c642009-07-14 11:48:22 -07004723 raid5_free_percpu(conf);
Dan Williams95fc17a2009-07-31 12:39:15 +10004724 kfree(conf->disks);
4725 kfree(conf->stripe_hashtbl);
4726 kfree(conf);
4727}
4728
Dan Williams36d1c642009-07-14 11:48:22 -07004729#ifdef CONFIG_HOTPLUG_CPU
4730static int raid456_cpu_notify(struct notifier_block *nfb, unsigned long action,
4731 void *hcpu)
4732{
4733 raid5_conf_t *conf = container_of(nfb, raid5_conf_t, cpu_notify);
4734 long cpu = (long)hcpu;
4735 struct raid5_percpu *percpu = per_cpu_ptr(conf->percpu, cpu);
4736
4737 switch (action) {
4738 case CPU_UP_PREPARE:
4739 case CPU_UP_PREPARE_FROZEN:
Dan Williamsd6f38f32009-07-14 11:50:52 -07004740 if (conf->level == 6 && !percpu->spare_page)
Dan Williams36d1c642009-07-14 11:48:22 -07004741 percpu->spare_page = alloc_page(GFP_KERNEL);
Dan Williamsd6f38f32009-07-14 11:50:52 -07004742 if (!percpu->scribble)
4743 percpu->scribble = kmalloc(conf->scribble_len, GFP_KERNEL);
4744
4745 if (!percpu->scribble ||
4746 (conf->level == 6 && !percpu->spare_page)) {
4747 safe_put_page(percpu->spare_page);
4748 kfree(percpu->scribble);
Dan Williams36d1c642009-07-14 11:48:22 -07004749 pr_err("%s: failed memory allocation for cpu%ld\n",
4750 __func__, cpu);
Akinobu Mita55af6bb2010-05-26 14:43:35 -07004751 return notifier_from_errno(-ENOMEM);
Dan Williams36d1c642009-07-14 11:48:22 -07004752 }
4753 break;
4754 case CPU_DEAD:
4755 case CPU_DEAD_FROZEN:
4756 safe_put_page(percpu->spare_page);
Dan Williamsd6f38f32009-07-14 11:50:52 -07004757 kfree(percpu->scribble);
Dan Williams36d1c642009-07-14 11:48:22 -07004758 percpu->spare_page = NULL;
Dan Williamsd6f38f32009-07-14 11:50:52 -07004759 percpu->scribble = NULL;
Dan Williams36d1c642009-07-14 11:48:22 -07004760 break;
4761 default:
4762 break;
4763 }
4764 return NOTIFY_OK;
4765}
4766#endif
4767
4768static int raid5_alloc_percpu(raid5_conf_t *conf)
4769{
4770 unsigned long cpu;
4771 struct page *spare_page;
Tejun Heoa29d8b82010-02-02 14:39:15 +09004772 struct raid5_percpu __percpu *allcpus;
Dan Williamsd6f38f32009-07-14 11:50:52 -07004773 void *scribble;
Dan Williams36d1c642009-07-14 11:48:22 -07004774 int err;
4775
Dan Williams36d1c642009-07-14 11:48:22 -07004776 allcpus = alloc_percpu(struct raid5_percpu);
4777 if (!allcpus)
4778 return -ENOMEM;
4779 conf->percpu = allcpus;
4780
4781 get_online_cpus();
4782 err = 0;
4783 for_each_present_cpu(cpu) {
Dan Williamsd6f38f32009-07-14 11:50:52 -07004784 if (conf->level == 6) {
4785 spare_page = alloc_page(GFP_KERNEL);
4786 if (!spare_page) {
4787 err = -ENOMEM;
4788 break;
4789 }
4790 per_cpu_ptr(conf->percpu, cpu)->spare_page = spare_page;
4791 }
NeilBrown5e5e3e72009-10-16 16:35:30 +11004792 scribble = kmalloc(conf->scribble_len, GFP_KERNEL);
Dan Williamsd6f38f32009-07-14 11:50:52 -07004793 if (!scribble) {
Dan Williams36d1c642009-07-14 11:48:22 -07004794 err = -ENOMEM;
4795 break;
4796 }
Dan Williamsd6f38f32009-07-14 11:50:52 -07004797 per_cpu_ptr(conf->percpu, cpu)->scribble = scribble;
Dan Williams36d1c642009-07-14 11:48:22 -07004798 }
4799#ifdef CONFIG_HOTPLUG_CPU
4800 conf->cpu_notify.notifier_call = raid456_cpu_notify;
4801 conf->cpu_notify.priority = 0;
4802 if (err == 0)
4803 err = register_cpu_notifier(&conf->cpu_notify);
4804#endif
4805 put_online_cpus();
4806
4807 return err;
4808}
4809
NeilBrown91adb562009-03-31 14:39:39 +11004810static raid5_conf_t *setup_conf(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004811{
4812 raid5_conf_t *conf;
NeilBrown5e5e3e72009-10-16 16:35:30 +11004813 int raid_disk, memory, max_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814 mdk_rdev_t *rdev;
4815 struct disk_info *disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816
NeilBrown91adb562009-03-31 14:39:39 +11004817 if (mddev->new_level != 5
4818 && mddev->new_level != 4
4819 && mddev->new_level != 6) {
NeilBrown0c55e022010-05-03 14:09:02 +10004820 printk(KERN_ERR "md/raid:%s: raid level not set to 4/5/6 (%d)\n",
NeilBrown91adb562009-03-31 14:39:39 +11004821 mdname(mddev), mddev->new_level);
4822 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004823 }
NeilBrown91adb562009-03-31 14:39:39 +11004824 if ((mddev->new_level == 5
4825 && !algorithm_valid_raid5(mddev->new_layout)) ||
4826 (mddev->new_level == 6
4827 && !algorithm_valid_raid6(mddev->new_layout))) {
NeilBrown0c55e022010-05-03 14:09:02 +10004828 printk(KERN_ERR "md/raid:%s: layout %d not supported\n",
NeilBrown91adb562009-03-31 14:39:39 +11004829 mdname(mddev), mddev->new_layout);
4830 return ERR_PTR(-EIO);
4831 }
4832 if (mddev->new_level == 6 && mddev->raid_disks < 4) {
NeilBrown0c55e022010-05-03 14:09:02 +10004833 printk(KERN_ERR "md/raid:%s: not enough configured devices (%d, minimum 4)\n",
NeilBrown91adb562009-03-31 14:39:39 +11004834 mdname(mddev), mddev->raid_disks);
4835 return ERR_PTR(-EINVAL);
NeilBrown99c0fb52009-03-31 14:39:38 +11004836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004837
Andre Noll664e7c42009-06-18 08:45:27 +10004838 if (!mddev->new_chunk_sectors ||
4839 (mddev->new_chunk_sectors << 9) % PAGE_SIZE ||
4840 !is_power_of_2(mddev->new_chunk_sectors)) {
NeilBrown0c55e022010-05-03 14:09:02 +10004841 printk(KERN_ERR "md/raid:%s: invalid chunk size %d\n",
4842 mdname(mddev), mddev->new_chunk_sectors << 9);
NeilBrown91adb562009-03-31 14:39:39 +11004843 return ERR_PTR(-EINVAL);
NeilBrown4bbf3772008-10-13 11:55:12 +11004844 }
4845
NeilBrown91adb562009-03-31 14:39:39 +11004846 conf = kzalloc(sizeof(raid5_conf_t), GFP_KERNEL);
4847 if (conf == NULL)
4848 goto abort;
Dan Williamsf5efd452009-10-16 15:55:38 +11004849 spin_lock_init(&conf->device_lock);
4850 init_waitqueue_head(&conf->wait_for_stripe);
4851 init_waitqueue_head(&conf->wait_for_overlap);
4852 INIT_LIST_HEAD(&conf->handle_list);
4853 INIT_LIST_HEAD(&conf->hold_list);
4854 INIT_LIST_HEAD(&conf->delayed_list);
4855 INIT_LIST_HEAD(&conf->bitmap_list);
4856 INIT_LIST_HEAD(&conf->inactive_list);
4857 atomic_set(&conf->active_stripes, 0);
4858 atomic_set(&conf->preread_active_stripes, 0);
4859 atomic_set(&conf->active_aligned_reads, 0);
4860 conf->bypass_threshold = BYPASS_THRESHOLD;
NeilBrown91adb562009-03-31 14:39:39 +11004861
4862 conf->raid_disks = mddev->raid_disks;
4863 if (mddev->reshape_position == MaxSector)
4864 conf->previous_raid_disks = mddev->raid_disks;
4865 else
4866 conf->previous_raid_disks = mddev->raid_disks - mddev->delta_disks;
NeilBrown5e5e3e72009-10-16 16:35:30 +11004867 max_disks = max(conf->raid_disks, conf->previous_raid_disks);
4868 conf->scribble_len = scribble_len(max_disks);
NeilBrown91adb562009-03-31 14:39:39 +11004869
NeilBrown5e5e3e72009-10-16 16:35:30 +11004870 conf->disks = kzalloc(max_disks * sizeof(struct disk_info),
NeilBrown91adb562009-03-31 14:39:39 +11004871 GFP_KERNEL);
4872 if (!conf->disks)
4873 goto abort;
4874
4875 conf->mddev = mddev;
4876
4877 if ((conf->stripe_hashtbl = kzalloc(PAGE_SIZE, GFP_KERNEL)) == NULL)
4878 goto abort;
4879
Dan Williams36d1c642009-07-14 11:48:22 -07004880 conf->level = mddev->new_level;
4881 if (raid5_alloc_percpu(conf) != 0)
4882 goto abort;
4883
NeilBrown0c55e022010-05-03 14:09:02 +10004884 pr_debug("raid456: run(%s) called.\n", mdname(mddev));
NeilBrown91adb562009-03-31 14:39:39 +11004885
4886 list_for_each_entry(rdev, &mddev->disks, same_set) {
4887 raid_disk = rdev->raid_disk;
NeilBrown5e5e3e72009-10-16 16:35:30 +11004888 if (raid_disk >= max_disks
NeilBrown91adb562009-03-31 14:39:39 +11004889 || raid_disk < 0)
4890 continue;
4891 disk = conf->disks + raid_disk;
4892
4893 disk->rdev = rdev;
4894
4895 if (test_bit(In_sync, &rdev->flags)) {
4896 char b[BDEVNAME_SIZE];
NeilBrown0c55e022010-05-03 14:09:02 +10004897 printk(KERN_INFO "md/raid:%s: device %s operational as raid"
4898 " disk %d\n",
4899 mdname(mddev), bdevname(rdev->bdev, b), raid_disk);
NeilBrown91adb562009-03-31 14:39:39 +11004900 } else
4901 /* Cannot rely on bitmap to complete recovery */
4902 conf->fullsync = 1;
4903 }
4904
Andre Noll09c9e5f2009-06-18 08:45:55 +10004905 conf->chunk_sectors = mddev->new_chunk_sectors;
NeilBrown91adb562009-03-31 14:39:39 +11004906 conf->level = mddev->new_level;
4907 if (conf->level == 6)
4908 conf->max_degraded = 2;
4909 else
4910 conf->max_degraded = 1;
4911 conf->algorithm = mddev->new_layout;
4912 conf->max_nr_stripes = NR_STRIPES;
NeilBrownfef9c612009-03-31 15:16:46 +11004913 conf->reshape_progress = mddev->reshape_position;
NeilBrowne183eae2009-03-31 15:20:22 +11004914 if (conf->reshape_progress != MaxSector) {
Andre Noll09c9e5f2009-06-18 08:45:55 +10004915 conf->prev_chunk_sectors = mddev->chunk_sectors;
NeilBrowne183eae2009-03-31 15:20:22 +11004916 conf->prev_algo = mddev->layout;
4917 }
NeilBrown91adb562009-03-31 14:39:39 +11004918
4919 memory = conf->max_nr_stripes * (sizeof(struct stripe_head) +
NeilBrown5e5e3e72009-10-16 16:35:30 +11004920 max_disks * ((sizeof(struct bio) + PAGE_SIZE))) / 1024;
NeilBrown91adb562009-03-31 14:39:39 +11004921 if (grow_stripes(conf, conf->max_nr_stripes)) {
4922 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10004923 "md/raid:%s: couldn't allocate %dkB for buffers\n",
4924 mdname(mddev), memory);
NeilBrown91adb562009-03-31 14:39:39 +11004925 goto abort;
4926 } else
NeilBrown0c55e022010-05-03 14:09:02 +10004927 printk(KERN_INFO "md/raid:%s: allocated %dkB\n",
4928 mdname(mddev), memory);
NeilBrown91adb562009-03-31 14:39:39 +11004929
NeilBrown0da3c612009-09-23 18:09:45 +10004930 conf->thread = md_register_thread(raid5d, mddev, NULL);
NeilBrown91adb562009-03-31 14:39:39 +11004931 if (!conf->thread) {
4932 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10004933 "md/raid:%s: couldn't allocate thread.\n",
NeilBrown91adb562009-03-31 14:39:39 +11004934 mdname(mddev));
4935 goto abort;
4936 }
4937
4938 return conf;
4939
4940 abort:
4941 if (conf) {
Dan Williams95fc17a2009-07-31 12:39:15 +10004942 free_conf(conf);
NeilBrown91adb562009-03-31 14:39:39 +11004943 return ERR_PTR(-EIO);
4944 } else
4945 return ERR_PTR(-ENOMEM);
4946}
4947
NeilBrownc148ffd2009-11-13 17:47:00 +11004948
4949static int only_parity(int raid_disk, int algo, int raid_disks, int max_degraded)
4950{
4951 switch (algo) {
4952 case ALGORITHM_PARITY_0:
4953 if (raid_disk < max_degraded)
4954 return 1;
4955 break;
4956 case ALGORITHM_PARITY_N:
4957 if (raid_disk >= raid_disks - max_degraded)
4958 return 1;
4959 break;
4960 case ALGORITHM_PARITY_0_6:
4961 if (raid_disk == 0 ||
4962 raid_disk == raid_disks - 1)
4963 return 1;
4964 break;
4965 case ALGORITHM_LEFT_ASYMMETRIC_6:
4966 case ALGORITHM_RIGHT_ASYMMETRIC_6:
4967 case ALGORITHM_LEFT_SYMMETRIC_6:
4968 case ALGORITHM_RIGHT_SYMMETRIC_6:
4969 if (raid_disk == raid_disks - 1)
4970 return 1;
4971 }
4972 return 0;
4973}
4974
NeilBrown91adb562009-03-31 14:39:39 +11004975static int run(mddev_t *mddev)
4976{
4977 raid5_conf_t *conf;
Martin K. Petersen8f6c2e42009-07-01 11:13:45 +10004978 int working_disks = 0, chunk_size;
NeilBrownc148ffd2009-11-13 17:47:00 +11004979 int dirty_parity_disks = 0;
NeilBrown91adb562009-03-31 14:39:39 +11004980 mdk_rdev_t *rdev;
NeilBrownc148ffd2009-11-13 17:47:00 +11004981 sector_t reshape_offset = 0;
NeilBrown91adb562009-03-31 14:39:39 +11004982
Andre Noll8c6ac8682009-06-18 08:48:06 +10004983 if (mddev->recovery_cp != MaxSector)
NeilBrown0c55e022010-05-03 14:09:02 +10004984 printk(KERN_NOTICE "md/raid:%s: not clean"
Andre Noll8c6ac8682009-06-18 08:48:06 +10004985 " -- starting background reconstruction\n",
4986 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08004987 if (mddev->reshape_position != MaxSector) {
4988 /* Check that we can continue the reshape.
4989 * Currently only disks can change, it must
4990 * increase, and we must be past the point where
4991 * a stripe over-writes itself
4992 */
4993 sector_t here_new, here_old;
4994 int old_disks;
Andre Noll18b00332009-03-31 15:00:56 +11004995 int max_degraded = (mddev->level == 6 ? 2 : 1);
NeilBrownf6705572006-03-27 01:18:11 -08004996
NeilBrown88ce4932009-03-31 15:24:23 +11004997 if (mddev->new_level != mddev->level) {
NeilBrown0c55e022010-05-03 14:09:02 +10004998 printk(KERN_ERR "md/raid:%s: unsupported reshape "
NeilBrownf4168852007-02-28 20:11:53 -08004999 "required - aborting.\n",
NeilBrownf6705572006-03-27 01:18:11 -08005000 mdname(mddev));
5001 return -EINVAL;
5002 }
NeilBrownf6705572006-03-27 01:18:11 -08005003 old_disks = mddev->raid_disks - mddev->delta_disks;
5004 /* reshape_position must be on a new-stripe boundary, and one
NeilBrownf4168852007-02-28 20:11:53 -08005005 * further up in new geometry must map after here in old
5006 * geometry.
NeilBrownf6705572006-03-27 01:18:11 -08005007 */
5008 here_new = mddev->reshape_position;
Andre Noll664e7c42009-06-18 08:45:27 +10005009 if (sector_div(here_new, mddev->new_chunk_sectors *
NeilBrownf4168852007-02-28 20:11:53 -08005010 (mddev->raid_disks - max_degraded))) {
NeilBrown0c55e022010-05-03 14:09:02 +10005011 printk(KERN_ERR "md/raid:%s: reshape_position not "
5012 "on a stripe boundary\n", mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08005013 return -EINVAL;
5014 }
NeilBrownc148ffd2009-11-13 17:47:00 +11005015 reshape_offset = here_new * mddev->new_chunk_sectors;
NeilBrownf6705572006-03-27 01:18:11 -08005016 /* here_new is the stripe we will write to */
5017 here_old = mddev->reshape_position;
Andre Noll9d8f0362009-06-18 08:45:01 +10005018 sector_div(here_old, mddev->chunk_sectors *
NeilBrownf4168852007-02-28 20:11:53 -08005019 (old_disks-max_degraded));
5020 /* here_old is the first stripe that we might need to read
5021 * from */
NeilBrown67ac6012009-08-13 10:06:24 +10005022 if (mddev->delta_disks == 0) {
5023 /* We cannot be sure it is safe to start an in-place
5024 * reshape. It is only safe if user-space if monitoring
5025 * and taking constant backups.
5026 * mdadm always starts a situation like this in
5027 * readonly mode so it can take control before
5028 * allowing any writes. So just check for that.
5029 */
5030 if ((here_new * mddev->new_chunk_sectors !=
5031 here_old * mddev->chunk_sectors) ||
5032 mddev->ro == 0) {
NeilBrown0c55e022010-05-03 14:09:02 +10005033 printk(KERN_ERR "md/raid:%s: in-place reshape must be started"
5034 " in read-only mode - aborting\n",
5035 mdname(mddev));
NeilBrown67ac6012009-08-13 10:06:24 +10005036 return -EINVAL;
5037 }
5038 } else if (mddev->delta_disks < 0
5039 ? (here_new * mddev->new_chunk_sectors <=
5040 here_old * mddev->chunk_sectors)
5041 : (here_new * mddev->new_chunk_sectors >=
5042 here_old * mddev->chunk_sectors)) {
NeilBrownf6705572006-03-27 01:18:11 -08005043 /* Reading from the same stripe as writing to - bad */
NeilBrown0c55e022010-05-03 14:09:02 +10005044 printk(KERN_ERR "md/raid:%s: reshape_position too early for "
5045 "auto-recovery - aborting.\n",
5046 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08005047 return -EINVAL;
5048 }
NeilBrown0c55e022010-05-03 14:09:02 +10005049 printk(KERN_INFO "md/raid:%s: reshape will continue\n",
5050 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08005051 /* OK, we should be able to continue; */
NeilBrownf6705572006-03-27 01:18:11 -08005052 } else {
NeilBrown91adb562009-03-31 14:39:39 +11005053 BUG_ON(mddev->level != mddev->new_level);
5054 BUG_ON(mddev->layout != mddev->new_layout);
Andre Noll664e7c42009-06-18 08:45:27 +10005055 BUG_ON(mddev->chunk_sectors != mddev->new_chunk_sectors);
NeilBrown91adb562009-03-31 14:39:39 +11005056 BUG_ON(mddev->delta_disks != 0);
NeilBrownf6705572006-03-27 01:18:11 -08005057 }
5058
NeilBrown245f46c2009-03-31 14:39:39 +11005059 if (mddev->private == NULL)
5060 conf = setup_conf(mddev);
5061 else
5062 conf = mddev->private;
5063
NeilBrown91adb562009-03-31 14:39:39 +11005064 if (IS_ERR(conf))
5065 return PTR_ERR(conf);
NeilBrown9ffae0c2006-01-06 00:20:32 -08005066
NeilBrown91adb562009-03-31 14:39:39 +11005067 mddev->thread = conf->thread;
5068 conf->thread = NULL;
5069 mddev->private = conf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005070
Linus Torvalds1da177e2005-04-16 15:20:36 -07005071 /*
NeilBrown16a53ec2006-06-26 00:27:38 -07005072 * 0 for a fully functional array, 1 or 2 for a degraded array.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005073 */
NeilBrownc148ffd2009-11-13 17:47:00 +11005074 list_for_each_entry(rdev, &mddev->disks, same_set) {
5075 if (rdev->raid_disk < 0)
5076 continue;
NeilBrown2f115882010-06-17 17:41:03 +10005077 if (test_bit(In_sync, &rdev->flags)) {
NeilBrown91adb562009-03-31 14:39:39 +11005078 working_disks++;
NeilBrown2f115882010-06-17 17:41:03 +10005079 continue;
5080 }
NeilBrownc148ffd2009-11-13 17:47:00 +11005081 /* This disc is not fully in-sync. However if it
5082 * just stored parity (beyond the recovery_offset),
5083 * when we don't need to be concerned about the
5084 * array being dirty.
5085 * When reshape goes 'backwards', we never have
5086 * partially completed devices, so we only need
5087 * to worry about reshape going forwards.
5088 */
5089 /* Hack because v0.91 doesn't store recovery_offset properly. */
5090 if (mddev->major_version == 0 &&
5091 mddev->minor_version > 90)
5092 rdev->recovery_offset = reshape_offset;
5093
NeilBrownc148ffd2009-11-13 17:47:00 +11005094 if (rdev->recovery_offset < reshape_offset) {
5095 /* We need to check old and new layout */
5096 if (!only_parity(rdev->raid_disk,
5097 conf->algorithm,
5098 conf->raid_disks,
5099 conf->max_degraded))
5100 continue;
5101 }
5102 if (!only_parity(rdev->raid_disk,
5103 conf->prev_algo,
5104 conf->previous_raid_disks,
5105 conf->max_degraded))
5106 continue;
5107 dirty_parity_disks++;
5108 }
NeilBrown91adb562009-03-31 14:39:39 +11005109
NeilBrown5e5e3e72009-10-16 16:35:30 +11005110 mddev->degraded = (max(conf->raid_disks, conf->previous_raid_disks)
5111 - working_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005112
NeilBrown674806d2010-06-16 17:17:53 +10005113 if (has_failed(conf)) {
NeilBrown0c55e022010-05-03 14:09:02 +10005114 printk(KERN_ERR "md/raid:%s: not enough operational devices"
Linus Torvalds1da177e2005-04-16 15:20:36 -07005115 " (%d/%d failed)\n",
NeilBrown02c2de82006-10-03 01:15:47 -07005116 mdname(mddev), mddev->degraded, conf->raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005117 goto abort;
5118 }
5119
NeilBrown91adb562009-03-31 14:39:39 +11005120 /* device size must be a multiple of chunk size */
Andre Noll9d8f0362009-06-18 08:45:01 +10005121 mddev->dev_sectors &= ~(mddev->chunk_sectors - 1);
NeilBrown91adb562009-03-31 14:39:39 +11005122 mddev->resync_max_sectors = mddev->dev_sectors;
5123
NeilBrownc148ffd2009-11-13 17:47:00 +11005124 if (mddev->degraded > dirty_parity_disks &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005125 mddev->recovery_cp != MaxSector) {
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08005126 if (mddev->ok_start_degraded)
5127 printk(KERN_WARNING
NeilBrown0c55e022010-05-03 14:09:02 +10005128 "md/raid:%s: starting dirty degraded array"
5129 " - data corruption possible.\n",
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08005130 mdname(mddev));
5131 else {
5132 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10005133 "md/raid:%s: cannot start dirty degraded array.\n",
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08005134 mdname(mddev));
5135 goto abort;
5136 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005137 }
5138
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139 if (mddev->degraded == 0)
NeilBrown0c55e022010-05-03 14:09:02 +10005140 printk(KERN_INFO "md/raid:%s: raid level %d active with %d out of %d"
5141 " devices, algorithm %d\n", mdname(mddev), conf->level,
NeilBrowne183eae2009-03-31 15:20:22 +11005142 mddev->raid_disks-mddev->degraded, mddev->raid_disks,
5143 mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005144 else
NeilBrown0c55e022010-05-03 14:09:02 +10005145 printk(KERN_ALERT "md/raid:%s: raid level %d active with %d"
5146 " out of %d devices, algorithm %d\n",
5147 mdname(mddev), conf->level,
5148 mddev->raid_disks - mddev->degraded,
5149 mddev->raid_disks, mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150
5151 print_raid5_conf(conf);
5152
NeilBrownfef9c612009-03-31 15:16:46 +11005153 if (conf->reshape_progress != MaxSector) {
NeilBrownfef9c612009-03-31 15:16:46 +11005154 conf->reshape_safe = conf->reshape_progress;
NeilBrownf6705572006-03-27 01:18:11 -08005155 atomic_set(&conf->reshape_stripes, 0);
5156 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
5157 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
5158 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
5159 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
5160 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
NeilBrown0da3c612009-09-23 18:09:45 +10005161 "reshape");
NeilBrownf6705572006-03-27 01:18:11 -08005162 }
5163
Linus Torvalds1da177e2005-04-16 15:20:36 -07005164 /* read-ahead size must cover two whole stripes, which is
NeilBrown16a53ec2006-06-26 00:27:38 -07005165 * 2 * (datadisks) * chunksize where 'n' is the number of raid devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07005166 */
5167 {
NeilBrown16a53ec2006-06-26 00:27:38 -07005168 int data_disks = conf->previous_raid_disks - conf->max_degraded;
5169 int stripe = data_disks *
Andre Noll9d8f0362009-06-18 08:45:01 +10005170 ((mddev->chunk_sectors << 9) / PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005171 if (mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
5172 mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
5173 }
5174
5175 /* Ok, everything is just fine now */
NeilBrowna64c8762010-04-14 17:15:37 +10005176 if (mddev->to_remove == &raid5_attrs_group)
5177 mddev->to_remove = NULL;
NeilBrown00bcb4a2010-06-01 19:37:23 +10005178 else if (mddev->kobj.sd &&
5179 sysfs_create_group(&mddev->kobj, &raid5_attrs_group))
NeilBrown5e55e2f2007-03-26 21:32:14 -08005180 printk(KERN_WARNING
NeilBrown0c55e022010-05-03 14:09:02 +10005181 "md/raid:%s: failed to create sysfs attributes.\n",
NeilBrown5e55e2f2007-03-26 21:32:14 -08005182 mdname(mddev));
NeilBrown7a5febe2005-05-16 21:53:16 -07005183
NeilBrown91adb562009-03-31 14:39:39 +11005184 mddev->queue->queue_lock = &conf->device_lock;
5185
NeilBrown7a5febe2005-05-16 21:53:16 -07005186 mddev->queue->unplug_fn = raid5_unplug_device;
NeilBrownf022b2f2006-10-03 01:15:56 -07005187 mddev->queue->backing_dev_info.congested_data = mddev;
NeilBrown041ae522007-03-26 21:32:14 -08005188 mddev->queue->backing_dev_info.congested_fn = raid5_congested;
NeilBrownf022b2f2006-10-03 01:15:56 -07005189
Dan Williams1f403622009-03-31 14:59:03 +11005190 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
NeilBrown7a5febe2005-05-16 21:53:16 -07005191
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08005192 blk_queue_merge_bvec(mddev->queue, raid5_mergeable_bvec);
Martin K. Petersen8f6c2e42009-07-01 11:13:45 +10005193 chunk_size = mddev->chunk_sectors << 9;
5194 blk_queue_io_min(mddev->queue, chunk_size);
5195 blk_queue_io_opt(mddev->queue, chunk_size *
5196 (conf->raid_disks - conf->max_degraded));
5197
5198 list_for_each_entry(rdev, &mddev->disks, same_set)
5199 disk_stack_limits(mddev->gendisk, rdev->bdev,
5200 rdev->data_offset << 9);
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08005201
Linus Torvalds1da177e2005-04-16 15:20:36 -07005202 return 0;
5203abort:
NeilBrowne0cf8f02009-03-31 14:39:39 +11005204 md_unregister_thread(mddev->thread);
NeilBrown91adb562009-03-31 14:39:39 +11005205 mddev->thread = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005206 if (conf) {
5207 print_raid5_conf(conf);
Dan Williams95fc17a2009-07-31 12:39:15 +10005208 free_conf(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005209 }
5210 mddev->private = NULL;
NeilBrown0c55e022010-05-03 14:09:02 +10005211 printk(KERN_ALERT "md/raid:%s: failed to run raid set.\n", mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005212 return -EIO;
5213}
5214
NeilBrown3f294f42005-11-08 21:39:25 -08005215static int stop(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216{
H Hartley Sweeten7b928132010-03-08 16:02:40 +11005217 raid5_conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218
5219 md_unregister_thread(mddev->thread);
5220 mddev->thread = NULL;
NeilBrown041ae522007-03-26 21:32:14 -08005221 mddev->queue->backing_dev_info.congested_fn = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005222 blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/
Dan Williams95fc17a2009-07-31 12:39:15 +10005223 free_conf(conf);
NeilBrowna64c8762010-04-14 17:15:37 +10005224 mddev->private = NULL;
5225 mddev->to_remove = &raid5_attrs_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005226 return 0;
5227}
5228
Dan Williams45b42332007-07-09 11:56:43 -07005229#ifdef DEBUG
NeilBrownd710e132008-10-13 11:55:12 +11005230static void print_sh(struct seq_file *seq, struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005231{
5232 int i;
5233
NeilBrown16a53ec2006-06-26 00:27:38 -07005234 seq_printf(seq, "sh %llu, pd_idx %d, state %ld.\n",
5235 (unsigned long long)sh->sector, sh->pd_idx, sh->state);
5236 seq_printf(seq, "sh %llu, count %d.\n",
5237 (unsigned long long)sh->sector, atomic_read(&sh->count));
5238 seq_printf(seq, "sh %llu, ", (unsigned long long)sh->sector);
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005239 for (i = 0; i < sh->disks; i++) {
NeilBrown16a53ec2006-06-26 00:27:38 -07005240 seq_printf(seq, "(cache%d: %p %ld) ",
5241 i, sh->dev[i].page, sh->dev[i].flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005242 }
NeilBrown16a53ec2006-06-26 00:27:38 -07005243 seq_printf(seq, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005244}
5245
NeilBrownd710e132008-10-13 11:55:12 +11005246static void printall(struct seq_file *seq, raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005247{
5248 struct stripe_head *sh;
NeilBrownfccddba2006-01-06 00:20:33 -08005249 struct hlist_node *hn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005250 int i;
5251
5252 spin_lock_irq(&conf->device_lock);
5253 for (i = 0; i < NR_HASH; i++) {
NeilBrownfccddba2006-01-06 00:20:33 -08005254 hlist_for_each_entry(sh, hn, &conf->stripe_hashtbl[i], hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005255 if (sh->raid_conf != conf)
5256 continue;
NeilBrown16a53ec2006-06-26 00:27:38 -07005257 print_sh(seq, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005258 }
5259 }
5260 spin_unlock_irq(&conf->device_lock);
5261}
5262#endif
5263
NeilBrownd710e132008-10-13 11:55:12 +11005264static void status(struct seq_file *seq, mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005265{
H Hartley Sweeten7b928132010-03-08 16:02:40 +11005266 raid5_conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005267 int i;
5268
Andre Noll9d8f0362009-06-18 08:45:01 +10005269 seq_printf(seq, " level %d, %dk chunk, algorithm %d", mddev->level,
5270 mddev->chunk_sectors / 2, mddev->layout);
NeilBrown02c2de82006-10-03 01:15:47 -07005271 seq_printf (seq, " [%d/%d] [", conf->raid_disks, conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005272 for (i = 0; i < conf->raid_disks; i++)
5273 seq_printf (seq, "%s",
5274 conf->disks[i].rdev &&
NeilBrownb2d444d2005-11-08 21:39:31 -08005275 test_bit(In_sync, &conf->disks[i].rdev->flags) ? "U" : "_");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005276 seq_printf (seq, "]");
Dan Williams45b42332007-07-09 11:56:43 -07005277#ifdef DEBUG
NeilBrown16a53ec2006-06-26 00:27:38 -07005278 seq_printf (seq, "\n");
5279 printall(seq, conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005280#endif
5281}
5282
5283static void print_raid5_conf (raid5_conf_t *conf)
5284{
5285 int i;
5286 struct disk_info *tmp;
5287
NeilBrown0c55e022010-05-03 14:09:02 +10005288 printk(KERN_DEBUG "RAID conf printout:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005289 if (!conf) {
5290 printk("(conf==NULL)\n");
5291 return;
5292 }
NeilBrown0c55e022010-05-03 14:09:02 +10005293 printk(KERN_DEBUG " --- level:%d rd:%d wd:%d\n", conf->level,
5294 conf->raid_disks,
5295 conf->raid_disks - conf->mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005296
5297 for (i = 0; i < conf->raid_disks; i++) {
5298 char b[BDEVNAME_SIZE];
5299 tmp = conf->disks + i;
5300 if (tmp->rdev)
NeilBrown0c55e022010-05-03 14:09:02 +10005301 printk(KERN_DEBUG " disk %d, o:%d, dev:%s\n",
5302 i, !test_bit(Faulty, &tmp->rdev->flags),
5303 bdevname(tmp->rdev->bdev, b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005304 }
5305}
5306
5307static int raid5_spare_active(mddev_t *mddev)
5308{
5309 int i;
5310 raid5_conf_t *conf = mddev->private;
5311 struct disk_info *tmp;
5312
5313 for (i = 0; i < conf->raid_disks; i++) {
5314 tmp = conf->disks + i;
5315 if (tmp->rdev
NeilBrown70fffd02010-06-16 17:01:25 +10005316 && tmp->rdev->recovery_offset == MaxSector
NeilBrownb2d444d2005-11-08 21:39:31 -08005317 && !test_bit(Faulty, &tmp->rdev->flags)
NeilBrownc04be0a2006-10-03 01:15:53 -07005318 && !test_and_set_bit(In_sync, &tmp->rdev->flags)) {
5319 unsigned long flags;
5320 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005321 mddev->degraded--;
NeilBrownc04be0a2006-10-03 01:15:53 -07005322 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005323 }
5324 }
5325 print_raid5_conf(conf);
5326 return 0;
5327}
5328
5329static int raid5_remove_disk(mddev_t *mddev, int number)
5330{
5331 raid5_conf_t *conf = mddev->private;
5332 int err = 0;
5333 mdk_rdev_t *rdev;
5334 struct disk_info *p = conf->disks + number;
5335
5336 print_raid5_conf(conf);
5337 rdev = p->rdev;
5338 if (rdev) {
NeilBrownec32a2b2009-03-31 15:17:38 +11005339 if (number >= conf->raid_disks &&
5340 conf->reshape_progress == MaxSector)
5341 clear_bit(In_sync, &rdev->flags);
5342
NeilBrownb2d444d2005-11-08 21:39:31 -08005343 if (test_bit(In_sync, &rdev->flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07005344 atomic_read(&rdev->nr_pending)) {
5345 err = -EBUSY;
5346 goto abort;
5347 }
NeilBrowndfc70642008-05-23 13:04:39 -07005348 /* Only remove non-faulty devices if recovery
5349 * isn't possible.
5350 */
5351 if (!test_bit(Faulty, &rdev->flags) &&
NeilBrown674806d2010-06-16 17:17:53 +10005352 !has_failed(conf) &&
NeilBrownec32a2b2009-03-31 15:17:38 +11005353 number < conf->raid_disks) {
NeilBrowndfc70642008-05-23 13:04:39 -07005354 err = -EBUSY;
5355 goto abort;
5356 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005357 p->rdev = NULL;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07005358 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005359 if (atomic_read(&rdev->nr_pending)) {
5360 /* lost the race, try later */
5361 err = -EBUSY;
5362 p->rdev = rdev;
5363 }
5364 }
5365abort:
5366
5367 print_raid5_conf(conf);
5368 return err;
5369}
5370
5371static int raid5_add_disk(mddev_t *mddev, mdk_rdev_t *rdev)
5372{
5373 raid5_conf_t *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10005374 int err = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005375 int disk;
5376 struct disk_info *p;
Neil Brown6c2fce22008-06-28 08:31:31 +10005377 int first = 0;
5378 int last = conf->raid_disks - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005379
NeilBrown674806d2010-06-16 17:17:53 +10005380 if (has_failed(conf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005381 /* no point adding a device */
Neil Brown199050e2008-06-28 08:31:33 +10005382 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005383
Neil Brown6c2fce22008-06-28 08:31:31 +10005384 if (rdev->raid_disk >= 0)
5385 first = last = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005386
5387 /*
NeilBrown16a53ec2006-06-26 00:27:38 -07005388 * find the disk ... but prefer rdev->saved_raid_disk
5389 * if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005390 */
NeilBrown16a53ec2006-06-26 00:27:38 -07005391 if (rdev->saved_raid_disk >= 0 &&
Neil Brown6c2fce22008-06-28 08:31:31 +10005392 rdev->saved_raid_disk >= first &&
NeilBrown16a53ec2006-06-26 00:27:38 -07005393 conf->disks[rdev->saved_raid_disk].rdev == NULL)
5394 disk = rdev->saved_raid_disk;
5395 else
Neil Brown6c2fce22008-06-28 08:31:31 +10005396 disk = first;
5397 for ( ; disk <= last ; disk++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398 if ((p=conf->disks + disk)->rdev == NULL) {
NeilBrownb2d444d2005-11-08 21:39:31 -08005399 clear_bit(In_sync, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005400 rdev->raid_disk = disk;
Neil Brown199050e2008-06-28 08:31:33 +10005401 err = 0;
NeilBrown72626682005-09-09 16:23:54 -07005402 if (rdev->saved_raid_disk != disk)
5403 conf->fullsync = 1;
Suzanne Woodd6065f72005-11-08 21:39:27 -08005404 rcu_assign_pointer(p->rdev, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005405 break;
5406 }
5407 print_raid5_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10005408 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005409}
5410
5411static int raid5_resize(mddev_t *mddev, sector_t sectors)
5412{
5413 /* no resync is happening, and there is enough space
5414 * on all devices, so we can resize.
5415 * We need to make sure resync covers any new space.
5416 * If the array is shrinking we should possibly wait until
5417 * any io in the removed space completes, but it hardly seems
5418 * worth it.
5419 */
Andre Noll9d8f0362009-06-18 08:45:01 +10005420 sectors &= ~((sector_t)mddev->chunk_sectors - 1);
Dan Williams1f403622009-03-31 14:59:03 +11005421 md_set_array_sectors(mddev, raid5_size(mddev, sectors,
5422 mddev->raid_disks));
Dan Williamsb522adc2009-03-31 15:00:31 +11005423 if (mddev->array_sectors >
5424 raid5_size(mddev, sectors, mddev->raid_disks))
5425 return -EINVAL;
Andre Nollf233ea52008-07-21 17:05:22 +10005426 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10005427 revalidate_disk(mddev->gendisk);
Andre Noll58c0fed2009-03-31 14:33:13 +11005428 if (sectors > mddev->dev_sectors && mddev->recovery_cp == MaxSector) {
5429 mddev->recovery_cp = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005430 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
5431 }
Andre Noll58c0fed2009-03-31 14:33:13 +11005432 mddev->dev_sectors = sectors;
NeilBrown4b5c7ae2005-07-27 11:43:28 -07005433 mddev->resync_max_sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005434 return 0;
5435}
5436
NeilBrown01ee22b2009-06-18 08:47:20 +10005437static int check_stripe_cache(mddev_t *mddev)
5438{
5439 /* Can only proceed if there are plenty of stripe_heads.
5440 * We need a minimum of one full stripe,, and for sensible progress
5441 * it is best to have about 4 times that.
5442 * If we require 4 times, then the default 256 4K stripe_heads will
5443 * allow for chunk sizes up to 256K, which is probably OK.
5444 * If the chunk size is greater, user-space should request more
5445 * stripe_heads first.
5446 */
5447 raid5_conf_t *conf = mddev->private;
5448 if (((mddev->chunk_sectors << 9) / STRIPE_SIZE) * 4
5449 > conf->max_nr_stripes ||
5450 ((mddev->new_chunk_sectors << 9) / STRIPE_SIZE) * 4
5451 > conf->max_nr_stripes) {
NeilBrown0c55e022010-05-03 14:09:02 +10005452 printk(KERN_WARNING "md/raid:%s: reshape: not enough stripes. Needed %lu\n",
5453 mdname(mddev),
NeilBrown01ee22b2009-06-18 08:47:20 +10005454 ((max(mddev->chunk_sectors, mddev->new_chunk_sectors) << 9)
5455 / STRIPE_SIZE)*4);
5456 return 0;
5457 }
5458 return 1;
5459}
5460
NeilBrown50ac1682009-06-18 08:47:55 +10005461static int check_reshape(mddev_t *mddev)
NeilBrown29269552006-03-27 01:18:10 -08005462{
NeilBrown070ec552009-06-16 16:54:21 +10005463 raid5_conf_t *conf = mddev->private;
NeilBrown29269552006-03-27 01:18:10 -08005464
NeilBrown88ce4932009-03-31 15:24:23 +11005465 if (mddev->delta_disks == 0 &&
5466 mddev->new_layout == mddev->layout &&
Andre Noll664e7c42009-06-18 08:45:27 +10005467 mddev->new_chunk_sectors == mddev->chunk_sectors)
NeilBrown50ac1682009-06-18 08:47:55 +10005468 return 0; /* nothing to do */
NeilBrowndba034e2008-08-05 15:54:13 +10005469 if (mddev->bitmap)
5470 /* Cannot grow a bitmap yet */
5471 return -EBUSY;
NeilBrown674806d2010-06-16 17:17:53 +10005472 if (has_failed(conf))
NeilBrownec32a2b2009-03-31 15:17:38 +11005473 return -EINVAL;
5474 if (mddev->delta_disks < 0) {
5475 /* We might be able to shrink, but the devices must
5476 * be made bigger first.
5477 * For raid6, 4 is the minimum size.
5478 * Otherwise 2 is the minimum
5479 */
5480 int min = 2;
5481 if (mddev->level == 6)
5482 min = 4;
5483 if (mddev->raid_disks + mddev->delta_disks < min)
5484 return -EINVAL;
5485 }
NeilBrown29269552006-03-27 01:18:10 -08005486
NeilBrown01ee22b2009-06-18 08:47:20 +10005487 if (!check_stripe_cache(mddev))
NeilBrown29269552006-03-27 01:18:10 -08005488 return -ENOSPC;
NeilBrown29269552006-03-27 01:18:10 -08005489
NeilBrownec32a2b2009-03-31 15:17:38 +11005490 return resize_stripes(conf, conf->raid_disks + mddev->delta_disks);
NeilBrown63c70c42006-03-27 01:18:13 -08005491}
5492
5493static int raid5_start_reshape(mddev_t *mddev)
5494{
NeilBrown070ec552009-06-16 16:54:21 +10005495 raid5_conf_t *conf = mddev->private;
NeilBrown63c70c42006-03-27 01:18:13 -08005496 mdk_rdev_t *rdev;
NeilBrown63c70c42006-03-27 01:18:13 -08005497 int spares = 0;
5498 int added_devices = 0;
NeilBrownc04be0a2006-10-03 01:15:53 -07005499 unsigned long flags;
NeilBrown63c70c42006-03-27 01:18:13 -08005500
NeilBrownf4168852007-02-28 20:11:53 -08005501 if (test_bit(MD_RECOVERY_RUNNING, &mddev->recovery))
NeilBrown63c70c42006-03-27 01:18:13 -08005502 return -EBUSY;
5503
NeilBrown01ee22b2009-06-18 08:47:20 +10005504 if (!check_stripe_cache(mddev))
5505 return -ENOSPC;
5506
Cheng Renquan159ec1f2009-01-09 08:31:08 +11005507 list_for_each_entry(rdev, &mddev->disks, same_set)
NeilBrown29269552006-03-27 01:18:10 -08005508 if (rdev->raid_disk < 0 &&
5509 !test_bit(Faulty, &rdev->flags))
5510 spares++;
NeilBrown63c70c42006-03-27 01:18:13 -08005511
NeilBrownf4168852007-02-28 20:11:53 -08005512 if (spares - mddev->degraded < mddev->delta_disks - conf->max_degraded)
NeilBrown29269552006-03-27 01:18:10 -08005513 /* Not enough devices even to make a degraded array
5514 * of that size
5515 */
5516 return -EINVAL;
5517
NeilBrownec32a2b2009-03-31 15:17:38 +11005518 /* Refuse to reduce size of the array. Any reductions in
5519 * array size must be through explicit setting of array_size
5520 * attribute.
5521 */
5522 if (raid5_size(mddev, 0, conf->raid_disks + mddev->delta_disks)
5523 < mddev->array_sectors) {
NeilBrown0c55e022010-05-03 14:09:02 +10005524 printk(KERN_ERR "md/raid:%s: array size must be reduced "
NeilBrownec32a2b2009-03-31 15:17:38 +11005525 "before number of disks\n", mdname(mddev));
5526 return -EINVAL;
5527 }
5528
NeilBrownf6705572006-03-27 01:18:11 -08005529 atomic_set(&conf->reshape_stripes, 0);
NeilBrown29269552006-03-27 01:18:10 -08005530 spin_lock_irq(&conf->device_lock);
5531 conf->previous_raid_disks = conf->raid_disks;
NeilBrown63c70c42006-03-27 01:18:13 -08005532 conf->raid_disks += mddev->delta_disks;
Andre Noll09c9e5f2009-06-18 08:45:55 +10005533 conf->prev_chunk_sectors = conf->chunk_sectors;
5534 conf->chunk_sectors = mddev->new_chunk_sectors;
NeilBrown88ce4932009-03-31 15:24:23 +11005535 conf->prev_algo = conf->algorithm;
5536 conf->algorithm = mddev->new_layout;
NeilBrownfef9c612009-03-31 15:16:46 +11005537 if (mddev->delta_disks < 0)
5538 conf->reshape_progress = raid5_size(mddev, 0, 0);
5539 else
5540 conf->reshape_progress = 0;
5541 conf->reshape_safe = conf->reshape_progress;
NeilBrown86b42c72009-03-31 15:19:03 +11005542 conf->generation++;
NeilBrown29269552006-03-27 01:18:10 -08005543 spin_unlock_irq(&conf->device_lock);
5544
5545 /* Add some new drives, as many as will fit.
5546 * We know there are enough to make the newly sized array work.
NeilBrown3424bf62010-06-17 17:48:26 +10005547 * Don't add devices if we are reducing the number of
5548 * devices in the array. This is because it is not possible
5549 * to correctly record the "partially reconstructed" state of
5550 * such devices during the reshape and confusion could result.
NeilBrown29269552006-03-27 01:18:10 -08005551 */
NeilBrown3424bf62010-06-17 17:48:26 +10005552 if (mddev->delta_disks >= 0)
5553 list_for_each_entry(rdev, &mddev->disks, same_set)
NeilBrown29269552006-03-27 01:18:10 -08005554 if (rdev->raid_disk < 0 &&
5555 !test_bit(Faulty, &rdev->flags)) {
Neil Brown199050e2008-06-28 08:31:33 +10005556 if (raid5_add_disk(mddev, rdev) == 0) {
NeilBrown29269552006-03-27 01:18:10 -08005557 char nm[20];
NeilBrown9eb07c22010-02-09 12:31:47 +11005558 if (rdev->raid_disk >= conf->previous_raid_disks) {
NeilBrown7ef90142009-11-13 17:40:51 +11005559 set_bit(In_sync, &rdev->flags);
NeilBrown9eb07c22010-02-09 12:31:47 +11005560 added_devices++;
5561 } else
NeilBrown7ef90142009-11-13 17:40:51 +11005562 rdev->recovery_offset = 0;
NeilBrown29269552006-03-27 01:18:10 -08005563 sprintf(nm, "rd%d", rdev->raid_disk);
NeilBrown5e55e2f2007-03-26 21:32:14 -08005564 if (sysfs_create_link(&mddev->kobj,
5565 &rdev->kobj, nm))
NeilBrown00bcb4a2010-06-01 19:37:23 +10005566 /* Failure here is OK */;
NeilBrown29269552006-03-27 01:18:10 -08005567 } else
5568 break;
5569 }
5570
NeilBrown9eb07c22010-02-09 12:31:47 +11005571 /* When a reshape changes the number of devices, ->degraded
NeilBrown3424bf62010-06-17 17:48:26 +10005572 * is measured against the larger of the pre and post number of
NeilBrown9eb07c22010-02-09 12:31:47 +11005573 * devices.*/
NeilBrownec32a2b2009-03-31 15:17:38 +11005574 if (mddev->delta_disks > 0) {
5575 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrown9eb07c22010-02-09 12:31:47 +11005576 mddev->degraded += (conf->raid_disks - conf->previous_raid_disks)
NeilBrownec32a2b2009-03-31 15:17:38 +11005577 - added_devices;
5578 spin_unlock_irqrestore(&conf->device_lock, flags);
5579 }
NeilBrown63c70c42006-03-27 01:18:13 -08005580 mddev->raid_disks = conf->raid_disks;
NeilBrowne5164022009-08-03 10:59:57 +10005581 mddev->reshape_position = conf->reshape_progress;
NeilBrown850b2b422006-10-03 01:15:46 -07005582 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrownf6705572006-03-27 01:18:11 -08005583
NeilBrown29269552006-03-27 01:18:10 -08005584 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
5585 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
5586 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
5587 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
5588 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
NeilBrown0da3c612009-09-23 18:09:45 +10005589 "reshape");
NeilBrown29269552006-03-27 01:18:10 -08005590 if (!mddev->sync_thread) {
5591 mddev->recovery = 0;
5592 spin_lock_irq(&conf->device_lock);
5593 mddev->raid_disks = conf->raid_disks = conf->previous_raid_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11005594 conf->reshape_progress = MaxSector;
NeilBrown29269552006-03-27 01:18:10 -08005595 spin_unlock_irq(&conf->device_lock);
5596 return -EAGAIN;
5597 }
NeilBrownc8f517c2009-03-31 15:28:40 +11005598 conf->reshape_checkpoint = jiffies;
NeilBrown29269552006-03-27 01:18:10 -08005599 md_wakeup_thread(mddev->sync_thread);
5600 md_new_event(mddev);
5601 return 0;
5602}
NeilBrown29269552006-03-27 01:18:10 -08005603
NeilBrownec32a2b2009-03-31 15:17:38 +11005604/* This is called from the reshape thread and should make any
5605 * changes needed in 'conf'
5606 */
NeilBrown29269552006-03-27 01:18:10 -08005607static void end_reshape(raid5_conf_t *conf)
5608{
NeilBrown29269552006-03-27 01:18:10 -08005609
NeilBrownf6705572006-03-27 01:18:11 -08005610 if (!test_bit(MD_RECOVERY_INTR, &conf->mddev->recovery)) {
Dan Williams80c3a6c2009-03-17 18:10:40 -07005611
NeilBrownf6705572006-03-27 01:18:11 -08005612 spin_lock_irq(&conf->device_lock);
NeilBrowncea9c222009-03-31 15:15:05 +11005613 conf->previous_raid_disks = conf->raid_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11005614 conf->reshape_progress = MaxSector;
NeilBrownf6705572006-03-27 01:18:11 -08005615 spin_unlock_irq(&conf->device_lock);
NeilBrownb0f9ec02009-03-31 15:27:18 +11005616 wake_up(&conf->wait_for_overlap);
NeilBrown16a53ec2006-06-26 00:27:38 -07005617
5618 /* read-ahead size must cover two whole stripes, which is
5619 * 2 * (datadisks) * chunksize where 'n' is the number of raid devices
5620 */
5621 {
NeilBrowncea9c222009-03-31 15:15:05 +11005622 int data_disks = conf->raid_disks - conf->max_degraded;
Andre Noll09c9e5f2009-06-18 08:45:55 +10005623 int stripe = data_disks * ((conf->chunk_sectors << 9)
NeilBrowncea9c222009-03-31 15:15:05 +11005624 / PAGE_SIZE);
NeilBrown16a53ec2006-06-26 00:27:38 -07005625 if (conf->mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
5626 conf->mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
5627 }
NeilBrown29269552006-03-27 01:18:10 -08005628 }
NeilBrown29269552006-03-27 01:18:10 -08005629}
5630
NeilBrownec32a2b2009-03-31 15:17:38 +11005631/* This is called from the raid5d thread with mddev_lock held.
5632 * It makes config changes to the device.
5633 */
NeilBrowncea9c222009-03-31 15:15:05 +11005634static void raid5_finish_reshape(mddev_t *mddev)
5635{
NeilBrown070ec552009-06-16 16:54:21 +10005636 raid5_conf_t *conf = mddev->private;
NeilBrowncea9c222009-03-31 15:15:05 +11005637
5638 if (!test_bit(MD_RECOVERY_INTR, &mddev->recovery)) {
5639
NeilBrownec32a2b2009-03-31 15:17:38 +11005640 if (mddev->delta_disks > 0) {
5641 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
5642 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10005643 revalidate_disk(mddev->gendisk);
NeilBrownec32a2b2009-03-31 15:17:38 +11005644 } else {
5645 int d;
NeilBrownec32a2b2009-03-31 15:17:38 +11005646 mddev->degraded = conf->raid_disks;
5647 for (d = 0; d < conf->raid_disks ; d++)
5648 if (conf->disks[d].rdev &&
5649 test_bit(In_sync,
5650 &conf->disks[d].rdev->flags))
5651 mddev->degraded--;
5652 for (d = conf->raid_disks ;
5653 d < conf->raid_disks - mddev->delta_disks;
NeilBrown1a67dde2009-08-13 10:41:49 +10005654 d++) {
5655 mdk_rdev_t *rdev = conf->disks[d].rdev;
5656 if (rdev && raid5_remove_disk(mddev, d) == 0) {
5657 char nm[20];
5658 sprintf(nm, "rd%d", rdev->raid_disk);
5659 sysfs_remove_link(&mddev->kobj, nm);
5660 rdev->raid_disk = -1;
5661 }
5662 }
NeilBrowncea9c222009-03-31 15:15:05 +11005663 }
NeilBrown88ce4932009-03-31 15:24:23 +11005664 mddev->layout = conf->algorithm;
Andre Noll09c9e5f2009-06-18 08:45:55 +10005665 mddev->chunk_sectors = conf->chunk_sectors;
NeilBrownec32a2b2009-03-31 15:17:38 +11005666 mddev->reshape_position = MaxSector;
5667 mddev->delta_disks = 0;
NeilBrowncea9c222009-03-31 15:15:05 +11005668 }
5669}
5670
NeilBrown72626682005-09-09 16:23:54 -07005671static void raid5_quiesce(mddev_t *mddev, int state)
5672{
NeilBrown070ec552009-06-16 16:54:21 +10005673 raid5_conf_t *conf = mddev->private;
NeilBrown72626682005-09-09 16:23:54 -07005674
5675 switch(state) {
NeilBrowne464eaf2006-03-27 01:18:14 -08005676 case 2: /* resume for a suspend */
5677 wake_up(&conf->wait_for_overlap);
5678 break;
5679
NeilBrown72626682005-09-09 16:23:54 -07005680 case 1: /* stop all writes */
5681 spin_lock_irq(&conf->device_lock);
NeilBrown64bd6602009-08-03 10:59:58 +10005682 /* '2' tells resync/reshape to pause so that all
5683 * active stripes can drain
5684 */
5685 conf->quiesce = 2;
NeilBrown72626682005-09-09 16:23:54 -07005686 wait_event_lock_irq(conf->wait_for_stripe,
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005687 atomic_read(&conf->active_stripes) == 0 &&
5688 atomic_read(&conf->active_aligned_reads) == 0,
NeilBrown72626682005-09-09 16:23:54 -07005689 conf->device_lock, /* nothing */);
NeilBrown64bd6602009-08-03 10:59:58 +10005690 conf->quiesce = 1;
NeilBrown72626682005-09-09 16:23:54 -07005691 spin_unlock_irq(&conf->device_lock);
NeilBrown64bd6602009-08-03 10:59:58 +10005692 /* allow reshape to continue */
5693 wake_up(&conf->wait_for_overlap);
NeilBrown72626682005-09-09 16:23:54 -07005694 break;
5695
5696 case 0: /* re-enable writes */
5697 spin_lock_irq(&conf->device_lock);
5698 conf->quiesce = 0;
5699 wake_up(&conf->wait_for_stripe);
NeilBrowne464eaf2006-03-27 01:18:14 -08005700 wake_up(&conf->wait_for_overlap);
NeilBrown72626682005-09-09 16:23:54 -07005701 spin_unlock_irq(&conf->device_lock);
5702 break;
5703 }
NeilBrown72626682005-09-09 16:23:54 -07005704}
NeilBrownb15c2e52006-01-06 00:20:16 -08005705
NeilBrownd562b0c2009-03-31 14:39:39 +11005706
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005707static void *raid45_takeover_raid0(mddev_t *mddev, int level)
Trela Maciej54071b32010-03-08 16:02:42 +11005708{
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005709 struct raid0_private_data *raid0_priv = mddev->private;
Trela Maciej54071b32010-03-08 16:02:42 +11005710
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005711 /* for raid0 takeover only one zone is supported */
5712 if (raid0_priv->nr_strip_zones > 1) {
NeilBrown0c55e022010-05-03 14:09:02 +10005713 printk(KERN_ERR "md/raid:%s: cannot takeover raid0 with more than one zone.\n",
5714 mdname(mddev));
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005715 return ERR_PTR(-EINVAL);
5716 }
5717
5718 mddev->new_level = level;
Trela Maciej54071b32010-03-08 16:02:42 +11005719 mddev->new_layout = ALGORITHM_PARITY_N;
5720 mddev->new_chunk_sectors = mddev->chunk_sectors;
5721 mddev->raid_disks += 1;
5722 mddev->delta_disks = 1;
5723 /* make sure it will be not marked as dirty */
5724 mddev->recovery_cp = MaxSector;
5725
5726 return setup_conf(mddev);
5727}
5728
5729
NeilBrownd562b0c2009-03-31 14:39:39 +11005730static void *raid5_takeover_raid1(mddev_t *mddev)
5731{
5732 int chunksect;
5733
5734 if (mddev->raid_disks != 2 ||
5735 mddev->degraded > 1)
5736 return ERR_PTR(-EINVAL);
5737
5738 /* Should check if there are write-behind devices? */
5739
5740 chunksect = 64*2; /* 64K by default */
5741
5742 /* The array must be an exact multiple of chunksize */
5743 while (chunksect && (mddev->array_sectors & (chunksect-1)))
5744 chunksect >>= 1;
5745
5746 if ((chunksect<<9) < STRIPE_SIZE)
5747 /* array size does not allow a suitable chunk size */
5748 return ERR_PTR(-EINVAL);
5749
5750 mddev->new_level = 5;
5751 mddev->new_layout = ALGORITHM_LEFT_SYMMETRIC;
Andre Noll664e7c42009-06-18 08:45:27 +10005752 mddev->new_chunk_sectors = chunksect;
NeilBrownd562b0c2009-03-31 14:39:39 +11005753
5754 return setup_conf(mddev);
5755}
5756
NeilBrownfc9739c2009-03-31 14:57:20 +11005757static void *raid5_takeover_raid6(mddev_t *mddev)
5758{
5759 int new_layout;
5760
5761 switch (mddev->layout) {
5762 case ALGORITHM_LEFT_ASYMMETRIC_6:
5763 new_layout = ALGORITHM_LEFT_ASYMMETRIC;
5764 break;
5765 case ALGORITHM_RIGHT_ASYMMETRIC_6:
5766 new_layout = ALGORITHM_RIGHT_ASYMMETRIC;
5767 break;
5768 case ALGORITHM_LEFT_SYMMETRIC_6:
5769 new_layout = ALGORITHM_LEFT_SYMMETRIC;
5770 break;
5771 case ALGORITHM_RIGHT_SYMMETRIC_6:
5772 new_layout = ALGORITHM_RIGHT_SYMMETRIC;
5773 break;
5774 case ALGORITHM_PARITY_0_6:
5775 new_layout = ALGORITHM_PARITY_0;
5776 break;
5777 case ALGORITHM_PARITY_N:
5778 new_layout = ALGORITHM_PARITY_N;
5779 break;
5780 default:
5781 return ERR_PTR(-EINVAL);
5782 }
5783 mddev->new_level = 5;
5784 mddev->new_layout = new_layout;
5785 mddev->delta_disks = -1;
5786 mddev->raid_disks -= 1;
5787 return setup_conf(mddev);
5788}
5789
NeilBrownd562b0c2009-03-31 14:39:39 +11005790
NeilBrown50ac1682009-06-18 08:47:55 +10005791static int raid5_check_reshape(mddev_t *mddev)
NeilBrownb3546032009-03-31 14:56:41 +11005792{
NeilBrown88ce4932009-03-31 15:24:23 +11005793 /* For a 2-drive array, the layout and chunk size can be changed
5794 * immediately as not restriping is needed.
5795 * For larger arrays we record the new value - after validation
5796 * to be used by a reshape pass.
NeilBrownb3546032009-03-31 14:56:41 +11005797 */
NeilBrown070ec552009-06-16 16:54:21 +10005798 raid5_conf_t *conf = mddev->private;
NeilBrown597a7112009-06-18 08:47:42 +10005799 int new_chunk = mddev->new_chunk_sectors;
NeilBrownb3546032009-03-31 14:56:41 +11005800
NeilBrown597a7112009-06-18 08:47:42 +10005801 if (mddev->new_layout >= 0 && !algorithm_valid_raid5(mddev->new_layout))
NeilBrownb3546032009-03-31 14:56:41 +11005802 return -EINVAL;
5803 if (new_chunk > 0) {
Andre Noll0ba459d2009-06-18 08:46:10 +10005804 if (!is_power_of_2(new_chunk))
NeilBrownb3546032009-03-31 14:56:41 +11005805 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10005806 if (new_chunk < (PAGE_SIZE>>9))
NeilBrownb3546032009-03-31 14:56:41 +11005807 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10005808 if (mddev->array_sectors & (new_chunk-1))
NeilBrownb3546032009-03-31 14:56:41 +11005809 /* not factor of array size */
5810 return -EINVAL;
5811 }
5812
5813 /* They look valid */
5814
NeilBrown88ce4932009-03-31 15:24:23 +11005815 if (mddev->raid_disks == 2) {
NeilBrown597a7112009-06-18 08:47:42 +10005816 /* can make the change immediately */
5817 if (mddev->new_layout >= 0) {
5818 conf->algorithm = mddev->new_layout;
5819 mddev->layout = mddev->new_layout;
NeilBrown88ce4932009-03-31 15:24:23 +11005820 }
5821 if (new_chunk > 0) {
NeilBrown597a7112009-06-18 08:47:42 +10005822 conf->chunk_sectors = new_chunk ;
5823 mddev->chunk_sectors = new_chunk;
NeilBrown88ce4932009-03-31 15:24:23 +11005824 }
5825 set_bit(MD_CHANGE_DEVS, &mddev->flags);
5826 md_wakeup_thread(mddev->thread);
NeilBrownb3546032009-03-31 14:56:41 +11005827 }
NeilBrown50ac1682009-06-18 08:47:55 +10005828 return check_reshape(mddev);
NeilBrown88ce4932009-03-31 15:24:23 +11005829}
5830
NeilBrown50ac1682009-06-18 08:47:55 +10005831static int raid6_check_reshape(mddev_t *mddev)
NeilBrown88ce4932009-03-31 15:24:23 +11005832{
NeilBrown597a7112009-06-18 08:47:42 +10005833 int new_chunk = mddev->new_chunk_sectors;
NeilBrown50ac1682009-06-18 08:47:55 +10005834
NeilBrown597a7112009-06-18 08:47:42 +10005835 if (mddev->new_layout >= 0 && !algorithm_valid_raid6(mddev->new_layout))
NeilBrown88ce4932009-03-31 15:24:23 +11005836 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11005837 if (new_chunk > 0) {
Andre Noll0ba459d2009-06-18 08:46:10 +10005838 if (!is_power_of_2(new_chunk))
NeilBrown88ce4932009-03-31 15:24:23 +11005839 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10005840 if (new_chunk < (PAGE_SIZE >> 9))
NeilBrown88ce4932009-03-31 15:24:23 +11005841 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10005842 if (mddev->array_sectors & (new_chunk-1))
NeilBrown88ce4932009-03-31 15:24:23 +11005843 /* not factor of array size */
5844 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11005845 }
NeilBrown88ce4932009-03-31 15:24:23 +11005846
5847 /* They look valid */
NeilBrown50ac1682009-06-18 08:47:55 +10005848 return check_reshape(mddev);
NeilBrownb3546032009-03-31 14:56:41 +11005849}
5850
NeilBrownd562b0c2009-03-31 14:39:39 +11005851static void *raid5_takeover(mddev_t *mddev)
5852{
5853 /* raid5 can take over:
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005854 * raid0 - if there is only one strip zone - make it a raid4 layout
NeilBrownd562b0c2009-03-31 14:39:39 +11005855 * raid1 - if there are two drives. We need to know the chunk size
5856 * raid4 - trivial - just use a raid4 layout.
5857 * raid6 - Providing it is a *_6 layout
NeilBrownd562b0c2009-03-31 14:39:39 +11005858 */
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005859 if (mddev->level == 0)
5860 return raid45_takeover_raid0(mddev, 5);
NeilBrownd562b0c2009-03-31 14:39:39 +11005861 if (mddev->level == 1)
5862 return raid5_takeover_raid1(mddev);
NeilBrowne9d47582009-03-31 14:57:09 +11005863 if (mddev->level == 4) {
5864 mddev->new_layout = ALGORITHM_PARITY_N;
5865 mddev->new_level = 5;
5866 return setup_conf(mddev);
5867 }
NeilBrownfc9739c2009-03-31 14:57:20 +11005868 if (mddev->level == 6)
5869 return raid5_takeover_raid6(mddev);
NeilBrownd562b0c2009-03-31 14:39:39 +11005870
5871 return ERR_PTR(-EINVAL);
5872}
5873
NeilBrowna78d38a2010-03-22 16:53:49 +11005874static void *raid4_takeover(mddev_t *mddev)
5875{
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005876 /* raid4 can take over:
5877 * raid0 - if there is only one strip zone
5878 * raid5 - if layout is right
NeilBrowna78d38a2010-03-22 16:53:49 +11005879 */
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005880 if (mddev->level == 0)
5881 return raid45_takeover_raid0(mddev, 4);
NeilBrowna78d38a2010-03-22 16:53:49 +11005882 if (mddev->level == 5 &&
5883 mddev->layout == ALGORITHM_PARITY_N) {
5884 mddev->new_layout = 0;
5885 mddev->new_level = 4;
5886 return setup_conf(mddev);
5887 }
5888 return ERR_PTR(-EINVAL);
5889}
NeilBrownd562b0c2009-03-31 14:39:39 +11005890
NeilBrown245f46c2009-03-31 14:39:39 +11005891static struct mdk_personality raid5_personality;
5892
5893static void *raid6_takeover(mddev_t *mddev)
5894{
5895 /* Currently can only take over a raid5. We map the
5896 * personality to an equivalent raid6 personality
5897 * with the Q block at the end.
5898 */
5899 int new_layout;
5900
5901 if (mddev->pers != &raid5_personality)
5902 return ERR_PTR(-EINVAL);
5903 if (mddev->degraded > 1)
5904 return ERR_PTR(-EINVAL);
5905 if (mddev->raid_disks > 253)
5906 return ERR_PTR(-EINVAL);
5907 if (mddev->raid_disks < 3)
5908 return ERR_PTR(-EINVAL);
5909
5910 switch (mddev->layout) {
5911 case ALGORITHM_LEFT_ASYMMETRIC:
5912 new_layout = ALGORITHM_LEFT_ASYMMETRIC_6;
5913 break;
5914 case ALGORITHM_RIGHT_ASYMMETRIC:
5915 new_layout = ALGORITHM_RIGHT_ASYMMETRIC_6;
5916 break;
5917 case ALGORITHM_LEFT_SYMMETRIC:
5918 new_layout = ALGORITHM_LEFT_SYMMETRIC_6;
5919 break;
5920 case ALGORITHM_RIGHT_SYMMETRIC:
5921 new_layout = ALGORITHM_RIGHT_SYMMETRIC_6;
5922 break;
5923 case ALGORITHM_PARITY_0:
5924 new_layout = ALGORITHM_PARITY_0_6;
5925 break;
5926 case ALGORITHM_PARITY_N:
5927 new_layout = ALGORITHM_PARITY_N;
5928 break;
5929 default:
5930 return ERR_PTR(-EINVAL);
5931 }
5932 mddev->new_level = 6;
5933 mddev->new_layout = new_layout;
5934 mddev->delta_disks = 1;
5935 mddev->raid_disks += 1;
5936 return setup_conf(mddev);
5937}
5938
5939
NeilBrown16a53ec2006-06-26 00:27:38 -07005940static struct mdk_personality raid6_personality =
5941{
5942 .name = "raid6",
5943 .level = 6,
5944 .owner = THIS_MODULE,
5945 .make_request = make_request,
5946 .run = run,
5947 .stop = stop,
5948 .status = status,
5949 .error_handler = error,
5950 .hot_add_disk = raid5_add_disk,
5951 .hot_remove_disk= raid5_remove_disk,
5952 .spare_active = raid5_spare_active,
5953 .sync_request = sync_request,
5954 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07005955 .size = raid5_size,
NeilBrown50ac1682009-06-18 08:47:55 +10005956 .check_reshape = raid6_check_reshape,
NeilBrownf4168852007-02-28 20:11:53 -08005957 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11005958 .finish_reshape = raid5_finish_reshape,
NeilBrown16a53ec2006-06-26 00:27:38 -07005959 .quiesce = raid5_quiesce,
NeilBrown245f46c2009-03-31 14:39:39 +11005960 .takeover = raid6_takeover,
NeilBrown16a53ec2006-06-26 00:27:38 -07005961};
NeilBrown2604b702006-01-06 00:20:36 -08005962static struct mdk_personality raid5_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07005963{
5964 .name = "raid5",
NeilBrown2604b702006-01-06 00:20:36 -08005965 .level = 5,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005966 .owner = THIS_MODULE,
5967 .make_request = make_request,
5968 .run = run,
5969 .stop = stop,
5970 .status = status,
5971 .error_handler = error,
5972 .hot_add_disk = raid5_add_disk,
5973 .hot_remove_disk= raid5_remove_disk,
5974 .spare_active = raid5_spare_active,
5975 .sync_request = sync_request,
5976 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07005977 .size = raid5_size,
NeilBrown63c70c42006-03-27 01:18:13 -08005978 .check_reshape = raid5_check_reshape,
5979 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11005980 .finish_reshape = raid5_finish_reshape,
NeilBrown72626682005-09-09 16:23:54 -07005981 .quiesce = raid5_quiesce,
NeilBrownd562b0c2009-03-31 14:39:39 +11005982 .takeover = raid5_takeover,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005983};
5984
NeilBrown2604b702006-01-06 00:20:36 -08005985static struct mdk_personality raid4_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07005986{
NeilBrown2604b702006-01-06 00:20:36 -08005987 .name = "raid4",
5988 .level = 4,
5989 .owner = THIS_MODULE,
5990 .make_request = make_request,
5991 .run = run,
5992 .stop = stop,
5993 .status = status,
5994 .error_handler = error,
5995 .hot_add_disk = raid5_add_disk,
5996 .hot_remove_disk= raid5_remove_disk,
5997 .spare_active = raid5_spare_active,
5998 .sync_request = sync_request,
5999 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07006000 .size = raid5_size,
NeilBrown3d378902007-03-26 21:32:13 -08006001 .check_reshape = raid5_check_reshape,
6002 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11006003 .finish_reshape = raid5_finish_reshape,
NeilBrown2604b702006-01-06 00:20:36 -08006004 .quiesce = raid5_quiesce,
NeilBrowna78d38a2010-03-22 16:53:49 +11006005 .takeover = raid4_takeover,
NeilBrown2604b702006-01-06 00:20:36 -08006006};
6007
6008static int __init raid5_init(void)
6009{
NeilBrown16a53ec2006-06-26 00:27:38 -07006010 register_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08006011 register_md_personality(&raid5_personality);
6012 register_md_personality(&raid4_personality);
6013 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006014}
6015
NeilBrown2604b702006-01-06 00:20:36 -08006016static void raid5_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006017{
NeilBrown16a53ec2006-06-26 00:27:38 -07006018 unregister_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08006019 unregister_md_personality(&raid5_personality);
6020 unregister_md_personality(&raid4_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006021}
6022
6023module_init(raid5_init);
6024module_exit(raid5_exit);
6025MODULE_LICENSE("GPL");
NeilBrown0efb9e62009-12-14 12:49:58 +11006026MODULE_DESCRIPTION("RAID4/5/6 (striping with parity) personality for MD");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006027MODULE_ALIAS("md-personality-4"); /* RAID5 */
NeilBrownd9d166c2006-01-06 00:20:51 -08006028MODULE_ALIAS("md-raid5");
6029MODULE_ALIAS("md-raid4");
NeilBrown2604b702006-01-06 00:20:36 -08006030MODULE_ALIAS("md-level-5");
6031MODULE_ALIAS("md-level-4");
NeilBrown16a53ec2006-06-26 00:27:38 -07006032MODULE_ALIAS("md-personality-8"); /* RAID6 */
6033MODULE_ALIAS("md-raid6");
6034MODULE_ALIAS("md-level-6");
6035
6036/* This used to be two separate modules, they were: */
6037MODULE_ALIAS("raid5");
6038MODULE_ALIAS("raid6");