blob: 56303ff3173072162871d6fdb57b897411055fd3 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <linux/module.h>
47#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <linux/highmem.h>
49#include <linux/bitops.h>
NeilBrownf6705572006-03-27 01:18:11 -080050#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <asm/atomic.h>
NeilBrown16a53ec2006-06-26 00:27:38 -070052#include "raid6.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
NeilBrown72626682005-09-09 16:23:54 -070054#include <linux/raid/bitmap.h>
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056/*
57 * Stripe cache
58 */
59
60#define NR_STRIPES 256
61#define STRIPE_SIZE PAGE_SIZE
62#define STRIPE_SHIFT (PAGE_SHIFT - 9)
63#define STRIPE_SECTORS (STRIPE_SIZE>>9)
64#define IO_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 */
83#define RAID5_DEBUG 0
84#define RAID5_PARANOIA 1
85#if RAID5_PARANOIA && defined(CONFIG_SMP)
86# define CHECK_DEVLOCK() assert_spin_locked(&conf->device_lock)
87#else
88# define CHECK_DEVLOCK()
89#endif
90
91#define PRINTK(x...) ((void)(RAID5_DEBUG && printk(x)))
92#if RAID5_DEBUG
93#define inline
94#define __inline__
95#endif
96
NeilBrown16a53ec2006-06-26 00:27:38 -070097#if !RAID6_USE_EMPTY_ZERO_PAGE
98/* In .bss so it's zeroed */
99const char raid6_empty_zero_page[PAGE_SIZE] __attribute__((aligned(256)));
100#endif
101
102static inline int raid6_next_disk(int disk, int raid_disks)
103{
104 disk++;
105 return (disk < raid_disks) ? disk : 0;
106}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107static void print_raid5_conf (raid5_conf_t *conf);
108
Arjan van de Ven858119e2006-01-14 13:20:43 -0800109static void __release_stripe(raid5_conf_t *conf, struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
111 if (atomic_dec_and_test(&sh->count)) {
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +0200112 BUG_ON(!list_empty(&sh->lru));
113 BUG_ON(atomic_read(&conf->active_stripes)==0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 if (test_bit(STRIPE_HANDLE, &sh->state)) {
NeilBrown7c785b72006-07-10 04:44:16 -0700115 if (test_bit(STRIPE_DELAYED, &sh->state)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 list_add_tail(&sh->lru, &conf->delayed_list);
NeilBrown7c785b72006-07-10 04:44:16 -0700117 blk_plug_device(conf->mddev->queue);
118 } else if (test_bit(STRIPE_BIT_DELAY, &sh->state) &&
NeilBrownae3c20c2006-07-10 04:44:17 -0700119 sh->bm_seq - conf->seq_write > 0) {
NeilBrown72626682005-09-09 16:23:54 -0700120 list_add_tail(&sh->lru, &conf->bitmap_list);
NeilBrown7c785b72006-07-10 04:44:16 -0700121 blk_plug_device(conf->mddev->queue);
122 } else {
NeilBrown72626682005-09-09 16:23:54 -0700123 clear_bit(STRIPE_BIT_DELAY, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 list_add_tail(&sh->lru, &conf->handle_list);
NeilBrown72626682005-09-09 16:23:54 -0700125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 md_wakeup_thread(conf->mddev->thread);
127 } else {
128 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
129 atomic_dec(&conf->preread_active_stripes);
130 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD)
131 md_wakeup_thread(conf->mddev->thread);
132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 atomic_dec(&conf->active_stripes);
NeilBrownccfcc3c2006-03-27 01:18:09 -0800134 if (!test_bit(STRIPE_EXPANDING, &sh->state)) {
135 list_add_tail(&sh->lru, &conf->inactive_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 wake_up(&conf->wait_for_stripe);
NeilBrownccfcc3c2006-03-27 01:18:09 -0800137 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 }
139 }
140}
141static void release_stripe(struct stripe_head *sh)
142{
143 raid5_conf_t *conf = sh->raid_conf;
144 unsigned long flags;
NeilBrown16a53ec2006-06-26 00:27:38 -0700145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 spin_lock_irqsave(&conf->device_lock, flags);
147 __release_stripe(conf, sh);
148 spin_unlock_irqrestore(&conf->device_lock, flags);
149}
150
NeilBrownfccddba2006-01-06 00:20:33 -0800151static inline void remove_hash(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
153 PRINTK("remove_hash(), stripe %llu\n", (unsigned long long)sh->sector);
154
NeilBrownfccddba2006-01-06 00:20:33 -0800155 hlist_del_init(&sh->hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157
NeilBrown16a53ec2006-06-26 00:27:38 -0700158static inline void insert_hash(raid5_conf_t *conf, struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
NeilBrownfccddba2006-01-06 00:20:33 -0800160 struct hlist_head *hp = stripe_hash(conf, sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 PRINTK("insert_hash(), stripe %llu\n", (unsigned long long)sh->sector);
163
164 CHECK_DEVLOCK();
NeilBrownfccddba2006-01-06 00:20:33 -0800165 hlist_add_head(&sh->hash, hp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166}
167
168
169/* find an idle stripe, make sure it is unhashed, and return it. */
170static struct stripe_head *get_free_stripe(raid5_conf_t *conf)
171{
172 struct stripe_head *sh = NULL;
173 struct list_head *first;
174
175 CHECK_DEVLOCK();
176 if (list_empty(&conf->inactive_list))
177 goto out;
178 first = conf->inactive_list.next;
179 sh = list_entry(first, struct stripe_head, lru);
180 list_del_init(first);
181 remove_hash(sh);
182 atomic_inc(&conf->active_stripes);
183out:
184 return sh;
185}
186
187static void shrink_buffers(struct stripe_head *sh, int num)
188{
189 struct page *p;
190 int i;
191
192 for (i=0; i<num ; i++) {
193 p = sh->dev[i].page;
194 if (!p)
195 continue;
196 sh->dev[i].page = NULL;
NeilBrown2d1f3b52006-01-06 00:20:31 -0800197 put_page(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 }
199}
200
201static int grow_buffers(struct stripe_head *sh, int num)
202{
203 int i;
204
205 for (i=0; i<num; i++) {
206 struct page *page;
207
208 if (!(page = alloc_page(GFP_KERNEL))) {
209 return 1;
210 }
211 sh->dev[i].page = page;
212 }
213 return 0;
214}
215
216static void raid5_build_block (struct stripe_head *sh, int i);
217
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800218static void init_stripe(struct stripe_head *sh, sector_t sector, int pd_idx, int disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
220 raid5_conf_t *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800221 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +0200223 BUG_ON(atomic_read(&sh->count) != 0);
224 BUG_ON(test_bit(STRIPE_HANDLE, &sh->state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 CHECK_DEVLOCK();
227 PRINTK("init_stripe called, stripe %llu\n",
228 (unsigned long long)sh->sector);
229
230 remove_hash(sh);
NeilBrown16a53ec2006-06-26 00:27:38 -0700231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 sh->sector = sector;
233 sh->pd_idx = pd_idx;
234 sh->state = 0;
235
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800236 sh->disks = disks;
237
238 for (i = sh->disks; i--; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 struct r5dev *dev = &sh->dev[i];
240
241 if (dev->toread || dev->towrite || dev->written ||
242 test_bit(R5_LOCKED, &dev->flags)) {
243 printk("sector=%llx i=%d %p %p %p %d\n",
244 (unsigned long long)sh->sector, i, dev->toread,
245 dev->towrite, dev->written,
246 test_bit(R5_LOCKED, &dev->flags));
247 BUG();
248 }
249 dev->flags = 0;
250 raid5_build_block(sh, i);
251 }
252 insert_hash(conf, sh);
253}
254
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800255static struct stripe_head *__find_stripe(raid5_conf_t *conf, sector_t sector, int disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
257 struct stripe_head *sh;
NeilBrownfccddba2006-01-06 00:20:33 -0800258 struct hlist_node *hn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260 CHECK_DEVLOCK();
261 PRINTK("__find_stripe, sector %llu\n", (unsigned long long)sector);
NeilBrownfccddba2006-01-06 00:20:33 -0800262 hlist_for_each_entry(sh, hn, stripe_hash(conf, sector), hash)
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800263 if (sh->sector == sector && sh->disks == disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 return sh;
265 PRINTK("__stripe %llu not in cache\n", (unsigned long long)sector);
266 return NULL;
267}
268
269static void unplug_slaves(mddev_t *mddev);
270static void raid5_unplug_device(request_queue_t *q);
271
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800272static struct stripe_head *get_active_stripe(raid5_conf_t *conf, sector_t sector, int disks,
273 int pd_idx, int noblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
275 struct stripe_head *sh;
276
277 PRINTK("get_stripe, sector %llu\n", (unsigned long long)sector);
278
279 spin_lock_irq(&conf->device_lock);
280
281 do {
NeilBrown72626682005-09-09 16:23:54 -0700282 wait_event_lock_irq(conf->wait_for_stripe,
283 conf->quiesce == 0,
284 conf->device_lock, /* nothing */);
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800285 sh = __find_stripe(conf, sector, disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 if (!sh) {
287 if (!conf->inactive_blocked)
288 sh = get_free_stripe(conf);
289 if (noblock && sh == NULL)
290 break;
291 if (!sh) {
292 conf->inactive_blocked = 1;
293 wait_event_lock_irq(conf->wait_for_stripe,
294 !list_empty(&conf->inactive_list) &&
NeilBrown50368052005-12-12 02:39:17 -0800295 (atomic_read(&conf->active_stripes)
296 < (conf->max_nr_stripes *3/4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 || !conf->inactive_blocked),
298 conf->device_lock,
NeilBrownf4370782006-07-10 04:44:14 -0700299 raid5_unplug_device(conf->mddev->queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 );
301 conf->inactive_blocked = 0;
302 } else
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800303 init_stripe(sh, sector, pd_idx, disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 } else {
305 if (atomic_read(&sh->count)) {
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +0200306 BUG_ON(!list_empty(&sh->lru));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 } else {
308 if (!test_bit(STRIPE_HANDLE, &sh->state))
309 atomic_inc(&conf->active_stripes);
NeilBrownff4e8d92006-07-10 04:44:16 -0700310 if (list_empty(&sh->lru) &&
311 !test_bit(STRIPE_EXPANDING, &sh->state))
NeilBrown16a53ec2006-06-26 00:27:38 -0700312 BUG();
313 list_del_init(&sh->lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 }
315 }
316 } while (sh == NULL);
317
318 if (sh)
319 atomic_inc(&sh->count);
320
321 spin_unlock_irq(&conf->device_lock);
322 return sh;
323}
324
NeilBrown3f294f42005-11-08 21:39:25 -0800325static int grow_one_stripe(raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
327 struct stripe_head *sh;
NeilBrown3f294f42005-11-08 21:39:25 -0800328 sh = kmem_cache_alloc(conf->slab_cache, GFP_KERNEL);
329 if (!sh)
330 return 0;
331 memset(sh, 0, sizeof(*sh) + (conf->raid_disks-1)*sizeof(struct r5dev));
332 sh->raid_conf = conf;
333 spin_lock_init(&sh->lock);
334
335 if (grow_buffers(sh, conf->raid_disks)) {
336 shrink_buffers(sh, conf->raid_disks);
337 kmem_cache_free(conf->slab_cache, sh);
338 return 0;
339 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800340 sh->disks = conf->raid_disks;
NeilBrown3f294f42005-11-08 21:39:25 -0800341 /* we just created an active stripe so... */
342 atomic_set(&sh->count, 1);
343 atomic_inc(&conf->active_stripes);
344 INIT_LIST_HEAD(&sh->lru);
345 release_stripe(sh);
346 return 1;
347}
348
349static int grow_stripes(raid5_conf_t *conf, int num)
350{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 kmem_cache_t *sc;
352 int devs = conf->raid_disks;
353
NeilBrownad01c9e2006-03-27 01:18:07 -0800354 sprintf(conf->cache_name[0], "raid5/%s", mdname(conf->mddev));
355 sprintf(conf->cache_name[1], "raid5/%s-alt", mdname(conf->mddev));
356 conf->active_name = 0;
357 sc = kmem_cache_create(conf->cache_name[conf->active_name],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 sizeof(struct stripe_head)+(devs-1)*sizeof(struct r5dev),
359 0, 0, NULL, NULL);
360 if (!sc)
361 return 1;
362 conf->slab_cache = sc;
NeilBrownad01c9e2006-03-27 01:18:07 -0800363 conf->pool_size = devs;
NeilBrown16a53ec2006-06-26 00:27:38 -0700364 while (num--)
NeilBrown3f294f42005-11-08 21:39:25 -0800365 if (!grow_one_stripe(conf))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return 0;
368}
NeilBrown29269552006-03-27 01:18:10 -0800369
370#ifdef CONFIG_MD_RAID5_RESHAPE
NeilBrownad01c9e2006-03-27 01:18:07 -0800371static int resize_stripes(raid5_conf_t *conf, int newsize)
372{
373 /* Make all the stripes able to hold 'newsize' devices.
374 * New slots in each stripe get 'page' set to a new page.
375 *
376 * This happens in stages:
377 * 1/ create a new kmem_cache and allocate the required number of
378 * stripe_heads.
379 * 2/ gather all the old stripe_heads and tranfer the pages across
380 * to the new stripe_heads. This will have the side effect of
381 * freezing the array as once all stripe_heads have been collected,
382 * no IO will be possible. Old stripe heads are freed once their
383 * pages have been transferred over, and the old kmem_cache is
384 * freed when all stripes are done.
385 * 3/ reallocate conf->disks to be suitable bigger. If this fails,
386 * we simple return a failre status - no need to clean anything up.
387 * 4/ allocate new pages for the new slots in the new stripe_heads.
388 * If this fails, we don't bother trying the shrink the
389 * stripe_heads down again, we just leave them as they are.
390 * As each stripe_head is processed the new one is released into
391 * active service.
392 *
393 * Once step2 is started, we cannot afford to wait for a write,
394 * so we use GFP_NOIO allocations.
395 */
396 struct stripe_head *osh, *nsh;
397 LIST_HEAD(newstripes);
398 struct disk_info *ndisks;
399 int err = 0;
400 kmem_cache_t *sc;
401 int i;
402
403 if (newsize <= conf->pool_size)
404 return 0; /* never bother to shrink */
405
406 /* Step 1 */
407 sc = kmem_cache_create(conf->cache_name[1-conf->active_name],
408 sizeof(struct stripe_head)+(newsize-1)*sizeof(struct r5dev),
409 0, 0, NULL, NULL);
410 if (!sc)
411 return -ENOMEM;
412
413 for (i = conf->max_nr_stripes; i; i--) {
414 nsh = kmem_cache_alloc(sc, GFP_KERNEL);
415 if (!nsh)
416 break;
417
418 memset(nsh, 0, sizeof(*nsh) + (newsize-1)*sizeof(struct r5dev));
419
420 nsh->raid_conf = conf;
421 spin_lock_init(&nsh->lock);
422
423 list_add(&nsh->lru, &newstripes);
424 }
425 if (i) {
426 /* didn't get enough, give up */
427 while (!list_empty(&newstripes)) {
428 nsh = list_entry(newstripes.next, struct stripe_head, lru);
429 list_del(&nsh->lru);
430 kmem_cache_free(sc, nsh);
431 }
432 kmem_cache_destroy(sc);
433 return -ENOMEM;
434 }
435 /* Step 2 - Must use GFP_NOIO now.
436 * OK, we have enough stripes, start collecting inactive
437 * stripes and copying them over
438 */
439 list_for_each_entry(nsh, &newstripes, lru) {
440 spin_lock_irq(&conf->device_lock);
441 wait_event_lock_irq(conf->wait_for_stripe,
442 !list_empty(&conf->inactive_list),
443 conf->device_lock,
NeilBrownb3b46be2006-03-27 01:18:16 -0800444 unplug_slaves(conf->mddev)
NeilBrownad01c9e2006-03-27 01:18:07 -0800445 );
446 osh = get_free_stripe(conf);
447 spin_unlock_irq(&conf->device_lock);
448 atomic_set(&nsh->count, 1);
449 for(i=0; i<conf->pool_size; i++)
450 nsh->dev[i].page = osh->dev[i].page;
451 for( ; i<newsize; i++)
452 nsh->dev[i].page = NULL;
453 kmem_cache_free(conf->slab_cache, osh);
454 }
455 kmem_cache_destroy(conf->slab_cache);
456
457 /* Step 3.
458 * At this point, we are holding all the stripes so the array
459 * is completely stalled, so now is a good time to resize
460 * conf->disks.
461 */
462 ndisks = kzalloc(newsize * sizeof(struct disk_info), GFP_NOIO);
463 if (ndisks) {
464 for (i=0; i<conf->raid_disks; i++)
465 ndisks[i] = conf->disks[i];
466 kfree(conf->disks);
467 conf->disks = ndisks;
468 } else
469 err = -ENOMEM;
470
471 /* Step 4, return new stripes to service */
472 while(!list_empty(&newstripes)) {
473 nsh = list_entry(newstripes.next, struct stripe_head, lru);
474 list_del_init(&nsh->lru);
475 for (i=conf->raid_disks; i < newsize; i++)
476 if (nsh->dev[i].page == NULL) {
477 struct page *p = alloc_page(GFP_NOIO);
478 nsh->dev[i].page = p;
479 if (!p)
480 err = -ENOMEM;
481 }
482 release_stripe(nsh);
483 }
484 /* critical section pass, GFP_NOIO no longer needed */
485
486 conf->slab_cache = sc;
487 conf->active_name = 1-conf->active_name;
488 conf->pool_size = newsize;
489 return err;
490}
NeilBrown29269552006-03-27 01:18:10 -0800491#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
NeilBrown3f294f42005-11-08 21:39:25 -0800493static int drop_one_stripe(raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
495 struct stripe_head *sh;
496
NeilBrown3f294f42005-11-08 21:39:25 -0800497 spin_lock_irq(&conf->device_lock);
498 sh = get_free_stripe(conf);
499 spin_unlock_irq(&conf->device_lock);
500 if (!sh)
501 return 0;
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +0200502 BUG_ON(atomic_read(&sh->count));
NeilBrownad01c9e2006-03-27 01:18:07 -0800503 shrink_buffers(sh, conf->pool_size);
NeilBrown3f294f42005-11-08 21:39:25 -0800504 kmem_cache_free(conf->slab_cache, sh);
505 atomic_dec(&conf->active_stripes);
506 return 1;
507}
508
509static void shrink_stripes(raid5_conf_t *conf)
510{
511 while (drop_one_stripe(conf))
512 ;
513
NeilBrown29fc7e32006-02-03 03:03:41 -0800514 if (conf->slab_cache)
515 kmem_cache_destroy(conf->slab_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 conf->slab_cache = NULL;
517}
518
NeilBrown4e5314b2005-11-08 21:39:22 -0800519static int raid5_end_read_request(struct bio * bi, unsigned int bytes_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 int error)
521{
522 struct stripe_head *sh = bi->bi_private;
523 raid5_conf_t *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800524 int disks = sh->disks, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
526
527 if (bi->bi_size)
528 return 1;
529
530 for (i=0 ; i<disks; i++)
531 if (bi == &sh->dev[i].req)
532 break;
533
534 PRINTK("end_read_request %llu/%d, count: %d, uptodate %d.\n",
535 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
536 uptodate);
537 if (i == disks) {
538 BUG();
539 return 0;
540 }
541
542 if (uptodate) {
543#if 0
544 struct bio *bio;
545 unsigned long flags;
546 spin_lock_irqsave(&conf->device_lock, flags);
547 /* we can return a buffer if we bypassed the cache or
548 * if the top buffer is not in highmem. If there are
549 * multiple buffers, leave the extra work to
550 * handle_stripe
551 */
552 buffer = sh->bh_read[i];
553 if (buffer &&
554 (!PageHighMem(buffer->b_page)
555 || buffer->b_page == bh->b_page )
556 ) {
557 sh->bh_read[i] = buffer->b_reqnext;
558 buffer->b_reqnext = NULL;
559 } else
560 buffer = NULL;
561 spin_unlock_irqrestore(&conf->device_lock, flags);
562 if (sh->bh_page[i]==bh->b_page)
563 set_buffer_uptodate(bh);
564 if (buffer) {
565 if (buffer->b_page != bh->b_page)
566 memcpy(buffer->b_data, bh->b_data, bh->b_size);
567 buffer->b_end_io(buffer, 1);
568 }
569#else
570 set_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrown4e5314b2005-11-08 21:39:22 -0800571#endif
572 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrown14f8d262006-01-06 00:20:14 -0800573 printk(KERN_INFO "raid5: read error corrected!!\n");
NeilBrown4e5314b2005-11-08 21:39:22 -0800574 clear_bit(R5_ReadError, &sh->dev[i].flags);
575 clear_bit(R5_ReWrite, &sh->dev[i].flags);
576 }
NeilBrownba22dcb2005-11-08 21:39:31 -0800577 if (atomic_read(&conf->disks[i].rdev->read_errors))
578 atomic_set(&conf->disks[i].rdev->read_errors, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 } else {
NeilBrownba22dcb2005-11-08 21:39:31 -0800580 int retry = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 clear_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrownba22dcb2005-11-08 21:39:31 -0800582 atomic_inc(&conf->disks[i].rdev->read_errors);
583 if (conf->mddev->degraded)
NeilBrown14f8d262006-01-06 00:20:14 -0800584 printk(KERN_WARNING "raid5: read error not correctable.\n");
NeilBrownba22dcb2005-11-08 21:39:31 -0800585 else if (test_bit(R5_ReWrite, &sh->dev[i].flags))
NeilBrown4e5314b2005-11-08 21:39:22 -0800586 /* Oh, no!!! */
NeilBrown14f8d262006-01-06 00:20:14 -0800587 printk(KERN_WARNING "raid5: read error NOT corrected!!\n");
NeilBrownba22dcb2005-11-08 21:39:31 -0800588 else if (atomic_read(&conf->disks[i].rdev->read_errors)
589 > conf->max_nr_stripes)
NeilBrown14f8d262006-01-06 00:20:14 -0800590 printk(KERN_WARNING
591 "raid5: Too many read errors, failing device.\n");
NeilBrownba22dcb2005-11-08 21:39:31 -0800592 else
593 retry = 1;
594 if (retry)
595 set_bit(R5_ReadError, &sh->dev[i].flags);
596 else {
NeilBrown4e5314b2005-11-08 21:39:22 -0800597 clear_bit(R5_ReadError, &sh->dev[i].flags);
598 clear_bit(R5_ReWrite, &sh->dev[i].flags);
599 md_error(conf->mddev, conf->disks[i].rdev);
NeilBrownba22dcb2005-11-08 21:39:31 -0800600 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 }
602 rdev_dec_pending(conf->disks[i].rdev, conf->mddev);
603#if 0
604 /* must restore b_page before unlocking buffer... */
605 if (sh->bh_page[i] != bh->b_page) {
606 bh->b_page = sh->bh_page[i];
607 bh->b_data = page_address(bh->b_page);
608 clear_buffer_uptodate(bh);
609 }
610#endif
611 clear_bit(R5_LOCKED, &sh->dev[i].flags);
612 set_bit(STRIPE_HANDLE, &sh->state);
613 release_stripe(sh);
614 return 0;
615}
616
617static int raid5_end_write_request (struct bio *bi, unsigned int bytes_done,
618 int error)
619{
620 struct stripe_head *sh = bi->bi_private;
621 raid5_conf_t *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800622 int disks = sh->disks, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 unsigned long flags;
624 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
625
626 if (bi->bi_size)
627 return 1;
628
629 for (i=0 ; i<disks; i++)
630 if (bi == &sh->dev[i].req)
631 break;
632
633 PRINTK("end_write_request %llu/%d, count %d, uptodate: %d.\n",
634 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
635 uptodate);
636 if (i == disks) {
637 BUG();
638 return 0;
639 }
640
641 spin_lock_irqsave(&conf->device_lock, flags);
642 if (!uptodate)
643 md_error(conf->mddev, conf->disks[i].rdev);
644
645 rdev_dec_pending(conf->disks[i].rdev, conf->mddev);
646
647 clear_bit(R5_LOCKED, &sh->dev[i].flags);
648 set_bit(STRIPE_HANDLE, &sh->state);
649 __release_stripe(conf, sh);
650 spin_unlock_irqrestore(&conf->device_lock, flags);
651 return 0;
652}
653
654
655static sector_t compute_blocknr(struct stripe_head *sh, int i);
656
657static void raid5_build_block (struct stripe_head *sh, int i)
658{
659 struct r5dev *dev = &sh->dev[i];
660
661 bio_init(&dev->req);
662 dev->req.bi_io_vec = &dev->vec;
663 dev->req.bi_vcnt++;
664 dev->req.bi_max_vecs++;
665 dev->vec.bv_page = dev->page;
666 dev->vec.bv_len = STRIPE_SIZE;
667 dev->vec.bv_offset = 0;
668
669 dev->req.bi_sector = sh->sector;
670 dev->req.bi_private = sh;
671
672 dev->flags = 0;
NeilBrown16a53ec2006-06-26 00:27:38 -0700673 dev->sector = compute_blocknr(sh, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674}
675
676static void error(mddev_t *mddev, mdk_rdev_t *rdev)
677{
678 char b[BDEVNAME_SIZE];
679 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
680 PRINTK("raid5: error called\n");
681
NeilBrownb2d444d2005-11-08 21:39:31 -0800682 if (!test_bit(Faulty, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 mddev->sb_dirty = 1;
NeilBrownb2d444d2005-11-08 21:39:31 -0800684 if (test_bit(In_sync, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 conf->working_disks--;
686 mddev->degraded++;
687 conf->failed_disks++;
NeilBrownb2d444d2005-11-08 21:39:31 -0800688 clear_bit(In_sync, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 /*
690 * if recovery was running, make sure it aborts.
691 */
692 set_bit(MD_RECOVERY_ERR, &mddev->recovery);
693 }
NeilBrownb2d444d2005-11-08 21:39:31 -0800694 set_bit(Faulty, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 printk (KERN_ALERT
696 "raid5: Disk failure on %s, disabling device."
697 " Operation continuing on %d devices\n",
698 bdevname(rdev->bdev,b), conf->working_disks);
699 }
NeilBrown16a53ec2006-06-26 00:27:38 -0700700}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
702/*
703 * Input: a 'big' sector number,
704 * Output: index of the data and parity disk, and the sector # in them.
705 */
706static sector_t raid5_compute_sector(sector_t r_sector, unsigned int raid_disks,
707 unsigned int data_disks, unsigned int * dd_idx,
708 unsigned int * pd_idx, raid5_conf_t *conf)
709{
710 long stripe;
711 unsigned long chunk_number;
712 unsigned int chunk_offset;
713 sector_t new_sector;
714 int sectors_per_chunk = conf->chunk_size >> 9;
715
716 /* First compute the information on this sector */
717
718 /*
719 * Compute the chunk number and the sector offset inside the chunk
720 */
721 chunk_offset = sector_div(r_sector, sectors_per_chunk);
722 chunk_number = r_sector;
723 BUG_ON(r_sector != chunk_number);
724
725 /*
726 * Compute the stripe number
727 */
728 stripe = chunk_number / data_disks;
729
730 /*
731 * Compute the data disk and parity disk indexes inside the stripe
732 */
733 *dd_idx = chunk_number % data_disks;
734
735 /*
736 * Select the parity disk based on the user selected algorithm.
737 */
NeilBrown16a53ec2006-06-26 00:27:38 -0700738 switch(conf->level) {
739 case 4:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 *pd_idx = data_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -0700741 break;
742 case 5:
743 switch (conf->algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 case ALGORITHM_LEFT_ASYMMETRIC:
745 *pd_idx = data_disks - stripe % raid_disks;
746 if (*dd_idx >= *pd_idx)
747 (*dd_idx)++;
748 break;
749 case ALGORITHM_RIGHT_ASYMMETRIC:
750 *pd_idx = stripe % raid_disks;
751 if (*dd_idx >= *pd_idx)
752 (*dd_idx)++;
753 break;
754 case ALGORITHM_LEFT_SYMMETRIC:
755 *pd_idx = data_disks - stripe % raid_disks;
756 *dd_idx = (*pd_idx + 1 + *dd_idx) % raid_disks;
757 break;
758 case ALGORITHM_RIGHT_SYMMETRIC:
759 *pd_idx = stripe % raid_disks;
760 *dd_idx = (*pd_idx + 1 + *dd_idx) % raid_disks;
761 break;
762 default:
NeilBrown14f8d262006-01-06 00:20:14 -0800763 printk(KERN_ERR "raid5: unsupported algorithm %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 conf->algorithm);
NeilBrown16a53ec2006-06-26 00:27:38 -0700765 }
766 break;
767 case 6:
768
769 /**** FIX THIS ****/
770 switch (conf->algorithm) {
771 case ALGORITHM_LEFT_ASYMMETRIC:
772 *pd_idx = raid_disks - 1 - (stripe % raid_disks);
773 if (*pd_idx == raid_disks-1)
774 (*dd_idx)++; /* Q D D D P */
775 else if (*dd_idx >= *pd_idx)
776 (*dd_idx) += 2; /* D D P Q D */
777 break;
778 case ALGORITHM_RIGHT_ASYMMETRIC:
779 *pd_idx = stripe % raid_disks;
780 if (*pd_idx == raid_disks-1)
781 (*dd_idx)++; /* Q D D D P */
782 else if (*dd_idx >= *pd_idx)
783 (*dd_idx) += 2; /* D D P Q D */
784 break;
785 case ALGORITHM_LEFT_SYMMETRIC:
786 *pd_idx = raid_disks - 1 - (stripe % raid_disks);
787 *dd_idx = (*pd_idx + 2 + *dd_idx) % raid_disks;
788 break;
789 case ALGORITHM_RIGHT_SYMMETRIC:
790 *pd_idx = stripe % raid_disks;
791 *dd_idx = (*pd_idx + 2 + *dd_idx) % raid_disks;
792 break;
793 default:
794 printk (KERN_CRIT "raid6: unsupported algorithm %d\n",
795 conf->algorithm);
796 }
797 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 }
799
800 /*
801 * Finally, compute the new sector number
802 */
803 new_sector = (sector_t)stripe * sectors_per_chunk + chunk_offset;
804 return new_sector;
805}
806
807
808static sector_t compute_blocknr(struct stripe_head *sh, int i)
809{
810 raid5_conf_t *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800811 int raid_disks = sh->disks, data_disks = raid_disks - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 sector_t new_sector = sh->sector, check;
813 int sectors_per_chunk = conf->chunk_size >> 9;
814 sector_t stripe;
815 int chunk_offset;
816 int chunk_number, dummy1, dummy2, dd_idx = i;
817 sector_t r_sector;
818
NeilBrown16a53ec2006-06-26 00:27:38 -0700819
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 chunk_offset = sector_div(new_sector, sectors_per_chunk);
821 stripe = new_sector;
822 BUG_ON(new_sector != stripe);
823
NeilBrown16a53ec2006-06-26 00:27:38 -0700824 if (i == sh->pd_idx)
825 return 0;
826 switch(conf->level) {
827 case 4: break;
828 case 5:
829 switch (conf->algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 case ALGORITHM_LEFT_ASYMMETRIC:
831 case ALGORITHM_RIGHT_ASYMMETRIC:
832 if (i > sh->pd_idx)
833 i--;
834 break;
835 case ALGORITHM_LEFT_SYMMETRIC:
836 case ALGORITHM_RIGHT_SYMMETRIC:
837 if (i < sh->pd_idx)
838 i += raid_disks;
839 i -= (sh->pd_idx + 1);
840 break;
841 default:
NeilBrown14f8d262006-01-06 00:20:14 -0800842 printk(KERN_ERR "raid5: unsupported algorithm %d\n",
NeilBrown16a53ec2006-06-26 00:27:38 -0700843 conf->algorithm);
844 }
845 break;
846 case 6:
847 data_disks = raid_disks - 2;
848 if (i == raid6_next_disk(sh->pd_idx, raid_disks))
849 return 0; /* It is the Q disk */
850 switch (conf->algorithm) {
851 case ALGORITHM_LEFT_ASYMMETRIC:
852 case ALGORITHM_RIGHT_ASYMMETRIC:
853 if (sh->pd_idx == raid_disks-1)
854 i--; /* Q D D D P */
855 else if (i > sh->pd_idx)
856 i -= 2; /* D D P Q D */
857 break;
858 case ALGORITHM_LEFT_SYMMETRIC:
859 case ALGORITHM_RIGHT_SYMMETRIC:
860 if (sh->pd_idx == raid_disks-1)
861 i--; /* Q D D D P */
862 else {
863 /* D D P Q D */
864 if (i < sh->pd_idx)
865 i += raid_disks;
866 i -= (sh->pd_idx + 2);
867 }
868 break;
869 default:
870 printk (KERN_CRIT "raid6: unsupported algorithm %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 conf->algorithm);
NeilBrown16a53ec2006-06-26 00:27:38 -0700872 }
873 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 }
875
876 chunk_number = stripe * data_disks + i;
877 r_sector = (sector_t)chunk_number * sectors_per_chunk + chunk_offset;
878
879 check = raid5_compute_sector (r_sector, raid_disks, data_disks, &dummy1, &dummy2, conf);
880 if (check != sh->sector || dummy1 != dd_idx || dummy2 != sh->pd_idx) {
NeilBrown14f8d262006-01-06 00:20:14 -0800881 printk(KERN_ERR "compute_blocknr: map not correct\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 return 0;
883 }
884 return r_sector;
885}
886
887
888
889/*
NeilBrown16a53ec2006-06-26 00:27:38 -0700890 * Copy data between a page in the stripe cache, and one or more bion
891 * The page could align with the middle of the bio, or there could be
892 * several bion, each with several bio_vecs, which cover part of the page
893 * Multiple bion are linked together on bi_next. There may be extras
894 * at the end of this list. We ignore them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 */
896static void copy_data(int frombio, struct bio *bio,
897 struct page *page,
898 sector_t sector)
899{
900 char *pa = page_address(page);
901 struct bio_vec *bvl;
902 int i;
903 int page_offset;
904
905 if (bio->bi_sector >= sector)
906 page_offset = (signed)(bio->bi_sector - sector) * 512;
907 else
908 page_offset = (signed)(sector - bio->bi_sector) * -512;
909 bio_for_each_segment(bvl, bio, i) {
910 int len = bio_iovec_idx(bio,i)->bv_len;
911 int clen;
912 int b_offset = 0;
913
914 if (page_offset < 0) {
915 b_offset = -page_offset;
916 page_offset += b_offset;
917 len -= b_offset;
918 }
919
920 if (len > 0 && page_offset + len > STRIPE_SIZE)
921 clen = STRIPE_SIZE - page_offset;
922 else clen = len;
NeilBrown16a53ec2006-06-26 00:27:38 -0700923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 if (clen > 0) {
925 char *ba = __bio_kmap_atomic(bio, i, KM_USER0);
926 if (frombio)
927 memcpy(pa+page_offset, ba+b_offset, clen);
928 else
929 memcpy(ba+b_offset, pa+page_offset, clen);
930 __bio_kunmap_atomic(ba, KM_USER0);
931 }
932 if (clen < len) /* hit end of page */
933 break;
934 page_offset += len;
935 }
936}
937
938#define check_xor() do { \
939 if (count == MAX_XOR_BLOCKS) { \
940 xor_block(count, STRIPE_SIZE, ptr); \
941 count = 1; \
942 } \
943 } while(0)
944
945
946static void compute_block(struct stripe_head *sh, int dd_idx)
947{
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800948 int i, count, disks = sh->disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 void *ptr[MAX_XOR_BLOCKS], *p;
950
951 PRINTK("compute_block, stripe %llu, idx %d\n",
952 (unsigned long long)sh->sector, dd_idx);
953
954 ptr[0] = page_address(sh->dev[dd_idx].page);
955 memset(ptr[0], 0, STRIPE_SIZE);
956 count = 1;
957 for (i = disks ; i--; ) {
958 if (i == dd_idx)
959 continue;
960 p = page_address(sh->dev[i].page);
961 if (test_bit(R5_UPTODATE, &sh->dev[i].flags))
962 ptr[count++] = p;
963 else
NeilBrown14f8d262006-01-06 00:20:14 -0800964 printk(KERN_ERR "compute_block() %d, stripe %llu, %d"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 " not present\n", dd_idx,
966 (unsigned long long)sh->sector, i);
967
968 check_xor();
969 }
970 if (count != 1)
971 xor_block(count, STRIPE_SIZE, ptr);
972 set_bit(R5_UPTODATE, &sh->dev[dd_idx].flags);
973}
974
NeilBrown16a53ec2006-06-26 00:27:38 -0700975static void compute_parity5(struct stripe_head *sh, int method)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976{
977 raid5_conf_t *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800978 int i, pd_idx = sh->pd_idx, disks = sh->disks, count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 void *ptr[MAX_XOR_BLOCKS];
980 struct bio *chosen;
981
NeilBrown16a53ec2006-06-26 00:27:38 -0700982 PRINTK("compute_parity5, stripe %llu, method %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 (unsigned long long)sh->sector, method);
984
985 count = 1;
986 ptr[0] = page_address(sh->dev[pd_idx].page);
987 switch(method) {
988 case READ_MODIFY_WRITE:
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +0200989 BUG_ON(!test_bit(R5_UPTODATE, &sh->dev[pd_idx].flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 for (i=disks ; i-- ;) {
991 if (i==pd_idx)
992 continue;
993 if (sh->dev[i].towrite &&
994 test_bit(R5_UPTODATE, &sh->dev[i].flags)) {
995 ptr[count++] = page_address(sh->dev[i].page);
996 chosen = sh->dev[i].towrite;
997 sh->dev[i].towrite = NULL;
998
999 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
1000 wake_up(&conf->wait_for_overlap);
1001
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02001002 BUG_ON(sh->dev[i].written);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 sh->dev[i].written = chosen;
1004 check_xor();
1005 }
1006 }
1007 break;
1008 case RECONSTRUCT_WRITE:
1009 memset(ptr[0], 0, STRIPE_SIZE);
1010 for (i= disks; i-- ;)
1011 if (i!=pd_idx && sh->dev[i].towrite) {
1012 chosen = sh->dev[i].towrite;
1013 sh->dev[i].towrite = NULL;
1014
1015 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
1016 wake_up(&conf->wait_for_overlap);
1017
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02001018 BUG_ON(sh->dev[i].written);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 sh->dev[i].written = chosen;
1020 }
1021 break;
1022 case CHECK_PARITY:
1023 break;
1024 }
1025 if (count>1) {
1026 xor_block(count, STRIPE_SIZE, ptr);
1027 count = 1;
1028 }
1029
1030 for (i = disks; i--;)
1031 if (sh->dev[i].written) {
1032 sector_t sector = sh->dev[i].sector;
1033 struct bio *wbi = sh->dev[i].written;
1034 while (wbi && wbi->bi_sector < sector + STRIPE_SECTORS) {
1035 copy_data(1, wbi, sh->dev[i].page, sector);
1036 wbi = r5_next_bio(wbi, sector);
1037 }
1038
1039 set_bit(R5_LOCKED, &sh->dev[i].flags);
1040 set_bit(R5_UPTODATE, &sh->dev[i].flags);
1041 }
1042
1043 switch(method) {
1044 case RECONSTRUCT_WRITE:
1045 case CHECK_PARITY:
1046 for (i=disks; i--;)
1047 if (i != pd_idx) {
1048 ptr[count++] = page_address(sh->dev[i].page);
1049 check_xor();
1050 }
1051 break;
1052 case READ_MODIFY_WRITE:
1053 for (i = disks; i--;)
1054 if (sh->dev[i].written) {
1055 ptr[count++] = page_address(sh->dev[i].page);
1056 check_xor();
1057 }
1058 }
1059 if (count != 1)
1060 xor_block(count, STRIPE_SIZE, ptr);
1061
1062 if (method != CHECK_PARITY) {
1063 set_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
1064 set_bit(R5_LOCKED, &sh->dev[pd_idx].flags);
1065 } else
1066 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
1067}
1068
NeilBrown16a53ec2006-06-26 00:27:38 -07001069static void compute_parity6(struct stripe_head *sh, int method)
1070{
1071 raid6_conf_t *conf = sh->raid_conf;
1072 int i, pd_idx = sh->pd_idx, qd_idx, d0_idx, disks = conf->raid_disks, count;
1073 struct bio *chosen;
1074 /**** FIX THIS: This could be very bad if disks is close to 256 ****/
1075 void *ptrs[disks];
1076
1077 qd_idx = raid6_next_disk(pd_idx, disks);
1078 d0_idx = raid6_next_disk(qd_idx, disks);
1079
1080 PRINTK("compute_parity, stripe %llu, method %d\n",
1081 (unsigned long long)sh->sector, method);
1082
1083 switch(method) {
1084 case READ_MODIFY_WRITE:
1085 BUG(); /* READ_MODIFY_WRITE N/A for RAID-6 */
1086 case RECONSTRUCT_WRITE:
1087 for (i= disks; i-- ;)
1088 if ( i != pd_idx && i != qd_idx && sh->dev[i].towrite ) {
1089 chosen = sh->dev[i].towrite;
1090 sh->dev[i].towrite = NULL;
1091
1092 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
1093 wake_up(&conf->wait_for_overlap);
1094
1095 if (sh->dev[i].written) BUG();
1096 sh->dev[i].written = chosen;
1097 }
1098 break;
1099 case CHECK_PARITY:
1100 BUG(); /* Not implemented yet */
1101 }
1102
1103 for (i = disks; i--;)
1104 if (sh->dev[i].written) {
1105 sector_t sector = sh->dev[i].sector;
1106 struct bio *wbi = sh->dev[i].written;
1107 while (wbi && wbi->bi_sector < sector + STRIPE_SECTORS) {
1108 copy_data(1, wbi, sh->dev[i].page, sector);
1109 wbi = r5_next_bio(wbi, sector);
1110 }
1111
1112 set_bit(R5_LOCKED, &sh->dev[i].flags);
1113 set_bit(R5_UPTODATE, &sh->dev[i].flags);
1114 }
1115
1116// switch(method) {
1117// case RECONSTRUCT_WRITE:
1118// case CHECK_PARITY:
1119// case UPDATE_PARITY:
1120 /* Note that unlike RAID-5, the ordering of the disks matters greatly. */
1121 /* FIX: Is this ordering of drives even remotely optimal? */
1122 count = 0;
1123 i = d0_idx;
1124 do {
1125 ptrs[count++] = page_address(sh->dev[i].page);
1126 if (count <= disks-2 && !test_bit(R5_UPTODATE, &sh->dev[i].flags))
1127 printk("block %d/%d not uptodate on parity calc\n", i,count);
1128 i = raid6_next_disk(i, disks);
1129 } while ( i != d0_idx );
1130// break;
1131// }
1132
1133 raid6_call.gen_syndrome(disks, STRIPE_SIZE, ptrs);
1134
1135 switch(method) {
1136 case RECONSTRUCT_WRITE:
1137 set_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
1138 set_bit(R5_UPTODATE, &sh->dev[qd_idx].flags);
1139 set_bit(R5_LOCKED, &sh->dev[pd_idx].flags);
1140 set_bit(R5_LOCKED, &sh->dev[qd_idx].flags);
1141 break;
1142 case UPDATE_PARITY:
1143 set_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
1144 set_bit(R5_UPTODATE, &sh->dev[qd_idx].flags);
1145 break;
1146 }
1147}
1148
1149
1150/* Compute one missing block */
1151static void compute_block_1(struct stripe_head *sh, int dd_idx, int nozero)
1152{
1153 raid6_conf_t *conf = sh->raid_conf;
1154 int i, count, disks = conf->raid_disks;
1155 void *ptr[MAX_XOR_BLOCKS], *p;
1156 int pd_idx = sh->pd_idx;
1157 int qd_idx = raid6_next_disk(pd_idx, disks);
1158
1159 PRINTK("compute_block_1, stripe %llu, idx %d\n",
1160 (unsigned long long)sh->sector, dd_idx);
1161
1162 if ( dd_idx == qd_idx ) {
1163 /* We're actually computing the Q drive */
1164 compute_parity6(sh, UPDATE_PARITY);
1165 } else {
1166 ptr[0] = page_address(sh->dev[dd_idx].page);
1167 if (!nozero) memset(ptr[0], 0, STRIPE_SIZE);
1168 count = 1;
1169 for (i = disks ; i--; ) {
1170 if (i == dd_idx || i == qd_idx)
1171 continue;
1172 p = page_address(sh->dev[i].page);
1173 if (test_bit(R5_UPTODATE, &sh->dev[i].flags))
1174 ptr[count++] = p;
1175 else
1176 printk("compute_block() %d, stripe %llu, %d"
1177 " not present\n", dd_idx,
1178 (unsigned long long)sh->sector, i);
1179
1180 check_xor();
1181 }
1182 if (count != 1)
1183 xor_block(count, STRIPE_SIZE, ptr);
1184 if (!nozero) set_bit(R5_UPTODATE, &sh->dev[dd_idx].flags);
1185 else clear_bit(R5_UPTODATE, &sh->dev[dd_idx].flags);
1186 }
1187}
1188
1189/* Compute two missing blocks */
1190static void compute_block_2(struct stripe_head *sh, int dd_idx1, int dd_idx2)
1191{
1192 raid6_conf_t *conf = sh->raid_conf;
1193 int i, count, disks = conf->raid_disks;
1194 int pd_idx = sh->pd_idx;
1195 int qd_idx = raid6_next_disk(pd_idx, disks);
1196 int d0_idx = raid6_next_disk(qd_idx, disks);
1197 int faila, failb;
1198
1199 /* faila and failb are disk numbers relative to d0_idx */
1200 /* pd_idx become disks-2 and qd_idx become disks-1 */
1201 faila = (dd_idx1 < d0_idx) ? dd_idx1+(disks-d0_idx) : dd_idx1-d0_idx;
1202 failb = (dd_idx2 < d0_idx) ? dd_idx2+(disks-d0_idx) : dd_idx2-d0_idx;
1203
1204 BUG_ON(faila == failb);
1205 if ( failb < faila ) { int tmp = faila; faila = failb; failb = tmp; }
1206
1207 PRINTK("compute_block_2, stripe %llu, idx %d,%d (%d,%d)\n",
1208 (unsigned long long)sh->sector, dd_idx1, dd_idx2, faila, failb);
1209
1210 if ( failb == disks-1 ) {
1211 /* Q disk is one of the missing disks */
1212 if ( faila == disks-2 ) {
1213 /* Missing P+Q, just recompute */
1214 compute_parity6(sh, UPDATE_PARITY);
1215 return;
1216 } else {
1217 /* We're missing D+Q; recompute D from P */
1218 compute_block_1(sh, (dd_idx1 == qd_idx) ? dd_idx2 : dd_idx1, 0);
1219 compute_parity6(sh, UPDATE_PARITY); /* Is this necessary? */
1220 return;
1221 }
1222 }
1223
1224 /* We're missing D+P or D+D; build pointer table */
1225 {
1226 /**** FIX THIS: This could be very bad if disks is close to 256 ****/
1227 void *ptrs[disks];
1228
1229 count = 0;
1230 i = d0_idx;
1231 do {
1232 ptrs[count++] = page_address(sh->dev[i].page);
1233 i = raid6_next_disk(i, disks);
1234 if (i != dd_idx1 && i != dd_idx2 &&
1235 !test_bit(R5_UPTODATE, &sh->dev[i].flags))
1236 printk("compute_2 with missing block %d/%d\n", count, i);
1237 } while ( i != d0_idx );
1238
1239 if ( failb == disks-2 ) {
1240 /* We're missing D+P. */
1241 raid6_datap_recov(disks, STRIPE_SIZE, faila, ptrs);
1242 } else {
1243 /* We're missing D+D. */
1244 raid6_2data_recov(disks, STRIPE_SIZE, faila, failb, ptrs);
1245 }
1246
1247 /* Both the above update both missing blocks */
1248 set_bit(R5_UPTODATE, &sh->dev[dd_idx1].flags);
1249 set_bit(R5_UPTODATE, &sh->dev[dd_idx2].flags);
1250 }
1251}
1252
1253
1254
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255/*
1256 * Each stripe/dev can have one or more bion attached.
NeilBrown16a53ec2006-06-26 00:27:38 -07001257 * toread/towrite point to the first in a chain.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 * The bi_next chain must be in order.
1259 */
1260static int add_stripe_bio(struct stripe_head *sh, struct bio *bi, int dd_idx, int forwrite)
1261{
1262 struct bio **bip;
1263 raid5_conf_t *conf = sh->raid_conf;
NeilBrown72626682005-09-09 16:23:54 -07001264 int firstwrite=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265
1266 PRINTK("adding bh b#%llu to stripe s#%llu\n",
1267 (unsigned long long)bi->bi_sector,
1268 (unsigned long long)sh->sector);
1269
1270
1271 spin_lock(&sh->lock);
1272 spin_lock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07001273 if (forwrite) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 bip = &sh->dev[dd_idx].towrite;
NeilBrown72626682005-09-09 16:23:54 -07001275 if (*bip == NULL && sh->dev[dd_idx].written == NULL)
1276 firstwrite = 1;
1277 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 bip = &sh->dev[dd_idx].toread;
1279 while (*bip && (*bip)->bi_sector < bi->bi_sector) {
1280 if ((*bip)->bi_sector + ((*bip)->bi_size >> 9) > bi->bi_sector)
1281 goto overlap;
1282 bip = & (*bip)->bi_next;
1283 }
1284 if (*bip && (*bip)->bi_sector < bi->bi_sector + ((bi->bi_size)>>9))
1285 goto overlap;
1286
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02001287 BUG_ON(*bip && bi->bi_next && (*bip) != bi->bi_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 if (*bip)
1289 bi->bi_next = *bip;
1290 *bip = bi;
1291 bi->bi_phys_segments ++;
1292 spin_unlock_irq(&conf->device_lock);
1293 spin_unlock(&sh->lock);
1294
1295 PRINTK("added bi b#%llu to stripe s#%llu, disk %d.\n",
1296 (unsigned long long)bi->bi_sector,
1297 (unsigned long long)sh->sector, dd_idx);
1298
NeilBrown72626682005-09-09 16:23:54 -07001299 if (conf->mddev->bitmap && firstwrite) {
NeilBrown72626682005-09-09 16:23:54 -07001300 bitmap_startwrite(conf->mddev->bitmap, sh->sector,
1301 STRIPE_SECTORS, 0);
NeilBrownae3c20c2006-07-10 04:44:17 -07001302 sh->bm_seq = conf->seq_flush+1;
NeilBrown72626682005-09-09 16:23:54 -07001303 set_bit(STRIPE_BIT_DELAY, &sh->state);
1304 }
1305
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 if (forwrite) {
1307 /* check if page is covered */
1308 sector_t sector = sh->dev[dd_idx].sector;
1309 for (bi=sh->dev[dd_idx].towrite;
1310 sector < sh->dev[dd_idx].sector + STRIPE_SECTORS &&
1311 bi && bi->bi_sector <= sector;
1312 bi = r5_next_bio(bi, sh->dev[dd_idx].sector)) {
1313 if (bi->bi_sector + (bi->bi_size>>9) >= sector)
1314 sector = bi->bi_sector + (bi->bi_size>>9);
1315 }
1316 if (sector >= sh->dev[dd_idx].sector + STRIPE_SECTORS)
1317 set_bit(R5_OVERWRITE, &sh->dev[dd_idx].flags);
1318 }
1319 return 1;
1320
1321 overlap:
1322 set_bit(R5_Overlap, &sh->dev[dd_idx].flags);
1323 spin_unlock_irq(&conf->device_lock);
1324 spin_unlock(&sh->lock);
1325 return 0;
1326}
1327
NeilBrown29269552006-03-27 01:18:10 -08001328static void end_reshape(raid5_conf_t *conf);
1329
NeilBrown16a53ec2006-06-26 00:27:38 -07001330static int page_is_zero(struct page *p)
1331{
1332 char *a = page_address(p);
1333 return ((*(u32*)a) == 0 &&
1334 memcmp(a, a+4, STRIPE_SIZE-4)==0);
1335}
1336
NeilBrownccfcc3c2006-03-27 01:18:09 -08001337static int stripe_to_pdidx(sector_t stripe, raid5_conf_t *conf, int disks)
1338{
1339 int sectors_per_chunk = conf->chunk_size >> 9;
1340 sector_t x = stripe;
1341 int pd_idx, dd_idx;
1342 int chunk_offset = sector_div(x, sectors_per_chunk);
1343 stripe = x;
1344 raid5_compute_sector(stripe*(disks-1)*sectors_per_chunk
1345 + chunk_offset, disks, disks-1, &dd_idx, &pd_idx, conf);
1346 return pd_idx;
1347}
1348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
1350/*
1351 * handle_stripe - do things to a stripe.
1352 *
1353 * We lock the stripe and then examine the state of various bits
1354 * to see what needs to be done.
1355 * Possible results:
1356 * return some read request which now have data
1357 * return some write requests which are safely on disc
1358 * schedule a read on some buffers
1359 * schedule a write of some buffers
1360 * return confirmation of parity correctness
1361 *
1362 * Parity calculations are done inside the stripe lock
1363 * buffers are taken off read_list or write_list, and bh_cache buffers
1364 * get BH_Lock set before the stripe lock is released.
1365 *
1366 */
1367
NeilBrown16a53ec2006-06-26 00:27:38 -07001368static void handle_stripe5(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369{
1370 raid5_conf_t *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08001371 int disks = sh->disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 struct bio *return_bi= NULL;
1373 struct bio *bi;
1374 int i;
NeilBrownccfcc3c2006-03-27 01:18:09 -08001375 int syncing, expanding, expanded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 int locked=0, uptodate=0, to_read=0, to_write=0, failed=0, written=0;
1377 int non_overwrite = 0;
1378 int failed_num=0;
1379 struct r5dev *dev;
1380
1381 PRINTK("handling stripe %llu, cnt=%d, pd_idx=%d\n",
1382 (unsigned long long)sh->sector, atomic_read(&sh->count),
1383 sh->pd_idx);
1384
1385 spin_lock(&sh->lock);
1386 clear_bit(STRIPE_HANDLE, &sh->state);
1387 clear_bit(STRIPE_DELAYED, &sh->state);
1388
1389 syncing = test_bit(STRIPE_SYNCING, &sh->state);
NeilBrownccfcc3c2006-03-27 01:18:09 -08001390 expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state);
1391 expanded = test_bit(STRIPE_EXPAND_READY, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 /* Now to look around and see what can be done */
1393
NeilBrown9910f162006-01-06 00:20:24 -08001394 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 for (i=disks; i--; ) {
1396 mdk_rdev_t *rdev;
1397 dev = &sh->dev[i];
1398 clear_bit(R5_Insync, &dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
1400 PRINTK("check %d: state 0x%lx read %p write %p written %p\n",
1401 i, dev->flags, dev->toread, dev->towrite, dev->written);
1402 /* maybe we can reply to a read */
1403 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread) {
1404 struct bio *rbi, *rbi2;
1405 PRINTK("Return read for disc %d\n", i);
1406 spin_lock_irq(&conf->device_lock);
1407 rbi = dev->toread;
1408 dev->toread = NULL;
1409 if (test_and_clear_bit(R5_Overlap, &dev->flags))
1410 wake_up(&conf->wait_for_overlap);
1411 spin_unlock_irq(&conf->device_lock);
1412 while (rbi && rbi->bi_sector < dev->sector + STRIPE_SECTORS) {
1413 copy_data(0, rbi, dev->page, dev->sector);
1414 rbi2 = r5_next_bio(rbi, dev->sector);
1415 spin_lock_irq(&conf->device_lock);
1416 if (--rbi->bi_phys_segments == 0) {
1417 rbi->bi_next = return_bi;
1418 return_bi = rbi;
1419 }
1420 spin_unlock_irq(&conf->device_lock);
1421 rbi = rbi2;
1422 }
1423 }
1424
1425 /* now count some things */
1426 if (test_bit(R5_LOCKED, &dev->flags)) locked++;
1427 if (test_bit(R5_UPTODATE, &dev->flags)) uptodate++;
1428
1429
1430 if (dev->toread) to_read++;
1431 if (dev->towrite) {
1432 to_write++;
1433 if (!test_bit(R5_OVERWRITE, &dev->flags))
1434 non_overwrite++;
1435 }
1436 if (dev->written) written++;
NeilBrown9910f162006-01-06 00:20:24 -08001437 rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownb2d444d2005-11-08 21:39:31 -08001438 if (!rdev || !test_bit(In_sync, &rdev->flags)) {
NeilBrown14f8d262006-01-06 00:20:14 -08001439 /* The ReadError flag will just be confusing now */
NeilBrown4e5314b2005-11-08 21:39:22 -08001440 clear_bit(R5_ReadError, &dev->flags);
1441 clear_bit(R5_ReWrite, &dev->flags);
1442 }
NeilBrownb2d444d2005-11-08 21:39:31 -08001443 if (!rdev || !test_bit(In_sync, &rdev->flags)
NeilBrown4e5314b2005-11-08 21:39:22 -08001444 || test_bit(R5_ReadError, &dev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 failed++;
1446 failed_num = i;
1447 } else
1448 set_bit(R5_Insync, &dev->flags);
1449 }
NeilBrown9910f162006-01-06 00:20:24 -08001450 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 PRINTK("locked=%d uptodate=%d to_read=%d"
1452 " to_write=%d failed=%d failed_num=%d\n",
1453 locked, uptodate, to_read, to_write, failed, failed_num);
1454 /* check if the array has lost two devices and, if so, some requests might
1455 * need to be failed
1456 */
1457 if (failed > 1 && to_read+to_write+written) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 for (i=disks; i--; ) {
NeilBrown72626682005-09-09 16:23:54 -07001459 int bitmap_end = 0;
NeilBrown4e5314b2005-11-08 21:39:22 -08001460
1461 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrown9910f162006-01-06 00:20:24 -08001462 mdk_rdev_t *rdev;
1463 rcu_read_lock();
1464 rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownb2d444d2005-11-08 21:39:31 -08001465 if (rdev && test_bit(In_sync, &rdev->flags))
NeilBrown4e5314b2005-11-08 21:39:22 -08001466 /* multiple read failures in one stripe */
1467 md_error(conf->mddev, rdev);
NeilBrown9910f162006-01-06 00:20:24 -08001468 rcu_read_unlock();
NeilBrown4e5314b2005-11-08 21:39:22 -08001469 }
1470
NeilBrown72626682005-09-09 16:23:54 -07001471 spin_lock_irq(&conf->device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 /* fail all writes first */
1473 bi = sh->dev[i].towrite;
1474 sh->dev[i].towrite = NULL;
NeilBrown72626682005-09-09 16:23:54 -07001475 if (bi) { to_write--; bitmap_end = 1; }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
1477 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
1478 wake_up(&conf->wait_for_overlap);
1479
1480 while (bi && bi->bi_sector < sh->dev[i].sector + STRIPE_SECTORS){
1481 struct bio *nextbi = r5_next_bio(bi, sh->dev[i].sector);
1482 clear_bit(BIO_UPTODATE, &bi->bi_flags);
1483 if (--bi->bi_phys_segments == 0) {
1484 md_write_end(conf->mddev);
1485 bi->bi_next = return_bi;
1486 return_bi = bi;
1487 }
1488 bi = nextbi;
1489 }
1490 /* and fail all 'written' */
1491 bi = sh->dev[i].written;
1492 sh->dev[i].written = NULL;
NeilBrown72626682005-09-09 16:23:54 -07001493 if (bi) bitmap_end = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 while (bi && bi->bi_sector < sh->dev[i].sector + STRIPE_SECTORS) {
1495 struct bio *bi2 = r5_next_bio(bi, sh->dev[i].sector);
1496 clear_bit(BIO_UPTODATE, &bi->bi_flags);
1497 if (--bi->bi_phys_segments == 0) {
1498 md_write_end(conf->mddev);
1499 bi->bi_next = return_bi;
1500 return_bi = bi;
1501 }
1502 bi = bi2;
1503 }
1504
1505 /* fail any reads if this device is non-operational */
NeilBrown4e5314b2005-11-08 21:39:22 -08001506 if (!test_bit(R5_Insync, &sh->dev[i].flags) ||
1507 test_bit(R5_ReadError, &sh->dev[i].flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 bi = sh->dev[i].toread;
1509 sh->dev[i].toread = NULL;
1510 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
1511 wake_up(&conf->wait_for_overlap);
1512 if (bi) to_read--;
1513 while (bi && bi->bi_sector < sh->dev[i].sector + STRIPE_SECTORS){
1514 struct bio *nextbi = r5_next_bio(bi, sh->dev[i].sector);
1515 clear_bit(BIO_UPTODATE, &bi->bi_flags);
1516 if (--bi->bi_phys_segments == 0) {
1517 bi->bi_next = return_bi;
1518 return_bi = bi;
1519 }
1520 bi = nextbi;
1521 }
1522 }
NeilBrown72626682005-09-09 16:23:54 -07001523 spin_unlock_irq(&conf->device_lock);
1524 if (bitmap_end)
1525 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
1526 STRIPE_SECTORS, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 }
1529 if (failed > 1 && syncing) {
1530 md_done_sync(conf->mddev, STRIPE_SECTORS,0);
1531 clear_bit(STRIPE_SYNCING, &sh->state);
1532 syncing = 0;
1533 }
1534
1535 /* might be able to return some write requests if the parity block
1536 * is safe, or on a failed drive
1537 */
1538 dev = &sh->dev[sh->pd_idx];
1539 if ( written &&
1540 ( (test_bit(R5_Insync, &dev->flags) && !test_bit(R5_LOCKED, &dev->flags) &&
1541 test_bit(R5_UPTODATE, &dev->flags))
1542 || (failed == 1 && failed_num == sh->pd_idx))
1543 ) {
1544 /* any written block on an uptodate or failed drive can be returned.
1545 * Note that if we 'wrote' to a failed drive, it will be UPTODATE, but
1546 * never LOCKED, so we don't need to test 'failed' directly.
1547 */
1548 for (i=disks; i--; )
1549 if (sh->dev[i].written) {
1550 dev = &sh->dev[i];
1551 if (!test_bit(R5_LOCKED, &dev->flags) &&
1552 test_bit(R5_UPTODATE, &dev->flags) ) {
1553 /* We can return any write requests */
1554 struct bio *wbi, *wbi2;
NeilBrown72626682005-09-09 16:23:54 -07001555 int bitmap_end = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 PRINTK("Return write for disc %d\n", i);
1557 spin_lock_irq(&conf->device_lock);
1558 wbi = dev->written;
1559 dev->written = NULL;
1560 while (wbi && wbi->bi_sector < dev->sector + STRIPE_SECTORS) {
1561 wbi2 = r5_next_bio(wbi, dev->sector);
1562 if (--wbi->bi_phys_segments == 0) {
1563 md_write_end(conf->mddev);
1564 wbi->bi_next = return_bi;
1565 return_bi = wbi;
1566 }
1567 wbi = wbi2;
1568 }
NeilBrown72626682005-09-09 16:23:54 -07001569 if (dev->towrite == NULL)
1570 bitmap_end = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 spin_unlock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07001572 if (bitmap_end)
1573 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
1574 STRIPE_SECTORS,
1575 !test_bit(STRIPE_DEGRADED, &sh->state), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 }
1577 }
1578 }
1579
1580 /* Now we might consider reading some blocks, either to check/generate
1581 * parity, or to satisfy requests
1582 * or to load a block that is being partially written.
1583 */
NeilBrownccfcc3c2006-03-27 01:18:09 -08001584 if (to_read || non_overwrite || (syncing && (uptodate < disks)) || expanding) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 for (i=disks; i--;) {
1586 dev = &sh->dev[i];
1587 if (!test_bit(R5_LOCKED, &dev->flags) && !test_bit(R5_UPTODATE, &dev->flags) &&
1588 (dev->toread ||
1589 (dev->towrite && !test_bit(R5_OVERWRITE, &dev->flags)) ||
1590 syncing ||
NeilBrownccfcc3c2006-03-27 01:18:09 -08001591 expanding ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 (failed && (sh->dev[failed_num].toread ||
1593 (sh->dev[failed_num].towrite && !test_bit(R5_OVERWRITE, &sh->dev[failed_num].flags))))
1594 )
1595 ) {
1596 /* we would like to get this block, possibly
1597 * by computing it, but we might not be able to
1598 */
1599 if (uptodate == disks-1) {
1600 PRINTK("Computing block %d\n", i);
1601 compute_block(sh, i);
1602 uptodate++;
1603 } else if (test_bit(R5_Insync, &dev->flags)) {
1604 set_bit(R5_LOCKED, &dev->flags);
1605 set_bit(R5_Wantread, &dev->flags);
1606#if 0
1607 /* if I am just reading this block and we don't have
1608 a failed drive, or any pending writes then sidestep the cache */
1609 if (sh->bh_read[i] && !sh->bh_read[i]->b_reqnext &&
1610 ! syncing && !failed && !to_write) {
1611 sh->bh_cache[i]->b_page = sh->bh_read[i]->b_page;
1612 sh->bh_cache[i]->b_data = sh->bh_read[i]->b_data;
1613 }
1614#endif
1615 locked++;
1616 PRINTK("Reading block %d (sync=%d)\n",
1617 i, syncing);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 }
1619 }
1620 }
1621 set_bit(STRIPE_HANDLE, &sh->state);
1622 }
1623
1624 /* now to consider writing and what else, if anything should be read */
1625 if (to_write) {
1626 int rmw=0, rcw=0;
1627 for (i=disks ; i--;) {
1628 /* would I have to read this buffer for read_modify_write */
1629 dev = &sh->dev[i];
1630 if ((dev->towrite || i == sh->pd_idx) &&
1631 (!test_bit(R5_LOCKED, &dev->flags)
1632#if 0
1633|| sh->bh_page[i]!=bh->b_page
1634#endif
1635 ) &&
1636 !test_bit(R5_UPTODATE, &dev->flags)) {
1637 if (test_bit(R5_Insync, &dev->flags)
1638/* && !(!mddev->insync && i == sh->pd_idx) */
1639 )
1640 rmw++;
1641 else rmw += 2*disks; /* cannot read it */
1642 }
1643 /* Would I have to read this buffer for reconstruct_write */
1644 if (!test_bit(R5_OVERWRITE, &dev->flags) && i != sh->pd_idx &&
1645 (!test_bit(R5_LOCKED, &dev->flags)
1646#if 0
1647|| sh->bh_page[i] != bh->b_page
1648#endif
1649 ) &&
1650 !test_bit(R5_UPTODATE, &dev->flags)) {
1651 if (test_bit(R5_Insync, &dev->flags)) rcw++;
1652 else rcw += 2*disks;
1653 }
1654 }
1655 PRINTK("for sector %llu, rmw=%d rcw=%d\n",
1656 (unsigned long long)sh->sector, rmw, rcw);
1657 set_bit(STRIPE_HANDLE, &sh->state);
1658 if (rmw < rcw && rmw > 0)
1659 /* prefer read-modify-write, but need to get some data */
1660 for (i=disks; i--;) {
1661 dev = &sh->dev[i];
1662 if ((dev->towrite || i == sh->pd_idx) &&
1663 !test_bit(R5_LOCKED, &dev->flags) && !test_bit(R5_UPTODATE, &dev->flags) &&
1664 test_bit(R5_Insync, &dev->flags)) {
1665 if (test_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
1666 {
1667 PRINTK("Read_old block %d for r-m-w\n", i);
1668 set_bit(R5_LOCKED, &dev->flags);
1669 set_bit(R5_Wantread, &dev->flags);
1670 locked++;
1671 } else {
1672 set_bit(STRIPE_DELAYED, &sh->state);
1673 set_bit(STRIPE_HANDLE, &sh->state);
1674 }
1675 }
1676 }
1677 if (rcw <= rmw && rcw > 0)
1678 /* want reconstruct write, but need to get some data */
1679 for (i=disks; i--;) {
1680 dev = &sh->dev[i];
1681 if (!test_bit(R5_OVERWRITE, &dev->flags) && i != sh->pd_idx &&
1682 !test_bit(R5_LOCKED, &dev->flags) && !test_bit(R5_UPTODATE, &dev->flags) &&
1683 test_bit(R5_Insync, &dev->flags)) {
1684 if (test_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
1685 {
1686 PRINTK("Read_old block %d for Reconstruct\n", i);
1687 set_bit(R5_LOCKED, &dev->flags);
1688 set_bit(R5_Wantread, &dev->flags);
1689 locked++;
1690 } else {
1691 set_bit(STRIPE_DELAYED, &sh->state);
1692 set_bit(STRIPE_HANDLE, &sh->state);
1693 }
1694 }
1695 }
1696 /* now if nothing is locked, and if we have enough data, we can start a write request */
NeilBrown72626682005-09-09 16:23:54 -07001697 if (locked == 0 && (rcw == 0 ||rmw == 0) &&
1698 !test_bit(STRIPE_BIT_DELAY, &sh->state)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 PRINTK("Computing parity...\n");
NeilBrown16a53ec2006-06-26 00:27:38 -07001700 compute_parity5(sh, rcw==0 ? RECONSTRUCT_WRITE : READ_MODIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 /* now every locked buffer is ready to be written */
1702 for (i=disks; i--;)
1703 if (test_bit(R5_LOCKED, &sh->dev[i].flags)) {
1704 PRINTK("Writing block %d\n", i);
1705 locked++;
1706 set_bit(R5_Wantwrite, &sh->dev[i].flags);
1707 if (!test_bit(R5_Insync, &sh->dev[i].flags)
1708 || (i==sh->pd_idx && failed == 0))
1709 set_bit(STRIPE_INSYNC, &sh->state);
1710 }
1711 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
1712 atomic_dec(&conf->preread_active_stripes);
1713 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD)
1714 md_wakeup_thread(conf->mddev->thread);
1715 }
1716 }
1717 }
1718
1719 /* maybe we need to check and possibly fix the parity for this stripe
1720 * Any reads will already have been scheduled, so we just see if enough data
1721 * is available
1722 */
1723 if (syncing && locked == 0 &&
NeilBrown14f8d262006-01-06 00:20:14 -08001724 !test_bit(STRIPE_INSYNC, &sh->state)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 set_bit(STRIPE_HANDLE, &sh->state);
1726 if (failed == 0) {
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02001727 BUG_ON(uptodate != disks);
NeilBrown16a53ec2006-06-26 00:27:38 -07001728 compute_parity5(sh, CHECK_PARITY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 uptodate--;
NeilBrown16a53ec2006-06-26 00:27:38 -07001730 if (page_is_zero(sh->dev[sh->pd_idx].page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 /* parity is correct (on disc, not in buffer any more) */
1732 set_bit(STRIPE_INSYNC, &sh->state);
NeilBrown9d888832005-11-08 21:39:26 -08001733 } else {
1734 conf->mddev->resync_mismatches += STRIPE_SECTORS;
1735 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
1736 /* don't try to repair!! */
1737 set_bit(STRIPE_INSYNC, &sh->state);
NeilBrown14f8d262006-01-06 00:20:14 -08001738 else {
1739 compute_block(sh, sh->pd_idx);
1740 uptodate++;
1741 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 }
1743 }
1744 if (!test_bit(STRIPE_INSYNC, &sh->state)) {
NeilBrown14f8d262006-01-06 00:20:14 -08001745 /* either failed parity check, or recovery is happening */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 if (failed==0)
1747 failed_num = sh->pd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 dev = &sh->dev[failed_num];
NeilBrown14f8d262006-01-06 00:20:14 -08001749 BUG_ON(!test_bit(R5_UPTODATE, &dev->flags));
1750 BUG_ON(uptodate != disks);
1751
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 set_bit(R5_LOCKED, &dev->flags);
1753 set_bit(R5_Wantwrite, &dev->flags);
NeilBrown72626682005-09-09 16:23:54 -07001754 clear_bit(STRIPE_DEGRADED, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 locked++;
1756 set_bit(STRIPE_INSYNC, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 }
1758 }
1759 if (syncing && locked == 0 && test_bit(STRIPE_INSYNC, &sh->state)) {
1760 md_done_sync(conf->mddev, STRIPE_SECTORS,1);
1761 clear_bit(STRIPE_SYNCING, &sh->state);
1762 }
NeilBrown4e5314b2005-11-08 21:39:22 -08001763
1764 /* If the failed drive is just a ReadError, then we might need to progress
1765 * the repair/check process
1766 */
NeilBrownba22dcb2005-11-08 21:39:31 -08001767 if (failed == 1 && ! conf->mddev->ro &&
1768 test_bit(R5_ReadError, &sh->dev[failed_num].flags)
NeilBrown4e5314b2005-11-08 21:39:22 -08001769 && !test_bit(R5_LOCKED, &sh->dev[failed_num].flags)
1770 && test_bit(R5_UPTODATE, &sh->dev[failed_num].flags)
1771 ) {
1772 dev = &sh->dev[failed_num];
1773 if (!test_bit(R5_ReWrite, &dev->flags)) {
1774 set_bit(R5_Wantwrite, &dev->flags);
1775 set_bit(R5_ReWrite, &dev->flags);
1776 set_bit(R5_LOCKED, &dev->flags);
NeilBrownccfcc3c2006-03-27 01:18:09 -08001777 locked++;
NeilBrown4e5314b2005-11-08 21:39:22 -08001778 } else {
1779 /* let's read it back */
1780 set_bit(R5_Wantread, &dev->flags);
1781 set_bit(R5_LOCKED, &dev->flags);
NeilBrownccfcc3c2006-03-27 01:18:09 -08001782 locked++;
NeilBrown4e5314b2005-11-08 21:39:22 -08001783 }
1784 }
1785
NeilBrownccfcc3c2006-03-27 01:18:09 -08001786 if (expanded && test_bit(STRIPE_EXPANDING, &sh->state)) {
1787 /* Need to write out all blocks after computing parity */
1788 sh->disks = conf->raid_disks;
1789 sh->pd_idx = stripe_to_pdidx(sh->sector, conf, conf->raid_disks);
NeilBrown16a53ec2006-06-26 00:27:38 -07001790 compute_parity5(sh, RECONSTRUCT_WRITE);
NeilBrownccfcc3c2006-03-27 01:18:09 -08001791 for (i= conf->raid_disks; i--;) {
1792 set_bit(R5_LOCKED, &sh->dev[i].flags);
1793 locked++;
1794 set_bit(R5_Wantwrite, &sh->dev[i].flags);
1795 }
1796 clear_bit(STRIPE_EXPANDING, &sh->state);
1797 } else if (expanded) {
1798 clear_bit(STRIPE_EXPAND_READY, &sh->state);
NeilBrownf6705572006-03-27 01:18:11 -08001799 atomic_dec(&conf->reshape_stripes);
NeilBrownccfcc3c2006-03-27 01:18:09 -08001800 wake_up(&conf->wait_for_overlap);
1801 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
1802 }
1803
1804 if (expanding && locked == 0) {
1805 /* We have read all the blocks in this stripe and now we need to
1806 * copy some of them into a target stripe for expand.
1807 */
1808 clear_bit(STRIPE_EXPAND_SOURCE, &sh->state);
1809 for (i=0; i< sh->disks; i++)
1810 if (i != sh->pd_idx) {
1811 int dd_idx, pd_idx, j;
1812 struct stripe_head *sh2;
1813
1814 sector_t bn = compute_blocknr(sh, i);
1815 sector_t s = raid5_compute_sector(bn, conf->raid_disks,
1816 conf->raid_disks-1,
1817 &dd_idx, &pd_idx, conf);
1818 sh2 = get_active_stripe(conf, s, conf->raid_disks, pd_idx, 1);
1819 if (sh2 == NULL)
1820 /* so far only the early blocks of this stripe
1821 * have been requested. When later blocks
1822 * get requested, we will try again
1823 */
1824 continue;
1825 if(!test_bit(STRIPE_EXPANDING, &sh2->state) ||
1826 test_bit(R5_Expanded, &sh2->dev[dd_idx].flags)) {
1827 /* must have already done this block */
1828 release_stripe(sh2);
1829 continue;
1830 }
1831 memcpy(page_address(sh2->dev[dd_idx].page),
1832 page_address(sh->dev[i].page),
1833 STRIPE_SIZE);
1834 set_bit(R5_Expanded, &sh2->dev[dd_idx].flags);
1835 set_bit(R5_UPTODATE, &sh2->dev[dd_idx].flags);
1836 for (j=0; j<conf->raid_disks; j++)
1837 if (j != sh2->pd_idx &&
1838 !test_bit(R5_Expanded, &sh2->dev[j].flags))
1839 break;
1840 if (j == conf->raid_disks) {
1841 set_bit(STRIPE_EXPAND_READY, &sh2->state);
1842 set_bit(STRIPE_HANDLE, &sh2->state);
1843 }
1844 release_stripe(sh2);
1845 }
1846 }
1847
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 spin_unlock(&sh->lock);
1849
1850 while ((bi=return_bi)) {
1851 int bytes = bi->bi_size;
1852
1853 return_bi = bi->bi_next;
1854 bi->bi_next = NULL;
1855 bi->bi_size = 0;
1856 bi->bi_end_io(bi, bytes, 0);
1857 }
1858 for (i=disks; i-- ;) {
1859 int rw;
1860 struct bio *bi;
1861 mdk_rdev_t *rdev;
1862 if (test_and_clear_bit(R5_Wantwrite, &sh->dev[i].flags))
1863 rw = 1;
1864 else if (test_and_clear_bit(R5_Wantread, &sh->dev[i].flags))
1865 rw = 0;
1866 else
1867 continue;
1868
1869 bi = &sh->dev[i].req;
1870
1871 bi->bi_rw = rw;
1872 if (rw)
1873 bi->bi_end_io = raid5_end_write_request;
1874 else
1875 bi->bi_end_io = raid5_end_read_request;
1876
1877 rcu_read_lock();
Suzanne Woodd6065f72005-11-08 21:39:27 -08001878 rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownb2d444d2005-11-08 21:39:31 -08001879 if (rdev && test_bit(Faulty, &rdev->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 rdev = NULL;
1881 if (rdev)
1882 atomic_inc(&rdev->nr_pending);
1883 rcu_read_unlock();
1884
1885 if (rdev) {
NeilBrownccfcc3c2006-03-27 01:18:09 -08001886 if (syncing || expanding || expanded)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 md_sync_acct(rdev->bdev, STRIPE_SECTORS);
1888
1889 bi->bi_bdev = rdev->bdev;
1890 PRINTK("for %llu schedule op %ld on disc %d\n",
1891 (unsigned long long)sh->sector, bi->bi_rw, i);
1892 atomic_inc(&sh->count);
1893 bi->bi_sector = sh->sector + rdev->data_offset;
1894 bi->bi_flags = 1 << BIO_UPTODATE;
1895 bi->bi_vcnt = 1;
1896 bi->bi_max_vecs = 1;
1897 bi->bi_idx = 0;
1898 bi->bi_io_vec = &sh->dev[i].vec;
1899 bi->bi_io_vec[0].bv_len = STRIPE_SIZE;
1900 bi->bi_io_vec[0].bv_offset = 0;
1901 bi->bi_size = STRIPE_SIZE;
1902 bi->bi_next = NULL;
NeilBrown4dbcdc72006-01-06 00:20:52 -08001903 if (rw == WRITE &&
1904 test_bit(R5_ReWrite, &sh->dev[i].flags))
1905 atomic_add(STRIPE_SECTORS, &rdev->corrected_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 generic_make_request(bi);
1907 } else {
NeilBrown72626682005-09-09 16:23:54 -07001908 if (rw == 1)
1909 set_bit(STRIPE_DEGRADED, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 PRINTK("skip op %ld on disc %d for sector %llu\n",
1911 bi->bi_rw, i, (unsigned long long)sh->sector);
1912 clear_bit(R5_LOCKED, &sh->dev[i].flags);
1913 set_bit(STRIPE_HANDLE, &sh->state);
1914 }
1915 }
1916}
1917
NeilBrown16a53ec2006-06-26 00:27:38 -07001918static void handle_stripe6(struct stripe_head *sh, struct page *tmp_page)
1919{
1920 raid6_conf_t *conf = sh->raid_conf;
1921 int disks = conf->raid_disks;
1922 struct bio *return_bi= NULL;
1923 struct bio *bi;
1924 int i;
1925 int syncing;
1926 int locked=0, uptodate=0, to_read=0, to_write=0, failed=0, written=0;
1927 int non_overwrite = 0;
1928 int failed_num[2] = {0, 0};
1929 struct r5dev *dev, *pdev, *qdev;
1930 int pd_idx = sh->pd_idx;
1931 int qd_idx = raid6_next_disk(pd_idx, disks);
1932 int p_failed, q_failed;
1933
1934 PRINTK("handling stripe %llu, state=%#lx cnt=%d, pd_idx=%d, qd_idx=%d\n",
1935 (unsigned long long)sh->sector, sh->state, atomic_read(&sh->count),
1936 pd_idx, qd_idx);
1937
1938 spin_lock(&sh->lock);
1939 clear_bit(STRIPE_HANDLE, &sh->state);
1940 clear_bit(STRIPE_DELAYED, &sh->state);
1941
1942 syncing = test_bit(STRIPE_SYNCING, &sh->state);
1943 /* Now to look around and see what can be done */
1944
1945 rcu_read_lock();
1946 for (i=disks; i--; ) {
1947 mdk_rdev_t *rdev;
1948 dev = &sh->dev[i];
1949 clear_bit(R5_Insync, &dev->flags);
1950
1951 PRINTK("check %d: state 0x%lx read %p write %p written %p\n",
1952 i, dev->flags, dev->toread, dev->towrite, dev->written);
1953 /* maybe we can reply to a read */
1954 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread) {
1955 struct bio *rbi, *rbi2;
1956 PRINTK("Return read for disc %d\n", i);
1957 spin_lock_irq(&conf->device_lock);
1958 rbi = dev->toread;
1959 dev->toread = NULL;
1960 if (test_and_clear_bit(R5_Overlap, &dev->flags))
1961 wake_up(&conf->wait_for_overlap);
1962 spin_unlock_irq(&conf->device_lock);
1963 while (rbi && rbi->bi_sector < dev->sector + STRIPE_SECTORS) {
1964 copy_data(0, rbi, dev->page, dev->sector);
1965 rbi2 = r5_next_bio(rbi, dev->sector);
1966 spin_lock_irq(&conf->device_lock);
1967 if (--rbi->bi_phys_segments == 0) {
1968 rbi->bi_next = return_bi;
1969 return_bi = rbi;
1970 }
1971 spin_unlock_irq(&conf->device_lock);
1972 rbi = rbi2;
1973 }
1974 }
1975
1976 /* now count some things */
1977 if (test_bit(R5_LOCKED, &dev->flags)) locked++;
1978 if (test_bit(R5_UPTODATE, &dev->flags)) uptodate++;
1979
1980
1981 if (dev->toread) to_read++;
1982 if (dev->towrite) {
1983 to_write++;
1984 if (!test_bit(R5_OVERWRITE, &dev->flags))
1985 non_overwrite++;
1986 }
1987 if (dev->written) written++;
1988 rdev = rcu_dereference(conf->disks[i].rdev);
1989 if (!rdev || !test_bit(In_sync, &rdev->flags)) {
1990 /* The ReadError flag will just be confusing now */
1991 clear_bit(R5_ReadError, &dev->flags);
1992 clear_bit(R5_ReWrite, &dev->flags);
1993 }
1994 if (!rdev || !test_bit(In_sync, &rdev->flags)
1995 || test_bit(R5_ReadError, &dev->flags)) {
1996 if ( failed < 2 )
1997 failed_num[failed] = i;
1998 failed++;
1999 } else
2000 set_bit(R5_Insync, &dev->flags);
2001 }
2002 rcu_read_unlock();
2003 PRINTK("locked=%d uptodate=%d to_read=%d"
2004 " to_write=%d failed=%d failed_num=%d,%d\n",
2005 locked, uptodate, to_read, to_write, failed,
2006 failed_num[0], failed_num[1]);
2007 /* check if the array has lost >2 devices and, if so, some requests might
2008 * need to be failed
2009 */
2010 if (failed > 2 && to_read+to_write+written) {
2011 for (i=disks; i--; ) {
2012 int bitmap_end = 0;
2013
2014 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
2015 mdk_rdev_t *rdev;
2016 rcu_read_lock();
2017 rdev = rcu_dereference(conf->disks[i].rdev);
2018 if (rdev && test_bit(In_sync, &rdev->flags))
2019 /* multiple read failures in one stripe */
2020 md_error(conf->mddev, rdev);
2021 rcu_read_unlock();
2022 }
2023
2024 spin_lock_irq(&conf->device_lock);
2025 /* fail all writes first */
2026 bi = sh->dev[i].towrite;
2027 sh->dev[i].towrite = NULL;
2028 if (bi) { to_write--; bitmap_end = 1; }
2029
2030 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
2031 wake_up(&conf->wait_for_overlap);
2032
2033 while (bi && bi->bi_sector < sh->dev[i].sector + STRIPE_SECTORS){
2034 struct bio *nextbi = r5_next_bio(bi, sh->dev[i].sector);
2035 clear_bit(BIO_UPTODATE, &bi->bi_flags);
2036 if (--bi->bi_phys_segments == 0) {
2037 md_write_end(conf->mddev);
2038 bi->bi_next = return_bi;
2039 return_bi = bi;
2040 }
2041 bi = nextbi;
2042 }
2043 /* and fail all 'written' */
2044 bi = sh->dev[i].written;
2045 sh->dev[i].written = NULL;
2046 if (bi) bitmap_end = 1;
2047 while (bi && bi->bi_sector < sh->dev[i].sector + STRIPE_SECTORS) {
2048 struct bio *bi2 = r5_next_bio(bi, sh->dev[i].sector);
2049 clear_bit(BIO_UPTODATE, &bi->bi_flags);
2050 if (--bi->bi_phys_segments == 0) {
2051 md_write_end(conf->mddev);
2052 bi->bi_next = return_bi;
2053 return_bi = bi;
2054 }
2055 bi = bi2;
2056 }
2057
2058 /* fail any reads if this device is non-operational */
2059 if (!test_bit(R5_Insync, &sh->dev[i].flags) ||
2060 test_bit(R5_ReadError, &sh->dev[i].flags)) {
2061 bi = sh->dev[i].toread;
2062 sh->dev[i].toread = NULL;
2063 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
2064 wake_up(&conf->wait_for_overlap);
2065 if (bi) to_read--;
2066 while (bi && bi->bi_sector < sh->dev[i].sector + STRIPE_SECTORS){
2067 struct bio *nextbi = r5_next_bio(bi, sh->dev[i].sector);
2068 clear_bit(BIO_UPTODATE, &bi->bi_flags);
2069 if (--bi->bi_phys_segments == 0) {
2070 bi->bi_next = return_bi;
2071 return_bi = bi;
2072 }
2073 bi = nextbi;
2074 }
2075 }
2076 spin_unlock_irq(&conf->device_lock);
2077 if (bitmap_end)
2078 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
2079 STRIPE_SECTORS, 0, 0);
2080 }
2081 }
2082 if (failed > 2 && syncing) {
2083 md_done_sync(conf->mddev, STRIPE_SECTORS,0);
2084 clear_bit(STRIPE_SYNCING, &sh->state);
2085 syncing = 0;
2086 }
2087
2088 /*
2089 * might be able to return some write requests if the parity blocks
2090 * are safe, or on a failed drive
2091 */
2092 pdev = &sh->dev[pd_idx];
2093 p_failed = (failed >= 1 && failed_num[0] == pd_idx)
2094 || (failed >= 2 && failed_num[1] == pd_idx);
2095 qdev = &sh->dev[qd_idx];
2096 q_failed = (failed >= 1 && failed_num[0] == qd_idx)
2097 || (failed >= 2 && failed_num[1] == qd_idx);
2098
2099 if ( written &&
2100 ( p_failed || ((test_bit(R5_Insync, &pdev->flags)
2101 && !test_bit(R5_LOCKED, &pdev->flags)
2102 && test_bit(R5_UPTODATE, &pdev->flags))) ) &&
2103 ( q_failed || ((test_bit(R5_Insync, &qdev->flags)
2104 && !test_bit(R5_LOCKED, &qdev->flags)
2105 && test_bit(R5_UPTODATE, &qdev->flags))) ) ) {
2106 /* any written block on an uptodate or failed drive can be
2107 * returned. Note that if we 'wrote' to a failed drive,
2108 * it will be UPTODATE, but never LOCKED, so we don't need
2109 * to test 'failed' directly.
2110 */
2111 for (i=disks; i--; )
2112 if (sh->dev[i].written) {
2113 dev = &sh->dev[i];
2114 if (!test_bit(R5_LOCKED, &dev->flags) &&
2115 test_bit(R5_UPTODATE, &dev->flags) ) {
2116 /* We can return any write requests */
2117 int bitmap_end = 0;
2118 struct bio *wbi, *wbi2;
2119 PRINTK("Return write for stripe %llu disc %d\n",
2120 (unsigned long long)sh->sector, i);
2121 spin_lock_irq(&conf->device_lock);
2122 wbi = dev->written;
2123 dev->written = NULL;
2124 while (wbi && wbi->bi_sector < dev->sector + STRIPE_SECTORS) {
2125 wbi2 = r5_next_bio(wbi, dev->sector);
2126 if (--wbi->bi_phys_segments == 0) {
2127 md_write_end(conf->mddev);
2128 wbi->bi_next = return_bi;
2129 return_bi = wbi;
2130 }
2131 wbi = wbi2;
2132 }
2133 if (dev->towrite == NULL)
2134 bitmap_end = 1;
2135 spin_unlock_irq(&conf->device_lock);
2136 if (bitmap_end)
2137 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
2138 STRIPE_SECTORS,
2139 !test_bit(STRIPE_DEGRADED, &sh->state), 0);
2140 }
2141 }
2142 }
2143
2144 /* Now we might consider reading some blocks, either to check/generate
2145 * parity, or to satisfy requests
2146 * or to load a block that is being partially written.
2147 */
2148 if (to_read || non_overwrite || (to_write && failed) || (syncing && (uptodate < disks))) {
2149 for (i=disks; i--;) {
2150 dev = &sh->dev[i];
2151 if (!test_bit(R5_LOCKED, &dev->flags) && !test_bit(R5_UPTODATE, &dev->flags) &&
2152 (dev->toread ||
2153 (dev->towrite && !test_bit(R5_OVERWRITE, &dev->flags)) ||
2154 syncing ||
2155 (failed >= 1 && (sh->dev[failed_num[0]].toread || to_write)) ||
2156 (failed >= 2 && (sh->dev[failed_num[1]].toread || to_write))
2157 )
2158 ) {
2159 /* we would like to get this block, possibly
2160 * by computing it, but we might not be able to
2161 */
2162 if (uptodate == disks-1) {
2163 PRINTK("Computing stripe %llu block %d\n",
2164 (unsigned long long)sh->sector, i);
2165 compute_block_1(sh, i, 0);
2166 uptodate++;
2167 } else if ( uptodate == disks-2 && failed >= 2 ) {
2168 /* Computing 2-failure is *very* expensive; only do it if failed >= 2 */
2169 int other;
2170 for (other=disks; other--;) {
2171 if ( other == i )
2172 continue;
2173 if ( !test_bit(R5_UPTODATE, &sh->dev[other].flags) )
2174 break;
2175 }
2176 BUG_ON(other < 0);
2177 PRINTK("Computing stripe %llu blocks %d,%d\n",
2178 (unsigned long long)sh->sector, i, other);
2179 compute_block_2(sh, i, other);
2180 uptodate += 2;
2181 } else if (test_bit(R5_Insync, &dev->flags)) {
2182 set_bit(R5_LOCKED, &dev->flags);
2183 set_bit(R5_Wantread, &dev->flags);
2184#if 0
2185 /* if I am just reading this block and we don't have
2186 a failed drive, or any pending writes then sidestep the cache */
2187 if (sh->bh_read[i] && !sh->bh_read[i]->b_reqnext &&
2188 ! syncing && !failed && !to_write) {
2189 sh->bh_cache[i]->b_page = sh->bh_read[i]->b_page;
2190 sh->bh_cache[i]->b_data = sh->bh_read[i]->b_data;
2191 }
2192#endif
2193 locked++;
2194 PRINTK("Reading block %d (sync=%d)\n",
2195 i, syncing);
2196 }
2197 }
2198 }
2199 set_bit(STRIPE_HANDLE, &sh->state);
2200 }
2201
2202 /* now to consider writing and what else, if anything should be read */
2203 if (to_write) {
2204 int rcw=0, must_compute=0;
2205 for (i=disks ; i--;) {
2206 dev = &sh->dev[i];
2207 /* Would I have to read this buffer for reconstruct_write */
2208 if (!test_bit(R5_OVERWRITE, &dev->flags)
2209 && i != pd_idx && i != qd_idx
2210 && (!test_bit(R5_LOCKED, &dev->flags)
2211#if 0
2212 || sh->bh_page[i] != bh->b_page
2213#endif
2214 ) &&
2215 !test_bit(R5_UPTODATE, &dev->flags)) {
2216 if (test_bit(R5_Insync, &dev->flags)) rcw++;
2217 else {
2218 PRINTK("raid6: must_compute: disk %d flags=%#lx\n", i, dev->flags);
2219 must_compute++;
2220 }
2221 }
2222 }
2223 PRINTK("for sector %llu, rcw=%d, must_compute=%d\n",
2224 (unsigned long long)sh->sector, rcw, must_compute);
2225 set_bit(STRIPE_HANDLE, &sh->state);
2226
2227 if (rcw > 0)
2228 /* want reconstruct write, but need to get some data */
2229 for (i=disks; i--;) {
2230 dev = &sh->dev[i];
2231 if (!test_bit(R5_OVERWRITE, &dev->flags)
2232 && !(failed == 0 && (i == pd_idx || i == qd_idx))
2233 && !test_bit(R5_LOCKED, &dev->flags) && !test_bit(R5_UPTODATE, &dev->flags) &&
2234 test_bit(R5_Insync, &dev->flags)) {
2235 if (test_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
2236 {
2237 PRINTK("Read_old stripe %llu block %d for Reconstruct\n",
2238 (unsigned long long)sh->sector, i);
2239 set_bit(R5_LOCKED, &dev->flags);
2240 set_bit(R5_Wantread, &dev->flags);
2241 locked++;
2242 } else {
2243 PRINTK("Request delayed stripe %llu block %d for Reconstruct\n",
2244 (unsigned long long)sh->sector, i);
2245 set_bit(STRIPE_DELAYED, &sh->state);
2246 set_bit(STRIPE_HANDLE, &sh->state);
2247 }
2248 }
2249 }
2250 /* now if nothing is locked, and if we have enough data, we can start a write request */
2251 if (locked == 0 && rcw == 0 &&
2252 !test_bit(STRIPE_BIT_DELAY, &sh->state)) {
2253 if ( must_compute > 0 ) {
2254 /* We have failed blocks and need to compute them */
2255 switch ( failed ) {
2256 case 0: BUG();
2257 case 1: compute_block_1(sh, failed_num[0], 0); break;
2258 case 2: compute_block_2(sh, failed_num[0], failed_num[1]); break;
2259 default: BUG(); /* This request should have been failed? */
2260 }
2261 }
2262
2263 PRINTK("Computing parity for stripe %llu\n", (unsigned long long)sh->sector);
2264 compute_parity6(sh, RECONSTRUCT_WRITE);
2265 /* now every locked buffer is ready to be written */
2266 for (i=disks; i--;)
2267 if (test_bit(R5_LOCKED, &sh->dev[i].flags)) {
2268 PRINTK("Writing stripe %llu block %d\n",
2269 (unsigned long long)sh->sector, i);
2270 locked++;
2271 set_bit(R5_Wantwrite, &sh->dev[i].flags);
2272 }
2273 /* after a RECONSTRUCT_WRITE, the stripe MUST be in-sync */
2274 set_bit(STRIPE_INSYNC, &sh->state);
2275
2276 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
2277 atomic_dec(&conf->preread_active_stripes);
2278 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD)
2279 md_wakeup_thread(conf->mddev->thread);
2280 }
2281 }
2282 }
2283
2284 /* maybe we need to check and possibly fix the parity for this stripe
2285 * Any reads will already have been scheduled, so we just see if enough data
2286 * is available
2287 */
2288 if (syncing && locked == 0 && !test_bit(STRIPE_INSYNC, &sh->state)) {
2289 int update_p = 0, update_q = 0;
2290 struct r5dev *dev;
2291
2292 set_bit(STRIPE_HANDLE, &sh->state);
2293
2294 BUG_ON(failed>2);
2295 BUG_ON(uptodate < disks);
2296 /* Want to check and possibly repair P and Q.
2297 * However there could be one 'failed' device, in which
2298 * case we can only check one of them, possibly using the
2299 * other to generate missing data
2300 */
2301
2302 /* If !tmp_page, we cannot do the calculations,
2303 * but as we have set STRIPE_HANDLE, we will soon be called
2304 * by stripe_handle with a tmp_page - just wait until then.
2305 */
2306 if (tmp_page) {
2307 if (failed == q_failed) {
2308 /* The only possible failed device holds 'Q', so it makes
2309 * sense to check P (If anything else were failed, we would
2310 * have used P to recreate it).
2311 */
2312 compute_block_1(sh, pd_idx, 1);
2313 if (!page_is_zero(sh->dev[pd_idx].page)) {
2314 compute_block_1(sh,pd_idx,0);
2315 update_p = 1;
2316 }
2317 }
2318 if (!q_failed && failed < 2) {
2319 /* q is not failed, and we didn't use it to generate
2320 * anything, so it makes sense to check it
2321 */
2322 memcpy(page_address(tmp_page),
2323 page_address(sh->dev[qd_idx].page),
2324 STRIPE_SIZE);
2325 compute_parity6(sh, UPDATE_PARITY);
2326 if (memcmp(page_address(tmp_page),
2327 page_address(sh->dev[qd_idx].page),
2328 STRIPE_SIZE)!= 0) {
2329 clear_bit(STRIPE_INSYNC, &sh->state);
2330 update_q = 1;
2331 }
2332 }
2333 if (update_p || update_q) {
2334 conf->mddev->resync_mismatches += STRIPE_SECTORS;
2335 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
2336 /* don't try to repair!! */
2337 update_p = update_q = 0;
2338 }
2339
2340 /* now write out any block on a failed drive,
2341 * or P or Q if they need it
2342 */
2343
2344 if (failed == 2) {
2345 dev = &sh->dev[failed_num[1]];
2346 locked++;
2347 set_bit(R5_LOCKED, &dev->flags);
2348 set_bit(R5_Wantwrite, &dev->flags);
2349 }
2350 if (failed >= 1) {
2351 dev = &sh->dev[failed_num[0]];
2352 locked++;
2353 set_bit(R5_LOCKED, &dev->flags);
2354 set_bit(R5_Wantwrite, &dev->flags);
2355 }
2356
2357 if (update_p) {
2358 dev = &sh->dev[pd_idx];
2359 locked ++;
2360 set_bit(R5_LOCKED, &dev->flags);
2361 set_bit(R5_Wantwrite, &dev->flags);
2362 }
2363 if (update_q) {
2364 dev = &sh->dev[qd_idx];
2365 locked++;
2366 set_bit(R5_LOCKED, &dev->flags);
2367 set_bit(R5_Wantwrite, &dev->flags);
2368 }
2369 clear_bit(STRIPE_DEGRADED, &sh->state);
2370
2371 set_bit(STRIPE_INSYNC, &sh->state);
2372 }
2373 }
2374
2375 if (syncing && locked == 0 && test_bit(STRIPE_INSYNC, &sh->state)) {
2376 md_done_sync(conf->mddev, STRIPE_SECTORS,1);
2377 clear_bit(STRIPE_SYNCING, &sh->state);
2378 }
2379
2380 /* If the failed drives are just a ReadError, then we might need
2381 * to progress the repair/check process
2382 */
2383 if (failed <= 2 && ! conf->mddev->ro)
2384 for (i=0; i<failed;i++) {
2385 dev = &sh->dev[failed_num[i]];
2386 if (test_bit(R5_ReadError, &dev->flags)
2387 && !test_bit(R5_LOCKED, &dev->flags)
2388 && test_bit(R5_UPTODATE, &dev->flags)
2389 ) {
2390 if (!test_bit(R5_ReWrite, &dev->flags)) {
2391 set_bit(R5_Wantwrite, &dev->flags);
2392 set_bit(R5_ReWrite, &dev->flags);
2393 set_bit(R5_LOCKED, &dev->flags);
2394 } else {
2395 /* let's read it back */
2396 set_bit(R5_Wantread, &dev->flags);
2397 set_bit(R5_LOCKED, &dev->flags);
2398 }
2399 }
2400 }
2401 spin_unlock(&sh->lock);
2402
2403 while ((bi=return_bi)) {
2404 int bytes = bi->bi_size;
2405
2406 return_bi = bi->bi_next;
2407 bi->bi_next = NULL;
2408 bi->bi_size = 0;
2409 bi->bi_end_io(bi, bytes, 0);
2410 }
2411 for (i=disks; i-- ;) {
2412 int rw;
2413 struct bio *bi;
2414 mdk_rdev_t *rdev;
2415 if (test_and_clear_bit(R5_Wantwrite, &sh->dev[i].flags))
2416 rw = 1;
2417 else if (test_and_clear_bit(R5_Wantread, &sh->dev[i].flags))
2418 rw = 0;
2419 else
2420 continue;
2421
2422 bi = &sh->dev[i].req;
2423
2424 bi->bi_rw = rw;
2425 if (rw)
2426 bi->bi_end_io = raid5_end_write_request;
2427 else
2428 bi->bi_end_io = raid5_end_read_request;
2429
2430 rcu_read_lock();
2431 rdev = rcu_dereference(conf->disks[i].rdev);
2432 if (rdev && test_bit(Faulty, &rdev->flags))
2433 rdev = NULL;
2434 if (rdev)
2435 atomic_inc(&rdev->nr_pending);
2436 rcu_read_unlock();
2437
2438 if (rdev) {
2439 if (syncing)
2440 md_sync_acct(rdev->bdev, STRIPE_SECTORS);
2441
2442 bi->bi_bdev = rdev->bdev;
2443 PRINTK("for %llu schedule op %ld on disc %d\n",
2444 (unsigned long long)sh->sector, bi->bi_rw, i);
2445 atomic_inc(&sh->count);
2446 bi->bi_sector = sh->sector + rdev->data_offset;
2447 bi->bi_flags = 1 << BIO_UPTODATE;
2448 bi->bi_vcnt = 1;
2449 bi->bi_max_vecs = 1;
2450 bi->bi_idx = 0;
2451 bi->bi_io_vec = &sh->dev[i].vec;
2452 bi->bi_io_vec[0].bv_len = STRIPE_SIZE;
2453 bi->bi_io_vec[0].bv_offset = 0;
2454 bi->bi_size = STRIPE_SIZE;
2455 bi->bi_next = NULL;
2456 if (rw == WRITE &&
2457 test_bit(R5_ReWrite, &sh->dev[i].flags))
2458 atomic_add(STRIPE_SECTORS, &rdev->corrected_errors);
2459 generic_make_request(bi);
2460 } else {
2461 if (rw == 1)
2462 set_bit(STRIPE_DEGRADED, &sh->state);
2463 PRINTK("skip op %ld on disc %d for sector %llu\n",
2464 bi->bi_rw, i, (unsigned long long)sh->sector);
2465 clear_bit(R5_LOCKED, &sh->dev[i].flags);
2466 set_bit(STRIPE_HANDLE, &sh->state);
2467 }
2468 }
2469}
2470
2471static void handle_stripe(struct stripe_head *sh, struct page *tmp_page)
2472{
2473 if (sh->raid_conf->level == 6)
2474 handle_stripe6(sh, tmp_page);
2475 else
2476 handle_stripe5(sh);
2477}
2478
2479
2480
Arjan van de Ven858119e2006-01-14 13:20:43 -08002481static void raid5_activate_delayed(raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482{
2483 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD) {
2484 while (!list_empty(&conf->delayed_list)) {
2485 struct list_head *l = conf->delayed_list.next;
2486 struct stripe_head *sh;
2487 sh = list_entry(l, struct stripe_head, lru);
2488 list_del_init(l);
2489 clear_bit(STRIPE_DELAYED, &sh->state);
2490 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
2491 atomic_inc(&conf->preread_active_stripes);
2492 list_add_tail(&sh->lru, &conf->handle_list);
2493 }
2494 }
2495}
2496
Arjan van de Ven858119e2006-01-14 13:20:43 -08002497static void activate_bit_delay(raid5_conf_t *conf)
NeilBrown72626682005-09-09 16:23:54 -07002498{
2499 /* device_lock is held */
2500 struct list_head head;
2501 list_add(&head, &conf->bitmap_list);
2502 list_del_init(&conf->bitmap_list);
2503 while (!list_empty(&head)) {
2504 struct stripe_head *sh = list_entry(head.next, struct stripe_head, lru);
2505 list_del_init(&sh->lru);
2506 atomic_inc(&sh->count);
2507 __release_stripe(conf, sh);
2508 }
2509}
2510
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511static void unplug_slaves(mddev_t *mddev)
2512{
2513 raid5_conf_t *conf = mddev_to_conf(mddev);
2514 int i;
2515
2516 rcu_read_lock();
2517 for (i=0; i<mddev->raid_disks; i++) {
Suzanne Woodd6065f72005-11-08 21:39:27 -08002518 mdk_rdev_t *rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownb2d444d2005-11-08 21:39:31 -08002519 if (rdev && !test_bit(Faulty, &rdev->flags) && atomic_read(&rdev->nr_pending)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 request_queue_t *r_queue = bdev_get_queue(rdev->bdev);
2521
2522 atomic_inc(&rdev->nr_pending);
2523 rcu_read_unlock();
2524
2525 if (r_queue->unplug_fn)
2526 r_queue->unplug_fn(r_queue);
2527
2528 rdev_dec_pending(rdev, mddev);
2529 rcu_read_lock();
2530 }
2531 }
2532 rcu_read_unlock();
2533}
2534
2535static void raid5_unplug_device(request_queue_t *q)
2536{
2537 mddev_t *mddev = q->queuedata;
2538 raid5_conf_t *conf = mddev_to_conf(mddev);
2539 unsigned long flags;
2540
2541 spin_lock_irqsave(&conf->device_lock, flags);
2542
NeilBrown72626682005-09-09 16:23:54 -07002543 if (blk_remove_plug(q)) {
2544 conf->seq_flush++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 raid5_activate_delayed(conf);
NeilBrown72626682005-09-09 16:23:54 -07002546 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 md_wakeup_thread(mddev->thread);
2548
2549 spin_unlock_irqrestore(&conf->device_lock, flags);
2550
2551 unplug_slaves(mddev);
2552}
2553
2554static int raid5_issue_flush(request_queue_t *q, struct gendisk *disk,
2555 sector_t *error_sector)
2556{
2557 mddev_t *mddev = q->queuedata;
2558 raid5_conf_t *conf = mddev_to_conf(mddev);
2559 int i, ret = 0;
2560
2561 rcu_read_lock();
2562 for (i=0; i<mddev->raid_disks && ret == 0; i++) {
Suzanne Woodd6065f72005-11-08 21:39:27 -08002563 mdk_rdev_t *rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownb2d444d2005-11-08 21:39:31 -08002564 if (rdev && !test_bit(Faulty, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 struct block_device *bdev = rdev->bdev;
2566 request_queue_t *r_queue = bdev_get_queue(bdev);
2567
2568 if (!r_queue->issue_flush_fn)
2569 ret = -EOPNOTSUPP;
2570 else {
2571 atomic_inc(&rdev->nr_pending);
2572 rcu_read_unlock();
2573 ret = r_queue->issue_flush_fn(r_queue, bdev->bd_disk,
2574 error_sector);
2575 rdev_dec_pending(rdev, mddev);
2576 rcu_read_lock();
2577 }
2578 }
2579 }
2580 rcu_read_unlock();
2581 return ret;
2582}
2583
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002584static int make_request(request_queue_t *q, struct bio * bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585{
2586 mddev_t *mddev = q->queuedata;
2587 raid5_conf_t *conf = mddev_to_conf(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 unsigned int dd_idx, pd_idx;
2589 sector_t new_sector;
2590 sector_t logical_sector, last_sector;
2591 struct stripe_head *sh;
Jens Axboea3623572005-11-01 09:26:16 +01002592 const int rw = bio_data_dir(bi);
NeilBrownf6344752006-03-27 01:18:17 -08002593 int remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594
NeilBrowne5dcdd82005-09-09 16:23:41 -07002595 if (unlikely(bio_barrier(bi))) {
2596 bio_endio(bi, bi->bi_size, -EOPNOTSUPP);
2597 return 0;
2598 }
2599
NeilBrown3d310eb2005-06-21 17:17:26 -07002600 md_write_start(mddev, bi);
NeilBrown06d91a52005-06-21 17:17:12 -07002601
Jens Axboea3623572005-11-01 09:26:16 +01002602 disk_stat_inc(mddev->gendisk, ios[rw]);
2603 disk_stat_add(mddev->gendisk, sectors[rw], bio_sectors(bi));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604
2605 logical_sector = bi->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
2606 last_sector = bi->bi_sector + (bi->bi_size>>9);
2607 bi->bi_next = NULL;
2608 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
NeilBrown06d91a52005-06-21 17:17:12 -07002609
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 for (;logical_sector < last_sector; logical_sector += STRIPE_SECTORS) {
2611 DEFINE_WAIT(w);
NeilBrown16a53ec2006-06-26 00:27:38 -07002612 int disks, data_disks;
NeilBrownb578d552006-03-27 01:18:12 -08002613
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002614 retry:
NeilBrownb578d552006-03-27 01:18:12 -08002615 prepare_to_wait(&conf->wait_for_overlap, &w, TASK_UNINTERRUPTIBLE);
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002616 if (likely(conf->expand_progress == MaxSector))
2617 disks = conf->raid_disks;
2618 else {
NeilBrowndf8e7f72006-03-27 01:18:15 -08002619 /* spinlock is needed as expand_progress may be
2620 * 64bit on a 32bit platform, and so it might be
2621 * possible to see a half-updated value
2622 * Ofcourse expand_progress could change after
2623 * the lock is dropped, so once we get a reference
2624 * to the stripe that we think it is, we will have
2625 * to check again.
2626 */
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002627 spin_lock_irq(&conf->device_lock);
2628 disks = conf->raid_disks;
2629 if (logical_sector >= conf->expand_progress)
2630 disks = conf->previous_raid_disks;
NeilBrownb578d552006-03-27 01:18:12 -08002631 else {
2632 if (logical_sector >= conf->expand_lo) {
2633 spin_unlock_irq(&conf->device_lock);
2634 schedule();
2635 goto retry;
2636 }
2637 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002638 spin_unlock_irq(&conf->device_lock);
2639 }
NeilBrown16a53ec2006-06-26 00:27:38 -07002640 data_disks = disks - conf->max_degraded;
2641
2642 new_sector = raid5_compute_sector(logical_sector, disks, data_disks,
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002643 &dd_idx, &pd_idx, conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 PRINTK("raid5: make_request, sector %llu logical %llu\n",
2645 (unsigned long long)new_sector,
2646 (unsigned long long)logical_sector);
2647
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002648 sh = get_active_stripe(conf, new_sector, disks, pd_idx, (bi->bi_rw&RWA_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 if (sh) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002650 if (unlikely(conf->expand_progress != MaxSector)) {
2651 /* expansion might have moved on while waiting for a
NeilBrowndf8e7f72006-03-27 01:18:15 -08002652 * stripe, so we must do the range check again.
2653 * Expansion could still move past after this
2654 * test, but as we are holding a reference to
2655 * 'sh', we know that if that happens,
2656 * STRIPE_EXPANDING will get set and the expansion
2657 * won't proceed until we finish with the stripe.
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002658 */
2659 int must_retry = 0;
2660 spin_lock_irq(&conf->device_lock);
2661 if (logical_sector < conf->expand_progress &&
2662 disks == conf->previous_raid_disks)
2663 /* mismatch, need to try again */
2664 must_retry = 1;
2665 spin_unlock_irq(&conf->device_lock);
2666 if (must_retry) {
2667 release_stripe(sh);
2668 goto retry;
2669 }
2670 }
NeilBrowne464eaf2006-03-27 01:18:14 -08002671 /* FIXME what if we get a false positive because these
2672 * are being updated.
2673 */
2674 if (logical_sector >= mddev->suspend_lo &&
2675 logical_sector < mddev->suspend_hi) {
2676 release_stripe(sh);
2677 schedule();
2678 goto retry;
2679 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002680
2681 if (test_bit(STRIPE_EXPANDING, &sh->state) ||
2682 !add_stripe_bio(sh, bi, dd_idx, (bi->bi_rw&RW_MASK))) {
2683 /* Stripe is busy expanding or
2684 * add failed due to overlap. Flush everything
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 * and wait a while
2686 */
2687 raid5_unplug_device(mddev->queue);
2688 release_stripe(sh);
2689 schedule();
2690 goto retry;
2691 }
2692 finish_wait(&conf->wait_for_overlap, &w);
NeilBrown16a53ec2006-06-26 00:27:38 -07002693 handle_stripe(sh, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 } else {
2696 /* cannot get stripe for read-ahead, just give-up */
2697 clear_bit(BIO_UPTODATE, &bi->bi_flags);
2698 finish_wait(&conf->wait_for_overlap, &w);
2699 break;
2700 }
2701
2702 }
2703 spin_lock_irq(&conf->device_lock);
NeilBrownf6344752006-03-27 01:18:17 -08002704 remaining = --bi->bi_phys_segments;
2705 spin_unlock_irq(&conf->device_lock);
2706 if (remaining == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 int bytes = bi->bi_size;
2708
NeilBrown16a53ec2006-06-26 00:27:38 -07002709 if ( rw == WRITE )
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 md_write_end(mddev);
2711 bi->bi_size = 0;
2712 bi->bi_end_io(bi, bytes, 0);
2713 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 return 0;
2715}
2716
NeilBrown52c03292006-06-26 00:27:43 -07002717static sector_t reshape_request(mddev_t *mddev, sector_t sector_nr, int *skipped)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718{
NeilBrown52c03292006-06-26 00:27:43 -07002719 /* reshaping is quite different to recovery/resync so it is
2720 * handled quite separately ... here.
2721 *
2722 * On each call to sync_request, we gather one chunk worth of
2723 * destination stripes and flag them as expanding.
2724 * Then we find all the source stripes and request reads.
2725 * As the reads complete, handle_stripe will copy the data
2726 * into the destination stripe and release that stripe.
2727 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
2729 struct stripe_head *sh;
NeilBrownccfcc3c2006-03-27 01:18:09 -08002730 int pd_idx;
2731 sector_t first_sector, last_sector;
NeilBrown52c03292006-06-26 00:27:43 -07002732 int raid_disks;
2733 int data_disks;
2734 int i;
2735 int dd_idx;
2736 sector_t writepos, safepos, gap;
2737
2738 if (sector_nr == 0 &&
2739 conf->expand_progress != 0) {
2740 /* restarting in the middle, skip the initial sectors */
2741 sector_nr = conf->expand_progress;
2742 sector_div(sector_nr, conf->raid_disks-1);
2743 *skipped = 1;
2744 return sector_nr;
2745 }
2746
2747 /* we update the metadata when there is more than 3Meg
2748 * in the block range (that is rather arbitrary, should
2749 * probably be time based) or when the data about to be
2750 * copied would over-write the source of the data at
2751 * the front of the range.
2752 * i.e. one new_stripe forward from expand_progress new_maps
2753 * to after where expand_lo old_maps to
2754 */
2755 writepos = conf->expand_progress +
2756 conf->chunk_size/512*(conf->raid_disks-1);
2757 sector_div(writepos, conf->raid_disks-1);
2758 safepos = conf->expand_lo;
2759 sector_div(safepos, conf->previous_raid_disks-1);
2760 gap = conf->expand_progress - conf->expand_lo;
2761
2762 if (writepos >= safepos ||
2763 gap > (conf->raid_disks-1)*3000*2 /*3Meg*/) {
2764 /* Cannot proceed until we've updated the superblock... */
2765 wait_event(conf->wait_for_overlap,
2766 atomic_read(&conf->reshape_stripes)==0);
2767 mddev->reshape_position = conf->expand_progress;
2768 mddev->sb_dirty = 1;
2769 md_wakeup_thread(mddev->thread);
2770 wait_event(mddev->sb_wait, mddev->sb_dirty == 0 ||
2771 kthread_should_stop());
2772 spin_lock_irq(&conf->device_lock);
2773 conf->expand_lo = mddev->reshape_position;
2774 spin_unlock_irq(&conf->device_lock);
2775 wake_up(&conf->wait_for_overlap);
2776 }
2777
2778 for (i=0; i < conf->chunk_size/512; i+= STRIPE_SECTORS) {
2779 int j;
2780 int skipped = 0;
2781 pd_idx = stripe_to_pdidx(sector_nr+i, conf, conf->raid_disks);
2782 sh = get_active_stripe(conf, sector_nr+i,
2783 conf->raid_disks, pd_idx, 0);
2784 set_bit(STRIPE_EXPANDING, &sh->state);
2785 atomic_inc(&conf->reshape_stripes);
2786 /* If any of this stripe is beyond the end of the old
2787 * array, then we need to zero those blocks
2788 */
2789 for (j=sh->disks; j--;) {
2790 sector_t s;
2791 if (j == sh->pd_idx)
2792 continue;
2793 s = compute_blocknr(sh, j);
2794 if (s < (mddev->array_size<<1)) {
2795 skipped = 1;
2796 continue;
2797 }
2798 memset(page_address(sh->dev[j].page), 0, STRIPE_SIZE);
2799 set_bit(R5_Expanded, &sh->dev[j].flags);
2800 set_bit(R5_UPTODATE, &sh->dev[j].flags);
2801 }
2802 if (!skipped) {
2803 set_bit(STRIPE_EXPAND_READY, &sh->state);
2804 set_bit(STRIPE_HANDLE, &sh->state);
2805 }
2806 release_stripe(sh);
2807 }
2808 spin_lock_irq(&conf->device_lock);
2809 conf->expand_progress = (sector_nr + i)*(conf->raid_disks-1);
2810 spin_unlock_irq(&conf->device_lock);
2811 /* Ok, those stripe are ready. We can start scheduling
2812 * reads on the source stripes.
2813 * The source stripes are determined by mapping the first and last
2814 * block on the destination stripes.
2815 */
2816 raid_disks = conf->previous_raid_disks;
2817 data_disks = raid_disks - 1;
2818 first_sector =
2819 raid5_compute_sector(sector_nr*(conf->raid_disks-1),
2820 raid_disks, data_disks,
2821 &dd_idx, &pd_idx, conf);
2822 last_sector =
2823 raid5_compute_sector((sector_nr+conf->chunk_size/512)
2824 *(conf->raid_disks-1) -1,
2825 raid_disks, data_disks,
2826 &dd_idx, &pd_idx, conf);
2827 if (last_sector >= (mddev->size<<1))
2828 last_sector = (mddev->size<<1)-1;
2829 while (first_sector <= last_sector) {
2830 pd_idx = stripe_to_pdidx(first_sector, conf, conf->previous_raid_disks);
2831 sh = get_active_stripe(conf, first_sector,
2832 conf->previous_raid_disks, pd_idx, 0);
2833 set_bit(STRIPE_EXPAND_SOURCE, &sh->state);
2834 set_bit(STRIPE_HANDLE, &sh->state);
2835 release_stripe(sh);
2836 first_sector += STRIPE_SECTORS;
2837 }
2838 return conf->chunk_size>>9;
2839}
2840
2841/* FIXME go_faster isn't used */
2842static inline sector_t sync_request(mddev_t *mddev, sector_t sector_nr, int *skipped, int go_faster)
2843{
2844 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
2845 struct stripe_head *sh;
2846 int pd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 int raid_disks = conf->raid_disks;
NeilBrown72626682005-09-09 16:23:54 -07002848 sector_t max_sector = mddev->size << 1;
2849 int sync_blocks;
NeilBrown16a53ec2006-06-26 00:27:38 -07002850 int still_degraded = 0;
2851 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852
NeilBrown72626682005-09-09 16:23:54 -07002853 if (sector_nr >= max_sector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 /* just being told to finish up .. nothing much to do */
2855 unplug_slaves(mddev);
NeilBrown29269552006-03-27 01:18:10 -08002856 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery)) {
2857 end_reshape(conf);
2858 return 0;
2859 }
NeilBrown72626682005-09-09 16:23:54 -07002860
2861 if (mddev->curr_resync < max_sector) /* aborted */
2862 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
2863 &sync_blocks, 1);
NeilBrown16a53ec2006-06-26 00:27:38 -07002864 else /* completed sync */
NeilBrown72626682005-09-09 16:23:54 -07002865 conf->fullsync = 0;
2866 bitmap_close_sync(mddev->bitmap);
2867
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 return 0;
2869 }
NeilBrownccfcc3c2006-03-27 01:18:09 -08002870
NeilBrown52c03292006-06-26 00:27:43 -07002871 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery))
2872 return reshape_request(mddev, sector_nr, skipped);
NeilBrownf6705572006-03-27 01:18:11 -08002873
NeilBrown16a53ec2006-06-26 00:27:38 -07002874 /* if there is too many failed drives and we are trying
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 * to resync, then assert that we are finished, because there is
2876 * nothing we can do.
2877 */
NeilBrown3285edf2006-06-26 00:27:55 -07002878 if (mddev->degraded >= conf->max_degraded &&
NeilBrown16a53ec2006-06-26 00:27:38 -07002879 test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
NeilBrown57afd892005-06-21 17:17:13 -07002880 sector_t rv = (mddev->size << 1) - sector_nr;
2881 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 return rv;
2883 }
NeilBrown72626682005-09-09 16:23:54 -07002884 if (!bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
NeilBrown3855ad92005-11-08 21:39:38 -08002885 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
NeilBrown72626682005-09-09 16:23:54 -07002886 !conf->fullsync && sync_blocks >= STRIPE_SECTORS) {
2887 /* we can skip this block, and probably more */
2888 sync_blocks /= STRIPE_SECTORS;
2889 *skipped = 1;
2890 return sync_blocks * STRIPE_SECTORS; /* keep things rounded to whole stripes */
2891 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892
NeilBrownccfcc3c2006-03-27 01:18:09 -08002893 pd_idx = stripe_to_pdidx(sector_nr, conf, raid_disks);
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002894 sh = get_active_stripe(conf, sector_nr, raid_disks, pd_idx, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 if (sh == NULL) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002896 sh = get_active_stripe(conf, sector_nr, raid_disks, pd_idx, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 /* make sure we don't swamp the stripe cache if someone else
NeilBrown16a53ec2006-06-26 00:27:38 -07002898 * is trying to get access
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 */
Nishanth Aravamudan66c006a2005-11-07 01:01:17 -08002900 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 }
NeilBrown16a53ec2006-06-26 00:27:38 -07002902 /* Need to check if array will still be degraded after recovery/resync
2903 * We don't need to check the 'failed' flag as when that gets set,
2904 * recovery aborts.
2905 */
2906 for (i=0; i<mddev->raid_disks; i++)
2907 if (conf->disks[i].rdev == NULL)
2908 still_degraded = 1;
2909
2910 bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, still_degraded);
2911
2912 spin_lock(&sh->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 set_bit(STRIPE_SYNCING, &sh->state);
2914 clear_bit(STRIPE_INSYNC, &sh->state);
2915 spin_unlock(&sh->lock);
2916
NeilBrown16a53ec2006-06-26 00:27:38 -07002917 handle_stripe(sh, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 release_stripe(sh);
2919
2920 return STRIPE_SECTORS;
2921}
2922
2923/*
2924 * This is our raid5 kernel thread.
2925 *
2926 * We scan the hash table for stripes which can be handled now.
2927 * During the scan, completed stripes are saved for us by the interrupt
2928 * handler, so that they will not have to wait for our next wakeup.
2929 */
2930static void raid5d (mddev_t *mddev)
2931{
2932 struct stripe_head *sh;
2933 raid5_conf_t *conf = mddev_to_conf(mddev);
2934 int handled;
2935
2936 PRINTK("+++ raid5d active\n");
2937
2938 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939
2940 handled = 0;
2941 spin_lock_irq(&conf->device_lock);
2942 while (1) {
2943 struct list_head *first;
2944
NeilBrownae3c20c2006-07-10 04:44:17 -07002945 if (conf->seq_flush != conf->seq_write) {
NeilBrown72626682005-09-09 16:23:54 -07002946 int seq = conf->seq_flush;
NeilBrown700e4322005-11-28 13:44:10 -08002947 spin_unlock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07002948 bitmap_unplug(mddev->bitmap);
NeilBrown700e4322005-11-28 13:44:10 -08002949 spin_lock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07002950 conf->seq_write = seq;
2951 activate_bit_delay(conf);
2952 }
2953
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 if (list_empty(&conf->handle_list) &&
2955 atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD &&
2956 !blk_queue_plugged(mddev->queue) &&
2957 !list_empty(&conf->delayed_list))
2958 raid5_activate_delayed(conf);
2959
2960 if (list_empty(&conf->handle_list))
2961 break;
2962
2963 first = conf->handle_list.next;
2964 sh = list_entry(first, struct stripe_head, lru);
2965
2966 list_del_init(first);
2967 atomic_inc(&sh->count);
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02002968 BUG_ON(atomic_read(&sh->count)!= 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 spin_unlock_irq(&conf->device_lock);
2970
2971 handled++;
NeilBrown16a53ec2006-06-26 00:27:38 -07002972 handle_stripe(sh, conf->spare_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 release_stripe(sh);
2974
2975 spin_lock_irq(&conf->device_lock);
2976 }
2977 PRINTK("%d stripes handled\n", handled);
2978
2979 spin_unlock_irq(&conf->device_lock);
2980
2981 unplug_slaves(mddev);
2982
2983 PRINTK("--- raid5d inactive\n");
2984}
2985
NeilBrown3f294f42005-11-08 21:39:25 -08002986static ssize_t
NeilBrown007583c2005-11-08 21:39:30 -08002987raid5_show_stripe_cache_size(mddev_t *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08002988{
NeilBrown007583c2005-11-08 21:39:30 -08002989 raid5_conf_t *conf = mddev_to_conf(mddev);
NeilBrown96de1e62005-11-08 21:39:39 -08002990 if (conf)
2991 return sprintf(page, "%d\n", conf->max_nr_stripes);
2992 else
2993 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08002994}
2995
2996static ssize_t
NeilBrown007583c2005-11-08 21:39:30 -08002997raid5_store_stripe_cache_size(mddev_t *mddev, const char *page, size_t len)
NeilBrown3f294f42005-11-08 21:39:25 -08002998{
NeilBrown007583c2005-11-08 21:39:30 -08002999 raid5_conf_t *conf = mddev_to_conf(mddev);
NeilBrown3f294f42005-11-08 21:39:25 -08003000 char *end;
3001 int new;
3002 if (len >= PAGE_SIZE)
3003 return -EINVAL;
NeilBrown96de1e62005-11-08 21:39:39 -08003004 if (!conf)
3005 return -ENODEV;
NeilBrown3f294f42005-11-08 21:39:25 -08003006
3007 new = simple_strtoul(page, &end, 10);
3008 if (!*page || (*end && *end != '\n') )
3009 return -EINVAL;
3010 if (new <= 16 || new > 32768)
3011 return -EINVAL;
3012 while (new < conf->max_nr_stripes) {
3013 if (drop_one_stripe(conf))
3014 conf->max_nr_stripes--;
3015 else
3016 break;
3017 }
3018 while (new > conf->max_nr_stripes) {
3019 if (grow_one_stripe(conf))
3020 conf->max_nr_stripes++;
3021 else break;
3022 }
3023 return len;
3024}
NeilBrown007583c2005-11-08 21:39:30 -08003025
NeilBrown96de1e62005-11-08 21:39:39 -08003026static struct md_sysfs_entry
3027raid5_stripecache_size = __ATTR(stripe_cache_size, S_IRUGO | S_IWUSR,
3028 raid5_show_stripe_cache_size,
3029 raid5_store_stripe_cache_size);
NeilBrown3f294f42005-11-08 21:39:25 -08003030
3031static ssize_t
NeilBrown96de1e62005-11-08 21:39:39 -08003032stripe_cache_active_show(mddev_t *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08003033{
NeilBrown007583c2005-11-08 21:39:30 -08003034 raid5_conf_t *conf = mddev_to_conf(mddev);
NeilBrown96de1e62005-11-08 21:39:39 -08003035 if (conf)
3036 return sprintf(page, "%d\n", atomic_read(&conf->active_stripes));
3037 else
3038 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08003039}
3040
NeilBrown96de1e62005-11-08 21:39:39 -08003041static struct md_sysfs_entry
3042raid5_stripecache_active = __ATTR_RO(stripe_cache_active);
NeilBrown3f294f42005-11-08 21:39:25 -08003043
NeilBrown007583c2005-11-08 21:39:30 -08003044static struct attribute *raid5_attrs[] = {
NeilBrown3f294f42005-11-08 21:39:25 -08003045 &raid5_stripecache_size.attr,
3046 &raid5_stripecache_active.attr,
3047 NULL,
3048};
NeilBrown007583c2005-11-08 21:39:30 -08003049static struct attribute_group raid5_attrs_group = {
3050 .name = NULL,
3051 .attrs = raid5_attrs,
NeilBrown3f294f42005-11-08 21:39:25 -08003052};
3053
NeilBrown72626682005-09-09 16:23:54 -07003054static int run(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055{
3056 raid5_conf_t *conf;
3057 int raid_disk, memory;
3058 mdk_rdev_t *rdev;
3059 struct disk_info *disk;
3060 struct list_head *tmp;
3061
NeilBrown16a53ec2006-06-26 00:27:38 -07003062 if (mddev->level != 5 && mddev->level != 4 && mddev->level != 6) {
3063 printk(KERN_ERR "raid5: %s: raid level not set to 4/5/6 (%d)\n",
NeilBrown14f8d262006-01-06 00:20:14 -08003064 mdname(mddev), mddev->level);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 return -EIO;
3066 }
3067
NeilBrownf6705572006-03-27 01:18:11 -08003068 if (mddev->reshape_position != MaxSector) {
3069 /* Check that we can continue the reshape.
3070 * Currently only disks can change, it must
3071 * increase, and we must be past the point where
3072 * a stripe over-writes itself
3073 */
3074 sector_t here_new, here_old;
3075 int old_disks;
3076
3077 if (mddev->new_level != mddev->level ||
3078 mddev->new_layout != mddev->layout ||
3079 mddev->new_chunk != mddev->chunk_size) {
3080 printk(KERN_ERR "raid5: %s: unsupported reshape required - aborting.\n",
3081 mdname(mddev));
3082 return -EINVAL;
3083 }
3084 if (mddev->delta_disks <= 0) {
3085 printk(KERN_ERR "raid5: %s: unsupported reshape (reduce disks) required - aborting.\n",
3086 mdname(mddev));
3087 return -EINVAL;
3088 }
3089 old_disks = mddev->raid_disks - mddev->delta_disks;
3090 /* reshape_position must be on a new-stripe boundary, and one
3091 * further up in new geometry must map after here in old geometry.
3092 */
3093 here_new = mddev->reshape_position;
3094 if (sector_div(here_new, (mddev->chunk_size>>9)*(mddev->raid_disks-1))) {
3095 printk(KERN_ERR "raid5: reshape_position not on a stripe boundary\n");
3096 return -EINVAL;
3097 }
3098 /* here_new is the stripe we will write to */
3099 here_old = mddev->reshape_position;
3100 sector_div(here_old, (mddev->chunk_size>>9)*(old_disks-1));
3101 /* here_old is the first stripe that we might need to read from */
3102 if (here_new >= here_old) {
3103 /* Reading from the same stripe as writing to - bad */
3104 printk(KERN_ERR "raid5: reshape_position too early for auto-recovery - aborting.\n");
3105 return -EINVAL;
3106 }
3107 printk(KERN_INFO "raid5: reshape will continue\n");
3108 /* OK, we should be able to continue; */
3109 }
3110
3111
NeilBrownb55e6bf2006-03-27 01:18:06 -08003112 mddev->private = kzalloc(sizeof (raid5_conf_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 if ((conf = mddev->private) == NULL)
3114 goto abort;
NeilBrownf6705572006-03-27 01:18:11 -08003115 if (mddev->reshape_position == MaxSector) {
3116 conf->previous_raid_disks = conf->raid_disks = mddev->raid_disks;
3117 } else {
3118 conf->raid_disks = mddev->raid_disks;
3119 conf->previous_raid_disks = mddev->raid_disks - mddev->delta_disks;
3120 }
3121
3122 conf->disks = kzalloc(conf->raid_disks * sizeof(struct disk_info),
NeilBrownb55e6bf2006-03-27 01:18:06 -08003123 GFP_KERNEL);
3124 if (!conf->disks)
3125 goto abort;
NeilBrown9ffae0c2006-01-06 00:20:32 -08003126
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 conf->mddev = mddev;
3128
NeilBrownfccddba2006-01-06 00:20:33 -08003129 if ((conf->stripe_hashtbl = kzalloc(PAGE_SIZE, GFP_KERNEL)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131
NeilBrown16a53ec2006-06-26 00:27:38 -07003132 if (mddev->level == 6) {
3133 conf->spare_page = alloc_page(GFP_KERNEL);
3134 if (!conf->spare_page)
3135 goto abort;
3136 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137 spin_lock_init(&conf->device_lock);
3138 init_waitqueue_head(&conf->wait_for_stripe);
3139 init_waitqueue_head(&conf->wait_for_overlap);
3140 INIT_LIST_HEAD(&conf->handle_list);
3141 INIT_LIST_HEAD(&conf->delayed_list);
NeilBrown72626682005-09-09 16:23:54 -07003142 INIT_LIST_HEAD(&conf->bitmap_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 INIT_LIST_HEAD(&conf->inactive_list);
3144 atomic_set(&conf->active_stripes, 0);
3145 atomic_set(&conf->preread_active_stripes, 0);
3146
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147 PRINTK("raid5: run(%s) called.\n", mdname(mddev));
3148
3149 ITERATE_RDEV(mddev,rdev,tmp) {
3150 raid_disk = rdev->raid_disk;
NeilBrownf6705572006-03-27 01:18:11 -08003151 if (raid_disk >= conf->raid_disks
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152 || raid_disk < 0)
3153 continue;
3154 disk = conf->disks + raid_disk;
3155
3156 disk->rdev = rdev;
3157
NeilBrownb2d444d2005-11-08 21:39:31 -08003158 if (test_bit(In_sync, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159 char b[BDEVNAME_SIZE];
3160 printk(KERN_INFO "raid5: device %s operational as raid"
3161 " disk %d\n", bdevname(rdev->bdev,b),
3162 raid_disk);
3163 conf->working_disks++;
3164 }
3165 }
3166
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167 /*
NeilBrown16a53ec2006-06-26 00:27:38 -07003168 * 0 for a fully functional array, 1 or 2 for a degraded array.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 */
3170 mddev->degraded = conf->failed_disks = conf->raid_disks - conf->working_disks;
3171 conf->mddev = mddev;
3172 conf->chunk_size = mddev->chunk_size;
3173 conf->level = mddev->level;
NeilBrown16a53ec2006-06-26 00:27:38 -07003174 if (conf->level == 6)
3175 conf->max_degraded = 2;
3176 else
3177 conf->max_degraded = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 conf->algorithm = mddev->layout;
3179 conf->max_nr_stripes = NR_STRIPES;
NeilBrownf6705572006-03-27 01:18:11 -08003180 conf->expand_progress = mddev->reshape_position;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181
3182 /* device size must be a multiple of chunk size */
3183 mddev->size &= ~(mddev->chunk_size/1024 -1);
NeilBrownb1581562005-07-31 22:34:50 -07003184 mddev->resync_max_sectors = mddev->size << 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185
NeilBrown16a53ec2006-06-26 00:27:38 -07003186 if (conf->level == 6 && conf->raid_disks < 4) {
3187 printk(KERN_ERR "raid6: not enough configured devices for %s (%d, minimum 4)\n",
3188 mdname(mddev), conf->raid_disks);
3189 goto abort;
3190 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191 if (!conf->chunk_size || conf->chunk_size % 4) {
3192 printk(KERN_ERR "raid5: invalid chunk size %d for %s\n",
3193 conf->chunk_size, mdname(mddev));
3194 goto abort;
3195 }
3196 if (conf->algorithm > ALGORITHM_RIGHT_SYMMETRIC) {
3197 printk(KERN_ERR
3198 "raid5: unsupported parity algorithm %d for %s\n",
3199 conf->algorithm, mdname(mddev));
3200 goto abort;
3201 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003202 if (mddev->degraded > conf->max_degraded) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203 printk(KERN_ERR "raid5: not enough operational devices for %s"
3204 " (%d/%d failed)\n",
3205 mdname(mddev), conf->failed_disks, conf->raid_disks);
3206 goto abort;
3207 }
3208
NeilBrown16a53ec2006-06-26 00:27:38 -07003209 if (mddev->degraded > 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210 mddev->recovery_cp != MaxSector) {
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08003211 if (mddev->ok_start_degraded)
3212 printk(KERN_WARNING
3213 "raid5: starting dirty degraded array: %s"
3214 "- data corruption possible.\n",
3215 mdname(mddev));
3216 else {
3217 printk(KERN_ERR
3218 "raid5: cannot start dirty degraded array for %s\n",
3219 mdname(mddev));
3220 goto abort;
3221 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222 }
3223
3224 {
3225 mddev->thread = md_register_thread(raid5d, mddev, "%s_raid5");
3226 if (!mddev->thread) {
3227 printk(KERN_ERR
3228 "raid5: couldn't allocate thread for %s\n",
3229 mdname(mddev));
3230 goto abort;
3231 }
3232 }
NeilBrown50368052005-12-12 02:39:17 -08003233 memory = conf->max_nr_stripes * (sizeof(struct stripe_head) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 conf->raid_disks * ((sizeof(struct bio) + PAGE_SIZE))) / 1024;
3235 if (grow_stripes(conf, conf->max_nr_stripes)) {
3236 printk(KERN_ERR
3237 "raid5: couldn't allocate %dkB for buffers\n", memory);
3238 shrink_stripes(conf);
3239 md_unregister_thread(mddev->thread);
3240 goto abort;
3241 } else
3242 printk(KERN_INFO "raid5: allocated %dkB for %s\n",
3243 memory, mdname(mddev));
3244
3245 if (mddev->degraded == 0)
3246 printk("raid5: raid level %d set %s active with %d out of %d"
3247 " devices, algorithm %d\n", conf->level, mdname(mddev),
3248 mddev->raid_disks-mddev->degraded, mddev->raid_disks,
3249 conf->algorithm);
3250 else
3251 printk(KERN_ALERT "raid5: raid level %d set %s active with %d"
3252 " out of %d devices, algorithm %d\n", conf->level,
3253 mdname(mddev), mddev->raid_disks - mddev->degraded,
3254 mddev->raid_disks, conf->algorithm);
3255
3256 print_raid5_conf(conf);
3257
NeilBrownf6705572006-03-27 01:18:11 -08003258 if (conf->expand_progress != MaxSector) {
3259 printk("...ok start reshape thread\n");
NeilBrownb578d552006-03-27 01:18:12 -08003260 conf->expand_lo = conf->expand_progress;
NeilBrownf6705572006-03-27 01:18:11 -08003261 atomic_set(&conf->reshape_stripes, 0);
3262 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
3263 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
3264 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
3265 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
3266 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
3267 "%s_reshape");
NeilBrownf6705572006-03-27 01:18:11 -08003268 }
3269
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270 /* read-ahead size must cover two whole stripes, which is
NeilBrown16a53ec2006-06-26 00:27:38 -07003271 * 2 * (datadisks) * chunksize where 'n' is the number of raid devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 */
3273 {
NeilBrown16a53ec2006-06-26 00:27:38 -07003274 int data_disks = conf->previous_raid_disks - conf->max_degraded;
3275 int stripe = data_disks *
NeilBrown8932c2e2006-06-26 00:27:36 -07003276 (mddev->chunk_size / PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277 if (mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
3278 mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
3279 }
3280
3281 /* Ok, everything is just fine now */
NeilBrown007583c2005-11-08 21:39:30 -08003282 sysfs_create_group(&mddev->kobj, &raid5_attrs_group);
NeilBrown7a5febe2005-05-16 21:53:16 -07003283
3284 mddev->queue->unplug_fn = raid5_unplug_device;
3285 mddev->queue->issue_flush_fn = raid5_issue_flush;
NeilBrown16a53ec2006-06-26 00:27:38 -07003286 mddev->array_size = mddev->size * (conf->previous_raid_disks -
3287 conf->max_degraded);
NeilBrown7a5febe2005-05-16 21:53:16 -07003288
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289 return 0;
3290abort:
3291 if (conf) {
3292 print_raid5_conf(conf);
NeilBrown16a53ec2006-06-26 00:27:38 -07003293 safe_put_page(conf->spare_page);
NeilBrownb55e6bf2006-03-27 01:18:06 -08003294 kfree(conf->disks);
NeilBrownfccddba2006-01-06 00:20:33 -08003295 kfree(conf->stripe_hashtbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296 kfree(conf);
3297 }
3298 mddev->private = NULL;
3299 printk(KERN_ALERT "raid5: failed to run raid set %s\n", mdname(mddev));
3300 return -EIO;
3301}
3302
3303
3304
NeilBrown3f294f42005-11-08 21:39:25 -08003305static int stop(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306{
3307 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
3308
3309 md_unregister_thread(mddev->thread);
3310 mddev->thread = NULL;
3311 shrink_stripes(conf);
NeilBrownfccddba2006-01-06 00:20:33 -08003312 kfree(conf->stripe_hashtbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313 blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/
NeilBrown007583c2005-11-08 21:39:30 -08003314 sysfs_remove_group(&mddev->kobj, &raid5_attrs_group);
NeilBrownb55e6bf2006-03-27 01:18:06 -08003315 kfree(conf->disks);
NeilBrown96de1e62005-11-08 21:39:39 -08003316 kfree(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 mddev->private = NULL;
3318 return 0;
3319}
3320
3321#if RAID5_DEBUG
NeilBrown16a53ec2006-06-26 00:27:38 -07003322static void print_sh (struct seq_file *seq, struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323{
3324 int i;
3325
NeilBrown16a53ec2006-06-26 00:27:38 -07003326 seq_printf(seq, "sh %llu, pd_idx %d, state %ld.\n",
3327 (unsigned long long)sh->sector, sh->pd_idx, sh->state);
3328 seq_printf(seq, "sh %llu, count %d.\n",
3329 (unsigned long long)sh->sector, atomic_read(&sh->count));
3330 seq_printf(seq, "sh %llu, ", (unsigned long long)sh->sector);
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003331 for (i = 0; i < sh->disks; i++) {
NeilBrown16a53ec2006-06-26 00:27:38 -07003332 seq_printf(seq, "(cache%d: %p %ld) ",
3333 i, sh->dev[i].page, sh->dev[i].flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003335 seq_printf(seq, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336}
3337
NeilBrown16a53ec2006-06-26 00:27:38 -07003338static void printall (struct seq_file *seq, raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339{
3340 struct stripe_head *sh;
NeilBrownfccddba2006-01-06 00:20:33 -08003341 struct hlist_node *hn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342 int i;
3343
3344 spin_lock_irq(&conf->device_lock);
3345 for (i = 0; i < NR_HASH; i++) {
NeilBrownfccddba2006-01-06 00:20:33 -08003346 hlist_for_each_entry(sh, hn, &conf->stripe_hashtbl[i], hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347 if (sh->raid_conf != conf)
3348 continue;
NeilBrown16a53ec2006-06-26 00:27:38 -07003349 print_sh(seq, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350 }
3351 }
3352 spin_unlock_irq(&conf->device_lock);
3353}
3354#endif
3355
3356static void status (struct seq_file *seq, mddev_t *mddev)
3357{
3358 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
3359 int i;
3360
3361 seq_printf (seq, " level %d, %dk chunk, algorithm %d", mddev->level, mddev->chunk_size >> 10, mddev->layout);
3362 seq_printf (seq, " [%d/%d] [", conf->raid_disks, conf->working_disks);
3363 for (i = 0; i < conf->raid_disks; i++)
3364 seq_printf (seq, "%s",
3365 conf->disks[i].rdev &&
NeilBrownb2d444d2005-11-08 21:39:31 -08003366 test_bit(In_sync, &conf->disks[i].rdev->flags) ? "U" : "_");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367 seq_printf (seq, "]");
3368#if RAID5_DEBUG
NeilBrown16a53ec2006-06-26 00:27:38 -07003369 seq_printf (seq, "\n");
3370 printall(seq, conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371#endif
3372}
3373
3374static void print_raid5_conf (raid5_conf_t *conf)
3375{
3376 int i;
3377 struct disk_info *tmp;
3378
3379 printk("RAID5 conf printout:\n");
3380 if (!conf) {
3381 printk("(conf==NULL)\n");
3382 return;
3383 }
3384 printk(" --- rd:%d wd:%d fd:%d\n", conf->raid_disks,
3385 conf->working_disks, conf->failed_disks);
3386
3387 for (i = 0; i < conf->raid_disks; i++) {
3388 char b[BDEVNAME_SIZE];
3389 tmp = conf->disks + i;
3390 if (tmp->rdev)
3391 printk(" disk %d, o:%d, dev:%s\n",
NeilBrownb2d444d2005-11-08 21:39:31 -08003392 i, !test_bit(Faulty, &tmp->rdev->flags),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393 bdevname(tmp->rdev->bdev,b));
3394 }
3395}
3396
3397static int raid5_spare_active(mddev_t *mddev)
3398{
3399 int i;
3400 raid5_conf_t *conf = mddev->private;
3401 struct disk_info *tmp;
3402
3403 for (i = 0; i < conf->raid_disks; i++) {
3404 tmp = conf->disks + i;
3405 if (tmp->rdev
NeilBrownb2d444d2005-11-08 21:39:31 -08003406 && !test_bit(Faulty, &tmp->rdev->flags)
3407 && !test_bit(In_sync, &tmp->rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408 mddev->degraded--;
3409 conf->failed_disks--;
3410 conf->working_disks++;
NeilBrownb2d444d2005-11-08 21:39:31 -08003411 set_bit(In_sync, &tmp->rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 }
3413 }
3414 print_raid5_conf(conf);
3415 return 0;
3416}
3417
3418static int raid5_remove_disk(mddev_t *mddev, int number)
3419{
3420 raid5_conf_t *conf = mddev->private;
3421 int err = 0;
3422 mdk_rdev_t *rdev;
3423 struct disk_info *p = conf->disks + number;
3424
3425 print_raid5_conf(conf);
3426 rdev = p->rdev;
3427 if (rdev) {
NeilBrownb2d444d2005-11-08 21:39:31 -08003428 if (test_bit(In_sync, &rdev->flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429 atomic_read(&rdev->nr_pending)) {
3430 err = -EBUSY;
3431 goto abort;
3432 }
3433 p->rdev = NULL;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07003434 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 if (atomic_read(&rdev->nr_pending)) {
3436 /* lost the race, try later */
3437 err = -EBUSY;
3438 p->rdev = rdev;
3439 }
3440 }
3441abort:
3442
3443 print_raid5_conf(conf);
3444 return err;
3445}
3446
3447static int raid5_add_disk(mddev_t *mddev, mdk_rdev_t *rdev)
3448{
3449 raid5_conf_t *conf = mddev->private;
3450 int found = 0;
3451 int disk;
3452 struct disk_info *p;
3453
NeilBrown16a53ec2006-06-26 00:27:38 -07003454 if (mddev->degraded > conf->max_degraded)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455 /* no point adding a device */
3456 return 0;
3457
3458 /*
NeilBrown16a53ec2006-06-26 00:27:38 -07003459 * find the disk ... but prefer rdev->saved_raid_disk
3460 * if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461 */
NeilBrown16a53ec2006-06-26 00:27:38 -07003462 if (rdev->saved_raid_disk >= 0 &&
3463 conf->disks[rdev->saved_raid_disk].rdev == NULL)
3464 disk = rdev->saved_raid_disk;
3465 else
3466 disk = 0;
3467 for ( ; disk < conf->raid_disks; disk++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468 if ((p=conf->disks + disk)->rdev == NULL) {
NeilBrownb2d444d2005-11-08 21:39:31 -08003469 clear_bit(In_sync, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470 rdev->raid_disk = disk;
3471 found = 1;
NeilBrown72626682005-09-09 16:23:54 -07003472 if (rdev->saved_raid_disk != disk)
3473 conf->fullsync = 1;
Suzanne Woodd6065f72005-11-08 21:39:27 -08003474 rcu_assign_pointer(p->rdev, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475 break;
3476 }
3477 print_raid5_conf(conf);
3478 return found;
3479}
3480
3481static int raid5_resize(mddev_t *mddev, sector_t sectors)
3482{
3483 /* no resync is happening, and there is enough space
3484 * on all devices, so we can resize.
3485 * We need to make sure resync covers any new space.
3486 * If the array is shrinking we should possibly wait until
3487 * any io in the removed space completes, but it hardly seems
3488 * worth it.
3489 */
NeilBrown16a53ec2006-06-26 00:27:38 -07003490 raid5_conf_t *conf = mddev_to_conf(mddev);
3491
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492 sectors &= ~((sector_t)mddev->chunk_size/512 - 1);
NeilBrown16a53ec2006-06-26 00:27:38 -07003493 mddev->array_size = (sectors * (mddev->raid_disks-conf->max_degraded))>>1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494 set_capacity(mddev->gendisk, mddev->array_size << 1);
3495 mddev->changed = 1;
3496 if (sectors/2 > mddev->size && mddev->recovery_cp == MaxSector) {
3497 mddev->recovery_cp = mddev->size << 1;
3498 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
3499 }
3500 mddev->size = sectors /2;
NeilBrown4b5c7ae2005-07-27 11:43:28 -07003501 mddev->resync_max_sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502 return 0;
3503}
3504
NeilBrown29269552006-03-27 01:18:10 -08003505#ifdef CONFIG_MD_RAID5_RESHAPE
NeilBrown63c70c42006-03-27 01:18:13 -08003506static int raid5_check_reshape(mddev_t *mddev)
NeilBrown29269552006-03-27 01:18:10 -08003507{
3508 raid5_conf_t *conf = mddev_to_conf(mddev);
3509 int err;
NeilBrown29269552006-03-27 01:18:10 -08003510
NeilBrown63c70c42006-03-27 01:18:13 -08003511 if (mddev->delta_disks < 0 ||
3512 mddev->new_level != mddev->level)
3513 return -EINVAL; /* Cannot shrink array or change level yet */
3514 if (mddev->delta_disks == 0)
NeilBrown29269552006-03-27 01:18:10 -08003515 return 0; /* nothing to do */
3516
3517 /* Can only proceed if there are plenty of stripe_heads.
3518 * We need a minimum of one full stripe,, and for sensible progress
3519 * it is best to have about 4 times that.
3520 * If we require 4 times, then the default 256 4K stripe_heads will
3521 * allow for chunk sizes up to 256K, which is probably OK.
3522 * If the chunk size is greater, user-space should request more
3523 * stripe_heads first.
3524 */
NeilBrown63c70c42006-03-27 01:18:13 -08003525 if ((mddev->chunk_size / STRIPE_SIZE) * 4 > conf->max_nr_stripes ||
3526 (mddev->new_chunk / STRIPE_SIZE) * 4 > conf->max_nr_stripes) {
NeilBrown29269552006-03-27 01:18:10 -08003527 printk(KERN_WARNING "raid5: reshape: not enough stripes. Needed %lu\n",
3528 (mddev->chunk_size / STRIPE_SIZE)*4);
3529 return -ENOSPC;
3530 }
3531
NeilBrown63c70c42006-03-27 01:18:13 -08003532 err = resize_stripes(conf, conf->raid_disks + mddev->delta_disks);
3533 if (err)
3534 return err;
3535
3536 /* looks like we might be able to manage this */
3537 return 0;
3538}
3539
3540static int raid5_start_reshape(mddev_t *mddev)
3541{
3542 raid5_conf_t *conf = mddev_to_conf(mddev);
3543 mdk_rdev_t *rdev;
3544 struct list_head *rtmp;
3545 int spares = 0;
3546 int added_devices = 0;
3547
3548 if (mddev->degraded ||
3549 test_bit(MD_RECOVERY_RUNNING, &mddev->recovery))
3550 return -EBUSY;
3551
NeilBrown29269552006-03-27 01:18:10 -08003552 ITERATE_RDEV(mddev, rdev, rtmp)
3553 if (rdev->raid_disk < 0 &&
3554 !test_bit(Faulty, &rdev->flags))
3555 spares++;
NeilBrown63c70c42006-03-27 01:18:13 -08003556
3557 if (spares < mddev->delta_disks-1)
NeilBrown29269552006-03-27 01:18:10 -08003558 /* Not enough devices even to make a degraded array
3559 * of that size
3560 */
3561 return -EINVAL;
3562
NeilBrownf6705572006-03-27 01:18:11 -08003563 atomic_set(&conf->reshape_stripes, 0);
NeilBrown29269552006-03-27 01:18:10 -08003564 spin_lock_irq(&conf->device_lock);
3565 conf->previous_raid_disks = conf->raid_disks;
NeilBrown63c70c42006-03-27 01:18:13 -08003566 conf->raid_disks += mddev->delta_disks;
NeilBrown29269552006-03-27 01:18:10 -08003567 conf->expand_progress = 0;
NeilBrownb578d552006-03-27 01:18:12 -08003568 conf->expand_lo = 0;
NeilBrown29269552006-03-27 01:18:10 -08003569 spin_unlock_irq(&conf->device_lock);
3570
3571 /* Add some new drives, as many as will fit.
3572 * We know there are enough to make the newly sized array work.
3573 */
3574 ITERATE_RDEV(mddev, rdev, rtmp)
3575 if (rdev->raid_disk < 0 &&
3576 !test_bit(Faulty, &rdev->flags)) {
3577 if (raid5_add_disk(mddev, rdev)) {
3578 char nm[20];
3579 set_bit(In_sync, &rdev->flags);
3580 conf->working_disks++;
3581 added_devices++;
NeilBrown5fd6c1d2006-06-26 00:27:40 -07003582 rdev->recovery_offset = 0;
NeilBrown29269552006-03-27 01:18:10 -08003583 sprintf(nm, "rd%d", rdev->raid_disk);
3584 sysfs_create_link(&mddev->kobj, &rdev->kobj, nm);
3585 } else
3586 break;
3587 }
3588
NeilBrown63c70c42006-03-27 01:18:13 -08003589 mddev->degraded = (conf->raid_disks - conf->previous_raid_disks) - added_devices;
3590 mddev->raid_disks = conf->raid_disks;
NeilBrownf6705572006-03-27 01:18:11 -08003591 mddev->reshape_position = 0;
3592 mddev->sb_dirty = 1;
3593
NeilBrown29269552006-03-27 01:18:10 -08003594 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
3595 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
3596 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
3597 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
3598 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
3599 "%s_reshape");
3600 if (!mddev->sync_thread) {
3601 mddev->recovery = 0;
3602 spin_lock_irq(&conf->device_lock);
3603 mddev->raid_disks = conf->raid_disks = conf->previous_raid_disks;
3604 conf->expand_progress = MaxSector;
3605 spin_unlock_irq(&conf->device_lock);
3606 return -EAGAIN;
3607 }
3608 md_wakeup_thread(mddev->sync_thread);
3609 md_new_event(mddev);
3610 return 0;
3611}
3612#endif
3613
3614static void end_reshape(raid5_conf_t *conf)
3615{
3616 struct block_device *bdev;
3617
NeilBrownf6705572006-03-27 01:18:11 -08003618 if (!test_bit(MD_RECOVERY_INTR, &conf->mddev->recovery)) {
3619 conf->mddev->array_size = conf->mddev->size * (conf->raid_disks-1);
3620 set_capacity(conf->mddev->gendisk, conf->mddev->array_size << 1);
3621 conf->mddev->changed = 1;
NeilBrown29269552006-03-27 01:18:10 -08003622
NeilBrownf6705572006-03-27 01:18:11 -08003623 bdev = bdget_disk(conf->mddev->gendisk, 0);
3624 if (bdev) {
3625 mutex_lock(&bdev->bd_inode->i_mutex);
3626 i_size_write(bdev->bd_inode, conf->mddev->array_size << 10);
3627 mutex_unlock(&bdev->bd_inode->i_mutex);
3628 bdput(bdev);
3629 }
3630 spin_lock_irq(&conf->device_lock);
3631 conf->expand_progress = MaxSector;
3632 spin_unlock_irq(&conf->device_lock);
3633 conf->mddev->reshape_position = MaxSector;
NeilBrown16a53ec2006-06-26 00:27:38 -07003634
3635 /* read-ahead size must cover two whole stripes, which is
3636 * 2 * (datadisks) * chunksize where 'n' is the number of raid devices
3637 */
3638 {
3639 int data_disks = conf->previous_raid_disks - conf->max_degraded;
3640 int stripe = data_disks *
3641 (conf->mddev->chunk_size / PAGE_SIZE);
3642 if (conf->mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
3643 conf->mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
3644 }
NeilBrown29269552006-03-27 01:18:10 -08003645 }
NeilBrown29269552006-03-27 01:18:10 -08003646}
3647
NeilBrown72626682005-09-09 16:23:54 -07003648static void raid5_quiesce(mddev_t *mddev, int state)
3649{
3650 raid5_conf_t *conf = mddev_to_conf(mddev);
3651
3652 switch(state) {
NeilBrowne464eaf2006-03-27 01:18:14 -08003653 case 2: /* resume for a suspend */
3654 wake_up(&conf->wait_for_overlap);
3655 break;
3656
NeilBrown72626682005-09-09 16:23:54 -07003657 case 1: /* stop all writes */
3658 spin_lock_irq(&conf->device_lock);
3659 conf->quiesce = 1;
3660 wait_event_lock_irq(conf->wait_for_stripe,
3661 atomic_read(&conf->active_stripes) == 0,
3662 conf->device_lock, /* nothing */);
3663 spin_unlock_irq(&conf->device_lock);
3664 break;
3665
3666 case 0: /* re-enable writes */
3667 spin_lock_irq(&conf->device_lock);
3668 conf->quiesce = 0;
3669 wake_up(&conf->wait_for_stripe);
NeilBrowne464eaf2006-03-27 01:18:14 -08003670 wake_up(&conf->wait_for_overlap);
NeilBrown72626682005-09-09 16:23:54 -07003671 spin_unlock_irq(&conf->device_lock);
3672 break;
3673 }
NeilBrown72626682005-09-09 16:23:54 -07003674}
NeilBrownb15c2e52006-01-06 00:20:16 -08003675
NeilBrown16a53ec2006-06-26 00:27:38 -07003676static struct mdk_personality raid6_personality =
3677{
3678 .name = "raid6",
3679 .level = 6,
3680 .owner = THIS_MODULE,
3681 .make_request = make_request,
3682 .run = run,
3683 .stop = stop,
3684 .status = status,
3685 .error_handler = error,
3686 .hot_add_disk = raid5_add_disk,
3687 .hot_remove_disk= raid5_remove_disk,
3688 .spare_active = raid5_spare_active,
3689 .sync_request = sync_request,
3690 .resize = raid5_resize,
3691 .quiesce = raid5_quiesce,
3692};
NeilBrown2604b702006-01-06 00:20:36 -08003693static struct mdk_personality raid5_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694{
3695 .name = "raid5",
NeilBrown2604b702006-01-06 00:20:36 -08003696 .level = 5,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697 .owner = THIS_MODULE,
3698 .make_request = make_request,
3699 .run = run,
3700 .stop = stop,
3701 .status = status,
3702 .error_handler = error,
3703 .hot_add_disk = raid5_add_disk,
3704 .hot_remove_disk= raid5_remove_disk,
3705 .spare_active = raid5_spare_active,
3706 .sync_request = sync_request,
3707 .resize = raid5_resize,
NeilBrown29269552006-03-27 01:18:10 -08003708#ifdef CONFIG_MD_RAID5_RESHAPE
NeilBrown63c70c42006-03-27 01:18:13 -08003709 .check_reshape = raid5_check_reshape,
3710 .start_reshape = raid5_start_reshape,
NeilBrown29269552006-03-27 01:18:10 -08003711#endif
NeilBrown72626682005-09-09 16:23:54 -07003712 .quiesce = raid5_quiesce,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713};
3714
NeilBrown2604b702006-01-06 00:20:36 -08003715static struct mdk_personality raid4_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716{
NeilBrown2604b702006-01-06 00:20:36 -08003717 .name = "raid4",
3718 .level = 4,
3719 .owner = THIS_MODULE,
3720 .make_request = make_request,
3721 .run = run,
3722 .stop = stop,
3723 .status = status,
3724 .error_handler = error,
3725 .hot_add_disk = raid5_add_disk,
3726 .hot_remove_disk= raid5_remove_disk,
3727 .spare_active = raid5_spare_active,
3728 .sync_request = sync_request,
3729 .resize = raid5_resize,
3730 .quiesce = raid5_quiesce,
3731};
3732
3733static int __init raid5_init(void)
3734{
NeilBrown16a53ec2006-06-26 00:27:38 -07003735 int e;
3736
3737 e = raid6_select_algo();
3738 if ( e )
3739 return e;
3740 register_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08003741 register_md_personality(&raid5_personality);
3742 register_md_personality(&raid4_personality);
3743 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744}
3745
NeilBrown2604b702006-01-06 00:20:36 -08003746static void raid5_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747{
NeilBrown16a53ec2006-06-26 00:27:38 -07003748 unregister_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08003749 unregister_md_personality(&raid5_personality);
3750 unregister_md_personality(&raid4_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751}
3752
3753module_init(raid5_init);
3754module_exit(raid5_exit);
3755MODULE_LICENSE("GPL");
3756MODULE_ALIAS("md-personality-4"); /* RAID5 */
NeilBrownd9d166c2006-01-06 00:20:51 -08003757MODULE_ALIAS("md-raid5");
3758MODULE_ALIAS("md-raid4");
NeilBrown2604b702006-01-06 00:20:36 -08003759MODULE_ALIAS("md-level-5");
3760MODULE_ALIAS("md-level-4");
NeilBrown16a53ec2006-06-26 00:27:38 -07003761MODULE_ALIAS("md-personality-8"); /* RAID6 */
3762MODULE_ALIAS("md-raid6");
3763MODULE_ALIAS("md-level-6");
3764
3765/* This used to be two separate modules, they were: */
3766MODULE_ALIAS("raid5");
3767MODULE_ALIAS("raid6");