blob: f7fb2b87ad8919749d7f1196db87fde5abfe5c9f [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)) {
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +0200398 BUG_ON(!list_empty(&sh->lru));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 } else {
400 if (!test_bit(STRIPE_HANDLE, &sh->state))
401 atomic_inc(&conf->active_stripes);
NeilBrownff4e8d92006-07-10 04:44:16 -0700402 if (list_empty(&sh->lru) &&
403 !test_bit(STRIPE_EXPANDING, &sh->state))
NeilBrown16a53ec2006-06-26 00:27:38 -0700404 BUG();
405 list_del_init(&sh->lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 }
407 }
408 } while (sh == NULL);
409
410 if (sh)
411 atomic_inc(&sh->count);
412
413 spin_unlock_irq(&conf->device_lock);
414 return sh;
415}
416
NeilBrown6712ecf2007-09-27 12:47:43 +0200417static void
418raid5_end_read_request(struct bio *bi, int error);
419static void
420raid5_end_write_request(struct bio *bi, int error);
Dan Williams91c00922007-01-02 13:52:30 -0700421
Dan Williamsc4e5ac02008-06-28 08:31:53 +1000422static void ops_run_io(struct stripe_head *sh, struct stripe_head_state *s)
Dan Williams91c00922007-01-02 13:52:30 -0700423{
424 raid5_conf_t *conf = sh->raid_conf;
425 int i, disks = sh->disks;
426
427 might_sleep();
428
429 for (i = disks; i--; ) {
430 int rw;
431 struct bio *bi;
432 mdk_rdev_t *rdev;
433 if (test_and_clear_bit(R5_Wantwrite, &sh->dev[i].flags))
434 rw = WRITE;
435 else if (test_and_clear_bit(R5_Wantread, &sh->dev[i].flags))
436 rw = READ;
437 else
438 continue;
439
440 bi = &sh->dev[i].req;
441
442 bi->bi_rw = rw;
443 if (rw == WRITE)
444 bi->bi_end_io = raid5_end_write_request;
445 else
446 bi->bi_end_io = raid5_end_read_request;
447
448 rcu_read_lock();
449 rdev = rcu_dereference(conf->disks[i].rdev);
450 if (rdev && test_bit(Faulty, &rdev->flags))
451 rdev = NULL;
452 if (rdev)
453 atomic_inc(&rdev->nr_pending);
454 rcu_read_unlock();
455
456 if (rdev) {
Dan Williamsc4e5ac02008-06-28 08:31:53 +1000457 if (s->syncing || s->expanding || s->expanded)
Dan Williams91c00922007-01-02 13:52:30 -0700458 md_sync_acct(rdev->bdev, STRIPE_SECTORS);
459
Dan Williams2b7497f2008-06-28 08:31:52 +1000460 set_bit(STRIPE_IO_STARTED, &sh->state);
461
Dan Williams91c00922007-01-02 13:52:30 -0700462 bi->bi_bdev = rdev->bdev;
463 pr_debug("%s: for %llu schedule op %ld on disc %d\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -0700464 __func__, (unsigned long long)sh->sector,
Dan Williams91c00922007-01-02 13:52:30 -0700465 bi->bi_rw, i);
466 atomic_inc(&sh->count);
467 bi->bi_sector = sh->sector + rdev->data_offset;
468 bi->bi_flags = 1 << BIO_UPTODATE;
469 bi->bi_vcnt = 1;
470 bi->bi_max_vecs = 1;
471 bi->bi_idx = 0;
472 bi->bi_io_vec = &sh->dev[i].vec;
473 bi->bi_io_vec[0].bv_len = STRIPE_SIZE;
474 bi->bi_io_vec[0].bv_offset = 0;
475 bi->bi_size = STRIPE_SIZE;
476 bi->bi_next = NULL;
477 if (rw == WRITE &&
478 test_bit(R5_ReWrite, &sh->dev[i].flags))
479 atomic_add(STRIPE_SECTORS,
480 &rdev->corrected_errors);
481 generic_make_request(bi);
482 } else {
483 if (rw == WRITE)
484 set_bit(STRIPE_DEGRADED, &sh->state);
485 pr_debug("skip op %ld on disc %d for sector %llu\n",
486 bi->bi_rw, i, (unsigned long long)sh->sector);
487 clear_bit(R5_LOCKED, &sh->dev[i].flags);
488 set_bit(STRIPE_HANDLE, &sh->state);
489 }
490 }
491}
492
493static struct dma_async_tx_descriptor *
494async_copy_data(int frombio, struct bio *bio, struct page *page,
495 sector_t sector, struct dma_async_tx_descriptor *tx)
496{
497 struct bio_vec *bvl;
498 struct page *bio_page;
499 int i;
500 int page_offset;
501
502 if (bio->bi_sector >= sector)
503 page_offset = (signed)(bio->bi_sector - sector) * 512;
504 else
505 page_offset = (signed)(sector - bio->bi_sector) * -512;
506 bio_for_each_segment(bvl, bio, i) {
507 int len = bio_iovec_idx(bio, i)->bv_len;
508 int clen;
509 int b_offset = 0;
510
511 if (page_offset < 0) {
512 b_offset = -page_offset;
513 page_offset += b_offset;
514 len -= b_offset;
515 }
516
517 if (len > 0 && page_offset + len > STRIPE_SIZE)
518 clen = STRIPE_SIZE - page_offset;
519 else
520 clen = len;
521
522 if (clen > 0) {
523 b_offset += bio_iovec_idx(bio, i)->bv_offset;
524 bio_page = bio_iovec_idx(bio, i)->bv_page;
525 if (frombio)
526 tx = async_memcpy(page, bio_page, page_offset,
527 b_offset, clen,
Dan Williamseb0645a2007-07-20 00:31:46 -0700528 ASYNC_TX_DEP_ACK,
Dan Williams91c00922007-01-02 13:52:30 -0700529 tx, NULL, NULL);
530 else
531 tx = async_memcpy(bio_page, page, b_offset,
532 page_offset, clen,
Dan Williamseb0645a2007-07-20 00:31:46 -0700533 ASYNC_TX_DEP_ACK,
Dan Williams91c00922007-01-02 13:52:30 -0700534 tx, NULL, NULL);
535 }
536 if (clen < len) /* hit end of page */
537 break;
538 page_offset += len;
539 }
540
541 return tx;
542}
543
544static void ops_complete_biofill(void *stripe_head_ref)
545{
546 struct stripe_head *sh = stripe_head_ref;
547 struct bio *return_bi = NULL;
548 raid5_conf_t *conf = sh->raid_conf;
Dan Williamse4d84902007-09-24 10:06:13 -0700549 int i;
Dan Williams91c00922007-01-02 13:52:30 -0700550
Harvey Harrisone46b2722008-04-28 02:15:50 -0700551 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700552 (unsigned long long)sh->sector);
553
554 /* clear completed biofills */
Dan Williams83de75c2008-06-28 08:31:58 +1000555 spin_lock_irq(&conf->device_lock);
Dan Williams91c00922007-01-02 13:52:30 -0700556 for (i = sh->disks; i--; ) {
557 struct r5dev *dev = &sh->dev[i];
Dan Williams91c00922007-01-02 13:52:30 -0700558
559 /* acknowledge completion of a biofill operation */
Dan Williamse4d84902007-09-24 10:06:13 -0700560 /* and check if we need to reply to a read request,
561 * new R5_Wantfill requests are held off until
Dan Williams83de75c2008-06-28 08:31:58 +1000562 * !STRIPE_BIOFILL_RUN
Dan Williamse4d84902007-09-24 10:06:13 -0700563 */
564 if (test_and_clear_bit(R5_Wantfill, &dev->flags)) {
Dan Williams91c00922007-01-02 13:52:30 -0700565 struct bio *rbi, *rbi2;
Dan Williams91c00922007-01-02 13:52:30 -0700566
Dan Williams91c00922007-01-02 13:52:30 -0700567 BUG_ON(!dev->read);
568 rbi = dev->read;
569 dev->read = NULL;
570 while (rbi && rbi->bi_sector <
571 dev->sector + STRIPE_SECTORS) {
572 rbi2 = r5_next_bio(rbi, dev->sector);
Jens Axboe960e7392008-08-15 10:41:18 +0200573 if (!raid5_dec_bi_phys_segments(rbi)) {
Dan Williams91c00922007-01-02 13:52:30 -0700574 rbi->bi_next = return_bi;
575 return_bi = rbi;
576 }
Dan Williams91c00922007-01-02 13:52:30 -0700577 rbi = rbi2;
578 }
579 }
580 }
Dan Williams83de75c2008-06-28 08:31:58 +1000581 spin_unlock_irq(&conf->device_lock);
582 clear_bit(STRIPE_BIOFILL_RUN, &sh->state);
Dan Williams91c00922007-01-02 13:52:30 -0700583
584 return_io(return_bi);
585
Dan Williamse4d84902007-09-24 10:06:13 -0700586 set_bit(STRIPE_HANDLE, &sh->state);
Dan Williams91c00922007-01-02 13:52:30 -0700587 release_stripe(sh);
588}
589
590static void ops_run_biofill(struct stripe_head *sh)
591{
592 struct dma_async_tx_descriptor *tx = NULL;
593 raid5_conf_t *conf = sh->raid_conf;
594 int i;
595
Harvey Harrisone46b2722008-04-28 02:15:50 -0700596 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700597 (unsigned long long)sh->sector);
598
599 for (i = sh->disks; i--; ) {
600 struct r5dev *dev = &sh->dev[i];
601 if (test_bit(R5_Wantfill, &dev->flags)) {
602 struct bio *rbi;
603 spin_lock_irq(&conf->device_lock);
604 dev->read = rbi = dev->toread;
605 dev->toread = NULL;
606 spin_unlock_irq(&conf->device_lock);
607 while (rbi && rbi->bi_sector <
608 dev->sector + STRIPE_SECTORS) {
609 tx = async_copy_data(0, rbi, dev->page,
610 dev->sector, tx);
611 rbi = r5_next_bio(rbi, dev->sector);
612 }
613 }
614 }
615
616 atomic_inc(&sh->count);
617 async_trigger_callback(ASYNC_TX_DEP_ACK | ASYNC_TX_ACK, tx,
618 ops_complete_biofill, sh);
619}
620
621static void ops_complete_compute5(void *stripe_head_ref)
622{
623 struct stripe_head *sh = stripe_head_ref;
624 int target = sh->ops.target;
625 struct r5dev *tgt = &sh->dev[target];
626
Harvey Harrisone46b2722008-04-28 02:15:50 -0700627 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700628 (unsigned long long)sh->sector);
629
630 set_bit(R5_UPTODATE, &tgt->flags);
631 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
632 clear_bit(R5_Wantcompute, &tgt->flags);
Dan Williamsecc65c92008-06-28 08:31:57 +1000633 clear_bit(STRIPE_COMPUTE_RUN, &sh->state);
634 if (sh->check_state == check_state_compute_run)
635 sh->check_state = check_state_compute_result;
Dan Williams91c00922007-01-02 13:52:30 -0700636 set_bit(STRIPE_HANDLE, &sh->state);
637 release_stripe(sh);
638}
639
Dan Williams7b3a8712008-06-28 08:32:09 +1000640static struct dma_async_tx_descriptor *ops_run_compute5(struct stripe_head *sh)
Dan Williams91c00922007-01-02 13:52:30 -0700641{
642 /* kernel stack size limits the total number of disks */
643 int disks = sh->disks;
644 struct page *xor_srcs[disks];
645 int target = sh->ops.target;
646 struct r5dev *tgt = &sh->dev[target];
647 struct page *xor_dest = tgt->page;
648 int count = 0;
649 struct dma_async_tx_descriptor *tx;
650 int i;
651
652 pr_debug("%s: stripe %llu block: %d\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -0700653 __func__, (unsigned long long)sh->sector, target);
Dan Williams91c00922007-01-02 13:52:30 -0700654 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
655
656 for (i = disks; i--; )
657 if (i != target)
658 xor_srcs[count++] = sh->dev[i].page;
659
660 atomic_inc(&sh->count);
661
662 if (unlikely(count == 1))
663 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE,
664 0, NULL, ops_complete_compute5, sh);
665 else
666 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE,
667 ASYNC_TX_XOR_ZERO_DST, NULL,
668 ops_complete_compute5, sh);
669
Dan Williams91c00922007-01-02 13:52:30 -0700670 return tx;
671}
672
673static void ops_complete_prexor(void *stripe_head_ref)
674{
675 struct stripe_head *sh = stripe_head_ref;
676
Harvey Harrisone46b2722008-04-28 02:15:50 -0700677 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700678 (unsigned long long)sh->sector);
Dan Williams91c00922007-01-02 13:52:30 -0700679}
680
681static struct dma_async_tx_descriptor *
682ops_run_prexor(struct stripe_head *sh, struct dma_async_tx_descriptor *tx)
683{
684 /* kernel stack size limits the total number of disks */
685 int disks = sh->disks;
686 struct page *xor_srcs[disks];
687 int count = 0, pd_idx = sh->pd_idx, i;
688
689 /* existing parity data subtracted */
690 struct page *xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
691
Harvey Harrisone46b2722008-04-28 02:15:50 -0700692 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700693 (unsigned long long)sh->sector);
694
695 for (i = disks; i--; ) {
696 struct r5dev *dev = &sh->dev[i];
697 /* Only process blocks that are known to be uptodate */
Dan Williamsd8ee0722008-06-28 08:32:06 +1000698 if (test_bit(R5_Wantdrain, &dev->flags))
Dan Williams91c00922007-01-02 13:52:30 -0700699 xor_srcs[count++] = dev->page;
700 }
701
702 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE,
703 ASYNC_TX_DEP_ACK | ASYNC_TX_XOR_DROP_DST, tx,
704 ops_complete_prexor, sh);
705
706 return tx;
707}
708
709static struct dma_async_tx_descriptor *
Dan Williamsd8ee0722008-06-28 08:32:06 +1000710ops_run_biodrain(struct stripe_head *sh, struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -0700711{
712 int disks = sh->disks;
Dan Williamsd8ee0722008-06-28 08:32:06 +1000713 int i;
Dan Williams91c00922007-01-02 13:52:30 -0700714
Harvey Harrisone46b2722008-04-28 02:15:50 -0700715 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700716 (unsigned long long)sh->sector);
717
718 for (i = disks; i--; ) {
719 struct r5dev *dev = &sh->dev[i];
720 struct bio *chosen;
Dan Williams91c00922007-01-02 13:52:30 -0700721
Dan Williamsd8ee0722008-06-28 08:32:06 +1000722 if (test_and_clear_bit(R5_Wantdrain, &dev->flags)) {
Dan Williams91c00922007-01-02 13:52:30 -0700723 struct bio *wbi;
724
725 spin_lock(&sh->lock);
726 chosen = dev->towrite;
727 dev->towrite = NULL;
728 BUG_ON(dev->written);
729 wbi = dev->written = chosen;
730 spin_unlock(&sh->lock);
731
732 while (wbi && wbi->bi_sector <
733 dev->sector + STRIPE_SECTORS) {
734 tx = async_copy_data(1, wbi, dev->page,
735 dev->sector, tx);
736 wbi = r5_next_bio(wbi, dev->sector);
737 }
738 }
739 }
740
741 return tx;
742}
743
744static void ops_complete_postxor(void *stripe_head_ref)
745{
746 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -0700747 int disks = sh->disks, i, pd_idx = sh->pd_idx;
748
Harvey Harrisone46b2722008-04-28 02:15:50 -0700749 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700750 (unsigned long long)sh->sector);
751
752 for (i = disks; i--; ) {
753 struct r5dev *dev = &sh->dev[i];
754 if (dev->written || i == pd_idx)
755 set_bit(R5_UPTODATE, &dev->flags);
756 }
757
Dan Williamsd8ee0722008-06-28 08:32:06 +1000758 if (sh->reconstruct_state == reconstruct_state_drain_run)
759 sh->reconstruct_state = reconstruct_state_drain_result;
760 else if (sh->reconstruct_state == reconstruct_state_prexor_drain_run)
761 sh->reconstruct_state = reconstruct_state_prexor_drain_result;
762 else {
763 BUG_ON(sh->reconstruct_state != reconstruct_state_run);
764 sh->reconstruct_state = reconstruct_state_result;
765 }
Dan Williams91c00922007-01-02 13:52:30 -0700766
767 set_bit(STRIPE_HANDLE, &sh->state);
768 release_stripe(sh);
769}
770
771static void
Dan Williamsd8ee0722008-06-28 08:32:06 +1000772ops_run_postxor(struct stripe_head *sh, struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -0700773{
774 /* kernel stack size limits the total number of disks */
775 int disks = sh->disks;
776 struct page *xor_srcs[disks];
777
778 int count = 0, pd_idx = sh->pd_idx, i;
779 struct page *xor_dest;
Dan Williamsd8ee0722008-06-28 08:32:06 +1000780 int prexor = 0;
Dan Williams91c00922007-01-02 13:52:30 -0700781 unsigned long flags;
Dan Williams91c00922007-01-02 13:52:30 -0700782
Harvey Harrisone46b2722008-04-28 02:15:50 -0700783 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700784 (unsigned long long)sh->sector);
785
786 /* check if prexor is active which means only process blocks
787 * that are part of a read-modify-write (written)
788 */
Dan Williamsd8ee0722008-06-28 08:32:06 +1000789 if (sh->reconstruct_state == reconstruct_state_prexor_drain_run) {
790 prexor = 1;
Dan Williams91c00922007-01-02 13:52:30 -0700791 xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
792 for (i = disks; i--; ) {
793 struct r5dev *dev = &sh->dev[i];
794 if (dev->written)
795 xor_srcs[count++] = dev->page;
796 }
797 } else {
798 xor_dest = sh->dev[pd_idx].page;
799 for (i = disks; i--; ) {
800 struct r5dev *dev = &sh->dev[i];
801 if (i != pd_idx)
802 xor_srcs[count++] = dev->page;
803 }
804 }
805
Dan Williams91c00922007-01-02 13:52:30 -0700806 /* 1/ if we prexor'd then the dest is reused as a source
807 * 2/ if we did not prexor then we are redoing the parity
808 * set ASYNC_TX_XOR_DROP_DST and ASYNC_TX_XOR_ZERO_DST
809 * for the synchronous xor case
810 */
811 flags = ASYNC_TX_DEP_ACK | ASYNC_TX_ACK |
812 (prexor ? ASYNC_TX_XOR_DROP_DST : ASYNC_TX_XOR_ZERO_DST);
813
814 atomic_inc(&sh->count);
815
816 if (unlikely(count == 1)) {
817 flags &= ~(ASYNC_TX_XOR_DROP_DST | ASYNC_TX_XOR_ZERO_DST);
818 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE,
Dan Williamsd8ee0722008-06-28 08:32:06 +1000819 flags, tx, ops_complete_postxor, sh);
Dan Williams91c00922007-01-02 13:52:30 -0700820 } else
821 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE,
Dan Williamsd8ee0722008-06-28 08:32:06 +1000822 flags, tx, ops_complete_postxor, sh);
Dan Williams91c00922007-01-02 13:52:30 -0700823}
824
825static void ops_complete_check(void *stripe_head_ref)
826{
827 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -0700828
Harvey Harrisone46b2722008-04-28 02:15:50 -0700829 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700830 (unsigned long long)sh->sector);
831
Dan Williamsecc65c92008-06-28 08:31:57 +1000832 sh->check_state = check_state_check_result;
Dan Williams91c00922007-01-02 13:52:30 -0700833 set_bit(STRIPE_HANDLE, &sh->state);
834 release_stripe(sh);
835}
836
837static void ops_run_check(struct stripe_head *sh)
838{
839 /* kernel stack size limits the total number of disks */
840 int disks = sh->disks;
841 struct page *xor_srcs[disks];
842 struct dma_async_tx_descriptor *tx;
843
844 int count = 0, pd_idx = sh->pd_idx, i;
845 struct page *xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
846
Harvey Harrisone46b2722008-04-28 02:15:50 -0700847 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700848 (unsigned long long)sh->sector);
849
850 for (i = disks; i--; ) {
851 struct r5dev *dev = &sh->dev[i];
852 if (i != pd_idx)
853 xor_srcs[count++] = dev->page;
854 }
855
856 tx = async_xor_zero_sum(xor_dest, xor_srcs, 0, count, STRIPE_SIZE,
857 &sh->ops.zero_sum_result, 0, NULL, NULL, NULL);
858
Dan Williams91c00922007-01-02 13:52:30 -0700859 atomic_inc(&sh->count);
860 tx = async_trigger_callback(ASYNC_TX_DEP_ACK | ASYNC_TX_ACK, tx,
861 ops_complete_check, sh);
862}
863
Dan Williams600aa102008-06-28 08:32:05 +1000864static void raid5_run_ops(struct stripe_head *sh, unsigned long ops_request)
Dan Williams91c00922007-01-02 13:52:30 -0700865{
866 int overlap_clear = 0, i, disks = sh->disks;
867 struct dma_async_tx_descriptor *tx = NULL;
868
Dan Williams83de75c2008-06-28 08:31:58 +1000869 if (test_bit(STRIPE_OP_BIOFILL, &ops_request)) {
Dan Williams91c00922007-01-02 13:52:30 -0700870 ops_run_biofill(sh);
871 overlap_clear++;
872 }
873
Dan Williams7b3a8712008-06-28 08:32:09 +1000874 if (test_bit(STRIPE_OP_COMPUTE_BLK, &ops_request)) {
875 tx = ops_run_compute5(sh);
876 /* terminate the chain if postxor is not set to be run */
877 if (tx && !test_bit(STRIPE_OP_POSTXOR, &ops_request))
878 async_tx_ack(tx);
879 }
Dan Williams91c00922007-01-02 13:52:30 -0700880
Dan Williams600aa102008-06-28 08:32:05 +1000881 if (test_bit(STRIPE_OP_PREXOR, &ops_request))
Dan Williams91c00922007-01-02 13:52:30 -0700882 tx = ops_run_prexor(sh, tx);
883
Dan Williams600aa102008-06-28 08:32:05 +1000884 if (test_bit(STRIPE_OP_BIODRAIN, &ops_request)) {
Dan Williamsd8ee0722008-06-28 08:32:06 +1000885 tx = ops_run_biodrain(sh, tx);
Dan Williams91c00922007-01-02 13:52:30 -0700886 overlap_clear++;
887 }
888
Dan Williams600aa102008-06-28 08:32:05 +1000889 if (test_bit(STRIPE_OP_POSTXOR, &ops_request))
Dan Williamsd8ee0722008-06-28 08:32:06 +1000890 ops_run_postxor(sh, tx);
Dan Williams91c00922007-01-02 13:52:30 -0700891
Dan Williamsecc65c92008-06-28 08:31:57 +1000892 if (test_bit(STRIPE_OP_CHECK, &ops_request))
Dan Williams91c00922007-01-02 13:52:30 -0700893 ops_run_check(sh);
894
Dan Williams91c00922007-01-02 13:52:30 -0700895 if (overlap_clear)
896 for (i = disks; i--; ) {
897 struct r5dev *dev = &sh->dev[i];
898 if (test_and_clear_bit(R5_Overlap, &dev->flags))
899 wake_up(&sh->raid_conf->wait_for_overlap);
900 }
901}
902
NeilBrown3f294f42005-11-08 21:39:25 -0800903static int grow_one_stripe(raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904{
905 struct stripe_head *sh;
NeilBrown3f294f42005-11-08 21:39:25 -0800906 sh = kmem_cache_alloc(conf->slab_cache, GFP_KERNEL);
907 if (!sh)
908 return 0;
909 memset(sh, 0, sizeof(*sh) + (conf->raid_disks-1)*sizeof(struct r5dev));
910 sh->raid_conf = conf;
911 spin_lock_init(&sh->lock);
912
913 if (grow_buffers(sh, conf->raid_disks)) {
914 shrink_buffers(sh, conf->raid_disks);
915 kmem_cache_free(conf->slab_cache, sh);
916 return 0;
917 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800918 sh->disks = conf->raid_disks;
NeilBrown3f294f42005-11-08 21:39:25 -0800919 /* we just created an active stripe so... */
920 atomic_set(&sh->count, 1);
921 atomic_inc(&conf->active_stripes);
922 INIT_LIST_HEAD(&sh->lru);
923 release_stripe(sh);
924 return 1;
925}
926
927static int grow_stripes(raid5_conf_t *conf, int num)
928{
Christoph Lametere18b8902006-12-06 20:33:20 -0800929 struct kmem_cache *sc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 int devs = conf->raid_disks;
931
NeilBrown245f46c2009-03-31 14:39:39 +1100932 sprintf(conf->cache_name[0],
933 "raid%d-%s", conf->level, mdname(conf->mddev));
934 sprintf(conf->cache_name[1],
935 "raid%d-%s-alt", conf->level, mdname(conf->mddev));
NeilBrownad01c9e2006-03-27 01:18:07 -0800936 conf->active_name = 0;
937 sc = kmem_cache_create(conf->cache_name[conf->active_name],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 sizeof(struct stripe_head)+(devs-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +0900939 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 if (!sc)
941 return 1;
942 conf->slab_cache = sc;
NeilBrownad01c9e2006-03-27 01:18:07 -0800943 conf->pool_size = devs;
NeilBrown16a53ec2006-06-26 00:27:38 -0700944 while (num--)
NeilBrown3f294f42005-11-08 21:39:25 -0800945 if (!grow_one_stripe(conf))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 return 0;
948}
NeilBrown29269552006-03-27 01:18:10 -0800949
950#ifdef CONFIG_MD_RAID5_RESHAPE
NeilBrownad01c9e2006-03-27 01:18:07 -0800951static int resize_stripes(raid5_conf_t *conf, int newsize)
952{
953 /* Make all the stripes able to hold 'newsize' devices.
954 * New slots in each stripe get 'page' set to a new page.
955 *
956 * This happens in stages:
957 * 1/ create a new kmem_cache and allocate the required number of
958 * stripe_heads.
959 * 2/ gather all the old stripe_heads and tranfer the pages across
960 * to the new stripe_heads. This will have the side effect of
961 * freezing the array as once all stripe_heads have been collected,
962 * no IO will be possible. Old stripe heads are freed once their
963 * pages have been transferred over, and the old kmem_cache is
964 * freed when all stripes are done.
965 * 3/ reallocate conf->disks to be suitable bigger. If this fails,
966 * we simple return a failre status - no need to clean anything up.
967 * 4/ allocate new pages for the new slots in the new stripe_heads.
968 * If this fails, we don't bother trying the shrink the
969 * stripe_heads down again, we just leave them as they are.
970 * As each stripe_head is processed the new one is released into
971 * active service.
972 *
973 * Once step2 is started, we cannot afford to wait for a write,
974 * so we use GFP_NOIO allocations.
975 */
976 struct stripe_head *osh, *nsh;
977 LIST_HEAD(newstripes);
978 struct disk_info *ndisks;
Dan Williamsb5470dc2008-06-27 21:44:04 -0700979 int err;
Christoph Lametere18b8902006-12-06 20:33:20 -0800980 struct kmem_cache *sc;
NeilBrownad01c9e2006-03-27 01:18:07 -0800981 int i;
982
983 if (newsize <= conf->pool_size)
984 return 0; /* never bother to shrink */
985
Dan Williamsb5470dc2008-06-27 21:44:04 -0700986 err = md_allow_write(conf->mddev);
987 if (err)
988 return err;
NeilBrown2a2275d2007-01-26 00:57:11 -0800989
NeilBrownad01c9e2006-03-27 01:18:07 -0800990 /* Step 1 */
991 sc = kmem_cache_create(conf->cache_name[1-conf->active_name],
992 sizeof(struct stripe_head)+(newsize-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +0900993 0, 0, NULL);
NeilBrownad01c9e2006-03-27 01:18:07 -0800994 if (!sc)
995 return -ENOMEM;
996
997 for (i = conf->max_nr_stripes; i; i--) {
998 nsh = kmem_cache_alloc(sc, GFP_KERNEL);
999 if (!nsh)
1000 break;
1001
1002 memset(nsh, 0, sizeof(*nsh) + (newsize-1)*sizeof(struct r5dev));
1003
1004 nsh->raid_conf = conf;
1005 spin_lock_init(&nsh->lock);
1006
1007 list_add(&nsh->lru, &newstripes);
1008 }
1009 if (i) {
1010 /* didn't get enough, give up */
1011 while (!list_empty(&newstripes)) {
1012 nsh = list_entry(newstripes.next, struct stripe_head, lru);
1013 list_del(&nsh->lru);
1014 kmem_cache_free(sc, nsh);
1015 }
1016 kmem_cache_destroy(sc);
1017 return -ENOMEM;
1018 }
1019 /* Step 2 - Must use GFP_NOIO now.
1020 * OK, we have enough stripes, start collecting inactive
1021 * stripes and copying them over
1022 */
1023 list_for_each_entry(nsh, &newstripes, lru) {
1024 spin_lock_irq(&conf->device_lock);
1025 wait_event_lock_irq(conf->wait_for_stripe,
1026 !list_empty(&conf->inactive_list),
1027 conf->device_lock,
NeilBrownb3b46be2006-03-27 01:18:16 -08001028 unplug_slaves(conf->mddev)
NeilBrownad01c9e2006-03-27 01:18:07 -08001029 );
1030 osh = get_free_stripe(conf);
1031 spin_unlock_irq(&conf->device_lock);
1032 atomic_set(&nsh->count, 1);
1033 for(i=0; i<conf->pool_size; i++)
1034 nsh->dev[i].page = osh->dev[i].page;
1035 for( ; i<newsize; i++)
1036 nsh->dev[i].page = NULL;
1037 kmem_cache_free(conf->slab_cache, osh);
1038 }
1039 kmem_cache_destroy(conf->slab_cache);
1040
1041 /* Step 3.
1042 * At this point, we are holding all the stripes so the array
1043 * is completely stalled, so now is a good time to resize
1044 * conf->disks.
1045 */
1046 ndisks = kzalloc(newsize * sizeof(struct disk_info), GFP_NOIO);
1047 if (ndisks) {
1048 for (i=0; i<conf->raid_disks; i++)
1049 ndisks[i] = conf->disks[i];
1050 kfree(conf->disks);
1051 conf->disks = ndisks;
1052 } else
1053 err = -ENOMEM;
1054
1055 /* Step 4, return new stripes to service */
1056 while(!list_empty(&newstripes)) {
1057 nsh = list_entry(newstripes.next, struct stripe_head, lru);
1058 list_del_init(&nsh->lru);
1059 for (i=conf->raid_disks; i < newsize; i++)
1060 if (nsh->dev[i].page == NULL) {
1061 struct page *p = alloc_page(GFP_NOIO);
1062 nsh->dev[i].page = p;
1063 if (!p)
1064 err = -ENOMEM;
1065 }
1066 release_stripe(nsh);
1067 }
1068 /* critical section pass, GFP_NOIO no longer needed */
1069
1070 conf->slab_cache = sc;
1071 conf->active_name = 1-conf->active_name;
1072 conf->pool_size = newsize;
1073 return err;
1074}
NeilBrown29269552006-03-27 01:18:10 -08001075#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
NeilBrown3f294f42005-11-08 21:39:25 -08001077static int drop_one_stripe(raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078{
1079 struct stripe_head *sh;
1080
NeilBrown3f294f42005-11-08 21:39:25 -08001081 spin_lock_irq(&conf->device_lock);
1082 sh = get_free_stripe(conf);
1083 spin_unlock_irq(&conf->device_lock);
1084 if (!sh)
1085 return 0;
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02001086 BUG_ON(atomic_read(&sh->count));
NeilBrownad01c9e2006-03-27 01:18:07 -08001087 shrink_buffers(sh, conf->pool_size);
NeilBrown3f294f42005-11-08 21:39:25 -08001088 kmem_cache_free(conf->slab_cache, sh);
1089 atomic_dec(&conf->active_stripes);
1090 return 1;
1091}
1092
1093static void shrink_stripes(raid5_conf_t *conf)
1094{
1095 while (drop_one_stripe(conf))
1096 ;
1097
NeilBrown29fc7e32006-02-03 03:03:41 -08001098 if (conf->slab_cache)
1099 kmem_cache_destroy(conf->slab_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 conf->slab_cache = NULL;
1101}
1102
NeilBrown6712ecf2007-09-27 12:47:43 +02001103static void raid5_end_read_request(struct bio * bi, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104{
NeilBrown99c0fb52009-03-31 14:39:38 +11001105 struct stripe_head *sh = bi->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 raid5_conf_t *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08001107 int disks = sh->disks, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
NeilBrownd6950432006-07-10 04:44:20 -07001109 char b[BDEVNAME_SIZE];
1110 mdk_rdev_t *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
1113 for (i=0 ; i<disks; i++)
1114 if (bi == &sh->dev[i].req)
1115 break;
1116
Dan Williams45b42332007-07-09 11:56:43 -07001117 pr_debug("end_read_request %llu/%d, count: %d, uptodate %d.\n",
1118 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 uptodate);
1120 if (i == disks) {
1121 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02001122 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 }
1124
1125 if (uptodate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 set_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrown4e5314b2005-11-08 21:39:22 -08001127 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrownd6950432006-07-10 04:44:20 -07001128 rdev = conf->disks[i].rdev;
Bernd Schubert6be9d492008-05-23 13:04:34 -07001129 printk_rl(KERN_INFO "raid5:%s: read error corrected"
1130 " (%lu sectors at %llu on %s)\n",
1131 mdname(conf->mddev), STRIPE_SECTORS,
1132 (unsigned long long)(sh->sector
1133 + rdev->data_offset),
1134 bdevname(rdev->bdev, b));
NeilBrown4e5314b2005-11-08 21:39:22 -08001135 clear_bit(R5_ReadError, &sh->dev[i].flags);
1136 clear_bit(R5_ReWrite, &sh->dev[i].flags);
1137 }
NeilBrownba22dcb2005-11-08 21:39:31 -08001138 if (atomic_read(&conf->disks[i].rdev->read_errors))
1139 atomic_set(&conf->disks[i].rdev->read_errors, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 } else {
NeilBrownd6950432006-07-10 04:44:20 -07001141 const char *bdn = bdevname(conf->disks[i].rdev->bdev, b);
NeilBrownba22dcb2005-11-08 21:39:31 -08001142 int retry = 0;
NeilBrownd6950432006-07-10 04:44:20 -07001143 rdev = conf->disks[i].rdev;
1144
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 clear_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrownd6950432006-07-10 04:44:20 -07001146 atomic_inc(&rdev->read_errors);
NeilBrownba22dcb2005-11-08 21:39:31 -08001147 if (conf->mddev->degraded)
Bernd Schubert6be9d492008-05-23 13:04:34 -07001148 printk_rl(KERN_WARNING
1149 "raid5:%s: read error not correctable "
1150 "(sector %llu on %s).\n",
1151 mdname(conf->mddev),
1152 (unsigned long long)(sh->sector
1153 + rdev->data_offset),
1154 bdn);
NeilBrownba22dcb2005-11-08 21:39:31 -08001155 else if (test_bit(R5_ReWrite, &sh->dev[i].flags))
NeilBrown4e5314b2005-11-08 21:39:22 -08001156 /* Oh, no!!! */
Bernd Schubert6be9d492008-05-23 13:04:34 -07001157 printk_rl(KERN_WARNING
1158 "raid5:%s: read error NOT corrected!! "
1159 "(sector %llu on %s).\n",
1160 mdname(conf->mddev),
1161 (unsigned long long)(sh->sector
1162 + rdev->data_offset),
1163 bdn);
NeilBrownd6950432006-07-10 04:44:20 -07001164 else if (atomic_read(&rdev->read_errors)
NeilBrownba22dcb2005-11-08 21:39:31 -08001165 > conf->max_nr_stripes)
NeilBrown14f8d262006-01-06 00:20:14 -08001166 printk(KERN_WARNING
NeilBrownd6950432006-07-10 04:44:20 -07001167 "raid5:%s: Too many read errors, failing device %s.\n",
1168 mdname(conf->mddev), bdn);
NeilBrownba22dcb2005-11-08 21:39:31 -08001169 else
1170 retry = 1;
1171 if (retry)
1172 set_bit(R5_ReadError, &sh->dev[i].flags);
1173 else {
NeilBrown4e5314b2005-11-08 21:39:22 -08001174 clear_bit(R5_ReadError, &sh->dev[i].flags);
1175 clear_bit(R5_ReWrite, &sh->dev[i].flags);
NeilBrownd6950432006-07-10 04:44:20 -07001176 md_error(conf->mddev, rdev);
NeilBrownba22dcb2005-11-08 21:39:31 -08001177 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 }
1179 rdev_dec_pending(conf->disks[i].rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 clear_bit(R5_LOCKED, &sh->dev[i].flags);
1181 set_bit(STRIPE_HANDLE, &sh->state);
1182 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183}
1184
NeilBrownd710e132008-10-13 11:55:12 +11001185static void raid5_end_write_request(struct bio *bi, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186{
NeilBrown99c0fb52009-03-31 14:39:38 +11001187 struct stripe_head *sh = bi->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 raid5_conf_t *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08001189 int disks = sh->disks, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
1191
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 for (i=0 ; i<disks; i++)
1193 if (bi == &sh->dev[i].req)
1194 break;
1195
Dan Williams45b42332007-07-09 11:56:43 -07001196 pr_debug("end_write_request %llu/%d, count %d, uptodate: %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
1198 uptodate);
1199 if (i == disks) {
1200 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02001201 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 }
1203
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 if (!uptodate)
1205 md_error(conf->mddev, conf->disks[i].rdev);
1206
1207 rdev_dec_pending(conf->disks[i].rdev, conf->mddev);
1208
1209 clear_bit(R5_LOCKED, &sh->dev[i].flags);
1210 set_bit(STRIPE_HANDLE, &sh->state);
NeilBrownc04be0a2006-10-03 01:15:53 -07001211 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212}
1213
1214
NeilBrown784052e2009-03-31 15:19:07 +11001215static sector_t compute_blocknr(struct stripe_head *sh, int i, int previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
NeilBrown784052e2009-03-31 15:19:07 +11001217static void raid5_build_block(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218{
1219 struct r5dev *dev = &sh->dev[i];
1220
1221 bio_init(&dev->req);
1222 dev->req.bi_io_vec = &dev->vec;
1223 dev->req.bi_vcnt++;
1224 dev->req.bi_max_vecs++;
1225 dev->vec.bv_page = dev->page;
1226 dev->vec.bv_len = STRIPE_SIZE;
1227 dev->vec.bv_offset = 0;
1228
1229 dev->req.bi_sector = sh->sector;
1230 dev->req.bi_private = sh;
1231
1232 dev->flags = 0;
NeilBrown784052e2009-03-31 15:19:07 +11001233 dev->sector = compute_blocknr(sh, i, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234}
1235
1236static void error(mddev_t *mddev, mdk_rdev_t *rdev)
1237{
1238 char b[BDEVNAME_SIZE];
1239 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
Dan Williams45b42332007-07-09 11:56:43 -07001240 pr_debug("raid5: error called\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241
NeilBrownb2d444d2005-11-08 21:39:31 -08001242 if (!test_bit(Faulty, &rdev->flags)) {
NeilBrown850b2b42006-10-03 01:15:46 -07001243 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrownc04be0a2006-10-03 01:15:53 -07001244 if (test_and_clear_bit(In_sync, &rdev->flags)) {
1245 unsigned long flags;
1246 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 mddev->degraded++;
NeilBrownc04be0a2006-10-03 01:15:53 -07001248 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 /*
1250 * if recovery was running, make sure it aborts.
1251 */
NeilBrowndfc70642008-05-23 13:04:39 -07001252 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 }
NeilBrownb2d444d2005-11-08 21:39:31 -08001254 set_bit(Faulty, &rdev->flags);
NeilBrownd710e132008-10-13 11:55:12 +11001255 printk(KERN_ALERT
1256 "raid5: Disk failure on %s, disabling device.\n"
1257 "raid5: Operation continuing on %d devices.\n",
1258 bdevname(rdev->bdev,b), conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 }
NeilBrown16a53ec2006-06-26 00:27:38 -07001260}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
1262/*
1263 * Input: a 'big' sector number,
1264 * Output: index of the data and parity disk, and the sector # in them.
1265 */
NeilBrown112bf892009-03-31 14:39:38 +11001266static sector_t raid5_compute_sector(raid5_conf_t *conf, sector_t r_sector,
NeilBrown911d4ee2009-03-31 14:39:38 +11001267 int previous, int *dd_idx,
1268 struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269{
1270 long stripe;
1271 unsigned long chunk_number;
1272 unsigned int chunk_offset;
NeilBrown911d4ee2009-03-31 14:39:38 +11001273 int pd_idx, qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11001274 int ddf_layout = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 sector_t new_sector;
NeilBrowne183eae2009-03-31 15:20:22 +11001276 int algorithm = previous ? conf->prev_algo
1277 : conf->algorithm;
NeilBrown784052e2009-03-31 15:19:07 +11001278 int sectors_per_chunk = previous ? (conf->prev_chunk >> 9)
1279 : (conf->chunk_size >> 9);
NeilBrown112bf892009-03-31 14:39:38 +11001280 int raid_disks = previous ? conf->previous_raid_disks
1281 : conf->raid_disks;
1282 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
1284 /* First compute the information on this sector */
1285
1286 /*
1287 * Compute the chunk number and the sector offset inside the chunk
1288 */
1289 chunk_offset = sector_div(r_sector, sectors_per_chunk);
1290 chunk_number = r_sector;
1291 BUG_ON(r_sector != chunk_number);
1292
1293 /*
1294 * Compute the stripe number
1295 */
1296 stripe = chunk_number / data_disks;
1297
1298 /*
1299 * Compute the data disk and parity disk indexes inside the stripe
1300 */
1301 *dd_idx = chunk_number % data_disks;
1302
1303 /*
1304 * Select the parity disk based on the user selected algorithm.
1305 */
NeilBrown911d4ee2009-03-31 14:39:38 +11001306 pd_idx = qd_idx = ~0;
NeilBrown16a53ec2006-06-26 00:27:38 -07001307 switch(conf->level) {
1308 case 4:
NeilBrown911d4ee2009-03-31 14:39:38 +11001309 pd_idx = data_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07001310 break;
1311 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11001312 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown911d4ee2009-03-31 14:39:38 +11001314 pd_idx = data_disks - stripe % raid_disks;
1315 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 (*dd_idx)++;
1317 break;
1318 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown911d4ee2009-03-31 14:39:38 +11001319 pd_idx = stripe % raid_disks;
1320 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 (*dd_idx)++;
1322 break;
1323 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown911d4ee2009-03-31 14:39:38 +11001324 pd_idx = data_disks - stripe % raid_disks;
1325 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 break;
1327 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown911d4ee2009-03-31 14:39:38 +11001328 pd_idx = stripe % raid_disks;
1329 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11001331 case ALGORITHM_PARITY_0:
1332 pd_idx = 0;
1333 (*dd_idx)++;
1334 break;
1335 case ALGORITHM_PARITY_N:
1336 pd_idx = data_disks;
1337 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 default:
NeilBrown14f8d262006-01-06 00:20:14 -08001339 printk(KERN_ERR "raid5: unsupported algorithm %d\n",
NeilBrowne183eae2009-03-31 15:20:22 +11001340 algorithm);
NeilBrown99c0fb52009-03-31 14:39:38 +11001341 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07001342 }
1343 break;
1344 case 6:
1345
NeilBrowne183eae2009-03-31 15:20:22 +11001346 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07001347 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown911d4ee2009-03-31 14:39:38 +11001348 pd_idx = raid_disks - 1 - (stripe % raid_disks);
1349 qd_idx = pd_idx + 1;
1350 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11001351 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11001352 qd_idx = 0;
1353 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07001354 (*dd_idx) += 2; /* D D P Q D */
1355 break;
1356 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown911d4ee2009-03-31 14:39:38 +11001357 pd_idx = stripe % raid_disks;
1358 qd_idx = pd_idx + 1;
1359 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11001360 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11001361 qd_idx = 0;
1362 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07001363 (*dd_idx) += 2; /* D D P Q D */
1364 break;
1365 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown911d4ee2009-03-31 14:39:38 +11001366 pd_idx = raid_disks - 1 - (stripe % raid_disks);
1367 qd_idx = (pd_idx + 1) % raid_disks;
1368 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07001369 break;
1370 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown911d4ee2009-03-31 14:39:38 +11001371 pd_idx = stripe % raid_disks;
1372 qd_idx = (pd_idx + 1) % raid_disks;
1373 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07001374 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11001375
1376 case ALGORITHM_PARITY_0:
1377 pd_idx = 0;
1378 qd_idx = 1;
1379 (*dd_idx) += 2;
1380 break;
1381 case ALGORITHM_PARITY_N:
1382 pd_idx = data_disks;
1383 qd_idx = data_disks + 1;
1384 break;
1385
1386 case ALGORITHM_ROTATING_ZERO_RESTART:
1387 /* Exactly the same as RIGHT_ASYMMETRIC, but or
1388 * of blocks for computing Q is different.
1389 */
1390 pd_idx = stripe % raid_disks;
1391 qd_idx = pd_idx + 1;
1392 if (pd_idx == raid_disks-1) {
1393 (*dd_idx)++; /* Q D D D P */
1394 qd_idx = 0;
1395 } else if (*dd_idx >= pd_idx)
1396 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11001397 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11001398 break;
1399
1400 case ALGORITHM_ROTATING_N_RESTART:
1401 /* Same a left_asymmetric, by first stripe is
1402 * D D D P Q rather than
1403 * Q D D D P
1404 */
1405 pd_idx = raid_disks - 1 - ((stripe + 1) % raid_disks);
1406 qd_idx = pd_idx + 1;
1407 if (pd_idx == raid_disks-1) {
1408 (*dd_idx)++; /* Q D D D P */
1409 qd_idx = 0;
1410 } else if (*dd_idx >= pd_idx)
1411 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11001412 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11001413 break;
1414
1415 case ALGORITHM_ROTATING_N_CONTINUE:
1416 /* Same as left_symmetric but Q is before P */
1417 pd_idx = raid_disks - 1 - (stripe % raid_disks);
1418 qd_idx = (pd_idx + raid_disks - 1) % raid_disks;
1419 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
NeilBrown67cc2b82009-03-31 14:39:38 +11001420 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11001421 break;
1422
1423 case ALGORITHM_LEFT_ASYMMETRIC_6:
1424 /* RAID5 left_asymmetric, with Q on last device */
1425 pd_idx = data_disks - stripe % (raid_disks-1);
1426 if (*dd_idx >= pd_idx)
1427 (*dd_idx)++;
1428 qd_idx = raid_disks - 1;
1429 break;
1430
1431 case ALGORITHM_RIGHT_ASYMMETRIC_6:
1432 pd_idx = stripe % (raid_disks-1);
1433 if (*dd_idx >= pd_idx)
1434 (*dd_idx)++;
1435 qd_idx = raid_disks - 1;
1436 break;
1437
1438 case ALGORITHM_LEFT_SYMMETRIC_6:
1439 pd_idx = data_disks - stripe % (raid_disks-1);
1440 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
1441 qd_idx = raid_disks - 1;
1442 break;
1443
1444 case ALGORITHM_RIGHT_SYMMETRIC_6:
1445 pd_idx = stripe % (raid_disks-1);
1446 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
1447 qd_idx = raid_disks - 1;
1448 break;
1449
1450 case ALGORITHM_PARITY_0_6:
1451 pd_idx = 0;
1452 (*dd_idx)++;
1453 qd_idx = raid_disks - 1;
1454 break;
1455
1456
NeilBrown16a53ec2006-06-26 00:27:38 -07001457 default:
NeilBrownd710e132008-10-13 11:55:12 +11001458 printk(KERN_CRIT "raid6: unsupported algorithm %d\n",
NeilBrowne183eae2009-03-31 15:20:22 +11001459 algorithm);
NeilBrown99c0fb52009-03-31 14:39:38 +11001460 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07001461 }
1462 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 }
1464
NeilBrown911d4ee2009-03-31 14:39:38 +11001465 if (sh) {
1466 sh->pd_idx = pd_idx;
1467 sh->qd_idx = qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11001468 sh->ddf_layout = ddf_layout;
NeilBrown911d4ee2009-03-31 14:39:38 +11001469 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 /*
1471 * Finally, compute the new sector number
1472 */
1473 new_sector = (sector_t)stripe * sectors_per_chunk + chunk_offset;
1474 return new_sector;
1475}
1476
1477
NeilBrown784052e2009-03-31 15:19:07 +11001478static sector_t compute_blocknr(struct stripe_head *sh, int i, int previous)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479{
1480 raid5_conf_t *conf = sh->raid_conf;
NeilBrownb875e532006-12-10 02:20:49 -08001481 int raid_disks = sh->disks;
1482 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 sector_t new_sector = sh->sector, check;
NeilBrown784052e2009-03-31 15:19:07 +11001484 int sectors_per_chunk = previous ? (conf->prev_chunk >> 9)
1485 : (conf->chunk_size >> 9);
NeilBrowne183eae2009-03-31 15:20:22 +11001486 int algorithm = previous ? conf->prev_algo
1487 : conf->algorithm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 sector_t stripe;
1489 int chunk_offset;
NeilBrown911d4ee2009-03-31 14:39:38 +11001490 int chunk_number, dummy1, dd_idx = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 sector_t r_sector;
NeilBrown911d4ee2009-03-31 14:39:38 +11001492 struct stripe_head sh2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
NeilBrown16a53ec2006-06-26 00:27:38 -07001494
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 chunk_offset = sector_div(new_sector, sectors_per_chunk);
1496 stripe = new_sector;
1497 BUG_ON(new_sector != stripe);
1498
NeilBrown16a53ec2006-06-26 00:27:38 -07001499 if (i == sh->pd_idx)
1500 return 0;
1501 switch(conf->level) {
1502 case 4: break;
1503 case 5:
NeilBrowne183eae2009-03-31 15:20:22 +11001504 switch (algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 case ALGORITHM_LEFT_ASYMMETRIC:
1506 case ALGORITHM_RIGHT_ASYMMETRIC:
1507 if (i > sh->pd_idx)
1508 i--;
1509 break;
1510 case ALGORITHM_LEFT_SYMMETRIC:
1511 case ALGORITHM_RIGHT_SYMMETRIC:
1512 if (i < sh->pd_idx)
1513 i += raid_disks;
1514 i -= (sh->pd_idx + 1);
1515 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11001516 case ALGORITHM_PARITY_0:
1517 i -= 1;
1518 break;
1519 case ALGORITHM_PARITY_N:
1520 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 default:
NeilBrown14f8d262006-01-06 00:20:14 -08001522 printk(KERN_ERR "raid5: unsupported algorithm %d\n",
NeilBrowne183eae2009-03-31 15:20:22 +11001523 algorithm);
NeilBrown99c0fb52009-03-31 14:39:38 +11001524 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07001525 }
1526 break;
1527 case 6:
NeilBrownd0dabf72009-03-31 14:39:38 +11001528 if (i == sh->qd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07001529 return 0; /* It is the Q disk */
NeilBrowne183eae2009-03-31 15:20:22 +11001530 switch (algorithm) {
NeilBrown16a53ec2006-06-26 00:27:38 -07001531 case ALGORITHM_LEFT_ASYMMETRIC:
1532 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown99c0fb52009-03-31 14:39:38 +11001533 case ALGORITHM_ROTATING_ZERO_RESTART:
1534 case ALGORITHM_ROTATING_N_RESTART:
1535 if (sh->pd_idx == raid_disks-1)
1536 i--; /* Q D D D P */
NeilBrown16a53ec2006-06-26 00:27:38 -07001537 else if (i > sh->pd_idx)
1538 i -= 2; /* D D P Q D */
1539 break;
1540 case ALGORITHM_LEFT_SYMMETRIC:
1541 case ALGORITHM_RIGHT_SYMMETRIC:
1542 if (sh->pd_idx == raid_disks-1)
1543 i--; /* Q D D D P */
1544 else {
1545 /* D D P Q D */
1546 if (i < sh->pd_idx)
1547 i += raid_disks;
1548 i -= (sh->pd_idx + 2);
1549 }
1550 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11001551 case ALGORITHM_PARITY_0:
1552 i -= 2;
1553 break;
1554 case ALGORITHM_PARITY_N:
1555 break;
1556 case ALGORITHM_ROTATING_N_CONTINUE:
1557 if (sh->pd_idx == 0)
1558 i--; /* P D D D Q */
1559 else if (i > sh->pd_idx)
1560 i -= 2; /* D D Q P D */
1561 break;
1562 case ALGORITHM_LEFT_ASYMMETRIC_6:
1563 case ALGORITHM_RIGHT_ASYMMETRIC_6:
1564 if (i > sh->pd_idx)
1565 i--;
1566 break;
1567 case ALGORITHM_LEFT_SYMMETRIC_6:
1568 case ALGORITHM_RIGHT_SYMMETRIC_6:
1569 if (i < sh->pd_idx)
1570 i += data_disks + 1;
1571 i -= (sh->pd_idx + 1);
1572 break;
1573 case ALGORITHM_PARITY_0_6:
1574 i -= 1;
1575 break;
NeilBrown16a53ec2006-06-26 00:27:38 -07001576 default:
NeilBrownd710e132008-10-13 11:55:12 +11001577 printk(KERN_CRIT "raid6: unsupported algorithm %d\n",
NeilBrowne183eae2009-03-31 15:20:22 +11001578 algorithm);
NeilBrown99c0fb52009-03-31 14:39:38 +11001579 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07001580 }
1581 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 }
1583
1584 chunk_number = stripe * data_disks + i;
1585 r_sector = (sector_t)chunk_number * sectors_per_chunk + chunk_offset;
1586
NeilBrown112bf892009-03-31 14:39:38 +11001587 check = raid5_compute_sector(conf, r_sector,
NeilBrown784052e2009-03-31 15:19:07 +11001588 previous, &dummy1, &sh2);
NeilBrown911d4ee2009-03-31 14:39:38 +11001589 if (check != sh->sector || dummy1 != dd_idx || sh2.pd_idx != sh->pd_idx
1590 || sh2.qd_idx != sh->qd_idx) {
NeilBrown14f8d262006-01-06 00:20:14 -08001591 printk(KERN_ERR "compute_blocknr: map not correct\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 return 0;
1593 }
1594 return r_sector;
1595}
1596
1597
1598
1599/*
NeilBrown16a53ec2006-06-26 00:27:38 -07001600 * Copy data between a page in the stripe cache, and one or more bion
1601 * The page could align with the middle of the bio, or there could be
1602 * several bion, each with several bio_vecs, which cover part of the page
1603 * Multiple bion are linked together on bi_next. There may be extras
1604 * at the end of this list. We ignore them.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 */
1606static void copy_data(int frombio, struct bio *bio,
1607 struct page *page,
1608 sector_t sector)
1609{
1610 char *pa = page_address(page);
1611 struct bio_vec *bvl;
1612 int i;
1613 int page_offset;
1614
1615 if (bio->bi_sector >= sector)
1616 page_offset = (signed)(bio->bi_sector - sector) * 512;
1617 else
1618 page_offset = (signed)(sector - bio->bi_sector) * -512;
1619 bio_for_each_segment(bvl, bio, i) {
1620 int len = bio_iovec_idx(bio,i)->bv_len;
1621 int clen;
1622 int b_offset = 0;
1623
1624 if (page_offset < 0) {
1625 b_offset = -page_offset;
1626 page_offset += b_offset;
1627 len -= b_offset;
1628 }
1629
1630 if (len > 0 && page_offset + len > STRIPE_SIZE)
1631 clen = STRIPE_SIZE - page_offset;
1632 else clen = len;
NeilBrown16a53ec2006-06-26 00:27:38 -07001633
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 if (clen > 0) {
1635 char *ba = __bio_kmap_atomic(bio, i, KM_USER0);
1636 if (frombio)
1637 memcpy(pa+page_offset, ba+b_offset, clen);
1638 else
1639 memcpy(ba+b_offset, pa+page_offset, clen);
1640 __bio_kunmap_atomic(ba, KM_USER0);
1641 }
1642 if (clen < len) /* hit end of page */
1643 break;
1644 page_offset += len;
1645 }
1646}
1647
Dan Williams9bc89cd2007-01-02 11:10:44 -07001648#define check_xor() do { \
1649 if (count == MAX_XOR_BLOCKS) { \
1650 xor_blocks(count, STRIPE_SIZE, dest, ptr);\
1651 count = 0; \
1652 } \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 } while(0)
1654
NeilBrown16a53ec2006-06-26 00:27:38 -07001655static void compute_parity6(struct stripe_head *sh, int method)
1656{
NeilBrownbff61972009-03-31 14:33:13 +11001657 raid5_conf_t *conf = sh->raid_conf;
NeilBrownd0dabf72009-03-31 14:39:38 +11001658 int i, pd_idx, qd_idx, d0_idx, disks = sh->disks, count;
NeilBrown67cc2b82009-03-31 14:39:38 +11001659 int syndrome_disks = sh->ddf_layout ? disks : (disks - 2);
NeilBrown16a53ec2006-06-26 00:27:38 -07001660 struct bio *chosen;
1661 /**** FIX THIS: This could be very bad if disks is close to 256 ****/
NeilBrown67cc2b82009-03-31 14:39:38 +11001662 void *ptrs[syndrome_disks+2];
NeilBrown16a53ec2006-06-26 00:27:38 -07001663
NeilBrownd0dabf72009-03-31 14:39:38 +11001664 pd_idx = sh->pd_idx;
1665 qd_idx = sh->qd_idx;
1666 d0_idx = raid6_d0(sh);
NeilBrown16a53ec2006-06-26 00:27:38 -07001667
Dan Williams45b42332007-07-09 11:56:43 -07001668 pr_debug("compute_parity, stripe %llu, method %d\n",
NeilBrown16a53ec2006-06-26 00:27:38 -07001669 (unsigned long long)sh->sector, method);
1670
1671 switch(method) {
1672 case READ_MODIFY_WRITE:
1673 BUG(); /* READ_MODIFY_WRITE N/A for RAID-6 */
1674 case RECONSTRUCT_WRITE:
1675 for (i= disks; i-- ;)
1676 if ( i != pd_idx && i != qd_idx && sh->dev[i].towrite ) {
1677 chosen = sh->dev[i].towrite;
1678 sh->dev[i].towrite = NULL;
1679
1680 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
1681 wake_up(&conf->wait_for_overlap);
1682
Eric Sesterhenn52e5f9d2006-10-03 23:33:23 +02001683 BUG_ON(sh->dev[i].written);
NeilBrown16a53ec2006-06-26 00:27:38 -07001684 sh->dev[i].written = chosen;
1685 }
1686 break;
1687 case CHECK_PARITY:
1688 BUG(); /* Not implemented yet */
1689 }
1690
1691 for (i = disks; i--;)
1692 if (sh->dev[i].written) {
1693 sector_t sector = sh->dev[i].sector;
1694 struct bio *wbi = sh->dev[i].written;
1695 while (wbi && wbi->bi_sector < sector + STRIPE_SECTORS) {
1696 copy_data(1, wbi, sh->dev[i].page, sector);
1697 wbi = r5_next_bio(wbi, sector);
1698 }
1699
1700 set_bit(R5_LOCKED, &sh->dev[i].flags);
1701 set_bit(R5_UPTODATE, &sh->dev[i].flags);
1702 }
1703
NeilBrownd0dabf72009-03-31 14:39:38 +11001704 /* Note that unlike RAID-5, the ordering of the disks matters greatly.*/
NeilBrown67cc2b82009-03-31 14:39:38 +11001705
1706 for (i = 0; i < disks; i++)
1707 ptrs[i] = (void *)raid6_empty_zero_page;
1708
NeilBrownd0dabf72009-03-31 14:39:38 +11001709 count = 0;
1710 i = d0_idx;
1711 do {
NeilBrown67cc2b82009-03-31 14:39:38 +11001712 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
1713
NeilBrownd0dabf72009-03-31 14:39:38 +11001714 ptrs[slot] = page_address(sh->dev[i].page);
NeilBrown67cc2b82009-03-31 14:39:38 +11001715 if (slot < syndrome_disks &&
NeilBrownd0dabf72009-03-31 14:39:38 +11001716 !test_bit(R5_UPTODATE, &sh->dev[i].flags)) {
1717 printk(KERN_ERR "block %d/%d not uptodate "
1718 "on parity calc\n", i, count);
1719 BUG();
1720 }
NeilBrown67cc2b82009-03-31 14:39:38 +11001721
NeilBrownd0dabf72009-03-31 14:39:38 +11001722 i = raid6_next_disk(i, disks);
1723 } while (i != d0_idx);
NeilBrown67cc2b82009-03-31 14:39:38 +11001724 BUG_ON(count != syndrome_disks);
NeilBrown16a53ec2006-06-26 00:27:38 -07001725
NeilBrown67cc2b82009-03-31 14:39:38 +11001726 raid6_call.gen_syndrome(syndrome_disks+2, STRIPE_SIZE, ptrs);
NeilBrown16a53ec2006-06-26 00:27:38 -07001727
1728 switch(method) {
1729 case RECONSTRUCT_WRITE:
1730 set_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
1731 set_bit(R5_UPTODATE, &sh->dev[qd_idx].flags);
1732 set_bit(R5_LOCKED, &sh->dev[pd_idx].flags);
1733 set_bit(R5_LOCKED, &sh->dev[qd_idx].flags);
1734 break;
1735 case UPDATE_PARITY:
1736 set_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
1737 set_bit(R5_UPTODATE, &sh->dev[qd_idx].flags);
1738 break;
1739 }
1740}
1741
1742
1743/* Compute one missing block */
1744static void compute_block_1(struct stripe_head *sh, int dd_idx, int nozero)
1745{
NeilBrownf4168852007-02-28 20:11:53 -08001746 int i, count, disks = sh->disks;
Dan Williams9bc89cd2007-01-02 11:10:44 -07001747 void *ptr[MAX_XOR_BLOCKS], *dest, *p;
NeilBrownd0dabf72009-03-31 14:39:38 +11001748 int qd_idx = sh->qd_idx;
NeilBrown16a53ec2006-06-26 00:27:38 -07001749
Dan Williams45b42332007-07-09 11:56:43 -07001750 pr_debug("compute_block_1, stripe %llu, idx %d\n",
NeilBrown16a53ec2006-06-26 00:27:38 -07001751 (unsigned long long)sh->sector, dd_idx);
1752
1753 if ( dd_idx == qd_idx ) {
1754 /* We're actually computing the Q drive */
1755 compute_parity6(sh, UPDATE_PARITY);
1756 } else {
Dan Williams9bc89cd2007-01-02 11:10:44 -07001757 dest = page_address(sh->dev[dd_idx].page);
1758 if (!nozero) memset(dest, 0, STRIPE_SIZE);
1759 count = 0;
NeilBrown16a53ec2006-06-26 00:27:38 -07001760 for (i = disks ; i--; ) {
1761 if (i == dd_idx || i == qd_idx)
1762 continue;
1763 p = page_address(sh->dev[i].page);
1764 if (test_bit(R5_UPTODATE, &sh->dev[i].flags))
1765 ptr[count++] = p;
1766 else
1767 printk("compute_block() %d, stripe %llu, %d"
1768 " not present\n", dd_idx,
1769 (unsigned long long)sh->sector, i);
1770
1771 check_xor();
1772 }
Dan Williams9bc89cd2007-01-02 11:10:44 -07001773 if (count)
1774 xor_blocks(count, STRIPE_SIZE, dest, ptr);
NeilBrown16a53ec2006-06-26 00:27:38 -07001775 if (!nozero) set_bit(R5_UPTODATE, &sh->dev[dd_idx].flags);
1776 else clear_bit(R5_UPTODATE, &sh->dev[dd_idx].flags);
1777 }
1778}
1779
1780/* Compute two missing blocks */
1781static void compute_block_2(struct stripe_head *sh, int dd_idx1, int dd_idx2)
1782{
NeilBrownf4168852007-02-28 20:11:53 -08001783 int i, count, disks = sh->disks;
NeilBrown67cc2b82009-03-31 14:39:38 +11001784 int syndrome_disks = sh->ddf_layout ? disks : disks-2;
NeilBrownd0dabf72009-03-31 14:39:38 +11001785 int d0_idx = raid6_d0(sh);
1786 int faila = -1, failb = -1;
1787 /**** FIX THIS: This could be very bad if disks is close to 256 ****/
NeilBrown67cc2b82009-03-31 14:39:38 +11001788 void *ptrs[syndrome_disks+2];
NeilBrown16a53ec2006-06-26 00:27:38 -07001789
NeilBrown67cc2b82009-03-31 14:39:38 +11001790 for (i = 0; i < disks ; i++)
1791 ptrs[i] = (void *)raid6_empty_zero_page;
NeilBrownd0dabf72009-03-31 14:39:38 +11001792 count = 0;
1793 i = d0_idx;
1794 do {
NeilBrown67cc2b82009-03-31 14:39:38 +11001795 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
1796
NeilBrownd0dabf72009-03-31 14:39:38 +11001797 ptrs[slot] = page_address(sh->dev[i].page);
NeilBrown67cc2b82009-03-31 14:39:38 +11001798
NeilBrownd0dabf72009-03-31 14:39:38 +11001799 if (i == dd_idx1)
1800 faila = slot;
1801 if (i == dd_idx2)
1802 failb = slot;
1803 i = raid6_next_disk(i, disks);
1804 } while (i != d0_idx);
NeilBrown67cc2b82009-03-31 14:39:38 +11001805 BUG_ON(count != syndrome_disks);
NeilBrown16a53ec2006-06-26 00:27:38 -07001806
1807 BUG_ON(faila == failb);
1808 if ( failb < faila ) { int tmp = faila; faila = failb; failb = tmp; }
1809
Dan Williams45b42332007-07-09 11:56:43 -07001810 pr_debug("compute_block_2, stripe %llu, idx %d,%d (%d,%d)\n",
NeilBrownd0dabf72009-03-31 14:39:38 +11001811 (unsigned long long)sh->sector, dd_idx1, dd_idx2,
1812 faila, failb);
NeilBrown16a53ec2006-06-26 00:27:38 -07001813
NeilBrown67cc2b82009-03-31 14:39:38 +11001814 if (failb == syndrome_disks+1) {
NeilBrown16a53ec2006-06-26 00:27:38 -07001815 /* Q disk is one of the missing disks */
NeilBrown67cc2b82009-03-31 14:39:38 +11001816 if (faila == syndrome_disks) {
NeilBrown16a53ec2006-06-26 00:27:38 -07001817 /* Missing P+Q, just recompute */
1818 compute_parity6(sh, UPDATE_PARITY);
1819 return;
1820 } else {
1821 /* We're missing D+Q; recompute D from P */
NeilBrownd0dabf72009-03-31 14:39:38 +11001822 compute_block_1(sh, ((dd_idx1 == sh->qd_idx) ?
1823 dd_idx2 : dd_idx1),
1824 0);
NeilBrown16a53ec2006-06-26 00:27:38 -07001825 compute_parity6(sh, UPDATE_PARITY); /* Is this necessary? */
1826 return;
1827 }
1828 }
1829
NeilBrownd0dabf72009-03-31 14:39:38 +11001830 /* We're missing D+P or D+D; */
NeilBrown67cc2b82009-03-31 14:39:38 +11001831 if (failb == syndrome_disks) {
NeilBrownd0dabf72009-03-31 14:39:38 +11001832 /* We're missing D+P. */
NeilBrown67cc2b82009-03-31 14:39:38 +11001833 raid6_datap_recov(syndrome_disks+2, STRIPE_SIZE, faila, ptrs);
NeilBrownd0dabf72009-03-31 14:39:38 +11001834 } else {
1835 /* We're missing D+D. */
NeilBrown67cc2b82009-03-31 14:39:38 +11001836 raid6_2data_recov(syndrome_disks+2, STRIPE_SIZE, faila, failb,
1837 ptrs);
NeilBrown16a53ec2006-06-26 00:27:38 -07001838 }
NeilBrownd0dabf72009-03-31 14:39:38 +11001839
1840 /* Both the above update both missing blocks */
1841 set_bit(R5_UPTODATE, &sh->dev[dd_idx1].flags);
1842 set_bit(R5_UPTODATE, &sh->dev[dd_idx2].flags);
NeilBrown16a53ec2006-06-26 00:27:38 -07001843}
1844
Dan Williams600aa102008-06-28 08:32:05 +10001845static void
Dan Williams1fe797e2008-06-28 09:16:30 +10001846schedule_reconstruction5(struct stripe_head *sh, struct stripe_head_state *s,
Dan Williams600aa102008-06-28 08:32:05 +10001847 int rcw, int expand)
Dan Williamse33129d2007-01-02 13:52:30 -07001848{
1849 int i, pd_idx = sh->pd_idx, disks = sh->disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07001850
Dan Williamse33129d2007-01-02 13:52:30 -07001851 if (rcw) {
1852 /* if we are not expanding this is a proper write request, and
1853 * there will be bios with new data to be drained into the
1854 * stripe cache
1855 */
1856 if (!expand) {
Dan Williams600aa102008-06-28 08:32:05 +10001857 sh->reconstruct_state = reconstruct_state_drain_run;
1858 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
1859 } else
1860 sh->reconstruct_state = reconstruct_state_run;
Dan Williamse33129d2007-01-02 13:52:30 -07001861
Dan Williams600aa102008-06-28 08:32:05 +10001862 set_bit(STRIPE_OP_POSTXOR, &s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07001863
1864 for (i = disks; i--; ) {
1865 struct r5dev *dev = &sh->dev[i];
1866
1867 if (dev->towrite) {
1868 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsd8ee0722008-06-28 08:32:06 +10001869 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07001870 if (!expand)
1871 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10001872 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07001873 }
1874 }
Dan Williams600aa102008-06-28 08:32:05 +10001875 if (s->locked + 1 == disks)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07001876 if (!test_and_set_bit(STRIPE_FULL_WRITE, &sh->state))
1877 atomic_inc(&sh->raid_conf->pending_full_writes);
Dan Williamse33129d2007-01-02 13:52:30 -07001878 } else {
1879 BUG_ON(!(test_bit(R5_UPTODATE, &sh->dev[pd_idx].flags) ||
1880 test_bit(R5_Wantcompute, &sh->dev[pd_idx].flags)));
1881
Dan Williamsd8ee0722008-06-28 08:32:06 +10001882 sh->reconstruct_state = reconstruct_state_prexor_drain_run;
Dan Williams600aa102008-06-28 08:32:05 +10001883 set_bit(STRIPE_OP_PREXOR, &s->ops_request);
1884 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
1885 set_bit(STRIPE_OP_POSTXOR, &s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07001886
1887 for (i = disks; i--; ) {
1888 struct r5dev *dev = &sh->dev[i];
1889 if (i == pd_idx)
1890 continue;
1891
Dan Williamse33129d2007-01-02 13:52:30 -07001892 if (dev->towrite &&
1893 (test_bit(R5_UPTODATE, &dev->flags) ||
Dan Williamsd8ee0722008-06-28 08:32:06 +10001894 test_bit(R5_Wantcompute, &dev->flags))) {
1895 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07001896 set_bit(R5_LOCKED, &dev->flags);
1897 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10001898 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07001899 }
1900 }
1901 }
1902
1903 /* keep the parity disk locked while asynchronous operations
1904 * are in flight
1905 */
1906 set_bit(R5_LOCKED, &sh->dev[pd_idx].flags);
1907 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
Dan Williams600aa102008-06-28 08:32:05 +10001908 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07001909
Dan Williams600aa102008-06-28 08:32:05 +10001910 pr_debug("%s: stripe %llu locked: %d ops_request: %lx\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -07001911 __func__, (unsigned long long)sh->sector,
Dan Williams600aa102008-06-28 08:32:05 +10001912 s->locked, s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07001913}
NeilBrown16a53ec2006-06-26 00:27:38 -07001914
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915/*
1916 * Each stripe/dev can have one or more bion attached.
NeilBrown16a53ec2006-06-26 00:27:38 -07001917 * toread/towrite point to the first in a chain.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 * The bi_next chain must be in order.
1919 */
1920static int add_stripe_bio(struct stripe_head *sh, struct bio *bi, int dd_idx, int forwrite)
1921{
1922 struct bio **bip;
1923 raid5_conf_t *conf = sh->raid_conf;
NeilBrown72626682005-09-09 16:23:54 -07001924 int firstwrite=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
Dan Williams45b42332007-07-09 11:56:43 -07001926 pr_debug("adding bh b#%llu to stripe s#%llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 (unsigned long long)bi->bi_sector,
1928 (unsigned long long)sh->sector);
1929
1930
1931 spin_lock(&sh->lock);
1932 spin_lock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07001933 if (forwrite) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 bip = &sh->dev[dd_idx].towrite;
NeilBrown72626682005-09-09 16:23:54 -07001935 if (*bip == NULL && sh->dev[dd_idx].written == NULL)
1936 firstwrite = 1;
1937 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 bip = &sh->dev[dd_idx].toread;
1939 while (*bip && (*bip)->bi_sector < bi->bi_sector) {
1940 if ((*bip)->bi_sector + ((*bip)->bi_size >> 9) > bi->bi_sector)
1941 goto overlap;
1942 bip = & (*bip)->bi_next;
1943 }
1944 if (*bip && (*bip)->bi_sector < bi->bi_sector + ((bi->bi_size)>>9))
1945 goto overlap;
1946
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02001947 BUG_ON(*bip && bi->bi_next && (*bip) != bi->bi_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 if (*bip)
1949 bi->bi_next = *bip;
1950 *bip = bi;
Jens Axboe960e7392008-08-15 10:41:18 +02001951 bi->bi_phys_segments++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 spin_unlock_irq(&conf->device_lock);
1953 spin_unlock(&sh->lock);
1954
Dan Williams45b42332007-07-09 11:56:43 -07001955 pr_debug("added bi b#%llu to stripe s#%llu, disk %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 (unsigned long long)bi->bi_sector,
1957 (unsigned long long)sh->sector, dd_idx);
1958
NeilBrown72626682005-09-09 16:23:54 -07001959 if (conf->mddev->bitmap && firstwrite) {
NeilBrown72626682005-09-09 16:23:54 -07001960 bitmap_startwrite(conf->mddev->bitmap, sh->sector,
1961 STRIPE_SECTORS, 0);
NeilBrownae3c20c2006-07-10 04:44:17 -07001962 sh->bm_seq = conf->seq_flush+1;
NeilBrown72626682005-09-09 16:23:54 -07001963 set_bit(STRIPE_BIT_DELAY, &sh->state);
1964 }
1965
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 if (forwrite) {
1967 /* check if page is covered */
1968 sector_t sector = sh->dev[dd_idx].sector;
1969 for (bi=sh->dev[dd_idx].towrite;
1970 sector < sh->dev[dd_idx].sector + STRIPE_SECTORS &&
1971 bi && bi->bi_sector <= sector;
1972 bi = r5_next_bio(bi, sh->dev[dd_idx].sector)) {
1973 if (bi->bi_sector + (bi->bi_size>>9) >= sector)
1974 sector = bi->bi_sector + (bi->bi_size>>9);
1975 }
1976 if (sector >= sh->dev[dd_idx].sector + STRIPE_SECTORS)
1977 set_bit(R5_OVERWRITE, &sh->dev[dd_idx].flags);
1978 }
1979 return 1;
1980
1981 overlap:
1982 set_bit(R5_Overlap, &sh->dev[dd_idx].flags);
1983 spin_unlock_irq(&conf->device_lock);
1984 spin_unlock(&sh->lock);
1985 return 0;
1986}
1987
NeilBrown29269552006-03-27 01:18:10 -08001988static void end_reshape(raid5_conf_t *conf);
1989
NeilBrown16a53ec2006-06-26 00:27:38 -07001990static int page_is_zero(struct page *p)
1991{
1992 char *a = page_address(p);
1993 return ((*(u32*)a) == 0 &&
1994 memcmp(a, a+4, STRIPE_SIZE-4)==0);
1995}
1996
NeilBrown911d4ee2009-03-31 14:39:38 +11001997static void stripe_set_idx(sector_t stripe, raid5_conf_t *conf, int previous,
1998 struct stripe_head *sh)
NeilBrownccfcc3c2006-03-27 01:18:09 -08001999{
NeilBrown784052e2009-03-31 15:19:07 +11002000 int sectors_per_chunk =
2001 previous ? (conf->prev_chunk >> 9)
2002 : (conf->chunk_size >> 9);
NeilBrown911d4ee2009-03-31 14:39:38 +11002003 int dd_idx;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07002004 int chunk_offset = sector_div(stripe, sectors_per_chunk);
NeilBrown112bf892009-03-31 14:39:38 +11002005 int disks = previous ? conf->previous_raid_disks : conf->raid_disks;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07002006
NeilBrown112bf892009-03-31 14:39:38 +11002007 raid5_compute_sector(conf,
2008 stripe * (disks - conf->max_degraded)
NeilBrownb875e532006-12-10 02:20:49 -08002009 *sectors_per_chunk + chunk_offset,
NeilBrown112bf892009-03-31 14:39:38 +11002010 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11002011 &dd_idx, sh);
NeilBrownccfcc3c2006-03-27 01:18:09 -08002012}
2013
Dan Williamsa4456852007-07-09 11:56:43 -07002014static void
Dan Williams1fe797e2008-06-28 09:16:30 +10002015handle_failed_stripe(raid5_conf_t *conf, struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07002016 struct stripe_head_state *s, int disks,
2017 struct bio **return_bi)
2018{
2019 int i;
2020 for (i = disks; i--; ) {
2021 struct bio *bi;
2022 int bitmap_end = 0;
2023
2024 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
2025 mdk_rdev_t *rdev;
2026 rcu_read_lock();
2027 rdev = rcu_dereference(conf->disks[i].rdev);
2028 if (rdev && test_bit(In_sync, &rdev->flags))
2029 /* multiple read failures in one stripe */
2030 md_error(conf->mddev, rdev);
2031 rcu_read_unlock();
2032 }
2033 spin_lock_irq(&conf->device_lock);
2034 /* fail all writes first */
2035 bi = sh->dev[i].towrite;
2036 sh->dev[i].towrite = NULL;
2037 if (bi) {
2038 s->to_write--;
2039 bitmap_end = 1;
2040 }
2041
2042 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
2043 wake_up(&conf->wait_for_overlap);
2044
2045 while (bi && bi->bi_sector <
2046 sh->dev[i].sector + STRIPE_SECTORS) {
2047 struct bio *nextbi = r5_next_bio(bi, sh->dev[i].sector);
2048 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Jens Axboe960e7392008-08-15 10:41:18 +02002049 if (!raid5_dec_bi_phys_segments(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002050 md_write_end(conf->mddev);
2051 bi->bi_next = *return_bi;
2052 *return_bi = bi;
2053 }
2054 bi = nextbi;
2055 }
2056 /* and fail all 'written' */
2057 bi = sh->dev[i].written;
2058 sh->dev[i].written = NULL;
2059 if (bi) bitmap_end = 1;
2060 while (bi && bi->bi_sector <
2061 sh->dev[i].sector + STRIPE_SECTORS) {
2062 struct bio *bi2 = r5_next_bio(bi, sh->dev[i].sector);
2063 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Jens Axboe960e7392008-08-15 10:41:18 +02002064 if (!raid5_dec_bi_phys_segments(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002065 md_write_end(conf->mddev);
2066 bi->bi_next = *return_bi;
2067 *return_bi = bi;
2068 }
2069 bi = bi2;
2070 }
2071
Dan Williamsb5e98d62007-01-02 13:52:31 -07002072 /* fail any reads if this device is non-operational and
2073 * the data has not reached the cache yet.
2074 */
2075 if (!test_bit(R5_Wantfill, &sh->dev[i].flags) &&
2076 (!test_bit(R5_Insync, &sh->dev[i].flags) ||
2077 test_bit(R5_ReadError, &sh->dev[i].flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07002078 bi = sh->dev[i].toread;
2079 sh->dev[i].toread = NULL;
2080 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
2081 wake_up(&conf->wait_for_overlap);
2082 if (bi) s->to_read--;
2083 while (bi && bi->bi_sector <
2084 sh->dev[i].sector + STRIPE_SECTORS) {
2085 struct bio *nextbi =
2086 r5_next_bio(bi, sh->dev[i].sector);
2087 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Jens Axboe960e7392008-08-15 10:41:18 +02002088 if (!raid5_dec_bi_phys_segments(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002089 bi->bi_next = *return_bi;
2090 *return_bi = bi;
2091 }
2092 bi = nextbi;
2093 }
2094 }
2095 spin_unlock_irq(&conf->device_lock);
2096 if (bitmap_end)
2097 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
2098 STRIPE_SECTORS, 0, 0);
2099 }
2100
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002101 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
2102 if (atomic_dec_and_test(&conf->pending_full_writes))
2103 md_wakeup_thread(conf->mddev->thread);
Dan Williamsa4456852007-07-09 11:56:43 -07002104}
2105
Dan Williams1fe797e2008-06-28 09:16:30 +10002106/* fetch_block5 - checks the given member device to see if its data needs
2107 * to be read or computed to satisfy a request.
2108 *
2109 * Returns 1 when no more member devices need to be checked, otherwise returns
2110 * 0 to tell the loop in handle_stripe_fill5 to continue
Dan Williamsf38e1212007-01-02 13:52:30 -07002111 */
Dan Williams1fe797e2008-06-28 09:16:30 +10002112static int fetch_block5(struct stripe_head *sh, struct stripe_head_state *s,
2113 int disk_idx, int disks)
Dan Williamsf38e1212007-01-02 13:52:30 -07002114{
2115 struct r5dev *dev = &sh->dev[disk_idx];
2116 struct r5dev *failed_dev = &sh->dev[s->failed_num];
2117
Dan Williamsf38e1212007-01-02 13:52:30 -07002118 /* is the data in this block needed, and can we get it? */
2119 if (!test_bit(R5_LOCKED, &dev->flags) &&
Dan Williams1fe797e2008-06-28 09:16:30 +10002120 !test_bit(R5_UPTODATE, &dev->flags) &&
2121 (dev->toread ||
2122 (dev->towrite && !test_bit(R5_OVERWRITE, &dev->flags)) ||
2123 s->syncing || s->expanding ||
2124 (s->failed &&
2125 (failed_dev->toread ||
2126 (failed_dev->towrite &&
2127 !test_bit(R5_OVERWRITE, &failed_dev->flags)))))) {
Dan Williams976ea8d2008-06-28 08:32:03 +10002128 /* We would like to get this block, possibly by computing it,
2129 * otherwise read it if the backing disk is insync
Dan Williamsf38e1212007-01-02 13:52:30 -07002130 */
2131 if ((s->uptodate == disks - 1) &&
Dan Williamsecc65c92008-06-28 08:31:57 +10002132 (s->failed && disk_idx == s->failed_num)) {
Dan Williams976ea8d2008-06-28 08:32:03 +10002133 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
2134 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
Dan Williamsf38e1212007-01-02 13:52:30 -07002135 set_bit(R5_Wantcompute, &dev->flags);
2136 sh->ops.target = disk_idx;
2137 s->req_compute = 1;
Dan Williamsf38e1212007-01-02 13:52:30 -07002138 /* Careful: from this point on 'uptodate' is in the eye
2139 * of raid5_run_ops which services 'compute' operations
2140 * before writes. R5_Wantcompute flags a block that will
2141 * be R5_UPTODATE by the time it is needed for a
2142 * subsequent operation.
2143 */
2144 s->uptodate++;
Dan Williams1fe797e2008-06-28 09:16:30 +10002145 return 1; /* uptodate + compute == disks */
Dan Williams7a1fc532008-07-10 04:54:57 -07002146 } else if (test_bit(R5_Insync, &dev->flags)) {
Dan Williamsf38e1212007-01-02 13:52:30 -07002147 set_bit(R5_LOCKED, &dev->flags);
2148 set_bit(R5_Wantread, &dev->flags);
Dan Williamsf38e1212007-01-02 13:52:30 -07002149 s->locked++;
2150 pr_debug("Reading block %d (sync=%d)\n", disk_idx,
2151 s->syncing);
2152 }
2153 }
2154
Dan Williams1fe797e2008-06-28 09:16:30 +10002155 return 0;
Dan Williamsf38e1212007-01-02 13:52:30 -07002156}
2157
Dan Williams1fe797e2008-06-28 09:16:30 +10002158/**
2159 * handle_stripe_fill5 - read or compute data to satisfy pending requests.
2160 */
2161static void handle_stripe_fill5(struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07002162 struct stripe_head_state *s, int disks)
2163{
2164 int i;
Dan Williamsf38e1212007-01-02 13:52:30 -07002165
Dan Williamsf38e1212007-01-02 13:52:30 -07002166 /* look for blocks to read/compute, skip this if a compute
2167 * is already in flight, or if the stripe contents are in the
2168 * midst of changing due to a write
2169 */
Dan Williams976ea8d2008-06-28 08:32:03 +10002170 if (!test_bit(STRIPE_COMPUTE_RUN, &sh->state) && !sh->check_state &&
Dan Williams1fe797e2008-06-28 09:16:30 +10002171 !sh->reconstruct_state)
Dan Williamsf38e1212007-01-02 13:52:30 -07002172 for (i = disks; i--; )
Dan Williams1fe797e2008-06-28 09:16:30 +10002173 if (fetch_block5(sh, s, i, disks))
Dan Williamsf38e1212007-01-02 13:52:30 -07002174 break;
Dan Williamsa4456852007-07-09 11:56:43 -07002175 set_bit(STRIPE_HANDLE, &sh->state);
2176}
2177
Dan Williams1fe797e2008-06-28 09:16:30 +10002178static void handle_stripe_fill6(struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07002179 struct stripe_head_state *s, struct r6_state *r6s,
2180 int disks)
2181{
2182 int i;
2183 for (i = disks; i--; ) {
2184 struct r5dev *dev = &sh->dev[i];
2185 if (!test_bit(R5_LOCKED, &dev->flags) &&
2186 !test_bit(R5_UPTODATE, &dev->flags) &&
2187 (dev->toread || (dev->towrite &&
2188 !test_bit(R5_OVERWRITE, &dev->flags)) ||
2189 s->syncing || s->expanding ||
2190 (s->failed >= 1 &&
2191 (sh->dev[r6s->failed_num[0]].toread ||
2192 s->to_write)) ||
2193 (s->failed >= 2 &&
2194 (sh->dev[r6s->failed_num[1]].toread ||
2195 s->to_write)))) {
2196 /* we would like to get this block, possibly
2197 * by computing it, but we might not be able to
2198 */
Dan Williamsc3378692008-06-05 22:45:54 -07002199 if ((s->uptodate == disks - 1) &&
2200 (s->failed && (i == r6s->failed_num[0] ||
2201 i == r6s->failed_num[1]))) {
Dan Williams45b42332007-07-09 11:56:43 -07002202 pr_debug("Computing stripe %llu block %d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002203 (unsigned long long)sh->sector, i);
2204 compute_block_1(sh, i, 0);
2205 s->uptodate++;
2206 } else if ( s->uptodate == disks-2 && s->failed >= 2 ) {
2207 /* Computing 2-failure is *very* expensive; only
2208 * do it if failed >= 2
2209 */
2210 int other;
2211 for (other = disks; other--; ) {
2212 if (other == i)
2213 continue;
2214 if (!test_bit(R5_UPTODATE,
2215 &sh->dev[other].flags))
2216 break;
2217 }
2218 BUG_ON(other < 0);
Dan Williams45b42332007-07-09 11:56:43 -07002219 pr_debug("Computing stripe %llu blocks %d,%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002220 (unsigned long long)sh->sector,
2221 i, other);
2222 compute_block_2(sh, i, other);
2223 s->uptodate += 2;
2224 } else if (test_bit(R5_Insync, &dev->flags)) {
2225 set_bit(R5_LOCKED, &dev->flags);
2226 set_bit(R5_Wantread, &dev->flags);
2227 s->locked++;
Dan Williams45b42332007-07-09 11:56:43 -07002228 pr_debug("Reading block %d (sync=%d)\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002229 i, s->syncing);
2230 }
2231 }
2232 }
2233 set_bit(STRIPE_HANDLE, &sh->state);
2234}
2235
2236
Dan Williams1fe797e2008-06-28 09:16:30 +10002237/* handle_stripe_clean_event
Dan Williamsa4456852007-07-09 11:56:43 -07002238 * any written block on an uptodate or failed drive can be returned.
2239 * Note that if we 'wrote' to a failed drive, it will be UPTODATE, but
2240 * never LOCKED, so we don't need to test 'failed' directly.
2241 */
Dan Williams1fe797e2008-06-28 09:16:30 +10002242static void handle_stripe_clean_event(raid5_conf_t *conf,
Dan Williamsa4456852007-07-09 11:56:43 -07002243 struct stripe_head *sh, int disks, struct bio **return_bi)
2244{
2245 int i;
2246 struct r5dev *dev;
2247
2248 for (i = disks; i--; )
2249 if (sh->dev[i].written) {
2250 dev = &sh->dev[i];
2251 if (!test_bit(R5_LOCKED, &dev->flags) &&
2252 test_bit(R5_UPTODATE, &dev->flags)) {
2253 /* We can return any write requests */
2254 struct bio *wbi, *wbi2;
2255 int bitmap_end = 0;
Dan Williams45b42332007-07-09 11:56:43 -07002256 pr_debug("Return write for disc %d\n", i);
Dan Williamsa4456852007-07-09 11:56:43 -07002257 spin_lock_irq(&conf->device_lock);
2258 wbi = dev->written;
2259 dev->written = NULL;
2260 while (wbi && wbi->bi_sector <
2261 dev->sector + STRIPE_SECTORS) {
2262 wbi2 = r5_next_bio(wbi, dev->sector);
Jens Axboe960e7392008-08-15 10:41:18 +02002263 if (!raid5_dec_bi_phys_segments(wbi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002264 md_write_end(conf->mddev);
2265 wbi->bi_next = *return_bi;
2266 *return_bi = wbi;
2267 }
2268 wbi = wbi2;
2269 }
2270 if (dev->towrite == NULL)
2271 bitmap_end = 1;
2272 spin_unlock_irq(&conf->device_lock);
2273 if (bitmap_end)
2274 bitmap_endwrite(conf->mddev->bitmap,
2275 sh->sector,
2276 STRIPE_SECTORS,
2277 !test_bit(STRIPE_DEGRADED, &sh->state),
2278 0);
2279 }
2280 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002281
2282 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
2283 if (atomic_dec_and_test(&conf->pending_full_writes))
2284 md_wakeup_thread(conf->mddev->thread);
Dan Williamsa4456852007-07-09 11:56:43 -07002285}
2286
Dan Williams1fe797e2008-06-28 09:16:30 +10002287static void handle_stripe_dirtying5(raid5_conf_t *conf,
Dan Williamsa4456852007-07-09 11:56:43 -07002288 struct stripe_head *sh, struct stripe_head_state *s, int disks)
2289{
2290 int rmw = 0, rcw = 0, i;
2291 for (i = disks; i--; ) {
2292 /* would I have to read this buffer for read_modify_write */
2293 struct r5dev *dev = &sh->dev[i];
2294 if ((dev->towrite || i == sh->pd_idx) &&
2295 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002296 !(test_bit(R5_UPTODATE, &dev->flags) ||
2297 test_bit(R5_Wantcompute, &dev->flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07002298 if (test_bit(R5_Insync, &dev->flags))
2299 rmw++;
2300 else
2301 rmw += 2*disks; /* cannot read it */
2302 }
2303 /* Would I have to read this buffer for reconstruct_write */
2304 if (!test_bit(R5_OVERWRITE, &dev->flags) && i != sh->pd_idx &&
2305 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002306 !(test_bit(R5_UPTODATE, &dev->flags) ||
2307 test_bit(R5_Wantcompute, &dev->flags))) {
2308 if (test_bit(R5_Insync, &dev->flags)) rcw++;
Dan Williamsa4456852007-07-09 11:56:43 -07002309 else
2310 rcw += 2*disks;
2311 }
2312 }
Dan Williams45b42332007-07-09 11:56:43 -07002313 pr_debug("for sector %llu, rmw=%d rcw=%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002314 (unsigned long long)sh->sector, rmw, rcw);
2315 set_bit(STRIPE_HANDLE, &sh->state);
2316 if (rmw < rcw && rmw > 0)
2317 /* prefer read-modify-write, but need to get some data */
2318 for (i = disks; i--; ) {
2319 struct r5dev *dev = &sh->dev[i];
2320 if ((dev->towrite || i == sh->pd_idx) &&
2321 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002322 !(test_bit(R5_UPTODATE, &dev->flags) ||
2323 test_bit(R5_Wantcompute, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07002324 test_bit(R5_Insync, &dev->flags)) {
2325 if (
2326 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07002327 pr_debug("Read_old block "
Dan Williamsa4456852007-07-09 11:56:43 -07002328 "%d for r-m-w\n", i);
2329 set_bit(R5_LOCKED, &dev->flags);
2330 set_bit(R5_Wantread, &dev->flags);
2331 s->locked++;
2332 } else {
2333 set_bit(STRIPE_DELAYED, &sh->state);
2334 set_bit(STRIPE_HANDLE, &sh->state);
2335 }
2336 }
2337 }
2338 if (rcw <= rmw && rcw > 0)
2339 /* want reconstruct write, but need to get some data */
2340 for (i = disks; i--; ) {
2341 struct r5dev *dev = &sh->dev[i];
2342 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
2343 i != sh->pd_idx &&
2344 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002345 !(test_bit(R5_UPTODATE, &dev->flags) ||
2346 test_bit(R5_Wantcompute, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07002347 test_bit(R5_Insync, &dev->flags)) {
2348 if (
2349 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07002350 pr_debug("Read_old block "
Dan Williamsa4456852007-07-09 11:56:43 -07002351 "%d for Reconstruct\n", i);
2352 set_bit(R5_LOCKED, &dev->flags);
2353 set_bit(R5_Wantread, &dev->flags);
2354 s->locked++;
2355 } else {
2356 set_bit(STRIPE_DELAYED, &sh->state);
2357 set_bit(STRIPE_HANDLE, &sh->state);
2358 }
2359 }
2360 }
2361 /* now if nothing is locked, and if we have enough data,
2362 * we can start a write request
2363 */
Dan Williamsf38e1212007-01-02 13:52:30 -07002364 /* since handle_stripe can be called at any time we need to handle the
2365 * case where a compute block operation has been submitted and then a
2366 * subsequent call wants to start a write request. raid5_run_ops only
2367 * handles the case where compute block and postxor are requested
2368 * simultaneously. If this is not the case then new writes need to be
2369 * held off until the compute completes.
2370 */
Dan Williams976ea8d2008-06-28 08:32:03 +10002371 if ((s->req_compute || !test_bit(STRIPE_COMPUTE_RUN, &sh->state)) &&
2372 (s->locked == 0 && (rcw == 0 || rmw == 0) &&
2373 !test_bit(STRIPE_BIT_DELAY, &sh->state)))
Dan Williams1fe797e2008-06-28 09:16:30 +10002374 schedule_reconstruction5(sh, s, rcw == 0, 0);
Dan Williamsa4456852007-07-09 11:56:43 -07002375}
2376
Dan Williams1fe797e2008-06-28 09:16:30 +10002377static void handle_stripe_dirtying6(raid5_conf_t *conf,
Dan Williamsa4456852007-07-09 11:56:43 -07002378 struct stripe_head *sh, struct stripe_head_state *s,
2379 struct r6_state *r6s, int disks)
2380{
2381 int rcw = 0, must_compute = 0, pd_idx = sh->pd_idx, i;
NeilBrown34e04e82009-03-31 15:10:16 +11002382 int qd_idx = sh->qd_idx;
Dan Williamsa4456852007-07-09 11:56:43 -07002383 for (i = disks; i--; ) {
2384 struct r5dev *dev = &sh->dev[i];
2385 /* Would I have to read this buffer for reconstruct_write */
2386 if (!test_bit(R5_OVERWRITE, &dev->flags)
2387 && i != pd_idx && i != qd_idx
2388 && (!test_bit(R5_LOCKED, &dev->flags)
2389 ) &&
2390 !test_bit(R5_UPTODATE, &dev->flags)) {
2391 if (test_bit(R5_Insync, &dev->flags)) rcw++;
2392 else {
Dan Williams45b42332007-07-09 11:56:43 -07002393 pr_debug("raid6: must_compute: "
Dan Williamsa4456852007-07-09 11:56:43 -07002394 "disk %d flags=%#lx\n", i, dev->flags);
2395 must_compute++;
2396 }
2397 }
2398 }
Dan Williams45b42332007-07-09 11:56:43 -07002399 pr_debug("for sector %llu, rcw=%d, must_compute=%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002400 (unsigned long long)sh->sector, rcw, must_compute);
2401 set_bit(STRIPE_HANDLE, &sh->state);
2402
2403 if (rcw > 0)
2404 /* want reconstruct write, but need to get some data */
2405 for (i = disks; i--; ) {
2406 struct r5dev *dev = &sh->dev[i];
2407 if (!test_bit(R5_OVERWRITE, &dev->flags)
2408 && !(s->failed == 0 && (i == pd_idx || i == qd_idx))
2409 && !test_bit(R5_LOCKED, &dev->flags) &&
2410 !test_bit(R5_UPTODATE, &dev->flags) &&
2411 test_bit(R5_Insync, &dev->flags)) {
2412 if (
2413 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07002414 pr_debug("Read_old stripe %llu "
Dan Williamsa4456852007-07-09 11:56:43 -07002415 "block %d for Reconstruct\n",
2416 (unsigned long long)sh->sector, i);
2417 set_bit(R5_LOCKED, &dev->flags);
2418 set_bit(R5_Wantread, &dev->flags);
2419 s->locked++;
2420 } else {
Dan Williams45b42332007-07-09 11:56:43 -07002421 pr_debug("Request delayed stripe %llu "
Dan Williamsa4456852007-07-09 11:56:43 -07002422 "block %d for Reconstruct\n",
2423 (unsigned long long)sh->sector, i);
2424 set_bit(STRIPE_DELAYED, &sh->state);
2425 set_bit(STRIPE_HANDLE, &sh->state);
2426 }
2427 }
2428 }
2429 /* now if nothing is locked, and if we have enough data, we can start a
2430 * write request
2431 */
2432 if (s->locked == 0 && rcw == 0 &&
2433 !test_bit(STRIPE_BIT_DELAY, &sh->state)) {
2434 if (must_compute > 0) {
2435 /* We have failed blocks and need to compute them */
2436 switch (s->failed) {
2437 case 0:
2438 BUG();
2439 case 1:
2440 compute_block_1(sh, r6s->failed_num[0], 0);
2441 break;
2442 case 2:
2443 compute_block_2(sh, r6s->failed_num[0],
2444 r6s->failed_num[1]);
2445 break;
2446 default: /* This request should have been failed? */
2447 BUG();
2448 }
2449 }
2450
Dan Williams45b42332007-07-09 11:56:43 -07002451 pr_debug("Computing parity for stripe %llu\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002452 (unsigned long long)sh->sector);
2453 compute_parity6(sh, RECONSTRUCT_WRITE);
2454 /* now every locked buffer is ready to be written */
2455 for (i = disks; i--; )
2456 if (test_bit(R5_LOCKED, &sh->dev[i].flags)) {
Dan Williams45b42332007-07-09 11:56:43 -07002457 pr_debug("Writing stripe %llu block %d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002458 (unsigned long long)sh->sector, i);
2459 s->locked++;
2460 set_bit(R5_Wantwrite, &sh->dev[i].flags);
2461 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002462 if (s->locked == disks)
2463 if (!test_and_set_bit(STRIPE_FULL_WRITE, &sh->state))
2464 atomic_inc(&conf->pending_full_writes);
Dan Williamsa4456852007-07-09 11:56:43 -07002465 /* after a RECONSTRUCT_WRITE, the stripe MUST be in-sync */
2466 set_bit(STRIPE_INSYNC, &sh->state);
2467
2468 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
2469 atomic_dec(&conf->preread_active_stripes);
2470 if (atomic_read(&conf->preread_active_stripes) <
2471 IO_THRESHOLD)
2472 md_wakeup_thread(conf->mddev->thread);
2473 }
2474 }
2475}
2476
2477static void handle_parity_checks5(raid5_conf_t *conf, struct stripe_head *sh,
2478 struct stripe_head_state *s, int disks)
2479{
Dan Williamsecc65c92008-06-28 08:31:57 +10002480 struct r5dev *dev = NULL;
Dan Williamse89f8962007-01-02 13:52:31 -07002481
Dan Williamsbd2ab672008-04-10 21:29:27 -07002482 set_bit(STRIPE_HANDLE, &sh->state);
2483
Dan Williamsecc65c92008-06-28 08:31:57 +10002484 switch (sh->check_state) {
2485 case check_state_idle:
2486 /* start a new check operation if there are no failures */
Dan Williamsbd2ab672008-04-10 21:29:27 -07002487 if (s->failed == 0) {
Dan Williamsbd2ab672008-04-10 21:29:27 -07002488 BUG_ON(s->uptodate != disks);
Dan Williamsecc65c92008-06-28 08:31:57 +10002489 sh->check_state = check_state_run;
2490 set_bit(STRIPE_OP_CHECK, &s->ops_request);
Dan Williamsbd2ab672008-04-10 21:29:27 -07002491 clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
Dan Williamsbd2ab672008-04-10 21:29:27 -07002492 s->uptodate--;
Dan Williamsecc65c92008-06-28 08:31:57 +10002493 break;
Dan Williamsbd2ab672008-04-10 21:29:27 -07002494 }
Dan Williamsa4456852007-07-09 11:56:43 -07002495 dev = &sh->dev[s->failed_num];
Dan Williamsecc65c92008-06-28 08:31:57 +10002496 /* fall through */
2497 case check_state_compute_result:
2498 sh->check_state = check_state_idle;
2499 if (!dev)
2500 dev = &sh->dev[sh->pd_idx];
2501
2502 /* check that a write has not made the stripe insync */
2503 if (test_bit(STRIPE_INSYNC, &sh->state))
2504 break;
2505
2506 /* either failed parity check, or recovery is happening */
Dan Williamsa4456852007-07-09 11:56:43 -07002507 BUG_ON(!test_bit(R5_UPTODATE, &dev->flags));
2508 BUG_ON(s->uptodate != disks);
2509
2510 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsecc65c92008-06-28 08:31:57 +10002511 s->locked++;
Dan Williamsa4456852007-07-09 11:56:43 -07002512 set_bit(R5_Wantwrite, &dev->flags);
Dan Williams830ea012007-01-02 13:52:31 -07002513
Dan Williamsa4456852007-07-09 11:56:43 -07002514 clear_bit(STRIPE_DEGRADED, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07002515 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10002516 break;
2517 case check_state_run:
2518 break; /* we will be called again upon completion */
2519 case check_state_check_result:
2520 sh->check_state = check_state_idle;
2521
2522 /* if a failure occurred during the check operation, leave
2523 * STRIPE_INSYNC not set and let the stripe be handled again
2524 */
2525 if (s->failed)
2526 break;
2527
2528 /* handle a successful check operation, if parity is correct
2529 * we are done. Otherwise update the mismatch count and repair
2530 * parity if !MD_RECOVERY_CHECK
2531 */
2532 if (sh->ops.zero_sum_result == 0)
2533 /* parity is correct (on disc,
2534 * not in buffer any more)
2535 */
2536 set_bit(STRIPE_INSYNC, &sh->state);
2537 else {
2538 conf->mddev->resync_mismatches += STRIPE_SECTORS;
2539 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
2540 /* don't try to repair!! */
2541 set_bit(STRIPE_INSYNC, &sh->state);
2542 else {
2543 sh->check_state = check_state_compute_run;
Dan Williams976ea8d2008-06-28 08:32:03 +10002544 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10002545 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
2546 set_bit(R5_Wantcompute,
2547 &sh->dev[sh->pd_idx].flags);
2548 sh->ops.target = sh->pd_idx;
2549 s->uptodate++;
2550 }
2551 }
2552 break;
2553 case check_state_compute_run:
2554 break;
2555 default:
2556 printk(KERN_ERR "%s: unknown check_state: %d sector: %llu\n",
2557 __func__, sh->check_state,
2558 (unsigned long long) sh->sector);
2559 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07002560 }
2561}
2562
2563
2564static void handle_parity_checks6(raid5_conf_t *conf, struct stripe_head *sh,
2565 struct stripe_head_state *s,
2566 struct r6_state *r6s, struct page *tmp_page,
2567 int disks)
2568{
2569 int update_p = 0, update_q = 0;
2570 struct r5dev *dev;
2571 int pd_idx = sh->pd_idx;
NeilBrown34e04e82009-03-31 15:10:16 +11002572 int qd_idx = sh->qd_idx;
Dan Williamsa4456852007-07-09 11:56:43 -07002573
2574 set_bit(STRIPE_HANDLE, &sh->state);
2575
2576 BUG_ON(s->failed > 2);
2577 BUG_ON(s->uptodate < disks);
2578 /* Want to check and possibly repair P and Q.
2579 * However there could be one 'failed' device, in which
2580 * case we can only check one of them, possibly using the
2581 * other to generate missing data
2582 */
2583
2584 /* If !tmp_page, we cannot do the calculations,
2585 * but as we have set STRIPE_HANDLE, we will soon be called
2586 * by stripe_handle with a tmp_page - just wait until then.
2587 */
2588 if (tmp_page) {
2589 if (s->failed == r6s->q_failed) {
2590 /* The only possible failed device holds 'Q', so it
2591 * makes sense to check P (If anything else were failed,
2592 * we would have used P to recreate it).
2593 */
2594 compute_block_1(sh, pd_idx, 1);
2595 if (!page_is_zero(sh->dev[pd_idx].page)) {
2596 compute_block_1(sh, pd_idx, 0);
2597 update_p = 1;
2598 }
2599 }
2600 if (!r6s->q_failed && s->failed < 2) {
2601 /* q is not failed, and we didn't use it to generate
2602 * anything, so it makes sense to check it
2603 */
2604 memcpy(page_address(tmp_page),
2605 page_address(sh->dev[qd_idx].page),
2606 STRIPE_SIZE);
2607 compute_parity6(sh, UPDATE_PARITY);
2608 if (memcmp(page_address(tmp_page),
2609 page_address(sh->dev[qd_idx].page),
2610 STRIPE_SIZE) != 0) {
2611 clear_bit(STRIPE_INSYNC, &sh->state);
2612 update_q = 1;
2613 }
2614 }
2615 if (update_p || update_q) {
2616 conf->mddev->resync_mismatches += STRIPE_SECTORS;
2617 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
2618 /* don't try to repair!! */
2619 update_p = update_q = 0;
2620 }
2621
2622 /* now write out any block on a failed drive,
2623 * or P or Q if they need it
2624 */
2625
2626 if (s->failed == 2) {
2627 dev = &sh->dev[r6s->failed_num[1]];
2628 s->locked++;
2629 set_bit(R5_LOCKED, &dev->flags);
2630 set_bit(R5_Wantwrite, &dev->flags);
2631 }
2632 if (s->failed >= 1) {
2633 dev = &sh->dev[r6s->failed_num[0]];
2634 s->locked++;
2635 set_bit(R5_LOCKED, &dev->flags);
2636 set_bit(R5_Wantwrite, &dev->flags);
2637 }
2638
2639 if (update_p) {
2640 dev = &sh->dev[pd_idx];
2641 s->locked++;
2642 set_bit(R5_LOCKED, &dev->flags);
2643 set_bit(R5_Wantwrite, &dev->flags);
2644 }
2645 if (update_q) {
2646 dev = &sh->dev[qd_idx];
2647 s->locked++;
2648 set_bit(R5_LOCKED, &dev->flags);
2649 set_bit(R5_Wantwrite, &dev->flags);
2650 }
2651 clear_bit(STRIPE_DEGRADED, &sh->state);
2652
2653 set_bit(STRIPE_INSYNC, &sh->state);
2654 }
2655}
2656
2657static void handle_stripe_expansion(raid5_conf_t *conf, struct stripe_head *sh,
2658 struct r6_state *r6s)
2659{
2660 int i;
2661
2662 /* We have read all the blocks in this stripe and now we need to
2663 * copy some of them into a target stripe for expand.
2664 */
Dan Williamsf0a50d32007-01-02 13:52:31 -07002665 struct dma_async_tx_descriptor *tx = NULL;
Dan Williamsa4456852007-07-09 11:56:43 -07002666 clear_bit(STRIPE_EXPAND_SOURCE, &sh->state);
2667 for (i = 0; i < sh->disks; i++)
NeilBrown34e04e82009-03-31 15:10:16 +11002668 if (i != sh->pd_idx && i != sh->qd_idx) {
NeilBrown911d4ee2009-03-31 14:39:38 +11002669 int dd_idx, j;
Dan Williamsa4456852007-07-09 11:56:43 -07002670 struct stripe_head *sh2;
2671
NeilBrown784052e2009-03-31 15:19:07 +11002672 sector_t bn = compute_blocknr(sh, i, 1);
NeilBrown911d4ee2009-03-31 14:39:38 +11002673 sector_t s = raid5_compute_sector(conf, bn, 0,
2674 &dd_idx, NULL);
NeilBrownb5663ba2009-03-31 14:39:38 +11002675 sh2 = get_active_stripe(conf, s, 0, 1);
Dan Williamsa4456852007-07-09 11:56:43 -07002676 if (sh2 == NULL)
2677 /* so far only the early blocks of this stripe
2678 * have been requested. When later blocks
2679 * get requested, we will try again
2680 */
2681 continue;
2682 if (!test_bit(STRIPE_EXPANDING, &sh2->state) ||
2683 test_bit(R5_Expanded, &sh2->dev[dd_idx].flags)) {
2684 /* must have already done this block */
2685 release_stripe(sh2);
2686 continue;
2687 }
Dan Williamsf0a50d32007-01-02 13:52:31 -07002688
2689 /* place all the copies on one channel */
2690 tx = async_memcpy(sh2->dev[dd_idx].page,
2691 sh->dev[i].page, 0, 0, STRIPE_SIZE,
2692 ASYNC_TX_DEP_ACK, tx, NULL, NULL);
2693
Dan Williamsa4456852007-07-09 11:56:43 -07002694 set_bit(R5_Expanded, &sh2->dev[dd_idx].flags);
2695 set_bit(R5_UPTODATE, &sh2->dev[dd_idx].flags);
2696 for (j = 0; j < conf->raid_disks; j++)
2697 if (j != sh2->pd_idx &&
NeilBrownd0dabf72009-03-31 14:39:38 +11002698 (!r6s || j != sh2->qd_idx) &&
Dan Williamsa4456852007-07-09 11:56:43 -07002699 !test_bit(R5_Expanded, &sh2->dev[j].flags))
2700 break;
2701 if (j == conf->raid_disks) {
2702 set_bit(STRIPE_EXPAND_READY, &sh2->state);
2703 set_bit(STRIPE_HANDLE, &sh2->state);
2704 }
2705 release_stripe(sh2);
Dan Williamsf0a50d32007-01-02 13:52:31 -07002706
Dan Williamsa4456852007-07-09 11:56:43 -07002707 }
NeilBrowna2e08552007-09-11 15:23:36 -07002708 /* done submitting copies, wait for them to complete */
2709 if (tx) {
2710 async_tx_ack(tx);
2711 dma_wait_for_async_tx(tx);
2712 }
Dan Williamsa4456852007-07-09 11:56:43 -07002713}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714
Dan Williams6bfe0b42008-04-30 00:52:32 -07002715
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716/*
2717 * handle_stripe - do things to a stripe.
2718 *
2719 * We lock the stripe and then examine the state of various bits
2720 * to see what needs to be done.
2721 * Possible results:
2722 * return some read request which now have data
2723 * return some write requests which are safely on disc
2724 * schedule a read on some buffers
2725 * schedule a write of some buffers
2726 * return confirmation of parity correctness
2727 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 * buffers are taken off read_list or write_list, and bh_cache buffers
2729 * get BH_Lock set before the stripe lock is released.
2730 *
2731 */
Dan Williamsa4456852007-07-09 11:56:43 -07002732
Dan Williamsdf10cfb2008-07-28 23:10:39 -07002733static bool handle_stripe5(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734{
2735 raid5_conf_t *conf = sh->raid_conf;
Dan Williamsa4456852007-07-09 11:56:43 -07002736 int disks = sh->disks, i;
2737 struct bio *return_bi = NULL;
2738 struct stripe_head_state s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 struct r5dev *dev;
Dan Williams6bfe0b42008-04-30 00:52:32 -07002740 mdk_rdev_t *blocked_rdev = NULL;
Dan Williamse0a115e2008-06-05 22:45:52 -07002741 int prexor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742
Dan Williamsa4456852007-07-09 11:56:43 -07002743 memset(&s, 0, sizeof(s));
Dan Williams600aa102008-06-28 08:32:05 +10002744 pr_debug("handling stripe %llu, state=%#lx cnt=%d, pd_idx=%d check:%d "
2745 "reconstruct:%d\n", (unsigned long long)sh->sector, sh->state,
2746 atomic_read(&sh->count), sh->pd_idx, sh->check_state,
2747 sh->reconstruct_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748
2749 spin_lock(&sh->lock);
2750 clear_bit(STRIPE_HANDLE, &sh->state);
2751 clear_bit(STRIPE_DELAYED, &sh->state);
2752
Dan Williamsa4456852007-07-09 11:56:43 -07002753 s.syncing = test_bit(STRIPE_SYNCING, &sh->state);
2754 s.expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state);
2755 s.expanded = test_bit(STRIPE_EXPAND_READY, &sh->state);
Dan Williams83de75c2008-06-28 08:31:58 +10002756
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 /* Now to look around and see what can be done */
NeilBrown9910f162006-01-06 00:20:24 -08002758 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 for (i=disks; i--; ) {
2760 mdk_rdev_t *rdev;
Dan Williamsa4456852007-07-09 11:56:43 -07002761 struct r5dev *dev = &sh->dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 clear_bit(R5_Insync, &dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763
Dan Williamsb5e98d62007-01-02 13:52:31 -07002764 pr_debug("check %d: state 0x%lx toread %p read %p write %p "
2765 "written %p\n", i, dev->flags, dev->toread, dev->read,
2766 dev->towrite, dev->written);
2767
2768 /* maybe we can request a biofill operation
2769 *
2770 * new wantfill requests are only permitted while
Dan Williams83de75c2008-06-28 08:31:58 +10002771 * ops_complete_biofill is guaranteed to be inactive
Dan Williamsb5e98d62007-01-02 13:52:31 -07002772 */
2773 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread &&
Dan Williams83de75c2008-06-28 08:31:58 +10002774 !test_bit(STRIPE_BIOFILL_RUN, &sh->state))
Dan Williamsb5e98d62007-01-02 13:52:31 -07002775 set_bit(R5_Wantfill, &dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776
2777 /* now count some things */
Dan Williamsa4456852007-07-09 11:56:43 -07002778 if (test_bit(R5_LOCKED, &dev->flags)) s.locked++;
2779 if (test_bit(R5_UPTODATE, &dev->flags)) s.uptodate++;
Dan Williamsf38e1212007-01-02 13:52:30 -07002780 if (test_bit(R5_Wantcompute, &dev->flags)) s.compute++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781
Dan Williamsb5e98d62007-01-02 13:52:31 -07002782 if (test_bit(R5_Wantfill, &dev->flags))
2783 s.to_fill++;
2784 else if (dev->toread)
Dan Williamsa4456852007-07-09 11:56:43 -07002785 s.to_read++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 if (dev->towrite) {
Dan Williamsa4456852007-07-09 11:56:43 -07002787 s.to_write++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 if (!test_bit(R5_OVERWRITE, &dev->flags))
Dan Williamsa4456852007-07-09 11:56:43 -07002789 s.non_overwrite++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 }
Dan Williamsa4456852007-07-09 11:56:43 -07002791 if (dev->written)
2792 s.written++;
NeilBrown9910f162006-01-06 00:20:24 -08002793 rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownac4090d2008-08-05 15:54:13 +10002794 if (blocked_rdev == NULL &&
2795 rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
Dan Williams6bfe0b42008-04-30 00:52:32 -07002796 blocked_rdev = rdev;
2797 atomic_inc(&rdev->nr_pending);
Dan Williams6bfe0b42008-04-30 00:52:32 -07002798 }
NeilBrownb2d444d2005-11-08 21:39:31 -08002799 if (!rdev || !test_bit(In_sync, &rdev->flags)) {
NeilBrown14f8d262006-01-06 00:20:14 -08002800 /* The ReadError flag will just be confusing now */
NeilBrown4e5314b2005-11-08 21:39:22 -08002801 clear_bit(R5_ReadError, &dev->flags);
2802 clear_bit(R5_ReWrite, &dev->flags);
2803 }
NeilBrownb2d444d2005-11-08 21:39:31 -08002804 if (!rdev || !test_bit(In_sync, &rdev->flags)
NeilBrown4e5314b2005-11-08 21:39:22 -08002805 || test_bit(R5_ReadError, &dev->flags)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002806 s.failed++;
2807 s.failed_num = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 } else
2809 set_bit(R5_Insync, &dev->flags);
2810 }
NeilBrown9910f162006-01-06 00:20:24 -08002811 rcu_read_unlock();
Dan Williamsb5e98d62007-01-02 13:52:31 -07002812
Dan Williams6bfe0b42008-04-30 00:52:32 -07002813 if (unlikely(blocked_rdev)) {
NeilBrownac4090d2008-08-05 15:54:13 +10002814 if (s.syncing || s.expanding || s.expanded ||
2815 s.to_write || s.written) {
2816 set_bit(STRIPE_HANDLE, &sh->state);
2817 goto unlock;
2818 }
2819 /* There is nothing for the blocked_rdev to block */
2820 rdev_dec_pending(blocked_rdev, conf->mddev);
2821 blocked_rdev = NULL;
Dan Williams6bfe0b42008-04-30 00:52:32 -07002822 }
2823
Dan Williams83de75c2008-06-28 08:31:58 +10002824 if (s.to_fill && !test_bit(STRIPE_BIOFILL_RUN, &sh->state)) {
2825 set_bit(STRIPE_OP_BIOFILL, &s.ops_request);
2826 set_bit(STRIPE_BIOFILL_RUN, &sh->state);
2827 }
Dan Williamsb5e98d62007-01-02 13:52:31 -07002828
Dan Williams45b42332007-07-09 11:56:43 -07002829 pr_debug("locked=%d uptodate=%d to_read=%d"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 " to_write=%d failed=%d failed_num=%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002831 s.locked, s.uptodate, s.to_read, s.to_write,
2832 s.failed, s.failed_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 /* check if the array has lost two devices and, if so, some requests might
2834 * need to be failed
2835 */
Dan Williamsa4456852007-07-09 11:56:43 -07002836 if (s.failed > 1 && s.to_read+s.to_write+s.written)
Dan Williams1fe797e2008-06-28 09:16:30 +10002837 handle_failed_stripe(conf, sh, &s, disks, &return_bi);
Dan Williamsa4456852007-07-09 11:56:43 -07002838 if (s.failed > 1 && s.syncing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 md_done_sync(conf->mddev, STRIPE_SECTORS,0);
2840 clear_bit(STRIPE_SYNCING, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07002841 s.syncing = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 }
2843
2844 /* might be able to return some write requests if the parity block
2845 * is safe, or on a failed drive
2846 */
2847 dev = &sh->dev[sh->pd_idx];
Dan Williamsa4456852007-07-09 11:56:43 -07002848 if ( s.written &&
2849 ((test_bit(R5_Insync, &dev->flags) &&
2850 !test_bit(R5_LOCKED, &dev->flags) &&
2851 test_bit(R5_UPTODATE, &dev->flags)) ||
2852 (s.failed == 1 && s.failed_num == sh->pd_idx)))
Dan Williams1fe797e2008-06-28 09:16:30 +10002853 handle_stripe_clean_event(conf, sh, disks, &return_bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854
2855 /* Now we might consider reading some blocks, either to check/generate
2856 * parity, or to satisfy requests
2857 * or to load a block that is being partially written.
2858 */
Dan Williamsa4456852007-07-09 11:56:43 -07002859 if (s.to_read || s.non_overwrite ||
Dan Williams976ea8d2008-06-28 08:32:03 +10002860 (s.syncing && (s.uptodate + s.compute < disks)) || s.expanding)
Dan Williams1fe797e2008-06-28 09:16:30 +10002861 handle_stripe_fill5(sh, &s, disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862
Dan Williamse33129d2007-01-02 13:52:30 -07002863 /* Now we check to see if any write operations have recently
2864 * completed
2865 */
Dan Williamse0a115e2008-06-05 22:45:52 -07002866 prexor = 0;
Dan Williamsd8ee0722008-06-28 08:32:06 +10002867 if (sh->reconstruct_state == reconstruct_state_prexor_drain_result)
Dan Williamse0a115e2008-06-05 22:45:52 -07002868 prexor = 1;
Dan Williamsd8ee0722008-06-28 08:32:06 +10002869 if (sh->reconstruct_state == reconstruct_state_drain_result ||
2870 sh->reconstruct_state == reconstruct_state_prexor_drain_result) {
Dan Williams600aa102008-06-28 08:32:05 +10002871 sh->reconstruct_state = reconstruct_state_idle;
Dan Williamse33129d2007-01-02 13:52:30 -07002872
2873 /* All the 'written' buffers and the parity block are ready to
2874 * be written back to disk
2875 */
2876 BUG_ON(!test_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags));
2877 for (i = disks; i--; ) {
2878 dev = &sh->dev[i];
2879 if (test_bit(R5_LOCKED, &dev->flags) &&
2880 (i == sh->pd_idx || dev->written)) {
2881 pr_debug("Writing block %d\n", i);
2882 set_bit(R5_Wantwrite, &dev->flags);
Dan Williamse0a115e2008-06-05 22:45:52 -07002883 if (prexor)
2884 continue;
Dan Williamse33129d2007-01-02 13:52:30 -07002885 if (!test_bit(R5_Insync, &dev->flags) ||
2886 (i == sh->pd_idx && s.failed == 0))
2887 set_bit(STRIPE_INSYNC, &sh->state);
2888 }
2889 }
2890 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
2891 atomic_dec(&conf->preread_active_stripes);
2892 if (atomic_read(&conf->preread_active_stripes) <
2893 IO_THRESHOLD)
2894 md_wakeup_thread(conf->mddev->thread);
2895 }
2896 }
2897
2898 /* Now to consider new write requests and what else, if anything
2899 * should be read. We do not handle new writes when:
2900 * 1/ A 'write' operation (copy+xor) is already in flight.
2901 * 2/ A 'check' operation is in flight, as it may clobber the parity
2902 * block.
2903 */
Dan Williams600aa102008-06-28 08:32:05 +10002904 if (s.to_write && !sh->reconstruct_state && !sh->check_state)
Dan Williams1fe797e2008-06-28 09:16:30 +10002905 handle_stripe_dirtying5(conf, sh, &s, disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906
2907 /* maybe we need to check and possibly fix the parity for this stripe
Dan Williamse89f8962007-01-02 13:52:31 -07002908 * Any reads will already have been scheduled, so we just see if enough
2909 * data is available. The parity check is held off while parity
2910 * dependent operations are in flight.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 */
Dan Williamsecc65c92008-06-28 08:31:57 +10002912 if (sh->check_state ||
2913 (s.syncing && s.locked == 0 &&
Dan Williams976ea8d2008-06-28 08:32:03 +10002914 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
Dan Williamsecc65c92008-06-28 08:31:57 +10002915 !test_bit(STRIPE_INSYNC, &sh->state)))
Dan Williamsa4456852007-07-09 11:56:43 -07002916 handle_parity_checks5(conf, sh, &s, disks);
Dan Williamse89f8962007-01-02 13:52:31 -07002917
Dan Williamsa4456852007-07-09 11:56:43 -07002918 if (s.syncing && s.locked == 0 && test_bit(STRIPE_INSYNC, &sh->state)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 md_done_sync(conf->mddev, STRIPE_SECTORS,1);
2920 clear_bit(STRIPE_SYNCING, &sh->state);
2921 }
NeilBrown4e5314b2005-11-08 21:39:22 -08002922
2923 /* If the failed drive is just a ReadError, then we might need to progress
2924 * the repair/check process
2925 */
Dan Williamsa4456852007-07-09 11:56:43 -07002926 if (s.failed == 1 && !conf->mddev->ro &&
2927 test_bit(R5_ReadError, &sh->dev[s.failed_num].flags)
2928 && !test_bit(R5_LOCKED, &sh->dev[s.failed_num].flags)
2929 && test_bit(R5_UPTODATE, &sh->dev[s.failed_num].flags)
NeilBrown4e5314b2005-11-08 21:39:22 -08002930 ) {
Dan Williamsa4456852007-07-09 11:56:43 -07002931 dev = &sh->dev[s.failed_num];
NeilBrown4e5314b2005-11-08 21:39:22 -08002932 if (!test_bit(R5_ReWrite, &dev->flags)) {
2933 set_bit(R5_Wantwrite, &dev->flags);
2934 set_bit(R5_ReWrite, &dev->flags);
2935 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsa4456852007-07-09 11:56:43 -07002936 s.locked++;
NeilBrown4e5314b2005-11-08 21:39:22 -08002937 } else {
2938 /* let's read it back */
2939 set_bit(R5_Wantread, &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 }
2943 }
2944
Dan Williams600aa102008-06-28 08:32:05 +10002945 /* Finish reconstruct operations initiated by the expansion process */
2946 if (sh->reconstruct_state == reconstruct_state_result) {
2947 sh->reconstruct_state = reconstruct_state_idle;
Dan Williamsf0a50d32007-01-02 13:52:31 -07002948 clear_bit(STRIPE_EXPANDING, &sh->state);
Dan Williams23397882008-07-23 20:05:34 -07002949 for (i = conf->raid_disks; i--; ) {
Dan Williamsf0a50d32007-01-02 13:52:31 -07002950 set_bit(R5_Wantwrite, &sh->dev[i].flags);
Dan Williams23397882008-07-23 20:05:34 -07002951 set_bit(R5_LOCKED, &sh->dev[i].flags);
Neil Brownefe31142008-06-28 08:31:14 +10002952 s.locked++;
Dan Williams23397882008-07-23 20:05:34 -07002953 }
Dan Williamsf0a50d32007-01-02 13:52:31 -07002954 }
2955
2956 if (s.expanded && test_bit(STRIPE_EXPANDING, &sh->state) &&
Dan Williams600aa102008-06-28 08:32:05 +10002957 !sh->reconstruct_state) {
NeilBrownccfcc3c2006-03-27 01:18:09 -08002958 /* Need to write out all blocks after computing parity */
2959 sh->disks = conf->raid_disks;
NeilBrown911d4ee2009-03-31 14:39:38 +11002960 stripe_set_idx(sh->sector, conf, 0, sh);
Dan Williams1fe797e2008-06-28 09:16:30 +10002961 schedule_reconstruction5(sh, &s, 1, 1);
Dan Williams600aa102008-06-28 08:32:05 +10002962 } else if (s.expanded && !sh->reconstruct_state && s.locked == 0) {
NeilBrownccfcc3c2006-03-27 01:18:09 -08002963 clear_bit(STRIPE_EXPAND_READY, &sh->state);
NeilBrownf6705572006-03-27 01:18:11 -08002964 atomic_dec(&conf->reshape_stripes);
NeilBrownccfcc3c2006-03-27 01:18:09 -08002965 wake_up(&conf->wait_for_overlap);
2966 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
2967 }
2968
Dan Williams0f94e872008-01-08 15:32:53 -08002969 if (s.expanding && s.locked == 0 &&
Dan Williams976ea8d2008-06-28 08:32:03 +10002970 !test_bit(STRIPE_COMPUTE_RUN, &sh->state))
Dan Williamsa4456852007-07-09 11:56:43 -07002971 handle_stripe_expansion(conf, sh, NULL);
NeilBrownccfcc3c2006-03-27 01:18:09 -08002972
Dan Williams6bfe0b42008-04-30 00:52:32 -07002973 unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 spin_unlock(&sh->lock);
2975
Dan Williams6bfe0b42008-04-30 00:52:32 -07002976 /* wait for this device to become unblocked */
2977 if (unlikely(blocked_rdev))
2978 md_wait_for_blocked_rdev(blocked_rdev, conf->mddev);
2979
Dan Williams600aa102008-06-28 08:32:05 +10002980 if (s.ops_request)
2981 raid5_run_ops(sh, s.ops_request);
Dan Williamsd84e0f12007-01-02 13:52:30 -07002982
Dan Williamsc4e5ac02008-06-28 08:31:53 +10002983 ops_run_io(sh, &s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984
Dan Williamsa4456852007-07-09 11:56:43 -07002985 return_io(return_bi);
Dan Williamsdf10cfb2008-07-28 23:10:39 -07002986
2987 return blocked_rdev == NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988}
2989
Dan Williamsdf10cfb2008-07-28 23:10:39 -07002990static bool handle_stripe6(struct stripe_head *sh, struct page *tmp_page)
NeilBrown16a53ec2006-06-26 00:27:38 -07002991{
NeilBrownbff61972009-03-31 14:33:13 +11002992 raid5_conf_t *conf = sh->raid_conf;
NeilBrownf4168852007-02-28 20:11:53 -08002993 int disks = sh->disks;
Dan Williamsa4456852007-07-09 11:56:43 -07002994 struct bio *return_bi = NULL;
NeilBrown34e04e82009-03-31 15:10:16 +11002995 int i, pd_idx = sh->pd_idx, qd_idx = sh->qd_idx;
Dan Williamsa4456852007-07-09 11:56:43 -07002996 struct stripe_head_state s;
2997 struct r6_state r6s;
NeilBrown16a53ec2006-06-26 00:27:38 -07002998 struct r5dev *dev, *pdev, *qdev;
Dan Williams6bfe0b42008-04-30 00:52:32 -07002999 mdk_rdev_t *blocked_rdev = NULL;
NeilBrown16a53ec2006-06-26 00:27:38 -07003000
Dan Williams45b42332007-07-09 11:56:43 -07003001 pr_debug("handling stripe %llu, state=%#lx cnt=%d, "
Dan Williamsa4456852007-07-09 11:56:43 -07003002 "pd_idx=%d, qd_idx=%d\n",
3003 (unsigned long long)sh->sector, sh->state,
NeilBrown34e04e82009-03-31 15:10:16 +11003004 atomic_read(&sh->count), pd_idx, qd_idx);
Dan Williamsa4456852007-07-09 11:56:43 -07003005 memset(&s, 0, sizeof(s));
NeilBrown16a53ec2006-06-26 00:27:38 -07003006
3007 spin_lock(&sh->lock);
3008 clear_bit(STRIPE_HANDLE, &sh->state);
3009 clear_bit(STRIPE_DELAYED, &sh->state);
3010
Dan Williamsa4456852007-07-09 11:56:43 -07003011 s.syncing = test_bit(STRIPE_SYNCING, &sh->state);
3012 s.expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state);
3013 s.expanded = test_bit(STRIPE_EXPAND_READY, &sh->state);
NeilBrown16a53ec2006-06-26 00:27:38 -07003014 /* Now to look around and see what can be done */
3015
3016 rcu_read_lock();
3017 for (i=disks; i--; ) {
3018 mdk_rdev_t *rdev;
3019 dev = &sh->dev[i];
3020 clear_bit(R5_Insync, &dev->flags);
3021
Dan Williams45b42332007-07-09 11:56:43 -07003022 pr_debug("check %d: state 0x%lx read %p write %p written %p\n",
NeilBrown16a53ec2006-06-26 00:27:38 -07003023 i, dev->flags, dev->toread, dev->towrite, dev->written);
3024 /* maybe we can reply to a read */
3025 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread) {
3026 struct bio *rbi, *rbi2;
Dan Williams45b42332007-07-09 11:56:43 -07003027 pr_debug("Return read for disc %d\n", i);
NeilBrown16a53ec2006-06-26 00:27:38 -07003028 spin_lock_irq(&conf->device_lock);
3029 rbi = dev->toread;
3030 dev->toread = NULL;
3031 if (test_and_clear_bit(R5_Overlap, &dev->flags))
3032 wake_up(&conf->wait_for_overlap);
3033 spin_unlock_irq(&conf->device_lock);
3034 while (rbi && rbi->bi_sector < dev->sector + STRIPE_SECTORS) {
3035 copy_data(0, rbi, dev->page, dev->sector);
3036 rbi2 = r5_next_bio(rbi, dev->sector);
3037 spin_lock_irq(&conf->device_lock);
Jens Axboe960e7392008-08-15 10:41:18 +02003038 if (!raid5_dec_bi_phys_segments(rbi)) {
NeilBrown16a53ec2006-06-26 00:27:38 -07003039 rbi->bi_next = return_bi;
3040 return_bi = rbi;
3041 }
3042 spin_unlock_irq(&conf->device_lock);
3043 rbi = rbi2;
3044 }
3045 }
3046
3047 /* now count some things */
Dan Williamsa4456852007-07-09 11:56:43 -07003048 if (test_bit(R5_LOCKED, &dev->flags)) s.locked++;
3049 if (test_bit(R5_UPTODATE, &dev->flags)) s.uptodate++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003050
3051
Dan Williamsa4456852007-07-09 11:56:43 -07003052 if (dev->toread)
3053 s.to_read++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003054 if (dev->towrite) {
Dan Williamsa4456852007-07-09 11:56:43 -07003055 s.to_write++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003056 if (!test_bit(R5_OVERWRITE, &dev->flags))
Dan Williamsa4456852007-07-09 11:56:43 -07003057 s.non_overwrite++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003058 }
Dan Williamsa4456852007-07-09 11:56:43 -07003059 if (dev->written)
3060 s.written++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003061 rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownac4090d2008-08-05 15:54:13 +10003062 if (blocked_rdev == NULL &&
3063 rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
Dan Williams6bfe0b42008-04-30 00:52:32 -07003064 blocked_rdev = rdev;
3065 atomic_inc(&rdev->nr_pending);
Dan Williams6bfe0b42008-04-30 00:52:32 -07003066 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003067 if (!rdev || !test_bit(In_sync, &rdev->flags)) {
3068 /* The ReadError flag will just be confusing now */
3069 clear_bit(R5_ReadError, &dev->flags);
3070 clear_bit(R5_ReWrite, &dev->flags);
3071 }
3072 if (!rdev || !test_bit(In_sync, &rdev->flags)
3073 || test_bit(R5_ReadError, &dev->flags)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003074 if (s.failed < 2)
3075 r6s.failed_num[s.failed] = i;
3076 s.failed++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003077 } else
3078 set_bit(R5_Insync, &dev->flags);
3079 }
3080 rcu_read_unlock();
Dan Williams6bfe0b42008-04-30 00:52:32 -07003081
3082 if (unlikely(blocked_rdev)) {
NeilBrownac4090d2008-08-05 15:54:13 +10003083 if (s.syncing || s.expanding || s.expanded ||
3084 s.to_write || s.written) {
3085 set_bit(STRIPE_HANDLE, &sh->state);
3086 goto unlock;
3087 }
3088 /* There is nothing for the blocked_rdev to block */
3089 rdev_dec_pending(blocked_rdev, conf->mddev);
3090 blocked_rdev = NULL;
Dan Williams6bfe0b42008-04-30 00:52:32 -07003091 }
NeilBrownac4090d2008-08-05 15:54:13 +10003092
Dan Williams45b42332007-07-09 11:56:43 -07003093 pr_debug("locked=%d uptodate=%d to_read=%d"
NeilBrown16a53ec2006-06-26 00:27:38 -07003094 " to_write=%d failed=%d failed_num=%d,%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07003095 s.locked, s.uptodate, s.to_read, s.to_write, s.failed,
3096 r6s.failed_num[0], r6s.failed_num[1]);
3097 /* check if the array has lost >2 devices and, if so, some requests
3098 * might need to be failed
NeilBrown16a53ec2006-06-26 00:27:38 -07003099 */
Dan Williamsa4456852007-07-09 11:56:43 -07003100 if (s.failed > 2 && s.to_read+s.to_write+s.written)
Dan Williams1fe797e2008-06-28 09:16:30 +10003101 handle_failed_stripe(conf, sh, &s, disks, &return_bi);
Dan Williamsa4456852007-07-09 11:56:43 -07003102 if (s.failed > 2 && s.syncing) {
NeilBrown16a53ec2006-06-26 00:27:38 -07003103 md_done_sync(conf->mddev, STRIPE_SECTORS,0);
3104 clear_bit(STRIPE_SYNCING, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07003105 s.syncing = 0;
NeilBrown16a53ec2006-06-26 00:27:38 -07003106 }
3107
3108 /*
3109 * might be able to return some write requests if the parity blocks
3110 * are safe, or on a failed drive
3111 */
3112 pdev = &sh->dev[pd_idx];
Dan Williamsa4456852007-07-09 11:56:43 -07003113 r6s.p_failed = (s.failed >= 1 && r6s.failed_num[0] == pd_idx)
3114 || (s.failed >= 2 && r6s.failed_num[1] == pd_idx);
NeilBrown34e04e82009-03-31 15:10:16 +11003115 qdev = &sh->dev[qd_idx];
3116 r6s.q_failed = (s.failed >= 1 && r6s.failed_num[0] == qd_idx)
3117 || (s.failed >= 2 && r6s.failed_num[1] == qd_idx);
NeilBrown16a53ec2006-06-26 00:27:38 -07003118
Dan Williamsa4456852007-07-09 11:56:43 -07003119 if ( s.written &&
3120 ( r6s.p_failed || ((test_bit(R5_Insync, &pdev->flags)
NeilBrown16a53ec2006-06-26 00:27:38 -07003121 && !test_bit(R5_LOCKED, &pdev->flags)
Dan Williamsa4456852007-07-09 11:56:43 -07003122 && test_bit(R5_UPTODATE, &pdev->flags)))) &&
3123 ( r6s.q_failed || ((test_bit(R5_Insync, &qdev->flags)
NeilBrown16a53ec2006-06-26 00:27:38 -07003124 && !test_bit(R5_LOCKED, &qdev->flags)
Dan Williamsa4456852007-07-09 11:56:43 -07003125 && test_bit(R5_UPTODATE, &qdev->flags)))))
Dan Williams1fe797e2008-06-28 09:16:30 +10003126 handle_stripe_clean_event(conf, sh, disks, &return_bi);
NeilBrown16a53ec2006-06-26 00:27:38 -07003127
3128 /* Now we might consider reading some blocks, either to check/generate
3129 * parity, or to satisfy requests
3130 * or to load a block that is being partially written.
3131 */
Dan Williamsa4456852007-07-09 11:56:43 -07003132 if (s.to_read || s.non_overwrite || (s.to_write && s.failed) ||
3133 (s.syncing && (s.uptodate < disks)) || s.expanding)
Dan Williams1fe797e2008-06-28 09:16:30 +10003134 handle_stripe_fill6(sh, &s, &r6s, disks);
NeilBrown16a53ec2006-06-26 00:27:38 -07003135
3136 /* now to consider writing and what else, if anything should be read */
Dan Williamsa4456852007-07-09 11:56:43 -07003137 if (s.to_write)
Dan Williams1fe797e2008-06-28 09:16:30 +10003138 handle_stripe_dirtying6(conf, sh, &s, &r6s, disks);
NeilBrown16a53ec2006-06-26 00:27:38 -07003139
3140 /* maybe we need to check and possibly fix the parity for this stripe
Dan Williamsa4456852007-07-09 11:56:43 -07003141 * Any reads will already have been scheduled, so we just see if enough
3142 * data is available
NeilBrown16a53ec2006-06-26 00:27:38 -07003143 */
Dan Williamsa4456852007-07-09 11:56:43 -07003144 if (s.syncing && s.locked == 0 && !test_bit(STRIPE_INSYNC, &sh->state))
3145 handle_parity_checks6(conf, sh, &s, &r6s, tmp_page, disks);
NeilBrown16a53ec2006-06-26 00:27:38 -07003146
Dan Williamsa4456852007-07-09 11:56:43 -07003147 if (s.syncing && s.locked == 0 && test_bit(STRIPE_INSYNC, &sh->state)) {
NeilBrown16a53ec2006-06-26 00:27:38 -07003148 md_done_sync(conf->mddev, STRIPE_SECTORS,1);
3149 clear_bit(STRIPE_SYNCING, &sh->state);
3150 }
3151
3152 /* If the failed drives are just a ReadError, then we might need
3153 * to progress the repair/check process
3154 */
Dan Williamsa4456852007-07-09 11:56:43 -07003155 if (s.failed <= 2 && !conf->mddev->ro)
3156 for (i = 0; i < s.failed; i++) {
3157 dev = &sh->dev[r6s.failed_num[i]];
NeilBrown16a53ec2006-06-26 00:27:38 -07003158 if (test_bit(R5_ReadError, &dev->flags)
3159 && !test_bit(R5_LOCKED, &dev->flags)
3160 && test_bit(R5_UPTODATE, &dev->flags)
3161 ) {
3162 if (!test_bit(R5_ReWrite, &dev->flags)) {
3163 set_bit(R5_Wantwrite, &dev->flags);
3164 set_bit(R5_ReWrite, &dev->flags);
3165 set_bit(R5_LOCKED, &dev->flags);
3166 } else {
3167 /* let's read it back */
3168 set_bit(R5_Wantread, &dev->flags);
3169 set_bit(R5_LOCKED, &dev->flags);
3170 }
3171 }
3172 }
NeilBrownf4168852007-02-28 20:11:53 -08003173
Dan Williamsa4456852007-07-09 11:56:43 -07003174 if (s.expanded && test_bit(STRIPE_EXPANDING, &sh->state)) {
NeilBrownf4168852007-02-28 20:11:53 -08003175 /* Need to write out all blocks after computing P&Q */
3176 sh->disks = conf->raid_disks;
NeilBrown911d4ee2009-03-31 14:39:38 +11003177 stripe_set_idx(sh->sector, conf, 0, sh);
NeilBrownf4168852007-02-28 20:11:53 -08003178 compute_parity6(sh, RECONSTRUCT_WRITE);
3179 for (i = conf->raid_disks ; i-- ; ) {
3180 set_bit(R5_LOCKED, &sh->dev[i].flags);
Dan Williamsa4456852007-07-09 11:56:43 -07003181 s.locked++;
NeilBrownf4168852007-02-28 20:11:53 -08003182 set_bit(R5_Wantwrite, &sh->dev[i].flags);
3183 }
3184 clear_bit(STRIPE_EXPANDING, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07003185 } else if (s.expanded) {
NeilBrownf4168852007-02-28 20:11:53 -08003186 clear_bit(STRIPE_EXPAND_READY, &sh->state);
3187 atomic_dec(&conf->reshape_stripes);
3188 wake_up(&conf->wait_for_overlap);
3189 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
3190 }
3191
Dan Williams0f94e872008-01-08 15:32:53 -08003192 if (s.expanding && s.locked == 0 &&
Dan Williams976ea8d2008-06-28 08:32:03 +10003193 !test_bit(STRIPE_COMPUTE_RUN, &sh->state))
Dan Williamsa4456852007-07-09 11:56:43 -07003194 handle_stripe_expansion(conf, sh, &r6s);
NeilBrownf4168852007-02-28 20:11:53 -08003195
Dan Williams6bfe0b42008-04-30 00:52:32 -07003196 unlock:
NeilBrown16a53ec2006-06-26 00:27:38 -07003197 spin_unlock(&sh->lock);
3198
Dan Williams6bfe0b42008-04-30 00:52:32 -07003199 /* wait for this device to become unblocked */
3200 if (unlikely(blocked_rdev))
3201 md_wait_for_blocked_rdev(blocked_rdev, conf->mddev);
3202
Dan Williamsf0e43bc2008-06-28 08:31:55 +10003203 ops_run_io(sh, &s);
3204
Dan Williamsa4456852007-07-09 11:56:43 -07003205 return_io(return_bi);
Dan Williamsdf10cfb2008-07-28 23:10:39 -07003206
3207 return blocked_rdev == NULL;
NeilBrown16a53ec2006-06-26 00:27:38 -07003208}
3209
Dan Williamsdf10cfb2008-07-28 23:10:39 -07003210/* returns true if the stripe was handled */
3211static bool handle_stripe(struct stripe_head *sh, struct page *tmp_page)
NeilBrown16a53ec2006-06-26 00:27:38 -07003212{
3213 if (sh->raid_conf->level == 6)
Dan Williamsdf10cfb2008-07-28 23:10:39 -07003214 return handle_stripe6(sh, tmp_page);
NeilBrown16a53ec2006-06-26 00:27:38 -07003215 else
Dan Williamsdf10cfb2008-07-28 23:10:39 -07003216 return handle_stripe5(sh);
NeilBrown16a53ec2006-06-26 00:27:38 -07003217}
3218
3219
3220
Arjan van de Ven858119e2006-01-14 13:20:43 -08003221static void raid5_activate_delayed(raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222{
3223 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD) {
3224 while (!list_empty(&conf->delayed_list)) {
3225 struct list_head *l = conf->delayed_list.next;
3226 struct stripe_head *sh;
3227 sh = list_entry(l, struct stripe_head, lru);
3228 list_del_init(l);
3229 clear_bit(STRIPE_DELAYED, &sh->state);
3230 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3231 atomic_inc(&conf->preread_active_stripes);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003232 list_add_tail(&sh->lru, &conf->hold_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 }
NeilBrown6ed30032008-02-06 01:40:00 -08003234 } else
3235 blk_plug_device(conf->mddev->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236}
3237
Arjan van de Ven858119e2006-01-14 13:20:43 -08003238static void activate_bit_delay(raid5_conf_t *conf)
NeilBrown72626682005-09-09 16:23:54 -07003239{
3240 /* device_lock is held */
3241 struct list_head head;
3242 list_add(&head, &conf->bitmap_list);
3243 list_del_init(&conf->bitmap_list);
3244 while (!list_empty(&head)) {
3245 struct stripe_head *sh = list_entry(head.next, struct stripe_head, lru);
3246 list_del_init(&sh->lru);
3247 atomic_inc(&sh->count);
3248 __release_stripe(conf, sh);
3249 }
3250}
3251
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252static void unplug_slaves(mddev_t *mddev)
3253{
3254 raid5_conf_t *conf = mddev_to_conf(mddev);
3255 int i;
3256
3257 rcu_read_lock();
3258 for (i=0; i<mddev->raid_disks; i++) {
Suzanne Woodd6065f72005-11-08 21:39:27 -08003259 mdk_rdev_t *rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownb2d444d2005-11-08 21:39:31 -08003260 if (rdev && !test_bit(Faulty, &rdev->flags) && atomic_read(&rdev->nr_pending)) {
Jens Axboe165125e2007-07-24 09:28:11 +02003261 struct request_queue *r_queue = bdev_get_queue(rdev->bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262
3263 atomic_inc(&rdev->nr_pending);
3264 rcu_read_unlock();
3265
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -05003266 blk_unplug(r_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267
3268 rdev_dec_pending(rdev, mddev);
3269 rcu_read_lock();
3270 }
3271 }
3272 rcu_read_unlock();
3273}
3274
Jens Axboe165125e2007-07-24 09:28:11 +02003275static void raid5_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276{
3277 mddev_t *mddev = q->queuedata;
3278 raid5_conf_t *conf = mddev_to_conf(mddev);
3279 unsigned long flags;
3280
3281 spin_lock_irqsave(&conf->device_lock, flags);
3282
NeilBrown72626682005-09-09 16:23:54 -07003283 if (blk_remove_plug(q)) {
3284 conf->seq_flush++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285 raid5_activate_delayed(conf);
NeilBrown72626682005-09-09 16:23:54 -07003286 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287 md_wakeup_thread(mddev->thread);
3288
3289 spin_unlock_irqrestore(&conf->device_lock, flags);
3290
3291 unplug_slaves(mddev);
3292}
3293
NeilBrownf022b2f2006-10-03 01:15:56 -07003294static int raid5_congested(void *data, int bits)
3295{
3296 mddev_t *mddev = data;
3297 raid5_conf_t *conf = mddev_to_conf(mddev);
3298
3299 /* No difference between reads and writes. Just check
3300 * how busy the stripe_cache is
3301 */
3302 if (conf->inactive_blocked)
3303 return 1;
3304 if (conf->quiesce)
3305 return 1;
3306 if (list_empty_careful(&conf->inactive_list))
3307 return 1;
3308
3309 return 0;
3310}
3311
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003312/* We want read requests to align with chunks where possible,
3313 * but write requests don't need to.
3314 */
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003315static int raid5_mergeable_bvec(struct request_queue *q,
3316 struct bvec_merge_data *bvm,
3317 struct bio_vec *biovec)
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003318{
3319 mddev_t *mddev = q->queuedata;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003320 sector_t sector = bvm->bi_sector + get_start_sect(bvm->bi_bdev);
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003321 int max;
3322 unsigned int chunk_sectors = mddev->chunk_size >> 9;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003323 unsigned int bio_sectors = bvm->bi_size >> 9;
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003324
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003325 if ((bvm->bi_rw & 1) == WRITE)
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003326 return biovec->bv_len; /* always allow writes to be mergeable */
3327
NeilBrown784052e2009-03-31 15:19:07 +11003328 if (mddev->new_chunk < mddev->chunk_size)
3329 chunk_sectors = mddev->new_chunk >> 9;
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003330 max = (chunk_sectors - ((sector & (chunk_sectors - 1)) + bio_sectors)) << 9;
3331 if (max < 0) max = 0;
3332 if (max <= biovec->bv_len && bio_sectors == 0)
3333 return biovec->bv_len;
3334 else
3335 return max;
3336}
3337
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003338
3339static int in_chunk_boundary(mddev_t *mddev, struct bio *bio)
3340{
3341 sector_t sector = bio->bi_sector + get_start_sect(bio->bi_bdev);
3342 unsigned int chunk_sectors = mddev->chunk_size >> 9;
3343 unsigned int bio_sectors = bio->bi_size >> 9;
3344
NeilBrown784052e2009-03-31 15:19:07 +11003345 if (mddev->new_chunk < mddev->chunk_size)
3346 chunk_sectors = mddev->new_chunk >> 9;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003347 return chunk_sectors >=
3348 ((sector & (chunk_sectors - 1)) + bio_sectors);
3349}
3350
3351/*
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003352 * add bio to the retry LIFO ( in O(1) ... we are in interrupt )
3353 * later sampled by raid5d.
3354 */
3355static void add_bio_to_retry(struct bio *bi,raid5_conf_t *conf)
3356{
3357 unsigned long flags;
3358
3359 spin_lock_irqsave(&conf->device_lock, flags);
3360
3361 bi->bi_next = conf->retry_read_aligned_list;
3362 conf->retry_read_aligned_list = bi;
3363
3364 spin_unlock_irqrestore(&conf->device_lock, flags);
3365 md_wakeup_thread(conf->mddev->thread);
3366}
3367
3368
3369static struct bio *remove_bio_from_retry(raid5_conf_t *conf)
3370{
3371 struct bio *bi;
3372
3373 bi = conf->retry_read_aligned;
3374 if (bi) {
3375 conf->retry_read_aligned = NULL;
3376 return bi;
3377 }
3378 bi = conf->retry_read_aligned_list;
3379 if(bi) {
Neil Brown387bb172007-02-08 14:20:29 -08003380 conf->retry_read_aligned_list = bi->bi_next;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003381 bi->bi_next = NULL;
Jens Axboe960e7392008-08-15 10:41:18 +02003382 /*
3383 * this sets the active strip count to 1 and the processed
3384 * strip count to zero (upper 8 bits)
3385 */
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003386 bi->bi_phys_segments = 1; /* biased count of active stripes */
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003387 }
3388
3389 return bi;
3390}
3391
3392
3393/*
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003394 * The "raid5_align_endio" should check if the read succeeded and if it
3395 * did, call bio_endio on the original bio (having bio_put the new bio
3396 * first).
3397 * If the read failed..
3398 */
NeilBrown6712ecf2007-09-27 12:47:43 +02003399static void raid5_align_endio(struct bio *bi, int error)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003400{
3401 struct bio* raid_bi = bi->bi_private;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003402 mddev_t *mddev;
3403 raid5_conf_t *conf;
3404 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
3405 mdk_rdev_t *rdev;
3406
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003407 bio_put(bi);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003408
3409 mddev = raid_bi->bi_bdev->bd_disk->queue->queuedata;
3410 conf = mddev_to_conf(mddev);
3411 rdev = (void*)raid_bi->bi_next;
3412 raid_bi->bi_next = NULL;
3413
3414 rdev_dec_pending(rdev, conf->mddev);
3415
3416 if (!error && uptodate) {
NeilBrown6712ecf2007-09-27 12:47:43 +02003417 bio_endio(raid_bi, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003418 if (atomic_dec_and_test(&conf->active_aligned_reads))
3419 wake_up(&conf->wait_for_stripe);
NeilBrown6712ecf2007-09-27 12:47:43 +02003420 return;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003421 }
3422
3423
Dan Williams45b42332007-07-09 11:56:43 -07003424 pr_debug("raid5_align_endio : io error...handing IO for a retry\n");
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003425
3426 add_bio_to_retry(raid_bi, conf);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003427}
3428
Neil Brown387bb172007-02-08 14:20:29 -08003429static int bio_fits_rdev(struct bio *bi)
3430{
Jens Axboe165125e2007-07-24 09:28:11 +02003431 struct request_queue *q = bdev_get_queue(bi->bi_bdev);
Neil Brown387bb172007-02-08 14:20:29 -08003432
3433 if ((bi->bi_size>>9) > q->max_sectors)
3434 return 0;
3435 blk_recount_segments(q, bi);
Jens Axboe960e7392008-08-15 10:41:18 +02003436 if (bi->bi_phys_segments > q->max_phys_segments)
Neil Brown387bb172007-02-08 14:20:29 -08003437 return 0;
3438
3439 if (q->merge_bvec_fn)
3440 /* it's too hard to apply the merge_bvec_fn at this stage,
3441 * just just give up
3442 */
3443 return 0;
3444
3445 return 1;
3446}
3447
3448
Jens Axboe165125e2007-07-24 09:28:11 +02003449static int chunk_aligned_read(struct request_queue *q, struct bio * raid_bio)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003450{
3451 mddev_t *mddev = q->queuedata;
3452 raid5_conf_t *conf = mddev_to_conf(mddev);
NeilBrown911d4ee2009-03-31 14:39:38 +11003453 unsigned int dd_idx;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003454 struct bio* align_bi;
3455 mdk_rdev_t *rdev;
3456
3457 if (!in_chunk_boundary(mddev, raid_bio)) {
Dan Williams45b42332007-07-09 11:56:43 -07003458 pr_debug("chunk_aligned_read : non aligned\n");
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003459 return 0;
3460 }
3461 /*
NeilBrown99c0fb52009-03-31 14:39:38 +11003462 * use bio_clone to make a copy of the bio
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003463 */
3464 align_bi = bio_clone(raid_bio, GFP_NOIO);
3465 if (!align_bi)
3466 return 0;
3467 /*
3468 * set bi_end_io to a new function, and set bi_private to the
3469 * original bio.
3470 */
3471 align_bi->bi_end_io = raid5_align_endio;
3472 align_bi->bi_private = raid_bio;
3473 /*
3474 * compute position
3475 */
NeilBrown112bf892009-03-31 14:39:38 +11003476 align_bi->bi_sector = raid5_compute_sector(conf, raid_bio->bi_sector,
3477 0,
NeilBrown911d4ee2009-03-31 14:39:38 +11003478 &dd_idx, NULL);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003479
3480 rcu_read_lock();
3481 rdev = rcu_dereference(conf->disks[dd_idx].rdev);
3482 if (rdev && test_bit(In_sync, &rdev->flags)) {
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003483 atomic_inc(&rdev->nr_pending);
3484 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003485 raid_bio->bi_next = (void*)rdev;
3486 align_bi->bi_bdev = rdev->bdev;
3487 align_bi->bi_flags &= ~(1 << BIO_SEG_VALID);
3488 align_bi->bi_sector += rdev->data_offset;
3489
Neil Brown387bb172007-02-08 14:20:29 -08003490 if (!bio_fits_rdev(align_bi)) {
3491 /* too big in some way */
3492 bio_put(align_bi);
3493 rdev_dec_pending(rdev, mddev);
3494 return 0;
3495 }
3496
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003497 spin_lock_irq(&conf->device_lock);
3498 wait_event_lock_irq(conf->wait_for_stripe,
3499 conf->quiesce == 0,
3500 conf->device_lock, /* nothing */);
3501 atomic_inc(&conf->active_aligned_reads);
3502 spin_unlock_irq(&conf->device_lock);
3503
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003504 generic_make_request(align_bi);
3505 return 1;
3506 } else {
3507 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003508 bio_put(align_bi);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003509 return 0;
3510 }
3511}
3512
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003513/* __get_priority_stripe - get the next stripe to process
3514 *
3515 * Full stripe writes are allowed to pass preread active stripes up until
3516 * the bypass_threshold is exceeded. In general the bypass_count
3517 * increments when the handle_list is handled before the hold_list; however, it
3518 * will not be incremented when STRIPE_IO_STARTED is sampled set signifying a
3519 * stripe with in flight i/o. The bypass_count will be reset when the
3520 * head of the hold_list has changed, i.e. the head was promoted to the
3521 * handle_list.
3522 */
3523static struct stripe_head *__get_priority_stripe(raid5_conf_t *conf)
3524{
3525 struct stripe_head *sh;
3526
3527 pr_debug("%s: handle: %s hold: %s full_writes: %d bypass_count: %d\n",
3528 __func__,
3529 list_empty(&conf->handle_list) ? "empty" : "busy",
3530 list_empty(&conf->hold_list) ? "empty" : "busy",
3531 atomic_read(&conf->pending_full_writes), conf->bypass_count);
3532
3533 if (!list_empty(&conf->handle_list)) {
3534 sh = list_entry(conf->handle_list.next, typeof(*sh), lru);
3535
3536 if (list_empty(&conf->hold_list))
3537 conf->bypass_count = 0;
3538 else if (!test_bit(STRIPE_IO_STARTED, &sh->state)) {
3539 if (conf->hold_list.next == conf->last_hold)
3540 conf->bypass_count++;
3541 else {
3542 conf->last_hold = conf->hold_list.next;
3543 conf->bypass_count -= conf->bypass_threshold;
3544 if (conf->bypass_count < 0)
3545 conf->bypass_count = 0;
3546 }
3547 }
3548 } else if (!list_empty(&conf->hold_list) &&
3549 ((conf->bypass_threshold &&
3550 conf->bypass_count > conf->bypass_threshold) ||
3551 atomic_read(&conf->pending_full_writes) == 0)) {
3552 sh = list_entry(conf->hold_list.next,
3553 typeof(*sh), lru);
3554 conf->bypass_count -= conf->bypass_threshold;
3555 if (conf->bypass_count < 0)
3556 conf->bypass_count = 0;
3557 } else
3558 return NULL;
3559
3560 list_del_init(&sh->lru);
3561 atomic_inc(&sh->count);
3562 BUG_ON(atomic_read(&sh->count) != 1);
3563 return sh;
3564}
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003565
Jens Axboe165125e2007-07-24 09:28:11 +02003566static int make_request(struct request_queue *q, struct bio * bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567{
3568 mddev_t *mddev = q->queuedata;
3569 raid5_conf_t *conf = mddev_to_conf(mddev);
NeilBrown911d4ee2009-03-31 14:39:38 +11003570 int dd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571 sector_t new_sector;
3572 sector_t logical_sector, last_sector;
3573 struct stripe_head *sh;
Jens Axboea3623572005-11-01 09:26:16 +01003574 const int rw = bio_data_dir(bi);
Tejun Heoc9959052008-08-25 19:47:21 +09003575 int cpu, remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576
NeilBrowne5dcdd82005-09-09 16:23:41 -07003577 if (unlikely(bio_barrier(bi))) {
NeilBrown6712ecf2007-09-27 12:47:43 +02003578 bio_endio(bi, -EOPNOTSUPP);
NeilBrowne5dcdd82005-09-09 16:23:41 -07003579 return 0;
3580 }
3581
NeilBrown3d310eb2005-06-21 17:17:26 -07003582 md_write_start(mddev, bi);
NeilBrown06d91a52005-06-21 17:17:12 -07003583
Tejun Heo074a7ac2008-08-25 19:56:14 +09003584 cpu = part_stat_lock();
3585 part_stat_inc(cpu, &mddev->gendisk->part0, ios[rw]);
3586 part_stat_add(cpu, &mddev->gendisk->part0, sectors[rw],
3587 bio_sectors(bi));
3588 part_stat_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589
NeilBrown802ba062006-12-13 00:34:13 -08003590 if (rw == READ &&
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08003591 mddev->reshape_position == MaxSector &&
3592 chunk_aligned_read(q,bi))
NeilBrown99c0fb52009-03-31 14:39:38 +11003593 return 0;
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08003594
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595 logical_sector = bi->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
3596 last_sector = bi->bi_sector + (bi->bi_size>>9);
3597 bi->bi_next = NULL;
3598 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
NeilBrown06d91a52005-06-21 17:17:12 -07003599
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600 for (;logical_sector < last_sector; logical_sector += STRIPE_SECTORS) {
3601 DEFINE_WAIT(w);
NeilBrown16a53ec2006-06-26 00:27:38 -07003602 int disks, data_disks;
NeilBrownb5663ba2009-03-31 14:39:38 +11003603 int previous;
NeilBrownb578d552006-03-27 01:18:12 -08003604
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003605 retry:
NeilBrownb5663ba2009-03-31 14:39:38 +11003606 previous = 0;
NeilBrownb578d552006-03-27 01:18:12 -08003607 prepare_to_wait(&conf->wait_for_overlap, &w, TASK_UNINTERRUPTIBLE);
NeilBrownfef9c612009-03-31 15:16:46 +11003608 if (likely(conf->reshape_progress == MaxSector))
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003609 disks = conf->raid_disks;
3610 else {
NeilBrownfef9c612009-03-31 15:16:46 +11003611 /* spinlock is needed as reshape_progress may be
NeilBrowndf8e7f72006-03-27 01:18:15 -08003612 * 64bit on a 32bit platform, and so it might be
3613 * possible to see a half-updated value
NeilBrownfef9c612009-03-31 15:16:46 +11003614 * Ofcourse reshape_progress could change after
NeilBrowndf8e7f72006-03-27 01:18:15 -08003615 * the lock is dropped, so once we get a reference
3616 * to the stripe that we think it is, we will have
3617 * to check again.
3618 */
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003619 spin_lock_irq(&conf->device_lock);
3620 disks = conf->raid_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11003621 if (mddev->delta_disks < 0
3622 ? logical_sector < conf->reshape_progress
3623 : logical_sector >= conf->reshape_progress) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003624 disks = conf->previous_raid_disks;
NeilBrownb5663ba2009-03-31 14:39:38 +11003625 previous = 1;
3626 } else {
NeilBrownfef9c612009-03-31 15:16:46 +11003627 if (mddev->delta_disks < 0
3628 ? logical_sector < conf->reshape_safe
3629 : logical_sector >= conf->reshape_safe) {
NeilBrownb578d552006-03-27 01:18:12 -08003630 spin_unlock_irq(&conf->device_lock);
3631 schedule();
3632 goto retry;
3633 }
3634 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003635 spin_unlock_irq(&conf->device_lock);
3636 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003637 data_disks = disks - conf->max_degraded;
3638
NeilBrown112bf892009-03-31 14:39:38 +11003639 new_sector = raid5_compute_sector(conf, logical_sector,
3640 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11003641 &dd_idx, NULL);
Dan Williams45b42332007-07-09 11:56:43 -07003642 pr_debug("raid5: make_request, sector %llu logical %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643 (unsigned long long)new_sector,
3644 (unsigned long long)logical_sector);
3645
NeilBrownb5663ba2009-03-31 14:39:38 +11003646 sh = get_active_stripe(conf, new_sector, previous,
3647 (bi->bi_rw&RWA_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648 if (sh) {
NeilBrownfef9c612009-03-31 15:16:46 +11003649 if (unlikely(conf->reshape_progress != MaxSector)) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003650 /* expansion might have moved on while waiting for a
NeilBrowndf8e7f72006-03-27 01:18:15 -08003651 * stripe, so we must do the range check again.
3652 * Expansion could still move past after this
3653 * test, but as we are holding a reference to
3654 * 'sh', we know that if that happens,
3655 * STRIPE_EXPANDING will get set and the expansion
3656 * won't proceed until we finish with the stripe.
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003657 */
3658 int must_retry = 0;
3659 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11003660 if ((mddev->delta_disks < 0
3661 ? logical_sector >= conf->reshape_progress
3662 : logical_sector < conf->reshape_progress)
NeilBrown86b42c72009-03-31 15:19:03 +11003663 && previous)
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003664 /* mismatch, need to try again */
3665 must_retry = 1;
3666 spin_unlock_irq(&conf->device_lock);
3667 if (must_retry) {
3668 release_stripe(sh);
3669 goto retry;
3670 }
3671 }
NeilBrowne464eaf2006-03-27 01:18:14 -08003672 /* FIXME what if we get a false positive because these
3673 * are being updated.
3674 */
3675 if (logical_sector >= mddev->suspend_lo &&
3676 logical_sector < mddev->suspend_hi) {
3677 release_stripe(sh);
3678 schedule();
3679 goto retry;
3680 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003681
3682 if (test_bit(STRIPE_EXPANDING, &sh->state) ||
3683 !add_stripe_bio(sh, bi, dd_idx, (bi->bi_rw&RW_MASK))) {
3684 /* Stripe is busy expanding or
3685 * add failed due to overlap. Flush everything
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686 * and wait a while
3687 */
3688 raid5_unplug_device(mddev->queue);
3689 release_stripe(sh);
3690 schedule();
3691 goto retry;
3692 }
3693 finish_wait(&conf->wait_for_overlap, &w);
NeilBrown6ed30032008-02-06 01:40:00 -08003694 set_bit(STRIPE_HANDLE, &sh->state);
3695 clear_bit(STRIPE_DELAYED, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697 } else {
3698 /* cannot get stripe for read-ahead, just give-up */
3699 clear_bit(BIO_UPTODATE, &bi->bi_flags);
3700 finish_wait(&conf->wait_for_overlap, &w);
3701 break;
3702 }
3703
3704 }
3705 spin_lock_irq(&conf->device_lock);
Jens Axboe960e7392008-08-15 10:41:18 +02003706 remaining = raid5_dec_bi_phys_segments(bi);
NeilBrownf6344752006-03-27 01:18:17 -08003707 spin_unlock_irq(&conf->device_lock);
3708 if (remaining == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709
NeilBrown16a53ec2006-06-26 00:27:38 -07003710 if ( rw == WRITE )
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711 md_write_end(mddev);
NeilBrown6712ecf2007-09-27 12:47:43 +02003712
Neil Brown0e13fe232008-06-28 08:31:20 +10003713 bio_endio(bi, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715 return 0;
3716}
3717
Dan Williamsb522adc2009-03-31 15:00:31 +11003718static sector_t raid5_size(mddev_t *mddev, sector_t sectors, int raid_disks);
3719
NeilBrown52c03292006-06-26 00:27:43 -07003720static sector_t reshape_request(mddev_t *mddev, sector_t sector_nr, int *skipped)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721{
NeilBrown52c03292006-06-26 00:27:43 -07003722 /* reshaping is quite different to recovery/resync so it is
3723 * handled quite separately ... here.
3724 *
3725 * On each call to sync_request, we gather one chunk worth of
3726 * destination stripes and flag them as expanding.
3727 * Then we find all the source stripes and request reads.
3728 * As the reads complete, handle_stripe will copy the data
3729 * into the destination stripe and release that stripe.
3730 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
3732 struct stripe_head *sh;
NeilBrownccfcc3c2006-03-27 01:18:09 -08003733 sector_t first_sector, last_sector;
NeilBrownf4168852007-02-28 20:11:53 -08003734 int raid_disks = conf->previous_raid_disks;
3735 int data_disks = raid_disks - conf->max_degraded;
3736 int new_data_disks = conf->raid_disks - conf->max_degraded;
NeilBrown52c03292006-06-26 00:27:43 -07003737 int i;
3738 int dd_idx;
3739 sector_t writepos, safepos, gap;
NeilBrownec32a2b2009-03-31 15:17:38 +11003740 sector_t stripe_addr;
NeilBrown7a661382009-03-31 15:21:40 +11003741 int reshape_sectors;
NeilBrown52c03292006-06-26 00:27:43 -07003742
NeilBrownfef9c612009-03-31 15:16:46 +11003743 if (sector_nr == 0) {
3744 /* If restarting in the middle, skip the initial sectors */
3745 if (mddev->delta_disks < 0 &&
3746 conf->reshape_progress < raid5_size(mddev, 0, 0)) {
3747 sector_nr = raid5_size(mddev, 0, 0)
3748 - conf->reshape_progress;
3749 } else if (mddev->delta_disks > 0 &&
3750 conf->reshape_progress > 0)
3751 sector_nr = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08003752 sector_div(sector_nr, new_data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11003753 if (sector_nr) {
3754 *skipped = 1;
3755 return sector_nr;
3756 }
NeilBrown52c03292006-06-26 00:27:43 -07003757 }
3758
NeilBrown7a661382009-03-31 15:21:40 +11003759 /* We need to process a full chunk at a time.
3760 * If old and new chunk sizes differ, we need to process the
3761 * largest of these
3762 */
3763 if (mddev->new_chunk > mddev->chunk_size)
3764 reshape_sectors = mddev->new_chunk / 512;
3765 else
3766 reshape_sectors = mddev->chunk_size / 512;
3767
NeilBrown52c03292006-06-26 00:27:43 -07003768 /* we update the metadata when there is more than 3Meg
3769 * in the block range (that is rather arbitrary, should
3770 * probably be time based) or when the data about to be
3771 * copied would over-write the source of the data at
3772 * the front of the range.
NeilBrownfef9c612009-03-31 15:16:46 +11003773 * i.e. one new_stripe along from reshape_progress new_maps
3774 * to after where reshape_safe old_maps to
NeilBrown52c03292006-06-26 00:27:43 -07003775 */
NeilBrownfef9c612009-03-31 15:16:46 +11003776 writepos = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08003777 sector_div(writepos, new_data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11003778 safepos = conf->reshape_safe;
NeilBrownf4168852007-02-28 20:11:53 -08003779 sector_div(safepos, data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11003780 if (mddev->delta_disks < 0) {
NeilBrown7a661382009-03-31 15:21:40 +11003781 writepos -= reshape_sectors;
3782 safepos += reshape_sectors;
NeilBrownfef9c612009-03-31 15:16:46 +11003783 gap = conf->reshape_safe - conf->reshape_progress;
3784 } else {
NeilBrown7a661382009-03-31 15:21:40 +11003785 writepos += reshape_sectors;
3786 safepos -= reshape_sectors;
NeilBrownfef9c612009-03-31 15:16:46 +11003787 gap = conf->reshape_progress - conf->reshape_safe;
3788 }
NeilBrown52c03292006-06-26 00:27:43 -07003789
NeilBrownfef9c612009-03-31 15:16:46 +11003790 if ((mddev->delta_disks < 0
3791 ? writepos < safepos
3792 : writepos > safepos) ||
NeilBrownf4168852007-02-28 20:11:53 -08003793 gap > (new_data_disks)*3000*2 /*3Meg*/) {
NeilBrown52c03292006-06-26 00:27:43 -07003794 /* Cannot proceed until we've updated the superblock... */
3795 wait_event(conf->wait_for_overlap,
3796 atomic_read(&conf->reshape_stripes)==0);
NeilBrownfef9c612009-03-31 15:16:46 +11003797 mddev->reshape_position = conf->reshape_progress;
NeilBrown850b2b42006-10-03 01:15:46 -07003798 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrown52c03292006-06-26 00:27:43 -07003799 md_wakeup_thread(mddev->thread);
NeilBrown850b2b42006-10-03 01:15:46 -07003800 wait_event(mddev->sb_wait, mddev->flags == 0 ||
NeilBrown52c03292006-06-26 00:27:43 -07003801 kthread_should_stop());
3802 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11003803 conf->reshape_safe = mddev->reshape_position;
NeilBrown52c03292006-06-26 00:27:43 -07003804 spin_unlock_irq(&conf->device_lock);
3805 wake_up(&conf->wait_for_overlap);
3806 }
3807
NeilBrownec32a2b2009-03-31 15:17:38 +11003808 if (mddev->delta_disks < 0) {
3809 BUG_ON(conf->reshape_progress == 0);
3810 stripe_addr = writepos;
3811 BUG_ON((mddev->dev_sectors &
NeilBrown7a661382009-03-31 15:21:40 +11003812 ~((sector_t)reshape_sectors - 1))
3813 - reshape_sectors - stripe_addr
NeilBrownec32a2b2009-03-31 15:17:38 +11003814 != sector_nr);
3815 } else {
NeilBrown7a661382009-03-31 15:21:40 +11003816 BUG_ON(writepos != sector_nr + reshape_sectors);
NeilBrownec32a2b2009-03-31 15:17:38 +11003817 stripe_addr = sector_nr;
3818 }
NeilBrown7a661382009-03-31 15:21:40 +11003819 for (i = 0; i < reshape_sectors; i += STRIPE_SECTORS) {
NeilBrown52c03292006-06-26 00:27:43 -07003820 int j;
3821 int skipped = 0;
NeilBrownec32a2b2009-03-31 15:17:38 +11003822 sh = get_active_stripe(conf, stripe_addr+i, 0, 0);
NeilBrown52c03292006-06-26 00:27:43 -07003823 set_bit(STRIPE_EXPANDING, &sh->state);
3824 atomic_inc(&conf->reshape_stripes);
3825 /* If any of this stripe is beyond the end of the old
3826 * array, then we need to zero those blocks
3827 */
3828 for (j=sh->disks; j--;) {
3829 sector_t s;
3830 if (j == sh->pd_idx)
3831 continue;
NeilBrownf4168852007-02-28 20:11:53 -08003832 if (conf->level == 6 &&
NeilBrownd0dabf72009-03-31 14:39:38 +11003833 j == sh->qd_idx)
NeilBrownf4168852007-02-28 20:11:53 -08003834 continue;
NeilBrown784052e2009-03-31 15:19:07 +11003835 s = compute_blocknr(sh, j, 0);
Dan Williamsb522adc2009-03-31 15:00:31 +11003836 if (s < raid5_size(mddev, 0, 0)) {
NeilBrown52c03292006-06-26 00:27:43 -07003837 skipped = 1;
3838 continue;
3839 }
3840 memset(page_address(sh->dev[j].page), 0, STRIPE_SIZE);
3841 set_bit(R5_Expanded, &sh->dev[j].flags);
3842 set_bit(R5_UPTODATE, &sh->dev[j].flags);
3843 }
3844 if (!skipped) {
3845 set_bit(STRIPE_EXPAND_READY, &sh->state);
3846 set_bit(STRIPE_HANDLE, &sh->state);
3847 }
3848 release_stripe(sh);
3849 }
3850 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11003851 if (mddev->delta_disks < 0)
NeilBrown7a661382009-03-31 15:21:40 +11003852 conf->reshape_progress -= reshape_sectors * new_data_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11003853 else
NeilBrown7a661382009-03-31 15:21:40 +11003854 conf->reshape_progress += reshape_sectors * new_data_disks;
NeilBrown52c03292006-06-26 00:27:43 -07003855 spin_unlock_irq(&conf->device_lock);
3856 /* Ok, those stripe are ready. We can start scheduling
3857 * reads on the source stripes.
3858 * The source stripes are determined by mapping the first and last
3859 * block on the destination stripes.
3860 */
NeilBrown52c03292006-06-26 00:27:43 -07003861 first_sector =
NeilBrownec32a2b2009-03-31 15:17:38 +11003862 raid5_compute_sector(conf, stripe_addr*(new_data_disks),
NeilBrown911d4ee2009-03-31 14:39:38 +11003863 1, &dd_idx, NULL);
NeilBrown52c03292006-06-26 00:27:43 -07003864 last_sector =
NeilBrownec32a2b2009-03-31 15:17:38 +11003865 raid5_compute_sector(conf, ((stripe_addr+conf->chunk_size/512)
NeilBrown112bf892009-03-31 14:39:38 +11003866 *(new_data_disks) - 1),
NeilBrown911d4ee2009-03-31 14:39:38 +11003867 1, &dd_idx, NULL);
Andre Noll58c0fed2009-03-31 14:33:13 +11003868 if (last_sector >= mddev->dev_sectors)
3869 last_sector = mddev->dev_sectors - 1;
NeilBrown52c03292006-06-26 00:27:43 -07003870 while (first_sector <= last_sector) {
NeilBrownb5663ba2009-03-31 14:39:38 +11003871 sh = get_active_stripe(conf, first_sector, 1, 0);
NeilBrown52c03292006-06-26 00:27:43 -07003872 set_bit(STRIPE_EXPAND_SOURCE, &sh->state);
3873 set_bit(STRIPE_HANDLE, &sh->state);
3874 release_stripe(sh);
3875 first_sector += STRIPE_SECTORS;
3876 }
NeilBrownc6207272008-02-06 01:39:52 -08003877 /* If this takes us to the resync_max point where we have to pause,
3878 * then we need to write out the superblock.
3879 */
NeilBrown7a661382009-03-31 15:21:40 +11003880 sector_nr += reshape_sectors;
NeilBrownc6207272008-02-06 01:39:52 -08003881 if (sector_nr >= mddev->resync_max) {
3882 /* Cannot proceed until we've updated the superblock... */
3883 wait_event(conf->wait_for_overlap,
3884 atomic_read(&conf->reshape_stripes) == 0);
NeilBrownfef9c612009-03-31 15:16:46 +11003885 mddev->reshape_position = conf->reshape_progress;
NeilBrownc6207272008-02-06 01:39:52 -08003886 set_bit(MD_CHANGE_DEVS, &mddev->flags);
3887 md_wakeup_thread(mddev->thread);
3888 wait_event(mddev->sb_wait,
3889 !test_bit(MD_CHANGE_DEVS, &mddev->flags)
3890 || kthread_should_stop());
3891 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11003892 conf->reshape_safe = mddev->reshape_position;
NeilBrownc6207272008-02-06 01:39:52 -08003893 spin_unlock_irq(&conf->device_lock);
3894 wake_up(&conf->wait_for_overlap);
3895 }
NeilBrown7a661382009-03-31 15:21:40 +11003896 return reshape_sectors;
NeilBrown52c03292006-06-26 00:27:43 -07003897}
3898
3899/* FIXME go_faster isn't used */
3900static inline sector_t sync_request(mddev_t *mddev, sector_t sector_nr, int *skipped, int go_faster)
3901{
3902 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
3903 struct stripe_head *sh;
Andre Noll58c0fed2009-03-31 14:33:13 +11003904 sector_t max_sector = mddev->dev_sectors;
NeilBrown72626682005-09-09 16:23:54 -07003905 int sync_blocks;
NeilBrown16a53ec2006-06-26 00:27:38 -07003906 int still_degraded = 0;
3907 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908
NeilBrown72626682005-09-09 16:23:54 -07003909 if (sector_nr >= max_sector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910 /* just being told to finish up .. nothing much to do */
3911 unplug_slaves(mddev);
NeilBrowncea9c222009-03-31 15:15:05 +11003912
NeilBrown29269552006-03-27 01:18:10 -08003913 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery)) {
3914 end_reshape(conf);
3915 return 0;
3916 }
NeilBrown72626682005-09-09 16:23:54 -07003917
3918 if (mddev->curr_resync < max_sector) /* aborted */
3919 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
3920 &sync_blocks, 1);
NeilBrown16a53ec2006-06-26 00:27:38 -07003921 else /* completed sync */
NeilBrown72626682005-09-09 16:23:54 -07003922 conf->fullsync = 0;
3923 bitmap_close_sync(mddev->bitmap);
3924
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925 return 0;
3926 }
NeilBrownccfcc3c2006-03-27 01:18:09 -08003927
NeilBrown52c03292006-06-26 00:27:43 -07003928 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery))
3929 return reshape_request(mddev, sector_nr, skipped);
NeilBrownf6705572006-03-27 01:18:11 -08003930
NeilBrownc6207272008-02-06 01:39:52 -08003931 /* No need to check resync_max as we never do more than one
3932 * stripe, and as resync_max will always be on a chunk boundary,
3933 * if the check in md_do_sync didn't fire, there is no chance
3934 * of overstepping resync_max here
3935 */
3936
NeilBrown16a53ec2006-06-26 00:27:38 -07003937 /* if there is too many failed drives and we are trying
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938 * to resync, then assert that we are finished, because there is
3939 * nothing we can do.
3940 */
NeilBrown3285edf2006-06-26 00:27:55 -07003941 if (mddev->degraded >= conf->max_degraded &&
NeilBrown16a53ec2006-06-26 00:27:38 -07003942 test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
Andre Noll58c0fed2009-03-31 14:33:13 +11003943 sector_t rv = mddev->dev_sectors - sector_nr;
NeilBrown57afd892005-06-21 17:17:13 -07003944 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945 return rv;
3946 }
NeilBrown72626682005-09-09 16:23:54 -07003947 if (!bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
NeilBrown3855ad92005-11-08 21:39:38 -08003948 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
NeilBrown72626682005-09-09 16:23:54 -07003949 !conf->fullsync && sync_blocks >= STRIPE_SECTORS) {
3950 /* we can skip this block, and probably more */
3951 sync_blocks /= STRIPE_SECTORS;
3952 *skipped = 1;
3953 return sync_blocks * STRIPE_SECTORS; /* keep things rounded to whole stripes */
3954 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955
NeilBrownb47490c2008-02-06 01:39:50 -08003956
3957 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
3958
NeilBrownb5663ba2009-03-31 14:39:38 +11003959 sh = get_active_stripe(conf, sector_nr, 0, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960 if (sh == NULL) {
NeilBrownb5663ba2009-03-31 14:39:38 +11003961 sh = get_active_stripe(conf, sector_nr, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962 /* make sure we don't swamp the stripe cache if someone else
NeilBrown16a53ec2006-06-26 00:27:38 -07003963 * is trying to get access
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964 */
Nishanth Aravamudan66c006a2005-11-07 01:01:17 -08003965 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003967 /* Need to check if array will still be degraded after recovery/resync
3968 * We don't need to check the 'failed' flag as when that gets set,
3969 * recovery aborts.
3970 */
3971 for (i=0; i<mddev->raid_disks; i++)
3972 if (conf->disks[i].rdev == NULL)
3973 still_degraded = 1;
3974
3975 bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, still_degraded);
3976
3977 spin_lock(&sh->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978 set_bit(STRIPE_SYNCING, &sh->state);
3979 clear_bit(STRIPE_INSYNC, &sh->state);
3980 spin_unlock(&sh->lock);
3981
Dan Williamsdf10cfb2008-07-28 23:10:39 -07003982 /* wait for any blocked device to be handled */
3983 while(unlikely(!handle_stripe(sh, NULL)))
3984 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985 release_stripe(sh);
3986
3987 return STRIPE_SECTORS;
3988}
3989
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003990static int retry_aligned_read(raid5_conf_t *conf, struct bio *raid_bio)
3991{
3992 /* We may not be able to submit a whole bio at once as there
3993 * may not be enough stripe_heads available.
3994 * We cannot pre-allocate enough stripe_heads as we may need
3995 * more than exist in the cache (if we allow ever large chunks).
3996 * So we do one stripe head at a time and record in
3997 * ->bi_hw_segments how many have been done.
3998 *
3999 * We *know* that this entire raid_bio is in one chunk, so
4000 * it will be only one 'dd_idx' and only need one call to raid5_compute_sector.
4001 */
4002 struct stripe_head *sh;
NeilBrown911d4ee2009-03-31 14:39:38 +11004003 int dd_idx;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004004 sector_t sector, logical_sector, last_sector;
4005 int scnt = 0;
4006 int remaining;
4007 int handled = 0;
4008
4009 logical_sector = raid_bio->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
NeilBrown112bf892009-03-31 14:39:38 +11004010 sector = raid5_compute_sector(conf, logical_sector,
NeilBrown911d4ee2009-03-31 14:39:38 +11004011 0, &dd_idx, NULL);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004012 last_sector = raid_bio->bi_sector + (raid_bio->bi_size>>9);
4013
4014 for (; logical_sector < last_sector;
Neil Brown387bb172007-02-08 14:20:29 -08004015 logical_sector += STRIPE_SECTORS,
4016 sector += STRIPE_SECTORS,
4017 scnt++) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004018
Jens Axboe960e7392008-08-15 10:41:18 +02004019 if (scnt < raid5_bi_hw_segments(raid_bio))
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004020 /* already done this stripe */
4021 continue;
4022
NeilBrownb5663ba2009-03-31 14:39:38 +11004023 sh = get_active_stripe(conf, sector, 0, 1);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004024
4025 if (!sh) {
4026 /* failed to get a stripe - must wait */
Jens Axboe960e7392008-08-15 10:41:18 +02004027 raid5_set_bi_hw_segments(raid_bio, scnt);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004028 conf->retry_read_aligned = raid_bio;
4029 return handled;
4030 }
4031
4032 set_bit(R5_ReadError, &sh->dev[dd_idx].flags);
Neil Brown387bb172007-02-08 14:20:29 -08004033 if (!add_stripe_bio(sh, raid_bio, dd_idx, 0)) {
4034 release_stripe(sh);
Jens Axboe960e7392008-08-15 10:41:18 +02004035 raid5_set_bi_hw_segments(raid_bio, scnt);
Neil Brown387bb172007-02-08 14:20:29 -08004036 conf->retry_read_aligned = raid_bio;
4037 return handled;
4038 }
4039
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004040 handle_stripe(sh, NULL);
4041 release_stripe(sh);
4042 handled++;
4043 }
4044 spin_lock_irq(&conf->device_lock);
Jens Axboe960e7392008-08-15 10:41:18 +02004045 remaining = raid5_dec_bi_phys_segments(raid_bio);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004046 spin_unlock_irq(&conf->device_lock);
Neil Brown0e13fe232008-06-28 08:31:20 +10004047 if (remaining == 0)
4048 bio_endio(raid_bio, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004049 if (atomic_dec_and_test(&conf->active_aligned_reads))
4050 wake_up(&conf->wait_for_stripe);
4051 return handled;
4052}
4053
4054
4055
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056/*
4057 * This is our raid5 kernel thread.
4058 *
4059 * We scan the hash table for stripes which can be handled now.
4060 * During the scan, completed stripes are saved for us by the interrupt
4061 * handler, so that they will not have to wait for our next wakeup.
4062 */
NeilBrown6ed30032008-02-06 01:40:00 -08004063static void raid5d(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064{
4065 struct stripe_head *sh;
4066 raid5_conf_t *conf = mddev_to_conf(mddev);
4067 int handled;
4068
Dan Williams45b42332007-07-09 11:56:43 -07004069 pr_debug("+++ raid5d active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004070
4071 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072
4073 handled = 0;
4074 spin_lock_irq(&conf->device_lock);
4075 while (1) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004076 struct bio *bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077
NeilBrownae3c20c2006-07-10 04:44:17 -07004078 if (conf->seq_flush != conf->seq_write) {
NeilBrown72626682005-09-09 16:23:54 -07004079 int seq = conf->seq_flush;
NeilBrown700e4322005-11-28 13:44:10 -08004080 spin_unlock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07004081 bitmap_unplug(mddev->bitmap);
NeilBrown700e4322005-11-28 13:44:10 -08004082 spin_lock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07004083 conf->seq_write = seq;
4084 activate_bit_delay(conf);
4085 }
4086
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004087 while ((bio = remove_bio_from_retry(conf))) {
4088 int ok;
4089 spin_unlock_irq(&conf->device_lock);
4090 ok = retry_aligned_read(conf, bio);
4091 spin_lock_irq(&conf->device_lock);
4092 if (!ok)
4093 break;
4094 handled++;
4095 }
4096
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004097 sh = __get_priority_stripe(conf);
4098
Dan Williamsc9f21aa2008-07-23 12:05:51 -07004099 if (!sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101 spin_unlock_irq(&conf->device_lock);
4102
4103 handled++;
NeilBrown16a53ec2006-06-26 00:27:38 -07004104 handle_stripe(sh, conf->spare_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105 release_stripe(sh);
4106
4107 spin_lock_irq(&conf->device_lock);
4108 }
Dan Williams45b42332007-07-09 11:56:43 -07004109 pr_debug("%d stripes handled\n", handled);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110
4111 spin_unlock_irq(&conf->device_lock);
4112
Dan Williamsc9f21aa2008-07-23 12:05:51 -07004113 async_tx_issue_pending_all();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114 unplug_slaves(mddev);
4115
Dan Williams45b42332007-07-09 11:56:43 -07004116 pr_debug("--- raid5d inactive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117}
4118
NeilBrown3f294f42005-11-08 21:39:25 -08004119static ssize_t
NeilBrown007583c2005-11-08 21:39:30 -08004120raid5_show_stripe_cache_size(mddev_t *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08004121{
NeilBrown007583c2005-11-08 21:39:30 -08004122 raid5_conf_t *conf = mddev_to_conf(mddev);
NeilBrown96de1e62005-11-08 21:39:39 -08004123 if (conf)
4124 return sprintf(page, "%d\n", conf->max_nr_stripes);
4125 else
4126 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08004127}
4128
4129static ssize_t
NeilBrown007583c2005-11-08 21:39:30 -08004130raid5_store_stripe_cache_size(mddev_t *mddev, const char *page, size_t len)
NeilBrown3f294f42005-11-08 21:39:25 -08004131{
NeilBrown007583c2005-11-08 21:39:30 -08004132 raid5_conf_t *conf = mddev_to_conf(mddev);
Dan Williams4ef197d82008-04-28 02:15:54 -07004133 unsigned long new;
Dan Williamsb5470dc2008-06-27 21:44:04 -07004134 int err;
4135
NeilBrown3f294f42005-11-08 21:39:25 -08004136 if (len >= PAGE_SIZE)
4137 return -EINVAL;
NeilBrown96de1e62005-11-08 21:39:39 -08004138 if (!conf)
4139 return -ENODEV;
NeilBrown3f294f42005-11-08 21:39:25 -08004140
Dan Williams4ef197d82008-04-28 02:15:54 -07004141 if (strict_strtoul(page, 10, &new))
NeilBrown3f294f42005-11-08 21:39:25 -08004142 return -EINVAL;
4143 if (new <= 16 || new > 32768)
4144 return -EINVAL;
4145 while (new < conf->max_nr_stripes) {
4146 if (drop_one_stripe(conf))
4147 conf->max_nr_stripes--;
4148 else
4149 break;
4150 }
Dan Williamsb5470dc2008-06-27 21:44:04 -07004151 err = md_allow_write(mddev);
4152 if (err)
4153 return err;
NeilBrown3f294f42005-11-08 21:39:25 -08004154 while (new > conf->max_nr_stripes) {
4155 if (grow_one_stripe(conf))
4156 conf->max_nr_stripes++;
4157 else break;
4158 }
4159 return len;
4160}
NeilBrown007583c2005-11-08 21:39:30 -08004161
NeilBrown96de1e62005-11-08 21:39:39 -08004162static struct md_sysfs_entry
4163raid5_stripecache_size = __ATTR(stripe_cache_size, S_IRUGO | S_IWUSR,
4164 raid5_show_stripe_cache_size,
4165 raid5_store_stripe_cache_size);
NeilBrown3f294f42005-11-08 21:39:25 -08004166
4167static ssize_t
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004168raid5_show_preread_threshold(mddev_t *mddev, char *page)
4169{
4170 raid5_conf_t *conf = mddev_to_conf(mddev);
4171 if (conf)
4172 return sprintf(page, "%d\n", conf->bypass_threshold);
4173 else
4174 return 0;
4175}
4176
4177static ssize_t
4178raid5_store_preread_threshold(mddev_t *mddev, const char *page, size_t len)
4179{
4180 raid5_conf_t *conf = mddev_to_conf(mddev);
Dan Williams4ef197d82008-04-28 02:15:54 -07004181 unsigned long new;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004182 if (len >= PAGE_SIZE)
4183 return -EINVAL;
4184 if (!conf)
4185 return -ENODEV;
4186
Dan Williams4ef197d82008-04-28 02:15:54 -07004187 if (strict_strtoul(page, 10, &new))
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004188 return -EINVAL;
Dan Williams4ef197d82008-04-28 02:15:54 -07004189 if (new > conf->max_nr_stripes)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004190 return -EINVAL;
4191 conf->bypass_threshold = new;
4192 return len;
4193}
4194
4195static struct md_sysfs_entry
4196raid5_preread_bypass_threshold = __ATTR(preread_bypass_threshold,
4197 S_IRUGO | S_IWUSR,
4198 raid5_show_preread_threshold,
4199 raid5_store_preread_threshold);
4200
4201static ssize_t
NeilBrown96de1e62005-11-08 21:39:39 -08004202stripe_cache_active_show(mddev_t *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08004203{
NeilBrown007583c2005-11-08 21:39:30 -08004204 raid5_conf_t *conf = mddev_to_conf(mddev);
NeilBrown96de1e62005-11-08 21:39:39 -08004205 if (conf)
4206 return sprintf(page, "%d\n", atomic_read(&conf->active_stripes));
4207 else
4208 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08004209}
4210
NeilBrown96de1e62005-11-08 21:39:39 -08004211static struct md_sysfs_entry
4212raid5_stripecache_active = __ATTR_RO(stripe_cache_active);
NeilBrown3f294f42005-11-08 21:39:25 -08004213
NeilBrown007583c2005-11-08 21:39:30 -08004214static struct attribute *raid5_attrs[] = {
NeilBrown3f294f42005-11-08 21:39:25 -08004215 &raid5_stripecache_size.attr,
4216 &raid5_stripecache_active.attr,
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004217 &raid5_preread_bypass_threshold.attr,
NeilBrown3f294f42005-11-08 21:39:25 -08004218 NULL,
4219};
NeilBrown007583c2005-11-08 21:39:30 -08004220static struct attribute_group raid5_attrs_group = {
4221 .name = NULL,
4222 .attrs = raid5_attrs,
NeilBrown3f294f42005-11-08 21:39:25 -08004223};
4224
Dan Williams80c3a6c2009-03-17 18:10:40 -07004225static sector_t
4226raid5_size(mddev_t *mddev, sector_t sectors, int raid_disks)
4227{
4228 raid5_conf_t *conf = mddev_to_conf(mddev);
4229
4230 if (!sectors)
4231 sectors = mddev->dev_sectors;
NeilBrown7ec05472009-03-31 15:10:36 +11004232 if (!raid_disks) {
4233 /* size is defined by the smallest of previous and new size */
4234 if (conf->raid_disks < conf->previous_raid_disks)
4235 raid_disks = conf->raid_disks;
4236 else
4237 raid_disks = conf->previous_raid_disks;
4238 }
Dan Williams80c3a6c2009-03-17 18:10:40 -07004239
4240 sectors &= ~((sector_t)mddev->chunk_size/512 - 1);
NeilBrown784052e2009-03-31 15:19:07 +11004241 sectors &= ~((sector_t)mddev->new_chunk/512 - 1);
Dan Williams80c3a6c2009-03-17 18:10:40 -07004242 return sectors * (raid_disks - conf->max_degraded);
4243}
4244
NeilBrown91adb562009-03-31 14:39:39 +11004245static raid5_conf_t *setup_conf(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246{
4247 raid5_conf_t *conf;
4248 int raid_disk, memory;
4249 mdk_rdev_t *rdev;
4250 struct disk_info *disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251
NeilBrown91adb562009-03-31 14:39:39 +11004252 if (mddev->new_level != 5
4253 && mddev->new_level != 4
4254 && mddev->new_level != 6) {
NeilBrown16a53ec2006-06-26 00:27:38 -07004255 printk(KERN_ERR "raid5: %s: raid level not set to 4/5/6 (%d)\n",
NeilBrown91adb562009-03-31 14:39:39 +11004256 mdname(mddev), mddev->new_level);
4257 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258 }
NeilBrown91adb562009-03-31 14:39:39 +11004259 if ((mddev->new_level == 5
4260 && !algorithm_valid_raid5(mddev->new_layout)) ||
4261 (mddev->new_level == 6
4262 && !algorithm_valid_raid6(mddev->new_layout))) {
NeilBrown99c0fb52009-03-31 14:39:38 +11004263 printk(KERN_ERR "raid5: %s: layout %d not supported\n",
NeilBrown91adb562009-03-31 14:39:39 +11004264 mdname(mddev), mddev->new_layout);
4265 return ERR_PTR(-EIO);
4266 }
4267 if (mddev->new_level == 6 && mddev->raid_disks < 4) {
4268 printk(KERN_ERR "raid6: not enough configured devices for %s (%d, minimum 4)\n",
4269 mdname(mddev), mddev->raid_disks);
4270 return ERR_PTR(-EINVAL);
NeilBrown99c0fb52009-03-31 14:39:38 +11004271 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272
NeilBrown91adb562009-03-31 14:39:39 +11004273 if (!mddev->new_chunk || mddev->new_chunk % PAGE_SIZE) {
4274 printk(KERN_ERR "raid5: invalid chunk size %d for %s\n",
4275 mddev->new_chunk, mdname(mddev));
4276 return ERR_PTR(-EINVAL);
NeilBrown4bbf3772008-10-13 11:55:12 +11004277 }
4278
NeilBrown91adb562009-03-31 14:39:39 +11004279 conf = kzalloc(sizeof(raid5_conf_t), GFP_KERNEL);
4280 if (conf == NULL)
4281 goto abort;
4282
4283 conf->raid_disks = mddev->raid_disks;
4284 if (mddev->reshape_position == MaxSector)
4285 conf->previous_raid_disks = mddev->raid_disks;
4286 else
4287 conf->previous_raid_disks = mddev->raid_disks - mddev->delta_disks;
4288
4289 conf->disks = kzalloc(conf->raid_disks * sizeof(struct disk_info),
4290 GFP_KERNEL);
4291 if (!conf->disks)
4292 goto abort;
4293
4294 conf->mddev = mddev;
4295
4296 if ((conf->stripe_hashtbl = kzalloc(PAGE_SIZE, GFP_KERNEL)) == NULL)
4297 goto abort;
4298
4299 if (mddev->new_level == 6) {
4300 conf->spare_page = alloc_page(GFP_KERNEL);
4301 if (!conf->spare_page)
4302 goto abort;
4303 }
4304 spin_lock_init(&conf->device_lock);
4305 init_waitqueue_head(&conf->wait_for_stripe);
4306 init_waitqueue_head(&conf->wait_for_overlap);
4307 INIT_LIST_HEAD(&conf->handle_list);
4308 INIT_LIST_HEAD(&conf->hold_list);
4309 INIT_LIST_HEAD(&conf->delayed_list);
4310 INIT_LIST_HEAD(&conf->bitmap_list);
4311 INIT_LIST_HEAD(&conf->inactive_list);
4312 atomic_set(&conf->active_stripes, 0);
4313 atomic_set(&conf->preread_active_stripes, 0);
4314 atomic_set(&conf->active_aligned_reads, 0);
4315 conf->bypass_threshold = BYPASS_THRESHOLD;
4316
4317 pr_debug("raid5: run(%s) called.\n", mdname(mddev));
4318
4319 list_for_each_entry(rdev, &mddev->disks, same_set) {
4320 raid_disk = rdev->raid_disk;
4321 if (raid_disk >= conf->raid_disks
4322 || raid_disk < 0)
4323 continue;
4324 disk = conf->disks + raid_disk;
4325
4326 disk->rdev = rdev;
4327
4328 if (test_bit(In_sync, &rdev->flags)) {
4329 char b[BDEVNAME_SIZE];
4330 printk(KERN_INFO "raid5: device %s operational as raid"
4331 " disk %d\n", bdevname(rdev->bdev,b),
4332 raid_disk);
4333 } else
4334 /* Cannot rely on bitmap to complete recovery */
4335 conf->fullsync = 1;
4336 }
4337
4338 conf->chunk_size = mddev->new_chunk;
4339 conf->level = mddev->new_level;
4340 if (conf->level == 6)
4341 conf->max_degraded = 2;
4342 else
4343 conf->max_degraded = 1;
4344 conf->algorithm = mddev->new_layout;
4345 conf->max_nr_stripes = NR_STRIPES;
NeilBrownfef9c612009-03-31 15:16:46 +11004346 conf->reshape_progress = mddev->reshape_position;
NeilBrowne183eae2009-03-31 15:20:22 +11004347 if (conf->reshape_progress != MaxSector) {
NeilBrown784052e2009-03-31 15:19:07 +11004348 conf->prev_chunk = mddev->chunk_size;
NeilBrowne183eae2009-03-31 15:20:22 +11004349 conf->prev_algo = mddev->layout;
4350 }
NeilBrown91adb562009-03-31 14:39:39 +11004351
4352 memory = conf->max_nr_stripes * (sizeof(struct stripe_head) +
4353 conf->raid_disks * ((sizeof(struct bio) + PAGE_SIZE))) / 1024;
4354 if (grow_stripes(conf, conf->max_nr_stripes)) {
4355 printk(KERN_ERR
4356 "raid5: couldn't allocate %dkB for buffers\n", memory);
4357 goto abort;
4358 } else
4359 printk(KERN_INFO "raid5: allocated %dkB for %s\n",
4360 memory, mdname(mddev));
4361
4362 conf->thread = md_register_thread(raid5d, mddev, "%s_raid5");
4363 if (!conf->thread) {
4364 printk(KERN_ERR
4365 "raid5: couldn't allocate thread for %s\n",
4366 mdname(mddev));
4367 goto abort;
4368 }
4369
4370 return conf;
4371
4372 abort:
4373 if (conf) {
4374 shrink_stripes(conf);
4375 safe_put_page(conf->spare_page);
4376 kfree(conf->disks);
4377 kfree(conf->stripe_hashtbl);
4378 kfree(conf);
4379 return ERR_PTR(-EIO);
4380 } else
4381 return ERR_PTR(-ENOMEM);
4382}
4383
4384static int run(mddev_t *mddev)
4385{
4386 raid5_conf_t *conf;
4387 int working_disks = 0;
4388 mdk_rdev_t *rdev;
4389
NeilBrownf6705572006-03-27 01:18:11 -08004390 if (mddev->reshape_position != MaxSector) {
4391 /* Check that we can continue the reshape.
4392 * Currently only disks can change, it must
4393 * increase, and we must be past the point where
4394 * a stripe over-writes itself
4395 */
4396 sector_t here_new, here_old;
4397 int old_disks;
Andre Noll18b00332009-03-31 15:00:56 +11004398 int max_degraded = (mddev->level == 6 ? 2 : 1);
NeilBrownf6705572006-03-27 01:18:11 -08004399
4400 if (mddev->new_level != mddev->level ||
4401 mddev->new_layout != mddev->layout ||
4402 mddev->new_chunk != mddev->chunk_size) {
NeilBrownf4168852007-02-28 20:11:53 -08004403 printk(KERN_ERR "raid5: %s: unsupported reshape "
4404 "required - aborting.\n",
NeilBrownf6705572006-03-27 01:18:11 -08004405 mdname(mddev));
4406 return -EINVAL;
4407 }
NeilBrownf6705572006-03-27 01:18:11 -08004408 old_disks = mddev->raid_disks - mddev->delta_disks;
4409 /* reshape_position must be on a new-stripe boundary, and one
NeilBrownf4168852007-02-28 20:11:53 -08004410 * further up in new geometry must map after here in old
4411 * geometry.
NeilBrownf6705572006-03-27 01:18:11 -08004412 */
4413 here_new = mddev->reshape_position;
NeilBrown784052e2009-03-31 15:19:07 +11004414 if (sector_div(here_new, (mddev->new_chunk>>9)*
NeilBrownf4168852007-02-28 20:11:53 -08004415 (mddev->raid_disks - max_degraded))) {
4416 printk(KERN_ERR "raid5: reshape_position not "
4417 "on a stripe boundary\n");
NeilBrownf6705572006-03-27 01:18:11 -08004418 return -EINVAL;
4419 }
4420 /* here_new is the stripe we will write to */
4421 here_old = mddev->reshape_position;
NeilBrownf4168852007-02-28 20:11:53 -08004422 sector_div(here_old, (mddev->chunk_size>>9)*
4423 (old_disks-max_degraded));
4424 /* here_old is the first stripe that we might need to read
4425 * from */
NeilBrownf6705572006-03-27 01:18:11 -08004426 if (here_new >= here_old) {
4427 /* Reading from the same stripe as writing to - bad */
NeilBrownf4168852007-02-28 20:11:53 -08004428 printk(KERN_ERR "raid5: reshape_position too early for "
4429 "auto-recovery - aborting.\n");
NeilBrownf6705572006-03-27 01:18:11 -08004430 return -EINVAL;
4431 }
4432 printk(KERN_INFO "raid5: reshape will continue\n");
4433 /* OK, we should be able to continue; */
NeilBrownf6705572006-03-27 01:18:11 -08004434 } else {
NeilBrown91adb562009-03-31 14:39:39 +11004435 BUG_ON(mddev->level != mddev->new_level);
4436 BUG_ON(mddev->layout != mddev->new_layout);
4437 BUG_ON(mddev->chunk_size != mddev->new_chunk);
4438 BUG_ON(mddev->delta_disks != 0);
NeilBrownf6705572006-03-27 01:18:11 -08004439 }
4440
NeilBrown245f46c2009-03-31 14:39:39 +11004441 if (mddev->private == NULL)
4442 conf = setup_conf(mddev);
4443 else
4444 conf = mddev->private;
4445
NeilBrown91adb562009-03-31 14:39:39 +11004446 if (IS_ERR(conf))
4447 return PTR_ERR(conf);
NeilBrown9ffae0c2006-01-06 00:20:32 -08004448
NeilBrown91adb562009-03-31 14:39:39 +11004449 mddev->thread = conf->thread;
4450 conf->thread = NULL;
4451 mddev->private = conf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453 /*
NeilBrown16a53ec2006-06-26 00:27:38 -07004454 * 0 for a fully functional array, 1 or 2 for a degraded array.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455 */
NeilBrown91adb562009-03-31 14:39:39 +11004456 list_for_each_entry(rdev, &mddev->disks, same_set)
4457 if (rdev->raid_disk >= 0 &&
4458 test_bit(In_sync, &rdev->flags))
4459 working_disks++;
4460
NeilBrown02c2de82006-10-03 01:15:47 -07004461 mddev->degraded = conf->raid_disks - working_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462
NeilBrown16a53ec2006-06-26 00:27:38 -07004463 if (mddev->degraded > conf->max_degraded) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464 printk(KERN_ERR "raid5: not enough operational devices for %s"
4465 " (%d/%d failed)\n",
NeilBrown02c2de82006-10-03 01:15:47 -07004466 mdname(mddev), mddev->degraded, conf->raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467 goto abort;
4468 }
4469
NeilBrown91adb562009-03-31 14:39:39 +11004470 /* device size must be a multiple of chunk size */
4471 mddev->dev_sectors &= ~(mddev->chunk_size / 512 - 1);
4472 mddev->resync_max_sectors = mddev->dev_sectors;
4473
NeilBrown16a53ec2006-06-26 00:27:38 -07004474 if (mddev->degraded > 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475 mddev->recovery_cp != MaxSector) {
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08004476 if (mddev->ok_start_degraded)
4477 printk(KERN_WARNING
4478 "raid5: starting dirty degraded array: %s"
4479 "- data corruption possible.\n",
4480 mdname(mddev));
4481 else {
4482 printk(KERN_ERR
4483 "raid5: cannot start dirty degraded array for %s\n",
4484 mdname(mddev));
4485 goto abort;
4486 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487 }
4488
Linus Torvalds1da177e2005-04-16 15:20:36 -07004489 if (mddev->degraded == 0)
4490 printk("raid5: raid level %d set %s active with %d out of %d"
NeilBrowne183eae2009-03-31 15:20:22 +11004491 " devices, algorithm %d\n", conf->level, mdname(mddev),
4492 mddev->raid_disks-mddev->degraded, mddev->raid_disks,
4493 mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494 else
4495 printk(KERN_ALERT "raid5: raid level %d set %s active with %d"
4496 " out of %d devices, algorithm %d\n", conf->level,
4497 mdname(mddev), mddev->raid_disks - mddev->degraded,
NeilBrowne183eae2009-03-31 15:20:22 +11004498 mddev->raid_disks, mddev->new_layout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499
4500 print_raid5_conf(conf);
4501
NeilBrownfef9c612009-03-31 15:16:46 +11004502 if (conf->reshape_progress != MaxSector) {
NeilBrownf6705572006-03-27 01:18:11 -08004503 printk("...ok start reshape thread\n");
NeilBrownfef9c612009-03-31 15:16:46 +11004504 conf->reshape_safe = conf->reshape_progress;
NeilBrownf6705572006-03-27 01:18:11 -08004505 atomic_set(&conf->reshape_stripes, 0);
4506 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
4507 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
4508 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
4509 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
4510 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
4511 "%s_reshape");
NeilBrownf6705572006-03-27 01:18:11 -08004512 }
4513
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514 /* read-ahead size must cover two whole stripes, which is
NeilBrown16a53ec2006-06-26 00:27:38 -07004515 * 2 * (datadisks) * chunksize where 'n' is the number of raid devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516 */
4517 {
NeilBrown16a53ec2006-06-26 00:27:38 -07004518 int data_disks = conf->previous_raid_disks - conf->max_degraded;
4519 int stripe = data_disks *
NeilBrown8932c2e2006-06-26 00:27:36 -07004520 (mddev->chunk_size / PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004521 if (mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
4522 mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
4523 }
4524
4525 /* Ok, everything is just fine now */
NeilBrown5e55e2f2007-03-26 21:32:14 -08004526 if (sysfs_create_group(&mddev->kobj, &raid5_attrs_group))
4527 printk(KERN_WARNING
4528 "raid5: failed to create sysfs attributes for %s\n",
4529 mdname(mddev));
NeilBrown7a5febe2005-05-16 21:53:16 -07004530
NeilBrown91adb562009-03-31 14:39:39 +11004531 mddev->queue->queue_lock = &conf->device_lock;
4532
NeilBrown7a5febe2005-05-16 21:53:16 -07004533 mddev->queue->unplug_fn = raid5_unplug_device;
NeilBrownf022b2f2006-10-03 01:15:56 -07004534 mddev->queue->backing_dev_info.congested_data = mddev;
NeilBrown041ae522007-03-26 21:32:14 -08004535 mddev->queue->backing_dev_info.congested_fn = raid5_congested;
NeilBrownf022b2f2006-10-03 01:15:56 -07004536
Dan Williams1f403622009-03-31 14:59:03 +11004537 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
NeilBrown7a5febe2005-05-16 21:53:16 -07004538
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08004539 blk_queue_merge_bvec(mddev->queue, raid5_mergeable_bvec);
4540
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541 return 0;
4542abort:
NeilBrowne0cf8f02009-03-31 14:39:39 +11004543 md_unregister_thread(mddev->thread);
NeilBrown91adb562009-03-31 14:39:39 +11004544 mddev->thread = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545 if (conf) {
NeilBrown91adb562009-03-31 14:39:39 +11004546 shrink_stripes(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547 print_raid5_conf(conf);
NeilBrown16a53ec2006-06-26 00:27:38 -07004548 safe_put_page(conf->spare_page);
NeilBrownb55e6bf2006-03-27 01:18:06 -08004549 kfree(conf->disks);
NeilBrownfccddba2006-01-06 00:20:33 -08004550 kfree(conf->stripe_hashtbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004551 kfree(conf);
4552 }
4553 mddev->private = NULL;
4554 printk(KERN_ALERT "raid5: failed to run raid set %s\n", mdname(mddev));
4555 return -EIO;
4556}
4557
4558
4559
NeilBrown3f294f42005-11-08 21:39:25 -08004560static int stop(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561{
4562 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
4563
4564 md_unregister_thread(mddev->thread);
4565 mddev->thread = NULL;
4566 shrink_stripes(conf);
NeilBrownfccddba2006-01-06 00:20:33 -08004567 kfree(conf->stripe_hashtbl);
NeilBrown041ae522007-03-26 21:32:14 -08004568 mddev->queue->backing_dev_info.congested_fn = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569 blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/
NeilBrown007583c2005-11-08 21:39:30 -08004570 sysfs_remove_group(&mddev->kobj, &raid5_attrs_group);
NeilBrownb55e6bf2006-03-27 01:18:06 -08004571 kfree(conf->disks);
NeilBrown96de1e62005-11-08 21:39:39 -08004572 kfree(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573 mddev->private = NULL;
4574 return 0;
4575}
4576
Dan Williams45b42332007-07-09 11:56:43 -07004577#ifdef DEBUG
NeilBrownd710e132008-10-13 11:55:12 +11004578static void print_sh(struct seq_file *seq, struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579{
4580 int i;
4581
NeilBrown16a53ec2006-06-26 00:27:38 -07004582 seq_printf(seq, "sh %llu, pd_idx %d, state %ld.\n",
4583 (unsigned long long)sh->sector, sh->pd_idx, sh->state);
4584 seq_printf(seq, "sh %llu, count %d.\n",
4585 (unsigned long long)sh->sector, atomic_read(&sh->count));
4586 seq_printf(seq, "sh %llu, ", (unsigned long long)sh->sector);
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004587 for (i = 0; i < sh->disks; i++) {
NeilBrown16a53ec2006-06-26 00:27:38 -07004588 seq_printf(seq, "(cache%d: %p %ld) ",
4589 i, sh->dev[i].page, sh->dev[i].flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004591 seq_printf(seq, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592}
4593
NeilBrownd710e132008-10-13 11:55:12 +11004594static void printall(struct seq_file *seq, raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595{
4596 struct stripe_head *sh;
NeilBrownfccddba2006-01-06 00:20:33 -08004597 struct hlist_node *hn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598 int i;
4599
4600 spin_lock_irq(&conf->device_lock);
4601 for (i = 0; i < NR_HASH; i++) {
NeilBrownfccddba2006-01-06 00:20:33 -08004602 hlist_for_each_entry(sh, hn, &conf->stripe_hashtbl[i], hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603 if (sh->raid_conf != conf)
4604 continue;
NeilBrown16a53ec2006-06-26 00:27:38 -07004605 print_sh(seq, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606 }
4607 }
4608 spin_unlock_irq(&conf->device_lock);
4609}
4610#endif
4611
NeilBrownd710e132008-10-13 11:55:12 +11004612static void status(struct seq_file *seq, mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004613{
4614 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
4615 int i;
4616
4617 seq_printf (seq, " level %d, %dk chunk, algorithm %d", mddev->level, mddev->chunk_size >> 10, mddev->layout);
NeilBrown02c2de82006-10-03 01:15:47 -07004618 seq_printf (seq, " [%d/%d] [", conf->raid_disks, conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619 for (i = 0; i < conf->raid_disks; i++)
4620 seq_printf (seq, "%s",
4621 conf->disks[i].rdev &&
NeilBrownb2d444d2005-11-08 21:39:31 -08004622 test_bit(In_sync, &conf->disks[i].rdev->flags) ? "U" : "_");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623 seq_printf (seq, "]");
Dan Williams45b42332007-07-09 11:56:43 -07004624#ifdef DEBUG
NeilBrown16a53ec2006-06-26 00:27:38 -07004625 seq_printf (seq, "\n");
4626 printall(seq, conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004627#endif
4628}
4629
4630static void print_raid5_conf (raid5_conf_t *conf)
4631{
4632 int i;
4633 struct disk_info *tmp;
4634
4635 printk("RAID5 conf printout:\n");
4636 if (!conf) {
4637 printk("(conf==NULL)\n");
4638 return;
4639 }
NeilBrown02c2de82006-10-03 01:15:47 -07004640 printk(" --- rd:%d wd:%d\n", conf->raid_disks,
4641 conf->raid_disks - conf->mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004642
4643 for (i = 0; i < conf->raid_disks; i++) {
4644 char b[BDEVNAME_SIZE];
4645 tmp = conf->disks + i;
4646 if (tmp->rdev)
4647 printk(" disk %d, o:%d, dev:%s\n",
NeilBrownb2d444d2005-11-08 21:39:31 -08004648 i, !test_bit(Faulty, &tmp->rdev->flags),
Linus Torvalds1da177e2005-04-16 15:20:36 -07004649 bdevname(tmp->rdev->bdev,b));
4650 }
4651}
4652
4653static int raid5_spare_active(mddev_t *mddev)
4654{
4655 int i;
4656 raid5_conf_t *conf = mddev->private;
4657 struct disk_info *tmp;
4658
4659 for (i = 0; i < conf->raid_disks; i++) {
4660 tmp = conf->disks + i;
4661 if (tmp->rdev
NeilBrownb2d444d2005-11-08 21:39:31 -08004662 && !test_bit(Faulty, &tmp->rdev->flags)
NeilBrownc04be0a2006-10-03 01:15:53 -07004663 && !test_and_set_bit(In_sync, &tmp->rdev->flags)) {
4664 unsigned long flags;
4665 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004666 mddev->degraded--;
NeilBrownc04be0a2006-10-03 01:15:53 -07004667 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004668 }
4669 }
4670 print_raid5_conf(conf);
4671 return 0;
4672}
4673
4674static int raid5_remove_disk(mddev_t *mddev, int number)
4675{
4676 raid5_conf_t *conf = mddev->private;
4677 int err = 0;
4678 mdk_rdev_t *rdev;
4679 struct disk_info *p = conf->disks + number;
4680
4681 print_raid5_conf(conf);
4682 rdev = p->rdev;
4683 if (rdev) {
NeilBrownec32a2b2009-03-31 15:17:38 +11004684 if (number >= conf->raid_disks &&
4685 conf->reshape_progress == MaxSector)
4686 clear_bit(In_sync, &rdev->flags);
4687
NeilBrownb2d444d2005-11-08 21:39:31 -08004688 if (test_bit(In_sync, &rdev->flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07004689 atomic_read(&rdev->nr_pending)) {
4690 err = -EBUSY;
4691 goto abort;
4692 }
NeilBrowndfc70642008-05-23 13:04:39 -07004693 /* Only remove non-faulty devices if recovery
4694 * isn't possible.
4695 */
4696 if (!test_bit(Faulty, &rdev->flags) &&
NeilBrownec32a2b2009-03-31 15:17:38 +11004697 mddev->degraded <= conf->max_degraded &&
4698 number < conf->raid_disks) {
NeilBrowndfc70642008-05-23 13:04:39 -07004699 err = -EBUSY;
4700 goto abort;
4701 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004702 p->rdev = NULL;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07004703 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004704 if (atomic_read(&rdev->nr_pending)) {
4705 /* lost the race, try later */
4706 err = -EBUSY;
4707 p->rdev = rdev;
4708 }
4709 }
4710abort:
4711
4712 print_raid5_conf(conf);
4713 return err;
4714}
4715
4716static int raid5_add_disk(mddev_t *mddev, mdk_rdev_t *rdev)
4717{
4718 raid5_conf_t *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10004719 int err = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004720 int disk;
4721 struct disk_info *p;
Neil Brown6c2fce22008-06-28 08:31:31 +10004722 int first = 0;
4723 int last = conf->raid_disks - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004724
NeilBrown16a53ec2006-06-26 00:27:38 -07004725 if (mddev->degraded > conf->max_degraded)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726 /* no point adding a device */
Neil Brown199050e2008-06-28 08:31:33 +10004727 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004728
Neil Brown6c2fce22008-06-28 08:31:31 +10004729 if (rdev->raid_disk >= 0)
4730 first = last = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731
4732 /*
NeilBrown16a53ec2006-06-26 00:27:38 -07004733 * find the disk ... but prefer rdev->saved_raid_disk
4734 * if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004735 */
NeilBrown16a53ec2006-06-26 00:27:38 -07004736 if (rdev->saved_raid_disk >= 0 &&
Neil Brown6c2fce22008-06-28 08:31:31 +10004737 rdev->saved_raid_disk >= first &&
NeilBrown16a53ec2006-06-26 00:27:38 -07004738 conf->disks[rdev->saved_raid_disk].rdev == NULL)
4739 disk = rdev->saved_raid_disk;
4740 else
Neil Brown6c2fce22008-06-28 08:31:31 +10004741 disk = first;
4742 for ( ; disk <= last ; disk++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004743 if ((p=conf->disks + disk)->rdev == NULL) {
NeilBrownb2d444d2005-11-08 21:39:31 -08004744 clear_bit(In_sync, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004745 rdev->raid_disk = disk;
Neil Brown199050e2008-06-28 08:31:33 +10004746 err = 0;
NeilBrown72626682005-09-09 16:23:54 -07004747 if (rdev->saved_raid_disk != disk)
4748 conf->fullsync = 1;
Suzanne Woodd6065f72005-11-08 21:39:27 -08004749 rcu_assign_pointer(p->rdev, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004750 break;
4751 }
4752 print_raid5_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10004753 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004754}
4755
4756static int raid5_resize(mddev_t *mddev, sector_t sectors)
4757{
4758 /* no resync is happening, and there is enough space
4759 * on all devices, so we can resize.
4760 * We need to make sure resync covers any new space.
4761 * If the array is shrinking we should possibly wait until
4762 * any io in the removed space completes, but it hardly seems
4763 * worth it.
4764 */
4765 sectors &= ~((sector_t)mddev->chunk_size/512 - 1);
Dan Williams1f403622009-03-31 14:59:03 +11004766 md_set_array_sectors(mddev, raid5_size(mddev, sectors,
4767 mddev->raid_disks));
Dan Williamsb522adc2009-03-31 15:00:31 +11004768 if (mddev->array_sectors >
4769 raid5_size(mddev, sectors, mddev->raid_disks))
4770 return -EINVAL;
Andre Nollf233ea52008-07-21 17:05:22 +10004771 set_capacity(mddev->gendisk, mddev->array_sectors);
Linus Torvalds44ce6292007-05-09 18:51:36 -07004772 mddev->changed = 1;
Andre Noll58c0fed2009-03-31 14:33:13 +11004773 if (sectors > mddev->dev_sectors && mddev->recovery_cp == MaxSector) {
4774 mddev->recovery_cp = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004775 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
4776 }
Andre Noll58c0fed2009-03-31 14:33:13 +11004777 mddev->dev_sectors = sectors;
NeilBrown4b5c7ae2005-07-27 11:43:28 -07004778 mddev->resync_max_sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004779 return 0;
4780}
4781
NeilBrown29269552006-03-27 01:18:10 -08004782#ifdef CONFIG_MD_RAID5_RESHAPE
NeilBrown63c70c42006-03-27 01:18:13 -08004783static int raid5_check_reshape(mddev_t *mddev)
NeilBrown29269552006-03-27 01:18:10 -08004784{
4785 raid5_conf_t *conf = mddev_to_conf(mddev);
NeilBrown29269552006-03-27 01:18:10 -08004786
NeilBrown63c70c42006-03-27 01:18:13 -08004787 if (mddev->delta_disks == 0)
NeilBrown29269552006-03-27 01:18:10 -08004788 return 0; /* nothing to do */
NeilBrowndba034e2008-08-05 15:54:13 +10004789 if (mddev->bitmap)
4790 /* Cannot grow a bitmap yet */
4791 return -EBUSY;
NeilBrownec32a2b2009-03-31 15:17:38 +11004792 if (mddev->degraded > conf->max_degraded)
4793 return -EINVAL;
4794 if (mddev->delta_disks < 0) {
4795 /* We might be able to shrink, but the devices must
4796 * be made bigger first.
4797 * For raid6, 4 is the minimum size.
4798 * Otherwise 2 is the minimum
4799 */
4800 int min = 2;
4801 if (mddev->level == 6)
4802 min = 4;
4803 if (mddev->raid_disks + mddev->delta_disks < min)
4804 return -EINVAL;
4805 }
NeilBrown29269552006-03-27 01:18:10 -08004806
4807 /* Can only proceed if there are plenty of stripe_heads.
4808 * We need a minimum of one full stripe,, and for sensible progress
4809 * it is best to have about 4 times that.
4810 * If we require 4 times, then the default 256 4K stripe_heads will
4811 * allow for chunk sizes up to 256K, which is probably OK.
4812 * If the chunk size is greater, user-space should request more
4813 * stripe_heads first.
4814 */
NeilBrown63c70c42006-03-27 01:18:13 -08004815 if ((mddev->chunk_size / STRIPE_SIZE) * 4 > conf->max_nr_stripes ||
4816 (mddev->new_chunk / STRIPE_SIZE) * 4 > conf->max_nr_stripes) {
NeilBrown29269552006-03-27 01:18:10 -08004817 printk(KERN_WARNING "raid5: reshape: not enough stripes. Needed %lu\n",
NeilBrown784052e2009-03-31 15:19:07 +11004818 (max(mddev->chunk_size, mddev->new_chunk)
4819 / STRIPE_SIZE)*4);
NeilBrown29269552006-03-27 01:18:10 -08004820 return -ENOSPC;
4821 }
4822
NeilBrownec32a2b2009-03-31 15:17:38 +11004823 return resize_stripes(conf, conf->raid_disks + mddev->delta_disks);
NeilBrown63c70c42006-03-27 01:18:13 -08004824}
4825
4826static int raid5_start_reshape(mddev_t *mddev)
4827{
4828 raid5_conf_t *conf = mddev_to_conf(mddev);
4829 mdk_rdev_t *rdev;
NeilBrown63c70c42006-03-27 01:18:13 -08004830 int spares = 0;
4831 int added_devices = 0;
NeilBrownc04be0a2006-10-03 01:15:53 -07004832 unsigned long flags;
NeilBrown63c70c42006-03-27 01:18:13 -08004833
NeilBrownf4168852007-02-28 20:11:53 -08004834 if (test_bit(MD_RECOVERY_RUNNING, &mddev->recovery))
NeilBrown63c70c42006-03-27 01:18:13 -08004835 return -EBUSY;
4836
Cheng Renquan159ec1f2009-01-09 08:31:08 +11004837 list_for_each_entry(rdev, &mddev->disks, same_set)
NeilBrown29269552006-03-27 01:18:10 -08004838 if (rdev->raid_disk < 0 &&
4839 !test_bit(Faulty, &rdev->flags))
4840 spares++;
NeilBrown63c70c42006-03-27 01:18:13 -08004841
NeilBrownf4168852007-02-28 20:11:53 -08004842 if (spares - mddev->degraded < mddev->delta_disks - conf->max_degraded)
NeilBrown29269552006-03-27 01:18:10 -08004843 /* Not enough devices even to make a degraded array
4844 * of that size
4845 */
4846 return -EINVAL;
4847
NeilBrownec32a2b2009-03-31 15:17:38 +11004848 /* Refuse to reduce size of the array. Any reductions in
4849 * array size must be through explicit setting of array_size
4850 * attribute.
4851 */
4852 if (raid5_size(mddev, 0, conf->raid_disks + mddev->delta_disks)
4853 < mddev->array_sectors) {
4854 printk(KERN_ERR "md: %s: array size must be reduced "
4855 "before number of disks\n", mdname(mddev));
4856 return -EINVAL;
4857 }
4858
NeilBrownf6705572006-03-27 01:18:11 -08004859 atomic_set(&conf->reshape_stripes, 0);
NeilBrown29269552006-03-27 01:18:10 -08004860 spin_lock_irq(&conf->device_lock);
4861 conf->previous_raid_disks = conf->raid_disks;
NeilBrown63c70c42006-03-27 01:18:13 -08004862 conf->raid_disks += mddev->delta_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11004863 if (mddev->delta_disks < 0)
4864 conf->reshape_progress = raid5_size(mddev, 0, 0);
4865 else
4866 conf->reshape_progress = 0;
4867 conf->reshape_safe = conf->reshape_progress;
NeilBrown86b42c72009-03-31 15:19:03 +11004868 conf->generation++;
NeilBrown29269552006-03-27 01:18:10 -08004869 spin_unlock_irq(&conf->device_lock);
4870
4871 /* Add some new drives, as many as will fit.
4872 * We know there are enough to make the newly sized array work.
4873 */
Cheng Renquan159ec1f2009-01-09 08:31:08 +11004874 list_for_each_entry(rdev, &mddev->disks, same_set)
NeilBrown29269552006-03-27 01:18:10 -08004875 if (rdev->raid_disk < 0 &&
4876 !test_bit(Faulty, &rdev->flags)) {
Neil Brown199050e2008-06-28 08:31:33 +10004877 if (raid5_add_disk(mddev, rdev) == 0) {
NeilBrown29269552006-03-27 01:18:10 -08004878 char nm[20];
4879 set_bit(In_sync, &rdev->flags);
NeilBrown29269552006-03-27 01:18:10 -08004880 added_devices++;
NeilBrown5fd6c1d2006-06-26 00:27:40 -07004881 rdev->recovery_offset = 0;
NeilBrown29269552006-03-27 01:18:10 -08004882 sprintf(nm, "rd%d", rdev->raid_disk);
NeilBrown5e55e2f2007-03-26 21:32:14 -08004883 if (sysfs_create_link(&mddev->kobj,
4884 &rdev->kobj, nm))
4885 printk(KERN_WARNING
4886 "raid5: failed to create "
4887 " link %s for %s\n",
4888 nm, mdname(mddev));
NeilBrown29269552006-03-27 01:18:10 -08004889 } else
4890 break;
4891 }
4892
NeilBrownec32a2b2009-03-31 15:17:38 +11004893 if (mddev->delta_disks > 0) {
4894 spin_lock_irqsave(&conf->device_lock, flags);
4895 mddev->degraded = (conf->raid_disks - conf->previous_raid_disks)
4896 - added_devices;
4897 spin_unlock_irqrestore(&conf->device_lock, flags);
4898 }
NeilBrown63c70c42006-03-27 01:18:13 -08004899 mddev->raid_disks = conf->raid_disks;
NeilBrownf6705572006-03-27 01:18:11 -08004900 mddev->reshape_position = 0;
NeilBrown850b2b42006-10-03 01:15:46 -07004901 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrownf6705572006-03-27 01:18:11 -08004902
NeilBrown29269552006-03-27 01:18:10 -08004903 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
4904 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
4905 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
4906 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
4907 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
4908 "%s_reshape");
4909 if (!mddev->sync_thread) {
4910 mddev->recovery = 0;
4911 spin_lock_irq(&conf->device_lock);
4912 mddev->raid_disks = conf->raid_disks = conf->previous_raid_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11004913 conf->reshape_progress = MaxSector;
NeilBrown29269552006-03-27 01:18:10 -08004914 spin_unlock_irq(&conf->device_lock);
4915 return -EAGAIN;
4916 }
4917 md_wakeup_thread(mddev->sync_thread);
4918 md_new_event(mddev);
4919 return 0;
4920}
4921#endif
4922
NeilBrownec32a2b2009-03-31 15:17:38 +11004923/* This is called from the reshape thread and should make any
4924 * changes needed in 'conf'
4925 */
NeilBrown29269552006-03-27 01:18:10 -08004926static void end_reshape(raid5_conf_t *conf)
4927{
NeilBrown29269552006-03-27 01:18:10 -08004928
NeilBrownf6705572006-03-27 01:18:11 -08004929 if (!test_bit(MD_RECOVERY_INTR, &conf->mddev->recovery)) {
Dan Williams80c3a6c2009-03-17 18:10:40 -07004930
NeilBrownf6705572006-03-27 01:18:11 -08004931 spin_lock_irq(&conf->device_lock);
NeilBrowncea9c222009-03-31 15:15:05 +11004932 conf->previous_raid_disks = conf->raid_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11004933 conf->reshape_progress = MaxSector;
NeilBrownf6705572006-03-27 01:18:11 -08004934 spin_unlock_irq(&conf->device_lock);
NeilBrown16a53ec2006-06-26 00:27:38 -07004935
4936 /* read-ahead size must cover two whole stripes, which is
4937 * 2 * (datadisks) * chunksize where 'n' is the number of raid devices
4938 */
4939 {
NeilBrowncea9c222009-03-31 15:15:05 +11004940 int data_disks = conf->raid_disks - conf->max_degraded;
4941 int stripe = data_disks * (conf->chunk_size
4942 / PAGE_SIZE);
NeilBrown16a53ec2006-06-26 00:27:38 -07004943 if (conf->mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
4944 conf->mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
4945 }
NeilBrown29269552006-03-27 01:18:10 -08004946 }
NeilBrown29269552006-03-27 01:18:10 -08004947}
4948
NeilBrownec32a2b2009-03-31 15:17:38 +11004949/* This is called from the raid5d thread with mddev_lock held.
4950 * It makes config changes to the device.
4951 */
NeilBrowncea9c222009-03-31 15:15:05 +11004952static void raid5_finish_reshape(mddev_t *mddev)
4953{
4954 struct block_device *bdev;
4955
4956 if (!test_bit(MD_RECOVERY_INTR, &mddev->recovery)) {
4957
NeilBrownec32a2b2009-03-31 15:17:38 +11004958 if (mddev->delta_disks > 0) {
4959 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
4960 set_capacity(mddev->gendisk, mddev->array_sectors);
4961 mddev->changed = 1;
NeilBrowncea9c222009-03-31 15:15:05 +11004962
NeilBrownec32a2b2009-03-31 15:17:38 +11004963 bdev = bdget_disk(mddev->gendisk, 0);
4964 if (bdev) {
4965 mutex_lock(&bdev->bd_inode->i_mutex);
4966 i_size_write(bdev->bd_inode,
4967 (loff_t)mddev->array_sectors << 9);
4968 mutex_unlock(&bdev->bd_inode->i_mutex);
4969 bdput(bdev);
4970 }
4971 } else {
4972 int d;
4973 raid5_conf_t *conf = mddev_to_conf(mddev);
4974 mddev->degraded = conf->raid_disks;
4975 for (d = 0; d < conf->raid_disks ; d++)
4976 if (conf->disks[d].rdev &&
4977 test_bit(In_sync,
4978 &conf->disks[d].rdev->flags))
4979 mddev->degraded--;
4980 for (d = conf->raid_disks ;
4981 d < conf->raid_disks - mddev->delta_disks;
4982 d++)
4983 raid5_remove_disk(mddev, d);
NeilBrowncea9c222009-03-31 15:15:05 +11004984 }
NeilBrownec32a2b2009-03-31 15:17:38 +11004985 mddev->reshape_position = MaxSector;
4986 mddev->delta_disks = 0;
NeilBrowncea9c222009-03-31 15:15:05 +11004987 }
4988}
4989
NeilBrown72626682005-09-09 16:23:54 -07004990static void raid5_quiesce(mddev_t *mddev, int state)
4991{
4992 raid5_conf_t *conf = mddev_to_conf(mddev);
4993
4994 switch(state) {
NeilBrowne464eaf2006-03-27 01:18:14 -08004995 case 2: /* resume for a suspend */
4996 wake_up(&conf->wait_for_overlap);
4997 break;
4998
NeilBrown72626682005-09-09 16:23:54 -07004999 case 1: /* stop all writes */
5000 spin_lock_irq(&conf->device_lock);
5001 conf->quiesce = 1;
5002 wait_event_lock_irq(conf->wait_for_stripe,
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08005003 atomic_read(&conf->active_stripes) == 0 &&
5004 atomic_read(&conf->active_aligned_reads) == 0,
NeilBrown72626682005-09-09 16:23:54 -07005005 conf->device_lock, /* nothing */);
5006 spin_unlock_irq(&conf->device_lock);
5007 break;
5008
5009 case 0: /* re-enable writes */
5010 spin_lock_irq(&conf->device_lock);
5011 conf->quiesce = 0;
5012 wake_up(&conf->wait_for_stripe);
NeilBrowne464eaf2006-03-27 01:18:14 -08005013 wake_up(&conf->wait_for_overlap);
NeilBrown72626682005-09-09 16:23:54 -07005014 spin_unlock_irq(&conf->device_lock);
5015 break;
5016 }
NeilBrown72626682005-09-09 16:23:54 -07005017}
NeilBrownb15c2e52006-01-06 00:20:16 -08005018
NeilBrownd562b0c2009-03-31 14:39:39 +11005019
5020static void *raid5_takeover_raid1(mddev_t *mddev)
5021{
5022 int chunksect;
5023
5024 if (mddev->raid_disks != 2 ||
5025 mddev->degraded > 1)
5026 return ERR_PTR(-EINVAL);
5027
5028 /* Should check if there are write-behind devices? */
5029
5030 chunksect = 64*2; /* 64K by default */
5031
5032 /* The array must be an exact multiple of chunksize */
5033 while (chunksect && (mddev->array_sectors & (chunksect-1)))
5034 chunksect >>= 1;
5035
5036 if ((chunksect<<9) < STRIPE_SIZE)
5037 /* array size does not allow a suitable chunk size */
5038 return ERR_PTR(-EINVAL);
5039
5040 mddev->new_level = 5;
5041 mddev->new_layout = ALGORITHM_LEFT_SYMMETRIC;
5042 mddev->new_chunk = chunksect << 9;
5043
5044 return setup_conf(mddev);
5045}
5046
NeilBrownfc9739c2009-03-31 14:57:20 +11005047static void *raid5_takeover_raid6(mddev_t *mddev)
5048{
5049 int new_layout;
5050
5051 switch (mddev->layout) {
5052 case ALGORITHM_LEFT_ASYMMETRIC_6:
5053 new_layout = ALGORITHM_LEFT_ASYMMETRIC;
5054 break;
5055 case ALGORITHM_RIGHT_ASYMMETRIC_6:
5056 new_layout = ALGORITHM_RIGHT_ASYMMETRIC;
5057 break;
5058 case ALGORITHM_LEFT_SYMMETRIC_6:
5059 new_layout = ALGORITHM_LEFT_SYMMETRIC;
5060 break;
5061 case ALGORITHM_RIGHT_SYMMETRIC_6:
5062 new_layout = ALGORITHM_RIGHT_SYMMETRIC;
5063 break;
5064 case ALGORITHM_PARITY_0_6:
5065 new_layout = ALGORITHM_PARITY_0;
5066 break;
5067 case ALGORITHM_PARITY_N:
5068 new_layout = ALGORITHM_PARITY_N;
5069 break;
5070 default:
5071 return ERR_PTR(-EINVAL);
5072 }
5073 mddev->new_level = 5;
5074 mddev->new_layout = new_layout;
5075 mddev->delta_disks = -1;
5076 mddev->raid_disks -= 1;
5077 return setup_conf(mddev);
5078}
5079
NeilBrownd562b0c2009-03-31 14:39:39 +11005080
NeilBrownb3546032009-03-31 14:56:41 +11005081static int raid5_reconfig(mddev_t *mddev, int new_layout, int new_chunk)
5082{
5083 /* Currently the layout and chunk size can only be changed
5084 * for a 2-drive raid array, as in that case no data shuffling
5085 * is required.
5086 * Later we might validate these and set new_* so a reshape
5087 * can complete the change.
5088 */
5089 raid5_conf_t *conf = mddev_to_conf(mddev);
5090
5091 if (new_layout >= 0 && !algorithm_valid_raid5(new_layout))
5092 return -EINVAL;
5093 if (new_chunk > 0) {
5094 if (new_chunk & (new_chunk-1))
5095 /* not a power of 2 */
5096 return -EINVAL;
5097 if (new_chunk < PAGE_SIZE)
5098 return -EINVAL;
5099 if (mddev->array_sectors & ((new_chunk>>9)-1))
5100 /* not factor of array size */
5101 return -EINVAL;
5102 }
5103
5104 /* They look valid */
5105
5106 if (mddev->raid_disks != 2)
5107 return -EINVAL;
5108
5109 if (new_layout >= 0) {
5110 conf->algorithm = new_layout;
5111 mddev->layout = mddev->new_layout = new_layout;
5112 }
5113 if (new_chunk > 0) {
5114 conf->chunk_size = new_chunk;
5115 mddev->chunk_size = mddev->new_chunk = new_chunk;
5116 }
5117 set_bit(MD_CHANGE_DEVS, &mddev->flags);
5118 md_wakeup_thread(mddev->thread);
5119 return 0;
5120}
5121
NeilBrownd562b0c2009-03-31 14:39:39 +11005122static void *raid5_takeover(mddev_t *mddev)
5123{
5124 /* raid5 can take over:
5125 * raid0 - if all devices are the same - make it a raid4 layout
5126 * raid1 - if there are two drives. We need to know the chunk size
5127 * raid4 - trivial - just use a raid4 layout.
5128 * raid6 - Providing it is a *_6 layout
5129 *
5130 * For now, just do raid1
5131 */
5132
5133 if (mddev->level == 1)
5134 return raid5_takeover_raid1(mddev);
NeilBrowne9d47582009-03-31 14:57:09 +11005135 if (mddev->level == 4) {
5136 mddev->new_layout = ALGORITHM_PARITY_N;
5137 mddev->new_level = 5;
5138 return setup_conf(mddev);
5139 }
NeilBrownfc9739c2009-03-31 14:57:20 +11005140 if (mddev->level == 6)
5141 return raid5_takeover_raid6(mddev);
NeilBrownd562b0c2009-03-31 14:39:39 +11005142
5143 return ERR_PTR(-EINVAL);
5144}
5145
5146
NeilBrown245f46c2009-03-31 14:39:39 +11005147static struct mdk_personality raid5_personality;
5148
5149static void *raid6_takeover(mddev_t *mddev)
5150{
5151 /* Currently can only take over a raid5. We map the
5152 * personality to an equivalent raid6 personality
5153 * with the Q block at the end.
5154 */
5155 int new_layout;
5156
5157 if (mddev->pers != &raid5_personality)
5158 return ERR_PTR(-EINVAL);
5159 if (mddev->degraded > 1)
5160 return ERR_PTR(-EINVAL);
5161 if (mddev->raid_disks > 253)
5162 return ERR_PTR(-EINVAL);
5163 if (mddev->raid_disks < 3)
5164 return ERR_PTR(-EINVAL);
5165
5166 switch (mddev->layout) {
5167 case ALGORITHM_LEFT_ASYMMETRIC:
5168 new_layout = ALGORITHM_LEFT_ASYMMETRIC_6;
5169 break;
5170 case ALGORITHM_RIGHT_ASYMMETRIC:
5171 new_layout = ALGORITHM_RIGHT_ASYMMETRIC_6;
5172 break;
5173 case ALGORITHM_LEFT_SYMMETRIC:
5174 new_layout = ALGORITHM_LEFT_SYMMETRIC_6;
5175 break;
5176 case ALGORITHM_RIGHT_SYMMETRIC:
5177 new_layout = ALGORITHM_RIGHT_SYMMETRIC_6;
5178 break;
5179 case ALGORITHM_PARITY_0:
5180 new_layout = ALGORITHM_PARITY_0_6;
5181 break;
5182 case ALGORITHM_PARITY_N:
5183 new_layout = ALGORITHM_PARITY_N;
5184 break;
5185 default:
5186 return ERR_PTR(-EINVAL);
5187 }
5188 mddev->new_level = 6;
5189 mddev->new_layout = new_layout;
5190 mddev->delta_disks = 1;
5191 mddev->raid_disks += 1;
5192 return setup_conf(mddev);
5193}
5194
5195
NeilBrown16a53ec2006-06-26 00:27:38 -07005196static struct mdk_personality raid6_personality =
5197{
5198 .name = "raid6",
5199 .level = 6,
5200 .owner = THIS_MODULE,
5201 .make_request = make_request,
5202 .run = run,
5203 .stop = stop,
5204 .status = status,
5205 .error_handler = error,
5206 .hot_add_disk = raid5_add_disk,
5207 .hot_remove_disk= raid5_remove_disk,
5208 .spare_active = raid5_spare_active,
5209 .sync_request = sync_request,
5210 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07005211 .size = raid5_size,
NeilBrownf4168852007-02-28 20:11:53 -08005212#ifdef CONFIG_MD_RAID5_RESHAPE
5213 .check_reshape = raid5_check_reshape,
5214 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11005215 .finish_reshape = raid5_finish_reshape,
NeilBrownf4168852007-02-28 20:11:53 -08005216#endif
NeilBrown16a53ec2006-06-26 00:27:38 -07005217 .quiesce = raid5_quiesce,
NeilBrown245f46c2009-03-31 14:39:39 +11005218 .takeover = raid6_takeover,
NeilBrown16a53ec2006-06-26 00:27:38 -07005219};
NeilBrown2604b702006-01-06 00:20:36 -08005220static struct mdk_personality raid5_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07005221{
5222 .name = "raid5",
NeilBrown2604b702006-01-06 00:20:36 -08005223 .level = 5,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005224 .owner = THIS_MODULE,
5225 .make_request = make_request,
5226 .run = run,
5227 .stop = stop,
5228 .status = status,
5229 .error_handler = error,
5230 .hot_add_disk = raid5_add_disk,
5231 .hot_remove_disk= raid5_remove_disk,
5232 .spare_active = raid5_spare_active,
5233 .sync_request = sync_request,
5234 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07005235 .size = raid5_size,
NeilBrown29269552006-03-27 01:18:10 -08005236#ifdef CONFIG_MD_RAID5_RESHAPE
NeilBrown63c70c42006-03-27 01:18:13 -08005237 .check_reshape = raid5_check_reshape,
5238 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11005239 .finish_reshape = raid5_finish_reshape,
NeilBrown29269552006-03-27 01:18:10 -08005240#endif
NeilBrown72626682005-09-09 16:23:54 -07005241 .quiesce = raid5_quiesce,
NeilBrownd562b0c2009-03-31 14:39:39 +11005242 .takeover = raid5_takeover,
NeilBrownb3546032009-03-31 14:56:41 +11005243 .reconfig = raid5_reconfig,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005244};
5245
NeilBrown2604b702006-01-06 00:20:36 -08005246static struct mdk_personality raid4_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07005247{
NeilBrown2604b702006-01-06 00:20:36 -08005248 .name = "raid4",
5249 .level = 4,
5250 .owner = THIS_MODULE,
5251 .make_request = make_request,
5252 .run = run,
5253 .stop = stop,
5254 .status = status,
5255 .error_handler = error,
5256 .hot_add_disk = raid5_add_disk,
5257 .hot_remove_disk= raid5_remove_disk,
5258 .spare_active = raid5_spare_active,
5259 .sync_request = sync_request,
5260 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07005261 .size = raid5_size,
NeilBrown3d378902007-03-26 21:32:13 -08005262#ifdef CONFIG_MD_RAID5_RESHAPE
5263 .check_reshape = raid5_check_reshape,
5264 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11005265 .finish_reshape = raid5_finish_reshape,
NeilBrown3d378902007-03-26 21:32:13 -08005266#endif
NeilBrown2604b702006-01-06 00:20:36 -08005267 .quiesce = raid5_quiesce,
5268};
5269
5270static int __init raid5_init(void)
5271{
NeilBrown16a53ec2006-06-26 00:27:38 -07005272 register_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08005273 register_md_personality(&raid5_personality);
5274 register_md_personality(&raid4_personality);
5275 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005276}
5277
NeilBrown2604b702006-01-06 00:20:36 -08005278static void raid5_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005279{
NeilBrown16a53ec2006-06-26 00:27:38 -07005280 unregister_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08005281 unregister_md_personality(&raid5_personality);
5282 unregister_md_personality(&raid4_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005283}
5284
5285module_init(raid5_init);
5286module_exit(raid5_exit);
5287MODULE_LICENSE("GPL");
5288MODULE_ALIAS("md-personality-4"); /* RAID5 */
NeilBrownd9d166c2006-01-06 00:20:51 -08005289MODULE_ALIAS("md-raid5");
5290MODULE_ALIAS("md-raid4");
NeilBrown2604b702006-01-06 00:20:36 -08005291MODULE_ALIAS("md-level-5");
5292MODULE_ALIAS("md-level-4");
NeilBrown16a53ec2006-06-26 00:27:38 -07005293MODULE_ALIAS("md-personality-8"); /* RAID6 */
5294MODULE_ALIAS("md-raid6");
5295MODULE_ALIAS("md-level-6");
5296
5297/* This used to be two separate modules, they were: */
5298MODULE_ALIAS("raid5");
5299MODULE_ALIAS("raid6");