blob: 9411466f71defadb48193487893d999e23cb9ce8 [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>
NeilBrownbff61972009-03-31 14:33:13 +110050#include <linux/seq_file.h>
NeilBrown43b2e5d2009-03-31 14:33:13 +110051#include "md.h"
NeilBrownbff61972009-03-31 14:33:13 +110052#include "raid5.h"
Christoph Hellwigef740c32009-03-31 14:27:03 +110053#include "bitmap.h"
NeilBrown72626682005-09-09 16:23:54 -070054
Linus Torvalds1da177e2005-04-16 15:20:36 -070055/*
56 * Stripe cache
57 */
58
59#define NR_STRIPES 256
60#define STRIPE_SIZE PAGE_SIZE
61#define STRIPE_SHIFT (PAGE_SHIFT - 9)
62#define STRIPE_SECTORS (STRIPE_SIZE>>9)
63#define IO_THRESHOLD 1
Dan Williams8b3e6cd2008-04-28 02:15:53 -070064#define BYPASS_THRESHOLD 1
NeilBrownfccddba2006-01-06 00:20:33 -080065#define NR_HASH (PAGE_SIZE / sizeof(struct hlist_head))
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#define HASH_MASK (NR_HASH - 1)
67
NeilBrownfccddba2006-01-06 00:20:33 -080068#define stripe_hash(conf, sect) (&((conf)->stripe_hashtbl[((sect) >> STRIPE_SHIFT) & HASH_MASK]))
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70/* bio's attached to a stripe+device for I/O are linked together in bi_sector
71 * order without overlap. There may be several bio's per stripe+device, and
72 * a bio could span several devices.
73 * When walking this list for a particular stripe+device, we must never proceed
74 * beyond a bio that extends past this device, as the next bio might no longer
75 * be valid.
76 * This macro is used to determine the 'next' bio in the list, given the sector
77 * of the current stripe+device
78 */
79#define r5_next_bio(bio, sect) ( ( (bio)->bi_sector + ((bio)->bi_size>>9) < sect + STRIPE_SECTORS) ? (bio)->bi_next : NULL)
80/*
81 * The following can be used to debug the driver
82 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#define RAID5_PARANOIA 1
84#if RAID5_PARANOIA && defined(CONFIG_SMP)
85# define CHECK_DEVLOCK() assert_spin_locked(&conf->device_lock)
86#else
87# define CHECK_DEVLOCK()
88#endif
89
Dan Williams45b42332007-07-09 11:56:43 -070090#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -070091#define inline
92#define __inline__
93#endif
94
Bernd Schubert6be9d492008-05-23 13:04:34 -070095#define printk_rl(args...) ((void) (printk_ratelimit() && printk(args)))
96
Jens Axboe960e7392008-08-15 10:41:18 +020097/*
Jens Axboe5b99c2f2008-08-15 10:56:11 +020098 * We maintain a biased count of active stripes in the bottom 16 bits of
99 * bi_phys_segments, and a count of processed stripes in the upper 16 bits
Jens Axboe960e7392008-08-15 10:41:18 +0200100 */
101static inline int raid5_bi_phys_segments(struct bio *bio)
102{
Jens Axboe5b99c2f2008-08-15 10:56:11 +0200103 return bio->bi_phys_segments & 0xffff;
Jens Axboe960e7392008-08-15 10:41:18 +0200104}
105
106static inline int raid5_bi_hw_segments(struct bio *bio)
107{
Jens Axboe5b99c2f2008-08-15 10:56:11 +0200108 return (bio->bi_phys_segments >> 16) & 0xffff;
Jens Axboe960e7392008-08-15 10:41:18 +0200109}
110
111static inline int raid5_dec_bi_phys_segments(struct bio *bio)
112{
113 --bio->bi_phys_segments;
114 return raid5_bi_phys_segments(bio);
115}
116
117static inline int raid5_dec_bi_hw_segments(struct bio *bio)
118{
119 unsigned short val = raid5_bi_hw_segments(bio);
120
121 --val;
Jens Axboe5b99c2f2008-08-15 10:56:11 +0200122 bio->bi_phys_segments = (val << 16) | raid5_bi_phys_segments(bio);
Jens Axboe960e7392008-08-15 10:41:18 +0200123 return val;
124}
125
126static inline void raid5_set_bi_hw_segments(struct bio *bio, unsigned int cnt)
127{
Jens Axboe5b99c2f2008-08-15 10:56:11 +0200128 bio->bi_phys_segments = raid5_bi_phys_segments(bio) || (cnt << 16);
Jens Axboe960e7392008-08-15 10:41:18 +0200129}
130
NeilBrownd0dabf72009-03-31 14:39:38 +1100131/* Find first data disk in a raid6 stripe */
132static inline int raid6_d0(struct stripe_head *sh)
133{
NeilBrown67cc2b82009-03-31 14:39:38 +1100134 if (sh->ddf_layout)
135 /* ddf always start from first device */
136 return 0;
137 /* md starts just after Q block */
NeilBrownd0dabf72009-03-31 14:39:38 +1100138 if (sh->qd_idx == sh->disks - 1)
139 return 0;
140 else
141 return sh->qd_idx + 1;
142}
NeilBrown16a53ec2006-06-26 00:27:38 -0700143static inline int raid6_next_disk(int disk, int raid_disks)
144{
145 disk++;
146 return (disk < raid_disks) ? disk : 0;
147}
Dan Williamsa4456852007-07-09 11:56:43 -0700148
NeilBrownd0dabf72009-03-31 14:39:38 +1100149/* When walking through the disks in a raid5, starting at raid6_d0,
150 * We need to map each disk to a 'slot', where the data disks are slot
151 * 0 .. raid_disks-3, the parity disk is raid_disks-2 and the Q disk
152 * is raid_disks-1. This help does that mapping.
153 */
NeilBrown67cc2b82009-03-31 14:39:38 +1100154static int raid6_idx_to_slot(int idx, struct stripe_head *sh,
155 int *count, int syndrome_disks)
NeilBrownd0dabf72009-03-31 14:39:38 +1100156{
157 int slot;
NeilBrown67cc2b82009-03-31 14:39:38 +1100158
NeilBrownd0dabf72009-03-31 14:39:38 +1100159 if (idx == sh->pd_idx)
NeilBrown67cc2b82009-03-31 14:39:38 +1100160 return syndrome_disks;
NeilBrownd0dabf72009-03-31 14:39:38 +1100161 if (idx == sh->qd_idx)
NeilBrown67cc2b82009-03-31 14:39:38 +1100162 return syndrome_disks + 1;
NeilBrownd0dabf72009-03-31 14:39:38 +1100163 slot = (*count)++;
164 return slot;
165}
166
Dan Williamsa4456852007-07-09 11:56:43 -0700167static void return_io(struct bio *return_bi)
168{
169 struct bio *bi = return_bi;
170 while (bi) {
Dan Williamsa4456852007-07-09 11:56:43 -0700171
172 return_bi = bi->bi_next;
173 bi->bi_next = NULL;
174 bi->bi_size = 0;
Neil Brown0e13fe232008-06-28 08:31:20 +1000175 bio_endio(bi, 0);
Dan Williamsa4456852007-07-09 11:56:43 -0700176 bi = return_bi;
177 }
178}
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180static void print_raid5_conf (raid5_conf_t *conf);
181
Dan Williams600aa102008-06-28 08:32:05 +1000182static int stripe_operations_active(struct stripe_head *sh)
183{
184 return sh->check_state || sh->reconstruct_state ||
185 test_bit(STRIPE_BIOFILL_RUN, &sh->state) ||
186 test_bit(STRIPE_COMPUTE_RUN, &sh->state);
187}
188
Arjan van de Ven858119e2006-01-14 13:20:43 -0800189static void __release_stripe(raid5_conf_t *conf, struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
191 if (atomic_dec_and_test(&sh->count)) {
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +0200192 BUG_ON(!list_empty(&sh->lru));
193 BUG_ON(atomic_read(&conf->active_stripes)==0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 if (test_bit(STRIPE_HANDLE, &sh->state)) {
NeilBrown7c785b72006-07-10 04:44:16 -0700195 if (test_bit(STRIPE_DELAYED, &sh->state)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 list_add_tail(&sh->lru, &conf->delayed_list);
NeilBrown7c785b72006-07-10 04:44:16 -0700197 blk_plug_device(conf->mddev->queue);
198 } else if (test_bit(STRIPE_BIT_DELAY, &sh->state) &&
NeilBrownae3c20c2006-07-10 04:44:17 -0700199 sh->bm_seq - conf->seq_write > 0) {
NeilBrown72626682005-09-09 16:23:54 -0700200 list_add_tail(&sh->lru, &conf->bitmap_list);
NeilBrown7c785b72006-07-10 04:44:16 -0700201 blk_plug_device(conf->mddev->queue);
202 } else {
NeilBrown72626682005-09-09 16:23:54 -0700203 clear_bit(STRIPE_BIT_DELAY, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 list_add_tail(&sh->lru, &conf->handle_list);
NeilBrown72626682005-09-09 16:23:54 -0700205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 md_wakeup_thread(conf->mddev->thread);
207 } else {
Dan Williams600aa102008-06-28 08:32:05 +1000208 BUG_ON(stripe_operations_active(sh));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
210 atomic_dec(&conf->preread_active_stripes);
211 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD)
212 md_wakeup_thread(conf->mddev->thread);
213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 atomic_dec(&conf->active_stripes);
NeilBrownccfcc3c2006-03-27 01:18:09 -0800215 if (!test_bit(STRIPE_EXPANDING, &sh->state)) {
216 list_add_tail(&sh->lru, &conf->inactive_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 wake_up(&conf->wait_for_stripe);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -0800218 if (conf->retry_read_aligned)
219 md_wakeup_thread(conf->mddev->thread);
NeilBrownccfcc3c2006-03-27 01:18:09 -0800220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 }
222 }
223}
NeilBrownd0dabf72009-03-31 14:39:38 +1100224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225static void release_stripe(struct stripe_head *sh)
226{
227 raid5_conf_t *conf = sh->raid_conf;
228 unsigned long flags;
NeilBrown16a53ec2006-06-26 00:27:38 -0700229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 spin_lock_irqsave(&conf->device_lock, flags);
231 __release_stripe(conf, sh);
232 spin_unlock_irqrestore(&conf->device_lock, flags);
233}
234
NeilBrownfccddba2006-01-06 00:20:33 -0800235static inline void remove_hash(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
Dan Williams45b42332007-07-09 11:56:43 -0700237 pr_debug("remove_hash(), stripe %llu\n",
238 (unsigned long long)sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
NeilBrownfccddba2006-01-06 00:20:33 -0800240 hlist_del_init(&sh->hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241}
242
NeilBrown16a53ec2006-06-26 00:27:38 -0700243static inline void insert_hash(raid5_conf_t *conf, struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
NeilBrownfccddba2006-01-06 00:20:33 -0800245 struct hlist_head *hp = stripe_hash(conf, sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Dan Williams45b42332007-07-09 11:56:43 -0700247 pr_debug("insert_hash(), stripe %llu\n",
248 (unsigned long long)sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250 CHECK_DEVLOCK();
NeilBrownfccddba2006-01-06 00:20:33 -0800251 hlist_add_head(&sh->hash, hp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252}
253
254
255/* find an idle stripe, make sure it is unhashed, and return it. */
256static struct stripe_head *get_free_stripe(raid5_conf_t *conf)
257{
258 struct stripe_head *sh = NULL;
259 struct list_head *first;
260
261 CHECK_DEVLOCK();
262 if (list_empty(&conf->inactive_list))
263 goto out;
264 first = conf->inactive_list.next;
265 sh = list_entry(first, struct stripe_head, lru);
266 list_del_init(first);
267 remove_hash(sh);
268 atomic_inc(&conf->active_stripes);
269out:
270 return sh;
271}
272
273static void shrink_buffers(struct stripe_head *sh, int num)
274{
275 struct page *p;
276 int i;
277
278 for (i=0; i<num ; i++) {
279 p = sh->dev[i].page;
280 if (!p)
281 continue;
282 sh->dev[i].page = NULL;
NeilBrown2d1f3b52006-01-06 00:20:31 -0800283 put_page(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 }
285}
286
287static int grow_buffers(struct stripe_head *sh, int num)
288{
289 int i;
290
291 for (i=0; i<num; i++) {
292 struct page *page;
293
294 if (!(page = alloc_page(GFP_KERNEL))) {
295 return 1;
296 }
297 sh->dev[i].page = page;
298 }
299 return 0;
300}
301
NeilBrown784052e2009-03-31 15:19:07 +1100302static void raid5_build_block(struct stripe_head *sh, int i, int previous);
NeilBrown911d4ee2009-03-31 14:39:38 +1100303static void stripe_set_idx(sector_t stripe, raid5_conf_t *conf, int previous,
304 struct stripe_head *sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
NeilBrownb5663ba2009-03-31 14:39:38 +1100306static void init_stripe(struct stripe_head *sh, sector_t sector, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
308 raid5_conf_t *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800309 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +0200311 BUG_ON(atomic_read(&sh->count) != 0);
312 BUG_ON(test_bit(STRIPE_HANDLE, &sh->state));
Dan Williams600aa102008-06-28 08:32:05 +1000313 BUG_ON(stripe_operations_active(sh));
Dan Williamsd84e0f12007-01-02 13:52:30 -0700314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 CHECK_DEVLOCK();
Dan Williams45b42332007-07-09 11:56:43 -0700316 pr_debug("init_stripe called, stripe %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 (unsigned long long)sh->sector);
318
319 remove_hash(sh);
NeilBrown16a53ec2006-06-26 00:27:38 -0700320
NeilBrown86b42c72009-03-31 15:19:03 +1100321 sh->generation = conf->generation - previous;
NeilBrownb5663ba2009-03-31 14:39:38 +1100322 sh->disks = previous ? conf->previous_raid_disks : conf->raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 sh->sector = sector;
NeilBrown911d4ee2009-03-31 14:39:38 +1100324 stripe_set_idx(sector, conf, previous, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 sh->state = 0;
326
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800327
328 for (i = sh->disks; i--; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 struct r5dev *dev = &sh->dev[i];
330
Dan Williamsd84e0f12007-01-02 13:52:30 -0700331 if (dev->toread || dev->read || dev->towrite || dev->written ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 test_bit(R5_LOCKED, &dev->flags)) {
Dan Williamsd84e0f12007-01-02 13:52:30 -0700333 printk(KERN_ERR "sector=%llx i=%d %p %p %p %p %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 (unsigned long long)sh->sector, i, dev->toread,
Dan Williamsd84e0f12007-01-02 13:52:30 -0700335 dev->read, dev->towrite, dev->written,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 test_bit(R5_LOCKED, &dev->flags));
337 BUG();
338 }
339 dev->flags = 0;
NeilBrown784052e2009-03-31 15:19:07 +1100340 raid5_build_block(sh, i, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 }
342 insert_hash(conf, sh);
343}
344
NeilBrown86b42c72009-03-31 15:19:03 +1100345static struct stripe_head *__find_stripe(raid5_conf_t *conf, sector_t sector,
346 short generation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
348 struct stripe_head *sh;
NeilBrownfccddba2006-01-06 00:20:33 -0800349 struct hlist_node *hn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351 CHECK_DEVLOCK();
Dan Williams45b42332007-07-09 11:56:43 -0700352 pr_debug("__find_stripe, sector %llu\n", (unsigned long long)sector);
NeilBrownfccddba2006-01-06 00:20:33 -0800353 hlist_for_each_entry(sh, hn, stripe_hash(conf, sector), hash)
NeilBrown86b42c72009-03-31 15:19:03 +1100354 if (sh->sector == sector && sh->generation == generation)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 return sh;
Dan Williams45b42332007-07-09 11:56:43 -0700356 pr_debug("__stripe %llu not in cache\n", (unsigned long long)sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 return NULL;
358}
359
360static void unplug_slaves(mddev_t *mddev);
Jens Axboe165125e2007-07-24 09:28:11 +0200361static void raid5_unplug_device(struct request_queue *q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
NeilBrownb5663ba2009-03-31 14:39:38 +1100363static struct stripe_head *
364get_active_stripe(raid5_conf_t *conf, sector_t sector,
365 int previous, int noblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366{
367 struct stripe_head *sh;
368
Dan Williams45b42332007-07-09 11:56:43 -0700369 pr_debug("get_stripe, sector %llu\n", (unsigned long long)sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371 spin_lock_irq(&conf->device_lock);
372
373 do {
NeilBrown72626682005-09-09 16:23:54 -0700374 wait_event_lock_irq(conf->wait_for_stripe,
375 conf->quiesce == 0,
376 conf->device_lock, /* nothing */);
NeilBrown86b42c72009-03-31 15:19:03 +1100377 sh = __find_stripe(conf, sector, conf->generation - previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 if (!sh) {
379 if (!conf->inactive_blocked)
380 sh = get_free_stripe(conf);
381 if (noblock && sh == NULL)
382 break;
383 if (!sh) {
384 conf->inactive_blocked = 1;
385 wait_event_lock_irq(conf->wait_for_stripe,
386 !list_empty(&conf->inactive_list) &&
NeilBrown50368052005-12-12 02:39:17 -0800387 (atomic_read(&conf->active_stripes)
388 < (conf->max_nr_stripes *3/4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 || !conf->inactive_blocked),
390 conf->device_lock,
NeilBrownf4370782006-07-10 04:44:14 -0700391 raid5_unplug_device(conf->mddev->queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 );
393 conf->inactive_blocked = 0;
394 } else
NeilBrownb5663ba2009-03-31 14:39:38 +1100395 init_stripe(sh, sector, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 } else {
397 if (atomic_read(&sh->count)) {
NeilBrownab69ae12009-03-31 15:26:47 +1100398 BUG_ON(!list_empty(&sh->lru)
399 && !test_bit(STRIPE_EXPANDING, &sh->state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 } else {
401 if (!test_bit(STRIPE_HANDLE, &sh->state))
402 atomic_inc(&conf->active_stripes);
NeilBrownff4e8d92006-07-10 04:44:16 -0700403 if (list_empty(&sh->lru) &&
404 !test_bit(STRIPE_EXPANDING, &sh->state))
NeilBrown16a53ec2006-06-26 00:27:38 -0700405 BUG();
406 list_del_init(&sh->lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 }
408 }
409 } while (sh == NULL);
410
411 if (sh)
412 atomic_inc(&sh->count);
413
414 spin_unlock_irq(&conf->device_lock);
415 return sh;
416}
417
NeilBrown6712ecf2007-09-27 12:47:43 +0200418static void
419raid5_end_read_request(struct bio *bi, int error);
420static void
421raid5_end_write_request(struct bio *bi, int error);
Dan Williams91c00922007-01-02 13:52:30 -0700422
Dan Williamsc4e5ac02008-06-28 08:31:53 +1000423static void ops_run_io(struct stripe_head *sh, struct stripe_head_state *s)
Dan Williams91c00922007-01-02 13:52:30 -0700424{
425 raid5_conf_t *conf = sh->raid_conf;
426 int i, disks = sh->disks;
427
428 might_sleep();
429
430 for (i = disks; i--; ) {
431 int rw;
432 struct bio *bi;
433 mdk_rdev_t *rdev;
434 if (test_and_clear_bit(R5_Wantwrite, &sh->dev[i].flags))
435 rw = WRITE;
436 else if (test_and_clear_bit(R5_Wantread, &sh->dev[i].flags))
437 rw = READ;
438 else
439 continue;
440
441 bi = &sh->dev[i].req;
442
443 bi->bi_rw = rw;
444 if (rw == WRITE)
445 bi->bi_end_io = raid5_end_write_request;
446 else
447 bi->bi_end_io = raid5_end_read_request;
448
449 rcu_read_lock();
450 rdev = rcu_dereference(conf->disks[i].rdev);
451 if (rdev && test_bit(Faulty, &rdev->flags))
452 rdev = NULL;
453 if (rdev)
454 atomic_inc(&rdev->nr_pending);
455 rcu_read_unlock();
456
457 if (rdev) {
Dan Williamsc4e5ac02008-06-28 08:31:53 +1000458 if (s->syncing || s->expanding || s->expanded)
Dan Williams91c00922007-01-02 13:52:30 -0700459 md_sync_acct(rdev->bdev, STRIPE_SECTORS);
460
Dan Williams2b7497f2008-06-28 08:31:52 +1000461 set_bit(STRIPE_IO_STARTED, &sh->state);
462
Dan Williams91c00922007-01-02 13:52:30 -0700463 bi->bi_bdev = rdev->bdev;
464 pr_debug("%s: for %llu schedule op %ld on disc %d\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -0700465 __func__, (unsigned long long)sh->sector,
Dan Williams91c00922007-01-02 13:52:30 -0700466 bi->bi_rw, i);
467 atomic_inc(&sh->count);
468 bi->bi_sector = sh->sector + rdev->data_offset;
469 bi->bi_flags = 1 << BIO_UPTODATE;
470 bi->bi_vcnt = 1;
471 bi->bi_max_vecs = 1;
472 bi->bi_idx = 0;
473 bi->bi_io_vec = &sh->dev[i].vec;
474 bi->bi_io_vec[0].bv_len = STRIPE_SIZE;
475 bi->bi_io_vec[0].bv_offset = 0;
476 bi->bi_size = STRIPE_SIZE;
477 bi->bi_next = NULL;
478 if (rw == WRITE &&
479 test_bit(R5_ReWrite, &sh->dev[i].flags))
480 atomic_add(STRIPE_SECTORS,
481 &rdev->corrected_errors);
482 generic_make_request(bi);
483 } else {
484 if (rw == WRITE)
485 set_bit(STRIPE_DEGRADED, &sh->state);
486 pr_debug("skip op %ld on disc %d for sector %llu\n",
487 bi->bi_rw, i, (unsigned long long)sh->sector);
488 clear_bit(R5_LOCKED, &sh->dev[i].flags);
489 set_bit(STRIPE_HANDLE, &sh->state);
490 }
491 }
492}
493
494static struct dma_async_tx_descriptor *
495async_copy_data(int frombio, struct bio *bio, struct page *page,
496 sector_t sector, struct dma_async_tx_descriptor *tx)
497{
498 struct bio_vec *bvl;
499 struct page *bio_page;
500 int i;
501 int page_offset;
Dan Williamsa08abd82009-06-03 11:43:59 -0700502 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -0700503
504 if (bio->bi_sector >= sector)
505 page_offset = (signed)(bio->bi_sector - sector) * 512;
506 else
507 page_offset = (signed)(sector - bio->bi_sector) * -512;
Dan Williamsa08abd82009-06-03 11:43:59 -0700508
509 init_async_submit(&submit, 0, tx, NULL, NULL, NULL);
Dan Williams91c00922007-01-02 13:52:30 -0700510 bio_for_each_segment(bvl, bio, i) {
511 int len = bio_iovec_idx(bio, i)->bv_len;
512 int clen;
513 int b_offset = 0;
514
515 if (page_offset < 0) {
516 b_offset = -page_offset;
517 page_offset += b_offset;
518 len -= b_offset;
519 }
520
521 if (len > 0 && page_offset + len > STRIPE_SIZE)
522 clen = STRIPE_SIZE - page_offset;
523 else
524 clen = len;
525
526 if (clen > 0) {
527 b_offset += bio_iovec_idx(bio, i)->bv_offset;
528 bio_page = bio_iovec_idx(bio, i)->bv_page;
529 if (frombio)
530 tx = async_memcpy(page, bio_page, page_offset,
Dan Williamsa08abd82009-06-03 11:43:59 -0700531 b_offset, clen, &submit);
Dan Williams91c00922007-01-02 13:52:30 -0700532 else
533 tx = async_memcpy(bio_page, page, b_offset,
Dan Williamsa08abd82009-06-03 11:43:59 -0700534 page_offset, clen, &submit);
Dan Williams91c00922007-01-02 13:52:30 -0700535 }
Dan Williamsa08abd82009-06-03 11:43:59 -0700536 /* chain the operations */
537 submit.depend_tx = tx;
538
Dan Williams91c00922007-01-02 13:52:30 -0700539 if (clen < len) /* hit end of page */
540 break;
541 page_offset += len;
542 }
543
544 return tx;
545}
546
547static void ops_complete_biofill(void *stripe_head_ref)
548{
549 struct stripe_head *sh = stripe_head_ref;
550 struct bio *return_bi = NULL;
551 raid5_conf_t *conf = sh->raid_conf;
Dan Williamse4d84902007-09-24 10:06:13 -0700552 int i;
Dan Williams91c00922007-01-02 13:52:30 -0700553
Harvey Harrisone46b2722008-04-28 02:15:50 -0700554 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700555 (unsigned long long)sh->sector);
556
557 /* clear completed biofills */
Dan Williams83de75c2008-06-28 08:31:58 +1000558 spin_lock_irq(&conf->device_lock);
Dan Williams91c00922007-01-02 13:52:30 -0700559 for (i = sh->disks; i--; ) {
560 struct r5dev *dev = &sh->dev[i];
Dan Williams91c00922007-01-02 13:52:30 -0700561
562 /* acknowledge completion of a biofill operation */
Dan Williamse4d84902007-09-24 10:06:13 -0700563 /* and check if we need to reply to a read request,
564 * new R5_Wantfill requests are held off until
Dan Williams83de75c2008-06-28 08:31:58 +1000565 * !STRIPE_BIOFILL_RUN
Dan Williamse4d84902007-09-24 10:06:13 -0700566 */
567 if (test_and_clear_bit(R5_Wantfill, &dev->flags)) {
Dan Williams91c00922007-01-02 13:52:30 -0700568 struct bio *rbi, *rbi2;
Dan Williams91c00922007-01-02 13:52:30 -0700569
Dan Williams91c00922007-01-02 13:52:30 -0700570 BUG_ON(!dev->read);
571 rbi = dev->read;
572 dev->read = NULL;
573 while (rbi && rbi->bi_sector <
574 dev->sector + STRIPE_SECTORS) {
575 rbi2 = r5_next_bio(rbi, dev->sector);
Jens Axboe960e7392008-08-15 10:41:18 +0200576 if (!raid5_dec_bi_phys_segments(rbi)) {
Dan Williams91c00922007-01-02 13:52:30 -0700577 rbi->bi_next = return_bi;
578 return_bi = rbi;
579 }
Dan Williams91c00922007-01-02 13:52:30 -0700580 rbi = rbi2;
581 }
582 }
583 }
Dan Williams83de75c2008-06-28 08:31:58 +1000584 spin_unlock_irq(&conf->device_lock);
585 clear_bit(STRIPE_BIOFILL_RUN, &sh->state);
Dan Williams91c00922007-01-02 13:52:30 -0700586
587 return_io(return_bi);
588
Dan Williamse4d84902007-09-24 10:06:13 -0700589 set_bit(STRIPE_HANDLE, &sh->state);
Dan Williams91c00922007-01-02 13:52:30 -0700590 release_stripe(sh);
591}
592
593static void ops_run_biofill(struct stripe_head *sh)
594{
595 struct dma_async_tx_descriptor *tx = NULL;
596 raid5_conf_t *conf = sh->raid_conf;
Dan Williamsa08abd82009-06-03 11:43:59 -0700597 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -0700598 int i;
599
Harvey Harrisone46b2722008-04-28 02:15:50 -0700600 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700601 (unsigned long long)sh->sector);
602
603 for (i = sh->disks; i--; ) {
604 struct r5dev *dev = &sh->dev[i];
605 if (test_bit(R5_Wantfill, &dev->flags)) {
606 struct bio *rbi;
607 spin_lock_irq(&conf->device_lock);
608 dev->read = rbi = dev->toread;
609 dev->toread = NULL;
610 spin_unlock_irq(&conf->device_lock);
611 while (rbi && rbi->bi_sector <
612 dev->sector + STRIPE_SECTORS) {
613 tx = async_copy_data(0, rbi, dev->page,
614 dev->sector, tx);
615 rbi = r5_next_bio(rbi, dev->sector);
616 }
617 }
618 }
619
620 atomic_inc(&sh->count);
Dan Williamsa08abd82009-06-03 11:43:59 -0700621 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_biofill, sh, NULL);
622 async_trigger_callback(&submit);
Dan Williams91c00922007-01-02 13:52:30 -0700623}
624
625static void ops_complete_compute5(void *stripe_head_ref)
626{
627 struct stripe_head *sh = stripe_head_ref;
628 int target = sh->ops.target;
629 struct r5dev *tgt = &sh->dev[target];
630
Harvey Harrisone46b2722008-04-28 02:15:50 -0700631 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700632 (unsigned long long)sh->sector);
633
634 set_bit(R5_UPTODATE, &tgt->flags);
635 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
636 clear_bit(R5_Wantcompute, &tgt->flags);
Dan Williamsecc65c92008-06-28 08:31:57 +1000637 clear_bit(STRIPE_COMPUTE_RUN, &sh->state);
638 if (sh->check_state == check_state_compute_run)
639 sh->check_state = check_state_compute_result;
Dan Williams91c00922007-01-02 13:52:30 -0700640 set_bit(STRIPE_HANDLE, &sh->state);
641 release_stripe(sh);
642}
643
Dan Williams7b3a8712008-06-28 08:32:09 +1000644static struct dma_async_tx_descriptor *ops_run_compute5(struct stripe_head *sh)
Dan Williams91c00922007-01-02 13:52:30 -0700645{
646 /* kernel stack size limits the total number of disks */
647 int disks = sh->disks;
648 struct page *xor_srcs[disks];
649 int target = sh->ops.target;
650 struct r5dev *tgt = &sh->dev[target];
651 struct page *xor_dest = tgt->page;
652 int count = 0;
653 struct dma_async_tx_descriptor *tx;
Dan Williamsa08abd82009-06-03 11:43:59 -0700654 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -0700655 int i;
656
657 pr_debug("%s: stripe %llu block: %d\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -0700658 __func__, (unsigned long long)sh->sector, target);
Dan Williams91c00922007-01-02 13:52:30 -0700659 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
660
661 for (i = disks; i--; )
662 if (i != target)
663 xor_srcs[count++] = sh->dev[i].page;
664
665 atomic_inc(&sh->count);
666
Dan Williamsa08abd82009-06-03 11:43:59 -0700667 init_async_submit(&submit, ASYNC_TX_XOR_ZERO_DST, NULL,
668 ops_complete_compute5, sh, NULL);
Dan Williams91c00922007-01-02 13:52:30 -0700669 if (unlikely(count == 1))
Dan Williamsa08abd82009-06-03 11:43:59 -0700670 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -0700671 else
Dan Williamsa08abd82009-06-03 11:43:59 -0700672 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -0700673
Dan Williams91c00922007-01-02 13:52:30 -0700674 return tx;
675}
676
677static void ops_complete_prexor(void *stripe_head_ref)
678{
679 struct stripe_head *sh = stripe_head_ref;
680
Harvey Harrisone46b2722008-04-28 02:15:50 -0700681 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700682 (unsigned long long)sh->sector);
Dan Williams91c00922007-01-02 13:52:30 -0700683}
684
685static struct dma_async_tx_descriptor *
686ops_run_prexor(struct stripe_head *sh, struct dma_async_tx_descriptor *tx)
687{
688 /* kernel stack size limits the total number of disks */
689 int disks = sh->disks;
690 struct page *xor_srcs[disks];
691 int count = 0, pd_idx = sh->pd_idx, i;
Dan Williamsa08abd82009-06-03 11:43:59 -0700692 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -0700693
694 /* existing parity data subtracted */
695 struct page *xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
696
Harvey Harrisone46b2722008-04-28 02:15:50 -0700697 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700698 (unsigned long long)sh->sector);
699
700 for (i = disks; i--; ) {
701 struct r5dev *dev = &sh->dev[i];
702 /* Only process blocks that are known to be uptodate */
Dan Williamsd8ee0722008-06-28 08:32:06 +1000703 if (test_bit(R5_Wantdrain, &dev->flags))
Dan Williams91c00922007-01-02 13:52:30 -0700704 xor_srcs[count++] = dev->page;
705 }
706
Dan Williamsa08abd82009-06-03 11:43:59 -0700707 init_async_submit(&submit, ASYNC_TX_XOR_DROP_DST, tx,
708 ops_complete_prexor, sh, NULL);
709 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -0700710
711 return tx;
712}
713
714static struct dma_async_tx_descriptor *
Dan Williamsd8ee0722008-06-28 08:32:06 +1000715ops_run_biodrain(struct stripe_head *sh, struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -0700716{
717 int disks = sh->disks;
Dan Williamsd8ee0722008-06-28 08:32:06 +1000718 int i;
Dan Williams91c00922007-01-02 13:52:30 -0700719
Harvey Harrisone46b2722008-04-28 02:15:50 -0700720 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700721 (unsigned long long)sh->sector);
722
723 for (i = disks; i--; ) {
724 struct r5dev *dev = &sh->dev[i];
725 struct bio *chosen;
Dan Williams91c00922007-01-02 13:52:30 -0700726
Dan Williamsd8ee0722008-06-28 08:32:06 +1000727 if (test_and_clear_bit(R5_Wantdrain, &dev->flags)) {
Dan Williams91c00922007-01-02 13:52:30 -0700728 struct bio *wbi;
729
730 spin_lock(&sh->lock);
731 chosen = dev->towrite;
732 dev->towrite = NULL;
733 BUG_ON(dev->written);
734 wbi = dev->written = chosen;
735 spin_unlock(&sh->lock);
736
737 while (wbi && wbi->bi_sector <
738 dev->sector + STRIPE_SECTORS) {
739 tx = async_copy_data(1, wbi, dev->page,
740 dev->sector, tx);
741 wbi = r5_next_bio(wbi, dev->sector);
742 }
743 }
744 }
745
746 return tx;
747}
748
749static void ops_complete_postxor(void *stripe_head_ref)
750{
751 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -0700752 int disks = sh->disks, i, pd_idx = sh->pd_idx;
753
Harvey Harrisone46b2722008-04-28 02:15:50 -0700754 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700755 (unsigned long long)sh->sector);
756
757 for (i = disks; i--; ) {
758 struct r5dev *dev = &sh->dev[i];
759 if (dev->written || i == pd_idx)
760 set_bit(R5_UPTODATE, &dev->flags);
761 }
762
Dan Williamsd8ee0722008-06-28 08:32:06 +1000763 if (sh->reconstruct_state == reconstruct_state_drain_run)
764 sh->reconstruct_state = reconstruct_state_drain_result;
765 else if (sh->reconstruct_state == reconstruct_state_prexor_drain_run)
766 sh->reconstruct_state = reconstruct_state_prexor_drain_result;
767 else {
768 BUG_ON(sh->reconstruct_state != reconstruct_state_run);
769 sh->reconstruct_state = reconstruct_state_result;
770 }
Dan Williams91c00922007-01-02 13:52:30 -0700771
772 set_bit(STRIPE_HANDLE, &sh->state);
773 release_stripe(sh);
774}
775
776static void
Dan Williamsd8ee0722008-06-28 08:32:06 +1000777ops_run_postxor(struct stripe_head *sh, struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -0700778{
779 /* kernel stack size limits the total number of disks */
780 int disks = sh->disks;
781 struct page *xor_srcs[disks];
Dan Williamsa08abd82009-06-03 11:43:59 -0700782 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -0700783 int count = 0, pd_idx = sh->pd_idx, i;
784 struct page *xor_dest;
Dan Williamsd8ee0722008-06-28 08:32:06 +1000785 int prexor = 0;
Dan Williams91c00922007-01-02 13:52:30 -0700786 unsigned long flags;
Dan Williams91c00922007-01-02 13:52:30 -0700787
Harvey Harrisone46b2722008-04-28 02:15:50 -0700788 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700789 (unsigned long long)sh->sector);
790
791 /* check if prexor is active which means only process blocks
792 * that are part of a read-modify-write (written)
793 */
Dan Williamsd8ee0722008-06-28 08:32:06 +1000794 if (sh->reconstruct_state == reconstruct_state_prexor_drain_run) {
795 prexor = 1;
Dan Williams91c00922007-01-02 13:52:30 -0700796 xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
797 for (i = disks; i--; ) {
798 struct r5dev *dev = &sh->dev[i];
799 if (dev->written)
800 xor_srcs[count++] = dev->page;
801 }
802 } else {
803 xor_dest = sh->dev[pd_idx].page;
804 for (i = disks; i--; ) {
805 struct r5dev *dev = &sh->dev[i];
806 if (i != pd_idx)
807 xor_srcs[count++] = dev->page;
808 }
809 }
810
Dan Williams91c00922007-01-02 13:52:30 -0700811 /* 1/ if we prexor'd then the dest is reused as a source
812 * 2/ if we did not prexor then we are redoing the parity
813 * set ASYNC_TX_XOR_DROP_DST and ASYNC_TX_XOR_ZERO_DST
814 * for the synchronous xor case
815 */
Dan Williams88ba2aa2009-04-09 16:16:18 -0700816 flags = ASYNC_TX_ACK |
Dan Williams91c00922007-01-02 13:52:30 -0700817 (prexor ? ASYNC_TX_XOR_DROP_DST : ASYNC_TX_XOR_ZERO_DST);
818
819 atomic_inc(&sh->count);
820
Dan Williamsa08abd82009-06-03 11:43:59 -0700821 init_async_submit(&submit, flags, tx, ops_complete_postxor, sh, NULL);
822 if (unlikely(count == 1))
823 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE, &submit);
824 else
825 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE, &submit);
Dan Williams91c00922007-01-02 13:52:30 -0700826}
827
828static void ops_complete_check(void *stripe_head_ref)
829{
830 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -0700831
Harvey Harrisone46b2722008-04-28 02:15:50 -0700832 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700833 (unsigned long long)sh->sector);
834
Dan Williamsecc65c92008-06-28 08:31:57 +1000835 sh->check_state = check_state_check_result;
Dan Williams91c00922007-01-02 13:52:30 -0700836 set_bit(STRIPE_HANDLE, &sh->state);
837 release_stripe(sh);
838}
839
840static void ops_run_check(struct stripe_head *sh)
841{
842 /* kernel stack size limits the total number of disks */
843 int disks = sh->disks;
844 struct page *xor_srcs[disks];
845 struct dma_async_tx_descriptor *tx;
Dan Williamsa08abd82009-06-03 11:43:59 -0700846 struct async_submit_ctl submit;
Dan Williams91c00922007-01-02 13:52:30 -0700847
848 int count = 0, pd_idx = sh->pd_idx, i;
849 struct page *xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
850
Harvey Harrisone46b2722008-04-28 02:15:50 -0700851 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700852 (unsigned long long)sh->sector);
853
854 for (i = disks; i--; ) {
855 struct r5dev *dev = &sh->dev[i];
856 if (i != pd_idx)
857 xor_srcs[count++] = dev->page;
858 }
859
Dan Williamsa08abd82009-06-03 11:43:59 -0700860 init_async_submit(&submit, 0, NULL, NULL, NULL, NULL);
Dan Williams099f53c2009-04-08 14:28:37 -0700861 tx = async_xor_val(xor_dest, xor_srcs, 0, count, STRIPE_SIZE,
Dan Williamsa08abd82009-06-03 11:43:59 -0700862 &sh->ops.zero_sum_result, &submit);
Dan Williams91c00922007-01-02 13:52:30 -0700863
Dan Williams91c00922007-01-02 13:52:30 -0700864 atomic_inc(&sh->count);
Dan Williamsa08abd82009-06-03 11:43:59 -0700865 init_async_submit(&submit, ASYNC_TX_ACK, tx, ops_complete_check, sh, NULL);
866 tx = async_trigger_callback(&submit);
Dan Williams91c00922007-01-02 13:52:30 -0700867}
868
Dan Williams600aa102008-06-28 08:32:05 +1000869static void raid5_run_ops(struct stripe_head *sh, unsigned long ops_request)
Dan Williams91c00922007-01-02 13:52:30 -0700870{
871 int overlap_clear = 0, i, disks = sh->disks;
872 struct dma_async_tx_descriptor *tx = NULL;
873
Dan Williams83de75c2008-06-28 08:31:58 +1000874 if (test_bit(STRIPE_OP_BIOFILL, &ops_request)) {
Dan Williams91c00922007-01-02 13:52:30 -0700875 ops_run_biofill(sh);
876 overlap_clear++;
877 }
878
Dan Williams7b3a8712008-06-28 08:32:09 +1000879 if (test_bit(STRIPE_OP_COMPUTE_BLK, &ops_request)) {
880 tx = ops_run_compute5(sh);
881 /* terminate the chain if postxor is not set to be run */
882 if (tx && !test_bit(STRIPE_OP_POSTXOR, &ops_request))
883 async_tx_ack(tx);
884 }
Dan Williams91c00922007-01-02 13:52:30 -0700885
Dan Williams600aa102008-06-28 08:32:05 +1000886 if (test_bit(STRIPE_OP_PREXOR, &ops_request))
Dan Williams91c00922007-01-02 13:52:30 -0700887 tx = ops_run_prexor(sh, tx);
888
Dan Williams600aa102008-06-28 08:32:05 +1000889 if (test_bit(STRIPE_OP_BIODRAIN, &ops_request)) {
Dan Williamsd8ee0722008-06-28 08:32:06 +1000890 tx = ops_run_biodrain(sh, tx);
Dan Williams91c00922007-01-02 13:52:30 -0700891 overlap_clear++;
892 }
893
Dan Williams600aa102008-06-28 08:32:05 +1000894 if (test_bit(STRIPE_OP_POSTXOR, &ops_request))
Dan Williamsd8ee0722008-06-28 08:32:06 +1000895 ops_run_postxor(sh, tx);
Dan Williams91c00922007-01-02 13:52:30 -0700896
Dan Williamsecc65c92008-06-28 08:31:57 +1000897 if (test_bit(STRIPE_OP_CHECK, &ops_request))
Dan Williams91c00922007-01-02 13:52:30 -0700898 ops_run_check(sh);
899
Dan Williams91c00922007-01-02 13:52:30 -0700900 if (overlap_clear)
901 for (i = disks; i--; ) {
902 struct r5dev *dev = &sh->dev[i];
903 if (test_and_clear_bit(R5_Overlap, &dev->flags))
904 wake_up(&sh->raid_conf->wait_for_overlap);
905 }
906}
907
NeilBrown3f294f42005-11-08 21:39:25 -0800908static int grow_one_stripe(raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
910 struct stripe_head *sh;
NeilBrown3f294f42005-11-08 21:39:25 -0800911 sh = kmem_cache_alloc(conf->slab_cache, GFP_KERNEL);
912 if (!sh)
913 return 0;
914 memset(sh, 0, sizeof(*sh) + (conf->raid_disks-1)*sizeof(struct r5dev));
915 sh->raid_conf = conf;
916 spin_lock_init(&sh->lock);
917
918 if (grow_buffers(sh, conf->raid_disks)) {
919 shrink_buffers(sh, conf->raid_disks);
920 kmem_cache_free(conf->slab_cache, sh);
921 return 0;
922 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800923 sh->disks = conf->raid_disks;
NeilBrown3f294f42005-11-08 21:39:25 -0800924 /* we just created an active stripe so... */
925 atomic_set(&sh->count, 1);
926 atomic_inc(&conf->active_stripes);
927 INIT_LIST_HEAD(&sh->lru);
928 release_stripe(sh);
929 return 1;
930}
931
932static int grow_stripes(raid5_conf_t *conf, int num)
933{
Christoph Lametere18b8902006-12-06 20:33:20 -0800934 struct kmem_cache *sc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 int devs = conf->raid_disks;
936
NeilBrown245f46c2009-03-31 14:39:39 +1100937 sprintf(conf->cache_name[0],
938 "raid%d-%s", conf->level, mdname(conf->mddev));
939 sprintf(conf->cache_name[1],
940 "raid%d-%s-alt", conf->level, mdname(conf->mddev));
NeilBrownad01c9e2006-03-27 01:18:07 -0800941 conf->active_name = 0;
942 sc = kmem_cache_create(conf->cache_name[conf->active_name],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 sizeof(struct stripe_head)+(devs-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +0900944 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 if (!sc)
946 return 1;
947 conf->slab_cache = sc;
NeilBrownad01c9e2006-03-27 01:18:07 -0800948 conf->pool_size = devs;
NeilBrown16a53ec2006-06-26 00:27:38 -0700949 while (num--)
NeilBrown3f294f42005-11-08 21:39:25 -0800950 if (!grow_one_stripe(conf))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 return 0;
953}
NeilBrown29269552006-03-27 01:18:10 -0800954
NeilBrownad01c9e2006-03-27 01:18:07 -0800955static int resize_stripes(raid5_conf_t *conf, int newsize)
956{
957 /* Make all the stripes able to hold 'newsize' devices.
958 * New slots in each stripe get 'page' set to a new page.
959 *
960 * This happens in stages:
961 * 1/ create a new kmem_cache and allocate the required number of
962 * stripe_heads.
963 * 2/ gather all the old stripe_heads and tranfer the pages across
964 * to the new stripe_heads. This will have the side effect of
965 * freezing the array as once all stripe_heads have been collected,
966 * no IO will be possible. Old stripe heads are freed once their
967 * pages have been transferred over, and the old kmem_cache is
968 * freed when all stripes are done.
969 * 3/ reallocate conf->disks to be suitable bigger. If this fails,
970 * we simple return a failre status - no need to clean anything up.
971 * 4/ allocate new pages for the new slots in the new stripe_heads.
972 * If this fails, we don't bother trying the shrink the
973 * stripe_heads down again, we just leave them as they are.
974 * As each stripe_head is processed the new one is released into
975 * active service.
976 *
977 * Once step2 is started, we cannot afford to wait for a write,
978 * so we use GFP_NOIO allocations.
979 */
980 struct stripe_head *osh, *nsh;
981 LIST_HEAD(newstripes);
982 struct disk_info *ndisks;
Dan Williamsb5470dc2008-06-27 21:44:04 -0700983 int err;
Christoph Lametere18b8902006-12-06 20:33:20 -0800984 struct kmem_cache *sc;
NeilBrownad01c9e2006-03-27 01:18:07 -0800985 int i;
986
987 if (newsize <= conf->pool_size)
988 return 0; /* never bother to shrink */
989
Dan Williamsb5470dc2008-06-27 21:44:04 -0700990 err = md_allow_write(conf->mddev);
991 if (err)
992 return err;
NeilBrown2a2275d2007-01-26 00:57:11 -0800993
NeilBrownad01c9e2006-03-27 01:18:07 -0800994 /* Step 1 */
995 sc = kmem_cache_create(conf->cache_name[1-conf->active_name],
996 sizeof(struct stripe_head)+(newsize-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +0900997 0, 0, NULL);
NeilBrownad01c9e2006-03-27 01:18:07 -0800998 if (!sc)
999 return -ENOMEM;
1000
1001 for (i = conf->max_nr_stripes; i; i--) {
1002 nsh = kmem_cache_alloc(sc, GFP_KERNEL);
1003 if (!nsh)
1004 break;
1005
1006 memset(nsh, 0, sizeof(*nsh) + (newsize-1)*sizeof(struct r5dev));
1007
1008 nsh->raid_conf = conf;
1009 spin_lock_init(&nsh->lock);
1010
1011 list_add(&nsh->lru, &newstripes);
1012 }
1013 if (i) {
1014 /* didn't get enough, give up */
1015 while (!list_empty(&newstripes)) {
1016 nsh = list_entry(newstripes.next, struct stripe_head, lru);
1017 list_del(&nsh->lru);
1018 kmem_cache_free(sc, nsh);
1019 }
1020 kmem_cache_destroy(sc);
1021 return -ENOMEM;
1022 }
1023 /* Step 2 - Must use GFP_NOIO now.
1024 * OK, we have enough stripes, start collecting inactive
1025 * stripes and copying them over
1026 */
1027 list_for_each_entry(nsh, &newstripes, lru) {
1028 spin_lock_irq(&conf->device_lock);
1029 wait_event_lock_irq(conf->wait_for_stripe,
1030 !list_empty(&conf->inactive_list),
1031 conf->device_lock,
NeilBrownb3b46be2006-03-27 01:18:16 -08001032 unplug_slaves(conf->mddev)
NeilBrownad01c9e2006-03-27 01:18:07 -08001033 );
1034 osh = get_free_stripe(conf);
1035 spin_unlock_irq(&conf->device_lock);
1036 atomic_set(&nsh->count, 1);
1037 for(i=0; i<conf->pool_size; i++)
1038 nsh->dev[i].page = osh->dev[i].page;
1039 for( ; i<newsize; i++)
1040 nsh->dev[i].page = NULL;
1041 kmem_cache_free(conf->slab_cache, osh);
1042 }
1043 kmem_cache_destroy(conf->slab_cache);
1044
1045 /* Step 3.
1046 * At this point, we are holding all the stripes so the array
1047 * is completely stalled, so now is a good time to resize
1048 * conf->disks.
1049 */
1050 ndisks = kzalloc(newsize * sizeof(struct disk_info), GFP_NOIO);
1051 if (ndisks) {
1052 for (i=0; i<conf->raid_disks; i++)
1053 ndisks[i] = conf->disks[i];
1054 kfree(conf->disks);
1055 conf->disks = ndisks;
1056 } else
1057 err = -ENOMEM;
1058
1059 /* Step 4, return new stripes to service */
1060 while(!list_empty(&newstripes)) {
1061 nsh = list_entry(newstripes.next, struct stripe_head, lru);
1062 list_del_init(&nsh->lru);
1063 for (i=conf->raid_disks; i < newsize; i++)
1064 if (nsh->dev[i].page == NULL) {
1065 struct page *p = alloc_page(GFP_NOIO);
1066 nsh->dev[i].page = p;
1067 if (!p)
1068 err = -ENOMEM;
1069 }
1070 release_stripe(nsh);
1071 }
1072 /* critical section pass, GFP_NOIO no longer needed */
1073
1074 conf->slab_cache = sc;
1075 conf->active_name = 1-conf->active_name;
1076 conf->pool_size = newsize;
1077 return err;
1078}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
NeilBrown3f294f42005-11-08 21:39:25 -08001080static int drop_one_stripe(raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081{
1082 struct stripe_head *sh;
1083
NeilBrown3f294f42005-11-08 21:39:25 -08001084 spin_lock_irq(&conf->device_lock);
1085 sh = get_free_stripe(conf);
1086 spin_unlock_irq(&conf->device_lock);
1087 if (!sh)
1088 return 0;
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02001089 BUG_ON(atomic_read(&sh->count));
NeilBrownad01c9e2006-03-27 01:18:07 -08001090 shrink_buffers(sh, conf->pool_size);
NeilBrown3f294f42005-11-08 21:39:25 -08001091 kmem_cache_free(conf->slab_cache, sh);
1092 atomic_dec(&conf->active_stripes);
1093 return 1;
1094}
1095
1096static void shrink_stripes(raid5_conf_t *conf)
1097{
1098 while (drop_one_stripe(conf))
1099 ;
1100
NeilBrown29fc7e32006-02-03 03:03:41 -08001101 if (conf->slab_cache)
1102 kmem_cache_destroy(conf->slab_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 conf->slab_cache = NULL;
1104}
1105
NeilBrown6712ecf2007-09-27 12:47:43 +02001106static void raid5_end_read_request(struct bio * bi, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107{
NeilBrown99c0fb52009-03-31 14:39:38 +11001108 struct stripe_head *sh = bi->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 raid5_conf_t *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08001110 int disks = sh->disks, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
NeilBrownd6950432006-07-10 04:44:20 -07001112 char b[BDEVNAME_SIZE];
1113 mdk_rdev_t *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
1116 for (i=0 ; i<disks; i++)
1117 if (bi == &sh->dev[i].req)
1118 break;
1119
Dan Williams45b42332007-07-09 11:56:43 -07001120 pr_debug("end_read_request %llu/%d, count: %d, uptodate %d.\n",
1121 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 uptodate);
1123 if (i == disks) {
1124 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02001125 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 }
1127
1128 if (uptodate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 set_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrown4e5314b2005-11-08 21:39:22 -08001130 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrownd6950432006-07-10 04:44:20 -07001131 rdev = conf->disks[i].rdev;
Bernd Schubert6be9d492008-05-23 13:04:34 -07001132 printk_rl(KERN_INFO "raid5:%s: read error corrected"
1133 " (%lu sectors at %llu on %s)\n",
1134 mdname(conf->mddev), STRIPE_SECTORS,
1135 (unsigned long long)(sh->sector
1136 + rdev->data_offset),
1137 bdevname(rdev->bdev, b));
NeilBrown4e5314b2005-11-08 21:39:22 -08001138 clear_bit(R5_ReadError, &sh->dev[i].flags);
1139 clear_bit(R5_ReWrite, &sh->dev[i].flags);
1140 }
NeilBrownba22dcb2005-11-08 21:39:31 -08001141 if (atomic_read(&conf->disks[i].rdev->read_errors))
1142 atomic_set(&conf->disks[i].rdev->read_errors, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 } else {
NeilBrownd6950432006-07-10 04:44:20 -07001144 const char *bdn = bdevname(conf->disks[i].rdev->bdev, b);
NeilBrownba22dcb2005-11-08 21:39:31 -08001145 int retry = 0;
NeilBrownd6950432006-07-10 04:44:20 -07001146 rdev = conf->disks[i].rdev;
1147
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 clear_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrownd6950432006-07-10 04:44:20 -07001149 atomic_inc(&rdev->read_errors);
NeilBrownba22dcb2005-11-08 21:39:31 -08001150 if (conf->mddev->degraded)
Bernd Schubert6be9d492008-05-23 13:04:34 -07001151 printk_rl(KERN_WARNING
1152 "raid5:%s: read error not correctable "
1153 "(sector %llu on %s).\n",
1154 mdname(conf->mddev),
1155 (unsigned long long)(sh->sector
1156 + rdev->data_offset),
1157 bdn);
NeilBrownba22dcb2005-11-08 21:39:31 -08001158 else if (test_bit(R5_ReWrite, &sh->dev[i].flags))
NeilBrown4e5314b2005-11-08 21:39:22 -08001159 /* Oh, no!!! */
Bernd Schubert6be9d492008-05-23 13:04:34 -07001160 printk_rl(KERN_WARNING
1161 "raid5:%s: read error NOT corrected!! "
1162 "(sector %llu on %s).\n",
1163 mdname(conf->mddev),
1164 (unsigned long long)(sh->sector
1165 + rdev->data_offset),
1166 bdn);
NeilBrownd6950432006-07-10 04:44:20 -07001167 else if (atomic_read(&rdev->read_errors)
NeilBrownba22dcb2005-11-08 21:39:31 -08001168 > conf->max_nr_stripes)
NeilBrown14f8d262006-01-06 00:20:14 -08001169 printk(KERN_WARNING
NeilBrownd6950432006-07-10 04:44:20 -07001170 "raid5:%s: Too many read errors, failing device %s.\n",
1171 mdname(conf->mddev), bdn);
NeilBrownba22dcb2005-11-08 21:39:31 -08001172 else
1173 retry = 1;
1174 if (retry)
1175 set_bit(R5_ReadError, &sh->dev[i].flags);
1176 else {
NeilBrown4e5314b2005-11-08 21:39:22 -08001177 clear_bit(R5_ReadError, &sh->dev[i].flags);
1178 clear_bit(R5_ReWrite, &sh->dev[i].flags);
NeilBrownd6950432006-07-10 04:44:20 -07001179 md_error(conf->mddev, rdev);
NeilBrownba22dcb2005-11-08 21:39:31 -08001180 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 }
1182 rdev_dec_pending(conf->disks[i].rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 clear_bit(R5_LOCKED, &sh->dev[i].flags);
1184 set_bit(STRIPE_HANDLE, &sh->state);
1185 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186}
1187
NeilBrownd710e132008-10-13 11:55:12 +11001188static void raid5_end_write_request(struct bio *bi, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189{
NeilBrown99c0fb52009-03-31 14:39:38 +11001190 struct stripe_head *sh = bi->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 raid5_conf_t *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08001192 int disks = sh->disks, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
1194
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 for (i=0 ; i<disks; i++)
1196 if (bi == &sh->dev[i].req)
1197 break;
1198
Dan Williams45b42332007-07-09 11:56:43 -07001199 pr_debug("end_write_request %llu/%d, count %d, uptodate: %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
1201 uptodate);
1202 if (i == disks) {
1203 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02001204 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 }
1206
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 if (!uptodate)
1208 md_error(conf->mddev, conf->disks[i].rdev);
1209
1210 rdev_dec_pending(conf->disks[i].rdev, conf->mddev);
1211
1212 clear_bit(R5_LOCKED, &sh->dev[i].flags);
1213 set_bit(STRIPE_HANDLE, &sh->state);
NeilBrownc04be0a2006-10-03 01:15:53 -07001214 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215}
1216
1217
NeilBrown784052e2009-03-31 15:19:07 +11001218static sector_t compute_blocknr(struct stripe_head *sh, int i, int previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
NeilBrown784052e2009-03-31 15:19:07 +11001220static void raid5_build_block(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221{
1222 struct r5dev *dev = &sh->dev[i];
1223
1224 bio_init(&dev->req);
1225 dev->req.bi_io_vec = &dev->vec;
1226 dev->req.bi_vcnt++;
1227 dev->req.bi_max_vecs++;
1228 dev->vec.bv_page = dev->page;
1229 dev->vec.bv_len = STRIPE_SIZE;
1230 dev->vec.bv_offset = 0;
1231
1232 dev->req.bi_sector = sh->sector;
1233 dev->req.bi_private = sh;
1234
1235 dev->flags = 0;
NeilBrown784052e2009-03-31 15:19:07 +11001236 dev->sector = compute_blocknr(sh, i, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237}
1238
1239static void error(mddev_t *mddev, mdk_rdev_t *rdev)
1240{
1241 char b[BDEVNAME_SIZE];
1242 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
Dan Williams45b42332007-07-09 11:56:43 -07001243 pr_debug("raid5: error called\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
NeilBrownb2d444d2005-11-08 21:39:31 -08001245 if (!test_bit(Faulty, &rdev->flags)) {
NeilBrown850b2b42006-10-03 01:15:46 -07001246 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrownc04be0a2006-10-03 01:15:53 -07001247 if (test_and_clear_bit(In_sync, &rdev->flags)) {
1248 unsigned long flags;
1249 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 mddev->degraded++;
NeilBrownc04be0a2006-10-03 01:15:53 -07001251 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 /*
1253 * if recovery was running, make sure it aborts.
1254 */
NeilBrowndfc70642008-05-23 13:04:39 -07001255 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 }
NeilBrownb2d444d2005-11-08 21:39:31 -08001257 set_bit(Faulty, &rdev->flags);
NeilBrownd710e132008-10-13 11:55:12 +11001258 printk(KERN_ALERT
1259 "raid5: Disk failure on %s, disabling device.\n"
1260 "raid5: Operation continuing on %d devices.\n",
1261 bdevname(rdev->bdev,b), conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 }
NeilBrown16a53ec2006-06-26 00:27:38 -07001263}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
1265/*
1266 * Input: a 'big' sector number,
1267 * Output: index of the data and parity disk, and the sector # in them.
1268 */
NeilBrown112bf892009-03-31 14:39:38 +11001269static sector_t raid5_compute_sector(raid5_conf_t *conf, sector_t r_sector,
NeilBrown911d4ee2009-03-31 14:39:38 +11001270 int previous, int *dd_idx,
1271 struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272{
1273 long stripe;
1274 unsigned long chunk_number;
1275 unsigned int chunk_offset;
NeilBrown911d4ee2009-03-31 14:39:38 +11001276 int pd_idx, qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11001277 int ddf_layout = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 sector_t new_sector;
NeilBrowne183eae2009-03-31 15:20:22 +11001279 int algorithm = previous ? conf->prev_algo
1280 : conf->algorithm;
NeilBrown784052e2009-03-31 15:19:07 +11001281 int sectors_per_chunk = previous ? (conf->prev_chunk >> 9)
1282 : (conf->chunk_size >> 9);
NeilBrown112bf892009-03-31 14:39:38 +11001283 int raid_disks = previous ? conf->previous_raid_disks
1284 : conf->raid_disks;
1285 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
1287 /* First compute the information on this sector */
1288
1289 /*
1290 * Compute the chunk number and the sector offset inside the chunk
1291 */
1292 chunk_offset = sector_div(r_sector, sectors_per_chunk);
1293 chunk_number = r_sector;
1294 BUG_ON(r_sector != chunk_number);
1295
1296 /*
1297 * Compute the stripe number
1298 */
1299 stripe = chunk_number / data_disks;
1300
1301 /*
1302 * Compute the data disk and parity disk indexes inside the stripe
1303 */
1304 *dd_idx = chunk_number % data_disks;
1305
1306 /*
1307 * Select the parity disk based on the user selected algorithm.
1308 */
NeilBrown911d4ee2009-03-31 14:39:38 +11001309 pd_idx = qd_idx = ~0;
NeilBrown16a53ec2006-06-26 00:27:38 -07001310 switch(conf->level) {
1311 case 4:
NeilBrown911d4ee2009-03-31 14:39:38 +11001312 pd_idx = data_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07001313 break;
1314 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11001315 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown911d4ee2009-03-31 14:39:38 +11001317 pd_idx = data_disks - stripe % raid_disks;
1318 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 (*dd_idx)++;
1320 break;
1321 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown911d4ee2009-03-31 14:39:38 +11001322 pd_idx = stripe % raid_disks;
1323 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 (*dd_idx)++;
1325 break;
1326 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown911d4ee2009-03-31 14:39:38 +11001327 pd_idx = data_disks - stripe % raid_disks;
1328 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 break;
1330 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown911d4ee2009-03-31 14:39:38 +11001331 pd_idx = stripe % raid_disks;
1332 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11001334 case ALGORITHM_PARITY_0:
1335 pd_idx = 0;
1336 (*dd_idx)++;
1337 break;
1338 case ALGORITHM_PARITY_N:
1339 pd_idx = data_disks;
1340 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 default:
NeilBrown14f8d262006-01-06 00:20:14 -08001342 printk(KERN_ERR "raid5: unsupported algorithm %d\n",
NeilBrowne183eae2009-03-31 15:20:22 +11001343 algorithm);
NeilBrown99c0fb52009-03-31 14:39:38 +11001344 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07001345 }
1346 break;
1347 case 6:
1348
NeilBrowne183eae2009-03-31 15:20:22 +11001349 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07001350 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown911d4ee2009-03-31 14:39:38 +11001351 pd_idx = raid_disks - 1 - (stripe % raid_disks);
1352 qd_idx = pd_idx + 1;
1353 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11001354 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11001355 qd_idx = 0;
1356 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07001357 (*dd_idx) += 2; /* D D P Q D */
1358 break;
1359 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown911d4ee2009-03-31 14:39:38 +11001360 pd_idx = stripe % raid_disks;
1361 qd_idx = pd_idx + 1;
1362 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11001363 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11001364 qd_idx = 0;
1365 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07001366 (*dd_idx) += 2; /* D D P Q D */
1367 break;
1368 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown911d4ee2009-03-31 14:39:38 +11001369 pd_idx = raid_disks - 1 - (stripe % raid_disks);
1370 qd_idx = (pd_idx + 1) % raid_disks;
1371 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07001372 break;
1373 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown911d4ee2009-03-31 14:39:38 +11001374 pd_idx = stripe % raid_disks;
1375 qd_idx = (pd_idx + 1) % raid_disks;
1376 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07001377 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11001378
1379 case ALGORITHM_PARITY_0:
1380 pd_idx = 0;
1381 qd_idx = 1;
1382 (*dd_idx) += 2;
1383 break;
1384 case ALGORITHM_PARITY_N:
1385 pd_idx = data_disks;
1386 qd_idx = data_disks + 1;
1387 break;
1388
1389 case ALGORITHM_ROTATING_ZERO_RESTART:
1390 /* Exactly the same as RIGHT_ASYMMETRIC, but or
1391 * of blocks for computing Q is different.
1392 */
1393 pd_idx = stripe % raid_disks;
1394 qd_idx = pd_idx + 1;
1395 if (pd_idx == raid_disks-1) {
1396 (*dd_idx)++; /* Q D D D P */
1397 qd_idx = 0;
1398 } else if (*dd_idx >= pd_idx)
1399 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11001400 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11001401 break;
1402
1403 case ALGORITHM_ROTATING_N_RESTART:
1404 /* Same a left_asymmetric, by first stripe is
1405 * D D D P Q rather than
1406 * Q D D D P
1407 */
1408 pd_idx = raid_disks - 1 - ((stripe + 1) % raid_disks);
1409 qd_idx = pd_idx + 1;
1410 if (pd_idx == raid_disks-1) {
1411 (*dd_idx)++; /* Q D D D P */
1412 qd_idx = 0;
1413 } else if (*dd_idx >= pd_idx)
1414 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11001415 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11001416 break;
1417
1418 case ALGORITHM_ROTATING_N_CONTINUE:
1419 /* Same as left_symmetric but Q is before P */
1420 pd_idx = raid_disks - 1 - (stripe % raid_disks);
1421 qd_idx = (pd_idx + raid_disks - 1) % raid_disks;
1422 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
NeilBrown67cc2b82009-03-31 14:39:38 +11001423 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11001424 break;
1425
1426 case ALGORITHM_LEFT_ASYMMETRIC_6:
1427 /* RAID5 left_asymmetric, with Q on last device */
1428 pd_idx = data_disks - stripe % (raid_disks-1);
1429 if (*dd_idx >= pd_idx)
1430 (*dd_idx)++;
1431 qd_idx = raid_disks - 1;
1432 break;
1433
1434 case ALGORITHM_RIGHT_ASYMMETRIC_6:
1435 pd_idx = stripe % (raid_disks-1);
1436 if (*dd_idx >= pd_idx)
1437 (*dd_idx)++;
1438 qd_idx = raid_disks - 1;
1439 break;
1440
1441 case ALGORITHM_LEFT_SYMMETRIC_6:
1442 pd_idx = data_disks - stripe % (raid_disks-1);
1443 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
1444 qd_idx = raid_disks - 1;
1445 break;
1446
1447 case ALGORITHM_RIGHT_SYMMETRIC_6:
1448 pd_idx = stripe % (raid_disks-1);
1449 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
1450 qd_idx = raid_disks - 1;
1451 break;
1452
1453 case ALGORITHM_PARITY_0_6:
1454 pd_idx = 0;
1455 (*dd_idx)++;
1456 qd_idx = raid_disks - 1;
1457 break;
1458
1459
NeilBrown16a53ec2006-06-26 00:27:38 -07001460 default:
NeilBrownd710e132008-10-13 11:55:12 +11001461 printk(KERN_CRIT "raid6: unsupported algorithm %d\n",
NeilBrowne183eae2009-03-31 15:20:22 +11001462 algorithm);
NeilBrown99c0fb52009-03-31 14:39:38 +11001463 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07001464 }
1465 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 }
1467
NeilBrown911d4ee2009-03-31 14:39:38 +11001468 if (sh) {
1469 sh->pd_idx = pd_idx;
1470 sh->qd_idx = qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11001471 sh->ddf_layout = ddf_layout;
NeilBrown911d4ee2009-03-31 14:39:38 +11001472 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 /*
1474 * Finally, compute the new sector number
1475 */
1476 new_sector = (sector_t)stripe * sectors_per_chunk + chunk_offset;
1477 return new_sector;
1478}
1479
1480
NeilBrown784052e2009-03-31 15:19:07 +11001481static sector_t compute_blocknr(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482{
1483 raid5_conf_t *conf = sh->raid_conf;
NeilBrownb875e532006-12-10 02:20:49 -08001484 int raid_disks = sh->disks;
1485 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 sector_t new_sector = sh->sector, check;
NeilBrown784052e2009-03-31 15:19:07 +11001487 int sectors_per_chunk = previous ? (conf->prev_chunk >> 9)
1488 : (conf->chunk_size >> 9);
NeilBrowne183eae2009-03-31 15:20:22 +11001489 int algorithm = previous ? conf->prev_algo
1490 : conf->algorithm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 sector_t stripe;
1492 int chunk_offset;
NeilBrown911d4ee2009-03-31 14:39:38 +11001493 int chunk_number, dummy1, dd_idx = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 sector_t r_sector;
NeilBrown911d4ee2009-03-31 14:39:38 +11001495 struct stripe_head sh2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
NeilBrown16a53ec2006-06-26 00:27:38 -07001497
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 chunk_offset = sector_div(new_sector, sectors_per_chunk);
1499 stripe = new_sector;
1500 BUG_ON(new_sector != stripe);
1501
NeilBrown16a53ec2006-06-26 00:27:38 -07001502 if (i == sh->pd_idx)
1503 return 0;
1504 switch(conf->level) {
1505 case 4: break;
1506 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11001507 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 case ALGORITHM_LEFT_ASYMMETRIC:
1509 case ALGORITHM_RIGHT_ASYMMETRIC:
1510 if (i > sh->pd_idx)
1511 i--;
1512 break;
1513 case ALGORITHM_LEFT_SYMMETRIC:
1514 case ALGORITHM_RIGHT_SYMMETRIC:
1515 if (i < sh->pd_idx)
1516 i += raid_disks;
1517 i -= (sh->pd_idx + 1);
1518 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11001519 case ALGORITHM_PARITY_0:
1520 i -= 1;
1521 break;
1522 case ALGORITHM_PARITY_N:
1523 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 default:
NeilBrown14f8d262006-01-06 00:20:14 -08001525 printk(KERN_ERR "raid5: unsupported algorithm %d\n",
NeilBrowne183eae2009-03-31 15:20:22 +11001526 algorithm);
NeilBrown99c0fb52009-03-31 14:39:38 +11001527 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07001528 }
1529 break;
1530 case 6:
NeilBrownd0dabf72009-03-31 14:39:38 +11001531 if (i == sh->qd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07001532 return 0; /* It is the Q disk */
NeilBrowne183eae2009-03-31 15:20:22 +11001533 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07001534 case ALGORITHM_LEFT_ASYMMETRIC:
1535 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown99c0fb52009-03-31 14:39:38 +11001536 case ALGORITHM_ROTATING_ZERO_RESTART:
1537 case ALGORITHM_ROTATING_N_RESTART:
1538 if (sh->pd_idx == raid_disks-1)
1539 i--; /* Q D D D P */
NeilBrown16a53ec2006-06-26 00:27:38 -07001540 else if (i > sh->pd_idx)
1541 i -= 2; /* D D P Q D */
1542 break;
1543 case ALGORITHM_LEFT_SYMMETRIC:
1544 case ALGORITHM_RIGHT_SYMMETRIC:
1545 if (sh->pd_idx == raid_disks-1)
1546 i--; /* Q D D D P */
1547 else {
1548 /* D D P Q D */
1549 if (i < sh->pd_idx)
1550 i += raid_disks;
1551 i -= (sh->pd_idx + 2);
1552 }
1553 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11001554 case ALGORITHM_PARITY_0:
1555 i -= 2;
1556 break;
1557 case ALGORITHM_PARITY_N:
1558 break;
1559 case ALGORITHM_ROTATING_N_CONTINUE:
1560 if (sh->pd_idx == 0)
1561 i--; /* P D D D Q */
1562 else if (i > sh->pd_idx)
1563 i -= 2; /* D D Q P D */
1564 break;
1565 case ALGORITHM_LEFT_ASYMMETRIC_6:
1566 case ALGORITHM_RIGHT_ASYMMETRIC_6:
1567 if (i > sh->pd_idx)
1568 i--;
1569 break;
1570 case ALGORITHM_LEFT_SYMMETRIC_6:
1571 case ALGORITHM_RIGHT_SYMMETRIC_6:
1572 if (i < sh->pd_idx)
1573 i += data_disks + 1;
1574 i -= (sh->pd_idx + 1);
1575 break;
1576 case ALGORITHM_PARITY_0_6:
1577 i -= 1;
1578 break;
NeilBrown16a53ec2006-06-26 00:27:38 -07001579 default:
NeilBrownd710e132008-10-13 11:55:12 +11001580 printk(KERN_CRIT "raid6: unsupported algorithm %d\n",
NeilBrowne183eae2009-03-31 15:20:22 +11001581 algorithm);
NeilBrown99c0fb52009-03-31 14:39:38 +11001582 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07001583 }
1584 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 }
1586
1587 chunk_number = stripe * data_disks + i;
1588 r_sector = (sector_t)chunk_number * sectors_per_chunk + chunk_offset;
1589
NeilBrown112bf892009-03-31 14:39:38 +11001590 check = raid5_compute_sector(conf, r_sector,
NeilBrown784052e2009-03-31 15:19:07 +11001591 previous, &dummy1, &sh2);
NeilBrown911d4ee2009-03-31 14:39:38 +11001592 if (check != sh->sector || dummy1 != dd_idx || sh2.pd_idx != sh->pd_idx
1593 || sh2.qd_idx != sh->qd_idx) {
NeilBrown14f8d262006-01-06 00:20:14 -08001594 printk(KERN_ERR "compute_blocknr: map not correct\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 return 0;
1596 }
1597 return r_sector;
1598}
1599
1600
1601
1602/*
NeilBrown16a53ec2006-06-26 00:27:38 -07001603 * Copy data between a page in the stripe cache, and one or more bion
1604 * The page could align with the middle of the bio, or there could be
1605 * several bion, each with several bio_vecs, which cover part of the page
1606 * Multiple bion are linked together on bi_next. There may be extras
1607 * at the end of this list. We ignore them.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 */
1609static void copy_data(int frombio, struct bio *bio,
1610 struct page *page,
1611 sector_t sector)
1612{
1613 char *pa = page_address(page);
1614 struct bio_vec *bvl;
1615 int i;
1616 int page_offset;
1617
1618 if (bio->bi_sector >= sector)
1619 page_offset = (signed)(bio->bi_sector - sector) * 512;
1620 else
1621 page_offset = (signed)(sector - bio->bi_sector) * -512;
1622 bio_for_each_segment(bvl, bio, i) {
1623 int len = bio_iovec_idx(bio,i)->bv_len;
1624 int clen;
1625 int b_offset = 0;
1626
1627 if (page_offset < 0) {
1628 b_offset = -page_offset;
1629 page_offset += b_offset;
1630 len -= b_offset;
1631 }
1632
1633 if (len > 0 && page_offset + len > STRIPE_SIZE)
1634 clen = STRIPE_SIZE - page_offset;
1635 else clen = len;
NeilBrown16a53ec2006-06-26 00:27:38 -07001636
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 if (clen > 0) {
1638 char *ba = __bio_kmap_atomic(bio, i, KM_USER0);
1639 if (frombio)
1640 memcpy(pa+page_offset, ba+b_offset, clen);
1641 else
1642 memcpy(ba+b_offset, pa+page_offset, clen);
1643 __bio_kunmap_atomic(ba, KM_USER0);
1644 }
1645 if (clen < len) /* hit end of page */
1646 break;
1647 page_offset += len;
1648 }
1649}
1650
Dan Williams9bc89cd2007-01-02 11:10:44 -07001651#define check_xor() do { \
1652 if (count == MAX_XOR_BLOCKS) { \
1653 xor_blocks(count, STRIPE_SIZE, dest, ptr);\
1654 count = 0; \
1655 } \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 } while(0)
1657
NeilBrown16a53ec2006-06-26 00:27:38 -07001658static void compute_parity6(struct stripe_head *sh, int method)
1659{
NeilBrownbff61972009-03-31 14:33:13 +11001660 raid5_conf_t *conf = sh->raid_conf;
NeilBrownd0dabf72009-03-31 14:39:38 +11001661 int i, pd_idx, qd_idx, d0_idx, disks = sh->disks, count;
NeilBrown67cc2b82009-03-31 14:39:38 +11001662 int syndrome_disks = sh->ddf_layout ? disks : (disks - 2);
NeilBrown16a53ec2006-06-26 00:27:38 -07001663 struct bio *chosen;
1664 /**** FIX THIS: This could be very bad if disks is close to 256 ****/
NeilBrown67cc2b82009-03-31 14:39:38 +11001665 void *ptrs[syndrome_disks+2];
NeilBrown16a53ec2006-06-26 00:27:38 -07001666
NeilBrownd0dabf72009-03-31 14:39:38 +11001667 pd_idx = sh->pd_idx;
1668 qd_idx = sh->qd_idx;
1669 d0_idx = raid6_d0(sh);
NeilBrown16a53ec2006-06-26 00:27:38 -07001670
Dan Williams45b42332007-07-09 11:56:43 -07001671 pr_debug("compute_parity, stripe %llu, method %d\n",
NeilBrown16a53ec2006-06-26 00:27:38 -07001672 (unsigned long long)sh->sector, method);
1673
1674 switch(method) {
1675 case READ_MODIFY_WRITE:
1676 BUG(); /* READ_MODIFY_WRITE N/A for RAID-6 */
1677 case RECONSTRUCT_WRITE:
1678 for (i= disks; i-- ;)
1679 if ( i != pd_idx && i != qd_idx && sh->dev[i].towrite ) {
1680 chosen = sh->dev[i].towrite;
1681 sh->dev[i].towrite = NULL;
1682
1683 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
1684 wake_up(&conf->wait_for_overlap);
1685
Eric Sesterhenn52e5f9d2006-10-03 23:33:23 +02001686 BUG_ON(sh->dev[i].written);
NeilBrown16a53ec2006-06-26 00:27:38 -07001687 sh->dev[i].written = chosen;
1688 }
1689 break;
1690 case CHECK_PARITY:
1691 BUG(); /* Not implemented yet */
1692 }
1693
1694 for (i = disks; i--;)
1695 if (sh->dev[i].written) {
1696 sector_t sector = sh->dev[i].sector;
1697 struct bio *wbi = sh->dev[i].written;
1698 while (wbi && wbi->bi_sector < sector + STRIPE_SECTORS) {
1699 copy_data(1, wbi, sh->dev[i].page, sector);
1700 wbi = r5_next_bio(wbi, sector);
1701 }
1702
1703 set_bit(R5_LOCKED, &sh->dev[i].flags);
1704 set_bit(R5_UPTODATE, &sh->dev[i].flags);
1705 }
1706
NeilBrownd0dabf72009-03-31 14:39:38 +11001707 /* Note that unlike RAID-5, the ordering of the disks matters greatly.*/
NeilBrown67cc2b82009-03-31 14:39:38 +11001708
1709 for (i = 0; i < disks; i++)
1710 ptrs[i] = (void *)raid6_empty_zero_page;
1711
NeilBrownd0dabf72009-03-31 14:39:38 +11001712 count = 0;
1713 i = d0_idx;
1714 do {
NeilBrown67cc2b82009-03-31 14:39:38 +11001715 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
1716
NeilBrownd0dabf72009-03-31 14:39:38 +11001717 ptrs[slot] = page_address(sh->dev[i].page);
NeilBrown67cc2b82009-03-31 14:39:38 +11001718 if (slot < syndrome_disks &&
NeilBrownd0dabf72009-03-31 14:39:38 +11001719 !test_bit(R5_UPTODATE, &sh->dev[i].flags)) {
1720 printk(KERN_ERR "block %d/%d not uptodate "
1721 "on parity calc\n", i, count);
1722 BUG();
1723 }
NeilBrown67cc2b82009-03-31 14:39:38 +11001724
NeilBrownd0dabf72009-03-31 14:39:38 +11001725 i = raid6_next_disk(i, disks);
1726 } while (i != d0_idx);
NeilBrown67cc2b82009-03-31 14:39:38 +11001727 BUG_ON(count != syndrome_disks);
NeilBrown16a53ec2006-06-26 00:27:38 -07001728
NeilBrown67cc2b82009-03-31 14:39:38 +11001729 raid6_call.gen_syndrome(syndrome_disks+2, STRIPE_SIZE, ptrs);
NeilBrown16a53ec2006-06-26 00:27:38 -07001730
1731 switch(method) {
1732 case RECONSTRUCT_WRITE:
1733 set_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
1734 set_bit(R5_UPTODATE, &sh->dev[qd_idx].flags);
1735 set_bit(R5_LOCKED, &sh->dev[pd_idx].flags);
1736 set_bit(R5_LOCKED, &sh->dev[qd_idx].flags);
1737 break;
1738 case UPDATE_PARITY:
1739 set_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
1740 set_bit(R5_UPTODATE, &sh->dev[qd_idx].flags);
1741 break;
1742 }
1743}
1744
1745
1746/* Compute one missing block */
1747static void compute_block_1(struct stripe_head *sh, int dd_idx, int nozero)
1748{
NeilBrownf4168852007-02-28 20:11:53 -08001749 int i, count, disks = sh->disks;
Dan Williams9bc89cd2007-01-02 11:10:44 -07001750 void *ptr[MAX_XOR_BLOCKS], *dest, *p;
NeilBrownd0dabf72009-03-31 14:39:38 +11001751 int qd_idx = sh->qd_idx;
NeilBrown16a53ec2006-06-26 00:27:38 -07001752
Dan Williams45b42332007-07-09 11:56:43 -07001753 pr_debug("compute_block_1, stripe %llu, idx %d\n",
NeilBrown16a53ec2006-06-26 00:27:38 -07001754 (unsigned long long)sh->sector, dd_idx);
1755
1756 if ( dd_idx == qd_idx ) {
1757 /* We're actually computing the Q drive */
1758 compute_parity6(sh, UPDATE_PARITY);
1759 } else {
Dan Williams9bc89cd2007-01-02 11:10:44 -07001760 dest = page_address(sh->dev[dd_idx].page);
1761 if (!nozero) memset(dest, 0, STRIPE_SIZE);
1762 count = 0;
NeilBrown16a53ec2006-06-26 00:27:38 -07001763 for (i = disks ; i--; ) {
1764 if (i == dd_idx || i == qd_idx)
1765 continue;
1766 p = page_address(sh->dev[i].page);
1767 if (test_bit(R5_UPTODATE, &sh->dev[i].flags))
1768 ptr[count++] = p;
1769 else
1770 printk("compute_block() %d, stripe %llu, %d"
1771 " not present\n", dd_idx,
1772 (unsigned long long)sh->sector, i);
1773
1774 check_xor();
1775 }
Dan Williams9bc89cd2007-01-02 11:10:44 -07001776 if (count)
1777 xor_blocks(count, STRIPE_SIZE, dest, ptr);
NeilBrown16a53ec2006-06-26 00:27:38 -07001778 if (!nozero) set_bit(R5_UPTODATE, &sh->dev[dd_idx].flags);
1779 else clear_bit(R5_UPTODATE, &sh->dev[dd_idx].flags);
1780 }
1781}
1782
1783/* Compute two missing blocks */
1784static void compute_block_2(struct stripe_head *sh, int dd_idx1, int dd_idx2)
1785{
NeilBrownf4168852007-02-28 20:11:53 -08001786 int i, count, disks = sh->disks;
NeilBrown67cc2b82009-03-31 14:39:38 +11001787 int syndrome_disks = sh->ddf_layout ? disks : disks-2;
NeilBrownd0dabf72009-03-31 14:39:38 +11001788 int d0_idx = raid6_d0(sh);
1789 int faila = -1, failb = -1;
1790 /**** FIX THIS: This could be very bad if disks is close to 256 ****/
NeilBrown67cc2b82009-03-31 14:39:38 +11001791 void *ptrs[syndrome_disks+2];
NeilBrown16a53ec2006-06-26 00:27:38 -07001792
NeilBrown67cc2b82009-03-31 14:39:38 +11001793 for (i = 0; i < disks ; i++)
1794 ptrs[i] = (void *)raid6_empty_zero_page;
NeilBrownd0dabf72009-03-31 14:39:38 +11001795 count = 0;
1796 i = d0_idx;
1797 do {
NeilBrown67cc2b82009-03-31 14:39:38 +11001798 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
1799
NeilBrownd0dabf72009-03-31 14:39:38 +11001800 ptrs[slot] = page_address(sh->dev[i].page);
NeilBrown67cc2b82009-03-31 14:39:38 +11001801
NeilBrownd0dabf72009-03-31 14:39:38 +11001802 if (i == dd_idx1)
1803 faila = slot;
1804 if (i == dd_idx2)
1805 failb = slot;
1806 i = raid6_next_disk(i, disks);
1807 } while (i != d0_idx);
NeilBrown67cc2b82009-03-31 14:39:38 +11001808 BUG_ON(count != syndrome_disks);
NeilBrown16a53ec2006-06-26 00:27:38 -07001809
1810 BUG_ON(faila == failb);
1811 if ( failb < faila ) { int tmp = faila; faila = failb; failb = tmp; }
1812
Dan Williams45b42332007-07-09 11:56:43 -07001813 pr_debug("compute_block_2, stripe %llu, idx %d,%d (%d,%d)\n",
NeilBrownd0dabf72009-03-31 14:39:38 +11001814 (unsigned long long)sh->sector, dd_idx1, dd_idx2,
1815 faila, failb);
NeilBrown16a53ec2006-06-26 00:27:38 -07001816
NeilBrown67cc2b82009-03-31 14:39:38 +11001817 if (failb == syndrome_disks+1) {
NeilBrown16a53ec2006-06-26 00:27:38 -07001818 /* Q disk is one of the missing disks */
NeilBrown67cc2b82009-03-31 14:39:38 +11001819 if (faila == syndrome_disks) {
NeilBrown16a53ec2006-06-26 00:27:38 -07001820 /* Missing P+Q, just recompute */
1821 compute_parity6(sh, UPDATE_PARITY);
1822 return;
1823 } else {
1824 /* We're missing D+Q; recompute D from P */
NeilBrownd0dabf72009-03-31 14:39:38 +11001825 compute_block_1(sh, ((dd_idx1 == sh->qd_idx) ?
1826 dd_idx2 : dd_idx1),
1827 0);
NeilBrown16a53ec2006-06-26 00:27:38 -07001828 compute_parity6(sh, UPDATE_PARITY); /* Is this necessary? */
1829 return;
1830 }
1831 }
1832
NeilBrownd0dabf72009-03-31 14:39:38 +11001833 /* We're missing D+P or D+D; */
NeilBrown67cc2b82009-03-31 14:39:38 +11001834 if (failb == syndrome_disks) {
NeilBrownd0dabf72009-03-31 14:39:38 +11001835 /* We're missing D+P. */
NeilBrown67cc2b82009-03-31 14:39:38 +11001836 raid6_datap_recov(syndrome_disks+2, STRIPE_SIZE, faila, ptrs);
NeilBrownd0dabf72009-03-31 14:39:38 +11001837 } else {
1838 /* We're missing D+D. */
NeilBrown67cc2b82009-03-31 14:39:38 +11001839 raid6_2data_recov(syndrome_disks+2, STRIPE_SIZE, faila, failb,
1840 ptrs);
NeilBrown16a53ec2006-06-26 00:27:38 -07001841 }
NeilBrownd0dabf72009-03-31 14:39:38 +11001842
1843 /* Both the above update both missing blocks */
1844 set_bit(R5_UPTODATE, &sh->dev[dd_idx1].flags);
1845 set_bit(R5_UPTODATE, &sh->dev[dd_idx2].flags);
NeilBrown16a53ec2006-06-26 00:27:38 -07001846}
1847
Dan Williams600aa102008-06-28 08:32:05 +10001848static void
Dan Williams1fe797e2008-06-28 09:16:30 +10001849schedule_reconstruction5(struct stripe_head *sh, struct stripe_head_state *s,
Dan Williams600aa102008-06-28 08:32:05 +10001850 int rcw, int expand)
Dan Williamse33129d2007-01-02 13:52:30 -07001851{
1852 int i, pd_idx = sh->pd_idx, disks = sh->disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07001853
Dan Williamse33129d2007-01-02 13:52:30 -07001854 if (rcw) {
1855 /* if we are not expanding this is a proper write request, and
1856 * there will be bios with new data to be drained into the
1857 * stripe cache
1858 */
1859 if (!expand) {
Dan Williams600aa102008-06-28 08:32:05 +10001860 sh->reconstruct_state = reconstruct_state_drain_run;
1861 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
1862 } else
1863 sh->reconstruct_state = reconstruct_state_run;
Dan Williamse33129d2007-01-02 13:52:30 -07001864
Dan Williams600aa102008-06-28 08:32:05 +10001865 set_bit(STRIPE_OP_POSTXOR, &s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07001866
1867 for (i = disks; i--; ) {
1868 struct r5dev *dev = &sh->dev[i];
1869
1870 if (dev->towrite) {
1871 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsd8ee0722008-06-28 08:32:06 +10001872 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07001873 if (!expand)
1874 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10001875 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07001876 }
1877 }
Dan Williams600aa102008-06-28 08:32:05 +10001878 if (s->locked + 1 == disks)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07001879 if (!test_and_set_bit(STRIPE_FULL_WRITE, &sh->state))
1880 atomic_inc(&sh->raid_conf->pending_full_writes);
Dan Williamse33129d2007-01-02 13:52:30 -07001881 } else {
1882 BUG_ON(!(test_bit(R5_UPTODATE, &sh->dev[pd_idx].flags) ||
1883 test_bit(R5_Wantcompute, &sh->dev[pd_idx].flags)));
1884
Dan Williamsd8ee0722008-06-28 08:32:06 +10001885 sh->reconstruct_state = reconstruct_state_prexor_drain_run;
Dan Williams600aa102008-06-28 08:32:05 +10001886 set_bit(STRIPE_OP_PREXOR, &s->ops_request);
1887 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
1888 set_bit(STRIPE_OP_POSTXOR, &s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07001889
1890 for (i = disks; i--; ) {
1891 struct r5dev *dev = &sh->dev[i];
1892 if (i == pd_idx)
1893 continue;
1894
Dan Williamse33129d2007-01-02 13:52:30 -07001895 if (dev->towrite &&
1896 (test_bit(R5_UPTODATE, &dev->flags) ||
Dan Williamsd8ee0722008-06-28 08:32:06 +10001897 test_bit(R5_Wantcompute, &dev->flags))) {
1898 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07001899 set_bit(R5_LOCKED, &dev->flags);
1900 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10001901 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07001902 }
1903 }
1904 }
1905
1906 /* keep the parity disk locked while asynchronous operations
1907 * are in flight
1908 */
1909 set_bit(R5_LOCKED, &sh->dev[pd_idx].flags);
1910 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
Dan Williams600aa102008-06-28 08:32:05 +10001911 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07001912
Dan Williams600aa102008-06-28 08:32:05 +10001913 pr_debug("%s: stripe %llu locked: %d ops_request: %lx\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -07001914 __func__, (unsigned long long)sh->sector,
Dan Williams600aa102008-06-28 08:32:05 +10001915 s->locked, s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07001916}
NeilBrown16a53ec2006-06-26 00:27:38 -07001917
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918/*
1919 * Each stripe/dev can have one or more bion attached.
NeilBrown16a53ec2006-06-26 00:27:38 -07001920 * toread/towrite point to the first in a chain.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 * The bi_next chain must be in order.
1922 */
1923static int add_stripe_bio(struct stripe_head *sh, struct bio *bi, int dd_idx, int forwrite)
1924{
1925 struct bio **bip;
1926 raid5_conf_t *conf = sh->raid_conf;
NeilBrown72626682005-09-09 16:23:54 -07001927 int firstwrite=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
Dan Williams45b42332007-07-09 11:56:43 -07001929 pr_debug("adding bh b#%llu to stripe s#%llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 (unsigned long long)bi->bi_sector,
1931 (unsigned long long)sh->sector);
1932
1933
1934 spin_lock(&sh->lock);
1935 spin_lock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07001936 if (forwrite) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 bip = &sh->dev[dd_idx].towrite;
NeilBrown72626682005-09-09 16:23:54 -07001938 if (*bip == NULL && sh->dev[dd_idx].written == NULL)
1939 firstwrite = 1;
1940 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 bip = &sh->dev[dd_idx].toread;
1942 while (*bip && (*bip)->bi_sector < bi->bi_sector) {
1943 if ((*bip)->bi_sector + ((*bip)->bi_size >> 9) > bi->bi_sector)
1944 goto overlap;
1945 bip = & (*bip)->bi_next;
1946 }
1947 if (*bip && (*bip)->bi_sector < bi->bi_sector + ((bi->bi_size)>>9))
1948 goto overlap;
1949
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02001950 BUG_ON(*bip && bi->bi_next && (*bip) != bi->bi_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 if (*bip)
1952 bi->bi_next = *bip;
1953 *bip = bi;
Jens Axboe960e7392008-08-15 10:41:18 +02001954 bi->bi_phys_segments++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 spin_unlock_irq(&conf->device_lock);
1956 spin_unlock(&sh->lock);
1957
Dan Williams45b42332007-07-09 11:56:43 -07001958 pr_debug("added bi b#%llu to stripe s#%llu, disk %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 (unsigned long long)bi->bi_sector,
1960 (unsigned long long)sh->sector, dd_idx);
1961
NeilBrown72626682005-09-09 16:23:54 -07001962 if (conf->mddev->bitmap && firstwrite) {
NeilBrown72626682005-09-09 16:23:54 -07001963 bitmap_startwrite(conf->mddev->bitmap, sh->sector,
1964 STRIPE_SECTORS, 0);
NeilBrownae3c20c2006-07-10 04:44:17 -07001965 sh->bm_seq = conf->seq_flush+1;
NeilBrown72626682005-09-09 16:23:54 -07001966 set_bit(STRIPE_BIT_DELAY, &sh->state);
1967 }
1968
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 if (forwrite) {
1970 /* check if page is covered */
1971 sector_t sector = sh->dev[dd_idx].sector;
1972 for (bi=sh->dev[dd_idx].towrite;
1973 sector < sh->dev[dd_idx].sector + STRIPE_SECTORS &&
1974 bi && bi->bi_sector <= sector;
1975 bi = r5_next_bio(bi, sh->dev[dd_idx].sector)) {
1976 if (bi->bi_sector + (bi->bi_size>>9) >= sector)
1977 sector = bi->bi_sector + (bi->bi_size>>9);
1978 }
1979 if (sector >= sh->dev[dd_idx].sector + STRIPE_SECTORS)
1980 set_bit(R5_OVERWRITE, &sh->dev[dd_idx].flags);
1981 }
1982 return 1;
1983
1984 overlap:
1985 set_bit(R5_Overlap, &sh->dev[dd_idx].flags);
1986 spin_unlock_irq(&conf->device_lock);
1987 spin_unlock(&sh->lock);
1988 return 0;
1989}
1990
NeilBrown29269552006-03-27 01:18:10 -08001991static void end_reshape(raid5_conf_t *conf);
1992
NeilBrown16a53ec2006-06-26 00:27:38 -07001993static int page_is_zero(struct page *p)
1994{
1995 char *a = page_address(p);
1996 return ((*(u32*)a) == 0 &&
1997 memcmp(a, a+4, STRIPE_SIZE-4)==0);
1998}
1999
NeilBrown911d4ee2009-03-31 14:39:38 +11002000static void stripe_set_idx(sector_t stripe, raid5_conf_t *conf, int previous,
2001 struct stripe_head *sh)
NeilBrownccfcc3c2006-03-27 01:18:09 -08002002{
NeilBrown784052e2009-03-31 15:19:07 +11002003 int sectors_per_chunk =
2004 previous ? (conf->prev_chunk >> 9)
2005 : (conf->chunk_size >> 9);
NeilBrown911d4ee2009-03-31 14:39:38 +11002006 int dd_idx;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07002007 int chunk_offset = sector_div(stripe, sectors_per_chunk);
NeilBrown112bf892009-03-31 14:39:38 +11002008 int disks = previous ? conf->previous_raid_disks : conf->raid_disks;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07002009
NeilBrown112bf892009-03-31 14:39:38 +11002010 raid5_compute_sector(conf,
2011 stripe * (disks - conf->max_degraded)
NeilBrownb875e532006-12-10 02:20:49 -08002012 *sectors_per_chunk + chunk_offset,
NeilBrown112bf892009-03-31 14:39:38 +11002013 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11002014 &dd_idx, sh);
NeilBrownccfcc3c2006-03-27 01:18:09 -08002015}
2016
Dan Williamsa4456852007-07-09 11:56:43 -07002017static void
Dan Williams1fe797e2008-06-28 09:16:30 +10002018handle_failed_stripe(raid5_conf_t *conf, struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07002019 struct stripe_head_state *s, int disks,
2020 struct bio **return_bi)
2021{
2022 int i;
2023 for (i = disks; i--; ) {
2024 struct bio *bi;
2025 int bitmap_end = 0;
2026
2027 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
2028 mdk_rdev_t *rdev;
2029 rcu_read_lock();
2030 rdev = rcu_dereference(conf->disks[i].rdev);
2031 if (rdev && test_bit(In_sync, &rdev->flags))
2032 /* multiple read failures in one stripe */
2033 md_error(conf->mddev, rdev);
2034 rcu_read_unlock();
2035 }
2036 spin_lock_irq(&conf->device_lock);
2037 /* fail all writes first */
2038 bi = sh->dev[i].towrite;
2039 sh->dev[i].towrite = NULL;
2040 if (bi) {
2041 s->to_write--;
2042 bitmap_end = 1;
2043 }
2044
2045 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
2046 wake_up(&conf->wait_for_overlap);
2047
2048 while (bi && bi->bi_sector <
2049 sh->dev[i].sector + STRIPE_SECTORS) {
2050 struct bio *nextbi = r5_next_bio(bi, sh->dev[i].sector);
2051 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Jens Axboe960e7392008-08-15 10:41:18 +02002052 if (!raid5_dec_bi_phys_segments(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002053 md_write_end(conf->mddev);
2054 bi->bi_next = *return_bi;
2055 *return_bi = bi;
2056 }
2057 bi = nextbi;
2058 }
2059 /* and fail all 'written' */
2060 bi = sh->dev[i].written;
2061 sh->dev[i].written = NULL;
2062 if (bi) bitmap_end = 1;
2063 while (bi && bi->bi_sector <
2064 sh->dev[i].sector + STRIPE_SECTORS) {
2065 struct bio *bi2 = r5_next_bio(bi, sh->dev[i].sector);
2066 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Jens Axboe960e7392008-08-15 10:41:18 +02002067 if (!raid5_dec_bi_phys_segments(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002068 md_write_end(conf->mddev);
2069 bi->bi_next = *return_bi;
2070 *return_bi = bi;
2071 }
2072 bi = bi2;
2073 }
2074
Dan Williamsb5e98d62007-01-02 13:52:31 -07002075 /* fail any reads if this device is non-operational and
2076 * the data has not reached the cache yet.
2077 */
2078 if (!test_bit(R5_Wantfill, &sh->dev[i].flags) &&
2079 (!test_bit(R5_Insync, &sh->dev[i].flags) ||
2080 test_bit(R5_ReadError, &sh->dev[i].flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07002081 bi = sh->dev[i].toread;
2082 sh->dev[i].toread = NULL;
2083 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
2084 wake_up(&conf->wait_for_overlap);
2085 if (bi) s->to_read--;
2086 while (bi && bi->bi_sector <
2087 sh->dev[i].sector + STRIPE_SECTORS) {
2088 struct bio *nextbi =
2089 r5_next_bio(bi, sh->dev[i].sector);
2090 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Jens Axboe960e7392008-08-15 10:41:18 +02002091 if (!raid5_dec_bi_phys_segments(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002092 bi->bi_next = *return_bi;
2093 *return_bi = bi;
2094 }
2095 bi = nextbi;
2096 }
2097 }
2098 spin_unlock_irq(&conf->device_lock);
2099 if (bitmap_end)
2100 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
2101 STRIPE_SECTORS, 0, 0);
2102 }
2103
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002104 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
2105 if (atomic_dec_and_test(&conf->pending_full_writes))
2106 md_wakeup_thread(conf->mddev->thread);
Dan Williamsa4456852007-07-09 11:56:43 -07002107}
2108
Dan Williams1fe797e2008-06-28 09:16:30 +10002109/* fetch_block5 - checks the given member device to see if its data needs
2110 * to be read or computed to satisfy a request.
2111 *
2112 * Returns 1 when no more member devices need to be checked, otherwise returns
2113 * 0 to tell the loop in handle_stripe_fill5 to continue
Dan Williamsf38e1212007-01-02 13:52:30 -07002114 */
Dan Williams1fe797e2008-06-28 09:16:30 +10002115static int fetch_block5(struct stripe_head *sh, struct stripe_head_state *s,
2116 int disk_idx, int disks)
Dan Williamsf38e1212007-01-02 13:52:30 -07002117{
2118 struct r5dev *dev = &sh->dev[disk_idx];
2119 struct r5dev *failed_dev = &sh->dev[s->failed_num];
2120
Dan Williamsf38e1212007-01-02 13:52:30 -07002121 /* is the data in this block needed, and can we get it? */
2122 if (!test_bit(R5_LOCKED, &dev->flags) &&
Dan Williams1fe797e2008-06-28 09:16:30 +10002123 !test_bit(R5_UPTODATE, &dev->flags) &&
2124 (dev->toread ||
2125 (dev->towrite && !test_bit(R5_OVERWRITE, &dev->flags)) ||
2126 s->syncing || s->expanding ||
2127 (s->failed &&
2128 (failed_dev->toread ||
2129 (failed_dev->towrite &&
2130 !test_bit(R5_OVERWRITE, &failed_dev->flags)))))) {
Dan Williams976ea8d2008-06-28 08:32:03 +10002131 /* We would like to get this block, possibly by computing it,
2132 * otherwise read it if the backing disk is insync
Dan Williamsf38e1212007-01-02 13:52:30 -07002133 */
2134 if ((s->uptodate == disks - 1) &&
Dan Williamsecc65c92008-06-28 08:31:57 +10002135 (s->failed && disk_idx == s->failed_num)) {
Dan Williams976ea8d2008-06-28 08:32:03 +10002136 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
2137 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
Dan Williamsf38e1212007-01-02 13:52:30 -07002138 set_bit(R5_Wantcompute, &dev->flags);
2139 sh->ops.target = disk_idx;
2140 s->req_compute = 1;
Dan Williamsf38e1212007-01-02 13:52:30 -07002141 /* Careful: from this point on 'uptodate' is in the eye
2142 * of raid5_run_ops which services 'compute' operations
2143 * before writes. R5_Wantcompute flags a block that will
2144 * be R5_UPTODATE by the time it is needed for a
2145 * subsequent operation.
2146 */
2147 s->uptodate++;
Dan Williams1fe797e2008-06-28 09:16:30 +10002148 return 1; /* uptodate + compute == disks */
Dan Williams7a1fc532008-07-10 04:54:57 -07002149 } else if (test_bit(R5_Insync, &dev->flags)) {
Dan Williamsf38e1212007-01-02 13:52:30 -07002150 set_bit(R5_LOCKED, &dev->flags);
2151 set_bit(R5_Wantread, &dev->flags);
Dan Williamsf38e1212007-01-02 13:52:30 -07002152 s->locked++;
2153 pr_debug("Reading block %d (sync=%d)\n", disk_idx,
2154 s->syncing);
2155 }
2156 }
2157
Dan Williams1fe797e2008-06-28 09:16:30 +10002158 return 0;
Dan Williamsf38e1212007-01-02 13:52:30 -07002159}
2160
Dan Williams1fe797e2008-06-28 09:16:30 +10002161/**
2162 * handle_stripe_fill5 - read or compute data to satisfy pending requests.
2163 */
2164static void handle_stripe_fill5(struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07002165 struct stripe_head_state *s, int disks)
2166{
2167 int i;
Dan Williamsf38e1212007-01-02 13:52:30 -07002168
Dan Williamsf38e1212007-01-02 13:52:30 -07002169 /* look for blocks to read/compute, skip this if a compute
2170 * is already in flight, or if the stripe contents are in the
2171 * midst of changing due to a write
2172 */
Dan Williams976ea8d2008-06-28 08:32:03 +10002173 if (!test_bit(STRIPE_COMPUTE_RUN, &sh->state) && !sh->check_state &&
Dan Williams1fe797e2008-06-28 09:16:30 +10002174 !sh->reconstruct_state)
Dan Williamsf38e1212007-01-02 13:52:30 -07002175 for (i = disks; i--; )
Dan Williams1fe797e2008-06-28 09:16:30 +10002176 if (fetch_block5(sh, s, i, disks))
Dan Williamsf38e1212007-01-02 13:52:30 -07002177 break;
Dan Williamsa4456852007-07-09 11:56:43 -07002178 set_bit(STRIPE_HANDLE, &sh->state);
2179}
2180
Dan Williams1fe797e2008-06-28 09:16:30 +10002181static void handle_stripe_fill6(struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07002182 struct stripe_head_state *s, struct r6_state *r6s,
2183 int disks)
2184{
2185 int i;
2186 for (i = disks; i--; ) {
2187 struct r5dev *dev = &sh->dev[i];
2188 if (!test_bit(R5_LOCKED, &dev->flags) &&
2189 !test_bit(R5_UPTODATE, &dev->flags) &&
2190 (dev->toread || (dev->towrite &&
2191 !test_bit(R5_OVERWRITE, &dev->flags)) ||
2192 s->syncing || s->expanding ||
2193 (s->failed >= 1 &&
2194 (sh->dev[r6s->failed_num[0]].toread ||
2195 s->to_write)) ||
2196 (s->failed >= 2 &&
2197 (sh->dev[r6s->failed_num[1]].toread ||
2198 s->to_write)))) {
2199 /* we would like to get this block, possibly
2200 * by computing it, but we might not be able to
2201 */
Dan Williamsc3378692008-06-05 22:45:54 -07002202 if ((s->uptodate == disks - 1) &&
2203 (s->failed && (i == r6s->failed_num[0] ||
2204 i == r6s->failed_num[1]))) {
Dan Williams45b42332007-07-09 11:56:43 -07002205 pr_debug("Computing stripe %llu block %d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002206 (unsigned long long)sh->sector, i);
2207 compute_block_1(sh, i, 0);
2208 s->uptodate++;
2209 } else if ( s->uptodate == disks-2 && s->failed >= 2 ) {
2210 /* Computing 2-failure is *very* expensive; only
2211 * do it if failed >= 2
2212 */
2213 int other;
2214 for (other = disks; other--; ) {
2215 if (other == i)
2216 continue;
2217 if (!test_bit(R5_UPTODATE,
2218 &sh->dev[other].flags))
2219 break;
2220 }
2221 BUG_ON(other < 0);
Dan Williams45b42332007-07-09 11:56:43 -07002222 pr_debug("Computing stripe %llu blocks %d,%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002223 (unsigned long long)sh->sector,
2224 i, other);
2225 compute_block_2(sh, i, other);
2226 s->uptodate += 2;
2227 } else if (test_bit(R5_Insync, &dev->flags)) {
2228 set_bit(R5_LOCKED, &dev->flags);
2229 set_bit(R5_Wantread, &dev->flags);
2230 s->locked++;
Dan Williams45b42332007-07-09 11:56:43 -07002231 pr_debug("Reading block %d (sync=%d)\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002232 i, s->syncing);
2233 }
2234 }
2235 }
2236 set_bit(STRIPE_HANDLE, &sh->state);
2237}
2238
2239
Dan Williams1fe797e2008-06-28 09:16:30 +10002240/* handle_stripe_clean_event
Dan Williamsa4456852007-07-09 11:56:43 -07002241 * any written block on an uptodate or failed drive can be returned.
2242 * Note that if we 'wrote' to a failed drive, it will be UPTODATE, but
2243 * never LOCKED, so we don't need to test 'failed' directly.
2244 */
Dan Williams1fe797e2008-06-28 09:16:30 +10002245static void handle_stripe_clean_event(raid5_conf_t *conf,
Dan Williamsa4456852007-07-09 11:56:43 -07002246 struct stripe_head *sh, int disks, struct bio **return_bi)
2247{
2248 int i;
2249 struct r5dev *dev;
2250
2251 for (i = disks; i--; )
2252 if (sh->dev[i].written) {
2253 dev = &sh->dev[i];
2254 if (!test_bit(R5_LOCKED, &dev->flags) &&
2255 test_bit(R5_UPTODATE, &dev->flags)) {
2256 /* We can return any write requests */
2257 struct bio *wbi, *wbi2;
2258 int bitmap_end = 0;
Dan Williams45b42332007-07-09 11:56:43 -07002259 pr_debug("Return write for disc %d\n", i);
Dan Williamsa4456852007-07-09 11:56:43 -07002260 spin_lock_irq(&conf->device_lock);
2261 wbi = dev->written;
2262 dev->written = NULL;
2263 while (wbi && wbi->bi_sector <
2264 dev->sector + STRIPE_SECTORS) {
2265 wbi2 = r5_next_bio(wbi, dev->sector);
Jens Axboe960e7392008-08-15 10:41:18 +02002266 if (!raid5_dec_bi_phys_segments(wbi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002267 md_write_end(conf->mddev);
2268 wbi->bi_next = *return_bi;
2269 *return_bi = wbi;
2270 }
2271 wbi = wbi2;
2272 }
2273 if (dev->towrite == NULL)
2274 bitmap_end = 1;
2275 spin_unlock_irq(&conf->device_lock);
2276 if (bitmap_end)
2277 bitmap_endwrite(conf->mddev->bitmap,
2278 sh->sector,
2279 STRIPE_SECTORS,
2280 !test_bit(STRIPE_DEGRADED, &sh->state),
2281 0);
2282 }
2283 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002284
2285 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
2286 if (atomic_dec_and_test(&conf->pending_full_writes))
2287 md_wakeup_thread(conf->mddev->thread);
Dan Williamsa4456852007-07-09 11:56:43 -07002288}
2289
Dan Williams1fe797e2008-06-28 09:16:30 +10002290static void handle_stripe_dirtying5(raid5_conf_t *conf,
Dan Williamsa4456852007-07-09 11:56:43 -07002291 struct stripe_head *sh, struct stripe_head_state *s, int disks)
2292{
2293 int rmw = 0, rcw = 0, i;
2294 for (i = disks; i--; ) {
2295 /* would I have to read this buffer for read_modify_write */
2296 struct r5dev *dev = &sh->dev[i];
2297 if ((dev->towrite || i == sh->pd_idx) &&
2298 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002299 !(test_bit(R5_UPTODATE, &dev->flags) ||
2300 test_bit(R5_Wantcompute, &dev->flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07002301 if (test_bit(R5_Insync, &dev->flags))
2302 rmw++;
2303 else
2304 rmw += 2*disks; /* cannot read it */
2305 }
2306 /* Would I have to read this buffer for reconstruct_write */
2307 if (!test_bit(R5_OVERWRITE, &dev->flags) && i != sh->pd_idx &&
2308 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002309 !(test_bit(R5_UPTODATE, &dev->flags) ||
2310 test_bit(R5_Wantcompute, &dev->flags))) {
2311 if (test_bit(R5_Insync, &dev->flags)) rcw++;
Dan Williamsa4456852007-07-09 11:56:43 -07002312 else
2313 rcw += 2*disks;
2314 }
2315 }
Dan Williams45b42332007-07-09 11:56:43 -07002316 pr_debug("for sector %llu, rmw=%d rcw=%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002317 (unsigned long long)sh->sector, rmw, rcw);
2318 set_bit(STRIPE_HANDLE, &sh->state);
2319 if (rmw < rcw && rmw > 0)
2320 /* prefer read-modify-write, but need to get some data */
2321 for (i = disks; i--; ) {
2322 struct r5dev *dev = &sh->dev[i];
2323 if ((dev->towrite || i == sh->pd_idx) &&
2324 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002325 !(test_bit(R5_UPTODATE, &dev->flags) ||
2326 test_bit(R5_Wantcompute, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07002327 test_bit(R5_Insync, &dev->flags)) {
2328 if (
2329 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07002330 pr_debug("Read_old block "
Dan Williamsa4456852007-07-09 11:56:43 -07002331 "%d for r-m-w\n", i);
2332 set_bit(R5_LOCKED, &dev->flags);
2333 set_bit(R5_Wantread, &dev->flags);
2334 s->locked++;
2335 } else {
2336 set_bit(STRIPE_DELAYED, &sh->state);
2337 set_bit(STRIPE_HANDLE, &sh->state);
2338 }
2339 }
2340 }
2341 if (rcw <= rmw && rcw > 0)
2342 /* want reconstruct write, but need to get some data */
2343 for (i = disks; i--; ) {
2344 struct r5dev *dev = &sh->dev[i];
2345 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
2346 i != sh->pd_idx &&
2347 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002348 !(test_bit(R5_UPTODATE, &dev->flags) ||
2349 test_bit(R5_Wantcompute, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07002350 test_bit(R5_Insync, &dev->flags)) {
2351 if (
2352 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07002353 pr_debug("Read_old block "
Dan Williamsa4456852007-07-09 11:56:43 -07002354 "%d for Reconstruct\n", i);
2355 set_bit(R5_LOCKED, &dev->flags);
2356 set_bit(R5_Wantread, &dev->flags);
2357 s->locked++;
2358 } else {
2359 set_bit(STRIPE_DELAYED, &sh->state);
2360 set_bit(STRIPE_HANDLE, &sh->state);
2361 }
2362 }
2363 }
2364 /* now if nothing is locked, and if we have enough data,
2365 * we can start a write request
2366 */
Dan Williamsf38e1212007-01-02 13:52:30 -07002367 /* since handle_stripe can be called at any time we need to handle the
2368 * case where a compute block operation has been submitted and then a
2369 * subsequent call wants to start a write request. raid5_run_ops only
2370 * handles the case where compute block and postxor are requested
2371 * simultaneously. If this is not the case then new writes need to be
2372 * held off until the compute completes.
2373 */
Dan Williams976ea8d2008-06-28 08:32:03 +10002374 if ((s->req_compute || !test_bit(STRIPE_COMPUTE_RUN, &sh->state)) &&
2375 (s->locked == 0 && (rcw == 0 || rmw == 0) &&
2376 !test_bit(STRIPE_BIT_DELAY, &sh->state)))
Dan Williams1fe797e2008-06-28 09:16:30 +10002377 schedule_reconstruction5(sh, s, rcw == 0, 0);
Dan Williamsa4456852007-07-09 11:56:43 -07002378}
2379
Dan Williams1fe797e2008-06-28 09:16:30 +10002380static void handle_stripe_dirtying6(raid5_conf_t *conf,
Dan Williamsa4456852007-07-09 11:56:43 -07002381 struct stripe_head *sh, struct stripe_head_state *s,
2382 struct r6_state *r6s, int disks)
2383{
2384 int rcw = 0, must_compute = 0, pd_idx = sh->pd_idx, i;
NeilBrown34e04e82009-03-31 15:10:16 +11002385 int qd_idx = sh->qd_idx;
Dan Williamsa4456852007-07-09 11:56:43 -07002386 for (i = disks; i--; ) {
2387 struct r5dev *dev = &sh->dev[i];
2388 /* Would I have to read this buffer for reconstruct_write */
2389 if (!test_bit(R5_OVERWRITE, &dev->flags)
2390 && i != pd_idx && i != qd_idx
2391 && (!test_bit(R5_LOCKED, &dev->flags)
2392 ) &&
2393 !test_bit(R5_UPTODATE, &dev->flags)) {
2394 if (test_bit(R5_Insync, &dev->flags)) rcw++;
2395 else {
Dan Williams45b42332007-07-09 11:56:43 -07002396 pr_debug("raid6: must_compute: "
Dan Williamsa4456852007-07-09 11:56:43 -07002397 "disk %d flags=%#lx\n", i, dev->flags);
2398 must_compute++;
2399 }
2400 }
2401 }
Dan Williams45b42332007-07-09 11:56:43 -07002402 pr_debug("for sector %llu, rcw=%d, must_compute=%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002403 (unsigned long long)sh->sector, rcw, must_compute);
2404 set_bit(STRIPE_HANDLE, &sh->state);
2405
2406 if (rcw > 0)
2407 /* want reconstruct write, but need to get some data */
2408 for (i = disks; i--; ) {
2409 struct r5dev *dev = &sh->dev[i];
2410 if (!test_bit(R5_OVERWRITE, &dev->flags)
2411 && !(s->failed == 0 && (i == pd_idx || i == qd_idx))
2412 && !test_bit(R5_LOCKED, &dev->flags) &&
2413 !test_bit(R5_UPTODATE, &dev->flags) &&
2414 test_bit(R5_Insync, &dev->flags)) {
2415 if (
2416 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07002417 pr_debug("Read_old stripe %llu "
Dan Williamsa4456852007-07-09 11:56:43 -07002418 "block %d for Reconstruct\n",
2419 (unsigned long long)sh->sector, i);
2420 set_bit(R5_LOCKED, &dev->flags);
2421 set_bit(R5_Wantread, &dev->flags);
2422 s->locked++;
2423 } else {
Dan Williams45b42332007-07-09 11:56:43 -07002424 pr_debug("Request delayed stripe %llu "
Dan Williamsa4456852007-07-09 11:56:43 -07002425 "block %d for Reconstruct\n",
2426 (unsigned long long)sh->sector, i);
2427 set_bit(STRIPE_DELAYED, &sh->state);
2428 set_bit(STRIPE_HANDLE, &sh->state);
2429 }
2430 }
2431 }
2432 /* now if nothing is locked, and if we have enough data, we can start a
2433 * write request
2434 */
2435 if (s->locked == 0 && rcw == 0 &&
2436 !test_bit(STRIPE_BIT_DELAY, &sh->state)) {
2437 if (must_compute > 0) {
2438 /* We have failed blocks and need to compute them */
2439 switch (s->failed) {
2440 case 0:
2441 BUG();
2442 case 1:
2443 compute_block_1(sh, r6s->failed_num[0], 0);
2444 break;
2445 case 2:
2446 compute_block_2(sh, r6s->failed_num[0],
2447 r6s->failed_num[1]);
2448 break;
2449 default: /* This request should have been failed? */
2450 BUG();
2451 }
2452 }
2453
Dan Williams45b42332007-07-09 11:56:43 -07002454 pr_debug("Computing parity for stripe %llu\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002455 (unsigned long long)sh->sector);
2456 compute_parity6(sh, RECONSTRUCT_WRITE);
2457 /* now every locked buffer is ready to be written */
2458 for (i = disks; i--; )
2459 if (test_bit(R5_LOCKED, &sh->dev[i].flags)) {
Dan Williams45b42332007-07-09 11:56:43 -07002460 pr_debug("Writing stripe %llu block %d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002461 (unsigned long long)sh->sector, i);
2462 s->locked++;
2463 set_bit(R5_Wantwrite, &sh->dev[i].flags);
2464 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002465 if (s->locked == disks)
2466 if (!test_and_set_bit(STRIPE_FULL_WRITE, &sh->state))
2467 atomic_inc(&conf->pending_full_writes);
Dan Williamsa4456852007-07-09 11:56:43 -07002468 /* after a RECONSTRUCT_WRITE, the stripe MUST be in-sync */
2469 set_bit(STRIPE_INSYNC, &sh->state);
2470
2471 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
2472 atomic_dec(&conf->preread_active_stripes);
2473 if (atomic_read(&conf->preread_active_stripes) <
2474 IO_THRESHOLD)
2475 md_wakeup_thread(conf->mddev->thread);
2476 }
2477 }
2478}
2479
2480static void handle_parity_checks5(raid5_conf_t *conf, struct stripe_head *sh,
2481 struct stripe_head_state *s, int disks)
2482{
Dan Williamsecc65c92008-06-28 08:31:57 +10002483 struct r5dev *dev = NULL;
Dan Williamse89f8962007-01-02 13:52:31 -07002484
Dan Williamsbd2ab672008-04-10 21:29:27 -07002485 set_bit(STRIPE_HANDLE, &sh->state);
2486
Dan Williamsecc65c92008-06-28 08:31:57 +10002487 switch (sh->check_state) {
2488 case check_state_idle:
2489 /* start a new check operation if there are no failures */
Dan Williamsbd2ab672008-04-10 21:29:27 -07002490 if (s->failed == 0) {
Dan Williamsbd2ab672008-04-10 21:29:27 -07002491 BUG_ON(s->uptodate != disks);
Dan Williamsecc65c92008-06-28 08:31:57 +10002492 sh->check_state = check_state_run;
2493 set_bit(STRIPE_OP_CHECK, &s->ops_request);
Dan Williamsbd2ab672008-04-10 21:29:27 -07002494 clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
Dan Williamsbd2ab672008-04-10 21:29:27 -07002495 s->uptodate--;
Dan Williamsecc65c92008-06-28 08:31:57 +10002496 break;
Dan Williamsbd2ab672008-04-10 21:29:27 -07002497 }
Dan Williamsa4456852007-07-09 11:56:43 -07002498 dev = &sh->dev[s->failed_num];
Dan Williamsecc65c92008-06-28 08:31:57 +10002499 /* fall through */
2500 case check_state_compute_result:
2501 sh->check_state = check_state_idle;
2502 if (!dev)
2503 dev = &sh->dev[sh->pd_idx];
2504
2505 /* check that a write has not made the stripe insync */
2506 if (test_bit(STRIPE_INSYNC, &sh->state))
2507 break;
2508
2509 /* either failed parity check, or recovery is happening */
Dan Williamsa4456852007-07-09 11:56:43 -07002510 BUG_ON(!test_bit(R5_UPTODATE, &dev->flags));
2511 BUG_ON(s->uptodate != disks);
2512
2513 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsecc65c92008-06-28 08:31:57 +10002514 s->locked++;
Dan Williamsa4456852007-07-09 11:56:43 -07002515 set_bit(R5_Wantwrite, &dev->flags);
Dan Williams830ea012007-01-02 13:52:31 -07002516
Dan Williamsa4456852007-07-09 11:56:43 -07002517 clear_bit(STRIPE_DEGRADED, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07002518 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10002519 break;
2520 case check_state_run:
2521 break; /* we will be called again upon completion */
2522 case check_state_check_result:
2523 sh->check_state = check_state_idle;
2524
2525 /* if a failure occurred during the check operation, leave
2526 * STRIPE_INSYNC not set and let the stripe be handled again
2527 */
2528 if (s->failed)
2529 break;
2530
2531 /* handle a successful check operation, if parity is correct
2532 * we are done. Otherwise update the mismatch count and repair
2533 * parity if !MD_RECOVERY_CHECK
2534 */
2535 if (sh->ops.zero_sum_result == 0)
2536 /* parity is correct (on disc,
2537 * not in buffer any more)
2538 */
2539 set_bit(STRIPE_INSYNC, &sh->state);
2540 else {
2541 conf->mddev->resync_mismatches += STRIPE_SECTORS;
2542 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
2543 /* don't try to repair!! */
2544 set_bit(STRIPE_INSYNC, &sh->state);
2545 else {
2546 sh->check_state = check_state_compute_run;
Dan Williams976ea8d2008-06-28 08:32:03 +10002547 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10002548 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
2549 set_bit(R5_Wantcompute,
2550 &sh->dev[sh->pd_idx].flags);
2551 sh->ops.target = sh->pd_idx;
2552 s->uptodate++;
2553 }
2554 }
2555 break;
2556 case check_state_compute_run:
2557 break;
2558 default:
2559 printk(KERN_ERR "%s: unknown check_state: %d sector: %llu\n",
2560 __func__, sh->check_state,
2561 (unsigned long long) sh->sector);
2562 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07002563 }
2564}
2565
2566
2567static void handle_parity_checks6(raid5_conf_t *conf, struct stripe_head *sh,
2568 struct stripe_head_state *s,
2569 struct r6_state *r6s, struct page *tmp_page,
2570 int disks)
2571{
2572 int update_p = 0, update_q = 0;
2573 struct r5dev *dev;
2574 int pd_idx = sh->pd_idx;
NeilBrown34e04e82009-03-31 15:10:16 +11002575 int qd_idx = sh->qd_idx;
Dan Williamsa4456852007-07-09 11:56:43 -07002576
2577 set_bit(STRIPE_HANDLE, &sh->state);
2578
2579 BUG_ON(s->failed > 2);
2580 BUG_ON(s->uptodate < disks);
2581 /* Want to check and possibly repair P and Q.
2582 * However there could be one 'failed' device, in which
2583 * case we can only check one of them, possibly using the
2584 * other to generate missing data
2585 */
2586
2587 /* If !tmp_page, we cannot do the calculations,
2588 * but as we have set STRIPE_HANDLE, we will soon be called
2589 * by stripe_handle with a tmp_page - just wait until then.
2590 */
2591 if (tmp_page) {
2592 if (s->failed == r6s->q_failed) {
2593 /* The only possible failed device holds 'Q', so it
2594 * makes sense to check P (If anything else were failed,
2595 * we would have used P to recreate it).
2596 */
2597 compute_block_1(sh, pd_idx, 1);
2598 if (!page_is_zero(sh->dev[pd_idx].page)) {
2599 compute_block_1(sh, pd_idx, 0);
2600 update_p = 1;
2601 }
2602 }
2603 if (!r6s->q_failed && s->failed < 2) {
2604 /* q is not failed, and we didn't use it to generate
2605 * anything, so it makes sense to check it
2606 */
2607 memcpy(page_address(tmp_page),
2608 page_address(sh->dev[qd_idx].page),
2609 STRIPE_SIZE);
2610 compute_parity6(sh, UPDATE_PARITY);
2611 if (memcmp(page_address(tmp_page),
2612 page_address(sh->dev[qd_idx].page),
2613 STRIPE_SIZE) != 0) {
2614 clear_bit(STRIPE_INSYNC, &sh->state);
2615 update_q = 1;
2616 }
2617 }
2618 if (update_p || update_q) {
2619 conf->mddev->resync_mismatches += STRIPE_SECTORS;
2620 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
2621 /* don't try to repair!! */
2622 update_p = update_q = 0;
2623 }
2624
2625 /* now write out any block on a failed drive,
2626 * or P or Q if they need it
2627 */
2628
2629 if (s->failed == 2) {
2630 dev = &sh->dev[r6s->failed_num[1]];
2631 s->locked++;
2632 set_bit(R5_LOCKED, &dev->flags);
2633 set_bit(R5_Wantwrite, &dev->flags);
2634 }
2635 if (s->failed >= 1) {
2636 dev = &sh->dev[r6s->failed_num[0]];
2637 s->locked++;
2638 set_bit(R5_LOCKED, &dev->flags);
2639 set_bit(R5_Wantwrite, &dev->flags);
2640 }
2641
2642 if (update_p) {
2643 dev = &sh->dev[pd_idx];
2644 s->locked++;
2645 set_bit(R5_LOCKED, &dev->flags);
2646 set_bit(R5_Wantwrite, &dev->flags);
2647 }
2648 if (update_q) {
2649 dev = &sh->dev[qd_idx];
2650 s->locked++;
2651 set_bit(R5_LOCKED, &dev->flags);
2652 set_bit(R5_Wantwrite, &dev->flags);
2653 }
2654 clear_bit(STRIPE_DEGRADED, &sh->state);
2655
2656 set_bit(STRIPE_INSYNC, &sh->state);
2657 }
2658}
2659
2660static void handle_stripe_expansion(raid5_conf_t *conf, struct stripe_head *sh,
2661 struct r6_state *r6s)
2662{
2663 int i;
2664
2665 /* We have read all the blocks in this stripe and now we need to
2666 * copy some of them into a target stripe for expand.
2667 */
Dan Williamsf0a50d32007-01-02 13:52:31 -07002668 struct dma_async_tx_descriptor *tx = NULL;
Dan Williamsa4456852007-07-09 11:56:43 -07002669 clear_bit(STRIPE_EXPAND_SOURCE, &sh->state);
2670 for (i = 0; i < sh->disks; i++)
NeilBrown34e04e82009-03-31 15:10:16 +11002671 if (i != sh->pd_idx && i != sh->qd_idx) {
NeilBrown911d4ee2009-03-31 14:39:38 +11002672 int dd_idx, j;
Dan Williamsa4456852007-07-09 11:56:43 -07002673 struct stripe_head *sh2;
Dan Williamsa08abd82009-06-03 11:43:59 -07002674 struct async_submit_ctl submit;
Dan Williamsa4456852007-07-09 11:56:43 -07002675
NeilBrown784052e2009-03-31 15:19:07 +11002676 sector_t bn = compute_blocknr(sh, i, 1);
NeilBrown911d4ee2009-03-31 14:39:38 +11002677 sector_t s = raid5_compute_sector(conf, bn, 0,
2678 &dd_idx, NULL);
NeilBrownb5663ba2009-03-31 14:39:38 +11002679 sh2 = get_active_stripe(conf, s, 0, 1);
Dan Williamsa4456852007-07-09 11:56:43 -07002680 if (sh2 == NULL)
2681 /* so far only the early blocks of this stripe
2682 * have been requested. When later blocks
2683 * get requested, we will try again
2684 */
2685 continue;
2686 if (!test_bit(STRIPE_EXPANDING, &sh2->state) ||
2687 test_bit(R5_Expanded, &sh2->dev[dd_idx].flags)) {
2688 /* must have already done this block */
2689 release_stripe(sh2);
2690 continue;
2691 }
Dan Williamsf0a50d32007-01-02 13:52:31 -07002692
2693 /* place all the copies on one channel */
Dan Williamsa08abd82009-06-03 11:43:59 -07002694 init_async_submit(&submit, 0, tx, NULL, NULL, NULL);
Dan Williamsf0a50d32007-01-02 13:52:31 -07002695 tx = async_memcpy(sh2->dev[dd_idx].page,
Dan Williams88ba2aa2009-04-09 16:16:18 -07002696 sh->dev[i].page, 0, 0, STRIPE_SIZE,
Dan Williamsa08abd82009-06-03 11:43:59 -07002697 &submit);
Dan Williamsf0a50d32007-01-02 13:52:31 -07002698
Dan Williamsa4456852007-07-09 11:56:43 -07002699 set_bit(R5_Expanded, &sh2->dev[dd_idx].flags);
2700 set_bit(R5_UPTODATE, &sh2->dev[dd_idx].flags);
2701 for (j = 0; j < conf->raid_disks; j++)
2702 if (j != sh2->pd_idx &&
NeilBrownd0dabf72009-03-31 14:39:38 +11002703 (!r6s || j != sh2->qd_idx) &&
Dan Williamsa4456852007-07-09 11:56:43 -07002704 !test_bit(R5_Expanded, &sh2->dev[j].flags))
2705 break;
2706 if (j == conf->raid_disks) {
2707 set_bit(STRIPE_EXPAND_READY, &sh2->state);
2708 set_bit(STRIPE_HANDLE, &sh2->state);
2709 }
2710 release_stripe(sh2);
Dan Williamsf0a50d32007-01-02 13:52:31 -07002711
Dan Williamsa4456852007-07-09 11:56:43 -07002712 }
NeilBrowna2e08552007-09-11 15:23:36 -07002713 /* done submitting copies, wait for them to complete */
2714 if (tx) {
2715 async_tx_ack(tx);
2716 dma_wait_for_async_tx(tx);
2717 }
Dan Williamsa4456852007-07-09 11:56:43 -07002718}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719
Dan Williams6bfe0b42008-04-30 00:52:32 -07002720
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721/*
2722 * handle_stripe - do things to a stripe.
2723 *
2724 * We lock the stripe and then examine the state of various bits
2725 * to see what needs to be done.
2726 * Possible results:
2727 * return some read request which now have data
2728 * return some write requests which are safely on disc
2729 * schedule a read on some buffers
2730 * schedule a write of some buffers
2731 * return confirmation of parity correctness
2732 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 * buffers are taken off read_list or write_list, and bh_cache buffers
2734 * get BH_Lock set before the stripe lock is released.
2735 *
2736 */
Dan Williamsa4456852007-07-09 11:56:43 -07002737
Dan Williamsdf10cfb2008-07-28 23:10:39 -07002738static bool handle_stripe5(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739{
2740 raid5_conf_t *conf = sh->raid_conf;
Dan Williamsa4456852007-07-09 11:56:43 -07002741 int disks = sh->disks, i;
2742 struct bio *return_bi = NULL;
2743 struct stripe_head_state s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 struct r5dev *dev;
Dan Williams6bfe0b42008-04-30 00:52:32 -07002745 mdk_rdev_t *blocked_rdev = NULL;
Dan Williamse0a115e2008-06-05 22:45:52 -07002746 int prexor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747
Dan Williamsa4456852007-07-09 11:56:43 -07002748 memset(&s, 0, sizeof(s));
Dan Williams600aa102008-06-28 08:32:05 +10002749 pr_debug("handling stripe %llu, state=%#lx cnt=%d, pd_idx=%d check:%d "
2750 "reconstruct:%d\n", (unsigned long long)sh->sector, sh->state,
2751 atomic_read(&sh->count), sh->pd_idx, sh->check_state,
2752 sh->reconstruct_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753
2754 spin_lock(&sh->lock);
2755 clear_bit(STRIPE_HANDLE, &sh->state);
2756 clear_bit(STRIPE_DELAYED, &sh->state);
2757
Dan Williamsa4456852007-07-09 11:56:43 -07002758 s.syncing = test_bit(STRIPE_SYNCING, &sh->state);
2759 s.expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state);
2760 s.expanded = test_bit(STRIPE_EXPAND_READY, &sh->state);
Dan Williams83de75c2008-06-28 08:31:58 +10002761
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 /* Now to look around and see what can be done */
NeilBrown9910f162006-01-06 00:20:24 -08002763 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 for (i=disks; i--; ) {
2765 mdk_rdev_t *rdev;
Dan Williamsa4456852007-07-09 11:56:43 -07002766 struct r5dev *dev = &sh->dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 clear_bit(R5_Insync, &dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768
Dan Williamsb5e98d62007-01-02 13:52:31 -07002769 pr_debug("check %d: state 0x%lx toread %p read %p write %p "
2770 "written %p\n", i, dev->flags, dev->toread, dev->read,
2771 dev->towrite, dev->written);
2772
2773 /* maybe we can request a biofill operation
2774 *
2775 * new wantfill requests are only permitted while
Dan Williams83de75c2008-06-28 08:31:58 +10002776 * ops_complete_biofill is guaranteed to be inactive
Dan Williamsb5e98d62007-01-02 13:52:31 -07002777 */
2778 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread &&
Dan Williams83de75c2008-06-28 08:31:58 +10002779 !test_bit(STRIPE_BIOFILL_RUN, &sh->state))
Dan Williamsb5e98d62007-01-02 13:52:31 -07002780 set_bit(R5_Wantfill, &dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781
2782 /* now count some things */
Dan Williamsa4456852007-07-09 11:56:43 -07002783 if (test_bit(R5_LOCKED, &dev->flags)) s.locked++;
2784 if (test_bit(R5_UPTODATE, &dev->flags)) s.uptodate++;
Dan Williamsf38e1212007-01-02 13:52:30 -07002785 if (test_bit(R5_Wantcompute, &dev->flags)) s.compute++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786
Dan Williamsb5e98d62007-01-02 13:52:31 -07002787 if (test_bit(R5_Wantfill, &dev->flags))
2788 s.to_fill++;
2789 else if (dev->toread)
Dan Williamsa4456852007-07-09 11:56:43 -07002790 s.to_read++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 if (dev->towrite) {
Dan Williamsa4456852007-07-09 11:56:43 -07002792 s.to_write++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 if (!test_bit(R5_OVERWRITE, &dev->flags))
Dan Williamsa4456852007-07-09 11:56:43 -07002794 s.non_overwrite++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 }
Dan Williamsa4456852007-07-09 11:56:43 -07002796 if (dev->written)
2797 s.written++;
NeilBrown9910f162006-01-06 00:20:24 -08002798 rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownac4090d2008-08-05 15:54:13 +10002799 if (blocked_rdev == NULL &&
2800 rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
Dan Williams6bfe0b42008-04-30 00:52:32 -07002801 blocked_rdev = rdev;
2802 atomic_inc(&rdev->nr_pending);
Dan Williams6bfe0b42008-04-30 00:52:32 -07002803 }
NeilBrownb2d444d2005-11-08 21:39:31 -08002804 if (!rdev || !test_bit(In_sync, &rdev->flags)) {
NeilBrown14f8d262006-01-06 00:20:14 -08002805 /* The ReadError flag will just be confusing now */
NeilBrown4e5314b2005-11-08 21:39:22 -08002806 clear_bit(R5_ReadError, &dev->flags);
2807 clear_bit(R5_ReWrite, &dev->flags);
2808 }
NeilBrownb2d444d2005-11-08 21:39:31 -08002809 if (!rdev || !test_bit(In_sync, &rdev->flags)
NeilBrown4e5314b2005-11-08 21:39:22 -08002810 || test_bit(R5_ReadError, &dev->flags)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002811 s.failed++;
2812 s.failed_num = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 } else
2814 set_bit(R5_Insync, &dev->flags);
2815 }
NeilBrown9910f162006-01-06 00:20:24 -08002816 rcu_read_unlock();
Dan Williamsb5e98d62007-01-02 13:52:31 -07002817
Dan Williams6bfe0b42008-04-30 00:52:32 -07002818 if (unlikely(blocked_rdev)) {
NeilBrownac4090d2008-08-05 15:54:13 +10002819 if (s.syncing || s.expanding || s.expanded ||
2820 s.to_write || s.written) {
2821 set_bit(STRIPE_HANDLE, &sh->state);
2822 goto unlock;
2823 }
2824 /* There is nothing for the blocked_rdev to block */
2825 rdev_dec_pending(blocked_rdev, conf->mddev);
2826 blocked_rdev = NULL;
Dan Williams6bfe0b42008-04-30 00:52:32 -07002827 }
2828
Dan Williams83de75c2008-06-28 08:31:58 +10002829 if (s.to_fill && !test_bit(STRIPE_BIOFILL_RUN, &sh->state)) {
2830 set_bit(STRIPE_OP_BIOFILL, &s.ops_request);
2831 set_bit(STRIPE_BIOFILL_RUN, &sh->state);
2832 }
Dan Williamsb5e98d62007-01-02 13:52:31 -07002833
Dan Williams45b42332007-07-09 11:56:43 -07002834 pr_debug("locked=%d uptodate=%d to_read=%d"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 " to_write=%d failed=%d failed_num=%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002836 s.locked, s.uptodate, s.to_read, s.to_write,
2837 s.failed, s.failed_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 /* check if the array has lost two devices and, if so, some requests might
2839 * need to be failed
2840 */
Dan Williamsa4456852007-07-09 11:56:43 -07002841 if (s.failed > 1 && s.to_read+s.to_write+s.written)
Dan Williams1fe797e2008-06-28 09:16:30 +10002842 handle_failed_stripe(conf, sh, &s, disks, &return_bi);
Dan Williamsa4456852007-07-09 11:56:43 -07002843 if (s.failed > 1 && s.syncing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 md_done_sync(conf->mddev, STRIPE_SECTORS,0);
2845 clear_bit(STRIPE_SYNCING, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07002846 s.syncing = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 }
2848
2849 /* might be able to return some write requests if the parity block
2850 * is safe, or on a failed drive
2851 */
2852 dev = &sh->dev[sh->pd_idx];
Dan Williamsa4456852007-07-09 11:56:43 -07002853 if ( s.written &&
2854 ((test_bit(R5_Insync, &dev->flags) &&
2855 !test_bit(R5_LOCKED, &dev->flags) &&
2856 test_bit(R5_UPTODATE, &dev->flags)) ||
2857 (s.failed == 1 && s.failed_num == sh->pd_idx)))
Dan Williams1fe797e2008-06-28 09:16:30 +10002858 handle_stripe_clean_event(conf, sh, disks, &return_bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859
2860 /* Now we might consider reading some blocks, either to check/generate
2861 * parity, or to satisfy requests
2862 * or to load a block that is being partially written.
2863 */
Dan Williamsa4456852007-07-09 11:56:43 -07002864 if (s.to_read || s.non_overwrite ||
Dan Williams976ea8d2008-06-28 08:32:03 +10002865 (s.syncing && (s.uptodate + s.compute < disks)) || s.expanding)
Dan Williams1fe797e2008-06-28 09:16:30 +10002866 handle_stripe_fill5(sh, &s, disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867
Dan Williamse33129d2007-01-02 13:52:30 -07002868 /* Now we check to see if any write operations have recently
2869 * completed
2870 */
Dan Williamse0a115e2008-06-05 22:45:52 -07002871 prexor = 0;
Dan Williamsd8ee0722008-06-28 08:32:06 +10002872 if (sh->reconstruct_state == reconstruct_state_prexor_drain_result)
Dan Williamse0a115e2008-06-05 22:45:52 -07002873 prexor = 1;
Dan Williamsd8ee0722008-06-28 08:32:06 +10002874 if (sh->reconstruct_state == reconstruct_state_drain_result ||
2875 sh->reconstruct_state == reconstruct_state_prexor_drain_result) {
Dan Williams600aa102008-06-28 08:32:05 +10002876 sh->reconstruct_state = reconstruct_state_idle;
Dan Williamse33129d2007-01-02 13:52:30 -07002877
2878 /* All the 'written' buffers and the parity block are ready to
2879 * be written back to disk
2880 */
2881 BUG_ON(!test_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags));
2882 for (i = disks; i--; ) {
2883 dev = &sh->dev[i];
2884 if (test_bit(R5_LOCKED, &dev->flags) &&
2885 (i == sh->pd_idx || dev->written)) {
2886 pr_debug("Writing block %d\n", i);
2887 set_bit(R5_Wantwrite, &dev->flags);
Dan Williamse0a115e2008-06-05 22:45:52 -07002888 if (prexor)
2889 continue;
Dan Williamse33129d2007-01-02 13:52:30 -07002890 if (!test_bit(R5_Insync, &dev->flags) ||
2891 (i == sh->pd_idx && s.failed == 0))
2892 set_bit(STRIPE_INSYNC, &sh->state);
2893 }
2894 }
2895 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
2896 atomic_dec(&conf->preread_active_stripes);
2897 if (atomic_read(&conf->preread_active_stripes) <
2898 IO_THRESHOLD)
2899 md_wakeup_thread(conf->mddev->thread);
2900 }
2901 }
2902
2903 /* Now to consider new write requests and what else, if anything
2904 * should be read. We do not handle new writes when:
2905 * 1/ A 'write' operation (copy+xor) is already in flight.
2906 * 2/ A 'check' operation is in flight, as it may clobber the parity
2907 * block.
2908 */
Dan Williams600aa102008-06-28 08:32:05 +10002909 if (s.to_write && !sh->reconstruct_state && !sh->check_state)
Dan Williams1fe797e2008-06-28 09:16:30 +10002910 handle_stripe_dirtying5(conf, sh, &s, disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911
2912 /* maybe we need to check and possibly fix the parity for this stripe
Dan Williamse89f8962007-01-02 13:52:31 -07002913 * Any reads will already have been scheduled, so we just see if enough
2914 * data is available. The parity check is held off while parity
2915 * dependent operations are in flight.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 */
Dan Williamsecc65c92008-06-28 08:31:57 +10002917 if (sh->check_state ||
2918 (s.syncing && s.locked == 0 &&
Dan Williams976ea8d2008-06-28 08:32:03 +10002919 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
Dan Williamsecc65c92008-06-28 08:31:57 +10002920 !test_bit(STRIPE_INSYNC, &sh->state)))
Dan Williamsa4456852007-07-09 11:56:43 -07002921 handle_parity_checks5(conf, sh, &s, disks);
Dan Williamse89f8962007-01-02 13:52:31 -07002922
Dan Williamsa4456852007-07-09 11:56:43 -07002923 if (s.syncing && s.locked == 0 && test_bit(STRIPE_INSYNC, &sh->state)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 md_done_sync(conf->mddev, STRIPE_SECTORS,1);
2925 clear_bit(STRIPE_SYNCING, &sh->state);
2926 }
NeilBrown4e5314b2005-11-08 21:39:22 -08002927
2928 /* If the failed drive is just a ReadError, then we might need to progress
2929 * the repair/check process
2930 */
Dan Williamsa4456852007-07-09 11:56:43 -07002931 if (s.failed == 1 && !conf->mddev->ro &&
2932 test_bit(R5_ReadError, &sh->dev[s.failed_num].flags)
2933 && !test_bit(R5_LOCKED, &sh->dev[s.failed_num].flags)
2934 && test_bit(R5_UPTODATE, &sh->dev[s.failed_num].flags)
NeilBrown4e5314b2005-11-08 21:39:22 -08002935 ) {
Dan Williamsa4456852007-07-09 11:56:43 -07002936 dev = &sh->dev[s.failed_num];
NeilBrown4e5314b2005-11-08 21:39:22 -08002937 if (!test_bit(R5_ReWrite, &dev->flags)) {
2938 set_bit(R5_Wantwrite, &dev->flags);
2939 set_bit(R5_ReWrite, &dev->flags);
2940 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsa4456852007-07-09 11:56:43 -07002941 s.locked++;
NeilBrown4e5314b2005-11-08 21:39:22 -08002942 } else {
2943 /* let's read it back */
2944 set_bit(R5_Wantread, &dev->flags);
2945 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsa4456852007-07-09 11:56:43 -07002946 s.locked++;
NeilBrown4e5314b2005-11-08 21:39:22 -08002947 }
2948 }
2949
Dan Williams600aa102008-06-28 08:32:05 +10002950 /* Finish reconstruct operations initiated by the expansion process */
2951 if (sh->reconstruct_state == reconstruct_state_result) {
NeilBrownab69ae12009-03-31 15:26:47 +11002952 struct stripe_head *sh2
2953 = get_active_stripe(conf, sh->sector, 1, 1);
2954 if (sh2 && test_bit(STRIPE_EXPAND_SOURCE, &sh2->state)) {
2955 /* sh cannot be written until sh2 has been read.
2956 * so arrange for sh to be delayed a little
2957 */
2958 set_bit(STRIPE_DELAYED, &sh->state);
2959 set_bit(STRIPE_HANDLE, &sh->state);
2960 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE,
2961 &sh2->state))
2962 atomic_inc(&conf->preread_active_stripes);
2963 release_stripe(sh2);
2964 goto unlock;
2965 }
2966 if (sh2)
2967 release_stripe(sh2);
2968
Dan Williams600aa102008-06-28 08:32:05 +10002969 sh->reconstruct_state = reconstruct_state_idle;
Dan Williamsf0a50d32007-01-02 13:52:31 -07002970 clear_bit(STRIPE_EXPANDING, &sh->state);
Dan Williams23397882008-07-23 20:05:34 -07002971 for (i = conf->raid_disks; i--; ) {
Dan Williamsf0a50d32007-01-02 13:52:31 -07002972 set_bit(R5_Wantwrite, &sh->dev[i].flags);
Dan Williams23397882008-07-23 20:05:34 -07002973 set_bit(R5_LOCKED, &sh->dev[i].flags);
Neil Brownefe31142008-06-28 08:31:14 +10002974 s.locked++;
Dan Williams23397882008-07-23 20:05:34 -07002975 }
Dan Williamsf0a50d32007-01-02 13:52:31 -07002976 }
2977
2978 if (s.expanded && test_bit(STRIPE_EXPANDING, &sh->state) &&
Dan Williams600aa102008-06-28 08:32:05 +10002979 !sh->reconstruct_state) {
NeilBrownccfcc3c2006-03-27 01:18:09 -08002980 /* Need to write out all blocks after computing parity */
2981 sh->disks = conf->raid_disks;
NeilBrown911d4ee2009-03-31 14:39:38 +11002982 stripe_set_idx(sh->sector, conf, 0, sh);
Dan Williams1fe797e2008-06-28 09:16:30 +10002983 schedule_reconstruction5(sh, &s, 1, 1);
Dan Williams600aa102008-06-28 08:32:05 +10002984 } else if (s.expanded && !sh->reconstruct_state && s.locked == 0) {
NeilBrownccfcc3c2006-03-27 01:18:09 -08002985 clear_bit(STRIPE_EXPAND_READY, &sh->state);
NeilBrownf6705572006-03-27 01:18:11 -08002986 atomic_dec(&conf->reshape_stripes);
NeilBrownccfcc3c2006-03-27 01:18:09 -08002987 wake_up(&conf->wait_for_overlap);
2988 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
2989 }
2990
Dan Williams0f94e872008-01-08 15:32:53 -08002991 if (s.expanding && s.locked == 0 &&
Dan Williams976ea8d2008-06-28 08:32:03 +10002992 !test_bit(STRIPE_COMPUTE_RUN, &sh->state))
Dan Williamsa4456852007-07-09 11:56:43 -07002993 handle_stripe_expansion(conf, sh, NULL);
NeilBrownccfcc3c2006-03-27 01:18:09 -08002994
Dan Williams6bfe0b42008-04-30 00:52:32 -07002995 unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 spin_unlock(&sh->lock);
2997
Dan Williams6bfe0b42008-04-30 00:52:32 -07002998 /* wait for this device to become unblocked */
2999 if (unlikely(blocked_rdev))
3000 md_wait_for_blocked_rdev(blocked_rdev, conf->mddev);
3001
Dan Williams600aa102008-06-28 08:32:05 +10003002 if (s.ops_request)
3003 raid5_run_ops(sh, s.ops_request);
Dan Williamsd84e0f12007-01-02 13:52:30 -07003004
Dan Williamsc4e5ac02008-06-28 08:31:53 +10003005 ops_run_io(sh, &s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006
Dan Williamsa4456852007-07-09 11:56:43 -07003007 return_io(return_bi);
Dan Williamsdf10cfb2008-07-28 23:10:39 -07003008
3009 return blocked_rdev == NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010}
3011
Dan Williamsdf10cfb2008-07-28 23:10:39 -07003012static bool handle_stripe6(struct stripe_head *sh, struct page *tmp_page)
NeilBrown16a53ec2006-06-26 00:27:38 -07003013{
NeilBrownbff61972009-03-31 14:33:13 +11003014 raid5_conf_t *conf = sh->raid_conf;
NeilBrownf4168852007-02-28 20:11:53 -08003015 int disks = sh->disks;
Dan Williamsa4456852007-07-09 11:56:43 -07003016 struct bio *return_bi = NULL;
NeilBrown34e04e82009-03-31 15:10:16 +11003017 int i, pd_idx = sh->pd_idx, qd_idx = sh->qd_idx;
Dan Williamsa4456852007-07-09 11:56:43 -07003018 struct stripe_head_state s;
3019 struct r6_state r6s;
NeilBrown16a53ec2006-06-26 00:27:38 -07003020 struct r5dev *dev, *pdev, *qdev;
Dan Williams6bfe0b42008-04-30 00:52:32 -07003021 mdk_rdev_t *blocked_rdev = NULL;
NeilBrown16a53ec2006-06-26 00:27:38 -07003022
Dan Williams45b42332007-07-09 11:56:43 -07003023 pr_debug("handling stripe %llu, state=%#lx cnt=%d, "
Dan Williamsa4456852007-07-09 11:56:43 -07003024 "pd_idx=%d, qd_idx=%d\n",
3025 (unsigned long long)sh->sector, sh->state,
NeilBrown34e04e82009-03-31 15:10:16 +11003026 atomic_read(&sh->count), pd_idx, qd_idx);
Dan Williamsa4456852007-07-09 11:56:43 -07003027 memset(&s, 0, sizeof(s));
NeilBrown16a53ec2006-06-26 00:27:38 -07003028
3029 spin_lock(&sh->lock);
3030 clear_bit(STRIPE_HANDLE, &sh->state);
3031 clear_bit(STRIPE_DELAYED, &sh->state);
3032
Dan Williamsa4456852007-07-09 11:56:43 -07003033 s.syncing = test_bit(STRIPE_SYNCING, &sh->state);
3034 s.expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state);
3035 s.expanded = test_bit(STRIPE_EXPAND_READY, &sh->state);
NeilBrown16a53ec2006-06-26 00:27:38 -07003036 /* Now to look around and see what can be done */
3037
3038 rcu_read_lock();
3039 for (i=disks; i--; ) {
3040 mdk_rdev_t *rdev;
3041 dev = &sh->dev[i];
3042 clear_bit(R5_Insync, &dev->flags);
3043
Dan Williams45b42332007-07-09 11:56:43 -07003044 pr_debug("check %d: state 0x%lx read %p write %p written %p\n",
NeilBrown16a53ec2006-06-26 00:27:38 -07003045 i, dev->flags, dev->toread, dev->towrite, dev->written);
3046 /* maybe we can reply to a read */
3047 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread) {
3048 struct bio *rbi, *rbi2;
Dan Williams45b42332007-07-09 11:56:43 -07003049 pr_debug("Return read for disc %d\n", i);
NeilBrown16a53ec2006-06-26 00:27:38 -07003050 spin_lock_irq(&conf->device_lock);
3051 rbi = dev->toread;
3052 dev->toread = NULL;
3053 if (test_and_clear_bit(R5_Overlap, &dev->flags))
3054 wake_up(&conf->wait_for_overlap);
3055 spin_unlock_irq(&conf->device_lock);
3056 while (rbi && rbi->bi_sector < dev->sector + STRIPE_SECTORS) {
3057 copy_data(0, rbi, dev->page, dev->sector);
3058 rbi2 = r5_next_bio(rbi, dev->sector);
3059 spin_lock_irq(&conf->device_lock);
Jens Axboe960e7392008-08-15 10:41:18 +02003060 if (!raid5_dec_bi_phys_segments(rbi)) {
NeilBrown16a53ec2006-06-26 00:27:38 -07003061 rbi->bi_next = return_bi;
3062 return_bi = rbi;
3063 }
3064 spin_unlock_irq(&conf->device_lock);
3065 rbi = rbi2;
3066 }
3067 }
3068
3069 /* now count some things */
Dan Williamsa4456852007-07-09 11:56:43 -07003070 if (test_bit(R5_LOCKED, &dev->flags)) s.locked++;
3071 if (test_bit(R5_UPTODATE, &dev->flags)) s.uptodate++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003072
3073
Dan Williamsa4456852007-07-09 11:56:43 -07003074 if (dev->toread)
3075 s.to_read++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003076 if (dev->towrite) {
Dan Williamsa4456852007-07-09 11:56:43 -07003077 s.to_write++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003078 if (!test_bit(R5_OVERWRITE, &dev->flags))
Dan Williamsa4456852007-07-09 11:56:43 -07003079 s.non_overwrite++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003080 }
Dan Williamsa4456852007-07-09 11:56:43 -07003081 if (dev->written)
3082 s.written++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003083 rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownac4090d2008-08-05 15:54:13 +10003084 if (blocked_rdev == NULL &&
3085 rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
Dan Williams6bfe0b42008-04-30 00:52:32 -07003086 blocked_rdev = rdev;
3087 atomic_inc(&rdev->nr_pending);
Dan Williams6bfe0b42008-04-30 00:52:32 -07003088 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003089 if (!rdev || !test_bit(In_sync, &rdev->flags)) {
3090 /* The ReadError flag will just be confusing now */
3091 clear_bit(R5_ReadError, &dev->flags);
3092 clear_bit(R5_ReWrite, &dev->flags);
3093 }
3094 if (!rdev || !test_bit(In_sync, &rdev->flags)
3095 || test_bit(R5_ReadError, &dev->flags)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003096 if (s.failed < 2)
3097 r6s.failed_num[s.failed] = i;
3098 s.failed++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003099 } else
3100 set_bit(R5_Insync, &dev->flags);
3101 }
3102 rcu_read_unlock();
Dan Williams6bfe0b42008-04-30 00:52:32 -07003103
3104 if (unlikely(blocked_rdev)) {
NeilBrownac4090d2008-08-05 15:54:13 +10003105 if (s.syncing || s.expanding || s.expanded ||
3106 s.to_write || s.written) {
3107 set_bit(STRIPE_HANDLE, &sh->state);
3108 goto unlock;
3109 }
3110 /* There is nothing for the blocked_rdev to block */
3111 rdev_dec_pending(blocked_rdev, conf->mddev);
3112 blocked_rdev = NULL;
Dan Williams6bfe0b42008-04-30 00:52:32 -07003113 }
NeilBrownac4090d2008-08-05 15:54:13 +10003114
Dan Williams45b42332007-07-09 11:56:43 -07003115 pr_debug("locked=%d uptodate=%d to_read=%d"
NeilBrown16a53ec2006-06-26 00:27:38 -07003116 " to_write=%d failed=%d failed_num=%d,%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07003117 s.locked, s.uptodate, s.to_read, s.to_write, s.failed,
3118 r6s.failed_num[0], r6s.failed_num[1]);
3119 /* check if the array has lost >2 devices and, if so, some requests
3120 * might need to be failed
NeilBrown16a53ec2006-06-26 00:27:38 -07003121 */
Dan Williamsa4456852007-07-09 11:56:43 -07003122 if (s.failed > 2 && s.to_read+s.to_write+s.written)
Dan Williams1fe797e2008-06-28 09:16:30 +10003123 handle_failed_stripe(conf, sh, &s, disks, &return_bi);
Dan Williamsa4456852007-07-09 11:56:43 -07003124 if (s.failed > 2 && s.syncing) {
NeilBrown16a53ec2006-06-26 00:27:38 -07003125 md_done_sync(conf->mddev, STRIPE_SECTORS,0);
3126 clear_bit(STRIPE_SYNCING, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07003127 s.syncing = 0;
NeilBrown16a53ec2006-06-26 00:27:38 -07003128 }
3129
3130 /*
3131 * might be able to return some write requests if the parity blocks
3132 * are safe, or on a failed drive
3133 */
3134 pdev = &sh->dev[pd_idx];
Dan Williamsa4456852007-07-09 11:56:43 -07003135 r6s.p_failed = (s.failed >= 1 && r6s.failed_num[0] == pd_idx)
3136 || (s.failed >= 2 && r6s.failed_num[1] == pd_idx);
NeilBrown34e04e82009-03-31 15:10:16 +11003137 qdev = &sh->dev[qd_idx];
3138 r6s.q_failed = (s.failed >= 1 && r6s.failed_num[0] == qd_idx)
3139 || (s.failed >= 2 && r6s.failed_num[1] == qd_idx);
NeilBrown16a53ec2006-06-26 00:27:38 -07003140
Dan Williamsa4456852007-07-09 11:56:43 -07003141 if ( s.written &&
3142 ( r6s.p_failed || ((test_bit(R5_Insync, &pdev->flags)
NeilBrown16a53ec2006-06-26 00:27:38 -07003143 && !test_bit(R5_LOCKED, &pdev->flags)
Dan Williamsa4456852007-07-09 11:56:43 -07003144 && test_bit(R5_UPTODATE, &pdev->flags)))) &&
3145 ( r6s.q_failed || ((test_bit(R5_Insync, &qdev->flags)
NeilBrown16a53ec2006-06-26 00:27:38 -07003146 && !test_bit(R5_LOCKED, &qdev->flags)
Dan Williamsa4456852007-07-09 11:56:43 -07003147 && test_bit(R5_UPTODATE, &qdev->flags)))))
Dan Williams1fe797e2008-06-28 09:16:30 +10003148 handle_stripe_clean_event(conf, sh, disks, &return_bi);
NeilBrown16a53ec2006-06-26 00:27:38 -07003149
3150 /* Now we might consider reading some blocks, either to check/generate
3151 * parity, or to satisfy requests
3152 * or to load a block that is being partially written.
3153 */
Dan Williamsa4456852007-07-09 11:56:43 -07003154 if (s.to_read || s.non_overwrite || (s.to_write && s.failed) ||
3155 (s.syncing && (s.uptodate < disks)) || s.expanding)
Dan Williams1fe797e2008-06-28 09:16:30 +10003156 handle_stripe_fill6(sh, &s, &r6s, disks);
NeilBrown16a53ec2006-06-26 00:27:38 -07003157
3158 /* now to consider writing and what else, if anything should be read */
Dan Williamsa4456852007-07-09 11:56:43 -07003159 if (s.to_write)
Dan Williams1fe797e2008-06-28 09:16:30 +10003160 handle_stripe_dirtying6(conf, sh, &s, &r6s, disks);
NeilBrown16a53ec2006-06-26 00:27:38 -07003161
3162 /* maybe we need to check and possibly fix the parity for this stripe
Dan Williamsa4456852007-07-09 11:56:43 -07003163 * Any reads will already have been scheduled, so we just see if enough
3164 * data is available
NeilBrown16a53ec2006-06-26 00:27:38 -07003165 */
Dan Williamsa4456852007-07-09 11:56:43 -07003166 if (s.syncing && s.locked == 0 && !test_bit(STRIPE_INSYNC, &sh->state))
3167 handle_parity_checks6(conf, sh, &s, &r6s, tmp_page, disks);
NeilBrown16a53ec2006-06-26 00:27:38 -07003168
Dan Williamsa4456852007-07-09 11:56:43 -07003169 if (s.syncing && s.locked == 0 && test_bit(STRIPE_INSYNC, &sh->state)) {
NeilBrown16a53ec2006-06-26 00:27:38 -07003170 md_done_sync(conf->mddev, STRIPE_SECTORS,1);
3171 clear_bit(STRIPE_SYNCING, &sh->state);
3172 }
3173
3174 /* If the failed drives are just a ReadError, then we might need
3175 * to progress the repair/check process
3176 */
Dan Williamsa4456852007-07-09 11:56:43 -07003177 if (s.failed <= 2 && !conf->mddev->ro)
3178 for (i = 0; i < s.failed; i++) {
3179 dev = &sh->dev[r6s.failed_num[i]];
NeilBrown16a53ec2006-06-26 00:27:38 -07003180 if (test_bit(R5_ReadError, &dev->flags)
3181 && !test_bit(R5_LOCKED, &dev->flags)
3182 && test_bit(R5_UPTODATE, &dev->flags)
3183 ) {
3184 if (!test_bit(R5_ReWrite, &dev->flags)) {
3185 set_bit(R5_Wantwrite, &dev->flags);
3186 set_bit(R5_ReWrite, &dev->flags);
3187 set_bit(R5_LOCKED, &dev->flags);
3188 } else {
3189 /* let's read it back */
3190 set_bit(R5_Wantread, &dev->flags);
3191 set_bit(R5_LOCKED, &dev->flags);
3192 }
3193 }
3194 }
NeilBrownf4168852007-02-28 20:11:53 -08003195
Dan Williamsa4456852007-07-09 11:56:43 -07003196 if (s.expanded && test_bit(STRIPE_EXPANDING, &sh->state)) {
NeilBrownab69ae12009-03-31 15:26:47 +11003197 struct stripe_head *sh2
3198 = get_active_stripe(conf, sh->sector, 1, 1);
3199 if (sh2 && test_bit(STRIPE_EXPAND_SOURCE, &sh2->state)) {
3200 /* sh cannot be written until sh2 has been read.
3201 * so arrange for sh to be delayed a little
3202 */
3203 set_bit(STRIPE_DELAYED, &sh->state);
3204 set_bit(STRIPE_HANDLE, &sh->state);
3205 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE,
3206 &sh2->state))
3207 atomic_inc(&conf->preread_active_stripes);
3208 release_stripe(sh2);
3209 goto unlock;
3210 }
3211 if (sh2)
3212 release_stripe(sh2);
3213
NeilBrownf4168852007-02-28 20:11:53 -08003214 /* Need to write out all blocks after computing P&Q */
3215 sh->disks = conf->raid_disks;
NeilBrown911d4ee2009-03-31 14:39:38 +11003216 stripe_set_idx(sh->sector, conf, 0, sh);
NeilBrownf4168852007-02-28 20:11:53 -08003217 compute_parity6(sh, RECONSTRUCT_WRITE);
3218 for (i = conf->raid_disks ; i-- ; ) {
3219 set_bit(R5_LOCKED, &sh->dev[i].flags);
Dan Williamsa4456852007-07-09 11:56:43 -07003220 s.locked++;
NeilBrownf4168852007-02-28 20:11:53 -08003221 set_bit(R5_Wantwrite, &sh->dev[i].flags);
3222 }
3223 clear_bit(STRIPE_EXPANDING, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07003224 } else if (s.expanded) {
NeilBrownf4168852007-02-28 20:11:53 -08003225 clear_bit(STRIPE_EXPAND_READY, &sh->state);
3226 atomic_dec(&conf->reshape_stripes);
3227 wake_up(&conf->wait_for_overlap);
3228 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
3229 }
3230
Dan Williams0f94e872008-01-08 15:32:53 -08003231 if (s.expanding && s.locked == 0 &&
Dan Williams976ea8d2008-06-28 08:32:03 +10003232 !test_bit(STRIPE_COMPUTE_RUN, &sh->state))
Dan Williamsa4456852007-07-09 11:56:43 -07003233 handle_stripe_expansion(conf, sh, &r6s);
NeilBrownf4168852007-02-28 20:11:53 -08003234
Dan Williams6bfe0b42008-04-30 00:52:32 -07003235 unlock:
NeilBrown16a53ec2006-06-26 00:27:38 -07003236 spin_unlock(&sh->lock);
3237
Dan Williams6bfe0b42008-04-30 00:52:32 -07003238 /* wait for this device to become unblocked */
3239 if (unlikely(blocked_rdev))
3240 md_wait_for_blocked_rdev(blocked_rdev, conf->mddev);
3241
Dan Williamsf0e43bc2008-06-28 08:31:55 +10003242 ops_run_io(sh, &s);
3243
Dan Williamsa4456852007-07-09 11:56:43 -07003244 return_io(return_bi);
Dan Williamsdf10cfb2008-07-28 23:10:39 -07003245
3246 return blocked_rdev == NULL;
NeilBrown16a53ec2006-06-26 00:27:38 -07003247}
3248
Dan Williamsdf10cfb2008-07-28 23:10:39 -07003249/* returns true if the stripe was handled */
3250static bool handle_stripe(struct stripe_head *sh, struct page *tmp_page)
NeilBrown16a53ec2006-06-26 00:27:38 -07003251{
3252 if (sh->raid_conf->level == 6)
Dan Williamsdf10cfb2008-07-28 23:10:39 -07003253 return handle_stripe6(sh, tmp_page);
NeilBrown16a53ec2006-06-26 00:27:38 -07003254 else
Dan Williamsdf10cfb2008-07-28 23:10:39 -07003255 return handle_stripe5(sh);
NeilBrown16a53ec2006-06-26 00:27:38 -07003256}
3257
3258
3259
Arjan van de Ven858119e2006-01-14 13:20:43 -08003260static void raid5_activate_delayed(raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261{
3262 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD) {
3263 while (!list_empty(&conf->delayed_list)) {
3264 struct list_head *l = conf->delayed_list.next;
3265 struct stripe_head *sh;
3266 sh = list_entry(l, struct stripe_head, lru);
3267 list_del_init(l);
3268 clear_bit(STRIPE_DELAYED, &sh->state);
3269 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3270 atomic_inc(&conf->preread_active_stripes);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003271 list_add_tail(&sh->lru, &conf->hold_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 }
NeilBrown6ed30032008-02-06 01:40:00 -08003273 } else
3274 blk_plug_device(conf->mddev->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275}
3276
Arjan van de Ven858119e2006-01-14 13:20:43 -08003277static void activate_bit_delay(raid5_conf_t *conf)
NeilBrown72626682005-09-09 16:23:54 -07003278{
3279 /* device_lock is held */
3280 struct list_head head;
3281 list_add(&head, &conf->bitmap_list);
3282 list_del_init(&conf->bitmap_list);
3283 while (!list_empty(&head)) {
3284 struct stripe_head *sh = list_entry(head.next, struct stripe_head, lru);
3285 list_del_init(&sh->lru);
3286 atomic_inc(&sh->count);
3287 __release_stripe(conf, sh);
3288 }
3289}
3290
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291static void unplug_slaves(mddev_t *mddev)
3292{
3293 raid5_conf_t *conf = mddev_to_conf(mddev);
3294 int i;
3295
3296 rcu_read_lock();
3297 for (i=0; i<mddev->raid_disks; i++) {
Suzanne Woodd6065f72005-11-08 21:39:27 -08003298 mdk_rdev_t *rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownb2d444d2005-11-08 21:39:31 -08003299 if (rdev && !test_bit(Faulty, &rdev->flags) && atomic_read(&rdev->nr_pending)) {
Jens Axboe165125e2007-07-24 09:28:11 +02003300 struct request_queue *r_queue = bdev_get_queue(rdev->bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301
3302 atomic_inc(&rdev->nr_pending);
3303 rcu_read_unlock();
3304
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -05003305 blk_unplug(r_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306
3307 rdev_dec_pending(rdev, mddev);
3308 rcu_read_lock();
3309 }
3310 }
3311 rcu_read_unlock();
3312}
3313
Jens Axboe165125e2007-07-24 09:28:11 +02003314static void raid5_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315{
3316 mddev_t *mddev = q->queuedata;
3317 raid5_conf_t *conf = mddev_to_conf(mddev);
3318 unsigned long flags;
3319
3320 spin_lock_irqsave(&conf->device_lock, flags);
3321
NeilBrown72626682005-09-09 16:23:54 -07003322 if (blk_remove_plug(q)) {
3323 conf->seq_flush++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324 raid5_activate_delayed(conf);
NeilBrown72626682005-09-09 16:23:54 -07003325 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326 md_wakeup_thread(mddev->thread);
3327
3328 spin_unlock_irqrestore(&conf->device_lock, flags);
3329
3330 unplug_slaves(mddev);
3331}
3332
NeilBrownf022b2f2006-10-03 01:15:56 -07003333static int raid5_congested(void *data, int bits)
3334{
3335 mddev_t *mddev = data;
3336 raid5_conf_t *conf = mddev_to_conf(mddev);
3337
3338 /* No difference between reads and writes. Just check
3339 * how busy the stripe_cache is
3340 */
3341 if (conf->inactive_blocked)
3342 return 1;
3343 if (conf->quiesce)
3344 return 1;
3345 if (list_empty_careful(&conf->inactive_list))
3346 return 1;
3347
3348 return 0;
3349}
3350
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003351/* We want read requests to align with chunks where possible,
3352 * but write requests don't need to.
3353 */
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003354static int raid5_mergeable_bvec(struct request_queue *q,
3355 struct bvec_merge_data *bvm,
3356 struct bio_vec *biovec)
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003357{
3358 mddev_t *mddev = q->queuedata;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003359 sector_t sector = bvm->bi_sector + get_start_sect(bvm->bi_bdev);
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003360 int max;
3361 unsigned int chunk_sectors = mddev->chunk_size >> 9;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003362 unsigned int bio_sectors = bvm->bi_size >> 9;
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003363
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003364 if ((bvm->bi_rw & 1) == WRITE)
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003365 return biovec->bv_len; /* always allow writes to be mergeable */
3366
NeilBrown784052e2009-03-31 15:19:07 +11003367 if (mddev->new_chunk < mddev->chunk_size)
3368 chunk_sectors = mddev->new_chunk >> 9;
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003369 max = (chunk_sectors - ((sector & (chunk_sectors - 1)) + bio_sectors)) << 9;
3370 if (max < 0) max = 0;
3371 if (max <= biovec->bv_len && bio_sectors == 0)
3372 return biovec->bv_len;
3373 else
3374 return max;
3375}
3376
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003377
3378static int in_chunk_boundary(mddev_t *mddev, struct bio *bio)
3379{
3380 sector_t sector = bio->bi_sector + get_start_sect(bio->bi_bdev);
3381 unsigned int chunk_sectors = mddev->chunk_size >> 9;
3382 unsigned int bio_sectors = bio->bi_size >> 9;
3383
NeilBrown784052e2009-03-31 15:19:07 +11003384 if (mddev->new_chunk < mddev->chunk_size)
3385 chunk_sectors = mddev->new_chunk >> 9;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003386 return chunk_sectors >=
3387 ((sector & (chunk_sectors - 1)) + bio_sectors);
3388}
3389
3390/*
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003391 * add bio to the retry LIFO ( in O(1) ... we are in interrupt )
3392 * later sampled by raid5d.
3393 */
3394static void add_bio_to_retry(struct bio *bi,raid5_conf_t *conf)
3395{
3396 unsigned long flags;
3397
3398 spin_lock_irqsave(&conf->device_lock, flags);
3399
3400 bi->bi_next = conf->retry_read_aligned_list;
3401 conf->retry_read_aligned_list = bi;
3402
3403 spin_unlock_irqrestore(&conf->device_lock, flags);
3404 md_wakeup_thread(conf->mddev->thread);
3405}
3406
3407
3408static struct bio *remove_bio_from_retry(raid5_conf_t *conf)
3409{
3410 struct bio *bi;
3411
3412 bi = conf->retry_read_aligned;
3413 if (bi) {
3414 conf->retry_read_aligned = NULL;
3415 return bi;
3416 }
3417 bi = conf->retry_read_aligned_list;
3418 if(bi) {
Neil Brown387bb172007-02-08 14:20:29 -08003419 conf->retry_read_aligned_list = bi->bi_next;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003420 bi->bi_next = NULL;
Jens Axboe960e7392008-08-15 10:41:18 +02003421 /*
3422 * this sets the active strip count to 1 and the processed
3423 * strip count to zero (upper 8 bits)
3424 */
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003425 bi->bi_phys_segments = 1; /* biased count of active stripes */
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003426 }
3427
3428 return bi;
3429}
3430
3431
3432/*
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003433 * The "raid5_align_endio" should check if the read succeeded and if it
3434 * did, call bio_endio on the original bio (having bio_put the new bio
3435 * first).
3436 * If the read failed..
3437 */
NeilBrown6712ecf2007-09-27 12:47:43 +02003438static void raid5_align_endio(struct bio *bi, int error)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003439{
3440 struct bio* raid_bi = bi->bi_private;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003441 mddev_t *mddev;
3442 raid5_conf_t *conf;
3443 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
3444 mdk_rdev_t *rdev;
3445
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003446 bio_put(bi);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003447
3448 mddev = raid_bi->bi_bdev->bd_disk->queue->queuedata;
3449 conf = mddev_to_conf(mddev);
3450 rdev = (void*)raid_bi->bi_next;
3451 raid_bi->bi_next = NULL;
3452
3453 rdev_dec_pending(rdev, conf->mddev);
3454
3455 if (!error && uptodate) {
NeilBrown6712ecf2007-09-27 12:47:43 +02003456 bio_endio(raid_bi, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003457 if (atomic_dec_and_test(&conf->active_aligned_reads))
3458 wake_up(&conf->wait_for_stripe);
NeilBrown6712ecf2007-09-27 12:47:43 +02003459 return;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003460 }
3461
3462
Dan Williams45b42332007-07-09 11:56:43 -07003463 pr_debug("raid5_align_endio : io error...handing IO for a retry\n");
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003464
3465 add_bio_to_retry(raid_bi, conf);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003466}
3467
Neil Brown387bb172007-02-08 14:20:29 -08003468static int bio_fits_rdev(struct bio *bi)
3469{
Jens Axboe165125e2007-07-24 09:28:11 +02003470 struct request_queue *q = bdev_get_queue(bi->bi_bdev);
Neil Brown387bb172007-02-08 14:20:29 -08003471
3472 if ((bi->bi_size>>9) > q->max_sectors)
3473 return 0;
3474 blk_recount_segments(q, bi);
Jens Axboe960e7392008-08-15 10:41:18 +02003475 if (bi->bi_phys_segments > q->max_phys_segments)
Neil Brown387bb172007-02-08 14:20:29 -08003476 return 0;
3477
3478 if (q->merge_bvec_fn)
3479 /* it's too hard to apply the merge_bvec_fn at this stage,
3480 * just just give up
3481 */
3482 return 0;
3483
3484 return 1;
3485}
3486
3487
Jens Axboe165125e2007-07-24 09:28:11 +02003488static int chunk_aligned_read(struct request_queue *q, struct bio * raid_bio)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003489{
3490 mddev_t *mddev = q->queuedata;
3491 raid5_conf_t *conf = mddev_to_conf(mddev);
NeilBrown911d4ee2009-03-31 14:39:38 +11003492 unsigned int dd_idx;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003493 struct bio* align_bi;
3494 mdk_rdev_t *rdev;
3495
3496 if (!in_chunk_boundary(mddev, raid_bio)) {
Dan Williams45b42332007-07-09 11:56:43 -07003497 pr_debug("chunk_aligned_read : non aligned\n");
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003498 return 0;
3499 }
3500 /*
NeilBrown99c0fb52009-03-31 14:39:38 +11003501 * use bio_clone to make a copy of the bio
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003502 */
3503 align_bi = bio_clone(raid_bio, GFP_NOIO);
3504 if (!align_bi)
3505 return 0;
3506 /*
3507 * set bi_end_io to a new function, and set bi_private to the
3508 * original bio.
3509 */
3510 align_bi->bi_end_io = raid5_align_endio;
3511 align_bi->bi_private = raid_bio;
3512 /*
3513 * compute position
3514 */
NeilBrown112bf892009-03-31 14:39:38 +11003515 align_bi->bi_sector = raid5_compute_sector(conf, raid_bio->bi_sector,
3516 0,
NeilBrown911d4ee2009-03-31 14:39:38 +11003517 &dd_idx, NULL);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003518
3519 rcu_read_lock();
3520 rdev = rcu_dereference(conf->disks[dd_idx].rdev);
3521 if (rdev && test_bit(In_sync, &rdev->flags)) {
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003522 atomic_inc(&rdev->nr_pending);
3523 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003524 raid_bio->bi_next = (void*)rdev;
3525 align_bi->bi_bdev = rdev->bdev;
3526 align_bi->bi_flags &= ~(1 << BIO_SEG_VALID);
3527 align_bi->bi_sector += rdev->data_offset;
3528
Neil Brown387bb172007-02-08 14:20:29 -08003529 if (!bio_fits_rdev(align_bi)) {
3530 /* too big in some way */
3531 bio_put(align_bi);
3532 rdev_dec_pending(rdev, mddev);
3533 return 0;
3534 }
3535
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003536 spin_lock_irq(&conf->device_lock);
3537 wait_event_lock_irq(conf->wait_for_stripe,
3538 conf->quiesce == 0,
3539 conf->device_lock, /* nothing */);
3540 atomic_inc(&conf->active_aligned_reads);
3541 spin_unlock_irq(&conf->device_lock);
3542
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003543 generic_make_request(align_bi);
3544 return 1;
3545 } else {
3546 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003547 bio_put(align_bi);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003548 return 0;
3549 }
3550}
3551
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003552/* __get_priority_stripe - get the next stripe to process
3553 *
3554 * Full stripe writes are allowed to pass preread active stripes up until
3555 * the bypass_threshold is exceeded. In general the bypass_count
3556 * increments when the handle_list is handled before the hold_list; however, it
3557 * will not be incremented when STRIPE_IO_STARTED is sampled set signifying a
3558 * stripe with in flight i/o. The bypass_count will be reset when the
3559 * head of the hold_list has changed, i.e. the head was promoted to the
3560 * handle_list.
3561 */
3562static struct stripe_head *__get_priority_stripe(raid5_conf_t *conf)
3563{
3564 struct stripe_head *sh;
3565
3566 pr_debug("%s: handle: %s hold: %s full_writes: %d bypass_count: %d\n",
3567 __func__,
3568 list_empty(&conf->handle_list) ? "empty" : "busy",
3569 list_empty(&conf->hold_list) ? "empty" : "busy",
3570 atomic_read(&conf->pending_full_writes), conf->bypass_count);
3571
3572 if (!list_empty(&conf->handle_list)) {
3573 sh = list_entry(conf->handle_list.next, typeof(*sh), lru);
3574
3575 if (list_empty(&conf->hold_list))
3576 conf->bypass_count = 0;
3577 else if (!test_bit(STRIPE_IO_STARTED, &sh->state)) {
3578 if (conf->hold_list.next == conf->last_hold)
3579 conf->bypass_count++;
3580 else {
3581 conf->last_hold = conf->hold_list.next;
3582 conf->bypass_count -= conf->bypass_threshold;
3583 if (conf->bypass_count < 0)
3584 conf->bypass_count = 0;
3585 }
3586 }
3587 } else if (!list_empty(&conf->hold_list) &&
3588 ((conf->bypass_threshold &&
3589 conf->bypass_count > conf->bypass_threshold) ||
3590 atomic_read(&conf->pending_full_writes) == 0)) {
3591 sh = list_entry(conf->hold_list.next,
3592 typeof(*sh), lru);
3593 conf->bypass_count -= conf->bypass_threshold;
3594 if (conf->bypass_count < 0)
3595 conf->bypass_count = 0;
3596 } else
3597 return NULL;
3598
3599 list_del_init(&sh->lru);
3600 atomic_inc(&sh->count);
3601 BUG_ON(atomic_read(&sh->count) != 1);
3602 return sh;
3603}
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003604
Jens Axboe165125e2007-07-24 09:28:11 +02003605static int make_request(struct request_queue *q, struct bio * bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606{
3607 mddev_t *mddev = q->queuedata;
3608 raid5_conf_t *conf = mddev_to_conf(mddev);
NeilBrown911d4ee2009-03-31 14:39:38 +11003609 int dd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610 sector_t new_sector;
3611 sector_t logical_sector, last_sector;
3612 struct stripe_head *sh;
Jens Axboea3623572005-11-01 09:26:16 +01003613 const int rw = bio_data_dir(bi);
Tejun Heoc9959052008-08-25 19:47:21 +09003614 int cpu, remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615
NeilBrowne5dcdd82005-09-09 16:23:41 -07003616 if (unlikely(bio_barrier(bi))) {
NeilBrown6712ecf2007-09-27 12:47:43 +02003617 bio_endio(bi, -EOPNOTSUPP);
NeilBrowne5dcdd82005-09-09 16:23:41 -07003618 return 0;
3619 }
3620
NeilBrown3d310eb2005-06-21 17:17:26 -07003621 md_write_start(mddev, bi);
NeilBrown06d91a52005-06-21 17:17:12 -07003622
Tejun Heo074a7ac2008-08-25 19:56:14 +09003623 cpu = part_stat_lock();
3624 part_stat_inc(cpu, &mddev->gendisk->part0, ios[rw]);
3625 part_stat_add(cpu, &mddev->gendisk->part0, sectors[rw],
3626 bio_sectors(bi));
3627 part_stat_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628
NeilBrown802ba062006-12-13 00:34:13 -08003629 if (rw == READ &&
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08003630 mddev->reshape_position == MaxSector &&
3631 chunk_aligned_read(q,bi))
NeilBrown99c0fb52009-03-31 14:39:38 +11003632 return 0;
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08003633
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634 logical_sector = bi->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
3635 last_sector = bi->bi_sector + (bi->bi_size>>9);
3636 bi->bi_next = NULL;
3637 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
NeilBrown06d91a52005-06-21 17:17:12 -07003638
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639 for (;logical_sector < last_sector; logical_sector += STRIPE_SECTORS) {
3640 DEFINE_WAIT(w);
NeilBrown16a53ec2006-06-26 00:27:38 -07003641 int disks, data_disks;
NeilBrownb5663ba2009-03-31 14:39:38 +11003642 int previous;
NeilBrownb578d552006-03-27 01:18:12 -08003643
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003644 retry:
NeilBrownb5663ba2009-03-31 14:39:38 +11003645 previous = 0;
NeilBrownb0f9ec02009-03-31 15:27:18 +11003646 disks = conf->raid_disks;
NeilBrownb578d552006-03-27 01:18:12 -08003647 prepare_to_wait(&conf->wait_for_overlap, &w, TASK_UNINTERRUPTIBLE);
NeilBrownb0f9ec02009-03-31 15:27:18 +11003648 if (unlikely(conf->reshape_progress != MaxSector)) {
NeilBrownfef9c612009-03-31 15:16:46 +11003649 /* spinlock is needed as reshape_progress may be
NeilBrowndf8e7f72006-03-27 01:18:15 -08003650 * 64bit on a 32bit platform, and so it might be
3651 * possible to see a half-updated value
NeilBrownfef9c612009-03-31 15:16:46 +11003652 * Ofcourse reshape_progress could change after
NeilBrowndf8e7f72006-03-27 01:18:15 -08003653 * the lock is dropped, so once we get a reference
3654 * to the stripe that we think it is, we will have
3655 * to check again.
3656 */
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003657 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11003658 if (mddev->delta_disks < 0
3659 ? logical_sector < conf->reshape_progress
3660 : logical_sector >= conf->reshape_progress) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003661 disks = conf->previous_raid_disks;
NeilBrownb5663ba2009-03-31 14:39:38 +11003662 previous = 1;
3663 } else {
NeilBrownfef9c612009-03-31 15:16:46 +11003664 if (mddev->delta_disks < 0
3665 ? logical_sector < conf->reshape_safe
3666 : logical_sector >= conf->reshape_safe) {
NeilBrownb578d552006-03-27 01:18:12 -08003667 spin_unlock_irq(&conf->device_lock);
3668 schedule();
3669 goto retry;
3670 }
3671 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003672 spin_unlock_irq(&conf->device_lock);
3673 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003674 data_disks = disks - conf->max_degraded;
3675
NeilBrown112bf892009-03-31 14:39:38 +11003676 new_sector = raid5_compute_sector(conf, logical_sector,
3677 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11003678 &dd_idx, NULL);
Dan Williams45b42332007-07-09 11:56:43 -07003679 pr_debug("raid5: make_request, sector %llu logical %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680 (unsigned long long)new_sector,
3681 (unsigned long long)logical_sector);
3682
NeilBrownb5663ba2009-03-31 14:39:38 +11003683 sh = get_active_stripe(conf, new_sector, previous,
3684 (bi->bi_rw&RWA_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685 if (sh) {
NeilBrownb0f9ec02009-03-31 15:27:18 +11003686 if (unlikely(previous)) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003687 /* expansion might have moved on while waiting for a
NeilBrowndf8e7f72006-03-27 01:18:15 -08003688 * stripe, so we must do the range check again.
3689 * Expansion could still move past after this
3690 * test, but as we are holding a reference to
3691 * 'sh', we know that if that happens,
3692 * STRIPE_EXPANDING will get set and the expansion
3693 * won't proceed until we finish with the stripe.
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003694 */
3695 int must_retry = 0;
3696 spin_lock_irq(&conf->device_lock);
NeilBrownb0f9ec02009-03-31 15:27:18 +11003697 if (mddev->delta_disks < 0
3698 ? logical_sector >= conf->reshape_progress
3699 : logical_sector < conf->reshape_progress)
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003700 /* mismatch, need to try again */
3701 must_retry = 1;
3702 spin_unlock_irq(&conf->device_lock);
3703 if (must_retry) {
3704 release_stripe(sh);
3705 goto retry;
3706 }
3707 }
NeilBrowne464eaf2006-03-27 01:18:14 -08003708 /* FIXME what if we get a false positive because these
3709 * are being updated.
3710 */
3711 if (logical_sector >= mddev->suspend_lo &&
3712 logical_sector < mddev->suspend_hi) {
3713 release_stripe(sh);
3714 schedule();
3715 goto retry;
3716 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003717
3718 if (test_bit(STRIPE_EXPANDING, &sh->state) ||
3719 !add_stripe_bio(sh, bi, dd_idx, (bi->bi_rw&RW_MASK))) {
3720 /* Stripe is busy expanding or
3721 * add failed due to overlap. Flush everything
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722 * and wait a while
3723 */
3724 raid5_unplug_device(mddev->queue);
3725 release_stripe(sh);
3726 schedule();
3727 goto retry;
3728 }
3729 finish_wait(&conf->wait_for_overlap, &w);
NeilBrown6ed30032008-02-06 01:40:00 -08003730 set_bit(STRIPE_HANDLE, &sh->state);
3731 clear_bit(STRIPE_DELAYED, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733 } else {
3734 /* cannot get stripe for read-ahead, just give-up */
3735 clear_bit(BIO_UPTODATE, &bi->bi_flags);
3736 finish_wait(&conf->wait_for_overlap, &w);
3737 break;
3738 }
3739
3740 }
3741 spin_lock_irq(&conf->device_lock);
Jens Axboe960e7392008-08-15 10:41:18 +02003742 remaining = raid5_dec_bi_phys_segments(bi);
NeilBrownf6344752006-03-27 01:18:17 -08003743 spin_unlock_irq(&conf->device_lock);
3744 if (remaining == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745
NeilBrown16a53ec2006-06-26 00:27:38 -07003746 if ( rw == WRITE )
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747 md_write_end(mddev);
NeilBrown6712ecf2007-09-27 12:47:43 +02003748
Neil Brown0e13fe232008-06-28 08:31:20 +10003749 bio_endio(bi, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751 return 0;
3752}
3753
Dan Williamsb522adc2009-03-31 15:00:31 +11003754static sector_t raid5_size(mddev_t *mddev, sector_t sectors, int raid_disks);
3755
NeilBrown52c03292006-06-26 00:27:43 -07003756static sector_t reshape_request(mddev_t *mddev, sector_t sector_nr, int *skipped)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757{
NeilBrown52c03292006-06-26 00:27:43 -07003758 /* reshaping is quite different to recovery/resync so it is
3759 * handled quite separately ... here.
3760 *
3761 * On each call to sync_request, we gather one chunk worth of
3762 * destination stripes and flag them as expanding.
3763 * Then we find all the source stripes and request reads.
3764 * As the reads complete, handle_stripe will copy the data
3765 * into the destination stripe and release that stripe.
3766 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
3768 struct stripe_head *sh;
NeilBrownccfcc3c2006-03-27 01:18:09 -08003769 sector_t first_sector, last_sector;
NeilBrownf4168852007-02-28 20:11:53 -08003770 int raid_disks = conf->previous_raid_disks;
3771 int data_disks = raid_disks - conf->max_degraded;
3772 int new_data_disks = conf->raid_disks - conf->max_degraded;
NeilBrown52c03292006-06-26 00:27:43 -07003773 int i;
3774 int dd_idx;
NeilBrownc8f517c2009-03-31 15:28:40 +11003775 sector_t writepos, readpos, safepos;
NeilBrownec32a2b2009-03-31 15:17:38 +11003776 sector_t stripe_addr;
NeilBrown7a661382009-03-31 15:21:40 +11003777 int reshape_sectors;
NeilBrownab69ae12009-03-31 15:26:47 +11003778 struct list_head stripes;
NeilBrown52c03292006-06-26 00:27:43 -07003779
NeilBrownfef9c612009-03-31 15:16:46 +11003780 if (sector_nr == 0) {
3781 /* If restarting in the middle, skip the initial sectors */
3782 if (mddev->delta_disks < 0 &&
3783 conf->reshape_progress < raid5_size(mddev, 0, 0)) {
3784 sector_nr = raid5_size(mddev, 0, 0)
3785 - conf->reshape_progress;
3786 } else if (mddev->delta_disks > 0 &&
3787 conf->reshape_progress > 0)
3788 sector_nr = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08003789 sector_div(sector_nr, new_data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11003790 if (sector_nr) {
3791 *skipped = 1;
3792 return sector_nr;
3793 }
NeilBrown52c03292006-06-26 00:27:43 -07003794 }
3795
NeilBrown7a661382009-03-31 15:21:40 +11003796 /* We need to process a full chunk at a time.
3797 * If old and new chunk sizes differ, we need to process the
3798 * largest of these
3799 */
3800 if (mddev->new_chunk > mddev->chunk_size)
3801 reshape_sectors = mddev->new_chunk / 512;
3802 else
3803 reshape_sectors = mddev->chunk_size / 512;
3804
NeilBrown52c03292006-06-26 00:27:43 -07003805 /* we update the metadata when there is more than 3Meg
3806 * in the block range (that is rather arbitrary, should
3807 * probably be time based) or when the data about to be
3808 * copied would over-write the source of the data at
3809 * the front of the range.
NeilBrownfef9c612009-03-31 15:16:46 +11003810 * i.e. one new_stripe along from reshape_progress new_maps
3811 * to after where reshape_safe old_maps to
NeilBrown52c03292006-06-26 00:27:43 -07003812 */
NeilBrownfef9c612009-03-31 15:16:46 +11003813 writepos = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08003814 sector_div(writepos, new_data_disks);
NeilBrownc8f517c2009-03-31 15:28:40 +11003815 readpos = conf->reshape_progress;
3816 sector_div(readpos, data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11003817 safepos = conf->reshape_safe;
NeilBrownf4168852007-02-28 20:11:53 -08003818 sector_div(safepos, data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11003819 if (mddev->delta_disks < 0) {
NeilBrown7a661382009-03-31 15:21:40 +11003820 writepos -= reshape_sectors;
NeilBrownc8f517c2009-03-31 15:28:40 +11003821 readpos += reshape_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11003822 safepos += reshape_sectors;
NeilBrownfef9c612009-03-31 15:16:46 +11003823 } else {
NeilBrown7a661382009-03-31 15:21:40 +11003824 writepos += reshape_sectors;
NeilBrownc8f517c2009-03-31 15:28:40 +11003825 readpos -= reshape_sectors;
NeilBrown7a661382009-03-31 15:21:40 +11003826 safepos -= reshape_sectors;
NeilBrownfef9c612009-03-31 15:16:46 +11003827 }
NeilBrown52c03292006-06-26 00:27:43 -07003828
NeilBrownc8f517c2009-03-31 15:28:40 +11003829 /* 'writepos' is the most advanced device address we might write.
3830 * 'readpos' is the least advanced device address we might read.
3831 * 'safepos' is the least address recorded in the metadata as having
3832 * been reshaped.
3833 * If 'readpos' is behind 'writepos', then there is no way that we can
3834 * ensure safety in the face of a crash - that must be done by userspace
3835 * making a backup of the data. So in that case there is no particular
3836 * rush to update metadata.
3837 * Otherwise if 'safepos' is behind 'writepos', then we really need to
3838 * update the metadata to advance 'safepos' to match 'readpos' so that
3839 * we can be safe in the event of a crash.
3840 * So we insist on updating metadata if safepos is behind writepos and
3841 * readpos is beyond writepos.
3842 * In any case, update the metadata every 10 seconds.
3843 * Maybe that number should be configurable, but I'm not sure it is
3844 * worth it.... maybe it could be a multiple of safemode_delay???
3845 */
NeilBrownfef9c612009-03-31 15:16:46 +11003846 if ((mddev->delta_disks < 0
NeilBrownc8f517c2009-03-31 15:28:40 +11003847 ? (safepos > writepos && readpos < writepos)
3848 : (safepos < writepos && readpos > writepos)) ||
3849 time_after(jiffies, conf->reshape_checkpoint + 10*HZ)) {
NeilBrown52c03292006-06-26 00:27:43 -07003850 /* Cannot proceed until we've updated the superblock... */
3851 wait_event(conf->wait_for_overlap,
3852 atomic_read(&conf->reshape_stripes)==0);
NeilBrownfef9c612009-03-31 15:16:46 +11003853 mddev->reshape_position = conf->reshape_progress;
NeilBrownc8f517c2009-03-31 15:28:40 +11003854 conf->reshape_checkpoint = jiffies;
NeilBrown850b2b42006-10-03 01:15:46 -07003855 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrown52c03292006-06-26 00:27:43 -07003856 md_wakeup_thread(mddev->thread);
NeilBrown850b2b42006-10-03 01:15:46 -07003857 wait_event(mddev->sb_wait, mddev->flags == 0 ||
NeilBrown52c03292006-06-26 00:27:43 -07003858 kthread_should_stop());
3859 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11003860 conf->reshape_safe = mddev->reshape_position;
NeilBrown52c03292006-06-26 00:27:43 -07003861 spin_unlock_irq(&conf->device_lock);
3862 wake_up(&conf->wait_for_overlap);
3863 }
3864
NeilBrownec32a2b2009-03-31 15:17:38 +11003865 if (mddev->delta_disks < 0) {
3866 BUG_ON(conf->reshape_progress == 0);
3867 stripe_addr = writepos;
3868 BUG_ON((mddev->dev_sectors &
NeilBrown7a661382009-03-31 15:21:40 +11003869 ~((sector_t)reshape_sectors - 1))
3870 - reshape_sectors - stripe_addr
NeilBrownec32a2b2009-03-31 15:17:38 +11003871 != sector_nr);
3872 } else {
NeilBrown7a661382009-03-31 15:21:40 +11003873 BUG_ON(writepos != sector_nr + reshape_sectors);
NeilBrownec32a2b2009-03-31 15:17:38 +11003874 stripe_addr = sector_nr;
3875 }
NeilBrownab69ae12009-03-31 15:26:47 +11003876 INIT_LIST_HEAD(&stripes);
NeilBrown7a661382009-03-31 15:21:40 +11003877 for (i = 0; i < reshape_sectors; i += STRIPE_SECTORS) {
NeilBrown52c03292006-06-26 00:27:43 -07003878 int j;
3879 int skipped = 0;
NeilBrownec32a2b2009-03-31 15:17:38 +11003880 sh = get_active_stripe(conf, stripe_addr+i, 0, 0);
NeilBrown52c03292006-06-26 00:27:43 -07003881 set_bit(STRIPE_EXPANDING, &sh->state);
3882 atomic_inc(&conf->reshape_stripes);
3883 /* If any of this stripe is beyond the end of the old
3884 * array, then we need to zero those blocks
3885 */
3886 for (j=sh->disks; j--;) {
3887 sector_t s;
3888 if (j == sh->pd_idx)
3889 continue;
NeilBrownf4168852007-02-28 20:11:53 -08003890 if (conf->level == 6 &&
NeilBrownd0dabf72009-03-31 14:39:38 +11003891 j == sh->qd_idx)
NeilBrownf4168852007-02-28 20:11:53 -08003892 continue;
NeilBrown784052e2009-03-31 15:19:07 +11003893 s = compute_blocknr(sh, j, 0);
Dan Williamsb522adc2009-03-31 15:00:31 +11003894 if (s < raid5_size(mddev, 0, 0)) {
NeilBrown52c03292006-06-26 00:27:43 -07003895 skipped = 1;
3896 continue;
3897 }
3898 memset(page_address(sh->dev[j].page), 0, STRIPE_SIZE);
3899 set_bit(R5_Expanded, &sh->dev[j].flags);
3900 set_bit(R5_UPTODATE, &sh->dev[j].flags);
3901 }
3902 if (!skipped) {
3903 set_bit(STRIPE_EXPAND_READY, &sh->state);
3904 set_bit(STRIPE_HANDLE, &sh->state);
3905 }
NeilBrownab69ae12009-03-31 15:26:47 +11003906 list_add(&sh->lru, &stripes);
NeilBrown52c03292006-06-26 00:27:43 -07003907 }
3908 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11003909 if (mddev->delta_disks < 0)
NeilBrown7a661382009-03-31 15:21:40 +11003910 conf->reshape_progress -= reshape_sectors * new_data_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11003911 else
NeilBrown7a661382009-03-31 15:21:40 +11003912 conf->reshape_progress += reshape_sectors * new_data_disks;
NeilBrown52c03292006-06-26 00:27:43 -07003913 spin_unlock_irq(&conf->device_lock);
3914 /* Ok, those stripe are ready. We can start scheduling
3915 * reads on the source stripes.
3916 * The source stripes are determined by mapping the first and last
3917 * block on the destination stripes.
3918 */
NeilBrown52c03292006-06-26 00:27:43 -07003919 first_sector =
NeilBrownec32a2b2009-03-31 15:17:38 +11003920 raid5_compute_sector(conf, stripe_addr*(new_data_disks),
NeilBrown911d4ee2009-03-31 14:39:38 +11003921 1, &dd_idx, NULL);
NeilBrown52c03292006-06-26 00:27:43 -07003922 last_sector =
NeilBrownec32a2b2009-03-31 15:17:38 +11003923 raid5_compute_sector(conf, ((stripe_addr+conf->chunk_size/512)
NeilBrown112bf892009-03-31 14:39:38 +11003924 *(new_data_disks) - 1),
NeilBrown911d4ee2009-03-31 14:39:38 +11003925 1, &dd_idx, NULL);
Andre Noll58c0fed2009-03-31 14:33:13 +11003926 if (last_sector >= mddev->dev_sectors)
3927 last_sector = mddev->dev_sectors - 1;
NeilBrown52c03292006-06-26 00:27:43 -07003928 while (first_sector <= last_sector) {
NeilBrownb5663ba2009-03-31 14:39:38 +11003929 sh = get_active_stripe(conf, first_sector, 1, 0);
NeilBrown52c03292006-06-26 00:27:43 -07003930 set_bit(STRIPE_EXPAND_SOURCE, &sh->state);
3931 set_bit(STRIPE_HANDLE, &sh->state);
3932 release_stripe(sh);
3933 first_sector += STRIPE_SECTORS;
3934 }
NeilBrownab69ae12009-03-31 15:26:47 +11003935 /* Now that the sources are clearly marked, we can release
3936 * the destination stripes
3937 */
3938 while (!list_empty(&stripes)) {
3939 sh = list_entry(stripes.next, struct stripe_head, lru);
3940 list_del_init(&sh->lru);
3941 release_stripe(sh);
3942 }
NeilBrownc6207272008-02-06 01:39:52 -08003943 /* If this takes us to the resync_max point where we have to pause,
3944 * then we need to write out the superblock.
3945 */
NeilBrown7a661382009-03-31 15:21:40 +11003946 sector_nr += reshape_sectors;
NeilBrownc6207272008-02-06 01:39:52 -08003947 if (sector_nr >= mddev->resync_max) {
3948 /* Cannot proceed until we've updated the superblock... */
3949 wait_event(conf->wait_for_overlap,
3950 atomic_read(&conf->reshape_stripes) == 0);
NeilBrownfef9c612009-03-31 15:16:46 +11003951 mddev->reshape_position = conf->reshape_progress;
NeilBrownc8f517c2009-03-31 15:28:40 +11003952 conf->reshape_checkpoint = jiffies;
NeilBrownc6207272008-02-06 01:39:52 -08003953 set_bit(MD_CHANGE_DEVS, &mddev->flags);
3954 md_wakeup_thread(mddev->thread);
3955 wait_event(mddev->sb_wait,
3956 !test_bit(MD_CHANGE_DEVS, &mddev->flags)
3957 || kthread_should_stop());
3958 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11003959 conf->reshape_safe = mddev->reshape_position;
NeilBrownc6207272008-02-06 01:39:52 -08003960 spin_unlock_irq(&conf->device_lock);
3961 wake_up(&conf->wait_for_overlap);
3962 }
NeilBrown7a661382009-03-31 15:21:40 +11003963 return reshape_sectors;
NeilBrown52c03292006-06-26 00:27:43 -07003964}
3965
3966/* FIXME go_faster isn't used */
3967static inline sector_t sync_request(mddev_t *mddev, sector_t sector_nr, int *skipped, int go_faster)
3968{
3969 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
3970 struct stripe_head *sh;
Andre Noll58c0fed2009-03-31 14:33:13 +11003971 sector_t max_sector = mddev->dev_sectors;
NeilBrown72626682005-09-09 16:23:54 -07003972 int sync_blocks;
NeilBrown16a53ec2006-06-26 00:27:38 -07003973 int still_degraded = 0;
3974 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975
NeilBrown72626682005-09-09 16:23:54 -07003976 if (sector_nr >= max_sector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977 /* just being told to finish up .. nothing much to do */
3978 unplug_slaves(mddev);
NeilBrowncea9c222009-03-31 15:15:05 +11003979
NeilBrown29269552006-03-27 01:18:10 -08003980 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery)) {
3981 end_reshape(conf);
3982 return 0;
3983 }
NeilBrown72626682005-09-09 16:23:54 -07003984
3985 if (mddev->curr_resync < max_sector) /* aborted */
3986 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
3987 &sync_blocks, 1);
NeilBrown16a53ec2006-06-26 00:27:38 -07003988 else /* completed sync */
NeilBrown72626682005-09-09 16:23:54 -07003989 conf->fullsync = 0;
3990 bitmap_close_sync(mddev->bitmap);
3991
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992 return 0;
3993 }
NeilBrownccfcc3c2006-03-27 01:18:09 -08003994
NeilBrown52c03292006-06-26 00:27:43 -07003995 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery))
3996 return reshape_request(mddev, sector_nr, skipped);
NeilBrownf6705572006-03-27 01:18:11 -08003997
NeilBrownc6207272008-02-06 01:39:52 -08003998 /* No need to check resync_max as we never do more than one
3999 * stripe, and as resync_max will always be on a chunk boundary,
4000 * if the check in md_do_sync didn't fire, there is no chance
4001 * of overstepping resync_max here
4002 */
4003
NeilBrown16a53ec2006-06-26 00:27:38 -07004004 /* if there is too many failed drives and we are trying
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005 * to resync, then assert that we are finished, because there is
4006 * nothing we can do.
4007 */
NeilBrown3285edf2006-06-26 00:27:55 -07004008 if (mddev->degraded >= conf->max_degraded &&
NeilBrown16a53ec2006-06-26 00:27:38 -07004009 test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
Andre Noll58c0fed2009-03-31 14:33:13 +11004010 sector_t rv = mddev->dev_sectors - sector_nr;
NeilBrown57afd892005-06-21 17:17:13 -07004011 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012 return rv;
4013 }
NeilBrown72626682005-09-09 16:23:54 -07004014 if (!bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
NeilBrown3855ad92005-11-08 21:39:38 -08004015 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
NeilBrown72626682005-09-09 16:23:54 -07004016 !conf->fullsync && sync_blocks >= STRIPE_SECTORS) {
4017 /* we can skip this block, and probably more */
4018 sync_blocks /= STRIPE_SECTORS;
4019 *skipped = 1;
4020 return sync_blocks * STRIPE_SECTORS; /* keep things rounded to whole stripes */
4021 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022
NeilBrownb47490c2008-02-06 01:39:50 -08004023
4024 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
4025
NeilBrownb5663ba2009-03-31 14:39:38 +11004026 sh = get_active_stripe(conf, sector_nr, 0, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027 if (sh == NULL) {
NeilBrownb5663ba2009-03-31 14:39:38 +11004028 sh = get_active_stripe(conf, sector_nr, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029 /* make sure we don't swamp the stripe cache if someone else
NeilBrown16a53ec2006-06-26 00:27:38 -07004030 * is trying to get access
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031 */
Nishanth Aravamudan66c006a2005-11-07 01:01:17 -08004032 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004034 /* Need to check if array will still be degraded after recovery/resync
4035 * We don't need to check the 'failed' flag as when that gets set,
4036 * recovery aborts.
4037 */
4038 for (i=0; i<mddev->raid_disks; i++)
4039 if (conf->disks[i].rdev == NULL)
4040 still_degraded = 1;
4041
4042 bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, still_degraded);
4043
4044 spin_lock(&sh->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045 set_bit(STRIPE_SYNCING, &sh->state);
4046 clear_bit(STRIPE_INSYNC, &sh->state);
4047 spin_unlock(&sh->lock);
4048
Dan Williamsdf10cfb2008-07-28 23:10:39 -07004049 /* wait for any blocked device to be handled */
4050 while(unlikely(!handle_stripe(sh, NULL)))
4051 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052 release_stripe(sh);
4053
4054 return STRIPE_SECTORS;
4055}
4056
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004057static int retry_aligned_read(raid5_conf_t *conf, struct bio *raid_bio)
4058{
4059 /* We may not be able to submit a whole bio at once as there
4060 * may not be enough stripe_heads available.
4061 * We cannot pre-allocate enough stripe_heads as we may need
4062 * more than exist in the cache (if we allow ever large chunks).
4063 * So we do one stripe head at a time and record in
4064 * ->bi_hw_segments how many have been done.
4065 *
4066 * We *know* that this entire raid_bio is in one chunk, so
4067 * it will be only one 'dd_idx' and only need one call to raid5_compute_sector.
4068 */
4069 struct stripe_head *sh;
NeilBrown911d4ee2009-03-31 14:39:38 +11004070 int dd_idx;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004071 sector_t sector, logical_sector, last_sector;
4072 int scnt = 0;
4073 int remaining;
4074 int handled = 0;
4075
4076 logical_sector = raid_bio->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
NeilBrown112bf892009-03-31 14:39:38 +11004077 sector = raid5_compute_sector(conf, logical_sector,
NeilBrown911d4ee2009-03-31 14:39:38 +11004078 0, &dd_idx, NULL);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004079 last_sector = raid_bio->bi_sector + (raid_bio->bi_size>>9);
4080
4081 for (; logical_sector < last_sector;
Neil Brown387bb172007-02-08 14:20:29 -08004082 logical_sector += STRIPE_SECTORS,
4083 sector += STRIPE_SECTORS,
4084 scnt++) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004085
Jens Axboe960e7392008-08-15 10:41:18 +02004086 if (scnt < raid5_bi_hw_segments(raid_bio))
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004087 /* already done this stripe */
4088 continue;
4089
NeilBrownb5663ba2009-03-31 14:39:38 +11004090 sh = get_active_stripe(conf, sector, 0, 1);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004091
4092 if (!sh) {
4093 /* failed to get a stripe - must wait */
Jens Axboe960e7392008-08-15 10:41:18 +02004094 raid5_set_bi_hw_segments(raid_bio, scnt);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004095 conf->retry_read_aligned = raid_bio;
4096 return handled;
4097 }
4098
4099 set_bit(R5_ReadError, &sh->dev[dd_idx].flags);
Neil Brown387bb172007-02-08 14:20:29 -08004100 if (!add_stripe_bio(sh, raid_bio, dd_idx, 0)) {
4101 release_stripe(sh);
Jens Axboe960e7392008-08-15 10:41:18 +02004102 raid5_set_bi_hw_segments(raid_bio, scnt);
Neil Brown387bb172007-02-08 14:20:29 -08004103 conf->retry_read_aligned = raid_bio;
4104 return handled;
4105 }
4106
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004107 handle_stripe(sh, NULL);
4108 release_stripe(sh);
4109 handled++;
4110 }
4111 spin_lock_irq(&conf->device_lock);
Jens Axboe960e7392008-08-15 10:41:18 +02004112 remaining = raid5_dec_bi_phys_segments(raid_bio);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004113 spin_unlock_irq(&conf->device_lock);
Neil Brown0e13fe232008-06-28 08:31:20 +10004114 if (remaining == 0)
4115 bio_endio(raid_bio, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004116 if (atomic_dec_and_test(&conf->active_aligned_reads))
4117 wake_up(&conf->wait_for_stripe);
4118 return handled;
4119}
4120
4121
4122
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123/*
4124 * This is our raid5 kernel thread.
4125 *
4126 * We scan the hash table for stripes which can be handled now.
4127 * During the scan, completed stripes are saved for us by the interrupt
4128 * handler, so that they will not have to wait for our next wakeup.
4129 */
NeilBrown6ed30032008-02-06 01:40:00 -08004130static void raid5d(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131{
4132 struct stripe_head *sh;
4133 raid5_conf_t *conf = mddev_to_conf(mddev);
4134 int handled;
4135
Dan Williams45b42332007-07-09 11:56:43 -07004136 pr_debug("+++ raid5d active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137
4138 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139
4140 handled = 0;
4141 spin_lock_irq(&conf->device_lock);
4142 while (1) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004143 struct bio *bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144
NeilBrownae3c20c2006-07-10 04:44:17 -07004145 if (conf->seq_flush != conf->seq_write) {
NeilBrown72626682005-09-09 16:23:54 -07004146 int seq = conf->seq_flush;
NeilBrown700e4322005-11-28 13:44:10 -08004147 spin_unlock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07004148 bitmap_unplug(mddev->bitmap);
NeilBrown700e4322005-11-28 13:44:10 -08004149 spin_lock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07004150 conf->seq_write = seq;
4151 activate_bit_delay(conf);
4152 }
4153
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004154 while ((bio = remove_bio_from_retry(conf))) {
4155 int ok;
4156 spin_unlock_irq(&conf->device_lock);
4157 ok = retry_aligned_read(conf, bio);
4158 spin_lock_irq(&conf->device_lock);
4159 if (!ok)
4160 break;
4161 handled++;
4162 }
4163
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004164 sh = __get_priority_stripe(conf);
4165
Dan Williamsc9f21aa2008-07-23 12:05:51 -07004166 if (!sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168 spin_unlock_irq(&conf->device_lock);
4169
4170 handled++;
NeilBrown16a53ec2006-06-26 00:27:38 -07004171 handle_stripe(sh, conf->spare_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172 release_stripe(sh);
4173
4174 spin_lock_irq(&conf->device_lock);
4175 }
Dan Williams45b42332007-07-09 11:56:43 -07004176 pr_debug("%d stripes handled\n", handled);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177
4178 spin_unlock_irq(&conf->device_lock);
4179
Dan Williamsc9f21aa2008-07-23 12:05:51 -07004180 async_tx_issue_pending_all();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181 unplug_slaves(mddev);
4182
Dan Williams45b42332007-07-09 11:56:43 -07004183 pr_debug("--- raid5d inactive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184}
4185
NeilBrown3f294f42005-11-08 21:39:25 -08004186static ssize_t
NeilBrown007583c2005-11-08 21:39:30 -08004187raid5_show_stripe_cache_size(mddev_t *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08004188{
NeilBrown007583c2005-11-08 21:39:30 -08004189 raid5_conf_t *conf = mddev_to_conf(mddev);
NeilBrown96de1e62005-11-08 21:39:39 -08004190 if (conf)
4191 return sprintf(page, "%d\n", conf->max_nr_stripes);
4192 else
4193 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08004194}
4195
4196static ssize_t
NeilBrown007583c2005-11-08 21:39:30 -08004197raid5_store_stripe_cache_size(mddev_t *mddev, const char *page, size_t len)
NeilBrown3f294f42005-11-08 21:39:25 -08004198{
NeilBrown007583c2005-11-08 21:39:30 -08004199 raid5_conf_t *conf = mddev_to_conf(mddev);
Dan Williams4ef197d82008-04-28 02:15:54 -07004200 unsigned long new;
Dan Williamsb5470dc2008-06-27 21:44:04 -07004201 int err;
4202
NeilBrown3f294f42005-11-08 21:39:25 -08004203 if (len >= PAGE_SIZE)
4204 return -EINVAL;
NeilBrown96de1e62005-11-08 21:39:39 -08004205 if (!conf)
4206 return -ENODEV;
NeilBrown3f294f42005-11-08 21:39:25 -08004207
Dan Williams4ef197d82008-04-28 02:15:54 -07004208 if (strict_strtoul(page, 10, &new))
NeilBrown3f294f42005-11-08 21:39:25 -08004209 return -EINVAL;
4210 if (new <= 16 || new > 32768)
4211 return -EINVAL;
4212 while (new < conf->max_nr_stripes) {
4213 if (drop_one_stripe(conf))
4214 conf->max_nr_stripes--;
4215 else
4216 break;
4217 }
Dan Williamsb5470dc2008-06-27 21:44:04 -07004218 err = md_allow_write(mddev);
4219 if (err)
4220 return err;
NeilBrown3f294f42005-11-08 21:39:25 -08004221 while (new > conf->max_nr_stripes) {
4222 if (grow_one_stripe(conf))
4223 conf->max_nr_stripes++;
4224 else break;
4225 }
4226 return len;
4227}
NeilBrown007583c2005-11-08 21:39:30 -08004228
NeilBrown96de1e62005-11-08 21:39:39 -08004229static struct md_sysfs_entry
4230raid5_stripecache_size = __ATTR(stripe_cache_size, S_IRUGO | S_IWUSR,
4231 raid5_show_stripe_cache_size,
4232 raid5_store_stripe_cache_size);
NeilBrown3f294f42005-11-08 21:39:25 -08004233
4234static ssize_t
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004235raid5_show_preread_threshold(mddev_t *mddev, char *page)
4236{
4237 raid5_conf_t *conf = mddev_to_conf(mddev);
4238 if (conf)
4239 return sprintf(page, "%d\n", conf->bypass_threshold);
4240 else
4241 return 0;
4242}
4243
4244static ssize_t
4245raid5_store_preread_threshold(mddev_t *mddev, const char *page, size_t len)
4246{
4247 raid5_conf_t *conf = mddev_to_conf(mddev);
Dan Williams4ef197d82008-04-28 02:15:54 -07004248 unsigned long new;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004249 if (len >= PAGE_SIZE)
4250 return -EINVAL;
4251 if (!conf)
4252 return -ENODEV;
4253
Dan Williams4ef197d82008-04-28 02:15:54 -07004254 if (strict_strtoul(page, 10, &new))
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004255 return -EINVAL;
Dan Williams4ef197d82008-04-28 02:15:54 -07004256 if (new > conf->max_nr_stripes)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004257 return -EINVAL;
4258 conf->bypass_threshold = new;
4259 return len;
4260}
4261
4262static struct md_sysfs_entry
4263raid5_preread_bypass_threshold = __ATTR(preread_bypass_threshold,
4264 S_IRUGO | S_IWUSR,
4265 raid5_show_preread_threshold,
4266 raid5_store_preread_threshold);
4267
4268static ssize_t
NeilBrown96de1e62005-11-08 21:39:39 -08004269stripe_cache_active_show(mddev_t *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08004270{
NeilBrown007583c2005-11-08 21:39:30 -08004271 raid5_conf_t *conf = mddev_to_conf(mddev);
NeilBrown96de1e62005-11-08 21:39:39 -08004272 if (conf)
4273 return sprintf(page, "%d\n", atomic_read(&conf->active_stripes));
4274 else
4275 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08004276}
4277
NeilBrown96de1e62005-11-08 21:39:39 -08004278static struct md_sysfs_entry
4279raid5_stripecache_active = __ATTR_RO(stripe_cache_active);
NeilBrown3f294f42005-11-08 21:39:25 -08004280
NeilBrown007583c2005-11-08 21:39:30 -08004281static struct attribute *raid5_attrs[] = {
NeilBrown3f294f42005-11-08 21:39:25 -08004282 &raid5_stripecache_size.attr,
4283 &raid5_stripecache_active.attr,
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004284 &raid5_preread_bypass_threshold.attr,
NeilBrown3f294f42005-11-08 21:39:25 -08004285 NULL,
4286};
NeilBrown007583c2005-11-08 21:39:30 -08004287static struct attribute_group raid5_attrs_group = {
4288 .name = NULL,
4289 .attrs = raid5_attrs,
NeilBrown3f294f42005-11-08 21:39:25 -08004290};
4291
Dan Williams80c3a6c2009-03-17 18:10:40 -07004292static sector_t
4293raid5_size(mddev_t *mddev, sector_t sectors, int raid_disks)
4294{
4295 raid5_conf_t *conf = mddev_to_conf(mddev);
4296
4297 if (!sectors)
4298 sectors = mddev->dev_sectors;
NeilBrown7ec05472009-03-31 15:10:36 +11004299 if (!raid_disks) {
4300 /* size is defined by the smallest of previous and new size */
4301 if (conf->raid_disks < conf->previous_raid_disks)
4302 raid_disks = conf->raid_disks;
4303 else
4304 raid_disks = conf->previous_raid_disks;
4305 }
Dan Williams80c3a6c2009-03-17 18:10:40 -07004306
4307 sectors &= ~((sector_t)mddev->chunk_size/512 - 1);
NeilBrown784052e2009-03-31 15:19:07 +11004308 sectors &= ~((sector_t)mddev->new_chunk/512 - 1);
Dan Williams80c3a6c2009-03-17 18:10:40 -07004309 return sectors * (raid_disks - conf->max_degraded);
4310}
4311
Dan Williamsa11034b2009-07-14 11:48:16 -07004312static void free_conf(raid5_conf_t *conf)
4313{
4314 shrink_stripes(conf);
4315 safe_put_page(conf->spare_page);
4316 kfree(conf->disks);
4317 kfree(conf->stripe_hashtbl);
4318 kfree(conf);
4319}
4320
NeilBrown91adb562009-03-31 14:39:39 +11004321static raid5_conf_t *setup_conf(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322{
4323 raid5_conf_t *conf;
4324 int raid_disk, memory;
4325 mdk_rdev_t *rdev;
4326 struct disk_info *disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327
NeilBrown91adb562009-03-31 14:39:39 +11004328 if (mddev->new_level != 5
4329 && mddev->new_level != 4
4330 && mddev->new_level != 6) {
NeilBrown16a53ec2006-06-26 00:27:38 -07004331 printk(KERN_ERR "raid5: %s: raid level not set to 4/5/6 (%d)\n",
NeilBrown91adb562009-03-31 14:39:39 +11004332 mdname(mddev), mddev->new_level);
4333 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334 }
NeilBrown91adb562009-03-31 14:39:39 +11004335 if ((mddev->new_level == 5
4336 && !algorithm_valid_raid5(mddev->new_layout)) ||
4337 (mddev->new_level == 6
4338 && !algorithm_valid_raid6(mddev->new_layout))) {
NeilBrown99c0fb52009-03-31 14:39:38 +11004339 printk(KERN_ERR "raid5: %s: layout %d not supported\n",
NeilBrown91adb562009-03-31 14:39:39 +11004340 mdname(mddev), mddev->new_layout);
4341 return ERR_PTR(-EIO);
4342 }
4343 if (mddev->new_level == 6 && mddev->raid_disks < 4) {
4344 printk(KERN_ERR "raid6: not enough configured devices for %s (%d, minimum 4)\n",
4345 mdname(mddev), mddev->raid_disks);
4346 return ERR_PTR(-EINVAL);
NeilBrown99c0fb52009-03-31 14:39:38 +11004347 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348
NeilBrown91adb562009-03-31 14:39:39 +11004349 if (!mddev->new_chunk || mddev->new_chunk % PAGE_SIZE) {
4350 printk(KERN_ERR "raid5: invalid chunk size %d for %s\n",
4351 mddev->new_chunk, mdname(mddev));
4352 return ERR_PTR(-EINVAL);
NeilBrown4bbf3772008-10-13 11:55:12 +11004353 }
4354
NeilBrown91adb562009-03-31 14:39:39 +11004355 conf = kzalloc(sizeof(raid5_conf_t), GFP_KERNEL);
4356 if (conf == NULL)
4357 goto abort;
4358
4359 conf->raid_disks = mddev->raid_disks;
4360 if (mddev->reshape_position == MaxSector)
4361 conf->previous_raid_disks = mddev->raid_disks;
4362 else
4363 conf->previous_raid_disks = mddev->raid_disks - mddev->delta_disks;
4364
4365 conf->disks = kzalloc(conf->raid_disks * sizeof(struct disk_info),
4366 GFP_KERNEL);
4367 if (!conf->disks)
4368 goto abort;
4369
4370 conf->mddev = mddev;
4371
4372 if ((conf->stripe_hashtbl = kzalloc(PAGE_SIZE, GFP_KERNEL)) == NULL)
4373 goto abort;
4374
4375 if (mddev->new_level == 6) {
4376 conf->spare_page = alloc_page(GFP_KERNEL);
4377 if (!conf->spare_page)
4378 goto abort;
4379 }
4380 spin_lock_init(&conf->device_lock);
4381 init_waitqueue_head(&conf->wait_for_stripe);
4382 init_waitqueue_head(&conf->wait_for_overlap);
4383 INIT_LIST_HEAD(&conf->handle_list);
4384 INIT_LIST_HEAD(&conf->hold_list);
4385 INIT_LIST_HEAD(&conf->delayed_list);
4386 INIT_LIST_HEAD(&conf->bitmap_list);
4387 INIT_LIST_HEAD(&conf->inactive_list);
4388 atomic_set(&conf->active_stripes, 0);
4389 atomic_set(&conf->preread_active_stripes, 0);
4390 atomic_set(&conf->active_aligned_reads, 0);
4391 conf->bypass_threshold = BYPASS_THRESHOLD;
4392
4393 pr_debug("raid5: run(%s) called.\n", mdname(mddev));
4394
4395 list_for_each_entry(rdev, &mddev->disks, same_set) {
4396 raid_disk = rdev->raid_disk;
4397 if (raid_disk >= conf->raid_disks
4398 || raid_disk < 0)
4399 continue;
4400 disk = conf->disks + raid_disk;
4401
4402 disk->rdev = rdev;
4403
4404 if (test_bit(In_sync, &rdev->flags)) {
4405 char b[BDEVNAME_SIZE];
4406 printk(KERN_INFO "raid5: device %s operational as raid"
4407 " disk %d\n", bdevname(rdev->bdev,b),
4408 raid_disk);
4409 } else
4410 /* Cannot rely on bitmap to complete recovery */
4411 conf->fullsync = 1;
4412 }
4413
4414 conf->chunk_size = mddev->new_chunk;
4415 conf->level = mddev->new_level;
4416 if (conf->level == 6)
4417 conf->max_degraded = 2;
4418 else
4419 conf->max_degraded = 1;
4420 conf->algorithm = mddev->new_layout;
4421 conf->max_nr_stripes = NR_STRIPES;
NeilBrownfef9c612009-03-31 15:16:46 +11004422 conf->reshape_progress = mddev->reshape_position;
NeilBrowne183eae2009-03-31 15:20:22 +11004423 if (conf->reshape_progress != MaxSector) {
NeilBrown784052e2009-03-31 15:19:07 +11004424 conf->prev_chunk = mddev->chunk_size;
NeilBrowne183eae2009-03-31 15:20:22 +11004425 conf->prev_algo = mddev->layout;
4426 }
NeilBrown91adb562009-03-31 14:39:39 +11004427
4428 memory = conf->max_nr_stripes * (sizeof(struct stripe_head) +
4429 conf->raid_disks * ((sizeof(struct bio) + PAGE_SIZE))) / 1024;
4430 if (grow_stripes(conf, conf->max_nr_stripes)) {
4431 printk(KERN_ERR
4432 "raid5: couldn't allocate %dkB for buffers\n", memory);
4433 goto abort;
4434 } else
4435 printk(KERN_INFO "raid5: allocated %dkB for %s\n",
4436 memory, mdname(mddev));
4437
4438 conf->thread = md_register_thread(raid5d, mddev, "%s_raid5");
4439 if (!conf->thread) {
4440 printk(KERN_ERR
4441 "raid5: couldn't allocate thread for %s\n",
4442 mdname(mddev));
4443 goto abort;
4444 }
4445
4446 return conf;
4447
4448 abort:
4449 if (conf) {
Dan Williamsa11034b2009-07-14 11:48:16 -07004450 free_conf(conf);
NeilBrown91adb562009-03-31 14:39:39 +11004451 return ERR_PTR(-EIO);
4452 } else
4453 return ERR_PTR(-ENOMEM);
4454}
4455
4456static int run(mddev_t *mddev)
4457{
4458 raid5_conf_t *conf;
4459 int working_disks = 0;
4460 mdk_rdev_t *rdev;
4461
NeilBrownf6705572006-03-27 01:18:11 -08004462 if (mddev->reshape_position != MaxSector) {
4463 /* Check that we can continue the reshape.
4464 * Currently only disks can change, it must
4465 * increase, and we must be past the point where
4466 * a stripe over-writes itself
4467 */
4468 sector_t here_new, here_old;
4469 int old_disks;
Andre Noll18b00332009-03-31 15:00:56 +11004470 int max_degraded = (mddev->level == 6 ? 2 : 1);
NeilBrownf6705572006-03-27 01:18:11 -08004471
NeilBrown88ce4932009-03-31 15:24:23 +11004472 if (mddev->new_level != mddev->level) {
NeilBrownf4168852007-02-28 20:11:53 -08004473 printk(KERN_ERR "raid5: %s: unsupported reshape "
4474 "required - aborting.\n",
NeilBrownf6705572006-03-27 01:18:11 -08004475 mdname(mddev));
4476 return -EINVAL;
4477 }
NeilBrownf6705572006-03-27 01:18:11 -08004478 old_disks = mddev->raid_disks - mddev->delta_disks;
4479 /* reshape_position must be on a new-stripe boundary, and one
NeilBrownf4168852007-02-28 20:11:53 -08004480 * further up in new geometry must map after here in old
4481 * geometry.
NeilBrownf6705572006-03-27 01:18:11 -08004482 */
4483 here_new = mddev->reshape_position;
NeilBrown784052e2009-03-31 15:19:07 +11004484 if (sector_div(here_new, (mddev->new_chunk>>9)*
NeilBrownf4168852007-02-28 20:11:53 -08004485 (mddev->raid_disks - max_degraded))) {
4486 printk(KERN_ERR "raid5: reshape_position not "
4487 "on a stripe boundary\n");
NeilBrownf6705572006-03-27 01:18:11 -08004488 return -EINVAL;
4489 }
4490 /* here_new is the stripe we will write to */
4491 here_old = mddev->reshape_position;
NeilBrownf4168852007-02-28 20:11:53 -08004492 sector_div(here_old, (mddev->chunk_size>>9)*
4493 (old_disks-max_degraded));
4494 /* here_old is the first stripe that we might need to read
4495 * from */
NeilBrownf6705572006-03-27 01:18:11 -08004496 if (here_new >= here_old) {
4497 /* Reading from the same stripe as writing to - bad */
NeilBrownf4168852007-02-28 20:11:53 -08004498 printk(KERN_ERR "raid5: reshape_position too early for "
4499 "auto-recovery - aborting.\n");
NeilBrownf6705572006-03-27 01:18:11 -08004500 return -EINVAL;
4501 }
4502 printk(KERN_INFO "raid5: reshape will continue\n");
4503 /* OK, we should be able to continue; */
NeilBrownf6705572006-03-27 01:18:11 -08004504 } else {
NeilBrown91adb562009-03-31 14:39:39 +11004505 BUG_ON(mddev->level != mddev->new_level);
4506 BUG_ON(mddev->layout != mddev->new_layout);
4507 BUG_ON(mddev->chunk_size != mddev->new_chunk);
4508 BUG_ON(mddev->delta_disks != 0);
NeilBrownf6705572006-03-27 01:18:11 -08004509 }
4510
NeilBrown245f46c2009-03-31 14:39:39 +11004511 if (mddev->private == NULL)
4512 conf = setup_conf(mddev);
4513 else
4514 conf = mddev->private;
4515
NeilBrown91adb562009-03-31 14:39:39 +11004516 if (IS_ERR(conf))
4517 return PTR_ERR(conf);
NeilBrown9ffae0c2006-01-06 00:20:32 -08004518
NeilBrown91adb562009-03-31 14:39:39 +11004519 mddev->thread = conf->thread;
4520 conf->thread = NULL;
4521 mddev->private = conf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523 /*
NeilBrown16a53ec2006-06-26 00:27:38 -07004524 * 0 for a fully functional array, 1 or 2 for a degraded array.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525 */
NeilBrown91adb562009-03-31 14:39:39 +11004526 list_for_each_entry(rdev, &mddev->disks, same_set)
4527 if (rdev->raid_disk >= 0 &&
4528 test_bit(In_sync, &rdev->flags))
4529 working_disks++;
4530
NeilBrown02c2de82006-10-03 01:15:47 -07004531 mddev->degraded = conf->raid_disks - working_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004532
NeilBrown16a53ec2006-06-26 00:27:38 -07004533 if (mddev->degraded > conf->max_degraded) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534 printk(KERN_ERR "raid5: not enough operational devices for %s"
4535 " (%d/%d failed)\n",
NeilBrown02c2de82006-10-03 01:15:47 -07004536 mdname(mddev), mddev->degraded, conf->raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537 goto abort;
4538 }
4539
NeilBrown91adb562009-03-31 14:39:39 +11004540 /* device size must be a multiple of chunk size */
4541 mddev->dev_sectors &= ~(mddev->chunk_size / 512 - 1);
4542 mddev->resync_max_sectors = mddev->dev_sectors;
4543
NeilBrown16a53ec2006-06-26 00:27:38 -07004544 if (mddev->degraded > 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545 mddev->recovery_cp != MaxSector) {
NeilBrown6ff8d8e2006-01-06 00:20:15 -08004546 if (mddev->ok_start_degraded)
4547 printk(KERN_WARNING
4548 "raid5: starting dirty degraded array: %s"
4549 "- data corruption possible.\n",
4550 mdname(mddev));
4551 else {
4552 printk(KERN_ERR
4553 "raid5: cannot start dirty degraded array for %s\n",
4554 mdname(mddev));
4555 goto abort;
4556 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557 }
4558
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559 if (mddev->degraded == 0)
4560 printk("raid5: raid level %d set %s active with %d out of %d"
NeilBrowne183eae2009-03-31 15:20:22 +11004561 " devices, algorithm %d\n", conf->level, mdname(mddev),
4562 mddev->raid_disks-mddev->degraded, mddev->raid_disks,
4563 mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564 else
4565 printk(KERN_ALERT "raid5: raid level %d set %s active with %d"
4566 " out of %d devices, algorithm %d\n", conf->level,
4567 mdname(mddev), mddev->raid_disks - mddev->degraded,
NeilBrowne183eae2009-03-31 15:20:22 +11004568 mddev->raid_disks, mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569
4570 print_raid5_conf(conf);
4571
NeilBrownfef9c612009-03-31 15:16:46 +11004572 if (conf->reshape_progress != MaxSector) {
NeilBrownf6705572006-03-27 01:18:11 -08004573 printk("...ok start reshape thread\n");
NeilBrownfef9c612009-03-31 15:16:46 +11004574 conf->reshape_safe = conf->reshape_progress;
NeilBrownf6705572006-03-27 01:18:11 -08004575 atomic_set(&conf->reshape_stripes, 0);
4576 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
4577 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
4578 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
4579 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
4580 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
4581 "%s_reshape");
NeilBrownf6705572006-03-27 01:18:11 -08004582 }
4583
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584 /* read-ahead size must cover two whole stripes, which is
NeilBrown16a53ec2006-06-26 00:27:38 -07004585 * 2 * (datadisks) * chunksize where 'n' is the number of raid devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07004586 */
4587 {
NeilBrown16a53ec2006-06-26 00:27:38 -07004588 int data_disks = conf->previous_raid_disks - conf->max_degraded;
4589 int stripe = data_disks *
NeilBrown8932c2e2006-06-26 00:27:36 -07004590 (mddev->chunk_size / PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004591 if (mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
4592 mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
4593 }
4594
4595 /* Ok, everything is just fine now */
NeilBrown5e55e2f2007-03-26 21:32:14 -08004596 if (sysfs_create_group(&mddev->kobj, &raid5_attrs_group))
4597 printk(KERN_WARNING
4598 "raid5: failed to create sysfs attributes for %s\n",
4599 mdname(mddev));
NeilBrown7a5febe2005-05-16 21:53:16 -07004600
NeilBrown91adb562009-03-31 14:39:39 +11004601 mddev->queue->queue_lock = &conf->device_lock;
4602
NeilBrown7a5febe2005-05-16 21:53:16 -07004603 mddev->queue->unplug_fn = raid5_unplug_device;
NeilBrownf022b2f2006-10-03 01:15:56 -07004604 mddev->queue->backing_dev_info.congested_data = mddev;
NeilBrown041ae522007-03-26 21:32:14 -08004605 mddev->queue->backing_dev_info.congested_fn = raid5_congested;
NeilBrownf022b2f2006-10-03 01:15:56 -07004606
Dan Williams1f403622009-03-31 14:59:03 +11004607 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
NeilBrown7a5febe2005-05-16 21:53:16 -07004608
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08004609 blk_queue_merge_bvec(mddev->queue, raid5_mergeable_bvec);
4610
Linus Torvalds1da177e2005-04-16 15:20:36 -07004611 return 0;
4612abort:
NeilBrowne0cf8f02009-03-31 14:39:39 +11004613 md_unregister_thread(mddev->thread);
NeilBrown91adb562009-03-31 14:39:39 +11004614 mddev->thread = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004615 if (conf) {
4616 print_raid5_conf(conf);
Dan Williamsa11034b2009-07-14 11:48:16 -07004617 free_conf(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618 }
4619 mddev->private = NULL;
4620 printk(KERN_ALERT "raid5: failed to run raid set %s\n", mdname(mddev));
4621 return -EIO;
4622}
4623
4624
4625
NeilBrown3f294f42005-11-08 21:39:25 -08004626static int stop(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627{
4628 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
4629
4630 md_unregister_thread(mddev->thread);
4631 mddev->thread = NULL;
NeilBrown041ae522007-03-26 21:32:14 -08004632 mddev->queue->backing_dev_info.congested_fn = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633 blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/
NeilBrown007583c2005-11-08 21:39:30 -08004634 sysfs_remove_group(&mddev->kobj, &raid5_attrs_group);
Dan Williamsa11034b2009-07-14 11:48:16 -07004635 free_conf(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636 mddev->private = NULL;
4637 return 0;
4638}
4639
Dan Williams45b42332007-07-09 11:56:43 -07004640#ifdef DEBUG
NeilBrownd710e132008-10-13 11:55:12 +11004641static void print_sh(struct seq_file *seq, struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004642{
4643 int i;
4644
NeilBrown16a53ec2006-06-26 00:27:38 -07004645 seq_printf(seq, "sh %llu, pd_idx %d, state %ld.\n",
4646 (unsigned long long)sh->sector, sh->pd_idx, sh->state);
4647 seq_printf(seq, "sh %llu, count %d.\n",
4648 (unsigned long long)sh->sector, atomic_read(&sh->count));
4649 seq_printf(seq, "sh %llu, ", (unsigned long long)sh->sector);
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004650 for (i = 0; i < sh->disks; i++) {
NeilBrown16a53ec2006-06-26 00:27:38 -07004651 seq_printf(seq, "(cache%d: %p %ld) ",
4652 i, sh->dev[i].page, sh->dev[i].flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004654 seq_printf(seq, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655}
4656
NeilBrownd710e132008-10-13 11:55:12 +11004657static void printall(struct seq_file *seq, raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004658{
4659 struct stripe_head *sh;
NeilBrownfccddba2006-01-06 00:20:33 -08004660 struct hlist_node *hn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004661 int i;
4662
4663 spin_lock_irq(&conf->device_lock);
4664 for (i = 0; i < NR_HASH; i++) {
NeilBrownfccddba2006-01-06 00:20:33 -08004665 hlist_for_each_entry(sh, hn, &conf->stripe_hashtbl[i], hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004666 if (sh->raid_conf != conf)
4667 continue;
NeilBrown16a53ec2006-06-26 00:27:38 -07004668 print_sh(seq, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669 }
4670 }
4671 spin_unlock_irq(&conf->device_lock);
4672}
4673#endif
4674
NeilBrownd710e132008-10-13 11:55:12 +11004675static void status(struct seq_file *seq, mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004676{
4677 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
4678 int i;
4679
4680 seq_printf (seq, " level %d, %dk chunk, algorithm %d", mddev->level, mddev->chunk_size >> 10, mddev->layout);
NeilBrown02c2de82006-10-03 01:15:47 -07004681 seq_printf (seq, " [%d/%d] [", conf->raid_disks, conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004682 for (i = 0; i < conf->raid_disks; i++)
4683 seq_printf (seq, "%s",
4684 conf->disks[i].rdev &&
NeilBrownb2d444d2005-11-08 21:39:31 -08004685 test_bit(In_sync, &conf->disks[i].rdev->flags) ? "U" : "_");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004686 seq_printf (seq, "]");
Dan Williams45b42332007-07-09 11:56:43 -07004687#ifdef DEBUG
NeilBrown16a53ec2006-06-26 00:27:38 -07004688 seq_printf (seq, "\n");
4689 printall(seq, conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690#endif
4691}
4692
4693static void print_raid5_conf (raid5_conf_t *conf)
4694{
4695 int i;
4696 struct disk_info *tmp;
4697
4698 printk("RAID5 conf printout:\n");
4699 if (!conf) {
4700 printk("(conf==NULL)\n");
4701 return;
4702 }
NeilBrown02c2de82006-10-03 01:15:47 -07004703 printk(" --- rd:%d wd:%d\n", conf->raid_disks,
4704 conf->raid_disks - conf->mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705
4706 for (i = 0; i < conf->raid_disks; i++) {
4707 char b[BDEVNAME_SIZE];
4708 tmp = conf->disks + i;
4709 if (tmp->rdev)
4710 printk(" disk %d, o:%d, dev:%s\n",
NeilBrownb2d444d2005-11-08 21:39:31 -08004711 i, !test_bit(Faulty, &tmp->rdev->flags),
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712 bdevname(tmp->rdev->bdev,b));
4713 }
4714}
4715
4716static int raid5_spare_active(mddev_t *mddev)
4717{
4718 int i;
4719 raid5_conf_t *conf = mddev->private;
4720 struct disk_info *tmp;
4721
4722 for (i = 0; i < conf->raid_disks; i++) {
4723 tmp = conf->disks + i;
4724 if (tmp->rdev
NeilBrownb2d444d2005-11-08 21:39:31 -08004725 && !test_bit(Faulty, &tmp->rdev->flags)
NeilBrownc04be0a2006-10-03 01:15:53 -07004726 && !test_and_set_bit(In_sync, &tmp->rdev->flags)) {
4727 unsigned long flags;
4728 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004729 mddev->degraded--;
NeilBrownc04be0a2006-10-03 01:15:53 -07004730 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731 }
4732 }
4733 print_raid5_conf(conf);
4734 return 0;
4735}
4736
4737static int raid5_remove_disk(mddev_t *mddev, int number)
4738{
4739 raid5_conf_t *conf = mddev->private;
4740 int err = 0;
4741 mdk_rdev_t *rdev;
4742 struct disk_info *p = conf->disks + number;
4743
4744 print_raid5_conf(conf);
4745 rdev = p->rdev;
4746 if (rdev) {
NeilBrownec32a2b2009-03-31 15:17:38 +11004747 if (number >= conf->raid_disks &&
4748 conf->reshape_progress == MaxSector)
4749 clear_bit(In_sync, &rdev->flags);
4750
NeilBrownb2d444d2005-11-08 21:39:31 -08004751 if (test_bit(In_sync, &rdev->flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07004752 atomic_read(&rdev->nr_pending)) {
4753 err = -EBUSY;
4754 goto abort;
4755 }
NeilBrowndfc70642008-05-23 13:04:39 -07004756 /* Only remove non-faulty devices if recovery
4757 * isn't possible.
4758 */
4759 if (!test_bit(Faulty, &rdev->flags) &&
NeilBrownec32a2b2009-03-31 15:17:38 +11004760 mddev->degraded <= conf->max_degraded &&
4761 number < conf->raid_disks) {
NeilBrowndfc70642008-05-23 13:04:39 -07004762 err = -EBUSY;
4763 goto abort;
4764 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004765 p->rdev = NULL;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07004766 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004767 if (atomic_read(&rdev->nr_pending)) {
4768 /* lost the race, try later */
4769 err = -EBUSY;
4770 p->rdev = rdev;
4771 }
4772 }
4773abort:
4774
4775 print_raid5_conf(conf);
4776 return err;
4777}
4778
4779static int raid5_add_disk(mddev_t *mddev, mdk_rdev_t *rdev)
4780{
4781 raid5_conf_t *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10004782 int err = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783 int disk;
4784 struct disk_info *p;
Neil Brown6c2fce22008-06-28 08:31:31 +10004785 int first = 0;
4786 int last = conf->raid_disks - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787
NeilBrown16a53ec2006-06-26 00:27:38 -07004788 if (mddev->degraded > conf->max_degraded)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004789 /* no point adding a device */
Neil Brown199050e2008-06-28 08:31:33 +10004790 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004791
Neil Brown6c2fce22008-06-28 08:31:31 +10004792 if (rdev->raid_disk >= 0)
4793 first = last = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794
4795 /*
NeilBrown16a53ec2006-06-26 00:27:38 -07004796 * find the disk ... but prefer rdev->saved_raid_disk
4797 * if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798 */
NeilBrown16a53ec2006-06-26 00:27:38 -07004799 if (rdev->saved_raid_disk >= 0 &&
Neil Brown6c2fce22008-06-28 08:31:31 +10004800 rdev->saved_raid_disk >= first &&
NeilBrown16a53ec2006-06-26 00:27:38 -07004801 conf->disks[rdev->saved_raid_disk].rdev == NULL)
4802 disk = rdev->saved_raid_disk;
4803 else
Neil Brown6c2fce22008-06-28 08:31:31 +10004804 disk = first;
4805 for ( ; disk <= last ; disk++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004806 if ((p=conf->disks + disk)->rdev == NULL) {
NeilBrownb2d444d2005-11-08 21:39:31 -08004807 clear_bit(In_sync, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808 rdev->raid_disk = disk;
Neil Brown199050e2008-06-28 08:31:33 +10004809 err = 0;
NeilBrown72626682005-09-09 16:23:54 -07004810 if (rdev->saved_raid_disk != disk)
4811 conf->fullsync = 1;
Suzanne Woodd6065f72005-11-08 21:39:27 -08004812 rcu_assign_pointer(p->rdev, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004813 break;
4814 }
4815 print_raid5_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10004816 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004817}
4818
4819static int raid5_resize(mddev_t *mddev, sector_t sectors)
4820{
4821 /* no resync is happening, and there is enough space
4822 * on all devices, so we can resize.
4823 * We need to make sure resync covers any new space.
4824 * If the array is shrinking we should possibly wait until
4825 * any io in the removed space completes, but it hardly seems
4826 * worth it.
4827 */
4828 sectors &= ~((sector_t)mddev->chunk_size/512 - 1);
Dan Williams1f403622009-03-31 14:59:03 +11004829 md_set_array_sectors(mddev, raid5_size(mddev, sectors,
4830 mddev->raid_disks));
Dan Williamsb522adc2009-03-31 15:00:31 +11004831 if (mddev->array_sectors >
4832 raid5_size(mddev, sectors, mddev->raid_disks))
4833 return -EINVAL;
Andre Nollf233ea52008-07-21 17:05:22 +10004834 set_capacity(mddev->gendisk, mddev->array_sectors);
Linus Torvalds44ce6292007-05-09 18:51:36 -07004835 mddev->changed = 1;
Andre Noll58c0fed2009-03-31 14:33:13 +11004836 if (sectors > mddev->dev_sectors && mddev->recovery_cp == MaxSector) {
4837 mddev->recovery_cp = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004838 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
4839 }
Andre Noll58c0fed2009-03-31 14:33:13 +11004840 mddev->dev_sectors = sectors;
NeilBrown4b5c7ae2005-07-27 11:43:28 -07004841 mddev->resync_max_sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004842 return 0;
4843}
4844
NeilBrown63c70c42006-03-27 01:18:13 -08004845static int raid5_check_reshape(mddev_t *mddev)
NeilBrown29269552006-03-27 01:18:10 -08004846{
4847 raid5_conf_t *conf = mddev_to_conf(mddev);
NeilBrown29269552006-03-27 01:18:10 -08004848
NeilBrown88ce4932009-03-31 15:24:23 +11004849 if (mddev->delta_disks == 0 &&
4850 mddev->new_layout == mddev->layout &&
4851 mddev->new_chunk == mddev->chunk_size)
4852 return -EINVAL; /* nothing to do */
NeilBrowndba034e2008-08-05 15:54:13 +10004853 if (mddev->bitmap)
4854 /* Cannot grow a bitmap yet */
4855 return -EBUSY;
NeilBrownec32a2b2009-03-31 15:17:38 +11004856 if (mddev->degraded > conf->max_degraded)
4857 return -EINVAL;
4858 if (mddev->delta_disks < 0) {
4859 /* We might be able to shrink, but the devices must
4860 * be made bigger first.
4861 * For raid6, 4 is the minimum size.
4862 * Otherwise 2 is the minimum
4863 */
4864 int min = 2;
4865 if (mddev->level == 6)
4866 min = 4;
4867 if (mddev->raid_disks + mddev->delta_disks < min)
4868 return -EINVAL;
4869 }
NeilBrown29269552006-03-27 01:18:10 -08004870
4871 /* Can only proceed if there are plenty of stripe_heads.
4872 * We need a minimum of one full stripe,, and for sensible progress
4873 * it is best to have about 4 times that.
4874 * If we require 4 times, then the default 256 4K stripe_heads will
4875 * allow for chunk sizes up to 256K, which is probably OK.
4876 * If the chunk size is greater, user-space should request more
4877 * stripe_heads first.
4878 */
NeilBrown63c70c42006-03-27 01:18:13 -08004879 if ((mddev->chunk_size / STRIPE_SIZE) * 4 > conf->max_nr_stripes ||
4880 (mddev->new_chunk / STRIPE_SIZE) * 4 > conf->max_nr_stripes) {
NeilBrown29269552006-03-27 01:18:10 -08004881 printk(KERN_WARNING "raid5: reshape: not enough stripes. Needed %lu\n",
NeilBrown784052e2009-03-31 15:19:07 +11004882 (max(mddev->chunk_size, mddev->new_chunk)
4883 / STRIPE_SIZE)*4);
NeilBrown29269552006-03-27 01:18:10 -08004884 return -ENOSPC;
4885 }
4886
NeilBrownec32a2b2009-03-31 15:17:38 +11004887 return resize_stripes(conf, conf->raid_disks + mddev->delta_disks);
NeilBrown63c70c42006-03-27 01:18:13 -08004888}
4889
4890static int raid5_start_reshape(mddev_t *mddev)
4891{
4892 raid5_conf_t *conf = mddev_to_conf(mddev);
4893 mdk_rdev_t *rdev;
NeilBrown63c70c42006-03-27 01:18:13 -08004894 int spares = 0;
4895 int added_devices = 0;
NeilBrownc04be0a2006-10-03 01:15:53 -07004896 unsigned long flags;
NeilBrown63c70c42006-03-27 01:18:13 -08004897
NeilBrownf4168852007-02-28 20:11:53 -08004898 if (test_bit(MD_RECOVERY_RUNNING, &mddev->recovery))
NeilBrown63c70c42006-03-27 01:18:13 -08004899 return -EBUSY;
4900
Cheng Renquan159ec1f2009-01-09 08:31:08 +11004901 list_for_each_entry(rdev, &mddev->disks, same_set)
NeilBrown29269552006-03-27 01:18:10 -08004902 if (rdev->raid_disk < 0 &&
4903 !test_bit(Faulty, &rdev->flags))
4904 spares++;
NeilBrown63c70c42006-03-27 01:18:13 -08004905
NeilBrownf4168852007-02-28 20:11:53 -08004906 if (spares - mddev->degraded < mddev->delta_disks - conf->max_degraded)
NeilBrown29269552006-03-27 01:18:10 -08004907 /* Not enough devices even to make a degraded array
4908 * of that size
4909 */
4910 return -EINVAL;
4911
NeilBrownec32a2b2009-03-31 15:17:38 +11004912 /* Refuse to reduce size of the array. Any reductions in
4913 * array size must be through explicit setting of array_size
4914 * attribute.
4915 */
4916 if (raid5_size(mddev, 0, conf->raid_disks + mddev->delta_disks)
4917 < mddev->array_sectors) {
4918 printk(KERN_ERR "md: %s: array size must be reduced "
4919 "before number of disks\n", mdname(mddev));
4920 return -EINVAL;
4921 }
4922
NeilBrownf6705572006-03-27 01:18:11 -08004923 atomic_set(&conf->reshape_stripes, 0);
NeilBrown29269552006-03-27 01:18:10 -08004924 spin_lock_irq(&conf->device_lock);
4925 conf->previous_raid_disks = conf->raid_disks;
NeilBrown63c70c42006-03-27 01:18:13 -08004926 conf->raid_disks += mddev->delta_disks;
NeilBrown88ce4932009-03-31 15:24:23 +11004927 conf->prev_chunk = conf->chunk_size;
4928 conf->chunk_size = mddev->new_chunk;
4929 conf->prev_algo = conf->algorithm;
4930 conf->algorithm = mddev->new_layout;
NeilBrownfef9c612009-03-31 15:16:46 +11004931 if (mddev->delta_disks < 0)
4932 conf->reshape_progress = raid5_size(mddev, 0, 0);
4933 else
4934 conf->reshape_progress = 0;
4935 conf->reshape_safe = conf->reshape_progress;
NeilBrown86b42c72009-03-31 15:19:03 +11004936 conf->generation++;
NeilBrown29269552006-03-27 01:18:10 -08004937 spin_unlock_irq(&conf->device_lock);
4938
4939 /* Add some new drives, as many as will fit.
4940 * We know there are enough to make the newly sized array work.
4941 */
Cheng Renquan159ec1f2009-01-09 08:31:08 +11004942 list_for_each_entry(rdev, &mddev->disks, same_set)
NeilBrown29269552006-03-27 01:18:10 -08004943 if (rdev->raid_disk < 0 &&
4944 !test_bit(Faulty, &rdev->flags)) {
Neil Brown199050e2008-06-28 08:31:33 +10004945 if (raid5_add_disk(mddev, rdev) == 0) {
NeilBrown29269552006-03-27 01:18:10 -08004946 char nm[20];
4947 set_bit(In_sync, &rdev->flags);
NeilBrown29269552006-03-27 01:18:10 -08004948 added_devices++;
NeilBrown5fd6c1d2006-06-26 00:27:40 -07004949 rdev->recovery_offset = 0;
NeilBrown29269552006-03-27 01:18:10 -08004950 sprintf(nm, "rd%d", rdev->raid_disk);
NeilBrown5e55e2f2007-03-26 21:32:14 -08004951 if (sysfs_create_link(&mddev->kobj,
4952 &rdev->kobj, nm))
4953 printk(KERN_WARNING
4954 "raid5: failed to create "
4955 " link %s for %s\n",
4956 nm, mdname(mddev));
NeilBrown29269552006-03-27 01:18:10 -08004957 } else
4958 break;
4959 }
4960
NeilBrownec32a2b2009-03-31 15:17:38 +11004961 if (mddev->delta_disks > 0) {
4962 spin_lock_irqsave(&conf->device_lock, flags);
4963 mddev->degraded = (conf->raid_disks - conf->previous_raid_disks)
4964 - added_devices;
4965 spin_unlock_irqrestore(&conf->device_lock, flags);
4966 }
NeilBrown63c70c42006-03-27 01:18:13 -08004967 mddev->raid_disks = conf->raid_disks;
NeilBrownf6705572006-03-27 01:18:11 -08004968 mddev->reshape_position = 0;
NeilBrown850b2b42006-10-03 01:15:46 -07004969 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrownf6705572006-03-27 01:18:11 -08004970
NeilBrown29269552006-03-27 01:18:10 -08004971 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
4972 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
4973 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
4974 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
4975 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
4976 "%s_reshape");
4977 if (!mddev->sync_thread) {
4978 mddev->recovery = 0;
4979 spin_lock_irq(&conf->device_lock);
4980 mddev->raid_disks = conf->raid_disks = conf->previous_raid_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11004981 conf->reshape_progress = MaxSector;
NeilBrown29269552006-03-27 01:18:10 -08004982 spin_unlock_irq(&conf->device_lock);
4983 return -EAGAIN;
4984 }
NeilBrownc8f517c2009-03-31 15:28:40 +11004985 conf->reshape_checkpoint = jiffies;
NeilBrown29269552006-03-27 01:18:10 -08004986 md_wakeup_thread(mddev->sync_thread);
4987 md_new_event(mddev);
4988 return 0;
4989}
NeilBrown29269552006-03-27 01:18:10 -08004990
NeilBrownec32a2b2009-03-31 15:17:38 +11004991/* This is called from the reshape thread and should make any
4992 * changes needed in 'conf'
4993 */
NeilBrown29269552006-03-27 01:18:10 -08004994static void end_reshape(raid5_conf_t *conf)
4995{
NeilBrown29269552006-03-27 01:18:10 -08004996
NeilBrownf6705572006-03-27 01:18:11 -08004997 if (!test_bit(MD_RECOVERY_INTR, &conf->mddev->recovery)) {
Dan Williams80c3a6c2009-03-17 18:10:40 -07004998
NeilBrownf6705572006-03-27 01:18:11 -08004999 spin_lock_irq(&conf->device_lock);
NeilBrowncea9c222009-03-31 15:15:05 +11005000 conf->previous_raid_disks = conf->raid_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11005001 conf->reshape_progress = MaxSector;
NeilBrownf6705572006-03-27 01:18:11 -08005002 spin_unlock_irq(&conf->device_lock);
NeilBrownb0f9ec02009-03-31 15:27:18 +11005003 wake_up(&conf->wait_for_overlap);
NeilBrown16a53ec2006-06-26 00:27:38 -07005004
5005 /* read-ahead size must cover two whole stripes, which is
5006 * 2 * (datadisks) * chunksize where 'n' is the number of raid devices
5007 */
5008 {
NeilBrowncea9c222009-03-31 15:15:05 +11005009 int data_disks = conf->raid_disks - conf->max_degraded;
5010 int stripe = data_disks * (conf->chunk_size
5011 / PAGE_SIZE);
NeilBrown16a53ec2006-06-26 00:27:38 -07005012 if (conf->mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
5013 conf->mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
5014 }
NeilBrown29269552006-03-27 01:18:10 -08005015 }
NeilBrown29269552006-03-27 01:18:10 -08005016}
5017
NeilBrownec32a2b2009-03-31 15:17:38 +11005018/* This is called from the raid5d thread with mddev_lock held.
5019 * It makes config changes to the device.
5020 */
NeilBrowncea9c222009-03-31 15:15:05 +11005021static void raid5_finish_reshape(mddev_t *mddev)
5022{
5023 struct block_device *bdev;
NeilBrown88ce4932009-03-31 15:24:23 +11005024 raid5_conf_t *conf = mddev_to_conf(mddev);
NeilBrowncea9c222009-03-31 15:15:05 +11005025
5026 if (!test_bit(MD_RECOVERY_INTR, &mddev->recovery)) {
5027
NeilBrownec32a2b2009-03-31 15:17:38 +11005028 if (mddev->delta_disks > 0) {
5029 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
5030 set_capacity(mddev->gendisk, mddev->array_sectors);
5031 mddev->changed = 1;
NeilBrowncea9c222009-03-31 15:15:05 +11005032
NeilBrownec32a2b2009-03-31 15:17:38 +11005033 bdev = bdget_disk(mddev->gendisk, 0);
5034 if (bdev) {
5035 mutex_lock(&bdev->bd_inode->i_mutex);
5036 i_size_write(bdev->bd_inode,
5037 (loff_t)mddev->array_sectors << 9);
5038 mutex_unlock(&bdev->bd_inode->i_mutex);
5039 bdput(bdev);
5040 }
5041 } else {
5042 int d;
NeilBrownec32a2b2009-03-31 15:17:38 +11005043 mddev->degraded = conf->raid_disks;
5044 for (d = 0; d < conf->raid_disks ; d++)
5045 if (conf->disks[d].rdev &&
5046 test_bit(In_sync,
5047 &conf->disks[d].rdev->flags))
5048 mddev->degraded--;
5049 for (d = conf->raid_disks ;
5050 d < conf->raid_disks - mddev->delta_disks;
5051 d++)
5052 raid5_remove_disk(mddev, d);
NeilBrowncea9c222009-03-31 15:15:05 +11005053 }
NeilBrown88ce4932009-03-31 15:24:23 +11005054 mddev->layout = conf->algorithm;
5055 mddev->chunk_size = conf->chunk_size;
NeilBrownec32a2b2009-03-31 15:17:38 +11005056 mddev->reshape_position = MaxSector;
5057 mddev->delta_disks = 0;
NeilBrowncea9c222009-03-31 15:15:05 +11005058 }
5059}
5060
NeilBrown72626682005-09-09 16:23:54 -07005061static void raid5_quiesce(mddev_t *mddev, int state)
5062{
5063 raid5_conf_t *conf = mddev_to_conf(mddev);
5064
5065 switch(state) {
NeilBrowne464eaf2006-03-27 01:18:14 -08005066 case 2: /* resume for a suspend */
5067 wake_up(&conf->wait_for_overlap);
5068 break;
5069
NeilBrown72626682005-09-09 16:23:54 -07005070 case 1: /* stop all writes */
5071 spin_lock_irq(&conf->device_lock);
5072 conf->quiesce = 1;
5073 wait_event_lock_irq(conf->wait_for_stripe,
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005074 atomic_read(&conf->active_stripes) == 0 &&
5075 atomic_read(&conf->active_aligned_reads) == 0,
NeilBrown72626682005-09-09 16:23:54 -07005076 conf->device_lock, /* nothing */);
5077 spin_unlock_irq(&conf->device_lock);
5078 break;
5079
5080 case 0: /* re-enable writes */
5081 spin_lock_irq(&conf->device_lock);
5082 conf->quiesce = 0;
5083 wake_up(&conf->wait_for_stripe);
NeilBrowne464eaf2006-03-27 01:18:14 -08005084 wake_up(&conf->wait_for_overlap);
NeilBrown72626682005-09-09 16:23:54 -07005085 spin_unlock_irq(&conf->device_lock);
5086 break;
5087 }
NeilBrown72626682005-09-09 16:23:54 -07005088}
NeilBrownb15c2e52006-01-06 00:20:16 -08005089
NeilBrownd562b0c2009-03-31 14:39:39 +11005090
5091static void *raid5_takeover_raid1(mddev_t *mddev)
5092{
5093 int chunksect;
5094
5095 if (mddev->raid_disks != 2 ||
5096 mddev->degraded > 1)
5097 return ERR_PTR(-EINVAL);
5098
5099 /* Should check if there are write-behind devices? */
5100
5101 chunksect = 64*2; /* 64K by default */
5102
5103 /* The array must be an exact multiple of chunksize */
5104 while (chunksect && (mddev->array_sectors & (chunksect-1)))
5105 chunksect >>= 1;
5106
5107 if ((chunksect<<9) < STRIPE_SIZE)
5108 /* array size does not allow a suitable chunk size */
5109 return ERR_PTR(-EINVAL);
5110
5111 mddev->new_level = 5;
5112 mddev->new_layout = ALGORITHM_LEFT_SYMMETRIC;
5113 mddev->new_chunk = chunksect << 9;
5114
5115 return setup_conf(mddev);
5116}
5117
NeilBrownfc9739c2009-03-31 14:57:20 +11005118static void *raid5_takeover_raid6(mddev_t *mddev)
5119{
5120 int new_layout;
5121
5122 switch (mddev->layout) {
5123 case ALGORITHM_LEFT_ASYMMETRIC_6:
5124 new_layout = ALGORITHM_LEFT_ASYMMETRIC;
5125 break;
5126 case ALGORITHM_RIGHT_ASYMMETRIC_6:
5127 new_layout = ALGORITHM_RIGHT_ASYMMETRIC;
5128 break;
5129 case ALGORITHM_LEFT_SYMMETRIC_6:
5130 new_layout = ALGORITHM_LEFT_SYMMETRIC;
5131 break;
5132 case ALGORITHM_RIGHT_SYMMETRIC_6:
5133 new_layout = ALGORITHM_RIGHT_SYMMETRIC;
5134 break;
5135 case ALGORITHM_PARITY_0_6:
5136 new_layout = ALGORITHM_PARITY_0;
5137 break;
5138 case ALGORITHM_PARITY_N:
5139 new_layout = ALGORITHM_PARITY_N;
5140 break;
5141 default:
5142 return ERR_PTR(-EINVAL);
5143 }
5144 mddev->new_level = 5;
5145 mddev->new_layout = new_layout;
5146 mddev->delta_disks = -1;
5147 mddev->raid_disks -= 1;
5148 return setup_conf(mddev);
5149}
5150
NeilBrownd562b0c2009-03-31 14:39:39 +11005151
NeilBrownb3546032009-03-31 14:56:41 +11005152static int raid5_reconfig(mddev_t *mddev, int new_layout, int new_chunk)
5153{
NeilBrown88ce4932009-03-31 15:24:23 +11005154 /* For a 2-drive array, the layout and chunk size can be changed
5155 * immediately as not restriping is needed.
5156 * For larger arrays we record the new value - after validation
5157 * to be used by a reshape pass.
NeilBrownb3546032009-03-31 14:56:41 +11005158 */
5159 raid5_conf_t *conf = mddev_to_conf(mddev);
5160
5161 if (new_layout >= 0 && !algorithm_valid_raid5(new_layout))
5162 return -EINVAL;
5163 if (new_chunk > 0) {
5164 if (new_chunk & (new_chunk-1))
5165 /* not a power of 2 */
5166 return -EINVAL;
5167 if (new_chunk < PAGE_SIZE)
5168 return -EINVAL;
5169 if (mddev->array_sectors & ((new_chunk>>9)-1))
5170 /* not factor of array size */
5171 return -EINVAL;
5172 }
5173
5174 /* They look valid */
5175
NeilBrown88ce4932009-03-31 15:24:23 +11005176 if (mddev->raid_disks == 2) {
NeilBrownb3546032009-03-31 14:56:41 +11005177
NeilBrown88ce4932009-03-31 15:24:23 +11005178 if (new_layout >= 0) {
5179 conf->algorithm = new_layout;
5180 mddev->layout = mddev->new_layout = new_layout;
5181 }
5182 if (new_chunk > 0) {
5183 conf->chunk_size = new_chunk;
5184 mddev->chunk_size = mddev->new_chunk = new_chunk;
5185 }
5186 set_bit(MD_CHANGE_DEVS, &mddev->flags);
5187 md_wakeup_thread(mddev->thread);
5188 } else {
5189 if (new_layout >= 0)
5190 mddev->new_layout = new_layout;
5191 if (new_chunk > 0)
5192 mddev->new_chunk = new_chunk;
NeilBrownb3546032009-03-31 14:56:41 +11005193 }
NeilBrown88ce4932009-03-31 15:24:23 +11005194 return 0;
5195}
5196
5197static int raid6_reconfig(mddev_t *mddev, int new_layout, int new_chunk)
5198{
5199 if (new_layout >= 0 && !algorithm_valid_raid6(new_layout))
5200 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11005201 if (new_chunk > 0) {
NeilBrown88ce4932009-03-31 15:24:23 +11005202 if (new_chunk & (new_chunk-1))
5203 /* not a power of 2 */
5204 return -EINVAL;
5205 if (new_chunk < PAGE_SIZE)
5206 return -EINVAL;
5207 if (mddev->array_sectors & ((new_chunk>>9)-1))
5208 /* not factor of array size */
5209 return -EINVAL;
NeilBrownb3546032009-03-31 14:56:41 +11005210 }
NeilBrown88ce4932009-03-31 15:24:23 +11005211
5212 /* They look valid */
5213
5214 if (new_layout >= 0)
5215 mddev->new_layout = new_layout;
5216 if (new_chunk > 0)
5217 mddev->new_chunk = new_chunk;
5218
NeilBrownb3546032009-03-31 14:56:41 +11005219 return 0;
5220}
5221
NeilBrownd562b0c2009-03-31 14:39:39 +11005222static void *raid5_takeover(mddev_t *mddev)
5223{
5224 /* raid5 can take over:
5225 * raid0 - if all devices are the same - make it a raid4 layout
5226 * raid1 - if there are two drives. We need to know the chunk size
5227 * raid4 - trivial - just use a raid4 layout.
5228 * raid6 - Providing it is a *_6 layout
5229 *
5230 * For now, just do raid1
5231 */
5232
5233 if (mddev->level == 1)
5234 return raid5_takeover_raid1(mddev);
NeilBrowne9d47582009-03-31 14:57:09 +11005235 if (mddev->level == 4) {
5236 mddev->new_layout = ALGORITHM_PARITY_N;
5237 mddev->new_level = 5;
5238 return setup_conf(mddev);
5239 }
NeilBrownfc9739c2009-03-31 14:57:20 +11005240 if (mddev->level == 6)
5241 return raid5_takeover_raid6(mddev);
NeilBrownd562b0c2009-03-31 14:39:39 +11005242
5243 return ERR_PTR(-EINVAL);
5244}
5245
5246
NeilBrown245f46c2009-03-31 14:39:39 +11005247static struct mdk_personality raid5_personality;
5248
5249static void *raid6_takeover(mddev_t *mddev)
5250{
5251 /* Currently can only take over a raid5. We map the
5252 * personality to an equivalent raid6 personality
5253 * with the Q block at the end.
5254 */
5255 int new_layout;
5256
5257 if (mddev->pers != &raid5_personality)
5258 return ERR_PTR(-EINVAL);
5259 if (mddev->degraded > 1)
5260 return ERR_PTR(-EINVAL);
5261 if (mddev->raid_disks > 253)
5262 return ERR_PTR(-EINVAL);
5263 if (mddev->raid_disks < 3)
5264 return ERR_PTR(-EINVAL);
5265
5266 switch (mddev->layout) {
5267 case ALGORITHM_LEFT_ASYMMETRIC:
5268 new_layout = ALGORITHM_LEFT_ASYMMETRIC_6;
5269 break;
5270 case ALGORITHM_RIGHT_ASYMMETRIC:
5271 new_layout = ALGORITHM_RIGHT_ASYMMETRIC_6;
5272 break;
5273 case ALGORITHM_LEFT_SYMMETRIC:
5274 new_layout = ALGORITHM_LEFT_SYMMETRIC_6;
5275 break;
5276 case ALGORITHM_RIGHT_SYMMETRIC:
5277 new_layout = ALGORITHM_RIGHT_SYMMETRIC_6;
5278 break;
5279 case ALGORITHM_PARITY_0:
5280 new_layout = ALGORITHM_PARITY_0_6;
5281 break;
5282 case ALGORITHM_PARITY_N:
5283 new_layout = ALGORITHM_PARITY_N;
5284 break;
5285 default:
5286 return ERR_PTR(-EINVAL);
5287 }
5288 mddev->new_level = 6;
5289 mddev->new_layout = new_layout;
5290 mddev->delta_disks = 1;
5291 mddev->raid_disks += 1;
5292 return setup_conf(mddev);
5293}
5294
5295
NeilBrown16a53ec2006-06-26 00:27:38 -07005296static struct mdk_personality raid6_personality =
5297{
5298 .name = "raid6",
5299 .level = 6,
5300 .owner = THIS_MODULE,
5301 .make_request = make_request,
5302 .run = run,
5303 .stop = stop,
5304 .status = status,
5305 .error_handler = error,
5306 .hot_add_disk = raid5_add_disk,
5307 .hot_remove_disk= raid5_remove_disk,
5308 .spare_active = raid5_spare_active,
5309 .sync_request = sync_request,
5310 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07005311 .size = raid5_size,
NeilBrownf4168852007-02-28 20:11:53 -08005312 .check_reshape = raid5_check_reshape,
5313 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11005314 .finish_reshape = raid5_finish_reshape,
NeilBrown16a53ec2006-06-26 00:27:38 -07005315 .quiesce = raid5_quiesce,
NeilBrown245f46c2009-03-31 14:39:39 +11005316 .takeover = raid6_takeover,
NeilBrown88ce4932009-03-31 15:24:23 +11005317 .reconfig = raid6_reconfig,
NeilBrown16a53ec2006-06-26 00:27:38 -07005318};
NeilBrown2604b702006-01-06 00:20:36 -08005319static struct mdk_personality raid5_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07005320{
5321 .name = "raid5",
NeilBrown2604b702006-01-06 00:20:36 -08005322 .level = 5,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005323 .owner = THIS_MODULE,
5324 .make_request = make_request,
5325 .run = run,
5326 .stop = stop,
5327 .status = status,
5328 .error_handler = error,
5329 .hot_add_disk = raid5_add_disk,
5330 .hot_remove_disk= raid5_remove_disk,
5331 .spare_active = raid5_spare_active,
5332 .sync_request = sync_request,
5333 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07005334 .size = raid5_size,
NeilBrown63c70c42006-03-27 01:18:13 -08005335 .check_reshape = raid5_check_reshape,
5336 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11005337 .finish_reshape = raid5_finish_reshape,
NeilBrown72626682005-09-09 16:23:54 -07005338 .quiesce = raid5_quiesce,
NeilBrownd562b0c2009-03-31 14:39:39 +11005339 .takeover = raid5_takeover,
NeilBrownb3546032009-03-31 14:56:41 +11005340 .reconfig = raid5_reconfig,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005341};
5342
NeilBrown2604b702006-01-06 00:20:36 -08005343static struct mdk_personality raid4_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07005344{
NeilBrown2604b702006-01-06 00:20:36 -08005345 .name = "raid4",
5346 .level = 4,
5347 .owner = THIS_MODULE,
5348 .make_request = make_request,
5349 .run = run,
5350 .stop = stop,
5351 .status = status,
5352 .error_handler = error,
5353 .hot_add_disk = raid5_add_disk,
5354 .hot_remove_disk= raid5_remove_disk,
5355 .spare_active = raid5_spare_active,
5356 .sync_request = sync_request,
5357 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07005358 .size = raid5_size,
NeilBrown3d378902007-03-26 21:32:13 -08005359 .check_reshape = raid5_check_reshape,
5360 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11005361 .finish_reshape = raid5_finish_reshape,
NeilBrown2604b702006-01-06 00:20:36 -08005362 .quiesce = raid5_quiesce,
5363};
5364
5365static int __init raid5_init(void)
5366{
NeilBrown16a53ec2006-06-26 00:27:38 -07005367 register_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08005368 register_md_personality(&raid5_personality);
5369 register_md_personality(&raid4_personality);
5370 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005371}
5372
NeilBrown2604b702006-01-06 00:20:36 -08005373static void raid5_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005374{
NeilBrown16a53ec2006-06-26 00:27:38 -07005375 unregister_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08005376 unregister_md_personality(&raid5_personality);
5377 unregister_md_personality(&raid4_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005378}
5379
5380module_init(raid5_init);
5381module_exit(raid5_exit);
5382MODULE_LICENSE("GPL");
5383MODULE_ALIAS("md-personality-4"); /* RAID5 */
NeilBrownd9d166c2006-01-06 00:20:51 -08005384MODULE_ALIAS("md-raid5");
5385MODULE_ALIAS("md-raid4");
NeilBrown2604b702006-01-06 00:20:36 -08005386MODULE_ALIAS("md-level-5");
5387MODULE_ALIAS("md-level-4");
NeilBrown16a53ec2006-06-26 00:27:38 -07005388MODULE_ALIAS("md-personality-8"); /* RAID6 */
5389MODULE_ALIAS("md-raid6");
5390MODULE_ALIAS("md-level-6");
5391
5392/* This used to be two separate modules, they were: */
5393MODULE_ALIAS("raid5");
5394MODULE_ALIAS("raid6");