blob: ad6694f8a3a88b3b1e1d2ae8c3a066028ad9746a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * raid5.c : Multiple Devices driver for Linux
3 * Copyright (C) 1996, 1997 Ingo Molnar, Miguel de Icaza, Gadi Oxman
4 * Copyright (C) 1999, 2000 Ingo Molnar
NeilBrown16a53ec2006-06-26 00:27:38 -07005 * Copyright (C) 2002, 2003 H. Peter Anvin
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
NeilBrown16a53ec2006-06-26 00:27:38 -07007 * RAID-4/5/6 management functions.
8 * Thanks to Penguin Computing for making the RAID-6 development possible
9 * by donating a test server!
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2, or (at your option)
14 * any later version.
15 *
16 * You should have received a copy of the GNU General Public License
17 * (for example /usr/src/linux/COPYING); if not, write to the Free
18 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
NeilBrownae3c20c2006-07-10 04:44:17 -070021/*
22 * BITMAP UNPLUGGING:
23 *
24 * The sequencing for updating the bitmap reliably is a little
25 * subtle (and I got it wrong the first time) so it deserves some
26 * explanation.
27 *
28 * We group bitmap updates into batches. Each batch has a number.
29 * We may write out several batches at once, but that isn't very important.
30 * conf->bm_write is the number of the last batch successfully written.
31 * conf->bm_flush is the number of the last batch that was closed to
32 * new additions.
33 * When we discover that we will need to write to any block in a stripe
34 * (in add_stripe_bio) we update the in-memory bitmap and record in sh->bm_seq
35 * the number of the batch it will be in. This is bm_flush+1.
36 * When we are ready to do a write, if that batch hasn't been written yet,
37 * we plug the array and queue the stripe for later.
38 * When an unplug happens, we increment bm_flush, thus closing the current
39 * batch.
40 * When we notice that bm_flush > bm_write, we write out all pending updates
41 * to the bitmap, and advance bm_write to where bm_flush was.
42 * This may occasionally write a bit out twice, but is sure never to
43 * miss any bits.
44 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
NeilBrownbff61972009-03-31 14:33:13 +110046#include <linux/blkdev.h>
NeilBrownf6705572006-03-27 01:18:11 -080047#include <linux/kthread.h>
Dan Williamsf701d582009-03-31 15:09:39 +110048#include <linux/raid/pq.h>
Dan Williams91c00922007-01-02 13:52:30 -070049#include <linux/async_tx.h>
Dan Williams07a3b412009-08-29 19:13:13 -070050#include <linux/async.h>
NeilBrownbff61972009-03-31 14:33:13 +110051#include <linux/seq_file.h>
Dan Williams36d1c642009-07-14 11:48:22 -070052#include <linux/cpu.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090053#include <linux/slab.h>
NeilBrown43b2e5d2009-03-31 14:33:13 +110054#include "md.h"
NeilBrownbff61972009-03-31 14:33:13 +110055#include "raid5.h"
Trela Maciej54071b32010-03-08 16:02:42 +110056#include "raid0.h"
Christoph Hellwigef740c32009-03-31 14:27:03 +110057#include "bitmap.h"
NeilBrown72626682005-09-09 16:23:54 -070058
Linus Torvalds1da177e2005-04-16 15:20:36 -070059/*
60 * Stripe cache
61 */
62
63#define NR_STRIPES 256
64#define STRIPE_SIZE PAGE_SIZE
65#define STRIPE_SHIFT (PAGE_SHIFT - 9)
66#define STRIPE_SECTORS (STRIPE_SIZE>>9)
67#define IO_THRESHOLD 1
Dan Williams8b3e6cd2008-04-28 02:15:53 -070068#define BYPASS_THRESHOLD 1
NeilBrownfccddba2006-01-06 00:20:33 -080069#define NR_HASH (PAGE_SIZE / sizeof(struct hlist_head))
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#define HASH_MASK (NR_HASH - 1)
71
NeilBrownfccddba2006-01-06 00:20:33 -080072#define stripe_hash(conf, sect) (&((conf)->stripe_hashtbl[((sect) >> STRIPE_SHIFT) & HASH_MASK]))
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74/* bio's attached to a stripe+device for I/O are linked together in bi_sector
75 * order without overlap. There may be several bio's per stripe+device, and
76 * a bio could span several devices.
77 * When walking this list for a particular stripe+device, we must never proceed
78 * beyond a bio that extends past this device, as the next bio might no longer
79 * be valid.
80 * This macro is used to determine the 'next' bio in the list, given the sector
81 * of the current stripe+device
82 */
83#define r5_next_bio(bio, sect) ( ( (bio)->bi_sector + ((bio)->bi_size>>9) < sect + STRIPE_SECTORS) ? (bio)->bi_next : NULL)
84/*
85 * The following can be used to debug the driver
86 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#define RAID5_PARANOIA 1
88#if RAID5_PARANOIA && defined(CONFIG_SMP)
89# define CHECK_DEVLOCK() assert_spin_locked(&conf->device_lock)
90#else
91# define CHECK_DEVLOCK()
92#endif
93
Dan Williams45b42332007-07-09 11:56:43 -070094#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#define inline
96#define __inline__
97#endif
98
Bernd Schubert6be9d492008-05-23 13:04:34 -070099#define printk_rl(args...) ((void) (printk_ratelimit() && printk(args)))
100
Jens Axboe960e7392008-08-15 10:41:18 +0200101/*
Jens Axboe5b99c2f2008-08-15 10:56:11 +0200102 * We maintain a biased count of active stripes in the bottom 16 bits of
103 * bi_phys_segments, and a count of processed stripes in the upper 16 bits
Jens Axboe960e7392008-08-15 10:41:18 +0200104 */
105static inline int raid5_bi_phys_segments(struct bio *bio)
106{
Jens Axboe5b99c2f2008-08-15 10:56:11 +0200107 return bio->bi_phys_segments & 0xffff;
Jens Axboe960e7392008-08-15 10:41:18 +0200108}
109
110static inline int raid5_bi_hw_segments(struct bio *bio)
111{
Jens Axboe5b99c2f2008-08-15 10:56:11 +0200112 return (bio->bi_phys_segments >> 16) & 0xffff;
Jens Axboe960e7392008-08-15 10:41:18 +0200113}
114
115static inline int raid5_dec_bi_phys_segments(struct bio *bio)
116{
117 --bio->bi_phys_segments;
118 return raid5_bi_phys_segments(bio);
119}
120
121static inline int raid5_dec_bi_hw_segments(struct bio *bio)
122{
123 unsigned short val = raid5_bi_hw_segments(bio);
124
125 --val;
Jens Axboe5b99c2f2008-08-15 10:56:11 +0200126 bio->bi_phys_segments = (val << 16) | raid5_bi_phys_segments(bio);
Jens Axboe960e7392008-08-15 10:41:18 +0200127 return val;
128}
129
130static inline void raid5_set_bi_hw_segments(struct bio *bio, unsigned int cnt)
131{
Jens Axboe5b99c2f2008-08-15 10:56:11 +0200132 bio->bi_phys_segments = raid5_bi_phys_segments(bio) || (cnt << 16);
Jens Axboe960e7392008-08-15 10:41:18 +0200133}
134
NeilBrownd0dabf72009-03-31 14:39:38 +1100135/* Find first data disk in a raid6 stripe */
136static inline int raid6_d0(struct stripe_head *sh)
137{
NeilBrown67cc2b82009-03-31 14:39:38 +1100138 if (sh->ddf_layout)
139 /* ddf always start from first device */
140 return 0;
141 /* md starts just after Q block */
NeilBrownd0dabf72009-03-31 14:39:38 +1100142 if (sh->qd_idx == sh->disks - 1)
143 return 0;
144 else
145 return sh->qd_idx + 1;
146}
NeilBrown16a53ec2006-06-26 00:27:38 -0700147static inline int raid6_next_disk(int disk, int raid_disks)
148{
149 disk++;
150 return (disk < raid_disks) ? disk : 0;
151}
Dan Williamsa4456852007-07-09 11:56:43 -0700152
NeilBrownd0dabf72009-03-31 14:39:38 +1100153/* When walking through the disks in a raid5, starting at raid6_d0,
154 * We need to map each disk to a 'slot', where the data disks are slot
155 * 0 .. raid_disks-3, the parity disk is raid_disks-2 and the Q disk
156 * is raid_disks-1. This help does that mapping.
157 */
NeilBrown67cc2b82009-03-31 14:39:38 +1100158static int raid6_idx_to_slot(int idx, struct stripe_head *sh,
159 int *count, int syndrome_disks)
NeilBrownd0dabf72009-03-31 14:39:38 +1100160{
Dan Williams66295422009-10-19 18:09:32 -0700161 int slot = *count;
NeilBrown67cc2b82009-03-31 14:39:38 +1100162
NeilBrowne4424fe2009-10-16 16:27:34 +1100163 if (sh->ddf_layout)
Dan Williams66295422009-10-19 18:09:32 -0700164 (*count)++;
NeilBrownd0dabf72009-03-31 14:39:38 +1100165 if (idx == sh->pd_idx)
NeilBrown67cc2b82009-03-31 14:39:38 +1100166 return syndrome_disks;
NeilBrownd0dabf72009-03-31 14:39:38 +1100167 if (idx == sh->qd_idx)
NeilBrown67cc2b82009-03-31 14:39:38 +1100168 return syndrome_disks + 1;
NeilBrowne4424fe2009-10-16 16:27:34 +1100169 if (!sh->ddf_layout)
Dan Williams66295422009-10-19 18:09:32 -0700170 (*count)++;
NeilBrownd0dabf72009-03-31 14:39:38 +1100171 return slot;
172}
173
Dan Williamsa4456852007-07-09 11:56:43 -0700174static void return_io(struct bio *return_bi)
175{
176 struct bio *bi = return_bi;
177 while (bi) {
Dan Williamsa4456852007-07-09 11:56:43 -0700178
179 return_bi = bi->bi_next;
180 bi->bi_next = NULL;
181 bi->bi_size = 0;
Neil Brown0e13fe232008-06-28 08:31:20 +1000182 bio_endio(bi, 0);
Dan Williamsa4456852007-07-09 11:56:43 -0700183 bi = return_bi;
184 }
185}
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187static void print_raid5_conf (raid5_conf_t *conf);
188
Dan Williams600aa102008-06-28 08:32:05 +1000189static int stripe_operations_active(struct stripe_head *sh)
190{
191 return sh->check_state || sh->reconstruct_state ||
192 test_bit(STRIPE_BIOFILL_RUN, &sh->state) ||
193 test_bit(STRIPE_COMPUTE_RUN, &sh->state);
194}
195
Arjan van de Ven858119e2006-01-14 13:20:43 -0800196static void __release_stripe(raid5_conf_t *conf, struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
198 if (atomic_dec_and_test(&sh->count)) {
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +0200199 BUG_ON(!list_empty(&sh->lru));
200 BUG_ON(atomic_read(&conf->active_stripes)==0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 if (test_bit(STRIPE_HANDLE, &sh->state)) {
NeilBrown7c785b72006-07-10 04:44:16 -0700202 if (test_bit(STRIPE_DELAYED, &sh->state)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 list_add_tail(&sh->lru, &conf->delayed_list);
NeilBrown7c785b72006-07-10 04:44:16 -0700204 blk_plug_device(conf->mddev->queue);
205 } else if (test_bit(STRIPE_BIT_DELAY, &sh->state) &&
NeilBrownae3c20c2006-07-10 04:44:17 -0700206 sh->bm_seq - conf->seq_write > 0) {
NeilBrown72626682005-09-09 16:23:54 -0700207 list_add_tail(&sh->lru, &conf->bitmap_list);
NeilBrown7c785b72006-07-10 04:44:16 -0700208 blk_plug_device(conf->mddev->queue);
209 } else {
NeilBrown72626682005-09-09 16:23:54 -0700210 clear_bit(STRIPE_BIT_DELAY, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 list_add_tail(&sh->lru, &conf->handle_list);
NeilBrown72626682005-09-09 16:23:54 -0700212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 md_wakeup_thread(conf->mddev->thread);
214 } else {
Dan Williams600aa102008-06-28 08:32:05 +1000215 BUG_ON(stripe_operations_active(sh));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
217 atomic_dec(&conf->preread_active_stripes);
218 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD)
219 md_wakeup_thread(conf->mddev->thread);
220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 atomic_dec(&conf->active_stripes);
NeilBrownccfcc3c2006-03-27 01:18:09 -0800222 if (!test_bit(STRIPE_EXPANDING, &sh->state)) {
223 list_add_tail(&sh->lru, &conf->inactive_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 wake_up(&conf->wait_for_stripe);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -0800225 if (conf->retry_read_aligned)
226 md_wakeup_thread(conf->mddev->thread);
NeilBrownccfcc3c2006-03-27 01:18:09 -0800227 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 }
229 }
230}
NeilBrownd0dabf72009-03-31 14:39:38 +1100231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232static void release_stripe(struct stripe_head *sh)
233{
234 raid5_conf_t *conf = sh->raid_conf;
235 unsigned long flags;
NeilBrown16a53ec2006-06-26 00:27:38 -0700236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 spin_lock_irqsave(&conf->device_lock, flags);
238 __release_stripe(conf, sh);
239 spin_unlock_irqrestore(&conf->device_lock, flags);
240}
241
NeilBrownfccddba2006-01-06 00:20:33 -0800242static inline void remove_hash(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
Dan Williams45b42332007-07-09 11:56:43 -0700244 pr_debug("remove_hash(), stripe %llu\n",
245 (unsigned long long)sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
NeilBrownfccddba2006-01-06 00:20:33 -0800247 hlist_del_init(&sh->hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248}
249
NeilBrown16a53ec2006-06-26 00:27:38 -0700250static inline void insert_hash(raid5_conf_t *conf, struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251{
NeilBrownfccddba2006-01-06 00:20:33 -0800252 struct hlist_head *hp = stripe_hash(conf, sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Dan Williams45b42332007-07-09 11:56:43 -0700254 pr_debug("insert_hash(), stripe %llu\n",
255 (unsigned long long)sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257 CHECK_DEVLOCK();
NeilBrownfccddba2006-01-06 00:20:33 -0800258 hlist_add_head(&sh->hash, hp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259}
260
261
262/* find an idle stripe, make sure it is unhashed, and return it. */
263static struct stripe_head *get_free_stripe(raid5_conf_t *conf)
264{
265 struct stripe_head *sh = NULL;
266 struct list_head *first;
267
268 CHECK_DEVLOCK();
269 if (list_empty(&conf->inactive_list))
270 goto out;
271 first = conf->inactive_list.next;
272 sh = list_entry(first, struct stripe_head, lru);
273 list_del_init(first);
274 remove_hash(sh);
275 atomic_inc(&conf->active_stripes);
276out:
277 return sh;
278}
279
NeilBrowne4e11e32010-06-16 16:45:16 +1000280static void shrink_buffers(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
282 struct page *p;
283 int i;
NeilBrowne4e11e32010-06-16 16:45:16 +1000284 int num = sh->raid_conf->pool_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
NeilBrowne4e11e32010-06-16 16:45:16 +1000286 for (i = 0; i < num ; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 p = sh->dev[i].page;
288 if (!p)
289 continue;
290 sh->dev[i].page = NULL;
NeilBrown2d1f3b52006-01-06 00:20:31 -0800291 put_page(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
293}
294
NeilBrowne4e11e32010-06-16 16:45:16 +1000295static int grow_buffers(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
297 int i;
NeilBrowne4e11e32010-06-16 16:45:16 +1000298 int num = sh->raid_conf->pool_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
NeilBrowne4e11e32010-06-16 16:45:16 +1000300 for (i = 0; i < num; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 struct page *page;
302
303 if (!(page = alloc_page(GFP_KERNEL))) {
304 return 1;
305 }
306 sh->dev[i].page = page;
307 }
308 return 0;
309}
310
NeilBrown784052e2009-03-31 15:19:07 +1100311static void raid5_build_block(struct stripe_head *sh, int i, int previous);
NeilBrown911d4ee2009-03-31 14:39:38 +1100312static void stripe_set_idx(sector_t stripe, raid5_conf_t *conf, int previous,
313 struct stripe_head *sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
NeilBrownb5663ba2009-03-31 14:39:38 +1100315static void init_stripe(struct stripe_head *sh, sector_t sector, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
317 raid5_conf_t *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800318 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +0200320 BUG_ON(atomic_read(&sh->count) != 0);
321 BUG_ON(test_bit(STRIPE_HANDLE, &sh->state));
Dan Williams600aa102008-06-28 08:32:05 +1000322 BUG_ON(stripe_operations_active(sh));
Dan Williamsd84e0f12007-01-02 13:52:30 -0700323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 CHECK_DEVLOCK();
Dan Williams45b42332007-07-09 11:56:43 -0700325 pr_debug("init_stripe called, stripe %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 (unsigned long long)sh->sector);
327
328 remove_hash(sh);
NeilBrown16a53ec2006-06-26 00:27:38 -0700329
NeilBrown86b42c72009-03-31 15:19:03 +1100330 sh->generation = conf->generation - previous;
NeilBrownb5663ba2009-03-31 14:39:38 +1100331 sh->disks = previous ? conf->previous_raid_disks : conf->raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 sh->sector = sector;
NeilBrown911d4ee2009-03-31 14:39:38 +1100333 stripe_set_idx(sector, conf, previous, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 sh->state = 0;
335
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800336
337 for (i = sh->disks; i--; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 struct r5dev *dev = &sh->dev[i];
339
Dan Williamsd84e0f12007-01-02 13:52:30 -0700340 if (dev->toread || dev->read || dev->towrite || dev->written ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 test_bit(R5_LOCKED, &dev->flags)) {
Dan Williamsd84e0f12007-01-02 13:52:30 -0700342 printk(KERN_ERR "sector=%llx i=%d %p %p %p %p %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 (unsigned long long)sh->sector, i, dev->toread,
Dan Williamsd84e0f12007-01-02 13:52:30 -0700344 dev->read, dev->towrite, dev->written,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 test_bit(R5_LOCKED, &dev->flags));
346 BUG();
347 }
348 dev->flags = 0;
NeilBrown784052e2009-03-31 15:19:07 +1100349 raid5_build_block(sh, i, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 }
351 insert_hash(conf, sh);
352}
353
NeilBrown86b42c72009-03-31 15:19:03 +1100354static struct stripe_head *__find_stripe(raid5_conf_t *conf, sector_t sector,
355 short generation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
357 struct stripe_head *sh;
NeilBrownfccddba2006-01-06 00:20:33 -0800358 struct hlist_node *hn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 CHECK_DEVLOCK();
Dan Williams45b42332007-07-09 11:56:43 -0700361 pr_debug("__find_stripe, sector %llu\n", (unsigned long long)sector);
NeilBrownfccddba2006-01-06 00:20:33 -0800362 hlist_for_each_entry(sh, hn, stripe_hash(conf, sector), hash)
NeilBrown86b42c72009-03-31 15:19:03 +1100363 if (sh->sector == sector && sh->generation == generation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 return sh;
Dan Williams45b42332007-07-09 11:56:43 -0700365 pr_debug("__stripe %llu not in cache\n", (unsigned long long)sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 return NULL;
367}
368
NeilBrown674806d2010-06-16 17:17:53 +1000369/*
370 * Need to check if array has failed when deciding whether to:
371 * - start an array
372 * - remove non-faulty devices
373 * - add a spare
374 * - allow a reshape
375 * This determination is simple when no reshape is happening.
376 * However if there is a reshape, we need to carefully check
377 * both the before and after sections.
378 * This is because some failed devices may only affect one
379 * of the two sections, and some non-in_sync devices may
380 * be insync in the section most affected by failed devices.
381 */
382static int has_failed(raid5_conf_t *conf)
383{
384 int degraded;
385 int i;
386 if (conf->mddev->reshape_position == MaxSector)
387 return conf->mddev->degraded > conf->max_degraded;
388
389 rcu_read_lock();
390 degraded = 0;
391 for (i = 0; i < conf->previous_raid_disks; i++) {
392 mdk_rdev_t *rdev = rcu_dereference(conf->disks[i].rdev);
393 if (!rdev || test_bit(Faulty, &rdev->flags))
394 degraded++;
395 else if (test_bit(In_sync, &rdev->flags))
396 ;
397 else
398 /* not in-sync or faulty.
399 * If the reshape increases the number of devices,
400 * this is being recovered by the reshape, so
401 * this 'previous' section is not in_sync.
402 * If the number of devices is being reduced however,
403 * the device can only be part of the array if
404 * we are reverting a reshape, so this section will
405 * be in-sync.
406 */
407 if (conf->raid_disks >= conf->previous_raid_disks)
408 degraded++;
409 }
410 rcu_read_unlock();
411 if (degraded > conf->max_degraded)
412 return 1;
413 rcu_read_lock();
414 degraded = 0;
415 for (i = 0; i < conf->raid_disks; i++) {
416 mdk_rdev_t *rdev = rcu_dereference(conf->disks[i].rdev);
417 if (!rdev || test_bit(Faulty, &rdev->flags))
418 degraded++;
419 else if (test_bit(In_sync, &rdev->flags))
420 ;
421 else
422 /* not in-sync or faulty.
423 * If reshape increases the number of devices, this
424 * section has already been recovered, else it
425 * almost certainly hasn't.
426 */
427 if (conf->raid_disks <= conf->previous_raid_disks)
428 degraded++;
429 }
430 rcu_read_unlock();
431 if (degraded > conf->max_degraded)
432 return 1;
433 return 0;
434}
435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436static void unplug_slaves(mddev_t *mddev);
Jens Axboe165125e2007-07-24 09:28:11 +0200437static void raid5_unplug_device(struct request_queue *q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
NeilBrownb5663ba2009-03-31 14:39:38 +1100439static struct stripe_head *
440get_active_stripe(raid5_conf_t *conf, sector_t sector,
NeilBrowna8c906c2009-06-09 14:39:59 +1000441 int previous, int noblock, int noquiesce)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
443 struct stripe_head *sh;
444
Dan Williams45b42332007-07-09 11:56:43 -0700445 pr_debug("get_stripe, sector %llu\n", (unsigned long long)sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447 spin_lock_irq(&conf->device_lock);
448
449 do {
NeilBrown72626682005-09-09 16:23:54 -0700450 wait_event_lock_irq(conf->wait_for_stripe,
NeilBrowna8c906c2009-06-09 14:39:59 +1000451 conf->quiesce == 0 || noquiesce,
NeilBrown72626682005-09-09 16:23:54 -0700452 conf->device_lock, /* nothing */);
NeilBrown86b42c72009-03-31 15:19:03 +1100453 sh = __find_stripe(conf, sector, conf->generation - previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 if (!sh) {
455 if (!conf->inactive_blocked)
456 sh = get_free_stripe(conf);
457 if (noblock && sh == NULL)
458 break;
459 if (!sh) {
460 conf->inactive_blocked = 1;
461 wait_event_lock_irq(conf->wait_for_stripe,
462 !list_empty(&conf->inactive_list) &&
NeilBrown50368052005-12-12 02:39:17 -0800463 (atomic_read(&conf->active_stripes)
464 < (conf->max_nr_stripes *3/4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 || !conf->inactive_blocked),
466 conf->device_lock,
NeilBrownf4370782006-07-10 04:44:14 -0700467 raid5_unplug_device(conf->mddev->queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 );
469 conf->inactive_blocked = 0;
470 } else
NeilBrownb5663ba2009-03-31 14:39:38 +1100471 init_stripe(sh, sector, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 } else {
473 if (atomic_read(&sh->count)) {
NeilBrownab69ae12009-03-31 15:26:47 +1100474 BUG_ON(!list_empty(&sh->lru)
475 && !test_bit(STRIPE_EXPANDING, &sh->state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 } else {
477 if (!test_bit(STRIPE_HANDLE, &sh->state))
478 atomic_inc(&conf->active_stripes);
NeilBrownff4e8d92006-07-10 04:44:16 -0700479 if (list_empty(&sh->lru) &&
480 !test_bit(STRIPE_EXPANDING, &sh->state))
NeilBrown16a53ec2006-06-26 00:27:38 -0700481 BUG();
482 list_del_init(&sh->lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 }
484 }
485 } while (sh == NULL);
486
487 if (sh)
488 atomic_inc(&sh->count);
489
490 spin_unlock_irq(&conf->device_lock);
491 return sh;
492}
493
NeilBrown6712ecf2007-09-27 12:47:43 +0200494static void
495raid5_end_read_request(struct bio *bi, int error);
496static void
497raid5_end_write_request(struct bio *bi, int error);
Dan Williams91c00922007-01-02 13:52:30 -0700498
Dan Williamsc4e5ac02008-06-28 08:31:53 +1000499static void ops_run_io(struct stripe_head *sh, struct stripe_head_state *s)
Dan Williams91c00922007-01-02 13:52:30 -0700500{
501 raid5_conf_t *conf = sh->raid_conf;
502 int i, disks = sh->disks;
503
504 might_sleep();
505
506 for (i = disks; i--; ) {
507 int rw;
508 struct bio *bi;
509 mdk_rdev_t *rdev;
510 if (test_and_clear_bit(R5_Wantwrite, &sh->dev[i].flags))
511 rw = WRITE;
512 else if (test_and_clear_bit(R5_Wantread, &sh->dev[i].flags))
513 rw = READ;
514 else
515 continue;
516
517 bi = &sh->dev[i].req;
518
519 bi->bi_rw = rw;
520 if (rw == WRITE)
521 bi->bi_end_io = raid5_end_write_request;
522 else
523 bi->bi_end_io = raid5_end_read_request;
524
525 rcu_read_lock();
526 rdev = rcu_dereference(conf->disks[i].rdev);
527 if (rdev && test_bit(Faulty, &rdev->flags))
528 rdev = NULL;
529 if (rdev)
530 atomic_inc(&rdev->nr_pending);
531 rcu_read_unlock();
532
533 if (rdev) {
Dan Williamsc4e5ac02008-06-28 08:31:53 +1000534 if (s->syncing || s->expanding || s->expanded)
Dan Williams91c00922007-01-02 13:52:30 -0700535 md_sync_acct(rdev->bdev, STRIPE_SECTORS);
536
Dan Williams2b7497f2008-06-28 08:31:52 +1000537 set_bit(STRIPE_IO_STARTED, &sh->state);
538
Dan Williams91c00922007-01-02 13:52:30 -0700539 bi->bi_bdev = rdev->bdev;
540 pr_debug("%s: for %llu schedule op %ld on disc %d\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -0700541 __func__, (unsigned long long)sh->sector,
Dan Williams91c00922007-01-02 13:52:30 -0700542 bi->bi_rw, i);
543 atomic_inc(&sh->count);
544 bi->bi_sector = sh->sector + rdev->data_offset;
545 bi->bi_flags = 1 << BIO_UPTODATE;
546 bi->bi_vcnt = 1;
547 bi->bi_max_vecs = 1;
548 bi->bi_idx = 0;
549 bi->bi_io_vec = &sh->dev[i].vec;
550 bi->bi_io_vec[0].bv_len = STRIPE_SIZE;
551 bi->bi_io_vec[0].bv_offset = 0;
552 bi->bi_size = STRIPE_SIZE;
553 bi->bi_next = NULL;
554 if (rw == WRITE &&
555 test_bit(R5_ReWrite, &sh->dev[i].flags))
556 atomic_add(STRIPE_SECTORS,
557 &rdev->corrected_errors);
558 generic_make_request(bi);
559 } else {
560 if (rw == WRITE)
561 set_bit(STRIPE_DEGRADED, &sh->state);
562 pr_debug("skip op %ld on disc %d for sector %llu\n",
563 bi->bi_rw, i, (unsigned long long)sh->sector);
564 clear_bit(R5_LOCKED, &sh->dev[i].flags);
565 set_bit(STRIPE_HANDLE, &sh->state);
566 }
567 }
568}
569
570static struct dma_async_tx_descriptor *
571async_copy_data(int frombio, struct bio *bio, struct page *page,
572 sector_t sector, struct dma_async_tx_descriptor *tx)
573{
574 struct bio_vec *bvl;
575 struct page *bio_page;
576 int i;
577 int page_offset;
Dan Williamsa08abd82009-06-03 11:43:59 -0700578 struct async_submit_ctl submit;
Dan Williams0403e382009-09-08 17:42:50 -0700579 enum async_tx_flags flags = 0;
Dan Williams91c00922007-01-02 13:52:30 -0700580
581 if (bio->bi_sector >= sector)
582 page_offset = (signed)(bio->bi_sector - sector) * 512;
583 else
584 page_offset = (signed)(sector - bio->bi_sector) * -512;
Dan Williamsa08abd82009-06-03 11:43:59 -0700585
Dan Williams0403e382009-09-08 17:42:50 -0700586 if (frombio)
587 flags |= ASYNC_TX_FENCE;
588 init_async_submit(&submit, flags, tx, NULL, NULL, NULL);
589
Dan Williams91c00922007-01-02 13:52:30 -0700590 bio_for_each_segment(bvl, bio, i) {
591 int len = bio_iovec_idx(bio, i)->bv_len;
592 int clen;
593 int b_offset = 0;
594
595 if (page_offset < 0) {
596 b_offset = -page_offset;
597 page_offset += b_offset;
598 len -= b_offset;
599 }
600
601 if (len > 0 && page_offset + len > STRIPE_SIZE)
602 clen = STRIPE_SIZE - page_offset;
603 else
604 clen = len;
605
606 if (clen > 0) {
607 b_offset += bio_iovec_idx(bio, i)->bv_offset;
608 bio_page = bio_iovec_idx(bio, i)->bv_page;
609 if (frombio)
610 tx = async_memcpy(page, bio_page, page_offset,
Dan Williamsa08abd82009-06-03 11:43:59 -0700611 b_offset, clen, &submit);
Dan Williams91c00922007-01-02 13:52:30 -0700612 else
613 tx = async_memcpy(bio_page, page, b_offset,
Dan Williamsa08abd82009-06-03 11:43:59 -0700614 page_offset, clen, &submit);
Dan Williams91c00922007-01-02 13:52:30 -0700615 }
Dan Williamsa08abd82009-06-03 11:43:59 -0700616 /* chain the operations */
617 submit.depend_tx = tx;
618
Dan Williams91c00922007-01-02 13:52:30 -0700619 if (clen < len) /* hit end of page */
620 break;
621 page_offset += len;
622 }
623
624 return tx;
625}
626
627static void ops_complete_biofill(void *stripe_head_ref)
628{
629 struct stripe_head *sh = stripe_head_ref;
630 struct bio *return_bi = NULL;
631 raid5_conf_t *conf = sh->raid_conf;
Dan Williamse4d84902007-09-24 10:06:13 -0700632 int i;
Dan Williams91c00922007-01-02 13:52:30 -0700633
Harvey Harrisone46b2722008-04-28 02:15:50 -0700634 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700635 (unsigned long long)sh->sector);
636
637 /* clear completed biofills */
Dan Williams83de75c2008-06-28 08:31:58 +1000638 spin_lock_irq(&conf->device_lock);
Dan Williams91c00922007-01-02 13:52:30 -0700639 for (i = sh->disks; i--; ) {
640 struct r5dev *dev = &sh->dev[i];
Dan Williams91c00922007-01-02 13:52:30 -0700641
642 /* acknowledge completion of a biofill operation */
Dan Williamse4d84902007-09-24 10:06:13 -0700643 /* and check if we need to reply to a read request,
644 * new R5_Wantfill requests are held off until
Dan Williams83de75c2008-06-28 08:31:58 +1000645 * !STRIPE_BIOFILL_RUN
Dan Williamse4d84902007-09-24 10:06:13 -0700646 */
647 if (test_and_clear_bit(R5_Wantfill, &dev->flags)) {
Dan Williams91c00922007-01-02 13:52:30 -0700648 struct bio *rbi, *rbi2;
Dan Williams91c00922007-01-02 13:52:30 -0700649
Dan Williams91c00922007-01-02 13:52:30 -0700650 BUG_ON(!dev->read);
651 rbi = dev->read;
652 dev->read = NULL;
653 while (rbi && rbi->bi_sector <
654 dev->sector + STRIPE_SECTORS) {
655 rbi2 = r5_next_bio(rbi, dev->sector);
Jens Axboe960e7392008-08-15 10:41:18 +0200656 if (!raid5_dec_bi_phys_segments(rbi)) {
Dan Williams91c00922007-01-02 13:52:30 -0700657 rbi->bi_next = return_bi;
658 return_bi = rbi;
659 }
Dan Williams91c00922007-01-02 13:52:30 -0700660 rbi = rbi2;
661 }
662 }
663 }
Dan Williams83de75c2008-06-28 08:31:58 +1000664 spin_unlock_irq(&conf->device_lock);
665 clear_bit(STRIPE_BIOFILL_RUN, &sh->state);
Dan Williams91c00922007-01-02 13:52:30 -0700666
667 return_io(return_bi);
668
Dan Williamse4d84902007-09-24 10:06:13 -0700669 set_bit(STRIPE_HANDLE, &sh->state);
Dan Williams91c00922007-01-02 13:52:30 -0700670 release_stripe(sh);
671}
672
673static void ops_run_biofill(struct stripe_head *sh)
674{
675 struct dma_async_tx_descriptor *tx = NULL;
676 raid5_conf_t *conf = sh->raid_conf;
Dan Williamsa08abd82009-06-03 11:43:59 -0700677 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -0700678 int i;
679
Harvey Harrisone46b2722008-04-28 02:15:50 -0700680 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700681 (unsigned long long)sh->sector);
682
683 for (i = sh->disks; i--; ) {
684 struct r5dev *dev = &sh->dev[i];
685 if (test_bit(R5_Wantfill, &dev->flags)) {
686 struct bio *rbi;
687 spin_lock_irq(&conf->device_lock);
688 dev->read = rbi = dev->toread;
689 dev->toread = NULL;
690 spin_unlock_irq(&conf->device_lock);
691 while (rbi && rbi->bi_sector <
692 dev->sector + STRIPE_SECTORS) {
693 tx = async_copy_data(0, rbi, dev->page,
694 dev->sector, tx);
695 rbi = r5_next_bio(rbi, dev->sector);
696 }
697 }
698 }
699
700 atomic_inc(&sh->count);
Dan Williamsa08abd82009-06-03 11:43:59 -0700701 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_biofill, sh, NULL);
702 async_trigger_callback(&submit);
Dan Williams91c00922007-01-02 13:52:30 -0700703}
704
Dan Williams4e7d2c02009-08-29 19:13:11 -0700705static void mark_target_uptodate(struct stripe_head *sh, int target)
706{
707 struct r5dev *tgt;
708
709 if (target < 0)
710 return;
711
712 tgt = &sh->dev[target];
713 set_bit(R5_UPTODATE, &tgt->flags);
714 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
715 clear_bit(R5_Wantcompute, &tgt->flags);
716}
717
Dan Williamsac6b53b2009-07-14 13:40:19 -0700718static void ops_complete_compute(void *stripe_head_ref)
Dan Williams91c00922007-01-02 13:52:30 -0700719{
720 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -0700721
Harvey Harrisone46b2722008-04-28 02:15:50 -0700722 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700723 (unsigned long long)sh->sector);
724
Dan Williamsac6b53b2009-07-14 13:40:19 -0700725 /* mark the computed target(s) as uptodate */
Dan Williams4e7d2c02009-08-29 19:13:11 -0700726 mark_target_uptodate(sh, sh->ops.target);
Dan Williamsac6b53b2009-07-14 13:40:19 -0700727 mark_target_uptodate(sh, sh->ops.target2);
Dan Williams4e7d2c02009-08-29 19:13:11 -0700728
Dan Williamsecc65c92008-06-28 08:31:57 +1000729 clear_bit(STRIPE_COMPUTE_RUN, &sh->state);
730 if (sh->check_state == check_state_compute_run)
731 sh->check_state = check_state_compute_result;
Dan Williams91c00922007-01-02 13:52:30 -0700732 set_bit(STRIPE_HANDLE, &sh->state);
733 release_stripe(sh);
734}
735
Dan Williamsd6f38f32009-07-14 11:50:52 -0700736/* return a pointer to the address conversion region of the scribble buffer */
737static addr_conv_t *to_addr_conv(struct stripe_head *sh,
738 struct raid5_percpu *percpu)
Dan Williams91c00922007-01-02 13:52:30 -0700739{
Dan Williamsd6f38f32009-07-14 11:50:52 -0700740 return percpu->scribble + sizeof(struct page *) * (sh->disks + 2);
741}
742
743static struct dma_async_tx_descriptor *
744ops_run_compute5(struct stripe_head *sh, struct raid5_percpu *percpu)
745{
Dan Williams91c00922007-01-02 13:52:30 -0700746 int disks = sh->disks;
Dan Williamsd6f38f32009-07-14 11:50:52 -0700747 struct page **xor_srcs = percpu->scribble;
Dan Williams91c00922007-01-02 13:52:30 -0700748 int target = sh->ops.target;
749 struct r5dev *tgt = &sh->dev[target];
750 struct page *xor_dest = tgt->page;
751 int count = 0;
752 struct dma_async_tx_descriptor *tx;
Dan Williamsa08abd82009-06-03 11:43:59 -0700753 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -0700754 int i;
755
756 pr_debug("%s: stripe %llu block: %d\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -0700757 __func__, (unsigned long long)sh->sector, target);
Dan Williams91c00922007-01-02 13:52:30 -0700758 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
759
760 for (i = disks; i--; )
761 if (i != target)
762 xor_srcs[count++] = sh->dev[i].page;
763
764 atomic_inc(&sh->count);
765
Dan Williams0403e382009-09-08 17:42:50 -0700766 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST, NULL,
Dan Williamsac6b53b2009-07-14 13:40:19 -0700767 ops_complete_compute, sh, to_addr_conv(sh, percpu));
Dan Williams91c00922007-01-02 13:52:30 -0700768 if (unlikely(count == 1))
Dan Williamsa08abd82009-06-03 11:43:59 -0700769 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -0700770 else
Dan Williamsa08abd82009-06-03 11:43:59 -0700771 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -0700772
Dan Williams91c00922007-01-02 13:52:30 -0700773 return tx;
774}
775
Dan Williamsac6b53b2009-07-14 13:40:19 -0700776/* set_syndrome_sources - populate source buffers for gen_syndrome
777 * @srcs - (struct page *) array of size sh->disks
778 * @sh - stripe_head to parse
779 *
780 * Populates srcs in proper layout order for the stripe and returns the
781 * 'count' of sources to be used in a call to async_gen_syndrome. The P
782 * destination buffer is recorded in srcs[count] and the Q destination
783 * is recorded in srcs[count+1]].
784 */
785static int set_syndrome_sources(struct page **srcs, struct stripe_head *sh)
786{
787 int disks = sh->disks;
788 int syndrome_disks = sh->ddf_layout ? disks : (disks - 2);
789 int d0_idx = raid6_d0(sh);
790 int count;
791 int i;
792
793 for (i = 0; i < disks; i++)
NeilBrown5dd33c92009-10-16 16:40:25 +1100794 srcs[i] = NULL;
Dan Williamsac6b53b2009-07-14 13:40:19 -0700795
796 count = 0;
797 i = d0_idx;
798 do {
799 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
800
801 srcs[slot] = sh->dev[i].page;
802 i = raid6_next_disk(i, disks);
803 } while (i != d0_idx);
Dan Williamsac6b53b2009-07-14 13:40:19 -0700804
NeilBrowne4424fe2009-10-16 16:27:34 +1100805 return syndrome_disks;
Dan Williamsac6b53b2009-07-14 13:40:19 -0700806}
807
808static struct dma_async_tx_descriptor *
809ops_run_compute6_1(struct stripe_head *sh, struct raid5_percpu *percpu)
810{
811 int disks = sh->disks;
812 struct page **blocks = percpu->scribble;
813 int target;
814 int qd_idx = sh->qd_idx;
815 struct dma_async_tx_descriptor *tx;
816 struct async_submit_ctl submit;
817 struct r5dev *tgt;
818 struct page *dest;
819 int i;
820 int count;
821
822 if (sh->ops.target < 0)
823 target = sh->ops.target2;
824 else if (sh->ops.target2 < 0)
825 target = sh->ops.target;
826 else
827 /* we should only have one valid target */
828 BUG();
829 BUG_ON(target < 0);
830 pr_debug("%s: stripe %llu block: %d\n",
831 __func__, (unsigned long long)sh->sector, target);
832
833 tgt = &sh->dev[target];
834 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
835 dest = tgt->page;
836
837 atomic_inc(&sh->count);
838
839 if (target == qd_idx) {
840 count = set_syndrome_sources(blocks, sh);
841 blocks[count] = NULL; /* regenerating p is not necessary */
842 BUG_ON(blocks[count+1] != dest); /* q should already be set */
Dan Williams0403e382009-09-08 17:42:50 -0700843 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
844 ops_complete_compute, sh,
Dan Williamsac6b53b2009-07-14 13:40:19 -0700845 to_addr_conv(sh, percpu));
846 tx = async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
847 } else {
848 /* Compute any data- or p-drive using XOR */
849 count = 0;
850 for (i = disks; i-- ; ) {
851 if (i == target || i == qd_idx)
852 continue;
853 blocks[count++] = sh->dev[i].page;
854 }
855
Dan Williams0403e382009-09-08 17:42:50 -0700856 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
857 NULL, ops_complete_compute, sh,
Dan Williamsac6b53b2009-07-14 13:40:19 -0700858 to_addr_conv(sh, percpu));
859 tx = async_xor(dest, blocks, 0, count, STRIPE_SIZE, &submit);
860 }
861
862 return tx;
863}
864
865static struct dma_async_tx_descriptor *
866ops_run_compute6_2(struct stripe_head *sh, struct raid5_percpu *percpu)
867{
868 int i, count, disks = sh->disks;
869 int syndrome_disks = sh->ddf_layout ? disks : disks-2;
870 int d0_idx = raid6_d0(sh);
871 int faila = -1, failb = -1;
872 int target = sh->ops.target;
873 int target2 = sh->ops.target2;
874 struct r5dev *tgt = &sh->dev[target];
875 struct r5dev *tgt2 = &sh->dev[target2];
876 struct dma_async_tx_descriptor *tx;
877 struct page **blocks = percpu->scribble;
878 struct async_submit_ctl submit;
879
880 pr_debug("%s: stripe %llu block1: %d block2: %d\n",
881 __func__, (unsigned long long)sh->sector, target, target2);
882 BUG_ON(target < 0 || target2 < 0);
883 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
884 BUG_ON(!test_bit(R5_Wantcompute, &tgt2->flags));
885
Dan Williams6c910a72009-09-16 12:24:54 -0700886 /* we need to open-code set_syndrome_sources to handle the
Dan Williamsac6b53b2009-07-14 13:40:19 -0700887 * slot number conversion for 'faila' and 'failb'
888 */
889 for (i = 0; i < disks ; i++)
NeilBrown5dd33c92009-10-16 16:40:25 +1100890 blocks[i] = NULL;
Dan Williamsac6b53b2009-07-14 13:40:19 -0700891 count = 0;
892 i = d0_idx;
893 do {
894 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
895
896 blocks[slot] = sh->dev[i].page;
897
898 if (i == target)
899 faila = slot;
900 if (i == target2)
901 failb = slot;
902 i = raid6_next_disk(i, disks);
903 } while (i != d0_idx);
Dan Williamsac6b53b2009-07-14 13:40:19 -0700904
905 BUG_ON(faila == failb);
906 if (failb < faila)
907 swap(faila, failb);
908 pr_debug("%s: stripe: %llu faila: %d failb: %d\n",
909 __func__, (unsigned long long)sh->sector, faila, failb);
910
911 atomic_inc(&sh->count);
912
913 if (failb == syndrome_disks+1) {
914 /* Q disk is one of the missing disks */
915 if (faila == syndrome_disks) {
916 /* Missing P+Q, just recompute */
Dan Williams0403e382009-09-08 17:42:50 -0700917 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
918 ops_complete_compute, sh,
919 to_addr_conv(sh, percpu));
NeilBrowne4424fe2009-10-16 16:27:34 +1100920 return async_gen_syndrome(blocks, 0, syndrome_disks+2,
Dan Williamsac6b53b2009-07-14 13:40:19 -0700921 STRIPE_SIZE, &submit);
922 } else {
923 struct page *dest;
924 int data_target;
925 int qd_idx = sh->qd_idx;
926
927 /* Missing D+Q: recompute D from P, then recompute Q */
928 if (target == qd_idx)
929 data_target = target2;
930 else
931 data_target = target;
932
933 count = 0;
934 for (i = disks; i-- ; ) {
935 if (i == data_target || i == qd_idx)
936 continue;
937 blocks[count++] = sh->dev[i].page;
938 }
939 dest = sh->dev[data_target].page;
Dan Williams0403e382009-09-08 17:42:50 -0700940 init_async_submit(&submit,
941 ASYNC_TX_FENCE|ASYNC_TX_XOR_ZERO_DST,
942 NULL, NULL, NULL,
943 to_addr_conv(sh, percpu));
Dan Williamsac6b53b2009-07-14 13:40:19 -0700944 tx = async_xor(dest, blocks, 0, count, STRIPE_SIZE,
945 &submit);
946
947 count = set_syndrome_sources(blocks, sh);
Dan Williams0403e382009-09-08 17:42:50 -0700948 init_async_submit(&submit, ASYNC_TX_FENCE, tx,
949 ops_complete_compute, sh,
950 to_addr_conv(sh, percpu));
Dan Williamsac6b53b2009-07-14 13:40:19 -0700951 return async_gen_syndrome(blocks, 0, count+2,
952 STRIPE_SIZE, &submit);
953 }
Dan Williamsac6b53b2009-07-14 13:40:19 -0700954 } else {
Dan Williams6c910a72009-09-16 12:24:54 -0700955 init_async_submit(&submit, ASYNC_TX_FENCE, NULL,
956 ops_complete_compute, sh,
957 to_addr_conv(sh, percpu));
958 if (failb == syndrome_disks) {
959 /* We're missing D+P. */
960 return async_raid6_datap_recov(syndrome_disks+2,
961 STRIPE_SIZE, faila,
962 blocks, &submit);
963 } else {
964 /* We're missing D+D. */
965 return async_raid6_2data_recov(syndrome_disks+2,
966 STRIPE_SIZE, faila, failb,
967 blocks, &submit);
968 }
Dan Williamsac6b53b2009-07-14 13:40:19 -0700969 }
970}
971
972
Dan Williams91c00922007-01-02 13:52:30 -0700973static void ops_complete_prexor(void *stripe_head_ref)
974{
975 struct stripe_head *sh = stripe_head_ref;
976
Harvey Harrisone46b2722008-04-28 02:15:50 -0700977 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700978 (unsigned long long)sh->sector);
Dan Williams91c00922007-01-02 13:52:30 -0700979}
980
981static struct dma_async_tx_descriptor *
Dan Williamsd6f38f32009-07-14 11:50:52 -0700982ops_run_prexor(struct stripe_head *sh, struct raid5_percpu *percpu,
983 struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -0700984{
Dan Williams91c00922007-01-02 13:52:30 -0700985 int disks = sh->disks;
Dan Williamsd6f38f32009-07-14 11:50:52 -0700986 struct page **xor_srcs = percpu->scribble;
Dan Williams91c00922007-01-02 13:52:30 -0700987 int count = 0, pd_idx = sh->pd_idx, i;
Dan Williamsa08abd82009-06-03 11:43:59 -0700988 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -0700989
990 /* existing parity data subtracted */
991 struct page *xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
992
Harvey Harrisone46b2722008-04-28 02:15:50 -0700993 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700994 (unsigned long long)sh->sector);
995
996 for (i = disks; i--; ) {
997 struct r5dev *dev = &sh->dev[i];
998 /* Only process blocks that are known to be uptodate */
Dan Williamsd8ee0722008-06-28 08:32:06 +1000999 if (test_bit(R5_Wantdrain, &dev->flags))
Dan Williams91c00922007-01-02 13:52:30 -07001000 xor_srcs[count++] = dev->page;
1001 }
1002
Dan Williams0403e382009-09-08 17:42:50 -07001003 init_async_submit(&submit, ASYNC_TX_FENCE|ASYNC_TX_XOR_DROP_DST, tx,
Dan Williamsd6f38f32009-07-14 11:50:52 -07001004 ops_complete_prexor, sh, to_addr_conv(sh, percpu));
Dan Williamsa08abd82009-06-03 11:43:59 -07001005 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001006
1007 return tx;
1008}
1009
1010static struct dma_async_tx_descriptor *
Dan Williamsd8ee0722008-06-28 08:32:06 +10001011ops_run_biodrain(struct stripe_head *sh, struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001012{
1013 int disks = sh->disks;
Dan Williamsd8ee0722008-06-28 08:32:06 +10001014 int i;
Dan Williams91c00922007-01-02 13:52:30 -07001015
Harvey Harrisone46b2722008-04-28 02:15:50 -07001016 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001017 (unsigned long long)sh->sector);
1018
1019 for (i = disks; i--; ) {
1020 struct r5dev *dev = &sh->dev[i];
1021 struct bio *chosen;
Dan Williams91c00922007-01-02 13:52:30 -07001022
Dan Williamsd8ee0722008-06-28 08:32:06 +10001023 if (test_and_clear_bit(R5_Wantdrain, &dev->flags)) {
Dan Williams91c00922007-01-02 13:52:30 -07001024 struct bio *wbi;
1025
1026 spin_lock(&sh->lock);
1027 chosen = dev->towrite;
1028 dev->towrite = NULL;
1029 BUG_ON(dev->written);
1030 wbi = dev->written = chosen;
1031 spin_unlock(&sh->lock);
1032
1033 while (wbi && wbi->bi_sector <
1034 dev->sector + STRIPE_SECTORS) {
1035 tx = async_copy_data(1, wbi, dev->page,
1036 dev->sector, tx);
1037 wbi = r5_next_bio(wbi, dev->sector);
1038 }
1039 }
1040 }
1041
1042 return tx;
1043}
1044
Dan Williamsac6b53b2009-07-14 13:40:19 -07001045static void ops_complete_reconstruct(void *stripe_head_ref)
Dan Williams91c00922007-01-02 13:52:30 -07001046{
1047 struct stripe_head *sh = stripe_head_ref;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001048 int disks = sh->disks;
1049 int pd_idx = sh->pd_idx;
1050 int qd_idx = sh->qd_idx;
1051 int i;
Dan Williams91c00922007-01-02 13:52:30 -07001052
Harvey Harrisone46b2722008-04-28 02:15:50 -07001053 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001054 (unsigned long long)sh->sector);
1055
1056 for (i = disks; i--; ) {
1057 struct r5dev *dev = &sh->dev[i];
Dan Williamsac6b53b2009-07-14 13:40:19 -07001058
1059 if (dev->written || i == pd_idx || i == qd_idx)
Dan Williams91c00922007-01-02 13:52:30 -07001060 set_bit(R5_UPTODATE, &dev->flags);
1061 }
1062
Dan Williamsd8ee0722008-06-28 08:32:06 +10001063 if (sh->reconstruct_state == reconstruct_state_drain_run)
1064 sh->reconstruct_state = reconstruct_state_drain_result;
1065 else if (sh->reconstruct_state == reconstruct_state_prexor_drain_run)
1066 sh->reconstruct_state = reconstruct_state_prexor_drain_result;
1067 else {
1068 BUG_ON(sh->reconstruct_state != reconstruct_state_run);
1069 sh->reconstruct_state = reconstruct_state_result;
1070 }
Dan Williams91c00922007-01-02 13:52:30 -07001071
1072 set_bit(STRIPE_HANDLE, &sh->state);
1073 release_stripe(sh);
1074}
1075
1076static void
Dan Williamsac6b53b2009-07-14 13:40:19 -07001077ops_run_reconstruct5(struct stripe_head *sh, struct raid5_percpu *percpu,
1078 struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -07001079{
Dan Williams91c00922007-01-02 13:52:30 -07001080 int disks = sh->disks;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001081 struct page **xor_srcs = percpu->scribble;
Dan Williamsa08abd82009-06-03 11:43:59 -07001082 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -07001083 int count = 0, pd_idx = sh->pd_idx, i;
1084 struct page *xor_dest;
Dan Williamsd8ee0722008-06-28 08:32:06 +10001085 int prexor = 0;
Dan Williams91c00922007-01-02 13:52:30 -07001086 unsigned long flags;
Dan Williams91c00922007-01-02 13:52:30 -07001087
Harvey Harrisone46b2722008-04-28 02:15:50 -07001088 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001089 (unsigned long long)sh->sector);
1090
1091 /* check if prexor is active which means only process blocks
1092 * that are part of a read-modify-write (written)
1093 */
Dan Williamsd8ee0722008-06-28 08:32:06 +10001094 if (sh->reconstruct_state == reconstruct_state_prexor_drain_run) {
1095 prexor = 1;
Dan Williams91c00922007-01-02 13:52:30 -07001096 xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
1097 for (i = disks; i--; ) {
1098 struct r5dev *dev = &sh->dev[i];
1099 if (dev->written)
1100 xor_srcs[count++] = dev->page;
1101 }
1102 } else {
1103 xor_dest = sh->dev[pd_idx].page;
1104 for (i = disks; i--; ) {
1105 struct r5dev *dev = &sh->dev[i];
1106 if (i != pd_idx)
1107 xor_srcs[count++] = dev->page;
1108 }
1109 }
1110
Dan Williams91c00922007-01-02 13:52:30 -07001111 /* 1/ if we prexor'd then the dest is reused as a source
1112 * 2/ if we did not prexor then we are redoing the parity
1113 * set ASYNC_TX_XOR_DROP_DST and ASYNC_TX_XOR_ZERO_DST
1114 * for the synchronous xor case
1115 */
Dan Williams88ba2aa2009-04-09 16:16:18 -07001116 flags = ASYNC_TX_ACK |
Dan Williams91c00922007-01-02 13:52:30 -07001117 (prexor ? ASYNC_TX_XOR_DROP_DST : ASYNC_TX_XOR_ZERO_DST);
1118
1119 atomic_inc(&sh->count);
1120
Dan Williamsac6b53b2009-07-14 13:40:19 -07001121 init_async_submit(&submit, flags, tx, ops_complete_reconstruct, sh,
Dan Williamsd6f38f32009-07-14 11:50:52 -07001122 to_addr_conv(sh, percpu));
Dan Williamsa08abd82009-06-03 11:43:59 -07001123 if (unlikely(count == 1))
1124 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
1125 else
1126 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001127}
1128
Dan Williamsac6b53b2009-07-14 13:40:19 -07001129static void
1130ops_run_reconstruct6(struct stripe_head *sh, struct raid5_percpu *percpu,
1131 struct dma_async_tx_descriptor *tx)
1132{
1133 struct async_submit_ctl submit;
1134 struct page **blocks = percpu->scribble;
1135 int count;
1136
1137 pr_debug("%s: stripe %llu\n", __func__, (unsigned long long)sh->sector);
1138
1139 count = set_syndrome_sources(blocks, sh);
1140
1141 atomic_inc(&sh->count);
1142
1143 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_reconstruct,
1144 sh, to_addr_conv(sh, percpu));
1145 async_gen_syndrome(blocks, 0, count+2, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001146}
1147
1148static void ops_complete_check(void *stripe_head_ref)
1149{
1150 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -07001151
Harvey Harrisone46b2722008-04-28 02:15:50 -07001152 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001153 (unsigned long long)sh->sector);
1154
Dan Williamsecc65c92008-06-28 08:31:57 +10001155 sh->check_state = check_state_check_result;
Dan Williams91c00922007-01-02 13:52:30 -07001156 set_bit(STRIPE_HANDLE, &sh->state);
1157 release_stripe(sh);
1158}
1159
Dan Williamsac6b53b2009-07-14 13:40:19 -07001160static void ops_run_check_p(struct stripe_head *sh, struct raid5_percpu *percpu)
Dan Williams91c00922007-01-02 13:52:30 -07001161{
Dan Williams91c00922007-01-02 13:52:30 -07001162 int disks = sh->disks;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001163 int pd_idx = sh->pd_idx;
1164 int qd_idx = sh->qd_idx;
1165 struct page *xor_dest;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001166 struct page **xor_srcs = percpu->scribble;
Dan Williams91c00922007-01-02 13:52:30 -07001167 struct dma_async_tx_descriptor *tx;
Dan Williamsa08abd82009-06-03 11:43:59 -07001168 struct async_submit_ctl submit;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001169 int count;
1170 int i;
Dan Williams91c00922007-01-02 13:52:30 -07001171
Harvey Harrisone46b2722008-04-28 02:15:50 -07001172 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -07001173 (unsigned long long)sh->sector);
1174
Dan Williamsac6b53b2009-07-14 13:40:19 -07001175 count = 0;
1176 xor_dest = sh->dev[pd_idx].page;
1177 xor_srcs[count++] = xor_dest;
Dan Williams91c00922007-01-02 13:52:30 -07001178 for (i = disks; i--; ) {
Dan Williamsac6b53b2009-07-14 13:40:19 -07001179 if (i == pd_idx || i == qd_idx)
1180 continue;
1181 xor_srcs[count++] = sh->dev[i].page;
Dan Williams91c00922007-01-02 13:52:30 -07001182 }
1183
Dan Williamsd6f38f32009-07-14 11:50:52 -07001184 init_async_submit(&submit, 0, NULL, NULL, NULL,
1185 to_addr_conv(sh, percpu));
Dan Williams099f53c2009-04-08 14:28:37 -07001186 tx = async_xor_val(xor_dest, xor_srcs, 0, count, STRIPE_SIZE,
Dan Williamsa08abd82009-06-03 11:43:59 -07001187 &sh->ops.zero_sum_result, &submit);
Dan Williams91c00922007-01-02 13:52:30 -07001188
Dan Williams91c00922007-01-02 13:52:30 -07001189 atomic_inc(&sh->count);
Dan Williamsa08abd82009-06-03 11:43:59 -07001190 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_check, sh, NULL);
1191 tx = async_trigger_callback(&submit);
Dan Williams91c00922007-01-02 13:52:30 -07001192}
1193
Dan Williamsac6b53b2009-07-14 13:40:19 -07001194static void ops_run_check_pq(struct stripe_head *sh, struct raid5_percpu *percpu, int checkp)
1195{
1196 struct page **srcs = percpu->scribble;
1197 struct async_submit_ctl submit;
1198 int count;
1199
1200 pr_debug("%s: stripe %llu checkp: %d\n", __func__,
1201 (unsigned long long)sh->sector, checkp);
1202
1203 count = set_syndrome_sources(srcs, sh);
1204 if (!checkp)
1205 srcs[count] = NULL;
1206
1207 atomic_inc(&sh->count);
1208 init_async_submit(&submit, ASYNC_TX_ACK, NULL, ops_complete_check,
1209 sh, to_addr_conv(sh, percpu));
1210 async_syndrome_val(srcs, 0, count+2, STRIPE_SIZE,
1211 &sh->ops.zero_sum_result, percpu->spare_page, &submit);
1212}
1213
Dan Williams417b8d42009-10-16 16:25:22 +11001214static void __raid_run_ops(struct stripe_head *sh, unsigned long ops_request)
Dan Williams91c00922007-01-02 13:52:30 -07001215{
1216 int overlap_clear = 0, i, disks = sh->disks;
1217 struct dma_async_tx_descriptor *tx = NULL;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001218 raid5_conf_t *conf = sh->raid_conf;
Dan Williamsac6b53b2009-07-14 13:40:19 -07001219 int level = conf->level;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001220 struct raid5_percpu *percpu;
1221 unsigned long cpu;
Dan Williams91c00922007-01-02 13:52:30 -07001222
Dan Williamsd6f38f32009-07-14 11:50:52 -07001223 cpu = get_cpu();
1224 percpu = per_cpu_ptr(conf->percpu, cpu);
Dan Williams83de75c2008-06-28 08:31:58 +10001225 if (test_bit(STRIPE_OP_BIOFILL, &ops_request)) {
Dan Williams91c00922007-01-02 13:52:30 -07001226 ops_run_biofill(sh);
1227 overlap_clear++;
1228 }
1229
Dan Williams7b3a8712008-06-28 08:32:09 +10001230 if (test_bit(STRIPE_OP_COMPUTE_BLK, &ops_request)) {
Dan Williamsac6b53b2009-07-14 13:40:19 -07001231 if (level < 6)
1232 tx = ops_run_compute5(sh, percpu);
1233 else {
1234 if (sh->ops.target2 < 0 || sh->ops.target < 0)
1235 tx = ops_run_compute6_1(sh, percpu);
1236 else
1237 tx = ops_run_compute6_2(sh, percpu);
1238 }
1239 /* terminate the chain if reconstruct is not set to be run */
1240 if (tx && !test_bit(STRIPE_OP_RECONSTRUCT, &ops_request))
Dan Williams7b3a8712008-06-28 08:32:09 +10001241 async_tx_ack(tx);
1242 }
Dan Williams91c00922007-01-02 13:52:30 -07001243
Dan Williams600aa102008-06-28 08:32:05 +10001244 if (test_bit(STRIPE_OP_PREXOR, &ops_request))
Dan Williamsd6f38f32009-07-14 11:50:52 -07001245 tx = ops_run_prexor(sh, percpu, tx);
Dan Williams91c00922007-01-02 13:52:30 -07001246
Dan Williams600aa102008-06-28 08:32:05 +10001247 if (test_bit(STRIPE_OP_BIODRAIN, &ops_request)) {
Dan Williamsd8ee0722008-06-28 08:32:06 +10001248 tx = ops_run_biodrain(sh, tx);
Dan Williams91c00922007-01-02 13:52:30 -07001249 overlap_clear++;
1250 }
1251
Dan Williamsac6b53b2009-07-14 13:40:19 -07001252 if (test_bit(STRIPE_OP_RECONSTRUCT, &ops_request)) {
1253 if (level < 6)
1254 ops_run_reconstruct5(sh, percpu, tx);
1255 else
1256 ops_run_reconstruct6(sh, percpu, tx);
1257 }
Dan Williams91c00922007-01-02 13:52:30 -07001258
Dan Williamsac6b53b2009-07-14 13:40:19 -07001259 if (test_bit(STRIPE_OP_CHECK, &ops_request)) {
1260 if (sh->check_state == check_state_run)
1261 ops_run_check_p(sh, percpu);
1262 else if (sh->check_state == check_state_run_q)
1263 ops_run_check_pq(sh, percpu, 0);
1264 else if (sh->check_state == check_state_run_pq)
1265 ops_run_check_pq(sh, percpu, 1);
1266 else
1267 BUG();
1268 }
Dan Williams91c00922007-01-02 13:52:30 -07001269
Dan Williams91c00922007-01-02 13:52:30 -07001270 if (overlap_clear)
1271 for (i = disks; i--; ) {
1272 struct r5dev *dev = &sh->dev[i];
1273 if (test_and_clear_bit(R5_Overlap, &dev->flags))
1274 wake_up(&sh->raid_conf->wait_for_overlap);
1275 }
Dan Williamsd6f38f32009-07-14 11:50:52 -07001276 put_cpu();
Dan Williams91c00922007-01-02 13:52:30 -07001277}
1278
Dan Williams417b8d42009-10-16 16:25:22 +11001279#ifdef CONFIG_MULTICORE_RAID456
1280static void async_run_ops(void *param, async_cookie_t cookie)
1281{
1282 struct stripe_head *sh = param;
1283 unsigned long ops_request = sh->ops.request;
1284
1285 clear_bit_unlock(STRIPE_OPS_REQ_PENDING, &sh->state);
1286 wake_up(&sh->ops.wait_for_ops);
1287
1288 __raid_run_ops(sh, ops_request);
1289 release_stripe(sh);
1290}
1291
1292static void raid_run_ops(struct stripe_head *sh, unsigned long ops_request)
1293{
1294 /* since handle_stripe can be called outside of raid5d context
1295 * we need to ensure sh->ops.request is de-staged before another
1296 * request arrives
1297 */
1298 wait_event(sh->ops.wait_for_ops,
1299 !test_and_set_bit_lock(STRIPE_OPS_REQ_PENDING, &sh->state));
1300 sh->ops.request = ops_request;
1301
1302 atomic_inc(&sh->count);
1303 async_schedule(async_run_ops, sh);
1304}
1305#else
1306#define raid_run_ops __raid_run_ops
1307#endif
1308
NeilBrown3f294f42005-11-08 21:39:25 -08001309static int grow_one_stripe(raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310{
1311 struct stripe_head *sh;
NeilBrown3f294f42005-11-08 21:39:25 -08001312 sh = kmem_cache_alloc(conf->slab_cache, GFP_KERNEL);
1313 if (!sh)
1314 return 0;
NeilBrowne4e11e32010-06-16 16:45:16 +10001315 memset(sh, 0, sizeof(*sh) + (conf->pool_size-1)*sizeof(struct r5dev));
NeilBrown3f294f42005-11-08 21:39:25 -08001316 sh->raid_conf = conf;
1317 spin_lock_init(&sh->lock);
Dan Williams417b8d42009-10-16 16:25:22 +11001318 #ifdef CONFIG_MULTICORE_RAID456
1319 init_waitqueue_head(&sh->ops.wait_for_ops);
1320 #endif
NeilBrown3f294f42005-11-08 21:39:25 -08001321
NeilBrowne4e11e32010-06-16 16:45:16 +10001322 if (grow_buffers(sh)) {
1323 shrink_buffers(sh);
NeilBrown3f294f42005-11-08 21:39:25 -08001324 kmem_cache_free(conf->slab_cache, sh);
1325 return 0;
1326 }
1327 /* we just created an active stripe so... */
1328 atomic_set(&sh->count, 1);
1329 atomic_inc(&conf->active_stripes);
1330 INIT_LIST_HEAD(&sh->lru);
1331 release_stripe(sh);
1332 return 1;
1333}
1334
1335static int grow_stripes(raid5_conf_t *conf, int num)
1336{
Christoph Lametere18b8902006-12-06 20:33:20 -08001337 struct kmem_cache *sc;
NeilBrown5e5e3e72009-10-16 16:35:30 +11001338 int devs = max(conf->raid_disks, conf->previous_raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
NeilBrownf4be6b42010-06-01 19:37:25 +10001340 if (conf->mddev->gendisk)
1341 sprintf(conf->cache_name[0],
1342 "raid%d-%s", conf->level, mdname(conf->mddev));
1343 else
1344 sprintf(conf->cache_name[0],
1345 "raid%d-%p", conf->level, conf->mddev);
1346 sprintf(conf->cache_name[1], "%s-alt", conf->cache_name[0]);
1347
NeilBrownad01c9e2006-03-27 01:18:07 -08001348 conf->active_name = 0;
1349 sc = kmem_cache_create(conf->cache_name[conf->active_name],
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 sizeof(struct stripe_head)+(devs-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +09001351 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 if (!sc)
1353 return 1;
1354 conf->slab_cache = sc;
NeilBrownad01c9e2006-03-27 01:18:07 -08001355 conf->pool_size = devs;
NeilBrown16a53ec2006-06-26 00:27:38 -07001356 while (num--)
NeilBrown3f294f42005-11-08 21:39:25 -08001357 if (!grow_one_stripe(conf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 return 0;
1360}
NeilBrown29269552006-03-27 01:18:10 -08001361
Dan Williamsd6f38f32009-07-14 11:50:52 -07001362/**
1363 * scribble_len - return the required size of the scribble region
1364 * @num - total number of disks in the array
1365 *
1366 * The size must be enough to contain:
1367 * 1/ a struct page pointer for each device in the array +2
1368 * 2/ room to convert each entry in (1) to its corresponding dma
1369 * (dma_map_page()) or page (page_address()) address.
1370 *
1371 * Note: the +2 is for the destination buffers of the ddf/raid6 case where we
1372 * calculate over all devices (not just the data blocks), using zeros in place
1373 * of the P and Q blocks.
1374 */
1375static size_t scribble_len(int num)
1376{
1377 size_t len;
1378
1379 len = sizeof(struct page *) * (num+2) + sizeof(addr_conv_t) * (num+2);
1380
1381 return len;
1382}
1383
NeilBrownad01c9e2006-03-27 01:18:07 -08001384static int resize_stripes(raid5_conf_t *conf, int newsize)
1385{
1386 /* Make all the stripes able to hold 'newsize' devices.
1387 * New slots in each stripe get 'page' set to a new page.
1388 *
1389 * This happens in stages:
1390 * 1/ create a new kmem_cache and allocate the required number of
1391 * stripe_heads.
1392 * 2/ gather all the old stripe_heads and tranfer the pages across
1393 * to the new stripe_heads. This will have the side effect of
1394 * freezing the array as once all stripe_heads have been collected,
1395 * no IO will be possible. Old stripe heads are freed once their
1396 * pages have been transferred over, and the old kmem_cache is
1397 * freed when all stripes are done.
1398 * 3/ reallocate conf->disks to be suitable bigger. If this fails,
1399 * we simple return a failre status - no need to clean anything up.
1400 * 4/ allocate new pages for the new slots in the new stripe_heads.
1401 * If this fails, we don't bother trying the shrink the
1402 * stripe_heads down again, we just leave them as they are.
1403 * As each stripe_head is processed the new one is released into
1404 * active service.
1405 *
1406 * Once step2 is started, we cannot afford to wait for a write,
1407 * so we use GFP_NOIO allocations.
1408 */
1409 struct stripe_head *osh, *nsh;
1410 LIST_HEAD(newstripes);
1411 struct disk_info *ndisks;
Dan Williamsd6f38f32009-07-14 11:50:52 -07001412 unsigned long cpu;
Dan Williamsb5470dc2008-06-27 21:44:04 -07001413 int err;
Christoph Lametere18b8902006-12-06 20:33:20 -08001414 struct kmem_cache *sc;
NeilBrownad01c9e2006-03-27 01:18:07 -08001415 int i;
1416
1417 if (newsize <= conf->pool_size)
1418 return 0; /* never bother to shrink */
1419
Dan Williamsb5470dc2008-06-27 21:44:04 -07001420 err = md_allow_write(conf->mddev);
1421 if (err)
1422 return err;
NeilBrown2a2275d2007-01-26 00:57:11 -08001423
NeilBrownad01c9e2006-03-27 01:18:07 -08001424 /* Step 1 */
1425 sc = kmem_cache_create(conf->cache_name[1-conf->active_name],
1426 sizeof(struct stripe_head)+(newsize-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +09001427 0, 0, NULL);
NeilBrownad01c9e2006-03-27 01:18:07 -08001428 if (!sc)
1429 return -ENOMEM;
1430
1431 for (i = conf->max_nr_stripes; i; i--) {
1432 nsh = kmem_cache_alloc(sc, GFP_KERNEL);
1433 if (!nsh)
1434 break;
1435
1436 memset(nsh, 0, sizeof(*nsh) + (newsize-1)*sizeof(struct r5dev));
1437
1438 nsh->raid_conf = conf;
1439 spin_lock_init(&nsh->lock);
Dan Williams417b8d42009-10-16 16:25:22 +11001440 #ifdef CONFIG_MULTICORE_RAID456
1441 init_waitqueue_head(&nsh->ops.wait_for_ops);
1442 #endif
NeilBrownad01c9e2006-03-27 01:18:07 -08001443
1444 list_add(&nsh->lru, &newstripes);
1445 }
1446 if (i) {
1447 /* didn't get enough, give up */
1448 while (!list_empty(&newstripes)) {
1449 nsh = list_entry(newstripes.next, struct stripe_head, lru);
1450 list_del(&nsh->lru);
1451 kmem_cache_free(sc, nsh);
1452 }
1453 kmem_cache_destroy(sc);
1454 return -ENOMEM;
1455 }
1456 /* Step 2 - Must use GFP_NOIO now.
1457 * OK, we have enough stripes, start collecting inactive
1458 * stripes and copying them over
1459 */
1460 list_for_each_entry(nsh, &newstripes, lru) {
1461 spin_lock_irq(&conf->device_lock);
1462 wait_event_lock_irq(conf->wait_for_stripe,
1463 !list_empty(&conf->inactive_list),
1464 conf->device_lock,
NeilBrownb3b46be2006-03-27 01:18:16 -08001465 unplug_slaves(conf->mddev)
NeilBrownad01c9e2006-03-27 01:18:07 -08001466 );
1467 osh = get_free_stripe(conf);
1468 spin_unlock_irq(&conf->device_lock);
1469 atomic_set(&nsh->count, 1);
1470 for(i=0; i<conf->pool_size; i++)
1471 nsh->dev[i].page = osh->dev[i].page;
1472 for( ; i<newsize; i++)
1473 nsh->dev[i].page = NULL;
1474 kmem_cache_free(conf->slab_cache, osh);
1475 }
1476 kmem_cache_destroy(conf->slab_cache);
1477
1478 /* Step 3.
1479 * At this point, we are holding all the stripes so the array
1480 * is completely stalled, so now is a good time to resize
Dan Williamsd6f38f32009-07-14 11:50:52 -07001481 * conf->disks and the scribble region
NeilBrownad01c9e2006-03-27 01:18:07 -08001482 */
1483 ndisks = kzalloc(newsize * sizeof(struct disk_info), GFP_NOIO);
1484 if (ndisks) {
1485 for (i=0; i<conf->raid_disks; i++)
1486 ndisks[i] = conf->disks[i];
1487 kfree(conf->disks);
1488 conf->disks = ndisks;
1489 } else
1490 err = -ENOMEM;
1491
Dan Williamsd6f38f32009-07-14 11:50:52 -07001492 get_online_cpus();
1493 conf->scribble_len = scribble_len(newsize);
1494 for_each_present_cpu(cpu) {
1495 struct raid5_percpu *percpu;
1496 void *scribble;
1497
1498 percpu = per_cpu_ptr(conf->percpu, cpu);
1499 scribble = kmalloc(conf->scribble_len, GFP_NOIO);
1500
1501 if (scribble) {
1502 kfree(percpu->scribble);
1503 percpu->scribble = scribble;
1504 } else {
1505 err = -ENOMEM;
1506 break;
1507 }
1508 }
1509 put_online_cpus();
1510
NeilBrownad01c9e2006-03-27 01:18:07 -08001511 /* Step 4, return new stripes to service */
1512 while(!list_empty(&newstripes)) {
1513 nsh = list_entry(newstripes.next, struct stripe_head, lru);
1514 list_del_init(&nsh->lru);
Dan Williamsd6f38f32009-07-14 11:50:52 -07001515
NeilBrownad01c9e2006-03-27 01:18:07 -08001516 for (i=conf->raid_disks; i < newsize; i++)
1517 if (nsh->dev[i].page == NULL) {
1518 struct page *p = alloc_page(GFP_NOIO);
1519 nsh->dev[i].page = p;
1520 if (!p)
1521 err = -ENOMEM;
1522 }
1523 release_stripe(nsh);
1524 }
1525 /* critical section pass, GFP_NOIO no longer needed */
1526
1527 conf->slab_cache = sc;
1528 conf->active_name = 1-conf->active_name;
1529 conf->pool_size = newsize;
1530 return err;
1531}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
NeilBrown3f294f42005-11-08 21:39:25 -08001533static int drop_one_stripe(raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534{
1535 struct stripe_head *sh;
1536
NeilBrown3f294f42005-11-08 21:39:25 -08001537 spin_lock_irq(&conf->device_lock);
1538 sh = get_free_stripe(conf);
1539 spin_unlock_irq(&conf->device_lock);
1540 if (!sh)
1541 return 0;
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02001542 BUG_ON(atomic_read(&sh->count));
NeilBrowne4e11e32010-06-16 16:45:16 +10001543 shrink_buffers(sh);
NeilBrown3f294f42005-11-08 21:39:25 -08001544 kmem_cache_free(conf->slab_cache, sh);
1545 atomic_dec(&conf->active_stripes);
1546 return 1;
1547}
1548
1549static void shrink_stripes(raid5_conf_t *conf)
1550{
1551 while (drop_one_stripe(conf))
1552 ;
1553
NeilBrown29fc7e32006-02-03 03:03:41 -08001554 if (conf->slab_cache)
1555 kmem_cache_destroy(conf->slab_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 conf->slab_cache = NULL;
1557}
1558
NeilBrown6712ecf2007-09-27 12:47:43 +02001559static void raid5_end_read_request(struct bio * bi, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560{
NeilBrown99c0fb52009-03-31 14:39:38 +11001561 struct stripe_head *sh = bi->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 raid5_conf_t *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08001563 int disks = sh->disks, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
NeilBrownd6950432006-07-10 04:44:20 -07001565 char b[BDEVNAME_SIZE];
1566 mdk_rdev_t *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
1569 for (i=0 ; i<disks; i++)
1570 if (bi == &sh->dev[i].req)
1571 break;
1572
Dan Williams45b42332007-07-09 11:56:43 -07001573 pr_debug("end_read_request %llu/%d, count: %d, uptodate %d.\n",
1574 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 uptodate);
1576 if (i == disks) {
1577 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02001578 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 }
1580
1581 if (uptodate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 set_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrown4e5314b2005-11-08 21:39:22 -08001583 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrownd6950432006-07-10 04:44:20 -07001584 rdev = conf->disks[i].rdev;
NeilBrown0c55e022010-05-03 14:09:02 +10001585 printk_rl(KERN_INFO "md/raid:%s: read error corrected"
Bernd Schubert6be9d492008-05-23 13:04:34 -07001586 " (%lu sectors at %llu on %s)\n",
1587 mdname(conf->mddev), STRIPE_SECTORS,
1588 (unsigned long long)(sh->sector
1589 + rdev->data_offset),
1590 bdevname(rdev->bdev, b));
NeilBrown4e5314b2005-11-08 21:39:22 -08001591 clear_bit(R5_ReadError, &sh->dev[i].flags);
1592 clear_bit(R5_ReWrite, &sh->dev[i].flags);
1593 }
NeilBrownba22dcb2005-11-08 21:39:31 -08001594 if (atomic_read(&conf->disks[i].rdev->read_errors))
1595 atomic_set(&conf->disks[i].rdev->read_errors, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 } else {
NeilBrownd6950432006-07-10 04:44:20 -07001597 const char *bdn = bdevname(conf->disks[i].rdev->bdev, b);
NeilBrownba22dcb2005-11-08 21:39:31 -08001598 int retry = 0;
NeilBrownd6950432006-07-10 04:44:20 -07001599 rdev = conf->disks[i].rdev;
1600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 clear_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrownd6950432006-07-10 04:44:20 -07001602 atomic_inc(&rdev->read_errors);
Gabriele A. Trombetti7b0bb532010-04-28 11:51:17 +10001603 if (conf->mddev->degraded >= conf->max_degraded)
Bernd Schubert6be9d492008-05-23 13:04:34 -07001604 printk_rl(KERN_WARNING
NeilBrown0c55e022010-05-03 14:09:02 +10001605 "md/raid:%s: read error not correctable "
Bernd Schubert6be9d492008-05-23 13:04:34 -07001606 "(sector %llu on %s).\n",
1607 mdname(conf->mddev),
1608 (unsigned long long)(sh->sector
1609 + rdev->data_offset),
1610 bdn);
NeilBrownba22dcb2005-11-08 21:39:31 -08001611 else if (test_bit(R5_ReWrite, &sh->dev[i].flags))
NeilBrown4e5314b2005-11-08 21:39:22 -08001612 /* Oh, no!!! */
Bernd Schubert6be9d492008-05-23 13:04:34 -07001613 printk_rl(KERN_WARNING
NeilBrown0c55e022010-05-03 14:09:02 +10001614 "md/raid:%s: read error NOT corrected!! "
Bernd Schubert6be9d492008-05-23 13:04:34 -07001615 "(sector %llu on %s).\n",
1616 mdname(conf->mddev),
1617 (unsigned long long)(sh->sector
1618 + rdev->data_offset),
1619 bdn);
NeilBrownd6950432006-07-10 04:44:20 -07001620 else if (atomic_read(&rdev->read_errors)
NeilBrownba22dcb2005-11-08 21:39:31 -08001621 > conf->max_nr_stripes)
NeilBrown14f8d262006-01-06 00:20:14 -08001622 printk(KERN_WARNING
NeilBrown0c55e022010-05-03 14:09:02 +10001623 "md/raid:%s: Too many read errors, failing device %s.\n",
NeilBrownd6950432006-07-10 04:44:20 -07001624 mdname(conf->mddev), bdn);
NeilBrownba22dcb2005-11-08 21:39:31 -08001625 else
1626 retry = 1;
1627 if (retry)
1628 set_bit(R5_ReadError, &sh->dev[i].flags);
1629 else {
NeilBrown4e5314b2005-11-08 21:39:22 -08001630 clear_bit(R5_ReadError, &sh->dev[i].flags);
1631 clear_bit(R5_ReWrite, &sh->dev[i].flags);
NeilBrownd6950432006-07-10 04:44:20 -07001632 md_error(conf->mddev, rdev);
NeilBrownba22dcb2005-11-08 21:39:31 -08001633 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 }
1635 rdev_dec_pending(conf->disks[i].rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 clear_bit(R5_LOCKED, &sh->dev[i].flags);
1637 set_bit(STRIPE_HANDLE, &sh->state);
1638 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639}
1640
NeilBrownd710e132008-10-13 11:55:12 +11001641static void raid5_end_write_request(struct bio *bi, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642{
NeilBrown99c0fb52009-03-31 14:39:38 +11001643 struct stripe_head *sh = bi->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 raid5_conf_t *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08001645 int disks = sh->disks, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
1647
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 for (i=0 ; i<disks; i++)
1649 if (bi == &sh->dev[i].req)
1650 break;
1651
Dan Williams45b42332007-07-09 11:56:43 -07001652 pr_debug("end_write_request %llu/%d, count %d, uptodate: %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
1654 uptodate);
1655 if (i == disks) {
1656 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02001657 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 }
1659
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 if (!uptodate)
1661 md_error(conf->mddev, conf->disks[i].rdev);
1662
1663 rdev_dec_pending(conf->disks[i].rdev, conf->mddev);
1664
1665 clear_bit(R5_LOCKED, &sh->dev[i].flags);
1666 set_bit(STRIPE_HANDLE, &sh->state);
NeilBrownc04be0a2006-10-03 01:15:53 -07001667 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668}
1669
1670
NeilBrown784052e2009-03-31 15:19:07 +11001671static sector_t compute_blocknr(struct stripe_head *sh, int i, int previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
NeilBrown784052e2009-03-31 15:19:07 +11001673static void raid5_build_block(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674{
1675 struct r5dev *dev = &sh->dev[i];
1676
1677 bio_init(&dev->req);
1678 dev->req.bi_io_vec = &dev->vec;
1679 dev->req.bi_vcnt++;
1680 dev->req.bi_max_vecs++;
1681 dev->vec.bv_page = dev->page;
1682 dev->vec.bv_len = STRIPE_SIZE;
1683 dev->vec.bv_offset = 0;
1684
1685 dev->req.bi_sector = sh->sector;
1686 dev->req.bi_private = sh;
1687
1688 dev->flags = 0;
NeilBrown784052e2009-03-31 15:19:07 +11001689 dev->sector = compute_blocknr(sh, i, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690}
1691
1692static void error(mddev_t *mddev, mdk_rdev_t *rdev)
1693{
1694 char b[BDEVNAME_SIZE];
H Hartley Sweeten7b928132010-03-08 16:02:40 +11001695 raid5_conf_t *conf = mddev->private;
NeilBrown0c55e022010-05-03 14:09:02 +10001696 pr_debug("raid456: error called\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697
NeilBrownb2d444d2005-11-08 21:39:31 -08001698 if (!test_bit(Faulty, &rdev->flags)) {
NeilBrown850b2b42006-10-03 01:15:46 -07001699 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrownc04be0a2006-10-03 01:15:53 -07001700 if (test_and_clear_bit(In_sync, &rdev->flags)) {
1701 unsigned long flags;
1702 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 mddev->degraded++;
NeilBrownc04be0a2006-10-03 01:15:53 -07001704 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 /*
1706 * if recovery was running, make sure it aborts.
1707 */
NeilBrowndfc70642008-05-23 13:04:39 -07001708 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 }
NeilBrownb2d444d2005-11-08 21:39:31 -08001710 set_bit(Faulty, &rdev->flags);
NeilBrownd710e132008-10-13 11:55:12 +11001711 printk(KERN_ALERT
NeilBrown0c55e022010-05-03 14:09:02 +10001712 "md/raid:%s: Disk failure on %s, disabling device.\n"
1713 KERN_ALERT
1714 "md/raid:%s: Operation continuing on %d devices.\n",
1715 mdname(mddev),
1716 bdevname(rdev->bdev, b),
1717 mdname(mddev),
1718 conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 }
NeilBrown16a53ec2006-06-26 00:27:38 -07001720}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
1722/*
1723 * Input: a 'big' sector number,
1724 * Output: index of the data and parity disk, and the sector # in them.
1725 */
NeilBrown112bf892009-03-31 14:39:38 +11001726static sector_t raid5_compute_sector(raid5_conf_t *conf, sector_t r_sector,
NeilBrown911d4ee2009-03-31 14:39:38 +11001727 int previous, int *dd_idx,
1728 struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729{
NeilBrown6e3b96e2010-04-23 07:08:28 +10001730 sector_t stripe, stripe2;
NeilBrown35f2a592010-04-20 14:13:34 +10001731 sector_t chunk_number;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 unsigned int chunk_offset;
NeilBrown911d4ee2009-03-31 14:39:38 +11001733 int pd_idx, qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11001734 int ddf_layout = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 sector_t new_sector;
NeilBrowne183eae2009-03-31 15:20:22 +11001736 int algorithm = previous ? conf->prev_algo
1737 : conf->algorithm;
Andre Noll09c9e5f2009-06-18 08:45:55 +10001738 int sectors_per_chunk = previous ? conf->prev_chunk_sectors
1739 : conf->chunk_sectors;
NeilBrown112bf892009-03-31 14:39:38 +11001740 int raid_disks = previous ? conf->previous_raid_disks
1741 : conf->raid_disks;
1742 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
1744 /* First compute the information on this sector */
1745
1746 /*
1747 * Compute the chunk number and the sector offset inside the chunk
1748 */
1749 chunk_offset = sector_div(r_sector, sectors_per_chunk);
1750 chunk_number = r_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
1752 /*
1753 * Compute the stripe number
1754 */
NeilBrown35f2a592010-04-20 14:13:34 +10001755 stripe = chunk_number;
1756 *dd_idx = sector_div(stripe, data_disks);
NeilBrown6e3b96e2010-04-23 07:08:28 +10001757 stripe2 = stripe;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 /*
1759 * Select the parity disk based on the user selected algorithm.
1760 */
NeilBrown911d4ee2009-03-31 14:39:38 +11001761 pd_idx = qd_idx = ~0;
NeilBrown16a53ec2006-06-26 00:27:38 -07001762 switch(conf->level) {
1763 case 4:
NeilBrown911d4ee2009-03-31 14:39:38 +11001764 pd_idx = data_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07001765 break;
1766 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11001767 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001769 pd_idx = data_disks - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001770 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 (*dd_idx)++;
1772 break;
1773 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001774 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001775 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 (*dd_idx)++;
1777 break;
1778 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001779 pd_idx = data_disks - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001780 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 break;
1782 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001783 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001784 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11001786 case ALGORITHM_PARITY_0:
1787 pd_idx = 0;
1788 (*dd_idx)++;
1789 break;
1790 case ALGORITHM_PARITY_N:
1791 pd_idx = data_disks;
1792 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11001794 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07001795 }
1796 break;
1797 case 6:
1798
NeilBrowne183eae2009-03-31 15:20:22 +11001799 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07001800 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001801 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001802 qd_idx = pd_idx + 1;
1803 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11001804 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11001805 qd_idx = 0;
1806 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07001807 (*dd_idx) += 2; /* D D P Q D */
1808 break;
1809 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001810 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001811 qd_idx = pd_idx + 1;
1812 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11001813 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11001814 qd_idx = 0;
1815 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07001816 (*dd_idx) += 2; /* D D P Q D */
1817 break;
1818 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001819 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001820 qd_idx = (pd_idx + 1) % raid_disks;
1821 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07001822 break;
1823 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001824 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown911d4ee2009-03-31 14:39:38 +11001825 qd_idx = (pd_idx + 1) % raid_disks;
1826 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07001827 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11001828
1829 case ALGORITHM_PARITY_0:
1830 pd_idx = 0;
1831 qd_idx = 1;
1832 (*dd_idx) += 2;
1833 break;
1834 case ALGORITHM_PARITY_N:
1835 pd_idx = data_disks;
1836 qd_idx = data_disks + 1;
1837 break;
1838
1839 case ALGORITHM_ROTATING_ZERO_RESTART:
1840 /* Exactly the same as RIGHT_ASYMMETRIC, but or
1841 * of blocks for computing Q is different.
1842 */
NeilBrown6e3b96e2010-04-23 07:08:28 +10001843 pd_idx = sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11001844 qd_idx = pd_idx + 1;
1845 if (pd_idx == raid_disks-1) {
1846 (*dd_idx)++; /* Q D D D P */
1847 qd_idx = 0;
1848 } else if (*dd_idx >= pd_idx)
1849 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11001850 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11001851 break;
1852
1853 case ALGORITHM_ROTATING_N_RESTART:
1854 /* Same a left_asymmetric, by first stripe is
1855 * D D D P Q rather than
1856 * Q D D D P
1857 */
NeilBrown6e3b96e2010-04-23 07:08:28 +10001858 stripe2 += 1;
1859 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11001860 qd_idx = pd_idx + 1;
1861 if (pd_idx == raid_disks-1) {
1862 (*dd_idx)++; /* Q D D D P */
1863 qd_idx = 0;
1864 } else if (*dd_idx >= pd_idx)
1865 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11001866 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11001867 break;
1868
1869 case ALGORITHM_ROTATING_N_CONTINUE:
1870 /* Same as left_symmetric but Q is before P */
NeilBrown6e3b96e2010-04-23 07:08:28 +10001871 pd_idx = raid_disks - 1 - sector_div(stripe2, raid_disks);
NeilBrown99c0fb52009-03-31 14:39:38 +11001872 qd_idx = (pd_idx + raid_disks - 1) % raid_disks;
1873 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
NeilBrown67cc2b82009-03-31 14:39:38 +11001874 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11001875 break;
1876
1877 case ALGORITHM_LEFT_ASYMMETRIC_6:
1878 /* RAID5 left_asymmetric, with Q on last device */
NeilBrown6e3b96e2010-04-23 07:08:28 +10001879 pd_idx = data_disks - sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11001880 if (*dd_idx >= pd_idx)
1881 (*dd_idx)++;
1882 qd_idx = raid_disks - 1;
1883 break;
1884
1885 case ALGORITHM_RIGHT_ASYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001886 pd_idx = sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11001887 if (*dd_idx >= pd_idx)
1888 (*dd_idx)++;
1889 qd_idx = raid_disks - 1;
1890 break;
1891
1892 case ALGORITHM_LEFT_SYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001893 pd_idx = data_disks - sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11001894 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
1895 qd_idx = raid_disks - 1;
1896 break;
1897
1898 case ALGORITHM_RIGHT_SYMMETRIC_6:
NeilBrown6e3b96e2010-04-23 07:08:28 +10001899 pd_idx = sector_div(stripe2, raid_disks-1);
NeilBrown99c0fb52009-03-31 14:39:38 +11001900 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
1901 qd_idx = raid_disks - 1;
1902 break;
1903
1904 case ALGORITHM_PARITY_0_6:
1905 pd_idx = 0;
1906 (*dd_idx)++;
1907 qd_idx = raid_disks - 1;
1908 break;
1909
NeilBrown16a53ec2006-06-26 00:27:38 -07001910 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11001911 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07001912 }
1913 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 }
1915
NeilBrown911d4ee2009-03-31 14:39:38 +11001916 if (sh) {
1917 sh->pd_idx = pd_idx;
1918 sh->qd_idx = qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11001919 sh->ddf_layout = ddf_layout;
NeilBrown911d4ee2009-03-31 14:39:38 +11001920 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 /*
1922 * Finally, compute the new sector number
1923 */
1924 new_sector = (sector_t)stripe * sectors_per_chunk + chunk_offset;
1925 return new_sector;
1926}
1927
1928
NeilBrown784052e2009-03-31 15:19:07 +11001929static sector_t compute_blocknr(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930{
1931 raid5_conf_t *conf = sh->raid_conf;
NeilBrownb875e532006-12-10 02:20:49 -08001932 int raid_disks = sh->disks;
1933 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 sector_t new_sector = sh->sector, check;
Andre Noll09c9e5f2009-06-18 08:45:55 +10001935 int sectors_per_chunk = previous ? conf->prev_chunk_sectors
1936 : conf->chunk_sectors;
NeilBrowne183eae2009-03-31 15:20:22 +11001937 int algorithm = previous ? conf->prev_algo
1938 : conf->algorithm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 sector_t stripe;
1940 int chunk_offset;
NeilBrown35f2a592010-04-20 14:13:34 +10001941 sector_t chunk_number;
1942 int dummy1, dd_idx = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 sector_t r_sector;
NeilBrown911d4ee2009-03-31 14:39:38 +11001944 struct stripe_head sh2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
NeilBrown16a53ec2006-06-26 00:27:38 -07001946
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 chunk_offset = sector_div(new_sector, sectors_per_chunk);
1948 stripe = new_sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
NeilBrown16a53ec2006-06-26 00:27:38 -07001950 if (i == sh->pd_idx)
1951 return 0;
1952 switch(conf->level) {
1953 case 4: break;
1954 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11001955 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 case ALGORITHM_LEFT_ASYMMETRIC:
1957 case ALGORITHM_RIGHT_ASYMMETRIC:
1958 if (i > sh->pd_idx)
1959 i--;
1960 break;
1961 case ALGORITHM_LEFT_SYMMETRIC:
1962 case ALGORITHM_RIGHT_SYMMETRIC:
1963 if (i < sh->pd_idx)
1964 i += raid_disks;
1965 i -= (sh->pd_idx + 1);
1966 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11001967 case ALGORITHM_PARITY_0:
1968 i -= 1;
1969 break;
1970 case ALGORITHM_PARITY_N:
1971 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11001973 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07001974 }
1975 break;
1976 case 6:
NeilBrownd0dabf72009-03-31 14:39:38 +11001977 if (i == sh->qd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07001978 return 0; /* It is the Q disk */
NeilBrowne183eae2009-03-31 15:20:22 +11001979 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07001980 case ALGORITHM_LEFT_ASYMMETRIC:
1981 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown99c0fb52009-03-31 14:39:38 +11001982 case ALGORITHM_ROTATING_ZERO_RESTART:
1983 case ALGORITHM_ROTATING_N_RESTART:
1984 if (sh->pd_idx == raid_disks-1)
1985 i--; /* Q D D D P */
NeilBrown16a53ec2006-06-26 00:27:38 -07001986 else if (i > sh->pd_idx)
1987 i -= 2; /* D D P Q D */
1988 break;
1989 case ALGORITHM_LEFT_SYMMETRIC:
1990 case ALGORITHM_RIGHT_SYMMETRIC:
1991 if (sh->pd_idx == raid_disks-1)
1992 i--; /* Q D D D P */
1993 else {
1994 /* D D P Q D */
1995 if (i < sh->pd_idx)
1996 i += raid_disks;
1997 i -= (sh->pd_idx + 2);
1998 }
1999 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11002000 case ALGORITHM_PARITY_0:
2001 i -= 2;
2002 break;
2003 case ALGORITHM_PARITY_N:
2004 break;
2005 case ALGORITHM_ROTATING_N_CONTINUE:
NeilBrowne4424fe2009-10-16 16:27:34 +11002006 /* Like left_symmetric, but P is before Q */
NeilBrown99c0fb52009-03-31 14:39:38 +11002007 if (sh->pd_idx == 0)
2008 i--; /* P D D D Q */
NeilBrowne4424fe2009-10-16 16:27:34 +11002009 else {
2010 /* D D Q P D */
2011 if (i < sh->pd_idx)
2012 i += raid_disks;
2013 i -= (sh->pd_idx + 1);
2014 }
NeilBrown99c0fb52009-03-31 14:39:38 +11002015 break;
2016 case ALGORITHM_LEFT_ASYMMETRIC_6:
2017 case ALGORITHM_RIGHT_ASYMMETRIC_6:
2018 if (i > sh->pd_idx)
2019 i--;
2020 break;
2021 case ALGORITHM_LEFT_SYMMETRIC_6:
2022 case ALGORITHM_RIGHT_SYMMETRIC_6:
2023 if (i < sh->pd_idx)
2024 i += data_disks + 1;
2025 i -= (sh->pd_idx + 1);
2026 break;
2027 case ALGORITHM_PARITY_0_6:
2028 i -= 1;
2029 break;
NeilBrown16a53ec2006-06-26 00:27:38 -07002030 default:
NeilBrown99c0fb52009-03-31 14:39:38 +11002031 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07002032 }
2033 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 }
2035
2036 chunk_number = stripe * data_disks + i;
NeilBrown35f2a592010-04-20 14:13:34 +10002037 r_sector = chunk_number * sectors_per_chunk + chunk_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038
NeilBrown112bf892009-03-31 14:39:38 +11002039 check = raid5_compute_sector(conf, r_sector,
NeilBrown784052e2009-03-31 15:19:07 +11002040 previous, &dummy1, &sh2);
NeilBrown911d4ee2009-03-31 14:39:38 +11002041 if (check != sh->sector || dummy1 != dd_idx || sh2.pd_idx != sh->pd_idx
2042 || sh2.qd_idx != sh->qd_idx) {
NeilBrown0c55e022010-05-03 14:09:02 +10002043 printk(KERN_ERR "md/raid:%s: compute_blocknr: map not correct\n",
2044 mdname(conf->mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 return 0;
2046 }
2047 return r_sector;
2048}
2049
2050
Dan Williams600aa102008-06-28 08:32:05 +10002051static void
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002052schedule_reconstruction(struct stripe_head *sh, struct stripe_head_state *s,
Dan Williams600aa102008-06-28 08:32:05 +10002053 int rcw, int expand)
Dan Williamse33129d2007-01-02 13:52:30 -07002054{
2055 int i, pd_idx = sh->pd_idx, disks = sh->disks;
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002056 raid5_conf_t *conf = sh->raid_conf;
2057 int level = conf->level;
NeilBrown16a53ec2006-06-26 00:27:38 -07002058
Dan Williamse33129d2007-01-02 13:52:30 -07002059 if (rcw) {
2060 /* if we are not expanding this is a proper write request, and
2061 * there will be bios with new data to be drained into the
2062 * stripe cache
2063 */
2064 if (!expand) {
Dan Williams600aa102008-06-28 08:32:05 +10002065 sh->reconstruct_state = reconstruct_state_drain_run;
2066 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
2067 } else
2068 sh->reconstruct_state = reconstruct_state_run;
Dan Williamse33129d2007-01-02 13:52:30 -07002069
Dan Williamsac6b53b2009-07-14 13:40:19 -07002070 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07002071
2072 for (i = disks; i--; ) {
2073 struct r5dev *dev = &sh->dev[i];
2074
2075 if (dev->towrite) {
2076 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsd8ee0722008-06-28 08:32:06 +10002077 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07002078 if (!expand)
2079 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10002080 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002081 }
2082 }
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002083 if (s->locked + conf->max_degraded == disks)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002084 if (!test_and_set_bit(STRIPE_FULL_WRITE, &sh->state))
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002085 atomic_inc(&conf->pending_full_writes);
Dan Williamse33129d2007-01-02 13:52:30 -07002086 } else {
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002087 BUG_ON(level == 6);
Dan Williamse33129d2007-01-02 13:52:30 -07002088 BUG_ON(!(test_bit(R5_UPTODATE, &sh->dev[pd_idx].flags) ||
2089 test_bit(R5_Wantcompute, &sh->dev[pd_idx].flags)));
2090
Dan Williamsd8ee0722008-06-28 08:32:06 +10002091 sh->reconstruct_state = reconstruct_state_prexor_drain_run;
Dan Williams600aa102008-06-28 08:32:05 +10002092 set_bit(STRIPE_OP_PREXOR, &s->ops_request);
2093 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
Dan Williamsac6b53b2009-07-14 13:40:19 -07002094 set_bit(STRIPE_OP_RECONSTRUCT, &s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07002095
2096 for (i = disks; i--; ) {
2097 struct r5dev *dev = &sh->dev[i];
2098 if (i == pd_idx)
2099 continue;
2100
Dan Williamse33129d2007-01-02 13:52:30 -07002101 if (dev->towrite &&
2102 (test_bit(R5_UPTODATE, &dev->flags) ||
Dan Williamsd8ee0722008-06-28 08:32:06 +10002103 test_bit(R5_Wantcompute, &dev->flags))) {
2104 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07002105 set_bit(R5_LOCKED, &dev->flags);
2106 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10002107 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002108 }
2109 }
2110 }
2111
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002112 /* keep the parity disk(s) locked while asynchronous operations
Dan Williamse33129d2007-01-02 13:52:30 -07002113 * are in flight
2114 */
2115 set_bit(R5_LOCKED, &sh->dev[pd_idx].flags);
2116 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
Dan Williams600aa102008-06-28 08:32:05 +10002117 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07002118
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002119 if (level == 6) {
2120 int qd_idx = sh->qd_idx;
2121 struct r5dev *dev = &sh->dev[qd_idx];
2122
2123 set_bit(R5_LOCKED, &dev->flags);
2124 clear_bit(R5_UPTODATE, &dev->flags);
2125 s->locked++;
2126 }
2127
Dan Williams600aa102008-06-28 08:32:05 +10002128 pr_debug("%s: stripe %llu locked: %d ops_request: %lx\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -07002129 __func__, (unsigned long long)sh->sector,
Dan Williams600aa102008-06-28 08:32:05 +10002130 s->locked, s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07002131}
NeilBrown16a53ec2006-06-26 00:27:38 -07002132
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133/*
2134 * Each stripe/dev can have one or more bion attached.
NeilBrown16a53ec2006-06-26 00:27:38 -07002135 * toread/towrite point to the first in a chain.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 * The bi_next chain must be in order.
2137 */
2138static int add_stripe_bio(struct stripe_head *sh, struct bio *bi, int dd_idx, int forwrite)
2139{
2140 struct bio **bip;
2141 raid5_conf_t *conf = sh->raid_conf;
NeilBrown72626682005-09-09 16:23:54 -07002142 int firstwrite=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143
Dan Williams45b42332007-07-09 11:56:43 -07002144 pr_debug("adding bh b#%llu to stripe s#%llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 (unsigned long long)bi->bi_sector,
2146 (unsigned long long)sh->sector);
2147
2148
2149 spin_lock(&sh->lock);
2150 spin_lock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07002151 if (forwrite) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 bip = &sh->dev[dd_idx].towrite;
NeilBrown72626682005-09-09 16:23:54 -07002153 if (*bip == NULL && sh->dev[dd_idx].written == NULL)
2154 firstwrite = 1;
2155 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 bip = &sh->dev[dd_idx].toread;
2157 while (*bip && (*bip)->bi_sector < bi->bi_sector) {
2158 if ((*bip)->bi_sector + ((*bip)->bi_size >> 9) > bi->bi_sector)
2159 goto overlap;
2160 bip = & (*bip)->bi_next;
2161 }
2162 if (*bip && (*bip)->bi_sector < bi->bi_sector + ((bi->bi_size)>>9))
2163 goto overlap;
2164
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02002165 BUG_ON(*bip && bi->bi_next && (*bip) != bi->bi_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 if (*bip)
2167 bi->bi_next = *bip;
2168 *bip = bi;
Jens Axboe960e7392008-08-15 10:41:18 +02002169 bi->bi_phys_segments++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 spin_unlock_irq(&conf->device_lock);
2171 spin_unlock(&sh->lock);
2172
Dan Williams45b42332007-07-09 11:56:43 -07002173 pr_debug("added bi b#%llu to stripe s#%llu, disk %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 (unsigned long long)bi->bi_sector,
2175 (unsigned long long)sh->sector, dd_idx);
2176
NeilBrown72626682005-09-09 16:23:54 -07002177 if (conf->mddev->bitmap && firstwrite) {
NeilBrown72626682005-09-09 16:23:54 -07002178 bitmap_startwrite(conf->mddev->bitmap, sh->sector,
2179 STRIPE_SECTORS, 0);
NeilBrownae3c20c2006-07-10 04:44:17 -07002180 sh->bm_seq = conf->seq_flush+1;
NeilBrown72626682005-09-09 16:23:54 -07002181 set_bit(STRIPE_BIT_DELAY, &sh->state);
2182 }
2183
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 if (forwrite) {
2185 /* check if page is covered */
2186 sector_t sector = sh->dev[dd_idx].sector;
2187 for (bi=sh->dev[dd_idx].towrite;
2188 sector < sh->dev[dd_idx].sector + STRIPE_SECTORS &&
2189 bi && bi->bi_sector <= sector;
2190 bi = r5_next_bio(bi, sh->dev[dd_idx].sector)) {
2191 if (bi->bi_sector + (bi->bi_size>>9) >= sector)
2192 sector = bi->bi_sector + (bi->bi_size>>9);
2193 }
2194 if (sector >= sh->dev[dd_idx].sector + STRIPE_SECTORS)
2195 set_bit(R5_OVERWRITE, &sh->dev[dd_idx].flags);
2196 }
2197 return 1;
2198
2199 overlap:
2200 set_bit(R5_Overlap, &sh->dev[dd_idx].flags);
2201 spin_unlock_irq(&conf->device_lock);
2202 spin_unlock(&sh->lock);
2203 return 0;
2204}
2205
NeilBrown29269552006-03-27 01:18:10 -08002206static void end_reshape(raid5_conf_t *conf);
2207
NeilBrown911d4ee2009-03-31 14:39:38 +11002208static void stripe_set_idx(sector_t stripe, raid5_conf_t *conf, int previous,
2209 struct stripe_head *sh)
NeilBrownccfcc3c2006-03-27 01:18:09 -08002210{
NeilBrown784052e2009-03-31 15:19:07 +11002211 int sectors_per_chunk =
Andre Noll09c9e5f2009-06-18 08:45:55 +10002212 previous ? conf->prev_chunk_sectors : conf->chunk_sectors;
NeilBrown911d4ee2009-03-31 14:39:38 +11002213 int dd_idx;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07002214 int chunk_offset = sector_div(stripe, sectors_per_chunk);
NeilBrown112bf892009-03-31 14:39:38 +11002215 int disks = previous ? conf->previous_raid_disks : conf->raid_disks;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07002216
NeilBrown112bf892009-03-31 14:39:38 +11002217 raid5_compute_sector(conf,
2218 stripe * (disks - conf->max_degraded)
NeilBrownb875e532006-12-10 02:20:49 -08002219 *sectors_per_chunk + chunk_offset,
NeilBrown112bf892009-03-31 14:39:38 +11002220 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11002221 &dd_idx, sh);
NeilBrownccfcc3c2006-03-27 01:18:09 -08002222}
2223
Dan Williamsa4456852007-07-09 11:56:43 -07002224static void
Dan Williams1fe797e2008-06-28 09:16:30 +10002225handle_failed_stripe(raid5_conf_t *conf, struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07002226 struct stripe_head_state *s, int disks,
2227 struct bio **return_bi)
2228{
2229 int i;
2230 for (i = disks; i--; ) {
2231 struct bio *bi;
2232 int bitmap_end = 0;
2233
2234 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
2235 mdk_rdev_t *rdev;
2236 rcu_read_lock();
2237 rdev = rcu_dereference(conf->disks[i].rdev);
2238 if (rdev && test_bit(In_sync, &rdev->flags))
2239 /* multiple read failures in one stripe */
2240 md_error(conf->mddev, rdev);
2241 rcu_read_unlock();
2242 }
2243 spin_lock_irq(&conf->device_lock);
2244 /* fail all writes first */
2245 bi = sh->dev[i].towrite;
2246 sh->dev[i].towrite = NULL;
2247 if (bi) {
2248 s->to_write--;
2249 bitmap_end = 1;
2250 }
2251
2252 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
2253 wake_up(&conf->wait_for_overlap);
2254
2255 while (bi && bi->bi_sector <
2256 sh->dev[i].sector + STRIPE_SECTORS) {
2257 struct bio *nextbi = r5_next_bio(bi, sh->dev[i].sector);
2258 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Jens Axboe960e7392008-08-15 10:41:18 +02002259 if (!raid5_dec_bi_phys_segments(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002260 md_write_end(conf->mddev);
2261 bi->bi_next = *return_bi;
2262 *return_bi = bi;
2263 }
2264 bi = nextbi;
2265 }
2266 /* and fail all 'written' */
2267 bi = sh->dev[i].written;
2268 sh->dev[i].written = NULL;
2269 if (bi) bitmap_end = 1;
2270 while (bi && bi->bi_sector <
2271 sh->dev[i].sector + STRIPE_SECTORS) {
2272 struct bio *bi2 = r5_next_bio(bi, sh->dev[i].sector);
2273 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Jens Axboe960e7392008-08-15 10:41:18 +02002274 if (!raid5_dec_bi_phys_segments(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002275 md_write_end(conf->mddev);
2276 bi->bi_next = *return_bi;
2277 *return_bi = bi;
2278 }
2279 bi = bi2;
2280 }
2281
Dan Williamsb5e98d62007-01-02 13:52:31 -07002282 /* fail any reads if this device is non-operational and
2283 * the data has not reached the cache yet.
2284 */
2285 if (!test_bit(R5_Wantfill, &sh->dev[i].flags) &&
2286 (!test_bit(R5_Insync, &sh->dev[i].flags) ||
2287 test_bit(R5_ReadError, &sh->dev[i].flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07002288 bi = sh->dev[i].toread;
2289 sh->dev[i].toread = NULL;
2290 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
2291 wake_up(&conf->wait_for_overlap);
2292 if (bi) s->to_read--;
2293 while (bi && bi->bi_sector <
2294 sh->dev[i].sector + STRIPE_SECTORS) {
2295 struct bio *nextbi =
2296 r5_next_bio(bi, sh->dev[i].sector);
2297 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Jens Axboe960e7392008-08-15 10:41:18 +02002298 if (!raid5_dec_bi_phys_segments(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002299 bi->bi_next = *return_bi;
2300 *return_bi = bi;
2301 }
2302 bi = nextbi;
2303 }
2304 }
2305 spin_unlock_irq(&conf->device_lock);
2306 if (bitmap_end)
2307 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
2308 STRIPE_SECTORS, 0, 0);
2309 }
2310
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002311 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
2312 if (atomic_dec_and_test(&conf->pending_full_writes))
2313 md_wakeup_thread(conf->mddev->thread);
Dan Williamsa4456852007-07-09 11:56:43 -07002314}
2315
Dan Williams1fe797e2008-06-28 09:16:30 +10002316/* fetch_block5 - checks the given member device to see if its data needs
2317 * to be read or computed to satisfy a request.
2318 *
2319 * Returns 1 when no more member devices need to be checked, otherwise returns
2320 * 0 to tell the loop in handle_stripe_fill5 to continue
Dan Williamsf38e1212007-01-02 13:52:30 -07002321 */
Dan Williams1fe797e2008-06-28 09:16:30 +10002322static int fetch_block5(struct stripe_head *sh, struct stripe_head_state *s,
2323 int disk_idx, int disks)
Dan Williamsf38e1212007-01-02 13:52:30 -07002324{
2325 struct r5dev *dev = &sh->dev[disk_idx];
2326 struct r5dev *failed_dev = &sh->dev[s->failed_num];
2327
Dan Williamsf38e1212007-01-02 13:52:30 -07002328 /* is the data in this block needed, and can we get it? */
2329 if (!test_bit(R5_LOCKED, &dev->flags) &&
Dan Williams1fe797e2008-06-28 09:16:30 +10002330 !test_bit(R5_UPTODATE, &dev->flags) &&
2331 (dev->toread ||
2332 (dev->towrite && !test_bit(R5_OVERWRITE, &dev->flags)) ||
2333 s->syncing || s->expanding ||
2334 (s->failed &&
2335 (failed_dev->toread ||
2336 (failed_dev->towrite &&
2337 !test_bit(R5_OVERWRITE, &failed_dev->flags)))))) {
Dan Williams976ea8d2008-06-28 08:32:03 +10002338 /* We would like to get this block, possibly by computing it,
2339 * otherwise read it if the backing disk is insync
Dan Williamsf38e1212007-01-02 13:52:30 -07002340 */
2341 if ((s->uptodate == disks - 1) &&
Dan Williamsecc65c92008-06-28 08:31:57 +10002342 (s->failed && disk_idx == s->failed_num)) {
Dan Williams976ea8d2008-06-28 08:32:03 +10002343 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
2344 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
Dan Williamsf38e1212007-01-02 13:52:30 -07002345 set_bit(R5_Wantcompute, &dev->flags);
2346 sh->ops.target = disk_idx;
Dan Williamsac6b53b2009-07-14 13:40:19 -07002347 sh->ops.target2 = -1;
Dan Williamsf38e1212007-01-02 13:52:30 -07002348 s->req_compute = 1;
Dan Williamsf38e1212007-01-02 13:52:30 -07002349 /* Careful: from this point on 'uptodate' is in the eye
Dan Williamsac6b53b2009-07-14 13:40:19 -07002350 * of raid_run_ops which services 'compute' operations
Dan Williamsf38e1212007-01-02 13:52:30 -07002351 * before writes. R5_Wantcompute flags a block that will
2352 * be R5_UPTODATE by the time it is needed for a
2353 * subsequent operation.
2354 */
2355 s->uptodate++;
Dan Williams1fe797e2008-06-28 09:16:30 +10002356 return 1; /* uptodate + compute == disks */
Dan Williams7a1fc532008-07-10 04:54:57 -07002357 } else if (test_bit(R5_Insync, &dev->flags)) {
Dan Williamsf38e1212007-01-02 13:52:30 -07002358 set_bit(R5_LOCKED, &dev->flags);
2359 set_bit(R5_Wantread, &dev->flags);
Dan Williamsf38e1212007-01-02 13:52:30 -07002360 s->locked++;
2361 pr_debug("Reading block %d (sync=%d)\n", disk_idx,
2362 s->syncing);
2363 }
2364 }
2365
Dan Williams1fe797e2008-06-28 09:16:30 +10002366 return 0;
Dan Williamsf38e1212007-01-02 13:52:30 -07002367}
2368
Dan Williams1fe797e2008-06-28 09:16:30 +10002369/**
2370 * handle_stripe_fill5 - read or compute data to satisfy pending requests.
2371 */
2372static void handle_stripe_fill5(struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07002373 struct stripe_head_state *s, int disks)
2374{
2375 int i;
Dan Williamsf38e1212007-01-02 13:52:30 -07002376
Dan Williamsf38e1212007-01-02 13:52:30 -07002377 /* look for blocks to read/compute, skip this if a compute
2378 * is already in flight, or if the stripe contents are in the
2379 * midst of changing due to a write
2380 */
Dan Williams976ea8d2008-06-28 08:32:03 +10002381 if (!test_bit(STRIPE_COMPUTE_RUN, &sh->state) && !sh->check_state &&
Dan Williams1fe797e2008-06-28 09:16:30 +10002382 !sh->reconstruct_state)
Dan Williamsf38e1212007-01-02 13:52:30 -07002383 for (i = disks; i--; )
Dan Williams1fe797e2008-06-28 09:16:30 +10002384 if (fetch_block5(sh, s, i, disks))
Dan Williamsf38e1212007-01-02 13:52:30 -07002385 break;
Dan Williamsa4456852007-07-09 11:56:43 -07002386 set_bit(STRIPE_HANDLE, &sh->state);
2387}
2388
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07002389/* fetch_block6 - checks the given member device to see if its data needs
2390 * to be read or computed to satisfy a request.
2391 *
2392 * Returns 1 when no more member devices need to be checked, otherwise returns
2393 * 0 to tell the loop in handle_stripe_fill6 to continue
2394 */
2395static int fetch_block6(struct stripe_head *sh, struct stripe_head_state *s,
2396 struct r6_state *r6s, int disk_idx, int disks)
2397{
2398 struct r5dev *dev = &sh->dev[disk_idx];
2399 struct r5dev *fdev[2] = { &sh->dev[r6s->failed_num[0]],
2400 &sh->dev[r6s->failed_num[1]] };
2401
2402 if (!test_bit(R5_LOCKED, &dev->flags) &&
2403 !test_bit(R5_UPTODATE, &dev->flags) &&
2404 (dev->toread ||
2405 (dev->towrite && !test_bit(R5_OVERWRITE, &dev->flags)) ||
2406 s->syncing || s->expanding ||
2407 (s->failed >= 1 &&
2408 (fdev[0]->toread || s->to_write)) ||
2409 (s->failed >= 2 &&
2410 (fdev[1]->toread || s->to_write)))) {
2411 /* we would like to get this block, possibly by computing it,
2412 * otherwise read it if the backing disk is insync
2413 */
2414 BUG_ON(test_bit(R5_Wantcompute, &dev->flags));
2415 BUG_ON(test_bit(R5_Wantread, &dev->flags));
2416 if ((s->uptodate == disks - 1) &&
2417 (s->failed && (disk_idx == r6s->failed_num[0] ||
2418 disk_idx == r6s->failed_num[1]))) {
2419 /* have disk failed, and we're requested to fetch it;
2420 * do compute it
2421 */
2422 pr_debug("Computing stripe %llu block %d\n",
2423 (unsigned long long)sh->sector, disk_idx);
2424 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
2425 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
2426 set_bit(R5_Wantcompute, &dev->flags);
2427 sh->ops.target = disk_idx;
2428 sh->ops.target2 = -1; /* no 2nd target */
2429 s->req_compute = 1;
2430 s->uptodate++;
2431 return 1;
2432 } else if (s->uptodate == disks-2 && s->failed >= 2) {
2433 /* Computing 2-failure is *very* expensive; only
2434 * do it if failed >= 2
2435 */
2436 int other;
2437 for (other = disks; other--; ) {
2438 if (other == disk_idx)
2439 continue;
2440 if (!test_bit(R5_UPTODATE,
2441 &sh->dev[other].flags))
2442 break;
2443 }
2444 BUG_ON(other < 0);
2445 pr_debug("Computing stripe %llu blocks %d,%d\n",
2446 (unsigned long long)sh->sector,
2447 disk_idx, other);
2448 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
2449 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
2450 set_bit(R5_Wantcompute, &sh->dev[disk_idx].flags);
2451 set_bit(R5_Wantcompute, &sh->dev[other].flags);
2452 sh->ops.target = disk_idx;
2453 sh->ops.target2 = other;
2454 s->uptodate += 2;
2455 s->req_compute = 1;
2456 return 1;
2457 } else if (test_bit(R5_Insync, &dev->flags)) {
2458 set_bit(R5_LOCKED, &dev->flags);
2459 set_bit(R5_Wantread, &dev->flags);
2460 s->locked++;
2461 pr_debug("Reading block %d (sync=%d)\n",
2462 disk_idx, s->syncing);
2463 }
2464 }
2465
2466 return 0;
2467}
2468
2469/**
2470 * handle_stripe_fill6 - read or compute data to satisfy pending requests.
2471 */
Dan Williams1fe797e2008-06-28 09:16:30 +10002472static void handle_stripe_fill6(struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07002473 struct stripe_head_state *s, struct r6_state *r6s,
2474 int disks)
2475{
2476 int i;
Yuri Tikhonov5599bec2009-08-29 19:13:12 -07002477
2478 /* look for blocks to read/compute, skip this if a compute
2479 * is already in flight, or if the stripe contents are in the
2480 * midst of changing due to a write
2481 */
2482 if (!test_bit(STRIPE_COMPUTE_RUN, &sh->state) && !sh->check_state &&
2483 !sh->reconstruct_state)
2484 for (i = disks; i--; )
2485 if (fetch_block6(sh, s, r6s, i, disks))
2486 break;
Dan Williamsa4456852007-07-09 11:56:43 -07002487 set_bit(STRIPE_HANDLE, &sh->state);
2488}
2489
2490
Dan Williams1fe797e2008-06-28 09:16:30 +10002491/* handle_stripe_clean_event
Dan Williamsa4456852007-07-09 11:56:43 -07002492 * any written block on an uptodate or failed drive can be returned.
2493 * Note that if we 'wrote' to a failed drive, it will be UPTODATE, but
2494 * never LOCKED, so we don't need to test 'failed' directly.
2495 */
Dan Williams1fe797e2008-06-28 09:16:30 +10002496static void handle_stripe_clean_event(raid5_conf_t *conf,
Dan Williamsa4456852007-07-09 11:56:43 -07002497 struct stripe_head *sh, int disks, struct bio **return_bi)
2498{
2499 int i;
2500 struct r5dev *dev;
2501
2502 for (i = disks; i--; )
2503 if (sh->dev[i].written) {
2504 dev = &sh->dev[i];
2505 if (!test_bit(R5_LOCKED, &dev->flags) &&
2506 test_bit(R5_UPTODATE, &dev->flags)) {
2507 /* We can return any write requests */
2508 struct bio *wbi, *wbi2;
2509 int bitmap_end = 0;
Dan Williams45b42332007-07-09 11:56:43 -07002510 pr_debug("Return write for disc %d\n", i);
Dan Williamsa4456852007-07-09 11:56:43 -07002511 spin_lock_irq(&conf->device_lock);
2512 wbi = dev->written;
2513 dev->written = NULL;
2514 while (wbi && wbi->bi_sector <
2515 dev->sector + STRIPE_SECTORS) {
2516 wbi2 = r5_next_bio(wbi, dev->sector);
Jens Axboe960e7392008-08-15 10:41:18 +02002517 if (!raid5_dec_bi_phys_segments(wbi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002518 md_write_end(conf->mddev);
2519 wbi->bi_next = *return_bi;
2520 *return_bi = wbi;
2521 }
2522 wbi = wbi2;
2523 }
2524 if (dev->towrite == NULL)
2525 bitmap_end = 1;
2526 spin_unlock_irq(&conf->device_lock);
2527 if (bitmap_end)
2528 bitmap_endwrite(conf->mddev->bitmap,
2529 sh->sector,
2530 STRIPE_SECTORS,
2531 !test_bit(STRIPE_DEGRADED, &sh->state),
2532 0);
2533 }
2534 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002535
2536 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
2537 if (atomic_dec_and_test(&conf->pending_full_writes))
2538 md_wakeup_thread(conf->mddev->thread);
Dan Williamsa4456852007-07-09 11:56:43 -07002539}
2540
Dan Williams1fe797e2008-06-28 09:16:30 +10002541static void handle_stripe_dirtying5(raid5_conf_t *conf,
Dan Williamsa4456852007-07-09 11:56:43 -07002542 struct stripe_head *sh, struct stripe_head_state *s, int disks)
2543{
2544 int rmw = 0, rcw = 0, i;
2545 for (i = disks; i--; ) {
2546 /* would I have to read this buffer for read_modify_write */
2547 struct r5dev *dev = &sh->dev[i];
2548 if ((dev->towrite || i == sh->pd_idx) &&
2549 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002550 !(test_bit(R5_UPTODATE, &dev->flags) ||
2551 test_bit(R5_Wantcompute, &dev->flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07002552 if (test_bit(R5_Insync, &dev->flags))
2553 rmw++;
2554 else
2555 rmw += 2*disks; /* cannot read it */
2556 }
2557 /* Would I have to read this buffer for reconstruct_write */
2558 if (!test_bit(R5_OVERWRITE, &dev->flags) && i != sh->pd_idx &&
2559 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002560 !(test_bit(R5_UPTODATE, &dev->flags) ||
2561 test_bit(R5_Wantcompute, &dev->flags))) {
2562 if (test_bit(R5_Insync, &dev->flags)) rcw++;
Dan Williamsa4456852007-07-09 11:56:43 -07002563 else
2564 rcw += 2*disks;
2565 }
2566 }
Dan Williams45b42332007-07-09 11:56:43 -07002567 pr_debug("for sector %llu, rmw=%d rcw=%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002568 (unsigned long long)sh->sector, rmw, rcw);
2569 set_bit(STRIPE_HANDLE, &sh->state);
2570 if (rmw < rcw && rmw > 0)
2571 /* prefer read-modify-write, but need to get some data */
2572 for (i = disks; i--; ) {
2573 struct r5dev *dev = &sh->dev[i];
2574 if ((dev->towrite || i == sh->pd_idx) &&
2575 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002576 !(test_bit(R5_UPTODATE, &dev->flags) ||
2577 test_bit(R5_Wantcompute, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07002578 test_bit(R5_Insync, &dev->flags)) {
2579 if (
2580 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07002581 pr_debug("Read_old block "
Dan Williamsa4456852007-07-09 11:56:43 -07002582 "%d for r-m-w\n", i);
2583 set_bit(R5_LOCKED, &dev->flags);
2584 set_bit(R5_Wantread, &dev->flags);
2585 s->locked++;
2586 } else {
2587 set_bit(STRIPE_DELAYED, &sh->state);
2588 set_bit(STRIPE_HANDLE, &sh->state);
2589 }
2590 }
2591 }
2592 if (rcw <= rmw && rcw > 0)
2593 /* want reconstruct write, but need to get some data */
2594 for (i = disks; i--; ) {
2595 struct r5dev *dev = &sh->dev[i];
2596 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
2597 i != sh->pd_idx &&
2598 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002599 !(test_bit(R5_UPTODATE, &dev->flags) ||
2600 test_bit(R5_Wantcompute, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07002601 test_bit(R5_Insync, &dev->flags)) {
2602 if (
2603 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07002604 pr_debug("Read_old block "
Dan Williamsa4456852007-07-09 11:56:43 -07002605 "%d for Reconstruct\n", i);
2606 set_bit(R5_LOCKED, &dev->flags);
2607 set_bit(R5_Wantread, &dev->flags);
2608 s->locked++;
2609 } else {
2610 set_bit(STRIPE_DELAYED, &sh->state);
2611 set_bit(STRIPE_HANDLE, &sh->state);
2612 }
2613 }
2614 }
2615 /* now if nothing is locked, and if we have enough data,
2616 * we can start a write request
2617 */
Dan Williamsf38e1212007-01-02 13:52:30 -07002618 /* since handle_stripe can be called at any time we need to handle the
2619 * case where a compute block operation has been submitted and then a
Dan Williamsac6b53b2009-07-14 13:40:19 -07002620 * subsequent call wants to start a write request. raid_run_ops only
2621 * handles the case where compute block and reconstruct are requested
Dan Williamsf38e1212007-01-02 13:52:30 -07002622 * simultaneously. If this is not the case then new writes need to be
2623 * held off until the compute completes.
2624 */
Dan Williams976ea8d2008-06-28 08:32:03 +10002625 if ((s->req_compute || !test_bit(STRIPE_COMPUTE_RUN, &sh->state)) &&
2626 (s->locked == 0 && (rcw == 0 || rmw == 0) &&
2627 !test_bit(STRIPE_BIT_DELAY, &sh->state)))
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07002628 schedule_reconstruction(sh, s, rcw == 0, 0);
Dan Williamsa4456852007-07-09 11:56:43 -07002629}
2630
Dan Williams1fe797e2008-06-28 09:16:30 +10002631static void handle_stripe_dirtying6(raid5_conf_t *conf,
Dan Williamsa4456852007-07-09 11:56:43 -07002632 struct stripe_head *sh, struct stripe_head_state *s,
2633 struct r6_state *r6s, int disks)
2634{
Yuri Tikhonova9b39a72009-08-29 19:13:12 -07002635 int rcw = 0, pd_idx = sh->pd_idx, i;
NeilBrown34e04e82009-03-31 15:10:16 +11002636 int qd_idx = sh->qd_idx;
Yuri Tikhonova9b39a72009-08-29 19:13:12 -07002637
2638 set_bit(STRIPE_HANDLE, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07002639 for (i = disks; i--; ) {
2640 struct r5dev *dev = &sh->dev[i];
Yuri Tikhonova9b39a72009-08-29 19:13:12 -07002641 /* check if we haven't enough data */
2642 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
2643 i != pd_idx && i != qd_idx &&
2644 !test_bit(R5_LOCKED, &dev->flags) &&
2645 !(test_bit(R5_UPTODATE, &dev->flags) ||
2646 test_bit(R5_Wantcompute, &dev->flags))) {
2647 rcw++;
2648 if (!test_bit(R5_Insync, &dev->flags))
2649 continue; /* it's a failed drive */
2650
2651 if (
2652 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
2653 pr_debug("Read_old stripe %llu "
2654 "block %d for Reconstruct\n",
2655 (unsigned long long)sh->sector, i);
2656 set_bit(R5_LOCKED, &dev->flags);
2657 set_bit(R5_Wantread, &dev->flags);
2658 s->locked++;
2659 } else {
2660 pr_debug("Request delayed stripe %llu "
2661 "block %d for Reconstruct\n",
2662 (unsigned long long)sh->sector, i);
2663 set_bit(STRIPE_DELAYED, &sh->state);
2664 set_bit(STRIPE_HANDLE, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07002665 }
2666 }
2667 }
Dan Williamsa4456852007-07-09 11:56:43 -07002668 /* now if nothing is locked, and if we have enough data, we can start a
2669 * write request
2670 */
Yuri Tikhonova9b39a72009-08-29 19:13:12 -07002671 if ((s->req_compute || !test_bit(STRIPE_COMPUTE_RUN, &sh->state)) &&
2672 s->locked == 0 && rcw == 0 &&
Dan Williamsa4456852007-07-09 11:56:43 -07002673 !test_bit(STRIPE_BIT_DELAY, &sh->state)) {
Yuri Tikhonova9b39a72009-08-29 19:13:12 -07002674 schedule_reconstruction(sh, s, 1, 0);
Dan Williamsa4456852007-07-09 11:56:43 -07002675 }
2676}
2677
2678static void handle_parity_checks5(raid5_conf_t *conf, struct stripe_head *sh,
2679 struct stripe_head_state *s, int disks)
2680{
Dan Williamsecc65c92008-06-28 08:31:57 +10002681 struct r5dev *dev = NULL;
Dan Williamse89f8962007-01-02 13:52:31 -07002682
Dan Williamsbd2ab672008-04-10 21:29:27 -07002683 set_bit(STRIPE_HANDLE, &sh->state);
2684
Dan Williamsecc65c92008-06-28 08:31:57 +10002685 switch (sh->check_state) {
2686 case check_state_idle:
2687 /* start a new check operation if there are no failures */
Dan Williamsbd2ab672008-04-10 21:29:27 -07002688 if (s->failed == 0) {
Dan Williamsbd2ab672008-04-10 21:29:27 -07002689 BUG_ON(s->uptodate != disks);
Dan Williamsecc65c92008-06-28 08:31:57 +10002690 sh->check_state = check_state_run;
2691 set_bit(STRIPE_OP_CHECK, &s->ops_request);
Dan Williamsbd2ab672008-04-10 21:29:27 -07002692 clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
Dan Williamsbd2ab672008-04-10 21:29:27 -07002693 s->uptodate--;
Dan Williamsecc65c92008-06-28 08:31:57 +10002694 break;
Dan Williamsbd2ab672008-04-10 21:29:27 -07002695 }
Dan Williamsa4456852007-07-09 11:56:43 -07002696 dev = &sh->dev[s->failed_num];
Dan Williamsecc65c92008-06-28 08:31:57 +10002697 /* fall through */
2698 case check_state_compute_result:
2699 sh->check_state = check_state_idle;
2700 if (!dev)
2701 dev = &sh->dev[sh->pd_idx];
2702
2703 /* check that a write has not made the stripe insync */
2704 if (test_bit(STRIPE_INSYNC, &sh->state))
2705 break;
2706
2707 /* either failed parity check, or recovery is happening */
Dan Williamsa4456852007-07-09 11:56:43 -07002708 BUG_ON(!test_bit(R5_UPTODATE, &dev->flags));
2709 BUG_ON(s->uptodate != disks);
2710
2711 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsecc65c92008-06-28 08:31:57 +10002712 s->locked++;
Dan Williamsa4456852007-07-09 11:56:43 -07002713 set_bit(R5_Wantwrite, &dev->flags);
Dan Williams830ea012007-01-02 13:52:31 -07002714
Dan Williamsa4456852007-07-09 11:56:43 -07002715 clear_bit(STRIPE_DEGRADED, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07002716 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10002717 break;
2718 case check_state_run:
2719 break; /* we will be called again upon completion */
2720 case check_state_check_result:
2721 sh->check_state = check_state_idle;
2722
2723 /* if a failure occurred during the check operation, leave
2724 * STRIPE_INSYNC not set and let the stripe be handled again
2725 */
2726 if (s->failed)
2727 break;
2728
2729 /* handle a successful check operation, if parity is correct
2730 * we are done. Otherwise update the mismatch count and repair
2731 * parity if !MD_RECOVERY_CHECK
2732 */
Dan Williamsad283ea2009-08-29 19:09:26 -07002733 if ((sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) == 0)
Dan Williamsecc65c92008-06-28 08:31:57 +10002734 /* parity is correct (on disc,
2735 * not in buffer any more)
2736 */
2737 set_bit(STRIPE_INSYNC, &sh->state);
2738 else {
2739 conf->mddev->resync_mismatches += STRIPE_SECTORS;
2740 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
2741 /* don't try to repair!! */
2742 set_bit(STRIPE_INSYNC, &sh->state);
2743 else {
2744 sh->check_state = check_state_compute_run;
Dan Williams976ea8d2008-06-28 08:32:03 +10002745 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10002746 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
2747 set_bit(R5_Wantcompute,
2748 &sh->dev[sh->pd_idx].flags);
2749 sh->ops.target = sh->pd_idx;
Dan Williamsac6b53b2009-07-14 13:40:19 -07002750 sh->ops.target2 = -1;
Dan Williamsecc65c92008-06-28 08:31:57 +10002751 s->uptodate++;
2752 }
2753 }
2754 break;
2755 case check_state_compute_run:
2756 break;
2757 default:
2758 printk(KERN_ERR "%s: unknown check_state: %d sector: %llu\n",
2759 __func__, sh->check_state,
2760 (unsigned long long) sh->sector);
2761 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07002762 }
2763}
2764
2765
2766static void handle_parity_checks6(raid5_conf_t *conf, struct stripe_head *sh,
Dan Williams36d1c642009-07-14 11:48:22 -07002767 struct stripe_head_state *s,
2768 struct r6_state *r6s, int disks)
Dan Williamsa4456852007-07-09 11:56:43 -07002769{
Dan Williamsa4456852007-07-09 11:56:43 -07002770 int pd_idx = sh->pd_idx;
NeilBrown34e04e82009-03-31 15:10:16 +11002771 int qd_idx = sh->qd_idx;
Dan Williamsd82dfee2009-07-14 13:40:57 -07002772 struct r5dev *dev;
Dan Williamsa4456852007-07-09 11:56:43 -07002773
2774 set_bit(STRIPE_HANDLE, &sh->state);
2775
2776 BUG_ON(s->failed > 2);
Dan Williamsd82dfee2009-07-14 13:40:57 -07002777
Dan Williamsa4456852007-07-09 11:56:43 -07002778 /* Want to check and possibly repair P and Q.
2779 * However there could be one 'failed' device, in which
2780 * case we can only check one of them, possibly using the
2781 * other to generate missing data
2782 */
2783
Dan Williamsd82dfee2009-07-14 13:40:57 -07002784 switch (sh->check_state) {
2785 case check_state_idle:
2786 /* start a new check operation if there are < 2 failures */
Dan Williamsa4456852007-07-09 11:56:43 -07002787 if (s->failed == r6s->q_failed) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07002788 /* The only possible failed device holds Q, so it
Dan Williamsa4456852007-07-09 11:56:43 -07002789 * makes sense to check P (If anything else were failed,
2790 * we would have used P to recreate it).
2791 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07002792 sh->check_state = check_state_run;
Dan Williamsa4456852007-07-09 11:56:43 -07002793 }
2794 if (!r6s->q_failed && s->failed < 2) {
Dan Williamsd82dfee2009-07-14 13:40:57 -07002795 /* Q is not failed, and we didn't use it to generate
Dan Williamsa4456852007-07-09 11:56:43 -07002796 * anything, so it makes sense to check it
2797 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07002798 if (sh->check_state == check_state_run)
2799 sh->check_state = check_state_run_pq;
2800 else
2801 sh->check_state = check_state_run_q;
Dan Williamsa4456852007-07-09 11:56:43 -07002802 }
Dan Williams36d1c642009-07-14 11:48:22 -07002803
Dan Williamsd82dfee2009-07-14 13:40:57 -07002804 /* discard potentially stale zero_sum_result */
2805 sh->ops.zero_sum_result = 0;
Dan Williams36d1c642009-07-14 11:48:22 -07002806
Dan Williamsd82dfee2009-07-14 13:40:57 -07002807 if (sh->check_state == check_state_run) {
2808 /* async_xor_zero_sum destroys the contents of P */
2809 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
2810 s->uptodate--;
Dan Williamsa4456852007-07-09 11:56:43 -07002811 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07002812 if (sh->check_state >= check_state_run &&
2813 sh->check_state <= check_state_run_pq) {
2814 /* async_syndrome_zero_sum preserves P and Q, so
2815 * no need to mark them !uptodate here
2816 */
2817 set_bit(STRIPE_OP_CHECK, &s->ops_request);
2818 break;
2819 }
Dan Williams36d1c642009-07-14 11:48:22 -07002820
Dan Williamsd82dfee2009-07-14 13:40:57 -07002821 /* we have 2-disk failure */
2822 BUG_ON(s->failed != 2);
2823 /* fall through */
2824 case check_state_compute_result:
2825 sh->check_state = check_state_idle;
Dan Williams36d1c642009-07-14 11:48:22 -07002826
Dan Williamsd82dfee2009-07-14 13:40:57 -07002827 /* check that a write has not made the stripe insync */
2828 if (test_bit(STRIPE_INSYNC, &sh->state))
2829 break;
Dan Williamsa4456852007-07-09 11:56:43 -07002830
2831 /* now write out any block on a failed drive,
Dan Williamsd82dfee2009-07-14 13:40:57 -07002832 * or P or Q if they were recomputed
Dan Williamsa4456852007-07-09 11:56:43 -07002833 */
Dan Williamsd82dfee2009-07-14 13:40:57 -07002834 BUG_ON(s->uptodate < disks - 1); /* We don't need Q to recover */
Dan Williamsa4456852007-07-09 11:56:43 -07002835 if (s->failed == 2) {
2836 dev = &sh->dev[r6s->failed_num[1]];
2837 s->locked++;
2838 set_bit(R5_LOCKED, &dev->flags);
2839 set_bit(R5_Wantwrite, &dev->flags);
2840 }
2841 if (s->failed >= 1) {
2842 dev = &sh->dev[r6s->failed_num[0]];
2843 s->locked++;
2844 set_bit(R5_LOCKED, &dev->flags);
2845 set_bit(R5_Wantwrite, &dev->flags);
2846 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07002847 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
Dan Williamsa4456852007-07-09 11:56:43 -07002848 dev = &sh->dev[pd_idx];
2849 s->locked++;
2850 set_bit(R5_LOCKED, &dev->flags);
2851 set_bit(R5_Wantwrite, &dev->flags);
2852 }
Dan Williamsd82dfee2009-07-14 13:40:57 -07002853 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
Dan Williamsa4456852007-07-09 11:56:43 -07002854 dev = &sh->dev[qd_idx];
2855 s->locked++;
2856 set_bit(R5_LOCKED, &dev->flags);
2857 set_bit(R5_Wantwrite, &dev->flags);
2858 }
2859 clear_bit(STRIPE_DEGRADED, &sh->state);
2860
2861 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsd82dfee2009-07-14 13:40:57 -07002862 break;
2863 case check_state_run:
2864 case check_state_run_q:
2865 case check_state_run_pq:
2866 break; /* we will be called again upon completion */
2867 case check_state_check_result:
2868 sh->check_state = check_state_idle;
2869
2870 /* handle a successful check operation, if parity is correct
2871 * we are done. Otherwise update the mismatch count and repair
2872 * parity if !MD_RECOVERY_CHECK
2873 */
2874 if (sh->ops.zero_sum_result == 0) {
2875 /* both parities are correct */
2876 if (!s->failed)
2877 set_bit(STRIPE_INSYNC, &sh->state);
2878 else {
2879 /* in contrast to the raid5 case we can validate
2880 * parity, but still have a failure to write
2881 * back
2882 */
2883 sh->check_state = check_state_compute_result;
2884 /* Returning at this point means that we may go
2885 * off and bring p and/or q uptodate again so
2886 * we make sure to check zero_sum_result again
2887 * to verify if p or q need writeback
2888 */
2889 }
2890 } else {
2891 conf->mddev->resync_mismatches += STRIPE_SECTORS;
2892 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
2893 /* don't try to repair!! */
2894 set_bit(STRIPE_INSYNC, &sh->state);
2895 else {
2896 int *target = &sh->ops.target;
2897
2898 sh->ops.target = -1;
2899 sh->ops.target2 = -1;
2900 sh->check_state = check_state_compute_run;
2901 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
2902 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
2903 if (sh->ops.zero_sum_result & SUM_CHECK_P_RESULT) {
2904 set_bit(R5_Wantcompute,
2905 &sh->dev[pd_idx].flags);
2906 *target = pd_idx;
2907 target = &sh->ops.target2;
2908 s->uptodate++;
2909 }
2910 if (sh->ops.zero_sum_result & SUM_CHECK_Q_RESULT) {
2911 set_bit(R5_Wantcompute,
2912 &sh->dev[qd_idx].flags);
2913 *target = qd_idx;
2914 s->uptodate++;
2915 }
2916 }
2917 }
2918 break;
2919 case check_state_compute_run:
2920 break;
2921 default:
2922 printk(KERN_ERR "%s: unknown check_state: %d sector: %llu\n",
2923 __func__, sh->check_state,
2924 (unsigned long long) sh->sector);
2925 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07002926 }
2927}
2928
2929static void handle_stripe_expansion(raid5_conf_t *conf, struct stripe_head *sh,
2930 struct r6_state *r6s)
2931{
2932 int i;
2933
2934 /* We have read all the blocks in this stripe and now we need to
2935 * copy some of them into a target stripe for expand.
2936 */
Dan Williamsf0a50d32007-01-02 13:52:31 -07002937 struct dma_async_tx_descriptor *tx = NULL;
Dan Williamsa4456852007-07-09 11:56:43 -07002938 clear_bit(STRIPE_EXPAND_SOURCE, &sh->state);
2939 for (i = 0; i < sh->disks; i++)
NeilBrown34e04e82009-03-31 15:10:16 +11002940 if (i != sh->pd_idx && i != sh->qd_idx) {
NeilBrown911d4ee2009-03-31 14:39:38 +11002941 int dd_idx, j;
Dan Williamsa4456852007-07-09 11:56:43 -07002942 struct stripe_head *sh2;
Dan Williamsa08abd82009-06-03 11:43:59 -07002943 struct async_submit_ctl submit;
Dan Williamsa4456852007-07-09 11:56:43 -07002944
NeilBrown784052e2009-03-31 15:19:07 +11002945 sector_t bn = compute_blocknr(sh, i, 1);
NeilBrown911d4ee2009-03-31 14:39:38 +11002946 sector_t s = raid5_compute_sector(conf, bn, 0,
2947 &dd_idx, NULL);
NeilBrowna8c906c2009-06-09 14:39:59 +10002948 sh2 = get_active_stripe(conf, s, 0, 1, 1);
Dan Williamsa4456852007-07-09 11:56:43 -07002949 if (sh2 == NULL)
2950 /* so far only the early blocks of this stripe
2951 * have been requested. When later blocks
2952 * get requested, we will try again
2953 */
2954 continue;
2955 if (!test_bit(STRIPE_EXPANDING, &sh2->state) ||
2956 test_bit(R5_Expanded, &sh2->dev[dd_idx].flags)) {
2957 /* must have already done this block */
2958 release_stripe(sh2);
2959 continue;
2960 }
Dan Williamsf0a50d32007-01-02 13:52:31 -07002961
2962 /* place all the copies on one channel */
Dan Williamsa08abd82009-06-03 11:43:59 -07002963 init_async_submit(&submit, 0, tx, NULL, NULL, NULL);
Dan Williamsf0a50d32007-01-02 13:52:31 -07002964 tx = async_memcpy(sh2->dev[dd_idx].page,
Dan Williams88ba2aa2009-04-09 16:16:18 -07002965 sh->dev[i].page, 0, 0, STRIPE_SIZE,
Dan Williamsa08abd82009-06-03 11:43:59 -07002966 &submit);
Dan Williamsf0a50d32007-01-02 13:52:31 -07002967
Dan Williamsa4456852007-07-09 11:56:43 -07002968 set_bit(R5_Expanded, &sh2->dev[dd_idx].flags);
2969 set_bit(R5_UPTODATE, &sh2->dev[dd_idx].flags);
2970 for (j = 0; j < conf->raid_disks; j++)
2971 if (j != sh2->pd_idx &&
NeilBrownd0dabf72009-03-31 14:39:38 +11002972 (!r6s || j != sh2->qd_idx) &&
Dan Williamsa4456852007-07-09 11:56:43 -07002973 !test_bit(R5_Expanded, &sh2->dev[j].flags))
2974 break;
2975 if (j == conf->raid_disks) {
2976 set_bit(STRIPE_EXPAND_READY, &sh2->state);
2977 set_bit(STRIPE_HANDLE, &sh2->state);
2978 }
2979 release_stripe(sh2);
Dan Williamsf0a50d32007-01-02 13:52:31 -07002980
Dan Williamsa4456852007-07-09 11:56:43 -07002981 }
NeilBrowna2e08552007-09-11 15:23:36 -07002982 /* done submitting copies, wait for them to complete */
2983 if (tx) {
2984 async_tx_ack(tx);
2985 dma_wait_for_async_tx(tx);
2986 }
Dan Williamsa4456852007-07-09 11:56:43 -07002987}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988
Dan Williams6bfe0b42008-04-30 00:52:32 -07002989
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990/*
2991 * handle_stripe - do things to a stripe.
2992 *
2993 * We lock the stripe and then examine the state of various bits
2994 * to see what needs to be done.
2995 * Possible results:
2996 * return some read request which now have data
2997 * return some write requests which are safely on disc
2998 * schedule a read on some buffers
2999 * schedule a write of some buffers
3000 * return confirmation of parity correctness
3001 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 * buffers are taken off read_list or write_list, and bh_cache buffers
3003 * get BH_Lock set before the stripe lock is released.
3004 *
3005 */
Dan Williamsa4456852007-07-09 11:56:43 -07003006
NeilBrown14425772009-10-16 15:55:25 +11003007static void handle_stripe5(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008{
3009 raid5_conf_t *conf = sh->raid_conf;
Dan Williamsa4456852007-07-09 11:56:43 -07003010 int disks = sh->disks, i;
3011 struct bio *return_bi = NULL;
3012 struct stripe_head_state s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 struct r5dev *dev;
Dan Williams6bfe0b42008-04-30 00:52:32 -07003014 mdk_rdev_t *blocked_rdev = NULL;
Dan Williamse0a115e2008-06-05 22:45:52 -07003015 int prexor;
NeilBrown729a1862009-12-14 12:49:50 +11003016 int dec_preread_active = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017
Dan Williamsa4456852007-07-09 11:56:43 -07003018 memset(&s, 0, sizeof(s));
Dan Williams600aa102008-06-28 08:32:05 +10003019 pr_debug("handling stripe %llu, state=%#lx cnt=%d, pd_idx=%d check:%d "
3020 "reconstruct:%d\n", (unsigned long long)sh->sector, sh->state,
3021 atomic_read(&sh->count), sh->pd_idx, sh->check_state,
3022 sh->reconstruct_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023
3024 spin_lock(&sh->lock);
3025 clear_bit(STRIPE_HANDLE, &sh->state);
3026 clear_bit(STRIPE_DELAYED, &sh->state);
3027
Dan Williamsa4456852007-07-09 11:56:43 -07003028 s.syncing = test_bit(STRIPE_SYNCING, &sh->state);
3029 s.expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state);
3030 s.expanded = test_bit(STRIPE_EXPAND_READY, &sh->state);
Dan Williams83de75c2008-06-28 08:31:58 +10003031
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 /* Now to look around and see what can be done */
NeilBrown9910f162006-01-06 00:20:24 -08003033 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 for (i=disks; i--; ) {
3035 mdk_rdev_t *rdev;
NeilBrowna9f326e2009-09-23 18:06:41 +10003036
3037 dev = &sh->dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038
Dan Williamsb5e98d62007-01-02 13:52:31 -07003039 pr_debug("check %d: state 0x%lx toread %p read %p write %p "
3040 "written %p\n", i, dev->flags, dev->toread, dev->read,
3041 dev->towrite, dev->written);
3042
3043 /* maybe we can request a biofill operation
3044 *
3045 * new wantfill requests are only permitted while
Dan Williams83de75c2008-06-28 08:31:58 +10003046 * ops_complete_biofill is guaranteed to be inactive
Dan Williamsb5e98d62007-01-02 13:52:31 -07003047 */
3048 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread &&
Dan Williams83de75c2008-06-28 08:31:58 +10003049 !test_bit(STRIPE_BIOFILL_RUN, &sh->state))
Dan Williamsb5e98d62007-01-02 13:52:31 -07003050 set_bit(R5_Wantfill, &dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051
3052 /* now count some things */
Dan Williamsa4456852007-07-09 11:56:43 -07003053 if (test_bit(R5_LOCKED, &dev->flags)) s.locked++;
3054 if (test_bit(R5_UPTODATE, &dev->flags)) s.uptodate++;
Dan Williamsf38e1212007-01-02 13:52:30 -07003055 if (test_bit(R5_Wantcompute, &dev->flags)) s.compute++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056
Dan Williamsb5e98d62007-01-02 13:52:31 -07003057 if (test_bit(R5_Wantfill, &dev->flags))
3058 s.to_fill++;
3059 else if (dev->toread)
Dan Williamsa4456852007-07-09 11:56:43 -07003060 s.to_read++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 if (dev->towrite) {
Dan Williamsa4456852007-07-09 11:56:43 -07003062 s.to_write++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 if (!test_bit(R5_OVERWRITE, &dev->flags))
Dan Williamsa4456852007-07-09 11:56:43 -07003064 s.non_overwrite++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 }
Dan Williamsa4456852007-07-09 11:56:43 -07003066 if (dev->written)
3067 s.written++;
NeilBrown9910f162006-01-06 00:20:24 -08003068 rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownac4090d2008-08-05 15:54:13 +10003069 if (blocked_rdev == NULL &&
3070 rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
Dan Williams6bfe0b42008-04-30 00:52:32 -07003071 blocked_rdev = rdev;
3072 atomic_inc(&rdev->nr_pending);
Dan Williams6bfe0b42008-04-30 00:52:32 -07003073 }
NeilBrown415e72d2010-06-17 17:25:21 +10003074 clear_bit(R5_Insync, &dev->flags);
3075 if (!rdev)
3076 /* Not in-sync */;
3077 else if (test_bit(In_sync, &rdev->flags))
3078 set_bit(R5_Insync, &dev->flags);
3079 else {
3080 /* could be in-sync depending on recovery/reshape status */
3081 if (sh->sector + STRIPE_SECTORS <= rdev->recovery_offset)
3082 set_bit(R5_Insync, &dev->flags);
3083 }
3084 if (!test_bit(R5_Insync, &dev->flags)) {
NeilBrown14f8d262006-01-06 00:20:14 -08003085 /* The ReadError flag will just be confusing now */
NeilBrown4e5314b2005-11-08 21:39:22 -08003086 clear_bit(R5_ReadError, &dev->flags);
3087 clear_bit(R5_ReWrite, &dev->flags);
3088 }
NeilBrown415e72d2010-06-17 17:25:21 +10003089 if (test_bit(R5_ReadError, &dev->flags))
3090 clear_bit(R5_Insync, &dev->flags);
3091 if (!test_bit(R5_Insync, &dev->flags)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003092 s.failed++;
3093 s.failed_num = i;
NeilBrown415e72d2010-06-17 17:25:21 +10003094 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 }
NeilBrown9910f162006-01-06 00:20:24 -08003096 rcu_read_unlock();
Dan Williamsb5e98d62007-01-02 13:52:31 -07003097
Dan Williams6bfe0b42008-04-30 00:52:32 -07003098 if (unlikely(blocked_rdev)) {
NeilBrownac4090d2008-08-05 15:54:13 +10003099 if (s.syncing || s.expanding || s.expanded ||
3100 s.to_write || s.written) {
3101 set_bit(STRIPE_HANDLE, &sh->state);
3102 goto unlock;
3103 }
3104 /* There is nothing for the blocked_rdev to block */
3105 rdev_dec_pending(blocked_rdev, conf->mddev);
3106 blocked_rdev = NULL;
Dan Williams6bfe0b42008-04-30 00:52:32 -07003107 }
3108
Dan Williams83de75c2008-06-28 08:31:58 +10003109 if (s.to_fill && !test_bit(STRIPE_BIOFILL_RUN, &sh->state)) {
3110 set_bit(STRIPE_OP_BIOFILL, &s.ops_request);
3111 set_bit(STRIPE_BIOFILL_RUN, &sh->state);
3112 }
Dan Williamsb5e98d62007-01-02 13:52:31 -07003113
Dan Williams45b42332007-07-09 11:56:43 -07003114 pr_debug("locked=%d uptodate=%d to_read=%d"
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115 " to_write=%d failed=%d failed_num=%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07003116 s.locked, s.uptodate, s.to_read, s.to_write,
3117 s.failed, s.failed_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 /* check if the array has lost two devices and, if so, some requests might
3119 * need to be failed
3120 */
Dan Williamsa4456852007-07-09 11:56:43 -07003121 if (s.failed > 1 && s.to_read+s.to_write+s.written)
Dan Williams1fe797e2008-06-28 09:16:30 +10003122 handle_failed_stripe(conf, sh, &s, disks, &return_bi);
Dan Williamsa4456852007-07-09 11:56:43 -07003123 if (s.failed > 1 && s.syncing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 md_done_sync(conf->mddev, STRIPE_SECTORS,0);
3125 clear_bit(STRIPE_SYNCING, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07003126 s.syncing = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 }
3128
3129 /* might be able to return some write requests if the parity block
3130 * is safe, or on a failed drive
3131 */
3132 dev = &sh->dev[sh->pd_idx];
Dan Williamsa4456852007-07-09 11:56:43 -07003133 if ( s.written &&
3134 ((test_bit(R5_Insync, &dev->flags) &&
3135 !test_bit(R5_LOCKED, &dev->flags) &&
3136 test_bit(R5_UPTODATE, &dev->flags)) ||
3137 (s.failed == 1 && s.failed_num == sh->pd_idx)))
Dan Williams1fe797e2008-06-28 09:16:30 +10003138 handle_stripe_clean_event(conf, sh, disks, &return_bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139
3140 /* Now we might consider reading some blocks, either to check/generate
3141 * parity, or to satisfy requests
3142 * or to load a block that is being partially written.
3143 */
Dan Williamsa4456852007-07-09 11:56:43 -07003144 if (s.to_read || s.non_overwrite ||
Dan Williams976ea8d2008-06-28 08:32:03 +10003145 (s.syncing && (s.uptodate + s.compute < disks)) || s.expanding)
Dan Williams1fe797e2008-06-28 09:16:30 +10003146 handle_stripe_fill5(sh, &s, disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147
Dan Williamse33129d2007-01-02 13:52:30 -07003148 /* Now we check to see if any write operations have recently
3149 * completed
3150 */
Dan Williamse0a115e2008-06-05 22:45:52 -07003151 prexor = 0;
Dan Williamsd8ee0722008-06-28 08:32:06 +10003152 if (sh->reconstruct_state == reconstruct_state_prexor_drain_result)
Dan Williamse0a115e2008-06-05 22:45:52 -07003153 prexor = 1;
Dan Williamsd8ee0722008-06-28 08:32:06 +10003154 if (sh->reconstruct_state == reconstruct_state_drain_result ||
3155 sh->reconstruct_state == reconstruct_state_prexor_drain_result) {
Dan Williams600aa102008-06-28 08:32:05 +10003156 sh->reconstruct_state = reconstruct_state_idle;
Dan Williamse33129d2007-01-02 13:52:30 -07003157
3158 /* All the 'written' buffers and the parity block are ready to
3159 * be written back to disk
3160 */
3161 BUG_ON(!test_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags));
3162 for (i = disks; i--; ) {
3163 dev = &sh->dev[i];
3164 if (test_bit(R5_LOCKED, &dev->flags) &&
3165 (i == sh->pd_idx || dev->written)) {
3166 pr_debug("Writing block %d\n", i);
3167 set_bit(R5_Wantwrite, &dev->flags);
Dan Williamse0a115e2008-06-05 22:45:52 -07003168 if (prexor)
3169 continue;
Dan Williamse33129d2007-01-02 13:52:30 -07003170 if (!test_bit(R5_Insync, &dev->flags) ||
3171 (i == sh->pd_idx && s.failed == 0))
3172 set_bit(STRIPE_INSYNC, &sh->state);
3173 }
3174 }
NeilBrown729a1862009-12-14 12:49:50 +11003175 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3176 dec_preread_active = 1;
Dan Williamse33129d2007-01-02 13:52:30 -07003177 }
3178
3179 /* Now to consider new write requests and what else, if anything
3180 * should be read. We do not handle new writes when:
3181 * 1/ A 'write' operation (copy+xor) is already in flight.
3182 * 2/ A 'check' operation is in flight, as it may clobber the parity
3183 * block.
3184 */
Dan Williams600aa102008-06-28 08:32:05 +10003185 if (s.to_write && !sh->reconstruct_state && !sh->check_state)
Dan Williams1fe797e2008-06-28 09:16:30 +10003186 handle_stripe_dirtying5(conf, sh, &s, disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187
3188 /* maybe we need to check and possibly fix the parity for this stripe
Dan Williamse89f8962007-01-02 13:52:31 -07003189 * Any reads will already have been scheduled, so we just see if enough
3190 * data is available. The parity check is held off while parity
3191 * dependent operations are in flight.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 */
Dan Williamsecc65c92008-06-28 08:31:57 +10003193 if (sh->check_state ||
3194 (s.syncing && s.locked == 0 &&
Dan Williams976ea8d2008-06-28 08:32:03 +10003195 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
Dan Williamsecc65c92008-06-28 08:31:57 +10003196 !test_bit(STRIPE_INSYNC, &sh->state)))
Dan Williamsa4456852007-07-09 11:56:43 -07003197 handle_parity_checks5(conf, sh, &s, disks);
Dan Williamse89f8962007-01-02 13:52:31 -07003198
Dan Williamsa4456852007-07-09 11:56:43 -07003199 if (s.syncing && s.locked == 0 && test_bit(STRIPE_INSYNC, &sh->state)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 md_done_sync(conf->mddev, STRIPE_SECTORS,1);
3201 clear_bit(STRIPE_SYNCING, &sh->state);
3202 }
NeilBrown4e5314b2005-11-08 21:39:22 -08003203
3204 /* If the failed drive is just a ReadError, then we might need to progress
3205 * the repair/check process
3206 */
Dan Williamsa4456852007-07-09 11:56:43 -07003207 if (s.failed == 1 && !conf->mddev->ro &&
3208 test_bit(R5_ReadError, &sh->dev[s.failed_num].flags)
3209 && !test_bit(R5_LOCKED, &sh->dev[s.failed_num].flags)
3210 && test_bit(R5_UPTODATE, &sh->dev[s.failed_num].flags)
NeilBrown4e5314b2005-11-08 21:39:22 -08003211 ) {
Dan Williamsa4456852007-07-09 11:56:43 -07003212 dev = &sh->dev[s.failed_num];
NeilBrown4e5314b2005-11-08 21:39:22 -08003213 if (!test_bit(R5_ReWrite, &dev->flags)) {
3214 set_bit(R5_Wantwrite, &dev->flags);
3215 set_bit(R5_ReWrite, &dev->flags);
3216 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsa4456852007-07-09 11:56:43 -07003217 s.locked++;
NeilBrown4e5314b2005-11-08 21:39:22 -08003218 } else {
3219 /* let's read it back */
3220 set_bit(R5_Wantread, &dev->flags);
3221 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsa4456852007-07-09 11:56:43 -07003222 s.locked++;
NeilBrown4e5314b2005-11-08 21:39:22 -08003223 }
3224 }
3225
Dan Williams600aa102008-06-28 08:32:05 +10003226 /* Finish reconstruct operations initiated by the expansion process */
3227 if (sh->reconstruct_state == reconstruct_state_result) {
NeilBrownab69ae12009-03-31 15:26:47 +11003228 struct stripe_head *sh2
NeilBrowna8c906c2009-06-09 14:39:59 +10003229 = get_active_stripe(conf, sh->sector, 1, 1, 1);
NeilBrownab69ae12009-03-31 15:26:47 +11003230 if (sh2 && test_bit(STRIPE_EXPAND_SOURCE, &sh2->state)) {
3231 /* sh cannot be written until sh2 has been read.
3232 * so arrange for sh to be delayed a little
3233 */
3234 set_bit(STRIPE_DELAYED, &sh->state);
3235 set_bit(STRIPE_HANDLE, &sh->state);
3236 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE,
3237 &sh2->state))
3238 atomic_inc(&conf->preread_active_stripes);
3239 release_stripe(sh2);
3240 goto unlock;
3241 }
3242 if (sh2)
3243 release_stripe(sh2);
3244
Dan Williams600aa102008-06-28 08:32:05 +10003245 sh->reconstruct_state = reconstruct_state_idle;
Dan Williamsf0a50d32007-01-02 13:52:31 -07003246 clear_bit(STRIPE_EXPANDING, &sh->state);
Dan Williams23397882008-07-23 20:05:34 -07003247 for (i = conf->raid_disks; i--; ) {
Dan Williamsf0a50d32007-01-02 13:52:31 -07003248 set_bit(R5_Wantwrite, &sh->dev[i].flags);
Dan Williams23397882008-07-23 20:05:34 -07003249 set_bit(R5_LOCKED, &sh->dev[i].flags);
Neil Brownefe31142008-06-28 08:31:14 +10003250 s.locked++;
Dan Williams23397882008-07-23 20:05:34 -07003251 }
Dan Williamsf0a50d32007-01-02 13:52:31 -07003252 }
3253
3254 if (s.expanded && test_bit(STRIPE_EXPANDING, &sh->state) &&
Dan Williams600aa102008-06-28 08:32:05 +10003255 !sh->reconstruct_state) {
NeilBrownccfcc3c2006-03-27 01:18:09 -08003256 /* Need to write out all blocks after computing parity */
3257 sh->disks = conf->raid_disks;
NeilBrown911d4ee2009-03-31 14:39:38 +11003258 stripe_set_idx(sh->sector, conf, 0, sh);
Yuri Tikhonovc0f7bdd2009-08-29 19:13:12 -07003259 schedule_reconstruction(sh, &s, 1, 1);
Dan Williams600aa102008-06-28 08:32:05 +10003260 } else if (s.expanded && !sh->reconstruct_state && s.locked == 0) {
NeilBrownccfcc3c2006-03-27 01:18:09 -08003261 clear_bit(STRIPE_EXPAND_READY, &sh->state);
NeilBrownf6705572006-03-27 01:18:11 -08003262 atomic_dec(&conf->reshape_stripes);
NeilBrownccfcc3c2006-03-27 01:18:09 -08003263 wake_up(&conf->wait_for_overlap);
3264 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
3265 }
3266
Dan Williams0f94e872008-01-08 15:32:53 -08003267 if (s.expanding && s.locked == 0 &&
Dan Williams976ea8d2008-06-28 08:32:03 +10003268 !test_bit(STRIPE_COMPUTE_RUN, &sh->state))
Dan Williamsa4456852007-07-09 11:56:43 -07003269 handle_stripe_expansion(conf, sh, NULL);
NeilBrownccfcc3c2006-03-27 01:18:09 -08003270
Dan Williams6bfe0b42008-04-30 00:52:32 -07003271 unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 spin_unlock(&sh->lock);
3273
Dan Williams6bfe0b42008-04-30 00:52:32 -07003274 /* wait for this device to become unblocked */
3275 if (unlikely(blocked_rdev))
3276 md_wait_for_blocked_rdev(blocked_rdev, conf->mddev);
3277
Dan Williams600aa102008-06-28 08:32:05 +10003278 if (s.ops_request)
Dan Williamsac6b53b2009-07-14 13:40:19 -07003279 raid_run_ops(sh, s.ops_request);
Dan Williamsd84e0f12007-01-02 13:52:30 -07003280
Dan Williamsc4e5ac02008-06-28 08:31:53 +10003281 ops_run_io(sh, &s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282
NeilBrown729a1862009-12-14 12:49:50 +11003283 if (dec_preread_active) {
3284 /* We delay this until after ops_run_io so that if make_request
3285 * is waiting on a barrier, it won't continue until the writes
3286 * have actually been submitted.
3287 */
3288 atomic_dec(&conf->preread_active_stripes);
3289 if (atomic_read(&conf->preread_active_stripes) <
3290 IO_THRESHOLD)
3291 md_wakeup_thread(conf->mddev->thread);
3292 }
Dan Williamsa4456852007-07-09 11:56:43 -07003293 return_io(return_bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294}
3295
NeilBrown14425772009-10-16 15:55:25 +11003296static void handle_stripe6(struct stripe_head *sh)
NeilBrown16a53ec2006-06-26 00:27:38 -07003297{
NeilBrownbff61972009-03-31 14:33:13 +11003298 raid5_conf_t *conf = sh->raid_conf;
NeilBrownf4168852007-02-28 20:11:53 -08003299 int disks = sh->disks;
Dan Williamsa4456852007-07-09 11:56:43 -07003300 struct bio *return_bi = NULL;
NeilBrown34e04e82009-03-31 15:10:16 +11003301 int i, pd_idx = sh->pd_idx, qd_idx = sh->qd_idx;
Dan Williamsa4456852007-07-09 11:56:43 -07003302 struct stripe_head_state s;
3303 struct r6_state r6s;
NeilBrown16a53ec2006-06-26 00:27:38 -07003304 struct r5dev *dev, *pdev, *qdev;
Dan Williams6bfe0b42008-04-30 00:52:32 -07003305 mdk_rdev_t *blocked_rdev = NULL;
NeilBrown729a1862009-12-14 12:49:50 +11003306 int dec_preread_active = 0;
NeilBrown16a53ec2006-06-26 00:27:38 -07003307
Dan Williams45b42332007-07-09 11:56:43 -07003308 pr_debug("handling stripe %llu, state=%#lx cnt=%d, "
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003309 "pd_idx=%d, qd_idx=%d\n, check:%d, reconstruct:%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07003310 (unsigned long long)sh->sector, sh->state,
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003311 atomic_read(&sh->count), pd_idx, qd_idx,
3312 sh->check_state, sh->reconstruct_state);
Dan Williamsa4456852007-07-09 11:56:43 -07003313 memset(&s, 0, sizeof(s));
NeilBrown16a53ec2006-06-26 00:27:38 -07003314
3315 spin_lock(&sh->lock);
3316 clear_bit(STRIPE_HANDLE, &sh->state);
3317 clear_bit(STRIPE_DELAYED, &sh->state);
3318
Dan Williamsa4456852007-07-09 11:56:43 -07003319 s.syncing = test_bit(STRIPE_SYNCING, &sh->state);
3320 s.expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state);
3321 s.expanded = test_bit(STRIPE_EXPAND_READY, &sh->state);
NeilBrown16a53ec2006-06-26 00:27:38 -07003322 /* Now to look around and see what can be done */
3323
3324 rcu_read_lock();
3325 for (i=disks; i--; ) {
3326 mdk_rdev_t *rdev;
3327 dev = &sh->dev[i];
NeilBrown16a53ec2006-06-26 00:27:38 -07003328
Dan Williams45b42332007-07-09 11:56:43 -07003329 pr_debug("check %d: state 0x%lx read %p write %p written %p\n",
NeilBrown16a53ec2006-06-26 00:27:38 -07003330 i, dev->flags, dev->toread, dev->towrite, dev->written);
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003331 /* maybe we can reply to a read
3332 *
3333 * new wantfill requests are only permitted while
3334 * ops_complete_biofill is guaranteed to be inactive
3335 */
3336 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread &&
3337 !test_bit(STRIPE_BIOFILL_RUN, &sh->state))
3338 set_bit(R5_Wantfill, &dev->flags);
NeilBrown16a53ec2006-06-26 00:27:38 -07003339
3340 /* now count some things */
Dan Williamsa4456852007-07-09 11:56:43 -07003341 if (test_bit(R5_LOCKED, &dev->flags)) s.locked++;
3342 if (test_bit(R5_UPTODATE, &dev->flags)) s.uptodate++;
Dan Williams2d6e4ec2009-09-16 12:11:54 -07003343 if (test_bit(R5_Wantcompute, &dev->flags)) {
3344 s.compute++;
3345 BUG_ON(s.compute > 2);
3346 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003347
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003348 if (test_bit(R5_Wantfill, &dev->flags)) {
3349 s.to_fill++;
3350 } else if (dev->toread)
Dan Williamsa4456852007-07-09 11:56:43 -07003351 s.to_read++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003352 if (dev->towrite) {
Dan Williamsa4456852007-07-09 11:56:43 -07003353 s.to_write++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003354 if (!test_bit(R5_OVERWRITE, &dev->flags))
Dan Williamsa4456852007-07-09 11:56:43 -07003355 s.non_overwrite++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003356 }
Dan Williamsa4456852007-07-09 11:56:43 -07003357 if (dev->written)
3358 s.written++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003359 rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownac4090d2008-08-05 15:54:13 +10003360 if (blocked_rdev == NULL &&
3361 rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
Dan Williams6bfe0b42008-04-30 00:52:32 -07003362 blocked_rdev = rdev;
3363 atomic_inc(&rdev->nr_pending);
Dan Williams6bfe0b42008-04-30 00:52:32 -07003364 }
NeilBrown415e72d2010-06-17 17:25:21 +10003365 clear_bit(R5_Insync, &dev->flags);
3366 if (!rdev)
3367 /* Not in-sync */;
3368 else if (test_bit(In_sync, &rdev->flags))
3369 set_bit(R5_Insync, &dev->flags);
3370 else {
3371 /* in sync if before recovery_offset */
3372 if (sh->sector + STRIPE_SECTORS <= rdev->recovery_offset)
3373 set_bit(R5_Insync, &dev->flags);
3374 }
3375 if (!test_bit(R5_Insync, &dev->flags)) {
NeilBrown16a53ec2006-06-26 00:27:38 -07003376 /* The ReadError flag will just be confusing now */
3377 clear_bit(R5_ReadError, &dev->flags);
3378 clear_bit(R5_ReWrite, &dev->flags);
3379 }
NeilBrown415e72d2010-06-17 17:25:21 +10003380 if (test_bit(R5_ReadError, &dev->flags))
3381 clear_bit(R5_Insync, &dev->flags);
3382 if (!test_bit(R5_Insync, &dev->flags)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003383 if (s.failed < 2)
3384 r6s.failed_num[s.failed] = i;
3385 s.failed++;
NeilBrown415e72d2010-06-17 17:25:21 +10003386 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003387 }
3388 rcu_read_unlock();
Dan Williams6bfe0b42008-04-30 00:52:32 -07003389
3390 if (unlikely(blocked_rdev)) {
NeilBrownac4090d2008-08-05 15:54:13 +10003391 if (s.syncing || s.expanding || s.expanded ||
3392 s.to_write || s.written) {
3393 set_bit(STRIPE_HANDLE, &sh->state);
3394 goto unlock;
3395 }
3396 /* There is nothing for the blocked_rdev to block */
3397 rdev_dec_pending(blocked_rdev, conf->mddev);
3398 blocked_rdev = NULL;
Dan Williams6bfe0b42008-04-30 00:52:32 -07003399 }
NeilBrownac4090d2008-08-05 15:54:13 +10003400
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003401 if (s.to_fill && !test_bit(STRIPE_BIOFILL_RUN, &sh->state)) {
3402 set_bit(STRIPE_OP_BIOFILL, &s.ops_request);
3403 set_bit(STRIPE_BIOFILL_RUN, &sh->state);
3404 }
3405
Dan Williams45b42332007-07-09 11:56:43 -07003406 pr_debug("locked=%d uptodate=%d to_read=%d"
NeilBrown16a53ec2006-06-26 00:27:38 -07003407 " to_write=%d failed=%d failed_num=%d,%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07003408 s.locked, s.uptodate, s.to_read, s.to_write, s.failed,
3409 r6s.failed_num[0], r6s.failed_num[1]);
3410 /* check if the array has lost >2 devices and, if so, some requests
3411 * might need to be failed
NeilBrown16a53ec2006-06-26 00:27:38 -07003412 */
Dan Williamsa4456852007-07-09 11:56:43 -07003413 if (s.failed > 2 && s.to_read+s.to_write+s.written)
Dan Williams1fe797e2008-06-28 09:16:30 +10003414 handle_failed_stripe(conf, sh, &s, disks, &return_bi);
Dan Williamsa4456852007-07-09 11:56:43 -07003415 if (s.failed > 2 && s.syncing) {
NeilBrown16a53ec2006-06-26 00:27:38 -07003416 md_done_sync(conf->mddev, STRIPE_SECTORS,0);
3417 clear_bit(STRIPE_SYNCING, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07003418 s.syncing = 0;
NeilBrown16a53ec2006-06-26 00:27:38 -07003419 }
3420
3421 /*
3422 * might be able to return some write requests if the parity blocks
3423 * are safe, or on a failed drive
3424 */
3425 pdev = &sh->dev[pd_idx];
Dan Williamsa4456852007-07-09 11:56:43 -07003426 r6s.p_failed = (s.failed >= 1 && r6s.failed_num[0] == pd_idx)
3427 || (s.failed >= 2 && r6s.failed_num[1] == pd_idx);
NeilBrown34e04e82009-03-31 15:10:16 +11003428 qdev = &sh->dev[qd_idx];
3429 r6s.q_failed = (s.failed >= 1 && r6s.failed_num[0] == qd_idx)
3430 || (s.failed >= 2 && r6s.failed_num[1] == qd_idx);
NeilBrown16a53ec2006-06-26 00:27:38 -07003431
Dan Williamsa4456852007-07-09 11:56:43 -07003432 if ( s.written &&
3433 ( r6s.p_failed || ((test_bit(R5_Insync, &pdev->flags)
NeilBrown16a53ec2006-06-26 00:27:38 -07003434 && !test_bit(R5_LOCKED, &pdev->flags)
Dan Williamsa4456852007-07-09 11:56:43 -07003435 && test_bit(R5_UPTODATE, &pdev->flags)))) &&
3436 ( r6s.q_failed || ((test_bit(R5_Insync, &qdev->flags)
NeilBrown16a53ec2006-06-26 00:27:38 -07003437 && !test_bit(R5_LOCKED, &qdev->flags)
Dan Williamsa4456852007-07-09 11:56:43 -07003438 && test_bit(R5_UPTODATE, &qdev->flags)))))
Dan Williams1fe797e2008-06-28 09:16:30 +10003439 handle_stripe_clean_event(conf, sh, disks, &return_bi);
NeilBrown16a53ec2006-06-26 00:27:38 -07003440
3441 /* Now we might consider reading some blocks, either to check/generate
3442 * parity, or to satisfy requests
3443 * or to load a block that is being partially written.
3444 */
Dan Williamsa4456852007-07-09 11:56:43 -07003445 if (s.to_read || s.non_overwrite || (s.to_write && s.failed) ||
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003446 (s.syncing && (s.uptodate + s.compute < disks)) || s.expanding)
Dan Williams1fe797e2008-06-28 09:16:30 +10003447 handle_stripe_fill6(sh, &s, &r6s, disks);
NeilBrown16a53ec2006-06-26 00:27:38 -07003448
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003449 /* Now we check to see if any write operations have recently
3450 * completed
3451 */
3452 if (sh->reconstruct_state == reconstruct_state_drain_result) {
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003453
3454 sh->reconstruct_state = reconstruct_state_idle;
3455 /* All the 'written' buffers and the parity blocks are ready to
3456 * be written back to disk
3457 */
3458 BUG_ON(!test_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags));
3459 BUG_ON(!test_bit(R5_UPTODATE, &sh->dev[qd_idx].flags));
3460 for (i = disks; i--; ) {
3461 dev = &sh->dev[i];
3462 if (test_bit(R5_LOCKED, &dev->flags) &&
3463 (i == sh->pd_idx || i == qd_idx ||
3464 dev->written)) {
3465 pr_debug("Writing block %d\n", i);
3466 BUG_ON(!test_bit(R5_UPTODATE, &dev->flags));
3467 set_bit(R5_Wantwrite, &dev->flags);
3468 if (!test_bit(R5_Insync, &dev->flags) ||
3469 ((i == sh->pd_idx || i == qd_idx) &&
3470 s.failed == 0))
3471 set_bit(STRIPE_INSYNC, &sh->state);
3472 }
3473 }
NeilBrown729a1862009-12-14 12:49:50 +11003474 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3475 dec_preread_active = 1;
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003476 }
3477
Yuri Tikhonova9b39a72009-08-29 19:13:12 -07003478 /* Now to consider new write requests and what else, if anything
3479 * should be read. We do not handle new writes when:
3480 * 1/ A 'write' operation (copy+gen_syndrome) is already in flight.
3481 * 2/ A 'check' operation is in flight, as it may clobber the parity
3482 * block.
3483 */
3484 if (s.to_write && !sh->reconstruct_state && !sh->check_state)
Dan Williams1fe797e2008-06-28 09:16:30 +10003485 handle_stripe_dirtying6(conf, sh, &s, &r6s, disks);
NeilBrown16a53ec2006-06-26 00:27:38 -07003486
3487 /* maybe we need to check and possibly fix the parity for this stripe
Dan Williamsa4456852007-07-09 11:56:43 -07003488 * Any reads will already have been scheduled, so we just see if enough
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003489 * data is available. The parity check is held off while parity
3490 * dependent operations are in flight.
NeilBrown16a53ec2006-06-26 00:27:38 -07003491 */
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003492 if (sh->check_state ||
3493 (s.syncing && s.locked == 0 &&
3494 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
3495 !test_bit(STRIPE_INSYNC, &sh->state)))
Dan Williams36d1c642009-07-14 11:48:22 -07003496 handle_parity_checks6(conf, sh, &s, &r6s, disks);
NeilBrown16a53ec2006-06-26 00:27:38 -07003497
Dan Williamsa4456852007-07-09 11:56:43 -07003498 if (s.syncing && s.locked == 0 && test_bit(STRIPE_INSYNC, &sh->state)) {
NeilBrown16a53ec2006-06-26 00:27:38 -07003499 md_done_sync(conf->mddev, STRIPE_SECTORS,1);
3500 clear_bit(STRIPE_SYNCING, &sh->state);
3501 }
3502
3503 /* If the failed drives are just a ReadError, then we might need
3504 * to progress the repair/check process
3505 */
Dan Williamsa4456852007-07-09 11:56:43 -07003506 if (s.failed <= 2 && !conf->mddev->ro)
3507 for (i = 0; i < s.failed; i++) {
3508 dev = &sh->dev[r6s.failed_num[i]];
NeilBrown16a53ec2006-06-26 00:27:38 -07003509 if (test_bit(R5_ReadError, &dev->flags)
3510 && !test_bit(R5_LOCKED, &dev->flags)
3511 && test_bit(R5_UPTODATE, &dev->flags)
3512 ) {
3513 if (!test_bit(R5_ReWrite, &dev->flags)) {
3514 set_bit(R5_Wantwrite, &dev->flags);
3515 set_bit(R5_ReWrite, &dev->flags);
3516 set_bit(R5_LOCKED, &dev->flags);
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003517 s.locked++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003518 } else {
3519 /* let's read it back */
3520 set_bit(R5_Wantread, &dev->flags);
3521 set_bit(R5_LOCKED, &dev->flags);
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003522 s.locked++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003523 }
3524 }
3525 }
NeilBrownf4168852007-02-28 20:11:53 -08003526
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003527 /* Finish reconstruct operations initiated by the expansion process */
3528 if (sh->reconstruct_state == reconstruct_state_result) {
3529 sh->reconstruct_state = reconstruct_state_idle;
3530 clear_bit(STRIPE_EXPANDING, &sh->state);
3531 for (i = conf->raid_disks; i--; ) {
3532 set_bit(R5_Wantwrite, &sh->dev[i].flags);
3533 set_bit(R5_LOCKED, &sh->dev[i].flags);
3534 s.locked++;
3535 }
3536 }
3537
3538 if (s.expanded && test_bit(STRIPE_EXPANDING, &sh->state) &&
3539 !sh->reconstruct_state) {
NeilBrownab69ae12009-03-31 15:26:47 +11003540 struct stripe_head *sh2
NeilBrowna8c906c2009-06-09 14:39:59 +10003541 = get_active_stripe(conf, sh->sector, 1, 1, 1);
NeilBrownab69ae12009-03-31 15:26:47 +11003542 if (sh2 && test_bit(STRIPE_EXPAND_SOURCE, &sh2->state)) {
3543 /* sh cannot be written until sh2 has been read.
3544 * so arrange for sh to be delayed a little
3545 */
3546 set_bit(STRIPE_DELAYED, &sh->state);
3547 set_bit(STRIPE_HANDLE, &sh->state);
3548 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE,
3549 &sh2->state))
3550 atomic_inc(&conf->preread_active_stripes);
3551 release_stripe(sh2);
3552 goto unlock;
3553 }
3554 if (sh2)
3555 release_stripe(sh2);
3556
NeilBrownf4168852007-02-28 20:11:53 -08003557 /* Need to write out all blocks after computing P&Q */
3558 sh->disks = conf->raid_disks;
NeilBrown911d4ee2009-03-31 14:39:38 +11003559 stripe_set_idx(sh->sector, conf, 0, sh);
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003560 schedule_reconstruction(sh, &s, 1, 1);
3561 } else if (s.expanded && !sh->reconstruct_state && s.locked == 0) {
NeilBrownf4168852007-02-28 20:11:53 -08003562 clear_bit(STRIPE_EXPAND_READY, &sh->state);
3563 atomic_dec(&conf->reshape_stripes);
3564 wake_up(&conf->wait_for_overlap);
3565 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
3566 }
3567
Dan Williams0f94e872008-01-08 15:32:53 -08003568 if (s.expanding && s.locked == 0 &&
Dan Williams976ea8d2008-06-28 08:32:03 +10003569 !test_bit(STRIPE_COMPUTE_RUN, &sh->state))
Dan Williamsa4456852007-07-09 11:56:43 -07003570 handle_stripe_expansion(conf, sh, &r6s);
NeilBrownf4168852007-02-28 20:11:53 -08003571
Dan Williams6bfe0b42008-04-30 00:52:32 -07003572 unlock:
NeilBrown16a53ec2006-06-26 00:27:38 -07003573 spin_unlock(&sh->lock);
3574
Dan Williams6bfe0b42008-04-30 00:52:32 -07003575 /* wait for this device to become unblocked */
3576 if (unlikely(blocked_rdev))
3577 md_wait_for_blocked_rdev(blocked_rdev, conf->mddev);
3578
Yuri Tikhonov6c0069c2009-08-29 19:13:13 -07003579 if (s.ops_request)
3580 raid_run_ops(sh, s.ops_request);
3581
Dan Williamsf0e43bc2008-06-28 08:31:55 +10003582 ops_run_io(sh, &s);
3583
NeilBrown729a1862009-12-14 12:49:50 +11003584
3585 if (dec_preread_active) {
3586 /* We delay this until after ops_run_io so that if make_request
3587 * is waiting on a barrier, it won't continue until the writes
3588 * have actually been submitted.
3589 */
3590 atomic_dec(&conf->preread_active_stripes);
3591 if (atomic_read(&conf->preread_active_stripes) <
3592 IO_THRESHOLD)
3593 md_wakeup_thread(conf->mddev->thread);
3594 }
3595
Dan Williamsa4456852007-07-09 11:56:43 -07003596 return_io(return_bi);
NeilBrown16a53ec2006-06-26 00:27:38 -07003597}
3598
NeilBrown14425772009-10-16 15:55:25 +11003599static void handle_stripe(struct stripe_head *sh)
NeilBrown16a53ec2006-06-26 00:27:38 -07003600{
3601 if (sh->raid_conf->level == 6)
NeilBrown14425772009-10-16 15:55:25 +11003602 handle_stripe6(sh);
NeilBrown16a53ec2006-06-26 00:27:38 -07003603 else
NeilBrown14425772009-10-16 15:55:25 +11003604 handle_stripe5(sh);
NeilBrown16a53ec2006-06-26 00:27:38 -07003605}
3606
Arjan van de Ven858119e2006-01-14 13:20:43 -08003607static void raid5_activate_delayed(raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608{
3609 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD) {
3610 while (!list_empty(&conf->delayed_list)) {
3611 struct list_head *l = conf->delayed_list.next;
3612 struct stripe_head *sh;
3613 sh = list_entry(l, struct stripe_head, lru);
3614 list_del_init(l);
3615 clear_bit(STRIPE_DELAYED, &sh->state);
3616 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3617 atomic_inc(&conf->preread_active_stripes);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003618 list_add_tail(&sh->lru, &conf->hold_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619 }
NeilBrown6ed30032008-02-06 01:40:00 -08003620 } else
3621 blk_plug_device(conf->mddev->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622}
3623
Arjan van de Ven858119e2006-01-14 13:20:43 -08003624static void activate_bit_delay(raid5_conf_t *conf)
NeilBrown72626682005-09-09 16:23:54 -07003625{
3626 /* device_lock is held */
3627 struct list_head head;
3628 list_add(&head, &conf->bitmap_list);
3629 list_del_init(&conf->bitmap_list);
3630 while (!list_empty(&head)) {
3631 struct stripe_head *sh = list_entry(head.next, struct stripe_head, lru);
3632 list_del_init(&sh->lru);
3633 atomic_inc(&sh->count);
3634 __release_stripe(conf, sh);
3635 }
3636}
3637
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638static void unplug_slaves(mddev_t *mddev)
3639{
NeilBrown070ec552009-06-16 16:54:21 +10003640 raid5_conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641 int i;
NeilBrown5e5e3e72009-10-16 16:35:30 +11003642 int devs = max(conf->raid_disks, conf->previous_raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643
3644 rcu_read_lock();
NeilBrown5e5e3e72009-10-16 16:35:30 +11003645 for (i = 0; i < devs; i++) {
Suzanne Woodd6065f72005-11-08 21:39:27 -08003646 mdk_rdev_t *rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownb2d444d2005-11-08 21:39:31 -08003647 if (rdev && !test_bit(Faulty, &rdev->flags) && atomic_read(&rdev->nr_pending)) {
Jens Axboe165125e2007-07-24 09:28:11 +02003648 struct request_queue *r_queue = bdev_get_queue(rdev->bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649
3650 atomic_inc(&rdev->nr_pending);
3651 rcu_read_unlock();
3652
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -05003653 blk_unplug(r_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654
3655 rdev_dec_pending(rdev, mddev);
3656 rcu_read_lock();
3657 }
3658 }
3659 rcu_read_unlock();
3660}
3661
Jens Axboe165125e2007-07-24 09:28:11 +02003662static void raid5_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663{
3664 mddev_t *mddev = q->queuedata;
NeilBrown070ec552009-06-16 16:54:21 +10003665 raid5_conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666 unsigned long flags;
3667
3668 spin_lock_irqsave(&conf->device_lock, flags);
3669
NeilBrown72626682005-09-09 16:23:54 -07003670 if (blk_remove_plug(q)) {
3671 conf->seq_flush++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672 raid5_activate_delayed(conf);
NeilBrown72626682005-09-09 16:23:54 -07003673 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674 md_wakeup_thread(mddev->thread);
3675
3676 spin_unlock_irqrestore(&conf->device_lock, flags);
3677
3678 unplug_slaves(mddev);
3679}
3680
NeilBrown11d8a6e2010-07-26 11:57:07 +10003681int md_raid5_congested(mddev_t *mddev, int bits)
NeilBrownf022b2f2006-10-03 01:15:56 -07003682{
NeilBrown070ec552009-06-16 16:54:21 +10003683 raid5_conf_t *conf = mddev->private;
NeilBrownf022b2f2006-10-03 01:15:56 -07003684
3685 /* No difference between reads and writes. Just check
3686 * how busy the stripe_cache is
3687 */
NeilBrown3fa841d2009-09-23 18:10:29 +10003688
NeilBrownf022b2f2006-10-03 01:15:56 -07003689 if (conf->inactive_blocked)
3690 return 1;
3691 if (conf->quiesce)
3692 return 1;
3693 if (list_empty_careful(&conf->inactive_list))
3694 return 1;
3695
3696 return 0;
3697}
NeilBrown11d8a6e2010-07-26 11:57:07 +10003698EXPORT_SYMBOL_GPL(md_raid5_congested);
3699
3700static int raid5_congested(void *data, int bits)
3701{
3702 mddev_t *mddev = data;
3703
3704 return mddev_congested(mddev, bits) ||
3705 md_raid5_congested(mddev, bits);
3706}
NeilBrownf022b2f2006-10-03 01:15:56 -07003707
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003708/* We want read requests to align with chunks where possible,
3709 * but write requests don't need to.
3710 */
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003711static int raid5_mergeable_bvec(struct request_queue *q,
3712 struct bvec_merge_data *bvm,
3713 struct bio_vec *biovec)
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003714{
3715 mddev_t *mddev = q->queuedata;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003716 sector_t sector = bvm->bi_sector + get_start_sect(bvm->bi_bdev);
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003717 int max;
Andre Noll9d8f0362009-06-18 08:45:01 +10003718 unsigned int chunk_sectors = mddev->chunk_sectors;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003719 unsigned int bio_sectors = bvm->bi_size >> 9;
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003720
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003721 if ((bvm->bi_rw & 1) == WRITE)
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003722 return biovec->bv_len; /* always allow writes to be mergeable */
3723
Andre Noll664e7c42009-06-18 08:45:27 +10003724 if (mddev->new_chunk_sectors < mddev->chunk_sectors)
3725 chunk_sectors = mddev->new_chunk_sectors;
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003726 max = (chunk_sectors - ((sector & (chunk_sectors - 1)) + bio_sectors)) << 9;
3727 if (max < 0) max = 0;
3728 if (max <= biovec->bv_len && bio_sectors == 0)
3729 return biovec->bv_len;
3730 else
3731 return max;
3732}
3733
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003734
3735static int in_chunk_boundary(mddev_t *mddev, struct bio *bio)
3736{
3737 sector_t sector = bio->bi_sector + get_start_sect(bio->bi_bdev);
Andre Noll9d8f0362009-06-18 08:45:01 +10003738 unsigned int chunk_sectors = mddev->chunk_sectors;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003739 unsigned int bio_sectors = bio->bi_size >> 9;
3740
Andre Noll664e7c42009-06-18 08:45:27 +10003741 if (mddev->new_chunk_sectors < mddev->chunk_sectors)
3742 chunk_sectors = mddev->new_chunk_sectors;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003743 return chunk_sectors >=
3744 ((sector & (chunk_sectors - 1)) + bio_sectors);
3745}
3746
3747/*
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003748 * add bio to the retry LIFO ( in O(1) ... we are in interrupt )
3749 * later sampled by raid5d.
3750 */
3751static void add_bio_to_retry(struct bio *bi,raid5_conf_t *conf)
3752{
3753 unsigned long flags;
3754
3755 spin_lock_irqsave(&conf->device_lock, flags);
3756
3757 bi->bi_next = conf->retry_read_aligned_list;
3758 conf->retry_read_aligned_list = bi;
3759
3760 spin_unlock_irqrestore(&conf->device_lock, flags);
3761 md_wakeup_thread(conf->mddev->thread);
3762}
3763
3764
3765static struct bio *remove_bio_from_retry(raid5_conf_t *conf)
3766{
3767 struct bio *bi;
3768
3769 bi = conf->retry_read_aligned;
3770 if (bi) {
3771 conf->retry_read_aligned = NULL;
3772 return bi;
3773 }
3774 bi = conf->retry_read_aligned_list;
3775 if(bi) {
Neil Brown387bb172007-02-08 14:20:29 -08003776 conf->retry_read_aligned_list = bi->bi_next;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003777 bi->bi_next = NULL;
Jens Axboe960e7392008-08-15 10:41:18 +02003778 /*
3779 * this sets the active strip count to 1 and the processed
3780 * strip count to zero (upper 8 bits)
3781 */
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003782 bi->bi_phys_segments = 1; /* biased count of active stripes */
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003783 }
3784
3785 return bi;
3786}
3787
3788
3789/*
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003790 * The "raid5_align_endio" should check if the read succeeded and if it
3791 * did, call bio_endio on the original bio (having bio_put the new bio
3792 * first).
3793 * If the read failed..
3794 */
NeilBrown6712ecf2007-09-27 12:47:43 +02003795static void raid5_align_endio(struct bio *bi, int error)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003796{
3797 struct bio* raid_bi = bi->bi_private;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003798 mddev_t *mddev;
3799 raid5_conf_t *conf;
3800 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
3801 mdk_rdev_t *rdev;
3802
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003803 bio_put(bi);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003804
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003805 rdev = (void*)raid_bi->bi_next;
3806 raid_bi->bi_next = NULL;
NeilBrown2b7f2222010-03-25 16:06:03 +11003807 mddev = rdev->mddev;
3808 conf = mddev->private;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003809
3810 rdev_dec_pending(rdev, conf->mddev);
3811
3812 if (!error && uptodate) {
NeilBrown6712ecf2007-09-27 12:47:43 +02003813 bio_endio(raid_bi, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003814 if (atomic_dec_and_test(&conf->active_aligned_reads))
3815 wake_up(&conf->wait_for_stripe);
NeilBrown6712ecf2007-09-27 12:47:43 +02003816 return;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003817 }
3818
3819
Dan Williams45b42332007-07-09 11:56:43 -07003820 pr_debug("raid5_align_endio : io error...handing IO for a retry\n");
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003821
3822 add_bio_to_retry(raid_bi, conf);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003823}
3824
Neil Brown387bb172007-02-08 14:20:29 -08003825static int bio_fits_rdev(struct bio *bi)
3826{
Jens Axboe165125e2007-07-24 09:28:11 +02003827 struct request_queue *q = bdev_get_queue(bi->bi_bdev);
Neil Brown387bb172007-02-08 14:20:29 -08003828
Martin K. Petersenae03bf62009-05-22 17:17:50 -04003829 if ((bi->bi_size>>9) > queue_max_sectors(q))
Neil Brown387bb172007-02-08 14:20:29 -08003830 return 0;
3831 blk_recount_segments(q, bi);
Martin K. Petersen8a783622010-02-26 00:20:39 -05003832 if (bi->bi_phys_segments > queue_max_segments(q))
Neil Brown387bb172007-02-08 14:20:29 -08003833 return 0;
3834
3835 if (q->merge_bvec_fn)
3836 /* it's too hard to apply the merge_bvec_fn at this stage,
3837 * just just give up
3838 */
3839 return 0;
3840
3841 return 1;
3842}
3843
3844
NeilBrown21a52c62010-04-01 15:02:13 +11003845static int chunk_aligned_read(mddev_t *mddev, struct bio * raid_bio)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003846{
NeilBrown070ec552009-06-16 16:54:21 +10003847 raid5_conf_t *conf = mddev->private;
NeilBrown8553fe7ec2009-12-14 12:49:47 +11003848 int dd_idx;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003849 struct bio* align_bi;
3850 mdk_rdev_t *rdev;
3851
3852 if (!in_chunk_boundary(mddev, raid_bio)) {
Dan Williams45b42332007-07-09 11:56:43 -07003853 pr_debug("chunk_aligned_read : non aligned\n");
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003854 return 0;
3855 }
3856 /*
NeilBrown99c0fb52009-03-31 14:39:38 +11003857 * use bio_clone to make a copy of the bio
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003858 */
3859 align_bi = bio_clone(raid_bio, GFP_NOIO);
3860 if (!align_bi)
3861 return 0;
3862 /*
3863 * set bi_end_io to a new function, and set bi_private to the
3864 * original bio.
3865 */
3866 align_bi->bi_end_io = raid5_align_endio;
3867 align_bi->bi_private = raid_bio;
3868 /*
3869 * compute position
3870 */
NeilBrown112bf892009-03-31 14:39:38 +11003871 align_bi->bi_sector = raid5_compute_sector(conf, raid_bio->bi_sector,
3872 0,
NeilBrown911d4ee2009-03-31 14:39:38 +11003873 &dd_idx, NULL);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003874
3875 rcu_read_lock();
3876 rdev = rcu_dereference(conf->disks[dd_idx].rdev);
3877 if (rdev && test_bit(In_sync, &rdev->flags)) {
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003878 atomic_inc(&rdev->nr_pending);
3879 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003880 raid_bio->bi_next = (void*)rdev;
3881 align_bi->bi_bdev = rdev->bdev;
3882 align_bi->bi_flags &= ~(1 << BIO_SEG_VALID);
3883 align_bi->bi_sector += rdev->data_offset;
3884
Neil Brown387bb172007-02-08 14:20:29 -08003885 if (!bio_fits_rdev(align_bi)) {
3886 /* too big in some way */
3887 bio_put(align_bi);
3888 rdev_dec_pending(rdev, mddev);
3889 return 0;
3890 }
3891
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003892 spin_lock_irq(&conf->device_lock);
3893 wait_event_lock_irq(conf->wait_for_stripe,
3894 conf->quiesce == 0,
3895 conf->device_lock, /* nothing */);
3896 atomic_inc(&conf->active_aligned_reads);
3897 spin_unlock_irq(&conf->device_lock);
3898
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003899 generic_make_request(align_bi);
3900 return 1;
3901 } else {
3902 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003903 bio_put(align_bi);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003904 return 0;
3905 }
3906}
3907
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003908/* __get_priority_stripe - get the next stripe to process
3909 *
3910 * Full stripe writes are allowed to pass preread active stripes up until
3911 * the bypass_threshold is exceeded. In general the bypass_count
3912 * increments when the handle_list is handled before the hold_list; however, it
3913 * will not be incremented when STRIPE_IO_STARTED is sampled set signifying a
3914 * stripe with in flight i/o. The bypass_count will be reset when the
3915 * head of the hold_list has changed, i.e. the head was promoted to the
3916 * handle_list.
3917 */
3918static struct stripe_head *__get_priority_stripe(raid5_conf_t *conf)
3919{
3920 struct stripe_head *sh;
3921
3922 pr_debug("%s: handle: %s hold: %s full_writes: %d bypass_count: %d\n",
3923 __func__,
3924 list_empty(&conf->handle_list) ? "empty" : "busy",
3925 list_empty(&conf->hold_list) ? "empty" : "busy",
3926 atomic_read(&conf->pending_full_writes), conf->bypass_count);
3927
3928 if (!list_empty(&conf->handle_list)) {
3929 sh = list_entry(conf->handle_list.next, typeof(*sh), lru);
3930
3931 if (list_empty(&conf->hold_list))
3932 conf->bypass_count = 0;
3933 else if (!test_bit(STRIPE_IO_STARTED, &sh->state)) {
3934 if (conf->hold_list.next == conf->last_hold)
3935 conf->bypass_count++;
3936 else {
3937 conf->last_hold = conf->hold_list.next;
3938 conf->bypass_count -= conf->bypass_threshold;
3939 if (conf->bypass_count < 0)
3940 conf->bypass_count = 0;
3941 }
3942 }
3943 } else if (!list_empty(&conf->hold_list) &&
3944 ((conf->bypass_threshold &&
3945 conf->bypass_count > conf->bypass_threshold) ||
3946 atomic_read(&conf->pending_full_writes) == 0)) {
3947 sh = list_entry(conf->hold_list.next,
3948 typeof(*sh), lru);
3949 conf->bypass_count -= conf->bypass_threshold;
3950 if (conf->bypass_count < 0)
3951 conf->bypass_count = 0;
3952 } else
3953 return NULL;
3954
3955 list_del_init(&sh->lru);
3956 atomic_inc(&sh->count);
3957 BUG_ON(atomic_read(&sh->count) != 1);
3958 return sh;
3959}
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003960
NeilBrown21a52c62010-04-01 15:02:13 +11003961static int make_request(mddev_t *mddev, struct bio * bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962{
NeilBrown070ec552009-06-16 16:54:21 +10003963 raid5_conf_t *conf = mddev->private;
NeilBrown911d4ee2009-03-31 14:39:38 +11003964 int dd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 sector_t new_sector;
3966 sector_t logical_sector, last_sector;
3967 struct stripe_head *sh;
Jens Axboea3623572005-11-01 09:26:16 +01003968 const int rw = bio_data_dir(bi);
NeilBrown49077322010-03-25 16:20:56 +11003969 int remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970
Jens Axboe1f98a132009-09-11 14:32:04 +02003971 if (unlikely(bio_rw_flagged(bi, BIO_RW_BARRIER))) {
NeilBrowna2826aa2009-12-14 12:49:49 +11003972 /* Drain all pending writes. We only really need
3973 * to ensure they have been submitted, but this is
3974 * easier.
3975 */
3976 mddev->pers->quiesce(mddev, 1);
3977 mddev->pers->quiesce(mddev, 0);
3978 md_barrier_request(mddev, bi);
NeilBrowne5dcdd82005-09-09 16:23:41 -07003979 return 0;
3980 }
3981
NeilBrown3d310eb2005-06-21 17:17:26 -07003982 md_write_start(mddev, bi);
NeilBrown06d91a52005-06-21 17:17:12 -07003983
NeilBrown802ba062006-12-13 00:34:13 -08003984 if (rw == READ &&
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08003985 mddev->reshape_position == MaxSector &&
NeilBrown21a52c62010-04-01 15:02:13 +11003986 chunk_aligned_read(mddev,bi))
NeilBrown99c0fb52009-03-31 14:39:38 +11003987 return 0;
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08003988
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989 logical_sector = bi->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
3990 last_sector = bi->bi_sector + (bi->bi_size>>9);
3991 bi->bi_next = NULL;
3992 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
NeilBrown06d91a52005-06-21 17:17:12 -07003993
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994 for (;logical_sector < last_sector; logical_sector += STRIPE_SECTORS) {
3995 DEFINE_WAIT(w);
NeilBrown16a53ec2006-06-26 00:27:38 -07003996 int disks, data_disks;
NeilBrownb5663ba2009-03-31 14:39:38 +11003997 int previous;
NeilBrownb578d552006-03-27 01:18:12 -08003998
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003999 retry:
NeilBrownb5663ba2009-03-31 14:39:38 +11004000 previous = 0;
NeilBrownb0f9ec02009-03-31 15:27:18 +11004001 disks = conf->raid_disks;
NeilBrownb578d552006-03-27 01:18:12 -08004002 prepare_to_wait(&conf->wait_for_overlap, &w, TASK_UNINTERRUPTIBLE);
NeilBrownb0f9ec02009-03-31 15:27:18 +11004003 if (unlikely(conf->reshape_progress != MaxSector)) {
NeilBrownfef9c612009-03-31 15:16:46 +11004004 /* spinlock is needed as reshape_progress may be
NeilBrowndf8e7f72006-03-27 01:18:15 -08004005 * 64bit on a 32bit platform, and so it might be
4006 * possible to see a half-updated value
NeilBrownfef9c612009-03-31 15:16:46 +11004007 * Ofcourse reshape_progress could change after
NeilBrowndf8e7f72006-03-27 01:18:15 -08004008 * the lock is dropped, so once we get a reference
4009 * to the stripe that we think it is, we will have
4010 * to check again.
4011 */
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004012 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11004013 if (mddev->delta_disks < 0
4014 ? logical_sector < conf->reshape_progress
4015 : logical_sector >= conf->reshape_progress) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004016 disks = conf->previous_raid_disks;
NeilBrownb5663ba2009-03-31 14:39:38 +11004017 previous = 1;
4018 } else {
NeilBrownfef9c612009-03-31 15:16:46 +11004019 if (mddev->delta_disks < 0
4020 ? logical_sector < conf->reshape_safe
4021 : logical_sector >= conf->reshape_safe) {
NeilBrownb578d552006-03-27 01:18:12 -08004022 spin_unlock_irq(&conf->device_lock);
4023 schedule();
4024 goto retry;
4025 }
4026 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004027 spin_unlock_irq(&conf->device_lock);
4028 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004029 data_disks = disks - conf->max_degraded;
4030
NeilBrown112bf892009-03-31 14:39:38 +11004031 new_sector = raid5_compute_sector(conf, logical_sector,
4032 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11004033 &dd_idx, NULL);
NeilBrown0c55e022010-05-03 14:09:02 +10004034 pr_debug("raid456: make_request, sector %llu logical %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035 (unsigned long long)new_sector,
4036 (unsigned long long)logical_sector);
4037
NeilBrownb5663ba2009-03-31 14:39:38 +11004038 sh = get_active_stripe(conf, new_sector, previous,
NeilBrowna8c906c2009-06-09 14:39:59 +10004039 (bi->bi_rw&RWA_MASK), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040 if (sh) {
NeilBrownb0f9ec02009-03-31 15:27:18 +11004041 if (unlikely(previous)) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004042 /* expansion might have moved on while waiting for a
NeilBrowndf8e7f72006-03-27 01:18:15 -08004043 * stripe, so we must do the range check again.
4044 * Expansion could still move past after this
4045 * test, but as we are holding a reference to
4046 * 'sh', we know that if that happens,
4047 * STRIPE_EXPANDING will get set and the expansion
4048 * won't proceed until we finish with the stripe.
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004049 */
4050 int must_retry = 0;
4051 spin_lock_irq(&conf->device_lock);
NeilBrownb0f9ec02009-03-31 15:27:18 +11004052 if (mddev->delta_disks < 0
4053 ? logical_sector >= conf->reshape_progress
4054 : logical_sector < conf->reshape_progress)
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004055 /* mismatch, need to try again */
4056 must_retry = 1;
4057 spin_unlock_irq(&conf->device_lock);
4058 if (must_retry) {
4059 release_stripe(sh);
Dan Williams7a3ab902009-06-16 16:00:33 -07004060 schedule();
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004061 goto retry;
4062 }
4063 }
NeilBrowne62e58a2009-07-01 13:15:35 +10004064
NeilBrowna5c308d2009-07-01 13:15:35 +10004065 if (bio_data_dir(bi) == WRITE &&
4066 logical_sector >= mddev->suspend_lo &&
NeilBrowne464eaf2006-03-27 01:18:14 -08004067 logical_sector < mddev->suspend_hi) {
4068 release_stripe(sh);
NeilBrowne62e58a2009-07-01 13:15:35 +10004069 /* As the suspend_* range is controlled by
4070 * userspace, we want an interruptible
4071 * wait.
4072 */
4073 flush_signals(current);
4074 prepare_to_wait(&conf->wait_for_overlap,
4075 &w, TASK_INTERRUPTIBLE);
4076 if (logical_sector >= mddev->suspend_lo &&
4077 logical_sector < mddev->suspend_hi)
4078 schedule();
NeilBrowne464eaf2006-03-27 01:18:14 -08004079 goto retry;
4080 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004081
4082 if (test_bit(STRIPE_EXPANDING, &sh->state) ||
4083 !add_stripe_bio(sh, bi, dd_idx, (bi->bi_rw&RW_MASK))) {
4084 /* Stripe is busy expanding or
4085 * add failed due to overlap. Flush everything
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086 * and wait a while
4087 */
4088 raid5_unplug_device(mddev->queue);
4089 release_stripe(sh);
4090 schedule();
4091 goto retry;
4092 }
4093 finish_wait(&conf->wait_for_overlap, &w);
NeilBrown6ed30032008-02-06 01:40:00 -08004094 set_bit(STRIPE_HANDLE, &sh->state);
4095 clear_bit(STRIPE_DELAYED, &sh->state);
NeilBrown729a1862009-12-14 12:49:50 +11004096 if (mddev->barrier &&
4097 !test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
4098 atomic_inc(&conf->preread_active_stripes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100 } else {
4101 /* cannot get stripe for read-ahead, just give-up */
4102 clear_bit(BIO_UPTODATE, &bi->bi_flags);
4103 finish_wait(&conf->wait_for_overlap, &w);
4104 break;
4105 }
4106
4107 }
4108 spin_lock_irq(&conf->device_lock);
Jens Axboe960e7392008-08-15 10:41:18 +02004109 remaining = raid5_dec_bi_phys_segments(bi);
NeilBrownf6344752006-03-27 01:18:17 -08004110 spin_unlock_irq(&conf->device_lock);
4111 if (remaining == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112
NeilBrown16a53ec2006-06-26 00:27:38 -07004113 if ( rw == WRITE )
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114 md_write_end(mddev);
NeilBrown6712ecf2007-09-27 12:47:43 +02004115
Neil Brown0e13fe232008-06-28 08:31:20 +10004116 bio_endio(bi, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117 }
NeilBrown729a1862009-12-14 12:49:50 +11004118
4119 if (mddev->barrier) {
4120 /* We need to wait for the stripes to all be handled.
4121 * So: wait for preread_active_stripes to drop to 0.
4122 */
4123 wait_event(mddev->thread->wqueue,
4124 atomic_read(&conf->preread_active_stripes) == 0);
4125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126 return 0;
4127}
4128
Dan Williamsb522adc2009-03-31 15:00:31 +11004129static sector_t raid5_size(mddev_t *mddev, sector_t sectors, int raid_disks);
4130
NeilBrown52c03292006-06-26 00:27:43 -07004131static sector_t reshape_request(mddev_t *mddev, sector_t sector_nr, int *skipped)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132{
NeilBrown52c03292006-06-26 00:27:43 -07004133 /* reshaping is quite different to recovery/resync so it is
4134 * handled quite separately ... here.
4135 *
4136 * On each call to sync_request, we gather one chunk worth of
4137 * destination stripes and flag them as expanding.
4138 * Then we find all the source stripes and request reads.
4139 * As the reads complete, handle_stripe will copy the data
4140 * into the destination stripe and release that stripe.
4141 */
H Hartley Sweeten7b928132010-03-08 16:02:40 +11004142 raid5_conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004143 struct stripe_head *sh;
NeilBrownccfcc3c2006-03-27 01:18:09 -08004144 sector_t first_sector, last_sector;
NeilBrownf4168852007-02-28 20:11:53 -08004145 int raid_disks = conf->previous_raid_disks;
4146 int data_disks = raid_disks - conf->max_degraded;
4147 int new_data_disks = conf->raid_disks - conf->max_degraded;
NeilBrown52c03292006-06-26 00:27:43 -07004148 int i;
4149 int dd_idx;
NeilBrownc8f517c2009-03-31 15:28:40 +11004150 sector_t writepos, readpos, safepos;
NeilBrownec32a2b2009-03-31 15:17:38 +11004151 sector_t stripe_addr;
NeilBrown7a661382009-03-31 15:21:40 +11004152 int reshape_sectors;
NeilBrownab69ae12009-03-31 15:26:47 +11004153 struct list_head stripes;
NeilBrown52c03292006-06-26 00:27:43 -07004154
NeilBrownfef9c612009-03-31 15:16:46 +11004155 if (sector_nr == 0) {
4156 /* If restarting in the middle, skip the initial sectors */
4157 if (mddev->delta_disks < 0 &&
4158 conf->reshape_progress < raid5_size(mddev, 0, 0)) {
4159 sector_nr = raid5_size(mddev, 0, 0)
4160 - conf->reshape_progress;
NeilBrowna6397552009-08-13 10:13:00 +10004161 } else if (mddev->delta_disks >= 0 &&
NeilBrownfef9c612009-03-31 15:16:46 +11004162 conf->reshape_progress > 0)
4163 sector_nr = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08004164 sector_div(sector_nr, new_data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11004165 if (sector_nr) {
NeilBrown8dee7212009-11-06 14:59:29 +11004166 mddev->curr_resync_completed = sector_nr;
4167 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrownfef9c612009-03-31 15:16:46 +11004168 *skipped = 1;
4169 return sector_nr;
4170 }
NeilBrown52c03292006-06-26 00:27:43 -07004171 }
4172
NeilBrown7a661382009-03-31 15:21:40 +11004173 /* We need to process a full chunk at a time.
4174 * If old and new chunk sizes differ, we need to process the
4175 * largest of these
4176 */
Andre Noll664e7c42009-06-18 08:45:27 +10004177 if (mddev->new_chunk_sectors > mddev->chunk_sectors)
4178 reshape_sectors = mddev->new_chunk_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11004179 else
Andre Noll9d8f0362009-06-18 08:45:01 +10004180 reshape_sectors = mddev->chunk_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11004181
NeilBrown52c03292006-06-26 00:27:43 -07004182 /* we update the metadata when there is more than 3Meg
4183 * in the block range (that is rather arbitrary, should
4184 * probably be time based) or when the data about to be
4185 * copied would over-write the source of the data at
4186 * the front of the range.
NeilBrownfef9c612009-03-31 15:16:46 +11004187 * i.e. one new_stripe along from reshape_progress new_maps
4188 * to after where reshape_safe old_maps to
NeilBrown52c03292006-06-26 00:27:43 -07004189 */
NeilBrownfef9c612009-03-31 15:16:46 +11004190 writepos = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08004191 sector_div(writepos, new_data_disks);
NeilBrownc8f517c2009-03-31 15:28:40 +11004192 readpos = conf->reshape_progress;
4193 sector_div(readpos, data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11004194 safepos = conf->reshape_safe;
NeilBrownf4168852007-02-28 20:11:53 -08004195 sector_div(safepos, data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11004196 if (mddev->delta_disks < 0) {
NeilBrowned37d832009-05-27 21:39:05 +10004197 writepos -= min_t(sector_t, reshape_sectors, writepos);
NeilBrownc8f517c2009-03-31 15:28:40 +11004198 readpos += reshape_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11004199 safepos += reshape_sectors;
NeilBrownfef9c612009-03-31 15:16:46 +11004200 } else {
NeilBrown7a661382009-03-31 15:21:40 +11004201 writepos += reshape_sectors;
NeilBrowned37d832009-05-27 21:39:05 +10004202 readpos -= min_t(sector_t, reshape_sectors, readpos);
4203 safepos -= min_t(sector_t, reshape_sectors, safepos);
NeilBrownfef9c612009-03-31 15:16:46 +11004204 }
NeilBrown52c03292006-06-26 00:27:43 -07004205
NeilBrownc8f517c2009-03-31 15:28:40 +11004206 /* 'writepos' is the most advanced device address we might write.
4207 * 'readpos' is the least advanced device address we might read.
4208 * 'safepos' is the least address recorded in the metadata as having
4209 * been reshaped.
4210 * If 'readpos' is behind 'writepos', then there is no way that we can
4211 * ensure safety in the face of a crash - that must be done by userspace
4212 * making a backup of the data. So in that case there is no particular
4213 * rush to update metadata.
4214 * Otherwise if 'safepos' is behind 'writepos', then we really need to
4215 * update the metadata to advance 'safepos' to match 'readpos' so that
4216 * we can be safe in the event of a crash.
4217 * So we insist on updating metadata if safepos is behind writepos and
4218 * readpos is beyond writepos.
4219 * In any case, update the metadata every 10 seconds.
4220 * Maybe that number should be configurable, but I'm not sure it is
4221 * worth it.... maybe it could be a multiple of safemode_delay???
4222 */
NeilBrownfef9c612009-03-31 15:16:46 +11004223 if ((mddev->delta_disks < 0
NeilBrownc8f517c2009-03-31 15:28:40 +11004224 ? (safepos > writepos && readpos < writepos)
4225 : (safepos < writepos && readpos > writepos)) ||
4226 time_after(jiffies, conf->reshape_checkpoint + 10*HZ)) {
NeilBrown52c03292006-06-26 00:27:43 -07004227 /* Cannot proceed until we've updated the superblock... */
4228 wait_event(conf->wait_for_overlap,
4229 atomic_read(&conf->reshape_stripes)==0);
NeilBrownfef9c612009-03-31 15:16:46 +11004230 mddev->reshape_position = conf->reshape_progress;
NeilBrownacb180b2009-04-14 16:28:34 +10004231 mddev->curr_resync_completed = mddev->curr_resync;
NeilBrownc8f517c2009-03-31 15:28:40 +11004232 conf->reshape_checkpoint = jiffies;
NeilBrown850b2b42006-10-03 01:15:46 -07004233 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrown52c03292006-06-26 00:27:43 -07004234 md_wakeup_thread(mddev->thread);
NeilBrown850b2b42006-10-03 01:15:46 -07004235 wait_event(mddev->sb_wait, mddev->flags == 0 ||
NeilBrown52c03292006-06-26 00:27:43 -07004236 kthread_should_stop());
4237 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11004238 conf->reshape_safe = mddev->reshape_position;
NeilBrown52c03292006-06-26 00:27:43 -07004239 spin_unlock_irq(&conf->device_lock);
4240 wake_up(&conf->wait_for_overlap);
NeilBrownacb180b2009-04-14 16:28:34 +10004241 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrown52c03292006-06-26 00:27:43 -07004242 }
4243
NeilBrownec32a2b2009-03-31 15:17:38 +11004244 if (mddev->delta_disks < 0) {
4245 BUG_ON(conf->reshape_progress == 0);
4246 stripe_addr = writepos;
4247 BUG_ON((mddev->dev_sectors &
NeilBrown7a661382009-03-31 15:21:40 +11004248 ~((sector_t)reshape_sectors - 1))
4249 - reshape_sectors - stripe_addr
NeilBrownec32a2b2009-03-31 15:17:38 +11004250 != sector_nr);
4251 } else {
NeilBrown7a661382009-03-31 15:21:40 +11004252 BUG_ON(writepos != sector_nr + reshape_sectors);
NeilBrownec32a2b2009-03-31 15:17:38 +11004253 stripe_addr = sector_nr;
4254 }
NeilBrownab69ae12009-03-31 15:26:47 +11004255 INIT_LIST_HEAD(&stripes);
NeilBrown7a661382009-03-31 15:21:40 +11004256 for (i = 0; i < reshape_sectors; i += STRIPE_SECTORS) {
NeilBrown52c03292006-06-26 00:27:43 -07004257 int j;
NeilBrowna9f326e2009-09-23 18:06:41 +10004258 int skipped_disk = 0;
NeilBrowna8c906c2009-06-09 14:39:59 +10004259 sh = get_active_stripe(conf, stripe_addr+i, 0, 0, 1);
NeilBrown52c03292006-06-26 00:27:43 -07004260 set_bit(STRIPE_EXPANDING, &sh->state);
4261 atomic_inc(&conf->reshape_stripes);
4262 /* If any of this stripe is beyond the end of the old
4263 * array, then we need to zero those blocks
4264 */
4265 for (j=sh->disks; j--;) {
4266 sector_t s;
4267 if (j == sh->pd_idx)
4268 continue;
NeilBrownf4168852007-02-28 20:11:53 -08004269 if (conf->level == 6 &&
NeilBrownd0dabf72009-03-31 14:39:38 +11004270 j == sh->qd_idx)
NeilBrownf4168852007-02-28 20:11:53 -08004271 continue;
NeilBrown784052e2009-03-31 15:19:07 +11004272 s = compute_blocknr(sh, j, 0);
Dan Williamsb522adc2009-03-31 15:00:31 +11004273 if (s < raid5_size(mddev, 0, 0)) {
NeilBrowna9f326e2009-09-23 18:06:41 +10004274 skipped_disk = 1;
NeilBrown52c03292006-06-26 00:27:43 -07004275 continue;
4276 }
4277 memset(page_address(sh->dev[j].page), 0, STRIPE_SIZE);
4278 set_bit(R5_Expanded, &sh->dev[j].flags);
4279 set_bit(R5_UPTODATE, &sh->dev[j].flags);
4280 }
NeilBrowna9f326e2009-09-23 18:06:41 +10004281 if (!skipped_disk) {
NeilBrown52c03292006-06-26 00:27:43 -07004282 set_bit(STRIPE_EXPAND_READY, &sh->state);
4283 set_bit(STRIPE_HANDLE, &sh->state);
4284 }
NeilBrownab69ae12009-03-31 15:26:47 +11004285 list_add(&sh->lru, &stripes);
NeilBrown52c03292006-06-26 00:27:43 -07004286 }
4287 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11004288 if (mddev->delta_disks < 0)
NeilBrown7a661382009-03-31 15:21:40 +11004289 conf->reshape_progress -= reshape_sectors * new_data_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11004290 else
NeilBrown7a661382009-03-31 15:21:40 +11004291 conf->reshape_progress += reshape_sectors * new_data_disks;
NeilBrown52c03292006-06-26 00:27:43 -07004292 spin_unlock_irq(&conf->device_lock);
4293 /* Ok, those stripe are ready. We can start scheduling
4294 * reads on the source stripes.
4295 * The source stripes are determined by mapping the first and last
4296 * block on the destination stripes.
4297 */
NeilBrown52c03292006-06-26 00:27:43 -07004298 first_sector =
NeilBrownec32a2b2009-03-31 15:17:38 +11004299 raid5_compute_sector(conf, stripe_addr*(new_data_disks),
NeilBrown911d4ee2009-03-31 14:39:38 +11004300 1, &dd_idx, NULL);
NeilBrown52c03292006-06-26 00:27:43 -07004301 last_sector =
NeilBrown0e6e0272009-06-09 16:32:22 +10004302 raid5_compute_sector(conf, ((stripe_addr+reshape_sectors)
Andre Noll09c9e5f2009-06-18 08:45:55 +10004303 * new_data_disks - 1),
NeilBrown911d4ee2009-03-31 14:39:38 +11004304 1, &dd_idx, NULL);
Andre Noll58c0fed2009-03-31 14:33:13 +11004305 if (last_sector >= mddev->dev_sectors)
4306 last_sector = mddev->dev_sectors - 1;
NeilBrown52c03292006-06-26 00:27:43 -07004307 while (first_sector <= last_sector) {
NeilBrowna8c906c2009-06-09 14:39:59 +10004308 sh = get_active_stripe(conf, first_sector, 1, 0, 1);
NeilBrown52c03292006-06-26 00:27:43 -07004309 set_bit(STRIPE_EXPAND_SOURCE, &sh->state);
4310 set_bit(STRIPE_HANDLE, &sh->state);
4311 release_stripe(sh);
4312 first_sector += STRIPE_SECTORS;
4313 }
NeilBrownab69ae12009-03-31 15:26:47 +11004314 /* Now that the sources are clearly marked, we can release
4315 * the destination stripes
4316 */
4317 while (!list_empty(&stripes)) {
4318 sh = list_entry(stripes.next, struct stripe_head, lru);
4319 list_del_init(&sh->lru);
4320 release_stripe(sh);
4321 }
NeilBrownc6207272008-02-06 01:39:52 -08004322 /* If this takes us to the resync_max point where we have to pause,
4323 * then we need to write out the superblock.
4324 */
NeilBrown7a661382009-03-31 15:21:40 +11004325 sector_nr += reshape_sectors;
NeilBrownc03f6a12009-04-17 11:06:30 +10004326 if ((sector_nr - mddev->curr_resync_completed) * 2
4327 >= mddev->resync_max - mddev->curr_resync_completed) {
NeilBrownc6207272008-02-06 01:39:52 -08004328 /* Cannot proceed until we've updated the superblock... */
4329 wait_event(conf->wait_for_overlap,
4330 atomic_read(&conf->reshape_stripes) == 0);
NeilBrownfef9c612009-03-31 15:16:46 +11004331 mddev->reshape_position = conf->reshape_progress;
NeilBrown48606a92009-06-18 09:14:12 +10004332 mddev->curr_resync_completed = mddev->curr_resync + reshape_sectors;
NeilBrownc8f517c2009-03-31 15:28:40 +11004333 conf->reshape_checkpoint = jiffies;
NeilBrownc6207272008-02-06 01:39:52 -08004334 set_bit(MD_CHANGE_DEVS, &mddev->flags);
4335 md_wakeup_thread(mddev->thread);
4336 wait_event(mddev->sb_wait,
4337 !test_bit(MD_CHANGE_DEVS, &mddev->flags)
4338 || kthread_should_stop());
4339 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11004340 conf->reshape_safe = mddev->reshape_position;
NeilBrownc6207272008-02-06 01:39:52 -08004341 spin_unlock_irq(&conf->device_lock);
4342 wake_up(&conf->wait_for_overlap);
NeilBrownacb180b2009-04-14 16:28:34 +10004343 sysfs_notify(&mddev->kobj, NULL, "sync_completed");
NeilBrownc6207272008-02-06 01:39:52 -08004344 }
NeilBrown7a661382009-03-31 15:21:40 +11004345 return reshape_sectors;
NeilBrown52c03292006-06-26 00:27:43 -07004346}
4347
4348/* FIXME go_faster isn't used */
4349static inline sector_t sync_request(mddev_t *mddev, sector_t sector_nr, int *skipped, int go_faster)
4350{
H Hartley Sweeten7b928132010-03-08 16:02:40 +11004351 raid5_conf_t *conf = mddev->private;
NeilBrown52c03292006-06-26 00:27:43 -07004352 struct stripe_head *sh;
Andre Noll58c0fed2009-03-31 14:33:13 +11004353 sector_t max_sector = mddev->dev_sectors;
NeilBrown72626682005-09-09 16:23:54 -07004354 int sync_blocks;
NeilBrown16a53ec2006-06-26 00:27:38 -07004355 int still_degraded = 0;
4356 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004357
NeilBrown72626682005-09-09 16:23:54 -07004358 if (sector_nr >= max_sector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359 /* just being told to finish up .. nothing much to do */
4360 unplug_slaves(mddev);
NeilBrowncea9c222009-03-31 15:15:05 +11004361
NeilBrown29269552006-03-27 01:18:10 -08004362 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery)) {
4363 end_reshape(conf);
4364 return 0;
4365 }
NeilBrown72626682005-09-09 16:23:54 -07004366
4367 if (mddev->curr_resync < max_sector) /* aborted */
4368 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
4369 &sync_blocks, 1);
NeilBrown16a53ec2006-06-26 00:27:38 -07004370 else /* completed sync */
NeilBrown72626682005-09-09 16:23:54 -07004371 conf->fullsync = 0;
4372 bitmap_close_sync(mddev->bitmap);
4373
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374 return 0;
4375 }
NeilBrownccfcc3c2006-03-27 01:18:09 -08004376
NeilBrown64bd6602009-08-03 10:59:58 +10004377 /* Allow raid5_quiesce to complete */
4378 wait_event(conf->wait_for_overlap, conf->quiesce != 2);
4379
NeilBrown52c03292006-06-26 00:27:43 -07004380 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery))
4381 return reshape_request(mddev, sector_nr, skipped);
NeilBrownf6705572006-03-27 01:18:11 -08004382
NeilBrownc6207272008-02-06 01:39:52 -08004383 /* No need to check resync_max as we never do more than one
4384 * stripe, and as resync_max will always be on a chunk boundary,
4385 * if the check in md_do_sync didn't fire, there is no chance
4386 * of overstepping resync_max here
4387 */
4388
NeilBrown16a53ec2006-06-26 00:27:38 -07004389 /* if there is too many failed drives and we are trying
Linus Torvalds1da177e2005-04-16 15:20:36 -07004390 * to resync, then assert that we are finished, because there is
4391 * nothing we can do.
4392 */
NeilBrown3285edf2006-06-26 00:27:55 -07004393 if (mddev->degraded >= conf->max_degraded &&
NeilBrown16a53ec2006-06-26 00:27:38 -07004394 test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
Andre Noll58c0fed2009-03-31 14:33:13 +11004395 sector_t rv = mddev->dev_sectors - sector_nr;
NeilBrown57afd892005-06-21 17:17:13 -07004396 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397 return rv;
4398 }
NeilBrown72626682005-09-09 16:23:54 -07004399 if (!bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
NeilBrown3855ad92005-11-08 21:39:38 -08004400 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
NeilBrown72626682005-09-09 16:23:54 -07004401 !conf->fullsync && sync_blocks >= STRIPE_SECTORS) {
4402 /* we can skip this block, and probably more */
4403 sync_blocks /= STRIPE_SECTORS;
4404 *skipped = 1;
4405 return sync_blocks * STRIPE_SECTORS; /* keep things rounded to whole stripes */
4406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407
NeilBrownb47490c2008-02-06 01:39:50 -08004408
4409 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
4410
NeilBrowna8c906c2009-06-09 14:39:59 +10004411 sh = get_active_stripe(conf, sector_nr, 0, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004412 if (sh == NULL) {
NeilBrowna8c906c2009-06-09 14:39:59 +10004413 sh = get_active_stripe(conf, sector_nr, 0, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414 /* make sure we don't swamp the stripe cache if someone else
NeilBrown16a53ec2006-06-26 00:27:38 -07004415 * is trying to get access
Linus Torvalds1da177e2005-04-16 15:20:36 -07004416 */
Nishanth Aravamudan66c006a2005-11-07 01:01:17 -08004417 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004418 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004419 /* Need to check if array will still be degraded after recovery/resync
4420 * We don't need to check the 'failed' flag as when that gets set,
4421 * recovery aborts.
4422 */
NeilBrownf001a702009-06-09 14:30:31 +10004423 for (i = 0; i < conf->raid_disks; i++)
NeilBrown16a53ec2006-06-26 00:27:38 -07004424 if (conf->disks[i].rdev == NULL)
4425 still_degraded = 1;
4426
4427 bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, still_degraded);
4428
4429 spin_lock(&sh->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004430 set_bit(STRIPE_SYNCING, &sh->state);
4431 clear_bit(STRIPE_INSYNC, &sh->state);
4432 spin_unlock(&sh->lock);
4433
NeilBrown14425772009-10-16 15:55:25 +11004434 handle_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435 release_stripe(sh);
4436
4437 return STRIPE_SECTORS;
4438}
4439
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004440static int retry_aligned_read(raid5_conf_t *conf, struct bio *raid_bio)
4441{
4442 /* We may not be able to submit a whole bio at once as there
4443 * may not be enough stripe_heads available.
4444 * We cannot pre-allocate enough stripe_heads as we may need
4445 * more than exist in the cache (if we allow ever large chunks).
4446 * So we do one stripe head at a time and record in
4447 * ->bi_hw_segments how many have been done.
4448 *
4449 * We *know* that this entire raid_bio is in one chunk, so
4450 * it will be only one 'dd_idx' and only need one call to raid5_compute_sector.
4451 */
4452 struct stripe_head *sh;
NeilBrown911d4ee2009-03-31 14:39:38 +11004453 int dd_idx;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004454 sector_t sector, logical_sector, last_sector;
4455 int scnt = 0;
4456 int remaining;
4457 int handled = 0;
4458
4459 logical_sector = raid_bio->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
NeilBrown112bf892009-03-31 14:39:38 +11004460 sector = raid5_compute_sector(conf, logical_sector,
NeilBrown911d4ee2009-03-31 14:39:38 +11004461 0, &dd_idx, NULL);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004462 last_sector = raid_bio->bi_sector + (raid_bio->bi_size>>9);
4463
4464 for (; logical_sector < last_sector;
Neil Brown387bb172007-02-08 14:20:29 -08004465 logical_sector += STRIPE_SECTORS,
4466 sector += STRIPE_SECTORS,
4467 scnt++) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004468
Jens Axboe960e7392008-08-15 10:41:18 +02004469 if (scnt < raid5_bi_hw_segments(raid_bio))
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004470 /* already done this stripe */
4471 continue;
4472
NeilBrowna8c906c2009-06-09 14:39:59 +10004473 sh = get_active_stripe(conf, sector, 0, 1, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004474
4475 if (!sh) {
4476 /* failed to get a stripe - must wait */
Jens Axboe960e7392008-08-15 10:41:18 +02004477 raid5_set_bi_hw_segments(raid_bio, scnt);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004478 conf->retry_read_aligned = raid_bio;
4479 return handled;
4480 }
4481
4482 set_bit(R5_ReadError, &sh->dev[dd_idx].flags);
Neil Brown387bb172007-02-08 14:20:29 -08004483 if (!add_stripe_bio(sh, raid_bio, dd_idx, 0)) {
4484 release_stripe(sh);
Jens Axboe960e7392008-08-15 10:41:18 +02004485 raid5_set_bi_hw_segments(raid_bio, scnt);
Neil Brown387bb172007-02-08 14:20:29 -08004486 conf->retry_read_aligned = raid_bio;
4487 return handled;
4488 }
4489
Dan Williams36d1c642009-07-14 11:48:22 -07004490 handle_stripe(sh);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004491 release_stripe(sh);
4492 handled++;
4493 }
4494 spin_lock_irq(&conf->device_lock);
Jens Axboe960e7392008-08-15 10:41:18 +02004495 remaining = raid5_dec_bi_phys_segments(raid_bio);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004496 spin_unlock_irq(&conf->device_lock);
Neil Brown0e13fe232008-06-28 08:31:20 +10004497 if (remaining == 0)
4498 bio_endio(raid_bio, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004499 if (atomic_dec_and_test(&conf->active_aligned_reads))
4500 wake_up(&conf->wait_for_stripe);
4501 return handled;
4502}
4503
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004504
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505/*
4506 * This is our raid5 kernel thread.
4507 *
4508 * We scan the hash table for stripes which can be handled now.
4509 * During the scan, completed stripes are saved for us by the interrupt
4510 * handler, so that they will not have to wait for our next wakeup.
4511 */
NeilBrown6ed30032008-02-06 01:40:00 -08004512static void raid5d(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004513{
4514 struct stripe_head *sh;
NeilBrown070ec552009-06-16 16:54:21 +10004515 raid5_conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516 int handled;
4517
Dan Williams45b42332007-07-09 11:56:43 -07004518 pr_debug("+++ raid5d active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519
4520 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004521
4522 handled = 0;
4523 spin_lock_irq(&conf->device_lock);
4524 while (1) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004525 struct bio *bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526
NeilBrownae3c20c2006-07-10 04:44:17 -07004527 if (conf->seq_flush != conf->seq_write) {
NeilBrown72626682005-09-09 16:23:54 -07004528 int seq = conf->seq_flush;
NeilBrown700e4322005-11-28 13:44:10 -08004529 spin_unlock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07004530 bitmap_unplug(mddev->bitmap);
NeilBrown700e4322005-11-28 13:44:10 -08004531 spin_lock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07004532 conf->seq_write = seq;
4533 activate_bit_delay(conf);
4534 }
4535
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004536 while ((bio = remove_bio_from_retry(conf))) {
4537 int ok;
4538 spin_unlock_irq(&conf->device_lock);
4539 ok = retry_aligned_read(conf, bio);
4540 spin_lock_irq(&conf->device_lock);
4541 if (!ok)
4542 break;
4543 handled++;
4544 }
4545
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004546 sh = __get_priority_stripe(conf);
4547
Dan Williamsc9f21aa2008-07-23 12:05:51 -07004548 if (!sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004549 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550 spin_unlock_irq(&conf->device_lock);
4551
4552 handled++;
Dan Williams417b8d42009-10-16 16:25:22 +11004553 handle_stripe(sh);
4554 release_stripe(sh);
4555 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556
4557 spin_lock_irq(&conf->device_lock);
4558 }
Dan Williams45b42332007-07-09 11:56:43 -07004559 pr_debug("%d stripes handled\n", handled);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004560
4561 spin_unlock_irq(&conf->device_lock);
4562
Dan Williamsc9f21aa2008-07-23 12:05:51 -07004563 async_tx_issue_pending_all();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564 unplug_slaves(mddev);
4565
Dan Williams45b42332007-07-09 11:56:43 -07004566 pr_debug("--- raid5d inactive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567}
4568
NeilBrown3f294f42005-11-08 21:39:25 -08004569static ssize_t
NeilBrown007583c2005-11-08 21:39:30 -08004570raid5_show_stripe_cache_size(mddev_t *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08004571{
NeilBrown070ec552009-06-16 16:54:21 +10004572 raid5_conf_t *conf = mddev->private;
NeilBrown96de1e62005-11-08 21:39:39 -08004573 if (conf)
4574 return sprintf(page, "%d\n", conf->max_nr_stripes);
4575 else
4576 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08004577}
4578
NeilBrownc41d4ac2010-06-01 19:37:24 +10004579int
4580raid5_set_cache_size(mddev_t *mddev, int size)
4581{
4582 raid5_conf_t *conf = mddev->private;
4583 int err;
4584
4585 if (size <= 16 || size > 32768)
4586 return -EINVAL;
4587 while (size < conf->max_nr_stripes) {
4588 if (drop_one_stripe(conf))
4589 conf->max_nr_stripes--;
4590 else
4591 break;
4592 }
4593 err = md_allow_write(mddev);
4594 if (err)
4595 return err;
4596 while (size > conf->max_nr_stripes) {
4597 if (grow_one_stripe(conf))
4598 conf->max_nr_stripes++;
4599 else break;
4600 }
4601 return 0;
4602}
4603EXPORT_SYMBOL(raid5_set_cache_size);
4604
NeilBrown3f294f42005-11-08 21:39:25 -08004605static ssize_t
NeilBrown007583c2005-11-08 21:39:30 -08004606raid5_store_stripe_cache_size(mddev_t *mddev, const char *page, size_t len)
NeilBrown3f294f42005-11-08 21:39:25 -08004607{
NeilBrown070ec552009-06-16 16:54:21 +10004608 raid5_conf_t *conf = mddev->private;
Dan Williams4ef197d82008-04-28 02:15:54 -07004609 unsigned long new;
Dan Williamsb5470dc2008-06-27 21:44:04 -07004610 int err;
4611
NeilBrown3f294f42005-11-08 21:39:25 -08004612 if (len >= PAGE_SIZE)
4613 return -EINVAL;
NeilBrown96de1e62005-11-08 21:39:39 -08004614 if (!conf)
4615 return -ENODEV;
NeilBrown3f294f42005-11-08 21:39:25 -08004616
Dan Williams4ef197d82008-04-28 02:15:54 -07004617 if (strict_strtoul(page, 10, &new))
NeilBrown3f294f42005-11-08 21:39:25 -08004618 return -EINVAL;
NeilBrownc41d4ac2010-06-01 19:37:24 +10004619 err = raid5_set_cache_size(mddev, new);
Dan Williamsb5470dc2008-06-27 21:44:04 -07004620 if (err)
4621 return err;
NeilBrown3f294f42005-11-08 21:39:25 -08004622 return len;
4623}
NeilBrown007583c2005-11-08 21:39:30 -08004624
NeilBrown96de1e62005-11-08 21:39:39 -08004625static struct md_sysfs_entry
4626raid5_stripecache_size = __ATTR(stripe_cache_size, S_IRUGO | S_IWUSR,
4627 raid5_show_stripe_cache_size,
4628 raid5_store_stripe_cache_size);
NeilBrown3f294f42005-11-08 21:39:25 -08004629
4630static ssize_t
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004631raid5_show_preread_threshold(mddev_t *mddev, char *page)
4632{
NeilBrown070ec552009-06-16 16:54:21 +10004633 raid5_conf_t *conf = mddev->private;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004634 if (conf)
4635 return sprintf(page, "%d\n", conf->bypass_threshold);
4636 else
4637 return 0;
4638}
4639
4640static ssize_t
4641raid5_store_preread_threshold(mddev_t *mddev, const char *page, size_t len)
4642{
NeilBrown070ec552009-06-16 16:54:21 +10004643 raid5_conf_t *conf = mddev->private;
Dan Williams4ef197d82008-04-28 02:15:54 -07004644 unsigned long new;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004645 if (len >= PAGE_SIZE)
4646 return -EINVAL;
4647 if (!conf)
4648 return -ENODEV;
4649
Dan Williams4ef197d82008-04-28 02:15:54 -07004650 if (strict_strtoul(page, 10, &new))
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004651 return -EINVAL;
Dan Williams4ef197d82008-04-28 02:15:54 -07004652 if (new > conf->max_nr_stripes)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004653 return -EINVAL;
4654 conf->bypass_threshold = new;
4655 return len;
4656}
4657
4658static struct md_sysfs_entry
4659raid5_preread_bypass_threshold = __ATTR(preread_bypass_threshold,
4660 S_IRUGO | S_IWUSR,
4661 raid5_show_preread_threshold,
4662 raid5_store_preread_threshold);
4663
4664static ssize_t
NeilBrown96de1e62005-11-08 21:39:39 -08004665stripe_cache_active_show(mddev_t *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08004666{
NeilBrown070ec552009-06-16 16:54:21 +10004667 raid5_conf_t *conf = mddev->private;
NeilBrown96de1e62005-11-08 21:39:39 -08004668 if (conf)
4669 return sprintf(page, "%d\n", atomic_read(&conf->active_stripes));
4670 else
4671 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08004672}
4673
NeilBrown96de1e62005-11-08 21:39:39 -08004674static struct md_sysfs_entry
4675raid5_stripecache_active = __ATTR_RO(stripe_cache_active);
NeilBrown3f294f42005-11-08 21:39:25 -08004676
NeilBrown007583c2005-11-08 21:39:30 -08004677static struct attribute *raid5_attrs[] = {
NeilBrown3f294f42005-11-08 21:39:25 -08004678 &raid5_stripecache_size.attr,
4679 &raid5_stripecache_active.attr,
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004680 &raid5_preread_bypass_threshold.attr,
NeilBrown3f294f42005-11-08 21:39:25 -08004681 NULL,
4682};
NeilBrown007583c2005-11-08 21:39:30 -08004683static struct attribute_group raid5_attrs_group = {
4684 .name = NULL,
4685 .attrs = raid5_attrs,
NeilBrown3f294f42005-11-08 21:39:25 -08004686};
4687
Dan Williams80c3a6c2009-03-17 18:10:40 -07004688static sector_t
4689raid5_size(mddev_t *mddev, sector_t sectors, int raid_disks)
4690{
NeilBrown070ec552009-06-16 16:54:21 +10004691 raid5_conf_t *conf = mddev->private;
Dan Williams80c3a6c2009-03-17 18:10:40 -07004692
4693 if (!sectors)
4694 sectors = mddev->dev_sectors;
NeilBrown5e5e3e72009-10-16 16:35:30 +11004695 if (!raid_disks)
NeilBrown7ec05472009-03-31 15:10:36 +11004696 /* size is defined by the smallest of previous and new size */
NeilBrown5e5e3e72009-10-16 16:35:30 +11004697 raid_disks = min(conf->raid_disks, conf->previous_raid_disks);
Dan Williams80c3a6c2009-03-17 18:10:40 -07004698
Andre Noll9d8f0362009-06-18 08:45:01 +10004699 sectors &= ~((sector_t)mddev->chunk_sectors - 1);
Andre Noll664e7c42009-06-18 08:45:27 +10004700 sectors &= ~((sector_t)mddev->new_chunk_sectors - 1);
Dan Williams80c3a6c2009-03-17 18:10:40 -07004701 return sectors * (raid_disks - conf->max_degraded);
4702}
4703
Dan Williams36d1c642009-07-14 11:48:22 -07004704static void raid5_free_percpu(raid5_conf_t *conf)
4705{
4706 struct raid5_percpu *percpu;
4707 unsigned long cpu;
4708
4709 if (!conf->percpu)
4710 return;
4711
4712 get_online_cpus();
4713 for_each_possible_cpu(cpu) {
4714 percpu = per_cpu_ptr(conf->percpu, cpu);
4715 safe_put_page(percpu->spare_page);
Dan Williamsd6f38f32009-07-14 11:50:52 -07004716 kfree(percpu->scribble);
Dan Williams36d1c642009-07-14 11:48:22 -07004717 }
4718#ifdef CONFIG_HOTPLUG_CPU
4719 unregister_cpu_notifier(&conf->cpu_notify);
4720#endif
4721 put_online_cpus();
4722
4723 free_percpu(conf->percpu);
4724}
4725
Dan Williams95fc17a2009-07-31 12:39:15 +10004726static void free_conf(raid5_conf_t *conf)
4727{
4728 shrink_stripes(conf);
Dan Williams36d1c642009-07-14 11:48:22 -07004729 raid5_free_percpu(conf);
Dan Williams95fc17a2009-07-31 12:39:15 +10004730 kfree(conf->disks);
4731 kfree(conf->stripe_hashtbl);
4732 kfree(conf);
4733}
4734
Dan Williams36d1c642009-07-14 11:48:22 -07004735#ifdef CONFIG_HOTPLUG_CPU
4736static int raid456_cpu_notify(struct notifier_block *nfb, unsigned long action,
4737 void *hcpu)
4738{
4739 raid5_conf_t *conf = container_of(nfb, raid5_conf_t, cpu_notify);
4740 long cpu = (long)hcpu;
4741 struct raid5_percpu *percpu = per_cpu_ptr(conf->percpu, cpu);
4742
4743 switch (action) {
4744 case CPU_UP_PREPARE:
4745 case CPU_UP_PREPARE_FROZEN:
Dan Williamsd6f38f32009-07-14 11:50:52 -07004746 if (conf->level == 6 && !percpu->spare_page)
Dan Williams36d1c642009-07-14 11:48:22 -07004747 percpu->spare_page = alloc_page(GFP_KERNEL);
Dan Williamsd6f38f32009-07-14 11:50:52 -07004748 if (!percpu->scribble)
4749 percpu->scribble = kmalloc(conf->scribble_len, GFP_KERNEL);
4750
4751 if (!percpu->scribble ||
4752 (conf->level == 6 && !percpu->spare_page)) {
4753 safe_put_page(percpu->spare_page);
4754 kfree(percpu->scribble);
Dan Williams36d1c642009-07-14 11:48:22 -07004755 pr_err("%s: failed memory allocation for cpu%ld\n",
4756 __func__, cpu);
Akinobu Mita55af6bb2010-05-26 14:43:35 -07004757 return notifier_from_errno(-ENOMEM);
Dan Williams36d1c642009-07-14 11:48:22 -07004758 }
4759 break;
4760 case CPU_DEAD:
4761 case CPU_DEAD_FROZEN:
4762 safe_put_page(percpu->spare_page);
Dan Williamsd6f38f32009-07-14 11:50:52 -07004763 kfree(percpu->scribble);
Dan Williams36d1c642009-07-14 11:48:22 -07004764 percpu->spare_page = NULL;
Dan Williamsd6f38f32009-07-14 11:50:52 -07004765 percpu->scribble = NULL;
Dan Williams36d1c642009-07-14 11:48:22 -07004766 break;
4767 default:
4768 break;
4769 }
4770 return NOTIFY_OK;
4771}
4772#endif
4773
4774static int raid5_alloc_percpu(raid5_conf_t *conf)
4775{
4776 unsigned long cpu;
4777 struct page *spare_page;
Tejun Heoa29d8b82010-02-02 14:39:15 +09004778 struct raid5_percpu __percpu *allcpus;
Dan Williamsd6f38f32009-07-14 11:50:52 -07004779 void *scribble;
Dan Williams36d1c642009-07-14 11:48:22 -07004780 int err;
4781
Dan Williams36d1c642009-07-14 11:48:22 -07004782 allcpus = alloc_percpu(struct raid5_percpu);
4783 if (!allcpus)
4784 return -ENOMEM;
4785 conf->percpu = allcpus;
4786
4787 get_online_cpus();
4788 err = 0;
4789 for_each_present_cpu(cpu) {
Dan Williamsd6f38f32009-07-14 11:50:52 -07004790 if (conf->level == 6) {
4791 spare_page = alloc_page(GFP_KERNEL);
4792 if (!spare_page) {
4793 err = -ENOMEM;
4794 break;
4795 }
4796 per_cpu_ptr(conf->percpu, cpu)->spare_page = spare_page;
4797 }
NeilBrown5e5e3e72009-10-16 16:35:30 +11004798 scribble = kmalloc(conf->scribble_len, GFP_KERNEL);
Dan Williamsd6f38f32009-07-14 11:50:52 -07004799 if (!scribble) {
Dan Williams36d1c642009-07-14 11:48:22 -07004800 err = -ENOMEM;
4801 break;
4802 }
Dan Williamsd6f38f32009-07-14 11:50:52 -07004803 per_cpu_ptr(conf->percpu, cpu)->scribble = scribble;
Dan Williams36d1c642009-07-14 11:48:22 -07004804 }
4805#ifdef CONFIG_HOTPLUG_CPU
4806 conf->cpu_notify.notifier_call = raid456_cpu_notify;
4807 conf->cpu_notify.priority = 0;
4808 if (err == 0)
4809 err = register_cpu_notifier(&conf->cpu_notify);
4810#endif
4811 put_online_cpus();
4812
4813 return err;
4814}
4815
NeilBrown91adb562009-03-31 14:39:39 +11004816static raid5_conf_t *setup_conf(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004817{
4818 raid5_conf_t *conf;
NeilBrown5e5e3e72009-10-16 16:35:30 +11004819 int raid_disk, memory, max_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820 mdk_rdev_t *rdev;
4821 struct disk_info *disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004822
NeilBrown91adb562009-03-31 14:39:39 +11004823 if (mddev->new_level != 5
4824 && mddev->new_level != 4
4825 && mddev->new_level != 6) {
NeilBrown0c55e022010-05-03 14:09:02 +10004826 printk(KERN_ERR "md/raid:%s: raid level not set to 4/5/6 (%d)\n",
NeilBrown91adb562009-03-31 14:39:39 +11004827 mdname(mddev), mddev->new_level);
4828 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829 }
NeilBrown91adb562009-03-31 14:39:39 +11004830 if ((mddev->new_level == 5
4831 && !algorithm_valid_raid5(mddev->new_layout)) ||
4832 (mddev->new_level == 6
4833 && !algorithm_valid_raid6(mddev->new_layout))) {
NeilBrown0c55e022010-05-03 14:09:02 +10004834 printk(KERN_ERR "md/raid:%s: layout %d not supported\n",
NeilBrown91adb562009-03-31 14:39:39 +11004835 mdname(mddev), mddev->new_layout);
4836 return ERR_PTR(-EIO);
4837 }
4838 if (mddev->new_level == 6 && mddev->raid_disks < 4) {
NeilBrown0c55e022010-05-03 14:09:02 +10004839 printk(KERN_ERR "md/raid:%s: not enough configured devices (%d, minimum 4)\n",
NeilBrown91adb562009-03-31 14:39:39 +11004840 mdname(mddev), mddev->raid_disks);
4841 return ERR_PTR(-EINVAL);
NeilBrown99c0fb52009-03-31 14:39:38 +11004842 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843
Andre Noll664e7c42009-06-18 08:45:27 +10004844 if (!mddev->new_chunk_sectors ||
4845 (mddev->new_chunk_sectors << 9) % PAGE_SIZE ||
4846 !is_power_of_2(mddev->new_chunk_sectors)) {
NeilBrown0c55e022010-05-03 14:09:02 +10004847 printk(KERN_ERR "md/raid:%s: invalid chunk size %d\n",
4848 mdname(mddev), mddev->new_chunk_sectors << 9);
NeilBrown91adb562009-03-31 14:39:39 +11004849 return ERR_PTR(-EINVAL);
NeilBrown4bbf3772008-10-13 11:55:12 +11004850 }
4851
NeilBrown91adb562009-03-31 14:39:39 +11004852 conf = kzalloc(sizeof(raid5_conf_t), GFP_KERNEL);
4853 if (conf == NULL)
4854 goto abort;
Dan Williamsf5efd452009-10-16 15:55:38 +11004855 spin_lock_init(&conf->device_lock);
4856 init_waitqueue_head(&conf->wait_for_stripe);
4857 init_waitqueue_head(&conf->wait_for_overlap);
4858 INIT_LIST_HEAD(&conf->handle_list);
4859 INIT_LIST_HEAD(&conf->hold_list);
4860 INIT_LIST_HEAD(&conf->delayed_list);
4861 INIT_LIST_HEAD(&conf->bitmap_list);
4862 INIT_LIST_HEAD(&conf->inactive_list);
4863 atomic_set(&conf->active_stripes, 0);
4864 atomic_set(&conf->preread_active_stripes, 0);
4865 atomic_set(&conf->active_aligned_reads, 0);
4866 conf->bypass_threshold = BYPASS_THRESHOLD;
NeilBrown91adb562009-03-31 14:39:39 +11004867
4868 conf->raid_disks = mddev->raid_disks;
4869 if (mddev->reshape_position == MaxSector)
4870 conf->previous_raid_disks = mddev->raid_disks;
4871 else
4872 conf->previous_raid_disks = mddev->raid_disks - mddev->delta_disks;
NeilBrown5e5e3e72009-10-16 16:35:30 +11004873 max_disks = max(conf->raid_disks, conf->previous_raid_disks);
4874 conf->scribble_len = scribble_len(max_disks);
NeilBrown91adb562009-03-31 14:39:39 +11004875
NeilBrown5e5e3e72009-10-16 16:35:30 +11004876 conf->disks = kzalloc(max_disks * sizeof(struct disk_info),
NeilBrown91adb562009-03-31 14:39:39 +11004877 GFP_KERNEL);
4878 if (!conf->disks)
4879 goto abort;
4880
4881 conf->mddev = mddev;
4882
4883 if ((conf->stripe_hashtbl = kzalloc(PAGE_SIZE, GFP_KERNEL)) == NULL)
4884 goto abort;
4885
Dan Williams36d1c642009-07-14 11:48:22 -07004886 conf->level = mddev->new_level;
4887 if (raid5_alloc_percpu(conf) != 0)
4888 goto abort;
4889
NeilBrown0c55e022010-05-03 14:09:02 +10004890 pr_debug("raid456: run(%s) called.\n", mdname(mddev));
NeilBrown91adb562009-03-31 14:39:39 +11004891
4892 list_for_each_entry(rdev, &mddev->disks, same_set) {
4893 raid_disk = rdev->raid_disk;
NeilBrown5e5e3e72009-10-16 16:35:30 +11004894 if (raid_disk >= max_disks
NeilBrown91adb562009-03-31 14:39:39 +11004895 || raid_disk < 0)
4896 continue;
4897 disk = conf->disks + raid_disk;
4898
4899 disk->rdev = rdev;
4900
4901 if (test_bit(In_sync, &rdev->flags)) {
4902 char b[BDEVNAME_SIZE];
NeilBrown0c55e022010-05-03 14:09:02 +10004903 printk(KERN_INFO "md/raid:%s: device %s operational as raid"
4904 " disk %d\n",
4905 mdname(mddev), bdevname(rdev->bdev, b), raid_disk);
NeilBrown91adb562009-03-31 14:39:39 +11004906 } else
4907 /* Cannot rely on bitmap to complete recovery */
4908 conf->fullsync = 1;
4909 }
4910
Andre Noll09c9e5f2009-06-18 08:45:55 +10004911 conf->chunk_sectors = mddev->new_chunk_sectors;
NeilBrown91adb562009-03-31 14:39:39 +11004912 conf->level = mddev->new_level;
4913 if (conf->level == 6)
4914 conf->max_degraded = 2;
4915 else
4916 conf->max_degraded = 1;
4917 conf->algorithm = mddev->new_layout;
4918 conf->max_nr_stripes = NR_STRIPES;
NeilBrownfef9c612009-03-31 15:16:46 +11004919 conf->reshape_progress = mddev->reshape_position;
NeilBrowne183eae2009-03-31 15:20:22 +11004920 if (conf->reshape_progress != MaxSector) {
Andre Noll09c9e5f2009-06-18 08:45:55 +10004921 conf->prev_chunk_sectors = mddev->chunk_sectors;
NeilBrowne183eae2009-03-31 15:20:22 +11004922 conf->prev_algo = mddev->layout;
4923 }
NeilBrown91adb562009-03-31 14:39:39 +11004924
4925 memory = conf->max_nr_stripes * (sizeof(struct stripe_head) +
NeilBrown5e5e3e72009-10-16 16:35:30 +11004926 max_disks * ((sizeof(struct bio) + PAGE_SIZE))) / 1024;
NeilBrown91adb562009-03-31 14:39:39 +11004927 if (grow_stripes(conf, conf->max_nr_stripes)) {
4928 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10004929 "md/raid:%s: couldn't allocate %dkB for buffers\n",
4930 mdname(mddev), memory);
NeilBrown91adb562009-03-31 14:39:39 +11004931 goto abort;
4932 } else
NeilBrown0c55e022010-05-03 14:09:02 +10004933 printk(KERN_INFO "md/raid:%s: allocated %dkB\n",
4934 mdname(mddev), memory);
NeilBrown91adb562009-03-31 14:39:39 +11004935
NeilBrown0da3c612009-09-23 18:09:45 +10004936 conf->thread = md_register_thread(raid5d, mddev, NULL);
NeilBrown91adb562009-03-31 14:39:39 +11004937 if (!conf->thread) {
4938 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10004939 "md/raid:%s: couldn't allocate thread.\n",
NeilBrown91adb562009-03-31 14:39:39 +11004940 mdname(mddev));
4941 goto abort;
4942 }
4943
4944 return conf;
4945
4946 abort:
4947 if (conf) {
Dan Williams95fc17a2009-07-31 12:39:15 +10004948 free_conf(conf);
NeilBrown91adb562009-03-31 14:39:39 +11004949 return ERR_PTR(-EIO);
4950 } else
4951 return ERR_PTR(-ENOMEM);
4952}
4953
NeilBrownc148ffd2009-11-13 17:47:00 +11004954
4955static int only_parity(int raid_disk, int algo, int raid_disks, int max_degraded)
4956{
4957 switch (algo) {
4958 case ALGORITHM_PARITY_0:
4959 if (raid_disk < max_degraded)
4960 return 1;
4961 break;
4962 case ALGORITHM_PARITY_N:
4963 if (raid_disk >= raid_disks - max_degraded)
4964 return 1;
4965 break;
4966 case ALGORITHM_PARITY_0_6:
4967 if (raid_disk == 0 ||
4968 raid_disk == raid_disks - 1)
4969 return 1;
4970 break;
4971 case ALGORITHM_LEFT_ASYMMETRIC_6:
4972 case ALGORITHM_RIGHT_ASYMMETRIC_6:
4973 case ALGORITHM_LEFT_SYMMETRIC_6:
4974 case ALGORITHM_RIGHT_SYMMETRIC_6:
4975 if (raid_disk == raid_disks - 1)
4976 return 1;
4977 }
4978 return 0;
4979}
4980
NeilBrown91adb562009-03-31 14:39:39 +11004981static int run(mddev_t *mddev)
4982{
4983 raid5_conf_t *conf;
Martin K. Petersen8f6c2e42009-07-01 11:13:45 +10004984 int working_disks = 0, chunk_size;
NeilBrownc148ffd2009-11-13 17:47:00 +11004985 int dirty_parity_disks = 0;
NeilBrown91adb562009-03-31 14:39:39 +11004986 mdk_rdev_t *rdev;
NeilBrownc148ffd2009-11-13 17:47:00 +11004987 sector_t reshape_offset = 0;
NeilBrown91adb562009-03-31 14:39:39 +11004988
Andre Noll8c6ac862009-06-18 08:48:06 +10004989 if (mddev->recovery_cp != MaxSector)
NeilBrown0c55e022010-05-03 14:09:02 +10004990 printk(KERN_NOTICE "md/raid:%s: not clean"
Andre Noll8c6ac862009-06-18 08:48:06 +10004991 " -- starting background reconstruction\n",
4992 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08004993 if (mddev->reshape_position != MaxSector) {
4994 /* Check that we can continue the reshape.
4995 * Currently only disks can change, it must
4996 * increase, and we must be past the point where
4997 * a stripe over-writes itself
4998 */
4999 sector_t here_new, here_old;
5000 int old_disks;
Andre Noll18b00332009-03-31 15:00:56 +11005001 int max_degraded = (mddev->level == 6 ? 2 : 1);
NeilBrownf6705572006-03-27 01:18:11 -08005002
NeilBrown88ce4932009-03-31 15:24:23 +11005003 if (mddev->new_level != mddev->level) {
NeilBrown0c55e022010-05-03 14:09:02 +10005004 printk(KERN_ERR "md/raid:%s: unsupported reshape "
NeilBrownf4168852007-02-28 20:11:53 -08005005 "required - aborting.\n",
NeilBrownf6705572006-03-27 01:18:11 -08005006 mdname(mddev));
5007 return -EINVAL;
5008 }
NeilBrownf6705572006-03-27 01:18:11 -08005009 old_disks = mddev->raid_disks - mddev->delta_disks;
5010 /* reshape_position must be on a new-stripe boundary, and one
NeilBrownf4168852007-02-28 20:11:53 -08005011 * further up in new geometry must map after here in old
5012 * geometry.
NeilBrownf6705572006-03-27 01:18:11 -08005013 */
5014 here_new = mddev->reshape_position;
Andre Noll664e7c42009-06-18 08:45:27 +10005015 if (sector_div(here_new, mddev->new_chunk_sectors *
NeilBrownf4168852007-02-28 20:11:53 -08005016 (mddev->raid_disks - max_degraded))) {
NeilBrown0c55e022010-05-03 14:09:02 +10005017 printk(KERN_ERR "md/raid:%s: reshape_position not "
5018 "on a stripe boundary\n", mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08005019 return -EINVAL;
5020 }
NeilBrownc148ffd2009-11-13 17:47:00 +11005021 reshape_offset = here_new * mddev->new_chunk_sectors;
NeilBrownf6705572006-03-27 01:18:11 -08005022 /* here_new is the stripe we will write to */
5023 here_old = mddev->reshape_position;
Andre Noll9d8f0362009-06-18 08:45:01 +10005024 sector_div(here_old, mddev->chunk_sectors *
NeilBrownf4168852007-02-28 20:11:53 -08005025 (old_disks-max_degraded));
5026 /* here_old is the first stripe that we might need to read
5027 * from */
NeilBrown67ac6012009-08-13 10:06:24 +10005028 if (mddev->delta_disks == 0) {
5029 /* We cannot be sure it is safe to start an in-place
5030 * reshape. It is only safe if user-space if monitoring
5031 * and taking constant backups.
5032 * mdadm always starts a situation like this in
5033 * readonly mode so it can take control before
5034 * allowing any writes. So just check for that.
5035 */
5036 if ((here_new * mddev->new_chunk_sectors !=
5037 here_old * mddev->chunk_sectors) ||
5038 mddev->ro == 0) {
NeilBrown0c55e022010-05-03 14:09:02 +10005039 printk(KERN_ERR "md/raid:%s: in-place reshape must be started"
5040 " in read-only mode - aborting\n",
5041 mdname(mddev));
NeilBrown67ac6012009-08-13 10:06:24 +10005042 return -EINVAL;
5043 }
5044 } else if (mddev->delta_disks < 0
5045 ? (here_new * mddev->new_chunk_sectors <=
5046 here_old * mddev->chunk_sectors)
5047 : (here_new * mddev->new_chunk_sectors >=
5048 here_old * mddev->chunk_sectors)) {
NeilBrownf6705572006-03-27 01:18:11 -08005049 /* Reading from the same stripe as writing to - bad */
NeilBrown0c55e022010-05-03 14:09:02 +10005050 printk(KERN_ERR "md/raid:%s: reshape_position too early for "
5051 "auto-recovery - aborting.\n",
5052 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08005053 return -EINVAL;
5054 }
NeilBrown0c55e022010-05-03 14:09:02 +10005055 printk(KERN_INFO "md/raid:%s: reshape will continue\n",
5056 mdname(mddev));
NeilBrownf6705572006-03-27 01:18:11 -08005057 /* OK, we should be able to continue; */
NeilBrownf6705572006-03-27 01:18:11 -08005058 } else {
NeilBrown91adb562009-03-31 14:39:39 +11005059 BUG_ON(mddev->level != mddev->new_level);
5060 BUG_ON(mddev->layout != mddev->new_layout);
Andre Noll664e7c42009-06-18 08:45:27 +10005061 BUG_ON(mddev->chunk_sectors != mddev->new_chunk_sectors);
NeilBrown91adb562009-03-31 14:39:39 +11005062 BUG_ON(mddev->delta_disks != 0);
NeilBrownf6705572006-03-27 01:18:11 -08005063 }
5064
NeilBrown245f46c2009-03-31 14:39:39 +11005065 if (mddev->private == NULL)
5066 conf = setup_conf(mddev);
5067 else
5068 conf = mddev->private;
5069
NeilBrown91adb562009-03-31 14:39:39 +11005070 if (IS_ERR(conf))
5071 return PTR_ERR(conf);
NeilBrown9ffae0c2006-01-06 00:20:32 -08005072
NeilBrown91adb562009-03-31 14:39:39 +11005073 mddev->thread = conf->thread;
5074 conf->thread = NULL;
5075 mddev->private = conf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005076
Linus Torvalds1da177e2005-04-16 15:20:36 -07005077 /*
NeilBrown16a53ec2006-06-26 00:27:38 -07005078 * 0 for a fully functional array, 1 or 2 for a degraded array.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005079 */
NeilBrownc148ffd2009-11-13 17:47:00 +11005080 list_for_each_entry(rdev, &mddev->disks, same_set) {
5081 if (rdev->raid_disk < 0)
5082 continue;
NeilBrown2f115882010-06-17 17:41:03 +10005083 if (test_bit(In_sync, &rdev->flags)) {
NeilBrown91adb562009-03-31 14:39:39 +11005084 working_disks++;
NeilBrown2f115882010-06-17 17:41:03 +10005085 continue;
5086 }
NeilBrownc148ffd2009-11-13 17:47:00 +11005087 /* This disc is not fully in-sync. However if it
5088 * just stored parity (beyond the recovery_offset),
5089 * when we don't need to be concerned about the
5090 * array being dirty.
5091 * When reshape goes 'backwards', we never have
5092 * partially completed devices, so we only need
5093 * to worry about reshape going forwards.
5094 */
5095 /* Hack because v0.91 doesn't store recovery_offset properly. */
5096 if (mddev->major_version == 0 &&
5097 mddev->minor_version > 90)
5098 rdev->recovery_offset = reshape_offset;
5099
NeilBrownc148ffd2009-11-13 17:47:00 +11005100 if (rdev->recovery_offset < reshape_offset) {
5101 /* We need to check old and new layout */
5102 if (!only_parity(rdev->raid_disk,
5103 conf->algorithm,
5104 conf->raid_disks,
5105 conf->max_degraded))
5106 continue;
5107 }
5108 if (!only_parity(rdev->raid_disk,
5109 conf->prev_algo,
5110 conf->previous_raid_disks,
5111 conf->max_degraded))
5112 continue;
5113 dirty_parity_disks++;
5114 }
NeilBrown91adb562009-03-31 14:39:39 +11005115
NeilBrown5e5e3e72009-10-16 16:35:30 +11005116 mddev->degraded = (max(conf->raid_disks, conf->previous_raid_disks)
5117 - working_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005118
NeilBrown674806d2010-06-16 17:17:53 +10005119 if (has_failed(conf)) {
NeilBrown0c55e022010-05-03 14:09:02 +10005120 printk(KERN_ERR "md/raid:%s: not enough operational devices"
Linus Torvalds1da177e2005-04-16 15:20:36 -07005121 " (%d/%d failed)\n",
NeilBrown02c2de82006-10-03 01:15:47 -07005122 mdname(mddev), mddev->degraded, conf->raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005123 goto abort;
5124 }
5125
NeilBrown91adb562009-03-31 14:39:39 +11005126 /* device size must be a multiple of chunk size */
Andre Noll9d8f0362009-06-18 08:45:01 +10005127 mddev->dev_sectors &= ~(mddev->chunk_sectors - 1);
NeilBrown91adb562009-03-31 14:39:39 +11005128 mddev->resync_max_sectors = mddev->dev_sectors;
5129
NeilBrownc148ffd2009-11-13 17:47:00 +11005130 if (mddev->degraded > dirty_parity_disks &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07005131 mddev->recovery_cp != MaxSector) {
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08005132 if (mddev->ok_start_degraded)
5133 printk(KERN_WARNING
NeilBrown0c55e022010-05-03 14:09:02 +10005134 "md/raid:%s: starting dirty degraded array"
5135 " - data corruption possible.\n",
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08005136 mdname(mddev));
5137 else {
5138 printk(KERN_ERR
NeilBrown0c55e022010-05-03 14:09:02 +10005139 "md/raid:%s: cannot start dirty degraded array.\n",
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08005140 mdname(mddev));
5141 goto abort;
5142 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005143 }
5144
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145 if (mddev->degraded == 0)
NeilBrown0c55e022010-05-03 14:09:02 +10005146 printk(KERN_INFO "md/raid:%s: raid level %d active with %d out of %d"
5147 " devices, algorithm %d\n", mdname(mddev), conf->level,
NeilBrowne183eae2009-03-31 15:20:22 +11005148 mddev->raid_disks-mddev->degraded, mddev->raid_disks,
5149 mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005150 else
NeilBrown0c55e022010-05-03 14:09:02 +10005151 printk(KERN_ALERT "md/raid:%s: raid level %d active with %d"
5152 " out of %d devices, algorithm %d\n",
5153 mdname(mddev), conf->level,
5154 mddev->raid_disks - mddev->degraded,
5155 mddev->raid_disks, mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005156
5157 print_raid5_conf(conf);
5158
NeilBrownfef9c612009-03-31 15:16:46 +11005159 if (conf->reshape_progress != MaxSector) {
NeilBrownfef9c612009-03-31 15:16:46 +11005160 conf->reshape_safe = conf->reshape_progress;
NeilBrownf6705572006-03-27 01:18:11 -08005161 atomic_set(&conf->reshape_stripes, 0);
5162 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
5163 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
5164 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
5165 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
5166 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
NeilBrown0da3c612009-09-23 18:09:45 +10005167 "reshape");
NeilBrownf6705572006-03-27 01:18:11 -08005168 }
5169
Linus Torvalds1da177e2005-04-16 15:20:36 -07005170
5171 /* Ok, everything is just fine now */
NeilBrowna64c8762010-04-14 17:15:37 +10005172 if (mddev->to_remove == &raid5_attrs_group)
5173 mddev->to_remove = NULL;
NeilBrown00bcb4a2010-06-01 19:37:23 +10005174 else if (mddev->kobj.sd &&
5175 sysfs_create_group(&mddev->kobj, &raid5_attrs_group))
NeilBrown5e55e2f2007-03-26 21:32:14 -08005176 printk(KERN_WARNING
NeilBrown4a5add42010-06-01 19:37:28 +10005177 "raid5: failed to create sysfs attributes for %s\n",
NeilBrown5e55e2f2007-03-26 21:32:14 -08005178 mdname(mddev));
NeilBrown4a5add42010-06-01 19:37:28 +10005179 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
5180
5181 if (mddev->queue) {
5182 /* read-ahead size must cover two whole stripes, which
5183 * is 2 * (datadisks) * chunksize where 'n' is the
5184 * number of raid devices
5185 */
5186 int data_disks = conf->previous_raid_disks - conf->max_degraded;
5187 int stripe = data_disks *
5188 ((mddev->chunk_sectors << 9) / PAGE_SIZE);
5189 if (mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
5190 mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
5191
5192 blk_queue_merge_bvec(mddev->queue, raid5_mergeable_bvec);
NeilBrown11d8a6e2010-07-26 11:57:07 +10005193
5194 mddev->queue->backing_dev_info.congested_data = mddev;
5195 mddev->queue->backing_dev_info.congested_fn = raid5_congested;
NeilBrown4a5add42010-06-01 19:37:28 +10005196 }
NeilBrown7a5febe2005-05-16 21:53:16 -07005197
NeilBrown91adb562009-03-31 14:39:39 +11005198 mddev->queue->queue_lock = &conf->device_lock;
5199
NeilBrown7a5febe2005-05-16 21:53:16 -07005200 mddev->queue->unplug_fn = raid5_unplug_device;
NeilBrownf022b2f2006-10-03 01:15:56 -07005201
Martin K. Petersen8f6c2e42009-07-01 11:13:45 +10005202 chunk_size = mddev->chunk_sectors << 9;
5203 blk_queue_io_min(mddev->queue, chunk_size);
5204 blk_queue_io_opt(mddev->queue, chunk_size *
5205 (conf->raid_disks - conf->max_degraded));
5206
5207 list_for_each_entry(rdev, &mddev->disks, same_set)
5208 disk_stack_limits(mddev->gendisk, rdev->bdev,
5209 rdev->data_offset << 9);
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08005210
Linus Torvalds1da177e2005-04-16 15:20:36 -07005211 return 0;
5212abort:
NeilBrowne0cf8f02009-03-31 14:39:39 +11005213 md_unregister_thread(mddev->thread);
NeilBrown91adb562009-03-31 14:39:39 +11005214 mddev->thread = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005215 if (conf) {
5216 print_raid5_conf(conf);
Dan Williams95fc17a2009-07-31 12:39:15 +10005217 free_conf(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005218 }
5219 mddev->private = NULL;
NeilBrown0c55e022010-05-03 14:09:02 +10005220 printk(KERN_ALERT "md/raid:%s: failed to run raid set.\n", mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005221 return -EIO;
5222}
5223
NeilBrown3f294f42005-11-08 21:39:25 -08005224static int stop(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005225{
H Hartley Sweeten7b928132010-03-08 16:02:40 +11005226 raid5_conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005227
5228 md_unregister_thread(mddev->thread);
5229 mddev->thread = NULL;
NeilBrown11d8a6e2010-07-26 11:57:07 +10005230 if (mddev->queue)
5231 mddev->queue->backing_dev_info.congested_fn = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005232 blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/
Dan Williams95fc17a2009-07-31 12:39:15 +10005233 free_conf(conf);
NeilBrowna64c8762010-04-14 17:15:37 +10005234 mddev->private = NULL;
5235 mddev->to_remove = &raid5_attrs_group;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005236 return 0;
5237}
5238
Dan Williams45b42332007-07-09 11:56:43 -07005239#ifdef DEBUG
NeilBrownd710e132008-10-13 11:55:12 +11005240static void print_sh(struct seq_file *seq, struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005241{
5242 int i;
5243
NeilBrown16a53ec2006-06-26 00:27:38 -07005244 seq_printf(seq, "sh %llu, pd_idx %d, state %ld.\n",
5245 (unsigned long long)sh->sector, sh->pd_idx, sh->state);
5246 seq_printf(seq, "sh %llu, count %d.\n",
5247 (unsigned long long)sh->sector, atomic_read(&sh->count));
5248 seq_printf(seq, "sh %llu, ", (unsigned long long)sh->sector);
NeilBrown7ecaa1e2006-03-27 01:18:08 -08005249 for (i = 0; i < sh->disks; i++) {
NeilBrown16a53ec2006-06-26 00:27:38 -07005250 seq_printf(seq, "(cache%d: %p %ld) ",
5251 i, sh->dev[i].page, sh->dev[i].flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005252 }
NeilBrown16a53ec2006-06-26 00:27:38 -07005253 seq_printf(seq, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005254}
5255
NeilBrownd710e132008-10-13 11:55:12 +11005256static void printall(struct seq_file *seq, raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005257{
5258 struct stripe_head *sh;
NeilBrownfccddba2006-01-06 00:20:33 -08005259 struct hlist_node *hn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005260 int i;
5261
5262 spin_lock_irq(&conf->device_lock);
5263 for (i = 0; i < NR_HASH; i++) {
NeilBrownfccddba2006-01-06 00:20:33 -08005264 hlist_for_each_entry(sh, hn, &conf->stripe_hashtbl[i], hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005265 if (sh->raid_conf != conf)
5266 continue;
NeilBrown16a53ec2006-06-26 00:27:38 -07005267 print_sh(seq, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005268 }
5269 }
5270 spin_unlock_irq(&conf->device_lock);
5271}
5272#endif
5273
NeilBrownd710e132008-10-13 11:55:12 +11005274static void status(struct seq_file *seq, mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005275{
H Hartley Sweeten7b928132010-03-08 16:02:40 +11005276 raid5_conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005277 int i;
5278
Andre Noll9d8f0362009-06-18 08:45:01 +10005279 seq_printf(seq, " level %d, %dk chunk, algorithm %d", mddev->level,
5280 mddev->chunk_sectors / 2, mddev->layout);
NeilBrown02c2de82006-10-03 01:15:47 -07005281 seq_printf (seq, " [%d/%d] [", conf->raid_disks, conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005282 for (i = 0; i < conf->raid_disks; i++)
5283 seq_printf (seq, "%s",
5284 conf->disks[i].rdev &&
NeilBrownb2d444d2005-11-08 21:39:31 -08005285 test_bit(In_sync, &conf->disks[i].rdev->flags) ? "U" : "_");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005286 seq_printf (seq, "]");
Dan Williams45b42332007-07-09 11:56:43 -07005287#ifdef DEBUG
NeilBrown16a53ec2006-06-26 00:27:38 -07005288 seq_printf (seq, "\n");
5289 printall(seq, conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005290#endif
5291}
5292
5293static void print_raid5_conf (raid5_conf_t *conf)
5294{
5295 int i;
5296 struct disk_info *tmp;
5297
NeilBrown0c55e022010-05-03 14:09:02 +10005298 printk(KERN_DEBUG "RAID conf printout:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07005299 if (!conf) {
5300 printk("(conf==NULL)\n");
5301 return;
5302 }
NeilBrown0c55e022010-05-03 14:09:02 +10005303 printk(KERN_DEBUG " --- level:%d rd:%d wd:%d\n", conf->level,
5304 conf->raid_disks,
5305 conf->raid_disks - conf->mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005306
5307 for (i = 0; i < conf->raid_disks; i++) {
5308 char b[BDEVNAME_SIZE];
5309 tmp = conf->disks + i;
5310 if (tmp->rdev)
NeilBrown0c55e022010-05-03 14:09:02 +10005311 printk(KERN_DEBUG " disk %d, o:%d, dev:%s\n",
5312 i, !test_bit(Faulty, &tmp->rdev->flags),
5313 bdevname(tmp->rdev->bdev, b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005314 }
5315}
5316
5317static int raid5_spare_active(mddev_t *mddev)
5318{
5319 int i;
5320 raid5_conf_t *conf = mddev->private;
5321 struct disk_info *tmp;
5322
5323 for (i = 0; i < conf->raid_disks; i++) {
5324 tmp = conf->disks + i;
5325 if (tmp->rdev
NeilBrown70fffd02010-06-16 17:01:25 +10005326 && tmp->rdev->recovery_offset == MaxSector
NeilBrownb2d444d2005-11-08 21:39:31 -08005327 && !test_bit(Faulty, &tmp->rdev->flags)
NeilBrownc04be0a2006-10-03 01:15:53 -07005328 && !test_and_set_bit(In_sync, &tmp->rdev->flags)) {
5329 unsigned long flags;
5330 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005331 mddev->degraded--;
NeilBrownc04be0a2006-10-03 01:15:53 -07005332 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005333 }
5334 }
5335 print_raid5_conf(conf);
5336 return 0;
5337}
5338
5339static int raid5_remove_disk(mddev_t *mddev, int number)
5340{
5341 raid5_conf_t *conf = mddev->private;
5342 int err = 0;
5343 mdk_rdev_t *rdev;
5344 struct disk_info *p = conf->disks + number;
5345
5346 print_raid5_conf(conf);
5347 rdev = p->rdev;
5348 if (rdev) {
NeilBrownec32a2b2009-03-31 15:17:38 +11005349 if (number >= conf->raid_disks &&
5350 conf->reshape_progress == MaxSector)
5351 clear_bit(In_sync, &rdev->flags);
5352
NeilBrownb2d444d2005-11-08 21:39:31 -08005353 if (test_bit(In_sync, &rdev->flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07005354 atomic_read(&rdev->nr_pending)) {
5355 err = -EBUSY;
5356 goto abort;
5357 }
NeilBrowndfc70642008-05-23 13:04:39 -07005358 /* Only remove non-faulty devices if recovery
5359 * isn't possible.
5360 */
5361 if (!test_bit(Faulty, &rdev->flags) &&
NeilBrown674806d2010-06-16 17:17:53 +10005362 !has_failed(conf) &&
NeilBrownec32a2b2009-03-31 15:17:38 +11005363 number < conf->raid_disks) {
NeilBrowndfc70642008-05-23 13:04:39 -07005364 err = -EBUSY;
5365 goto abort;
5366 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005367 p->rdev = NULL;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07005368 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005369 if (atomic_read(&rdev->nr_pending)) {
5370 /* lost the race, try later */
5371 err = -EBUSY;
5372 p->rdev = rdev;
5373 }
5374 }
5375abort:
5376
5377 print_raid5_conf(conf);
5378 return err;
5379}
5380
5381static int raid5_add_disk(mddev_t *mddev, mdk_rdev_t *rdev)
5382{
5383 raid5_conf_t *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10005384 int err = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005385 int disk;
5386 struct disk_info *p;
Neil Brown6c2fce22008-06-28 08:31:31 +10005387 int first = 0;
5388 int last = conf->raid_disks - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005389
NeilBrown674806d2010-06-16 17:17:53 +10005390 if (has_failed(conf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07005391 /* no point adding a device */
Neil Brown199050e2008-06-28 08:31:33 +10005392 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005393
Neil Brown6c2fce22008-06-28 08:31:31 +10005394 if (rdev->raid_disk >= 0)
5395 first = last = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005396
5397 /*
NeilBrown16a53ec2006-06-26 00:27:38 -07005398 * find the disk ... but prefer rdev->saved_raid_disk
5399 * if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005400 */
NeilBrown16a53ec2006-06-26 00:27:38 -07005401 if (rdev->saved_raid_disk >= 0 &&
Neil Brown6c2fce22008-06-28 08:31:31 +10005402 rdev->saved_raid_disk >= first &&
NeilBrown16a53ec2006-06-26 00:27:38 -07005403 conf->disks[rdev->saved_raid_disk].rdev == NULL)
5404 disk = rdev->saved_raid_disk;
5405 else
Neil Brown6c2fce22008-06-28 08:31:31 +10005406 disk = first;
5407 for ( ; disk <= last ; disk++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005408 if ((p=conf->disks + disk)->rdev == NULL) {
NeilBrownb2d444d2005-11-08 21:39:31 -08005409 clear_bit(In_sync, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005410 rdev->raid_disk = disk;
Neil Brown199050e2008-06-28 08:31:33 +10005411 err = 0;
NeilBrown72626682005-09-09 16:23:54 -07005412 if (rdev->saved_raid_disk != disk)
5413 conf->fullsync = 1;
Suzanne Woodd6065f72005-11-08 21:39:27 -08005414 rcu_assign_pointer(p->rdev, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005415 break;
5416 }
5417 print_raid5_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10005418 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005419}
5420
5421static int raid5_resize(mddev_t *mddev, sector_t sectors)
5422{
5423 /* no resync is happening, and there is enough space
5424 * on all devices, so we can resize.
5425 * We need to make sure resync covers any new space.
5426 * If the array is shrinking we should possibly wait until
5427 * any io in the removed space completes, but it hardly seems
5428 * worth it.
5429 */
Andre Noll9d8f0362009-06-18 08:45:01 +10005430 sectors &= ~((sector_t)mddev->chunk_sectors - 1);
Dan Williams1f403622009-03-31 14:59:03 +11005431 md_set_array_sectors(mddev, raid5_size(mddev, sectors,
5432 mddev->raid_disks));
Dan Williamsb522adc2009-03-31 15:00:31 +11005433 if (mddev->array_sectors >
5434 raid5_size(mddev, sectors, mddev->raid_disks))
5435 return -EINVAL;
Andre Nollf233ea52008-07-21 17:05:22 +10005436 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10005437 revalidate_disk(mddev->gendisk);
Andre Noll58c0fed2009-03-31 14:33:13 +11005438 if (sectors > mddev->dev_sectors && mddev->recovery_cp == MaxSector) {
5439 mddev->recovery_cp = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005440 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
5441 }
Andre Noll58c0fed2009-03-31 14:33:13 +11005442 mddev->dev_sectors = sectors;
NeilBrown4b5c7ae2005-07-27 11:43:28 -07005443 mddev->resync_max_sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005444 return 0;
5445}
5446
NeilBrown01ee22b2009-06-18 08:47:20 +10005447static int check_stripe_cache(mddev_t *mddev)
5448{
5449 /* Can only proceed if there are plenty of stripe_heads.
5450 * We need a minimum of one full stripe,, and for sensible progress
5451 * it is best to have about 4 times that.
5452 * If we require 4 times, then the default 256 4K stripe_heads will
5453 * allow for chunk sizes up to 256K, which is probably OK.
5454 * If the chunk size is greater, user-space should request more
5455 * stripe_heads first.
5456 */
5457 raid5_conf_t *conf = mddev->private;
5458 if (((mddev->chunk_sectors << 9) / STRIPE_SIZE) * 4
5459 > conf->max_nr_stripes ||
5460 ((mddev->new_chunk_sectors << 9) / STRIPE_SIZE) * 4
5461 > conf->max_nr_stripes) {
NeilBrown0c55e022010-05-03 14:09:02 +10005462 printk(KERN_WARNING "md/raid:%s: reshape: not enough stripes. Needed %lu\n",
5463 mdname(mddev),
NeilBrown01ee22b2009-06-18 08:47:20 +10005464 ((max(mddev->chunk_sectors, mddev->new_chunk_sectors) << 9)
5465 / STRIPE_SIZE)*4);
5466 return 0;
5467 }
5468 return 1;
5469}
5470
NeilBrown50ac1682009-06-18 08:47:55 +10005471static int check_reshape(mddev_t *mddev)
NeilBrown29269552006-03-27 01:18:10 -08005472{
NeilBrown070ec552009-06-16 16:54:21 +10005473 raid5_conf_t *conf = mddev->private;
NeilBrown29269552006-03-27 01:18:10 -08005474
NeilBrown88ce4932009-03-31 15:24:23 +11005475 if (mddev->delta_disks == 0 &&
5476 mddev->new_layout == mddev->layout &&
Andre Noll664e7c42009-06-18 08:45:27 +10005477 mddev->new_chunk_sectors == mddev->chunk_sectors)
NeilBrown50ac1682009-06-18 08:47:55 +10005478 return 0; /* nothing to do */
NeilBrowndba034e2008-08-05 15:54:13 +10005479 if (mddev->bitmap)
5480 /* Cannot grow a bitmap yet */
5481 return -EBUSY;
NeilBrown674806d2010-06-16 17:17:53 +10005482 if (has_failed(conf))
NeilBrownec32a2b2009-03-31 15:17:38 +11005483 return -EINVAL;
5484 if (mddev->delta_disks < 0) {
5485 /* We might be able to shrink, but the devices must
5486 * be made bigger first.
5487 * For raid6, 4 is the minimum size.
5488 * Otherwise 2 is the minimum
5489 */
5490 int min = 2;
5491 if (mddev->level == 6)
5492 min = 4;
5493 if (mddev->raid_disks + mddev->delta_disks < min)
5494 return -EINVAL;
5495 }
NeilBrown29269552006-03-27 01:18:10 -08005496
NeilBrown01ee22b2009-06-18 08:47:20 +10005497 if (!check_stripe_cache(mddev))
NeilBrown29269552006-03-27 01:18:10 -08005498 return -ENOSPC;
NeilBrown29269552006-03-27 01:18:10 -08005499
NeilBrownec32a2b2009-03-31 15:17:38 +11005500 return resize_stripes(conf, conf->raid_disks + mddev->delta_disks);
NeilBrown63c70c42006-03-27 01:18:13 -08005501}
5502
5503static int raid5_start_reshape(mddev_t *mddev)
5504{
NeilBrown070ec552009-06-16 16:54:21 +10005505 raid5_conf_t *conf = mddev->private;
NeilBrown63c70c42006-03-27 01:18:13 -08005506 mdk_rdev_t *rdev;
NeilBrown63c70c42006-03-27 01:18:13 -08005507 int spares = 0;
5508 int added_devices = 0;
NeilBrownc04be0a2006-10-03 01:15:53 -07005509 unsigned long flags;
NeilBrown63c70c42006-03-27 01:18:13 -08005510
NeilBrownf4168852007-02-28 20:11:53 -08005511 if (test_bit(MD_RECOVERY_RUNNING, &mddev->recovery))
NeilBrown63c70c42006-03-27 01:18:13 -08005512 return -EBUSY;
5513
NeilBrown01ee22b2009-06-18 08:47:20 +10005514 if (!check_stripe_cache(mddev))
5515 return -ENOSPC;
5516
Cheng Renquan159ec1f2009-01-09 08:31:08 +11005517 list_for_each_entry(rdev, &mddev->disks, same_set)
NeilBrown29269552006-03-27 01:18:10 -08005518 if (rdev->raid_disk < 0 &&
5519 !test_bit(Faulty, &rdev->flags))
5520 spares++;
NeilBrown63c70c42006-03-27 01:18:13 -08005521
NeilBrownf4168852007-02-28 20:11:53 -08005522 if (spares - mddev->degraded < mddev->delta_disks - conf->max_degraded)
NeilBrown29269552006-03-27 01:18:10 -08005523 /* Not enough devices even to make a degraded array
5524 * of that size
5525 */
5526 return -EINVAL;
5527
NeilBrownec32a2b2009-03-31 15:17:38 +11005528 /* Refuse to reduce size of the array. Any reductions in
5529 * array size must be through explicit setting of array_size
5530 * attribute.
5531 */
5532 if (raid5_size(mddev, 0, conf->raid_disks + mddev->delta_disks)
5533 < mddev->array_sectors) {
NeilBrown0c55e022010-05-03 14:09:02 +10005534 printk(KERN_ERR "md/raid:%s: array size must be reduced "
NeilBrownec32a2b2009-03-31 15:17:38 +11005535 "before number of disks\n", mdname(mddev));
5536 return -EINVAL;
5537 }
5538
NeilBrownf6705572006-03-27 01:18:11 -08005539 atomic_set(&conf->reshape_stripes, 0);
NeilBrown29269552006-03-27 01:18:10 -08005540 spin_lock_irq(&conf->device_lock);
5541 conf->previous_raid_disks = conf->raid_disks;
NeilBrown63c70c42006-03-27 01:18:13 -08005542 conf->raid_disks += mddev->delta_disks;
Andre Noll09c9e5f2009-06-18 08:45:55 +10005543 conf->prev_chunk_sectors = conf->chunk_sectors;
5544 conf->chunk_sectors = mddev->new_chunk_sectors;
NeilBrown88ce4932009-03-31 15:24:23 +11005545 conf->prev_algo = conf->algorithm;
5546 conf->algorithm = mddev->new_layout;
NeilBrownfef9c612009-03-31 15:16:46 +11005547 if (mddev->delta_disks < 0)
5548 conf->reshape_progress = raid5_size(mddev, 0, 0);
5549 else
5550 conf->reshape_progress = 0;
5551 conf->reshape_safe = conf->reshape_progress;
NeilBrown86b42c72009-03-31 15:19:03 +11005552 conf->generation++;
NeilBrown29269552006-03-27 01:18:10 -08005553 spin_unlock_irq(&conf->device_lock);
5554
5555 /* Add some new drives, as many as will fit.
5556 * We know there are enough to make the newly sized array work.
NeilBrown3424bf62010-06-17 17:48:26 +10005557 * Don't add devices if we are reducing the number of
5558 * devices in the array. This is because it is not possible
5559 * to correctly record the "partially reconstructed" state of
5560 * such devices during the reshape and confusion could result.
NeilBrown29269552006-03-27 01:18:10 -08005561 */
NeilBrown3424bf62010-06-17 17:48:26 +10005562 if (mddev->delta_disks >= 0)
5563 list_for_each_entry(rdev, &mddev->disks, same_set)
NeilBrown29269552006-03-27 01:18:10 -08005564 if (rdev->raid_disk < 0 &&
5565 !test_bit(Faulty, &rdev->flags)) {
Neil Brown199050e2008-06-28 08:31:33 +10005566 if (raid5_add_disk(mddev, rdev) == 0) {
NeilBrown29269552006-03-27 01:18:10 -08005567 char nm[20];
NeilBrown9eb07c22010-02-09 12:31:47 +11005568 if (rdev->raid_disk >= conf->previous_raid_disks) {
NeilBrown7ef90142009-11-13 17:40:51 +11005569 set_bit(In_sync, &rdev->flags);
NeilBrown9eb07c22010-02-09 12:31:47 +11005570 added_devices++;
5571 } else
NeilBrown7ef90142009-11-13 17:40:51 +11005572 rdev->recovery_offset = 0;
NeilBrown29269552006-03-27 01:18:10 -08005573 sprintf(nm, "rd%d", rdev->raid_disk);
NeilBrown5e55e2f2007-03-26 21:32:14 -08005574 if (sysfs_create_link(&mddev->kobj,
5575 &rdev->kobj, nm))
NeilBrown00bcb4a2010-06-01 19:37:23 +10005576 /* Failure here is OK */;
NeilBrown29269552006-03-27 01:18:10 -08005577 } else
5578 break;
5579 }
5580
NeilBrown9eb07c22010-02-09 12:31:47 +11005581 /* When a reshape changes the number of devices, ->degraded
NeilBrown3424bf62010-06-17 17:48:26 +10005582 * is measured against the larger of the pre and post number of
NeilBrown9eb07c22010-02-09 12:31:47 +11005583 * devices.*/
NeilBrownec32a2b2009-03-31 15:17:38 +11005584 if (mddev->delta_disks > 0) {
5585 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrown9eb07c22010-02-09 12:31:47 +11005586 mddev->degraded += (conf->raid_disks - conf->previous_raid_disks)
NeilBrownec32a2b2009-03-31 15:17:38 +11005587 - added_devices;
5588 spin_unlock_irqrestore(&conf->device_lock, flags);
5589 }
NeilBrown63c70c42006-03-27 01:18:13 -08005590 mddev->raid_disks = conf->raid_disks;
NeilBrowne5164022009-08-03 10:59:57 +10005591 mddev->reshape_position = conf->reshape_progress;
NeilBrown850b2b42006-10-03 01:15:46 -07005592 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrownf6705572006-03-27 01:18:11 -08005593
NeilBrown29269552006-03-27 01:18:10 -08005594 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
5595 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
5596 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
5597 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
5598 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
NeilBrown0da3c612009-09-23 18:09:45 +10005599 "reshape");
NeilBrown29269552006-03-27 01:18:10 -08005600 if (!mddev->sync_thread) {
5601 mddev->recovery = 0;
5602 spin_lock_irq(&conf->device_lock);
5603 mddev->raid_disks = conf->raid_disks = conf->previous_raid_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11005604 conf->reshape_progress = MaxSector;
NeilBrown29269552006-03-27 01:18:10 -08005605 spin_unlock_irq(&conf->device_lock);
5606 return -EAGAIN;
5607 }
NeilBrownc8f517c2009-03-31 15:28:40 +11005608 conf->reshape_checkpoint = jiffies;
NeilBrown29269552006-03-27 01:18:10 -08005609 md_wakeup_thread(mddev->sync_thread);
5610 md_new_event(mddev);
5611 return 0;
5612}
NeilBrown29269552006-03-27 01:18:10 -08005613
NeilBrownec32a2b2009-03-31 15:17:38 +11005614/* This is called from the reshape thread and should make any
5615 * changes needed in 'conf'
5616 */
NeilBrown29269552006-03-27 01:18:10 -08005617static void end_reshape(raid5_conf_t *conf)
5618{
NeilBrown29269552006-03-27 01:18:10 -08005619
NeilBrownf6705572006-03-27 01:18:11 -08005620 if (!test_bit(MD_RECOVERY_INTR, &conf->mddev->recovery)) {
Dan Williams80c3a6c2009-03-17 18:10:40 -07005621
NeilBrownf6705572006-03-27 01:18:11 -08005622 spin_lock_irq(&conf->device_lock);
NeilBrowncea9c222009-03-31 15:15:05 +11005623 conf->previous_raid_disks = conf->raid_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11005624 conf->reshape_progress = MaxSector;
NeilBrownf6705572006-03-27 01:18:11 -08005625 spin_unlock_irq(&conf->device_lock);
NeilBrownb0f9ec02009-03-31 15:27:18 +11005626 wake_up(&conf->wait_for_overlap);
NeilBrown16a53ec2006-06-26 00:27:38 -07005627
5628 /* read-ahead size must cover two whole stripes, which is
5629 * 2 * (datadisks) * chunksize where 'n' is the number of raid devices
5630 */
NeilBrown4a5add42010-06-01 19:37:28 +10005631 if (conf->mddev->queue) {
NeilBrowncea9c222009-03-31 15:15:05 +11005632 int data_disks = conf->raid_disks - conf->max_degraded;
Andre Noll09c9e5f2009-06-18 08:45:55 +10005633 int stripe = data_disks * ((conf->chunk_sectors << 9)
NeilBrowncea9c222009-03-31 15:15:05 +11005634 / PAGE_SIZE);
NeilBrown16a53ec2006-06-26 00:27:38 -07005635 if (conf->mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
5636 conf->mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
5637 }
NeilBrown29269552006-03-27 01:18:10 -08005638 }
NeilBrown29269552006-03-27 01:18:10 -08005639}
5640
NeilBrownec32a2b2009-03-31 15:17:38 +11005641/* This is called from the raid5d thread with mddev_lock held.
5642 * It makes config changes to the device.
5643 */
NeilBrowncea9c222009-03-31 15:15:05 +11005644static void raid5_finish_reshape(mddev_t *mddev)
5645{
NeilBrown070ec552009-06-16 16:54:21 +10005646 raid5_conf_t *conf = mddev->private;
NeilBrowncea9c222009-03-31 15:15:05 +11005647
5648 if (!test_bit(MD_RECOVERY_INTR, &mddev->recovery)) {
5649
NeilBrownec32a2b2009-03-31 15:17:38 +11005650 if (mddev->delta_disks > 0) {
5651 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
5652 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10005653 revalidate_disk(mddev->gendisk);
NeilBrownec32a2b2009-03-31 15:17:38 +11005654 } else {
5655 int d;
NeilBrownec32a2b2009-03-31 15:17:38 +11005656 mddev->degraded = conf->raid_disks;
5657 for (d = 0; d < conf->raid_disks ; d++)
5658 if (conf->disks[d].rdev &&
5659 test_bit(In_sync,
5660 &conf->disks[d].rdev->flags))
5661 mddev->degraded--;
5662 for (d = conf->raid_disks ;
5663 d < conf->raid_disks - mddev->delta_disks;
NeilBrown1a67dde2009-08-13 10:41:49 +10005664 d++) {
5665 mdk_rdev_t *rdev = conf->disks[d].rdev;
5666 if (rdev && raid5_remove_disk(mddev, d) == 0) {
5667 char nm[20];
5668 sprintf(nm, "rd%d", rdev->raid_disk);
5669 sysfs_remove_link(&mddev->kobj, nm);
5670 rdev->raid_disk = -1;
5671 }
5672 }
NeilBrowncea9c222009-03-31 15:15:05 +11005673 }
NeilBrown88ce4932009-03-31 15:24:23 +11005674 mddev->layout = conf->algorithm;
Andre Noll09c9e5f2009-06-18 08:45:55 +10005675 mddev->chunk_sectors = conf->chunk_sectors;
NeilBrownec32a2b2009-03-31 15:17:38 +11005676 mddev->reshape_position = MaxSector;
5677 mddev->delta_disks = 0;
NeilBrowncea9c222009-03-31 15:15:05 +11005678 }
5679}
5680
NeilBrown72626682005-09-09 16:23:54 -07005681static void raid5_quiesce(mddev_t *mddev, int state)
5682{
NeilBrown070ec552009-06-16 16:54:21 +10005683 raid5_conf_t *conf = mddev->private;
NeilBrown72626682005-09-09 16:23:54 -07005684
5685 switch(state) {
NeilBrowne464eaf2006-03-27 01:18:14 -08005686 case 2: /* resume for a suspend */
5687 wake_up(&conf->wait_for_overlap);
5688 break;
5689
NeilBrown72626682005-09-09 16:23:54 -07005690 case 1: /* stop all writes */
5691 spin_lock_irq(&conf->device_lock);
NeilBrown64bd6602009-08-03 10:59:58 +10005692 /* '2' tells resync/reshape to pause so that all
5693 * active stripes can drain
5694 */
5695 conf->quiesce = 2;
NeilBrown72626682005-09-09 16:23:54 -07005696 wait_event_lock_irq(conf->wait_for_stripe,
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005697 atomic_read(&conf->active_stripes) == 0 &&
5698 atomic_read(&conf->active_aligned_reads) == 0,
NeilBrown72626682005-09-09 16:23:54 -07005699 conf->device_lock, /* nothing */);
NeilBrown64bd6602009-08-03 10:59:58 +10005700 conf->quiesce = 1;
NeilBrown72626682005-09-09 16:23:54 -07005701 spin_unlock_irq(&conf->device_lock);
NeilBrown64bd6602009-08-03 10:59:58 +10005702 /* allow reshape to continue */
5703 wake_up(&conf->wait_for_overlap);
NeilBrown72626682005-09-09 16:23:54 -07005704 break;
5705
5706 case 0: /* re-enable writes */
5707 spin_lock_irq(&conf->device_lock);
5708 conf->quiesce = 0;
5709 wake_up(&conf->wait_for_stripe);
NeilBrowne464eaf2006-03-27 01:18:14 -08005710 wake_up(&conf->wait_for_overlap);
NeilBrown72626682005-09-09 16:23:54 -07005711 spin_unlock_irq(&conf->device_lock);
5712 break;
5713 }
NeilBrown72626682005-09-09 16:23:54 -07005714}
NeilBrownb15c2e52006-01-06 00:20:16 -08005715
NeilBrownd562b0c2009-03-31 14:39:39 +11005716
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005717static void *raid45_takeover_raid0(mddev_t *mddev, int level)
Trela Maciej54071b32010-03-08 16:02:42 +11005718{
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005719 struct raid0_private_data *raid0_priv = mddev->private;
Trela Maciej54071b32010-03-08 16:02:42 +11005720
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005721 /* for raid0 takeover only one zone is supported */
5722 if (raid0_priv->nr_strip_zones > 1) {
NeilBrown0c55e022010-05-03 14:09:02 +10005723 printk(KERN_ERR "md/raid:%s: cannot takeover raid0 with more than one zone.\n",
5724 mdname(mddev));
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005725 return ERR_PTR(-EINVAL);
5726 }
5727
5728 mddev->new_level = level;
Trela Maciej54071b32010-03-08 16:02:42 +11005729 mddev->new_layout = ALGORITHM_PARITY_N;
5730 mddev->new_chunk_sectors = mddev->chunk_sectors;
5731 mddev->raid_disks += 1;
5732 mddev->delta_disks = 1;
5733 /* make sure it will be not marked as dirty */
5734 mddev->recovery_cp = MaxSector;
5735
5736 return setup_conf(mddev);
5737}
5738
5739
NeilBrownd562b0c2009-03-31 14:39:39 +11005740static void *raid5_takeover_raid1(mddev_t *mddev)
5741{
5742 int chunksect;
5743
5744 if (mddev->raid_disks != 2 ||
5745 mddev->degraded > 1)
5746 return ERR_PTR(-EINVAL);
5747
5748 /* Should check if there are write-behind devices? */
5749
5750 chunksect = 64*2; /* 64K by default */
5751
5752 /* The array must be an exact multiple of chunksize */
5753 while (chunksect && (mddev->array_sectors & (chunksect-1)))
5754 chunksect >>= 1;
5755
5756 if ((chunksect<<9) < STRIPE_SIZE)
5757 /* array size does not allow a suitable chunk size */
5758 return ERR_PTR(-EINVAL);
5759
5760 mddev->new_level = 5;
5761 mddev->new_layout = ALGORITHM_LEFT_SYMMETRIC;
Andre Noll664e7c42009-06-18 08:45:27 +10005762 mddev->new_chunk_sectors = chunksect;
NeilBrownd562b0c2009-03-31 14:39:39 +11005763
5764 return setup_conf(mddev);
5765}
5766
NeilBrownfc9739c2009-03-31 14:57:20 +11005767static void *raid5_takeover_raid6(mddev_t *mddev)
5768{
5769 int new_layout;
5770
5771 switch (mddev->layout) {
5772 case ALGORITHM_LEFT_ASYMMETRIC_6:
5773 new_layout = ALGORITHM_LEFT_ASYMMETRIC;
5774 break;
5775 case ALGORITHM_RIGHT_ASYMMETRIC_6:
5776 new_layout = ALGORITHM_RIGHT_ASYMMETRIC;
5777 break;
5778 case ALGORITHM_LEFT_SYMMETRIC_6:
5779 new_layout = ALGORITHM_LEFT_SYMMETRIC;
5780 break;
5781 case ALGORITHM_RIGHT_SYMMETRIC_6:
5782 new_layout = ALGORITHM_RIGHT_SYMMETRIC;
5783 break;
5784 case ALGORITHM_PARITY_0_6:
5785 new_layout = ALGORITHM_PARITY_0;
5786 break;
5787 case ALGORITHM_PARITY_N:
5788 new_layout = ALGORITHM_PARITY_N;
5789 break;
5790 default:
5791 return ERR_PTR(-EINVAL);
5792 }
5793 mddev->new_level = 5;
5794 mddev->new_layout = new_layout;
5795 mddev->delta_disks = -1;
5796 mddev->raid_disks -= 1;
5797 return setup_conf(mddev);
5798}
5799
NeilBrownd562b0c2009-03-31 14:39:39 +11005800
NeilBrown50ac1682009-06-18 08:47:55 +10005801static int raid5_check_reshape(mddev_t *mddev)
NeilBrownb3546032009-03-31 14:56:41 +11005802{
NeilBrown88ce4932009-03-31 15:24:23 +11005803 /* For a 2-drive array, the layout and chunk size can be changed
5804 * immediately as not restriping is needed.
5805 * For larger arrays we record the new value - after validation
5806 * to be used by a reshape pass.
NeilBrownb3546032009-03-31 14:56:41 +11005807 */
NeilBrown070ec552009-06-16 16:54:21 +10005808 raid5_conf_t *conf = mddev->private;
NeilBrown597a7112009-06-18 08:47:42 +10005809 int new_chunk = mddev->new_chunk_sectors;
NeilBrownb3546032009-03-31 14:56:41 +11005810
NeilBrown597a7112009-06-18 08:47:42 +10005811 if (mddev->new_layout >= 0 && !algorithm_valid_raid5(mddev->new_layout))
NeilBrownb3546032009-03-31 14:56:41 +11005812 return -EINVAL;
5813 if (new_chunk > 0) {
Andre Noll0ba459d2009-06-18 08:46:10 +10005814 if (!is_power_of_2(new_chunk))
NeilBrownb3546032009-03-31 14:56:41 +11005815 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10005816 if (new_chunk < (PAGE_SIZE>>9))
NeilBrownb3546032009-03-31 14:56:41 +11005817 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10005818 if (mddev->array_sectors & (new_chunk-1))
NeilBrownb3546032009-03-31 14:56:41 +11005819 /* not factor of array size */
5820 return -EINVAL;
5821 }
5822
5823 /* They look valid */
5824
NeilBrown88ce4932009-03-31 15:24:23 +11005825 if (mddev->raid_disks == 2) {
NeilBrown597a7112009-06-18 08:47:42 +10005826 /* can make the change immediately */
5827 if (mddev->new_layout >= 0) {
5828 conf->algorithm = mddev->new_layout;
5829 mddev->layout = mddev->new_layout;
NeilBrown88ce4932009-03-31 15:24:23 +11005830 }
5831 if (new_chunk > 0) {
NeilBrown597a7112009-06-18 08:47:42 +10005832 conf->chunk_sectors = new_chunk ;
5833 mddev->chunk_sectors = new_chunk;
NeilBrown88ce4932009-03-31 15:24:23 +11005834 }
5835 set_bit(MD_CHANGE_DEVS, &mddev->flags);
5836 md_wakeup_thread(mddev->thread);
NeilBrownb3546032009-03-31 14:56:41 +11005837 }
NeilBrown50ac1682009-06-18 08:47:55 +10005838 return check_reshape(mddev);
NeilBrown88ce4932009-03-31 15:24:23 +11005839}
5840
NeilBrown50ac1682009-06-18 08:47:55 +10005841static int raid6_check_reshape(mddev_t *mddev)
NeilBrown88ce4932009-03-31 15:24:23 +11005842{
NeilBrown597a7112009-06-18 08:47:42 +10005843 int new_chunk = mddev->new_chunk_sectors;
NeilBrown50ac1682009-06-18 08:47:55 +10005844
NeilBrown597a7112009-06-18 08:47:42 +10005845 if (mddev->new_layout >= 0 && !algorithm_valid_raid6(mddev->new_layout))
NeilBrown88ce4932009-03-31 15:24:23 +11005846 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11005847 if (new_chunk > 0) {
Andre Noll0ba459d2009-06-18 08:46:10 +10005848 if (!is_power_of_2(new_chunk))
NeilBrown88ce4932009-03-31 15:24:23 +11005849 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10005850 if (new_chunk < (PAGE_SIZE >> 9))
NeilBrown88ce4932009-03-31 15:24:23 +11005851 return -EINVAL;
NeilBrown597a7112009-06-18 08:47:42 +10005852 if (mddev->array_sectors & (new_chunk-1))
NeilBrown88ce4932009-03-31 15:24:23 +11005853 /* not factor of array size */
5854 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11005855 }
NeilBrown88ce4932009-03-31 15:24:23 +11005856
5857 /* They look valid */
NeilBrown50ac1682009-06-18 08:47:55 +10005858 return check_reshape(mddev);
NeilBrownb3546032009-03-31 14:56:41 +11005859}
5860
NeilBrownd562b0c2009-03-31 14:39:39 +11005861static void *raid5_takeover(mddev_t *mddev)
5862{
5863 /* raid5 can take over:
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005864 * raid0 - if there is only one strip zone - make it a raid4 layout
NeilBrownd562b0c2009-03-31 14:39:39 +11005865 * raid1 - if there are two drives. We need to know the chunk size
5866 * raid4 - trivial - just use a raid4 layout.
5867 * raid6 - Providing it is a *_6 layout
NeilBrownd562b0c2009-03-31 14:39:39 +11005868 */
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005869 if (mddev->level == 0)
5870 return raid45_takeover_raid0(mddev, 5);
NeilBrownd562b0c2009-03-31 14:39:39 +11005871 if (mddev->level == 1)
5872 return raid5_takeover_raid1(mddev);
NeilBrowne9d47582009-03-31 14:57:09 +11005873 if (mddev->level == 4) {
5874 mddev->new_layout = ALGORITHM_PARITY_N;
5875 mddev->new_level = 5;
5876 return setup_conf(mddev);
5877 }
NeilBrownfc9739c2009-03-31 14:57:20 +11005878 if (mddev->level == 6)
5879 return raid5_takeover_raid6(mddev);
NeilBrownd562b0c2009-03-31 14:39:39 +11005880
5881 return ERR_PTR(-EINVAL);
5882}
5883
NeilBrowna78d38a2010-03-22 16:53:49 +11005884static void *raid4_takeover(mddev_t *mddev)
5885{
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005886 /* raid4 can take over:
5887 * raid0 - if there is only one strip zone
5888 * raid5 - if layout is right
NeilBrowna78d38a2010-03-22 16:53:49 +11005889 */
Dan Williamsf1b29bc2010-05-01 18:09:05 -07005890 if (mddev->level == 0)
5891 return raid45_takeover_raid0(mddev, 4);
NeilBrowna78d38a2010-03-22 16:53:49 +11005892 if (mddev->level == 5 &&
5893 mddev->layout == ALGORITHM_PARITY_N) {
5894 mddev->new_layout = 0;
5895 mddev->new_level = 4;
5896 return setup_conf(mddev);
5897 }
5898 return ERR_PTR(-EINVAL);
5899}
NeilBrownd562b0c2009-03-31 14:39:39 +11005900
NeilBrown245f46c2009-03-31 14:39:39 +11005901static struct mdk_personality raid5_personality;
5902
5903static void *raid6_takeover(mddev_t *mddev)
5904{
5905 /* Currently can only take over a raid5. We map the
5906 * personality to an equivalent raid6 personality
5907 * with the Q block at the end.
5908 */
5909 int new_layout;
5910
5911 if (mddev->pers != &raid5_personality)
5912 return ERR_PTR(-EINVAL);
5913 if (mddev->degraded > 1)
5914 return ERR_PTR(-EINVAL);
5915 if (mddev->raid_disks > 253)
5916 return ERR_PTR(-EINVAL);
5917 if (mddev->raid_disks < 3)
5918 return ERR_PTR(-EINVAL);
5919
5920 switch (mddev->layout) {
5921 case ALGORITHM_LEFT_ASYMMETRIC:
5922 new_layout = ALGORITHM_LEFT_ASYMMETRIC_6;
5923 break;
5924 case ALGORITHM_RIGHT_ASYMMETRIC:
5925 new_layout = ALGORITHM_RIGHT_ASYMMETRIC_6;
5926 break;
5927 case ALGORITHM_LEFT_SYMMETRIC:
5928 new_layout = ALGORITHM_LEFT_SYMMETRIC_6;
5929 break;
5930 case ALGORITHM_RIGHT_SYMMETRIC:
5931 new_layout = ALGORITHM_RIGHT_SYMMETRIC_6;
5932 break;
5933 case ALGORITHM_PARITY_0:
5934 new_layout = ALGORITHM_PARITY_0_6;
5935 break;
5936 case ALGORITHM_PARITY_N:
5937 new_layout = ALGORITHM_PARITY_N;
5938 break;
5939 default:
5940 return ERR_PTR(-EINVAL);
5941 }
5942 mddev->new_level = 6;
5943 mddev->new_layout = new_layout;
5944 mddev->delta_disks = 1;
5945 mddev->raid_disks += 1;
5946 return setup_conf(mddev);
5947}
5948
5949
NeilBrown16a53ec2006-06-26 00:27:38 -07005950static struct mdk_personality raid6_personality =
5951{
5952 .name = "raid6",
5953 .level = 6,
5954 .owner = THIS_MODULE,
5955 .make_request = make_request,
5956 .run = run,
5957 .stop = stop,
5958 .status = status,
5959 .error_handler = error,
5960 .hot_add_disk = raid5_add_disk,
5961 .hot_remove_disk= raid5_remove_disk,
5962 .spare_active = raid5_spare_active,
5963 .sync_request = sync_request,
5964 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07005965 .size = raid5_size,
NeilBrown50ac1682009-06-18 08:47:55 +10005966 .check_reshape = raid6_check_reshape,
NeilBrownf4168852007-02-28 20:11:53 -08005967 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11005968 .finish_reshape = raid5_finish_reshape,
NeilBrown16a53ec2006-06-26 00:27:38 -07005969 .quiesce = raid5_quiesce,
NeilBrown245f46c2009-03-31 14:39:39 +11005970 .takeover = raid6_takeover,
NeilBrown16a53ec2006-06-26 00:27:38 -07005971};
NeilBrown2604b702006-01-06 00:20:36 -08005972static struct mdk_personality raid5_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07005973{
5974 .name = "raid5",
NeilBrown2604b702006-01-06 00:20:36 -08005975 .level = 5,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005976 .owner = THIS_MODULE,
5977 .make_request = make_request,
5978 .run = run,
5979 .stop = stop,
5980 .status = status,
5981 .error_handler = error,
5982 .hot_add_disk = raid5_add_disk,
5983 .hot_remove_disk= raid5_remove_disk,
5984 .spare_active = raid5_spare_active,
5985 .sync_request = sync_request,
5986 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07005987 .size = raid5_size,
NeilBrown63c70c42006-03-27 01:18:13 -08005988 .check_reshape = raid5_check_reshape,
5989 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11005990 .finish_reshape = raid5_finish_reshape,
NeilBrown72626682005-09-09 16:23:54 -07005991 .quiesce = raid5_quiesce,
NeilBrownd562b0c2009-03-31 14:39:39 +11005992 .takeover = raid5_takeover,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005993};
5994
NeilBrown2604b702006-01-06 00:20:36 -08005995static struct mdk_personality raid4_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07005996{
NeilBrown2604b702006-01-06 00:20:36 -08005997 .name = "raid4",
5998 .level = 4,
5999 .owner = THIS_MODULE,
6000 .make_request = make_request,
6001 .run = run,
6002 .stop = stop,
6003 .status = status,
6004 .error_handler = error,
6005 .hot_add_disk = raid5_add_disk,
6006 .hot_remove_disk= raid5_remove_disk,
6007 .spare_active = raid5_spare_active,
6008 .sync_request = sync_request,
6009 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07006010 .size = raid5_size,
NeilBrown3d378902007-03-26 21:32:13 -08006011 .check_reshape = raid5_check_reshape,
6012 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11006013 .finish_reshape = raid5_finish_reshape,
NeilBrown2604b702006-01-06 00:20:36 -08006014 .quiesce = raid5_quiesce,
NeilBrowna78d38a2010-03-22 16:53:49 +11006015 .takeover = raid4_takeover,
NeilBrown2604b702006-01-06 00:20:36 -08006016};
6017
6018static int __init raid5_init(void)
6019{
NeilBrown16a53ec2006-06-26 00:27:38 -07006020 register_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08006021 register_md_personality(&raid5_personality);
6022 register_md_personality(&raid4_personality);
6023 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006024}
6025
NeilBrown2604b702006-01-06 00:20:36 -08006026static void raid5_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006027{
NeilBrown16a53ec2006-06-26 00:27:38 -07006028 unregister_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08006029 unregister_md_personality(&raid5_personality);
6030 unregister_md_personality(&raid4_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006031}
6032
6033module_init(raid5_init);
6034module_exit(raid5_exit);
6035MODULE_LICENSE("GPL");
NeilBrown0efb9e62009-12-14 12:49:58 +11006036MODULE_DESCRIPTION("RAID4/5/6 (striping with parity) personality for MD");
Linus Torvalds1da177e2005-04-16 15:20:36 -07006037MODULE_ALIAS("md-personality-4"); /* RAID5 */
NeilBrownd9d166c2006-01-06 00:20:51 -08006038MODULE_ALIAS("md-raid5");
6039MODULE_ALIAS("md-raid4");
NeilBrown2604b702006-01-06 00:20:36 -08006040MODULE_ALIAS("md-level-5");
6041MODULE_ALIAS("md-level-4");
NeilBrown16a53ec2006-06-26 00:27:38 -07006042MODULE_ALIAS("md-personality-8"); /* RAID6 */
6043MODULE_ALIAS("md-raid6");
6044MODULE_ALIAS("md-level-6");
6045
6046/* This used to be two separate modules, they were: */
6047MODULE_ALIAS("raid5");
6048MODULE_ALIAS("raid6");