blob: 1023c4e48a916d7c71112329647f78fe5c3e6518 [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
NeilBrownd710e132008-10-13 11:55:12 +1100302static void raid5_build_block(struct stripe_head *sh, int i);
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
NeilBrownb5663ba2009-03-31 14:39:38 +1100321 sh->disks = previous ? conf->previous_raid_disks : conf->raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 sh->sector = sector;
NeilBrown911d4ee2009-03-31 14:39:38 +1100323 stripe_set_idx(sector, conf, previous, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 sh->state = 0;
325
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800326
327 for (i = sh->disks; i--; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 struct r5dev *dev = &sh->dev[i];
329
Dan Williamsd84e0f12007-01-02 13:52:30 -0700330 if (dev->toread || dev->read || dev->towrite || dev->written ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 test_bit(R5_LOCKED, &dev->flags)) {
Dan Williamsd84e0f12007-01-02 13:52:30 -0700332 printk(KERN_ERR "sector=%llx i=%d %p %p %p %p %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 (unsigned long long)sh->sector, i, dev->toread,
Dan Williamsd84e0f12007-01-02 13:52:30 -0700334 dev->read, dev->towrite, dev->written,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 test_bit(R5_LOCKED, &dev->flags));
336 BUG();
337 }
338 dev->flags = 0;
339 raid5_build_block(sh, i);
340 }
341 insert_hash(conf, sh);
342}
343
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800344static struct stripe_head *__find_stripe(raid5_conf_t *conf, sector_t sector, int disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
346 struct stripe_head *sh;
NeilBrownfccddba2006-01-06 00:20:33 -0800347 struct hlist_node *hn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 CHECK_DEVLOCK();
Dan Williams45b42332007-07-09 11:56:43 -0700350 pr_debug("__find_stripe, sector %llu\n", (unsigned long long)sector);
NeilBrownfccddba2006-01-06 00:20:33 -0800351 hlist_for_each_entry(sh, hn, stripe_hash(conf, sector), hash)
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800352 if (sh->sector == sector && sh->disks == disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 return sh;
Dan Williams45b42332007-07-09 11:56:43 -0700354 pr_debug("__stripe %llu not in cache\n", (unsigned long long)sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 return NULL;
356}
357
358static void unplug_slaves(mddev_t *mddev);
Jens Axboe165125e2007-07-24 09:28:11 +0200359static void raid5_unplug_device(struct request_queue *q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
NeilBrownb5663ba2009-03-31 14:39:38 +1100361static struct stripe_head *
362get_active_stripe(raid5_conf_t *conf, sector_t sector,
363 int previous, int noblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
365 struct stripe_head *sh;
NeilBrownb5663ba2009-03-31 14:39:38 +1100366 int disks = previous ? conf->previous_raid_disks : conf->raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Dan Williams45b42332007-07-09 11:56:43 -0700368 pr_debug("get_stripe, sector %llu\n", (unsigned long long)sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370 spin_lock_irq(&conf->device_lock);
371
372 do {
NeilBrown72626682005-09-09 16:23:54 -0700373 wait_event_lock_irq(conf->wait_for_stripe,
374 conf->quiesce == 0,
375 conf->device_lock, /* nothing */);
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800376 sh = __find_stripe(conf, sector, disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 if (!sh) {
378 if (!conf->inactive_blocked)
379 sh = get_free_stripe(conf);
380 if (noblock && sh == NULL)
381 break;
382 if (!sh) {
383 conf->inactive_blocked = 1;
384 wait_event_lock_irq(conf->wait_for_stripe,
385 !list_empty(&conf->inactive_list) &&
NeilBrown50368052005-12-12 02:39:17 -0800386 (atomic_read(&conf->active_stripes)
387 < (conf->max_nr_stripes *3/4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 || !conf->inactive_blocked),
389 conf->device_lock,
NeilBrownf4370782006-07-10 04:44:14 -0700390 raid5_unplug_device(conf->mddev->queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 );
392 conf->inactive_blocked = 0;
393 } else
NeilBrownb5663ba2009-03-31 14:39:38 +1100394 init_stripe(sh, sector, previous);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 } else {
396 if (atomic_read(&sh->count)) {
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +0200397 BUG_ON(!list_empty(&sh->lru));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 } else {
399 if (!test_bit(STRIPE_HANDLE, &sh->state))
400 atomic_inc(&conf->active_stripes);
NeilBrownff4e8d92006-07-10 04:44:16 -0700401 if (list_empty(&sh->lru) &&
402 !test_bit(STRIPE_EXPANDING, &sh->state))
NeilBrown16a53ec2006-06-26 00:27:38 -0700403 BUG();
404 list_del_init(&sh->lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 }
406 }
407 } while (sh == NULL);
408
409 if (sh)
410 atomic_inc(&sh->count);
411
412 spin_unlock_irq(&conf->device_lock);
413 return sh;
414}
415
NeilBrown6712ecf2007-09-27 12:47:43 +0200416static void
417raid5_end_read_request(struct bio *bi, int error);
418static void
419raid5_end_write_request(struct bio *bi, int error);
Dan Williams91c00922007-01-02 13:52:30 -0700420
Dan Williamsc4e5ac02008-06-28 08:31:53 +1000421static void ops_run_io(struct stripe_head *sh, struct stripe_head_state *s)
Dan Williams91c00922007-01-02 13:52:30 -0700422{
423 raid5_conf_t *conf = sh->raid_conf;
424 int i, disks = sh->disks;
425
426 might_sleep();
427
428 for (i = disks; i--; ) {
429 int rw;
430 struct bio *bi;
431 mdk_rdev_t *rdev;
432 if (test_and_clear_bit(R5_Wantwrite, &sh->dev[i].flags))
433 rw = WRITE;
434 else if (test_and_clear_bit(R5_Wantread, &sh->dev[i].flags))
435 rw = READ;
436 else
437 continue;
438
439 bi = &sh->dev[i].req;
440
441 bi->bi_rw = rw;
442 if (rw == WRITE)
443 bi->bi_end_io = raid5_end_write_request;
444 else
445 bi->bi_end_io = raid5_end_read_request;
446
447 rcu_read_lock();
448 rdev = rcu_dereference(conf->disks[i].rdev);
449 if (rdev && test_bit(Faulty, &rdev->flags))
450 rdev = NULL;
451 if (rdev)
452 atomic_inc(&rdev->nr_pending);
453 rcu_read_unlock();
454
455 if (rdev) {
Dan Williamsc4e5ac02008-06-28 08:31:53 +1000456 if (s->syncing || s->expanding || s->expanded)
Dan Williams91c00922007-01-02 13:52:30 -0700457 md_sync_acct(rdev->bdev, STRIPE_SECTORS);
458
Dan Williams2b7497f2008-06-28 08:31:52 +1000459 set_bit(STRIPE_IO_STARTED, &sh->state);
460
Dan Williams91c00922007-01-02 13:52:30 -0700461 bi->bi_bdev = rdev->bdev;
462 pr_debug("%s: for %llu schedule op %ld on disc %d\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -0700463 __func__, (unsigned long long)sh->sector,
Dan Williams91c00922007-01-02 13:52:30 -0700464 bi->bi_rw, i);
465 atomic_inc(&sh->count);
466 bi->bi_sector = sh->sector + rdev->data_offset;
467 bi->bi_flags = 1 << BIO_UPTODATE;
468 bi->bi_vcnt = 1;
469 bi->bi_max_vecs = 1;
470 bi->bi_idx = 0;
471 bi->bi_io_vec = &sh->dev[i].vec;
472 bi->bi_io_vec[0].bv_len = STRIPE_SIZE;
473 bi->bi_io_vec[0].bv_offset = 0;
474 bi->bi_size = STRIPE_SIZE;
475 bi->bi_next = NULL;
476 if (rw == WRITE &&
477 test_bit(R5_ReWrite, &sh->dev[i].flags))
478 atomic_add(STRIPE_SECTORS,
479 &rdev->corrected_errors);
480 generic_make_request(bi);
481 } else {
482 if (rw == WRITE)
483 set_bit(STRIPE_DEGRADED, &sh->state);
484 pr_debug("skip op %ld on disc %d for sector %llu\n",
485 bi->bi_rw, i, (unsigned long long)sh->sector);
486 clear_bit(R5_LOCKED, &sh->dev[i].flags);
487 set_bit(STRIPE_HANDLE, &sh->state);
488 }
489 }
490}
491
492static struct dma_async_tx_descriptor *
493async_copy_data(int frombio, struct bio *bio, struct page *page,
494 sector_t sector, struct dma_async_tx_descriptor *tx)
495{
496 struct bio_vec *bvl;
497 struct page *bio_page;
498 int i;
499 int page_offset;
500
501 if (bio->bi_sector >= sector)
502 page_offset = (signed)(bio->bi_sector - sector) * 512;
503 else
504 page_offset = (signed)(sector - bio->bi_sector) * -512;
505 bio_for_each_segment(bvl, bio, i) {
506 int len = bio_iovec_idx(bio, i)->bv_len;
507 int clen;
508 int b_offset = 0;
509
510 if (page_offset < 0) {
511 b_offset = -page_offset;
512 page_offset += b_offset;
513 len -= b_offset;
514 }
515
516 if (len > 0 && page_offset + len > STRIPE_SIZE)
517 clen = STRIPE_SIZE - page_offset;
518 else
519 clen = len;
520
521 if (clen > 0) {
522 b_offset += bio_iovec_idx(bio, i)->bv_offset;
523 bio_page = bio_iovec_idx(bio, i)->bv_page;
524 if (frombio)
525 tx = async_memcpy(page, bio_page, page_offset,
526 b_offset, clen,
Dan Williamseb0645a2007-07-20 00:31:46 -0700527 ASYNC_TX_DEP_ACK,
Dan Williams91c00922007-01-02 13:52:30 -0700528 tx, NULL, NULL);
529 else
530 tx = async_memcpy(bio_page, page, b_offset,
531 page_offset, clen,
Dan Williamseb0645a2007-07-20 00:31:46 -0700532 ASYNC_TX_DEP_ACK,
Dan Williams91c00922007-01-02 13:52:30 -0700533 tx, NULL, NULL);
534 }
535 if (clen < len) /* hit end of page */
536 break;
537 page_offset += len;
538 }
539
540 return tx;
541}
542
543static void ops_complete_biofill(void *stripe_head_ref)
544{
545 struct stripe_head *sh = stripe_head_ref;
546 struct bio *return_bi = NULL;
547 raid5_conf_t *conf = sh->raid_conf;
Dan Williamse4d84902007-09-24 10:06:13 -0700548 int i;
Dan Williams91c00922007-01-02 13:52:30 -0700549
Harvey Harrisone46b2722008-04-28 02:15:50 -0700550 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700551 (unsigned long long)sh->sector);
552
553 /* clear completed biofills */
Dan Williams83de75c2008-06-28 08:31:58 +1000554 spin_lock_irq(&conf->device_lock);
Dan Williams91c00922007-01-02 13:52:30 -0700555 for (i = sh->disks; i--; ) {
556 struct r5dev *dev = &sh->dev[i];
Dan Williams91c00922007-01-02 13:52:30 -0700557
558 /* acknowledge completion of a biofill operation */
Dan Williamse4d84902007-09-24 10:06:13 -0700559 /* and check if we need to reply to a read request,
560 * new R5_Wantfill requests are held off until
Dan Williams83de75c2008-06-28 08:31:58 +1000561 * !STRIPE_BIOFILL_RUN
Dan Williamse4d84902007-09-24 10:06:13 -0700562 */
563 if (test_and_clear_bit(R5_Wantfill, &dev->flags)) {
Dan Williams91c00922007-01-02 13:52:30 -0700564 struct bio *rbi, *rbi2;
Dan Williams91c00922007-01-02 13:52:30 -0700565
Dan Williams91c00922007-01-02 13:52:30 -0700566 BUG_ON(!dev->read);
567 rbi = dev->read;
568 dev->read = NULL;
569 while (rbi && rbi->bi_sector <
570 dev->sector + STRIPE_SECTORS) {
571 rbi2 = r5_next_bio(rbi, dev->sector);
Jens Axboe960e7392008-08-15 10:41:18 +0200572 if (!raid5_dec_bi_phys_segments(rbi)) {
Dan Williams91c00922007-01-02 13:52:30 -0700573 rbi->bi_next = return_bi;
574 return_bi = rbi;
575 }
Dan Williams91c00922007-01-02 13:52:30 -0700576 rbi = rbi2;
577 }
578 }
579 }
Dan Williams83de75c2008-06-28 08:31:58 +1000580 spin_unlock_irq(&conf->device_lock);
581 clear_bit(STRIPE_BIOFILL_RUN, &sh->state);
Dan Williams91c00922007-01-02 13:52:30 -0700582
583 return_io(return_bi);
584
Dan Williamse4d84902007-09-24 10:06:13 -0700585 set_bit(STRIPE_HANDLE, &sh->state);
Dan Williams91c00922007-01-02 13:52:30 -0700586 release_stripe(sh);
587}
588
589static void ops_run_biofill(struct stripe_head *sh)
590{
591 struct dma_async_tx_descriptor *tx = NULL;
592 raid5_conf_t *conf = sh->raid_conf;
593 int i;
594
Harvey Harrisone46b2722008-04-28 02:15:50 -0700595 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700596 (unsigned long long)sh->sector);
597
598 for (i = sh->disks; i--; ) {
599 struct r5dev *dev = &sh->dev[i];
600 if (test_bit(R5_Wantfill, &dev->flags)) {
601 struct bio *rbi;
602 spin_lock_irq(&conf->device_lock);
603 dev->read = rbi = dev->toread;
604 dev->toread = NULL;
605 spin_unlock_irq(&conf->device_lock);
606 while (rbi && rbi->bi_sector <
607 dev->sector + STRIPE_SECTORS) {
608 tx = async_copy_data(0, rbi, dev->page,
609 dev->sector, tx);
610 rbi = r5_next_bio(rbi, dev->sector);
611 }
612 }
613 }
614
615 atomic_inc(&sh->count);
616 async_trigger_callback(ASYNC_TX_DEP_ACK | ASYNC_TX_ACK, tx,
617 ops_complete_biofill, sh);
618}
619
620static void ops_complete_compute5(void *stripe_head_ref)
621{
622 struct stripe_head *sh = stripe_head_ref;
623 int target = sh->ops.target;
624 struct r5dev *tgt = &sh->dev[target];
625
Harvey Harrisone46b2722008-04-28 02:15:50 -0700626 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700627 (unsigned long long)sh->sector);
628
629 set_bit(R5_UPTODATE, &tgt->flags);
630 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
631 clear_bit(R5_Wantcompute, &tgt->flags);
Dan Williamsecc65c92008-06-28 08:31:57 +1000632 clear_bit(STRIPE_COMPUTE_RUN, &sh->state);
633 if (sh->check_state == check_state_compute_run)
634 sh->check_state = check_state_compute_result;
Dan Williams91c00922007-01-02 13:52:30 -0700635 set_bit(STRIPE_HANDLE, &sh->state);
636 release_stripe(sh);
637}
638
Dan Williams7b3a8712008-06-28 08:32:09 +1000639static struct dma_async_tx_descriptor *ops_run_compute5(struct stripe_head *sh)
Dan Williams91c00922007-01-02 13:52:30 -0700640{
641 /* kernel stack size limits the total number of disks */
642 int disks = sh->disks;
643 struct page *xor_srcs[disks];
644 int target = sh->ops.target;
645 struct r5dev *tgt = &sh->dev[target];
646 struct page *xor_dest = tgt->page;
647 int count = 0;
648 struct dma_async_tx_descriptor *tx;
649 int i;
650
651 pr_debug("%s: stripe %llu block: %d\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -0700652 __func__, (unsigned long long)sh->sector, target);
Dan Williams91c00922007-01-02 13:52:30 -0700653 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
654
655 for (i = disks; i--; )
656 if (i != target)
657 xor_srcs[count++] = sh->dev[i].page;
658
659 atomic_inc(&sh->count);
660
661 if (unlikely(count == 1))
662 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE,
663 0, NULL, ops_complete_compute5, sh);
664 else
665 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE,
666 ASYNC_TX_XOR_ZERO_DST, NULL,
667 ops_complete_compute5, sh);
668
Dan Williams91c00922007-01-02 13:52:30 -0700669 return tx;
670}
671
672static void ops_complete_prexor(void *stripe_head_ref)
673{
674 struct stripe_head *sh = stripe_head_ref;
675
Harvey Harrisone46b2722008-04-28 02:15:50 -0700676 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700677 (unsigned long long)sh->sector);
Dan Williams91c00922007-01-02 13:52:30 -0700678}
679
680static struct dma_async_tx_descriptor *
681ops_run_prexor(struct stripe_head *sh, struct dma_async_tx_descriptor *tx)
682{
683 /* kernel stack size limits the total number of disks */
684 int disks = sh->disks;
685 struct page *xor_srcs[disks];
686 int count = 0, pd_idx = sh->pd_idx, i;
687
688 /* existing parity data subtracted */
689 struct page *xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
690
Harvey Harrisone46b2722008-04-28 02:15:50 -0700691 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700692 (unsigned long long)sh->sector);
693
694 for (i = disks; i--; ) {
695 struct r5dev *dev = &sh->dev[i];
696 /* Only process blocks that are known to be uptodate */
Dan Williamsd8ee0722008-06-28 08:32:06 +1000697 if (test_bit(R5_Wantdrain, &dev->flags))
Dan Williams91c00922007-01-02 13:52:30 -0700698 xor_srcs[count++] = dev->page;
699 }
700
701 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE,
702 ASYNC_TX_DEP_ACK | ASYNC_TX_XOR_DROP_DST, tx,
703 ops_complete_prexor, sh);
704
705 return tx;
706}
707
708static struct dma_async_tx_descriptor *
Dan Williamsd8ee0722008-06-28 08:32:06 +1000709ops_run_biodrain(struct stripe_head *sh, struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -0700710{
711 int disks = sh->disks;
Dan Williamsd8ee0722008-06-28 08:32:06 +1000712 int i;
Dan Williams91c00922007-01-02 13:52:30 -0700713
Harvey Harrisone46b2722008-04-28 02:15:50 -0700714 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700715 (unsigned long long)sh->sector);
716
717 for (i = disks; i--; ) {
718 struct r5dev *dev = &sh->dev[i];
719 struct bio *chosen;
Dan Williams91c00922007-01-02 13:52:30 -0700720
Dan Williamsd8ee0722008-06-28 08:32:06 +1000721 if (test_and_clear_bit(R5_Wantdrain, &dev->flags)) {
Dan Williams91c00922007-01-02 13:52:30 -0700722 struct bio *wbi;
723
724 spin_lock(&sh->lock);
725 chosen = dev->towrite;
726 dev->towrite = NULL;
727 BUG_ON(dev->written);
728 wbi = dev->written = chosen;
729 spin_unlock(&sh->lock);
730
731 while (wbi && wbi->bi_sector <
732 dev->sector + STRIPE_SECTORS) {
733 tx = async_copy_data(1, wbi, dev->page,
734 dev->sector, tx);
735 wbi = r5_next_bio(wbi, dev->sector);
736 }
737 }
738 }
739
740 return tx;
741}
742
743static void ops_complete_postxor(void *stripe_head_ref)
744{
745 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -0700746 int disks = sh->disks, i, pd_idx = sh->pd_idx;
747
Harvey Harrisone46b2722008-04-28 02:15:50 -0700748 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700749 (unsigned long long)sh->sector);
750
751 for (i = disks; i--; ) {
752 struct r5dev *dev = &sh->dev[i];
753 if (dev->written || i == pd_idx)
754 set_bit(R5_UPTODATE, &dev->flags);
755 }
756
Dan Williamsd8ee0722008-06-28 08:32:06 +1000757 if (sh->reconstruct_state == reconstruct_state_drain_run)
758 sh->reconstruct_state = reconstruct_state_drain_result;
759 else if (sh->reconstruct_state == reconstruct_state_prexor_drain_run)
760 sh->reconstruct_state = reconstruct_state_prexor_drain_result;
761 else {
762 BUG_ON(sh->reconstruct_state != reconstruct_state_run);
763 sh->reconstruct_state = reconstruct_state_result;
764 }
Dan Williams91c00922007-01-02 13:52:30 -0700765
766 set_bit(STRIPE_HANDLE, &sh->state);
767 release_stripe(sh);
768}
769
770static void
Dan Williamsd8ee0722008-06-28 08:32:06 +1000771ops_run_postxor(struct stripe_head *sh, struct dma_async_tx_descriptor *tx)
Dan Williams91c00922007-01-02 13:52:30 -0700772{
773 /* kernel stack size limits the total number of disks */
774 int disks = sh->disks;
775 struct page *xor_srcs[disks];
776
777 int count = 0, pd_idx = sh->pd_idx, i;
778 struct page *xor_dest;
Dan Williamsd8ee0722008-06-28 08:32:06 +1000779 int prexor = 0;
Dan Williams91c00922007-01-02 13:52:30 -0700780 unsigned long flags;
Dan Williams91c00922007-01-02 13:52:30 -0700781
Harvey Harrisone46b2722008-04-28 02:15:50 -0700782 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700783 (unsigned long long)sh->sector);
784
785 /* check if prexor is active which means only process blocks
786 * that are part of a read-modify-write (written)
787 */
Dan Williamsd8ee0722008-06-28 08:32:06 +1000788 if (sh->reconstruct_state == reconstruct_state_prexor_drain_run) {
789 prexor = 1;
Dan Williams91c00922007-01-02 13:52:30 -0700790 xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
791 for (i = disks; i--; ) {
792 struct r5dev *dev = &sh->dev[i];
793 if (dev->written)
794 xor_srcs[count++] = dev->page;
795 }
796 } else {
797 xor_dest = sh->dev[pd_idx].page;
798 for (i = disks; i--; ) {
799 struct r5dev *dev = &sh->dev[i];
800 if (i != pd_idx)
801 xor_srcs[count++] = dev->page;
802 }
803 }
804
Dan Williams91c00922007-01-02 13:52:30 -0700805 /* 1/ if we prexor'd then the dest is reused as a source
806 * 2/ if we did not prexor then we are redoing the parity
807 * set ASYNC_TX_XOR_DROP_DST and ASYNC_TX_XOR_ZERO_DST
808 * for the synchronous xor case
809 */
810 flags = ASYNC_TX_DEP_ACK | ASYNC_TX_ACK |
811 (prexor ? ASYNC_TX_XOR_DROP_DST : ASYNC_TX_XOR_ZERO_DST);
812
813 atomic_inc(&sh->count);
814
815 if (unlikely(count == 1)) {
816 flags &= ~(ASYNC_TX_XOR_DROP_DST | ASYNC_TX_XOR_ZERO_DST);
817 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE,
Dan Williamsd8ee0722008-06-28 08:32:06 +1000818 flags, tx, ops_complete_postxor, sh);
Dan Williams91c00922007-01-02 13:52:30 -0700819 } else
820 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE,
Dan Williamsd8ee0722008-06-28 08:32:06 +1000821 flags, tx, ops_complete_postxor, sh);
Dan Williams91c00922007-01-02 13:52:30 -0700822}
823
824static void ops_complete_check(void *stripe_head_ref)
825{
826 struct stripe_head *sh = stripe_head_ref;
Dan Williams91c00922007-01-02 13:52:30 -0700827
Harvey Harrisone46b2722008-04-28 02:15:50 -0700828 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700829 (unsigned long long)sh->sector);
830
Dan Williamsecc65c92008-06-28 08:31:57 +1000831 sh->check_state = check_state_check_result;
Dan Williams91c00922007-01-02 13:52:30 -0700832 set_bit(STRIPE_HANDLE, &sh->state);
833 release_stripe(sh);
834}
835
836static void ops_run_check(struct stripe_head *sh)
837{
838 /* kernel stack size limits the total number of disks */
839 int disks = sh->disks;
840 struct page *xor_srcs[disks];
841 struct dma_async_tx_descriptor *tx;
842
843 int count = 0, pd_idx = sh->pd_idx, i;
844 struct page *xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
845
Harvey Harrisone46b2722008-04-28 02:15:50 -0700846 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700847 (unsigned long long)sh->sector);
848
849 for (i = disks; i--; ) {
850 struct r5dev *dev = &sh->dev[i];
851 if (i != pd_idx)
852 xor_srcs[count++] = dev->page;
853 }
854
855 tx = async_xor_zero_sum(xor_dest, xor_srcs, 0, count, STRIPE_SIZE,
856 &sh->ops.zero_sum_result, 0, NULL, NULL, NULL);
857
Dan Williams91c00922007-01-02 13:52:30 -0700858 atomic_inc(&sh->count);
859 tx = async_trigger_callback(ASYNC_TX_DEP_ACK | ASYNC_TX_ACK, tx,
860 ops_complete_check, sh);
861}
862
Dan Williams600aa102008-06-28 08:32:05 +1000863static void raid5_run_ops(struct stripe_head *sh, unsigned long ops_request)
Dan Williams91c00922007-01-02 13:52:30 -0700864{
865 int overlap_clear = 0, i, disks = sh->disks;
866 struct dma_async_tx_descriptor *tx = NULL;
867
Dan Williams83de75c2008-06-28 08:31:58 +1000868 if (test_bit(STRIPE_OP_BIOFILL, &ops_request)) {
Dan Williams91c00922007-01-02 13:52:30 -0700869 ops_run_biofill(sh);
870 overlap_clear++;
871 }
872
Dan Williams7b3a8712008-06-28 08:32:09 +1000873 if (test_bit(STRIPE_OP_COMPUTE_BLK, &ops_request)) {
874 tx = ops_run_compute5(sh);
875 /* terminate the chain if postxor is not set to be run */
876 if (tx && !test_bit(STRIPE_OP_POSTXOR, &ops_request))
877 async_tx_ack(tx);
878 }
Dan Williams91c00922007-01-02 13:52:30 -0700879
Dan Williams600aa102008-06-28 08:32:05 +1000880 if (test_bit(STRIPE_OP_PREXOR, &ops_request))
Dan Williams91c00922007-01-02 13:52:30 -0700881 tx = ops_run_prexor(sh, tx);
882
Dan Williams600aa102008-06-28 08:32:05 +1000883 if (test_bit(STRIPE_OP_BIODRAIN, &ops_request)) {
Dan Williamsd8ee0722008-06-28 08:32:06 +1000884 tx = ops_run_biodrain(sh, tx);
Dan Williams91c00922007-01-02 13:52:30 -0700885 overlap_clear++;
886 }
887
Dan Williams600aa102008-06-28 08:32:05 +1000888 if (test_bit(STRIPE_OP_POSTXOR, &ops_request))
Dan Williamsd8ee0722008-06-28 08:32:06 +1000889 ops_run_postxor(sh, tx);
Dan Williams91c00922007-01-02 13:52:30 -0700890
Dan Williamsecc65c92008-06-28 08:31:57 +1000891 if (test_bit(STRIPE_OP_CHECK, &ops_request))
Dan Williams91c00922007-01-02 13:52:30 -0700892 ops_run_check(sh);
893
Dan Williams91c00922007-01-02 13:52:30 -0700894 if (overlap_clear)
895 for (i = disks; i--; ) {
896 struct r5dev *dev = &sh->dev[i];
897 if (test_and_clear_bit(R5_Overlap, &dev->flags))
898 wake_up(&sh->raid_conf->wait_for_overlap);
899 }
900}
901
NeilBrown3f294f42005-11-08 21:39:25 -0800902static int grow_one_stripe(raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903{
904 struct stripe_head *sh;
NeilBrown3f294f42005-11-08 21:39:25 -0800905 sh = kmem_cache_alloc(conf->slab_cache, GFP_KERNEL);
906 if (!sh)
907 return 0;
908 memset(sh, 0, sizeof(*sh) + (conf->raid_disks-1)*sizeof(struct r5dev));
909 sh->raid_conf = conf;
910 spin_lock_init(&sh->lock);
911
912 if (grow_buffers(sh, conf->raid_disks)) {
913 shrink_buffers(sh, conf->raid_disks);
914 kmem_cache_free(conf->slab_cache, sh);
915 return 0;
916 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800917 sh->disks = conf->raid_disks;
NeilBrown3f294f42005-11-08 21:39:25 -0800918 /* we just created an active stripe so... */
919 atomic_set(&sh->count, 1);
920 atomic_inc(&conf->active_stripes);
921 INIT_LIST_HEAD(&sh->lru);
922 release_stripe(sh);
923 return 1;
924}
925
926static int grow_stripes(raid5_conf_t *conf, int num)
927{
Christoph Lametere18b8902006-12-06 20:33:20 -0800928 struct kmem_cache *sc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 int devs = conf->raid_disks;
930
NeilBrown245f46c2009-03-31 14:39:39 +1100931 sprintf(conf->cache_name[0],
932 "raid%d-%s", conf->level, mdname(conf->mddev));
933 sprintf(conf->cache_name[1],
934 "raid%d-%s-alt", conf->level, mdname(conf->mddev));
NeilBrownad01c9e2006-03-27 01:18:07 -0800935 conf->active_name = 0;
936 sc = kmem_cache_create(conf->cache_name[conf->active_name],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 sizeof(struct stripe_head)+(devs-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +0900938 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 if (!sc)
940 return 1;
941 conf->slab_cache = sc;
NeilBrownad01c9e2006-03-27 01:18:07 -0800942 conf->pool_size = devs;
NeilBrown16a53ec2006-06-26 00:27:38 -0700943 while (num--)
NeilBrown3f294f42005-11-08 21:39:25 -0800944 if (!grow_one_stripe(conf))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 return 0;
947}
NeilBrown29269552006-03-27 01:18:10 -0800948
949#ifdef CONFIG_MD_RAID5_RESHAPE
NeilBrownad01c9e2006-03-27 01:18:07 -0800950static int resize_stripes(raid5_conf_t *conf, int newsize)
951{
952 /* Make all the stripes able to hold 'newsize' devices.
953 * New slots in each stripe get 'page' set to a new page.
954 *
955 * This happens in stages:
956 * 1/ create a new kmem_cache and allocate the required number of
957 * stripe_heads.
958 * 2/ gather all the old stripe_heads and tranfer the pages across
959 * to the new stripe_heads. This will have the side effect of
960 * freezing the array as once all stripe_heads have been collected,
961 * no IO will be possible. Old stripe heads are freed once their
962 * pages have been transferred over, and the old kmem_cache is
963 * freed when all stripes are done.
964 * 3/ reallocate conf->disks to be suitable bigger. If this fails,
965 * we simple return a failre status - no need to clean anything up.
966 * 4/ allocate new pages for the new slots in the new stripe_heads.
967 * If this fails, we don't bother trying the shrink the
968 * stripe_heads down again, we just leave them as they are.
969 * As each stripe_head is processed the new one is released into
970 * active service.
971 *
972 * Once step2 is started, we cannot afford to wait for a write,
973 * so we use GFP_NOIO allocations.
974 */
975 struct stripe_head *osh, *nsh;
976 LIST_HEAD(newstripes);
977 struct disk_info *ndisks;
Dan Williamsb5470dc2008-06-27 21:44:04 -0700978 int err;
Christoph Lametere18b8902006-12-06 20:33:20 -0800979 struct kmem_cache *sc;
NeilBrownad01c9e2006-03-27 01:18:07 -0800980 int i;
981
982 if (newsize <= conf->pool_size)
983 return 0; /* never bother to shrink */
984
Dan Williamsb5470dc2008-06-27 21:44:04 -0700985 err = md_allow_write(conf->mddev);
986 if (err)
987 return err;
NeilBrown2a2275d2007-01-26 00:57:11 -0800988
NeilBrownad01c9e2006-03-27 01:18:07 -0800989 /* Step 1 */
990 sc = kmem_cache_create(conf->cache_name[1-conf->active_name],
991 sizeof(struct stripe_head)+(newsize-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +0900992 0, 0, NULL);
NeilBrownad01c9e2006-03-27 01:18:07 -0800993 if (!sc)
994 return -ENOMEM;
995
996 for (i = conf->max_nr_stripes; i; i--) {
997 nsh = kmem_cache_alloc(sc, GFP_KERNEL);
998 if (!nsh)
999 break;
1000
1001 memset(nsh, 0, sizeof(*nsh) + (newsize-1)*sizeof(struct r5dev));
1002
1003 nsh->raid_conf = conf;
1004 spin_lock_init(&nsh->lock);
1005
1006 list_add(&nsh->lru, &newstripes);
1007 }
1008 if (i) {
1009 /* didn't get enough, give up */
1010 while (!list_empty(&newstripes)) {
1011 nsh = list_entry(newstripes.next, struct stripe_head, lru);
1012 list_del(&nsh->lru);
1013 kmem_cache_free(sc, nsh);
1014 }
1015 kmem_cache_destroy(sc);
1016 return -ENOMEM;
1017 }
1018 /* Step 2 - Must use GFP_NOIO now.
1019 * OK, we have enough stripes, start collecting inactive
1020 * stripes and copying them over
1021 */
1022 list_for_each_entry(nsh, &newstripes, lru) {
1023 spin_lock_irq(&conf->device_lock);
1024 wait_event_lock_irq(conf->wait_for_stripe,
1025 !list_empty(&conf->inactive_list),
1026 conf->device_lock,
NeilBrownb3b46be2006-03-27 01:18:16 -08001027 unplug_slaves(conf->mddev)
NeilBrownad01c9e2006-03-27 01:18:07 -08001028 );
1029 osh = get_free_stripe(conf);
1030 spin_unlock_irq(&conf->device_lock);
1031 atomic_set(&nsh->count, 1);
1032 for(i=0; i<conf->pool_size; i++)
1033 nsh->dev[i].page = osh->dev[i].page;
1034 for( ; i<newsize; i++)
1035 nsh->dev[i].page = NULL;
1036 kmem_cache_free(conf->slab_cache, osh);
1037 }
1038 kmem_cache_destroy(conf->slab_cache);
1039
1040 /* Step 3.
1041 * At this point, we are holding all the stripes so the array
1042 * is completely stalled, so now is a good time to resize
1043 * conf->disks.
1044 */
1045 ndisks = kzalloc(newsize * sizeof(struct disk_info), GFP_NOIO);
1046 if (ndisks) {
1047 for (i=0; i<conf->raid_disks; i++)
1048 ndisks[i] = conf->disks[i];
1049 kfree(conf->disks);
1050 conf->disks = ndisks;
1051 } else
1052 err = -ENOMEM;
1053
1054 /* Step 4, return new stripes to service */
1055 while(!list_empty(&newstripes)) {
1056 nsh = list_entry(newstripes.next, struct stripe_head, lru);
1057 list_del_init(&nsh->lru);
1058 for (i=conf->raid_disks; i < newsize; i++)
1059 if (nsh->dev[i].page == NULL) {
1060 struct page *p = alloc_page(GFP_NOIO);
1061 nsh->dev[i].page = p;
1062 if (!p)
1063 err = -ENOMEM;
1064 }
1065 release_stripe(nsh);
1066 }
1067 /* critical section pass, GFP_NOIO no longer needed */
1068
1069 conf->slab_cache = sc;
1070 conf->active_name = 1-conf->active_name;
1071 conf->pool_size = newsize;
1072 return err;
1073}
NeilBrown29269552006-03-27 01:18:10 -08001074#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
NeilBrown3f294f42005-11-08 21:39:25 -08001076static int drop_one_stripe(raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077{
1078 struct stripe_head *sh;
1079
NeilBrown3f294f42005-11-08 21:39:25 -08001080 spin_lock_irq(&conf->device_lock);
1081 sh = get_free_stripe(conf);
1082 spin_unlock_irq(&conf->device_lock);
1083 if (!sh)
1084 return 0;
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02001085 BUG_ON(atomic_read(&sh->count));
NeilBrownad01c9e2006-03-27 01:18:07 -08001086 shrink_buffers(sh, conf->pool_size);
NeilBrown3f294f42005-11-08 21:39:25 -08001087 kmem_cache_free(conf->slab_cache, sh);
1088 atomic_dec(&conf->active_stripes);
1089 return 1;
1090}
1091
1092static void shrink_stripes(raid5_conf_t *conf)
1093{
1094 while (drop_one_stripe(conf))
1095 ;
1096
NeilBrown29fc7e32006-02-03 03:03:41 -08001097 if (conf->slab_cache)
1098 kmem_cache_destroy(conf->slab_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 conf->slab_cache = NULL;
1100}
1101
NeilBrown6712ecf2007-09-27 12:47:43 +02001102static void raid5_end_read_request(struct bio * bi, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103{
NeilBrown99c0fb52009-03-31 14:39:38 +11001104 struct stripe_head *sh = bi->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 raid5_conf_t *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08001106 int disks = sh->disks, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
NeilBrownd6950432006-07-10 04:44:20 -07001108 char b[BDEVNAME_SIZE];
1109 mdk_rdev_t *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
1112 for (i=0 ; i<disks; i++)
1113 if (bi == &sh->dev[i].req)
1114 break;
1115
Dan Williams45b42332007-07-09 11:56:43 -07001116 pr_debug("end_read_request %llu/%d, count: %d, uptodate %d.\n",
1117 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 uptodate);
1119 if (i == disks) {
1120 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02001121 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 }
1123
1124 if (uptodate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 set_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrown4e5314b2005-11-08 21:39:22 -08001126 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrownd6950432006-07-10 04:44:20 -07001127 rdev = conf->disks[i].rdev;
Bernd Schubert6be9d492008-05-23 13:04:34 -07001128 printk_rl(KERN_INFO "raid5:%s: read error corrected"
1129 " (%lu sectors at %llu on %s)\n",
1130 mdname(conf->mddev), STRIPE_SECTORS,
1131 (unsigned long long)(sh->sector
1132 + rdev->data_offset),
1133 bdevname(rdev->bdev, b));
NeilBrown4e5314b2005-11-08 21:39:22 -08001134 clear_bit(R5_ReadError, &sh->dev[i].flags);
1135 clear_bit(R5_ReWrite, &sh->dev[i].flags);
1136 }
NeilBrownba22dcb2005-11-08 21:39:31 -08001137 if (atomic_read(&conf->disks[i].rdev->read_errors))
1138 atomic_set(&conf->disks[i].rdev->read_errors, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 } else {
NeilBrownd6950432006-07-10 04:44:20 -07001140 const char *bdn = bdevname(conf->disks[i].rdev->bdev, b);
NeilBrownba22dcb2005-11-08 21:39:31 -08001141 int retry = 0;
NeilBrownd6950432006-07-10 04:44:20 -07001142 rdev = conf->disks[i].rdev;
1143
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 clear_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrownd6950432006-07-10 04:44:20 -07001145 atomic_inc(&rdev->read_errors);
NeilBrownba22dcb2005-11-08 21:39:31 -08001146 if (conf->mddev->degraded)
Bernd Schubert6be9d492008-05-23 13:04:34 -07001147 printk_rl(KERN_WARNING
1148 "raid5:%s: read error not correctable "
1149 "(sector %llu on %s).\n",
1150 mdname(conf->mddev),
1151 (unsigned long long)(sh->sector
1152 + rdev->data_offset),
1153 bdn);
NeilBrownba22dcb2005-11-08 21:39:31 -08001154 else if (test_bit(R5_ReWrite, &sh->dev[i].flags))
NeilBrown4e5314b2005-11-08 21:39:22 -08001155 /* Oh, no!!! */
Bernd Schubert6be9d492008-05-23 13:04:34 -07001156 printk_rl(KERN_WARNING
1157 "raid5:%s: read error NOT corrected!! "
1158 "(sector %llu on %s).\n",
1159 mdname(conf->mddev),
1160 (unsigned long long)(sh->sector
1161 + rdev->data_offset),
1162 bdn);
NeilBrownd6950432006-07-10 04:44:20 -07001163 else if (atomic_read(&rdev->read_errors)
NeilBrownba22dcb2005-11-08 21:39:31 -08001164 > conf->max_nr_stripes)
NeilBrown14f8d262006-01-06 00:20:14 -08001165 printk(KERN_WARNING
NeilBrownd6950432006-07-10 04:44:20 -07001166 "raid5:%s: Too many read errors, failing device %s.\n",
1167 mdname(conf->mddev), bdn);
NeilBrownba22dcb2005-11-08 21:39:31 -08001168 else
1169 retry = 1;
1170 if (retry)
1171 set_bit(R5_ReadError, &sh->dev[i].flags);
1172 else {
NeilBrown4e5314b2005-11-08 21:39:22 -08001173 clear_bit(R5_ReadError, &sh->dev[i].flags);
1174 clear_bit(R5_ReWrite, &sh->dev[i].flags);
NeilBrownd6950432006-07-10 04:44:20 -07001175 md_error(conf->mddev, rdev);
NeilBrownba22dcb2005-11-08 21:39:31 -08001176 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 }
1178 rdev_dec_pending(conf->disks[i].rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 clear_bit(R5_LOCKED, &sh->dev[i].flags);
1180 set_bit(STRIPE_HANDLE, &sh->state);
1181 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182}
1183
NeilBrownd710e132008-10-13 11:55:12 +11001184static void raid5_end_write_request(struct bio *bi, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185{
NeilBrown99c0fb52009-03-31 14:39:38 +11001186 struct stripe_head *sh = bi->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 raid5_conf_t *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08001188 int disks = sh->disks, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
1190
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 for (i=0 ; i<disks; i++)
1192 if (bi == &sh->dev[i].req)
1193 break;
1194
Dan Williams45b42332007-07-09 11:56:43 -07001195 pr_debug("end_write_request %llu/%d, count %d, uptodate: %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
1197 uptodate);
1198 if (i == disks) {
1199 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02001200 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 }
1202
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 if (!uptodate)
1204 md_error(conf->mddev, conf->disks[i].rdev);
1205
1206 rdev_dec_pending(conf->disks[i].rdev, conf->mddev);
1207
1208 clear_bit(R5_LOCKED, &sh->dev[i].flags);
1209 set_bit(STRIPE_HANDLE, &sh->state);
NeilBrownc04be0a2006-10-03 01:15:53 -07001210 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211}
1212
1213
1214static sector_t compute_blocknr(struct stripe_head *sh, int i);
1215
NeilBrownd710e132008-10-13 11:55:12 +11001216static void raid5_build_block(struct stripe_head *sh, int i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217{
1218 struct r5dev *dev = &sh->dev[i];
1219
1220 bio_init(&dev->req);
1221 dev->req.bi_io_vec = &dev->vec;
1222 dev->req.bi_vcnt++;
1223 dev->req.bi_max_vecs++;
1224 dev->vec.bv_page = dev->page;
1225 dev->vec.bv_len = STRIPE_SIZE;
1226 dev->vec.bv_offset = 0;
1227
1228 dev->req.bi_sector = sh->sector;
1229 dev->req.bi_private = sh;
1230
1231 dev->flags = 0;
NeilBrown16a53ec2006-06-26 00:27:38 -07001232 dev->sector = compute_blocknr(sh, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233}
1234
1235static void error(mddev_t *mddev, mdk_rdev_t *rdev)
1236{
1237 char b[BDEVNAME_SIZE];
1238 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
Dan Williams45b42332007-07-09 11:56:43 -07001239 pr_debug("raid5: error called\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
NeilBrownb2d444d2005-11-08 21:39:31 -08001241 if (!test_bit(Faulty, &rdev->flags)) {
NeilBrown850b2b42006-10-03 01:15:46 -07001242 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrownc04be0a2006-10-03 01:15:53 -07001243 if (test_and_clear_bit(In_sync, &rdev->flags)) {
1244 unsigned long flags;
1245 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 mddev->degraded++;
NeilBrownc04be0a2006-10-03 01:15:53 -07001247 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 /*
1249 * if recovery was running, make sure it aborts.
1250 */
NeilBrowndfc70642008-05-23 13:04:39 -07001251 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 }
NeilBrownb2d444d2005-11-08 21:39:31 -08001253 set_bit(Faulty, &rdev->flags);
NeilBrownd710e132008-10-13 11:55:12 +11001254 printk(KERN_ALERT
1255 "raid5: Disk failure on %s, disabling device.\n"
1256 "raid5: Operation continuing on %d devices.\n",
1257 bdevname(rdev->bdev,b), conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 }
NeilBrown16a53ec2006-06-26 00:27:38 -07001259}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
1261/*
1262 * Input: a 'big' sector number,
1263 * Output: index of the data and parity disk, and the sector # in them.
1264 */
NeilBrown112bf892009-03-31 14:39:38 +11001265static sector_t raid5_compute_sector(raid5_conf_t *conf, sector_t r_sector,
NeilBrown911d4ee2009-03-31 14:39:38 +11001266 int previous, int *dd_idx,
1267 struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268{
1269 long stripe;
1270 unsigned long chunk_number;
1271 unsigned int chunk_offset;
NeilBrown911d4ee2009-03-31 14:39:38 +11001272 int pd_idx, qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11001273 int ddf_layout = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 sector_t new_sector;
1275 int sectors_per_chunk = conf->chunk_size >> 9;
NeilBrown112bf892009-03-31 14:39:38 +11001276 int raid_disks = previous ? conf->previous_raid_disks
1277 : conf->raid_disks;
1278 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
1280 /* First compute the information on this sector */
1281
1282 /*
1283 * Compute the chunk number and the sector offset inside the chunk
1284 */
1285 chunk_offset = sector_div(r_sector, sectors_per_chunk);
1286 chunk_number = r_sector;
1287 BUG_ON(r_sector != chunk_number);
1288
1289 /*
1290 * Compute the stripe number
1291 */
1292 stripe = chunk_number / data_disks;
1293
1294 /*
1295 * Compute the data disk and parity disk indexes inside the stripe
1296 */
1297 *dd_idx = chunk_number % data_disks;
1298
1299 /*
1300 * Select the parity disk based on the user selected algorithm.
1301 */
NeilBrown911d4ee2009-03-31 14:39:38 +11001302 pd_idx = qd_idx = ~0;
NeilBrown16a53ec2006-06-26 00:27:38 -07001303 switch(conf->level) {
1304 case 4:
NeilBrown911d4ee2009-03-31 14:39:38 +11001305 pd_idx = data_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07001306 break;
1307 case 5:
1308 switch (conf->algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown911d4ee2009-03-31 14:39:38 +11001310 pd_idx = data_disks - stripe % raid_disks;
1311 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 (*dd_idx)++;
1313 break;
1314 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown911d4ee2009-03-31 14:39:38 +11001315 pd_idx = stripe % raid_disks;
1316 if (*dd_idx >= pd_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 (*dd_idx)++;
1318 break;
1319 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown911d4ee2009-03-31 14:39:38 +11001320 pd_idx = data_disks - stripe % raid_disks;
1321 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 break;
1323 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown911d4ee2009-03-31 14:39:38 +11001324 pd_idx = stripe % raid_disks;
1325 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11001327 case ALGORITHM_PARITY_0:
1328 pd_idx = 0;
1329 (*dd_idx)++;
1330 break;
1331 case ALGORITHM_PARITY_N:
1332 pd_idx = data_disks;
1333 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 default:
NeilBrown14f8d262006-01-06 00:20:14 -08001335 printk(KERN_ERR "raid5: unsupported algorithm %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 conf->algorithm);
NeilBrown99c0fb52009-03-31 14:39:38 +11001337 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07001338 }
1339 break;
1340 case 6:
1341
NeilBrown16a53ec2006-06-26 00:27:38 -07001342 switch (conf->algorithm) {
1343 case ALGORITHM_LEFT_ASYMMETRIC:
NeilBrown911d4ee2009-03-31 14:39:38 +11001344 pd_idx = raid_disks - 1 - (stripe % raid_disks);
1345 qd_idx = pd_idx + 1;
1346 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11001347 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11001348 qd_idx = 0;
1349 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07001350 (*dd_idx) += 2; /* D D P Q D */
1351 break;
1352 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown911d4ee2009-03-31 14:39:38 +11001353 pd_idx = stripe % raid_disks;
1354 qd_idx = pd_idx + 1;
1355 if (pd_idx == raid_disks-1) {
NeilBrown99c0fb52009-03-31 14:39:38 +11001356 (*dd_idx)++; /* Q D D D P */
NeilBrown911d4ee2009-03-31 14:39:38 +11001357 qd_idx = 0;
1358 } else if (*dd_idx >= pd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07001359 (*dd_idx) += 2; /* D D P Q D */
1360 break;
1361 case ALGORITHM_LEFT_SYMMETRIC:
NeilBrown911d4ee2009-03-31 14:39:38 +11001362 pd_idx = raid_disks - 1 - (stripe % raid_disks);
1363 qd_idx = (pd_idx + 1) % raid_disks;
1364 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07001365 break;
1366 case ALGORITHM_RIGHT_SYMMETRIC:
NeilBrown911d4ee2009-03-31 14:39:38 +11001367 pd_idx = stripe % raid_disks;
1368 qd_idx = (pd_idx + 1) % raid_disks;
1369 *dd_idx = (pd_idx + 2 + *dd_idx) % raid_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07001370 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11001371
1372 case ALGORITHM_PARITY_0:
1373 pd_idx = 0;
1374 qd_idx = 1;
1375 (*dd_idx) += 2;
1376 break;
1377 case ALGORITHM_PARITY_N:
1378 pd_idx = data_disks;
1379 qd_idx = data_disks + 1;
1380 break;
1381
1382 case ALGORITHM_ROTATING_ZERO_RESTART:
1383 /* Exactly the same as RIGHT_ASYMMETRIC, but or
1384 * of blocks for computing Q is different.
1385 */
1386 pd_idx = stripe % raid_disks;
1387 qd_idx = pd_idx + 1;
1388 if (pd_idx == raid_disks-1) {
1389 (*dd_idx)++; /* Q D D D P */
1390 qd_idx = 0;
1391 } else if (*dd_idx >= pd_idx)
1392 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11001393 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11001394 break;
1395
1396 case ALGORITHM_ROTATING_N_RESTART:
1397 /* Same a left_asymmetric, by first stripe is
1398 * D D D P Q rather than
1399 * Q D D D P
1400 */
1401 pd_idx = raid_disks - 1 - ((stripe + 1) % raid_disks);
1402 qd_idx = pd_idx + 1;
1403 if (pd_idx == raid_disks-1) {
1404 (*dd_idx)++; /* Q D D D P */
1405 qd_idx = 0;
1406 } else if (*dd_idx >= pd_idx)
1407 (*dd_idx) += 2; /* D D P Q D */
NeilBrown67cc2b82009-03-31 14:39:38 +11001408 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11001409 break;
1410
1411 case ALGORITHM_ROTATING_N_CONTINUE:
1412 /* Same as left_symmetric but Q is before P */
1413 pd_idx = raid_disks - 1 - (stripe % raid_disks);
1414 qd_idx = (pd_idx + raid_disks - 1) % raid_disks;
1415 *dd_idx = (pd_idx + 1 + *dd_idx) % raid_disks;
NeilBrown67cc2b82009-03-31 14:39:38 +11001416 ddf_layout = 1;
NeilBrown99c0fb52009-03-31 14:39:38 +11001417 break;
1418
1419 case ALGORITHM_LEFT_ASYMMETRIC_6:
1420 /* RAID5 left_asymmetric, with Q on last device */
1421 pd_idx = data_disks - stripe % (raid_disks-1);
1422 if (*dd_idx >= pd_idx)
1423 (*dd_idx)++;
1424 qd_idx = raid_disks - 1;
1425 break;
1426
1427 case ALGORITHM_RIGHT_ASYMMETRIC_6:
1428 pd_idx = stripe % (raid_disks-1);
1429 if (*dd_idx >= pd_idx)
1430 (*dd_idx)++;
1431 qd_idx = raid_disks - 1;
1432 break;
1433
1434 case ALGORITHM_LEFT_SYMMETRIC_6:
1435 pd_idx = data_disks - stripe % (raid_disks-1);
1436 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
1437 qd_idx = raid_disks - 1;
1438 break;
1439
1440 case ALGORITHM_RIGHT_SYMMETRIC_6:
1441 pd_idx = stripe % (raid_disks-1);
1442 *dd_idx = (pd_idx + 1 + *dd_idx) % (raid_disks-1);
1443 qd_idx = raid_disks - 1;
1444 break;
1445
1446 case ALGORITHM_PARITY_0_6:
1447 pd_idx = 0;
1448 (*dd_idx)++;
1449 qd_idx = raid_disks - 1;
1450 break;
1451
1452
NeilBrown16a53ec2006-06-26 00:27:38 -07001453 default:
NeilBrownd710e132008-10-13 11:55:12 +11001454 printk(KERN_CRIT "raid6: unsupported algorithm %d\n",
1455 conf->algorithm);
NeilBrown99c0fb52009-03-31 14:39:38 +11001456 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07001457 }
1458 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 }
1460
NeilBrown911d4ee2009-03-31 14:39:38 +11001461 if (sh) {
1462 sh->pd_idx = pd_idx;
1463 sh->qd_idx = qd_idx;
NeilBrown67cc2b82009-03-31 14:39:38 +11001464 sh->ddf_layout = ddf_layout;
NeilBrown911d4ee2009-03-31 14:39:38 +11001465 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 /*
1467 * Finally, compute the new sector number
1468 */
1469 new_sector = (sector_t)stripe * sectors_per_chunk + chunk_offset;
1470 return new_sector;
1471}
1472
1473
1474static sector_t compute_blocknr(struct stripe_head *sh, int i)
1475{
1476 raid5_conf_t *conf = sh->raid_conf;
NeilBrownb875e532006-12-10 02:20:49 -08001477 int raid_disks = sh->disks;
1478 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 sector_t new_sector = sh->sector, check;
1480 int sectors_per_chunk = conf->chunk_size >> 9;
1481 sector_t stripe;
1482 int chunk_offset;
NeilBrown911d4ee2009-03-31 14:39:38 +11001483 int chunk_number, dummy1, dd_idx = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 sector_t r_sector;
NeilBrown911d4ee2009-03-31 14:39:38 +11001485 struct stripe_head sh2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
NeilBrown16a53ec2006-06-26 00:27:38 -07001487
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 chunk_offset = sector_div(new_sector, sectors_per_chunk);
1489 stripe = new_sector;
1490 BUG_ON(new_sector != stripe);
1491
NeilBrown16a53ec2006-06-26 00:27:38 -07001492 if (i == sh->pd_idx)
1493 return 0;
1494 switch(conf->level) {
1495 case 4: break;
1496 case 5:
1497 switch (conf->algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 case ALGORITHM_LEFT_ASYMMETRIC:
1499 case ALGORITHM_RIGHT_ASYMMETRIC:
1500 if (i > sh->pd_idx)
1501 i--;
1502 break;
1503 case ALGORITHM_LEFT_SYMMETRIC:
1504 case ALGORITHM_RIGHT_SYMMETRIC:
1505 if (i < sh->pd_idx)
1506 i += raid_disks;
1507 i -= (sh->pd_idx + 1);
1508 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11001509 case ALGORITHM_PARITY_0:
1510 i -= 1;
1511 break;
1512 case ALGORITHM_PARITY_N:
1513 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 default:
NeilBrown14f8d262006-01-06 00:20:14 -08001515 printk(KERN_ERR "raid5: unsupported algorithm %d\n",
NeilBrown16a53ec2006-06-26 00:27:38 -07001516 conf->algorithm);
NeilBrown99c0fb52009-03-31 14:39:38 +11001517 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07001518 }
1519 break;
1520 case 6:
NeilBrownd0dabf72009-03-31 14:39:38 +11001521 if (i == sh->qd_idx)
NeilBrown16a53ec2006-06-26 00:27:38 -07001522 return 0; /* It is the Q disk */
1523 switch (conf->algorithm) {
1524 case ALGORITHM_LEFT_ASYMMETRIC:
1525 case ALGORITHM_RIGHT_ASYMMETRIC:
NeilBrown99c0fb52009-03-31 14:39:38 +11001526 case ALGORITHM_ROTATING_ZERO_RESTART:
1527 case ALGORITHM_ROTATING_N_RESTART:
1528 if (sh->pd_idx == raid_disks-1)
1529 i--; /* Q D D D P */
NeilBrown16a53ec2006-06-26 00:27:38 -07001530 else if (i > sh->pd_idx)
1531 i -= 2; /* D D P Q D */
1532 break;
1533 case ALGORITHM_LEFT_SYMMETRIC:
1534 case ALGORITHM_RIGHT_SYMMETRIC:
1535 if (sh->pd_idx == raid_disks-1)
1536 i--; /* Q D D D P */
1537 else {
1538 /* D D P Q D */
1539 if (i < sh->pd_idx)
1540 i += raid_disks;
1541 i -= (sh->pd_idx + 2);
1542 }
1543 break;
NeilBrown99c0fb52009-03-31 14:39:38 +11001544 case ALGORITHM_PARITY_0:
1545 i -= 2;
1546 break;
1547 case ALGORITHM_PARITY_N:
1548 break;
1549 case ALGORITHM_ROTATING_N_CONTINUE:
1550 if (sh->pd_idx == 0)
1551 i--; /* P D D D Q */
1552 else if (i > sh->pd_idx)
1553 i -= 2; /* D D Q P D */
1554 break;
1555 case ALGORITHM_LEFT_ASYMMETRIC_6:
1556 case ALGORITHM_RIGHT_ASYMMETRIC_6:
1557 if (i > sh->pd_idx)
1558 i--;
1559 break;
1560 case ALGORITHM_LEFT_SYMMETRIC_6:
1561 case ALGORITHM_RIGHT_SYMMETRIC_6:
1562 if (i < sh->pd_idx)
1563 i += data_disks + 1;
1564 i -= (sh->pd_idx + 1);
1565 break;
1566 case ALGORITHM_PARITY_0_6:
1567 i -= 1;
1568 break;
NeilBrown16a53ec2006-06-26 00:27:38 -07001569 default:
NeilBrownd710e132008-10-13 11:55:12 +11001570 printk(KERN_CRIT "raid6: unsupported algorithm %d\n",
1571 conf->algorithm);
NeilBrown99c0fb52009-03-31 14:39:38 +11001572 BUG();
NeilBrown16a53ec2006-06-26 00:27:38 -07001573 }
1574 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 }
1576
1577 chunk_number = stripe * data_disks + i;
1578 r_sector = (sector_t)chunk_number * sectors_per_chunk + chunk_offset;
1579
NeilBrown112bf892009-03-31 14:39:38 +11001580 check = raid5_compute_sector(conf, r_sector,
1581 (raid_disks != conf->raid_disks),
NeilBrown911d4ee2009-03-31 14:39:38 +11001582 &dummy1, &sh2);
1583 if (check != sh->sector || dummy1 != dd_idx || sh2.pd_idx != sh->pd_idx
1584 || sh2.qd_idx != sh->qd_idx) {
NeilBrown14f8d262006-01-06 00:20:14 -08001585 printk(KERN_ERR "compute_blocknr: map not correct\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 return 0;
1587 }
1588 return r_sector;
1589}
1590
1591
1592
1593/*
NeilBrown16a53ec2006-06-26 00:27:38 -07001594 * Copy data between a page in the stripe cache, and one or more bion
1595 * The page could align with the middle of the bio, or there could be
1596 * several bion, each with several bio_vecs, which cover part of the page
1597 * Multiple bion are linked together on bi_next. There may be extras
1598 * at the end of this list. We ignore them.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 */
1600static void copy_data(int frombio, struct bio *bio,
1601 struct page *page,
1602 sector_t sector)
1603{
1604 char *pa = page_address(page);
1605 struct bio_vec *bvl;
1606 int i;
1607 int page_offset;
1608
1609 if (bio->bi_sector >= sector)
1610 page_offset = (signed)(bio->bi_sector - sector) * 512;
1611 else
1612 page_offset = (signed)(sector - bio->bi_sector) * -512;
1613 bio_for_each_segment(bvl, bio, i) {
1614 int len = bio_iovec_idx(bio,i)->bv_len;
1615 int clen;
1616 int b_offset = 0;
1617
1618 if (page_offset < 0) {
1619 b_offset = -page_offset;
1620 page_offset += b_offset;
1621 len -= b_offset;
1622 }
1623
1624 if (len > 0 && page_offset + len > STRIPE_SIZE)
1625 clen = STRIPE_SIZE - page_offset;
1626 else clen = len;
NeilBrown16a53ec2006-06-26 00:27:38 -07001627
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 if (clen > 0) {
1629 char *ba = __bio_kmap_atomic(bio, i, KM_USER0);
1630 if (frombio)
1631 memcpy(pa+page_offset, ba+b_offset, clen);
1632 else
1633 memcpy(ba+b_offset, pa+page_offset, clen);
1634 __bio_kunmap_atomic(ba, KM_USER0);
1635 }
1636 if (clen < len) /* hit end of page */
1637 break;
1638 page_offset += len;
1639 }
1640}
1641
Dan Williams9bc89cd2007-01-02 11:10:44 -07001642#define check_xor() do { \
1643 if (count == MAX_XOR_BLOCKS) { \
1644 xor_blocks(count, STRIPE_SIZE, dest, ptr);\
1645 count = 0; \
1646 } \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 } while(0)
1648
NeilBrown16a53ec2006-06-26 00:27:38 -07001649static void compute_parity6(struct stripe_head *sh, int method)
1650{
NeilBrownbff61972009-03-31 14:33:13 +11001651 raid5_conf_t *conf = sh->raid_conf;
NeilBrownd0dabf72009-03-31 14:39:38 +11001652 int i, pd_idx, qd_idx, d0_idx, disks = sh->disks, count;
NeilBrown67cc2b82009-03-31 14:39:38 +11001653 int syndrome_disks = sh->ddf_layout ? disks : (disks - 2);
NeilBrown16a53ec2006-06-26 00:27:38 -07001654 struct bio *chosen;
1655 /**** FIX THIS: This could be very bad if disks is close to 256 ****/
NeilBrown67cc2b82009-03-31 14:39:38 +11001656 void *ptrs[syndrome_disks+2];
NeilBrown16a53ec2006-06-26 00:27:38 -07001657
NeilBrownd0dabf72009-03-31 14:39:38 +11001658 pd_idx = sh->pd_idx;
1659 qd_idx = sh->qd_idx;
1660 d0_idx = raid6_d0(sh);
NeilBrown16a53ec2006-06-26 00:27:38 -07001661
Dan Williams45b42332007-07-09 11:56:43 -07001662 pr_debug("compute_parity, stripe %llu, method %d\n",
NeilBrown16a53ec2006-06-26 00:27:38 -07001663 (unsigned long long)sh->sector, method);
1664
1665 switch(method) {
1666 case READ_MODIFY_WRITE:
1667 BUG(); /* READ_MODIFY_WRITE N/A for RAID-6 */
1668 case RECONSTRUCT_WRITE:
1669 for (i= disks; i-- ;)
1670 if ( i != pd_idx && i != qd_idx && sh->dev[i].towrite ) {
1671 chosen = sh->dev[i].towrite;
1672 sh->dev[i].towrite = NULL;
1673
1674 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
1675 wake_up(&conf->wait_for_overlap);
1676
Eric Sesterhenn52e5f9d2006-10-03 23:33:23 +02001677 BUG_ON(sh->dev[i].written);
NeilBrown16a53ec2006-06-26 00:27:38 -07001678 sh->dev[i].written = chosen;
1679 }
1680 break;
1681 case CHECK_PARITY:
1682 BUG(); /* Not implemented yet */
1683 }
1684
1685 for (i = disks; i--;)
1686 if (sh->dev[i].written) {
1687 sector_t sector = sh->dev[i].sector;
1688 struct bio *wbi = sh->dev[i].written;
1689 while (wbi && wbi->bi_sector < sector + STRIPE_SECTORS) {
1690 copy_data(1, wbi, sh->dev[i].page, sector);
1691 wbi = r5_next_bio(wbi, sector);
1692 }
1693
1694 set_bit(R5_LOCKED, &sh->dev[i].flags);
1695 set_bit(R5_UPTODATE, &sh->dev[i].flags);
1696 }
1697
NeilBrownd0dabf72009-03-31 14:39:38 +11001698 /* Note that unlike RAID-5, the ordering of the disks matters greatly.*/
NeilBrown67cc2b82009-03-31 14:39:38 +11001699
1700 for (i = 0; i < disks; i++)
1701 ptrs[i] = (void *)raid6_empty_zero_page;
1702
NeilBrownd0dabf72009-03-31 14:39:38 +11001703 count = 0;
1704 i = d0_idx;
1705 do {
NeilBrown67cc2b82009-03-31 14:39:38 +11001706 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
1707
NeilBrownd0dabf72009-03-31 14:39:38 +11001708 ptrs[slot] = page_address(sh->dev[i].page);
NeilBrown67cc2b82009-03-31 14:39:38 +11001709 if (slot < syndrome_disks &&
NeilBrownd0dabf72009-03-31 14:39:38 +11001710 !test_bit(R5_UPTODATE, &sh->dev[i].flags)) {
1711 printk(KERN_ERR "block %d/%d not uptodate "
1712 "on parity calc\n", i, count);
1713 BUG();
1714 }
NeilBrown67cc2b82009-03-31 14:39:38 +11001715
NeilBrownd0dabf72009-03-31 14:39:38 +11001716 i = raid6_next_disk(i, disks);
1717 } while (i != d0_idx);
NeilBrown67cc2b82009-03-31 14:39:38 +11001718 BUG_ON(count != syndrome_disks);
NeilBrown16a53ec2006-06-26 00:27:38 -07001719
NeilBrown67cc2b82009-03-31 14:39:38 +11001720 raid6_call.gen_syndrome(syndrome_disks+2, STRIPE_SIZE, ptrs);
NeilBrown16a53ec2006-06-26 00:27:38 -07001721
1722 switch(method) {
1723 case RECONSTRUCT_WRITE:
1724 set_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
1725 set_bit(R5_UPTODATE, &sh->dev[qd_idx].flags);
1726 set_bit(R5_LOCKED, &sh->dev[pd_idx].flags);
1727 set_bit(R5_LOCKED, &sh->dev[qd_idx].flags);
1728 break;
1729 case UPDATE_PARITY:
1730 set_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
1731 set_bit(R5_UPTODATE, &sh->dev[qd_idx].flags);
1732 break;
1733 }
1734}
1735
1736
1737/* Compute one missing block */
1738static void compute_block_1(struct stripe_head *sh, int dd_idx, int nozero)
1739{
NeilBrownf4168852007-02-28 20:11:53 -08001740 int i, count, disks = sh->disks;
Dan Williams9bc89cd2007-01-02 11:10:44 -07001741 void *ptr[MAX_XOR_BLOCKS], *dest, *p;
NeilBrownd0dabf72009-03-31 14:39:38 +11001742 int qd_idx = sh->qd_idx;
NeilBrown16a53ec2006-06-26 00:27:38 -07001743
Dan Williams45b42332007-07-09 11:56:43 -07001744 pr_debug("compute_block_1, stripe %llu, idx %d\n",
NeilBrown16a53ec2006-06-26 00:27:38 -07001745 (unsigned long long)sh->sector, dd_idx);
1746
1747 if ( dd_idx == qd_idx ) {
1748 /* We're actually computing the Q drive */
1749 compute_parity6(sh, UPDATE_PARITY);
1750 } else {
Dan Williams9bc89cd2007-01-02 11:10:44 -07001751 dest = page_address(sh->dev[dd_idx].page);
1752 if (!nozero) memset(dest, 0, STRIPE_SIZE);
1753 count = 0;
NeilBrown16a53ec2006-06-26 00:27:38 -07001754 for (i = disks ; i--; ) {
1755 if (i == dd_idx || i == qd_idx)
1756 continue;
1757 p = page_address(sh->dev[i].page);
1758 if (test_bit(R5_UPTODATE, &sh->dev[i].flags))
1759 ptr[count++] = p;
1760 else
1761 printk("compute_block() %d, stripe %llu, %d"
1762 " not present\n", dd_idx,
1763 (unsigned long long)sh->sector, i);
1764
1765 check_xor();
1766 }
Dan Williams9bc89cd2007-01-02 11:10:44 -07001767 if (count)
1768 xor_blocks(count, STRIPE_SIZE, dest, ptr);
NeilBrown16a53ec2006-06-26 00:27:38 -07001769 if (!nozero) set_bit(R5_UPTODATE, &sh->dev[dd_idx].flags);
1770 else clear_bit(R5_UPTODATE, &sh->dev[dd_idx].flags);
1771 }
1772}
1773
1774/* Compute two missing blocks */
1775static void compute_block_2(struct stripe_head *sh, int dd_idx1, int dd_idx2)
1776{
NeilBrownf4168852007-02-28 20:11:53 -08001777 int i, count, disks = sh->disks;
NeilBrown67cc2b82009-03-31 14:39:38 +11001778 int syndrome_disks = sh->ddf_layout ? disks : disks-2;
NeilBrownd0dabf72009-03-31 14:39:38 +11001779 int d0_idx = raid6_d0(sh);
1780 int faila = -1, failb = -1;
1781 /**** FIX THIS: This could be very bad if disks is close to 256 ****/
NeilBrown67cc2b82009-03-31 14:39:38 +11001782 void *ptrs[syndrome_disks+2];
NeilBrown16a53ec2006-06-26 00:27:38 -07001783
NeilBrown67cc2b82009-03-31 14:39:38 +11001784 for (i = 0; i < disks ; i++)
1785 ptrs[i] = (void *)raid6_empty_zero_page;
NeilBrownd0dabf72009-03-31 14:39:38 +11001786 count = 0;
1787 i = d0_idx;
1788 do {
NeilBrown67cc2b82009-03-31 14:39:38 +11001789 int slot = raid6_idx_to_slot(i, sh, &count, syndrome_disks);
1790
NeilBrownd0dabf72009-03-31 14:39:38 +11001791 ptrs[slot] = page_address(sh->dev[i].page);
NeilBrown67cc2b82009-03-31 14:39:38 +11001792
NeilBrownd0dabf72009-03-31 14:39:38 +11001793 if (i == dd_idx1)
1794 faila = slot;
1795 if (i == dd_idx2)
1796 failb = slot;
1797 i = raid6_next_disk(i, disks);
1798 } while (i != d0_idx);
NeilBrown67cc2b82009-03-31 14:39:38 +11001799 BUG_ON(count != syndrome_disks);
NeilBrown16a53ec2006-06-26 00:27:38 -07001800
1801 BUG_ON(faila == failb);
1802 if ( failb < faila ) { int tmp = faila; faila = failb; failb = tmp; }
1803
Dan Williams45b42332007-07-09 11:56:43 -07001804 pr_debug("compute_block_2, stripe %llu, idx %d,%d (%d,%d)\n",
NeilBrownd0dabf72009-03-31 14:39:38 +11001805 (unsigned long long)sh->sector, dd_idx1, dd_idx2,
1806 faila, failb);
NeilBrown16a53ec2006-06-26 00:27:38 -07001807
NeilBrown67cc2b82009-03-31 14:39:38 +11001808 if (failb == syndrome_disks+1) {
NeilBrown16a53ec2006-06-26 00:27:38 -07001809 /* Q disk is one of the missing disks */
NeilBrown67cc2b82009-03-31 14:39:38 +11001810 if (faila == syndrome_disks) {
NeilBrown16a53ec2006-06-26 00:27:38 -07001811 /* Missing P+Q, just recompute */
1812 compute_parity6(sh, UPDATE_PARITY);
1813 return;
1814 } else {
1815 /* We're missing D+Q; recompute D from P */
NeilBrownd0dabf72009-03-31 14:39:38 +11001816 compute_block_1(sh, ((dd_idx1 == sh->qd_idx) ?
1817 dd_idx2 : dd_idx1),
1818 0);
NeilBrown16a53ec2006-06-26 00:27:38 -07001819 compute_parity6(sh, UPDATE_PARITY); /* Is this necessary? */
1820 return;
1821 }
1822 }
1823
NeilBrownd0dabf72009-03-31 14:39:38 +11001824 /* We're missing D+P or D+D; */
NeilBrown67cc2b82009-03-31 14:39:38 +11001825 if (failb == syndrome_disks) {
NeilBrownd0dabf72009-03-31 14:39:38 +11001826 /* We're missing D+P. */
NeilBrown67cc2b82009-03-31 14:39:38 +11001827 raid6_datap_recov(syndrome_disks+2, STRIPE_SIZE, faila, ptrs);
NeilBrownd0dabf72009-03-31 14:39:38 +11001828 } else {
1829 /* We're missing D+D. */
NeilBrown67cc2b82009-03-31 14:39:38 +11001830 raid6_2data_recov(syndrome_disks+2, STRIPE_SIZE, faila, failb,
1831 ptrs);
NeilBrown16a53ec2006-06-26 00:27:38 -07001832 }
NeilBrownd0dabf72009-03-31 14:39:38 +11001833
1834 /* Both the above update both missing blocks */
1835 set_bit(R5_UPTODATE, &sh->dev[dd_idx1].flags);
1836 set_bit(R5_UPTODATE, &sh->dev[dd_idx2].flags);
NeilBrown16a53ec2006-06-26 00:27:38 -07001837}
1838
Dan Williams600aa102008-06-28 08:32:05 +10001839static void
Dan Williams1fe797e2008-06-28 09:16:30 +10001840schedule_reconstruction5(struct stripe_head *sh, struct stripe_head_state *s,
Dan Williams600aa102008-06-28 08:32:05 +10001841 int rcw, int expand)
Dan Williamse33129d2007-01-02 13:52:30 -07001842{
1843 int i, pd_idx = sh->pd_idx, disks = sh->disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07001844
Dan Williamse33129d2007-01-02 13:52:30 -07001845 if (rcw) {
1846 /* if we are not expanding this is a proper write request, and
1847 * there will be bios with new data to be drained into the
1848 * stripe cache
1849 */
1850 if (!expand) {
Dan Williams600aa102008-06-28 08:32:05 +10001851 sh->reconstruct_state = reconstruct_state_drain_run;
1852 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
1853 } else
1854 sh->reconstruct_state = reconstruct_state_run;
Dan Williamse33129d2007-01-02 13:52:30 -07001855
Dan Williams600aa102008-06-28 08:32:05 +10001856 set_bit(STRIPE_OP_POSTXOR, &s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07001857
1858 for (i = disks; i--; ) {
1859 struct r5dev *dev = &sh->dev[i];
1860
1861 if (dev->towrite) {
1862 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsd8ee0722008-06-28 08:32:06 +10001863 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07001864 if (!expand)
1865 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10001866 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07001867 }
1868 }
Dan Williams600aa102008-06-28 08:32:05 +10001869 if (s->locked + 1 == disks)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07001870 if (!test_and_set_bit(STRIPE_FULL_WRITE, &sh->state))
1871 atomic_inc(&sh->raid_conf->pending_full_writes);
Dan Williamse33129d2007-01-02 13:52:30 -07001872 } else {
1873 BUG_ON(!(test_bit(R5_UPTODATE, &sh->dev[pd_idx].flags) ||
1874 test_bit(R5_Wantcompute, &sh->dev[pd_idx].flags)));
1875
Dan Williamsd8ee0722008-06-28 08:32:06 +10001876 sh->reconstruct_state = reconstruct_state_prexor_drain_run;
Dan Williams600aa102008-06-28 08:32:05 +10001877 set_bit(STRIPE_OP_PREXOR, &s->ops_request);
1878 set_bit(STRIPE_OP_BIODRAIN, &s->ops_request);
1879 set_bit(STRIPE_OP_POSTXOR, &s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07001880
1881 for (i = disks; i--; ) {
1882 struct r5dev *dev = &sh->dev[i];
1883 if (i == pd_idx)
1884 continue;
1885
Dan Williamse33129d2007-01-02 13:52:30 -07001886 if (dev->towrite &&
1887 (test_bit(R5_UPTODATE, &dev->flags) ||
Dan Williamsd8ee0722008-06-28 08:32:06 +10001888 test_bit(R5_Wantcompute, &dev->flags))) {
1889 set_bit(R5_Wantdrain, &dev->flags);
Dan Williamse33129d2007-01-02 13:52:30 -07001890 set_bit(R5_LOCKED, &dev->flags);
1891 clear_bit(R5_UPTODATE, &dev->flags);
Dan Williams600aa102008-06-28 08:32:05 +10001892 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07001893 }
1894 }
1895 }
1896
1897 /* keep the parity disk locked while asynchronous operations
1898 * are in flight
1899 */
1900 set_bit(R5_LOCKED, &sh->dev[pd_idx].flags);
1901 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
Dan Williams600aa102008-06-28 08:32:05 +10001902 s->locked++;
Dan Williamse33129d2007-01-02 13:52:30 -07001903
Dan Williams600aa102008-06-28 08:32:05 +10001904 pr_debug("%s: stripe %llu locked: %d ops_request: %lx\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -07001905 __func__, (unsigned long long)sh->sector,
Dan Williams600aa102008-06-28 08:32:05 +10001906 s->locked, s->ops_request);
Dan Williamse33129d2007-01-02 13:52:30 -07001907}
NeilBrown16a53ec2006-06-26 00:27:38 -07001908
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909/*
1910 * Each stripe/dev can have one or more bion attached.
NeilBrown16a53ec2006-06-26 00:27:38 -07001911 * toread/towrite point to the first in a chain.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 * The bi_next chain must be in order.
1913 */
1914static int add_stripe_bio(struct stripe_head *sh, struct bio *bi, int dd_idx, int forwrite)
1915{
1916 struct bio **bip;
1917 raid5_conf_t *conf = sh->raid_conf;
NeilBrown72626682005-09-09 16:23:54 -07001918 int firstwrite=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919
Dan Williams45b42332007-07-09 11:56:43 -07001920 pr_debug("adding bh b#%llu to stripe s#%llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 (unsigned long long)bi->bi_sector,
1922 (unsigned long long)sh->sector);
1923
1924
1925 spin_lock(&sh->lock);
1926 spin_lock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07001927 if (forwrite) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 bip = &sh->dev[dd_idx].towrite;
NeilBrown72626682005-09-09 16:23:54 -07001929 if (*bip == NULL && sh->dev[dd_idx].written == NULL)
1930 firstwrite = 1;
1931 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 bip = &sh->dev[dd_idx].toread;
1933 while (*bip && (*bip)->bi_sector < bi->bi_sector) {
1934 if ((*bip)->bi_sector + ((*bip)->bi_size >> 9) > bi->bi_sector)
1935 goto overlap;
1936 bip = & (*bip)->bi_next;
1937 }
1938 if (*bip && (*bip)->bi_sector < bi->bi_sector + ((bi->bi_size)>>9))
1939 goto overlap;
1940
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02001941 BUG_ON(*bip && bi->bi_next && (*bip) != bi->bi_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 if (*bip)
1943 bi->bi_next = *bip;
1944 *bip = bi;
Jens Axboe960e7392008-08-15 10:41:18 +02001945 bi->bi_phys_segments++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 spin_unlock_irq(&conf->device_lock);
1947 spin_unlock(&sh->lock);
1948
Dan Williams45b42332007-07-09 11:56:43 -07001949 pr_debug("added bi b#%llu to stripe s#%llu, disk %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 (unsigned long long)bi->bi_sector,
1951 (unsigned long long)sh->sector, dd_idx);
1952
NeilBrown72626682005-09-09 16:23:54 -07001953 if (conf->mddev->bitmap && firstwrite) {
NeilBrown72626682005-09-09 16:23:54 -07001954 bitmap_startwrite(conf->mddev->bitmap, sh->sector,
1955 STRIPE_SECTORS, 0);
NeilBrownae3c20c2006-07-10 04:44:17 -07001956 sh->bm_seq = conf->seq_flush+1;
NeilBrown72626682005-09-09 16:23:54 -07001957 set_bit(STRIPE_BIT_DELAY, &sh->state);
1958 }
1959
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 if (forwrite) {
1961 /* check if page is covered */
1962 sector_t sector = sh->dev[dd_idx].sector;
1963 for (bi=sh->dev[dd_idx].towrite;
1964 sector < sh->dev[dd_idx].sector + STRIPE_SECTORS &&
1965 bi && bi->bi_sector <= sector;
1966 bi = r5_next_bio(bi, sh->dev[dd_idx].sector)) {
1967 if (bi->bi_sector + (bi->bi_size>>9) >= sector)
1968 sector = bi->bi_sector + (bi->bi_size>>9);
1969 }
1970 if (sector >= sh->dev[dd_idx].sector + STRIPE_SECTORS)
1971 set_bit(R5_OVERWRITE, &sh->dev[dd_idx].flags);
1972 }
1973 return 1;
1974
1975 overlap:
1976 set_bit(R5_Overlap, &sh->dev[dd_idx].flags);
1977 spin_unlock_irq(&conf->device_lock);
1978 spin_unlock(&sh->lock);
1979 return 0;
1980}
1981
NeilBrown29269552006-03-27 01:18:10 -08001982static void end_reshape(raid5_conf_t *conf);
1983
NeilBrown16a53ec2006-06-26 00:27:38 -07001984static int page_is_zero(struct page *p)
1985{
1986 char *a = page_address(p);
1987 return ((*(u32*)a) == 0 &&
1988 memcmp(a, a+4, STRIPE_SIZE-4)==0);
1989}
1990
NeilBrown911d4ee2009-03-31 14:39:38 +11001991static void stripe_set_idx(sector_t stripe, raid5_conf_t *conf, int previous,
1992 struct stripe_head *sh)
NeilBrownccfcc3c2006-03-27 01:18:09 -08001993{
1994 int sectors_per_chunk = conf->chunk_size >> 9;
NeilBrown911d4ee2009-03-31 14:39:38 +11001995 int dd_idx;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07001996 int chunk_offset = sector_div(stripe, sectors_per_chunk);
NeilBrown112bf892009-03-31 14:39:38 +11001997 int disks = previous ? conf->previous_raid_disks : conf->raid_disks;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07001998
NeilBrown112bf892009-03-31 14:39:38 +11001999 raid5_compute_sector(conf,
2000 stripe * (disks - conf->max_degraded)
NeilBrownb875e532006-12-10 02:20:49 -08002001 *sectors_per_chunk + chunk_offset,
NeilBrown112bf892009-03-31 14:39:38 +11002002 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11002003 &dd_idx, sh);
NeilBrownccfcc3c2006-03-27 01:18:09 -08002004}
2005
Dan Williamsa4456852007-07-09 11:56:43 -07002006static void
Dan Williams1fe797e2008-06-28 09:16:30 +10002007handle_failed_stripe(raid5_conf_t *conf, struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07002008 struct stripe_head_state *s, int disks,
2009 struct bio **return_bi)
2010{
2011 int i;
2012 for (i = disks; i--; ) {
2013 struct bio *bi;
2014 int bitmap_end = 0;
2015
2016 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
2017 mdk_rdev_t *rdev;
2018 rcu_read_lock();
2019 rdev = rcu_dereference(conf->disks[i].rdev);
2020 if (rdev && test_bit(In_sync, &rdev->flags))
2021 /* multiple read failures in one stripe */
2022 md_error(conf->mddev, rdev);
2023 rcu_read_unlock();
2024 }
2025 spin_lock_irq(&conf->device_lock);
2026 /* fail all writes first */
2027 bi = sh->dev[i].towrite;
2028 sh->dev[i].towrite = NULL;
2029 if (bi) {
2030 s->to_write--;
2031 bitmap_end = 1;
2032 }
2033
2034 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
2035 wake_up(&conf->wait_for_overlap);
2036
2037 while (bi && bi->bi_sector <
2038 sh->dev[i].sector + STRIPE_SECTORS) {
2039 struct bio *nextbi = r5_next_bio(bi, sh->dev[i].sector);
2040 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Jens Axboe960e7392008-08-15 10:41:18 +02002041 if (!raid5_dec_bi_phys_segments(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002042 md_write_end(conf->mddev);
2043 bi->bi_next = *return_bi;
2044 *return_bi = bi;
2045 }
2046 bi = nextbi;
2047 }
2048 /* and fail all 'written' */
2049 bi = sh->dev[i].written;
2050 sh->dev[i].written = NULL;
2051 if (bi) bitmap_end = 1;
2052 while (bi && bi->bi_sector <
2053 sh->dev[i].sector + STRIPE_SECTORS) {
2054 struct bio *bi2 = r5_next_bio(bi, sh->dev[i].sector);
2055 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Jens Axboe960e7392008-08-15 10:41:18 +02002056 if (!raid5_dec_bi_phys_segments(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002057 md_write_end(conf->mddev);
2058 bi->bi_next = *return_bi;
2059 *return_bi = bi;
2060 }
2061 bi = bi2;
2062 }
2063
Dan Williamsb5e98d62007-01-02 13:52:31 -07002064 /* fail any reads if this device is non-operational and
2065 * the data has not reached the cache yet.
2066 */
2067 if (!test_bit(R5_Wantfill, &sh->dev[i].flags) &&
2068 (!test_bit(R5_Insync, &sh->dev[i].flags) ||
2069 test_bit(R5_ReadError, &sh->dev[i].flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07002070 bi = sh->dev[i].toread;
2071 sh->dev[i].toread = NULL;
2072 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
2073 wake_up(&conf->wait_for_overlap);
2074 if (bi) s->to_read--;
2075 while (bi && bi->bi_sector <
2076 sh->dev[i].sector + STRIPE_SECTORS) {
2077 struct bio *nextbi =
2078 r5_next_bio(bi, sh->dev[i].sector);
2079 clear_bit(BIO_UPTODATE, &bi->bi_flags);
Jens Axboe960e7392008-08-15 10:41:18 +02002080 if (!raid5_dec_bi_phys_segments(bi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002081 bi->bi_next = *return_bi;
2082 *return_bi = bi;
2083 }
2084 bi = nextbi;
2085 }
2086 }
2087 spin_unlock_irq(&conf->device_lock);
2088 if (bitmap_end)
2089 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
2090 STRIPE_SECTORS, 0, 0);
2091 }
2092
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002093 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
2094 if (atomic_dec_and_test(&conf->pending_full_writes))
2095 md_wakeup_thread(conf->mddev->thread);
Dan Williamsa4456852007-07-09 11:56:43 -07002096}
2097
Dan Williams1fe797e2008-06-28 09:16:30 +10002098/* fetch_block5 - checks the given member device to see if its data needs
2099 * to be read or computed to satisfy a request.
2100 *
2101 * Returns 1 when no more member devices need to be checked, otherwise returns
2102 * 0 to tell the loop in handle_stripe_fill5 to continue
Dan Williamsf38e1212007-01-02 13:52:30 -07002103 */
Dan Williams1fe797e2008-06-28 09:16:30 +10002104static int fetch_block5(struct stripe_head *sh, struct stripe_head_state *s,
2105 int disk_idx, int disks)
Dan Williamsf38e1212007-01-02 13:52:30 -07002106{
2107 struct r5dev *dev = &sh->dev[disk_idx];
2108 struct r5dev *failed_dev = &sh->dev[s->failed_num];
2109
Dan Williamsf38e1212007-01-02 13:52:30 -07002110 /* is the data in this block needed, and can we get it? */
2111 if (!test_bit(R5_LOCKED, &dev->flags) &&
Dan Williams1fe797e2008-06-28 09:16:30 +10002112 !test_bit(R5_UPTODATE, &dev->flags) &&
2113 (dev->toread ||
2114 (dev->towrite && !test_bit(R5_OVERWRITE, &dev->flags)) ||
2115 s->syncing || s->expanding ||
2116 (s->failed &&
2117 (failed_dev->toread ||
2118 (failed_dev->towrite &&
2119 !test_bit(R5_OVERWRITE, &failed_dev->flags)))))) {
Dan Williams976ea8d2008-06-28 08:32:03 +10002120 /* We would like to get this block, possibly by computing it,
2121 * otherwise read it if the backing disk is insync
Dan Williamsf38e1212007-01-02 13:52:30 -07002122 */
2123 if ((s->uptodate == disks - 1) &&
Dan Williamsecc65c92008-06-28 08:31:57 +10002124 (s->failed && disk_idx == s->failed_num)) {
Dan Williams976ea8d2008-06-28 08:32:03 +10002125 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
2126 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
Dan Williamsf38e1212007-01-02 13:52:30 -07002127 set_bit(R5_Wantcompute, &dev->flags);
2128 sh->ops.target = disk_idx;
2129 s->req_compute = 1;
Dan Williamsf38e1212007-01-02 13:52:30 -07002130 /* Careful: from this point on 'uptodate' is in the eye
2131 * of raid5_run_ops which services 'compute' operations
2132 * before writes. R5_Wantcompute flags a block that will
2133 * be R5_UPTODATE by the time it is needed for a
2134 * subsequent operation.
2135 */
2136 s->uptodate++;
Dan Williams1fe797e2008-06-28 09:16:30 +10002137 return 1; /* uptodate + compute == disks */
Dan Williams7a1fc532008-07-10 04:54:57 -07002138 } else if (test_bit(R5_Insync, &dev->flags)) {
Dan Williamsf38e1212007-01-02 13:52:30 -07002139 set_bit(R5_LOCKED, &dev->flags);
2140 set_bit(R5_Wantread, &dev->flags);
Dan Williamsf38e1212007-01-02 13:52:30 -07002141 s->locked++;
2142 pr_debug("Reading block %d (sync=%d)\n", disk_idx,
2143 s->syncing);
2144 }
2145 }
2146
Dan Williams1fe797e2008-06-28 09:16:30 +10002147 return 0;
Dan Williamsf38e1212007-01-02 13:52:30 -07002148}
2149
Dan Williams1fe797e2008-06-28 09:16:30 +10002150/**
2151 * handle_stripe_fill5 - read or compute data to satisfy pending requests.
2152 */
2153static void handle_stripe_fill5(struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07002154 struct stripe_head_state *s, int disks)
2155{
2156 int i;
Dan Williamsf38e1212007-01-02 13:52:30 -07002157
Dan Williamsf38e1212007-01-02 13:52:30 -07002158 /* look for blocks to read/compute, skip this if a compute
2159 * is already in flight, or if the stripe contents are in the
2160 * midst of changing due to a write
2161 */
Dan Williams976ea8d2008-06-28 08:32:03 +10002162 if (!test_bit(STRIPE_COMPUTE_RUN, &sh->state) && !sh->check_state &&
Dan Williams1fe797e2008-06-28 09:16:30 +10002163 !sh->reconstruct_state)
Dan Williamsf38e1212007-01-02 13:52:30 -07002164 for (i = disks; i--; )
Dan Williams1fe797e2008-06-28 09:16:30 +10002165 if (fetch_block5(sh, s, i, disks))
Dan Williamsf38e1212007-01-02 13:52:30 -07002166 break;
Dan Williamsa4456852007-07-09 11:56:43 -07002167 set_bit(STRIPE_HANDLE, &sh->state);
2168}
2169
Dan Williams1fe797e2008-06-28 09:16:30 +10002170static void handle_stripe_fill6(struct stripe_head *sh,
Dan Williamsa4456852007-07-09 11:56:43 -07002171 struct stripe_head_state *s, struct r6_state *r6s,
2172 int disks)
2173{
2174 int i;
2175 for (i = disks; i--; ) {
2176 struct r5dev *dev = &sh->dev[i];
2177 if (!test_bit(R5_LOCKED, &dev->flags) &&
2178 !test_bit(R5_UPTODATE, &dev->flags) &&
2179 (dev->toread || (dev->towrite &&
2180 !test_bit(R5_OVERWRITE, &dev->flags)) ||
2181 s->syncing || s->expanding ||
2182 (s->failed >= 1 &&
2183 (sh->dev[r6s->failed_num[0]].toread ||
2184 s->to_write)) ||
2185 (s->failed >= 2 &&
2186 (sh->dev[r6s->failed_num[1]].toread ||
2187 s->to_write)))) {
2188 /* we would like to get this block, possibly
2189 * by computing it, but we might not be able to
2190 */
Dan Williamsc3378692008-06-05 22:45:54 -07002191 if ((s->uptodate == disks - 1) &&
2192 (s->failed && (i == r6s->failed_num[0] ||
2193 i == r6s->failed_num[1]))) {
Dan Williams45b42332007-07-09 11:56:43 -07002194 pr_debug("Computing stripe %llu block %d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002195 (unsigned long long)sh->sector, i);
2196 compute_block_1(sh, i, 0);
2197 s->uptodate++;
2198 } else if ( s->uptodate == disks-2 && s->failed >= 2 ) {
2199 /* Computing 2-failure is *very* expensive; only
2200 * do it if failed >= 2
2201 */
2202 int other;
2203 for (other = disks; other--; ) {
2204 if (other == i)
2205 continue;
2206 if (!test_bit(R5_UPTODATE,
2207 &sh->dev[other].flags))
2208 break;
2209 }
2210 BUG_ON(other < 0);
Dan Williams45b42332007-07-09 11:56:43 -07002211 pr_debug("Computing stripe %llu blocks %d,%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002212 (unsigned long long)sh->sector,
2213 i, other);
2214 compute_block_2(sh, i, other);
2215 s->uptodate += 2;
2216 } else if (test_bit(R5_Insync, &dev->flags)) {
2217 set_bit(R5_LOCKED, &dev->flags);
2218 set_bit(R5_Wantread, &dev->flags);
2219 s->locked++;
Dan Williams45b42332007-07-09 11:56:43 -07002220 pr_debug("Reading block %d (sync=%d)\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002221 i, s->syncing);
2222 }
2223 }
2224 }
2225 set_bit(STRIPE_HANDLE, &sh->state);
2226}
2227
2228
Dan Williams1fe797e2008-06-28 09:16:30 +10002229/* handle_stripe_clean_event
Dan Williamsa4456852007-07-09 11:56:43 -07002230 * any written block on an uptodate or failed drive can be returned.
2231 * Note that if we 'wrote' to a failed drive, it will be UPTODATE, but
2232 * never LOCKED, so we don't need to test 'failed' directly.
2233 */
Dan Williams1fe797e2008-06-28 09:16:30 +10002234static void handle_stripe_clean_event(raid5_conf_t *conf,
Dan Williamsa4456852007-07-09 11:56:43 -07002235 struct stripe_head *sh, int disks, struct bio **return_bi)
2236{
2237 int i;
2238 struct r5dev *dev;
2239
2240 for (i = disks; i--; )
2241 if (sh->dev[i].written) {
2242 dev = &sh->dev[i];
2243 if (!test_bit(R5_LOCKED, &dev->flags) &&
2244 test_bit(R5_UPTODATE, &dev->flags)) {
2245 /* We can return any write requests */
2246 struct bio *wbi, *wbi2;
2247 int bitmap_end = 0;
Dan Williams45b42332007-07-09 11:56:43 -07002248 pr_debug("Return write for disc %d\n", i);
Dan Williamsa4456852007-07-09 11:56:43 -07002249 spin_lock_irq(&conf->device_lock);
2250 wbi = dev->written;
2251 dev->written = NULL;
2252 while (wbi && wbi->bi_sector <
2253 dev->sector + STRIPE_SECTORS) {
2254 wbi2 = r5_next_bio(wbi, dev->sector);
Jens Axboe960e7392008-08-15 10:41:18 +02002255 if (!raid5_dec_bi_phys_segments(wbi)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002256 md_write_end(conf->mddev);
2257 wbi->bi_next = *return_bi;
2258 *return_bi = wbi;
2259 }
2260 wbi = wbi2;
2261 }
2262 if (dev->towrite == NULL)
2263 bitmap_end = 1;
2264 spin_unlock_irq(&conf->device_lock);
2265 if (bitmap_end)
2266 bitmap_endwrite(conf->mddev->bitmap,
2267 sh->sector,
2268 STRIPE_SECTORS,
2269 !test_bit(STRIPE_DEGRADED, &sh->state),
2270 0);
2271 }
2272 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002273
2274 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
2275 if (atomic_dec_and_test(&conf->pending_full_writes))
2276 md_wakeup_thread(conf->mddev->thread);
Dan Williamsa4456852007-07-09 11:56:43 -07002277}
2278
Dan Williams1fe797e2008-06-28 09:16:30 +10002279static void handle_stripe_dirtying5(raid5_conf_t *conf,
Dan Williamsa4456852007-07-09 11:56:43 -07002280 struct stripe_head *sh, struct stripe_head_state *s, int disks)
2281{
2282 int rmw = 0, rcw = 0, i;
2283 for (i = disks; i--; ) {
2284 /* would I have to read this buffer for read_modify_write */
2285 struct r5dev *dev = &sh->dev[i];
2286 if ((dev->towrite || i == sh->pd_idx) &&
2287 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002288 !(test_bit(R5_UPTODATE, &dev->flags) ||
2289 test_bit(R5_Wantcompute, &dev->flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07002290 if (test_bit(R5_Insync, &dev->flags))
2291 rmw++;
2292 else
2293 rmw += 2*disks; /* cannot read it */
2294 }
2295 /* Would I have to read this buffer for reconstruct_write */
2296 if (!test_bit(R5_OVERWRITE, &dev->flags) && i != sh->pd_idx &&
2297 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002298 !(test_bit(R5_UPTODATE, &dev->flags) ||
2299 test_bit(R5_Wantcompute, &dev->flags))) {
2300 if (test_bit(R5_Insync, &dev->flags)) rcw++;
Dan Williamsa4456852007-07-09 11:56:43 -07002301 else
2302 rcw += 2*disks;
2303 }
2304 }
Dan Williams45b42332007-07-09 11:56:43 -07002305 pr_debug("for sector %llu, rmw=%d rcw=%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002306 (unsigned long long)sh->sector, rmw, rcw);
2307 set_bit(STRIPE_HANDLE, &sh->state);
2308 if (rmw < rcw && rmw > 0)
2309 /* prefer read-modify-write, but need to get some data */
2310 for (i = disks; i--; ) {
2311 struct r5dev *dev = &sh->dev[i];
2312 if ((dev->towrite || i == sh->pd_idx) &&
2313 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002314 !(test_bit(R5_UPTODATE, &dev->flags) ||
2315 test_bit(R5_Wantcompute, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07002316 test_bit(R5_Insync, &dev->flags)) {
2317 if (
2318 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07002319 pr_debug("Read_old block "
Dan Williamsa4456852007-07-09 11:56:43 -07002320 "%d for r-m-w\n", i);
2321 set_bit(R5_LOCKED, &dev->flags);
2322 set_bit(R5_Wantread, &dev->flags);
2323 s->locked++;
2324 } else {
2325 set_bit(STRIPE_DELAYED, &sh->state);
2326 set_bit(STRIPE_HANDLE, &sh->state);
2327 }
2328 }
2329 }
2330 if (rcw <= rmw && rcw > 0)
2331 /* want reconstruct write, but need to get some data */
2332 for (i = disks; i--; ) {
2333 struct r5dev *dev = &sh->dev[i];
2334 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
2335 i != sh->pd_idx &&
2336 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002337 !(test_bit(R5_UPTODATE, &dev->flags) ||
2338 test_bit(R5_Wantcompute, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07002339 test_bit(R5_Insync, &dev->flags)) {
2340 if (
2341 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07002342 pr_debug("Read_old block "
Dan Williamsa4456852007-07-09 11:56:43 -07002343 "%d for Reconstruct\n", i);
2344 set_bit(R5_LOCKED, &dev->flags);
2345 set_bit(R5_Wantread, &dev->flags);
2346 s->locked++;
2347 } else {
2348 set_bit(STRIPE_DELAYED, &sh->state);
2349 set_bit(STRIPE_HANDLE, &sh->state);
2350 }
2351 }
2352 }
2353 /* now if nothing is locked, and if we have enough data,
2354 * we can start a write request
2355 */
Dan Williamsf38e1212007-01-02 13:52:30 -07002356 /* since handle_stripe can be called at any time we need to handle the
2357 * case where a compute block operation has been submitted and then a
2358 * subsequent call wants to start a write request. raid5_run_ops only
2359 * handles the case where compute block and postxor are requested
2360 * simultaneously. If this is not the case then new writes need to be
2361 * held off until the compute completes.
2362 */
Dan Williams976ea8d2008-06-28 08:32:03 +10002363 if ((s->req_compute || !test_bit(STRIPE_COMPUTE_RUN, &sh->state)) &&
2364 (s->locked == 0 && (rcw == 0 || rmw == 0) &&
2365 !test_bit(STRIPE_BIT_DELAY, &sh->state)))
Dan Williams1fe797e2008-06-28 09:16:30 +10002366 schedule_reconstruction5(sh, s, rcw == 0, 0);
Dan Williamsa4456852007-07-09 11:56:43 -07002367}
2368
Dan Williams1fe797e2008-06-28 09:16:30 +10002369static void handle_stripe_dirtying6(raid5_conf_t *conf,
Dan Williamsa4456852007-07-09 11:56:43 -07002370 struct stripe_head *sh, struct stripe_head_state *s,
2371 struct r6_state *r6s, int disks)
2372{
2373 int rcw = 0, must_compute = 0, pd_idx = sh->pd_idx, i;
NeilBrown34e04e82009-03-31 15:10:16 +11002374 int qd_idx = sh->qd_idx;
Dan Williamsa4456852007-07-09 11:56:43 -07002375 for (i = disks; i--; ) {
2376 struct r5dev *dev = &sh->dev[i];
2377 /* Would I have to read this buffer for reconstruct_write */
2378 if (!test_bit(R5_OVERWRITE, &dev->flags)
2379 && i != pd_idx && i != qd_idx
2380 && (!test_bit(R5_LOCKED, &dev->flags)
2381 ) &&
2382 !test_bit(R5_UPTODATE, &dev->flags)) {
2383 if (test_bit(R5_Insync, &dev->flags)) rcw++;
2384 else {
Dan Williams45b42332007-07-09 11:56:43 -07002385 pr_debug("raid6: must_compute: "
Dan Williamsa4456852007-07-09 11:56:43 -07002386 "disk %d flags=%#lx\n", i, dev->flags);
2387 must_compute++;
2388 }
2389 }
2390 }
Dan Williams45b42332007-07-09 11:56:43 -07002391 pr_debug("for sector %llu, rcw=%d, must_compute=%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002392 (unsigned long long)sh->sector, rcw, must_compute);
2393 set_bit(STRIPE_HANDLE, &sh->state);
2394
2395 if (rcw > 0)
2396 /* want reconstruct write, but need to get some data */
2397 for (i = disks; i--; ) {
2398 struct r5dev *dev = &sh->dev[i];
2399 if (!test_bit(R5_OVERWRITE, &dev->flags)
2400 && !(s->failed == 0 && (i == pd_idx || i == qd_idx))
2401 && !test_bit(R5_LOCKED, &dev->flags) &&
2402 !test_bit(R5_UPTODATE, &dev->flags) &&
2403 test_bit(R5_Insync, &dev->flags)) {
2404 if (
2405 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07002406 pr_debug("Read_old stripe %llu "
Dan Williamsa4456852007-07-09 11:56:43 -07002407 "block %d for Reconstruct\n",
2408 (unsigned long long)sh->sector, i);
2409 set_bit(R5_LOCKED, &dev->flags);
2410 set_bit(R5_Wantread, &dev->flags);
2411 s->locked++;
2412 } else {
Dan Williams45b42332007-07-09 11:56:43 -07002413 pr_debug("Request delayed stripe %llu "
Dan Williamsa4456852007-07-09 11:56:43 -07002414 "block %d for Reconstruct\n",
2415 (unsigned long long)sh->sector, i);
2416 set_bit(STRIPE_DELAYED, &sh->state);
2417 set_bit(STRIPE_HANDLE, &sh->state);
2418 }
2419 }
2420 }
2421 /* now if nothing is locked, and if we have enough data, we can start a
2422 * write request
2423 */
2424 if (s->locked == 0 && rcw == 0 &&
2425 !test_bit(STRIPE_BIT_DELAY, &sh->state)) {
2426 if (must_compute > 0) {
2427 /* We have failed blocks and need to compute them */
2428 switch (s->failed) {
2429 case 0:
2430 BUG();
2431 case 1:
2432 compute_block_1(sh, r6s->failed_num[0], 0);
2433 break;
2434 case 2:
2435 compute_block_2(sh, r6s->failed_num[0],
2436 r6s->failed_num[1]);
2437 break;
2438 default: /* This request should have been failed? */
2439 BUG();
2440 }
2441 }
2442
Dan Williams45b42332007-07-09 11:56:43 -07002443 pr_debug("Computing parity for stripe %llu\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002444 (unsigned long long)sh->sector);
2445 compute_parity6(sh, RECONSTRUCT_WRITE);
2446 /* now every locked buffer is ready to be written */
2447 for (i = disks; i--; )
2448 if (test_bit(R5_LOCKED, &sh->dev[i].flags)) {
Dan Williams45b42332007-07-09 11:56:43 -07002449 pr_debug("Writing stripe %llu block %d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002450 (unsigned long long)sh->sector, i);
2451 s->locked++;
2452 set_bit(R5_Wantwrite, &sh->dev[i].flags);
2453 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002454 if (s->locked == disks)
2455 if (!test_and_set_bit(STRIPE_FULL_WRITE, &sh->state))
2456 atomic_inc(&conf->pending_full_writes);
Dan Williamsa4456852007-07-09 11:56:43 -07002457 /* after a RECONSTRUCT_WRITE, the stripe MUST be in-sync */
2458 set_bit(STRIPE_INSYNC, &sh->state);
2459
2460 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
2461 atomic_dec(&conf->preread_active_stripes);
2462 if (atomic_read(&conf->preread_active_stripes) <
2463 IO_THRESHOLD)
2464 md_wakeup_thread(conf->mddev->thread);
2465 }
2466 }
2467}
2468
2469static void handle_parity_checks5(raid5_conf_t *conf, struct stripe_head *sh,
2470 struct stripe_head_state *s, int disks)
2471{
Dan Williamsecc65c92008-06-28 08:31:57 +10002472 struct r5dev *dev = NULL;
Dan Williamse89f8962007-01-02 13:52:31 -07002473
Dan Williamsbd2ab672008-04-10 21:29:27 -07002474 set_bit(STRIPE_HANDLE, &sh->state);
2475
Dan Williamsecc65c92008-06-28 08:31:57 +10002476 switch (sh->check_state) {
2477 case check_state_idle:
2478 /* start a new check operation if there are no failures */
Dan Williamsbd2ab672008-04-10 21:29:27 -07002479 if (s->failed == 0) {
Dan Williamsbd2ab672008-04-10 21:29:27 -07002480 BUG_ON(s->uptodate != disks);
Dan Williamsecc65c92008-06-28 08:31:57 +10002481 sh->check_state = check_state_run;
2482 set_bit(STRIPE_OP_CHECK, &s->ops_request);
Dan Williamsbd2ab672008-04-10 21:29:27 -07002483 clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
Dan Williamsbd2ab672008-04-10 21:29:27 -07002484 s->uptodate--;
Dan Williamsecc65c92008-06-28 08:31:57 +10002485 break;
Dan Williamsbd2ab672008-04-10 21:29:27 -07002486 }
Dan Williamsa4456852007-07-09 11:56:43 -07002487 dev = &sh->dev[s->failed_num];
Dan Williamsecc65c92008-06-28 08:31:57 +10002488 /* fall through */
2489 case check_state_compute_result:
2490 sh->check_state = check_state_idle;
2491 if (!dev)
2492 dev = &sh->dev[sh->pd_idx];
2493
2494 /* check that a write has not made the stripe insync */
2495 if (test_bit(STRIPE_INSYNC, &sh->state))
2496 break;
2497
2498 /* either failed parity check, or recovery is happening */
Dan Williamsa4456852007-07-09 11:56:43 -07002499 BUG_ON(!test_bit(R5_UPTODATE, &dev->flags));
2500 BUG_ON(s->uptodate != disks);
2501
2502 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsecc65c92008-06-28 08:31:57 +10002503 s->locked++;
Dan Williamsa4456852007-07-09 11:56:43 -07002504 set_bit(R5_Wantwrite, &dev->flags);
Dan Williams830ea012007-01-02 13:52:31 -07002505
Dan Williamsa4456852007-07-09 11:56:43 -07002506 clear_bit(STRIPE_DEGRADED, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07002507 set_bit(STRIPE_INSYNC, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10002508 break;
2509 case check_state_run:
2510 break; /* we will be called again upon completion */
2511 case check_state_check_result:
2512 sh->check_state = check_state_idle;
2513
2514 /* if a failure occurred during the check operation, leave
2515 * STRIPE_INSYNC not set and let the stripe be handled again
2516 */
2517 if (s->failed)
2518 break;
2519
2520 /* handle a successful check operation, if parity is correct
2521 * we are done. Otherwise update the mismatch count and repair
2522 * parity if !MD_RECOVERY_CHECK
2523 */
2524 if (sh->ops.zero_sum_result == 0)
2525 /* parity is correct (on disc,
2526 * not in buffer any more)
2527 */
2528 set_bit(STRIPE_INSYNC, &sh->state);
2529 else {
2530 conf->mddev->resync_mismatches += STRIPE_SECTORS;
2531 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
2532 /* don't try to repair!! */
2533 set_bit(STRIPE_INSYNC, &sh->state);
2534 else {
2535 sh->check_state = check_state_compute_run;
Dan Williams976ea8d2008-06-28 08:32:03 +10002536 set_bit(STRIPE_COMPUTE_RUN, &sh->state);
Dan Williamsecc65c92008-06-28 08:31:57 +10002537 set_bit(STRIPE_OP_COMPUTE_BLK, &s->ops_request);
2538 set_bit(R5_Wantcompute,
2539 &sh->dev[sh->pd_idx].flags);
2540 sh->ops.target = sh->pd_idx;
2541 s->uptodate++;
2542 }
2543 }
2544 break;
2545 case check_state_compute_run:
2546 break;
2547 default:
2548 printk(KERN_ERR "%s: unknown check_state: %d sector: %llu\n",
2549 __func__, sh->check_state,
2550 (unsigned long long) sh->sector);
2551 BUG();
Dan Williamsa4456852007-07-09 11:56:43 -07002552 }
2553}
2554
2555
2556static void handle_parity_checks6(raid5_conf_t *conf, struct stripe_head *sh,
2557 struct stripe_head_state *s,
2558 struct r6_state *r6s, struct page *tmp_page,
2559 int disks)
2560{
2561 int update_p = 0, update_q = 0;
2562 struct r5dev *dev;
2563 int pd_idx = sh->pd_idx;
NeilBrown34e04e82009-03-31 15:10:16 +11002564 int qd_idx = sh->qd_idx;
Dan Williamsa4456852007-07-09 11:56:43 -07002565
2566 set_bit(STRIPE_HANDLE, &sh->state);
2567
2568 BUG_ON(s->failed > 2);
2569 BUG_ON(s->uptodate < disks);
2570 /* Want to check and possibly repair P and Q.
2571 * However there could be one 'failed' device, in which
2572 * case we can only check one of them, possibly using the
2573 * other to generate missing data
2574 */
2575
2576 /* If !tmp_page, we cannot do the calculations,
2577 * but as we have set STRIPE_HANDLE, we will soon be called
2578 * by stripe_handle with a tmp_page - just wait until then.
2579 */
2580 if (tmp_page) {
2581 if (s->failed == r6s->q_failed) {
2582 /* The only possible failed device holds 'Q', so it
2583 * makes sense to check P (If anything else were failed,
2584 * we would have used P to recreate it).
2585 */
2586 compute_block_1(sh, pd_idx, 1);
2587 if (!page_is_zero(sh->dev[pd_idx].page)) {
2588 compute_block_1(sh, pd_idx, 0);
2589 update_p = 1;
2590 }
2591 }
2592 if (!r6s->q_failed && s->failed < 2) {
2593 /* q is not failed, and we didn't use it to generate
2594 * anything, so it makes sense to check it
2595 */
2596 memcpy(page_address(tmp_page),
2597 page_address(sh->dev[qd_idx].page),
2598 STRIPE_SIZE);
2599 compute_parity6(sh, UPDATE_PARITY);
2600 if (memcmp(page_address(tmp_page),
2601 page_address(sh->dev[qd_idx].page),
2602 STRIPE_SIZE) != 0) {
2603 clear_bit(STRIPE_INSYNC, &sh->state);
2604 update_q = 1;
2605 }
2606 }
2607 if (update_p || update_q) {
2608 conf->mddev->resync_mismatches += STRIPE_SECTORS;
2609 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
2610 /* don't try to repair!! */
2611 update_p = update_q = 0;
2612 }
2613
2614 /* now write out any block on a failed drive,
2615 * or P or Q if they need it
2616 */
2617
2618 if (s->failed == 2) {
2619 dev = &sh->dev[r6s->failed_num[1]];
2620 s->locked++;
2621 set_bit(R5_LOCKED, &dev->flags);
2622 set_bit(R5_Wantwrite, &dev->flags);
2623 }
2624 if (s->failed >= 1) {
2625 dev = &sh->dev[r6s->failed_num[0]];
2626 s->locked++;
2627 set_bit(R5_LOCKED, &dev->flags);
2628 set_bit(R5_Wantwrite, &dev->flags);
2629 }
2630
2631 if (update_p) {
2632 dev = &sh->dev[pd_idx];
2633 s->locked++;
2634 set_bit(R5_LOCKED, &dev->flags);
2635 set_bit(R5_Wantwrite, &dev->flags);
2636 }
2637 if (update_q) {
2638 dev = &sh->dev[qd_idx];
2639 s->locked++;
2640 set_bit(R5_LOCKED, &dev->flags);
2641 set_bit(R5_Wantwrite, &dev->flags);
2642 }
2643 clear_bit(STRIPE_DEGRADED, &sh->state);
2644
2645 set_bit(STRIPE_INSYNC, &sh->state);
2646 }
2647}
2648
2649static void handle_stripe_expansion(raid5_conf_t *conf, struct stripe_head *sh,
2650 struct r6_state *r6s)
2651{
2652 int i;
2653
2654 /* We have read all the blocks in this stripe and now we need to
2655 * copy some of them into a target stripe for expand.
2656 */
Dan Williamsf0a50d32007-01-02 13:52:31 -07002657 struct dma_async_tx_descriptor *tx = NULL;
Dan Williamsa4456852007-07-09 11:56:43 -07002658 clear_bit(STRIPE_EXPAND_SOURCE, &sh->state);
2659 for (i = 0; i < sh->disks; i++)
NeilBrown34e04e82009-03-31 15:10:16 +11002660 if (i != sh->pd_idx && i != sh->qd_idx) {
NeilBrown911d4ee2009-03-31 14:39:38 +11002661 int dd_idx, j;
Dan Williamsa4456852007-07-09 11:56:43 -07002662 struct stripe_head *sh2;
2663
2664 sector_t bn = compute_blocknr(sh, i);
NeilBrown911d4ee2009-03-31 14:39:38 +11002665 sector_t s = raid5_compute_sector(conf, bn, 0,
2666 &dd_idx, NULL);
NeilBrownb5663ba2009-03-31 14:39:38 +11002667 sh2 = get_active_stripe(conf, s, 0, 1);
Dan Williamsa4456852007-07-09 11:56:43 -07002668 if (sh2 == NULL)
2669 /* so far only the early blocks of this stripe
2670 * have been requested. When later blocks
2671 * get requested, we will try again
2672 */
2673 continue;
2674 if (!test_bit(STRIPE_EXPANDING, &sh2->state) ||
2675 test_bit(R5_Expanded, &sh2->dev[dd_idx].flags)) {
2676 /* must have already done this block */
2677 release_stripe(sh2);
2678 continue;
2679 }
Dan Williamsf0a50d32007-01-02 13:52:31 -07002680
2681 /* place all the copies on one channel */
2682 tx = async_memcpy(sh2->dev[dd_idx].page,
2683 sh->dev[i].page, 0, 0, STRIPE_SIZE,
2684 ASYNC_TX_DEP_ACK, tx, NULL, NULL);
2685
Dan Williamsa4456852007-07-09 11:56:43 -07002686 set_bit(R5_Expanded, &sh2->dev[dd_idx].flags);
2687 set_bit(R5_UPTODATE, &sh2->dev[dd_idx].flags);
2688 for (j = 0; j < conf->raid_disks; j++)
2689 if (j != sh2->pd_idx &&
NeilBrownd0dabf72009-03-31 14:39:38 +11002690 (!r6s || j != sh2->qd_idx) &&
Dan Williamsa4456852007-07-09 11:56:43 -07002691 !test_bit(R5_Expanded, &sh2->dev[j].flags))
2692 break;
2693 if (j == conf->raid_disks) {
2694 set_bit(STRIPE_EXPAND_READY, &sh2->state);
2695 set_bit(STRIPE_HANDLE, &sh2->state);
2696 }
2697 release_stripe(sh2);
Dan Williamsf0a50d32007-01-02 13:52:31 -07002698
Dan Williamsa4456852007-07-09 11:56:43 -07002699 }
NeilBrowna2e08552007-09-11 15:23:36 -07002700 /* done submitting copies, wait for them to complete */
2701 if (tx) {
2702 async_tx_ack(tx);
2703 dma_wait_for_async_tx(tx);
2704 }
Dan Williamsa4456852007-07-09 11:56:43 -07002705}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706
Dan Williams6bfe0b42008-04-30 00:52:32 -07002707
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708/*
2709 * handle_stripe - do things to a stripe.
2710 *
2711 * We lock the stripe and then examine the state of various bits
2712 * to see what needs to be done.
2713 * Possible results:
2714 * return some read request which now have data
2715 * return some write requests which are safely on disc
2716 * schedule a read on some buffers
2717 * schedule a write of some buffers
2718 * return confirmation of parity correctness
2719 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 * buffers are taken off read_list or write_list, and bh_cache buffers
2721 * get BH_Lock set before the stripe lock is released.
2722 *
2723 */
Dan Williamsa4456852007-07-09 11:56:43 -07002724
Dan Williamsdf10cfb2008-07-28 23:10:39 -07002725static bool handle_stripe5(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726{
2727 raid5_conf_t *conf = sh->raid_conf;
Dan Williamsa4456852007-07-09 11:56:43 -07002728 int disks = sh->disks, i;
2729 struct bio *return_bi = NULL;
2730 struct stripe_head_state s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 struct r5dev *dev;
Dan Williams6bfe0b42008-04-30 00:52:32 -07002732 mdk_rdev_t *blocked_rdev = NULL;
Dan Williamse0a115e2008-06-05 22:45:52 -07002733 int prexor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734
Dan Williamsa4456852007-07-09 11:56:43 -07002735 memset(&s, 0, sizeof(s));
Dan Williams600aa102008-06-28 08:32:05 +10002736 pr_debug("handling stripe %llu, state=%#lx cnt=%d, pd_idx=%d check:%d "
2737 "reconstruct:%d\n", (unsigned long long)sh->sector, sh->state,
2738 atomic_read(&sh->count), sh->pd_idx, sh->check_state,
2739 sh->reconstruct_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740
2741 spin_lock(&sh->lock);
2742 clear_bit(STRIPE_HANDLE, &sh->state);
2743 clear_bit(STRIPE_DELAYED, &sh->state);
2744
Dan Williamsa4456852007-07-09 11:56:43 -07002745 s.syncing = test_bit(STRIPE_SYNCING, &sh->state);
2746 s.expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state);
2747 s.expanded = test_bit(STRIPE_EXPAND_READY, &sh->state);
Dan Williams83de75c2008-06-28 08:31:58 +10002748
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 /* Now to look around and see what can be done */
NeilBrown9910f162006-01-06 00:20:24 -08002750 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 for (i=disks; i--; ) {
2752 mdk_rdev_t *rdev;
Dan Williamsa4456852007-07-09 11:56:43 -07002753 struct r5dev *dev = &sh->dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 clear_bit(R5_Insync, &dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755
Dan Williamsb5e98d62007-01-02 13:52:31 -07002756 pr_debug("check %d: state 0x%lx toread %p read %p write %p "
2757 "written %p\n", i, dev->flags, dev->toread, dev->read,
2758 dev->towrite, dev->written);
2759
2760 /* maybe we can request a biofill operation
2761 *
2762 * new wantfill requests are only permitted while
Dan Williams83de75c2008-06-28 08:31:58 +10002763 * ops_complete_biofill is guaranteed to be inactive
Dan Williamsb5e98d62007-01-02 13:52:31 -07002764 */
2765 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread &&
Dan Williams83de75c2008-06-28 08:31:58 +10002766 !test_bit(STRIPE_BIOFILL_RUN, &sh->state))
Dan Williamsb5e98d62007-01-02 13:52:31 -07002767 set_bit(R5_Wantfill, &dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768
2769 /* now count some things */
Dan Williamsa4456852007-07-09 11:56:43 -07002770 if (test_bit(R5_LOCKED, &dev->flags)) s.locked++;
2771 if (test_bit(R5_UPTODATE, &dev->flags)) s.uptodate++;
Dan Williamsf38e1212007-01-02 13:52:30 -07002772 if (test_bit(R5_Wantcompute, &dev->flags)) s.compute++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773
Dan Williamsb5e98d62007-01-02 13:52:31 -07002774 if (test_bit(R5_Wantfill, &dev->flags))
2775 s.to_fill++;
2776 else if (dev->toread)
Dan Williamsa4456852007-07-09 11:56:43 -07002777 s.to_read++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 if (dev->towrite) {
Dan Williamsa4456852007-07-09 11:56:43 -07002779 s.to_write++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 if (!test_bit(R5_OVERWRITE, &dev->flags))
Dan Williamsa4456852007-07-09 11:56:43 -07002781 s.non_overwrite++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 }
Dan Williamsa4456852007-07-09 11:56:43 -07002783 if (dev->written)
2784 s.written++;
NeilBrown9910f162006-01-06 00:20:24 -08002785 rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownac4090d2008-08-05 15:54:13 +10002786 if (blocked_rdev == NULL &&
2787 rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
Dan Williams6bfe0b42008-04-30 00:52:32 -07002788 blocked_rdev = rdev;
2789 atomic_inc(&rdev->nr_pending);
Dan Williams6bfe0b42008-04-30 00:52:32 -07002790 }
NeilBrownb2d444d2005-11-08 21:39:31 -08002791 if (!rdev || !test_bit(In_sync, &rdev->flags)) {
NeilBrown14f8d262006-01-06 00:20:14 -08002792 /* The ReadError flag will just be confusing now */
NeilBrown4e5314b2005-11-08 21:39:22 -08002793 clear_bit(R5_ReadError, &dev->flags);
2794 clear_bit(R5_ReWrite, &dev->flags);
2795 }
NeilBrownb2d444d2005-11-08 21:39:31 -08002796 if (!rdev || !test_bit(In_sync, &rdev->flags)
NeilBrown4e5314b2005-11-08 21:39:22 -08002797 || test_bit(R5_ReadError, &dev->flags)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002798 s.failed++;
2799 s.failed_num = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 } else
2801 set_bit(R5_Insync, &dev->flags);
2802 }
NeilBrown9910f162006-01-06 00:20:24 -08002803 rcu_read_unlock();
Dan Williamsb5e98d62007-01-02 13:52:31 -07002804
Dan Williams6bfe0b42008-04-30 00:52:32 -07002805 if (unlikely(blocked_rdev)) {
NeilBrownac4090d2008-08-05 15:54:13 +10002806 if (s.syncing || s.expanding || s.expanded ||
2807 s.to_write || s.written) {
2808 set_bit(STRIPE_HANDLE, &sh->state);
2809 goto unlock;
2810 }
2811 /* There is nothing for the blocked_rdev to block */
2812 rdev_dec_pending(blocked_rdev, conf->mddev);
2813 blocked_rdev = NULL;
Dan Williams6bfe0b42008-04-30 00:52:32 -07002814 }
2815
Dan Williams83de75c2008-06-28 08:31:58 +10002816 if (s.to_fill && !test_bit(STRIPE_BIOFILL_RUN, &sh->state)) {
2817 set_bit(STRIPE_OP_BIOFILL, &s.ops_request);
2818 set_bit(STRIPE_BIOFILL_RUN, &sh->state);
2819 }
Dan Williamsb5e98d62007-01-02 13:52:31 -07002820
Dan Williams45b42332007-07-09 11:56:43 -07002821 pr_debug("locked=%d uptodate=%d to_read=%d"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 " to_write=%d failed=%d failed_num=%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002823 s.locked, s.uptodate, s.to_read, s.to_write,
2824 s.failed, s.failed_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 /* check if the array has lost two devices and, if so, some requests might
2826 * need to be failed
2827 */
Dan Williamsa4456852007-07-09 11:56:43 -07002828 if (s.failed > 1 && s.to_read+s.to_write+s.written)
Dan Williams1fe797e2008-06-28 09:16:30 +10002829 handle_failed_stripe(conf, sh, &s, disks, &return_bi);
Dan Williamsa4456852007-07-09 11:56:43 -07002830 if (s.failed > 1 && s.syncing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 md_done_sync(conf->mddev, STRIPE_SECTORS,0);
2832 clear_bit(STRIPE_SYNCING, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07002833 s.syncing = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 }
2835
2836 /* might be able to return some write requests if the parity block
2837 * is safe, or on a failed drive
2838 */
2839 dev = &sh->dev[sh->pd_idx];
Dan Williamsa4456852007-07-09 11:56:43 -07002840 if ( s.written &&
2841 ((test_bit(R5_Insync, &dev->flags) &&
2842 !test_bit(R5_LOCKED, &dev->flags) &&
2843 test_bit(R5_UPTODATE, &dev->flags)) ||
2844 (s.failed == 1 && s.failed_num == sh->pd_idx)))
Dan Williams1fe797e2008-06-28 09:16:30 +10002845 handle_stripe_clean_event(conf, sh, disks, &return_bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846
2847 /* Now we might consider reading some blocks, either to check/generate
2848 * parity, or to satisfy requests
2849 * or to load a block that is being partially written.
2850 */
Dan Williamsa4456852007-07-09 11:56:43 -07002851 if (s.to_read || s.non_overwrite ||
Dan Williams976ea8d2008-06-28 08:32:03 +10002852 (s.syncing && (s.uptodate + s.compute < disks)) || s.expanding)
Dan Williams1fe797e2008-06-28 09:16:30 +10002853 handle_stripe_fill5(sh, &s, disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854
Dan Williamse33129d2007-01-02 13:52:30 -07002855 /* Now we check to see if any write operations have recently
2856 * completed
2857 */
Dan Williamse0a115e2008-06-05 22:45:52 -07002858 prexor = 0;
Dan Williamsd8ee0722008-06-28 08:32:06 +10002859 if (sh->reconstruct_state == reconstruct_state_prexor_drain_result)
Dan Williamse0a115e2008-06-05 22:45:52 -07002860 prexor = 1;
Dan Williamsd8ee0722008-06-28 08:32:06 +10002861 if (sh->reconstruct_state == reconstruct_state_drain_result ||
2862 sh->reconstruct_state == reconstruct_state_prexor_drain_result) {
Dan Williams600aa102008-06-28 08:32:05 +10002863 sh->reconstruct_state = reconstruct_state_idle;
Dan Williamse33129d2007-01-02 13:52:30 -07002864
2865 /* All the 'written' buffers and the parity block are ready to
2866 * be written back to disk
2867 */
2868 BUG_ON(!test_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags));
2869 for (i = disks; i--; ) {
2870 dev = &sh->dev[i];
2871 if (test_bit(R5_LOCKED, &dev->flags) &&
2872 (i == sh->pd_idx || dev->written)) {
2873 pr_debug("Writing block %d\n", i);
2874 set_bit(R5_Wantwrite, &dev->flags);
Dan Williamse0a115e2008-06-05 22:45:52 -07002875 if (prexor)
2876 continue;
Dan Williamse33129d2007-01-02 13:52:30 -07002877 if (!test_bit(R5_Insync, &dev->flags) ||
2878 (i == sh->pd_idx && s.failed == 0))
2879 set_bit(STRIPE_INSYNC, &sh->state);
2880 }
2881 }
2882 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
2883 atomic_dec(&conf->preread_active_stripes);
2884 if (atomic_read(&conf->preread_active_stripes) <
2885 IO_THRESHOLD)
2886 md_wakeup_thread(conf->mddev->thread);
2887 }
2888 }
2889
2890 /* Now to consider new write requests and what else, if anything
2891 * should be read. We do not handle new writes when:
2892 * 1/ A 'write' operation (copy+xor) is already in flight.
2893 * 2/ A 'check' operation is in flight, as it may clobber the parity
2894 * block.
2895 */
Dan Williams600aa102008-06-28 08:32:05 +10002896 if (s.to_write && !sh->reconstruct_state && !sh->check_state)
Dan Williams1fe797e2008-06-28 09:16:30 +10002897 handle_stripe_dirtying5(conf, sh, &s, disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898
2899 /* maybe we need to check and possibly fix the parity for this stripe
Dan Williamse89f8962007-01-02 13:52:31 -07002900 * Any reads will already have been scheduled, so we just see if enough
2901 * data is available. The parity check is held off while parity
2902 * dependent operations are in flight.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 */
Dan Williamsecc65c92008-06-28 08:31:57 +10002904 if (sh->check_state ||
2905 (s.syncing && s.locked == 0 &&
Dan Williams976ea8d2008-06-28 08:32:03 +10002906 !test_bit(STRIPE_COMPUTE_RUN, &sh->state) &&
Dan Williamsecc65c92008-06-28 08:31:57 +10002907 !test_bit(STRIPE_INSYNC, &sh->state)))
Dan Williamsa4456852007-07-09 11:56:43 -07002908 handle_parity_checks5(conf, sh, &s, disks);
Dan Williamse89f8962007-01-02 13:52:31 -07002909
Dan Williamsa4456852007-07-09 11:56:43 -07002910 if (s.syncing && s.locked == 0 && test_bit(STRIPE_INSYNC, &sh->state)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 md_done_sync(conf->mddev, STRIPE_SECTORS,1);
2912 clear_bit(STRIPE_SYNCING, &sh->state);
2913 }
NeilBrown4e5314b2005-11-08 21:39:22 -08002914
2915 /* If the failed drive is just a ReadError, then we might need to progress
2916 * the repair/check process
2917 */
Dan Williamsa4456852007-07-09 11:56:43 -07002918 if (s.failed == 1 && !conf->mddev->ro &&
2919 test_bit(R5_ReadError, &sh->dev[s.failed_num].flags)
2920 && !test_bit(R5_LOCKED, &sh->dev[s.failed_num].flags)
2921 && test_bit(R5_UPTODATE, &sh->dev[s.failed_num].flags)
NeilBrown4e5314b2005-11-08 21:39:22 -08002922 ) {
Dan Williamsa4456852007-07-09 11:56:43 -07002923 dev = &sh->dev[s.failed_num];
NeilBrown4e5314b2005-11-08 21:39:22 -08002924 if (!test_bit(R5_ReWrite, &dev->flags)) {
2925 set_bit(R5_Wantwrite, &dev->flags);
2926 set_bit(R5_ReWrite, &dev->flags);
2927 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsa4456852007-07-09 11:56:43 -07002928 s.locked++;
NeilBrown4e5314b2005-11-08 21:39:22 -08002929 } else {
2930 /* let's read it back */
2931 set_bit(R5_Wantread, &dev->flags);
2932 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsa4456852007-07-09 11:56:43 -07002933 s.locked++;
NeilBrown4e5314b2005-11-08 21:39:22 -08002934 }
2935 }
2936
Dan Williams600aa102008-06-28 08:32:05 +10002937 /* Finish reconstruct operations initiated by the expansion process */
2938 if (sh->reconstruct_state == reconstruct_state_result) {
2939 sh->reconstruct_state = reconstruct_state_idle;
Dan Williamsf0a50d32007-01-02 13:52:31 -07002940 clear_bit(STRIPE_EXPANDING, &sh->state);
Dan Williams23397882008-07-23 20:05:34 -07002941 for (i = conf->raid_disks; i--; ) {
Dan Williamsf0a50d32007-01-02 13:52:31 -07002942 set_bit(R5_Wantwrite, &sh->dev[i].flags);
Dan Williams23397882008-07-23 20:05:34 -07002943 set_bit(R5_LOCKED, &sh->dev[i].flags);
Neil Brownefe31142008-06-28 08:31:14 +10002944 s.locked++;
Dan Williams23397882008-07-23 20:05:34 -07002945 }
Dan Williamsf0a50d32007-01-02 13:52:31 -07002946 }
2947
2948 if (s.expanded && test_bit(STRIPE_EXPANDING, &sh->state) &&
Dan Williams600aa102008-06-28 08:32:05 +10002949 !sh->reconstruct_state) {
NeilBrownccfcc3c2006-03-27 01:18:09 -08002950 /* Need to write out all blocks after computing parity */
2951 sh->disks = conf->raid_disks;
NeilBrown911d4ee2009-03-31 14:39:38 +11002952 stripe_set_idx(sh->sector, conf, 0, sh);
Dan Williams1fe797e2008-06-28 09:16:30 +10002953 schedule_reconstruction5(sh, &s, 1, 1);
Dan Williams600aa102008-06-28 08:32:05 +10002954 } else if (s.expanded && !sh->reconstruct_state && s.locked == 0) {
NeilBrownccfcc3c2006-03-27 01:18:09 -08002955 clear_bit(STRIPE_EXPAND_READY, &sh->state);
NeilBrownf6705572006-03-27 01:18:11 -08002956 atomic_dec(&conf->reshape_stripes);
NeilBrownccfcc3c2006-03-27 01:18:09 -08002957 wake_up(&conf->wait_for_overlap);
2958 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
2959 }
2960
Dan Williams0f94e872008-01-08 15:32:53 -08002961 if (s.expanding && s.locked == 0 &&
Dan Williams976ea8d2008-06-28 08:32:03 +10002962 !test_bit(STRIPE_COMPUTE_RUN, &sh->state))
Dan Williamsa4456852007-07-09 11:56:43 -07002963 handle_stripe_expansion(conf, sh, NULL);
NeilBrownccfcc3c2006-03-27 01:18:09 -08002964
Dan Williams6bfe0b42008-04-30 00:52:32 -07002965 unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 spin_unlock(&sh->lock);
2967
Dan Williams6bfe0b42008-04-30 00:52:32 -07002968 /* wait for this device to become unblocked */
2969 if (unlikely(blocked_rdev))
2970 md_wait_for_blocked_rdev(blocked_rdev, conf->mddev);
2971
Dan Williams600aa102008-06-28 08:32:05 +10002972 if (s.ops_request)
2973 raid5_run_ops(sh, s.ops_request);
Dan Williamsd84e0f12007-01-02 13:52:30 -07002974
Dan Williamsc4e5ac02008-06-28 08:31:53 +10002975 ops_run_io(sh, &s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976
Dan Williamsa4456852007-07-09 11:56:43 -07002977 return_io(return_bi);
Dan Williamsdf10cfb2008-07-28 23:10:39 -07002978
2979 return blocked_rdev == NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980}
2981
Dan Williamsdf10cfb2008-07-28 23:10:39 -07002982static bool handle_stripe6(struct stripe_head *sh, struct page *tmp_page)
NeilBrown16a53ec2006-06-26 00:27:38 -07002983{
NeilBrownbff61972009-03-31 14:33:13 +11002984 raid5_conf_t *conf = sh->raid_conf;
NeilBrownf4168852007-02-28 20:11:53 -08002985 int disks = sh->disks;
Dan Williamsa4456852007-07-09 11:56:43 -07002986 struct bio *return_bi = NULL;
NeilBrown34e04e82009-03-31 15:10:16 +11002987 int i, pd_idx = sh->pd_idx, qd_idx = sh->qd_idx;
Dan Williamsa4456852007-07-09 11:56:43 -07002988 struct stripe_head_state s;
2989 struct r6_state r6s;
NeilBrown16a53ec2006-06-26 00:27:38 -07002990 struct r5dev *dev, *pdev, *qdev;
Dan Williams6bfe0b42008-04-30 00:52:32 -07002991 mdk_rdev_t *blocked_rdev = NULL;
NeilBrown16a53ec2006-06-26 00:27:38 -07002992
Dan Williams45b42332007-07-09 11:56:43 -07002993 pr_debug("handling stripe %llu, state=%#lx cnt=%d, "
Dan Williamsa4456852007-07-09 11:56:43 -07002994 "pd_idx=%d, qd_idx=%d\n",
2995 (unsigned long long)sh->sector, sh->state,
NeilBrown34e04e82009-03-31 15:10:16 +11002996 atomic_read(&sh->count), pd_idx, qd_idx);
Dan Williamsa4456852007-07-09 11:56:43 -07002997 memset(&s, 0, sizeof(s));
NeilBrown16a53ec2006-06-26 00:27:38 -07002998
2999 spin_lock(&sh->lock);
3000 clear_bit(STRIPE_HANDLE, &sh->state);
3001 clear_bit(STRIPE_DELAYED, &sh->state);
3002
Dan Williamsa4456852007-07-09 11:56:43 -07003003 s.syncing = test_bit(STRIPE_SYNCING, &sh->state);
3004 s.expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state);
3005 s.expanded = test_bit(STRIPE_EXPAND_READY, &sh->state);
NeilBrown16a53ec2006-06-26 00:27:38 -07003006 /* Now to look around and see what can be done */
3007
3008 rcu_read_lock();
3009 for (i=disks; i--; ) {
3010 mdk_rdev_t *rdev;
3011 dev = &sh->dev[i];
3012 clear_bit(R5_Insync, &dev->flags);
3013
Dan Williams45b42332007-07-09 11:56:43 -07003014 pr_debug("check %d: state 0x%lx read %p write %p written %p\n",
NeilBrown16a53ec2006-06-26 00:27:38 -07003015 i, dev->flags, dev->toread, dev->towrite, dev->written);
3016 /* maybe we can reply to a read */
3017 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread) {
3018 struct bio *rbi, *rbi2;
Dan Williams45b42332007-07-09 11:56:43 -07003019 pr_debug("Return read for disc %d\n", i);
NeilBrown16a53ec2006-06-26 00:27:38 -07003020 spin_lock_irq(&conf->device_lock);
3021 rbi = dev->toread;
3022 dev->toread = NULL;
3023 if (test_and_clear_bit(R5_Overlap, &dev->flags))
3024 wake_up(&conf->wait_for_overlap);
3025 spin_unlock_irq(&conf->device_lock);
3026 while (rbi && rbi->bi_sector < dev->sector + STRIPE_SECTORS) {
3027 copy_data(0, rbi, dev->page, dev->sector);
3028 rbi2 = r5_next_bio(rbi, dev->sector);
3029 spin_lock_irq(&conf->device_lock);
Jens Axboe960e7392008-08-15 10:41:18 +02003030 if (!raid5_dec_bi_phys_segments(rbi)) {
NeilBrown16a53ec2006-06-26 00:27:38 -07003031 rbi->bi_next = return_bi;
3032 return_bi = rbi;
3033 }
3034 spin_unlock_irq(&conf->device_lock);
3035 rbi = rbi2;
3036 }
3037 }
3038
3039 /* now count some things */
Dan Williamsa4456852007-07-09 11:56:43 -07003040 if (test_bit(R5_LOCKED, &dev->flags)) s.locked++;
3041 if (test_bit(R5_UPTODATE, &dev->flags)) s.uptodate++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003042
3043
Dan Williamsa4456852007-07-09 11:56:43 -07003044 if (dev->toread)
3045 s.to_read++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003046 if (dev->towrite) {
Dan Williamsa4456852007-07-09 11:56:43 -07003047 s.to_write++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003048 if (!test_bit(R5_OVERWRITE, &dev->flags))
Dan Williamsa4456852007-07-09 11:56:43 -07003049 s.non_overwrite++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003050 }
Dan Williamsa4456852007-07-09 11:56:43 -07003051 if (dev->written)
3052 s.written++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003053 rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownac4090d2008-08-05 15:54:13 +10003054 if (blocked_rdev == NULL &&
3055 rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
Dan Williams6bfe0b42008-04-30 00:52:32 -07003056 blocked_rdev = rdev;
3057 atomic_inc(&rdev->nr_pending);
Dan Williams6bfe0b42008-04-30 00:52:32 -07003058 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003059 if (!rdev || !test_bit(In_sync, &rdev->flags)) {
3060 /* The ReadError flag will just be confusing now */
3061 clear_bit(R5_ReadError, &dev->flags);
3062 clear_bit(R5_ReWrite, &dev->flags);
3063 }
3064 if (!rdev || !test_bit(In_sync, &rdev->flags)
3065 || test_bit(R5_ReadError, &dev->flags)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003066 if (s.failed < 2)
3067 r6s.failed_num[s.failed] = i;
3068 s.failed++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003069 } else
3070 set_bit(R5_Insync, &dev->flags);
3071 }
3072 rcu_read_unlock();
Dan Williams6bfe0b42008-04-30 00:52:32 -07003073
3074 if (unlikely(blocked_rdev)) {
NeilBrownac4090d2008-08-05 15:54:13 +10003075 if (s.syncing || s.expanding || s.expanded ||
3076 s.to_write || s.written) {
3077 set_bit(STRIPE_HANDLE, &sh->state);
3078 goto unlock;
3079 }
3080 /* There is nothing for the blocked_rdev to block */
3081 rdev_dec_pending(blocked_rdev, conf->mddev);
3082 blocked_rdev = NULL;
Dan Williams6bfe0b42008-04-30 00:52:32 -07003083 }
NeilBrownac4090d2008-08-05 15:54:13 +10003084
Dan Williams45b42332007-07-09 11:56:43 -07003085 pr_debug("locked=%d uptodate=%d to_read=%d"
NeilBrown16a53ec2006-06-26 00:27:38 -07003086 " to_write=%d failed=%d failed_num=%d,%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07003087 s.locked, s.uptodate, s.to_read, s.to_write, s.failed,
3088 r6s.failed_num[0], r6s.failed_num[1]);
3089 /* check if the array has lost >2 devices and, if so, some requests
3090 * might need to be failed
NeilBrown16a53ec2006-06-26 00:27:38 -07003091 */
Dan Williamsa4456852007-07-09 11:56:43 -07003092 if (s.failed > 2 && s.to_read+s.to_write+s.written)
Dan Williams1fe797e2008-06-28 09:16:30 +10003093 handle_failed_stripe(conf, sh, &s, disks, &return_bi);
Dan Williamsa4456852007-07-09 11:56:43 -07003094 if (s.failed > 2 && s.syncing) {
NeilBrown16a53ec2006-06-26 00:27:38 -07003095 md_done_sync(conf->mddev, STRIPE_SECTORS,0);
3096 clear_bit(STRIPE_SYNCING, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07003097 s.syncing = 0;
NeilBrown16a53ec2006-06-26 00:27:38 -07003098 }
3099
3100 /*
3101 * might be able to return some write requests if the parity blocks
3102 * are safe, or on a failed drive
3103 */
3104 pdev = &sh->dev[pd_idx];
Dan Williamsa4456852007-07-09 11:56:43 -07003105 r6s.p_failed = (s.failed >= 1 && r6s.failed_num[0] == pd_idx)
3106 || (s.failed >= 2 && r6s.failed_num[1] == pd_idx);
NeilBrown34e04e82009-03-31 15:10:16 +11003107 qdev = &sh->dev[qd_idx];
3108 r6s.q_failed = (s.failed >= 1 && r6s.failed_num[0] == qd_idx)
3109 || (s.failed >= 2 && r6s.failed_num[1] == qd_idx);
NeilBrown16a53ec2006-06-26 00:27:38 -07003110
Dan Williamsa4456852007-07-09 11:56:43 -07003111 if ( s.written &&
3112 ( r6s.p_failed || ((test_bit(R5_Insync, &pdev->flags)
NeilBrown16a53ec2006-06-26 00:27:38 -07003113 && !test_bit(R5_LOCKED, &pdev->flags)
Dan Williamsa4456852007-07-09 11:56:43 -07003114 && test_bit(R5_UPTODATE, &pdev->flags)))) &&
3115 ( r6s.q_failed || ((test_bit(R5_Insync, &qdev->flags)
NeilBrown16a53ec2006-06-26 00:27:38 -07003116 && !test_bit(R5_LOCKED, &qdev->flags)
Dan Williamsa4456852007-07-09 11:56:43 -07003117 && test_bit(R5_UPTODATE, &qdev->flags)))))
Dan Williams1fe797e2008-06-28 09:16:30 +10003118 handle_stripe_clean_event(conf, sh, disks, &return_bi);
NeilBrown16a53ec2006-06-26 00:27:38 -07003119
3120 /* Now we might consider reading some blocks, either to check/generate
3121 * parity, or to satisfy requests
3122 * or to load a block that is being partially written.
3123 */
Dan Williamsa4456852007-07-09 11:56:43 -07003124 if (s.to_read || s.non_overwrite || (s.to_write && s.failed) ||
3125 (s.syncing && (s.uptodate < disks)) || s.expanding)
Dan Williams1fe797e2008-06-28 09:16:30 +10003126 handle_stripe_fill6(sh, &s, &r6s, disks);
NeilBrown16a53ec2006-06-26 00:27:38 -07003127
3128 /* now to consider writing and what else, if anything should be read */
Dan Williamsa4456852007-07-09 11:56:43 -07003129 if (s.to_write)
Dan Williams1fe797e2008-06-28 09:16:30 +10003130 handle_stripe_dirtying6(conf, sh, &s, &r6s, disks);
NeilBrown16a53ec2006-06-26 00:27:38 -07003131
3132 /* maybe we need to check and possibly fix the parity for this stripe
Dan Williamsa4456852007-07-09 11:56:43 -07003133 * Any reads will already have been scheduled, so we just see if enough
3134 * data is available
NeilBrown16a53ec2006-06-26 00:27:38 -07003135 */
Dan Williamsa4456852007-07-09 11:56:43 -07003136 if (s.syncing && s.locked == 0 && !test_bit(STRIPE_INSYNC, &sh->state))
3137 handle_parity_checks6(conf, sh, &s, &r6s, tmp_page, disks);
NeilBrown16a53ec2006-06-26 00:27:38 -07003138
Dan Williamsa4456852007-07-09 11:56:43 -07003139 if (s.syncing && s.locked == 0 && test_bit(STRIPE_INSYNC, &sh->state)) {
NeilBrown16a53ec2006-06-26 00:27:38 -07003140 md_done_sync(conf->mddev, STRIPE_SECTORS,1);
3141 clear_bit(STRIPE_SYNCING, &sh->state);
3142 }
3143
3144 /* If the failed drives are just a ReadError, then we might need
3145 * to progress the repair/check process
3146 */
Dan Williamsa4456852007-07-09 11:56:43 -07003147 if (s.failed <= 2 && !conf->mddev->ro)
3148 for (i = 0; i < s.failed; i++) {
3149 dev = &sh->dev[r6s.failed_num[i]];
NeilBrown16a53ec2006-06-26 00:27:38 -07003150 if (test_bit(R5_ReadError, &dev->flags)
3151 && !test_bit(R5_LOCKED, &dev->flags)
3152 && test_bit(R5_UPTODATE, &dev->flags)
3153 ) {
3154 if (!test_bit(R5_ReWrite, &dev->flags)) {
3155 set_bit(R5_Wantwrite, &dev->flags);
3156 set_bit(R5_ReWrite, &dev->flags);
3157 set_bit(R5_LOCKED, &dev->flags);
3158 } else {
3159 /* let's read it back */
3160 set_bit(R5_Wantread, &dev->flags);
3161 set_bit(R5_LOCKED, &dev->flags);
3162 }
3163 }
3164 }
NeilBrownf4168852007-02-28 20:11:53 -08003165
Dan Williamsa4456852007-07-09 11:56:43 -07003166 if (s.expanded && test_bit(STRIPE_EXPANDING, &sh->state)) {
NeilBrownf4168852007-02-28 20:11:53 -08003167 /* Need to write out all blocks after computing P&Q */
3168 sh->disks = conf->raid_disks;
NeilBrown911d4ee2009-03-31 14:39:38 +11003169 stripe_set_idx(sh->sector, conf, 0, sh);
NeilBrownf4168852007-02-28 20:11:53 -08003170 compute_parity6(sh, RECONSTRUCT_WRITE);
3171 for (i = conf->raid_disks ; i-- ; ) {
3172 set_bit(R5_LOCKED, &sh->dev[i].flags);
Dan Williamsa4456852007-07-09 11:56:43 -07003173 s.locked++;
NeilBrownf4168852007-02-28 20:11:53 -08003174 set_bit(R5_Wantwrite, &sh->dev[i].flags);
3175 }
3176 clear_bit(STRIPE_EXPANDING, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07003177 } else if (s.expanded) {
NeilBrownf4168852007-02-28 20:11:53 -08003178 clear_bit(STRIPE_EXPAND_READY, &sh->state);
3179 atomic_dec(&conf->reshape_stripes);
3180 wake_up(&conf->wait_for_overlap);
3181 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
3182 }
3183
Dan Williams0f94e872008-01-08 15:32:53 -08003184 if (s.expanding && s.locked == 0 &&
Dan Williams976ea8d2008-06-28 08:32:03 +10003185 !test_bit(STRIPE_COMPUTE_RUN, &sh->state))
Dan Williamsa4456852007-07-09 11:56:43 -07003186 handle_stripe_expansion(conf, sh, &r6s);
NeilBrownf4168852007-02-28 20:11:53 -08003187
Dan Williams6bfe0b42008-04-30 00:52:32 -07003188 unlock:
NeilBrown16a53ec2006-06-26 00:27:38 -07003189 spin_unlock(&sh->lock);
3190
Dan Williams6bfe0b42008-04-30 00:52:32 -07003191 /* wait for this device to become unblocked */
3192 if (unlikely(blocked_rdev))
3193 md_wait_for_blocked_rdev(blocked_rdev, conf->mddev);
3194
Dan Williamsf0e43bc2008-06-28 08:31:55 +10003195 ops_run_io(sh, &s);
3196
Dan Williamsa4456852007-07-09 11:56:43 -07003197 return_io(return_bi);
Dan Williamsdf10cfb2008-07-28 23:10:39 -07003198
3199 return blocked_rdev == NULL;
NeilBrown16a53ec2006-06-26 00:27:38 -07003200}
3201
Dan Williamsdf10cfb2008-07-28 23:10:39 -07003202/* returns true if the stripe was handled */
3203static bool handle_stripe(struct stripe_head *sh, struct page *tmp_page)
NeilBrown16a53ec2006-06-26 00:27:38 -07003204{
3205 if (sh->raid_conf->level == 6)
Dan Williamsdf10cfb2008-07-28 23:10:39 -07003206 return handle_stripe6(sh, tmp_page);
NeilBrown16a53ec2006-06-26 00:27:38 -07003207 else
Dan Williamsdf10cfb2008-07-28 23:10:39 -07003208 return handle_stripe5(sh);
NeilBrown16a53ec2006-06-26 00:27:38 -07003209}
3210
3211
3212
Arjan van de Ven858119e2006-01-14 13:20:43 -08003213static void raid5_activate_delayed(raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214{
3215 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD) {
3216 while (!list_empty(&conf->delayed_list)) {
3217 struct list_head *l = conf->delayed_list.next;
3218 struct stripe_head *sh;
3219 sh = list_entry(l, struct stripe_head, lru);
3220 list_del_init(l);
3221 clear_bit(STRIPE_DELAYED, &sh->state);
3222 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3223 atomic_inc(&conf->preread_active_stripes);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003224 list_add_tail(&sh->lru, &conf->hold_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225 }
NeilBrown6ed30032008-02-06 01:40:00 -08003226 } else
3227 blk_plug_device(conf->mddev->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228}
3229
Arjan van de Ven858119e2006-01-14 13:20:43 -08003230static void activate_bit_delay(raid5_conf_t *conf)
NeilBrown72626682005-09-09 16:23:54 -07003231{
3232 /* device_lock is held */
3233 struct list_head head;
3234 list_add(&head, &conf->bitmap_list);
3235 list_del_init(&conf->bitmap_list);
3236 while (!list_empty(&head)) {
3237 struct stripe_head *sh = list_entry(head.next, struct stripe_head, lru);
3238 list_del_init(&sh->lru);
3239 atomic_inc(&sh->count);
3240 __release_stripe(conf, sh);
3241 }
3242}
3243
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244static void unplug_slaves(mddev_t *mddev)
3245{
3246 raid5_conf_t *conf = mddev_to_conf(mddev);
3247 int i;
3248
3249 rcu_read_lock();
3250 for (i=0; i<mddev->raid_disks; i++) {
Suzanne Woodd6065f72005-11-08 21:39:27 -08003251 mdk_rdev_t *rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownb2d444d2005-11-08 21:39:31 -08003252 if (rdev && !test_bit(Faulty, &rdev->flags) && atomic_read(&rdev->nr_pending)) {
Jens Axboe165125e2007-07-24 09:28:11 +02003253 struct request_queue *r_queue = bdev_get_queue(rdev->bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254
3255 atomic_inc(&rdev->nr_pending);
3256 rcu_read_unlock();
3257
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -05003258 blk_unplug(r_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259
3260 rdev_dec_pending(rdev, mddev);
3261 rcu_read_lock();
3262 }
3263 }
3264 rcu_read_unlock();
3265}
3266
Jens Axboe165125e2007-07-24 09:28:11 +02003267static void raid5_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268{
3269 mddev_t *mddev = q->queuedata;
3270 raid5_conf_t *conf = mddev_to_conf(mddev);
3271 unsigned long flags;
3272
3273 spin_lock_irqsave(&conf->device_lock, flags);
3274
NeilBrown72626682005-09-09 16:23:54 -07003275 if (blk_remove_plug(q)) {
3276 conf->seq_flush++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277 raid5_activate_delayed(conf);
NeilBrown72626682005-09-09 16:23:54 -07003278 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 md_wakeup_thread(mddev->thread);
3280
3281 spin_unlock_irqrestore(&conf->device_lock, flags);
3282
3283 unplug_slaves(mddev);
3284}
3285
NeilBrownf022b2f2006-10-03 01:15:56 -07003286static int raid5_congested(void *data, int bits)
3287{
3288 mddev_t *mddev = data;
3289 raid5_conf_t *conf = mddev_to_conf(mddev);
3290
3291 /* No difference between reads and writes. Just check
3292 * how busy the stripe_cache is
3293 */
3294 if (conf->inactive_blocked)
3295 return 1;
3296 if (conf->quiesce)
3297 return 1;
3298 if (list_empty_careful(&conf->inactive_list))
3299 return 1;
3300
3301 return 0;
3302}
3303
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003304/* We want read requests to align with chunks where possible,
3305 * but write requests don't need to.
3306 */
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003307static int raid5_mergeable_bvec(struct request_queue *q,
3308 struct bvec_merge_data *bvm,
3309 struct bio_vec *biovec)
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003310{
3311 mddev_t *mddev = q->queuedata;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003312 sector_t sector = bvm->bi_sector + get_start_sect(bvm->bi_bdev);
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003313 int max;
3314 unsigned int chunk_sectors = mddev->chunk_size >> 9;
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003315 unsigned int bio_sectors = bvm->bi_size >> 9;
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003316
Alasdair G Kergoncc371e62008-07-03 09:53:43 +02003317 if ((bvm->bi_rw & 1) == WRITE)
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003318 return biovec->bv_len; /* always allow writes to be mergeable */
3319
3320 max = (chunk_sectors - ((sector & (chunk_sectors - 1)) + bio_sectors)) << 9;
3321 if (max < 0) max = 0;
3322 if (max <= biovec->bv_len && bio_sectors == 0)
3323 return biovec->bv_len;
3324 else
3325 return max;
3326}
3327
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003328
3329static int in_chunk_boundary(mddev_t *mddev, struct bio *bio)
3330{
3331 sector_t sector = bio->bi_sector + get_start_sect(bio->bi_bdev);
3332 unsigned int chunk_sectors = mddev->chunk_size >> 9;
3333 unsigned int bio_sectors = bio->bi_size >> 9;
3334
3335 return chunk_sectors >=
3336 ((sector & (chunk_sectors - 1)) + bio_sectors);
3337}
3338
3339/*
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003340 * add bio to the retry LIFO ( in O(1) ... we are in interrupt )
3341 * later sampled by raid5d.
3342 */
3343static void add_bio_to_retry(struct bio *bi,raid5_conf_t *conf)
3344{
3345 unsigned long flags;
3346
3347 spin_lock_irqsave(&conf->device_lock, flags);
3348
3349 bi->bi_next = conf->retry_read_aligned_list;
3350 conf->retry_read_aligned_list = bi;
3351
3352 spin_unlock_irqrestore(&conf->device_lock, flags);
3353 md_wakeup_thread(conf->mddev->thread);
3354}
3355
3356
3357static struct bio *remove_bio_from_retry(raid5_conf_t *conf)
3358{
3359 struct bio *bi;
3360
3361 bi = conf->retry_read_aligned;
3362 if (bi) {
3363 conf->retry_read_aligned = NULL;
3364 return bi;
3365 }
3366 bi = conf->retry_read_aligned_list;
3367 if(bi) {
Neil Brown387bb172007-02-08 14:20:29 -08003368 conf->retry_read_aligned_list = bi->bi_next;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003369 bi->bi_next = NULL;
Jens Axboe960e7392008-08-15 10:41:18 +02003370 /*
3371 * this sets the active strip count to 1 and the processed
3372 * strip count to zero (upper 8 bits)
3373 */
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003374 bi->bi_phys_segments = 1; /* biased count of active stripes */
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003375 }
3376
3377 return bi;
3378}
3379
3380
3381/*
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003382 * The "raid5_align_endio" should check if the read succeeded and if it
3383 * did, call bio_endio on the original bio (having bio_put the new bio
3384 * first).
3385 * If the read failed..
3386 */
NeilBrown6712ecf2007-09-27 12:47:43 +02003387static void raid5_align_endio(struct bio *bi, int error)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003388{
3389 struct bio* raid_bi = bi->bi_private;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003390 mddev_t *mddev;
3391 raid5_conf_t *conf;
3392 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
3393 mdk_rdev_t *rdev;
3394
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003395 bio_put(bi);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003396
3397 mddev = raid_bi->bi_bdev->bd_disk->queue->queuedata;
3398 conf = mddev_to_conf(mddev);
3399 rdev = (void*)raid_bi->bi_next;
3400 raid_bi->bi_next = NULL;
3401
3402 rdev_dec_pending(rdev, conf->mddev);
3403
3404 if (!error && uptodate) {
NeilBrown6712ecf2007-09-27 12:47:43 +02003405 bio_endio(raid_bi, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003406 if (atomic_dec_and_test(&conf->active_aligned_reads))
3407 wake_up(&conf->wait_for_stripe);
NeilBrown6712ecf2007-09-27 12:47:43 +02003408 return;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003409 }
3410
3411
Dan Williams45b42332007-07-09 11:56:43 -07003412 pr_debug("raid5_align_endio : io error...handing IO for a retry\n");
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003413
3414 add_bio_to_retry(raid_bi, conf);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003415}
3416
Neil Brown387bb172007-02-08 14:20:29 -08003417static int bio_fits_rdev(struct bio *bi)
3418{
Jens Axboe165125e2007-07-24 09:28:11 +02003419 struct request_queue *q = bdev_get_queue(bi->bi_bdev);
Neil Brown387bb172007-02-08 14:20:29 -08003420
3421 if ((bi->bi_size>>9) > q->max_sectors)
3422 return 0;
3423 blk_recount_segments(q, bi);
Jens Axboe960e7392008-08-15 10:41:18 +02003424 if (bi->bi_phys_segments > q->max_phys_segments)
Neil Brown387bb172007-02-08 14:20:29 -08003425 return 0;
3426
3427 if (q->merge_bvec_fn)
3428 /* it's too hard to apply the merge_bvec_fn at this stage,
3429 * just just give up
3430 */
3431 return 0;
3432
3433 return 1;
3434}
3435
3436
Jens Axboe165125e2007-07-24 09:28:11 +02003437static int chunk_aligned_read(struct request_queue *q, struct bio * raid_bio)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003438{
3439 mddev_t *mddev = q->queuedata;
3440 raid5_conf_t *conf = mddev_to_conf(mddev);
NeilBrown911d4ee2009-03-31 14:39:38 +11003441 unsigned int dd_idx;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003442 struct bio* align_bi;
3443 mdk_rdev_t *rdev;
3444
3445 if (!in_chunk_boundary(mddev, raid_bio)) {
Dan Williams45b42332007-07-09 11:56:43 -07003446 pr_debug("chunk_aligned_read : non aligned\n");
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003447 return 0;
3448 }
3449 /*
NeilBrown99c0fb52009-03-31 14:39:38 +11003450 * use bio_clone to make a copy of the bio
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003451 */
3452 align_bi = bio_clone(raid_bio, GFP_NOIO);
3453 if (!align_bi)
3454 return 0;
3455 /*
3456 * set bi_end_io to a new function, and set bi_private to the
3457 * original bio.
3458 */
3459 align_bi->bi_end_io = raid5_align_endio;
3460 align_bi->bi_private = raid_bio;
3461 /*
3462 * compute position
3463 */
NeilBrown112bf892009-03-31 14:39:38 +11003464 align_bi->bi_sector = raid5_compute_sector(conf, raid_bio->bi_sector,
3465 0,
NeilBrown911d4ee2009-03-31 14:39:38 +11003466 &dd_idx, NULL);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003467
3468 rcu_read_lock();
3469 rdev = rcu_dereference(conf->disks[dd_idx].rdev);
3470 if (rdev && test_bit(In_sync, &rdev->flags)) {
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003471 atomic_inc(&rdev->nr_pending);
3472 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003473 raid_bio->bi_next = (void*)rdev;
3474 align_bi->bi_bdev = rdev->bdev;
3475 align_bi->bi_flags &= ~(1 << BIO_SEG_VALID);
3476 align_bi->bi_sector += rdev->data_offset;
3477
Neil Brown387bb172007-02-08 14:20:29 -08003478 if (!bio_fits_rdev(align_bi)) {
3479 /* too big in some way */
3480 bio_put(align_bi);
3481 rdev_dec_pending(rdev, mddev);
3482 return 0;
3483 }
3484
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003485 spin_lock_irq(&conf->device_lock);
3486 wait_event_lock_irq(conf->wait_for_stripe,
3487 conf->quiesce == 0,
3488 conf->device_lock, /* nothing */);
3489 atomic_inc(&conf->active_aligned_reads);
3490 spin_unlock_irq(&conf->device_lock);
3491
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003492 generic_make_request(align_bi);
3493 return 1;
3494 } else {
3495 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003496 bio_put(align_bi);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003497 return 0;
3498 }
3499}
3500
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003501/* __get_priority_stripe - get the next stripe to process
3502 *
3503 * Full stripe writes are allowed to pass preread active stripes up until
3504 * the bypass_threshold is exceeded. In general the bypass_count
3505 * increments when the handle_list is handled before the hold_list; however, it
3506 * will not be incremented when STRIPE_IO_STARTED is sampled set signifying a
3507 * stripe with in flight i/o. The bypass_count will be reset when the
3508 * head of the hold_list has changed, i.e. the head was promoted to the
3509 * handle_list.
3510 */
3511static struct stripe_head *__get_priority_stripe(raid5_conf_t *conf)
3512{
3513 struct stripe_head *sh;
3514
3515 pr_debug("%s: handle: %s hold: %s full_writes: %d bypass_count: %d\n",
3516 __func__,
3517 list_empty(&conf->handle_list) ? "empty" : "busy",
3518 list_empty(&conf->hold_list) ? "empty" : "busy",
3519 atomic_read(&conf->pending_full_writes), conf->bypass_count);
3520
3521 if (!list_empty(&conf->handle_list)) {
3522 sh = list_entry(conf->handle_list.next, typeof(*sh), lru);
3523
3524 if (list_empty(&conf->hold_list))
3525 conf->bypass_count = 0;
3526 else if (!test_bit(STRIPE_IO_STARTED, &sh->state)) {
3527 if (conf->hold_list.next == conf->last_hold)
3528 conf->bypass_count++;
3529 else {
3530 conf->last_hold = conf->hold_list.next;
3531 conf->bypass_count -= conf->bypass_threshold;
3532 if (conf->bypass_count < 0)
3533 conf->bypass_count = 0;
3534 }
3535 }
3536 } else if (!list_empty(&conf->hold_list) &&
3537 ((conf->bypass_threshold &&
3538 conf->bypass_count > conf->bypass_threshold) ||
3539 atomic_read(&conf->pending_full_writes) == 0)) {
3540 sh = list_entry(conf->hold_list.next,
3541 typeof(*sh), lru);
3542 conf->bypass_count -= conf->bypass_threshold;
3543 if (conf->bypass_count < 0)
3544 conf->bypass_count = 0;
3545 } else
3546 return NULL;
3547
3548 list_del_init(&sh->lru);
3549 atomic_inc(&sh->count);
3550 BUG_ON(atomic_read(&sh->count) != 1);
3551 return sh;
3552}
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003553
Jens Axboe165125e2007-07-24 09:28:11 +02003554static int make_request(struct request_queue *q, struct bio * bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555{
3556 mddev_t *mddev = q->queuedata;
3557 raid5_conf_t *conf = mddev_to_conf(mddev);
NeilBrown911d4ee2009-03-31 14:39:38 +11003558 int dd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559 sector_t new_sector;
3560 sector_t logical_sector, last_sector;
3561 struct stripe_head *sh;
Jens Axboea3623572005-11-01 09:26:16 +01003562 const int rw = bio_data_dir(bi);
Tejun Heoc9959052008-08-25 19:47:21 +09003563 int cpu, remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564
NeilBrowne5dcdd82005-09-09 16:23:41 -07003565 if (unlikely(bio_barrier(bi))) {
NeilBrown6712ecf2007-09-27 12:47:43 +02003566 bio_endio(bi, -EOPNOTSUPP);
NeilBrowne5dcdd82005-09-09 16:23:41 -07003567 return 0;
3568 }
3569
NeilBrown3d310eb2005-06-21 17:17:26 -07003570 md_write_start(mddev, bi);
NeilBrown06d91a52005-06-21 17:17:12 -07003571
Tejun Heo074a7ac2008-08-25 19:56:14 +09003572 cpu = part_stat_lock();
3573 part_stat_inc(cpu, &mddev->gendisk->part0, ios[rw]);
3574 part_stat_add(cpu, &mddev->gendisk->part0, sectors[rw],
3575 bio_sectors(bi));
3576 part_stat_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577
NeilBrown802ba062006-12-13 00:34:13 -08003578 if (rw == READ &&
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08003579 mddev->reshape_position == MaxSector &&
3580 chunk_aligned_read(q,bi))
NeilBrown99c0fb52009-03-31 14:39:38 +11003581 return 0;
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08003582
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583 logical_sector = bi->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
3584 last_sector = bi->bi_sector + (bi->bi_size>>9);
3585 bi->bi_next = NULL;
3586 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
NeilBrown06d91a52005-06-21 17:17:12 -07003587
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588 for (;logical_sector < last_sector; logical_sector += STRIPE_SECTORS) {
3589 DEFINE_WAIT(w);
NeilBrown16a53ec2006-06-26 00:27:38 -07003590 int disks, data_disks;
NeilBrownb5663ba2009-03-31 14:39:38 +11003591 int previous;
NeilBrownb578d552006-03-27 01:18:12 -08003592
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003593 retry:
NeilBrownb5663ba2009-03-31 14:39:38 +11003594 previous = 0;
NeilBrownb578d552006-03-27 01:18:12 -08003595 prepare_to_wait(&conf->wait_for_overlap, &w, TASK_UNINTERRUPTIBLE);
NeilBrownfef9c612009-03-31 15:16:46 +11003596 if (likely(conf->reshape_progress == MaxSector))
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003597 disks = conf->raid_disks;
3598 else {
NeilBrownfef9c612009-03-31 15:16:46 +11003599 /* spinlock is needed as reshape_progress may be
NeilBrowndf8e7f72006-03-27 01:18:15 -08003600 * 64bit on a 32bit platform, and so it might be
3601 * possible to see a half-updated value
NeilBrownfef9c612009-03-31 15:16:46 +11003602 * Ofcourse reshape_progress could change after
NeilBrowndf8e7f72006-03-27 01:18:15 -08003603 * the lock is dropped, so once we get a reference
3604 * to the stripe that we think it is, we will have
3605 * to check again.
3606 */
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003607 spin_lock_irq(&conf->device_lock);
3608 disks = conf->raid_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11003609 if (mddev->delta_disks < 0
3610 ? logical_sector < conf->reshape_progress
3611 : logical_sector >= conf->reshape_progress) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003612 disks = conf->previous_raid_disks;
NeilBrownb5663ba2009-03-31 14:39:38 +11003613 previous = 1;
3614 } else {
NeilBrownfef9c612009-03-31 15:16:46 +11003615 if (mddev->delta_disks < 0
3616 ? logical_sector < conf->reshape_safe
3617 : logical_sector >= conf->reshape_safe) {
NeilBrownb578d552006-03-27 01:18:12 -08003618 spin_unlock_irq(&conf->device_lock);
3619 schedule();
3620 goto retry;
3621 }
3622 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003623 spin_unlock_irq(&conf->device_lock);
3624 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003625 data_disks = disks - conf->max_degraded;
3626
NeilBrown112bf892009-03-31 14:39:38 +11003627 new_sector = raid5_compute_sector(conf, logical_sector,
3628 previous,
NeilBrown911d4ee2009-03-31 14:39:38 +11003629 &dd_idx, NULL);
Dan Williams45b42332007-07-09 11:56:43 -07003630 pr_debug("raid5: make_request, sector %llu logical %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631 (unsigned long long)new_sector,
3632 (unsigned long long)logical_sector);
3633
NeilBrownb5663ba2009-03-31 14:39:38 +11003634 sh = get_active_stripe(conf, new_sector, previous,
3635 (bi->bi_rw&RWA_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636 if (sh) {
NeilBrownfef9c612009-03-31 15:16:46 +11003637 if (unlikely(conf->reshape_progress != MaxSector)) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003638 /* expansion might have moved on while waiting for a
NeilBrowndf8e7f72006-03-27 01:18:15 -08003639 * stripe, so we must do the range check again.
3640 * Expansion could still move past after this
3641 * test, but as we are holding a reference to
3642 * 'sh', we know that if that happens,
3643 * STRIPE_EXPANDING will get set and the expansion
3644 * won't proceed until we finish with the stripe.
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003645 */
3646 int must_retry = 0;
3647 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11003648 if ((mddev->delta_disks < 0
3649 ? logical_sector >= conf->reshape_progress
3650 : logical_sector < conf->reshape_progress)
3651 && disks == conf->previous_raid_disks)
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003652 /* mismatch, need to try again */
3653 must_retry = 1;
3654 spin_unlock_irq(&conf->device_lock);
3655 if (must_retry) {
3656 release_stripe(sh);
3657 goto retry;
3658 }
3659 }
NeilBrowne464eaf2006-03-27 01:18:14 -08003660 /* FIXME what if we get a false positive because these
3661 * are being updated.
3662 */
3663 if (logical_sector >= mddev->suspend_lo &&
3664 logical_sector < mddev->suspend_hi) {
3665 release_stripe(sh);
3666 schedule();
3667 goto retry;
3668 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003669
3670 if (test_bit(STRIPE_EXPANDING, &sh->state) ||
3671 !add_stripe_bio(sh, bi, dd_idx, (bi->bi_rw&RW_MASK))) {
3672 /* Stripe is busy expanding or
3673 * add failed due to overlap. Flush everything
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674 * and wait a while
3675 */
3676 raid5_unplug_device(mddev->queue);
3677 release_stripe(sh);
3678 schedule();
3679 goto retry;
3680 }
3681 finish_wait(&conf->wait_for_overlap, &w);
NeilBrown6ed30032008-02-06 01:40:00 -08003682 set_bit(STRIPE_HANDLE, &sh->state);
3683 clear_bit(STRIPE_DELAYED, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685 } else {
3686 /* cannot get stripe for read-ahead, just give-up */
3687 clear_bit(BIO_UPTODATE, &bi->bi_flags);
3688 finish_wait(&conf->wait_for_overlap, &w);
3689 break;
3690 }
3691
3692 }
3693 spin_lock_irq(&conf->device_lock);
Jens Axboe960e7392008-08-15 10:41:18 +02003694 remaining = raid5_dec_bi_phys_segments(bi);
NeilBrownf6344752006-03-27 01:18:17 -08003695 spin_unlock_irq(&conf->device_lock);
3696 if (remaining == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697
NeilBrown16a53ec2006-06-26 00:27:38 -07003698 if ( rw == WRITE )
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699 md_write_end(mddev);
NeilBrown6712ecf2007-09-27 12:47:43 +02003700
Neil Brown0e13fe232008-06-28 08:31:20 +10003701 bio_endio(bi, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703 return 0;
3704}
3705
Dan Williamsb522adc2009-03-31 15:00:31 +11003706static sector_t raid5_size(mddev_t *mddev, sector_t sectors, int raid_disks);
3707
NeilBrown52c03292006-06-26 00:27:43 -07003708static sector_t reshape_request(mddev_t *mddev, sector_t sector_nr, int *skipped)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709{
NeilBrown52c03292006-06-26 00:27:43 -07003710 /* reshaping is quite different to recovery/resync so it is
3711 * handled quite separately ... here.
3712 *
3713 * On each call to sync_request, we gather one chunk worth of
3714 * destination stripes and flag them as expanding.
3715 * Then we find all the source stripes and request reads.
3716 * As the reads complete, handle_stripe will copy the data
3717 * into the destination stripe and release that stripe.
3718 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
3720 struct stripe_head *sh;
NeilBrownccfcc3c2006-03-27 01:18:09 -08003721 sector_t first_sector, last_sector;
NeilBrownf4168852007-02-28 20:11:53 -08003722 int raid_disks = conf->previous_raid_disks;
3723 int data_disks = raid_disks - conf->max_degraded;
3724 int new_data_disks = conf->raid_disks - conf->max_degraded;
NeilBrown52c03292006-06-26 00:27:43 -07003725 int i;
3726 int dd_idx;
3727 sector_t writepos, safepos, gap;
3728
NeilBrownfef9c612009-03-31 15:16:46 +11003729 if (sector_nr == 0) {
3730 /* If restarting in the middle, skip the initial sectors */
3731 if (mddev->delta_disks < 0 &&
3732 conf->reshape_progress < raid5_size(mddev, 0, 0)) {
3733 sector_nr = raid5_size(mddev, 0, 0)
3734 - conf->reshape_progress;
3735 } else if (mddev->delta_disks > 0 &&
3736 conf->reshape_progress > 0)
3737 sector_nr = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08003738 sector_div(sector_nr, new_data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11003739 if (sector_nr) {
3740 *skipped = 1;
3741 return sector_nr;
3742 }
NeilBrown52c03292006-06-26 00:27:43 -07003743 }
3744
3745 /* we update the metadata when there is more than 3Meg
3746 * in the block range (that is rather arbitrary, should
3747 * probably be time based) or when the data about to be
3748 * copied would over-write the source of the data at
3749 * the front of the range.
NeilBrownfef9c612009-03-31 15:16:46 +11003750 * i.e. one new_stripe along from reshape_progress new_maps
3751 * to after where reshape_safe old_maps to
NeilBrown52c03292006-06-26 00:27:43 -07003752 */
NeilBrownfef9c612009-03-31 15:16:46 +11003753 writepos = conf->reshape_progress;
NeilBrownf4168852007-02-28 20:11:53 -08003754 sector_div(writepos, new_data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11003755 safepos = conf->reshape_safe;
NeilBrownf4168852007-02-28 20:11:53 -08003756 sector_div(safepos, data_disks);
NeilBrownfef9c612009-03-31 15:16:46 +11003757 if (mddev->delta_disks < 0) {
3758 writepos -= conf->chunk_size/512;
3759 safepos += conf->chunk_size/512;
3760 gap = conf->reshape_safe - conf->reshape_progress;
3761 } else {
3762 writepos += conf->chunk_size/512;
3763 safepos -= conf->chunk_size/512;
3764 gap = conf->reshape_progress - conf->reshape_safe;
3765 }
NeilBrown52c03292006-06-26 00:27:43 -07003766
NeilBrownfef9c612009-03-31 15:16:46 +11003767 if ((mddev->delta_disks < 0
3768 ? writepos < safepos
3769 : writepos > safepos) ||
NeilBrownf4168852007-02-28 20:11:53 -08003770 gap > (new_data_disks)*3000*2 /*3Meg*/) {
NeilBrown52c03292006-06-26 00:27:43 -07003771 /* Cannot proceed until we've updated the superblock... */
3772 wait_event(conf->wait_for_overlap,
3773 atomic_read(&conf->reshape_stripes)==0);
NeilBrownfef9c612009-03-31 15:16:46 +11003774 mddev->reshape_position = conf->reshape_progress;
NeilBrown850b2b42006-10-03 01:15:46 -07003775 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrown52c03292006-06-26 00:27:43 -07003776 md_wakeup_thread(mddev->thread);
NeilBrown850b2b42006-10-03 01:15:46 -07003777 wait_event(mddev->sb_wait, mddev->flags == 0 ||
NeilBrown52c03292006-06-26 00:27:43 -07003778 kthread_should_stop());
3779 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11003780 conf->reshape_safe = mddev->reshape_position;
NeilBrown52c03292006-06-26 00:27:43 -07003781 spin_unlock_irq(&conf->device_lock);
3782 wake_up(&conf->wait_for_overlap);
3783 }
3784
3785 for (i=0; i < conf->chunk_size/512; i+= STRIPE_SECTORS) {
3786 int j;
3787 int skipped = 0;
NeilBrownb5663ba2009-03-31 14:39:38 +11003788 sh = get_active_stripe(conf, sector_nr+i, 0, 0);
NeilBrown52c03292006-06-26 00:27:43 -07003789 set_bit(STRIPE_EXPANDING, &sh->state);
3790 atomic_inc(&conf->reshape_stripes);
3791 /* If any of this stripe is beyond the end of the old
3792 * array, then we need to zero those blocks
3793 */
3794 for (j=sh->disks; j--;) {
3795 sector_t s;
3796 if (j == sh->pd_idx)
3797 continue;
NeilBrownf4168852007-02-28 20:11:53 -08003798 if (conf->level == 6 &&
NeilBrownd0dabf72009-03-31 14:39:38 +11003799 j == sh->qd_idx)
NeilBrownf4168852007-02-28 20:11:53 -08003800 continue;
NeilBrown52c03292006-06-26 00:27:43 -07003801 s = compute_blocknr(sh, j);
Dan Williamsb522adc2009-03-31 15:00:31 +11003802 if (s < raid5_size(mddev, 0, 0)) {
NeilBrown52c03292006-06-26 00:27:43 -07003803 skipped = 1;
3804 continue;
3805 }
3806 memset(page_address(sh->dev[j].page), 0, STRIPE_SIZE);
3807 set_bit(R5_Expanded, &sh->dev[j].flags);
3808 set_bit(R5_UPTODATE, &sh->dev[j].flags);
3809 }
3810 if (!skipped) {
3811 set_bit(STRIPE_EXPAND_READY, &sh->state);
3812 set_bit(STRIPE_HANDLE, &sh->state);
3813 }
3814 release_stripe(sh);
3815 }
3816 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11003817 if (mddev->delta_disks < 0)
3818 conf->reshape_progress -= i * new_data_disks;
3819 else
3820 conf->reshape_progress += i * new_data_disks;
NeilBrown52c03292006-06-26 00:27:43 -07003821 spin_unlock_irq(&conf->device_lock);
3822 /* Ok, those stripe are ready. We can start scheduling
3823 * reads on the source stripes.
3824 * The source stripes are determined by mapping the first and last
3825 * block on the destination stripes.
3826 */
NeilBrown52c03292006-06-26 00:27:43 -07003827 first_sector =
NeilBrown112bf892009-03-31 14:39:38 +11003828 raid5_compute_sector(conf, sector_nr*(new_data_disks),
NeilBrown911d4ee2009-03-31 14:39:38 +11003829 1, &dd_idx, NULL);
NeilBrown52c03292006-06-26 00:27:43 -07003830 last_sector =
NeilBrown112bf892009-03-31 14:39:38 +11003831 raid5_compute_sector(conf, ((sector_nr+conf->chunk_size/512)
3832 *(new_data_disks) - 1),
NeilBrown911d4ee2009-03-31 14:39:38 +11003833 1, &dd_idx, NULL);
Andre Noll58c0fed2009-03-31 14:33:13 +11003834 if (last_sector >= mddev->dev_sectors)
3835 last_sector = mddev->dev_sectors - 1;
NeilBrown52c03292006-06-26 00:27:43 -07003836 while (first_sector <= last_sector) {
NeilBrownb5663ba2009-03-31 14:39:38 +11003837 sh = get_active_stripe(conf, first_sector, 1, 0);
NeilBrown52c03292006-06-26 00:27:43 -07003838 set_bit(STRIPE_EXPAND_SOURCE, &sh->state);
3839 set_bit(STRIPE_HANDLE, &sh->state);
3840 release_stripe(sh);
3841 first_sector += STRIPE_SECTORS;
3842 }
NeilBrownc6207272008-02-06 01:39:52 -08003843 /* If this takes us to the resync_max point where we have to pause,
3844 * then we need to write out the superblock.
3845 */
3846 sector_nr += conf->chunk_size>>9;
3847 if (sector_nr >= mddev->resync_max) {
3848 /* Cannot proceed until we've updated the superblock... */
3849 wait_event(conf->wait_for_overlap,
3850 atomic_read(&conf->reshape_stripes) == 0);
NeilBrownfef9c612009-03-31 15:16:46 +11003851 mddev->reshape_position = conf->reshape_progress;
NeilBrownc6207272008-02-06 01:39:52 -08003852 set_bit(MD_CHANGE_DEVS, &mddev->flags);
3853 md_wakeup_thread(mddev->thread);
3854 wait_event(mddev->sb_wait,
3855 !test_bit(MD_CHANGE_DEVS, &mddev->flags)
3856 || kthread_should_stop());
3857 spin_lock_irq(&conf->device_lock);
NeilBrownfef9c612009-03-31 15:16:46 +11003858 conf->reshape_safe = mddev->reshape_position;
NeilBrownc6207272008-02-06 01:39:52 -08003859 spin_unlock_irq(&conf->device_lock);
3860 wake_up(&conf->wait_for_overlap);
3861 }
NeilBrown52c03292006-06-26 00:27:43 -07003862 return conf->chunk_size>>9;
3863}
3864
3865/* FIXME go_faster isn't used */
3866static inline sector_t sync_request(mddev_t *mddev, sector_t sector_nr, int *skipped, int go_faster)
3867{
3868 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
3869 struct stripe_head *sh;
Andre Noll58c0fed2009-03-31 14:33:13 +11003870 sector_t max_sector = mddev->dev_sectors;
NeilBrown72626682005-09-09 16:23:54 -07003871 int sync_blocks;
NeilBrown16a53ec2006-06-26 00:27:38 -07003872 int still_degraded = 0;
3873 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874
NeilBrown72626682005-09-09 16:23:54 -07003875 if (sector_nr >= max_sector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876 /* just being told to finish up .. nothing much to do */
3877 unplug_slaves(mddev);
NeilBrowncea9c222009-03-31 15:15:05 +11003878
NeilBrown29269552006-03-27 01:18:10 -08003879 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery)) {
3880 end_reshape(conf);
3881 return 0;
3882 }
NeilBrown72626682005-09-09 16:23:54 -07003883
3884 if (mddev->curr_resync < max_sector) /* aborted */
3885 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
3886 &sync_blocks, 1);
NeilBrown16a53ec2006-06-26 00:27:38 -07003887 else /* completed sync */
NeilBrown72626682005-09-09 16:23:54 -07003888 conf->fullsync = 0;
3889 bitmap_close_sync(mddev->bitmap);
3890
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891 return 0;
3892 }
NeilBrownccfcc3c2006-03-27 01:18:09 -08003893
NeilBrown52c03292006-06-26 00:27:43 -07003894 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery))
3895 return reshape_request(mddev, sector_nr, skipped);
NeilBrownf6705572006-03-27 01:18:11 -08003896
NeilBrownc6207272008-02-06 01:39:52 -08003897 /* No need to check resync_max as we never do more than one
3898 * stripe, and as resync_max will always be on a chunk boundary,
3899 * if the check in md_do_sync didn't fire, there is no chance
3900 * of overstepping resync_max here
3901 */
3902
NeilBrown16a53ec2006-06-26 00:27:38 -07003903 /* if there is too many failed drives and we are trying
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904 * to resync, then assert that we are finished, because there is
3905 * nothing we can do.
3906 */
NeilBrown3285edf2006-06-26 00:27:55 -07003907 if (mddev->degraded >= conf->max_degraded &&
NeilBrown16a53ec2006-06-26 00:27:38 -07003908 test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
Andre Noll58c0fed2009-03-31 14:33:13 +11003909 sector_t rv = mddev->dev_sectors - sector_nr;
NeilBrown57afd892005-06-21 17:17:13 -07003910 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911 return rv;
3912 }
NeilBrown72626682005-09-09 16:23:54 -07003913 if (!bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
NeilBrown3855ad92005-11-08 21:39:38 -08003914 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
NeilBrown72626682005-09-09 16:23:54 -07003915 !conf->fullsync && sync_blocks >= STRIPE_SECTORS) {
3916 /* we can skip this block, and probably more */
3917 sync_blocks /= STRIPE_SECTORS;
3918 *skipped = 1;
3919 return sync_blocks * STRIPE_SECTORS; /* keep things rounded to whole stripes */
3920 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921
NeilBrownb47490c2008-02-06 01:39:50 -08003922
3923 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
3924
NeilBrownb5663ba2009-03-31 14:39:38 +11003925 sh = get_active_stripe(conf, sector_nr, 0, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926 if (sh == NULL) {
NeilBrownb5663ba2009-03-31 14:39:38 +11003927 sh = get_active_stripe(conf, sector_nr, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928 /* make sure we don't swamp the stripe cache if someone else
NeilBrown16a53ec2006-06-26 00:27:38 -07003929 * is trying to get access
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930 */
Nishanth Aravamudan66c006a2005-11-07 01:01:17 -08003931 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003933 /* Need to check if array will still be degraded after recovery/resync
3934 * We don't need to check the 'failed' flag as when that gets set,
3935 * recovery aborts.
3936 */
3937 for (i=0; i<mddev->raid_disks; i++)
3938 if (conf->disks[i].rdev == NULL)
3939 still_degraded = 1;
3940
3941 bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, still_degraded);
3942
3943 spin_lock(&sh->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944 set_bit(STRIPE_SYNCING, &sh->state);
3945 clear_bit(STRIPE_INSYNC, &sh->state);
3946 spin_unlock(&sh->lock);
3947
Dan Williamsdf10cfb2008-07-28 23:10:39 -07003948 /* wait for any blocked device to be handled */
3949 while(unlikely(!handle_stripe(sh, NULL)))
3950 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951 release_stripe(sh);
3952
3953 return STRIPE_SECTORS;
3954}
3955
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003956static int retry_aligned_read(raid5_conf_t *conf, struct bio *raid_bio)
3957{
3958 /* We may not be able to submit a whole bio at once as there
3959 * may not be enough stripe_heads available.
3960 * We cannot pre-allocate enough stripe_heads as we may need
3961 * more than exist in the cache (if we allow ever large chunks).
3962 * So we do one stripe head at a time and record in
3963 * ->bi_hw_segments how many have been done.
3964 *
3965 * We *know* that this entire raid_bio is in one chunk, so
3966 * it will be only one 'dd_idx' and only need one call to raid5_compute_sector.
3967 */
3968 struct stripe_head *sh;
NeilBrown911d4ee2009-03-31 14:39:38 +11003969 int dd_idx;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003970 sector_t sector, logical_sector, last_sector;
3971 int scnt = 0;
3972 int remaining;
3973 int handled = 0;
3974
3975 logical_sector = raid_bio->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
NeilBrown112bf892009-03-31 14:39:38 +11003976 sector = raid5_compute_sector(conf, logical_sector,
NeilBrown911d4ee2009-03-31 14:39:38 +11003977 0, &dd_idx, NULL);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003978 last_sector = raid_bio->bi_sector + (raid_bio->bi_size>>9);
3979
3980 for (; logical_sector < last_sector;
Neil Brown387bb172007-02-08 14:20:29 -08003981 logical_sector += STRIPE_SECTORS,
3982 sector += STRIPE_SECTORS,
3983 scnt++) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003984
Jens Axboe960e7392008-08-15 10:41:18 +02003985 if (scnt < raid5_bi_hw_segments(raid_bio))
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003986 /* already done this stripe */
3987 continue;
3988
NeilBrownb5663ba2009-03-31 14:39:38 +11003989 sh = get_active_stripe(conf, sector, 0, 1);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003990
3991 if (!sh) {
3992 /* failed to get a stripe - must wait */
Jens Axboe960e7392008-08-15 10:41:18 +02003993 raid5_set_bi_hw_segments(raid_bio, scnt);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003994 conf->retry_read_aligned = raid_bio;
3995 return handled;
3996 }
3997
3998 set_bit(R5_ReadError, &sh->dev[dd_idx].flags);
Neil Brown387bb172007-02-08 14:20:29 -08003999 if (!add_stripe_bio(sh, raid_bio, dd_idx, 0)) {
4000 release_stripe(sh);
Jens Axboe960e7392008-08-15 10:41:18 +02004001 raid5_set_bi_hw_segments(raid_bio, scnt);
Neil Brown387bb172007-02-08 14:20:29 -08004002 conf->retry_read_aligned = raid_bio;
4003 return handled;
4004 }
4005
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004006 handle_stripe(sh, NULL);
4007 release_stripe(sh);
4008 handled++;
4009 }
4010 spin_lock_irq(&conf->device_lock);
Jens Axboe960e7392008-08-15 10:41:18 +02004011 remaining = raid5_dec_bi_phys_segments(raid_bio);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004012 spin_unlock_irq(&conf->device_lock);
Neil Brown0e13fe232008-06-28 08:31:20 +10004013 if (remaining == 0)
4014 bio_endio(raid_bio, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004015 if (atomic_dec_and_test(&conf->active_aligned_reads))
4016 wake_up(&conf->wait_for_stripe);
4017 return handled;
4018}
4019
4020
4021
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022/*
4023 * This is our raid5 kernel thread.
4024 *
4025 * We scan the hash table for stripes which can be handled now.
4026 * During the scan, completed stripes are saved for us by the interrupt
4027 * handler, so that they will not have to wait for our next wakeup.
4028 */
NeilBrown6ed30032008-02-06 01:40:00 -08004029static void raid5d(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030{
4031 struct stripe_head *sh;
4032 raid5_conf_t *conf = mddev_to_conf(mddev);
4033 int handled;
4034
Dan Williams45b42332007-07-09 11:56:43 -07004035 pr_debug("+++ raid5d active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036
4037 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038
4039 handled = 0;
4040 spin_lock_irq(&conf->device_lock);
4041 while (1) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004042 struct bio *bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043
NeilBrownae3c20c2006-07-10 04:44:17 -07004044 if (conf->seq_flush != conf->seq_write) {
NeilBrown72626682005-09-09 16:23:54 -07004045 int seq = conf->seq_flush;
NeilBrown700e4322005-11-28 13:44:10 -08004046 spin_unlock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07004047 bitmap_unplug(mddev->bitmap);
NeilBrown700e4322005-11-28 13:44:10 -08004048 spin_lock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07004049 conf->seq_write = seq;
4050 activate_bit_delay(conf);
4051 }
4052
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004053 while ((bio = remove_bio_from_retry(conf))) {
4054 int ok;
4055 spin_unlock_irq(&conf->device_lock);
4056 ok = retry_aligned_read(conf, bio);
4057 spin_lock_irq(&conf->device_lock);
4058 if (!ok)
4059 break;
4060 handled++;
4061 }
4062
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004063 sh = __get_priority_stripe(conf);
4064
Dan Williamsc9f21aa2008-07-23 12:05:51 -07004065 if (!sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067 spin_unlock_irq(&conf->device_lock);
4068
4069 handled++;
NeilBrown16a53ec2006-06-26 00:27:38 -07004070 handle_stripe(sh, conf->spare_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071 release_stripe(sh);
4072
4073 spin_lock_irq(&conf->device_lock);
4074 }
Dan Williams45b42332007-07-09 11:56:43 -07004075 pr_debug("%d stripes handled\n", handled);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076
4077 spin_unlock_irq(&conf->device_lock);
4078
Dan Williamsc9f21aa2008-07-23 12:05:51 -07004079 async_tx_issue_pending_all();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080 unplug_slaves(mddev);
4081
Dan Williams45b42332007-07-09 11:56:43 -07004082 pr_debug("--- raid5d inactive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083}
4084
NeilBrown3f294f42005-11-08 21:39:25 -08004085static ssize_t
NeilBrown007583c2005-11-08 21:39:30 -08004086raid5_show_stripe_cache_size(mddev_t *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08004087{
NeilBrown007583c2005-11-08 21:39:30 -08004088 raid5_conf_t *conf = mddev_to_conf(mddev);
NeilBrown96de1e62005-11-08 21:39:39 -08004089 if (conf)
4090 return sprintf(page, "%d\n", conf->max_nr_stripes);
4091 else
4092 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08004093}
4094
4095static ssize_t
NeilBrown007583c2005-11-08 21:39:30 -08004096raid5_store_stripe_cache_size(mddev_t *mddev, const char *page, size_t len)
NeilBrown3f294f42005-11-08 21:39:25 -08004097{
NeilBrown007583c2005-11-08 21:39:30 -08004098 raid5_conf_t *conf = mddev_to_conf(mddev);
Dan Williams4ef197d82008-04-28 02:15:54 -07004099 unsigned long new;
Dan Williamsb5470dc2008-06-27 21:44:04 -07004100 int err;
4101
NeilBrown3f294f42005-11-08 21:39:25 -08004102 if (len >= PAGE_SIZE)
4103 return -EINVAL;
NeilBrown96de1e62005-11-08 21:39:39 -08004104 if (!conf)
4105 return -ENODEV;
NeilBrown3f294f42005-11-08 21:39:25 -08004106
Dan Williams4ef197d82008-04-28 02:15:54 -07004107 if (strict_strtoul(page, 10, &new))
NeilBrown3f294f42005-11-08 21:39:25 -08004108 return -EINVAL;
4109 if (new <= 16 || new > 32768)
4110 return -EINVAL;
4111 while (new < conf->max_nr_stripes) {
4112 if (drop_one_stripe(conf))
4113 conf->max_nr_stripes--;
4114 else
4115 break;
4116 }
Dan Williamsb5470dc2008-06-27 21:44:04 -07004117 err = md_allow_write(mddev);
4118 if (err)
4119 return err;
NeilBrown3f294f42005-11-08 21:39:25 -08004120 while (new > conf->max_nr_stripes) {
4121 if (grow_one_stripe(conf))
4122 conf->max_nr_stripes++;
4123 else break;
4124 }
4125 return len;
4126}
NeilBrown007583c2005-11-08 21:39:30 -08004127
NeilBrown96de1e62005-11-08 21:39:39 -08004128static struct md_sysfs_entry
4129raid5_stripecache_size = __ATTR(stripe_cache_size, S_IRUGO | S_IWUSR,
4130 raid5_show_stripe_cache_size,
4131 raid5_store_stripe_cache_size);
NeilBrown3f294f42005-11-08 21:39:25 -08004132
4133static ssize_t
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004134raid5_show_preread_threshold(mddev_t *mddev, char *page)
4135{
4136 raid5_conf_t *conf = mddev_to_conf(mddev);
4137 if (conf)
4138 return sprintf(page, "%d\n", conf->bypass_threshold);
4139 else
4140 return 0;
4141}
4142
4143static ssize_t
4144raid5_store_preread_threshold(mddev_t *mddev, const char *page, size_t len)
4145{
4146 raid5_conf_t *conf = mddev_to_conf(mddev);
Dan Williams4ef197d82008-04-28 02:15:54 -07004147 unsigned long new;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004148 if (len >= PAGE_SIZE)
4149 return -EINVAL;
4150 if (!conf)
4151 return -ENODEV;
4152
Dan Williams4ef197d82008-04-28 02:15:54 -07004153 if (strict_strtoul(page, 10, &new))
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004154 return -EINVAL;
Dan Williams4ef197d82008-04-28 02:15:54 -07004155 if (new > conf->max_nr_stripes)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004156 return -EINVAL;
4157 conf->bypass_threshold = new;
4158 return len;
4159}
4160
4161static struct md_sysfs_entry
4162raid5_preread_bypass_threshold = __ATTR(preread_bypass_threshold,
4163 S_IRUGO | S_IWUSR,
4164 raid5_show_preread_threshold,
4165 raid5_store_preread_threshold);
4166
4167static ssize_t
NeilBrown96de1e62005-11-08 21:39:39 -08004168stripe_cache_active_show(mddev_t *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08004169{
NeilBrown007583c2005-11-08 21:39:30 -08004170 raid5_conf_t *conf = mddev_to_conf(mddev);
NeilBrown96de1e62005-11-08 21:39:39 -08004171 if (conf)
4172 return sprintf(page, "%d\n", atomic_read(&conf->active_stripes));
4173 else
4174 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08004175}
4176
NeilBrown96de1e62005-11-08 21:39:39 -08004177static struct md_sysfs_entry
4178raid5_stripecache_active = __ATTR_RO(stripe_cache_active);
NeilBrown3f294f42005-11-08 21:39:25 -08004179
NeilBrown007583c2005-11-08 21:39:30 -08004180static struct attribute *raid5_attrs[] = {
NeilBrown3f294f42005-11-08 21:39:25 -08004181 &raid5_stripecache_size.attr,
4182 &raid5_stripecache_active.attr,
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004183 &raid5_preread_bypass_threshold.attr,
NeilBrown3f294f42005-11-08 21:39:25 -08004184 NULL,
4185};
NeilBrown007583c2005-11-08 21:39:30 -08004186static struct attribute_group raid5_attrs_group = {
4187 .name = NULL,
4188 .attrs = raid5_attrs,
NeilBrown3f294f42005-11-08 21:39:25 -08004189};
4190
Dan Williams80c3a6c2009-03-17 18:10:40 -07004191static sector_t
4192raid5_size(mddev_t *mddev, sector_t sectors, int raid_disks)
4193{
4194 raid5_conf_t *conf = mddev_to_conf(mddev);
4195
4196 if (!sectors)
4197 sectors = mddev->dev_sectors;
NeilBrown7ec05472009-03-31 15:10:36 +11004198 if (!raid_disks) {
4199 /* size is defined by the smallest of previous and new size */
4200 if (conf->raid_disks < conf->previous_raid_disks)
4201 raid_disks = conf->raid_disks;
4202 else
4203 raid_disks = conf->previous_raid_disks;
4204 }
Dan Williams80c3a6c2009-03-17 18:10:40 -07004205
4206 sectors &= ~((sector_t)mddev->chunk_size/512 - 1);
4207 return sectors * (raid_disks - conf->max_degraded);
4208}
4209
NeilBrown91adb562009-03-31 14:39:39 +11004210static raid5_conf_t *setup_conf(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211{
4212 raid5_conf_t *conf;
4213 int raid_disk, memory;
4214 mdk_rdev_t *rdev;
4215 struct disk_info *disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216
NeilBrown91adb562009-03-31 14:39:39 +11004217 if (mddev->new_level != 5
4218 && mddev->new_level != 4
4219 && mddev->new_level != 6) {
NeilBrown16a53ec2006-06-26 00:27:38 -07004220 printk(KERN_ERR "raid5: %s: raid level not set to 4/5/6 (%d)\n",
NeilBrown91adb562009-03-31 14:39:39 +11004221 mdname(mddev), mddev->new_level);
4222 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223 }
NeilBrown91adb562009-03-31 14:39:39 +11004224 if ((mddev->new_level == 5
4225 && !algorithm_valid_raid5(mddev->new_layout)) ||
4226 (mddev->new_level == 6
4227 && !algorithm_valid_raid6(mddev->new_layout))) {
NeilBrown99c0fb52009-03-31 14:39:38 +11004228 printk(KERN_ERR "raid5: %s: layout %d not supported\n",
NeilBrown91adb562009-03-31 14:39:39 +11004229 mdname(mddev), mddev->new_layout);
4230 return ERR_PTR(-EIO);
4231 }
4232 if (mddev->new_level == 6 && mddev->raid_disks < 4) {
4233 printk(KERN_ERR "raid6: not enough configured devices for %s (%d, minimum 4)\n",
4234 mdname(mddev), mddev->raid_disks);
4235 return ERR_PTR(-EINVAL);
NeilBrown99c0fb52009-03-31 14:39:38 +11004236 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237
NeilBrown91adb562009-03-31 14:39:39 +11004238 if (!mddev->new_chunk || mddev->new_chunk % PAGE_SIZE) {
4239 printk(KERN_ERR "raid5: invalid chunk size %d for %s\n",
4240 mddev->new_chunk, mdname(mddev));
4241 return ERR_PTR(-EINVAL);
NeilBrown4bbf3772008-10-13 11:55:12 +11004242 }
4243
NeilBrown91adb562009-03-31 14:39:39 +11004244 conf = kzalloc(sizeof(raid5_conf_t), GFP_KERNEL);
4245 if (conf == NULL)
4246 goto abort;
4247
4248 conf->raid_disks = mddev->raid_disks;
4249 if (mddev->reshape_position == MaxSector)
4250 conf->previous_raid_disks = mddev->raid_disks;
4251 else
4252 conf->previous_raid_disks = mddev->raid_disks - mddev->delta_disks;
4253
4254 conf->disks = kzalloc(conf->raid_disks * sizeof(struct disk_info),
4255 GFP_KERNEL);
4256 if (!conf->disks)
4257 goto abort;
4258
4259 conf->mddev = mddev;
4260
4261 if ((conf->stripe_hashtbl = kzalloc(PAGE_SIZE, GFP_KERNEL)) == NULL)
4262 goto abort;
4263
4264 if (mddev->new_level == 6) {
4265 conf->spare_page = alloc_page(GFP_KERNEL);
4266 if (!conf->spare_page)
4267 goto abort;
4268 }
4269 spin_lock_init(&conf->device_lock);
4270 init_waitqueue_head(&conf->wait_for_stripe);
4271 init_waitqueue_head(&conf->wait_for_overlap);
4272 INIT_LIST_HEAD(&conf->handle_list);
4273 INIT_LIST_HEAD(&conf->hold_list);
4274 INIT_LIST_HEAD(&conf->delayed_list);
4275 INIT_LIST_HEAD(&conf->bitmap_list);
4276 INIT_LIST_HEAD(&conf->inactive_list);
4277 atomic_set(&conf->active_stripes, 0);
4278 atomic_set(&conf->preread_active_stripes, 0);
4279 atomic_set(&conf->active_aligned_reads, 0);
4280 conf->bypass_threshold = BYPASS_THRESHOLD;
4281
4282 pr_debug("raid5: run(%s) called.\n", mdname(mddev));
4283
4284 list_for_each_entry(rdev, &mddev->disks, same_set) {
4285 raid_disk = rdev->raid_disk;
4286 if (raid_disk >= conf->raid_disks
4287 || raid_disk < 0)
4288 continue;
4289 disk = conf->disks + raid_disk;
4290
4291 disk->rdev = rdev;
4292
4293 if (test_bit(In_sync, &rdev->flags)) {
4294 char b[BDEVNAME_SIZE];
4295 printk(KERN_INFO "raid5: device %s operational as raid"
4296 " disk %d\n", bdevname(rdev->bdev,b),
4297 raid_disk);
4298 } else
4299 /* Cannot rely on bitmap to complete recovery */
4300 conf->fullsync = 1;
4301 }
4302
4303 conf->chunk_size = mddev->new_chunk;
4304 conf->level = mddev->new_level;
4305 if (conf->level == 6)
4306 conf->max_degraded = 2;
4307 else
4308 conf->max_degraded = 1;
4309 conf->algorithm = mddev->new_layout;
4310 conf->max_nr_stripes = NR_STRIPES;
NeilBrownfef9c612009-03-31 15:16:46 +11004311 conf->reshape_progress = mddev->reshape_position;
NeilBrown91adb562009-03-31 14:39:39 +11004312
4313 memory = conf->max_nr_stripes * (sizeof(struct stripe_head) +
4314 conf->raid_disks * ((sizeof(struct bio) + PAGE_SIZE))) / 1024;
4315 if (grow_stripes(conf, conf->max_nr_stripes)) {
4316 printk(KERN_ERR
4317 "raid5: couldn't allocate %dkB for buffers\n", memory);
4318 goto abort;
4319 } else
4320 printk(KERN_INFO "raid5: allocated %dkB for %s\n",
4321 memory, mdname(mddev));
4322
4323 conf->thread = md_register_thread(raid5d, mddev, "%s_raid5");
4324 if (!conf->thread) {
4325 printk(KERN_ERR
4326 "raid5: couldn't allocate thread for %s\n",
4327 mdname(mddev));
4328 goto abort;
4329 }
4330
4331 return conf;
4332
4333 abort:
4334 if (conf) {
4335 shrink_stripes(conf);
4336 safe_put_page(conf->spare_page);
4337 kfree(conf->disks);
4338 kfree(conf->stripe_hashtbl);
4339 kfree(conf);
4340 return ERR_PTR(-EIO);
4341 } else
4342 return ERR_PTR(-ENOMEM);
4343}
4344
4345static int run(mddev_t *mddev)
4346{
4347 raid5_conf_t *conf;
4348 int working_disks = 0;
4349 mdk_rdev_t *rdev;
4350
NeilBrownf6705572006-03-27 01:18:11 -08004351 if (mddev->reshape_position != MaxSector) {
4352 /* Check that we can continue the reshape.
4353 * Currently only disks can change, it must
4354 * increase, and we must be past the point where
4355 * a stripe over-writes itself
4356 */
4357 sector_t here_new, here_old;
4358 int old_disks;
Andre Noll18b00332009-03-31 15:00:56 +11004359 int max_degraded = (mddev->level == 6 ? 2 : 1);
NeilBrownf6705572006-03-27 01:18:11 -08004360
4361 if (mddev->new_level != mddev->level ||
4362 mddev->new_layout != mddev->layout ||
4363 mddev->new_chunk != mddev->chunk_size) {
NeilBrownf4168852007-02-28 20:11:53 -08004364 printk(KERN_ERR "raid5: %s: unsupported reshape "
4365 "required - aborting.\n",
NeilBrownf6705572006-03-27 01:18:11 -08004366 mdname(mddev));
4367 return -EINVAL;
4368 }
4369 if (mddev->delta_disks <= 0) {
NeilBrownf4168852007-02-28 20:11:53 -08004370 printk(KERN_ERR "raid5: %s: unsupported reshape "
4371 "(reduce disks) required - aborting.\n",
NeilBrownf6705572006-03-27 01:18:11 -08004372 mdname(mddev));
4373 return -EINVAL;
4374 }
4375 old_disks = mddev->raid_disks - mddev->delta_disks;
4376 /* reshape_position must be on a new-stripe boundary, and one
NeilBrownf4168852007-02-28 20:11:53 -08004377 * further up in new geometry must map after here in old
4378 * geometry.
NeilBrownf6705572006-03-27 01:18:11 -08004379 */
4380 here_new = mddev->reshape_position;
NeilBrownf4168852007-02-28 20:11:53 -08004381 if (sector_div(here_new, (mddev->chunk_size>>9)*
4382 (mddev->raid_disks - max_degraded))) {
4383 printk(KERN_ERR "raid5: reshape_position not "
4384 "on a stripe boundary\n");
NeilBrownf6705572006-03-27 01:18:11 -08004385 return -EINVAL;
4386 }
4387 /* here_new is the stripe we will write to */
4388 here_old = mddev->reshape_position;
NeilBrownf4168852007-02-28 20:11:53 -08004389 sector_div(here_old, (mddev->chunk_size>>9)*
4390 (old_disks-max_degraded));
4391 /* here_old is the first stripe that we might need to read
4392 * from */
NeilBrownf6705572006-03-27 01:18:11 -08004393 if (here_new >= here_old) {
4394 /* Reading from the same stripe as writing to - bad */
NeilBrownf4168852007-02-28 20:11:53 -08004395 printk(KERN_ERR "raid5: reshape_position too early for "
4396 "auto-recovery - aborting.\n");
NeilBrownf6705572006-03-27 01:18:11 -08004397 return -EINVAL;
4398 }
4399 printk(KERN_INFO "raid5: reshape will continue\n");
4400 /* OK, we should be able to continue; */
NeilBrownf6705572006-03-27 01:18:11 -08004401 } else {
NeilBrown91adb562009-03-31 14:39:39 +11004402 BUG_ON(mddev->level != mddev->new_level);
4403 BUG_ON(mddev->layout != mddev->new_layout);
4404 BUG_ON(mddev->chunk_size != mddev->new_chunk);
4405 BUG_ON(mddev->delta_disks != 0);
NeilBrownf6705572006-03-27 01:18:11 -08004406 }
4407
NeilBrown245f46c2009-03-31 14:39:39 +11004408 if (mddev->private == NULL)
4409 conf = setup_conf(mddev);
4410 else
4411 conf = mddev->private;
4412
NeilBrown91adb562009-03-31 14:39:39 +11004413 if (IS_ERR(conf))
4414 return PTR_ERR(conf);
NeilBrown9ffae0c2006-01-06 00:20:32 -08004415
NeilBrown91adb562009-03-31 14:39:39 +11004416 mddev->thread = conf->thread;
4417 conf->thread = NULL;
4418 mddev->private = conf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420 /*
NeilBrown16a53ec2006-06-26 00:27:38 -07004421 * 0 for a fully functional array, 1 or 2 for a degraded array.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004422 */
NeilBrown91adb562009-03-31 14:39:39 +11004423 list_for_each_entry(rdev, &mddev->disks, same_set)
4424 if (rdev->raid_disk >= 0 &&
4425 test_bit(In_sync, &rdev->flags))
4426 working_disks++;
4427
NeilBrown02c2de82006-10-03 01:15:47 -07004428 mddev->degraded = conf->raid_disks - working_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429
NeilBrown16a53ec2006-06-26 00:27:38 -07004430 if (mddev->degraded > conf->max_degraded) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431 printk(KERN_ERR "raid5: not enough operational devices for %s"
4432 " (%d/%d failed)\n",
NeilBrown02c2de82006-10-03 01:15:47 -07004433 mdname(mddev), mddev->degraded, conf->raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004434 goto abort;
4435 }
4436
NeilBrown91adb562009-03-31 14:39:39 +11004437 /* device size must be a multiple of chunk size */
4438 mddev->dev_sectors &= ~(mddev->chunk_size / 512 - 1);
4439 mddev->resync_max_sectors = mddev->dev_sectors;
4440
NeilBrown16a53ec2006-06-26 00:27:38 -07004441 if (mddev->degraded > 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442 mddev->recovery_cp != MaxSector) {
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08004443 if (mddev->ok_start_degraded)
4444 printk(KERN_WARNING
4445 "raid5: starting dirty degraded array: %s"
4446 "- data corruption possible.\n",
4447 mdname(mddev));
4448 else {
4449 printk(KERN_ERR
4450 "raid5: cannot start dirty degraded array for %s\n",
4451 mdname(mddev));
4452 goto abort;
4453 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004454 }
4455
Linus Torvalds1da177e2005-04-16 15:20:36 -07004456 if (mddev->degraded == 0)
4457 printk("raid5: raid level %d set %s active with %d out of %d"
4458 " devices, algorithm %d\n", conf->level, mdname(mddev),
4459 mddev->raid_disks-mddev->degraded, mddev->raid_disks,
4460 conf->algorithm);
4461 else
4462 printk(KERN_ALERT "raid5: raid level %d set %s active with %d"
4463 " out of %d devices, algorithm %d\n", conf->level,
4464 mdname(mddev), mddev->raid_disks - mddev->degraded,
4465 mddev->raid_disks, conf->algorithm);
4466
4467 print_raid5_conf(conf);
4468
NeilBrownfef9c612009-03-31 15:16:46 +11004469 if (conf->reshape_progress != MaxSector) {
NeilBrownf6705572006-03-27 01:18:11 -08004470 printk("...ok start reshape thread\n");
NeilBrownfef9c612009-03-31 15:16:46 +11004471 conf->reshape_safe = conf->reshape_progress;
NeilBrownf6705572006-03-27 01:18:11 -08004472 atomic_set(&conf->reshape_stripes, 0);
4473 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
4474 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
4475 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
4476 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
4477 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
4478 "%s_reshape");
NeilBrownf6705572006-03-27 01:18:11 -08004479 }
4480
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481 /* read-ahead size must cover two whole stripes, which is
NeilBrown16a53ec2006-06-26 00:27:38 -07004482 * 2 * (datadisks) * chunksize where 'n' is the number of raid devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07004483 */
4484 {
NeilBrown16a53ec2006-06-26 00:27:38 -07004485 int data_disks = conf->previous_raid_disks - conf->max_degraded;
4486 int stripe = data_disks *
NeilBrown8932c2e2006-06-26 00:27:36 -07004487 (mddev->chunk_size / PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488 if (mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
4489 mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
4490 }
4491
4492 /* Ok, everything is just fine now */
NeilBrown5e55e2f2007-03-26 21:32:14 -08004493 if (sysfs_create_group(&mddev->kobj, &raid5_attrs_group))
4494 printk(KERN_WARNING
4495 "raid5: failed to create sysfs attributes for %s\n",
4496 mdname(mddev));
NeilBrown7a5febe2005-05-16 21:53:16 -07004497
NeilBrown91adb562009-03-31 14:39:39 +11004498 mddev->queue->queue_lock = &conf->device_lock;
4499
NeilBrown7a5febe2005-05-16 21:53:16 -07004500 mddev->queue->unplug_fn = raid5_unplug_device;
NeilBrownf022b2f2006-10-03 01:15:56 -07004501 mddev->queue->backing_dev_info.congested_data = mddev;
NeilBrown041ae522007-03-26 21:32:14 -08004502 mddev->queue->backing_dev_info.congested_fn = raid5_congested;
NeilBrownf022b2f2006-10-03 01:15:56 -07004503
Dan Williams1f403622009-03-31 14:59:03 +11004504 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
NeilBrown7a5febe2005-05-16 21:53:16 -07004505
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08004506 blk_queue_merge_bvec(mddev->queue, raid5_mergeable_bvec);
4507
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508 return 0;
4509abort:
NeilBrowne0cf8f02009-03-31 14:39:39 +11004510 md_unregister_thread(mddev->thread);
NeilBrown91adb562009-03-31 14:39:39 +11004511 mddev->thread = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512 if (conf) {
NeilBrown91adb562009-03-31 14:39:39 +11004513 shrink_stripes(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514 print_raid5_conf(conf);
NeilBrown16a53ec2006-06-26 00:27:38 -07004515 safe_put_page(conf->spare_page);
NeilBrownb55e6bf2006-03-27 01:18:06 -08004516 kfree(conf->disks);
NeilBrownfccddba2006-01-06 00:20:33 -08004517 kfree(conf->stripe_hashtbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518 kfree(conf);
4519 }
4520 mddev->private = NULL;
4521 printk(KERN_ALERT "raid5: failed to run raid set %s\n", mdname(mddev));
4522 return -EIO;
4523}
4524
4525
4526
NeilBrown3f294f42005-11-08 21:39:25 -08004527static int stop(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528{
4529 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
4530
4531 md_unregister_thread(mddev->thread);
4532 mddev->thread = NULL;
4533 shrink_stripes(conf);
NeilBrownfccddba2006-01-06 00:20:33 -08004534 kfree(conf->stripe_hashtbl);
NeilBrown041ae522007-03-26 21:32:14 -08004535 mddev->queue->backing_dev_info.congested_fn = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536 blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/
NeilBrown007583c2005-11-08 21:39:30 -08004537 sysfs_remove_group(&mddev->kobj, &raid5_attrs_group);
NeilBrownb55e6bf2006-03-27 01:18:06 -08004538 kfree(conf->disks);
NeilBrown96de1e62005-11-08 21:39:39 -08004539 kfree(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004540 mddev->private = NULL;
4541 return 0;
4542}
4543
Dan Williams45b42332007-07-09 11:56:43 -07004544#ifdef DEBUG
NeilBrownd710e132008-10-13 11:55:12 +11004545static void print_sh(struct seq_file *seq, struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546{
4547 int i;
4548
NeilBrown16a53ec2006-06-26 00:27:38 -07004549 seq_printf(seq, "sh %llu, pd_idx %d, state %ld.\n",
4550 (unsigned long long)sh->sector, sh->pd_idx, sh->state);
4551 seq_printf(seq, "sh %llu, count %d.\n",
4552 (unsigned long long)sh->sector, atomic_read(&sh->count));
4553 seq_printf(seq, "sh %llu, ", (unsigned long long)sh->sector);
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004554 for (i = 0; i < sh->disks; i++) {
NeilBrown16a53ec2006-06-26 00:27:38 -07004555 seq_printf(seq, "(cache%d: %p %ld) ",
4556 i, sh->dev[i].page, sh->dev[i].flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004558 seq_printf(seq, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004559}
4560
NeilBrownd710e132008-10-13 11:55:12 +11004561static void printall(struct seq_file *seq, raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562{
4563 struct stripe_head *sh;
NeilBrownfccddba2006-01-06 00:20:33 -08004564 struct hlist_node *hn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565 int i;
4566
4567 spin_lock_irq(&conf->device_lock);
4568 for (i = 0; i < NR_HASH; i++) {
NeilBrownfccddba2006-01-06 00:20:33 -08004569 hlist_for_each_entry(sh, hn, &conf->stripe_hashtbl[i], hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570 if (sh->raid_conf != conf)
4571 continue;
NeilBrown16a53ec2006-06-26 00:27:38 -07004572 print_sh(seq, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573 }
4574 }
4575 spin_unlock_irq(&conf->device_lock);
4576}
4577#endif
4578
NeilBrownd710e132008-10-13 11:55:12 +11004579static void status(struct seq_file *seq, mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004580{
4581 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
4582 int i;
4583
4584 seq_printf (seq, " level %d, %dk chunk, algorithm %d", mddev->level, mddev->chunk_size >> 10, mddev->layout);
NeilBrown02c2de82006-10-03 01:15:47 -07004585 seq_printf (seq, " [%d/%d] [", conf->raid_disks, conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004586 for (i = 0; i < conf->raid_disks; i++)
4587 seq_printf (seq, "%s",
4588 conf->disks[i].rdev &&
NeilBrownb2d444d2005-11-08 21:39:31 -08004589 test_bit(In_sync, &conf->disks[i].rdev->flags) ? "U" : "_");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590 seq_printf (seq, "]");
Dan Williams45b42332007-07-09 11:56:43 -07004591#ifdef DEBUG
NeilBrown16a53ec2006-06-26 00:27:38 -07004592 seq_printf (seq, "\n");
4593 printall(seq, conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594#endif
4595}
4596
4597static void print_raid5_conf (raid5_conf_t *conf)
4598{
4599 int i;
4600 struct disk_info *tmp;
4601
4602 printk("RAID5 conf printout:\n");
4603 if (!conf) {
4604 printk("(conf==NULL)\n");
4605 return;
4606 }
NeilBrown02c2de82006-10-03 01:15:47 -07004607 printk(" --- rd:%d wd:%d\n", conf->raid_disks,
4608 conf->raid_disks - conf->mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609
4610 for (i = 0; i < conf->raid_disks; i++) {
4611 char b[BDEVNAME_SIZE];
4612 tmp = conf->disks + i;
4613 if (tmp->rdev)
4614 printk(" disk %d, o:%d, dev:%s\n",
NeilBrownb2d444d2005-11-08 21:39:31 -08004615 i, !test_bit(Faulty, &tmp->rdev->flags),
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616 bdevname(tmp->rdev->bdev,b));
4617 }
4618}
4619
4620static int raid5_spare_active(mddev_t *mddev)
4621{
4622 int i;
4623 raid5_conf_t *conf = mddev->private;
4624 struct disk_info *tmp;
4625
4626 for (i = 0; i < conf->raid_disks; i++) {
4627 tmp = conf->disks + i;
4628 if (tmp->rdev
NeilBrownb2d444d2005-11-08 21:39:31 -08004629 && !test_bit(Faulty, &tmp->rdev->flags)
NeilBrownc04be0a2006-10-03 01:15:53 -07004630 && !test_and_set_bit(In_sync, &tmp->rdev->flags)) {
4631 unsigned long flags;
4632 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633 mddev->degraded--;
NeilBrownc04be0a2006-10-03 01:15:53 -07004634 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635 }
4636 }
4637 print_raid5_conf(conf);
4638 return 0;
4639}
4640
4641static int raid5_remove_disk(mddev_t *mddev, int number)
4642{
4643 raid5_conf_t *conf = mddev->private;
4644 int err = 0;
4645 mdk_rdev_t *rdev;
4646 struct disk_info *p = conf->disks + number;
4647
4648 print_raid5_conf(conf);
4649 rdev = p->rdev;
4650 if (rdev) {
NeilBrownb2d444d2005-11-08 21:39:31 -08004651 if (test_bit(In_sync, &rdev->flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07004652 atomic_read(&rdev->nr_pending)) {
4653 err = -EBUSY;
4654 goto abort;
4655 }
NeilBrowndfc70642008-05-23 13:04:39 -07004656 /* Only remove non-faulty devices if recovery
4657 * isn't possible.
4658 */
4659 if (!test_bit(Faulty, &rdev->flags) &&
4660 mddev->degraded <= conf->max_degraded) {
4661 err = -EBUSY;
4662 goto abort;
4663 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004664 p->rdev = NULL;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07004665 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004666 if (atomic_read(&rdev->nr_pending)) {
4667 /* lost the race, try later */
4668 err = -EBUSY;
4669 p->rdev = rdev;
4670 }
4671 }
4672abort:
4673
4674 print_raid5_conf(conf);
4675 return err;
4676}
4677
4678static int raid5_add_disk(mddev_t *mddev, mdk_rdev_t *rdev)
4679{
4680 raid5_conf_t *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10004681 int err = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004682 int disk;
4683 struct disk_info *p;
Neil Brown6c2fce22008-06-28 08:31:31 +10004684 int first = 0;
4685 int last = conf->raid_disks - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004686
NeilBrown16a53ec2006-06-26 00:27:38 -07004687 if (mddev->degraded > conf->max_degraded)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688 /* no point adding a device */
Neil Brown199050e2008-06-28 08:31:33 +10004689 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004690
Neil Brown6c2fce22008-06-28 08:31:31 +10004691 if (rdev->raid_disk >= 0)
4692 first = last = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004693
4694 /*
NeilBrown16a53ec2006-06-26 00:27:38 -07004695 * find the disk ... but prefer rdev->saved_raid_disk
4696 * if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697 */
NeilBrown16a53ec2006-06-26 00:27:38 -07004698 if (rdev->saved_raid_disk >= 0 &&
Neil Brown6c2fce22008-06-28 08:31:31 +10004699 rdev->saved_raid_disk >= first &&
NeilBrown16a53ec2006-06-26 00:27:38 -07004700 conf->disks[rdev->saved_raid_disk].rdev == NULL)
4701 disk = rdev->saved_raid_disk;
4702 else
Neil Brown6c2fce22008-06-28 08:31:31 +10004703 disk = first;
4704 for ( ; disk <= last ; disk++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004705 if ((p=conf->disks + disk)->rdev == NULL) {
NeilBrownb2d444d2005-11-08 21:39:31 -08004706 clear_bit(In_sync, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004707 rdev->raid_disk = disk;
Neil Brown199050e2008-06-28 08:31:33 +10004708 err = 0;
NeilBrown72626682005-09-09 16:23:54 -07004709 if (rdev->saved_raid_disk != disk)
4710 conf->fullsync = 1;
Suzanne Woodd6065f72005-11-08 21:39:27 -08004711 rcu_assign_pointer(p->rdev, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712 break;
4713 }
4714 print_raid5_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10004715 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716}
4717
4718static int raid5_resize(mddev_t *mddev, sector_t sectors)
4719{
4720 /* no resync is happening, and there is enough space
4721 * on all devices, so we can resize.
4722 * We need to make sure resync covers any new space.
4723 * If the array is shrinking we should possibly wait until
4724 * any io in the removed space completes, but it hardly seems
4725 * worth it.
4726 */
4727 sectors &= ~((sector_t)mddev->chunk_size/512 - 1);
Dan Williams1f403622009-03-31 14:59:03 +11004728 md_set_array_sectors(mddev, raid5_size(mddev, sectors,
4729 mddev->raid_disks));
Dan Williamsb522adc2009-03-31 15:00:31 +11004730 if (mddev->array_sectors >
4731 raid5_size(mddev, sectors, mddev->raid_disks))
4732 return -EINVAL;
Andre Nollf233ea52008-07-21 17:05:22 +10004733 set_capacity(mddev->gendisk, mddev->array_sectors);
Linus Torvalds44ce6292007-05-09 18:51:36 -07004734 mddev->changed = 1;
Andre Noll58c0fed2009-03-31 14:33:13 +11004735 if (sectors > mddev->dev_sectors && mddev->recovery_cp == MaxSector) {
4736 mddev->recovery_cp = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004737 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
4738 }
Andre Noll58c0fed2009-03-31 14:33:13 +11004739 mddev->dev_sectors = sectors;
NeilBrown4b5c7ae2005-07-27 11:43:28 -07004740 mddev->resync_max_sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004741 return 0;
4742}
4743
NeilBrown29269552006-03-27 01:18:10 -08004744#ifdef CONFIG_MD_RAID5_RESHAPE
NeilBrown63c70c42006-03-27 01:18:13 -08004745static int raid5_check_reshape(mddev_t *mddev)
NeilBrown29269552006-03-27 01:18:10 -08004746{
4747 raid5_conf_t *conf = mddev_to_conf(mddev);
4748 int err;
NeilBrown29269552006-03-27 01:18:10 -08004749
NeilBrown63c70c42006-03-27 01:18:13 -08004750 if (mddev->delta_disks < 0 ||
4751 mddev->new_level != mddev->level)
4752 return -EINVAL; /* Cannot shrink array or change level yet */
4753 if (mddev->delta_disks == 0)
NeilBrown29269552006-03-27 01:18:10 -08004754 return 0; /* nothing to do */
NeilBrowndba034e2008-08-05 15:54:13 +10004755 if (mddev->bitmap)
4756 /* Cannot grow a bitmap yet */
4757 return -EBUSY;
NeilBrown29269552006-03-27 01:18:10 -08004758
4759 /* Can only proceed if there are plenty of stripe_heads.
4760 * We need a minimum of one full stripe,, and for sensible progress
4761 * it is best to have about 4 times that.
4762 * If we require 4 times, then the default 256 4K stripe_heads will
4763 * allow for chunk sizes up to 256K, which is probably OK.
4764 * If the chunk size is greater, user-space should request more
4765 * stripe_heads first.
4766 */
NeilBrown63c70c42006-03-27 01:18:13 -08004767 if ((mddev->chunk_size / STRIPE_SIZE) * 4 > conf->max_nr_stripes ||
4768 (mddev->new_chunk / STRIPE_SIZE) * 4 > conf->max_nr_stripes) {
NeilBrown29269552006-03-27 01:18:10 -08004769 printk(KERN_WARNING "raid5: reshape: not enough stripes. Needed %lu\n",
4770 (mddev->chunk_size / STRIPE_SIZE)*4);
4771 return -ENOSPC;
4772 }
4773
NeilBrown63c70c42006-03-27 01:18:13 -08004774 err = resize_stripes(conf, conf->raid_disks + mddev->delta_disks);
4775 if (err)
4776 return err;
4777
NeilBrownb4c4c7b2007-02-28 20:11:48 -08004778 if (mddev->degraded > conf->max_degraded)
4779 return -EINVAL;
NeilBrown63c70c42006-03-27 01:18:13 -08004780 /* looks like we might be able to manage this */
4781 return 0;
4782}
4783
4784static int raid5_start_reshape(mddev_t *mddev)
4785{
4786 raid5_conf_t *conf = mddev_to_conf(mddev);
4787 mdk_rdev_t *rdev;
NeilBrown63c70c42006-03-27 01:18:13 -08004788 int spares = 0;
4789 int added_devices = 0;
NeilBrownc04be0a2006-10-03 01:15:53 -07004790 unsigned long flags;
NeilBrown63c70c42006-03-27 01:18:13 -08004791
NeilBrownf4168852007-02-28 20:11:53 -08004792 if (test_bit(MD_RECOVERY_RUNNING, &mddev->recovery))
NeilBrown63c70c42006-03-27 01:18:13 -08004793 return -EBUSY;
4794
Cheng Renquan159ec1f2009-01-09 08:31:08 +11004795 list_for_each_entry(rdev, &mddev->disks, same_set)
NeilBrown29269552006-03-27 01:18:10 -08004796 if (rdev->raid_disk < 0 &&
4797 !test_bit(Faulty, &rdev->flags))
4798 spares++;
NeilBrown63c70c42006-03-27 01:18:13 -08004799
NeilBrownf4168852007-02-28 20:11:53 -08004800 if (spares - mddev->degraded < mddev->delta_disks - conf->max_degraded)
NeilBrown29269552006-03-27 01:18:10 -08004801 /* Not enough devices even to make a degraded array
4802 * of that size
4803 */
4804 return -EINVAL;
4805
NeilBrownf6705572006-03-27 01:18:11 -08004806 atomic_set(&conf->reshape_stripes, 0);
NeilBrown29269552006-03-27 01:18:10 -08004807 spin_lock_irq(&conf->device_lock);
4808 conf->previous_raid_disks = conf->raid_disks;
NeilBrown63c70c42006-03-27 01:18:13 -08004809 conf->raid_disks += mddev->delta_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11004810 if (mddev->delta_disks < 0)
4811 conf->reshape_progress = raid5_size(mddev, 0, 0);
4812 else
4813 conf->reshape_progress = 0;
4814 conf->reshape_safe = conf->reshape_progress;
NeilBrown29269552006-03-27 01:18:10 -08004815 spin_unlock_irq(&conf->device_lock);
4816
4817 /* Add some new drives, as many as will fit.
4818 * We know there are enough to make the newly sized array work.
4819 */
Cheng Renquan159ec1f2009-01-09 08:31:08 +11004820 list_for_each_entry(rdev, &mddev->disks, same_set)
NeilBrown29269552006-03-27 01:18:10 -08004821 if (rdev->raid_disk < 0 &&
4822 !test_bit(Faulty, &rdev->flags)) {
Neil Brown199050e2008-06-28 08:31:33 +10004823 if (raid5_add_disk(mddev, rdev) == 0) {
NeilBrown29269552006-03-27 01:18:10 -08004824 char nm[20];
4825 set_bit(In_sync, &rdev->flags);
NeilBrown29269552006-03-27 01:18:10 -08004826 added_devices++;
NeilBrown5fd6c1d2006-06-26 00:27:40 -07004827 rdev->recovery_offset = 0;
NeilBrown29269552006-03-27 01:18:10 -08004828 sprintf(nm, "rd%d", rdev->raid_disk);
NeilBrown5e55e2f2007-03-26 21:32:14 -08004829 if (sysfs_create_link(&mddev->kobj,
4830 &rdev->kobj, nm))
4831 printk(KERN_WARNING
4832 "raid5: failed to create "
4833 " link %s for %s\n",
4834 nm, mdname(mddev));
NeilBrown29269552006-03-27 01:18:10 -08004835 } else
4836 break;
4837 }
4838
NeilBrownc04be0a2006-10-03 01:15:53 -07004839 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrown63c70c42006-03-27 01:18:13 -08004840 mddev->degraded = (conf->raid_disks - conf->previous_raid_disks) - added_devices;
NeilBrownc04be0a2006-10-03 01:15:53 -07004841 spin_unlock_irqrestore(&conf->device_lock, flags);
NeilBrown63c70c42006-03-27 01:18:13 -08004842 mddev->raid_disks = conf->raid_disks;
NeilBrownf6705572006-03-27 01:18:11 -08004843 mddev->reshape_position = 0;
NeilBrown850b2b42006-10-03 01:15:46 -07004844 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrownf6705572006-03-27 01:18:11 -08004845
NeilBrown29269552006-03-27 01:18:10 -08004846 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
4847 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
4848 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
4849 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
4850 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
4851 "%s_reshape");
4852 if (!mddev->sync_thread) {
4853 mddev->recovery = 0;
4854 spin_lock_irq(&conf->device_lock);
4855 mddev->raid_disks = conf->raid_disks = conf->previous_raid_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11004856 conf->reshape_progress = MaxSector;
NeilBrown29269552006-03-27 01:18:10 -08004857 spin_unlock_irq(&conf->device_lock);
4858 return -EAGAIN;
4859 }
4860 md_wakeup_thread(mddev->sync_thread);
4861 md_new_event(mddev);
4862 return 0;
4863}
4864#endif
4865
4866static void end_reshape(raid5_conf_t *conf)
4867{
NeilBrown29269552006-03-27 01:18:10 -08004868
NeilBrownf6705572006-03-27 01:18:11 -08004869 if (!test_bit(MD_RECOVERY_INTR, &conf->mddev->recovery)) {
Dan Williams80c3a6c2009-03-17 18:10:40 -07004870
NeilBrownf6705572006-03-27 01:18:11 -08004871 spin_lock_irq(&conf->device_lock);
NeilBrowncea9c222009-03-31 15:15:05 +11004872 conf->previous_raid_disks = conf->raid_disks;
NeilBrownfef9c612009-03-31 15:16:46 +11004873 conf->reshape_progress = MaxSector;
NeilBrownf6705572006-03-27 01:18:11 -08004874 spin_unlock_irq(&conf->device_lock);
NeilBrown16a53ec2006-06-26 00:27:38 -07004875
4876 /* read-ahead size must cover two whole stripes, which is
4877 * 2 * (datadisks) * chunksize where 'n' is the number of raid devices
4878 */
4879 {
NeilBrowncea9c222009-03-31 15:15:05 +11004880 int data_disks = conf->raid_disks - conf->max_degraded;
4881 int stripe = data_disks * (conf->chunk_size
4882 / PAGE_SIZE);
NeilBrown16a53ec2006-06-26 00:27:38 -07004883 if (conf->mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
4884 conf->mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
4885 }
NeilBrown29269552006-03-27 01:18:10 -08004886 }
NeilBrown29269552006-03-27 01:18:10 -08004887}
4888
NeilBrowncea9c222009-03-31 15:15:05 +11004889static void raid5_finish_reshape(mddev_t *mddev)
4890{
4891 struct block_device *bdev;
4892
4893 if (!test_bit(MD_RECOVERY_INTR, &mddev->recovery)) {
4894
4895 md_set_array_sectors(mddev, raid5_size(mddev, 0, 0));
4896 set_capacity(mddev->gendisk, mddev->array_sectors);
4897 mddev->changed = 1;
4898 mddev->reshape_position = MaxSector;
4899
4900 bdev = bdget_disk(mddev->gendisk, 0);
4901 if (bdev) {
4902 mutex_lock(&bdev->bd_inode->i_mutex);
4903 i_size_write(bdev->bd_inode,
4904 (loff_t)mddev->array_sectors << 9);
4905 mutex_unlock(&bdev->bd_inode->i_mutex);
4906 bdput(bdev);
4907 }
4908 }
4909}
4910
NeilBrown72626682005-09-09 16:23:54 -07004911static void raid5_quiesce(mddev_t *mddev, int state)
4912{
4913 raid5_conf_t *conf = mddev_to_conf(mddev);
4914
4915 switch(state) {
NeilBrowne464eaf2006-03-27 01:18:14 -08004916 case 2: /* resume for a suspend */
4917 wake_up(&conf->wait_for_overlap);
4918 break;
4919
NeilBrown72626682005-09-09 16:23:54 -07004920 case 1: /* stop all writes */
4921 spin_lock_irq(&conf->device_lock);
4922 conf->quiesce = 1;
4923 wait_event_lock_irq(conf->wait_for_stripe,
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004924 atomic_read(&conf->active_stripes) == 0 &&
4925 atomic_read(&conf->active_aligned_reads) == 0,
NeilBrown72626682005-09-09 16:23:54 -07004926 conf->device_lock, /* nothing */);
4927 spin_unlock_irq(&conf->device_lock);
4928 break;
4929
4930 case 0: /* re-enable writes */
4931 spin_lock_irq(&conf->device_lock);
4932 conf->quiesce = 0;
4933 wake_up(&conf->wait_for_stripe);
NeilBrowne464eaf2006-03-27 01:18:14 -08004934 wake_up(&conf->wait_for_overlap);
NeilBrown72626682005-09-09 16:23:54 -07004935 spin_unlock_irq(&conf->device_lock);
4936 break;
4937 }
NeilBrown72626682005-09-09 16:23:54 -07004938}
NeilBrownb15c2e52006-01-06 00:20:16 -08004939
NeilBrownd562b0c2009-03-31 14:39:39 +11004940
4941static void *raid5_takeover_raid1(mddev_t *mddev)
4942{
4943 int chunksect;
4944
4945 if (mddev->raid_disks != 2 ||
4946 mddev->degraded > 1)
4947 return ERR_PTR(-EINVAL);
4948
4949 /* Should check if there are write-behind devices? */
4950
4951 chunksect = 64*2; /* 64K by default */
4952
4953 /* The array must be an exact multiple of chunksize */
4954 while (chunksect && (mddev->array_sectors & (chunksect-1)))
4955 chunksect >>= 1;
4956
4957 if ((chunksect<<9) < STRIPE_SIZE)
4958 /* array size does not allow a suitable chunk size */
4959 return ERR_PTR(-EINVAL);
4960
4961 mddev->new_level = 5;
4962 mddev->new_layout = ALGORITHM_LEFT_SYMMETRIC;
4963 mddev->new_chunk = chunksect << 9;
4964
4965 return setup_conf(mddev);
4966}
4967
NeilBrownfc9739c2009-03-31 14:57:20 +11004968static void *raid5_takeover_raid6(mddev_t *mddev)
4969{
4970 int new_layout;
4971
4972 switch (mddev->layout) {
4973 case ALGORITHM_LEFT_ASYMMETRIC_6:
4974 new_layout = ALGORITHM_LEFT_ASYMMETRIC;
4975 break;
4976 case ALGORITHM_RIGHT_ASYMMETRIC_6:
4977 new_layout = ALGORITHM_RIGHT_ASYMMETRIC;
4978 break;
4979 case ALGORITHM_LEFT_SYMMETRIC_6:
4980 new_layout = ALGORITHM_LEFT_SYMMETRIC;
4981 break;
4982 case ALGORITHM_RIGHT_SYMMETRIC_6:
4983 new_layout = ALGORITHM_RIGHT_SYMMETRIC;
4984 break;
4985 case ALGORITHM_PARITY_0_6:
4986 new_layout = ALGORITHM_PARITY_0;
4987 break;
4988 case ALGORITHM_PARITY_N:
4989 new_layout = ALGORITHM_PARITY_N;
4990 break;
4991 default:
4992 return ERR_PTR(-EINVAL);
4993 }
4994 mddev->new_level = 5;
4995 mddev->new_layout = new_layout;
4996 mddev->delta_disks = -1;
4997 mddev->raid_disks -= 1;
4998 return setup_conf(mddev);
4999}
5000
NeilBrownd562b0c2009-03-31 14:39:39 +11005001
NeilBrownb3546032009-03-31 14:56:41 +11005002static int raid5_reconfig(mddev_t *mddev, int new_layout, int new_chunk)
5003{
5004 /* Currently the layout and chunk size can only be changed
5005 * for a 2-drive raid array, as in that case no data shuffling
5006 * is required.
5007 * Later we might validate these and set new_* so a reshape
5008 * can complete the change.
5009 */
5010 raid5_conf_t *conf = mddev_to_conf(mddev);
5011
5012 if (new_layout >= 0 && !algorithm_valid_raid5(new_layout))
5013 return -EINVAL;
5014 if (new_chunk > 0) {
5015 if (new_chunk & (new_chunk-1))
5016 /* not a power of 2 */
5017 return -EINVAL;
5018 if (new_chunk < PAGE_SIZE)
5019 return -EINVAL;
5020 if (mddev->array_sectors & ((new_chunk>>9)-1))
5021 /* not factor of array size */
5022 return -EINVAL;
5023 }
5024
5025 /* They look valid */
5026
5027 if (mddev->raid_disks != 2)
5028 return -EINVAL;
5029
5030 if (new_layout >= 0) {
5031 conf->algorithm = new_layout;
5032 mddev->layout = mddev->new_layout = new_layout;
5033 }
5034 if (new_chunk > 0) {
5035 conf->chunk_size = new_chunk;
5036 mddev->chunk_size = mddev->new_chunk = new_chunk;
5037 }
5038 set_bit(MD_CHANGE_DEVS, &mddev->flags);
5039 md_wakeup_thread(mddev->thread);
5040 return 0;
5041}
5042
NeilBrownd562b0c2009-03-31 14:39:39 +11005043static void *raid5_takeover(mddev_t *mddev)
5044{
5045 /* raid5 can take over:
5046 * raid0 - if all devices are the same - make it a raid4 layout
5047 * raid1 - if there are two drives. We need to know the chunk size
5048 * raid4 - trivial - just use a raid4 layout.
5049 * raid6 - Providing it is a *_6 layout
5050 *
5051 * For now, just do raid1
5052 */
5053
5054 if (mddev->level == 1)
5055 return raid5_takeover_raid1(mddev);
NeilBrowne9d47582009-03-31 14:57:09 +11005056 if (mddev->level == 4) {
5057 mddev->new_layout = ALGORITHM_PARITY_N;
5058 mddev->new_level = 5;
5059 return setup_conf(mddev);
5060 }
NeilBrownfc9739c2009-03-31 14:57:20 +11005061 if (mddev->level == 6)
5062 return raid5_takeover_raid6(mddev);
NeilBrownd562b0c2009-03-31 14:39:39 +11005063
5064 return ERR_PTR(-EINVAL);
5065}
5066
5067
NeilBrown245f46c2009-03-31 14:39:39 +11005068static struct mdk_personality raid5_personality;
5069
5070static void *raid6_takeover(mddev_t *mddev)
5071{
5072 /* Currently can only take over a raid5. We map the
5073 * personality to an equivalent raid6 personality
5074 * with the Q block at the end.
5075 */
5076 int new_layout;
5077
5078 if (mddev->pers != &raid5_personality)
5079 return ERR_PTR(-EINVAL);
5080 if (mddev->degraded > 1)
5081 return ERR_PTR(-EINVAL);
5082 if (mddev->raid_disks > 253)
5083 return ERR_PTR(-EINVAL);
5084 if (mddev->raid_disks < 3)
5085 return ERR_PTR(-EINVAL);
5086
5087 switch (mddev->layout) {
5088 case ALGORITHM_LEFT_ASYMMETRIC:
5089 new_layout = ALGORITHM_LEFT_ASYMMETRIC_6;
5090 break;
5091 case ALGORITHM_RIGHT_ASYMMETRIC:
5092 new_layout = ALGORITHM_RIGHT_ASYMMETRIC_6;
5093 break;
5094 case ALGORITHM_LEFT_SYMMETRIC:
5095 new_layout = ALGORITHM_LEFT_SYMMETRIC_6;
5096 break;
5097 case ALGORITHM_RIGHT_SYMMETRIC:
5098 new_layout = ALGORITHM_RIGHT_SYMMETRIC_6;
5099 break;
5100 case ALGORITHM_PARITY_0:
5101 new_layout = ALGORITHM_PARITY_0_6;
5102 break;
5103 case ALGORITHM_PARITY_N:
5104 new_layout = ALGORITHM_PARITY_N;
5105 break;
5106 default:
5107 return ERR_PTR(-EINVAL);
5108 }
5109 mddev->new_level = 6;
5110 mddev->new_layout = new_layout;
5111 mddev->delta_disks = 1;
5112 mddev->raid_disks += 1;
5113 return setup_conf(mddev);
5114}
5115
5116
NeilBrown16a53ec2006-06-26 00:27:38 -07005117static struct mdk_personality raid6_personality =
5118{
5119 .name = "raid6",
5120 .level = 6,
5121 .owner = THIS_MODULE,
5122 .make_request = make_request,
5123 .run = run,
5124 .stop = stop,
5125 .status = status,
5126 .error_handler = error,
5127 .hot_add_disk = raid5_add_disk,
5128 .hot_remove_disk= raid5_remove_disk,
5129 .spare_active = raid5_spare_active,
5130 .sync_request = sync_request,
5131 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07005132 .size = raid5_size,
NeilBrownf4168852007-02-28 20:11:53 -08005133#ifdef CONFIG_MD_RAID5_RESHAPE
5134 .check_reshape = raid5_check_reshape,
5135 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11005136 .finish_reshape = raid5_finish_reshape,
NeilBrownf4168852007-02-28 20:11:53 -08005137#endif
NeilBrown16a53ec2006-06-26 00:27:38 -07005138 .quiesce = raid5_quiesce,
NeilBrown245f46c2009-03-31 14:39:39 +11005139 .takeover = raid6_takeover,
NeilBrown16a53ec2006-06-26 00:27:38 -07005140};
NeilBrown2604b702006-01-06 00:20:36 -08005141static struct mdk_personality raid5_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07005142{
5143 .name = "raid5",
NeilBrown2604b702006-01-06 00:20:36 -08005144 .level = 5,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005145 .owner = THIS_MODULE,
5146 .make_request = make_request,
5147 .run = run,
5148 .stop = stop,
5149 .status = status,
5150 .error_handler = error,
5151 .hot_add_disk = raid5_add_disk,
5152 .hot_remove_disk= raid5_remove_disk,
5153 .spare_active = raid5_spare_active,
5154 .sync_request = sync_request,
5155 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07005156 .size = raid5_size,
NeilBrown29269552006-03-27 01:18:10 -08005157#ifdef CONFIG_MD_RAID5_RESHAPE
NeilBrown63c70c42006-03-27 01:18:13 -08005158 .check_reshape = raid5_check_reshape,
5159 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11005160 .finish_reshape = raid5_finish_reshape,
NeilBrown29269552006-03-27 01:18:10 -08005161#endif
NeilBrown72626682005-09-09 16:23:54 -07005162 .quiesce = raid5_quiesce,
NeilBrownd562b0c2009-03-31 14:39:39 +11005163 .takeover = raid5_takeover,
NeilBrownb3546032009-03-31 14:56:41 +11005164 .reconfig = raid5_reconfig,
Linus Torvalds1da177e2005-04-16 15:20:36 -07005165};
5166
NeilBrown2604b702006-01-06 00:20:36 -08005167static struct mdk_personality raid4_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07005168{
NeilBrown2604b702006-01-06 00:20:36 -08005169 .name = "raid4",
5170 .level = 4,
5171 .owner = THIS_MODULE,
5172 .make_request = make_request,
5173 .run = run,
5174 .stop = stop,
5175 .status = status,
5176 .error_handler = error,
5177 .hot_add_disk = raid5_add_disk,
5178 .hot_remove_disk= raid5_remove_disk,
5179 .spare_active = raid5_spare_active,
5180 .sync_request = sync_request,
5181 .resize = raid5_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07005182 .size = raid5_size,
NeilBrown3d378902007-03-26 21:32:13 -08005183#ifdef CONFIG_MD_RAID5_RESHAPE
5184 .check_reshape = raid5_check_reshape,
5185 .start_reshape = raid5_start_reshape,
NeilBrowncea9c222009-03-31 15:15:05 +11005186 .finish_reshape = raid5_finish_reshape,
NeilBrown3d378902007-03-26 21:32:13 -08005187#endif
NeilBrown2604b702006-01-06 00:20:36 -08005188 .quiesce = raid5_quiesce,
5189};
5190
5191static int __init raid5_init(void)
5192{
NeilBrown16a53ec2006-06-26 00:27:38 -07005193 register_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08005194 register_md_personality(&raid5_personality);
5195 register_md_personality(&raid4_personality);
5196 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005197}
5198
NeilBrown2604b702006-01-06 00:20:36 -08005199static void raid5_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005200{
NeilBrown16a53ec2006-06-26 00:27:38 -07005201 unregister_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08005202 unregister_md_personality(&raid5_personality);
5203 unregister_md_personality(&raid4_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005204}
5205
5206module_init(raid5_init);
5207module_exit(raid5_exit);
5208MODULE_LICENSE("GPL");
5209MODULE_ALIAS("md-personality-4"); /* RAID5 */
NeilBrownd9d166c2006-01-06 00:20:51 -08005210MODULE_ALIAS("md-raid5");
5211MODULE_ALIAS("md-raid4");
NeilBrown2604b702006-01-06 00:20:36 -08005212MODULE_ALIAS("md-level-5");
5213MODULE_ALIAS("md-level-4");
NeilBrown16a53ec2006-06-26 00:27:38 -07005214MODULE_ALIAS("md-personality-8"); /* RAID6 */
5215MODULE_ALIAS("md-raid6");
5216MODULE_ALIAS("md-level-6");
5217
5218/* This used to be two separate modules, they were: */
5219MODULE_ALIAS("raid5");
5220MODULE_ALIAS("raid6");