blob: f972a94bbc324273cdc53e46f12a2e72d7ad5b1d [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
369static void unplug_slaves(mddev_t *mddev);
Jens Axboe165125e2007-07-24 09:28:11 +0200370static void raid5_unplug_device(struct request_queue *q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
NeilBrownb5663ba2009-03-31 14:39:38 +1100372static struct stripe_head *
373get_active_stripe(raid5_conf_t *conf, sector_t sector,
NeilBrowna8c906c2009-06-09 14:39:59 +1000374 int previous, int noblock, int noquiesce)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375{
376 struct stripe_head *sh;
377
Dan Williams45b42332007-07-09 11:56:43 -0700378 pr_debug("get_stripe, sector %llu\n", (unsigned long long)sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 spin_lock_irq(&conf->device_lock);
381
382 do {
NeilBrown72626682005-09-09 16:23:54 -0700383 wait_event_lock_irq(conf->wait_for_stripe,
NeilBrowna8c906c2009-06-09 14:39:59 +1000384 conf->quiesce == 0 || noquiesce,
NeilBrown72626682005-09-09 16:23:54 -0700385 conf->device_lock, /* nothing */);
NeilBrown86b42c72009-03-31 15:19:03 +1100386 sh = __find_stripe(conf, sector, conf->generation - previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 if (!sh) {
388 if (!conf->inactive_blocked)
389 sh = get_free_stripe(conf);
390 if (noblock && sh == NULL)
391 break;
392 if (!sh) {
393 conf->inactive_blocked = 1;
394 wait_event_lock_irq(conf->wait_for_stripe,
395 !list_empty(&conf->inactive_list) &&
NeilBrown50368052005-12-12 02:39:17 -0800396 (atomic_read(&conf->active_stripes)
397 < (conf->max_nr_stripes *3/4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 || !conf->inactive_blocked),
399 conf->device_lock,
NeilBrownf4370782006-07-10 04:44:14 -0700400 raid5_unplug_device(conf->mddev->queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 );
402 conf->inactive_blocked = 0;
403 } else
NeilBrownb5663ba2009-03-31 14:39:38 +1100404 init_stripe(sh, sector, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 } else {
406 if (atomic_read(&sh->count)) {
NeilBrownab69ae12009-03-31 15:26:47 +1100407 BUG_ON(!list_empty(&sh->lru)
408 && !test_bit(STRIPE_EXPANDING, &sh->state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 } else {
410 if (!test_bit(STRIPE_HANDLE, &sh->state))
411 atomic_inc(&conf->active_stripes);
NeilBrownff4e8d92006-07-10 04:44:16 -0700412 if (list_empty(&sh->lru) &&
413 !test_bit(STRIPE_EXPANDING, &sh->state))
NeilBrown16a53ec2006-06-26 00:27:38 -0700414 BUG();
415 list_del_init(&sh->lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 }
417 }
418 } while (sh == NULL);
419
420 if (sh)
421 atomic_inc(&sh->count);
422
423 spin_unlock_irq(&conf->device_lock);
424 return sh;
425}
426
NeilBrown6712ecf2007-09-27 12:47:43 +0200427static void
428raid5_end_read_request(struct bio *bi, int error);
429static void
430raid5_end_write_request(struct bio *bi, int error);
Dan Williams91c00922007-01-02 13:52:30 -0700431
Dan Williamsc4e5ac02008-06-28 08:31:53 +1000432static void ops_run_io(struct stripe_head *sh, struct stripe_head_state *s)
Dan Williams91c00922007-01-02 13:52:30 -0700433{
434 raid5_conf_t *conf = sh->raid_conf;
435 int i, disks = sh->disks;
436
437 might_sleep();
438
439 for (i = disks; i--; ) {
440 int rw;
441 struct bio *bi;
442 mdk_rdev_t *rdev;
443 if (test_and_clear_bit(R5_Wantwrite, &sh->dev[i].flags))
444 rw = WRITE;
445 else if (test_and_clear_bit(R5_Wantread, &sh->dev[i].flags))
446 rw = READ;
447 else
448 continue;
449
450 bi = &sh->dev[i].req;
451
452 bi->bi_rw = rw;
453 if (rw == WRITE)
454 bi->bi_end_io = raid5_end_write_request;
455 else
456 bi->bi_end_io = raid5_end_read_request;
457
458 rcu_read_lock();
459 rdev = rcu_dereference(conf->disks[i].rdev);
460 if (rdev && test_bit(Faulty, &rdev->flags))
461 rdev = NULL;
462 if (rdev)
463 atomic_inc(&rdev->nr_pending);
464 rcu_read_unlock();
465
466 if (rdev) {
Dan Williamsc4e5ac02008-06-28 08:31:53 +1000467 if (s->syncing || s->expanding || s->expanded)
Dan Williams91c00922007-01-02 13:52:30 -0700468 md_sync_acct(rdev->bdev, STRIPE_SECTORS);
469
Dan Williams2b7497f2008-06-28 08:31:52 +1000470 set_bit(STRIPE_IO_STARTED, &sh->state);
471
Dan Williams91c00922007-01-02 13:52:30 -0700472 bi->bi_bdev = rdev->bdev;
473 pr_debug("%s: for %llu schedule op %ld on disc %d\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -0700474 __func__, (unsigned long long)sh->sector,
Dan Williams91c00922007-01-02 13:52:30 -0700475 bi->bi_rw, i);
476 atomic_inc(&sh->count);
477 bi->bi_sector = sh->sector + rdev->data_offset;
478 bi->bi_flags = 1 << BIO_UPTODATE;
479 bi->bi_vcnt = 1;
480 bi->bi_max_vecs = 1;
481 bi->bi_idx = 0;
482 bi->bi_io_vec = &sh->dev[i].vec;
483 bi->bi_io_vec[0].bv_len = STRIPE_SIZE;
484 bi->bi_io_vec[0].bv_offset = 0;
485 bi->bi_size = STRIPE_SIZE;
486 bi->bi_next = NULL;
487 if (rw == WRITE &&
488 test_bit(R5_ReWrite, &sh->dev[i].flags))
489 atomic_add(STRIPE_SECTORS,
490 &rdev->corrected_errors);
491 generic_make_request(bi);
492 } else {
493 if (rw == WRITE)
494 set_bit(STRIPE_DEGRADED, &sh->state);
495 pr_debug("skip op %ld on disc %d for sector %llu\n",
496 bi->bi_rw, i, (unsigned long long)sh->sector);
497 clear_bit(R5_LOCKED, &sh->dev[i].flags);
498 set_bit(STRIPE_HANDLE, &sh->state);
499 }
500 }
501}
502
503static struct dma_async_tx_descriptor *
504async_copy_data(int frombio, struct bio *bio, struct page *page,
505 sector_t sector, struct dma_async_tx_descriptor *tx)
506{
507 struct bio_vec *bvl;
508 struct page *bio_page;
509 int i;
510 int page_offset;
Dan Williamsa08abd82009-06-03 11:43:59 -0700511 struct async_submit_ctl submit;
Dan Williams0403e382009-09-08 17:42:50 -0700512 enum async_tx_flags flags = 0;
Dan Williams91c00922007-01-02 13:52:30 -0700513
514 if (bio->bi_sector >= sector)
515 page_offset = (signed)(bio->bi_sector - sector) * 512;
516 else
517 page_offset = (signed)(sector - bio->bi_sector) * -512;
Dan Williamsa08abd82009-06-03 11:43:59 -0700518
Dan Williams0403e382009-09-08 17:42:50 -0700519 if (frombio)
520 flags |= ASYNC_TX_FENCE;
521 init_async_submit(&submit, flags, tx, NULL, NULL, NULL);
522
Dan Williams91c00922007-01-02 13:52:30 -0700523 bio_for_each_segment(bvl, bio, i) {
524 int len = bio_iovec_idx(bio, i)->bv_len;
525 int clen;
526 int b_offset = 0;
527
528 if (page_offset < 0) {
529 b_offset = -page_offset;
530 page_offset += b_offset;
531 len -= b_offset;
532 }
533
534 if (len > 0 && page_offset + len > STRIPE_SIZE)
535 clen = STRIPE_SIZE - page_offset;
536 else
537 clen = len;
538
539 if (clen > 0) {
540 b_offset += bio_iovec_idx(bio, i)->bv_offset;
541 bio_page = bio_iovec_idx(bio, i)->bv_page;
542 if (frombio)
543 tx = async_memcpy(page, bio_page, page_offset,
Dan Williamsa08abd82009-06-03 11:43:59 -0700544 b_offset, clen, &submit);
Dan Williams91c00922007-01-02 13:52:30 -0700545 else
546 tx = async_memcpy(bio_page, page, b_offset,
Dan Williamsa08abd82009-06-03 11:43:59 -0700547 page_offset, clen, &submit);
Dan Williams91c00922007-01-02 13:52:30 -0700548 }
Dan Williamsa08abd82009-06-03 11:43:59 -0700549 /* chain the operations */
550 submit.depend_tx = tx;
551
Dan Williams91c00922007-01-02 13:52:30 -0700552 if (clen < len) /* hit end of page */
553 break;
554 page_offset += len;
555 }
556
557 return tx;
558}
559
560static void ops_complete_biofill(void *stripe_head_ref)
561{
562 struct stripe_head *sh = stripe_head_ref;
563 struct bio *return_bi = NULL;
564 raid5_conf_t *conf = sh->raid_conf;
Dan Williamse4d84902007-09-24 10:06:13 -0700565 int i;
Dan Williams91c00922007-01-02 13:52:30 -0700566
Harvey Harrisone46b2722008-04-28 02:15:50 -0700567 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700568 (unsigned long long)sh->sector);
569
570 /* clear completed biofills */
Dan Williams83de75c2008-06-28 08:31:58 +1000571 spin_lock_irq(&conf->device_lock);
Dan Williams91c00922007-01-02 13:52:30 -0700572 for (i = sh->disks; i--; ) {
573 struct r5dev *dev = &sh->dev[i];
Dan Williams91c00922007-01-02 13:52:30 -0700574
575 /* acknowledge completion of a biofill operation */
Dan Williamse4d84902007-09-24 10:06:13 -0700576 /* and check if we need to reply to a read request,
577 * new R5_Wantfill requests are held off until
Dan Williams83de75c2008-06-28 08:31:58 +1000578 * !STRIPE_BIOFILL_RUN
Dan Williamse4d84902007-09-24 10:06:13 -0700579 */
580 if (test_and_clear_bit(R5_Wantfill, &dev->flags)) {
Dan Williams91c00922007-01-02 13:52:30 -0700581 struct bio *rbi, *rbi2;
Dan Williams91c00922007-01-02 13:52:30 -0700582
Dan Williams91c00922007-01-02 13:52:30 -0700583 BUG_ON(!dev->read);
584 rbi = dev->read;
585 dev->read = NULL;
586 while (rbi && rbi->bi_sector <
587 dev->sector + STRIPE_SECTORS) {
588 rbi2 = r5_next_bio(rbi, dev->sector);
Jens Axboe960e7392008-08-15 10:41:18 +0200589 if (!raid5_dec_bi_phys_segments(rbi)) {
Dan Williams91c00922007-01-02 13:52:30 -0700590 rbi->bi_next = return_bi;
591 return_bi = rbi;
592 }
Dan Williams91c00922007-01-02 13:52:30 -0700593 rbi = rbi2;
594 }
595 }
596 }
Dan Williams83de75c2008-06-28 08:31:58 +1000597 spin_unlock_irq(&conf->device_lock);
598 clear_bit(STRIPE_BIOFILL_RUN, &sh->state);
Dan Williams91c00922007-01-02 13:52:30 -0700599
600 return_io(return_bi);
601
Dan Williamse4d84902007-09-24 10:06:13 -0700602 set_bit(STRIPE_HANDLE, &sh->state);
Dan Williams91c00922007-01-02 13:52:30 -0700603 release_stripe(sh);
604}
605
606static void ops_run_biofill(struct stripe_head *sh)
607{
608 struct dma_async_tx_descriptor *tx = NULL;
609 raid5_conf_t *conf = sh->raid_conf;
Dan Williamsa08abd82009-06-03 11:43:59 -0700610 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -0700611 int i;
612
Harvey Harrisone46b2722008-04-28 02:15:50 -0700613 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700614 (unsigned long long)sh->sector);
615
616 for (i = sh->disks; i--; ) {
617 struct r5dev *dev = &sh->dev[i];
618 if (test_bit(R5_Wantfill, &dev->flags)) {
619 struct bio *rbi;
620 spin_lock_irq(&conf->device_lock);
621 dev->read = rbi = dev->toread;
622 dev->toread = NULL;
623 spin_unlock_irq(&conf->device_lock);
624 while (rbi && rbi->bi_sector <
625 dev->sector + STRIPE_SECTORS) {
626 tx = async_copy_data(0, rbi, dev->page,
627 dev->sector, tx);
628 rbi = r5_next_bio(rbi, dev->sector);
629 }
630 }
631 }
632
633 atomic_inc(&sh->count);
Dan Williamsa08abd82009-06-03 11:43:59 -0700634 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_biofill, sh, NULL);
635 async_trigger_callback(&submit);
Dan Williams91c00922007-01-02 13:52:30 -0700636}
637
Dan Williams4e7d2c02009-08-29 19:13:11 -0700638static void mark_target_uptodate(struct stripe_head *sh, int target)
639{
640 struct r5dev *tgt;
641
642 if (target < 0)
643 return;
644
645 tgt = &sh->dev[target];
646 set_bit(R5_UPTODATE, &tgt->flags);
647 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
648 clear_bit(R5_Wantcompute, &tgt->flags);
649}
650
Dan Williamsac6b53b2009-07-14 13:40:19 -0700651static void ops_complete_compute(void *stripe_head_ref)
Dan Williams91c00922007-01-02 13:52:30 -0700652{
653 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -0700654
Harvey Harrisone46b2722008-04-28 02:15:50 -0700655 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700656 (unsigned long long)sh->sector);
657
Dan Williamsac6b53b2009-07-14 13:40:19 -0700658 /* mark the computed target(s) as uptodate */
Dan Williams4e7d2c02009-08-29 19:13:11 -0700659 mark_target_uptodate(sh, sh->ops.target);
Dan Williamsac6b53b2009-07-14 13:40:19 -0700660 mark_target_uptodate(sh, sh->ops.target2);
Dan Williams4e7d2c02009-08-29 19:13:11 -0700661
Dan Williamsecc65c92008-06-28 08:31:57 +1000662 clear_bit(STRIPE_COMPUTE_RUN, &sh->state);
663 if (sh->check_state == check_state_compute_run)
664 sh->check_state = check_state_compute_result;
Dan Williams91c00922007-01-02 13:52:30 -0700665 set_bit(STRIPE_HANDLE, &sh->state);
666 release_stripe(sh);
667}
668
Dan Williamsd6f38f32009-07-14 11:50:52 -0700669/* return a pointer to the address conversion region of the scribble buffer */
670static addr_conv_t *to_addr_conv(struct stripe_head *sh,
671 struct raid5_percpu *percpu)
Dan Williams91c00922007-01-02 13:52:30 -0700672{
Dan Williamsd6f38f32009-07-14 11:50:52 -0700673 return percpu->scribble + sizeof(struct page *) * (sh->disks + 2);
674}
675
676static struct dma_async_tx_descriptor *
677ops_run_compute5(struct stripe_head *sh, struct raid5_percpu *percpu)
678{
Dan Williams91c00922007-01-02 13:52:30 -0700679 int disks = sh->disks;
Dan Williamsd6f38f32009-07-14 11:50:52 -0700680 struct page **xor_srcs = percpu->scribble;
Dan Williams91c00922007-01-02 13:52:30 -0700681 int target = sh->ops.target;
682 struct r5dev *tgt = &sh->dev[target];
683 struct page *xor_dest = tgt->page;
684 int count = 0;
685 struct dma_async_tx_descriptor *tx;
Dan Williamsa08abd82009-06-03 11:43:59 -0700686 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -0700687 int i;
688
689 pr_debug("%s: stripe %llu block: %d\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -0700690 __func__, (unsigned long long)sh->sector, target);
Dan Williams91c00922007-01-02 13:52:30 -0700691 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
692
693 for (i = disks; i--; )
694 if (i != target)
695 xor_srcs[count++] = sh->dev[i].page;
696
697 atomic_inc(&sh->count);
698
Dan Williams0403e382009-09-08 17:42:50 -0700699 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST, NULL,
Dan Williamsac6b53b2009-07-14 13:40:19 -0700700 ops_complete_compute, sh, to_addr_conv(sh, percpu));
Dan Williams91c00922007-01-02 13:52:30 -0700701 if (unlikely(count == 1))
Dan Williamsa08abd82009-06-03 11:43:59 -0700702 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -0700703 else
Dan Williamsa08abd82009-06-03 11:43:59 -0700704 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -0700705
Dan Williams91c00922007-01-02 13:52:30 -0700706 return tx;
707}
708
Dan Williamsac6b53b2009-07-14 13:40:19 -0700709/* set_syndrome_sources - populate source buffers for gen_syndrome
710 * @srcs - (struct page *) array of size sh->disks
711 * @sh - stripe_head to parse
712 *
713 * Populates srcs in proper layout order for the stripe and returns the
714 * 'count' of sources to be used in a call to async_gen_syndrome. The P
715 * destination buffer is recorded in srcs[count] and the Q destination
716 * is recorded in srcs[count+1]].
717 */
718static int set_syndrome_sources(struct page **srcs, struct stripe_head *sh)
719{
720 int disks = sh->disks;
721 int syndrome_disks = sh->ddf_layout ? disks : (disks - 2);
722 int d0_idx = raid6_d0(sh);
723 int count;
724 int i;
725
726 for (i = 0; i < disks; i++)
NeilBrown5dd33c92009-10-16 16:40:25 +1100727 srcs[i] = NULL;
Dan Williamsac6b53b2009-07-14 13:40:19 -0700728
729 count = 0;
730 i = d0_idx;
731 do {
732 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
733
734 srcs[slot] = sh->dev[i].page;
735 i = raid6_next_disk(i, disks);
736 } while (i != d0_idx);
Dan Williamsac6b53b2009-07-14 13:40:19 -0700737
NeilBrowne4424fe2009-10-16 16:27:34 +1100738 return syndrome_disks;
Dan Williamsac6b53b2009-07-14 13:40:19 -0700739}
740
741static struct dma_async_tx_descriptor *
742ops_run_compute6_1(struct stripe_head *sh, struct raid5_percpu *percpu)
743{
744 int disks = sh->disks;
745 struct page **blocks = percpu->scribble;
746 int target;
747 int qd_idx = sh->qd_idx;
748 struct dma_async_tx_descriptor *tx;
749 struct async_submit_ctl submit;
750 struct r5dev *tgt;
751 struct page *dest;
752 int i;
753 int count;
754
755 if (sh->ops.target < 0)
756 target = sh->ops.target2;
757 else if (sh->ops.target2 < 0)
758 target = sh->ops.target;
759 else
760 /* we should only have one valid target */
761 BUG();
762 BUG_ON(target < 0);
763 pr_debug("%s: stripe %llu block: %d\n",
764 __func__, (unsigned long long)sh->sector, target);
765
766 tgt = &sh->dev[target];
767 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
768 dest = tgt->page;
769
770 atomic_inc(&sh->count);
771
772 if (target == qd_idx) {
773 count = set_syndrome_sources(blocks, sh);
774 blocks[count] = NULL; /* regenerating p is not necessary */
775 BUG_ON(blocks[count+1] != dest); /* q should already be set */
Dan Williams0403e382009-09-08 17:42:50 -0700776 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
777 ops_complete_compute, sh,
Dan Williamsac6b53b2009-07-14 13:40:19 -0700778 to_addr_conv(sh, percpu));
779 tx = async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
780 } else {
781 /* Compute any data- or p-drive using XOR */
782 count = 0;
783 for (i = disks; i-- ; ) {
784 if (i == target || i == qd_idx)
785 continue;
786 blocks[count++] = sh->dev[i].page;
787 }
788
Dan Williams0403e382009-09-08 17:42:50 -0700789 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
790 NULL, ops_complete_compute, sh,
Dan Williamsac6b53b2009-07-14 13:40:19 -0700791 to_addr_conv(sh, percpu));
792 tx = async_xor(dest, blocks, 0, count, STRIPE_SIZE, &submit);
793 }
794
795 return tx;
796}
797
798static struct dma_async_tx_descriptor *
799ops_run_compute6_2(struct stripe_head *sh, struct raid5_percpu *percpu)
800{
801 int i, count, disks = sh->disks;
802 int syndrome_disks = sh->ddf_layout ? disks : disks-2;
803 int d0_idx = raid6_d0(sh);
804 int faila = -1, failb = -1;
805 int target = sh->ops.target;
806 int target2 = sh->ops.target2;
807 struct r5dev *tgt = &sh->dev[target];
808 struct r5dev *tgt2 = &sh->dev[target2];
809 struct dma_async_tx_descriptor *tx;
810 struct page **blocks = percpu->scribble;
811 struct async_submit_ctl submit;
812
813 pr_debug("%s: stripe %llu block1: %d block2: %d\n",
814 __func__, (unsigned long long)sh->sector, target, target2);
815 BUG_ON(target < 0 || target2 < 0);
816 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
817 BUG_ON(!test_bit(R5_Wantcompute, &tgt2->flags));
818
Dan Williams6c910a72009-09-16 12:24:54 -0700819 /* we need to open-code set_syndrome_sources to handle the
Dan Williamsac6b53b2009-07-14 13:40:19 -0700820 * slot number conversion for 'faila' and 'failb'
821 */
822 for (i = 0; i < disks ; i++)
NeilBrown5dd33c92009-10-16 16:40:25 +1100823 blocks[i] = NULL;
Dan Williamsac6b53b2009-07-14 13:40:19 -0700824 count = 0;
825 i = d0_idx;
826 do {
827 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
828
829 blocks[slot] = sh->dev[i].page;
830
831 if (i == target)
832 faila = slot;
833 if (i == target2)
834 failb = slot;
835 i = raid6_next_disk(i, disks);
836 } while (i != d0_idx);
Dan Williamsac6b53b2009-07-14 13:40:19 -0700837
838 BUG_ON(faila == failb);
839 if (failb < faila)
840 swap(faila, failb);
841 pr_debug("%s: stripe: %llu faila: %d failb: %d\n",
842 __func__, (unsigned long long)sh->sector, faila, failb);
843
844 atomic_inc(&sh->count);
845
846 if (failb == syndrome_disks+1) {
847 /* Q disk is one of the missing disks */
848 if (faila == syndrome_disks) {
849 /* Missing P+Q, just recompute */
Dan Williams0403e382009-09-08 17:42:50 -0700850 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
851 ops_complete_compute, sh,
852 to_addr_conv(sh, percpu));
NeilBrowne4424fe2009-10-16 16:27:34 +1100853 return async_gen_syndrome(blocks, 0, syndrome_disks+2,
Dan Williamsac6b53b2009-07-14 13:40:19 -0700854 STRIPE_SIZE, &submit);
855 } else {
856 struct page *dest;
857 int data_target;
858 int qd_idx = sh->qd_idx;
859
860 /* Missing D+Q: recompute D from P, then recompute Q */
861 if (target == qd_idx)
862 data_target = target2;
863 else
864 data_target = target;
865
866 count = 0;
867 for (i = disks; i-- ; ) {
868 if (i == data_target || i == qd_idx)
869 continue;
870 blocks[count++] = sh->dev[i].page;
871 }
872 dest = sh->dev[data_target].page;
Dan Williams0403e382009-09-08 17:42:50 -0700873 init_async_submit(&submit,
874 ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
875 NULL, NULL, NULL,
876 to_addr_conv(sh, percpu));
Dan Williamsac6b53b2009-07-14 13:40:19 -0700877 tx = async_xor(dest, blocks, 0, count, STRIPE_SIZE,
878 &submit);
879
880 count = set_syndrome_sources(blocks, sh);
Dan Williams0403e382009-09-08 17:42:50 -0700881 init_async_submit(&submit, ASYNC_TX_FENCE, tx,
882 ops_complete_compute, sh,
883 to_addr_conv(sh, percpu));
Dan Williamsac6b53b2009-07-14 13:40:19 -0700884 return async_gen_syndrome(blocks, 0, count+2,
885 STRIPE_SIZE, &submit);
886 }
Dan Williamsac6b53b2009-07-14 13:40:19 -0700887 } else {
Dan Williams6c910a72009-09-16 12:24:54 -0700888 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
889 ops_complete_compute, sh,
890 to_addr_conv(sh, percpu));
891 if (failb == syndrome_disks) {
892 /* We're missing D+P. */
893 return async_raid6_datap_recov(syndrome_disks+2,
894 STRIPE_SIZE, faila,
895 blocks, &submit);
896 } else {
897 /* We're missing D+D. */
898 return async_raid6_2data_recov(syndrome_disks+2,
899 STRIPE_SIZE, faila, failb,
900 blocks, &submit);
901 }
Dan Williamsac6b53b2009-07-14 13:40:19 -0700902 }
903}
904
905
Dan Williams91c00922007-01-02 13:52:30 -0700906static void ops_complete_prexor(void *stripe_head_ref)
907{
908 struct stripe_head *sh = stripe_head_ref;
909
Harvey Harrisone46b2722008-04-28 02:15:50 -0700910 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700911 (unsigned long long)sh->sector);
Dan Williams91c00922007-01-02 13:52:30 -0700912}
913
914static struct dma_async_tx_descriptor *
Dan Williamsd6f38f32009-07-14 11:50:52 -0700915ops_run_prexor(struct stripe_head *sh, struct raid5_percpu *percpu,
916 struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -0700917{
Dan Williams91c00922007-01-02 13:52:30 -0700918 int disks = sh->disks;
Dan Williamsd6f38f32009-07-14 11:50:52 -0700919 struct page **xor_srcs = percpu->scribble;
Dan Williams91c00922007-01-02 13:52:30 -0700920 int count = 0, pd_idx = sh->pd_idx, i;
Dan Williamsa08abd82009-06-03 11:43:59 -0700921 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -0700922
923 /* existing parity data subtracted */
924 struct page *xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
925
Harvey Harrisone46b2722008-04-28 02:15:50 -0700926 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700927 (unsigned long long)sh->sector);
928
929 for (i = disks; i--; ) {
930 struct r5dev *dev = &sh->dev[i];
931 /* Only process blocks that are known to be uptodate */
Dan Williamsd8ee0722008-06-28 08:32:06 +1000932 if (test_bit(R5_Wantdrain, &dev->flags))
Dan Williams91c00922007-01-02 13:52:30 -0700933 xor_srcs[count++] = dev->page;
934 }
935
Dan Williams0403e382009-09-08 17:42:50 -0700936 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_DROP_DST, tx,
Dan Williamsd6f38f32009-07-14 11:50:52 -0700937 ops_complete_prexor, sh, to_addr_conv(sh, percpu));
Dan Williamsa08abd82009-06-03 11:43:59 -0700938 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -0700939
940 return tx;
941}
942
943static struct dma_async_tx_descriptor *
Dan Williamsd8ee0722008-06-28 08:32:06 +1000944ops_run_biodrain(struct stripe_head *sh, struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -0700945{
946 int disks = sh->disks;
Dan Williamsd8ee0722008-06-28 08:32:06 +1000947 int i;
Dan Williams91c00922007-01-02 13:52:30 -0700948
Harvey Harrisone46b2722008-04-28 02:15:50 -0700949 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700950 (unsigned long long)sh->sector);
951
952 for (i = disks; i--; ) {
953 struct r5dev *dev = &sh->dev[i];
954 struct bio *chosen;
Dan Williams91c00922007-01-02 13:52:30 -0700955
Dan Williamsd8ee0722008-06-28 08:32:06 +1000956 if (test_and_clear_bit(R5_Wantdrain, &dev->flags)) {
Dan Williams91c00922007-01-02 13:52:30 -0700957 struct bio *wbi;
958
959 spin_lock(&sh->lock);
960 chosen = dev->towrite;
961 dev->towrite = NULL;
962 BUG_ON(dev->written);
963 wbi = dev->written = chosen;
964 spin_unlock(&sh->lock);
965
966 while (wbi && wbi->bi_sector <
967 dev->sector + STRIPE_SECTORS) {
968 tx = async_copy_data(1, wbi, dev->page,
969 dev->sector, tx);
970 wbi = r5_next_bio(wbi, dev->sector);
971 }
972 }
973 }
974
975 return tx;
976}
977
Dan Williamsac6b53b2009-07-14 13:40:19 -0700978static void ops_complete_reconstruct(void *stripe_head_ref)
Dan Williams91c00922007-01-02 13:52:30 -0700979{
980 struct stripe_head *sh = stripe_head_ref;
Dan Williamsac6b53b2009-07-14 13:40:19 -0700981 int disks = sh->disks;
982 int pd_idx = sh->pd_idx;
983 int qd_idx = sh->qd_idx;
984 int i;
Dan Williams91c00922007-01-02 13:52:30 -0700985
Harvey Harrisone46b2722008-04-28 02:15:50 -0700986 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700987 (unsigned long long)sh->sector);
988
989 for (i = disks; i--; ) {
990 struct r5dev *dev = &sh->dev[i];
Dan Williamsac6b53b2009-07-14 13:40:19 -0700991
992 if (dev->written || i == pd_idx || i == qd_idx)
Dan Williams91c00922007-01-02 13:52:30 -0700993 set_bit(R5_UPTODATE, &dev->flags);
994 }
995
Dan Williamsd8ee0722008-06-28 08:32:06 +1000996 if (sh->reconstruct_state == reconstruct_state_drain_run)
997 sh->reconstruct_state = reconstruct_state_drain_result;
998 else if (sh->reconstruct_state == reconstruct_state_prexor_drain_run)
999 sh->reconstruct_state = reconstruct_state_prexor_drain_result;
1000 else {
1001 BUG_ON(sh->reconstruct_state != reconstruct_state_run);
1002 sh->reconstruct_state = reconstruct_state_result;
1003 }
Dan Williams91c00922007-01-02 13:52:30 -07001004
1005 set_bit(STRIPE_HANDLE, &sh->state);
1006 release_stripe(sh);
1007}
1008
1009static void
Dan Williamsac6b53b2009-07-14 13:40:19 -07001010ops_run_reconstruct5(struct stripe_head *sh, struct raid5_percpu *percpu,
1011 struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001012{
Dan Williams91c00922007-01-02 13:52:30 -07001013 int disks = sh->disks;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001014 struct page **xor_srcs = percpu->scribble;
Dan Williamsa08abd82009-06-03 11:43:59 -07001015 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001016 int count = 0, pd_idx = sh->pd_idx, i;
1017 struct page *xor_dest;
Dan Williamsd8ee0722008-06-28 08:32:06 +10001018 int prexor = 0;
Dan Williams91c00922007-01-02 13:52:30 -07001019 unsigned long flags;
Dan Williams91c00922007-01-02 13:52:30 -07001020
Harvey Harrisone46b2722008-04-28 02:15:50 -07001021 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001022 (unsigned long long)sh->sector);
1023
1024 /* check if prexor is active which means only process blocks
1025 * that are part of a read-modify-write (written)
1026 */
Dan Williamsd8ee0722008-06-28 08:32:06 +10001027 if (sh->reconstruct_state == reconstruct_state_prexor_drain_run) {
1028 prexor = 1;
Dan Williams91c00922007-01-02 13:52:30 -07001029 xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
1030 for (i = disks; i--; ) {
1031 struct r5dev *dev = &sh->dev[i];
1032 if (dev->written)
1033 xor_srcs[count++] = dev->page;
1034 }
1035 } else {
1036 xor_dest = sh->dev[pd_idx].page;
1037 for (i = disks; i--; ) {
1038 struct r5dev *dev = &sh->dev[i];
1039 if (i != pd_idx)
1040 xor_srcs[count++] = dev->page;
1041 }
1042 }
1043
Dan Williams91c00922007-01-02 13:52:30 -07001044 /* 1/ if we prexor'd then the dest is reused as a source
1045 * 2/ if we did not prexor then we are redoing the parity
1046 * set ASYNC_TX_XOR_DROP_DST and ASYNC_TX_XOR_ZERO_DST
1047 * for the synchronous xor case
1048 */
Dan Williams88ba2aa2009-04-09 16:16:18 -07001049 flags = ASYNC_TX_ACK |
Dan Williams91c00922007-01-02 13:52:30 -07001050 (prexor ? ASYNC_TX_XOR_DROP_DST : ASYNC_TX_XOR_ZERO_DST);
1051
1052 atomic_inc(&sh->count);
1053
Dan Williamsac6b53b2009-07-14 13:40:19 -07001054 init_async_submit(&submit, flags, tx, ops_complete_reconstruct, sh,
Dan Williamsd6f38f32009-07-14 11:50:52 -07001055 to_addr_conv(sh, percpu));
Dan Williamsa08abd82009-06-03 11:43:59 -07001056 if (unlikely(count == 1))
1057 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
1058 else
1059 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001060}
1061
Dan Williamsac6b53b2009-07-14 13:40:19 -07001062static void
1063ops_run_reconstruct6(struct stripe_head *sh, struct raid5_percpu *percpu,
1064 struct dma_async_tx_descriptor *tx)
1065{
1066 struct async_submit_ctl submit;
1067 struct page **blocks = percpu->scribble;
1068 int count;
1069
1070 pr_debug("%s: stripe %llu\n", __func__, (unsigned long long)sh->sector);
1071
1072 count = set_syndrome_sources(blocks, sh);
1073
1074 atomic_inc(&sh->count);
1075
1076 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_reconstruct,
1077 sh, to_addr_conv(sh, percpu));
1078 async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001079}
1080
1081static void ops_complete_check(void *stripe_head_ref)
1082{
1083 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -07001084
Harvey Harrisone46b2722008-04-28 02:15:50 -07001085 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001086 (unsigned long long)sh->sector);
1087
Dan Williamsecc65c92008-06-28 08:31:57 +10001088 sh->check_state = check_state_check_result;
Dan Williams91c00922007-01-02 13:52:30 -07001089 set_bit(STRIPE_HANDLE, &sh->state);
1090 release_stripe(sh);
1091}
1092
Dan Williamsac6b53b2009-07-14 13:40:19 -07001093static void ops_run_check_p(struct stripe_head *sh, struct raid5_percpu *percpu)
Dan Williams91c00922007-01-02 13:52:30 -07001094{
Dan Williams91c00922007-01-02 13:52:30 -07001095 int disks = sh->disks;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001096 int pd_idx = sh->pd_idx;
1097 int qd_idx = sh->qd_idx;
1098 struct page *xor_dest;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001099 struct page **xor_srcs = percpu->scribble;
Dan Williams91c00922007-01-02 13:52:30 -07001100 struct dma_async_tx_descriptor *tx;
Dan Williamsa08abd82009-06-03 11:43:59 -07001101 struct async_submit_ctl submit;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001102 int count;
1103 int i;
Dan Williams91c00922007-01-02 13:52:30 -07001104
Harvey Harrisone46b2722008-04-28 02:15:50 -07001105 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001106 (unsigned long long)sh->sector);
1107
Dan Williamsac6b53b2009-07-14 13:40:19 -07001108 count = 0;
1109 xor_dest = sh->dev[pd_idx].page;
1110 xor_srcs[count++] = xor_dest;
Dan Williams91c00922007-01-02 13:52:30 -07001111 for (i = disks; i--; ) {
Dan Williamsac6b53b2009-07-14 13:40:19 -07001112 if (i == pd_idx || i == qd_idx)
1113 continue;
1114 xor_srcs[count++] = sh->dev[i].page;
Dan Williams91c00922007-01-02 13:52:30 -07001115 }
1116
Dan Williamsd6f38f32009-07-14 11:50:52 -07001117 init_async_submit(&submit, 0, NULL, NULL, NULL,
1118 to_addr_conv(sh, percpu));
Dan Williams099f53c2009-04-08 14:28:37 -07001119 tx = async_xor_val(xor_dest, xor_srcs, 0, count, STRIPE_SIZE,
Dan Williamsa08abd82009-06-03 11:43:59 -07001120 &sh->ops.zero_sum_result, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001121
Dan Williams91c00922007-01-02 13:52:30 -07001122 atomic_inc(&sh->count);
Dan Williamsa08abd82009-06-03 11:43:59 -07001123 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_check, sh, NULL);
1124 tx = async_trigger_callback(&submit);
Dan Williams91c00922007-01-02 13:52:30 -07001125}
1126
Dan Williamsac6b53b2009-07-14 13:40:19 -07001127static void ops_run_check_pq(struct stripe_head *sh, struct raid5_percpu *percpu, int checkp)
1128{
1129 struct page **srcs = percpu->scribble;
1130 struct async_submit_ctl submit;
1131 int count;
1132
1133 pr_debug("%s: stripe %llu checkp: %d\n", __func__,
1134 (unsigned long long)sh->sector, checkp);
1135
1136 count = set_syndrome_sources(srcs, sh);
1137 if (!checkp)
1138 srcs[count] = NULL;
1139
1140 atomic_inc(&sh->count);
1141 init_async_submit(&submit, ASYNC_TX_ACK, NULL, ops_complete_check,
1142 sh, to_addr_conv(sh, percpu));
1143 async_syndrome_val(srcs, 0, count+2, STRIPE_SIZE,
1144 &sh->ops.zero_sum_result, percpu->spare_page, &submit);
1145}
1146
Dan Williams417b8d42009-10-16 16:25:22 +11001147static void __raid_run_ops(struct stripe_head *sh, unsigned long ops_request)
Dan Williams91c00922007-01-02 13:52:30 -07001148{
1149 int overlap_clear = 0, i, disks = sh->disks;
1150 struct dma_async_tx_descriptor *tx = NULL;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001151 raid5_conf_t *conf = sh->raid_conf;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001152 int level = conf->level;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001153 struct raid5_percpu *percpu;
1154 unsigned long cpu;
Dan Williams91c00922007-01-02 13:52:30 -07001155
Dan Williamsd6f38f32009-07-14 11:50:52 -07001156 cpu = get_cpu();
1157 percpu = per_cpu_ptr(conf->percpu, cpu);
Dan Williams83de75c2008-06-28 08:31:58 +10001158 if (test_bit(STRIPE_OP_BIOFILL, &ops_request)) {
Dan Williams91c00922007-01-02 13:52:30 -07001159 ops_run_biofill(sh);
1160 overlap_clear++;
1161 }
1162
Dan Williams7b3a8712008-06-28 08:32:09 +10001163 if (test_bit(STRIPE_OP_COMPUTE_BLK, &ops_request)) {
Dan Williamsac6b53b2009-07-14 13:40:19 -07001164 if (level < 6)
1165 tx = ops_run_compute5(sh, percpu);
1166 else {
1167 if (sh->ops.target2 < 0 || sh->ops.target < 0)
1168 tx = ops_run_compute6_1(sh, percpu);
1169 else
1170 tx = ops_run_compute6_2(sh, percpu);
1171 }
1172 /* terminate the chain if reconstruct is not set to be run */
1173 if (tx && !test_bit(STRIPE_OP_RECONSTRUCT, &ops_request))
Dan Williams7b3a8712008-06-28 08:32:09 +10001174 async_tx_ack(tx);
1175 }
Dan Williams91c00922007-01-02 13:52:30 -07001176
Dan Williams600aa102008-06-28 08:32:05 +10001177 if (test_bit(STRIPE_OP_PREXOR, &ops_request))
Dan Williamsd6f38f32009-07-14 11:50:52 -07001178 tx = ops_run_prexor(sh, percpu, tx);
Dan Williams91c00922007-01-02 13:52:30 -07001179
Dan Williams600aa102008-06-28 08:32:05 +10001180 if (test_bit(STRIPE_OP_BIODRAIN, &ops_request)) {
Dan Williamsd8ee0722008-06-28 08:32:06 +10001181 tx = ops_run_biodrain(sh, tx);
Dan Williams91c00922007-01-02 13:52:30 -07001182 overlap_clear++;
1183 }
1184
Dan Williamsac6b53b2009-07-14 13:40:19 -07001185 if (test_bit(STRIPE_OP_RECONSTRUCT, &ops_request)) {
1186 if (level < 6)
1187 ops_run_reconstruct5(sh, percpu, tx);
1188 else
1189 ops_run_reconstruct6(sh, percpu, tx);
1190 }
Dan Williams91c00922007-01-02 13:52:30 -07001191
Dan Williamsac6b53b2009-07-14 13:40:19 -07001192 if (test_bit(STRIPE_OP_CHECK, &ops_request)) {
1193 if (sh->check_state == check_state_run)
1194 ops_run_check_p(sh, percpu);
1195 else if (sh->check_state == check_state_run_q)
1196 ops_run_check_pq(sh, percpu, 0);
1197 else if (sh->check_state == check_state_run_pq)
1198 ops_run_check_pq(sh, percpu, 1);
1199 else
1200 BUG();
1201 }
Dan Williams91c00922007-01-02 13:52:30 -07001202
Dan Williams91c00922007-01-02 13:52:30 -07001203 if (overlap_clear)
1204 for (i = disks; i--; ) {
1205 struct r5dev *dev = &sh->dev[i];
1206 if (test_and_clear_bit(R5_Overlap, &dev->flags))
1207 wake_up(&sh->raid_conf->wait_for_overlap);
1208 }
Dan Williamsd6f38f32009-07-14 11:50:52 -07001209 put_cpu();
Dan Williams91c00922007-01-02 13:52:30 -07001210}
1211
Dan Williams417b8d42009-10-16 16:25:22 +11001212#ifdef CONFIG_MULTICORE_RAID456
1213static void async_run_ops(void *param, async_cookie_t cookie)
1214{
1215 struct stripe_head *sh = param;
1216 unsigned long ops_request = sh->ops.request;
1217
1218 clear_bit_unlock(STRIPE_OPS_REQ_PENDING, &sh->state);
1219 wake_up(&sh->ops.wait_for_ops);
1220
1221 __raid_run_ops(sh, ops_request);
1222 release_stripe(sh);
1223}
1224
1225static void raid_run_ops(struct stripe_head *sh, unsigned long ops_request)
1226{
1227 /* since handle_stripe can be called outside of raid5d context
1228 * we need to ensure sh->ops.request is de-staged before another
1229 * request arrives
1230 */
1231 wait_event(sh->ops.wait_for_ops,
1232 !test_and_set_bit_lock(STRIPE_OPS_REQ_PENDING, &sh->state));
1233 sh->ops.request = ops_request;
1234
1235 atomic_inc(&sh->count);
1236 async_schedule(async_run_ops, sh);
1237}
1238#else
1239#define raid_run_ops __raid_run_ops
1240#endif
1241
NeilBrown3f294f42005-11-08 21:39:25 -08001242static int grow_one_stripe(raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243{
1244 struct stripe_head *sh;
NeilBrown3f294f42005-11-08 21:39:25 -08001245 sh = kmem_cache_alloc(conf->slab_cache, GFP_KERNEL);
1246 if (!sh)
1247 return 0;
NeilBrowne4e11e32010-06-16 16:45:16 +10001248 memset(sh, 0, sizeof(*sh) + (conf->pool_size-1)*sizeof(struct r5dev));
NeilBrown3f294f42005-11-08 21:39:25 -08001249 sh->raid_conf = conf;
1250 spin_lock_init(&sh->lock);
Dan Williams417b8d42009-10-16 16:25:22 +11001251 #ifdef CONFIG_MULTICORE_RAID456
1252 init_waitqueue_head(&sh->ops.wait_for_ops);
1253 #endif
NeilBrown3f294f42005-11-08 21:39:25 -08001254
NeilBrowne4e11e32010-06-16 16:45:16 +10001255 if (grow_buffers(sh)) {
1256 shrink_buffers(sh);
NeilBrown3f294f42005-11-08 21:39:25 -08001257 kmem_cache_free(conf->slab_cache, sh);
1258 return 0;
1259 }
1260 /* we just created an active stripe so... */
1261 atomic_set(&sh->count, 1);
1262 atomic_inc(&conf->active_stripes);
1263 INIT_LIST_HEAD(&sh->lru);
1264 release_stripe(sh);
1265 return 1;
1266}
1267
1268static int grow_stripes(raid5_conf_t *conf, int num)
1269{
Christoph Lametere18b8902006-12-06 20:33:20 -08001270 struct kmem_cache *sc;
NeilBrown5e5e3e72009-10-16 16:35:30 +11001271 int devs = max(conf->raid_disks, conf->previous_raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
NeilBrown245f46c2009-03-31 14:39:39 +11001273 sprintf(conf->cache_name[0],
1274 "raid%d-%s", conf->level, mdname(conf->mddev));
1275 sprintf(conf->cache_name[1],
1276 "raid%d-%s-alt", conf->level, mdname(conf->mddev));
NeilBrownad01c9e2006-03-27 01:18:07 -08001277 conf->active_name = 0;
1278 sc = kmem_cache_create(conf->cache_name[conf->active_name],
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 sizeof(struct stripe_head)+(devs-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +09001280 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 if (!sc)
1282 return 1;
1283 conf->slab_cache = sc;
NeilBrownad01c9e2006-03-27 01:18:07 -08001284 conf->pool_size = devs;
NeilBrown16a53ec2006-06-26 00:27:38 -07001285 while (num--)
NeilBrown3f294f42005-11-08 21:39:25 -08001286 if (!grow_one_stripe(conf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 return 0;
1289}
NeilBrown29269552006-03-27 01:18:10 -08001290
Dan Williamsd6f38f32009-07-14 11:50:52 -07001291/**
1292 * scribble_len - return the required size of the scribble region
1293 * @num - total number of disks in the array
1294 *
1295 * The size must be enough to contain:
1296 * 1/ a struct page pointer for each device in the array +2
1297 * 2/ room to convert each entry in (1) to its corresponding dma
1298 * (dma_map_page()) or page (page_address()) address.
1299 *
1300 * Note: the +2 is for the destination buffers of the ddf/raid6 case where we
1301 * calculate over all devices (not just the data blocks), using zeros in place
1302 * of the P and Q blocks.
1303 */
1304static size_t scribble_len(int num)
1305{
1306 size_t len;
1307
1308 len = sizeof(struct page *) * (num+2) + sizeof(addr_conv_t) * (num+2);
1309
1310 return len;
1311}
1312
NeilBrownad01c9e2006-03-27 01:18:07 -08001313static int resize_stripes(raid5_conf_t *conf, int newsize)
1314{
1315 /* Make all the stripes able to hold 'newsize' devices.
1316 * New slots in each stripe get 'page' set to a new page.
1317 *
1318 * This happens in stages:
1319 * 1/ create a new kmem_cache and allocate the required number of
1320 * stripe_heads.
1321 * 2/ gather all the old stripe_heads and tranfer the pages across
1322 * to the new stripe_heads. This will have the side effect of
1323 * freezing the array as once all stripe_heads have been collected,
1324 * no IO will be possible. Old stripe heads are freed once their
1325 * pages have been transferred over, and the old kmem_cache is
1326 * freed when all stripes are done.
1327 * 3/ reallocate conf->disks to be suitable bigger. If this fails,
1328 * we simple return a failre status - no need to clean anything up.
1329 * 4/ allocate new pages for the new slots in the new stripe_heads.
1330 * If this fails, we don't bother trying the shrink the
1331 * stripe_heads down again, we just leave them as they are.
1332 * As each stripe_head is processed the new one is released into
1333 * active service.
1334 *
1335 * Once step2 is started, we cannot afford to wait for a write,
1336 * so we use GFP_NOIO allocations.
1337 */
1338 struct stripe_head *osh, *nsh;
1339 LIST_HEAD(newstripes);
1340 struct disk_info *ndisks;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001341 unsigned long cpu;
Dan Williamsb5470dc2008-06-27 21:44:04 -07001342 int err;
Christoph Lametere18b8902006-12-06 20:33:20 -08001343 struct kmem_cache *sc;
NeilBrownad01c9e2006-03-27 01:18:07 -08001344 int i;
1345
1346 if (newsize <= conf->pool_size)
1347 return 0; /* never bother to shrink */
1348
Dan Williamsb5470dc2008-06-27 21:44:04 -07001349 err = md_allow_write(conf->mddev);
1350 if (err)
1351 return err;
NeilBrown2a2275d2007-01-26 00:57:11 -08001352
NeilBrownad01c9e2006-03-27 01:18:07 -08001353 /* Step 1 */
1354 sc = kmem_cache_create(conf->cache_name[1-conf->active_name],
1355 sizeof(struct stripe_head)+(newsize-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +09001356 0, 0, NULL);
NeilBrownad01c9e2006-03-27 01:18:07 -08001357 if (!sc)
1358 return -ENOMEM;
1359
1360 for (i = conf->max_nr_stripes; i; i--) {
1361 nsh = kmem_cache_alloc(sc, GFP_KERNEL);
1362 if (!nsh)
1363 break;
1364
1365 memset(nsh, 0, sizeof(*nsh) + (newsize-1)*sizeof(struct r5dev));
1366
1367 nsh->raid_conf = conf;
1368 spin_lock_init(&nsh->lock);
Dan Williams417b8d42009-10-16 16:25:22 +11001369 #ifdef CONFIG_MULTICORE_RAID456
1370 init_waitqueue_head(&nsh->ops.wait_for_ops);
1371 #endif
NeilBrownad01c9e2006-03-27 01:18:07 -08001372
1373 list_add(&nsh->lru, &newstripes);
1374 }
1375 if (i) {
1376 /* didn't get enough, give up */
1377 while (!list_empty(&newstripes)) {
1378 nsh = list_entry(newstripes.next, struct stripe_head, lru);
1379 list_del(&nsh->lru);
1380 kmem_cache_free(sc, nsh);
1381 }
1382 kmem_cache_destroy(sc);
1383 return -ENOMEM;
1384 }
1385 /* Step 2 - Must use GFP_NOIO now.
1386 * OK, we have enough stripes, start collecting inactive
1387 * stripes and copying them over
1388 */
1389 list_for_each_entry(nsh, &newstripes, lru) {
1390 spin_lock_irq(&conf->device_lock);
1391 wait_event_lock_irq(conf->wait_for_stripe,
1392 !list_empty(&conf->inactive_list),
1393 conf->device_lock,
NeilBrownb3b46be2006-03-27 01:18:16 -08001394 unplug_slaves(conf->mddev)
NeilBrownad01c9e2006-03-27 01:18:07 -08001395 );
1396 osh = get_free_stripe(conf);
1397 spin_unlock_irq(&conf->device_lock);
1398 atomic_set(&nsh->count, 1);
1399 for(i=0; i<conf->pool_size; i++)
1400 nsh->dev[i].page = osh->dev[i].page;
1401 for( ; i<newsize; i++)
1402 nsh->dev[i].page = NULL;
1403 kmem_cache_free(conf->slab_cache, osh);
1404 }
1405 kmem_cache_destroy(conf->slab_cache);
1406
1407 /* Step 3.
1408 * At this point, we are holding all the stripes so the array
1409 * is completely stalled, so now is a good time to resize
Dan Williamsd6f38f32009-07-14 11:50:52 -07001410 * conf->disks and the scribble region
NeilBrownad01c9e2006-03-27 01:18:07 -08001411 */
1412 ndisks = kzalloc(newsize * sizeof(struct disk_info), GFP_NOIO);
1413 if (ndisks) {
1414 for (i=0; i<conf->raid_disks; i++)
1415 ndisks[i] = conf->disks[i];
1416 kfree(conf->disks);
1417 conf->disks = ndisks;
1418 } else
1419 err = -ENOMEM;
1420
Dan Williamsd6f38f32009-07-14 11:50:52 -07001421 get_online_cpus();
1422 conf->scribble_len = scribble_len(newsize);
1423 for_each_present_cpu(cpu) {
1424 struct raid5_percpu *percpu;
1425 void *scribble;
1426
1427 percpu = per_cpu_ptr(conf->percpu, cpu);
1428 scribble = kmalloc(conf->scribble_len, GFP_NOIO);
1429
1430 if (scribble) {
1431 kfree(percpu->scribble);
1432 percpu->scribble = scribble;
1433 } else {
1434 err = -ENOMEM;
1435 break;
1436 }
1437 }
1438 put_online_cpus();
1439
NeilBrownad01c9e2006-03-27 01:18:07 -08001440 /* Step 4, return new stripes to service */
1441 while(!list_empty(&newstripes)) {
1442 nsh = list_entry(newstripes.next, struct stripe_head, lru);
1443 list_del_init(&nsh->lru);
Dan Williamsd6f38f32009-07-14 11:50:52 -07001444
NeilBrownad01c9e2006-03-27 01:18:07 -08001445 for (i=conf->raid_disks; i < newsize; i++)
1446 if (nsh->dev[i].page == NULL) {
1447 struct page *p = alloc_page(GFP_NOIO);
1448 nsh->dev[i].page = p;
1449 if (!p)
1450 err = -ENOMEM;
1451 }
1452 release_stripe(nsh);
1453 }
1454 /* critical section pass, GFP_NOIO no longer needed */
1455
1456 conf->slab_cache = sc;
1457 conf->active_name = 1-conf->active_name;
1458 conf->pool_size = newsize;
1459 return err;
1460}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
NeilBrown3f294f42005-11-08 21:39:25 -08001462static int drop_one_stripe(raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463{
1464 struct stripe_head *sh;
1465
NeilBrown3f294f42005-11-08 21:39:25 -08001466 spin_lock_irq(&conf->device_lock);
1467 sh = get_free_stripe(conf);
1468 spin_unlock_irq(&conf->device_lock);
1469 if (!sh)
1470 return 0;
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02001471 BUG_ON(atomic_read(&sh->count));
NeilBrowne4e11e32010-06-16 16:45:16 +10001472 shrink_buffers(sh);
NeilBrown3f294f42005-11-08 21:39:25 -08001473 kmem_cache_free(conf->slab_cache, sh);
1474 atomic_dec(&conf->active_stripes);
1475 return 1;
1476}
1477
1478static void shrink_stripes(raid5_conf_t *conf)
1479{
1480 while (drop_one_stripe(conf))
1481 ;
1482
NeilBrown29fc7e32006-02-03 03:03:41 -08001483 if (conf->slab_cache)
1484 kmem_cache_destroy(conf->slab_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 conf->slab_cache = NULL;
1486}
1487
NeilBrown6712ecf2007-09-27 12:47:43 +02001488static void raid5_end_read_request(struct bio * bi, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489{
NeilBrown99c0fb52009-03-31 14:39:38 +11001490 struct stripe_head *sh = bi->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 raid5_conf_t *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08001492 int disks = sh->disks, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
NeilBrownd6950432006-07-10 04:44:20 -07001494 char b[BDEVNAME_SIZE];
1495 mdk_rdev_t *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
1498 for (i=0 ; i<disks; i++)
1499 if (bi == &sh->dev[i].req)
1500 break;
1501
Dan Williams45b42332007-07-09 11:56:43 -07001502 pr_debug("end_read_request %llu/%d, count: %d, uptodate %d.\n",
1503 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 uptodate);
1505 if (i == disks) {
1506 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02001507 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 }
1509
1510 if (uptodate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 set_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrown4e5314b2005-11-08 21:39:22 -08001512 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrownd6950432006-07-10 04:44:20 -07001513 rdev = conf->disks[i].rdev;
NeilBrown0c55e022010-05-03 14:09:02 +10001514 printk_rl(KERN_INFO "md/raid:%s: read error corrected"
Bernd Schubert6be9d492008-05-23 13:04:34 -07001515 " (%lu sectors at %llu on %s)\n",
1516 mdname(conf->mddev), STRIPE_SECTORS,
1517 (unsigned long long)(sh->sector
1518 + rdev->data_offset),
1519 bdevname(rdev->bdev, b));
NeilBrown4e5314b2005-11-08 21:39:22 -08001520 clear_bit(R5_ReadError, &sh->dev[i].flags);
1521 clear_bit(R5_ReWrite, &sh->dev[i].flags);
1522 }
NeilBrownba22dcb2005-11-08 21:39:31 -08001523 if (atomic_read(&conf->disks[i].rdev->read_errors))
1524 atomic_set(&conf->disks[i].rdev->read_errors, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 } else {
NeilBrownd6950432006-07-10 04:44:20 -07001526 const char *bdn = bdevname(conf->disks[i].rdev->bdev, b);
NeilBrownba22dcb2005-11-08 21:39:31 -08001527 int retry = 0;
NeilBrownd6950432006-07-10 04:44:20 -07001528 rdev = conf->disks[i].rdev;
1529
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 clear_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrownd6950432006-07-10 04:44:20 -07001531 atomic_inc(&rdev->read_errors);
Gabriele A. Trombetti7b0bb532010-04-28 11:51:17 +10001532 if (conf->mddev->degraded >= conf->max_degraded)
Bernd Schubert6be9d492008-05-23 13:04:34 -07001533 printk_rl(KERN_WARNING
NeilBrown0c55e022010-05-03 14:09:02 +10001534 "md/raid:%s: read error not correctable "
Bernd Schubert6be9d492008-05-23 13:04:34 -07001535 "(sector %llu on %s).\n",
1536 mdname(conf->mddev),
1537 (unsigned long long)(sh->sector
1538 + rdev->data_offset),
1539 bdn);
NeilBrownba22dcb2005-11-08 21:39:31 -08001540 else if (test_bit(R5_ReWrite, &sh->dev[i].flags))
NeilBrown4e5314b2005-11-08 21:39:22 -08001541 /* Oh, no!!! */
Bernd Schubert6be9d492008-05-23 13:04:34 -07001542 printk_rl(KERN_WARNING
NeilBrown0c55e022010-05-03 14:09:02 +10001543 "md/raid:%s: read error NOT corrected!! "
Bernd Schubert6be9d492008-05-23 13:04:34 -07001544 "(sector %llu on %s).\n",
1545 mdname(conf->mddev),
1546 (unsigned long long)(sh->sector
1547 + rdev->data_offset),
1548 bdn);
NeilBrownd6950432006-07-10 04:44:20 -07001549 else if (atomic_read(&rdev->read_errors)
NeilBrownba22dcb2005-11-08 21:39:31 -08001550 > conf->max_nr_stripes)
NeilBrown14f8d262006-01-06 00:20:14 -08001551 printk(KERN_WARNING
NeilBrown0c55e022010-05-03 14:09:02 +10001552 "md/raid:%s: Too many read errors, failing device %s.\n",
NeilBrownd6950432006-07-10 04:44:20 -07001553 mdname(conf->mddev), bdn);
NeilBrownba22dcb2005-11-08 21:39:31 -08001554 else
1555 retry = 1;
1556 if (retry)
1557 set_bit(R5_ReadError, &sh->dev[i].flags);
1558 else {
NeilBrown4e5314b2005-11-08 21:39:22 -08001559 clear_bit(R5_ReadError, &sh->dev[i].flags);
1560 clear_bit(R5_ReWrite, &sh->dev[i].flags);
NeilBrownd6950432006-07-10 04:44:20 -07001561 md_error(conf->mddev, rdev);
NeilBrownba22dcb2005-11-08 21:39:31 -08001562 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 }
1564 rdev_dec_pending(conf->disks[i].rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 clear_bit(R5_LOCKED, &sh->dev[i].flags);
1566 set_bit(STRIPE_HANDLE, &sh->state);
1567 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568}
1569
NeilBrownd710e132008-10-13 11:55:12 +11001570static void raid5_end_write_request(struct bio *bi, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571{
NeilBrown99c0fb52009-03-31 14:39:38 +11001572 struct stripe_head *sh = bi->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 raid5_conf_t *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08001574 int disks = sh->disks, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
1576
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 for (i=0 ; i<disks; i++)
1578 if (bi == &sh->dev[i].req)
1579 break;
1580
Dan Williams45b42332007-07-09 11:56:43 -07001581 pr_debug("end_write_request %llu/%d, count %d, uptodate: %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
1583 uptodate);
1584 if (i == disks) {
1585 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02001586 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 }
1588
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 if (!uptodate)
1590 md_error(conf->mddev, conf->disks[i].rdev);
1591
1592 rdev_dec_pending(conf->disks[i].rdev, conf->mddev);
1593
1594 clear_bit(R5_LOCKED, &sh->dev[i].flags);
1595 set_bit(STRIPE_HANDLE, &sh->state);
NeilBrownc04be0a2006-10-03 01:15:53 -07001596 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597}
1598
1599
NeilBrown784052e2009-03-31 15:19:07 +11001600static sector_t compute_blocknr(struct stripe_head *sh, int i, int previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
NeilBrown784052e2009-03-31 15:19:07 +11001602static void raid5_build_block(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603{
1604 struct r5dev *dev = &sh->dev[i];
1605
1606 bio_init(&dev->req);
1607 dev->req.bi_io_vec = &dev->vec;
1608 dev->req.bi_vcnt++;
1609 dev->req.bi_max_vecs++;
1610 dev->vec.bv_page = dev->page;
1611 dev->vec.bv_len = STRIPE_SIZE;
1612 dev->vec.bv_offset = 0;
1613
1614 dev->req.bi_sector = sh->sector;
1615 dev->req.bi_private = sh;
1616
1617 dev->flags = 0;
NeilBrown784052e2009-03-31 15:19:07 +11001618 dev->sector = compute_blocknr(sh, i, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619}
1620
1621static void error(mddev_t *mddev, mdk_rdev_t *rdev)
1622{
1623 char b[BDEVNAME_SIZE];
H Hartley Sweeten7b928132010-03-08 16:02:40 +11001624 raid5_conf_t *conf = mddev->private;
NeilBrown0c55e022010-05-03 14:09:02 +10001625 pr_debug("raid456: error called\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
NeilBrownb2d444d2005-11-08 21:39:31 -08001627 if (!test_bit(Faulty, &rdev->flags)) {
NeilBrown850b2b42006-10-03 01:15:46 -07001628 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrownc04be0a2006-10-03 01:15:53 -07001629 if (test_and_clear_bit(In_sync, &rdev->flags)) {
1630 unsigned long flags;
1631 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 mddev->degraded++;
NeilBrownc04be0a2006-10-03 01:15:53 -07001633 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 /*
1635 * if recovery was running, make sure it aborts.
1636 */
NeilBrowndfc70642008-05-23 13:04:39 -07001637 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 }
NeilBrownb2d444d2005-11-08 21:39:31 -08001639 set_bit(Faulty, &rdev->flags);
NeilBrownd710e132008-10-13 11:55:12 +11001640 printk(KERN_ALERT
NeilBrown0c55e022010-05-03 14:09:02 +10001641 "md/raid:%s: Disk failure on %s, disabling device.\n"
1642 KERN_ALERT
1643 "md/raid:%s: Operation continuing on %d devices.\n",
1644 mdname(mddev),
1645 bdevname(rdev->bdev, b),
1646 mdname(mddev),
1647 conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 }
NeilBrown16a53ec2006-06-26 00:27:38 -07001649}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
1651/*
1652 * Input: a 'big' sector number,
1653 * Output: index of the data and parity disk, and the sector # in them.
1654 */
NeilBrown112bf892009-03-31 14:39:38 +11001655static sector_t raid5_compute_sector(raid5_conf_t *conf, sector_t r_sector,
NeilBrown911d4ee2009-03-31 14:39:38 +11001656 int previous, int *dd_idx,
1657 struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658{
NeilBrown6e3b96e2010-04-23 07:08:28 +10001659 sector_t stripe, stripe2;
NeilBrown35f2a592010-04-20 14:13:34 +10001660 sector_t chunk_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 unsigned int chunk_offset;
NeilBrown911d4ee2009-03-31 14:39:38 +11001662 int pd_idx, qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11001663 int ddf_layout = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 sector_t new_sector;
NeilBrowne183eae2009-03-31 15:20:22 +11001665 int algorithm = previous ? conf->prev_algo
1666 : conf->algorithm;
Andre Noll09c9e5f2009-06-18 08:45:55 +10001667 int sectors_per_chunk = previous ? conf->prev_chunk_sectors
1668 : conf->chunk_sectors;
NeilBrown112bf892009-03-31 14:39:38 +11001669 int raid_disks = previous ? conf->previous_raid_disks
1670 : conf->raid_disks;
1671 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
1673 /* First compute the information on this sector */
1674
1675 /*
1676 * Compute the chunk number and the sector offset inside the chunk
1677 */
1678 chunk_offset = sector_div(r_sector, sectors_per_chunk);
1679 chunk_number = r_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
1681 /*
1682 * Compute the stripe number
1683 */
NeilBrown35f2a592010-04-20 14:13:34 +10001684 stripe = chunk_number;
1685 *dd_idx = sector_div(stripe, data_disks);
NeilBrown6e3b96e2010-04-23 07:08:28 +10001686 stripe2 = stripe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 /*
1688 * Select the parity disk based on the user selected algorithm.
1689 */
NeilBrown911d4ee2009-03-31 14:39:38 +11001690 pd_idx = qd_idx = ~0;
NeilBrown16a53ec2006-06-26 00:27:38 -07001691 switch(conf->level) {
1692 case 4:
NeilBrown911d4ee2009-03-31 14:39:38 +11001693 pd_idx = data_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07001694 break;
1695 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11001696 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001698 pd_idx = data_disks - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001699 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 (*dd_idx)++;
1701 break;
1702 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001703 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001704 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 (*dd_idx)++;
1706 break;
1707 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001708 pd_idx = data_disks - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001709 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 break;
1711 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001712 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001713 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11001715 case ALGORITHM_PARITY_0:
1716 pd_idx = 0;
1717 (*dd_idx)++;
1718 break;
1719 case ALGORITHM_PARITY_N:
1720 pd_idx = data_disks;
1721 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11001723 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07001724 }
1725 break;
1726 case 6:
1727
NeilBrowne183eae2009-03-31 15:20:22 +11001728 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07001729 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001730 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001731 qd_idx = pd_idx + 1;
1732 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11001733 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11001734 qd_idx = 0;
1735 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07001736 (*dd_idx) += 2; /* D D P Q D */
1737 break;
1738 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001739 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001740 qd_idx = pd_idx + 1;
1741 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11001742 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11001743 qd_idx = 0;
1744 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07001745 (*dd_idx) += 2; /* D D P Q D */
1746 break;
1747 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001748 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001749 qd_idx = (pd_idx + 1) % raid_disks;
1750 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07001751 break;
1752 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001753 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001754 qd_idx = (pd_idx + 1) % raid_disks;
1755 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07001756 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11001757
1758 case ALGORITHM_PARITY_0:
1759 pd_idx = 0;
1760 qd_idx = 1;
1761 (*dd_idx) += 2;
1762 break;
1763 case ALGORITHM_PARITY_N:
1764 pd_idx = data_disks;
1765 qd_idx = data_disks + 1;
1766 break;
1767
1768 case ALGORITHM_ROTATING_ZERO_RESTART:
1769 /* Exactly the same as RIGHT_ASYMMETRIC, but or
1770 * of blocks for computing Q is different.
1771 */
NeilBrown6e3b96e2010-04-23 07:08:28 +10001772 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11001773 qd_idx = pd_idx + 1;
1774 if (pd_idx == raid_disks-1) {
1775 (*dd_idx)++; /* Q D D D P */
1776 qd_idx = 0;
1777 } else if (*dd_idx >= pd_idx)
1778 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11001779 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11001780 break;
1781
1782 case ALGORITHM_ROTATING_N_RESTART:
1783 /* Same a left_asymmetric, by first stripe is
1784 * D D D P Q rather than
1785 * Q D D D P
1786 */
NeilBrown6e3b96e2010-04-23 07:08:28 +10001787 stripe2 += 1;
1788 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11001789 qd_idx = pd_idx + 1;
1790 if (pd_idx == raid_disks-1) {
1791 (*dd_idx)++; /* Q D D D P */
1792 qd_idx = 0;
1793 } else if (*dd_idx >= pd_idx)
1794 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11001795 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11001796 break;
1797
1798 case ALGORITHM_ROTATING_N_CONTINUE:
1799 /* Same as left_symmetric but Q is before P */
NeilBrown6e3b96e2010-04-23 07:08:28 +10001800 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11001801 qd_idx = (pd_idx + raid_disks - 1) % raid_disks;
1802 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
NeilBrown67cc2b82009-03-31 14:39:38 +11001803 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11001804 break;
1805
1806 case ALGORITHM_LEFT_ASYMMETRIC_6:
1807 /* RAID5 left_asymmetric, with Q on last device */
NeilBrown6e3b96e2010-04-23 07:08:28 +10001808 pd_idx = data_disks - sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11001809 if (*dd_idx >= pd_idx)
1810 (*dd_idx)++;
1811 qd_idx = raid_disks - 1;
1812 break;
1813
1814 case ALGORITHM_RIGHT_ASYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001815 pd_idx = sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11001816 if (*dd_idx >= pd_idx)
1817 (*dd_idx)++;
1818 qd_idx = raid_disks - 1;
1819 break;
1820
1821 case ALGORITHM_LEFT_SYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001822 pd_idx = data_disks - sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11001823 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
1824 qd_idx = raid_disks - 1;
1825 break;
1826
1827 case ALGORITHM_RIGHT_SYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001828 pd_idx = sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11001829 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
1830 qd_idx = raid_disks - 1;
1831 break;
1832
1833 case ALGORITHM_PARITY_0_6:
1834 pd_idx = 0;
1835 (*dd_idx)++;
1836 qd_idx = raid_disks - 1;
1837 break;
1838
NeilBrown16a53ec2006-06-26 00:27:38 -07001839 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11001840 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07001841 }
1842 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 }
1844
NeilBrown911d4ee2009-03-31 14:39:38 +11001845 if (sh) {
1846 sh->pd_idx = pd_idx;
1847 sh->qd_idx = qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11001848 sh->ddf_layout = ddf_layout;
NeilBrown911d4ee2009-03-31 14:39:38 +11001849 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 /*
1851 * Finally, compute the new sector number
1852 */
1853 new_sector = (sector_t)stripe * sectors_per_chunk + chunk_offset;
1854 return new_sector;
1855}
1856
1857
NeilBrown784052e2009-03-31 15:19:07 +11001858static sector_t compute_blocknr(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859{
1860 raid5_conf_t *conf = sh->raid_conf;
NeilBrownb875e532006-12-10 02:20:49 -08001861 int raid_disks = sh->disks;
1862 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 sector_t new_sector = sh->sector, check;
Andre Noll09c9e5f2009-06-18 08:45:55 +10001864 int sectors_per_chunk = previous ? conf->prev_chunk_sectors
1865 : conf->chunk_sectors;
NeilBrowne183eae2009-03-31 15:20:22 +11001866 int algorithm = previous ? conf->prev_algo
1867 : conf->algorithm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 sector_t stripe;
1869 int chunk_offset;
NeilBrown35f2a592010-04-20 14:13:34 +10001870 sector_t chunk_number;
1871 int dummy1, dd_idx = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 sector_t r_sector;
NeilBrown911d4ee2009-03-31 14:39:38 +11001873 struct stripe_head sh2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
NeilBrown16a53ec2006-06-26 00:27:38 -07001875
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 chunk_offset = sector_div(new_sector, sectors_per_chunk);
1877 stripe = new_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
NeilBrown16a53ec2006-06-26 00:27:38 -07001879 if (i == sh->pd_idx)
1880 return 0;
1881 switch(conf->level) {
1882 case 4: break;
1883 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11001884 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 case ALGORITHM_LEFT_ASYMMETRIC:
1886 case ALGORITHM_RIGHT_ASYMMETRIC:
1887 if (i > sh->pd_idx)
1888 i--;
1889 break;
1890 case ALGORITHM_LEFT_SYMMETRIC:
1891 case ALGORITHM_RIGHT_SYMMETRIC:
1892 if (i < sh->pd_idx)
1893 i += raid_disks;
1894 i -= (sh->pd_idx + 1);
1895 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11001896 case ALGORITHM_PARITY_0:
1897 i -= 1;
1898 break;
1899 case ALGORITHM_PARITY_N:
1900 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11001902 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07001903 }
1904 break;
1905 case 6:
NeilBrownd0dabf72009-03-31 14:39:38 +11001906 if (i == sh->qd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07001907 return 0; /* It is the Q disk */
NeilBrowne183eae2009-03-31 15:20:22 +11001908 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07001909 case ALGORITHM_LEFT_ASYMMETRIC:
1910 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown99c0fb52009-03-31 14:39:38 +11001911 case ALGORITHM_ROTATING_ZERO_RESTART:
1912 case ALGORITHM_ROTATING_N_RESTART:
1913 if (sh->pd_idx == raid_disks-1)
1914 i--; /* Q D D D P */
NeilBrown16a53ec2006-06-26 00:27:38 -07001915 else if (i > sh->pd_idx)
1916 i -= 2; /* D D P Q D */
1917 break;
1918 case ALGORITHM_LEFT_SYMMETRIC:
1919 case ALGORITHM_RIGHT_SYMMETRIC:
1920 if (sh->pd_idx == raid_disks-1)
1921 i--; /* Q D D D P */
1922 else {
1923 /* D D P Q D */
1924 if (i < sh->pd_idx)
1925 i += raid_disks;
1926 i -= (sh->pd_idx + 2);
1927 }
1928 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11001929 case ALGORITHM_PARITY_0:
1930 i -= 2;
1931 break;
1932 case ALGORITHM_PARITY_N:
1933 break;
1934 case ALGORITHM_ROTATING_N_CONTINUE:
NeilBrowne4424fe2009-10-16 16:27:34 +11001935 /* Like left_symmetric, but P is before Q */
NeilBrown99c0fb52009-03-31 14:39:38 +11001936 if (sh->pd_idx == 0)
1937 i--; /* P D D D Q */
NeilBrowne4424fe2009-10-16 16:27:34 +11001938 else {
1939 /* D D Q P D */
1940 if (i < sh->pd_idx)
1941 i += raid_disks;
1942 i -= (sh->pd_idx + 1);
1943 }
NeilBrown99c0fb52009-03-31 14:39:38 +11001944 break;
1945 case ALGORITHM_LEFT_ASYMMETRIC_6:
1946 case ALGORITHM_RIGHT_ASYMMETRIC_6:
1947 if (i > sh->pd_idx)
1948 i--;
1949 break;
1950 case ALGORITHM_LEFT_SYMMETRIC_6:
1951 case ALGORITHM_RIGHT_SYMMETRIC_6:
1952 if (i < sh->pd_idx)
1953 i += data_disks + 1;
1954 i -= (sh->pd_idx + 1);
1955 break;
1956 case ALGORITHM_PARITY_0_6:
1957 i -= 1;
1958 break;
NeilBrown16a53ec2006-06-26 00:27:38 -07001959 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11001960 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07001961 }
1962 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 }
1964
1965 chunk_number = stripe * data_disks + i;
NeilBrown35f2a592010-04-20 14:13:34 +10001966 r_sector = chunk_number * sectors_per_chunk + chunk_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
NeilBrown112bf892009-03-31 14:39:38 +11001968 check = raid5_compute_sector(conf, r_sector,
NeilBrown784052e2009-03-31 15:19:07 +11001969 previous, &dummy1, &sh2);
NeilBrown911d4ee2009-03-31 14:39:38 +11001970 if (check != sh->sector || dummy1 != dd_idx || sh2.pd_idx != sh->pd_idx
1971 || sh2.qd_idx != sh->qd_idx) {
NeilBrown0c55e022010-05-03 14:09:02 +10001972 printk(KERN_ERR "md/raid:%s: compute_blocknr: map not correct\n",
1973 mdname(conf->mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 return 0;
1975 }
1976 return r_sector;
1977}
1978
1979
Dan Williams600aa102008-06-28 08:32:05 +10001980static void
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07001981schedule_reconstruction(struct stripe_head *sh, struct stripe_head_state *s,
Dan Williams600aa102008-06-28 08:32:05 +10001982 int rcw, int expand)
Dan Williamse33129d2007-01-02 13:52:30 -07001983{
1984 int i, pd_idx = sh->pd_idx, disks = sh->disks;
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07001985 raid5_conf_t *conf = sh->raid_conf;
1986 int level = conf->level;
NeilBrown16a53ec2006-06-26 00:27:38 -07001987
Dan Williamse33129d2007-01-02 13:52:30 -07001988 if (rcw) {
1989 /* if we are not expanding this is a proper write request, and
1990 * there will be bios with new data to be drained into the
1991 * stripe cache
1992 */
1993 if (!expand) {
Dan Williams600aa102008-06-28 08:32:05 +10001994 sh->reconstruct_state = reconstruct_state_drain_run;
1995 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
1996 } else
1997 sh->reconstruct_state = reconstruct_state_run;
Dan Williamse33129d2007-01-02 13:52:30 -07001998
Dan Williamsac6b53b2009-07-14 13:40:19 -07001999 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07002000
2001 for (i = disks; i--; ) {
2002 struct r5dev *dev = &sh->dev[i];
2003
2004 if (dev->towrite) {
2005 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsd8ee0722008-06-28 08:32:06 +10002006 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07002007 if (!expand)
2008 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10002009 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002010 }
2011 }
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002012 if (s->locked + conf->max_degraded == disks)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002013 if (!test_and_set_bit(STRIPE_FULL_WRITE, &sh->state))
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002014 atomic_inc(&conf->pending_full_writes);
Dan Williamse33129d2007-01-02 13:52:30 -07002015 } else {
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002016 BUG_ON(level == 6);
Dan Williamse33129d2007-01-02 13:52:30 -07002017 BUG_ON(!(test_bit(R5_UPTODATE, &sh->dev[pd_idx].flags) ||
2018 test_bit(R5_Wantcompute, &sh->dev[pd_idx].flags)));
2019
Dan Williamsd8ee0722008-06-28 08:32:06 +10002020 sh->reconstruct_state = reconstruct_state_prexor_drain_run;
Dan Williams600aa102008-06-28 08:32:05 +10002021 set_bit(STRIPE_OP_PREXOR, &s->ops_request);
2022 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
Dan Williamsac6b53b2009-07-14 13:40:19 -07002023 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07002024
2025 for (i = disks; i--; ) {
2026 struct r5dev *dev = &sh->dev[i];
2027 if (i == pd_idx)
2028 continue;
2029
Dan Williamse33129d2007-01-02 13:52:30 -07002030 if (dev->towrite &&
2031 (test_bit(R5_UPTODATE, &dev->flags) ||
Dan Williamsd8ee0722008-06-28 08:32:06 +10002032 test_bit(R5_Wantcompute, &dev->flags))) {
2033 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07002034 set_bit(R5_LOCKED, &dev->flags);
2035 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10002036 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002037 }
2038 }
2039 }
2040
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002041 /* keep the parity disk(s) locked while asynchronous operations
Dan Williamse33129d2007-01-02 13:52:30 -07002042 * are in flight
2043 */
2044 set_bit(R5_LOCKED, &sh->dev[pd_idx].flags);
2045 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
Dan Williams600aa102008-06-28 08:32:05 +10002046 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002047
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002048 if (level == 6) {
2049 int qd_idx = sh->qd_idx;
2050 struct r5dev *dev = &sh->dev[qd_idx];
2051
2052 set_bit(R5_LOCKED, &dev->flags);
2053 clear_bit(R5_UPTODATE, &dev->flags);
2054 s->locked++;
2055 }
2056
Dan Williams600aa102008-06-28 08:32:05 +10002057 pr_debug("%s: stripe %llu locked: %d ops_request: %lx\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -07002058 __func__, (unsigned long long)sh->sector,
Dan Williams600aa102008-06-28 08:32:05 +10002059 s->locked, s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07002060}
NeilBrown16a53ec2006-06-26 00:27:38 -07002061
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062/*
2063 * Each stripe/dev can have one or more bion attached.
NeilBrown16a53ec2006-06-26 00:27:38 -07002064 * toread/towrite point to the first in a chain.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 * The bi_next chain must be in order.
2066 */
2067static int add_stripe_bio(struct stripe_head *sh, struct bio *bi, int dd_idx, int forwrite)
2068{
2069 struct bio **bip;
2070 raid5_conf_t *conf = sh->raid_conf;
NeilBrown72626682005-09-09 16:23:54 -07002071 int firstwrite=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
Dan Williams45b42332007-07-09 11:56:43 -07002073 pr_debug("adding bh b#%llu to stripe s#%llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 (unsigned long long)bi->bi_sector,
2075 (unsigned long long)sh->sector);
2076
2077
2078 spin_lock(&sh->lock);
2079 spin_lock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07002080 if (forwrite) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 bip = &sh->dev[dd_idx].towrite;
NeilBrown72626682005-09-09 16:23:54 -07002082 if (*bip == NULL && sh->dev[dd_idx].written == NULL)
2083 firstwrite = 1;
2084 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 bip = &sh->dev[dd_idx].toread;
2086 while (*bip && (*bip)->bi_sector < bi->bi_sector) {
2087 if ((*bip)->bi_sector + ((*bip)->bi_size >> 9) > bi->bi_sector)
2088 goto overlap;
2089 bip = & (*bip)->bi_next;
2090 }
2091 if (*bip && (*bip)->bi_sector < bi->bi_sector + ((bi->bi_size)>>9))
2092 goto overlap;
2093
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02002094 BUG_ON(*bip && bi->bi_next && (*bip) != bi->bi_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 if (*bip)
2096 bi->bi_next = *bip;
2097 *bip = bi;
Jens Axboe960e7392008-08-15 10:41:18 +02002098 bi->bi_phys_segments++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 spin_unlock_irq(&conf->device_lock);
2100 spin_unlock(&sh->lock);
2101
Dan Williams45b42332007-07-09 11:56:43 -07002102 pr_debug("added bi b#%llu to stripe s#%llu, disk %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 (unsigned long long)bi->bi_sector,
2104 (unsigned long long)sh->sector, dd_idx);
2105
NeilBrown72626682005-09-09 16:23:54 -07002106 if (conf->mddev->bitmap && firstwrite) {
NeilBrown72626682005-09-09 16:23:54 -07002107 bitmap_startwrite(conf->mddev->bitmap, sh->sector,
2108 STRIPE_SECTORS, 0);
NeilBrownae3c20c2006-07-10 04:44:17 -07002109 sh->bm_seq = conf->seq_flush+1;
NeilBrown72626682005-09-09 16:23:54 -07002110 set_bit(STRIPE_BIT_DELAY, &sh->state);
2111 }
2112
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 if (forwrite) {
2114 /* check if page is covered */
2115 sector_t sector = sh->dev[dd_idx].sector;
2116 for (bi=sh->dev[dd_idx].towrite;
2117 sector < sh->dev[dd_idx].sector + STRIPE_SECTORS &&
2118 bi && bi->bi_sector <= sector;
2119 bi = r5_next_bio(bi, sh->dev[dd_idx].sector)) {
2120 if (bi->bi_sector + (bi->bi_size>>9) >= sector)
2121 sector = bi->bi_sector + (bi->bi_size>>9);
2122 }
2123 if (sector >= sh->dev[dd_idx].sector + STRIPE_SECTORS)
2124 set_bit(R5_OVERWRITE, &sh->dev[dd_idx].flags);
2125 }
2126 return 1;
2127
2128 overlap:
2129 set_bit(R5_Overlap, &sh->dev[dd_idx].flags);
2130 spin_unlock_irq(&conf->device_lock);
2131 spin_unlock(&sh->lock);
2132 return 0;
2133}
2134
NeilBrown29269552006-03-27 01:18:10 -08002135static void end_reshape(raid5_conf_t *conf);
2136
NeilBrown911d4ee2009-03-31 14:39:38 +11002137static void stripe_set_idx(sector_t stripe, raid5_conf_t *conf, int previous,
2138 struct stripe_head *sh)
NeilBrownccfcc3c2006-03-27 01:18:09 -08002139{
NeilBrown784052e2009-03-31 15:19:07 +11002140 int sectors_per_chunk =
Andre Noll09c9e5f2009-06-18 08:45:55 +10002141 previous ? conf->prev_chunk_sectors : conf->chunk_sectors;
NeilBrown911d4ee2009-03-31 14:39:38 +11002142 int dd_idx;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07002143 int chunk_offset = sector_div(stripe, sectors_per_chunk);
NeilBrown112bf892009-03-31 14:39:38 +11002144 int disks = previous ? conf->previous_raid_disks : conf->raid_disks;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07002145
NeilBrown112bf892009-03-31 14:39:38 +11002146 raid5_compute_sector(conf,
2147 stripe * (disks - conf->max_degraded)
NeilBrownb875e532006-12-10 02:20:49 -08002148 *sectors_per_chunk + chunk_offset,
NeilBrown112bf892009-03-31 14:39:38 +11002149 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11002150 &dd_idx, sh);
NeilBrownccfcc3c2006-03-27 01:18:09 -08002151}
2152
Dan Williamsa4456852007-07-09 11:56:43 -07002153static void
Dan Williams1fe797e2008-06-28 09:16:30 +10002154handle_failed_stripe(raid5_conf_t *conf, struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07002155 struct stripe_head_state *s, int disks,
2156 struct bio **return_bi)
2157{
2158 int i;
2159 for (i = disks; i--; ) {
2160 struct bio *bi;
2161 int bitmap_end = 0;
2162
2163 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
2164 mdk_rdev_t *rdev;
2165 rcu_read_lock();
2166 rdev = rcu_dereference(conf->disks[i].rdev);
2167 if (rdev && test_bit(In_sync, &rdev->flags))
2168 /* multiple read failures in one stripe */
2169 md_error(conf->mddev, rdev);
2170 rcu_read_unlock();
2171 }
2172 spin_lock_irq(&conf->device_lock);
2173 /* fail all writes first */
2174 bi = sh->dev[i].towrite;
2175 sh->dev[i].towrite = NULL;
2176 if (bi) {
2177 s->to_write--;
2178 bitmap_end = 1;
2179 }
2180
2181 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
2182 wake_up(&conf->wait_for_overlap);
2183
2184 while (bi && bi->bi_sector <
2185 sh->dev[i].sector + STRIPE_SECTORS) {
2186 struct bio *nextbi = r5_next_bio(bi, sh->dev[i].sector);
2187 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Jens Axboe960e7392008-08-15 10:41:18 +02002188 if (!raid5_dec_bi_phys_segments(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002189 md_write_end(conf->mddev);
2190 bi->bi_next = *return_bi;
2191 *return_bi = bi;
2192 }
2193 bi = nextbi;
2194 }
2195 /* and fail all 'written' */
2196 bi = sh->dev[i].written;
2197 sh->dev[i].written = NULL;
2198 if (bi) bitmap_end = 1;
2199 while (bi && bi->bi_sector <
2200 sh->dev[i].sector + STRIPE_SECTORS) {
2201 struct bio *bi2 = r5_next_bio(bi, sh->dev[i].sector);
2202 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Jens Axboe960e7392008-08-15 10:41:18 +02002203 if (!raid5_dec_bi_phys_segments(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002204 md_write_end(conf->mddev);
2205 bi->bi_next = *return_bi;
2206 *return_bi = bi;
2207 }
2208 bi = bi2;
2209 }
2210
Dan Williamsb5e98d62007-01-02 13:52:31 -07002211 /* fail any reads if this device is non-operational and
2212 * the data has not reached the cache yet.
2213 */
2214 if (!test_bit(R5_Wantfill, &sh->dev[i].flags) &&
2215 (!test_bit(R5_Insync, &sh->dev[i].flags) ||
2216 test_bit(R5_ReadError, &sh->dev[i].flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07002217 bi = sh->dev[i].toread;
2218 sh->dev[i].toread = NULL;
2219 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
2220 wake_up(&conf->wait_for_overlap);
2221 if (bi) s->to_read--;
2222 while (bi && bi->bi_sector <
2223 sh->dev[i].sector + STRIPE_SECTORS) {
2224 struct bio *nextbi =
2225 r5_next_bio(bi, sh->dev[i].sector);
2226 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Jens Axboe960e7392008-08-15 10:41:18 +02002227 if (!raid5_dec_bi_phys_segments(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002228 bi->bi_next = *return_bi;
2229 *return_bi = bi;
2230 }
2231 bi = nextbi;
2232 }
2233 }
2234 spin_unlock_irq(&conf->device_lock);
2235 if (bitmap_end)
2236 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
2237 STRIPE_SECTORS, 0, 0);
2238 }
2239
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002240 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
2241 if (atomic_dec_and_test(&conf->pending_full_writes))
2242 md_wakeup_thread(conf->mddev->thread);
Dan Williamsa4456852007-07-09 11:56:43 -07002243}
2244
Dan Williams1fe797e2008-06-28 09:16:30 +10002245/* fetch_block5 - checks the given member device to see if its data needs
2246 * to be read or computed to satisfy a request.
2247 *
2248 * Returns 1 when no more member devices need to be checked, otherwise returns
2249 * 0 to tell the loop in handle_stripe_fill5 to continue
Dan Williamsf38e1212007-01-02 13:52:30 -07002250 */
Dan Williams1fe797e2008-06-28 09:16:30 +10002251static int fetch_block5(struct stripe_head *sh, struct stripe_head_state *s,
2252 int disk_idx, int disks)
Dan Williamsf38e1212007-01-02 13:52:30 -07002253{
2254 struct r5dev *dev = &sh->dev[disk_idx];
2255 struct r5dev *failed_dev = &sh->dev[s->failed_num];
2256
Dan Williamsf38e1212007-01-02 13:52:30 -07002257 /* is the data in this block needed, and can we get it? */
2258 if (!test_bit(R5_LOCKED, &dev->flags) &&
Dan Williams1fe797e2008-06-28 09:16:30 +10002259 !test_bit(R5_UPTODATE, &dev->flags) &&
2260 (dev->toread ||
2261 (dev->towrite && !test_bit(R5_OVERWRITE, &dev->flags)) ||
2262 s->syncing || s->expanding ||
2263 (s->failed &&
2264 (failed_dev->toread ||
2265 (failed_dev->towrite &&
2266 !test_bit(R5_OVERWRITE, &failed_dev->flags)))))) {
Dan Williams976ea8d2008-06-28 08:32:03 +10002267 /* We would like to get this block, possibly by computing it,
2268 * otherwise read it if the backing disk is insync
Dan Williamsf38e1212007-01-02 13:52:30 -07002269 */
2270 if ((s->uptodate == disks - 1) &&
Dan Williamsecc65c92008-06-28 08:31:57 +10002271 (s->failed && disk_idx == s->failed_num)) {
Dan Williams976ea8d2008-06-28 08:32:03 +10002272 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
2273 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
Dan Williamsf38e1212007-01-02 13:52:30 -07002274 set_bit(R5_Wantcompute, &dev->flags);
2275 sh->ops.target = disk_idx;
Dan Williamsac6b53b2009-07-14 13:40:19 -07002276 sh->ops.target2 = -1;
Dan Williamsf38e1212007-01-02 13:52:30 -07002277 s->req_compute = 1;
Dan Williamsf38e1212007-01-02 13:52:30 -07002278 /* Careful: from this point on 'uptodate' is in the eye
Dan Williamsac6b53b2009-07-14 13:40:19 -07002279 * of raid_run_ops which services 'compute' operations
Dan Williamsf38e1212007-01-02 13:52:30 -07002280 * before writes. R5_Wantcompute flags a block that will
2281 * be R5_UPTODATE by the time it is needed for a
2282 * subsequent operation.
2283 */
2284 s->uptodate++;
Dan Williams1fe797e2008-06-28 09:16:30 +10002285 return 1; /* uptodate + compute == disks */
Dan Williams7a1fc532008-07-10 04:54:57 -07002286 } else if (test_bit(R5_Insync, &dev->flags)) {
Dan Williamsf38e1212007-01-02 13:52:30 -07002287 set_bit(R5_LOCKED, &dev->flags);
2288 set_bit(R5_Wantread, &dev->flags);
Dan Williamsf38e1212007-01-02 13:52:30 -07002289 s->locked++;
2290 pr_debug("Reading block %d (sync=%d)\n", disk_idx,
2291 s->syncing);
2292 }
2293 }
2294
Dan Williams1fe797e2008-06-28 09:16:30 +10002295 return 0;
Dan Williamsf38e1212007-01-02 13:52:30 -07002296}
2297
Dan Williams1fe797e2008-06-28 09:16:30 +10002298/**
2299 * handle_stripe_fill5 - read or compute data to satisfy pending requests.
2300 */
2301static void handle_stripe_fill5(struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07002302 struct stripe_head_state *s, int disks)
2303{
2304 int i;
Dan Williamsf38e1212007-01-02 13:52:30 -07002305
Dan Williamsf38e1212007-01-02 13:52:30 -07002306 /* look for blocks to read/compute, skip this if a compute
2307 * is already in flight, or if the stripe contents are in the
2308 * midst of changing due to a write
2309 */
Dan Williams976ea8d2008-06-28 08:32:03 +10002310 if (!test_bit(STRIPE_COMPUTE_RUN, &sh->state) && !sh->check_state &&
Dan Williams1fe797e2008-06-28 09:16:30 +10002311 !sh->reconstruct_state)
Dan Williamsf38e1212007-01-02 13:52:30 -07002312 for (i = disks; i--; )
Dan Williams1fe797e2008-06-28 09:16:30 +10002313 if (fetch_block5(sh, s, i, disks))
Dan Williamsf38e1212007-01-02 13:52:30 -07002314 break;
Dan Williamsa4456852007-07-09 11:56:43 -07002315 set_bit(STRIPE_HANDLE, &sh->state);
2316}
2317
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07002318/* fetch_block6 - checks the given member device to see if its data needs
2319 * to be read or computed to satisfy a request.
2320 *
2321 * Returns 1 when no more member devices need to be checked, otherwise returns
2322 * 0 to tell the loop in handle_stripe_fill6 to continue
2323 */
2324static int fetch_block6(struct stripe_head *sh, struct stripe_head_state *s,
2325 struct r6_state *r6s, int disk_idx, int disks)
2326{
2327 struct r5dev *dev = &sh->dev[disk_idx];
2328 struct r5dev *fdev[2] = { &sh->dev[r6s->failed_num[0]],
2329 &sh->dev[r6s->failed_num[1]] };
2330
2331 if (!test_bit(R5_LOCKED, &dev->flags) &&
2332 !test_bit(R5_UPTODATE, &dev->flags) &&
2333 (dev->toread ||
2334 (dev->towrite && !test_bit(R5_OVERWRITE, &dev->flags)) ||
2335 s->syncing || s->expanding ||
2336 (s->failed >= 1 &&
2337 (fdev[0]->toread || s->to_write)) ||
2338 (s->failed >= 2 &&
2339 (fdev[1]->toread || s->to_write)))) {
2340 /* we would like to get this block, possibly by computing it,
2341 * otherwise read it if the backing disk is insync
2342 */
2343 BUG_ON(test_bit(R5_Wantcompute, &dev->flags));
2344 BUG_ON(test_bit(R5_Wantread, &dev->flags));
2345 if ((s->uptodate == disks - 1) &&
2346 (s->failed && (disk_idx == r6s->failed_num[0] ||
2347 disk_idx == r6s->failed_num[1]))) {
2348 /* have disk failed, and we're requested to fetch it;
2349 * do compute it
2350 */
2351 pr_debug("Computing stripe %llu block %d\n",
2352 (unsigned long long)sh->sector, disk_idx);
2353 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
2354 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
2355 set_bit(R5_Wantcompute, &dev->flags);
2356 sh->ops.target = disk_idx;
2357 sh->ops.target2 = -1; /* no 2nd target */
2358 s->req_compute = 1;
2359 s->uptodate++;
2360 return 1;
2361 } else if (s->uptodate == disks-2 && s->failed >= 2) {
2362 /* Computing 2-failure is *very* expensive; only
2363 * do it if failed >= 2
2364 */
2365 int other;
2366 for (other = disks; other--; ) {
2367 if (other == disk_idx)
2368 continue;
2369 if (!test_bit(R5_UPTODATE,
2370 &sh->dev[other].flags))
2371 break;
2372 }
2373 BUG_ON(other < 0);
2374 pr_debug("Computing stripe %llu blocks %d,%d\n",
2375 (unsigned long long)sh->sector,
2376 disk_idx, other);
2377 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
2378 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
2379 set_bit(R5_Wantcompute, &sh->dev[disk_idx].flags);
2380 set_bit(R5_Wantcompute, &sh->dev[other].flags);
2381 sh->ops.target = disk_idx;
2382 sh->ops.target2 = other;
2383 s->uptodate += 2;
2384 s->req_compute = 1;
2385 return 1;
2386 } else if (test_bit(R5_Insync, &dev->flags)) {
2387 set_bit(R5_LOCKED, &dev->flags);
2388 set_bit(R5_Wantread, &dev->flags);
2389 s->locked++;
2390 pr_debug("Reading block %d (sync=%d)\n",
2391 disk_idx, s->syncing);
2392 }
2393 }
2394
2395 return 0;
2396}
2397
2398/**
2399 * handle_stripe_fill6 - read or compute data to satisfy pending requests.
2400 */
Dan Williams1fe797e2008-06-28 09:16:30 +10002401static void handle_stripe_fill6(struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07002402 struct stripe_head_state *s, struct r6_state *r6s,
2403 int disks)
2404{
2405 int i;
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07002406
2407 /* look for blocks to read/compute, skip this if a compute
2408 * is already in flight, or if the stripe contents are in the
2409 * midst of changing due to a write
2410 */
2411 if (!test_bit(STRIPE_COMPUTE_RUN, &sh->state) && !sh->check_state &&
2412 !sh->reconstruct_state)
2413 for (i = disks; i--; )
2414 if (fetch_block6(sh, s, r6s, i, disks))
2415 break;
Dan Williamsa4456852007-07-09 11:56:43 -07002416 set_bit(STRIPE_HANDLE, &sh->state);
2417}
2418
2419
Dan Williams1fe797e2008-06-28 09:16:30 +10002420/* handle_stripe_clean_event
Dan Williamsa4456852007-07-09 11:56:43 -07002421 * any written block on an uptodate or failed drive can be returned.
2422 * Note that if we 'wrote' to a failed drive, it will be UPTODATE, but
2423 * never LOCKED, so we don't need to test 'failed' directly.
2424 */
Dan Williams1fe797e2008-06-28 09:16:30 +10002425static void handle_stripe_clean_event(raid5_conf_t *conf,
Dan Williamsa4456852007-07-09 11:56:43 -07002426 struct stripe_head *sh, int disks, struct bio **return_bi)
2427{
2428 int i;
2429 struct r5dev *dev;
2430
2431 for (i = disks; i--; )
2432 if (sh->dev[i].written) {
2433 dev = &sh->dev[i];
2434 if (!test_bit(R5_LOCKED, &dev->flags) &&
2435 test_bit(R5_UPTODATE, &dev->flags)) {
2436 /* We can return any write requests */
2437 struct bio *wbi, *wbi2;
2438 int bitmap_end = 0;
Dan Williams45b42332007-07-09 11:56:43 -07002439 pr_debug("Return write for disc %d\n", i);
Dan Williamsa4456852007-07-09 11:56:43 -07002440 spin_lock_irq(&conf->device_lock);
2441 wbi = dev->written;
2442 dev->written = NULL;
2443 while (wbi && wbi->bi_sector <
2444 dev->sector + STRIPE_SECTORS) {
2445 wbi2 = r5_next_bio(wbi, dev->sector);
Jens Axboe960e7392008-08-15 10:41:18 +02002446 if (!raid5_dec_bi_phys_segments(wbi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002447 md_write_end(conf->mddev);
2448 wbi->bi_next = *return_bi;
2449 *return_bi = wbi;
2450 }
2451 wbi = wbi2;
2452 }
2453 if (dev->towrite == NULL)
2454 bitmap_end = 1;
2455 spin_unlock_irq(&conf->device_lock);
2456 if (bitmap_end)
2457 bitmap_endwrite(conf->mddev->bitmap,
2458 sh->sector,
2459 STRIPE_SECTORS,
2460 !test_bit(STRIPE_DEGRADED, &sh->state),
2461 0);
2462 }
2463 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002464
2465 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
2466 if (atomic_dec_and_test(&conf->pending_full_writes))
2467 md_wakeup_thread(conf->mddev->thread);
Dan Williamsa4456852007-07-09 11:56:43 -07002468}
2469
Dan Williams1fe797e2008-06-28 09:16:30 +10002470static void handle_stripe_dirtying5(raid5_conf_t *conf,
Dan Williamsa4456852007-07-09 11:56:43 -07002471 struct stripe_head *sh, struct stripe_head_state *s, int disks)
2472{
2473 int rmw = 0, rcw = 0, i;
2474 for (i = disks; i--; ) {
2475 /* would I have to read this buffer for read_modify_write */
2476 struct r5dev *dev = &sh->dev[i];
2477 if ((dev->towrite || i == sh->pd_idx) &&
2478 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002479 !(test_bit(R5_UPTODATE, &dev->flags) ||
2480 test_bit(R5_Wantcompute, &dev->flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07002481 if (test_bit(R5_Insync, &dev->flags))
2482 rmw++;
2483 else
2484 rmw += 2*disks; /* cannot read it */
2485 }
2486 /* Would I have to read this buffer for reconstruct_write */
2487 if (!test_bit(R5_OVERWRITE, &dev->flags) && i != sh->pd_idx &&
2488 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002489 !(test_bit(R5_UPTODATE, &dev->flags) ||
2490 test_bit(R5_Wantcompute, &dev->flags))) {
2491 if (test_bit(R5_Insync, &dev->flags)) rcw++;
Dan Williamsa4456852007-07-09 11:56:43 -07002492 else
2493 rcw += 2*disks;
2494 }
2495 }
Dan Williams45b42332007-07-09 11:56:43 -07002496 pr_debug("for sector %llu, rmw=%d rcw=%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002497 (unsigned long long)sh->sector, rmw, rcw);
2498 set_bit(STRIPE_HANDLE, &sh->state);
2499 if (rmw < rcw && rmw > 0)
2500 /* prefer read-modify-write, but need to get some data */
2501 for (i = disks; i--; ) {
2502 struct r5dev *dev = &sh->dev[i];
2503 if ((dev->towrite || i == sh->pd_idx) &&
2504 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002505 !(test_bit(R5_UPTODATE, &dev->flags) ||
2506 test_bit(R5_Wantcompute, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07002507 test_bit(R5_Insync, &dev->flags)) {
2508 if (
2509 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07002510 pr_debug("Read_old block "
Dan Williamsa4456852007-07-09 11:56:43 -07002511 "%d for r-m-w\n", i);
2512 set_bit(R5_LOCKED, &dev->flags);
2513 set_bit(R5_Wantread, &dev->flags);
2514 s->locked++;
2515 } else {
2516 set_bit(STRIPE_DELAYED, &sh->state);
2517 set_bit(STRIPE_HANDLE, &sh->state);
2518 }
2519 }
2520 }
2521 if (rcw <= rmw && rcw > 0)
2522 /* want reconstruct write, but need to get some data */
2523 for (i = disks; i--; ) {
2524 struct r5dev *dev = &sh->dev[i];
2525 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
2526 i != sh->pd_idx &&
2527 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002528 !(test_bit(R5_UPTODATE, &dev->flags) ||
2529 test_bit(R5_Wantcompute, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07002530 test_bit(R5_Insync, &dev->flags)) {
2531 if (
2532 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07002533 pr_debug("Read_old block "
Dan Williamsa4456852007-07-09 11:56:43 -07002534 "%d for Reconstruct\n", i);
2535 set_bit(R5_LOCKED, &dev->flags);
2536 set_bit(R5_Wantread, &dev->flags);
2537 s->locked++;
2538 } else {
2539 set_bit(STRIPE_DELAYED, &sh->state);
2540 set_bit(STRIPE_HANDLE, &sh->state);
2541 }
2542 }
2543 }
2544 /* now if nothing is locked, and if we have enough data,
2545 * we can start a write request
2546 */
Dan Williamsf38e1212007-01-02 13:52:30 -07002547 /* since handle_stripe can be called at any time we need to handle the
2548 * case where a compute block operation has been submitted and then a
Dan Williamsac6b53b2009-07-14 13:40:19 -07002549 * subsequent call wants to start a write request. raid_run_ops only
2550 * handles the case where compute block and reconstruct are requested
Dan Williamsf38e1212007-01-02 13:52:30 -07002551 * simultaneously. If this is not the case then new writes need to be
2552 * held off until the compute completes.
2553 */
Dan Williams976ea8d2008-06-28 08:32:03 +10002554 if ((s->req_compute || !test_bit(STRIPE_COMPUTE_RUN, &sh->state)) &&
2555 (s->locked == 0 && (rcw == 0 || rmw == 0) &&
2556 !test_bit(STRIPE_BIT_DELAY, &sh->state)))
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002557 schedule_reconstruction(sh, s, rcw == 0, 0);
Dan Williamsa4456852007-07-09 11:56:43 -07002558}
2559
Dan Williams1fe797e2008-06-28 09:16:30 +10002560static void handle_stripe_dirtying6(raid5_conf_t *conf,
Dan Williamsa4456852007-07-09 11:56:43 -07002561 struct stripe_head *sh, struct stripe_head_state *s,
2562 struct r6_state *r6s, int disks)
2563{
Yuri Tikhonova9b39a72009-08-29 19:13:12 -07002564 int rcw = 0, pd_idx = sh->pd_idx, i;
NeilBrown34e04e82009-03-31 15:10:16 +11002565 int qd_idx = sh->qd_idx;
Yuri Tikhonova9b39a72009-08-29 19:13:12 -07002566
2567 set_bit(STRIPE_HANDLE, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07002568 for (i = disks; i--; ) {
2569 struct r5dev *dev = &sh->dev[i];
Yuri Tikhonova9b39a72009-08-29 19:13:12 -07002570 /* check if we haven't enough data */
2571 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
2572 i != pd_idx && i != qd_idx &&
2573 !test_bit(R5_LOCKED, &dev->flags) &&
2574 !(test_bit(R5_UPTODATE, &dev->flags) ||
2575 test_bit(R5_Wantcompute, &dev->flags))) {
2576 rcw++;
2577 if (!test_bit(R5_Insync, &dev->flags))
2578 continue; /* it's a failed drive */
2579
2580 if (
2581 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
2582 pr_debug("Read_old stripe %llu "
2583 "block %d for Reconstruct\n",
2584 (unsigned long long)sh->sector, i);
2585 set_bit(R5_LOCKED, &dev->flags);
2586 set_bit(R5_Wantread, &dev->flags);
2587 s->locked++;
2588 } else {
2589 pr_debug("Request delayed stripe %llu "
2590 "block %d for Reconstruct\n",
2591 (unsigned long long)sh->sector, i);
2592 set_bit(STRIPE_DELAYED, &sh->state);
2593 set_bit(STRIPE_HANDLE, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07002594 }
2595 }
2596 }
Dan Williamsa4456852007-07-09 11:56:43 -07002597 /* now if nothing is locked, and if we have enough data, we can start a
2598 * write request
2599 */
Yuri Tikhonova9b39a72009-08-29 19:13:12 -07002600 if ((s->req_compute || !test_bit(STRIPE_COMPUTE_RUN, &sh->state)) &&
2601 s->locked == 0 && rcw == 0 &&
Dan Williamsa4456852007-07-09 11:56:43 -07002602 !test_bit(STRIPE_BIT_DELAY, &sh->state)) {
Yuri Tikhonova9b39a72009-08-29 19:13:12 -07002603 schedule_reconstruction(sh, s, 1, 0);
Dan Williamsa4456852007-07-09 11:56:43 -07002604 }
2605}
2606
2607static void handle_parity_checks5(raid5_conf_t *conf, struct stripe_head *sh,
2608 struct stripe_head_state *s, int disks)
2609{
Dan Williamsecc65c92008-06-28 08:31:57 +10002610 struct r5dev *dev = NULL;
Dan Williamse89f8962007-01-02 13:52:31 -07002611
Dan Williamsbd2ab672008-04-10 21:29:27 -07002612 set_bit(STRIPE_HANDLE, &sh->state);
2613
Dan Williamsecc65c92008-06-28 08:31:57 +10002614 switch (sh->check_state) {
2615 case check_state_idle:
2616 /* start a new check operation if there are no failures */
Dan Williamsbd2ab672008-04-10 21:29:27 -07002617 if (s->failed == 0) {
Dan Williamsbd2ab672008-04-10 21:29:27 -07002618 BUG_ON(s->uptodate != disks);
Dan Williamsecc65c92008-06-28 08:31:57 +10002619 sh->check_state = check_state_run;
2620 set_bit(STRIPE_OP_CHECK, &s->ops_request);
Dan Williamsbd2ab672008-04-10 21:29:27 -07002621 clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
Dan Williamsbd2ab672008-04-10 21:29:27 -07002622 s->uptodate--;
Dan Williamsecc65c92008-06-28 08:31:57 +10002623 break;
Dan Williamsbd2ab672008-04-10 21:29:27 -07002624 }
Dan Williamsa4456852007-07-09 11:56:43 -07002625 dev = &sh->dev[s->failed_num];
Dan Williamsecc65c92008-06-28 08:31:57 +10002626 /* fall through */
2627 case check_state_compute_result:
2628 sh->check_state = check_state_idle;
2629 if (!dev)
2630 dev = &sh->dev[sh->pd_idx];
2631
2632 /* check that a write has not made the stripe insync */
2633 if (test_bit(STRIPE_INSYNC, &sh->state))
2634 break;
2635
2636 /* either failed parity check, or recovery is happening */
Dan Williamsa4456852007-07-09 11:56:43 -07002637 BUG_ON(!test_bit(R5_UPTODATE, &dev->flags));
2638 BUG_ON(s->uptodate != disks);
2639
2640 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsecc65c92008-06-28 08:31:57 +10002641 s->locked++;
Dan Williamsa4456852007-07-09 11:56:43 -07002642 set_bit(R5_Wantwrite, &dev->flags);
Dan Williams830ea012007-01-02 13:52:31 -07002643
Dan Williamsa4456852007-07-09 11:56:43 -07002644 clear_bit(STRIPE_DEGRADED, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07002645 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10002646 break;
2647 case check_state_run:
2648 break; /* we will be called again upon completion */
2649 case check_state_check_result:
2650 sh->check_state = check_state_idle;
2651
2652 /* if a failure occurred during the check operation, leave
2653 * STRIPE_INSYNC not set and let the stripe be handled again
2654 */
2655 if (s->failed)
2656 break;
2657
2658 /* handle a successful check operation, if parity is correct
2659 * we are done. Otherwise update the mismatch count and repair
2660 * parity if !MD_RECOVERY_CHECK
2661 */
Dan Williamsad283ea2009-08-29 19:09:26 -07002662 if ((sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) == 0)
Dan Williamsecc65c92008-06-28 08:31:57 +10002663 /* parity is correct (on disc,
2664 * not in buffer any more)
2665 */
2666 set_bit(STRIPE_INSYNC, &sh->state);
2667 else {
2668 conf->mddev->resync_mismatches += STRIPE_SECTORS;
2669 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
2670 /* don't try to repair!! */
2671 set_bit(STRIPE_INSYNC, &sh->state);
2672 else {
2673 sh->check_state = check_state_compute_run;
Dan Williams976ea8d2008-06-28 08:32:03 +10002674 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10002675 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
2676 set_bit(R5_Wantcompute,
2677 &sh->dev[sh->pd_idx].flags);
2678 sh->ops.target = sh->pd_idx;
Dan Williamsac6b53b2009-07-14 13:40:19 -07002679 sh->ops.target2 = -1;
Dan Williamsecc65c92008-06-28 08:31:57 +10002680 s->uptodate++;
2681 }
2682 }
2683 break;
2684 case check_state_compute_run:
2685 break;
2686 default:
2687 printk(KERN_ERR "%s: unknown check_state: %d sector: %llu\n",
2688 __func__, sh->check_state,
2689 (unsigned long long) sh->sector);
2690 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07002691 }
2692}
2693
2694
2695static void handle_parity_checks6(raid5_conf_t *conf, struct stripe_head *sh,
Dan Williams36d1c642009-07-14 11:48:22 -07002696 struct stripe_head_state *s,
2697 struct r6_state *r6s, int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07002698{
Dan Williamsa4456852007-07-09 11:56:43 -07002699 int pd_idx = sh->pd_idx;
NeilBrown34e04e82009-03-31 15:10:16 +11002700 int qd_idx = sh->qd_idx;
Dan Williamsd82dfee2009-07-14 13:40:57 -07002701 struct r5dev *dev;
Dan Williamsa4456852007-07-09 11:56:43 -07002702
2703 set_bit(STRIPE_HANDLE, &sh->state);
2704
2705 BUG_ON(s->failed > 2);
Dan Williamsd82dfee2009-07-14 13:40:57 -07002706
Dan Williamsa4456852007-07-09 11:56:43 -07002707 /* Want to check and possibly repair P and Q.
2708 * However there could be one 'failed' device, in which
2709 * case we can only check one of them, possibly using the
2710 * other to generate missing data
2711 */
2712
Dan Williamsd82dfee2009-07-14 13:40:57 -07002713 switch (sh->check_state) {
2714 case check_state_idle:
2715 /* start a new check operation if there are < 2 failures */
Dan Williamsa4456852007-07-09 11:56:43 -07002716 if (s->failed == r6s->q_failed) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07002717 /* The only possible failed device holds Q, so it
Dan Williamsa4456852007-07-09 11:56:43 -07002718 * makes sense to check P (If anything else were failed,
2719 * we would have used P to recreate it).
2720 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07002721 sh->check_state = check_state_run;
Dan Williamsa4456852007-07-09 11:56:43 -07002722 }
2723 if (!r6s->q_failed && s->failed < 2) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07002724 /* Q is not failed, and we didn't use it to generate
Dan Williamsa4456852007-07-09 11:56:43 -07002725 * anything, so it makes sense to check it
2726 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07002727 if (sh->check_state == check_state_run)
2728 sh->check_state = check_state_run_pq;
2729 else
2730 sh->check_state = check_state_run_q;
Dan Williamsa4456852007-07-09 11:56:43 -07002731 }
Dan Williams36d1c642009-07-14 11:48:22 -07002732
Dan Williamsd82dfee2009-07-14 13:40:57 -07002733 /* discard potentially stale zero_sum_result */
2734 sh->ops.zero_sum_result = 0;
Dan Williams36d1c642009-07-14 11:48:22 -07002735
Dan Williamsd82dfee2009-07-14 13:40:57 -07002736 if (sh->check_state == check_state_run) {
2737 /* async_xor_zero_sum destroys the contents of P */
2738 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
2739 s->uptodate--;
Dan Williamsa4456852007-07-09 11:56:43 -07002740 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07002741 if (sh->check_state >= check_state_run &&
2742 sh->check_state <= check_state_run_pq) {
2743 /* async_syndrome_zero_sum preserves P and Q, so
2744 * no need to mark them !uptodate here
2745 */
2746 set_bit(STRIPE_OP_CHECK, &s->ops_request);
2747 break;
2748 }
Dan Williams36d1c642009-07-14 11:48:22 -07002749
Dan Williamsd82dfee2009-07-14 13:40:57 -07002750 /* we have 2-disk failure */
2751 BUG_ON(s->failed != 2);
2752 /* fall through */
2753 case check_state_compute_result:
2754 sh->check_state = check_state_idle;
Dan Williams36d1c642009-07-14 11:48:22 -07002755
Dan Williamsd82dfee2009-07-14 13:40:57 -07002756 /* check that a write has not made the stripe insync */
2757 if (test_bit(STRIPE_INSYNC, &sh->state))
2758 break;
Dan Williamsa4456852007-07-09 11:56:43 -07002759
2760 /* now write out any block on a failed drive,
Dan Williamsd82dfee2009-07-14 13:40:57 -07002761 * or P or Q if they were recomputed
Dan Williamsa4456852007-07-09 11:56:43 -07002762 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07002763 BUG_ON(s->uptodate < disks - 1); /* We don't need Q to recover */
Dan Williamsa4456852007-07-09 11:56:43 -07002764 if (s->failed == 2) {
2765 dev = &sh->dev[r6s->failed_num[1]];
2766 s->locked++;
2767 set_bit(R5_LOCKED, &dev->flags);
2768 set_bit(R5_Wantwrite, &dev->flags);
2769 }
2770 if (s->failed >= 1) {
2771 dev = &sh->dev[r6s->failed_num[0]];
2772 s->locked++;
2773 set_bit(R5_LOCKED, &dev->flags);
2774 set_bit(R5_Wantwrite, &dev->flags);
2775 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07002776 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
Dan Williamsa4456852007-07-09 11:56:43 -07002777 dev = &sh->dev[pd_idx];
2778 s->locked++;
2779 set_bit(R5_LOCKED, &dev->flags);
2780 set_bit(R5_Wantwrite, &dev->flags);
2781 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07002782 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
Dan Williamsa4456852007-07-09 11:56:43 -07002783 dev = &sh->dev[qd_idx];
2784 s->locked++;
2785 set_bit(R5_LOCKED, &dev->flags);
2786 set_bit(R5_Wantwrite, &dev->flags);
2787 }
2788 clear_bit(STRIPE_DEGRADED, &sh->state);
2789
2790 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsd82dfee2009-07-14 13:40:57 -07002791 break;
2792 case check_state_run:
2793 case check_state_run_q:
2794 case check_state_run_pq:
2795 break; /* we will be called again upon completion */
2796 case check_state_check_result:
2797 sh->check_state = check_state_idle;
2798
2799 /* handle a successful check operation, if parity is correct
2800 * we are done. Otherwise update the mismatch count and repair
2801 * parity if !MD_RECOVERY_CHECK
2802 */
2803 if (sh->ops.zero_sum_result == 0) {
2804 /* both parities are correct */
2805 if (!s->failed)
2806 set_bit(STRIPE_INSYNC, &sh->state);
2807 else {
2808 /* in contrast to the raid5 case we can validate
2809 * parity, but still have a failure to write
2810 * back
2811 */
2812 sh->check_state = check_state_compute_result;
2813 /* Returning at this point means that we may go
2814 * off and bring p and/or q uptodate again so
2815 * we make sure to check zero_sum_result again
2816 * to verify if p or q need writeback
2817 */
2818 }
2819 } else {
2820 conf->mddev->resync_mismatches += STRIPE_SECTORS;
2821 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
2822 /* don't try to repair!! */
2823 set_bit(STRIPE_INSYNC, &sh->state);
2824 else {
2825 int *target = &sh->ops.target;
2826
2827 sh->ops.target = -1;
2828 sh->ops.target2 = -1;
2829 sh->check_state = check_state_compute_run;
2830 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
2831 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
2832 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
2833 set_bit(R5_Wantcompute,
2834 &sh->dev[pd_idx].flags);
2835 *target = pd_idx;
2836 target = &sh->ops.target2;
2837 s->uptodate++;
2838 }
2839 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
2840 set_bit(R5_Wantcompute,
2841 &sh->dev[qd_idx].flags);
2842 *target = qd_idx;
2843 s->uptodate++;
2844 }
2845 }
2846 }
2847 break;
2848 case check_state_compute_run:
2849 break;
2850 default:
2851 printk(KERN_ERR "%s: unknown check_state: %d sector: %llu\n",
2852 __func__, sh->check_state,
2853 (unsigned long long) sh->sector);
2854 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07002855 }
2856}
2857
2858static void handle_stripe_expansion(raid5_conf_t *conf, struct stripe_head *sh,
2859 struct r6_state *r6s)
2860{
2861 int i;
2862
2863 /* We have read all the blocks in this stripe and now we need to
2864 * copy some of them into a target stripe for expand.
2865 */
Dan Williamsf0a50d32007-01-02 13:52:31 -07002866 struct dma_async_tx_descriptor *tx = NULL;
Dan Williamsa4456852007-07-09 11:56:43 -07002867 clear_bit(STRIPE_EXPAND_SOURCE, &sh->state);
2868 for (i = 0; i < sh->disks; i++)
NeilBrown34e04e82009-03-31 15:10:16 +11002869 if (i != sh->pd_idx && i != sh->qd_idx) {
NeilBrown911d4ee2009-03-31 14:39:38 +11002870 int dd_idx, j;
Dan Williamsa4456852007-07-09 11:56:43 -07002871 struct stripe_head *sh2;
Dan Williamsa08abd82009-06-03 11:43:59 -07002872 struct async_submit_ctl submit;
Dan Williamsa4456852007-07-09 11:56:43 -07002873
NeilBrown784052e2009-03-31 15:19:07 +11002874 sector_t bn = compute_blocknr(sh, i, 1);
NeilBrown911d4ee2009-03-31 14:39:38 +11002875 sector_t s = raid5_compute_sector(conf, bn, 0,
2876 &dd_idx, NULL);
NeilBrowna8c906c2009-06-09 14:39:59 +10002877 sh2 = get_active_stripe(conf, s, 0, 1, 1);
Dan Williamsa4456852007-07-09 11:56:43 -07002878 if (sh2 == NULL)
2879 /* so far only the early blocks of this stripe
2880 * have been requested. When later blocks
2881 * get requested, we will try again
2882 */
2883 continue;
2884 if (!test_bit(STRIPE_EXPANDING, &sh2->state) ||
2885 test_bit(R5_Expanded, &sh2->dev[dd_idx].flags)) {
2886 /* must have already done this block */
2887 release_stripe(sh2);
2888 continue;
2889 }
Dan Williamsf0a50d32007-01-02 13:52:31 -07002890
2891 /* place all the copies on one channel */
Dan Williamsa08abd82009-06-03 11:43:59 -07002892 init_async_submit(&submit, 0, tx, NULL, NULL, NULL);
Dan Williamsf0a50d32007-01-02 13:52:31 -07002893 tx = async_memcpy(sh2->dev[dd_idx].page,
Dan Williams88ba2aa2009-04-09 16:16:18 -07002894 sh->dev[i].page, 0, 0, STRIPE_SIZE,
Dan Williamsa08abd82009-06-03 11:43:59 -07002895 &submit);
Dan Williamsf0a50d32007-01-02 13:52:31 -07002896
Dan Williamsa4456852007-07-09 11:56:43 -07002897 set_bit(R5_Expanded, &sh2->dev[dd_idx].flags);
2898 set_bit(R5_UPTODATE, &sh2->dev[dd_idx].flags);
2899 for (j = 0; j < conf->raid_disks; j++)
2900 if (j != sh2->pd_idx &&
NeilBrownd0dabf72009-03-31 14:39:38 +11002901 (!r6s || j != sh2->qd_idx) &&
Dan Williamsa4456852007-07-09 11:56:43 -07002902 !test_bit(R5_Expanded, &sh2->dev[j].flags))
2903 break;
2904 if (j == conf->raid_disks) {
2905 set_bit(STRIPE_EXPAND_READY, &sh2->state);
2906 set_bit(STRIPE_HANDLE, &sh2->state);
2907 }
2908 release_stripe(sh2);
Dan Williamsf0a50d32007-01-02 13:52:31 -07002909
Dan Williamsa4456852007-07-09 11:56:43 -07002910 }
NeilBrowna2e08552007-09-11 15:23:36 -07002911 /* done submitting copies, wait for them to complete */
2912 if (tx) {
2913 async_tx_ack(tx);
2914 dma_wait_for_async_tx(tx);
2915 }
Dan Williamsa4456852007-07-09 11:56:43 -07002916}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917
Dan Williams6bfe0b42008-04-30 00:52:32 -07002918
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919/*
2920 * handle_stripe - do things to a stripe.
2921 *
2922 * We lock the stripe and then examine the state of various bits
2923 * to see what needs to be done.
2924 * Possible results:
2925 * return some read request which now have data
2926 * return some write requests which are safely on disc
2927 * schedule a read on some buffers
2928 * schedule a write of some buffers
2929 * return confirmation of parity correctness
2930 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 * buffers are taken off read_list or write_list, and bh_cache buffers
2932 * get BH_Lock set before the stripe lock is released.
2933 *
2934 */
Dan Williamsa4456852007-07-09 11:56:43 -07002935
NeilBrown14425772009-10-16 15:55:25 +11002936static void handle_stripe5(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937{
2938 raid5_conf_t *conf = sh->raid_conf;
Dan Williamsa4456852007-07-09 11:56:43 -07002939 int disks = sh->disks, i;
2940 struct bio *return_bi = NULL;
2941 struct stripe_head_state s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 struct r5dev *dev;
Dan Williams6bfe0b42008-04-30 00:52:32 -07002943 mdk_rdev_t *blocked_rdev = NULL;
Dan Williamse0a115e2008-06-05 22:45:52 -07002944 int prexor;
NeilBrown729a1862009-12-14 12:49:50 +11002945 int dec_preread_active = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946
Dan Williamsa4456852007-07-09 11:56:43 -07002947 memset(&s, 0, sizeof(s));
Dan Williams600aa102008-06-28 08:32:05 +10002948 pr_debug("handling stripe %llu, state=%#lx cnt=%d, pd_idx=%d check:%d "
2949 "reconstruct:%d\n", (unsigned long long)sh->sector, sh->state,
2950 atomic_read(&sh->count), sh->pd_idx, sh->check_state,
2951 sh->reconstruct_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952
2953 spin_lock(&sh->lock);
2954 clear_bit(STRIPE_HANDLE, &sh->state);
2955 clear_bit(STRIPE_DELAYED, &sh->state);
2956
Dan Williamsa4456852007-07-09 11:56:43 -07002957 s.syncing = test_bit(STRIPE_SYNCING, &sh->state);
2958 s.expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state);
2959 s.expanded = test_bit(STRIPE_EXPAND_READY, &sh->state);
Dan Williams83de75c2008-06-28 08:31:58 +10002960
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 /* Now to look around and see what can be done */
NeilBrown9910f162006-01-06 00:20:24 -08002962 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 for (i=disks; i--; ) {
2964 mdk_rdev_t *rdev;
NeilBrowna9f326e2009-09-23 18:06:41 +10002965
2966 dev = &sh->dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 clear_bit(R5_Insync, &dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968
Dan Williamsb5e98d62007-01-02 13:52:31 -07002969 pr_debug("check %d: state 0x%lx toread %p read %p write %p "
2970 "written %p\n", i, dev->flags, dev->toread, dev->read,
2971 dev->towrite, dev->written);
2972
2973 /* maybe we can request a biofill operation
2974 *
2975 * new wantfill requests are only permitted while
Dan Williams83de75c2008-06-28 08:31:58 +10002976 * ops_complete_biofill is guaranteed to be inactive
Dan Williamsb5e98d62007-01-02 13:52:31 -07002977 */
2978 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread &&
Dan Williams83de75c2008-06-28 08:31:58 +10002979 !test_bit(STRIPE_BIOFILL_RUN, &sh->state))
Dan Williamsb5e98d62007-01-02 13:52:31 -07002980 set_bit(R5_Wantfill, &dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981
2982 /* now count some things */
Dan Williamsa4456852007-07-09 11:56:43 -07002983 if (test_bit(R5_LOCKED, &dev->flags)) s.locked++;
2984 if (test_bit(R5_UPTODATE, &dev->flags)) s.uptodate++;
Dan Williamsf38e1212007-01-02 13:52:30 -07002985 if (test_bit(R5_Wantcompute, &dev->flags)) s.compute++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986
Dan Williamsb5e98d62007-01-02 13:52:31 -07002987 if (test_bit(R5_Wantfill, &dev->flags))
2988 s.to_fill++;
2989 else if (dev->toread)
Dan Williamsa4456852007-07-09 11:56:43 -07002990 s.to_read++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 if (dev->towrite) {
Dan Williamsa4456852007-07-09 11:56:43 -07002992 s.to_write++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 if (!test_bit(R5_OVERWRITE, &dev->flags))
Dan Williamsa4456852007-07-09 11:56:43 -07002994 s.non_overwrite++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995 }
Dan Williamsa4456852007-07-09 11:56:43 -07002996 if (dev->written)
2997 s.written++;
NeilBrown9910f162006-01-06 00:20:24 -08002998 rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownac4090d2008-08-05 15:54:13 +10002999 if (blocked_rdev == NULL &&
3000 rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
Dan Williams6bfe0b42008-04-30 00:52:32 -07003001 blocked_rdev = rdev;
3002 atomic_inc(&rdev->nr_pending);
Dan Williams6bfe0b42008-04-30 00:52:32 -07003003 }
NeilBrownb2d444d2005-11-08 21:39:31 -08003004 if (!rdev || !test_bit(In_sync, &rdev->flags)) {
NeilBrown14f8d262006-01-06 00:20:14 -08003005 /* The ReadError flag will just be confusing now */
NeilBrown4e5314b2005-11-08 21:39:22 -08003006 clear_bit(R5_ReadError, &dev->flags);
3007 clear_bit(R5_ReWrite, &dev->flags);
3008 }
NeilBrownb2d444d2005-11-08 21:39:31 -08003009 if (!rdev || !test_bit(In_sync, &rdev->flags)
NeilBrown4e5314b2005-11-08 21:39:22 -08003010 || test_bit(R5_ReadError, &dev->flags)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003011 s.failed++;
3012 s.failed_num = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 } else
3014 set_bit(R5_Insync, &dev->flags);
3015 }
NeilBrown9910f162006-01-06 00:20:24 -08003016 rcu_read_unlock();
Dan Williamsb5e98d62007-01-02 13:52:31 -07003017
Dan Williams6bfe0b42008-04-30 00:52:32 -07003018 if (unlikely(blocked_rdev)) {
NeilBrownac4090d2008-08-05 15:54:13 +10003019 if (s.syncing || s.expanding || s.expanded ||
3020 s.to_write || s.written) {
3021 set_bit(STRIPE_HANDLE, &sh->state);
3022 goto unlock;
3023 }
3024 /* There is nothing for the blocked_rdev to block */
3025 rdev_dec_pending(blocked_rdev, conf->mddev);
3026 blocked_rdev = NULL;
Dan Williams6bfe0b42008-04-30 00:52:32 -07003027 }
3028
Dan Williams83de75c2008-06-28 08:31:58 +10003029 if (s.to_fill && !test_bit(STRIPE_BIOFILL_RUN, &sh->state)) {
3030 set_bit(STRIPE_OP_BIOFILL, &s.ops_request);
3031 set_bit(STRIPE_BIOFILL_RUN, &sh->state);
3032 }
Dan Williamsb5e98d62007-01-02 13:52:31 -07003033
Dan Williams45b42332007-07-09 11:56:43 -07003034 pr_debug("locked=%d uptodate=%d to_read=%d"
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 " to_write=%d failed=%d failed_num=%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07003036 s.locked, s.uptodate, s.to_read, s.to_write,
3037 s.failed, s.failed_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 /* check if the array has lost two devices and, if so, some requests might
3039 * need to be failed
3040 */
Dan Williamsa4456852007-07-09 11:56:43 -07003041 if (s.failed > 1 && s.to_read+s.to_write+s.written)
Dan Williams1fe797e2008-06-28 09:16:30 +10003042 handle_failed_stripe(conf, sh, &s, disks, &return_bi);
Dan Williamsa4456852007-07-09 11:56:43 -07003043 if (s.failed > 1 && s.syncing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 md_done_sync(conf->mddev, STRIPE_SECTORS,0);
3045 clear_bit(STRIPE_SYNCING, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07003046 s.syncing = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 }
3048
3049 /* might be able to return some write requests if the parity block
3050 * is safe, or on a failed drive
3051 */
3052 dev = &sh->dev[sh->pd_idx];
Dan Williamsa4456852007-07-09 11:56:43 -07003053 if ( s.written &&
3054 ((test_bit(R5_Insync, &dev->flags) &&
3055 !test_bit(R5_LOCKED, &dev->flags) &&
3056 test_bit(R5_UPTODATE, &dev->flags)) ||
3057 (s.failed == 1 && s.failed_num == sh->pd_idx)))
Dan Williams1fe797e2008-06-28 09:16:30 +10003058 handle_stripe_clean_event(conf, sh, disks, &return_bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059
3060 /* Now we might consider reading some blocks, either to check/generate
3061 * parity, or to satisfy requests
3062 * or to load a block that is being partially written.
3063 */
Dan Williamsa4456852007-07-09 11:56:43 -07003064 if (s.to_read || s.non_overwrite ||
Dan Williams976ea8d2008-06-28 08:32:03 +10003065 (s.syncing && (s.uptodate + s.compute < disks)) || s.expanding)
Dan Williams1fe797e2008-06-28 09:16:30 +10003066 handle_stripe_fill5(sh, &s, disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067
Dan Williamse33129d2007-01-02 13:52:30 -07003068 /* Now we check to see if any write operations have recently
3069 * completed
3070 */
Dan Williamse0a115e2008-06-05 22:45:52 -07003071 prexor = 0;
Dan Williamsd8ee0722008-06-28 08:32:06 +10003072 if (sh->reconstruct_state == reconstruct_state_prexor_drain_result)
Dan Williamse0a115e2008-06-05 22:45:52 -07003073 prexor = 1;
Dan Williamsd8ee0722008-06-28 08:32:06 +10003074 if (sh->reconstruct_state == reconstruct_state_drain_result ||
3075 sh->reconstruct_state == reconstruct_state_prexor_drain_result) {
Dan Williams600aa102008-06-28 08:32:05 +10003076 sh->reconstruct_state = reconstruct_state_idle;
Dan Williamse33129d2007-01-02 13:52:30 -07003077
3078 /* All the 'written' buffers and the parity block are ready to
3079 * be written back to disk
3080 */
3081 BUG_ON(!test_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags));
3082 for (i = disks; i--; ) {
3083 dev = &sh->dev[i];
3084 if (test_bit(R5_LOCKED, &dev->flags) &&
3085 (i == sh->pd_idx || dev->written)) {
3086 pr_debug("Writing block %d\n", i);
3087 set_bit(R5_Wantwrite, &dev->flags);
Dan Williamse0a115e2008-06-05 22:45:52 -07003088 if (prexor)
3089 continue;
Dan Williamse33129d2007-01-02 13:52:30 -07003090 if (!test_bit(R5_Insync, &dev->flags) ||
3091 (i == sh->pd_idx && s.failed == 0))
3092 set_bit(STRIPE_INSYNC, &sh->state);
3093 }
3094 }
NeilBrown729a1862009-12-14 12:49:50 +11003095 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3096 dec_preread_active = 1;
Dan Williamse33129d2007-01-02 13:52:30 -07003097 }
3098
3099 /* Now to consider new write requests and what else, if anything
3100 * should be read. We do not handle new writes when:
3101 * 1/ A 'write' operation (copy+xor) is already in flight.
3102 * 2/ A 'check' operation is in flight, as it may clobber the parity
3103 * block.
3104 */
Dan Williams600aa102008-06-28 08:32:05 +10003105 if (s.to_write && !sh->reconstruct_state && !sh->check_state)
Dan Williams1fe797e2008-06-28 09:16:30 +10003106 handle_stripe_dirtying5(conf, sh, &s, disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107
3108 /* maybe we need to check and possibly fix the parity for this stripe
Dan Williamse89f8962007-01-02 13:52:31 -07003109 * Any reads will already have been scheduled, so we just see if enough
3110 * data is available. The parity check is held off while parity
3111 * dependent operations are in flight.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 */
Dan Williamsecc65c92008-06-28 08:31:57 +10003113 if (sh->check_state ||
3114 (s.syncing && s.locked == 0 &&
Dan Williams976ea8d2008-06-28 08:32:03 +10003115 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
Dan Williamsecc65c92008-06-28 08:31:57 +10003116 !test_bit(STRIPE_INSYNC, &sh->state)))
Dan Williamsa4456852007-07-09 11:56:43 -07003117 handle_parity_checks5(conf, sh, &s, disks);
Dan Williamse89f8962007-01-02 13:52:31 -07003118
Dan Williamsa4456852007-07-09 11:56:43 -07003119 if (s.syncing && s.locked == 0 && test_bit(STRIPE_INSYNC, &sh->state)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 md_done_sync(conf->mddev, STRIPE_SECTORS,1);
3121 clear_bit(STRIPE_SYNCING, &sh->state);
3122 }
NeilBrown4e5314b2005-11-08 21:39:22 -08003123
3124 /* If the failed drive is just a ReadError, then we might need to progress
3125 * the repair/check process
3126 */
Dan Williamsa4456852007-07-09 11:56:43 -07003127 if (s.failed == 1 && !conf->mddev->ro &&
3128 test_bit(R5_ReadError, &sh->dev[s.failed_num].flags)
3129 && !test_bit(R5_LOCKED, &sh->dev[s.failed_num].flags)
3130 && test_bit(R5_UPTODATE, &sh->dev[s.failed_num].flags)
NeilBrown4e5314b2005-11-08 21:39:22 -08003131 ) {
Dan Williamsa4456852007-07-09 11:56:43 -07003132 dev = &sh->dev[s.failed_num];
NeilBrown4e5314b2005-11-08 21:39:22 -08003133 if (!test_bit(R5_ReWrite, &dev->flags)) {
3134 set_bit(R5_Wantwrite, &dev->flags);
3135 set_bit(R5_ReWrite, &dev->flags);
3136 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsa4456852007-07-09 11:56:43 -07003137 s.locked++;
NeilBrown4e5314b2005-11-08 21:39:22 -08003138 } else {
3139 /* let's read it back */
3140 set_bit(R5_Wantread, &dev->flags);
3141 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsa4456852007-07-09 11:56:43 -07003142 s.locked++;
NeilBrown4e5314b2005-11-08 21:39:22 -08003143 }
3144 }
3145
Dan Williams600aa102008-06-28 08:32:05 +10003146 /* Finish reconstruct operations initiated by the expansion process */
3147 if (sh->reconstruct_state == reconstruct_state_result) {
NeilBrownab69ae12009-03-31 15:26:47 +11003148 struct stripe_head *sh2
NeilBrowna8c906c2009-06-09 14:39:59 +10003149 = get_active_stripe(conf, sh->sector, 1, 1, 1);
NeilBrownab69ae12009-03-31 15:26:47 +11003150 if (sh2 && test_bit(STRIPE_EXPAND_SOURCE, &sh2->state)) {
3151 /* sh cannot be written until sh2 has been read.
3152 * so arrange for sh to be delayed a little
3153 */
3154 set_bit(STRIPE_DELAYED, &sh->state);
3155 set_bit(STRIPE_HANDLE, &sh->state);
3156 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE,
3157 &sh2->state))
3158 atomic_inc(&conf->preread_active_stripes);
3159 release_stripe(sh2);
3160 goto unlock;
3161 }
3162 if (sh2)
3163 release_stripe(sh2);
3164
Dan Williams600aa102008-06-28 08:32:05 +10003165 sh->reconstruct_state = reconstruct_state_idle;
Dan Williamsf0a50d32007-01-02 13:52:31 -07003166 clear_bit(STRIPE_EXPANDING, &sh->state);
Dan Williams23397882008-07-23 20:05:34 -07003167 for (i = conf->raid_disks; i--; ) {
Dan Williamsf0a50d32007-01-02 13:52:31 -07003168 set_bit(R5_Wantwrite, &sh->dev[i].flags);
Dan Williams23397882008-07-23 20:05:34 -07003169 set_bit(R5_LOCKED, &sh->dev[i].flags);
Neil Brownefe31142008-06-28 08:31:14 +10003170 s.locked++;
Dan Williams23397882008-07-23 20:05:34 -07003171 }
Dan Williamsf0a50d32007-01-02 13:52:31 -07003172 }
3173
3174 if (s.expanded && test_bit(STRIPE_EXPANDING, &sh->state) &&
Dan Williams600aa102008-06-28 08:32:05 +10003175 !sh->reconstruct_state) {
NeilBrownccfcc3c2006-03-27 01:18:09 -08003176 /* Need to write out all blocks after computing parity */
3177 sh->disks = conf->raid_disks;
NeilBrown911d4ee2009-03-31 14:39:38 +11003178 stripe_set_idx(sh->sector, conf, 0, sh);
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07003179 schedule_reconstruction(sh, &s, 1, 1);
Dan Williams600aa102008-06-28 08:32:05 +10003180 } else if (s.expanded && !sh->reconstruct_state && s.locked == 0) {
NeilBrownccfcc3c2006-03-27 01:18:09 -08003181 clear_bit(STRIPE_EXPAND_READY, &sh->state);
NeilBrownf6705572006-03-27 01:18:11 -08003182 atomic_dec(&conf->reshape_stripes);
NeilBrownccfcc3c2006-03-27 01:18:09 -08003183 wake_up(&conf->wait_for_overlap);
3184 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
3185 }
3186
Dan Williams0f94e872008-01-08 15:32:53 -08003187 if (s.expanding && s.locked == 0 &&
Dan Williams976ea8d2008-06-28 08:32:03 +10003188 !test_bit(STRIPE_COMPUTE_RUN, &sh->state))
Dan Williamsa4456852007-07-09 11:56:43 -07003189 handle_stripe_expansion(conf, sh, NULL);
NeilBrownccfcc3c2006-03-27 01:18:09 -08003190
Dan Williams6bfe0b42008-04-30 00:52:32 -07003191 unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 spin_unlock(&sh->lock);
3193
Dan Williams6bfe0b42008-04-30 00:52:32 -07003194 /* wait for this device to become unblocked */
3195 if (unlikely(blocked_rdev))
3196 md_wait_for_blocked_rdev(blocked_rdev, conf->mddev);
3197
Dan Williams600aa102008-06-28 08:32:05 +10003198 if (s.ops_request)
Dan Williamsac6b53b2009-07-14 13:40:19 -07003199 raid_run_ops(sh, s.ops_request);
Dan Williamsd84e0f12007-01-02 13:52:30 -07003200
Dan Williamsc4e5ac02008-06-28 08:31:53 +10003201 ops_run_io(sh, &s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202
NeilBrown729a1862009-12-14 12:49:50 +11003203 if (dec_preread_active) {
3204 /* We delay this until after ops_run_io so that if make_request
3205 * is waiting on a barrier, it won't continue until the writes
3206 * have actually been submitted.
3207 */
3208 atomic_dec(&conf->preread_active_stripes);
3209 if (atomic_read(&conf->preread_active_stripes) <
3210 IO_THRESHOLD)
3211 md_wakeup_thread(conf->mddev->thread);
3212 }
Dan Williamsa4456852007-07-09 11:56:43 -07003213 return_io(return_bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214}
3215
NeilBrown14425772009-10-16 15:55:25 +11003216static void handle_stripe6(struct stripe_head *sh)
NeilBrown16a53ec2006-06-26 00:27:38 -07003217{
NeilBrownbff61972009-03-31 14:33:13 +11003218 raid5_conf_t *conf = sh->raid_conf;
NeilBrownf4168852007-02-28 20:11:53 -08003219 int disks = sh->disks;
Dan Williamsa4456852007-07-09 11:56:43 -07003220 struct bio *return_bi = NULL;
NeilBrown34e04e82009-03-31 15:10:16 +11003221 int i, pd_idx = sh->pd_idx, qd_idx = sh->qd_idx;
Dan Williamsa4456852007-07-09 11:56:43 -07003222 struct stripe_head_state s;
3223 struct r6_state r6s;
NeilBrown16a53ec2006-06-26 00:27:38 -07003224 struct r5dev *dev, *pdev, *qdev;
Dan Williams6bfe0b42008-04-30 00:52:32 -07003225 mdk_rdev_t *blocked_rdev = NULL;
NeilBrown729a1862009-12-14 12:49:50 +11003226 int dec_preread_active = 0;
NeilBrown16a53ec2006-06-26 00:27:38 -07003227
Dan Williams45b42332007-07-09 11:56:43 -07003228 pr_debug("handling stripe %llu, state=%#lx cnt=%d, "
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003229 "pd_idx=%d, qd_idx=%d\n, check:%d, reconstruct:%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07003230 (unsigned long long)sh->sector, sh->state,
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003231 atomic_read(&sh->count), pd_idx, qd_idx,
3232 sh->check_state, sh->reconstruct_state);
Dan Williamsa4456852007-07-09 11:56:43 -07003233 memset(&s, 0, sizeof(s));
NeilBrown16a53ec2006-06-26 00:27:38 -07003234
3235 spin_lock(&sh->lock);
3236 clear_bit(STRIPE_HANDLE, &sh->state);
3237 clear_bit(STRIPE_DELAYED, &sh->state);
3238
Dan Williamsa4456852007-07-09 11:56:43 -07003239 s.syncing = test_bit(STRIPE_SYNCING, &sh->state);
3240 s.expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state);
3241 s.expanded = test_bit(STRIPE_EXPAND_READY, &sh->state);
NeilBrown16a53ec2006-06-26 00:27:38 -07003242 /* Now to look around and see what can be done */
3243
3244 rcu_read_lock();
3245 for (i=disks; i--; ) {
3246 mdk_rdev_t *rdev;
3247 dev = &sh->dev[i];
3248 clear_bit(R5_Insync, &dev->flags);
3249
Dan Williams45b42332007-07-09 11:56:43 -07003250 pr_debug("check %d: state 0x%lx read %p write %p written %p\n",
NeilBrown16a53ec2006-06-26 00:27:38 -07003251 i, dev->flags, dev->toread, dev->towrite, dev->written);
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003252 /* maybe we can reply to a read
3253 *
3254 * new wantfill requests are only permitted while
3255 * ops_complete_biofill is guaranteed to be inactive
3256 */
3257 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread &&
3258 !test_bit(STRIPE_BIOFILL_RUN, &sh->state))
3259 set_bit(R5_Wantfill, &dev->flags);
NeilBrown16a53ec2006-06-26 00:27:38 -07003260
3261 /* now count some things */
Dan Williamsa4456852007-07-09 11:56:43 -07003262 if (test_bit(R5_LOCKED, &dev->flags)) s.locked++;
3263 if (test_bit(R5_UPTODATE, &dev->flags)) s.uptodate++;
Dan Williams2d6e4ec2009-09-16 12:11:54 -07003264 if (test_bit(R5_Wantcompute, &dev->flags)) {
3265 s.compute++;
3266 BUG_ON(s.compute > 2);
3267 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003268
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003269 if (test_bit(R5_Wantfill, &dev->flags)) {
3270 s.to_fill++;
3271 } else if (dev->toread)
Dan Williamsa4456852007-07-09 11:56:43 -07003272 s.to_read++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003273 if (dev->towrite) {
Dan Williamsa4456852007-07-09 11:56:43 -07003274 s.to_write++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003275 if (!test_bit(R5_OVERWRITE, &dev->flags))
Dan Williamsa4456852007-07-09 11:56:43 -07003276 s.non_overwrite++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003277 }
Dan Williamsa4456852007-07-09 11:56:43 -07003278 if (dev->written)
3279 s.written++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003280 rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownac4090d2008-08-05 15:54:13 +10003281 if (blocked_rdev == NULL &&
3282 rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
Dan Williams6bfe0b42008-04-30 00:52:32 -07003283 blocked_rdev = rdev;
3284 atomic_inc(&rdev->nr_pending);
Dan Williams6bfe0b42008-04-30 00:52:32 -07003285 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003286 if (!rdev || !test_bit(In_sync, &rdev->flags)) {
3287 /* The ReadError flag will just be confusing now */
3288 clear_bit(R5_ReadError, &dev->flags);
3289 clear_bit(R5_ReWrite, &dev->flags);
3290 }
3291 if (!rdev || !test_bit(In_sync, &rdev->flags)
3292 || test_bit(R5_ReadError, &dev->flags)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003293 if (s.failed < 2)
3294 r6s.failed_num[s.failed] = i;
3295 s.failed++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003296 } else
3297 set_bit(R5_Insync, &dev->flags);
3298 }
3299 rcu_read_unlock();
Dan Williams6bfe0b42008-04-30 00:52:32 -07003300
3301 if (unlikely(blocked_rdev)) {
NeilBrownac4090d2008-08-05 15:54:13 +10003302 if (s.syncing || s.expanding || s.expanded ||
3303 s.to_write || s.written) {
3304 set_bit(STRIPE_HANDLE, &sh->state);
3305 goto unlock;
3306 }
3307 /* There is nothing for the blocked_rdev to block */
3308 rdev_dec_pending(blocked_rdev, conf->mddev);
3309 blocked_rdev = NULL;
Dan Williams6bfe0b42008-04-30 00:52:32 -07003310 }
NeilBrownac4090d2008-08-05 15:54:13 +10003311
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003312 if (s.to_fill && !test_bit(STRIPE_BIOFILL_RUN, &sh->state)) {
3313 set_bit(STRIPE_OP_BIOFILL, &s.ops_request);
3314 set_bit(STRIPE_BIOFILL_RUN, &sh->state);
3315 }
3316
Dan Williams45b42332007-07-09 11:56:43 -07003317 pr_debug("locked=%d uptodate=%d to_read=%d"
NeilBrown16a53ec2006-06-26 00:27:38 -07003318 " to_write=%d failed=%d failed_num=%d,%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07003319 s.locked, s.uptodate, s.to_read, s.to_write, s.failed,
3320 r6s.failed_num[0], r6s.failed_num[1]);
3321 /* check if the array has lost >2 devices and, if so, some requests
3322 * might need to be failed
NeilBrown16a53ec2006-06-26 00:27:38 -07003323 */
Dan Williamsa4456852007-07-09 11:56:43 -07003324 if (s.failed > 2 && s.to_read+s.to_write+s.written)
Dan Williams1fe797e2008-06-28 09:16:30 +10003325 handle_failed_stripe(conf, sh, &s, disks, &return_bi);
Dan Williamsa4456852007-07-09 11:56:43 -07003326 if (s.failed > 2 && s.syncing) {
NeilBrown16a53ec2006-06-26 00:27:38 -07003327 md_done_sync(conf->mddev, STRIPE_SECTORS,0);
3328 clear_bit(STRIPE_SYNCING, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07003329 s.syncing = 0;
NeilBrown16a53ec2006-06-26 00:27:38 -07003330 }
3331
3332 /*
3333 * might be able to return some write requests if the parity blocks
3334 * are safe, or on a failed drive
3335 */
3336 pdev = &sh->dev[pd_idx];
Dan Williamsa4456852007-07-09 11:56:43 -07003337 r6s.p_failed = (s.failed >= 1 && r6s.failed_num[0] == pd_idx)
3338 || (s.failed >= 2 && r6s.failed_num[1] == pd_idx);
NeilBrown34e04e82009-03-31 15:10:16 +11003339 qdev = &sh->dev[qd_idx];
3340 r6s.q_failed = (s.failed >= 1 && r6s.failed_num[0] == qd_idx)
3341 || (s.failed >= 2 && r6s.failed_num[1] == qd_idx);
NeilBrown16a53ec2006-06-26 00:27:38 -07003342
Dan Williamsa4456852007-07-09 11:56:43 -07003343 if ( s.written &&
3344 ( r6s.p_failed || ((test_bit(R5_Insync, &pdev->flags)
NeilBrown16a53ec2006-06-26 00:27:38 -07003345 && !test_bit(R5_LOCKED, &pdev->flags)
Dan Williamsa4456852007-07-09 11:56:43 -07003346 && test_bit(R5_UPTODATE, &pdev->flags)))) &&
3347 ( r6s.q_failed || ((test_bit(R5_Insync, &qdev->flags)
NeilBrown16a53ec2006-06-26 00:27:38 -07003348 && !test_bit(R5_LOCKED, &qdev->flags)
Dan Williamsa4456852007-07-09 11:56:43 -07003349 && test_bit(R5_UPTODATE, &qdev->flags)))))
Dan Williams1fe797e2008-06-28 09:16:30 +10003350 handle_stripe_clean_event(conf, sh, disks, &return_bi);
NeilBrown16a53ec2006-06-26 00:27:38 -07003351
3352 /* Now we might consider reading some blocks, either to check/generate
3353 * parity, or to satisfy requests
3354 * or to load a block that is being partially written.
3355 */
Dan Williamsa4456852007-07-09 11:56:43 -07003356 if (s.to_read || s.non_overwrite || (s.to_write && s.failed) ||
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003357 (s.syncing && (s.uptodate + s.compute < disks)) || s.expanding)
Dan Williams1fe797e2008-06-28 09:16:30 +10003358 handle_stripe_fill6(sh, &s, &r6s, disks);
NeilBrown16a53ec2006-06-26 00:27:38 -07003359
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003360 /* Now we check to see if any write operations have recently
3361 * completed
3362 */
3363 if (sh->reconstruct_state == reconstruct_state_drain_result) {
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003364
3365 sh->reconstruct_state = reconstruct_state_idle;
3366 /* All the 'written' buffers and the parity blocks are ready to
3367 * be written back to disk
3368 */
3369 BUG_ON(!test_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags));
3370 BUG_ON(!test_bit(R5_UPTODATE, &sh->dev[qd_idx].flags));
3371 for (i = disks; i--; ) {
3372 dev = &sh->dev[i];
3373 if (test_bit(R5_LOCKED, &dev->flags) &&
3374 (i == sh->pd_idx || i == qd_idx ||
3375 dev->written)) {
3376 pr_debug("Writing block %d\n", i);
3377 BUG_ON(!test_bit(R5_UPTODATE, &dev->flags));
3378 set_bit(R5_Wantwrite, &dev->flags);
3379 if (!test_bit(R5_Insync, &dev->flags) ||
3380 ((i == sh->pd_idx || i == qd_idx) &&
3381 s.failed == 0))
3382 set_bit(STRIPE_INSYNC, &sh->state);
3383 }
3384 }
NeilBrown729a1862009-12-14 12:49:50 +11003385 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3386 dec_preread_active = 1;
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003387 }
3388
Yuri Tikhonova9b39a72009-08-29 19:13:12 -07003389 /* Now to consider new write requests and what else, if anything
3390 * should be read. We do not handle new writes when:
3391 * 1/ A 'write' operation (copy+gen_syndrome) is already in flight.
3392 * 2/ A 'check' operation is in flight, as it may clobber the parity
3393 * block.
3394 */
3395 if (s.to_write && !sh->reconstruct_state && !sh->check_state)
Dan Williams1fe797e2008-06-28 09:16:30 +10003396 handle_stripe_dirtying6(conf, sh, &s, &r6s, disks);
NeilBrown16a53ec2006-06-26 00:27:38 -07003397
3398 /* maybe we need to check and possibly fix the parity for this stripe
Dan Williamsa4456852007-07-09 11:56:43 -07003399 * Any reads will already have been scheduled, so we just see if enough
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003400 * data is available. The parity check is held off while parity
3401 * dependent operations are in flight.
NeilBrown16a53ec2006-06-26 00:27:38 -07003402 */
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003403 if (sh->check_state ||
3404 (s.syncing && s.locked == 0 &&
3405 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
3406 !test_bit(STRIPE_INSYNC, &sh->state)))
Dan Williams36d1c642009-07-14 11:48:22 -07003407 handle_parity_checks6(conf, sh, &s, &r6s, disks);
NeilBrown16a53ec2006-06-26 00:27:38 -07003408
Dan Williamsa4456852007-07-09 11:56:43 -07003409 if (s.syncing && s.locked == 0 && test_bit(STRIPE_INSYNC, &sh->state)) {
NeilBrown16a53ec2006-06-26 00:27:38 -07003410 md_done_sync(conf->mddev, STRIPE_SECTORS,1);
3411 clear_bit(STRIPE_SYNCING, &sh->state);
3412 }
3413
3414 /* If the failed drives are just a ReadError, then we might need
3415 * to progress the repair/check process
3416 */
Dan Williamsa4456852007-07-09 11:56:43 -07003417 if (s.failed <= 2 && !conf->mddev->ro)
3418 for (i = 0; i < s.failed; i++) {
3419 dev = &sh->dev[r6s.failed_num[i]];
NeilBrown16a53ec2006-06-26 00:27:38 -07003420 if (test_bit(R5_ReadError, &dev->flags)
3421 && !test_bit(R5_LOCKED, &dev->flags)
3422 && test_bit(R5_UPTODATE, &dev->flags)
3423 ) {
3424 if (!test_bit(R5_ReWrite, &dev->flags)) {
3425 set_bit(R5_Wantwrite, &dev->flags);
3426 set_bit(R5_ReWrite, &dev->flags);
3427 set_bit(R5_LOCKED, &dev->flags);
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003428 s.locked++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003429 } else {
3430 /* let's read it back */
3431 set_bit(R5_Wantread, &dev->flags);
3432 set_bit(R5_LOCKED, &dev->flags);
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003433 s.locked++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003434 }
3435 }
3436 }
NeilBrownf4168852007-02-28 20:11:53 -08003437
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003438 /* Finish reconstruct operations initiated by the expansion process */
3439 if (sh->reconstruct_state == reconstruct_state_result) {
3440 sh->reconstruct_state = reconstruct_state_idle;
3441 clear_bit(STRIPE_EXPANDING, &sh->state);
3442 for (i = conf->raid_disks; i--; ) {
3443 set_bit(R5_Wantwrite, &sh->dev[i].flags);
3444 set_bit(R5_LOCKED, &sh->dev[i].flags);
3445 s.locked++;
3446 }
3447 }
3448
3449 if (s.expanded && test_bit(STRIPE_EXPANDING, &sh->state) &&
3450 !sh->reconstruct_state) {
NeilBrownab69ae12009-03-31 15:26:47 +11003451 struct stripe_head *sh2
NeilBrowna8c906c2009-06-09 14:39:59 +10003452 = get_active_stripe(conf, sh->sector, 1, 1, 1);
NeilBrownab69ae12009-03-31 15:26:47 +11003453 if (sh2 && test_bit(STRIPE_EXPAND_SOURCE, &sh2->state)) {
3454 /* sh cannot be written until sh2 has been read.
3455 * so arrange for sh to be delayed a little
3456 */
3457 set_bit(STRIPE_DELAYED, &sh->state);
3458 set_bit(STRIPE_HANDLE, &sh->state);
3459 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE,
3460 &sh2->state))
3461 atomic_inc(&conf->preread_active_stripes);
3462 release_stripe(sh2);
3463 goto unlock;
3464 }
3465 if (sh2)
3466 release_stripe(sh2);
3467
NeilBrownf4168852007-02-28 20:11:53 -08003468 /* Need to write out all blocks after computing P&Q */
3469 sh->disks = conf->raid_disks;
NeilBrown911d4ee2009-03-31 14:39:38 +11003470 stripe_set_idx(sh->sector, conf, 0, sh);
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003471 schedule_reconstruction(sh, &s, 1, 1);
3472 } else if (s.expanded && !sh->reconstruct_state && s.locked == 0) {
NeilBrownf4168852007-02-28 20:11:53 -08003473 clear_bit(STRIPE_EXPAND_READY, &sh->state);
3474 atomic_dec(&conf->reshape_stripes);
3475 wake_up(&conf->wait_for_overlap);
3476 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
3477 }
3478
Dan Williams0f94e872008-01-08 15:32:53 -08003479 if (s.expanding && s.locked == 0 &&
Dan Williams976ea8d2008-06-28 08:32:03 +10003480 !test_bit(STRIPE_COMPUTE_RUN, &sh->state))
Dan Williamsa4456852007-07-09 11:56:43 -07003481 handle_stripe_expansion(conf, sh, &r6s);
NeilBrownf4168852007-02-28 20:11:53 -08003482
Dan Williams6bfe0b42008-04-30 00:52:32 -07003483 unlock:
NeilBrown16a53ec2006-06-26 00:27:38 -07003484 spin_unlock(&sh->lock);
3485
Dan Williams6bfe0b42008-04-30 00:52:32 -07003486 /* wait for this device to become unblocked */
3487 if (unlikely(blocked_rdev))
3488 md_wait_for_blocked_rdev(blocked_rdev, conf->mddev);
3489
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003490 if (s.ops_request)
3491 raid_run_ops(sh, s.ops_request);
3492
Dan Williamsf0e43bc2008-06-28 08:31:55 +10003493 ops_run_io(sh, &s);
3494
NeilBrown729a1862009-12-14 12:49:50 +11003495
3496 if (dec_preread_active) {
3497 /* We delay this until after ops_run_io so that if make_request
3498 * is waiting on a barrier, it won't continue until the writes
3499 * have actually been submitted.
3500 */
3501 atomic_dec(&conf->preread_active_stripes);
3502 if (atomic_read(&conf->preread_active_stripes) <
3503 IO_THRESHOLD)
3504 md_wakeup_thread(conf->mddev->thread);
3505 }
3506
Dan Williamsa4456852007-07-09 11:56:43 -07003507 return_io(return_bi);
NeilBrown16a53ec2006-06-26 00:27:38 -07003508}
3509
NeilBrown14425772009-10-16 15:55:25 +11003510static void handle_stripe(struct stripe_head *sh)
NeilBrown16a53ec2006-06-26 00:27:38 -07003511{
3512 if (sh->raid_conf->level == 6)
NeilBrown14425772009-10-16 15:55:25 +11003513 handle_stripe6(sh);
NeilBrown16a53ec2006-06-26 00:27:38 -07003514 else
NeilBrown14425772009-10-16 15:55:25 +11003515 handle_stripe5(sh);
NeilBrown16a53ec2006-06-26 00:27:38 -07003516}
3517
Arjan van de Ven858119e2006-01-14 13:20:43 -08003518static void raid5_activate_delayed(raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519{
3520 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD) {
3521 while (!list_empty(&conf->delayed_list)) {
3522 struct list_head *l = conf->delayed_list.next;
3523 struct stripe_head *sh;
3524 sh = list_entry(l, struct stripe_head, lru);
3525 list_del_init(l);
3526 clear_bit(STRIPE_DELAYED, &sh->state);
3527 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3528 atomic_inc(&conf->preread_active_stripes);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003529 list_add_tail(&sh->lru, &conf->hold_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530 }
NeilBrown6ed30032008-02-06 01:40:00 -08003531 } else
3532 blk_plug_device(conf->mddev->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533}
3534
Arjan van de Ven858119e2006-01-14 13:20:43 -08003535static void activate_bit_delay(raid5_conf_t *conf)
NeilBrown72626682005-09-09 16:23:54 -07003536{
3537 /* device_lock is held */
3538 struct list_head head;
3539 list_add(&head, &conf->bitmap_list);
3540 list_del_init(&conf->bitmap_list);
3541 while (!list_empty(&head)) {
3542 struct stripe_head *sh = list_entry(head.next, struct stripe_head, lru);
3543 list_del_init(&sh->lru);
3544 atomic_inc(&sh->count);
3545 __release_stripe(conf, sh);
3546 }
3547}
3548
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549static void unplug_slaves(mddev_t *mddev)
3550{
NeilBrown070ec552009-06-16 16:54:21 +10003551 raid5_conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552 int i;
NeilBrown5e5e3e72009-10-16 16:35:30 +11003553 int devs = max(conf->raid_disks, conf->previous_raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554
3555 rcu_read_lock();
NeilBrown5e5e3e72009-10-16 16:35:30 +11003556 for (i = 0; i < devs; i++) {
Suzanne Woodd6065f72005-11-08 21:39:27 -08003557 mdk_rdev_t *rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownb2d444d2005-11-08 21:39:31 -08003558 if (rdev && !test_bit(Faulty, &rdev->flags) && atomic_read(&rdev->nr_pending)) {
Jens Axboe165125e2007-07-24 09:28:11 +02003559 struct request_queue *r_queue = bdev_get_queue(rdev->bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560
3561 atomic_inc(&rdev->nr_pending);
3562 rcu_read_unlock();
3563
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -05003564 blk_unplug(r_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565
3566 rdev_dec_pending(rdev, mddev);
3567 rcu_read_lock();
3568 }
3569 }
3570 rcu_read_unlock();
3571}
3572
Jens Axboe165125e2007-07-24 09:28:11 +02003573static void raid5_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574{
3575 mddev_t *mddev = q->queuedata;
NeilBrown070ec552009-06-16 16:54:21 +10003576 raid5_conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577 unsigned long flags;
3578
3579 spin_lock_irqsave(&conf->device_lock, flags);
3580
NeilBrown72626682005-09-09 16:23:54 -07003581 if (blk_remove_plug(q)) {
3582 conf->seq_flush++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583 raid5_activate_delayed(conf);
NeilBrown72626682005-09-09 16:23:54 -07003584 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585 md_wakeup_thread(mddev->thread);
3586
3587 spin_unlock_irqrestore(&conf->device_lock, flags);
3588
3589 unplug_slaves(mddev);
3590}
3591
NeilBrownf022b2f2006-10-03 01:15:56 -07003592static int raid5_congested(void *data, int bits)
3593{
3594 mddev_t *mddev = data;
NeilBrown070ec552009-06-16 16:54:21 +10003595 raid5_conf_t *conf = mddev->private;
NeilBrownf022b2f2006-10-03 01:15:56 -07003596
3597 /* No difference between reads and writes. Just check
3598 * how busy the stripe_cache is
3599 */
NeilBrown3fa841d2009-09-23 18:10:29 +10003600
3601 if (mddev_congested(mddev, bits))
3602 return 1;
NeilBrownf022b2f2006-10-03 01:15:56 -07003603 if (conf->inactive_blocked)
3604 return 1;
3605 if (conf->quiesce)
3606 return 1;
3607 if (list_empty_careful(&conf->inactive_list))
3608 return 1;
3609
3610 return 0;
3611}
3612
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003613/* We want read requests to align with chunks where possible,
3614 * but write requests don't need to.
3615 */
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003616static int raid5_mergeable_bvec(struct request_queue *q,
3617 struct bvec_merge_data *bvm,
3618 struct bio_vec *biovec)
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003619{
3620 mddev_t *mddev = q->queuedata;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003621 sector_t sector = bvm->bi_sector + get_start_sect(bvm->bi_bdev);
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003622 int max;
Andre Noll9d8f0362009-06-18 08:45:01 +10003623 unsigned int chunk_sectors = mddev->chunk_sectors;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003624 unsigned int bio_sectors = bvm->bi_size >> 9;
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003625
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003626 if ((bvm->bi_rw & 1) == WRITE)
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003627 return biovec->bv_len; /* always allow writes to be mergeable */
3628
Andre Noll664e7c42009-06-18 08:45:27 +10003629 if (mddev->new_chunk_sectors < mddev->chunk_sectors)
3630 chunk_sectors = mddev->new_chunk_sectors;
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003631 max = (chunk_sectors - ((sector & (chunk_sectors - 1)) + bio_sectors)) << 9;
3632 if (max < 0) max = 0;
3633 if (max <= biovec->bv_len && bio_sectors == 0)
3634 return biovec->bv_len;
3635 else
3636 return max;
3637}
3638
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003639
3640static int in_chunk_boundary(mddev_t *mddev, struct bio *bio)
3641{
3642 sector_t sector = bio->bi_sector + get_start_sect(bio->bi_bdev);
Andre Noll9d8f0362009-06-18 08:45:01 +10003643 unsigned int chunk_sectors = mddev->chunk_sectors;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003644 unsigned int bio_sectors = bio->bi_size >> 9;
3645
Andre Noll664e7c42009-06-18 08:45:27 +10003646 if (mddev->new_chunk_sectors < mddev->chunk_sectors)
3647 chunk_sectors = mddev->new_chunk_sectors;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003648 return chunk_sectors >=
3649 ((sector & (chunk_sectors - 1)) + bio_sectors);
3650}
3651
3652/*
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003653 * add bio to the retry LIFO ( in O(1) ... we are in interrupt )
3654 * later sampled by raid5d.
3655 */
3656static void add_bio_to_retry(struct bio *bi,raid5_conf_t *conf)
3657{
3658 unsigned long flags;
3659
3660 spin_lock_irqsave(&conf->device_lock, flags);
3661
3662 bi->bi_next = conf->retry_read_aligned_list;
3663 conf->retry_read_aligned_list = bi;
3664
3665 spin_unlock_irqrestore(&conf->device_lock, flags);
3666 md_wakeup_thread(conf->mddev->thread);
3667}
3668
3669
3670static struct bio *remove_bio_from_retry(raid5_conf_t *conf)
3671{
3672 struct bio *bi;
3673
3674 bi = conf->retry_read_aligned;
3675 if (bi) {
3676 conf->retry_read_aligned = NULL;
3677 return bi;
3678 }
3679 bi = conf->retry_read_aligned_list;
3680 if(bi) {
Neil Brown387bb172007-02-08 14:20:29 -08003681 conf->retry_read_aligned_list = bi->bi_next;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003682 bi->bi_next = NULL;
Jens Axboe960e7392008-08-15 10:41:18 +02003683 /*
3684 * this sets the active strip count to 1 and the processed
3685 * strip count to zero (upper 8 bits)
3686 */
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003687 bi->bi_phys_segments = 1; /* biased count of active stripes */
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003688 }
3689
3690 return bi;
3691}
3692
3693
3694/*
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003695 * The "raid5_align_endio" should check if the read succeeded and if it
3696 * did, call bio_endio on the original bio (having bio_put the new bio
3697 * first).
3698 * If the read failed..
3699 */
NeilBrown6712ecf2007-09-27 12:47:43 +02003700static void raid5_align_endio(struct bio *bi, int error)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003701{
3702 struct bio* raid_bi = bi->bi_private;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003703 mddev_t *mddev;
3704 raid5_conf_t *conf;
3705 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
3706 mdk_rdev_t *rdev;
3707
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003708 bio_put(bi);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003709
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003710 rdev = (void*)raid_bi->bi_next;
3711 raid_bi->bi_next = NULL;
NeilBrown2b7f2222010-03-25 16:06:03 +11003712 mddev = rdev->mddev;
3713 conf = mddev->private;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003714
3715 rdev_dec_pending(rdev, conf->mddev);
3716
3717 if (!error && uptodate) {
NeilBrown6712ecf2007-09-27 12:47:43 +02003718 bio_endio(raid_bi, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003719 if (atomic_dec_and_test(&conf->active_aligned_reads))
3720 wake_up(&conf->wait_for_stripe);
NeilBrown6712ecf2007-09-27 12:47:43 +02003721 return;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003722 }
3723
3724
Dan Williams45b42332007-07-09 11:56:43 -07003725 pr_debug("raid5_align_endio : io error...handing IO for a retry\n");
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003726
3727 add_bio_to_retry(raid_bi, conf);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003728}
3729
Neil Brown387bb172007-02-08 14:20:29 -08003730static int bio_fits_rdev(struct bio *bi)
3731{
Jens Axboe165125e2007-07-24 09:28:11 +02003732 struct request_queue *q = bdev_get_queue(bi->bi_bdev);
Neil Brown387bb172007-02-08 14:20:29 -08003733
Martin K. Petersenae03bf62009-05-22 17:17:50 -04003734 if ((bi->bi_size>>9) > queue_max_sectors(q))
Neil Brown387bb172007-02-08 14:20:29 -08003735 return 0;
3736 blk_recount_segments(q, bi);
Martin K. Petersen8a783622010-02-26 00:20:39 -05003737 if (bi->bi_phys_segments > queue_max_segments(q))
Neil Brown387bb172007-02-08 14:20:29 -08003738 return 0;
3739
3740 if (q->merge_bvec_fn)
3741 /* it's too hard to apply the merge_bvec_fn at this stage,
3742 * just just give up
3743 */
3744 return 0;
3745
3746 return 1;
3747}
3748
3749
NeilBrown21a52c62010-04-01 15:02:13 +11003750static int chunk_aligned_read(mddev_t *mddev, struct bio * raid_bio)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003751{
NeilBrown070ec552009-06-16 16:54:21 +10003752 raid5_conf_t *conf = mddev->private;
NeilBrown8553fe72009-12-14 12:49:47 +11003753 int dd_idx;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003754 struct bio* align_bi;
3755 mdk_rdev_t *rdev;
3756
3757 if (!in_chunk_boundary(mddev, raid_bio)) {
Dan Williams45b42332007-07-09 11:56:43 -07003758 pr_debug("chunk_aligned_read : non aligned\n");
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003759 return 0;
3760 }
3761 /*
NeilBrown99c0fb52009-03-31 14:39:38 +11003762 * use bio_clone to make a copy of the bio
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003763 */
3764 align_bi = bio_clone(raid_bio, GFP_NOIO);
3765 if (!align_bi)
3766 return 0;
3767 /*
3768 * set bi_end_io to a new function, and set bi_private to the
3769 * original bio.
3770 */
3771 align_bi->bi_end_io = raid5_align_endio;
3772 align_bi->bi_private = raid_bio;
3773 /*
3774 * compute position
3775 */
NeilBrown112bf892009-03-31 14:39:38 +11003776 align_bi->bi_sector = raid5_compute_sector(conf, raid_bio->bi_sector,
3777 0,
NeilBrown911d4ee2009-03-31 14:39:38 +11003778 &dd_idx, NULL);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003779
3780 rcu_read_lock();
3781 rdev = rcu_dereference(conf->disks[dd_idx].rdev);
3782 if (rdev && test_bit(In_sync, &rdev->flags)) {
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003783 atomic_inc(&rdev->nr_pending);
3784 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003785 raid_bio->bi_next = (void*)rdev;
3786 align_bi->bi_bdev = rdev->bdev;
3787 align_bi->bi_flags &= ~(1 << BIO_SEG_VALID);
3788 align_bi->bi_sector += rdev->data_offset;
3789
Neil Brown387bb172007-02-08 14:20:29 -08003790 if (!bio_fits_rdev(align_bi)) {
3791 /* too big in some way */
3792 bio_put(align_bi);
3793 rdev_dec_pending(rdev, mddev);
3794 return 0;
3795 }
3796
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003797 spin_lock_irq(&conf->device_lock);
3798 wait_event_lock_irq(conf->wait_for_stripe,
3799 conf->quiesce == 0,
3800 conf->device_lock, /* nothing */);
3801 atomic_inc(&conf->active_aligned_reads);
3802 spin_unlock_irq(&conf->device_lock);
3803
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003804 generic_make_request(align_bi);
3805 return 1;
3806 } else {
3807 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003808 bio_put(align_bi);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003809 return 0;
3810 }
3811}
3812
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003813/* __get_priority_stripe - get the next stripe to process
3814 *
3815 * Full stripe writes are allowed to pass preread active stripes up until
3816 * the bypass_threshold is exceeded. In general the bypass_count
3817 * increments when the handle_list is handled before the hold_list; however, it
3818 * will not be incremented when STRIPE_IO_STARTED is sampled set signifying a
3819 * stripe with in flight i/o. The bypass_count will be reset when the
3820 * head of the hold_list has changed, i.e. the head was promoted to the
3821 * handle_list.
3822 */
3823static struct stripe_head *__get_priority_stripe(raid5_conf_t *conf)
3824{
3825 struct stripe_head *sh;
3826
3827 pr_debug("%s: handle: %s hold: %s full_writes: %d bypass_count: %d\n",
3828 __func__,
3829 list_empty(&conf->handle_list) ? "empty" : "busy",
3830 list_empty(&conf->hold_list) ? "empty" : "busy",
3831 atomic_read(&conf->pending_full_writes), conf->bypass_count);
3832
3833 if (!list_empty(&conf->handle_list)) {
3834 sh = list_entry(conf->handle_list.next, typeof(*sh), lru);
3835
3836 if (list_empty(&conf->hold_list))
3837 conf->bypass_count = 0;
3838 else if (!test_bit(STRIPE_IO_STARTED, &sh->state)) {
3839 if (conf->hold_list.next == conf->last_hold)
3840 conf->bypass_count++;
3841 else {
3842 conf->last_hold = conf->hold_list.next;
3843 conf->bypass_count -= conf->bypass_threshold;
3844 if (conf->bypass_count < 0)
3845 conf->bypass_count = 0;
3846 }
3847 }
3848 } else if (!list_empty(&conf->hold_list) &&
3849 ((conf->bypass_threshold &&
3850 conf->bypass_count > conf->bypass_threshold) ||
3851 atomic_read(&conf->pending_full_writes) == 0)) {
3852 sh = list_entry(conf->hold_list.next,
3853 typeof(*sh), lru);
3854 conf->bypass_count -= conf->bypass_threshold;
3855 if (conf->bypass_count < 0)
3856 conf->bypass_count = 0;
3857 } else
3858 return NULL;
3859
3860 list_del_init(&sh->lru);
3861 atomic_inc(&sh->count);
3862 BUG_ON(atomic_read(&sh->count) != 1);
3863 return sh;
3864}
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003865
NeilBrown21a52c62010-04-01 15:02:13 +11003866static int make_request(mddev_t *mddev, struct bio * bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867{
NeilBrown070ec552009-06-16 16:54:21 +10003868 raid5_conf_t *conf = mddev->private;
NeilBrown911d4ee2009-03-31 14:39:38 +11003869 int dd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870 sector_t new_sector;
3871 sector_t logical_sector, last_sector;
3872 struct stripe_head *sh;
Jens Axboea3623572005-11-01 09:26:16 +01003873 const int rw = bio_data_dir(bi);
NeilBrown49077322010-03-25 16:20:56 +11003874 int remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875
Jens Axboe1f98a132009-09-11 14:32:04 +02003876 if (unlikely(bio_rw_flagged(bi, BIO_RW_BARRIER))) {
NeilBrowna2826aa2009-12-14 12:49:49 +11003877 /* Drain all pending writes. We only really need
3878 * to ensure they have been submitted, but this is
3879 * easier.
3880 */
3881 mddev->pers->quiesce(mddev, 1);
3882 mddev->pers->quiesce(mddev, 0);
3883 md_barrier_request(mddev, bi);
NeilBrowne5dcdd82005-09-09 16:23:41 -07003884 return 0;
3885 }
3886
NeilBrown3d310eb2005-06-21 17:17:26 -07003887 md_write_start(mddev, bi);
NeilBrown06d91a52005-06-21 17:17:12 -07003888
NeilBrown802ba062006-12-13 00:34:13 -08003889 if (rw == READ &&
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08003890 mddev->reshape_position == MaxSector &&
NeilBrown21a52c62010-04-01 15:02:13 +11003891 chunk_aligned_read(mddev,bi))
NeilBrown99c0fb52009-03-31 14:39:38 +11003892 return 0;
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08003893
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894 logical_sector = bi->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
3895 last_sector = bi->bi_sector + (bi->bi_size>>9);
3896 bi->bi_next = NULL;
3897 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
NeilBrown06d91a52005-06-21 17:17:12 -07003898
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899 for (;logical_sector < last_sector; logical_sector += STRIPE_SECTORS) {
3900 DEFINE_WAIT(w);
NeilBrown16a53ec2006-06-26 00:27:38 -07003901 int disks, data_disks;
NeilBrownb5663ba2009-03-31 14:39:38 +11003902 int previous;
NeilBrownb578d552006-03-27 01:18:12 -08003903
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003904 retry:
NeilBrownb5663ba2009-03-31 14:39:38 +11003905 previous = 0;
NeilBrownb0f9ec02009-03-31 15:27:18 +11003906 disks = conf->raid_disks;
NeilBrownb578d552006-03-27 01:18:12 -08003907 prepare_to_wait(&conf->wait_for_overlap, &w, TASK_UNINTERRUPTIBLE);
NeilBrownb0f9ec02009-03-31 15:27:18 +11003908 if (unlikely(conf->reshape_progress != MaxSector)) {
NeilBrownfef9c612009-03-31 15:16:46 +11003909 /* spinlock is needed as reshape_progress may be
NeilBrowndf8e7f72006-03-27 01:18:15 -08003910 * 64bit on a 32bit platform, and so it might be
3911 * possible to see a half-updated value
NeilBrownfef9c612009-03-31 15:16:46 +11003912 * Ofcourse reshape_progress could change after
NeilBrowndf8e7f72006-03-27 01:18:15 -08003913 * the lock is dropped, so once we get a reference
3914 * to the stripe that we think it is, we will have
3915 * to check again.
3916 */
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003917 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11003918 if (mddev->delta_disks < 0
3919 ? logical_sector < conf->reshape_progress
3920 : logical_sector >= conf->reshape_progress) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003921 disks = conf->previous_raid_disks;
NeilBrownb5663ba2009-03-31 14:39:38 +11003922 previous = 1;
3923 } else {
NeilBrownfef9c612009-03-31 15:16:46 +11003924 if (mddev->delta_disks < 0
3925 ? logical_sector < conf->reshape_safe
3926 : logical_sector >= conf->reshape_safe) {
NeilBrownb578d552006-03-27 01:18:12 -08003927 spin_unlock_irq(&conf->device_lock);
3928 schedule();
3929 goto retry;
3930 }
3931 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003932 spin_unlock_irq(&conf->device_lock);
3933 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003934 data_disks = disks - conf->max_degraded;
3935
NeilBrown112bf892009-03-31 14:39:38 +11003936 new_sector = raid5_compute_sector(conf, logical_sector,
3937 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11003938 &dd_idx, NULL);
NeilBrown0c55e022010-05-03 14:09:02 +10003939 pr_debug("raid456: make_request, sector %llu logical %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940 (unsigned long long)new_sector,
3941 (unsigned long long)logical_sector);
3942
NeilBrownb5663ba2009-03-31 14:39:38 +11003943 sh = get_active_stripe(conf, new_sector, previous,
NeilBrowna8c906c2009-06-09 14:39:59 +10003944 (bi->bi_rw&RWA_MASK), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945 if (sh) {
NeilBrownb0f9ec02009-03-31 15:27:18 +11003946 if (unlikely(previous)) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003947 /* expansion might have moved on while waiting for a
NeilBrowndf8e7f72006-03-27 01:18:15 -08003948 * stripe, so we must do the range check again.
3949 * Expansion could still move past after this
3950 * test, but as we are holding a reference to
3951 * 'sh', we know that if that happens,
3952 * STRIPE_EXPANDING will get set and the expansion
3953 * won't proceed until we finish with the stripe.
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003954 */
3955 int must_retry = 0;
3956 spin_lock_irq(&conf->device_lock);
NeilBrownb0f9ec02009-03-31 15:27:18 +11003957 if (mddev->delta_disks < 0
3958 ? logical_sector >= conf->reshape_progress
3959 : logical_sector < conf->reshape_progress)
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003960 /* mismatch, need to try again */
3961 must_retry = 1;
3962 spin_unlock_irq(&conf->device_lock);
3963 if (must_retry) {
3964 release_stripe(sh);
Dan Williams7a3ab902009-06-16 16:00:33 -07003965 schedule();
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003966 goto retry;
3967 }
3968 }
NeilBrowne62e58a2009-07-01 13:15:35 +10003969
NeilBrowna5c308d2009-07-01 13:15:35 +10003970 if (bio_data_dir(bi) == WRITE &&
3971 logical_sector >= mddev->suspend_lo &&
NeilBrowne464eaf2006-03-27 01:18:14 -08003972 logical_sector < mddev->suspend_hi) {
3973 release_stripe(sh);
NeilBrowne62e58a2009-07-01 13:15:35 +10003974 /* As the suspend_* range is controlled by
3975 * userspace, we want an interruptible
3976 * wait.
3977 */
3978 flush_signals(current);
3979 prepare_to_wait(&conf->wait_for_overlap,
3980 &w, TASK_INTERRUPTIBLE);
3981 if (logical_sector >= mddev->suspend_lo &&
3982 logical_sector < mddev->suspend_hi)
3983 schedule();
NeilBrowne464eaf2006-03-27 01:18:14 -08003984 goto retry;
3985 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003986
3987 if (test_bit(STRIPE_EXPANDING, &sh->state) ||
3988 !add_stripe_bio(sh, bi, dd_idx, (bi->bi_rw&RW_MASK))) {
3989 /* Stripe is busy expanding or
3990 * add failed due to overlap. Flush everything
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991 * and wait a while
3992 */
3993 raid5_unplug_device(mddev->queue);
3994 release_stripe(sh);
3995 schedule();
3996 goto retry;
3997 }
3998 finish_wait(&conf->wait_for_overlap, &w);
NeilBrown6ed30032008-02-06 01:40:00 -08003999 set_bit(STRIPE_HANDLE, &sh->state);
4000 clear_bit(STRIPE_DELAYED, &sh->state);
NeilBrown729a1862009-12-14 12:49:50 +11004001 if (mddev->barrier &&
4002 !test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
4003 atomic_inc(&conf->preread_active_stripes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005 } else {
4006 /* cannot get stripe for read-ahead, just give-up */
4007 clear_bit(BIO_UPTODATE, &bi->bi_flags);
4008 finish_wait(&conf->wait_for_overlap, &w);
4009 break;
4010 }
4011
4012 }
4013 spin_lock_irq(&conf->device_lock);
Jens Axboe960e7392008-08-15 10:41:18 +02004014 remaining = raid5_dec_bi_phys_segments(bi);
NeilBrownf6344752006-03-27 01:18:17 -08004015 spin_unlock_irq(&conf->device_lock);
4016 if (remaining == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017
NeilBrown16a53ec2006-06-26 00:27:38 -07004018 if ( rw == WRITE )
Linus Torvalds1da177e2005-04-16 15:20:36 -07004019 md_write_end(mddev);
NeilBrown6712ecf2007-09-27 12:47:43 +02004020
Neil Brown0e13fe232008-06-28 08:31:20 +10004021 bio_endio(bi, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022 }
NeilBrown729a1862009-12-14 12:49:50 +11004023
4024 if (mddev->barrier) {
4025 /* We need to wait for the stripes to all be handled.
4026 * So: wait for preread_active_stripes to drop to 0.
4027 */
4028 wait_event(mddev->thread->wqueue,
4029 atomic_read(&conf->preread_active_stripes) == 0);
4030 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031 return 0;
4032}
4033
Dan Williamsb522adc2009-03-31 15:00:31 +11004034static sector_t raid5_size(mddev_t *mddev, sector_t sectors, int raid_disks);
4035
NeilBrown52c03292006-06-26 00:27:43 -07004036static sector_t reshape_request(mddev_t *mddev, sector_t sector_nr, int *skipped)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004037{
NeilBrown52c03292006-06-26 00:27:43 -07004038 /* reshaping is quite different to recovery/resync so it is
4039 * handled quite separately ... here.
4040 *
4041 * On each call to sync_request, we gather one chunk worth of
4042 * destination stripes and flag them as expanding.
4043 * Then we find all the source stripes and request reads.
4044 * As the reads complete, handle_stripe will copy the data
4045 * into the destination stripe and release that stripe.
4046 */
H Hartley Sweeten7b928132010-03-08 16:02:40 +11004047 raid5_conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048 struct stripe_head *sh;
NeilBrownccfcc3c2006-03-27 01:18:09 -08004049 sector_t first_sector, last_sector;
NeilBrownf4168852007-02-28 20:11:53 -08004050 int raid_disks = conf->previous_raid_disks;
4051 int data_disks = raid_disks - conf->max_degraded;
4052 int new_data_disks = conf->raid_disks - conf->max_degraded;
NeilBrown52c03292006-06-26 00:27:43 -07004053 int i;
4054 int dd_idx;
NeilBrownc8f517c2009-03-31 15:28:40 +11004055 sector_t writepos, readpos, safepos;
NeilBrownec32a2b2009-03-31 15:17:38 +11004056 sector_t stripe_addr;
NeilBrown7a661382009-03-31 15:21:40 +11004057 int reshape_sectors;
NeilBrownab69ae12009-03-31 15:26:47 +11004058 struct list_head stripes;
NeilBrown52c03292006-06-26 00:27:43 -07004059
NeilBrownfef9c612009-03-31 15:16:46 +11004060 if (sector_nr == 0) {
4061 /* If restarting in the middle, skip the initial sectors */
4062 if (mddev->delta_disks < 0 &&
4063 conf->reshape_progress < raid5_size(mddev, 0, 0)) {
4064 sector_nr = raid5_size(mddev, 0, 0)
4065 - conf->reshape_progress;
NeilBrowna6397552009-08-13 10:13:00 +10004066 } else if (mddev->delta_disks >= 0 &&
NeilBrownfef9c612009-03-31 15:16:46 +11004067 conf->reshape_progress > 0)
4068 sector_nr = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08004069 sector_div(sector_nr, new_data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11004070 if (sector_nr) {
NeilBrown8dee7212009-11-06 14:59:29 +11004071 mddev->curr_resync_completed = sector_nr;
4072 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrownfef9c612009-03-31 15:16:46 +11004073 *skipped = 1;
4074 return sector_nr;
4075 }
NeilBrown52c03292006-06-26 00:27:43 -07004076 }
4077
NeilBrown7a661382009-03-31 15:21:40 +11004078 /* We need to process a full chunk at a time.
4079 * If old and new chunk sizes differ, we need to process the
4080 * largest of these
4081 */
Andre Noll664e7c42009-06-18 08:45:27 +10004082 if (mddev->new_chunk_sectors > mddev->chunk_sectors)
4083 reshape_sectors = mddev->new_chunk_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11004084 else
Andre Noll9d8f0362009-06-18 08:45:01 +10004085 reshape_sectors = mddev->chunk_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11004086
NeilBrown52c03292006-06-26 00:27:43 -07004087 /* we update the metadata when there is more than 3Meg
4088 * in the block range (that is rather arbitrary, should
4089 * probably be time based) or when the data about to be
4090 * copied would over-write the source of the data at
4091 * the front of the range.
NeilBrownfef9c612009-03-31 15:16:46 +11004092 * i.e. one new_stripe along from reshape_progress new_maps
4093 * to after where reshape_safe old_maps to
NeilBrown52c03292006-06-26 00:27:43 -07004094 */
NeilBrownfef9c612009-03-31 15:16:46 +11004095 writepos = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08004096 sector_div(writepos, new_data_disks);
NeilBrownc8f517c2009-03-31 15:28:40 +11004097 readpos = conf->reshape_progress;
4098 sector_div(readpos, data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11004099 safepos = conf->reshape_safe;
NeilBrownf4168852007-02-28 20:11:53 -08004100 sector_div(safepos, data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11004101 if (mddev->delta_disks < 0) {
NeilBrowned37d832009-05-27 21:39:05 +10004102 writepos -= min_t(sector_t, reshape_sectors, writepos);
NeilBrownc8f517c2009-03-31 15:28:40 +11004103 readpos += reshape_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11004104 safepos += reshape_sectors;
NeilBrownfef9c612009-03-31 15:16:46 +11004105 } else {
NeilBrown7a661382009-03-31 15:21:40 +11004106 writepos += reshape_sectors;
NeilBrowned37d832009-05-27 21:39:05 +10004107 readpos -= min_t(sector_t, reshape_sectors, readpos);
4108 safepos -= min_t(sector_t, reshape_sectors, safepos);
NeilBrownfef9c612009-03-31 15:16:46 +11004109 }
NeilBrown52c03292006-06-26 00:27:43 -07004110
NeilBrownc8f517c2009-03-31 15:28:40 +11004111 /* 'writepos' is the most advanced device address we might write.
4112 * 'readpos' is the least advanced device address we might read.
4113 * 'safepos' is the least address recorded in the metadata as having
4114 * been reshaped.
4115 * If 'readpos' is behind 'writepos', then there is no way that we can
4116 * ensure safety in the face of a crash - that must be done by userspace
4117 * making a backup of the data. So in that case there is no particular
4118 * rush to update metadata.
4119 * Otherwise if 'safepos' is behind 'writepos', then we really need to
4120 * update the metadata to advance 'safepos' to match 'readpos' so that
4121 * we can be safe in the event of a crash.
4122 * So we insist on updating metadata if safepos is behind writepos and
4123 * readpos is beyond writepos.
4124 * In any case, update the metadata every 10 seconds.
4125 * Maybe that number should be configurable, but I'm not sure it is
4126 * worth it.... maybe it could be a multiple of safemode_delay???
4127 */
NeilBrownfef9c612009-03-31 15:16:46 +11004128 if ((mddev->delta_disks < 0
NeilBrownc8f517c2009-03-31 15:28:40 +11004129 ? (safepos > writepos && readpos < writepos)
4130 : (safepos < writepos && readpos > writepos)) ||
4131 time_after(jiffies, conf->reshape_checkpoint + 10*HZ)) {
NeilBrown52c03292006-06-26 00:27:43 -07004132 /* Cannot proceed until we've updated the superblock... */
4133 wait_event(conf->wait_for_overlap,
4134 atomic_read(&conf->reshape_stripes)==0);
NeilBrownfef9c612009-03-31 15:16:46 +11004135 mddev->reshape_position = conf->reshape_progress;
NeilBrownacb180b2009-04-14 16:28:34 +10004136 mddev->curr_resync_completed = mddev->curr_resync;
NeilBrownc8f517c2009-03-31 15:28:40 +11004137 conf->reshape_checkpoint = jiffies;
NeilBrown850b2b42006-10-03 01:15:46 -07004138 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrown52c03292006-06-26 00:27:43 -07004139 md_wakeup_thread(mddev->thread);
NeilBrown850b2b42006-10-03 01:15:46 -07004140 wait_event(mddev->sb_wait, mddev->flags == 0 ||
NeilBrown52c03292006-06-26 00:27:43 -07004141 kthread_should_stop());
4142 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11004143 conf->reshape_safe = mddev->reshape_position;
NeilBrown52c03292006-06-26 00:27:43 -07004144 spin_unlock_irq(&conf->device_lock);
4145 wake_up(&conf->wait_for_overlap);
NeilBrownacb180b2009-04-14 16:28:34 +10004146 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrown52c03292006-06-26 00:27:43 -07004147 }
4148
NeilBrownec32a2b2009-03-31 15:17:38 +11004149 if (mddev->delta_disks < 0) {
4150 BUG_ON(conf->reshape_progress == 0);
4151 stripe_addr = writepos;
4152 BUG_ON((mddev->dev_sectors &
NeilBrown7a661382009-03-31 15:21:40 +11004153 ~((sector_t)reshape_sectors - 1))
4154 - reshape_sectors - stripe_addr
NeilBrownec32a2b2009-03-31 15:17:38 +11004155 != sector_nr);
4156 } else {
NeilBrown7a661382009-03-31 15:21:40 +11004157 BUG_ON(writepos != sector_nr + reshape_sectors);
NeilBrownec32a2b2009-03-31 15:17:38 +11004158 stripe_addr = sector_nr;
4159 }
NeilBrownab69ae12009-03-31 15:26:47 +11004160 INIT_LIST_HEAD(&stripes);
NeilBrown7a661382009-03-31 15:21:40 +11004161 for (i = 0; i < reshape_sectors; i += STRIPE_SECTORS) {
NeilBrown52c03292006-06-26 00:27:43 -07004162 int j;
NeilBrowna9f326e2009-09-23 18:06:41 +10004163 int skipped_disk = 0;
NeilBrowna8c906c2009-06-09 14:39:59 +10004164 sh = get_active_stripe(conf, stripe_addr+i, 0, 0, 1);
NeilBrown52c03292006-06-26 00:27:43 -07004165 set_bit(STRIPE_EXPANDING, &sh->state);
4166 atomic_inc(&conf->reshape_stripes);
4167 /* If any of this stripe is beyond the end of the old
4168 * array, then we need to zero those blocks
4169 */
4170 for (j=sh->disks; j--;) {
4171 sector_t s;
4172 if (j == sh->pd_idx)
4173 continue;
NeilBrownf4168852007-02-28 20:11:53 -08004174 if (conf->level == 6 &&
NeilBrownd0dabf72009-03-31 14:39:38 +11004175 j == sh->qd_idx)
NeilBrownf4168852007-02-28 20:11:53 -08004176 continue;
NeilBrown784052e2009-03-31 15:19:07 +11004177 s = compute_blocknr(sh, j, 0);
Dan Williamsb522adc2009-03-31 15:00:31 +11004178 if (s < raid5_size(mddev, 0, 0)) {
NeilBrowna9f326e2009-09-23 18:06:41 +10004179 skipped_disk = 1;
NeilBrown52c03292006-06-26 00:27:43 -07004180 continue;
4181 }
4182 memset(page_address(sh->dev[j].page), 0, STRIPE_SIZE);
4183 set_bit(R5_Expanded, &sh->dev[j].flags);
4184 set_bit(R5_UPTODATE, &sh->dev[j].flags);
4185 }
NeilBrowna9f326e2009-09-23 18:06:41 +10004186 if (!skipped_disk) {
NeilBrown52c03292006-06-26 00:27:43 -07004187 set_bit(STRIPE_EXPAND_READY, &sh->state);
4188 set_bit(STRIPE_HANDLE, &sh->state);
4189 }
NeilBrownab69ae12009-03-31 15:26:47 +11004190 list_add(&sh->lru, &stripes);
NeilBrown52c03292006-06-26 00:27:43 -07004191 }
4192 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11004193 if (mddev->delta_disks < 0)
NeilBrown7a661382009-03-31 15:21:40 +11004194 conf->reshape_progress -= reshape_sectors * new_data_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11004195 else
NeilBrown7a661382009-03-31 15:21:40 +11004196 conf->reshape_progress += reshape_sectors * new_data_disks;
NeilBrown52c03292006-06-26 00:27:43 -07004197 spin_unlock_irq(&conf->device_lock);
4198 /* Ok, those stripe are ready. We can start scheduling
4199 * reads on the source stripes.
4200 * The source stripes are determined by mapping the first and last
4201 * block on the destination stripes.
4202 */
NeilBrown52c03292006-06-26 00:27:43 -07004203 first_sector =
NeilBrownec32a2b2009-03-31 15:17:38 +11004204 raid5_compute_sector(conf, stripe_addr*(new_data_disks),
NeilBrown911d4ee2009-03-31 14:39:38 +11004205 1, &dd_idx, NULL);
NeilBrown52c03292006-06-26 00:27:43 -07004206 last_sector =
NeilBrown0e6e0272009-06-09 16:32:22 +10004207 raid5_compute_sector(conf, ((stripe_addr+reshape_sectors)
Andre Noll09c9e5f2009-06-18 08:45:55 +10004208 * new_data_disks - 1),
NeilBrown911d4ee2009-03-31 14:39:38 +11004209 1, &dd_idx, NULL);
Andre Noll58c0fed2009-03-31 14:33:13 +11004210 if (last_sector >= mddev->dev_sectors)
4211 last_sector = mddev->dev_sectors - 1;
NeilBrown52c03292006-06-26 00:27:43 -07004212 while (first_sector <= last_sector) {
NeilBrowna8c906c2009-06-09 14:39:59 +10004213 sh = get_active_stripe(conf, first_sector, 1, 0, 1);
NeilBrown52c03292006-06-26 00:27:43 -07004214 set_bit(STRIPE_EXPAND_SOURCE, &sh->state);
4215 set_bit(STRIPE_HANDLE, &sh->state);
4216 release_stripe(sh);
4217 first_sector += STRIPE_SECTORS;
4218 }
NeilBrownab69ae12009-03-31 15:26:47 +11004219 /* Now that the sources are clearly marked, we can release
4220 * the destination stripes
4221 */
4222 while (!list_empty(&stripes)) {
4223 sh = list_entry(stripes.next, struct stripe_head, lru);
4224 list_del_init(&sh->lru);
4225 release_stripe(sh);
4226 }
NeilBrownc6207272008-02-06 01:39:52 -08004227 /* If this takes us to the resync_max point where we have to pause,
4228 * then we need to write out the superblock.
4229 */
NeilBrown7a661382009-03-31 15:21:40 +11004230 sector_nr += reshape_sectors;
NeilBrownc03f6a12009-04-17 11:06:30 +10004231 if ((sector_nr - mddev->curr_resync_completed) * 2
4232 >= mddev->resync_max - mddev->curr_resync_completed) {
NeilBrownc6207272008-02-06 01:39:52 -08004233 /* Cannot proceed until we've updated the superblock... */
4234 wait_event(conf->wait_for_overlap,
4235 atomic_read(&conf->reshape_stripes) == 0);
NeilBrownfef9c612009-03-31 15:16:46 +11004236 mddev->reshape_position = conf->reshape_progress;
NeilBrown48606a92009-06-18 09:14:12 +10004237 mddev->curr_resync_completed = mddev->curr_resync + reshape_sectors;
NeilBrownc8f517c2009-03-31 15:28:40 +11004238 conf->reshape_checkpoint = jiffies;
NeilBrownc6207272008-02-06 01:39:52 -08004239 set_bit(MD_CHANGE_DEVS, &mddev->flags);
4240 md_wakeup_thread(mddev->thread);
4241 wait_event(mddev->sb_wait,
4242 !test_bit(MD_CHANGE_DEVS, &mddev->flags)
4243 || kthread_should_stop());
4244 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11004245 conf->reshape_safe = mddev->reshape_position;
NeilBrownc6207272008-02-06 01:39:52 -08004246 spin_unlock_irq(&conf->device_lock);
4247 wake_up(&conf->wait_for_overlap);
NeilBrownacb180b2009-04-14 16:28:34 +10004248 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrownc6207272008-02-06 01:39:52 -08004249 }
NeilBrown7a661382009-03-31 15:21:40 +11004250 return reshape_sectors;
NeilBrown52c03292006-06-26 00:27:43 -07004251}
4252
4253/* FIXME go_faster isn't used */
4254static inline sector_t sync_request(mddev_t *mddev, sector_t sector_nr, int *skipped, int go_faster)
4255{
H Hartley Sweeten7b928132010-03-08 16:02:40 +11004256 raid5_conf_t *conf = mddev->private;
NeilBrown52c03292006-06-26 00:27:43 -07004257 struct stripe_head *sh;
Andre Noll58c0fed2009-03-31 14:33:13 +11004258 sector_t max_sector = mddev->dev_sectors;
NeilBrown72626682005-09-09 16:23:54 -07004259 int sync_blocks;
NeilBrown16a53ec2006-06-26 00:27:38 -07004260 int still_degraded = 0;
4261 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262
NeilBrown72626682005-09-09 16:23:54 -07004263 if (sector_nr >= max_sector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264 /* just being told to finish up .. nothing much to do */
4265 unplug_slaves(mddev);
NeilBrowncea9c222009-03-31 15:15:05 +11004266
NeilBrown29269552006-03-27 01:18:10 -08004267 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery)) {
4268 end_reshape(conf);
4269 return 0;
4270 }
NeilBrown72626682005-09-09 16:23:54 -07004271
4272 if (mddev->curr_resync < max_sector) /* aborted */
4273 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
4274 &sync_blocks, 1);
NeilBrown16a53ec2006-06-26 00:27:38 -07004275 else /* completed sync */
NeilBrown72626682005-09-09 16:23:54 -07004276 conf->fullsync = 0;
4277 bitmap_close_sync(mddev->bitmap);
4278
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279 return 0;
4280 }
NeilBrownccfcc3c2006-03-27 01:18:09 -08004281
NeilBrown64bd6602009-08-03 10:59:58 +10004282 /* Allow raid5_quiesce to complete */
4283 wait_event(conf->wait_for_overlap, conf->quiesce != 2);
4284
NeilBrown52c03292006-06-26 00:27:43 -07004285 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery))
4286 return reshape_request(mddev, sector_nr, skipped);
NeilBrownf6705572006-03-27 01:18:11 -08004287
NeilBrownc6207272008-02-06 01:39:52 -08004288 /* No need to check resync_max as we never do more than one
4289 * stripe, and as resync_max will always be on a chunk boundary,
4290 * if the check in md_do_sync didn't fire, there is no chance
4291 * of overstepping resync_max here
4292 */
4293
NeilBrown16a53ec2006-06-26 00:27:38 -07004294 /* if there is too many failed drives and we are trying
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295 * to resync, then assert that we are finished, because there is
4296 * nothing we can do.
4297 */
NeilBrown3285edf2006-06-26 00:27:55 -07004298 if (mddev->degraded >= conf->max_degraded &&
NeilBrown16a53ec2006-06-26 00:27:38 -07004299 test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
Andre Noll58c0fed2009-03-31 14:33:13 +11004300 sector_t rv = mddev->dev_sectors - sector_nr;
NeilBrown57afd892005-06-21 17:17:13 -07004301 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302 return rv;
4303 }
NeilBrown72626682005-09-09 16:23:54 -07004304 if (!bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
NeilBrown3855ad92005-11-08 21:39:38 -08004305 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
NeilBrown72626682005-09-09 16:23:54 -07004306 !conf->fullsync && sync_blocks >= STRIPE_SECTORS) {
4307 /* we can skip this block, and probably more */
4308 sync_blocks /= STRIPE_SECTORS;
4309 *skipped = 1;
4310 return sync_blocks * STRIPE_SECTORS; /* keep things rounded to whole stripes */
4311 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312
NeilBrownb47490c2008-02-06 01:39:50 -08004313
4314 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
4315
NeilBrowna8c906c2009-06-09 14:39:59 +10004316 sh = get_active_stripe(conf, sector_nr, 0, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317 if (sh == NULL) {
NeilBrowna8c906c2009-06-09 14:39:59 +10004318 sh = get_active_stripe(conf, sector_nr, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319 /* make sure we don't swamp the stripe cache if someone else
NeilBrown16a53ec2006-06-26 00:27:38 -07004320 * is trying to get access
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321 */
Nishanth Aravamudan66c006a2005-11-07 01:01:17 -08004322 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004324 /* Need to check if array will still be degraded after recovery/resync
4325 * We don't need to check the 'failed' flag as when that gets set,
4326 * recovery aborts.
4327 */
NeilBrownf001a702009-06-09 14:30:31 +10004328 for (i = 0; i < conf->raid_disks; i++)
NeilBrown16a53ec2006-06-26 00:27:38 -07004329 if (conf->disks[i].rdev == NULL)
4330 still_degraded = 1;
4331
4332 bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, still_degraded);
4333
4334 spin_lock(&sh->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335 set_bit(STRIPE_SYNCING, &sh->state);
4336 clear_bit(STRIPE_INSYNC, &sh->state);
4337 spin_unlock(&sh->lock);
4338
NeilBrown14425772009-10-16 15:55:25 +11004339 handle_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004340 release_stripe(sh);
4341
4342 return STRIPE_SECTORS;
4343}
4344
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004345static int retry_aligned_read(raid5_conf_t *conf, struct bio *raid_bio)
4346{
4347 /* We may not be able to submit a whole bio at once as there
4348 * may not be enough stripe_heads available.
4349 * We cannot pre-allocate enough stripe_heads as we may need
4350 * more than exist in the cache (if we allow ever large chunks).
4351 * So we do one stripe head at a time and record in
4352 * ->bi_hw_segments how many have been done.
4353 *
4354 * We *know* that this entire raid_bio is in one chunk, so
4355 * it will be only one 'dd_idx' and only need one call to raid5_compute_sector.
4356 */
4357 struct stripe_head *sh;
NeilBrown911d4ee2009-03-31 14:39:38 +11004358 int dd_idx;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004359 sector_t sector, logical_sector, last_sector;
4360 int scnt = 0;
4361 int remaining;
4362 int handled = 0;
4363
4364 logical_sector = raid_bio->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
NeilBrown112bf892009-03-31 14:39:38 +11004365 sector = raid5_compute_sector(conf, logical_sector,
NeilBrown911d4ee2009-03-31 14:39:38 +11004366 0, &dd_idx, NULL);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004367 last_sector = raid_bio->bi_sector + (raid_bio->bi_size>>9);
4368
4369 for (; logical_sector < last_sector;
Neil Brown387bb172007-02-08 14:20:29 -08004370 logical_sector += STRIPE_SECTORS,
4371 sector += STRIPE_SECTORS,
4372 scnt++) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004373
Jens Axboe960e7392008-08-15 10:41:18 +02004374 if (scnt < raid5_bi_hw_segments(raid_bio))
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004375 /* already done this stripe */
4376 continue;
4377
NeilBrowna8c906c2009-06-09 14:39:59 +10004378 sh = get_active_stripe(conf, sector, 0, 1, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004379
4380 if (!sh) {
4381 /* failed to get a stripe - must wait */
Jens Axboe960e7392008-08-15 10:41:18 +02004382 raid5_set_bi_hw_segments(raid_bio, scnt);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004383 conf->retry_read_aligned = raid_bio;
4384 return handled;
4385 }
4386
4387 set_bit(R5_ReadError, &sh->dev[dd_idx].flags);
Neil Brown387bb172007-02-08 14:20:29 -08004388 if (!add_stripe_bio(sh, raid_bio, dd_idx, 0)) {
4389 release_stripe(sh);
Jens Axboe960e7392008-08-15 10:41:18 +02004390 raid5_set_bi_hw_segments(raid_bio, scnt);
Neil Brown387bb172007-02-08 14:20:29 -08004391 conf->retry_read_aligned = raid_bio;
4392 return handled;
4393 }
4394
Dan Williams36d1c642009-07-14 11:48:22 -07004395 handle_stripe(sh);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004396 release_stripe(sh);
4397 handled++;
4398 }
4399 spin_lock_irq(&conf->device_lock);
Jens Axboe960e7392008-08-15 10:41:18 +02004400 remaining = raid5_dec_bi_phys_segments(raid_bio);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004401 spin_unlock_irq(&conf->device_lock);
Neil Brown0e13fe232008-06-28 08:31:20 +10004402 if (remaining == 0)
4403 bio_endio(raid_bio, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004404 if (atomic_dec_and_test(&conf->active_aligned_reads))
4405 wake_up(&conf->wait_for_stripe);
4406 return handled;
4407}
4408
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004409
Linus Torvalds1da177e2005-04-16 15:20:36 -07004410/*
4411 * This is our raid5 kernel thread.
4412 *
4413 * We scan the hash table for stripes which can be handled now.
4414 * During the scan, completed stripes are saved for us by the interrupt
4415 * handler, so that they will not have to wait for our next wakeup.
4416 */
NeilBrown6ed30032008-02-06 01:40:00 -08004417static void raid5d(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004418{
4419 struct stripe_head *sh;
NeilBrown070ec552009-06-16 16:54:21 +10004420 raid5_conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004421 int handled;
4422
Dan Williams45b42332007-07-09 11:56:43 -07004423 pr_debug("+++ raid5d active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004424
4425 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004426
4427 handled = 0;
4428 spin_lock_irq(&conf->device_lock);
4429 while (1) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004430 struct bio *bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431
NeilBrownae3c20c2006-07-10 04:44:17 -07004432 if (conf->seq_flush != conf->seq_write) {
NeilBrown72626682005-09-09 16:23:54 -07004433 int seq = conf->seq_flush;
NeilBrown700e4322005-11-28 13:44:10 -08004434 spin_unlock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07004435 bitmap_unplug(mddev->bitmap);
NeilBrown700e4322005-11-28 13:44:10 -08004436 spin_lock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07004437 conf->seq_write = seq;
4438 activate_bit_delay(conf);
4439 }
4440
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004441 while ((bio = remove_bio_from_retry(conf))) {
4442 int ok;
4443 spin_unlock_irq(&conf->device_lock);
4444 ok = retry_aligned_read(conf, bio);
4445 spin_lock_irq(&conf->device_lock);
4446 if (!ok)
4447 break;
4448 handled++;
4449 }
4450
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004451 sh = __get_priority_stripe(conf);
4452
Dan Williamsc9f21aa2008-07-23 12:05:51 -07004453 if (!sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004454 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455 spin_unlock_irq(&conf->device_lock);
4456
4457 handled++;
Dan Williams417b8d42009-10-16 16:25:22 +11004458 handle_stripe(sh);
4459 release_stripe(sh);
4460 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004461
4462 spin_lock_irq(&conf->device_lock);
4463 }
Dan Williams45b42332007-07-09 11:56:43 -07004464 pr_debug("%d stripes handled\n", handled);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004465
4466 spin_unlock_irq(&conf->device_lock);
4467
Dan Williamsc9f21aa2008-07-23 12:05:51 -07004468 async_tx_issue_pending_all();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469 unplug_slaves(mddev);
4470
Dan Williams45b42332007-07-09 11:56:43 -07004471 pr_debug("--- raid5d inactive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004472}
4473
NeilBrown3f294f42005-11-08 21:39:25 -08004474static ssize_t
NeilBrown007583c2005-11-08 21:39:30 -08004475raid5_show_stripe_cache_size(mddev_t *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08004476{
NeilBrown070ec552009-06-16 16:54:21 +10004477 raid5_conf_t *conf = mddev->private;
NeilBrown96de1e62005-11-08 21:39:39 -08004478 if (conf)
4479 return sprintf(page, "%d\n", conf->max_nr_stripes);
4480 else
4481 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08004482}
4483
4484static ssize_t
NeilBrown007583c2005-11-08 21:39:30 -08004485raid5_store_stripe_cache_size(mddev_t *mddev, const char *page, size_t len)
NeilBrown3f294f42005-11-08 21:39:25 -08004486{
NeilBrown070ec552009-06-16 16:54:21 +10004487 raid5_conf_t *conf = mddev->private;
Dan Williams4ef197d82008-04-28 02:15:54 -07004488 unsigned long new;
Dan Williamsb5470dc2008-06-27 21:44:04 -07004489 int err;
4490
NeilBrown3f294f42005-11-08 21:39:25 -08004491 if (len >= PAGE_SIZE)
4492 return -EINVAL;
NeilBrown96de1e62005-11-08 21:39:39 -08004493 if (!conf)
4494 return -ENODEV;
NeilBrown3f294f42005-11-08 21:39:25 -08004495
Dan Williams4ef197d82008-04-28 02:15:54 -07004496 if (strict_strtoul(page, 10, &new))
NeilBrown3f294f42005-11-08 21:39:25 -08004497 return -EINVAL;
4498 if (new <= 16 || new > 32768)
4499 return -EINVAL;
4500 while (new < conf->max_nr_stripes) {
4501 if (drop_one_stripe(conf))
4502 conf->max_nr_stripes--;
4503 else
4504 break;
4505 }
Dan Williamsb5470dc2008-06-27 21:44:04 -07004506 err = md_allow_write(mddev);
4507 if (err)
4508 return err;
NeilBrown3f294f42005-11-08 21:39:25 -08004509 while (new > conf->max_nr_stripes) {
4510 if (grow_one_stripe(conf))
4511 conf->max_nr_stripes++;
4512 else break;
4513 }
4514 return len;
4515}
NeilBrown007583c2005-11-08 21:39:30 -08004516
NeilBrown96de1e62005-11-08 21:39:39 -08004517static struct md_sysfs_entry
4518raid5_stripecache_size = __ATTR(stripe_cache_size, S_IRUGO | S_IWUSR,
4519 raid5_show_stripe_cache_size,
4520 raid5_store_stripe_cache_size);
NeilBrown3f294f42005-11-08 21:39:25 -08004521
4522static ssize_t
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004523raid5_show_preread_threshold(mddev_t *mddev, char *page)
4524{
NeilBrown070ec552009-06-16 16:54:21 +10004525 raid5_conf_t *conf = mddev->private;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004526 if (conf)
4527 return sprintf(page, "%d\n", conf->bypass_threshold);
4528 else
4529 return 0;
4530}
4531
4532static ssize_t
4533raid5_store_preread_threshold(mddev_t *mddev, const char *page, size_t len)
4534{
NeilBrown070ec552009-06-16 16:54:21 +10004535 raid5_conf_t *conf = mddev->private;
Dan Williams4ef197d82008-04-28 02:15:54 -07004536 unsigned long new;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004537 if (len >= PAGE_SIZE)
4538 return -EINVAL;
4539 if (!conf)
4540 return -ENODEV;
4541
Dan Williams4ef197d82008-04-28 02:15:54 -07004542 if (strict_strtoul(page, 10, &new))
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004543 return -EINVAL;
Dan Williams4ef197d82008-04-28 02:15:54 -07004544 if (new > conf->max_nr_stripes)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004545 return -EINVAL;
4546 conf->bypass_threshold = new;
4547 return len;
4548}
4549
4550static struct md_sysfs_entry
4551raid5_preread_bypass_threshold = __ATTR(preread_bypass_threshold,
4552 S_IRUGO | S_IWUSR,
4553 raid5_show_preread_threshold,
4554 raid5_store_preread_threshold);
4555
4556static ssize_t
NeilBrown96de1e62005-11-08 21:39:39 -08004557stripe_cache_active_show(mddev_t *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08004558{
NeilBrown070ec552009-06-16 16:54:21 +10004559 raid5_conf_t *conf = mddev->private;
NeilBrown96de1e62005-11-08 21:39:39 -08004560 if (conf)
4561 return sprintf(page, "%d\n", atomic_read(&conf->active_stripes));
4562 else
4563 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08004564}
4565
NeilBrown96de1e62005-11-08 21:39:39 -08004566static struct md_sysfs_entry
4567raid5_stripecache_active = __ATTR_RO(stripe_cache_active);
NeilBrown3f294f42005-11-08 21:39:25 -08004568
NeilBrown007583c2005-11-08 21:39:30 -08004569static struct attribute *raid5_attrs[] = {
NeilBrown3f294f42005-11-08 21:39:25 -08004570 &raid5_stripecache_size.attr,
4571 &raid5_stripecache_active.attr,
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004572 &raid5_preread_bypass_threshold.attr,
NeilBrown3f294f42005-11-08 21:39:25 -08004573 NULL,
4574};
NeilBrown007583c2005-11-08 21:39:30 -08004575static struct attribute_group raid5_attrs_group = {
4576 .name = NULL,
4577 .attrs = raid5_attrs,
NeilBrown3f294f42005-11-08 21:39:25 -08004578};
4579
Dan Williams80c3a6c2009-03-17 18:10:40 -07004580static sector_t
4581raid5_size(mddev_t *mddev, sector_t sectors, int raid_disks)
4582{
NeilBrown070ec552009-06-16 16:54:21 +10004583 raid5_conf_t *conf = mddev->private;
Dan Williams80c3a6c2009-03-17 18:10:40 -07004584
4585 if (!sectors)
4586 sectors = mddev->dev_sectors;
NeilBrown5e5e3e72009-10-16 16:35:30 +11004587 if (!raid_disks)
NeilBrown7ec05472009-03-31 15:10:36 +11004588 /* size is defined by the smallest of previous and new size */
NeilBrown5e5e3e72009-10-16 16:35:30 +11004589 raid_disks = min(conf->raid_disks, conf->previous_raid_disks);
Dan Williams80c3a6c2009-03-17 18:10:40 -07004590
Andre Noll9d8f0362009-06-18 08:45:01 +10004591 sectors &= ~((sector_t)mddev->chunk_sectors - 1);
Andre Noll664e7c42009-06-18 08:45:27 +10004592 sectors &= ~((sector_t)mddev->new_chunk_sectors - 1);
Dan Williams80c3a6c2009-03-17 18:10:40 -07004593 return sectors * (raid_disks - conf->max_degraded);
4594}
4595
Dan Williams36d1c642009-07-14 11:48:22 -07004596static void raid5_free_percpu(raid5_conf_t *conf)
4597{
4598 struct raid5_percpu *percpu;
4599 unsigned long cpu;
4600
4601 if (!conf->percpu)
4602 return;
4603
4604 get_online_cpus();
4605 for_each_possible_cpu(cpu) {
4606 percpu = per_cpu_ptr(conf->percpu, cpu);
4607 safe_put_page(percpu->spare_page);
Dan Williamsd6f38f32009-07-14 11:50:52 -07004608 kfree(percpu->scribble);
Dan Williams36d1c642009-07-14 11:48:22 -07004609 }
4610#ifdef CONFIG_HOTPLUG_CPU
4611 unregister_cpu_notifier(&conf->cpu_notify);
4612#endif
4613 put_online_cpus();
4614
4615 free_percpu(conf->percpu);
4616}
4617
Dan Williams95fc17a2009-07-31 12:39:15 +10004618static void free_conf(raid5_conf_t *conf)
4619{
4620 shrink_stripes(conf);
Dan Williams36d1c642009-07-14 11:48:22 -07004621 raid5_free_percpu(conf);
Dan Williams95fc17a2009-07-31 12:39:15 +10004622 kfree(conf->disks);
4623 kfree(conf->stripe_hashtbl);
4624 kfree(conf);
4625}
4626
Dan Williams36d1c642009-07-14 11:48:22 -07004627#ifdef CONFIG_HOTPLUG_CPU
4628static int raid456_cpu_notify(struct notifier_block *nfb, unsigned long action,
4629 void *hcpu)
4630{
4631 raid5_conf_t *conf = container_of(nfb, raid5_conf_t, cpu_notify);
4632 long cpu = (long)hcpu;
4633 struct raid5_percpu *percpu = per_cpu_ptr(conf->percpu, cpu);
4634
4635 switch (action) {
4636 case CPU_UP_PREPARE:
4637 case CPU_UP_PREPARE_FROZEN:
Dan Williamsd6f38f32009-07-14 11:50:52 -07004638 if (conf->level == 6 && !percpu->spare_page)
Dan Williams36d1c642009-07-14 11:48:22 -07004639 percpu->spare_page = alloc_page(GFP_KERNEL);
Dan Williamsd6f38f32009-07-14 11:50:52 -07004640 if (!percpu->scribble)
4641 percpu->scribble = kmalloc(conf->scribble_len, GFP_KERNEL);
4642
4643 if (!percpu->scribble ||
4644 (conf->level == 6 && !percpu->spare_page)) {
4645 safe_put_page(percpu->spare_page);
4646 kfree(percpu->scribble);
Dan Williams36d1c642009-07-14 11:48:22 -07004647 pr_err("%s: failed memory allocation for cpu%ld\n",
4648 __func__, cpu);
Akinobu Mita55af6bb2010-05-26 14:43:35 -07004649 return notifier_from_errno(-ENOMEM);
Dan Williams36d1c642009-07-14 11:48:22 -07004650 }
4651 break;
4652 case CPU_DEAD:
4653 case CPU_DEAD_FROZEN:
4654 safe_put_page(percpu->spare_page);
Dan Williamsd6f38f32009-07-14 11:50:52 -07004655 kfree(percpu->scribble);
Dan Williams36d1c642009-07-14 11:48:22 -07004656 percpu->spare_page = NULL;
Dan Williamsd6f38f32009-07-14 11:50:52 -07004657 percpu->scribble = NULL;
Dan Williams36d1c642009-07-14 11:48:22 -07004658 break;
4659 default:
4660 break;
4661 }
4662 return NOTIFY_OK;
4663}
4664#endif
4665
4666static int raid5_alloc_percpu(raid5_conf_t *conf)
4667{
4668 unsigned long cpu;
4669 struct page *spare_page;
Tejun Heoa29d8b82010-02-02 14:39:15 +09004670 struct raid5_percpu __percpu *allcpus;
Dan Williamsd6f38f32009-07-14 11:50:52 -07004671 void *scribble;
Dan Williams36d1c642009-07-14 11:48:22 -07004672 int err;
4673
Dan Williams36d1c642009-07-14 11:48:22 -07004674 allcpus = alloc_percpu(struct raid5_percpu);
4675 if (!allcpus)
4676 return -ENOMEM;
4677 conf->percpu = allcpus;
4678
4679 get_online_cpus();
4680 err = 0;
4681 for_each_present_cpu(cpu) {
Dan Williamsd6f38f32009-07-14 11:50:52 -07004682 if (conf->level == 6) {
4683 spare_page = alloc_page(GFP_KERNEL);
4684 if (!spare_page) {
4685 err = -ENOMEM;
4686 break;
4687 }
4688 per_cpu_ptr(conf->percpu, cpu)->spare_page = spare_page;
4689 }
NeilBrown5e5e3e72009-10-16 16:35:30 +11004690 scribble = kmalloc(conf->scribble_len, GFP_KERNEL);
Dan Williamsd6f38f32009-07-14 11:50:52 -07004691 if (!scribble) {
Dan Williams36d1c642009-07-14 11:48:22 -07004692 err = -ENOMEM;
4693 break;
4694 }
Dan Williamsd6f38f32009-07-14 11:50:52 -07004695 per_cpu_ptr(conf->percpu, cpu)->scribble = scribble;
Dan Williams36d1c642009-07-14 11:48:22 -07004696 }
4697#ifdef CONFIG_HOTPLUG_CPU
4698 conf->cpu_notify.notifier_call = raid456_cpu_notify;
4699 conf->cpu_notify.priority = 0;
4700 if (err == 0)
4701 err = register_cpu_notifier(&conf->cpu_notify);
4702#endif
4703 put_online_cpus();
4704
4705 return err;
4706}
4707
NeilBrown91adb562009-03-31 14:39:39 +11004708static raid5_conf_t *setup_conf(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004709{
4710 raid5_conf_t *conf;
NeilBrown5e5e3e72009-10-16 16:35:30 +11004711 int raid_disk, memory, max_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712 mdk_rdev_t *rdev;
4713 struct disk_info *disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004714
NeilBrown91adb562009-03-31 14:39:39 +11004715 if (mddev->new_level != 5
4716 && mddev->new_level != 4
4717 && mddev->new_level != 6) {
NeilBrown0c55e022010-05-03 14:09:02 +10004718 printk(KERN_ERR "md/raid:%s: raid level not set to 4/5/6 (%d)\n",
NeilBrown91adb562009-03-31 14:39:39 +11004719 mdname(mddev), mddev->new_level);
4720 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004721 }
NeilBrown91adb562009-03-31 14:39:39 +11004722 if ((mddev->new_level == 5
4723 && !algorithm_valid_raid5(mddev->new_layout)) ||
4724 (mddev->new_level == 6
4725 && !algorithm_valid_raid6(mddev->new_layout))) {
NeilBrown0c55e022010-05-03 14:09:02 +10004726 printk(KERN_ERR "md/raid:%s: layout %d not supported\n",
NeilBrown91adb562009-03-31 14:39:39 +11004727 mdname(mddev), mddev->new_layout);
4728 return ERR_PTR(-EIO);
4729 }
4730 if (mddev->new_level == 6 && mddev->raid_disks < 4) {
NeilBrown0c55e022010-05-03 14:09:02 +10004731 printk(KERN_ERR "md/raid:%s: not enough configured devices (%d, minimum 4)\n",
NeilBrown91adb562009-03-31 14:39:39 +11004732 mdname(mddev), mddev->raid_disks);
4733 return ERR_PTR(-EINVAL);
NeilBrown99c0fb52009-03-31 14:39:38 +11004734 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004735
Andre Noll664e7c42009-06-18 08:45:27 +10004736 if (!mddev->new_chunk_sectors ||
4737 (mddev->new_chunk_sectors << 9) % PAGE_SIZE ||
4738 !is_power_of_2(mddev->new_chunk_sectors)) {
NeilBrown0c55e022010-05-03 14:09:02 +10004739 printk(KERN_ERR "md/raid:%s: invalid chunk size %d\n",
4740 mdname(mddev), mddev->new_chunk_sectors << 9);
NeilBrown91adb562009-03-31 14:39:39 +11004741 return ERR_PTR(-EINVAL);
NeilBrown4bbf3772008-10-13 11:55:12 +11004742 }
4743
NeilBrown91adb562009-03-31 14:39:39 +11004744 conf = kzalloc(sizeof(raid5_conf_t), GFP_KERNEL);
4745 if (conf == NULL)
4746 goto abort;
Dan Williamsf5efd452009-10-16 15:55:38 +11004747 spin_lock_init(&conf->device_lock);
4748 init_waitqueue_head(&conf->wait_for_stripe);
4749 init_waitqueue_head(&conf->wait_for_overlap);
4750 INIT_LIST_HEAD(&conf->handle_list);
4751 INIT_LIST_HEAD(&conf->hold_list);
4752 INIT_LIST_HEAD(&conf->delayed_list);
4753 INIT_LIST_HEAD(&conf->bitmap_list);
4754 INIT_LIST_HEAD(&conf->inactive_list);
4755 atomic_set(&conf->active_stripes, 0);
4756 atomic_set(&conf->preread_active_stripes, 0);
4757 atomic_set(&conf->active_aligned_reads, 0);
4758 conf->bypass_threshold = BYPASS_THRESHOLD;
NeilBrown91adb562009-03-31 14:39:39 +11004759
4760 conf->raid_disks = mddev->raid_disks;
4761 if (mddev->reshape_position == MaxSector)
4762 conf->previous_raid_disks = mddev->raid_disks;
4763 else
4764 conf->previous_raid_disks = mddev->raid_disks - mddev->delta_disks;
NeilBrown5e5e3e72009-10-16 16:35:30 +11004765 max_disks = max(conf->raid_disks, conf->previous_raid_disks);
4766 conf->scribble_len = scribble_len(max_disks);
NeilBrown91adb562009-03-31 14:39:39 +11004767
NeilBrown5e5e3e72009-10-16 16:35:30 +11004768 conf->disks = kzalloc(max_disks * sizeof(struct disk_info),
NeilBrown91adb562009-03-31 14:39:39 +11004769 GFP_KERNEL);
4770 if (!conf->disks)
4771 goto abort;
4772
4773 conf->mddev = mddev;
4774
4775 if ((conf->stripe_hashtbl = kzalloc(PAGE_SIZE, GFP_KERNEL)) == NULL)
4776 goto abort;
4777
Dan Williams36d1c642009-07-14 11:48:22 -07004778 conf->level = mddev->new_level;
4779 if (raid5_alloc_percpu(conf) != 0)
4780 goto abort;
4781
NeilBrown0c55e022010-05-03 14:09:02 +10004782 pr_debug("raid456: run(%s) called.\n", mdname(mddev));
NeilBrown91adb562009-03-31 14:39:39 +11004783
4784 list_for_each_entry(rdev, &mddev->disks, same_set) {
4785 raid_disk = rdev->raid_disk;
NeilBrown5e5e3e72009-10-16 16:35:30 +11004786 if (raid_disk >= max_disks
NeilBrown91adb562009-03-31 14:39:39 +11004787 || raid_disk < 0)
4788 continue;
4789 disk = conf->disks + raid_disk;
4790
4791 disk->rdev = rdev;
4792
4793 if (test_bit(In_sync, &rdev->flags)) {
4794 char b[BDEVNAME_SIZE];
NeilBrown0c55e022010-05-03 14:09:02 +10004795 printk(KERN_INFO "md/raid:%s: device %s operational as raid"
4796 " disk %d\n",
4797 mdname(mddev), bdevname(rdev->bdev, b), raid_disk);
NeilBrown91adb562009-03-31 14:39:39 +11004798 } else
4799 /* Cannot rely on bitmap to complete recovery */
4800 conf->fullsync = 1;
4801 }
4802
Andre Noll09c9e5f2009-06-18 08:45:55 +10004803 conf->chunk_sectors = mddev->new_chunk_sectors;
NeilBrown91adb562009-03-31 14:39:39 +11004804 conf->level = mddev->new_level;
4805 if (conf->level == 6)
4806 conf->max_degraded = 2;
4807 else
4808 conf->max_degraded = 1;
4809 conf->algorithm = mddev->new_layout;
4810 conf->max_nr_stripes = NR_STRIPES;
NeilBrownfef9c612009-03-31 15:16:46 +11004811 conf->reshape_progress = mddev->reshape_position;
NeilBrowne183eae2009-03-31 15:20:22 +11004812 if (conf->reshape_progress != MaxSector) {
Andre Noll09c9e5f2009-06-18 08:45:55 +10004813 conf->prev_chunk_sectors = mddev->chunk_sectors;
NeilBrowne183eae2009-03-31 15:20:22 +11004814 conf->prev_algo = mddev->layout;
4815 }
NeilBrown91adb562009-03-31 14:39:39 +11004816
4817 memory = conf->max_nr_stripes * (sizeof(struct stripe_head) +
NeilBrown5e5e3e72009-10-16 16:35:30 +11004818 max_disks * ((sizeof(struct bio) + PAGE_SIZE))) / 1024;
NeilBrown91adb562009-03-31 14:39:39 +11004819 if (grow_stripes(conf, conf->max_nr_stripes)) {
4820 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10004821 "md/raid:%s: couldn't allocate %dkB for buffers\n",
4822 mdname(mddev), memory);
NeilBrown91adb562009-03-31 14:39:39 +11004823 goto abort;
4824 } else
NeilBrown0c55e022010-05-03 14:09:02 +10004825 printk(KERN_INFO "md/raid:%s: allocated %dkB\n",
4826 mdname(mddev), memory);
NeilBrown91adb562009-03-31 14:39:39 +11004827
NeilBrown0da3c612009-09-23 18:09:45 +10004828 conf->thread = md_register_thread(raid5d, mddev, NULL);
NeilBrown91adb562009-03-31 14:39:39 +11004829 if (!conf->thread) {
4830 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10004831 "md/raid:%s: couldn't allocate thread.\n",
NeilBrown91adb562009-03-31 14:39:39 +11004832 mdname(mddev));
4833 goto abort;
4834 }
4835
4836 return conf;
4837
4838 abort:
4839 if (conf) {
Dan Williams95fc17a2009-07-31 12:39:15 +10004840 free_conf(conf);
NeilBrown91adb562009-03-31 14:39:39 +11004841 return ERR_PTR(-EIO);
4842 } else
4843 return ERR_PTR(-ENOMEM);
4844}
4845
NeilBrownc148ffd2009-11-13 17:47:00 +11004846
4847static int only_parity(int raid_disk, int algo, int raid_disks, int max_degraded)
4848{
4849 switch (algo) {
4850 case ALGORITHM_PARITY_0:
4851 if (raid_disk < max_degraded)
4852 return 1;
4853 break;
4854 case ALGORITHM_PARITY_N:
4855 if (raid_disk >= raid_disks - max_degraded)
4856 return 1;
4857 break;
4858 case ALGORITHM_PARITY_0_6:
4859 if (raid_disk == 0 ||
4860 raid_disk == raid_disks - 1)
4861 return 1;
4862 break;
4863 case ALGORITHM_LEFT_ASYMMETRIC_6:
4864 case ALGORITHM_RIGHT_ASYMMETRIC_6:
4865 case ALGORITHM_LEFT_SYMMETRIC_6:
4866 case ALGORITHM_RIGHT_SYMMETRIC_6:
4867 if (raid_disk == raid_disks - 1)
4868 return 1;
4869 }
4870 return 0;
4871}
4872
NeilBrown91adb562009-03-31 14:39:39 +11004873static int run(mddev_t *mddev)
4874{
4875 raid5_conf_t *conf;
Martin K. Petersen8f6c2e42009-07-01 11:13:45 +10004876 int working_disks = 0, chunk_size;
NeilBrownc148ffd2009-11-13 17:47:00 +11004877 int dirty_parity_disks = 0;
NeilBrown91adb562009-03-31 14:39:39 +11004878 mdk_rdev_t *rdev;
NeilBrownc148ffd2009-11-13 17:47:00 +11004879 sector_t reshape_offset = 0;
NeilBrown91adb562009-03-31 14:39:39 +11004880
Andre Noll8c6ac862009-06-18 08:48:06 +10004881 if (mddev->recovery_cp != MaxSector)
NeilBrown0c55e022010-05-03 14:09:02 +10004882 printk(KERN_NOTICE "md/raid:%s: not clean"
Andre Noll8c6ac862009-06-18 08:48:06 +10004883 " -- starting background reconstruction\n",
4884 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08004885 if (mddev->reshape_position != MaxSector) {
4886 /* Check that we can continue the reshape.
4887 * Currently only disks can change, it must
4888 * increase, and we must be past the point where
4889 * a stripe over-writes itself
4890 */
4891 sector_t here_new, here_old;
4892 int old_disks;
Andre Noll18b00332009-03-31 15:00:56 +11004893 int max_degraded = (mddev->level == 6 ? 2 : 1);
NeilBrownf6705572006-03-27 01:18:11 -08004894
NeilBrown88ce4932009-03-31 15:24:23 +11004895 if (mddev->new_level != mddev->level) {
NeilBrown0c55e022010-05-03 14:09:02 +10004896 printk(KERN_ERR "md/raid:%s: unsupported reshape "
NeilBrownf4168852007-02-28 20:11:53 -08004897 "required - aborting.\n",
NeilBrownf6705572006-03-27 01:18:11 -08004898 mdname(mddev));
4899 return -EINVAL;
4900 }
NeilBrownf6705572006-03-27 01:18:11 -08004901 old_disks = mddev->raid_disks - mddev->delta_disks;
4902 /* reshape_position must be on a new-stripe boundary, and one
NeilBrownf4168852007-02-28 20:11:53 -08004903 * further up in new geometry must map after here in old
4904 * geometry.
NeilBrownf6705572006-03-27 01:18:11 -08004905 */
4906 here_new = mddev->reshape_position;
Andre Noll664e7c42009-06-18 08:45:27 +10004907 if (sector_div(here_new, mddev->new_chunk_sectors *
NeilBrownf4168852007-02-28 20:11:53 -08004908 (mddev->raid_disks - max_degraded))) {
NeilBrown0c55e022010-05-03 14:09:02 +10004909 printk(KERN_ERR "md/raid:%s: reshape_position not "
4910 "on a stripe boundary\n", mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08004911 return -EINVAL;
4912 }
NeilBrownc148ffd2009-11-13 17:47:00 +11004913 reshape_offset = here_new * mddev->new_chunk_sectors;
NeilBrownf6705572006-03-27 01:18:11 -08004914 /* here_new is the stripe we will write to */
4915 here_old = mddev->reshape_position;
Andre Noll9d8f0362009-06-18 08:45:01 +10004916 sector_div(here_old, mddev->chunk_sectors *
NeilBrownf4168852007-02-28 20:11:53 -08004917 (old_disks-max_degraded));
4918 /* here_old is the first stripe that we might need to read
4919 * from */
NeilBrown67ac6012009-08-13 10:06:24 +10004920 if (mddev->delta_disks == 0) {
4921 /* We cannot be sure it is safe to start an in-place
4922 * reshape. It is only safe if user-space if monitoring
4923 * and taking constant backups.
4924 * mdadm always starts a situation like this in
4925 * readonly mode so it can take control before
4926 * allowing any writes. So just check for that.
4927 */
4928 if ((here_new * mddev->new_chunk_sectors !=
4929 here_old * mddev->chunk_sectors) ||
4930 mddev->ro == 0) {
NeilBrown0c55e022010-05-03 14:09:02 +10004931 printk(KERN_ERR "md/raid:%s: in-place reshape must be started"
4932 " in read-only mode - aborting\n",
4933 mdname(mddev));
NeilBrown67ac6012009-08-13 10:06:24 +10004934 return -EINVAL;
4935 }
4936 } else if (mddev->delta_disks < 0
4937 ? (here_new * mddev->new_chunk_sectors <=
4938 here_old * mddev->chunk_sectors)
4939 : (here_new * mddev->new_chunk_sectors >=
4940 here_old * mddev->chunk_sectors)) {
NeilBrownf6705572006-03-27 01:18:11 -08004941 /* Reading from the same stripe as writing to - bad */
NeilBrown0c55e022010-05-03 14:09:02 +10004942 printk(KERN_ERR "md/raid:%s: reshape_position too early for "
4943 "auto-recovery - aborting.\n",
4944 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08004945 return -EINVAL;
4946 }
NeilBrown0c55e022010-05-03 14:09:02 +10004947 printk(KERN_INFO "md/raid:%s: reshape will continue\n",
4948 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08004949 /* OK, we should be able to continue; */
NeilBrownf6705572006-03-27 01:18:11 -08004950 } else {
NeilBrown91adb562009-03-31 14:39:39 +11004951 BUG_ON(mddev->level != mddev->new_level);
4952 BUG_ON(mddev->layout != mddev->new_layout);
Andre Noll664e7c42009-06-18 08:45:27 +10004953 BUG_ON(mddev->chunk_sectors != mddev->new_chunk_sectors);
NeilBrown91adb562009-03-31 14:39:39 +11004954 BUG_ON(mddev->delta_disks != 0);
NeilBrownf6705572006-03-27 01:18:11 -08004955 }
4956
NeilBrown245f46c2009-03-31 14:39:39 +11004957 if (mddev->private == NULL)
4958 conf = setup_conf(mddev);
4959 else
4960 conf = mddev->private;
4961
NeilBrown91adb562009-03-31 14:39:39 +11004962 if (IS_ERR(conf))
4963 return PTR_ERR(conf);
NeilBrown9ffae0c2006-01-06 00:20:32 -08004964
NeilBrown91adb562009-03-31 14:39:39 +11004965 mddev->thread = conf->thread;
4966 conf->thread = NULL;
4967 mddev->private = conf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004968
Linus Torvalds1da177e2005-04-16 15:20:36 -07004969 /*
NeilBrown16a53ec2006-06-26 00:27:38 -07004970 * 0 for a fully functional array, 1 or 2 for a degraded array.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004971 */
NeilBrownc148ffd2009-11-13 17:47:00 +11004972 list_for_each_entry(rdev, &mddev->disks, same_set) {
4973 if (rdev->raid_disk < 0)
4974 continue;
4975 if (test_bit(In_sync, &rdev->flags))
NeilBrown91adb562009-03-31 14:39:39 +11004976 working_disks++;
NeilBrownc148ffd2009-11-13 17:47:00 +11004977 /* This disc is not fully in-sync. However if it
4978 * just stored parity (beyond the recovery_offset),
4979 * when we don't need to be concerned about the
4980 * array being dirty.
4981 * When reshape goes 'backwards', we never have
4982 * partially completed devices, so we only need
4983 * to worry about reshape going forwards.
4984 */
4985 /* Hack because v0.91 doesn't store recovery_offset properly. */
4986 if (mddev->major_version == 0 &&
4987 mddev->minor_version > 90)
4988 rdev->recovery_offset = reshape_offset;
4989
NeilBrownc148ffd2009-11-13 17:47:00 +11004990 if (rdev->recovery_offset < reshape_offset) {
4991 /* We need to check old and new layout */
4992 if (!only_parity(rdev->raid_disk,
4993 conf->algorithm,
4994 conf->raid_disks,
4995 conf->max_degraded))
4996 continue;
4997 }
4998 if (!only_parity(rdev->raid_disk,
4999 conf->prev_algo,
5000 conf->previous_raid_disks,
5001 conf->max_degraded))
5002 continue;
5003 dirty_parity_disks++;
5004 }
NeilBrown91adb562009-03-31 14:39:39 +11005005
NeilBrown5e5e3e72009-10-16 16:35:30 +11005006 mddev->degraded = (max(conf->raid_disks, conf->previous_raid_disks)
5007 - working_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005008
NeilBrown16a53ec2006-06-26 00:27:38 -07005009 if (mddev->degraded > conf->max_degraded) {
NeilBrown0c55e022010-05-03 14:09:02 +10005010 printk(KERN_ERR "md/raid:%s: not enough operational devices"
Linus Torvalds1da177e2005-04-16 15:20:36 -07005011 " (%d/%d failed)\n",
NeilBrown02c2de82006-10-03 01:15:47 -07005012 mdname(mddev), mddev->degraded, conf->raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005013 goto abort;
5014 }
5015
NeilBrown91adb562009-03-31 14:39:39 +11005016 /* device size must be a multiple of chunk size */
Andre Noll9d8f0362009-06-18 08:45:01 +10005017 mddev->dev_sectors &= ~(mddev->chunk_sectors - 1);
NeilBrown91adb562009-03-31 14:39:39 +11005018 mddev->resync_max_sectors = mddev->dev_sectors;
5019
NeilBrownc148ffd2009-11-13 17:47:00 +11005020 if (mddev->degraded > dirty_parity_disks &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005021 mddev->recovery_cp != MaxSector) {
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08005022 if (mddev->ok_start_degraded)
5023 printk(KERN_WARNING
NeilBrown0c55e022010-05-03 14:09:02 +10005024 "md/raid:%s: starting dirty degraded array"
5025 " - data corruption possible.\n",
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08005026 mdname(mddev));
5027 else {
5028 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10005029 "md/raid:%s: cannot start dirty degraded array.\n",
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08005030 mdname(mddev));
5031 goto abort;
5032 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005033 }
5034
Linus Torvalds1da177e2005-04-16 15:20:36 -07005035 if (mddev->degraded == 0)
NeilBrown0c55e022010-05-03 14:09:02 +10005036 printk(KERN_INFO "md/raid:%s: raid level %d active with %d out of %d"
5037 " devices, algorithm %d\n", mdname(mddev), conf->level,
NeilBrowne183eae2009-03-31 15:20:22 +11005038 mddev->raid_disks-mddev->degraded, mddev->raid_disks,
5039 mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005040 else
NeilBrown0c55e022010-05-03 14:09:02 +10005041 printk(KERN_ALERT "md/raid:%s: raid level %d active with %d"
5042 " out of %d devices, algorithm %d\n",
5043 mdname(mddev), conf->level,
5044 mddev->raid_disks - mddev->degraded,
5045 mddev->raid_disks, mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005046
5047 print_raid5_conf(conf);
5048
NeilBrownfef9c612009-03-31 15:16:46 +11005049 if (conf->reshape_progress != MaxSector) {
NeilBrownfef9c612009-03-31 15:16:46 +11005050 conf->reshape_safe = conf->reshape_progress;
NeilBrownf6705572006-03-27 01:18:11 -08005051 atomic_set(&conf->reshape_stripes, 0);
5052 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
5053 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
5054 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
5055 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
5056 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
NeilBrown0da3c612009-09-23 18:09:45 +10005057 "reshape");
NeilBrownf6705572006-03-27 01:18:11 -08005058 }
5059
Linus Torvalds1da177e2005-04-16 15:20:36 -07005060 /* read-ahead size must cover two whole stripes, which is
NeilBrown16a53ec2006-06-26 00:27:38 -07005061 * 2 * (datadisks) * chunksize where 'n' is the number of raid devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07005062 */
5063 {
NeilBrown16a53ec2006-06-26 00:27:38 -07005064 int data_disks = conf->previous_raid_disks - conf->max_degraded;
5065 int stripe = data_disks *
Andre Noll9d8f0362009-06-18 08:45:01 +10005066 ((mddev->chunk_sectors << 9) / PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005067 if (mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
5068 mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
5069 }
5070
5071 /* Ok, everything is just fine now */
NeilBrowna64c8762010-04-14 17:15:37 +10005072 if (mddev->to_remove == &raid5_attrs_group)
5073 mddev->to_remove = NULL;
5074 else if (sysfs_create_group(&mddev->kobj, &raid5_attrs_group))
NeilBrown5e55e2f2007-03-26 21:32:14 -08005075 printk(KERN_WARNING
NeilBrown0c55e022010-05-03 14:09:02 +10005076 "md/raid:%s: failed to create sysfs attributes.\n",
NeilBrown5e55e2f2007-03-26 21:32:14 -08005077 mdname(mddev));
NeilBrown7a5febe2005-05-16 21:53:16 -07005078
NeilBrown91adb562009-03-31 14:39:39 +11005079 mddev->queue->queue_lock = &conf->device_lock;
5080
NeilBrown7a5febe2005-05-16 21:53:16 -07005081 mddev->queue->unplug_fn = raid5_unplug_device;
NeilBrownf022b2f2006-10-03 01:15:56 -07005082 mddev->queue->backing_dev_info.congested_data = mddev;
NeilBrown041ae522007-03-26 21:32:14 -08005083 mddev->queue->backing_dev_info.congested_fn = raid5_congested;
NeilBrownf022b2f2006-10-03 01:15:56 -07005084
Dan Williams1f403622009-03-31 14:59:03 +11005085 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
NeilBrown7a5febe2005-05-16 21:53:16 -07005086
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08005087 blk_queue_merge_bvec(mddev->queue, raid5_mergeable_bvec);
Martin K. Petersen8f6c2e42009-07-01 11:13:45 +10005088 chunk_size = mddev->chunk_sectors << 9;
5089 blk_queue_io_min(mddev->queue, chunk_size);
5090 blk_queue_io_opt(mddev->queue, chunk_size *
5091 (conf->raid_disks - conf->max_degraded));
5092
5093 list_for_each_entry(rdev, &mddev->disks, same_set)
5094 disk_stack_limits(mddev->gendisk, rdev->bdev,
5095 rdev->data_offset << 9);
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08005096
Linus Torvalds1da177e2005-04-16 15:20:36 -07005097 return 0;
5098abort:
NeilBrowne0cf8f02009-03-31 14:39:39 +11005099 md_unregister_thread(mddev->thread);
NeilBrown91adb562009-03-31 14:39:39 +11005100 mddev->thread = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005101 if (conf) {
5102 print_raid5_conf(conf);
Dan Williams95fc17a2009-07-31 12:39:15 +10005103 free_conf(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005104 }
5105 mddev->private = NULL;
NeilBrown0c55e022010-05-03 14:09:02 +10005106 printk(KERN_ALERT "md/raid:%s: failed to run raid set.\n", mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005107 return -EIO;
5108}
5109
NeilBrown3f294f42005-11-08 21:39:25 -08005110static int stop(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005111{
H Hartley Sweeten7b928132010-03-08 16:02:40 +11005112 raid5_conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005113
5114 md_unregister_thread(mddev->thread);
5115 mddev->thread = NULL;
NeilBrown041ae522007-03-26 21:32:14 -08005116 mddev->queue->backing_dev_info.congested_fn = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005117 blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/
Dan Williams95fc17a2009-07-31 12:39:15 +10005118 free_conf(conf);
NeilBrowna64c8762010-04-14 17:15:37 +10005119 mddev->private = NULL;
5120 mddev->to_remove = &raid5_attrs_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005121 return 0;
5122}
5123
Dan Williams45b42332007-07-09 11:56:43 -07005124#ifdef DEBUG
NeilBrownd710e132008-10-13 11:55:12 +11005125static void print_sh(struct seq_file *seq, struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005126{
5127 int i;
5128
NeilBrown16a53ec2006-06-26 00:27:38 -07005129 seq_printf(seq, "sh %llu, pd_idx %d, state %ld.\n",
5130 (unsigned long long)sh->sector, sh->pd_idx, sh->state);
5131 seq_printf(seq, "sh %llu, count %d.\n",
5132 (unsigned long long)sh->sector, atomic_read(&sh->count));
5133 seq_printf(seq, "sh %llu, ", (unsigned long long)sh->sector);
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005134 for (i = 0; i < sh->disks; i++) {
NeilBrown16a53ec2006-06-26 00:27:38 -07005135 seq_printf(seq, "(cache%d: %p %ld) ",
5136 i, sh->dev[i].page, sh->dev[i].flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005137 }
NeilBrown16a53ec2006-06-26 00:27:38 -07005138 seq_printf(seq, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005139}
5140
NeilBrownd710e132008-10-13 11:55:12 +11005141static void printall(struct seq_file *seq, raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005142{
5143 struct stripe_head *sh;
NeilBrownfccddba2006-01-06 00:20:33 -08005144 struct hlist_node *hn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145 int i;
5146
5147 spin_lock_irq(&conf->device_lock);
5148 for (i = 0; i < NR_HASH; i++) {
NeilBrownfccddba2006-01-06 00:20:33 -08005149 hlist_for_each_entry(sh, hn, &conf->stripe_hashtbl[i], hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150 if (sh->raid_conf != conf)
5151 continue;
NeilBrown16a53ec2006-06-26 00:27:38 -07005152 print_sh(seq, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005153 }
5154 }
5155 spin_unlock_irq(&conf->device_lock);
5156}
5157#endif
5158
NeilBrownd710e132008-10-13 11:55:12 +11005159static void status(struct seq_file *seq, mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005160{
H Hartley Sweeten7b928132010-03-08 16:02:40 +11005161 raid5_conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005162 int i;
5163
Andre Noll9d8f0362009-06-18 08:45:01 +10005164 seq_printf(seq, " level %d, %dk chunk, algorithm %d", mddev->level,
5165 mddev->chunk_sectors / 2, mddev->layout);
NeilBrown02c2de82006-10-03 01:15:47 -07005166 seq_printf (seq, " [%d/%d] [", conf->raid_disks, conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005167 for (i = 0; i < conf->raid_disks; i++)
5168 seq_printf (seq, "%s",
5169 conf->disks[i].rdev &&
NeilBrownb2d444d2005-11-08 21:39:31 -08005170 test_bit(In_sync, &conf->disks[i].rdev->flags) ? "U" : "_");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005171 seq_printf (seq, "]");
Dan Williams45b42332007-07-09 11:56:43 -07005172#ifdef DEBUG
NeilBrown16a53ec2006-06-26 00:27:38 -07005173 seq_printf (seq, "\n");
5174 printall(seq, conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005175#endif
5176}
5177
5178static void print_raid5_conf (raid5_conf_t *conf)
5179{
5180 int i;
5181 struct disk_info *tmp;
5182
NeilBrown0c55e022010-05-03 14:09:02 +10005183 printk(KERN_DEBUG "RAID conf printout:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005184 if (!conf) {
5185 printk("(conf==NULL)\n");
5186 return;
5187 }
NeilBrown0c55e022010-05-03 14:09:02 +10005188 printk(KERN_DEBUG " --- level:%d rd:%d wd:%d\n", conf->level,
5189 conf->raid_disks,
5190 conf->raid_disks - conf->mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005191
5192 for (i = 0; i < conf->raid_disks; i++) {
5193 char b[BDEVNAME_SIZE];
5194 tmp = conf->disks + i;
5195 if (tmp->rdev)
NeilBrown0c55e022010-05-03 14:09:02 +10005196 printk(KERN_DEBUG " disk %d, o:%d, dev:%s\n",
5197 i, !test_bit(Faulty, &tmp->rdev->flags),
5198 bdevname(tmp->rdev->bdev, b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005199 }
5200}
5201
5202static int raid5_spare_active(mddev_t *mddev)
5203{
5204 int i;
5205 raid5_conf_t *conf = mddev->private;
5206 struct disk_info *tmp;
5207
5208 for (i = 0; i < conf->raid_disks; i++) {
5209 tmp = conf->disks + i;
5210 if (tmp->rdev
NeilBrown70fffd02010-06-16 17:01:25 +10005211 && tmp->rdev->recovery_offset == MaxSector
NeilBrownb2d444d2005-11-08 21:39:31 -08005212 && !test_bit(Faulty, &tmp->rdev->flags)
NeilBrownc04be0a2006-10-03 01:15:53 -07005213 && !test_and_set_bit(In_sync, &tmp->rdev->flags)) {
5214 unsigned long flags;
5215 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005216 mddev->degraded--;
NeilBrownc04be0a2006-10-03 01:15:53 -07005217 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218 }
5219 }
5220 print_raid5_conf(conf);
5221 return 0;
5222}
5223
5224static int raid5_remove_disk(mddev_t *mddev, int number)
5225{
5226 raid5_conf_t *conf = mddev->private;
5227 int err = 0;
5228 mdk_rdev_t *rdev;
5229 struct disk_info *p = conf->disks + number;
5230
5231 print_raid5_conf(conf);
5232 rdev = p->rdev;
5233 if (rdev) {
NeilBrownec32a2b2009-03-31 15:17:38 +11005234 if (number >= conf->raid_disks &&
5235 conf->reshape_progress == MaxSector)
5236 clear_bit(In_sync, &rdev->flags);
5237
NeilBrownb2d444d2005-11-08 21:39:31 -08005238 if (test_bit(In_sync, &rdev->flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07005239 atomic_read(&rdev->nr_pending)) {
5240 err = -EBUSY;
5241 goto abort;
5242 }
NeilBrowndfc70642008-05-23 13:04:39 -07005243 /* Only remove non-faulty devices if recovery
5244 * isn't possible.
5245 */
5246 if (!test_bit(Faulty, &rdev->flags) &&
NeilBrownec32a2b2009-03-31 15:17:38 +11005247 mddev->degraded <= conf->max_degraded &&
5248 number < conf->raid_disks) {
NeilBrowndfc70642008-05-23 13:04:39 -07005249 err = -EBUSY;
5250 goto abort;
5251 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005252 p->rdev = NULL;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07005253 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005254 if (atomic_read(&rdev->nr_pending)) {
5255 /* lost the race, try later */
5256 err = -EBUSY;
5257 p->rdev = rdev;
5258 }
5259 }
5260abort:
5261
5262 print_raid5_conf(conf);
5263 return err;
5264}
5265
5266static int raid5_add_disk(mddev_t *mddev, mdk_rdev_t *rdev)
5267{
5268 raid5_conf_t *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10005269 int err = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005270 int disk;
5271 struct disk_info *p;
Neil Brown6c2fce22008-06-28 08:31:31 +10005272 int first = 0;
5273 int last = conf->raid_disks - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005274
NeilBrown16a53ec2006-06-26 00:27:38 -07005275 if (mddev->degraded > conf->max_degraded)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005276 /* no point adding a device */
Neil Brown199050e2008-06-28 08:31:33 +10005277 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005278
Neil Brown6c2fce22008-06-28 08:31:31 +10005279 if (rdev->raid_disk >= 0)
5280 first = last = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005281
5282 /*
NeilBrown16a53ec2006-06-26 00:27:38 -07005283 * find the disk ... but prefer rdev->saved_raid_disk
5284 * if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005285 */
NeilBrown16a53ec2006-06-26 00:27:38 -07005286 if (rdev->saved_raid_disk >= 0 &&
Neil Brown6c2fce22008-06-28 08:31:31 +10005287 rdev->saved_raid_disk >= first &&
NeilBrown16a53ec2006-06-26 00:27:38 -07005288 conf->disks[rdev->saved_raid_disk].rdev == NULL)
5289 disk = rdev->saved_raid_disk;
5290 else
Neil Brown6c2fce22008-06-28 08:31:31 +10005291 disk = first;
5292 for ( ; disk <= last ; disk++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005293 if ((p=conf->disks + disk)->rdev == NULL) {
NeilBrownb2d444d2005-11-08 21:39:31 -08005294 clear_bit(In_sync, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005295 rdev->raid_disk = disk;
Neil Brown199050e2008-06-28 08:31:33 +10005296 err = 0;
NeilBrown72626682005-09-09 16:23:54 -07005297 if (rdev->saved_raid_disk != disk)
5298 conf->fullsync = 1;
Suzanne Woodd6065f72005-11-08 21:39:27 -08005299 rcu_assign_pointer(p->rdev, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005300 break;
5301 }
5302 print_raid5_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10005303 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005304}
5305
5306static int raid5_resize(mddev_t *mddev, sector_t sectors)
5307{
5308 /* no resync is happening, and there is enough space
5309 * on all devices, so we can resize.
5310 * We need to make sure resync covers any new space.
5311 * If the array is shrinking we should possibly wait until
5312 * any io in the removed space completes, but it hardly seems
5313 * worth it.
5314 */
Andre Noll9d8f0362009-06-18 08:45:01 +10005315 sectors &= ~((sector_t)mddev->chunk_sectors - 1);
Dan Williams1f403622009-03-31 14:59:03 +11005316 md_set_array_sectors(mddev, raid5_size(mddev, sectors,
5317 mddev->raid_disks));
Dan Williamsb522adc2009-03-31 15:00:31 +11005318 if (mddev->array_sectors >
5319 raid5_size(mddev, sectors, mddev->raid_disks))
5320 return -EINVAL;
Andre Nollf233ea52008-07-21 17:05:22 +10005321 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10005322 revalidate_disk(mddev->gendisk);
Andre Noll58c0fed2009-03-31 14:33:13 +11005323 if (sectors > mddev->dev_sectors && mddev->recovery_cp == MaxSector) {
5324 mddev->recovery_cp = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005325 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
5326 }
Andre Noll58c0fed2009-03-31 14:33:13 +11005327 mddev->dev_sectors = sectors;
NeilBrown4b5c7ae2005-07-27 11:43:28 -07005328 mddev->resync_max_sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005329 return 0;
5330}
5331
NeilBrown01ee22b2009-06-18 08:47:20 +10005332static int check_stripe_cache(mddev_t *mddev)
5333{
5334 /* Can only proceed if there are plenty of stripe_heads.
5335 * We need a minimum of one full stripe,, and for sensible progress
5336 * it is best to have about 4 times that.
5337 * If we require 4 times, then the default 256 4K stripe_heads will
5338 * allow for chunk sizes up to 256K, which is probably OK.
5339 * If the chunk size is greater, user-space should request more
5340 * stripe_heads first.
5341 */
5342 raid5_conf_t *conf = mddev->private;
5343 if (((mddev->chunk_sectors << 9) / STRIPE_SIZE) * 4
5344 > conf->max_nr_stripes ||
5345 ((mddev->new_chunk_sectors << 9) / STRIPE_SIZE) * 4
5346 > conf->max_nr_stripes) {
NeilBrown0c55e022010-05-03 14:09:02 +10005347 printk(KERN_WARNING "md/raid:%s: reshape: not enough stripes. Needed %lu\n",
5348 mdname(mddev),
NeilBrown01ee22b2009-06-18 08:47:20 +10005349 ((max(mddev->chunk_sectors, mddev->new_chunk_sectors) << 9)
5350 / STRIPE_SIZE)*4);
5351 return 0;
5352 }
5353 return 1;
5354}
5355
NeilBrown50ac1682009-06-18 08:47:55 +10005356static int check_reshape(mddev_t *mddev)
NeilBrown29269552006-03-27 01:18:10 -08005357{
NeilBrown070ec552009-06-16 16:54:21 +10005358 raid5_conf_t *conf = mddev->private;
NeilBrown29269552006-03-27 01:18:10 -08005359
NeilBrown88ce4932009-03-31 15:24:23 +11005360 if (mddev->delta_disks == 0 &&
5361 mddev->new_layout == mddev->layout &&
Andre Noll664e7c42009-06-18 08:45:27 +10005362 mddev->new_chunk_sectors == mddev->chunk_sectors)
NeilBrown50ac1682009-06-18 08:47:55 +10005363 return 0; /* nothing to do */
NeilBrowndba034e2008-08-05 15:54:13 +10005364 if (mddev->bitmap)
5365 /* Cannot grow a bitmap yet */
5366 return -EBUSY;
NeilBrownec32a2b2009-03-31 15:17:38 +11005367 if (mddev->degraded > conf->max_degraded)
5368 return -EINVAL;
5369 if (mddev->delta_disks < 0) {
5370 /* We might be able to shrink, but the devices must
5371 * be made bigger first.
5372 * For raid6, 4 is the minimum size.
5373 * Otherwise 2 is the minimum
5374 */
5375 int min = 2;
5376 if (mddev->level == 6)
5377 min = 4;
5378 if (mddev->raid_disks + mddev->delta_disks < min)
5379 return -EINVAL;
5380 }
NeilBrown29269552006-03-27 01:18:10 -08005381
NeilBrown01ee22b2009-06-18 08:47:20 +10005382 if (!check_stripe_cache(mddev))
NeilBrown29269552006-03-27 01:18:10 -08005383 return -ENOSPC;
NeilBrown29269552006-03-27 01:18:10 -08005384
NeilBrownec32a2b2009-03-31 15:17:38 +11005385 return resize_stripes(conf, conf->raid_disks + mddev->delta_disks);
NeilBrown63c70c42006-03-27 01:18:13 -08005386}
5387
5388static int raid5_start_reshape(mddev_t *mddev)
5389{
NeilBrown070ec552009-06-16 16:54:21 +10005390 raid5_conf_t *conf = mddev->private;
NeilBrown63c70c42006-03-27 01:18:13 -08005391 mdk_rdev_t *rdev;
NeilBrown63c70c42006-03-27 01:18:13 -08005392 int spares = 0;
5393 int added_devices = 0;
NeilBrownc04be0a2006-10-03 01:15:53 -07005394 unsigned long flags;
NeilBrown63c70c42006-03-27 01:18:13 -08005395
NeilBrownf4168852007-02-28 20:11:53 -08005396 if (test_bit(MD_RECOVERY_RUNNING, &mddev->recovery))
NeilBrown63c70c42006-03-27 01:18:13 -08005397 return -EBUSY;
5398
NeilBrown01ee22b2009-06-18 08:47:20 +10005399 if (!check_stripe_cache(mddev))
5400 return -ENOSPC;
5401
Cheng Renquan159ec1f2009-01-09 08:31:08 +11005402 list_for_each_entry(rdev, &mddev->disks, same_set)
NeilBrown29269552006-03-27 01:18:10 -08005403 if (rdev->raid_disk < 0 &&
5404 !test_bit(Faulty, &rdev->flags))
5405 spares++;
NeilBrown63c70c42006-03-27 01:18:13 -08005406
NeilBrownf4168852007-02-28 20:11:53 -08005407 if (spares - mddev->degraded < mddev->delta_disks - conf->max_degraded)
NeilBrown29269552006-03-27 01:18:10 -08005408 /* Not enough devices even to make a degraded array
5409 * of that size
5410 */
5411 return -EINVAL;
5412
NeilBrownec32a2b2009-03-31 15:17:38 +11005413 /* Refuse to reduce size of the array. Any reductions in
5414 * array size must be through explicit setting of array_size
5415 * attribute.
5416 */
5417 if (raid5_size(mddev, 0, conf->raid_disks + mddev->delta_disks)
5418 < mddev->array_sectors) {
NeilBrown0c55e022010-05-03 14:09:02 +10005419 printk(KERN_ERR "md/raid:%s: array size must be reduced "
NeilBrownec32a2b2009-03-31 15:17:38 +11005420 "before number of disks\n", mdname(mddev));
5421 return -EINVAL;
5422 }
5423
NeilBrownf6705572006-03-27 01:18:11 -08005424 atomic_set(&conf->reshape_stripes, 0);
NeilBrown29269552006-03-27 01:18:10 -08005425 spin_lock_irq(&conf->device_lock);
5426 conf->previous_raid_disks = conf->raid_disks;
NeilBrown63c70c42006-03-27 01:18:13 -08005427 conf->raid_disks += mddev->delta_disks;
Andre Noll09c9e5f2009-06-18 08:45:55 +10005428 conf->prev_chunk_sectors = conf->chunk_sectors;
5429 conf->chunk_sectors = mddev->new_chunk_sectors;
NeilBrown88ce4932009-03-31 15:24:23 +11005430 conf->prev_algo = conf->algorithm;
5431 conf->algorithm = mddev->new_layout;
NeilBrownfef9c612009-03-31 15:16:46 +11005432 if (mddev->delta_disks < 0)
5433 conf->reshape_progress = raid5_size(mddev, 0, 0);
5434 else
5435 conf->reshape_progress = 0;
5436 conf->reshape_safe = conf->reshape_progress;
NeilBrown86b42c72009-03-31 15:19:03 +11005437 conf->generation++;
NeilBrown29269552006-03-27 01:18:10 -08005438 spin_unlock_irq(&conf->device_lock);
5439
5440 /* Add some new drives, as many as will fit.
5441 * We know there are enough to make the newly sized array work.
5442 */
Cheng Renquan159ec1f2009-01-09 08:31:08 +11005443 list_for_each_entry(rdev, &mddev->disks, same_set)
NeilBrown29269552006-03-27 01:18:10 -08005444 if (rdev->raid_disk < 0 &&
5445 !test_bit(Faulty, &rdev->flags)) {
Neil Brown199050e2008-06-28 08:31:33 +10005446 if (raid5_add_disk(mddev, rdev) == 0) {
NeilBrown29269552006-03-27 01:18:10 -08005447 char nm[20];
NeilBrown9eb07c22010-02-09 12:31:47 +11005448 if (rdev->raid_disk >= conf->previous_raid_disks) {
NeilBrown7ef90142009-11-13 17:40:51 +11005449 set_bit(In_sync, &rdev->flags);
NeilBrown9eb07c22010-02-09 12:31:47 +11005450 added_devices++;
5451 } else
NeilBrown7ef90142009-11-13 17:40:51 +11005452 rdev->recovery_offset = 0;
NeilBrown29269552006-03-27 01:18:10 -08005453 sprintf(nm, "rd%d", rdev->raid_disk);
NeilBrown5e55e2f2007-03-26 21:32:14 -08005454 if (sysfs_create_link(&mddev->kobj,
5455 &rdev->kobj, nm))
5456 printk(KERN_WARNING
NeilBrown0c55e022010-05-03 14:09:02 +10005457 "md/raid:%s: failed to create "
5458 " link %s\n",
5459 mdname(mddev), nm);
NeilBrown29269552006-03-27 01:18:10 -08005460 } else
5461 break;
5462 }
5463
NeilBrown9eb07c22010-02-09 12:31:47 +11005464 /* When a reshape changes the number of devices, ->degraded
5465 * is measured against the large of the pre and post number of
5466 * devices.*/
NeilBrownec32a2b2009-03-31 15:17:38 +11005467 if (mddev->delta_disks > 0) {
5468 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrown9eb07c22010-02-09 12:31:47 +11005469 mddev->degraded += (conf->raid_disks - conf->previous_raid_disks)
NeilBrownec32a2b2009-03-31 15:17:38 +11005470 - added_devices;
5471 spin_unlock_irqrestore(&conf->device_lock, flags);
5472 }
NeilBrown63c70c42006-03-27 01:18:13 -08005473 mddev->raid_disks = conf->raid_disks;
NeilBrowne5164022009-08-03 10:59:57 +10005474 mddev->reshape_position = conf->reshape_progress;
NeilBrown850b2b42006-10-03 01:15:46 -07005475 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrownf6705572006-03-27 01:18:11 -08005476
NeilBrown29269552006-03-27 01:18:10 -08005477 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
5478 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
5479 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
5480 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
5481 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
NeilBrown0da3c612009-09-23 18:09:45 +10005482 "reshape");
NeilBrown29269552006-03-27 01:18:10 -08005483 if (!mddev->sync_thread) {
5484 mddev->recovery = 0;
5485 spin_lock_irq(&conf->device_lock);
5486 mddev->raid_disks = conf->raid_disks = conf->previous_raid_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11005487 conf->reshape_progress = MaxSector;
NeilBrown29269552006-03-27 01:18:10 -08005488 spin_unlock_irq(&conf->device_lock);
5489 return -EAGAIN;
5490 }
NeilBrownc8f517c2009-03-31 15:28:40 +11005491 conf->reshape_checkpoint = jiffies;
NeilBrown29269552006-03-27 01:18:10 -08005492 md_wakeup_thread(mddev->sync_thread);
5493 md_new_event(mddev);
5494 return 0;
5495}
NeilBrown29269552006-03-27 01:18:10 -08005496
NeilBrownec32a2b2009-03-31 15:17:38 +11005497/* This is called from the reshape thread and should make any
5498 * changes needed in 'conf'
5499 */
NeilBrown29269552006-03-27 01:18:10 -08005500static void end_reshape(raid5_conf_t *conf)
5501{
NeilBrown29269552006-03-27 01:18:10 -08005502
NeilBrownf6705572006-03-27 01:18:11 -08005503 if (!test_bit(MD_RECOVERY_INTR, &conf->mddev->recovery)) {
Dan Williams80c3a6c2009-03-17 18:10:40 -07005504
NeilBrownf6705572006-03-27 01:18:11 -08005505 spin_lock_irq(&conf->device_lock);
NeilBrowncea9c222009-03-31 15:15:05 +11005506 conf->previous_raid_disks = conf->raid_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11005507 conf->reshape_progress = MaxSector;
NeilBrownf6705572006-03-27 01:18:11 -08005508 spin_unlock_irq(&conf->device_lock);
NeilBrownb0f9ec02009-03-31 15:27:18 +11005509 wake_up(&conf->wait_for_overlap);
NeilBrown16a53ec2006-06-26 00:27:38 -07005510
5511 /* read-ahead size must cover two whole stripes, which is
5512 * 2 * (datadisks) * chunksize where 'n' is the number of raid devices
5513 */
5514 {
NeilBrowncea9c222009-03-31 15:15:05 +11005515 int data_disks = conf->raid_disks - conf->max_degraded;
Andre Noll09c9e5f2009-06-18 08:45:55 +10005516 int stripe = data_disks * ((conf->chunk_sectors << 9)
NeilBrowncea9c222009-03-31 15:15:05 +11005517 / PAGE_SIZE);
NeilBrown16a53ec2006-06-26 00:27:38 -07005518 if (conf->mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
5519 conf->mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
5520 }
NeilBrown29269552006-03-27 01:18:10 -08005521 }
NeilBrown29269552006-03-27 01:18:10 -08005522}
5523
NeilBrownec32a2b2009-03-31 15:17:38 +11005524/* This is called from the raid5d thread with mddev_lock held.
5525 * It makes config changes to the device.
5526 */
NeilBrowncea9c222009-03-31 15:15:05 +11005527static void raid5_finish_reshape(mddev_t *mddev)
5528{
NeilBrown070ec552009-06-16 16:54:21 +10005529 raid5_conf_t *conf = mddev->private;
NeilBrowncea9c222009-03-31 15:15:05 +11005530
5531 if (!test_bit(MD_RECOVERY_INTR, &mddev->recovery)) {
5532
NeilBrownec32a2b2009-03-31 15:17:38 +11005533 if (mddev->delta_disks > 0) {
5534 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
5535 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10005536 revalidate_disk(mddev->gendisk);
NeilBrownec32a2b2009-03-31 15:17:38 +11005537 } else {
5538 int d;
NeilBrownec32a2b2009-03-31 15:17:38 +11005539 mddev->degraded = conf->raid_disks;
5540 for (d = 0; d < conf->raid_disks ; d++)
5541 if (conf->disks[d].rdev &&
5542 test_bit(In_sync,
5543 &conf->disks[d].rdev->flags))
5544 mddev->degraded--;
5545 for (d = conf->raid_disks ;
5546 d < conf->raid_disks - mddev->delta_disks;
NeilBrown1a67dde2009-08-13 10:41:49 +10005547 d++) {
5548 mdk_rdev_t *rdev = conf->disks[d].rdev;
5549 if (rdev && raid5_remove_disk(mddev, d) == 0) {
5550 char nm[20];
5551 sprintf(nm, "rd%d", rdev->raid_disk);
5552 sysfs_remove_link(&mddev->kobj, nm);
5553 rdev->raid_disk = -1;
5554 }
5555 }
NeilBrowncea9c222009-03-31 15:15:05 +11005556 }
NeilBrown88ce4932009-03-31 15:24:23 +11005557 mddev->layout = conf->algorithm;
Andre Noll09c9e5f2009-06-18 08:45:55 +10005558 mddev->chunk_sectors = conf->chunk_sectors;
NeilBrownec32a2b2009-03-31 15:17:38 +11005559 mddev->reshape_position = MaxSector;
5560 mddev->delta_disks = 0;
NeilBrowncea9c222009-03-31 15:15:05 +11005561 }
5562}
5563
NeilBrown72626682005-09-09 16:23:54 -07005564static void raid5_quiesce(mddev_t *mddev, int state)
5565{
NeilBrown070ec552009-06-16 16:54:21 +10005566 raid5_conf_t *conf = mddev->private;
NeilBrown72626682005-09-09 16:23:54 -07005567
5568 switch(state) {
NeilBrowne464eaf2006-03-27 01:18:14 -08005569 case 2: /* resume for a suspend */
5570 wake_up(&conf->wait_for_overlap);
5571 break;
5572
NeilBrown72626682005-09-09 16:23:54 -07005573 case 1: /* stop all writes */
5574 spin_lock_irq(&conf->device_lock);
NeilBrown64bd6602009-08-03 10:59:58 +10005575 /* '2' tells resync/reshape to pause so that all
5576 * active stripes can drain
5577 */
5578 conf->quiesce = 2;
NeilBrown72626682005-09-09 16:23:54 -07005579 wait_event_lock_irq(conf->wait_for_stripe,
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005580 atomic_read(&conf->active_stripes) == 0 &&
5581 atomic_read(&conf->active_aligned_reads) == 0,
NeilBrown72626682005-09-09 16:23:54 -07005582 conf->device_lock, /* nothing */);
NeilBrown64bd6602009-08-03 10:59:58 +10005583 conf->quiesce = 1;
NeilBrown72626682005-09-09 16:23:54 -07005584 spin_unlock_irq(&conf->device_lock);
NeilBrown64bd6602009-08-03 10:59:58 +10005585 /* allow reshape to continue */
5586 wake_up(&conf->wait_for_overlap);
NeilBrown72626682005-09-09 16:23:54 -07005587 break;
5588
5589 case 0: /* re-enable writes */
5590 spin_lock_irq(&conf->device_lock);
5591 conf->quiesce = 0;
5592 wake_up(&conf->wait_for_stripe);
NeilBrowne464eaf2006-03-27 01:18:14 -08005593 wake_up(&conf->wait_for_overlap);
NeilBrown72626682005-09-09 16:23:54 -07005594 spin_unlock_irq(&conf->device_lock);
5595 break;
5596 }
NeilBrown72626682005-09-09 16:23:54 -07005597}
NeilBrownb15c2e52006-01-06 00:20:16 -08005598
NeilBrownd562b0c2009-03-31 14:39:39 +11005599
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005600static void *raid45_takeover_raid0(mddev_t *mddev, int level)
Trela Maciej54071b32010-03-08 16:02:42 +11005601{
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005602 struct raid0_private_data *raid0_priv = mddev->private;
Trela Maciej54071b32010-03-08 16:02:42 +11005603
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005604 /* for raid0 takeover only one zone is supported */
5605 if (raid0_priv->nr_strip_zones > 1) {
NeilBrown0c55e022010-05-03 14:09:02 +10005606 printk(KERN_ERR "md/raid:%s: cannot takeover raid0 with more than one zone.\n",
5607 mdname(mddev));
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005608 return ERR_PTR(-EINVAL);
5609 }
5610
5611 mddev->new_level = level;
Trela Maciej54071b32010-03-08 16:02:42 +11005612 mddev->new_layout = ALGORITHM_PARITY_N;
5613 mddev->new_chunk_sectors = mddev->chunk_sectors;
5614 mddev->raid_disks += 1;
5615 mddev->delta_disks = 1;
5616 /* make sure it will be not marked as dirty */
5617 mddev->recovery_cp = MaxSector;
5618
5619 return setup_conf(mddev);
5620}
5621
5622
NeilBrownd562b0c2009-03-31 14:39:39 +11005623static void *raid5_takeover_raid1(mddev_t *mddev)
5624{
5625 int chunksect;
5626
5627 if (mddev->raid_disks != 2 ||
5628 mddev->degraded > 1)
5629 return ERR_PTR(-EINVAL);
5630
5631 /* Should check if there are write-behind devices? */
5632
5633 chunksect = 64*2; /* 64K by default */
5634
5635 /* The array must be an exact multiple of chunksize */
5636 while (chunksect && (mddev->array_sectors & (chunksect-1)))
5637 chunksect >>= 1;
5638
5639 if ((chunksect<<9) < STRIPE_SIZE)
5640 /* array size does not allow a suitable chunk size */
5641 return ERR_PTR(-EINVAL);
5642
5643 mddev->new_level = 5;
5644 mddev->new_layout = ALGORITHM_LEFT_SYMMETRIC;
Andre Noll664e7c42009-06-18 08:45:27 +10005645 mddev->new_chunk_sectors = chunksect;
NeilBrownd562b0c2009-03-31 14:39:39 +11005646
5647 return setup_conf(mddev);
5648}
5649
NeilBrownfc9739c2009-03-31 14:57:20 +11005650static void *raid5_takeover_raid6(mddev_t *mddev)
5651{
5652 int new_layout;
5653
5654 switch (mddev->layout) {
5655 case ALGORITHM_LEFT_ASYMMETRIC_6:
5656 new_layout = ALGORITHM_LEFT_ASYMMETRIC;
5657 break;
5658 case ALGORITHM_RIGHT_ASYMMETRIC_6:
5659 new_layout = ALGORITHM_RIGHT_ASYMMETRIC;
5660 break;
5661 case ALGORITHM_LEFT_SYMMETRIC_6:
5662 new_layout = ALGORITHM_LEFT_SYMMETRIC;
5663 break;
5664 case ALGORITHM_RIGHT_SYMMETRIC_6:
5665 new_layout = ALGORITHM_RIGHT_SYMMETRIC;
5666 break;
5667 case ALGORITHM_PARITY_0_6:
5668 new_layout = ALGORITHM_PARITY_0;
5669 break;
5670 case ALGORITHM_PARITY_N:
5671 new_layout = ALGORITHM_PARITY_N;
5672 break;
5673 default:
5674 return ERR_PTR(-EINVAL);
5675 }
5676 mddev->new_level = 5;
5677 mddev->new_layout = new_layout;
5678 mddev->delta_disks = -1;
5679 mddev->raid_disks -= 1;
5680 return setup_conf(mddev);
5681}
5682
NeilBrownd562b0c2009-03-31 14:39:39 +11005683
NeilBrown50ac1682009-06-18 08:47:55 +10005684static int raid5_check_reshape(mddev_t *mddev)
NeilBrownb3546032009-03-31 14:56:41 +11005685{
NeilBrown88ce4932009-03-31 15:24:23 +11005686 /* For a 2-drive array, the layout and chunk size can be changed
5687 * immediately as not restriping is needed.
5688 * For larger arrays we record the new value - after validation
5689 * to be used by a reshape pass.
NeilBrownb3546032009-03-31 14:56:41 +11005690 */
NeilBrown070ec552009-06-16 16:54:21 +10005691 raid5_conf_t *conf = mddev->private;
NeilBrown597a7112009-06-18 08:47:42 +10005692 int new_chunk = mddev->new_chunk_sectors;
NeilBrownb3546032009-03-31 14:56:41 +11005693
NeilBrown597a7112009-06-18 08:47:42 +10005694 if (mddev->new_layout >= 0 && !algorithm_valid_raid5(mddev->new_layout))
NeilBrownb3546032009-03-31 14:56:41 +11005695 return -EINVAL;
5696 if (new_chunk > 0) {
Andre Noll0ba459d2009-06-18 08:46:10 +10005697 if (!is_power_of_2(new_chunk))
NeilBrownb3546032009-03-31 14:56:41 +11005698 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10005699 if (new_chunk < (PAGE_SIZE>>9))
NeilBrownb3546032009-03-31 14:56:41 +11005700 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10005701 if (mddev->array_sectors & (new_chunk-1))
NeilBrownb3546032009-03-31 14:56:41 +11005702 /* not factor of array size */
5703 return -EINVAL;
5704 }
5705
5706 /* They look valid */
5707
NeilBrown88ce4932009-03-31 15:24:23 +11005708 if (mddev->raid_disks == 2) {
NeilBrown597a7112009-06-18 08:47:42 +10005709 /* can make the change immediately */
5710 if (mddev->new_layout >= 0) {
5711 conf->algorithm = mddev->new_layout;
5712 mddev->layout = mddev->new_layout;
NeilBrown88ce4932009-03-31 15:24:23 +11005713 }
5714 if (new_chunk > 0) {
NeilBrown597a7112009-06-18 08:47:42 +10005715 conf->chunk_sectors = new_chunk ;
5716 mddev->chunk_sectors = new_chunk;
NeilBrown88ce4932009-03-31 15:24:23 +11005717 }
5718 set_bit(MD_CHANGE_DEVS, &mddev->flags);
5719 md_wakeup_thread(mddev->thread);
NeilBrownb3546032009-03-31 14:56:41 +11005720 }
NeilBrown50ac1682009-06-18 08:47:55 +10005721 return check_reshape(mddev);
NeilBrown88ce4932009-03-31 15:24:23 +11005722}
5723
NeilBrown50ac1682009-06-18 08:47:55 +10005724static int raid6_check_reshape(mddev_t *mddev)
NeilBrown88ce4932009-03-31 15:24:23 +11005725{
NeilBrown597a7112009-06-18 08:47:42 +10005726 int new_chunk = mddev->new_chunk_sectors;
NeilBrown50ac1682009-06-18 08:47:55 +10005727
NeilBrown597a7112009-06-18 08:47:42 +10005728 if (mddev->new_layout >= 0 && !algorithm_valid_raid6(mddev->new_layout))
NeilBrown88ce4932009-03-31 15:24:23 +11005729 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11005730 if (new_chunk > 0) {
Andre Noll0ba459d2009-06-18 08:46:10 +10005731 if (!is_power_of_2(new_chunk))
NeilBrown88ce4932009-03-31 15:24:23 +11005732 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10005733 if (new_chunk < (PAGE_SIZE >> 9))
NeilBrown88ce4932009-03-31 15:24:23 +11005734 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10005735 if (mddev->array_sectors & (new_chunk-1))
NeilBrown88ce4932009-03-31 15:24:23 +11005736 /* not factor of array size */
5737 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11005738 }
NeilBrown88ce4932009-03-31 15:24:23 +11005739
5740 /* They look valid */
NeilBrown50ac1682009-06-18 08:47:55 +10005741 return check_reshape(mddev);
NeilBrownb3546032009-03-31 14:56:41 +11005742}
5743
NeilBrownd562b0c2009-03-31 14:39:39 +11005744static void *raid5_takeover(mddev_t *mddev)
5745{
5746 /* raid5 can take over:
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005747 * raid0 - if there is only one strip zone - make it a raid4 layout
NeilBrownd562b0c2009-03-31 14:39:39 +11005748 * raid1 - if there are two drives. We need to know the chunk size
5749 * raid4 - trivial - just use a raid4 layout.
5750 * raid6 - Providing it is a *_6 layout
NeilBrownd562b0c2009-03-31 14:39:39 +11005751 */
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005752 if (mddev->level == 0)
5753 return raid45_takeover_raid0(mddev, 5);
NeilBrownd562b0c2009-03-31 14:39:39 +11005754 if (mddev->level == 1)
5755 return raid5_takeover_raid1(mddev);
NeilBrowne9d47582009-03-31 14:57:09 +11005756 if (mddev->level == 4) {
5757 mddev->new_layout = ALGORITHM_PARITY_N;
5758 mddev->new_level = 5;
5759 return setup_conf(mddev);
5760 }
NeilBrownfc9739c2009-03-31 14:57:20 +11005761 if (mddev->level == 6)
5762 return raid5_takeover_raid6(mddev);
NeilBrownd562b0c2009-03-31 14:39:39 +11005763
5764 return ERR_PTR(-EINVAL);
5765}
5766
NeilBrowna78d38a2010-03-22 16:53:49 +11005767static void *raid4_takeover(mddev_t *mddev)
5768{
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005769 /* raid4 can take over:
5770 * raid0 - if there is only one strip zone
5771 * raid5 - if layout is right
NeilBrowna78d38a2010-03-22 16:53:49 +11005772 */
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005773 if (mddev->level == 0)
5774 return raid45_takeover_raid0(mddev, 4);
NeilBrowna78d38a2010-03-22 16:53:49 +11005775 if (mddev->level == 5 &&
5776 mddev->layout == ALGORITHM_PARITY_N) {
5777 mddev->new_layout = 0;
5778 mddev->new_level = 4;
5779 return setup_conf(mddev);
5780 }
5781 return ERR_PTR(-EINVAL);
5782}
NeilBrownd562b0c2009-03-31 14:39:39 +11005783
NeilBrown245f46c2009-03-31 14:39:39 +11005784static struct mdk_personality raid5_personality;
5785
5786static void *raid6_takeover(mddev_t *mddev)
5787{
5788 /* Currently can only take over a raid5. We map the
5789 * personality to an equivalent raid6 personality
5790 * with the Q block at the end.
5791 */
5792 int new_layout;
5793
5794 if (mddev->pers != &raid5_personality)
5795 return ERR_PTR(-EINVAL);
5796 if (mddev->degraded > 1)
5797 return ERR_PTR(-EINVAL);
5798 if (mddev->raid_disks > 253)
5799 return ERR_PTR(-EINVAL);
5800 if (mddev->raid_disks < 3)
5801 return ERR_PTR(-EINVAL);
5802
5803 switch (mddev->layout) {
5804 case ALGORITHM_LEFT_ASYMMETRIC:
5805 new_layout = ALGORITHM_LEFT_ASYMMETRIC_6;
5806 break;
5807 case ALGORITHM_RIGHT_ASYMMETRIC:
5808 new_layout = ALGORITHM_RIGHT_ASYMMETRIC_6;
5809 break;
5810 case ALGORITHM_LEFT_SYMMETRIC:
5811 new_layout = ALGORITHM_LEFT_SYMMETRIC_6;
5812 break;
5813 case ALGORITHM_RIGHT_SYMMETRIC:
5814 new_layout = ALGORITHM_RIGHT_SYMMETRIC_6;
5815 break;
5816 case ALGORITHM_PARITY_0:
5817 new_layout = ALGORITHM_PARITY_0_6;
5818 break;
5819 case ALGORITHM_PARITY_N:
5820 new_layout = ALGORITHM_PARITY_N;
5821 break;
5822 default:
5823 return ERR_PTR(-EINVAL);
5824 }
5825 mddev->new_level = 6;
5826 mddev->new_layout = new_layout;
5827 mddev->delta_disks = 1;
5828 mddev->raid_disks += 1;
5829 return setup_conf(mddev);
5830}
5831
5832
NeilBrown16a53ec2006-06-26 00:27:38 -07005833static struct mdk_personality raid6_personality =
5834{
5835 .name = "raid6",
5836 .level = 6,
5837 .owner = THIS_MODULE,
5838 .make_request = make_request,
5839 .run = run,
5840 .stop = stop,
5841 .status = status,
5842 .error_handler = error,
5843 .hot_add_disk = raid5_add_disk,
5844 .hot_remove_disk= raid5_remove_disk,
5845 .spare_active = raid5_spare_active,
5846 .sync_request = sync_request,
5847 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07005848 .size = raid5_size,
NeilBrown50ac1682009-06-18 08:47:55 +10005849 .check_reshape = raid6_check_reshape,
NeilBrownf4168852007-02-28 20:11:53 -08005850 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11005851 .finish_reshape = raid5_finish_reshape,
NeilBrown16a53ec2006-06-26 00:27:38 -07005852 .quiesce = raid5_quiesce,
NeilBrown245f46c2009-03-31 14:39:39 +11005853 .takeover = raid6_takeover,
NeilBrown16a53ec2006-06-26 00:27:38 -07005854};
NeilBrown2604b702006-01-06 00:20:36 -08005855static struct mdk_personality raid5_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07005856{
5857 .name = "raid5",
NeilBrown2604b702006-01-06 00:20:36 -08005858 .level = 5,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005859 .owner = THIS_MODULE,
5860 .make_request = make_request,
5861 .run = run,
5862 .stop = stop,
5863 .status = status,
5864 .error_handler = error,
5865 .hot_add_disk = raid5_add_disk,
5866 .hot_remove_disk= raid5_remove_disk,
5867 .spare_active = raid5_spare_active,
5868 .sync_request = sync_request,
5869 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07005870 .size = raid5_size,
NeilBrown63c70c42006-03-27 01:18:13 -08005871 .check_reshape = raid5_check_reshape,
5872 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11005873 .finish_reshape = raid5_finish_reshape,
NeilBrown72626682005-09-09 16:23:54 -07005874 .quiesce = raid5_quiesce,
NeilBrownd562b0c2009-03-31 14:39:39 +11005875 .takeover = raid5_takeover,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005876};
5877
NeilBrown2604b702006-01-06 00:20:36 -08005878static struct mdk_personality raid4_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07005879{
NeilBrown2604b702006-01-06 00:20:36 -08005880 .name = "raid4",
5881 .level = 4,
5882 .owner = THIS_MODULE,
5883 .make_request = make_request,
5884 .run = run,
5885 .stop = stop,
5886 .status = status,
5887 .error_handler = error,
5888 .hot_add_disk = raid5_add_disk,
5889 .hot_remove_disk= raid5_remove_disk,
5890 .spare_active = raid5_spare_active,
5891 .sync_request = sync_request,
5892 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07005893 .size = raid5_size,
NeilBrown3d378902007-03-26 21:32:13 -08005894 .check_reshape = raid5_check_reshape,
5895 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11005896 .finish_reshape = raid5_finish_reshape,
NeilBrown2604b702006-01-06 00:20:36 -08005897 .quiesce = raid5_quiesce,
NeilBrowna78d38a2010-03-22 16:53:49 +11005898 .takeover = raid4_takeover,
NeilBrown2604b702006-01-06 00:20:36 -08005899};
5900
5901static int __init raid5_init(void)
5902{
NeilBrown16a53ec2006-06-26 00:27:38 -07005903 register_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08005904 register_md_personality(&raid5_personality);
5905 register_md_personality(&raid4_personality);
5906 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005907}
5908
NeilBrown2604b702006-01-06 00:20:36 -08005909static void raid5_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005910{
NeilBrown16a53ec2006-06-26 00:27:38 -07005911 unregister_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08005912 unregister_md_personality(&raid5_personality);
5913 unregister_md_personality(&raid4_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005914}
5915
5916module_init(raid5_init);
5917module_exit(raid5_exit);
5918MODULE_LICENSE("GPL");
NeilBrown0efb9e62009-12-14 12:49:58 +11005919MODULE_DESCRIPTION("RAID4/5/6 (striping with parity) personality for MD");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005920MODULE_ALIAS("md-personality-4"); /* RAID5 */
NeilBrownd9d166c2006-01-06 00:20:51 -08005921MODULE_ALIAS("md-raid5");
5922MODULE_ALIAS("md-raid4");
NeilBrown2604b702006-01-06 00:20:36 -08005923MODULE_ALIAS("md-level-5");
5924MODULE_ALIAS("md-level-4");
NeilBrown16a53ec2006-06-26 00:27:38 -07005925MODULE_ALIAS("md-personality-8"); /* RAID6 */
5926MODULE_ALIAS("md-raid6");
5927MODULE_ALIAS("md-level-6");
5928
5929/* This used to be two separate modules, they were: */
5930MODULE_ALIAS("raid5");
5931MODULE_ALIAS("raid6");