blob: 11c3d7bfa797e8777c5b2bdf47d9ec6f68c7da74 [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);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -0800137 if (conf->retry_read_aligned)
138 md_wakeup_thread(conf->mddev->thread);
NeilBrownccfcc3c2006-03-27 01:18:09 -0800139 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 }
141 }
142}
143static void release_stripe(struct stripe_head *sh)
144{
145 raid5_conf_t *conf = sh->raid_conf;
146 unsigned long flags;
NeilBrown16a53ec2006-06-26 00:27:38 -0700147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 spin_lock_irqsave(&conf->device_lock, flags);
149 __release_stripe(conf, sh);
150 spin_unlock_irqrestore(&conf->device_lock, flags);
151}
152
NeilBrownfccddba2006-01-06 00:20:33 -0800153static inline void remove_hash(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
155 PRINTK("remove_hash(), stripe %llu\n", (unsigned long long)sh->sector);
156
NeilBrownfccddba2006-01-06 00:20:33 -0800157 hlist_del_init(&sh->hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
159
NeilBrown16a53ec2006-06-26 00:27:38 -0700160static inline void insert_hash(raid5_conf_t *conf, struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
NeilBrownfccddba2006-01-06 00:20:33 -0800162 struct hlist_head *hp = stripe_hash(conf, sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 PRINTK("insert_hash(), stripe %llu\n", (unsigned long long)sh->sector);
165
166 CHECK_DEVLOCK();
NeilBrownfccddba2006-01-06 00:20:33 -0800167 hlist_add_head(&sh->hash, hp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168}
169
170
171/* find an idle stripe, make sure it is unhashed, and return it. */
172static struct stripe_head *get_free_stripe(raid5_conf_t *conf)
173{
174 struct stripe_head *sh = NULL;
175 struct list_head *first;
176
177 CHECK_DEVLOCK();
178 if (list_empty(&conf->inactive_list))
179 goto out;
180 first = conf->inactive_list.next;
181 sh = list_entry(first, struct stripe_head, lru);
182 list_del_init(first);
183 remove_hash(sh);
184 atomic_inc(&conf->active_stripes);
185out:
186 return sh;
187}
188
189static void shrink_buffers(struct stripe_head *sh, int num)
190{
191 struct page *p;
192 int i;
193
194 for (i=0; i<num ; i++) {
195 p = sh->dev[i].page;
196 if (!p)
197 continue;
198 sh->dev[i].page = NULL;
NeilBrown2d1f3b52006-01-06 00:20:31 -0800199 put_page(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 }
201}
202
203static int grow_buffers(struct stripe_head *sh, int num)
204{
205 int i;
206
207 for (i=0; i<num; i++) {
208 struct page *page;
209
210 if (!(page = alloc_page(GFP_KERNEL))) {
211 return 1;
212 }
213 sh->dev[i].page = page;
214 }
215 return 0;
216}
217
218static void raid5_build_block (struct stripe_head *sh, int i);
219
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800220static void init_stripe(struct stripe_head *sh, sector_t sector, int pd_idx, int disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221{
222 raid5_conf_t *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800223 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +0200225 BUG_ON(atomic_read(&sh->count) != 0);
226 BUG_ON(test_bit(STRIPE_HANDLE, &sh->state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 CHECK_DEVLOCK();
229 PRINTK("init_stripe called, stripe %llu\n",
230 (unsigned long long)sh->sector);
231
232 remove_hash(sh);
NeilBrown16a53ec2006-06-26 00:27:38 -0700233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 sh->sector = sector;
235 sh->pd_idx = pd_idx;
236 sh->state = 0;
237
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800238 sh->disks = disks;
239
240 for (i = sh->disks; i--; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 struct r5dev *dev = &sh->dev[i];
242
243 if (dev->toread || dev->towrite || dev->written ||
244 test_bit(R5_LOCKED, &dev->flags)) {
245 printk("sector=%llx i=%d %p %p %p %d\n",
246 (unsigned long long)sh->sector, i, dev->toread,
247 dev->towrite, dev->written,
248 test_bit(R5_LOCKED, &dev->flags));
249 BUG();
250 }
251 dev->flags = 0;
252 raid5_build_block(sh, i);
253 }
254 insert_hash(conf, sh);
255}
256
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800257static struct stripe_head *__find_stripe(raid5_conf_t *conf, sector_t sector, int disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
259 struct stripe_head *sh;
NeilBrownfccddba2006-01-06 00:20:33 -0800260 struct hlist_node *hn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262 CHECK_DEVLOCK();
263 PRINTK("__find_stripe, sector %llu\n", (unsigned long long)sector);
NeilBrownfccddba2006-01-06 00:20:33 -0800264 hlist_for_each_entry(sh, hn, stripe_hash(conf, sector), hash)
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800265 if (sh->sector == sector && sh->disks == disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 return sh;
267 PRINTK("__stripe %llu not in cache\n", (unsigned long long)sector);
268 return NULL;
269}
270
271static void unplug_slaves(mddev_t *mddev);
272static void raid5_unplug_device(request_queue_t *q);
273
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800274static struct stripe_head *get_active_stripe(raid5_conf_t *conf, sector_t sector, int disks,
275 int pd_idx, int noblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
277 struct stripe_head *sh;
278
279 PRINTK("get_stripe, sector %llu\n", (unsigned long long)sector);
280
281 spin_lock_irq(&conf->device_lock);
282
283 do {
NeilBrown72626682005-09-09 16:23:54 -0700284 wait_event_lock_irq(conf->wait_for_stripe,
285 conf->quiesce == 0,
286 conf->device_lock, /* nothing */);
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800287 sh = __find_stripe(conf, sector, disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 if (!sh) {
289 if (!conf->inactive_blocked)
290 sh = get_free_stripe(conf);
291 if (noblock && sh == NULL)
292 break;
293 if (!sh) {
294 conf->inactive_blocked = 1;
295 wait_event_lock_irq(conf->wait_for_stripe,
296 !list_empty(&conf->inactive_list) &&
NeilBrown50368052005-12-12 02:39:17 -0800297 (atomic_read(&conf->active_stripes)
298 < (conf->max_nr_stripes *3/4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 || !conf->inactive_blocked),
300 conf->device_lock,
NeilBrownf4370782006-07-10 04:44:14 -0700301 raid5_unplug_device(conf->mddev->queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 );
303 conf->inactive_blocked = 0;
304 } else
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800305 init_stripe(sh, sector, pd_idx, disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 } else {
307 if (atomic_read(&sh->count)) {
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +0200308 BUG_ON(!list_empty(&sh->lru));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 } else {
310 if (!test_bit(STRIPE_HANDLE, &sh->state))
311 atomic_inc(&conf->active_stripes);
NeilBrownff4e8d92006-07-10 04:44:16 -0700312 if (list_empty(&sh->lru) &&
313 !test_bit(STRIPE_EXPANDING, &sh->state))
NeilBrown16a53ec2006-06-26 00:27:38 -0700314 BUG();
315 list_del_init(&sh->lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 }
317 }
318 } while (sh == NULL);
319
320 if (sh)
321 atomic_inc(&sh->count);
322
323 spin_unlock_irq(&conf->device_lock);
324 return sh;
325}
326
NeilBrown3f294f42005-11-08 21:39:25 -0800327static int grow_one_stripe(raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
329 struct stripe_head *sh;
NeilBrown3f294f42005-11-08 21:39:25 -0800330 sh = kmem_cache_alloc(conf->slab_cache, GFP_KERNEL);
331 if (!sh)
332 return 0;
333 memset(sh, 0, sizeof(*sh) + (conf->raid_disks-1)*sizeof(struct r5dev));
334 sh->raid_conf = conf;
335 spin_lock_init(&sh->lock);
336
337 if (grow_buffers(sh, conf->raid_disks)) {
338 shrink_buffers(sh, conf->raid_disks);
339 kmem_cache_free(conf->slab_cache, sh);
340 return 0;
341 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800342 sh->disks = conf->raid_disks;
NeilBrown3f294f42005-11-08 21:39:25 -0800343 /* we just created an active stripe so... */
344 atomic_set(&sh->count, 1);
345 atomic_inc(&conf->active_stripes);
346 INIT_LIST_HEAD(&sh->lru);
347 release_stripe(sh);
348 return 1;
349}
350
351static int grow_stripes(raid5_conf_t *conf, int num)
352{
Christoph Lametere18b8902006-12-06 20:33:20 -0800353 struct kmem_cache *sc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 int devs = conf->raid_disks;
355
NeilBrownad01c9e2006-03-27 01:18:07 -0800356 sprintf(conf->cache_name[0], "raid5/%s", mdname(conf->mddev));
357 sprintf(conf->cache_name[1], "raid5/%s-alt", mdname(conf->mddev));
358 conf->active_name = 0;
359 sc = kmem_cache_create(conf->cache_name[conf->active_name],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 sizeof(struct stripe_head)+(devs-1)*sizeof(struct r5dev),
361 0, 0, NULL, NULL);
362 if (!sc)
363 return 1;
364 conf->slab_cache = sc;
NeilBrownad01c9e2006-03-27 01:18:07 -0800365 conf->pool_size = devs;
NeilBrown16a53ec2006-06-26 00:27:38 -0700366 while (num--)
NeilBrown3f294f42005-11-08 21:39:25 -0800367 if (!grow_one_stripe(conf))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 return 0;
370}
NeilBrown29269552006-03-27 01:18:10 -0800371
372#ifdef CONFIG_MD_RAID5_RESHAPE
NeilBrownad01c9e2006-03-27 01:18:07 -0800373static int resize_stripes(raid5_conf_t *conf, int newsize)
374{
375 /* Make all the stripes able to hold 'newsize' devices.
376 * New slots in each stripe get 'page' set to a new page.
377 *
378 * This happens in stages:
379 * 1/ create a new kmem_cache and allocate the required number of
380 * stripe_heads.
381 * 2/ gather all the old stripe_heads and tranfer the pages across
382 * to the new stripe_heads. This will have the side effect of
383 * freezing the array as once all stripe_heads have been collected,
384 * no IO will be possible. Old stripe heads are freed once their
385 * pages have been transferred over, and the old kmem_cache is
386 * freed when all stripes are done.
387 * 3/ reallocate conf->disks to be suitable bigger. If this fails,
388 * we simple return a failre status - no need to clean anything up.
389 * 4/ allocate new pages for the new slots in the new stripe_heads.
390 * If this fails, we don't bother trying the shrink the
391 * stripe_heads down again, we just leave them as they are.
392 * As each stripe_head is processed the new one is released into
393 * active service.
394 *
395 * Once step2 is started, we cannot afford to wait for a write,
396 * so we use GFP_NOIO allocations.
397 */
398 struct stripe_head *osh, *nsh;
399 LIST_HEAD(newstripes);
400 struct disk_info *ndisks;
401 int err = 0;
Christoph Lametere18b8902006-12-06 20:33:20 -0800402 struct kmem_cache *sc;
NeilBrownad01c9e2006-03-27 01:18:07 -0800403 int i;
404
405 if (newsize <= conf->pool_size)
406 return 0; /* never bother to shrink */
407
NeilBrown2a2275d2007-01-26 00:57:11 -0800408 md_allow_write(conf->mddev);
409
NeilBrownad01c9e2006-03-27 01:18:07 -0800410 /* Step 1 */
411 sc = kmem_cache_create(conf->cache_name[1-conf->active_name],
412 sizeof(struct stripe_head)+(newsize-1)*sizeof(struct r5dev),
413 0, 0, NULL, NULL);
414 if (!sc)
415 return -ENOMEM;
416
417 for (i = conf->max_nr_stripes; i; i--) {
418 nsh = kmem_cache_alloc(sc, GFP_KERNEL);
419 if (!nsh)
420 break;
421
422 memset(nsh, 0, sizeof(*nsh) + (newsize-1)*sizeof(struct r5dev));
423
424 nsh->raid_conf = conf;
425 spin_lock_init(&nsh->lock);
426
427 list_add(&nsh->lru, &newstripes);
428 }
429 if (i) {
430 /* didn't get enough, give up */
431 while (!list_empty(&newstripes)) {
432 nsh = list_entry(newstripes.next, struct stripe_head, lru);
433 list_del(&nsh->lru);
434 kmem_cache_free(sc, nsh);
435 }
436 kmem_cache_destroy(sc);
437 return -ENOMEM;
438 }
439 /* Step 2 - Must use GFP_NOIO now.
440 * OK, we have enough stripes, start collecting inactive
441 * stripes and copying them over
442 */
443 list_for_each_entry(nsh, &newstripes, lru) {
444 spin_lock_irq(&conf->device_lock);
445 wait_event_lock_irq(conf->wait_for_stripe,
446 !list_empty(&conf->inactive_list),
447 conf->device_lock,
NeilBrownb3b46be2006-03-27 01:18:16 -0800448 unplug_slaves(conf->mddev)
NeilBrownad01c9e2006-03-27 01:18:07 -0800449 );
450 osh = get_free_stripe(conf);
451 spin_unlock_irq(&conf->device_lock);
452 atomic_set(&nsh->count, 1);
453 for(i=0; i<conf->pool_size; i++)
454 nsh->dev[i].page = osh->dev[i].page;
455 for( ; i<newsize; i++)
456 nsh->dev[i].page = NULL;
457 kmem_cache_free(conf->slab_cache, osh);
458 }
459 kmem_cache_destroy(conf->slab_cache);
460
461 /* Step 3.
462 * At this point, we are holding all the stripes so the array
463 * is completely stalled, so now is a good time to resize
464 * conf->disks.
465 */
466 ndisks = kzalloc(newsize * sizeof(struct disk_info), GFP_NOIO);
467 if (ndisks) {
468 for (i=0; i<conf->raid_disks; i++)
469 ndisks[i] = conf->disks[i];
470 kfree(conf->disks);
471 conf->disks = ndisks;
472 } else
473 err = -ENOMEM;
474
475 /* Step 4, return new stripes to service */
476 while(!list_empty(&newstripes)) {
477 nsh = list_entry(newstripes.next, struct stripe_head, lru);
478 list_del_init(&nsh->lru);
479 for (i=conf->raid_disks; i < newsize; i++)
480 if (nsh->dev[i].page == NULL) {
481 struct page *p = alloc_page(GFP_NOIO);
482 nsh->dev[i].page = p;
483 if (!p)
484 err = -ENOMEM;
485 }
486 release_stripe(nsh);
487 }
488 /* critical section pass, GFP_NOIO no longer needed */
489
490 conf->slab_cache = sc;
491 conf->active_name = 1-conf->active_name;
492 conf->pool_size = newsize;
493 return err;
494}
NeilBrown29269552006-03-27 01:18:10 -0800495#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
NeilBrown3f294f42005-11-08 21:39:25 -0800497static int drop_one_stripe(raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
499 struct stripe_head *sh;
500
NeilBrown3f294f42005-11-08 21:39:25 -0800501 spin_lock_irq(&conf->device_lock);
502 sh = get_free_stripe(conf);
503 spin_unlock_irq(&conf->device_lock);
504 if (!sh)
505 return 0;
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +0200506 BUG_ON(atomic_read(&sh->count));
NeilBrownad01c9e2006-03-27 01:18:07 -0800507 shrink_buffers(sh, conf->pool_size);
NeilBrown3f294f42005-11-08 21:39:25 -0800508 kmem_cache_free(conf->slab_cache, sh);
509 atomic_dec(&conf->active_stripes);
510 return 1;
511}
512
513static void shrink_stripes(raid5_conf_t *conf)
514{
515 while (drop_one_stripe(conf))
516 ;
517
NeilBrown29fc7e32006-02-03 03:03:41 -0800518 if (conf->slab_cache)
519 kmem_cache_destroy(conf->slab_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 conf->slab_cache = NULL;
521}
522
NeilBrown4e5314b2005-11-08 21:39:22 -0800523static int raid5_end_read_request(struct bio * bi, unsigned int bytes_done,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 int error)
525{
526 struct stripe_head *sh = bi->bi_private;
527 raid5_conf_t *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800528 int disks = sh->disks, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
NeilBrownd6950432006-07-10 04:44:20 -0700530 char b[BDEVNAME_SIZE];
531 mdk_rdev_t *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
533 if (bi->bi_size)
534 return 1;
535
536 for (i=0 ; i<disks; i++)
537 if (bi == &sh->dev[i].req)
538 break;
539
540 PRINTK("end_read_request %llu/%d, count: %d, uptodate %d.\n",
541 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
542 uptodate);
543 if (i == disks) {
544 BUG();
545 return 0;
546 }
547
548 if (uptodate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 set_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrown4e5314b2005-11-08 21:39:22 -0800550 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrownd6950432006-07-10 04:44:20 -0700551 rdev = conf->disks[i].rdev;
552 printk(KERN_INFO "raid5:%s: read error corrected (%lu sectors at %llu on %s)\n",
553 mdname(conf->mddev), STRIPE_SECTORS,
554 (unsigned long long)sh->sector + rdev->data_offset,
555 bdevname(rdev->bdev, b));
NeilBrown4e5314b2005-11-08 21:39:22 -0800556 clear_bit(R5_ReadError, &sh->dev[i].flags);
557 clear_bit(R5_ReWrite, &sh->dev[i].flags);
558 }
NeilBrownba22dcb2005-11-08 21:39:31 -0800559 if (atomic_read(&conf->disks[i].rdev->read_errors))
560 atomic_set(&conf->disks[i].rdev->read_errors, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 } else {
NeilBrownd6950432006-07-10 04:44:20 -0700562 const char *bdn = bdevname(conf->disks[i].rdev->bdev, b);
NeilBrownba22dcb2005-11-08 21:39:31 -0800563 int retry = 0;
NeilBrownd6950432006-07-10 04:44:20 -0700564 rdev = conf->disks[i].rdev;
565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 clear_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrownd6950432006-07-10 04:44:20 -0700567 atomic_inc(&rdev->read_errors);
NeilBrownba22dcb2005-11-08 21:39:31 -0800568 if (conf->mddev->degraded)
NeilBrownd6950432006-07-10 04:44:20 -0700569 printk(KERN_WARNING "raid5:%s: read error not correctable (sector %llu on %s).\n",
570 mdname(conf->mddev),
571 (unsigned long long)sh->sector + rdev->data_offset,
572 bdn);
NeilBrownba22dcb2005-11-08 21:39:31 -0800573 else if (test_bit(R5_ReWrite, &sh->dev[i].flags))
NeilBrown4e5314b2005-11-08 21:39:22 -0800574 /* Oh, no!!! */
NeilBrownd6950432006-07-10 04:44:20 -0700575 printk(KERN_WARNING "raid5:%s: read error NOT corrected!! (sector %llu on %s).\n",
576 mdname(conf->mddev),
577 (unsigned long long)sh->sector + rdev->data_offset,
578 bdn);
579 else if (atomic_read(&rdev->read_errors)
NeilBrownba22dcb2005-11-08 21:39:31 -0800580 > conf->max_nr_stripes)
NeilBrown14f8d262006-01-06 00:20:14 -0800581 printk(KERN_WARNING
NeilBrownd6950432006-07-10 04:44:20 -0700582 "raid5:%s: Too many read errors, failing device %s.\n",
583 mdname(conf->mddev), bdn);
NeilBrownba22dcb2005-11-08 21:39:31 -0800584 else
585 retry = 1;
586 if (retry)
587 set_bit(R5_ReadError, &sh->dev[i].flags);
588 else {
NeilBrown4e5314b2005-11-08 21:39:22 -0800589 clear_bit(R5_ReadError, &sh->dev[i].flags);
590 clear_bit(R5_ReWrite, &sh->dev[i].flags);
NeilBrownd6950432006-07-10 04:44:20 -0700591 md_error(conf->mddev, rdev);
NeilBrownba22dcb2005-11-08 21:39:31 -0800592 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 }
594 rdev_dec_pending(conf->disks[i].rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 clear_bit(R5_LOCKED, &sh->dev[i].flags);
596 set_bit(STRIPE_HANDLE, &sh->state);
597 release_stripe(sh);
598 return 0;
599}
600
601static int raid5_end_write_request (struct bio *bi, unsigned int bytes_done,
602 int error)
603{
604 struct stripe_head *sh = bi->bi_private;
605 raid5_conf_t *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800606 int disks = sh->disks, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
608
609 if (bi->bi_size)
610 return 1;
611
612 for (i=0 ; i<disks; i++)
613 if (bi == &sh->dev[i].req)
614 break;
615
616 PRINTK("end_write_request %llu/%d, count %d, uptodate: %d.\n",
617 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
618 uptodate);
619 if (i == disks) {
620 BUG();
621 return 0;
622 }
623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 if (!uptodate)
625 md_error(conf->mddev, conf->disks[i].rdev);
626
627 rdev_dec_pending(conf->disks[i].rdev, conf->mddev);
628
629 clear_bit(R5_LOCKED, &sh->dev[i].flags);
630 set_bit(STRIPE_HANDLE, &sh->state);
NeilBrownc04be0a2006-10-03 01:15:53 -0700631 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 return 0;
633}
634
635
636static sector_t compute_blocknr(struct stripe_head *sh, int i);
637
638static void raid5_build_block (struct stripe_head *sh, int i)
639{
640 struct r5dev *dev = &sh->dev[i];
641
642 bio_init(&dev->req);
643 dev->req.bi_io_vec = &dev->vec;
644 dev->req.bi_vcnt++;
645 dev->req.bi_max_vecs++;
646 dev->vec.bv_page = dev->page;
647 dev->vec.bv_len = STRIPE_SIZE;
648 dev->vec.bv_offset = 0;
649
650 dev->req.bi_sector = sh->sector;
651 dev->req.bi_private = sh;
652
653 dev->flags = 0;
NeilBrown16a53ec2006-06-26 00:27:38 -0700654 dev->sector = compute_blocknr(sh, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655}
656
657static void error(mddev_t *mddev, mdk_rdev_t *rdev)
658{
659 char b[BDEVNAME_SIZE];
660 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
661 PRINTK("raid5: error called\n");
662
NeilBrownb2d444d2005-11-08 21:39:31 -0800663 if (!test_bit(Faulty, &rdev->flags)) {
NeilBrown850b2b422006-10-03 01:15:46 -0700664 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrownc04be0a2006-10-03 01:15:53 -0700665 if (test_and_clear_bit(In_sync, &rdev->flags)) {
666 unsigned long flags;
667 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 mddev->degraded++;
NeilBrownc04be0a2006-10-03 01:15:53 -0700669 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 /*
671 * if recovery was running, make sure it aborts.
672 */
673 set_bit(MD_RECOVERY_ERR, &mddev->recovery);
674 }
NeilBrownb2d444d2005-11-08 21:39:31 -0800675 set_bit(Faulty, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 printk (KERN_ALERT
677 "raid5: Disk failure on %s, disabling device."
678 " Operation continuing on %d devices\n",
NeilBrown02c2de82006-10-03 01:15:47 -0700679 bdevname(rdev->bdev,b), conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 }
NeilBrown16a53ec2006-06-26 00:27:38 -0700681}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
683/*
684 * Input: a 'big' sector number,
685 * Output: index of the data and parity disk, and the sector # in them.
686 */
687static sector_t raid5_compute_sector(sector_t r_sector, unsigned int raid_disks,
688 unsigned int data_disks, unsigned int * dd_idx,
689 unsigned int * pd_idx, raid5_conf_t *conf)
690{
691 long stripe;
692 unsigned long chunk_number;
693 unsigned int chunk_offset;
694 sector_t new_sector;
695 int sectors_per_chunk = conf->chunk_size >> 9;
696
697 /* First compute the information on this sector */
698
699 /*
700 * Compute the chunk number and the sector offset inside the chunk
701 */
702 chunk_offset = sector_div(r_sector, sectors_per_chunk);
703 chunk_number = r_sector;
704 BUG_ON(r_sector != chunk_number);
705
706 /*
707 * Compute the stripe number
708 */
709 stripe = chunk_number / data_disks;
710
711 /*
712 * Compute the data disk and parity disk indexes inside the stripe
713 */
714 *dd_idx = chunk_number % data_disks;
715
716 /*
717 * Select the parity disk based on the user selected algorithm.
718 */
NeilBrown16a53ec2006-06-26 00:27:38 -0700719 switch(conf->level) {
720 case 4:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 *pd_idx = data_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -0700722 break;
723 case 5:
724 switch (conf->algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 case ALGORITHM_LEFT_ASYMMETRIC:
726 *pd_idx = data_disks - stripe % raid_disks;
727 if (*dd_idx >= *pd_idx)
728 (*dd_idx)++;
729 break;
730 case ALGORITHM_RIGHT_ASYMMETRIC:
731 *pd_idx = stripe % raid_disks;
732 if (*dd_idx >= *pd_idx)
733 (*dd_idx)++;
734 break;
735 case ALGORITHM_LEFT_SYMMETRIC:
736 *pd_idx = data_disks - stripe % raid_disks;
737 *dd_idx = (*pd_idx + 1 + *dd_idx) % raid_disks;
738 break;
739 case ALGORITHM_RIGHT_SYMMETRIC:
740 *pd_idx = stripe % raid_disks;
741 *dd_idx = (*pd_idx + 1 + *dd_idx) % raid_disks;
742 break;
743 default:
NeilBrown14f8d262006-01-06 00:20:14 -0800744 printk(KERN_ERR "raid5: unsupported algorithm %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 conf->algorithm);
NeilBrown16a53ec2006-06-26 00:27:38 -0700746 }
747 break;
748 case 6:
749
750 /**** FIX THIS ****/
751 switch (conf->algorithm) {
752 case ALGORITHM_LEFT_ASYMMETRIC:
753 *pd_idx = raid_disks - 1 - (stripe % raid_disks);
754 if (*pd_idx == raid_disks-1)
755 (*dd_idx)++; /* Q D D D P */
756 else if (*dd_idx >= *pd_idx)
757 (*dd_idx) += 2; /* D D P Q D */
758 break;
759 case ALGORITHM_RIGHT_ASYMMETRIC:
760 *pd_idx = stripe % raid_disks;
761 if (*pd_idx == raid_disks-1)
762 (*dd_idx)++; /* Q D D D P */
763 else if (*dd_idx >= *pd_idx)
764 (*dd_idx) += 2; /* D D P Q D */
765 break;
766 case ALGORITHM_LEFT_SYMMETRIC:
767 *pd_idx = raid_disks - 1 - (stripe % raid_disks);
768 *dd_idx = (*pd_idx + 2 + *dd_idx) % raid_disks;
769 break;
770 case ALGORITHM_RIGHT_SYMMETRIC:
771 *pd_idx = stripe % raid_disks;
772 *dd_idx = (*pd_idx + 2 + *dd_idx) % raid_disks;
773 break;
774 default:
775 printk (KERN_CRIT "raid6: unsupported algorithm %d\n",
776 conf->algorithm);
777 }
778 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 }
780
781 /*
782 * Finally, compute the new sector number
783 */
784 new_sector = (sector_t)stripe * sectors_per_chunk + chunk_offset;
785 return new_sector;
786}
787
788
789static sector_t compute_blocknr(struct stripe_head *sh, int i)
790{
791 raid5_conf_t *conf = sh->raid_conf;
NeilBrownb875e532006-12-10 02:20:49 -0800792 int raid_disks = sh->disks;
793 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 sector_t new_sector = sh->sector, check;
795 int sectors_per_chunk = conf->chunk_size >> 9;
796 sector_t stripe;
797 int chunk_offset;
798 int chunk_number, dummy1, dummy2, dd_idx = i;
799 sector_t r_sector;
800
NeilBrown16a53ec2006-06-26 00:27:38 -0700801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 chunk_offset = sector_div(new_sector, sectors_per_chunk);
803 stripe = new_sector;
804 BUG_ON(new_sector != stripe);
805
NeilBrown16a53ec2006-06-26 00:27:38 -0700806 if (i == sh->pd_idx)
807 return 0;
808 switch(conf->level) {
809 case 4: break;
810 case 5:
811 switch (conf->algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 case ALGORITHM_LEFT_ASYMMETRIC:
813 case ALGORITHM_RIGHT_ASYMMETRIC:
814 if (i > sh->pd_idx)
815 i--;
816 break;
817 case ALGORITHM_LEFT_SYMMETRIC:
818 case ALGORITHM_RIGHT_SYMMETRIC:
819 if (i < sh->pd_idx)
820 i += raid_disks;
821 i -= (sh->pd_idx + 1);
822 break;
823 default:
NeilBrown14f8d262006-01-06 00:20:14 -0800824 printk(KERN_ERR "raid5: unsupported algorithm %d\n",
NeilBrown16a53ec2006-06-26 00:27:38 -0700825 conf->algorithm);
826 }
827 break;
828 case 6:
NeilBrown16a53ec2006-06-26 00:27:38 -0700829 if (i == raid6_next_disk(sh->pd_idx, raid_disks))
830 return 0; /* It is the Q disk */
831 switch (conf->algorithm) {
832 case ALGORITHM_LEFT_ASYMMETRIC:
833 case ALGORITHM_RIGHT_ASYMMETRIC:
834 if (sh->pd_idx == raid_disks-1)
835 i--; /* Q D D D P */
836 else if (i > sh->pd_idx)
837 i -= 2; /* D D P Q D */
838 break;
839 case ALGORITHM_LEFT_SYMMETRIC:
840 case ALGORITHM_RIGHT_SYMMETRIC:
841 if (sh->pd_idx == raid_disks-1)
842 i--; /* Q D D D P */
843 else {
844 /* D D P Q D */
845 if (i < sh->pd_idx)
846 i += raid_disks;
847 i -= (sh->pd_idx + 2);
848 }
849 break;
850 default:
851 printk (KERN_CRIT "raid6: unsupported algorithm %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 conf->algorithm);
NeilBrown16a53ec2006-06-26 00:27:38 -0700853 }
854 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 }
856
857 chunk_number = stripe * data_disks + i;
858 r_sector = (sector_t)chunk_number * sectors_per_chunk + chunk_offset;
859
860 check = raid5_compute_sector (r_sector, raid_disks, data_disks, &dummy1, &dummy2, conf);
861 if (check != sh->sector || dummy1 != dd_idx || dummy2 != sh->pd_idx) {
NeilBrown14f8d262006-01-06 00:20:14 -0800862 printk(KERN_ERR "compute_blocknr: map not correct\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 return 0;
864 }
865 return r_sector;
866}
867
868
869
870/*
NeilBrown16a53ec2006-06-26 00:27:38 -0700871 * Copy data between a page in the stripe cache, and one or more bion
872 * The page could align with the middle of the bio, or there could be
873 * several bion, each with several bio_vecs, which cover part of the page
874 * Multiple bion are linked together on bi_next. There may be extras
875 * at the end of this list. We ignore them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 */
877static void copy_data(int frombio, struct bio *bio,
878 struct page *page,
879 sector_t sector)
880{
881 char *pa = page_address(page);
882 struct bio_vec *bvl;
883 int i;
884 int page_offset;
885
886 if (bio->bi_sector >= sector)
887 page_offset = (signed)(bio->bi_sector - sector) * 512;
888 else
889 page_offset = (signed)(sector - bio->bi_sector) * -512;
890 bio_for_each_segment(bvl, bio, i) {
891 int len = bio_iovec_idx(bio,i)->bv_len;
892 int clen;
893 int b_offset = 0;
894
895 if (page_offset < 0) {
896 b_offset = -page_offset;
897 page_offset += b_offset;
898 len -= b_offset;
899 }
900
901 if (len > 0 && page_offset + len > STRIPE_SIZE)
902 clen = STRIPE_SIZE - page_offset;
903 else clen = len;
NeilBrown16a53ec2006-06-26 00:27:38 -0700904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 if (clen > 0) {
906 char *ba = __bio_kmap_atomic(bio, i, KM_USER0);
907 if (frombio)
908 memcpy(pa+page_offset, ba+b_offset, clen);
909 else
910 memcpy(ba+b_offset, pa+page_offset, clen);
911 __bio_kunmap_atomic(ba, KM_USER0);
912 }
913 if (clen < len) /* hit end of page */
914 break;
915 page_offset += len;
916 }
917}
918
919#define check_xor() do { \
920 if (count == MAX_XOR_BLOCKS) { \
921 xor_block(count, STRIPE_SIZE, ptr); \
922 count = 1; \
923 } \
924 } while(0)
925
926
927static void compute_block(struct stripe_head *sh, int dd_idx)
928{
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800929 int i, count, disks = sh->disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 void *ptr[MAX_XOR_BLOCKS], *p;
931
932 PRINTK("compute_block, stripe %llu, idx %d\n",
933 (unsigned long long)sh->sector, dd_idx);
934
935 ptr[0] = page_address(sh->dev[dd_idx].page);
936 memset(ptr[0], 0, STRIPE_SIZE);
937 count = 1;
938 for (i = disks ; i--; ) {
939 if (i == dd_idx)
940 continue;
941 p = page_address(sh->dev[i].page);
942 if (test_bit(R5_UPTODATE, &sh->dev[i].flags))
943 ptr[count++] = p;
944 else
NeilBrown14f8d262006-01-06 00:20:14 -0800945 printk(KERN_ERR "compute_block() %d, stripe %llu, %d"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 " not present\n", dd_idx,
947 (unsigned long long)sh->sector, i);
948
949 check_xor();
950 }
951 if (count != 1)
952 xor_block(count, STRIPE_SIZE, ptr);
953 set_bit(R5_UPTODATE, &sh->dev[dd_idx].flags);
954}
955
NeilBrown16a53ec2006-06-26 00:27:38 -0700956static void compute_parity5(struct stripe_head *sh, int method)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957{
958 raid5_conf_t *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800959 int i, pd_idx = sh->pd_idx, disks = sh->disks, count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 void *ptr[MAX_XOR_BLOCKS];
961 struct bio *chosen;
962
NeilBrown16a53ec2006-06-26 00:27:38 -0700963 PRINTK("compute_parity5, stripe %llu, method %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 (unsigned long long)sh->sector, method);
965
966 count = 1;
967 ptr[0] = page_address(sh->dev[pd_idx].page);
968 switch(method) {
969 case READ_MODIFY_WRITE:
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +0200970 BUG_ON(!test_bit(R5_UPTODATE, &sh->dev[pd_idx].flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 for (i=disks ; i-- ;) {
972 if (i==pd_idx)
973 continue;
974 if (sh->dev[i].towrite &&
975 test_bit(R5_UPTODATE, &sh->dev[i].flags)) {
976 ptr[count++] = page_address(sh->dev[i].page);
977 chosen = sh->dev[i].towrite;
978 sh->dev[i].towrite = NULL;
979
980 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
981 wake_up(&conf->wait_for_overlap);
982
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +0200983 BUG_ON(sh->dev[i].written);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 sh->dev[i].written = chosen;
985 check_xor();
986 }
987 }
988 break;
989 case RECONSTRUCT_WRITE:
990 memset(ptr[0], 0, STRIPE_SIZE);
991 for (i= disks; i-- ;)
992 if (i!=pd_idx && sh->dev[i].towrite) {
993 chosen = sh->dev[i].towrite;
994 sh->dev[i].towrite = NULL;
995
996 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
997 wake_up(&conf->wait_for_overlap);
998
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +0200999 BUG_ON(sh->dev[i].written);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 sh->dev[i].written = chosen;
1001 }
1002 break;
1003 case CHECK_PARITY:
1004 break;
1005 }
1006 if (count>1) {
1007 xor_block(count, STRIPE_SIZE, ptr);
1008 count = 1;
1009 }
1010
1011 for (i = disks; i--;)
1012 if (sh->dev[i].written) {
1013 sector_t sector = sh->dev[i].sector;
1014 struct bio *wbi = sh->dev[i].written;
1015 while (wbi && wbi->bi_sector < sector + STRIPE_SECTORS) {
1016 copy_data(1, wbi, sh->dev[i].page, sector);
1017 wbi = r5_next_bio(wbi, sector);
1018 }
1019
1020 set_bit(R5_LOCKED, &sh->dev[i].flags);
1021 set_bit(R5_UPTODATE, &sh->dev[i].flags);
1022 }
1023
1024 switch(method) {
1025 case RECONSTRUCT_WRITE:
1026 case CHECK_PARITY:
1027 for (i=disks; i--;)
1028 if (i != pd_idx) {
1029 ptr[count++] = page_address(sh->dev[i].page);
1030 check_xor();
1031 }
1032 break;
1033 case READ_MODIFY_WRITE:
1034 for (i = disks; i--;)
1035 if (sh->dev[i].written) {
1036 ptr[count++] = page_address(sh->dev[i].page);
1037 check_xor();
1038 }
1039 }
1040 if (count != 1)
1041 xor_block(count, STRIPE_SIZE, ptr);
1042
1043 if (method != CHECK_PARITY) {
1044 set_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
1045 set_bit(R5_LOCKED, &sh->dev[pd_idx].flags);
1046 } else
1047 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
1048}
1049
NeilBrown16a53ec2006-06-26 00:27:38 -07001050static void compute_parity6(struct stripe_head *sh, int method)
1051{
1052 raid6_conf_t *conf = sh->raid_conf;
1053 int i, pd_idx = sh->pd_idx, qd_idx, d0_idx, disks = conf->raid_disks, count;
1054 struct bio *chosen;
1055 /**** FIX THIS: This could be very bad if disks is close to 256 ****/
1056 void *ptrs[disks];
1057
1058 qd_idx = raid6_next_disk(pd_idx, disks);
1059 d0_idx = raid6_next_disk(qd_idx, disks);
1060
1061 PRINTK("compute_parity, stripe %llu, method %d\n",
1062 (unsigned long long)sh->sector, method);
1063
1064 switch(method) {
1065 case READ_MODIFY_WRITE:
1066 BUG(); /* READ_MODIFY_WRITE N/A for RAID-6 */
1067 case RECONSTRUCT_WRITE:
1068 for (i= disks; i-- ;)
1069 if ( i != pd_idx && i != qd_idx && sh->dev[i].towrite ) {
1070 chosen = sh->dev[i].towrite;
1071 sh->dev[i].towrite = NULL;
1072
1073 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
1074 wake_up(&conf->wait_for_overlap);
1075
Eric Sesterhenn52e5f9d2006-10-03 23:33:23 +02001076 BUG_ON(sh->dev[i].written);
NeilBrown16a53ec2006-06-26 00:27:38 -07001077 sh->dev[i].written = chosen;
1078 }
1079 break;
1080 case CHECK_PARITY:
1081 BUG(); /* Not implemented yet */
1082 }
1083
1084 for (i = disks; i--;)
1085 if (sh->dev[i].written) {
1086 sector_t sector = sh->dev[i].sector;
1087 struct bio *wbi = sh->dev[i].written;
1088 while (wbi && wbi->bi_sector < sector + STRIPE_SECTORS) {
1089 copy_data(1, wbi, sh->dev[i].page, sector);
1090 wbi = r5_next_bio(wbi, sector);
1091 }
1092
1093 set_bit(R5_LOCKED, &sh->dev[i].flags);
1094 set_bit(R5_UPTODATE, &sh->dev[i].flags);
1095 }
1096
1097// switch(method) {
1098// case RECONSTRUCT_WRITE:
1099// case CHECK_PARITY:
1100// case UPDATE_PARITY:
1101 /* Note that unlike RAID-5, the ordering of the disks matters greatly. */
1102 /* FIX: Is this ordering of drives even remotely optimal? */
1103 count = 0;
1104 i = d0_idx;
1105 do {
1106 ptrs[count++] = page_address(sh->dev[i].page);
1107 if (count <= disks-2 && !test_bit(R5_UPTODATE, &sh->dev[i].flags))
1108 printk("block %d/%d not uptodate on parity calc\n", i,count);
1109 i = raid6_next_disk(i, disks);
1110 } while ( i != d0_idx );
1111// break;
1112// }
1113
1114 raid6_call.gen_syndrome(disks, STRIPE_SIZE, ptrs);
1115
1116 switch(method) {
1117 case RECONSTRUCT_WRITE:
1118 set_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
1119 set_bit(R5_UPTODATE, &sh->dev[qd_idx].flags);
1120 set_bit(R5_LOCKED, &sh->dev[pd_idx].flags);
1121 set_bit(R5_LOCKED, &sh->dev[qd_idx].flags);
1122 break;
1123 case UPDATE_PARITY:
1124 set_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
1125 set_bit(R5_UPTODATE, &sh->dev[qd_idx].flags);
1126 break;
1127 }
1128}
1129
1130
1131/* Compute one missing block */
1132static void compute_block_1(struct stripe_head *sh, int dd_idx, int nozero)
1133{
1134 raid6_conf_t *conf = sh->raid_conf;
1135 int i, count, disks = conf->raid_disks;
1136 void *ptr[MAX_XOR_BLOCKS], *p;
1137 int pd_idx = sh->pd_idx;
1138 int qd_idx = raid6_next_disk(pd_idx, disks);
1139
1140 PRINTK("compute_block_1, stripe %llu, idx %d\n",
1141 (unsigned long long)sh->sector, dd_idx);
1142
1143 if ( dd_idx == qd_idx ) {
1144 /* We're actually computing the Q drive */
1145 compute_parity6(sh, UPDATE_PARITY);
1146 } else {
1147 ptr[0] = page_address(sh->dev[dd_idx].page);
1148 if (!nozero) memset(ptr[0], 0, STRIPE_SIZE);
1149 count = 1;
1150 for (i = disks ; i--; ) {
1151 if (i == dd_idx || i == qd_idx)
1152 continue;
1153 p = page_address(sh->dev[i].page);
1154 if (test_bit(R5_UPTODATE, &sh->dev[i].flags))
1155 ptr[count++] = p;
1156 else
1157 printk("compute_block() %d, stripe %llu, %d"
1158 " not present\n", dd_idx,
1159 (unsigned long long)sh->sector, i);
1160
1161 check_xor();
1162 }
1163 if (count != 1)
1164 xor_block(count, STRIPE_SIZE, ptr);
1165 if (!nozero) set_bit(R5_UPTODATE, &sh->dev[dd_idx].flags);
1166 else clear_bit(R5_UPTODATE, &sh->dev[dd_idx].flags);
1167 }
1168}
1169
1170/* Compute two missing blocks */
1171static void compute_block_2(struct stripe_head *sh, int dd_idx1, int dd_idx2)
1172{
1173 raid6_conf_t *conf = sh->raid_conf;
1174 int i, count, disks = conf->raid_disks;
1175 int pd_idx = sh->pd_idx;
1176 int qd_idx = raid6_next_disk(pd_idx, disks);
1177 int d0_idx = raid6_next_disk(qd_idx, disks);
1178 int faila, failb;
1179
1180 /* faila and failb are disk numbers relative to d0_idx */
1181 /* pd_idx become disks-2 and qd_idx become disks-1 */
1182 faila = (dd_idx1 < d0_idx) ? dd_idx1+(disks-d0_idx) : dd_idx1-d0_idx;
1183 failb = (dd_idx2 < d0_idx) ? dd_idx2+(disks-d0_idx) : dd_idx2-d0_idx;
1184
1185 BUG_ON(faila == failb);
1186 if ( failb < faila ) { int tmp = faila; faila = failb; failb = tmp; }
1187
1188 PRINTK("compute_block_2, stripe %llu, idx %d,%d (%d,%d)\n",
1189 (unsigned long long)sh->sector, dd_idx1, dd_idx2, faila, failb);
1190
1191 if ( failb == disks-1 ) {
1192 /* Q disk is one of the missing disks */
1193 if ( faila == disks-2 ) {
1194 /* Missing P+Q, just recompute */
1195 compute_parity6(sh, UPDATE_PARITY);
1196 return;
1197 } else {
1198 /* We're missing D+Q; recompute D from P */
1199 compute_block_1(sh, (dd_idx1 == qd_idx) ? dd_idx2 : dd_idx1, 0);
1200 compute_parity6(sh, UPDATE_PARITY); /* Is this necessary? */
1201 return;
1202 }
1203 }
1204
1205 /* We're missing D+P or D+D; build pointer table */
1206 {
1207 /**** FIX THIS: This could be very bad if disks is close to 256 ****/
1208 void *ptrs[disks];
1209
1210 count = 0;
1211 i = d0_idx;
1212 do {
1213 ptrs[count++] = page_address(sh->dev[i].page);
1214 i = raid6_next_disk(i, disks);
1215 if (i != dd_idx1 && i != dd_idx2 &&
1216 !test_bit(R5_UPTODATE, &sh->dev[i].flags))
1217 printk("compute_2 with missing block %d/%d\n", count, i);
1218 } while ( i != d0_idx );
1219
1220 if ( failb == disks-2 ) {
1221 /* We're missing D+P. */
1222 raid6_datap_recov(disks, STRIPE_SIZE, faila, ptrs);
1223 } else {
1224 /* We're missing D+D. */
1225 raid6_2data_recov(disks, STRIPE_SIZE, faila, failb, ptrs);
1226 }
1227
1228 /* Both the above update both missing blocks */
1229 set_bit(R5_UPTODATE, &sh->dev[dd_idx1].flags);
1230 set_bit(R5_UPTODATE, &sh->dev[dd_idx2].flags);
1231 }
1232}
1233
1234
1235
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236/*
1237 * Each stripe/dev can have one or more bion attached.
NeilBrown16a53ec2006-06-26 00:27:38 -07001238 * toread/towrite point to the first in a chain.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 * The bi_next chain must be in order.
1240 */
1241static int add_stripe_bio(struct stripe_head *sh, struct bio *bi, int dd_idx, int forwrite)
1242{
1243 struct bio **bip;
1244 raid5_conf_t *conf = sh->raid_conf;
NeilBrown72626682005-09-09 16:23:54 -07001245 int firstwrite=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
1247 PRINTK("adding bh b#%llu to stripe s#%llu\n",
1248 (unsigned long long)bi->bi_sector,
1249 (unsigned long long)sh->sector);
1250
1251
1252 spin_lock(&sh->lock);
1253 spin_lock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07001254 if (forwrite) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 bip = &sh->dev[dd_idx].towrite;
NeilBrown72626682005-09-09 16:23:54 -07001256 if (*bip == NULL && sh->dev[dd_idx].written == NULL)
1257 firstwrite = 1;
1258 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 bip = &sh->dev[dd_idx].toread;
1260 while (*bip && (*bip)->bi_sector < bi->bi_sector) {
1261 if ((*bip)->bi_sector + ((*bip)->bi_size >> 9) > bi->bi_sector)
1262 goto overlap;
1263 bip = & (*bip)->bi_next;
1264 }
1265 if (*bip && (*bip)->bi_sector < bi->bi_sector + ((bi->bi_size)>>9))
1266 goto overlap;
1267
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02001268 BUG_ON(*bip && bi->bi_next && (*bip) != bi->bi_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 if (*bip)
1270 bi->bi_next = *bip;
1271 *bip = bi;
1272 bi->bi_phys_segments ++;
1273 spin_unlock_irq(&conf->device_lock);
1274 spin_unlock(&sh->lock);
1275
1276 PRINTK("added bi b#%llu to stripe s#%llu, disk %d.\n",
1277 (unsigned long long)bi->bi_sector,
1278 (unsigned long long)sh->sector, dd_idx);
1279
NeilBrown72626682005-09-09 16:23:54 -07001280 if (conf->mddev->bitmap && firstwrite) {
NeilBrown72626682005-09-09 16:23:54 -07001281 bitmap_startwrite(conf->mddev->bitmap, sh->sector,
1282 STRIPE_SECTORS, 0);
NeilBrownae3c20c2006-07-10 04:44:17 -07001283 sh->bm_seq = conf->seq_flush+1;
NeilBrown72626682005-09-09 16:23:54 -07001284 set_bit(STRIPE_BIT_DELAY, &sh->state);
1285 }
1286
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 if (forwrite) {
1288 /* check if page is covered */
1289 sector_t sector = sh->dev[dd_idx].sector;
1290 for (bi=sh->dev[dd_idx].towrite;
1291 sector < sh->dev[dd_idx].sector + STRIPE_SECTORS &&
1292 bi && bi->bi_sector <= sector;
1293 bi = r5_next_bio(bi, sh->dev[dd_idx].sector)) {
1294 if (bi->bi_sector + (bi->bi_size>>9) >= sector)
1295 sector = bi->bi_sector + (bi->bi_size>>9);
1296 }
1297 if (sector >= sh->dev[dd_idx].sector + STRIPE_SECTORS)
1298 set_bit(R5_OVERWRITE, &sh->dev[dd_idx].flags);
1299 }
1300 return 1;
1301
1302 overlap:
1303 set_bit(R5_Overlap, &sh->dev[dd_idx].flags);
1304 spin_unlock_irq(&conf->device_lock);
1305 spin_unlock(&sh->lock);
1306 return 0;
1307}
1308
NeilBrown29269552006-03-27 01:18:10 -08001309static void end_reshape(raid5_conf_t *conf);
1310
NeilBrown16a53ec2006-06-26 00:27:38 -07001311static int page_is_zero(struct page *p)
1312{
1313 char *a = page_address(p);
1314 return ((*(u32*)a) == 0 &&
1315 memcmp(a, a+4, STRIPE_SIZE-4)==0);
1316}
1317
NeilBrownccfcc3c2006-03-27 01:18:09 -08001318static int stripe_to_pdidx(sector_t stripe, raid5_conf_t *conf, int disks)
1319{
1320 int sectors_per_chunk = conf->chunk_size >> 9;
NeilBrownccfcc3c2006-03-27 01:18:09 -08001321 int pd_idx, dd_idx;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07001322 int chunk_offset = sector_div(stripe, sectors_per_chunk);
1323
NeilBrownb875e532006-12-10 02:20:49 -08001324 raid5_compute_sector(stripe * (disks - conf->max_degraded)
1325 *sectors_per_chunk + chunk_offset,
1326 disks, disks - conf->max_degraded,
1327 &dd_idx, &pd_idx, conf);
NeilBrownccfcc3c2006-03-27 01:18:09 -08001328 return pd_idx;
1329}
1330
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
1332/*
1333 * handle_stripe - do things to a stripe.
1334 *
1335 * We lock the stripe and then examine the state of various bits
1336 * to see what needs to be done.
1337 * Possible results:
1338 * return some read request which now have data
1339 * return some write requests which are safely on disc
1340 * schedule a read on some buffers
1341 * schedule a write of some buffers
1342 * return confirmation of parity correctness
1343 *
1344 * Parity calculations are done inside the stripe lock
1345 * buffers are taken off read_list or write_list, and bh_cache buffers
1346 * get BH_Lock set before the stripe lock is released.
1347 *
1348 */
1349
NeilBrown16a53ec2006-06-26 00:27:38 -07001350static void handle_stripe5(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351{
1352 raid5_conf_t *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08001353 int disks = sh->disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 struct bio *return_bi= NULL;
1355 struct bio *bi;
1356 int i;
NeilBrownccfcc3c2006-03-27 01:18:09 -08001357 int syncing, expanding, expanded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 int locked=0, uptodate=0, to_read=0, to_write=0, failed=0, written=0;
1359 int non_overwrite = 0;
1360 int failed_num=0;
1361 struct r5dev *dev;
1362
1363 PRINTK("handling stripe %llu, cnt=%d, pd_idx=%d\n",
1364 (unsigned long long)sh->sector, atomic_read(&sh->count),
1365 sh->pd_idx);
1366
1367 spin_lock(&sh->lock);
1368 clear_bit(STRIPE_HANDLE, &sh->state);
1369 clear_bit(STRIPE_DELAYED, &sh->state);
1370
1371 syncing = test_bit(STRIPE_SYNCING, &sh->state);
NeilBrownccfcc3c2006-03-27 01:18:09 -08001372 expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state);
1373 expanded = test_bit(STRIPE_EXPAND_READY, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 /* Now to look around and see what can be done */
1375
NeilBrown9910f162006-01-06 00:20:24 -08001376 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 for (i=disks; i--; ) {
1378 mdk_rdev_t *rdev;
1379 dev = &sh->dev[i];
1380 clear_bit(R5_Insync, &dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
1382 PRINTK("check %d: state 0x%lx read %p write %p written %p\n",
1383 i, dev->flags, dev->toread, dev->towrite, dev->written);
1384 /* maybe we can reply to a read */
1385 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread) {
1386 struct bio *rbi, *rbi2;
1387 PRINTK("Return read for disc %d\n", i);
1388 spin_lock_irq(&conf->device_lock);
1389 rbi = dev->toread;
1390 dev->toread = NULL;
1391 if (test_and_clear_bit(R5_Overlap, &dev->flags))
1392 wake_up(&conf->wait_for_overlap);
1393 spin_unlock_irq(&conf->device_lock);
1394 while (rbi && rbi->bi_sector < dev->sector + STRIPE_SECTORS) {
1395 copy_data(0, rbi, dev->page, dev->sector);
1396 rbi2 = r5_next_bio(rbi, dev->sector);
1397 spin_lock_irq(&conf->device_lock);
1398 if (--rbi->bi_phys_segments == 0) {
1399 rbi->bi_next = return_bi;
1400 return_bi = rbi;
1401 }
1402 spin_unlock_irq(&conf->device_lock);
1403 rbi = rbi2;
1404 }
1405 }
1406
1407 /* now count some things */
1408 if (test_bit(R5_LOCKED, &dev->flags)) locked++;
1409 if (test_bit(R5_UPTODATE, &dev->flags)) uptodate++;
1410
1411
1412 if (dev->toread) to_read++;
1413 if (dev->towrite) {
1414 to_write++;
1415 if (!test_bit(R5_OVERWRITE, &dev->flags))
1416 non_overwrite++;
1417 }
1418 if (dev->written) written++;
NeilBrown9910f162006-01-06 00:20:24 -08001419 rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownb2d444d2005-11-08 21:39:31 -08001420 if (!rdev || !test_bit(In_sync, &rdev->flags)) {
NeilBrown14f8d262006-01-06 00:20:14 -08001421 /* The ReadError flag will just be confusing now */
NeilBrown4e5314b2005-11-08 21:39:22 -08001422 clear_bit(R5_ReadError, &dev->flags);
1423 clear_bit(R5_ReWrite, &dev->flags);
1424 }
NeilBrownb2d444d2005-11-08 21:39:31 -08001425 if (!rdev || !test_bit(In_sync, &rdev->flags)
NeilBrown4e5314b2005-11-08 21:39:22 -08001426 || test_bit(R5_ReadError, &dev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 failed++;
1428 failed_num = i;
1429 } else
1430 set_bit(R5_Insync, &dev->flags);
1431 }
NeilBrown9910f162006-01-06 00:20:24 -08001432 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 PRINTK("locked=%d uptodate=%d to_read=%d"
1434 " to_write=%d failed=%d failed_num=%d\n",
1435 locked, uptodate, to_read, to_write, failed, failed_num);
1436 /* check if the array has lost two devices and, if so, some requests might
1437 * need to be failed
1438 */
1439 if (failed > 1 && to_read+to_write+written) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 for (i=disks; i--; ) {
NeilBrown72626682005-09-09 16:23:54 -07001441 int bitmap_end = 0;
NeilBrown4e5314b2005-11-08 21:39:22 -08001442
1443 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrown9910f162006-01-06 00:20:24 -08001444 mdk_rdev_t *rdev;
1445 rcu_read_lock();
1446 rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownb2d444d2005-11-08 21:39:31 -08001447 if (rdev && test_bit(In_sync, &rdev->flags))
NeilBrown4e5314b2005-11-08 21:39:22 -08001448 /* multiple read failures in one stripe */
1449 md_error(conf->mddev, rdev);
NeilBrown9910f162006-01-06 00:20:24 -08001450 rcu_read_unlock();
NeilBrown4e5314b2005-11-08 21:39:22 -08001451 }
1452
NeilBrown72626682005-09-09 16:23:54 -07001453 spin_lock_irq(&conf->device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 /* fail all writes first */
1455 bi = sh->dev[i].towrite;
1456 sh->dev[i].towrite = NULL;
NeilBrown72626682005-09-09 16:23:54 -07001457 if (bi) { to_write--; bitmap_end = 1; }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
1459 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
1460 wake_up(&conf->wait_for_overlap);
1461
1462 while (bi && bi->bi_sector < sh->dev[i].sector + STRIPE_SECTORS){
1463 struct bio *nextbi = r5_next_bio(bi, sh->dev[i].sector);
1464 clear_bit(BIO_UPTODATE, &bi->bi_flags);
1465 if (--bi->bi_phys_segments == 0) {
1466 md_write_end(conf->mddev);
1467 bi->bi_next = return_bi;
1468 return_bi = bi;
1469 }
1470 bi = nextbi;
1471 }
1472 /* and fail all 'written' */
1473 bi = sh->dev[i].written;
1474 sh->dev[i].written = NULL;
NeilBrown72626682005-09-09 16:23:54 -07001475 if (bi) bitmap_end = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 while (bi && bi->bi_sector < sh->dev[i].sector + STRIPE_SECTORS) {
1477 struct bio *bi2 = r5_next_bio(bi, sh->dev[i].sector);
1478 clear_bit(BIO_UPTODATE, &bi->bi_flags);
1479 if (--bi->bi_phys_segments == 0) {
1480 md_write_end(conf->mddev);
1481 bi->bi_next = return_bi;
1482 return_bi = bi;
1483 }
1484 bi = bi2;
1485 }
1486
1487 /* fail any reads if this device is non-operational */
NeilBrown4e5314b2005-11-08 21:39:22 -08001488 if (!test_bit(R5_Insync, &sh->dev[i].flags) ||
1489 test_bit(R5_ReadError, &sh->dev[i].flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 bi = sh->dev[i].toread;
1491 sh->dev[i].toread = NULL;
1492 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
1493 wake_up(&conf->wait_for_overlap);
1494 if (bi) to_read--;
1495 while (bi && bi->bi_sector < sh->dev[i].sector + STRIPE_SECTORS){
1496 struct bio *nextbi = r5_next_bio(bi, sh->dev[i].sector);
1497 clear_bit(BIO_UPTODATE, &bi->bi_flags);
1498 if (--bi->bi_phys_segments == 0) {
1499 bi->bi_next = return_bi;
1500 return_bi = bi;
1501 }
1502 bi = nextbi;
1503 }
1504 }
NeilBrown72626682005-09-09 16:23:54 -07001505 spin_unlock_irq(&conf->device_lock);
1506 if (bitmap_end)
1507 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
1508 STRIPE_SECTORS, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 }
1511 if (failed > 1 && syncing) {
1512 md_done_sync(conf->mddev, STRIPE_SECTORS,0);
1513 clear_bit(STRIPE_SYNCING, &sh->state);
1514 syncing = 0;
1515 }
1516
1517 /* might be able to return some write requests if the parity block
1518 * is safe, or on a failed drive
1519 */
1520 dev = &sh->dev[sh->pd_idx];
1521 if ( written &&
1522 ( (test_bit(R5_Insync, &dev->flags) && !test_bit(R5_LOCKED, &dev->flags) &&
1523 test_bit(R5_UPTODATE, &dev->flags))
1524 || (failed == 1 && failed_num == sh->pd_idx))
1525 ) {
1526 /* any written block on an uptodate or failed drive can be returned.
1527 * Note that if we 'wrote' to a failed drive, it will be UPTODATE, but
1528 * never LOCKED, so we don't need to test 'failed' directly.
1529 */
1530 for (i=disks; i--; )
1531 if (sh->dev[i].written) {
1532 dev = &sh->dev[i];
1533 if (!test_bit(R5_LOCKED, &dev->flags) &&
1534 test_bit(R5_UPTODATE, &dev->flags) ) {
1535 /* We can return any write requests */
1536 struct bio *wbi, *wbi2;
NeilBrown72626682005-09-09 16:23:54 -07001537 int bitmap_end = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 PRINTK("Return write for disc %d\n", i);
1539 spin_lock_irq(&conf->device_lock);
1540 wbi = dev->written;
1541 dev->written = NULL;
1542 while (wbi && wbi->bi_sector < dev->sector + STRIPE_SECTORS) {
1543 wbi2 = r5_next_bio(wbi, dev->sector);
1544 if (--wbi->bi_phys_segments == 0) {
1545 md_write_end(conf->mddev);
1546 wbi->bi_next = return_bi;
1547 return_bi = wbi;
1548 }
1549 wbi = wbi2;
1550 }
NeilBrown72626682005-09-09 16:23:54 -07001551 if (dev->towrite == NULL)
1552 bitmap_end = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 spin_unlock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07001554 if (bitmap_end)
1555 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
1556 STRIPE_SECTORS,
1557 !test_bit(STRIPE_DEGRADED, &sh->state), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 }
1559 }
1560 }
1561
1562 /* Now we might consider reading some blocks, either to check/generate
1563 * parity, or to satisfy requests
1564 * or to load a block that is being partially written.
1565 */
NeilBrownccfcc3c2006-03-27 01:18:09 -08001566 if (to_read || non_overwrite || (syncing && (uptodate < disks)) || expanding) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 for (i=disks; i--;) {
1568 dev = &sh->dev[i];
1569 if (!test_bit(R5_LOCKED, &dev->flags) && !test_bit(R5_UPTODATE, &dev->flags) &&
1570 (dev->toread ||
1571 (dev->towrite && !test_bit(R5_OVERWRITE, &dev->flags)) ||
1572 syncing ||
NeilBrownccfcc3c2006-03-27 01:18:09 -08001573 expanding ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 (failed && (sh->dev[failed_num].toread ||
1575 (sh->dev[failed_num].towrite && !test_bit(R5_OVERWRITE, &sh->dev[failed_num].flags))))
1576 )
1577 ) {
1578 /* we would like to get this block, possibly
1579 * by computing it, but we might not be able to
1580 */
1581 if (uptodate == disks-1) {
1582 PRINTK("Computing block %d\n", i);
1583 compute_block(sh, i);
1584 uptodate++;
1585 } else if (test_bit(R5_Insync, &dev->flags)) {
1586 set_bit(R5_LOCKED, &dev->flags);
1587 set_bit(R5_Wantread, &dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 locked++;
1589 PRINTK("Reading block %d (sync=%d)\n",
1590 i, syncing);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 }
1592 }
1593 }
1594 set_bit(STRIPE_HANDLE, &sh->state);
1595 }
1596
1597 /* now to consider writing and what else, if anything should be read */
1598 if (to_write) {
1599 int rmw=0, rcw=0;
1600 for (i=disks ; i--;) {
1601 /* would I have to read this buffer for read_modify_write */
1602 dev = &sh->dev[i];
1603 if ((dev->towrite || i == sh->pd_idx) &&
1604 (!test_bit(R5_LOCKED, &dev->flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 ) &&
1606 !test_bit(R5_UPTODATE, &dev->flags)) {
1607 if (test_bit(R5_Insync, &dev->flags)
1608/* && !(!mddev->insync && i == sh->pd_idx) */
1609 )
1610 rmw++;
1611 else rmw += 2*disks; /* cannot read it */
1612 }
1613 /* Would I have to read this buffer for reconstruct_write */
1614 if (!test_bit(R5_OVERWRITE, &dev->flags) && i != sh->pd_idx &&
1615 (!test_bit(R5_LOCKED, &dev->flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 ) &&
1617 !test_bit(R5_UPTODATE, &dev->flags)) {
1618 if (test_bit(R5_Insync, &dev->flags)) rcw++;
1619 else rcw += 2*disks;
1620 }
1621 }
1622 PRINTK("for sector %llu, rmw=%d rcw=%d\n",
1623 (unsigned long long)sh->sector, rmw, rcw);
1624 set_bit(STRIPE_HANDLE, &sh->state);
1625 if (rmw < rcw && rmw > 0)
1626 /* prefer read-modify-write, but need to get some data */
1627 for (i=disks; i--;) {
1628 dev = &sh->dev[i];
1629 if ((dev->towrite || i == sh->pd_idx) &&
1630 !test_bit(R5_LOCKED, &dev->flags) && !test_bit(R5_UPTODATE, &dev->flags) &&
1631 test_bit(R5_Insync, &dev->flags)) {
1632 if (test_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
1633 {
1634 PRINTK("Read_old block %d for r-m-w\n", i);
1635 set_bit(R5_LOCKED, &dev->flags);
1636 set_bit(R5_Wantread, &dev->flags);
1637 locked++;
1638 } else {
1639 set_bit(STRIPE_DELAYED, &sh->state);
1640 set_bit(STRIPE_HANDLE, &sh->state);
1641 }
1642 }
1643 }
1644 if (rcw <= rmw && rcw > 0)
1645 /* want reconstruct write, but need to get some data */
1646 for (i=disks; i--;) {
1647 dev = &sh->dev[i];
1648 if (!test_bit(R5_OVERWRITE, &dev->flags) && i != sh->pd_idx &&
1649 !test_bit(R5_LOCKED, &dev->flags) && !test_bit(R5_UPTODATE, &dev->flags) &&
1650 test_bit(R5_Insync, &dev->flags)) {
1651 if (test_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
1652 {
1653 PRINTK("Read_old block %d for Reconstruct\n", i);
1654 set_bit(R5_LOCKED, &dev->flags);
1655 set_bit(R5_Wantread, &dev->flags);
1656 locked++;
1657 } else {
1658 set_bit(STRIPE_DELAYED, &sh->state);
1659 set_bit(STRIPE_HANDLE, &sh->state);
1660 }
1661 }
1662 }
1663 /* now if nothing is locked, and if we have enough data, we can start a write request */
NeilBrown72626682005-09-09 16:23:54 -07001664 if (locked == 0 && (rcw == 0 ||rmw == 0) &&
1665 !test_bit(STRIPE_BIT_DELAY, &sh->state)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 PRINTK("Computing parity...\n");
NeilBrown16a53ec2006-06-26 00:27:38 -07001667 compute_parity5(sh, rcw==0 ? RECONSTRUCT_WRITE : READ_MODIFY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 /* now every locked buffer is ready to be written */
1669 for (i=disks; i--;)
1670 if (test_bit(R5_LOCKED, &sh->dev[i].flags)) {
1671 PRINTK("Writing block %d\n", i);
1672 locked++;
1673 set_bit(R5_Wantwrite, &sh->dev[i].flags);
1674 if (!test_bit(R5_Insync, &sh->dev[i].flags)
1675 || (i==sh->pd_idx && failed == 0))
1676 set_bit(STRIPE_INSYNC, &sh->state);
1677 }
1678 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
1679 atomic_dec(&conf->preread_active_stripes);
1680 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD)
1681 md_wakeup_thread(conf->mddev->thread);
1682 }
1683 }
1684 }
1685
1686 /* maybe we need to check and possibly fix the parity for this stripe
1687 * Any reads will already have been scheduled, so we just see if enough data
1688 * is available
1689 */
1690 if (syncing && locked == 0 &&
NeilBrown14f8d262006-01-06 00:20:14 -08001691 !test_bit(STRIPE_INSYNC, &sh->state)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 set_bit(STRIPE_HANDLE, &sh->state);
1693 if (failed == 0) {
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02001694 BUG_ON(uptodate != disks);
NeilBrown16a53ec2006-06-26 00:27:38 -07001695 compute_parity5(sh, CHECK_PARITY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 uptodate--;
NeilBrown16a53ec2006-06-26 00:27:38 -07001697 if (page_is_zero(sh->dev[sh->pd_idx].page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 /* parity is correct (on disc, not in buffer any more) */
1699 set_bit(STRIPE_INSYNC, &sh->state);
NeilBrown9d888832005-11-08 21:39:26 -08001700 } else {
1701 conf->mddev->resync_mismatches += STRIPE_SECTORS;
1702 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
1703 /* don't try to repair!! */
1704 set_bit(STRIPE_INSYNC, &sh->state);
NeilBrown14f8d262006-01-06 00:20:14 -08001705 else {
1706 compute_block(sh, sh->pd_idx);
1707 uptodate++;
1708 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 }
1710 }
1711 if (!test_bit(STRIPE_INSYNC, &sh->state)) {
NeilBrown14f8d262006-01-06 00:20:14 -08001712 /* either failed parity check, or recovery is happening */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 if (failed==0)
1714 failed_num = sh->pd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 dev = &sh->dev[failed_num];
NeilBrown14f8d262006-01-06 00:20:14 -08001716 BUG_ON(!test_bit(R5_UPTODATE, &dev->flags));
1717 BUG_ON(uptodate != disks);
1718
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 set_bit(R5_LOCKED, &dev->flags);
1720 set_bit(R5_Wantwrite, &dev->flags);
NeilBrown72626682005-09-09 16:23:54 -07001721 clear_bit(STRIPE_DEGRADED, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 locked++;
1723 set_bit(STRIPE_INSYNC, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 }
1725 }
1726 if (syncing && locked == 0 && test_bit(STRIPE_INSYNC, &sh->state)) {
1727 md_done_sync(conf->mddev, STRIPE_SECTORS,1);
1728 clear_bit(STRIPE_SYNCING, &sh->state);
1729 }
NeilBrown4e5314b2005-11-08 21:39:22 -08001730
1731 /* If the failed drive is just a ReadError, then we might need to progress
1732 * the repair/check process
1733 */
NeilBrownba22dcb2005-11-08 21:39:31 -08001734 if (failed == 1 && ! conf->mddev->ro &&
1735 test_bit(R5_ReadError, &sh->dev[failed_num].flags)
NeilBrown4e5314b2005-11-08 21:39:22 -08001736 && !test_bit(R5_LOCKED, &sh->dev[failed_num].flags)
1737 && test_bit(R5_UPTODATE, &sh->dev[failed_num].flags)
1738 ) {
1739 dev = &sh->dev[failed_num];
1740 if (!test_bit(R5_ReWrite, &dev->flags)) {
1741 set_bit(R5_Wantwrite, &dev->flags);
1742 set_bit(R5_ReWrite, &dev->flags);
1743 set_bit(R5_LOCKED, &dev->flags);
NeilBrownccfcc3c2006-03-27 01:18:09 -08001744 locked++;
NeilBrown4e5314b2005-11-08 21:39:22 -08001745 } else {
1746 /* let's read it back */
1747 set_bit(R5_Wantread, &dev->flags);
1748 set_bit(R5_LOCKED, &dev->flags);
NeilBrownccfcc3c2006-03-27 01:18:09 -08001749 locked++;
NeilBrown4e5314b2005-11-08 21:39:22 -08001750 }
1751 }
1752
NeilBrownccfcc3c2006-03-27 01:18:09 -08001753 if (expanded && test_bit(STRIPE_EXPANDING, &sh->state)) {
1754 /* Need to write out all blocks after computing parity */
1755 sh->disks = conf->raid_disks;
1756 sh->pd_idx = stripe_to_pdidx(sh->sector, conf, conf->raid_disks);
NeilBrown16a53ec2006-06-26 00:27:38 -07001757 compute_parity5(sh, RECONSTRUCT_WRITE);
NeilBrownccfcc3c2006-03-27 01:18:09 -08001758 for (i= conf->raid_disks; i--;) {
1759 set_bit(R5_LOCKED, &sh->dev[i].flags);
1760 locked++;
1761 set_bit(R5_Wantwrite, &sh->dev[i].flags);
1762 }
1763 clear_bit(STRIPE_EXPANDING, &sh->state);
1764 } else if (expanded) {
1765 clear_bit(STRIPE_EXPAND_READY, &sh->state);
NeilBrownf6705572006-03-27 01:18:11 -08001766 atomic_dec(&conf->reshape_stripes);
NeilBrownccfcc3c2006-03-27 01:18:09 -08001767 wake_up(&conf->wait_for_overlap);
1768 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
1769 }
1770
1771 if (expanding && locked == 0) {
1772 /* We have read all the blocks in this stripe and now we need to
1773 * copy some of them into a target stripe for expand.
1774 */
1775 clear_bit(STRIPE_EXPAND_SOURCE, &sh->state);
1776 for (i=0; i< sh->disks; i++)
1777 if (i != sh->pd_idx) {
1778 int dd_idx, pd_idx, j;
1779 struct stripe_head *sh2;
1780
1781 sector_t bn = compute_blocknr(sh, i);
1782 sector_t s = raid5_compute_sector(bn, conf->raid_disks,
1783 conf->raid_disks-1,
1784 &dd_idx, &pd_idx, conf);
1785 sh2 = get_active_stripe(conf, s, conf->raid_disks, pd_idx, 1);
1786 if (sh2 == NULL)
1787 /* so far only the early blocks of this stripe
1788 * have been requested. When later blocks
1789 * get requested, we will try again
1790 */
1791 continue;
1792 if(!test_bit(STRIPE_EXPANDING, &sh2->state) ||
1793 test_bit(R5_Expanded, &sh2->dev[dd_idx].flags)) {
1794 /* must have already done this block */
1795 release_stripe(sh2);
1796 continue;
1797 }
1798 memcpy(page_address(sh2->dev[dd_idx].page),
1799 page_address(sh->dev[i].page),
1800 STRIPE_SIZE);
1801 set_bit(R5_Expanded, &sh2->dev[dd_idx].flags);
1802 set_bit(R5_UPTODATE, &sh2->dev[dd_idx].flags);
1803 for (j=0; j<conf->raid_disks; j++)
1804 if (j != sh2->pd_idx &&
1805 !test_bit(R5_Expanded, &sh2->dev[j].flags))
1806 break;
1807 if (j == conf->raid_disks) {
1808 set_bit(STRIPE_EXPAND_READY, &sh2->state);
1809 set_bit(STRIPE_HANDLE, &sh2->state);
1810 }
1811 release_stripe(sh2);
1812 }
1813 }
1814
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 spin_unlock(&sh->lock);
1816
1817 while ((bi=return_bi)) {
1818 int bytes = bi->bi_size;
1819
1820 return_bi = bi->bi_next;
1821 bi->bi_next = NULL;
1822 bi->bi_size = 0;
NeilBrownc2b00852006-12-10 02:20:51 -08001823 bi->bi_end_io(bi, bytes,
1824 test_bit(BIO_UPTODATE, &bi->bi_flags)
1825 ? 0 : -EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 }
1827 for (i=disks; i-- ;) {
1828 int rw;
1829 struct bio *bi;
1830 mdk_rdev_t *rdev;
1831 if (test_and_clear_bit(R5_Wantwrite, &sh->dev[i].flags))
NeilBrown802ba062006-12-13 00:34:13 -08001832 rw = WRITE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 else if (test_and_clear_bit(R5_Wantread, &sh->dev[i].flags))
NeilBrown802ba062006-12-13 00:34:13 -08001834 rw = READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 else
1836 continue;
1837
1838 bi = &sh->dev[i].req;
1839
1840 bi->bi_rw = rw;
NeilBrown802ba062006-12-13 00:34:13 -08001841 if (rw == WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 bi->bi_end_io = raid5_end_write_request;
1843 else
1844 bi->bi_end_io = raid5_end_read_request;
1845
1846 rcu_read_lock();
Suzanne Woodd6065f72005-11-08 21:39:27 -08001847 rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownb2d444d2005-11-08 21:39:31 -08001848 if (rdev && test_bit(Faulty, &rdev->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 rdev = NULL;
1850 if (rdev)
1851 atomic_inc(&rdev->nr_pending);
1852 rcu_read_unlock();
1853
1854 if (rdev) {
NeilBrownccfcc3c2006-03-27 01:18:09 -08001855 if (syncing || expanding || expanded)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 md_sync_acct(rdev->bdev, STRIPE_SECTORS);
1857
1858 bi->bi_bdev = rdev->bdev;
1859 PRINTK("for %llu schedule op %ld on disc %d\n",
1860 (unsigned long long)sh->sector, bi->bi_rw, i);
1861 atomic_inc(&sh->count);
1862 bi->bi_sector = sh->sector + rdev->data_offset;
1863 bi->bi_flags = 1 << BIO_UPTODATE;
1864 bi->bi_vcnt = 1;
1865 bi->bi_max_vecs = 1;
1866 bi->bi_idx = 0;
1867 bi->bi_io_vec = &sh->dev[i].vec;
1868 bi->bi_io_vec[0].bv_len = STRIPE_SIZE;
1869 bi->bi_io_vec[0].bv_offset = 0;
1870 bi->bi_size = STRIPE_SIZE;
1871 bi->bi_next = NULL;
NeilBrown4dbcdc72006-01-06 00:20:52 -08001872 if (rw == WRITE &&
1873 test_bit(R5_ReWrite, &sh->dev[i].flags))
1874 atomic_add(STRIPE_SECTORS, &rdev->corrected_errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 generic_make_request(bi);
1876 } else {
NeilBrown802ba062006-12-13 00:34:13 -08001877 if (rw == WRITE)
NeilBrown72626682005-09-09 16:23:54 -07001878 set_bit(STRIPE_DEGRADED, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 PRINTK("skip op %ld on disc %d for sector %llu\n",
1880 bi->bi_rw, i, (unsigned long long)sh->sector);
1881 clear_bit(R5_LOCKED, &sh->dev[i].flags);
1882 set_bit(STRIPE_HANDLE, &sh->state);
1883 }
1884 }
1885}
1886
NeilBrown16a53ec2006-06-26 00:27:38 -07001887static void handle_stripe6(struct stripe_head *sh, struct page *tmp_page)
1888{
1889 raid6_conf_t *conf = sh->raid_conf;
1890 int disks = conf->raid_disks;
1891 struct bio *return_bi= NULL;
1892 struct bio *bi;
1893 int i;
1894 int syncing;
1895 int locked=0, uptodate=0, to_read=0, to_write=0, failed=0, written=0;
1896 int non_overwrite = 0;
1897 int failed_num[2] = {0, 0};
1898 struct r5dev *dev, *pdev, *qdev;
1899 int pd_idx = sh->pd_idx;
1900 int qd_idx = raid6_next_disk(pd_idx, disks);
1901 int p_failed, q_failed;
1902
1903 PRINTK("handling stripe %llu, state=%#lx cnt=%d, pd_idx=%d, qd_idx=%d\n",
1904 (unsigned long long)sh->sector, sh->state, atomic_read(&sh->count),
1905 pd_idx, qd_idx);
1906
1907 spin_lock(&sh->lock);
1908 clear_bit(STRIPE_HANDLE, &sh->state);
1909 clear_bit(STRIPE_DELAYED, &sh->state);
1910
1911 syncing = test_bit(STRIPE_SYNCING, &sh->state);
1912 /* Now to look around and see what can be done */
1913
1914 rcu_read_lock();
1915 for (i=disks; i--; ) {
1916 mdk_rdev_t *rdev;
1917 dev = &sh->dev[i];
1918 clear_bit(R5_Insync, &dev->flags);
1919
1920 PRINTK("check %d: state 0x%lx read %p write %p written %p\n",
1921 i, dev->flags, dev->toread, dev->towrite, dev->written);
1922 /* maybe we can reply to a read */
1923 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread) {
1924 struct bio *rbi, *rbi2;
1925 PRINTK("Return read for disc %d\n", i);
1926 spin_lock_irq(&conf->device_lock);
1927 rbi = dev->toread;
1928 dev->toread = NULL;
1929 if (test_and_clear_bit(R5_Overlap, &dev->flags))
1930 wake_up(&conf->wait_for_overlap);
1931 spin_unlock_irq(&conf->device_lock);
1932 while (rbi && rbi->bi_sector < dev->sector + STRIPE_SECTORS) {
1933 copy_data(0, rbi, dev->page, dev->sector);
1934 rbi2 = r5_next_bio(rbi, dev->sector);
1935 spin_lock_irq(&conf->device_lock);
1936 if (--rbi->bi_phys_segments == 0) {
1937 rbi->bi_next = return_bi;
1938 return_bi = rbi;
1939 }
1940 spin_unlock_irq(&conf->device_lock);
1941 rbi = rbi2;
1942 }
1943 }
1944
1945 /* now count some things */
1946 if (test_bit(R5_LOCKED, &dev->flags)) locked++;
1947 if (test_bit(R5_UPTODATE, &dev->flags)) uptodate++;
1948
1949
1950 if (dev->toread) to_read++;
1951 if (dev->towrite) {
1952 to_write++;
1953 if (!test_bit(R5_OVERWRITE, &dev->flags))
1954 non_overwrite++;
1955 }
1956 if (dev->written) written++;
1957 rdev = rcu_dereference(conf->disks[i].rdev);
1958 if (!rdev || !test_bit(In_sync, &rdev->flags)) {
1959 /* The ReadError flag will just be confusing now */
1960 clear_bit(R5_ReadError, &dev->flags);
1961 clear_bit(R5_ReWrite, &dev->flags);
1962 }
1963 if (!rdev || !test_bit(In_sync, &rdev->flags)
1964 || test_bit(R5_ReadError, &dev->flags)) {
1965 if ( failed < 2 )
1966 failed_num[failed] = i;
1967 failed++;
1968 } else
1969 set_bit(R5_Insync, &dev->flags);
1970 }
1971 rcu_read_unlock();
1972 PRINTK("locked=%d uptodate=%d to_read=%d"
1973 " to_write=%d failed=%d failed_num=%d,%d\n",
1974 locked, uptodate, to_read, to_write, failed,
1975 failed_num[0], failed_num[1]);
1976 /* check if the array has lost >2 devices and, if so, some requests might
1977 * need to be failed
1978 */
1979 if (failed > 2 && to_read+to_write+written) {
1980 for (i=disks; i--; ) {
1981 int bitmap_end = 0;
1982
1983 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
1984 mdk_rdev_t *rdev;
1985 rcu_read_lock();
1986 rdev = rcu_dereference(conf->disks[i].rdev);
1987 if (rdev && test_bit(In_sync, &rdev->flags))
1988 /* multiple read failures in one stripe */
1989 md_error(conf->mddev, rdev);
1990 rcu_read_unlock();
1991 }
1992
1993 spin_lock_irq(&conf->device_lock);
1994 /* fail all writes first */
1995 bi = sh->dev[i].towrite;
1996 sh->dev[i].towrite = NULL;
1997 if (bi) { to_write--; bitmap_end = 1; }
1998
1999 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
2000 wake_up(&conf->wait_for_overlap);
2001
2002 while (bi && bi->bi_sector < sh->dev[i].sector + STRIPE_SECTORS){
2003 struct bio *nextbi = r5_next_bio(bi, sh->dev[i].sector);
2004 clear_bit(BIO_UPTODATE, &bi->bi_flags);
2005 if (--bi->bi_phys_segments == 0) {
2006 md_write_end(conf->mddev);
2007 bi->bi_next = return_bi;
2008 return_bi = bi;
2009 }
2010 bi = nextbi;
2011 }
2012 /* and fail all 'written' */
2013 bi = sh->dev[i].written;
2014 sh->dev[i].written = NULL;
2015 if (bi) bitmap_end = 1;
2016 while (bi && bi->bi_sector < sh->dev[i].sector + STRIPE_SECTORS) {
2017 struct bio *bi2 = r5_next_bio(bi, sh->dev[i].sector);
2018 clear_bit(BIO_UPTODATE, &bi->bi_flags);
2019 if (--bi->bi_phys_segments == 0) {
2020 md_write_end(conf->mddev);
2021 bi->bi_next = return_bi;
2022 return_bi = bi;
2023 }
2024 bi = bi2;
2025 }
2026
2027 /* fail any reads if this device is non-operational */
2028 if (!test_bit(R5_Insync, &sh->dev[i].flags) ||
2029 test_bit(R5_ReadError, &sh->dev[i].flags)) {
2030 bi = sh->dev[i].toread;
2031 sh->dev[i].toread = NULL;
2032 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
2033 wake_up(&conf->wait_for_overlap);
2034 if (bi) to_read--;
2035 while (bi && bi->bi_sector < sh->dev[i].sector + STRIPE_SECTORS){
2036 struct bio *nextbi = r5_next_bio(bi, sh->dev[i].sector);
2037 clear_bit(BIO_UPTODATE, &bi->bi_flags);
2038 if (--bi->bi_phys_segments == 0) {
2039 bi->bi_next = return_bi;
2040 return_bi = bi;
2041 }
2042 bi = nextbi;
2043 }
2044 }
2045 spin_unlock_irq(&conf->device_lock);
2046 if (bitmap_end)
2047 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
2048 STRIPE_SECTORS, 0, 0);
2049 }
2050 }
2051 if (failed > 2 && syncing) {
2052 md_done_sync(conf->mddev, STRIPE_SECTORS,0);
2053 clear_bit(STRIPE_SYNCING, &sh->state);
2054 syncing = 0;
2055 }
2056
2057 /*
2058 * might be able to return some write requests if the parity blocks
2059 * are safe, or on a failed drive
2060 */
2061 pdev = &sh->dev[pd_idx];
2062 p_failed = (failed >= 1 && failed_num[0] == pd_idx)
2063 || (failed >= 2 && failed_num[1] == pd_idx);
2064 qdev = &sh->dev[qd_idx];
2065 q_failed = (failed >= 1 && failed_num[0] == qd_idx)
2066 || (failed >= 2 && failed_num[1] == qd_idx);
2067
2068 if ( written &&
2069 ( p_failed || ((test_bit(R5_Insync, &pdev->flags)
2070 && !test_bit(R5_LOCKED, &pdev->flags)
2071 && test_bit(R5_UPTODATE, &pdev->flags))) ) &&
2072 ( q_failed || ((test_bit(R5_Insync, &qdev->flags)
2073 && !test_bit(R5_LOCKED, &qdev->flags)
2074 && test_bit(R5_UPTODATE, &qdev->flags))) ) ) {
2075 /* any written block on an uptodate or failed drive can be
2076 * returned. Note that if we 'wrote' to a failed drive,
2077 * it will be UPTODATE, but never LOCKED, so we don't need
2078 * to test 'failed' directly.
2079 */
2080 for (i=disks; i--; )
2081 if (sh->dev[i].written) {
2082 dev = &sh->dev[i];
2083 if (!test_bit(R5_LOCKED, &dev->flags) &&
2084 test_bit(R5_UPTODATE, &dev->flags) ) {
2085 /* We can return any write requests */
2086 int bitmap_end = 0;
2087 struct bio *wbi, *wbi2;
2088 PRINTK("Return write for stripe %llu disc %d\n",
2089 (unsigned long long)sh->sector, i);
2090 spin_lock_irq(&conf->device_lock);
2091 wbi = dev->written;
2092 dev->written = NULL;
2093 while (wbi && wbi->bi_sector < dev->sector + STRIPE_SECTORS) {
2094 wbi2 = r5_next_bio(wbi, dev->sector);
2095 if (--wbi->bi_phys_segments == 0) {
2096 md_write_end(conf->mddev);
2097 wbi->bi_next = return_bi;
2098 return_bi = wbi;
2099 }
2100 wbi = wbi2;
2101 }
2102 if (dev->towrite == NULL)
2103 bitmap_end = 1;
2104 spin_unlock_irq(&conf->device_lock);
2105 if (bitmap_end)
2106 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
2107 STRIPE_SECTORS,
2108 !test_bit(STRIPE_DEGRADED, &sh->state), 0);
2109 }
2110 }
2111 }
2112
2113 /* Now we might consider reading some blocks, either to check/generate
2114 * parity, or to satisfy requests
2115 * or to load a block that is being partially written.
2116 */
2117 if (to_read || non_overwrite || (to_write && failed) || (syncing && (uptodate < disks))) {
2118 for (i=disks; i--;) {
2119 dev = &sh->dev[i];
2120 if (!test_bit(R5_LOCKED, &dev->flags) && !test_bit(R5_UPTODATE, &dev->flags) &&
2121 (dev->toread ||
2122 (dev->towrite && !test_bit(R5_OVERWRITE, &dev->flags)) ||
2123 syncing ||
2124 (failed >= 1 && (sh->dev[failed_num[0]].toread || to_write)) ||
2125 (failed >= 2 && (sh->dev[failed_num[1]].toread || to_write))
2126 )
2127 ) {
2128 /* we would like to get this block, possibly
2129 * by computing it, but we might not be able to
2130 */
2131 if (uptodate == disks-1) {
2132 PRINTK("Computing stripe %llu block %d\n",
2133 (unsigned long long)sh->sector, i);
2134 compute_block_1(sh, i, 0);
2135 uptodate++;
2136 } else if ( uptodate == disks-2 && failed >= 2 ) {
2137 /* Computing 2-failure is *very* expensive; only do it if failed >= 2 */
2138 int other;
2139 for (other=disks; other--;) {
2140 if ( other == i )
2141 continue;
2142 if ( !test_bit(R5_UPTODATE, &sh->dev[other].flags) )
2143 break;
2144 }
2145 BUG_ON(other < 0);
2146 PRINTK("Computing stripe %llu blocks %d,%d\n",
2147 (unsigned long long)sh->sector, i, other);
2148 compute_block_2(sh, i, other);
2149 uptodate += 2;
2150 } else if (test_bit(R5_Insync, &dev->flags)) {
2151 set_bit(R5_LOCKED, &dev->flags);
2152 set_bit(R5_Wantread, &dev->flags);
NeilBrown16a53ec2006-06-26 00:27:38 -07002153 locked++;
2154 PRINTK("Reading block %d (sync=%d)\n",
2155 i, syncing);
2156 }
2157 }
2158 }
2159 set_bit(STRIPE_HANDLE, &sh->state);
2160 }
2161
2162 /* now to consider writing and what else, if anything should be read */
2163 if (to_write) {
2164 int rcw=0, must_compute=0;
2165 for (i=disks ; i--;) {
2166 dev = &sh->dev[i];
2167 /* Would I have to read this buffer for reconstruct_write */
2168 if (!test_bit(R5_OVERWRITE, &dev->flags)
2169 && i != pd_idx && i != qd_idx
2170 && (!test_bit(R5_LOCKED, &dev->flags)
NeilBrown16a53ec2006-06-26 00:27:38 -07002171 ) &&
2172 !test_bit(R5_UPTODATE, &dev->flags)) {
2173 if (test_bit(R5_Insync, &dev->flags)) rcw++;
2174 else {
2175 PRINTK("raid6: must_compute: disk %d flags=%#lx\n", i, dev->flags);
2176 must_compute++;
2177 }
2178 }
2179 }
2180 PRINTK("for sector %llu, rcw=%d, must_compute=%d\n",
2181 (unsigned long long)sh->sector, rcw, must_compute);
2182 set_bit(STRIPE_HANDLE, &sh->state);
2183
2184 if (rcw > 0)
2185 /* want reconstruct write, but need to get some data */
2186 for (i=disks; i--;) {
2187 dev = &sh->dev[i];
2188 if (!test_bit(R5_OVERWRITE, &dev->flags)
2189 && !(failed == 0 && (i == pd_idx || i == qd_idx))
2190 && !test_bit(R5_LOCKED, &dev->flags) && !test_bit(R5_UPTODATE, &dev->flags) &&
2191 test_bit(R5_Insync, &dev->flags)) {
2192 if (test_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
2193 {
2194 PRINTK("Read_old stripe %llu block %d for Reconstruct\n",
2195 (unsigned long long)sh->sector, i);
2196 set_bit(R5_LOCKED, &dev->flags);
2197 set_bit(R5_Wantread, &dev->flags);
2198 locked++;
2199 } else {
2200 PRINTK("Request delayed stripe %llu block %d for Reconstruct\n",
2201 (unsigned long long)sh->sector, i);
2202 set_bit(STRIPE_DELAYED, &sh->state);
2203 set_bit(STRIPE_HANDLE, &sh->state);
2204 }
2205 }
2206 }
2207 /* now if nothing is locked, and if we have enough data, we can start a write request */
2208 if (locked == 0 && rcw == 0 &&
2209 !test_bit(STRIPE_BIT_DELAY, &sh->state)) {
2210 if ( must_compute > 0 ) {
2211 /* We have failed blocks and need to compute them */
2212 switch ( failed ) {
2213 case 0: BUG();
2214 case 1: compute_block_1(sh, failed_num[0], 0); break;
2215 case 2: compute_block_2(sh, failed_num[0], failed_num[1]); break;
2216 default: BUG(); /* This request should have been failed? */
2217 }
2218 }
2219
2220 PRINTK("Computing parity for stripe %llu\n", (unsigned long long)sh->sector);
2221 compute_parity6(sh, RECONSTRUCT_WRITE);
2222 /* now every locked buffer is ready to be written */
2223 for (i=disks; i--;)
2224 if (test_bit(R5_LOCKED, &sh->dev[i].flags)) {
2225 PRINTK("Writing stripe %llu block %d\n",
2226 (unsigned long long)sh->sector, i);
2227 locked++;
2228 set_bit(R5_Wantwrite, &sh->dev[i].flags);
2229 }
2230 /* after a RECONSTRUCT_WRITE, the stripe MUST be in-sync */
2231 set_bit(STRIPE_INSYNC, &sh->state);
2232
2233 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
2234 atomic_dec(&conf->preread_active_stripes);
2235 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD)
2236 md_wakeup_thread(conf->mddev->thread);
2237 }
2238 }
2239 }
2240
2241 /* maybe we need to check and possibly fix the parity for this stripe
2242 * Any reads will already have been scheduled, so we just see if enough data
2243 * is available
2244 */
2245 if (syncing && locked == 0 && !test_bit(STRIPE_INSYNC, &sh->state)) {
2246 int update_p = 0, update_q = 0;
2247 struct r5dev *dev;
2248
2249 set_bit(STRIPE_HANDLE, &sh->state);
2250
2251 BUG_ON(failed>2);
2252 BUG_ON(uptodate < disks);
2253 /* Want to check and possibly repair P and Q.
2254 * However there could be one 'failed' device, in which
2255 * case we can only check one of them, possibly using the
2256 * other to generate missing data
2257 */
2258
2259 /* If !tmp_page, we cannot do the calculations,
2260 * but as we have set STRIPE_HANDLE, we will soon be called
2261 * by stripe_handle with a tmp_page - just wait until then.
2262 */
2263 if (tmp_page) {
2264 if (failed == q_failed) {
2265 /* The only possible failed device holds 'Q', so it makes
2266 * sense to check P (If anything else were failed, we would
2267 * have used P to recreate it).
2268 */
2269 compute_block_1(sh, pd_idx, 1);
2270 if (!page_is_zero(sh->dev[pd_idx].page)) {
2271 compute_block_1(sh,pd_idx,0);
2272 update_p = 1;
2273 }
2274 }
2275 if (!q_failed && failed < 2) {
2276 /* q is not failed, and we didn't use it to generate
2277 * anything, so it makes sense to check it
2278 */
2279 memcpy(page_address(tmp_page),
2280 page_address(sh->dev[qd_idx].page),
2281 STRIPE_SIZE);
2282 compute_parity6(sh, UPDATE_PARITY);
2283 if (memcmp(page_address(tmp_page),
2284 page_address(sh->dev[qd_idx].page),
2285 STRIPE_SIZE)!= 0) {
2286 clear_bit(STRIPE_INSYNC, &sh->state);
2287 update_q = 1;
2288 }
2289 }
2290 if (update_p || update_q) {
2291 conf->mddev->resync_mismatches += STRIPE_SECTORS;
2292 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
2293 /* don't try to repair!! */
2294 update_p = update_q = 0;
2295 }
2296
2297 /* now write out any block on a failed drive,
2298 * or P or Q if they need it
2299 */
2300
2301 if (failed == 2) {
2302 dev = &sh->dev[failed_num[1]];
2303 locked++;
2304 set_bit(R5_LOCKED, &dev->flags);
2305 set_bit(R5_Wantwrite, &dev->flags);
2306 }
2307 if (failed >= 1) {
2308 dev = &sh->dev[failed_num[0]];
2309 locked++;
2310 set_bit(R5_LOCKED, &dev->flags);
2311 set_bit(R5_Wantwrite, &dev->flags);
2312 }
2313
2314 if (update_p) {
2315 dev = &sh->dev[pd_idx];
2316 locked ++;
2317 set_bit(R5_LOCKED, &dev->flags);
2318 set_bit(R5_Wantwrite, &dev->flags);
2319 }
2320 if (update_q) {
2321 dev = &sh->dev[qd_idx];
2322 locked++;
2323 set_bit(R5_LOCKED, &dev->flags);
2324 set_bit(R5_Wantwrite, &dev->flags);
2325 }
2326 clear_bit(STRIPE_DEGRADED, &sh->state);
2327
2328 set_bit(STRIPE_INSYNC, &sh->state);
2329 }
2330 }
2331
2332 if (syncing && locked == 0 && test_bit(STRIPE_INSYNC, &sh->state)) {
2333 md_done_sync(conf->mddev, STRIPE_SECTORS,1);
2334 clear_bit(STRIPE_SYNCING, &sh->state);
2335 }
2336
2337 /* If the failed drives are just a ReadError, then we might need
2338 * to progress the repair/check process
2339 */
2340 if (failed <= 2 && ! conf->mddev->ro)
2341 for (i=0; i<failed;i++) {
2342 dev = &sh->dev[failed_num[i]];
2343 if (test_bit(R5_ReadError, &dev->flags)
2344 && !test_bit(R5_LOCKED, &dev->flags)
2345 && test_bit(R5_UPTODATE, &dev->flags)
2346 ) {
2347 if (!test_bit(R5_ReWrite, &dev->flags)) {
2348 set_bit(R5_Wantwrite, &dev->flags);
2349 set_bit(R5_ReWrite, &dev->flags);
2350 set_bit(R5_LOCKED, &dev->flags);
2351 } else {
2352 /* let's read it back */
2353 set_bit(R5_Wantread, &dev->flags);
2354 set_bit(R5_LOCKED, &dev->flags);
2355 }
2356 }
2357 }
2358 spin_unlock(&sh->lock);
2359
2360 while ((bi=return_bi)) {
2361 int bytes = bi->bi_size;
2362
2363 return_bi = bi->bi_next;
2364 bi->bi_next = NULL;
2365 bi->bi_size = 0;
NeilBrownc2b00852006-12-10 02:20:51 -08002366 bi->bi_end_io(bi, bytes,
2367 test_bit(BIO_UPTODATE, &bi->bi_flags)
2368 ? 0 : -EIO);
NeilBrown16a53ec2006-06-26 00:27:38 -07002369 }
2370 for (i=disks; i-- ;) {
2371 int rw;
2372 struct bio *bi;
2373 mdk_rdev_t *rdev;
2374 if (test_and_clear_bit(R5_Wantwrite, &sh->dev[i].flags))
NeilBrown802ba062006-12-13 00:34:13 -08002375 rw = WRITE;
NeilBrown16a53ec2006-06-26 00:27:38 -07002376 else if (test_and_clear_bit(R5_Wantread, &sh->dev[i].flags))
NeilBrown802ba062006-12-13 00:34:13 -08002377 rw = READ;
NeilBrown16a53ec2006-06-26 00:27:38 -07002378 else
2379 continue;
2380
2381 bi = &sh->dev[i].req;
2382
2383 bi->bi_rw = rw;
NeilBrown802ba062006-12-13 00:34:13 -08002384 if (rw == WRITE)
NeilBrown16a53ec2006-06-26 00:27:38 -07002385 bi->bi_end_io = raid5_end_write_request;
2386 else
2387 bi->bi_end_io = raid5_end_read_request;
2388
2389 rcu_read_lock();
2390 rdev = rcu_dereference(conf->disks[i].rdev);
2391 if (rdev && test_bit(Faulty, &rdev->flags))
2392 rdev = NULL;
2393 if (rdev)
2394 atomic_inc(&rdev->nr_pending);
2395 rcu_read_unlock();
2396
2397 if (rdev) {
2398 if (syncing)
2399 md_sync_acct(rdev->bdev, STRIPE_SECTORS);
2400
2401 bi->bi_bdev = rdev->bdev;
2402 PRINTK("for %llu schedule op %ld on disc %d\n",
2403 (unsigned long long)sh->sector, bi->bi_rw, i);
2404 atomic_inc(&sh->count);
2405 bi->bi_sector = sh->sector + rdev->data_offset;
2406 bi->bi_flags = 1 << BIO_UPTODATE;
2407 bi->bi_vcnt = 1;
2408 bi->bi_max_vecs = 1;
2409 bi->bi_idx = 0;
2410 bi->bi_io_vec = &sh->dev[i].vec;
2411 bi->bi_io_vec[0].bv_len = STRIPE_SIZE;
2412 bi->bi_io_vec[0].bv_offset = 0;
2413 bi->bi_size = STRIPE_SIZE;
2414 bi->bi_next = NULL;
2415 if (rw == WRITE &&
2416 test_bit(R5_ReWrite, &sh->dev[i].flags))
2417 atomic_add(STRIPE_SECTORS, &rdev->corrected_errors);
2418 generic_make_request(bi);
2419 } else {
NeilBrown802ba062006-12-13 00:34:13 -08002420 if (rw == WRITE)
NeilBrown16a53ec2006-06-26 00:27:38 -07002421 set_bit(STRIPE_DEGRADED, &sh->state);
2422 PRINTK("skip op %ld on disc %d for sector %llu\n",
2423 bi->bi_rw, i, (unsigned long long)sh->sector);
2424 clear_bit(R5_LOCKED, &sh->dev[i].flags);
2425 set_bit(STRIPE_HANDLE, &sh->state);
2426 }
2427 }
2428}
2429
2430static void handle_stripe(struct stripe_head *sh, struct page *tmp_page)
2431{
2432 if (sh->raid_conf->level == 6)
2433 handle_stripe6(sh, tmp_page);
2434 else
2435 handle_stripe5(sh);
2436}
2437
2438
2439
Arjan van de Ven858119e2006-01-14 13:20:43 -08002440static void raid5_activate_delayed(raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441{
2442 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD) {
2443 while (!list_empty(&conf->delayed_list)) {
2444 struct list_head *l = conf->delayed_list.next;
2445 struct stripe_head *sh;
2446 sh = list_entry(l, struct stripe_head, lru);
2447 list_del_init(l);
2448 clear_bit(STRIPE_DELAYED, &sh->state);
2449 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
2450 atomic_inc(&conf->preread_active_stripes);
2451 list_add_tail(&sh->lru, &conf->handle_list);
2452 }
2453 }
2454}
2455
Arjan van de Ven858119e2006-01-14 13:20:43 -08002456static void activate_bit_delay(raid5_conf_t *conf)
NeilBrown72626682005-09-09 16:23:54 -07002457{
2458 /* device_lock is held */
2459 struct list_head head;
2460 list_add(&head, &conf->bitmap_list);
2461 list_del_init(&conf->bitmap_list);
2462 while (!list_empty(&head)) {
2463 struct stripe_head *sh = list_entry(head.next, struct stripe_head, lru);
2464 list_del_init(&sh->lru);
2465 atomic_inc(&sh->count);
2466 __release_stripe(conf, sh);
2467 }
2468}
2469
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470static void unplug_slaves(mddev_t *mddev)
2471{
2472 raid5_conf_t *conf = mddev_to_conf(mddev);
2473 int i;
2474
2475 rcu_read_lock();
2476 for (i=0; i<mddev->raid_disks; i++) {
Suzanne Woodd6065f72005-11-08 21:39:27 -08002477 mdk_rdev_t *rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownb2d444d2005-11-08 21:39:31 -08002478 if (rdev && !test_bit(Faulty, &rdev->flags) && atomic_read(&rdev->nr_pending)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 request_queue_t *r_queue = bdev_get_queue(rdev->bdev);
2480
2481 atomic_inc(&rdev->nr_pending);
2482 rcu_read_unlock();
2483
2484 if (r_queue->unplug_fn)
2485 r_queue->unplug_fn(r_queue);
2486
2487 rdev_dec_pending(rdev, mddev);
2488 rcu_read_lock();
2489 }
2490 }
2491 rcu_read_unlock();
2492}
2493
2494static void raid5_unplug_device(request_queue_t *q)
2495{
2496 mddev_t *mddev = q->queuedata;
2497 raid5_conf_t *conf = mddev_to_conf(mddev);
2498 unsigned long flags;
2499
2500 spin_lock_irqsave(&conf->device_lock, flags);
2501
NeilBrown72626682005-09-09 16:23:54 -07002502 if (blk_remove_plug(q)) {
2503 conf->seq_flush++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 raid5_activate_delayed(conf);
NeilBrown72626682005-09-09 16:23:54 -07002505 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 md_wakeup_thread(mddev->thread);
2507
2508 spin_unlock_irqrestore(&conf->device_lock, flags);
2509
2510 unplug_slaves(mddev);
2511}
2512
2513static int raid5_issue_flush(request_queue_t *q, struct gendisk *disk,
2514 sector_t *error_sector)
2515{
2516 mddev_t *mddev = q->queuedata;
2517 raid5_conf_t *conf = mddev_to_conf(mddev);
2518 int i, ret = 0;
2519
2520 rcu_read_lock();
2521 for (i=0; i<mddev->raid_disks && ret == 0; i++) {
Suzanne Woodd6065f72005-11-08 21:39:27 -08002522 mdk_rdev_t *rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownb2d444d2005-11-08 21:39:31 -08002523 if (rdev && !test_bit(Faulty, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 struct block_device *bdev = rdev->bdev;
2525 request_queue_t *r_queue = bdev_get_queue(bdev);
2526
2527 if (!r_queue->issue_flush_fn)
2528 ret = -EOPNOTSUPP;
2529 else {
2530 atomic_inc(&rdev->nr_pending);
2531 rcu_read_unlock();
2532 ret = r_queue->issue_flush_fn(r_queue, bdev->bd_disk,
2533 error_sector);
2534 rdev_dec_pending(rdev, mddev);
2535 rcu_read_lock();
2536 }
2537 }
2538 }
2539 rcu_read_unlock();
2540 return ret;
2541}
2542
NeilBrownf022b2f2006-10-03 01:15:56 -07002543static int raid5_congested(void *data, int bits)
2544{
2545 mddev_t *mddev = data;
2546 raid5_conf_t *conf = mddev_to_conf(mddev);
2547
2548 /* No difference between reads and writes. Just check
2549 * how busy the stripe_cache is
2550 */
2551 if (conf->inactive_blocked)
2552 return 1;
2553 if (conf->quiesce)
2554 return 1;
2555 if (list_empty_careful(&conf->inactive_list))
2556 return 1;
2557
2558 return 0;
2559}
2560
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08002561/* We want read requests to align with chunks where possible,
2562 * but write requests don't need to.
2563 */
2564static int raid5_mergeable_bvec(request_queue_t *q, struct bio *bio, struct bio_vec *biovec)
2565{
2566 mddev_t *mddev = q->queuedata;
2567 sector_t sector = bio->bi_sector + get_start_sect(bio->bi_bdev);
2568 int max;
2569 unsigned int chunk_sectors = mddev->chunk_size >> 9;
2570 unsigned int bio_sectors = bio->bi_size >> 9;
2571
NeilBrown802ba062006-12-13 00:34:13 -08002572 if (bio_data_dir(bio) == WRITE)
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08002573 return biovec->bv_len; /* always allow writes to be mergeable */
2574
2575 max = (chunk_sectors - ((sector & (chunk_sectors - 1)) + bio_sectors)) << 9;
2576 if (max < 0) max = 0;
2577 if (max <= biovec->bv_len && bio_sectors == 0)
2578 return biovec->bv_len;
2579 else
2580 return max;
2581}
2582
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08002583
2584static int in_chunk_boundary(mddev_t *mddev, struct bio *bio)
2585{
2586 sector_t sector = bio->bi_sector + get_start_sect(bio->bi_bdev);
2587 unsigned int chunk_sectors = mddev->chunk_size >> 9;
2588 unsigned int bio_sectors = bio->bi_size >> 9;
2589
2590 return chunk_sectors >=
2591 ((sector & (chunk_sectors - 1)) + bio_sectors);
2592}
2593
2594/*
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08002595 * add bio to the retry LIFO ( in O(1) ... we are in interrupt )
2596 * later sampled by raid5d.
2597 */
2598static void add_bio_to_retry(struct bio *bi,raid5_conf_t *conf)
2599{
2600 unsigned long flags;
2601
2602 spin_lock_irqsave(&conf->device_lock, flags);
2603
2604 bi->bi_next = conf->retry_read_aligned_list;
2605 conf->retry_read_aligned_list = bi;
2606
2607 spin_unlock_irqrestore(&conf->device_lock, flags);
2608 md_wakeup_thread(conf->mddev->thread);
2609}
2610
2611
2612static struct bio *remove_bio_from_retry(raid5_conf_t *conf)
2613{
2614 struct bio *bi;
2615
2616 bi = conf->retry_read_aligned;
2617 if (bi) {
2618 conf->retry_read_aligned = NULL;
2619 return bi;
2620 }
2621 bi = conf->retry_read_aligned_list;
2622 if(bi) {
Neil Brown387bb172007-02-08 14:20:29 -08002623 conf->retry_read_aligned_list = bi->bi_next;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08002624 bi->bi_next = NULL;
2625 bi->bi_phys_segments = 1; /* biased count of active stripes */
2626 bi->bi_hw_segments = 0; /* count of processed stripes */
2627 }
2628
2629 return bi;
2630}
2631
2632
2633/*
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08002634 * The "raid5_align_endio" should check if the read succeeded and if it
2635 * did, call bio_endio on the original bio (having bio_put the new bio
2636 * first).
2637 * If the read failed..
2638 */
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08002639static int raid5_align_endio(struct bio *bi, unsigned int bytes, int error)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08002640{
2641 struct bio* raid_bi = bi->bi_private;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08002642 mddev_t *mddev;
2643 raid5_conf_t *conf;
2644 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
2645 mdk_rdev_t *rdev;
2646
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08002647 if (bi->bi_size)
2648 return 1;
2649 bio_put(bi);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08002650
2651 mddev = raid_bi->bi_bdev->bd_disk->queue->queuedata;
2652 conf = mddev_to_conf(mddev);
2653 rdev = (void*)raid_bi->bi_next;
2654 raid_bi->bi_next = NULL;
2655
2656 rdev_dec_pending(rdev, conf->mddev);
2657
2658 if (!error && uptodate) {
2659 bio_endio(raid_bi, bytes, 0);
2660 if (atomic_dec_and_test(&conf->active_aligned_reads))
2661 wake_up(&conf->wait_for_stripe);
2662 return 0;
2663 }
2664
2665
2666 PRINTK("raid5_align_endio : io error...handing IO for a retry\n");
2667
2668 add_bio_to_retry(raid_bi, conf);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08002669 return 0;
2670}
2671
Neil Brown387bb172007-02-08 14:20:29 -08002672static int bio_fits_rdev(struct bio *bi)
2673{
2674 request_queue_t *q = bdev_get_queue(bi->bi_bdev);
2675
2676 if ((bi->bi_size>>9) > q->max_sectors)
2677 return 0;
2678 blk_recount_segments(q, bi);
2679 if (bi->bi_phys_segments > q->max_phys_segments ||
2680 bi->bi_hw_segments > q->max_hw_segments)
2681 return 0;
2682
2683 if (q->merge_bvec_fn)
2684 /* it's too hard to apply the merge_bvec_fn at this stage,
2685 * just just give up
2686 */
2687 return 0;
2688
2689 return 1;
2690}
2691
2692
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08002693static int chunk_aligned_read(request_queue_t *q, struct bio * raid_bio)
2694{
2695 mddev_t *mddev = q->queuedata;
2696 raid5_conf_t *conf = mddev_to_conf(mddev);
2697 const unsigned int raid_disks = conf->raid_disks;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08002698 const unsigned int data_disks = raid_disks - conf->max_degraded;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08002699 unsigned int dd_idx, pd_idx;
2700 struct bio* align_bi;
2701 mdk_rdev_t *rdev;
2702
2703 if (!in_chunk_boundary(mddev, raid_bio)) {
NeilBrownc20086d2007-01-26 00:57:14 -08002704 PRINTK("chunk_aligned_read : non aligned\n");
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08002705 return 0;
2706 }
2707 /*
2708 * use bio_clone to make a copy of the bio
2709 */
2710 align_bi = bio_clone(raid_bio, GFP_NOIO);
2711 if (!align_bi)
2712 return 0;
2713 /*
2714 * set bi_end_io to a new function, and set bi_private to the
2715 * original bio.
2716 */
2717 align_bi->bi_end_io = raid5_align_endio;
2718 align_bi->bi_private = raid_bio;
2719 /*
2720 * compute position
2721 */
2722 align_bi->bi_sector = raid5_compute_sector(raid_bio->bi_sector,
2723 raid_disks,
2724 data_disks,
2725 &dd_idx,
2726 &pd_idx,
2727 conf);
2728
2729 rcu_read_lock();
2730 rdev = rcu_dereference(conf->disks[dd_idx].rdev);
2731 if (rdev && test_bit(In_sync, &rdev->flags)) {
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08002732 atomic_inc(&rdev->nr_pending);
2733 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08002734 raid_bio->bi_next = (void*)rdev;
2735 align_bi->bi_bdev = rdev->bdev;
2736 align_bi->bi_flags &= ~(1 << BIO_SEG_VALID);
2737 align_bi->bi_sector += rdev->data_offset;
2738
Neil Brown387bb172007-02-08 14:20:29 -08002739 if (!bio_fits_rdev(align_bi)) {
2740 /* too big in some way */
2741 bio_put(align_bi);
2742 rdev_dec_pending(rdev, mddev);
2743 return 0;
2744 }
2745
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08002746 spin_lock_irq(&conf->device_lock);
2747 wait_event_lock_irq(conf->wait_for_stripe,
2748 conf->quiesce == 0,
2749 conf->device_lock, /* nothing */);
2750 atomic_inc(&conf->active_aligned_reads);
2751 spin_unlock_irq(&conf->device_lock);
2752
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08002753 generic_make_request(align_bi);
2754 return 1;
2755 } else {
2756 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08002757 bio_put(align_bi);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08002758 return 0;
2759 }
2760}
2761
2762
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002763static int make_request(request_queue_t *q, struct bio * bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764{
2765 mddev_t *mddev = q->queuedata;
2766 raid5_conf_t *conf = mddev_to_conf(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 unsigned int dd_idx, pd_idx;
2768 sector_t new_sector;
2769 sector_t logical_sector, last_sector;
2770 struct stripe_head *sh;
Jens Axboea3623572005-11-01 09:26:16 +01002771 const int rw = bio_data_dir(bi);
NeilBrownf6344752006-03-27 01:18:17 -08002772 int remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773
NeilBrowne5dcdd82005-09-09 16:23:41 -07002774 if (unlikely(bio_barrier(bi))) {
2775 bio_endio(bi, bi->bi_size, -EOPNOTSUPP);
2776 return 0;
2777 }
2778
NeilBrown3d310eb2005-06-21 17:17:26 -07002779 md_write_start(mddev, bi);
NeilBrown06d91a52005-06-21 17:17:12 -07002780
Jens Axboea3623572005-11-01 09:26:16 +01002781 disk_stat_inc(mddev->gendisk, ios[rw]);
2782 disk_stat_add(mddev->gendisk, sectors[rw], bio_sectors(bi));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783
NeilBrown802ba062006-12-13 00:34:13 -08002784 if (rw == READ &&
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08002785 mddev->reshape_position == MaxSector &&
2786 chunk_aligned_read(q,bi))
2787 return 0;
2788
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 logical_sector = bi->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
2790 last_sector = bi->bi_sector + (bi->bi_size>>9);
2791 bi->bi_next = NULL;
2792 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
NeilBrown06d91a52005-06-21 17:17:12 -07002793
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 for (;logical_sector < last_sector; logical_sector += STRIPE_SECTORS) {
2795 DEFINE_WAIT(w);
NeilBrown16a53ec2006-06-26 00:27:38 -07002796 int disks, data_disks;
NeilBrownb578d552006-03-27 01:18:12 -08002797
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002798 retry:
NeilBrownb578d552006-03-27 01:18:12 -08002799 prepare_to_wait(&conf->wait_for_overlap, &w, TASK_UNINTERRUPTIBLE);
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002800 if (likely(conf->expand_progress == MaxSector))
2801 disks = conf->raid_disks;
2802 else {
NeilBrowndf8e7f762006-03-27 01:18:15 -08002803 /* spinlock is needed as expand_progress may be
2804 * 64bit on a 32bit platform, and so it might be
2805 * possible to see a half-updated value
2806 * Ofcourse expand_progress could change after
2807 * the lock is dropped, so once we get a reference
2808 * to the stripe that we think it is, we will have
2809 * to check again.
2810 */
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002811 spin_lock_irq(&conf->device_lock);
2812 disks = conf->raid_disks;
2813 if (logical_sector >= conf->expand_progress)
2814 disks = conf->previous_raid_disks;
NeilBrownb578d552006-03-27 01:18:12 -08002815 else {
2816 if (logical_sector >= conf->expand_lo) {
2817 spin_unlock_irq(&conf->device_lock);
2818 schedule();
2819 goto retry;
2820 }
2821 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002822 spin_unlock_irq(&conf->device_lock);
2823 }
NeilBrown16a53ec2006-06-26 00:27:38 -07002824 data_disks = disks - conf->max_degraded;
2825
2826 new_sector = raid5_compute_sector(logical_sector, disks, data_disks,
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002827 &dd_idx, &pd_idx, conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 PRINTK("raid5: make_request, sector %llu logical %llu\n",
2829 (unsigned long long)new_sector,
2830 (unsigned long long)logical_sector);
2831
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002832 sh = get_active_stripe(conf, new_sector, disks, pd_idx, (bi->bi_rw&RWA_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 if (sh) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002834 if (unlikely(conf->expand_progress != MaxSector)) {
2835 /* expansion might have moved on while waiting for a
NeilBrowndf8e7f762006-03-27 01:18:15 -08002836 * stripe, so we must do the range check again.
2837 * Expansion could still move past after this
2838 * test, but as we are holding a reference to
2839 * 'sh', we know that if that happens,
2840 * STRIPE_EXPANDING will get set and the expansion
2841 * won't proceed until we finish with the stripe.
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002842 */
2843 int must_retry = 0;
2844 spin_lock_irq(&conf->device_lock);
2845 if (logical_sector < conf->expand_progress &&
2846 disks == conf->previous_raid_disks)
2847 /* mismatch, need to try again */
2848 must_retry = 1;
2849 spin_unlock_irq(&conf->device_lock);
2850 if (must_retry) {
2851 release_stripe(sh);
2852 goto retry;
2853 }
2854 }
NeilBrowne464eaf2006-03-27 01:18:14 -08002855 /* FIXME what if we get a false positive because these
2856 * are being updated.
2857 */
2858 if (logical_sector >= mddev->suspend_lo &&
2859 logical_sector < mddev->suspend_hi) {
2860 release_stripe(sh);
2861 schedule();
2862 goto retry;
2863 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08002864
2865 if (test_bit(STRIPE_EXPANDING, &sh->state) ||
2866 !add_stripe_bio(sh, bi, dd_idx, (bi->bi_rw&RW_MASK))) {
2867 /* Stripe is busy expanding or
2868 * add failed due to overlap. Flush everything
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 * and wait a while
2870 */
2871 raid5_unplug_device(mddev->queue);
2872 release_stripe(sh);
2873 schedule();
2874 goto retry;
2875 }
2876 finish_wait(&conf->wait_for_overlap, &w);
NeilBrown16a53ec2006-06-26 00:27:38 -07002877 handle_stripe(sh, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 } else {
2880 /* cannot get stripe for read-ahead, just give-up */
2881 clear_bit(BIO_UPTODATE, &bi->bi_flags);
2882 finish_wait(&conf->wait_for_overlap, &w);
2883 break;
2884 }
2885
2886 }
2887 spin_lock_irq(&conf->device_lock);
NeilBrownf6344752006-03-27 01:18:17 -08002888 remaining = --bi->bi_phys_segments;
2889 spin_unlock_irq(&conf->device_lock);
2890 if (remaining == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 int bytes = bi->bi_size;
2892
NeilBrown16a53ec2006-06-26 00:27:38 -07002893 if ( rw == WRITE )
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 md_write_end(mddev);
2895 bi->bi_size = 0;
NeilBrownc2b00852006-12-10 02:20:51 -08002896 bi->bi_end_io(bi, bytes,
2897 test_bit(BIO_UPTODATE, &bi->bi_flags)
2898 ? 0 : -EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 return 0;
2901}
2902
NeilBrown52c03292006-06-26 00:27:43 -07002903static sector_t reshape_request(mddev_t *mddev, sector_t sector_nr, int *skipped)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904{
NeilBrown52c03292006-06-26 00:27:43 -07002905 /* reshaping is quite different to recovery/resync so it is
2906 * handled quite separately ... here.
2907 *
2908 * On each call to sync_request, we gather one chunk worth of
2909 * destination stripes and flag them as expanding.
2910 * Then we find all the source stripes and request reads.
2911 * As the reads complete, handle_stripe will copy the data
2912 * into the destination stripe and release that stripe.
2913 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
2915 struct stripe_head *sh;
NeilBrownccfcc3c2006-03-27 01:18:09 -08002916 int pd_idx;
2917 sector_t first_sector, last_sector;
NeilBrown52c03292006-06-26 00:27:43 -07002918 int raid_disks;
2919 int data_disks;
2920 int i;
2921 int dd_idx;
2922 sector_t writepos, safepos, gap;
2923
2924 if (sector_nr == 0 &&
2925 conf->expand_progress != 0) {
2926 /* restarting in the middle, skip the initial sectors */
2927 sector_nr = conf->expand_progress;
2928 sector_div(sector_nr, conf->raid_disks-1);
2929 *skipped = 1;
2930 return sector_nr;
2931 }
2932
2933 /* we update the metadata when there is more than 3Meg
2934 * in the block range (that is rather arbitrary, should
2935 * probably be time based) or when the data about to be
2936 * copied would over-write the source of the data at
2937 * the front of the range.
2938 * i.e. one new_stripe forward from expand_progress new_maps
2939 * to after where expand_lo old_maps to
2940 */
2941 writepos = conf->expand_progress +
2942 conf->chunk_size/512*(conf->raid_disks-1);
2943 sector_div(writepos, conf->raid_disks-1);
2944 safepos = conf->expand_lo;
2945 sector_div(safepos, conf->previous_raid_disks-1);
2946 gap = conf->expand_progress - conf->expand_lo;
2947
2948 if (writepos >= safepos ||
2949 gap > (conf->raid_disks-1)*3000*2 /*3Meg*/) {
2950 /* Cannot proceed until we've updated the superblock... */
2951 wait_event(conf->wait_for_overlap,
2952 atomic_read(&conf->reshape_stripes)==0);
2953 mddev->reshape_position = conf->expand_progress;
NeilBrown850b2b422006-10-03 01:15:46 -07002954 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrown52c03292006-06-26 00:27:43 -07002955 md_wakeup_thread(mddev->thread);
NeilBrown850b2b422006-10-03 01:15:46 -07002956 wait_event(mddev->sb_wait, mddev->flags == 0 ||
NeilBrown52c03292006-06-26 00:27:43 -07002957 kthread_should_stop());
2958 spin_lock_irq(&conf->device_lock);
2959 conf->expand_lo = mddev->reshape_position;
2960 spin_unlock_irq(&conf->device_lock);
2961 wake_up(&conf->wait_for_overlap);
2962 }
2963
2964 for (i=0; i < conf->chunk_size/512; i+= STRIPE_SECTORS) {
2965 int j;
2966 int skipped = 0;
2967 pd_idx = stripe_to_pdidx(sector_nr+i, conf, conf->raid_disks);
2968 sh = get_active_stripe(conf, sector_nr+i,
2969 conf->raid_disks, pd_idx, 0);
2970 set_bit(STRIPE_EXPANDING, &sh->state);
2971 atomic_inc(&conf->reshape_stripes);
2972 /* If any of this stripe is beyond the end of the old
2973 * array, then we need to zero those blocks
2974 */
2975 for (j=sh->disks; j--;) {
2976 sector_t s;
2977 if (j == sh->pd_idx)
2978 continue;
2979 s = compute_blocknr(sh, j);
2980 if (s < (mddev->array_size<<1)) {
2981 skipped = 1;
2982 continue;
2983 }
2984 memset(page_address(sh->dev[j].page), 0, STRIPE_SIZE);
2985 set_bit(R5_Expanded, &sh->dev[j].flags);
2986 set_bit(R5_UPTODATE, &sh->dev[j].flags);
2987 }
2988 if (!skipped) {
2989 set_bit(STRIPE_EXPAND_READY, &sh->state);
2990 set_bit(STRIPE_HANDLE, &sh->state);
2991 }
2992 release_stripe(sh);
2993 }
2994 spin_lock_irq(&conf->device_lock);
2995 conf->expand_progress = (sector_nr + i)*(conf->raid_disks-1);
2996 spin_unlock_irq(&conf->device_lock);
2997 /* Ok, those stripe are ready. We can start scheduling
2998 * reads on the source stripes.
2999 * The source stripes are determined by mapping the first and last
3000 * block on the destination stripes.
3001 */
3002 raid_disks = conf->previous_raid_disks;
3003 data_disks = raid_disks - 1;
3004 first_sector =
3005 raid5_compute_sector(sector_nr*(conf->raid_disks-1),
3006 raid_disks, data_disks,
3007 &dd_idx, &pd_idx, conf);
3008 last_sector =
3009 raid5_compute_sector((sector_nr+conf->chunk_size/512)
3010 *(conf->raid_disks-1) -1,
3011 raid_disks, data_disks,
3012 &dd_idx, &pd_idx, conf);
3013 if (last_sector >= (mddev->size<<1))
3014 last_sector = (mddev->size<<1)-1;
3015 while (first_sector <= last_sector) {
3016 pd_idx = stripe_to_pdidx(first_sector, conf, conf->previous_raid_disks);
3017 sh = get_active_stripe(conf, first_sector,
3018 conf->previous_raid_disks, pd_idx, 0);
3019 set_bit(STRIPE_EXPAND_SOURCE, &sh->state);
3020 set_bit(STRIPE_HANDLE, &sh->state);
3021 release_stripe(sh);
3022 first_sector += STRIPE_SECTORS;
3023 }
3024 return conf->chunk_size>>9;
3025}
3026
3027/* FIXME go_faster isn't used */
3028static inline sector_t sync_request(mddev_t *mddev, sector_t sector_nr, int *skipped, int go_faster)
3029{
3030 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
3031 struct stripe_head *sh;
3032 int pd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 int raid_disks = conf->raid_disks;
NeilBrown72626682005-09-09 16:23:54 -07003034 sector_t max_sector = mddev->size << 1;
3035 int sync_blocks;
NeilBrown16a53ec2006-06-26 00:27:38 -07003036 int still_degraded = 0;
3037 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038
NeilBrown72626682005-09-09 16:23:54 -07003039 if (sector_nr >= max_sector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 /* just being told to finish up .. nothing much to do */
3041 unplug_slaves(mddev);
NeilBrown29269552006-03-27 01:18:10 -08003042 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery)) {
3043 end_reshape(conf);
3044 return 0;
3045 }
NeilBrown72626682005-09-09 16:23:54 -07003046
3047 if (mddev->curr_resync < max_sector) /* aborted */
3048 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
3049 &sync_blocks, 1);
NeilBrown16a53ec2006-06-26 00:27:38 -07003050 else /* completed sync */
NeilBrown72626682005-09-09 16:23:54 -07003051 conf->fullsync = 0;
3052 bitmap_close_sync(mddev->bitmap);
3053
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 return 0;
3055 }
NeilBrownccfcc3c2006-03-27 01:18:09 -08003056
NeilBrown52c03292006-06-26 00:27:43 -07003057 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery))
3058 return reshape_request(mddev, sector_nr, skipped);
NeilBrownf6705572006-03-27 01:18:11 -08003059
NeilBrown16a53ec2006-06-26 00:27:38 -07003060 /* if there is too many failed drives and we are trying
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 * to resync, then assert that we are finished, because there is
3062 * nothing we can do.
3063 */
NeilBrown3285edf2006-06-26 00:27:55 -07003064 if (mddev->degraded >= conf->max_degraded &&
NeilBrown16a53ec2006-06-26 00:27:38 -07003065 test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
NeilBrown57afd892005-06-21 17:17:13 -07003066 sector_t rv = (mddev->size << 1) - sector_nr;
3067 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068 return rv;
3069 }
NeilBrown72626682005-09-09 16:23:54 -07003070 if (!bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
NeilBrown3855ad92005-11-08 21:39:38 -08003071 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
NeilBrown72626682005-09-09 16:23:54 -07003072 !conf->fullsync && sync_blocks >= STRIPE_SECTORS) {
3073 /* we can skip this block, and probably more */
3074 sync_blocks /= STRIPE_SECTORS;
3075 *skipped = 1;
3076 return sync_blocks * STRIPE_SECTORS; /* keep things rounded to whole stripes */
3077 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078
NeilBrownccfcc3c2006-03-27 01:18:09 -08003079 pd_idx = stripe_to_pdidx(sector_nr, conf, raid_disks);
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003080 sh = get_active_stripe(conf, sector_nr, raid_disks, pd_idx, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 if (sh == NULL) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003082 sh = get_active_stripe(conf, sector_nr, raid_disks, pd_idx, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 /* make sure we don't swamp the stripe cache if someone else
NeilBrown16a53ec2006-06-26 00:27:38 -07003084 * is trying to get access
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 */
Nishanth Aravamudan66c006a2005-11-07 01:01:17 -08003086 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003088 /* Need to check if array will still be degraded after recovery/resync
3089 * We don't need to check the 'failed' flag as when that gets set,
3090 * recovery aborts.
3091 */
3092 for (i=0; i<mddev->raid_disks; i++)
3093 if (conf->disks[i].rdev == NULL)
3094 still_degraded = 1;
3095
3096 bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, still_degraded);
3097
3098 spin_lock(&sh->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099 set_bit(STRIPE_SYNCING, &sh->state);
3100 clear_bit(STRIPE_INSYNC, &sh->state);
3101 spin_unlock(&sh->lock);
3102
NeilBrown16a53ec2006-06-26 00:27:38 -07003103 handle_stripe(sh, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 release_stripe(sh);
3105
3106 return STRIPE_SECTORS;
3107}
3108
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003109static int retry_aligned_read(raid5_conf_t *conf, struct bio *raid_bio)
3110{
3111 /* We may not be able to submit a whole bio at once as there
3112 * may not be enough stripe_heads available.
3113 * We cannot pre-allocate enough stripe_heads as we may need
3114 * more than exist in the cache (if we allow ever large chunks).
3115 * So we do one stripe head at a time and record in
3116 * ->bi_hw_segments how many have been done.
3117 *
3118 * We *know* that this entire raid_bio is in one chunk, so
3119 * it will be only one 'dd_idx' and only need one call to raid5_compute_sector.
3120 */
3121 struct stripe_head *sh;
3122 int dd_idx, pd_idx;
3123 sector_t sector, logical_sector, last_sector;
3124 int scnt = 0;
3125 int remaining;
3126 int handled = 0;
3127
3128 logical_sector = raid_bio->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
3129 sector = raid5_compute_sector( logical_sector,
3130 conf->raid_disks,
3131 conf->raid_disks - conf->max_degraded,
3132 &dd_idx,
3133 &pd_idx,
3134 conf);
3135 last_sector = raid_bio->bi_sector + (raid_bio->bi_size>>9);
3136
3137 for (; logical_sector < last_sector;
Neil Brown387bb172007-02-08 14:20:29 -08003138 logical_sector += STRIPE_SECTORS,
3139 sector += STRIPE_SECTORS,
3140 scnt++) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003141
3142 if (scnt < raid_bio->bi_hw_segments)
3143 /* already done this stripe */
3144 continue;
3145
3146 sh = get_active_stripe(conf, sector, conf->raid_disks, pd_idx, 1);
3147
3148 if (!sh) {
3149 /* failed to get a stripe - must wait */
3150 raid_bio->bi_hw_segments = scnt;
3151 conf->retry_read_aligned = raid_bio;
3152 return handled;
3153 }
3154
3155 set_bit(R5_ReadError, &sh->dev[dd_idx].flags);
Neil Brown387bb172007-02-08 14:20:29 -08003156 if (!add_stripe_bio(sh, raid_bio, dd_idx, 0)) {
3157 release_stripe(sh);
3158 raid_bio->bi_hw_segments = scnt;
3159 conf->retry_read_aligned = raid_bio;
3160 return handled;
3161 }
3162
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003163 handle_stripe(sh, NULL);
3164 release_stripe(sh);
3165 handled++;
3166 }
3167 spin_lock_irq(&conf->device_lock);
3168 remaining = --raid_bio->bi_phys_segments;
3169 spin_unlock_irq(&conf->device_lock);
3170 if (remaining == 0) {
3171 int bytes = raid_bio->bi_size;
3172
3173 raid_bio->bi_size = 0;
NeilBrownc2b00852006-12-10 02:20:51 -08003174 raid_bio->bi_end_io(raid_bio, bytes,
3175 test_bit(BIO_UPTODATE, &raid_bio->bi_flags)
3176 ? 0 : -EIO);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003177 }
3178 if (atomic_dec_and_test(&conf->active_aligned_reads))
3179 wake_up(&conf->wait_for_stripe);
3180 return handled;
3181}
3182
3183
3184
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185/*
3186 * This is our raid5 kernel thread.
3187 *
3188 * We scan the hash table for stripes which can be handled now.
3189 * During the scan, completed stripes are saved for us by the interrupt
3190 * handler, so that they will not have to wait for our next wakeup.
3191 */
3192static void raid5d (mddev_t *mddev)
3193{
3194 struct stripe_head *sh;
3195 raid5_conf_t *conf = mddev_to_conf(mddev);
3196 int handled;
3197
3198 PRINTK("+++ raid5d active\n");
3199
3200 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201
3202 handled = 0;
3203 spin_lock_irq(&conf->device_lock);
3204 while (1) {
3205 struct list_head *first;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003206 struct bio *bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207
NeilBrownae3c20c2006-07-10 04:44:17 -07003208 if (conf->seq_flush != conf->seq_write) {
NeilBrown72626682005-09-09 16:23:54 -07003209 int seq = conf->seq_flush;
NeilBrown700e4322005-11-28 13:44:10 -08003210 spin_unlock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07003211 bitmap_unplug(mddev->bitmap);
NeilBrown700e4322005-11-28 13:44:10 -08003212 spin_lock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07003213 conf->seq_write = seq;
3214 activate_bit_delay(conf);
3215 }
3216
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217 if (list_empty(&conf->handle_list) &&
3218 atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD &&
3219 !blk_queue_plugged(mddev->queue) &&
3220 !list_empty(&conf->delayed_list))
3221 raid5_activate_delayed(conf);
3222
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003223 while ((bio = remove_bio_from_retry(conf))) {
3224 int ok;
3225 spin_unlock_irq(&conf->device_lock);
3226 ok = retry_aligned_read(conf, bio);
3227 spin_lock_irq(&conf->device_lock);
3228 if (!ok)
3229 break;
3230 handled++;
3231 }
3232
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 if (list_empty(&conf->handle_list))
3234 break;
3235
3236 first = conf->handle_list.next;
3237 sh = list_entry(first, struct stripe_head, lru);
3238
3239 list_del_init(first);
3240 atomic_inc(&sh->count);
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02003241 BUG_ON(atomic_read(&sh->count)!= 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242 spin_unlock_irq(&conf->device_lock);
3243
3244 handled++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003245 handle_stripe(sh, conf->spare_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 release_stripe(sh);
3247
3248 spin_lock_irq(&conf->device_lock);
3249 }
3250 PRINTK("%d stripes handled\n", handled);
3251
3252 spin_unlock_irq(&conf->device_lock);
3253
3254 unplug_slaves(mddev);
3255
3256 PRINTK("--- raid5d inactive\n");
3257}
3258
NeilBrown3f294f42005-11-08 21:39:25 -08003259static ssize_t
NeilBrown007583c2005-11-08 21:39:30 -08003260raid5_show_stripe_cache_size(mddev_t *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08003261{
NeilBrown007583c2005-11-08 21:39:30 -08003262 raid5_conf_t *conf = mddev_to_conf(mddev);
NeilBrown96de1e62005-11-08 21:39:39 -08003263 if (conf)
3264 return sprintf(page, "%d\n", conf->max_nr_stripes);
3265 else
3266 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08003267}
3268
3269static ssize_t
NeilBrown007583c2005-11-08 21:39:30 -08003270raid5_store_stripe_cache_size(mddev_t *mddev, const char *page, size_t len)
NeilBrown3f294f42005-11-08 21:39:25 -08003271{
NeilBrown007583c2005-11-08 21:39:30 -08003272 raid5_conf_t *conf = mddev_to_conf(mddev);
NeilBrown3f294f42005-11-08 21:39:25 -08003273 char *end;
3274 int new;
3275 if (len >= PAGE_SIZE)
3276 return -EINVAL;
NeilBrown96de1e62005-11-08 21:39:39 -08003277 if (!conf)
3278 return -ENODEV;
NeilBrown3f294f42005-11-08 21:39:25 -08003279
3280 new = simple_strtoul(page, &end, 10);
3281 if (!*page || (*end && *end != '\n') )
3282 return -EINVAL;
3283 if (new <= 16 || new > 32768)
3284 return -EINVAL;
3285 while (new < conf->max_nr_stripes) {
3286 if (drop_one_stripe(conf))
3287 conf->max_nr_stripes--;
3288 else
3289 break;
3290 }
NeilBrown2a2275d2007-01-26 00:57:11 -08003291 md_allow_write(mddev);
NeilBrown3f294f42005-11-08 21:39:25 -08003292 while (new > conf->max_nr_stripes) {
3293 if (grow_one_stripe(conf))
3294 conf->max_nr_stripes++;
3295 else break;
3296 }
3297 return len;
3298}
NeilBrown007583c2005-11-08 21:39:30 -08003299
NeilBrown96de1e62005-11-08 21:39:39 -08003300static struct md_sysfs_entry
3301raid5_stripecache_size = __ATTR(stripe_cache_size, S_IRUGO | S_IWUSR,
3302 raid5_show_stripe_cache_size,
3303 raid5_store_stripe_cache_size);
NeilBrown3f294f42005-11-08 21:39:25 -08003304
3305static ssize_t
NeilBrown96de1e62005-11-08 21:39:39 -08003306stripe_cache_active_show(mddev_t *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08003307{
NeilBrown007583c2005-11-08 21:39:30 -08003308 raid5_conf_t *conf = mddev_to_conf(mddev);
NeilBrown96de1e62005-11-08 21:39:39 -08003309 if (conf)
3310 return sprintf(page, "%d\n", atomic_read(&conf->active_stripes));
3311 else
3312 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08003313}
3314
NeilBrown96de1e62005-11-08 21:39:39 -08003315static struct md_sysfs_entry
3316raid5_stripecache_active = __ATTR_RO(stripe_cache_active);
NeilBrown3f294f42005-11-08 21:39:25 -08003317
NeilBrown007583c2005-11-08 21:39:30 -08003318static struct attribute *raid5_attrs[] = {
NeilBrown3f294f42005-11-08 21:39:25 -08003319 &raid5_stripecache_size.attr,
3320 &raid5_stripecache_active.attr,
3321 NULL,
3322};
NeilBrown007583c2005-11-08 21:39:30 -08003323static struct attribute_group raid5_attrs_group = {
3324 .name = NULL,
3325 .attrs = raid5_attrs,
NeilBrown3f294f42005-11-08 21:39:25 -08003326};
3327
NeilBrown72626682005-09-09 16:23:54 -07003328static int run(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329{
3330 raid5_conf_t *conf;
3331 int raid_disk, memory;
3332 mdk_rdev_t *rdev;
3333 struct disk_info *disk;
3334 struct list_head *tmp;
NeilBrown02c2de82006-10-03 01:15:47 -07003335 int working_disks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336
NeilBrown16a53ec2006-06-26 00:27:38 -07003337 if (mddev->level != 5 && mddev->level != 4 && mddev->level != 6) {
3338 printk(KERN_ERR "raid5: %s: raid level not set to 4/5/6 (%d)\n",
NeilBrown14f8d262006-01-06 00:20:14 -08003339 mdname(mddev), mddev->level);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340 return -EIO;
3341 }
3342
NeilBrownf6705572006-03-27 01:18:11 -08003343 if (mddev->reshape_position != MaxSector) {
3344 /* Check that we can continue the reshape.
3345 * Currently only disks can change, it must
3346 * increase, and we must be past the point where
3347 * a stripe over-writes itself
3348 */
3349 sector_t here_new, here_old;
3350 int old_disks;
3351
3352 if (mddev->new_level != mddev->level ||
3353 mddev->new_layout != mddev->layout ||
3354 mddev->new_chunk != mddev->chunk_size) {
3355 printk(KERN_ERR "raid5: %s: unsupported reshape required - aborting.\n",
3356 mdname(mddev));
3357 return -EINVAL;
3358 }
3359 if (mddev->delta_disks <= 0) {
3360 printk(KERN_ERR "raid5: %s: unsupported reshape (reduce disks) required - aborting.\n",
3361 mdname(mddev));
3362 return -EINVAL;
3363 }
3364 old_disks = mddev->raid_disks - mddev->delta_disks;
3365 /* reshape_position must be on a new-stripe boundary, and one
3366 * further up in new geometry must map after here in old geometry.
3367 */
3368 here_new = mddev->reshape_position;
3369 if (sector_div(here_new, (mddev->chunk_size>>9)*(mddev->raid_disks-1))) {
3370 printk(KERN_ERR "raid5: reshape_position not on a stripe boundary\n");
3371 return -EINVAL;
3372 }
3373 /* here_new is the stripe we will write to */
3374 here_old = mddev->reshape_position;
3375 sector_div(here_old, (mddev->chunk_size>>9)*(old_disks-1));
3376 /* here_old is the first stripe that we might need to read from */
3377 if (here_new >= here_old) {
3378 /* Reading from the same stripe as writing to - bad */
3379 printk(KERN_ERR "raid5: reshape_position too early for auto-recovery - aborting.\n");
3380 return -EINVAL;
3381 }
3382 printk(KERN_INFO "raid5: reshape will continue\n");
3383 /* OK, we should be able to continue; */
3384 }
3385
3386
NeilBrownb55e6bf2006-03-27 01:18:06 -08003387 mddev->private = kzalloc(sizeof (raid5_conf_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388 if ((conf = mddev->private) == NULL)
3389 goto abort;
NeilBrownf6705572006-03-27 01:18:11 -08003390 if (mddev->reshape_position == MaxSector) {
3391 conf->previous_raid_disks = conf->raid_disks = mddev->raid_disks;
3392 } else {
3393 conf->raid_disks = mddev->raid_disks;
3394 conf->previous_raid_disks = mddev->raid_disks - mddev->delta_disks;
3395 }
3396
3397 conf->disks = kzalloc(conf->raid_disks * sizeof(struct disk_info),
NeilBrownb55e6bf2006-03-27 01:18:06 -08003398 GFP_KERNEL);
3399 if (!conf->disks)
3400 goto abort;
NeilBrown9ffae0c2006-01-06 00:20:32 -08003401
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402 conf->mddev = mddev;
3403
NeilBrownfccddba2006-01-06 00:20:33 -08003404 if ((conf->stripe_hashtbl = kzalloc(PAGE_SIZE, GFP_KERNEL)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406
NeilBrown16a53ec2006-06-26 00:27:38 -07003407 if (mddev->level == 6) {
3408 conf->spare_page = alloc_page(GFP_KERNEL);
3409 if (!conf->spare_page)
3410 goto abort;
3411 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 spin_lock_init(&conf->device_lock);
3413 init_waitqueue_head(&conf->wait_for_stripe);
3414 init_waitqueue_head(&conf->wait_for_overlap);
3415 INIT_LIST_HEAD(&conf->handle_list);
3416 INIT_LIST_HEAD(&conf->delayed_list);
NeilBrown72626682005-09-09 16:23:54 -07003417 INIT_LIST_HEAD(&conf->bitmap_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418 INIT_LIST_HEAD(&conf->inactive_list);
3419 atomic_set(&conf->active_stripes, 0);
3420 atomic_set(&conf->preread_active_stripes, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003421 atomic_set(&conf->active_aligned_reads, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423 PRINTK("raid5: run(%s) called.\n", mdname(mddev));
3424
3425 ITERATE_RDEV(mddev,rdev,tmp) {
3426 raid_disk = rdev->raid_disk;
NeilBrownf6705572006-03-27 01:18:11 -08003427 if (raid_disk >= conf->raid_disks
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428 || raid_disk < 0)
3429 continue;
3430 disk = conf->disks + raid_disk;
3431
3432 disk->rdev = rdev;
3433
NeilBrownb2d444d2005-11-08 21:39:31 -08003434 if (test_bit(In_sync, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 char b[BDEVNAME_SIZE];
3436 printk(KERN_INFO "raid5: device %s operational as raid"
3437 " disk %d\n", bdevname(rdev->bdev,b),
3438 raid_disk);
NeilBrown02c2de82006-10-03 01:15:47 -07003439 working_disks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440 }
3441 }
3442
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443 /*
NeilBrown16a53ec2006-06-26 00:27:38 -07003444 * 0 for a fully functional array, 1 or 2 for a degraded array.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445 */
NeilBrown02c2de82006-10-03 01:15:47 -07003446 mddev->degraded = conf->raid_disks - working_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447 conf->mddev = mddev;
3448 conf->chunk_size = mddev->chunk_size;
3449 conf->level = mddev->level;
NeilBrown16a53ec2006-06-26 00:27:38 -07003450 if (conf->level == 6)
3451 conf->max_degraded = 2;
3452 else
3453 conf->max_degraded = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454 conf->algorithm = mddev->layout;
3455 conf->max_nr_stripes = NR_STRIPES;
NeilBrownf6705572006-03-27 01:18:11 -08003456 conf->expand_progress = mddev->reshape_position;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457
3458 /* device size must be a multiple of chunk size */
3459 mddev->size &= ~(mddev->chunk_size/1024 -1);
NeilBrownb1581562005-07-31 22:34:50 -07003460 mddev->resync_max_sectors = mddev->size << 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461
NeilBrown16a53ec2006-06-26 00:27:38 -07003462 if (conf->level == 6 && conf->raid_disks < 4) {
3463 printk(KERN_ERR "raid6: not enough configured devices for %s (%d, minimum 4)\n",
3464 mdname(mddev), conf->raid_disks);
3465 goto abort;
3466 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467 if (!conf->chunk_size || conf->chunk_size % 4) {
3468 printk(KERN_ERR "raid5: invalid chunk size %d for %s\n",
3469 conf->chunk_size, mdname(mddev));
3470 goto abort;
3471 }
3472 if (conf->algorithm > ALGORITHM_RIGHT_SYMMETRIC) {
3473 printk(KERN_ERR
3474 "raid5: unsupported parity algorithm %d for %s\n",
3475 conf->algorithm, mdname(mddev));
3476 goto abort;
3477 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003478 if (mddev->degraded > conf->max_degraded) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479 printk(KERN_ERR "raid5: not enough operational devices for %s"
3480 " (%d/%d failed)\n",
NeilBrown02c2de82006-10-03 01:15:47 -07003481 mdname(mddev), mddev->degraded, conf->raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482 goto abort;
3483 }
3484
NeilBrown16a53ec2006-06-26 00:27:38 -07003485 if (mddev->degraded > 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486 mddev->recovery_cp != MaxSector) {
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08003487 if (mddev->ok_start_degraded)
3488 printk(KERN_WARNING
3489 "raid5: starting dirty degraded array: %s"
3490 "- data corruption possible.\n",
3491 mdname(mddev));
3492 else {
3493 printk(KERN_ERR
3494 "raid5: cannot start dirty degraded array for %s\n",
3495 mdname(mddev));
3496 goto abort;
3497 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498 }
3499
3500 {
3501 mddev->thread = md_register_thread(raid5d, mddev, "%s_raid5");
3502 if (!mddev->thread) {
3503 printk(KERN_ERR
3504 "raid5: couldn't allocate thread for %s\n",
3505 mdname(mddev));
3506 goto abort;
3507 }
3508 }
NeilBrown50368052005-12-12 02:39:17 -08003509 memory = conf->max_nr_stripes * (sizeof(struct stripe_head) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510 conf->raid_disks * ((sizeof(struct bio) + PAGE_SIZE))) / 1024;
3511 if (grow_stripes(conf, conf->max_nr_stripes)) {
3512 printk(KERN_ERR
3513 "raid5: couldn't allocate %dkB for buffers\n", memory);
3514 shrink_stripes(conf);
3515 md_unregister_thread(mddev->thread);
3516 goto abort;
3517 } else
3518 printk(KERN_INFO "raid5: allocated %dkB for %s\n",
3519 memory, mdname(mddev));
3520
3521 if (mddev->degraded == 0)
3522 printk("raid5: raid level %d set %s active with %d out of %d"
3523 " devices, algorithm %d\n", conf->level, mdname(mddev),
3524 mddev->raid_disks-mddev->degraded, mddev->raid_disks,
3525 conf->algorithm);
3526 else
3527 printk(KERN_ALERT "raid5: raid level %d set %s active with %d"
3528 " out of %d devices, algorithm %d\n", conf->level,
3529 mdname(mddev), mddev->raid_disks - mddev->degraded,
3530 mddev->raid_disks, conf->algorithm);
3531
3532 print_raid5_conf(conf);
3533
NeilBrownf6705572006-03-27 01:18:11 -08003534 if (conf->expand_progress != MaxSector) {
3535 printk("...ok start reshape thread\n");
NeilBrownb578d552006-03-27 01:18:12 -08003536 conf->expand_lo = conf->expand_progress;
NeilBrownf6705572006-03-27 01:18:11 -08003537 atomic_set(&conf->reshape_stripes, 0);
3538 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
3539 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
3540 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
3541 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
3542 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
3543 "%s_reshape");
NeilBrownf6705572006-03-27 01:18:11 -08003544 }
3545
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546 /* read-ahead size must cover two whole stripes, which is
NeilBrown16a53ec2006-06-26 00:27:38 -07003547 * 2 * (datadisks) * chunksize where 'n' is the number of raid devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548 */
3549 {
NeilBrown16a53ec2006-06-26 00:27:38 -07003550 int data_disks = conf->previous_raid_disks - conf->max_degraded;
3551 int stripe = data_disks *
NeilBrown8932c2e2006-06-26 00:27:36 -07003552 (mddev->chunk_size / PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553 if (mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
3554 mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
3555 }
3556
3557 /* Ok, everything is just fine now */
NeilBrown007583c2005-11-08 21:39:30 -08003558 sysfs_create_group(&mddev->kobj, &raid5_attrs_group);
NeilBrown7a5febe2005-05-16 21:53:16 -07003559
3560 mddev->queue->unplug_fn = raid5_unplug_device;
3561 mddev->queue->issue_flush_fn = raid5_issue_flush;
NeilBrownf022b2f2006-10-03 01:15:56 -07003562 mddev->queue->backing_dev_info.congested_fn = raid5_congested;
3563 mddev->queue->backing_dev_info.congested_data = mddev;
3564
NeilBrown16a53ec2006-06-26 00:27:38 -07003565 mddev->array_size = mddev->size * (conf->previous_raid_disks -
3566 conf->max_degraded);
NeilBrown7a5febe2005-05-16 21:53:16 -07003567
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003568 blk_queue_merge_bvec(mddev->queue, raid5_mergeable_bvec);
3569
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570 return 0;
3571abort:
3572 if (conf) {
3573 print_raid5_conf(conf);
NeilBrown16a53ec2006-06-26 00:27:38 -07003574 safe_put_page(conf->spare_page);
NeilBrownb55e6bf2006-03-27 01:18:06 -08003575 kfree(conf->disks);
NeilBrownfccddba2006-01-06 00:20:33 -08003576 kfree(conf->stripe_hashtbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577 kfree(conf);
3578 }
3579 mddev->private = NULL;
3580 printk(KERN_ALERT "raid5: failed to run raid set %s\n", mdname(mddev));
3581 return -EIO;
3582}
3583
3584
3585
NeilBrown3f294f42005-11-08 21:39:25 -08003586static int stop(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587{
3588 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
3589
3590 md_unregister_thread(mddev->thread);
3591 mddev->thread = NULL;
3592 shrink_stripes(conf);
NeilBrownfccddba2006-01-06 00:20:33 -08003593 kfree(conf->stripe_hashtbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594 blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/
NeilBrown007583c2005-11-08 21:39:30 -08003595 sysfs_remove_group(&mddev->kobj, &raid5_attrs_group);
NeilBrownb55e6bf2006-03-27 01:18:06 -08003596 kfree(conf->disks);
NeilBrown96de1e62005-11-08 21:39:39 -08003597 kfree(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598 mddev->private = NULL;
3599 return 0;
3600}
3601
3602#if RAID5_DEBUG
NeilBrown16a53ec2006-06-26 00:27:38 -07003603static void print_sh (struct seq_file *seq, struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604{
3605 int i;
3606
NeilBrown16a53ec2006-06-26 00:27:38 -07003607 seq_printf(seq, "sh %llu, pd_idx %d, state %ld.\n",
3608 (unsigned long long)sh->sector, sh->pd_idx, sh->state);
3609 seq_printf(seq, "sh %llu, count %d.\n",
3610 (unsigned long long)sh->sector, atomic_read(&sh->count));
3611 seq_printf(seq, "sh %llu, ", (unsigned long long)sh->sector);
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003612 for (i = 0; i < sh->disks; i++) {
NeilBrown16a53ec2006-06-26 00:27:38 -07003613 seq_printf(seq, "(cache%d: %p %ld) ",
3614 i, sh->dev[i].page, sh->dev[i].flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003616 seq_printf(seq, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617}
3618
NeilBrown16a53ec2006-06-26 00:27:38 -07003619static void printall (struct seq_file *seq, raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620{
3621 struct stripe_head *sh;
NeilBrownfccddba2006-01-06 00:20:33 -08003622 struct hlist_node *hn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623 int i;
3624
3625 spin_lock_irq(&conf->device_lock);
3626 for (i = 0; i < NR_HASH; i++) {
NeilBrownfccddba2006-01-06 00:20:33 -08003627 hlist_for_each_entry(sh, hn, &conf->stripe_hashtbl[i], hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628 if (sh->raid_conf != conf)
3629 continue;
NeilBrown16a53ec2006-06-26 00:27:38 -07003630 print_sh(seq, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631 }
3632 }
3633 spin_unlock_irq(&conf->device_lock);
3634}
3635#endif
3636
3637static void status (struct seq_file *seq, mddev_t *mddev)
3638{
3639 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
3640 int i;
3641
3642 seq_printf (seq, " level %d, %dk chunk, algorithm %d", mddev->level, mddev->chunk_size >> 10, mddev->layout);
NeilBrown02c2de82006-10-03 01:15:47 -07003643 seq_printf (seq, " [%d/%d] [", conf->raid_disks, conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644 for (i = 0; i < conf->raid_disks; i++)
3645 seq_printf (seq, "%s",
3646 conf->disks[i].rdev &&
NeilBrownb2d444d2005-11-08 21:39:31 -08003647 test_bit(In_sync, &conf->disks[i].rdev->flags) ? "U" : "_");
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648 seq_printf (seq, "]");
3649#if RAID5_DEBUG
NeilBrown16a53ec2006-06-26 00:27:38 -07003650 seq_printf (seq, "\n");
3651 printall(seq, conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652#endif
3653}
3654
3655static void print_raid5_conf (raid5_conf_t *conf)
3656{
3657 int i;
3658 struct disk_info *tmp;
3659
3660 printk("RAID5 conf printout:\n");
3661 if (!conf) {
3662 printk("(conf==NULL)\n");
3663 return;
3664 }
NeilBrown02c2de82006-10-03 01:15:47 -07003665 printk(" --- rd:%d wd:%d\n", conf->raid_disks,
3666 conf->raid_disks - conf->mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667
3668 for (i = 0; i < conf->raid_disks; i++) {
3669 char b[BDEVNAME_SIZE];
3670 tmp = conf->disks + i;
3671 if (tmp->rdev)
3672 printk(" disk %d, o:%d, dev:%s\n",
NeilBrownb2d444d2005-11-08 21:39:31 -08003673 i, !test_bit(Faulty, &tmp->rdev->flags),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674 bdevname(tmp->rdev->bdev,b));
3675 }
3676}
3677
3678static int raid5_spare_active(mddev_t *mddev)
3679{
3680 int i;
3681 raid5_conf_t *conf = mddev->private;
3682 struct disk_info *tmp;
3683
3684 for (i = 0; i < conf->raid_disks; i++) {
3685 tmp = conf->disks + i;
3686 if (tmp->rdev
NeilBrownb2d444d2005-11-08 21:39:31 -08003687 && !test_bit(Faulty, &tmp->rdev->flags)
NeilBrownc04be0a2006-10-03 01:15:53 -07003688 && !test_and_set_bit(In_sync, &tmp->rdev->flags)) {
3689 unsigned long flags;
3690 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691 mddev->degraded--;
NeilBrownc04be0a2006-10-03 01:15:53 -07003692 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693 }
3694 }
3695 print_raid5_conf(conf);
3696 return 0;
3697}
3698
3699static int raid5_remove_disk(mddev_t *mddev, int number)
3700{
3701 raid5_conf_t *conf = mddev->private;
3702 int err = 0;
3703 mdk_rdev_t *rdev;
3704 struct disk_info *p = conf->disks + number;
3705
3706 print_raid5_conf(conf);
3707 rdev = p->rdev;
3708 if (rdev) {
NeilBrownb2d444d2005-11-08 21:39:31 -08003709 if (test_bit(In_sync, &rdev->flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710 atomic_read(&rdev->nr_pending)) {
3711 err = -EBUSY;
3712 goto abort;
3713 }
3714 p->rdev = NULL;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07003715 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716 if (atomic_read(&rdev->nr_pending)) {
3717 /* lost the race, try later */
3718 err = -EBUSY;
3719 p->rdev = rdev;
3720 }
3721 }
3722abort:
3723
3724 print_raid5_conf(conf);
3725 return err;
3726}
3727
3728static int raid5_add_disk(mddev_t *mddev, mdk_rdev_t *rdev)
3729{
3730 raid5_conf_t *conf = mddev->private;
3731 int found = 0;
3732 int disk;
3733 struct disk_info *p;
3734
NeilBrown16a53ec2006-06-26 00:27:38 -07003735 if (mddev->degraded > conf->max_degraded)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736 /* no point adding a device */
3737 return 0;
3738
3739 /*
NeilBrown16a53ec2006-06-26 00:27:38 -07003740 * find the disk ... but prefer rdev->saved_raid_disk
3741 * if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742 */
NeilBrown16a53ec2006-06-26 00:27:38 -07003743 if (rdev->saved_raid_disk >= 0 &&
3744 conf->disks[rdev->saved_raid_disk].rdev == NULL)
3745 disk = rdev->saved_raid_disk;
3746 else
3747 disk = 0;
3748 for ( ; disk < conf->raid_disks; disk++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749 if ((p=conf->disks + disk)->rdev == NULL) {
NeilBrownb2d444d2005-11-08 21:39:31 -08003750 clear_bit(In_sync, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751 rdev->raid_disk = disk;
3752 found = 1;
NeilBrown72626682005-09-09 16:23:54 -07003753 if (rdev->saved_raid_disk != disk)
3754 conf->fullsync = 1;
Suzanne Woodd6065f72005-11-08 21:39:27 -08003755 rcu_assign_pointer(p->rdev, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756 break;
3757 }
3758 print_raid5_conf(conf);
3759 return found;
3760}
3761
3762static int raid5_resize(mddev_t *mddev, sector_t sectors)
3763{
3764 /* no resync is happening, and there is enough space
3765 * on all devices, so we can resize.
3766 * We need to make sure resync covers any new space.
3767 * If the array is shrinking we should possibly wait until
3768 * any io in the removed space completes, but it hardly seems
3769 * worth it.
3770 */
NeilBrown16a53ec2006-06-26 00:27:38 -07003771 raid5_conf_t *conf = mddev_to_conf(mddev);
3772
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773 sectors &= ~((sector_t)mddev->chunk_size/512 - 1);
NeilBrown16a53ec2006-06-26 00:27:38 -07003774 mddev->array_size = (sectors * (mddev->raid_disks-conf->max_degraded))>>1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775 set_capacity(mddev->gendisk, mddev->array_size << 1);
3776 mddev->changed = 1;
3777 if (sectors/2 > mddev->size && mddev->recovery_cp == MaxSector) {
3778 mddev->recovery_cp = mddev->size << 1;
3779 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
3780 }
3781 mddev->size = sectors /2;
NeilBrown4b5c7ae2005-07-27 11:43:28 -07003782 mddev->resync_max_sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783 return 0;
3784}
3785
NeilBrown29269552006-03-27 01:18:10 -08003786#ifdef CONFIG_MD_RAID5_RESHAPE
NeilBrown63c70c42006-03-27 01:18:13 -08003787static int raid5_check_reshape(mddev_t *mddev)
NeilBrown29269552006-03-27 01:18:10 -08003788{
3789 raid5_conf_t *conf = mddev_to_conf(mddev);
3790 int err;
NeilBrown29269552006-03-27 01:18:10 -08003791
NeilBrown63c70c42006-03-27 01:18:13 -08003792 if (mddev->delta_disks < 0 ||
3793 mddev->new_level != mddev->level)
3794 return -EINVAL; /* Cannot shrink array or change level yet */
3795 if (mddev->delta_disks == 0)
NeilBrown29269552006-03-27 01:18:10 -08003796 return 0; /* nothing to do */
3797
3798 /* Can only proceed if there are plenty of stripe_heads.
3799 * We need a minimum of one full stripe,, and for sensible progress
3800 * it is best to have about 4 times that.
3801 * If we require 4 times, then the default 256 4K stripe_heads will
3802 * allow for chunk sizes up to 256K, which is probably OK.
3803 * If the chunk size is greater, user-space should request more
3804 * stripe_heads first.
3805 */
NeilBrown63c70c42006-03-27 01:18:13 -08003806 if ((mddev->chunk_size / STRIPE_SIZE) * 4 > conf->max_nr_stripes ||
3807 (mddev->new_chunk / STRIPE_SIZE) * 4 > conf->max_nr_stripes) {
NeilBrown29269552006-03-27 01:18:10 -08003808 printk(KERN_WARNING "raid5: reshape: not enough stripes. Needed %lu\n",
3809 (mddev->chunk_size / STRIPE_SIZE)*4);
3810 return -ENOSPC;
3811 }
3812
NeilBrown63c70c42006-03-27 01:18:13 -08003813 err = resize_stripes(conf, conf->raid_disks + mddev->delta_disks);
3814 if (err)
3815 return err;
3816
3817 /* looks like we might be able to manage this */
3818 return 0;
3819}
3820
3821static int raid5_start_reshape(mddev_t *mddev)
3822{
3823 raid5_conf_t *conf = mddev_to_conf(mddev);
3824 mdk_rdev_t *rdev;
3825 struct list_head *rtmp;
3826 int spares = 0;
3827 int added_devices = 0;
NeilBrownc04be0a2006-10-03 01:15:53 -07003828 unsigned long flags;
NeilBrown63c70c42006-03-27 01:18:13 -08003829
3830 if (mddev->degraded ||
3831 test_bit(MD_RECOVERY_RUNNING, &mddev->recovery))
3832 return -EBUSY;
3833
NeilBrown29269552006-03-27 01:18:10 -08003834 ITERATE_RDEV(mddev, rdev, rtmp)
3835 if (rdev->raid_disk < 0 &&
3836 !test_bit(Faulty, &rdev->flags))
3837 spares++;
NeilBrown63c70c42006-03-27 01:18:13 -08003838
3839 if (spares < mddev->delta_disks-1)
NeilBrown29269552006-03-27 01:18:10 -08003840 /* Not enough devices even to make a degraded array
3841 * of that size
3842 */
3843 return -EINVAL;
3844
NeilBrownf6705572006-03-27 01:18:11 -08003845 atomic_set(&conf->reshape_stripes, 0);
NeilBrown29269552006-03-27 01:18:10 -08003846 spin_lock_irq(&conf->device_lock);
3847 conf->previous_raid_disks = conf->raid_disks;
NeilBrown63c70c42006-03-27 01:18:13 -08003848 conf->raid_disks += mddev->delta_disks;
NeilBrown29269552006-03-27 01:18:10 -08003849 conf->expand_progress = 0;
NeilBrownb578d552006-03-27 01:18:12 -08003850 conf->expand_lo = 0;
NeilBrown29269552006-03-27 01:18:10 -08003851 spin_unlock_irq(&conf->device_lock);
3852
3853 /* Add some new drives, as many as will fit.
3854 * We know there are enough to make the newly sized array work.
3855 */
3856 ITERATE_RDEV(mddev, rdev, rtmp)
3857 if (rdev->raid_disk < 0 &&
3858 !test_bit(Faulty, &rdev->flags)) {
3859 if (raid5_add_disk(mddev, rdev)) {
3860 char nm[20];
3861 set_bit(In_sync, &rdev->flags);
NeilBrown29269552006-03-27 01:18:10 -08003862 added_devices++;
NeilBrown5fd6c1d2006-06-26 00:27:40 -07003863 rdev->recovery_offset = 0;
NeilBrown29269552006-03-27 01:18:10 -08003864 sprintf(nm, "rd%d", rdev->raid_disk);
3865 sysfs_create_link(&mddev->kobj, &rdev->kobj, nm);
3866 } else
3867 break;
3868 }
3869
NeilBrownc04be0a2006-10-03 01:15:53 -07003870 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrown63c70c42006-03-27 01:18:13 -08003871 mddev->degraded = (conf->raid_disks - conf->previous_raid_disks) - added_devices;
NeilBrownc04be0a2006-10-03 01:15:53 -07003872 spin_unlock_irqrestore(&conf->device_lock, flags);
NeilBrown63c70c42006-03-27 01:18:13 -08003873 mddev->raid_disks = conf->raid_disks;
NeilBrownf6705572006-03-27 01:18:11 -08003874 mddev->reshape_position = 0;
NeilBrown850b2b422006-10-03 01:15:46 -07003875 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrownf6705572006-03-27 01:18:11 -08003876
NeilBrown29269552006-03-27 01:18:10 -08003877 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
3878 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
3879 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
3880 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
3881 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
3882 "%s_reshape");
3883 if (!mddev->sync_thread) {
3884 mddev->recovery = 0;
3885 spin_lock_irq(&conf->device_lock);
3886 mddev->raid_disks = conf->raid_disks = conf->previous_raid_disks;
3887 conf->expand_progress = MaxSector;
3888 spin_unlock_irq(&conf->device_lock);
3889 return -EAGAIN;
3890 }
3891 md_wakeup_thread(mddev->sync_thread);
3892 md_new_event(mddev);
3893 return 0;
3894}
3895#endif
3896
3897static void end_reshape(raid5_conf_t *conf)
3898{
3899 struct block_device *bdev;
3900
NeilBrownf6705572006-03-27 01:18:11 -08003901 if (!test_bit(MD_RECOVERY_INTR, &conf->mddev->recovery)) {
3902 conf->mddev->array_size = conf->mddev->size * (conf->raid_disks-1);
3903 set_capacity(conf->mddev->gendisk, conf->mddev->array_size << 1);
3904 conf->mddev->changed = 1;
NeilBrown29269552006-03-27 01:18:10 -08003905
NeilBrownf6705572006-03-27 01:18:11 -08003906 bdev = bdget_disk(conf->mddev->gendisk, 0);
3907 if (bdev) {
3908 mutex_lock(&bdev->bd_inode->i_mutex);
NeilBrown0692c6b2006-11-08 17:44:48 -08003909 i_size_write(bdev->bd_inode, (loff_t)conf->mddev->array_size << 10);
NeilBrownf6705572006-03-27 01:18:11 -08003910 mutex_unlock(&bdev->bd_inode->i_mutex);
3911 bdput(bdev);
3912 }
3913 spin_lock_irq(&conf->device_lock);
3914 conf->expand_progress = MaxSector;
3915 spin_unlock_irq(&conf->device_lock);
3916 conf->mddev->reshape_position = MaxSector;
NeilBrown16a53ec2006-06-26 00:27:38 -07003917
3918 /* read-ahead size must cover two whole stripes, which is
3919 * 2 * (datadisks) * chunksize where 'n' is the number of raid devices
3920 */
3921 {
3922 int data_disks = conf->previous_raid_disks - conf->max_degraded;
3923 int stripe = data_disks *
3924 (conf->mddev->chunk_size / PAGE_SIZE);
3925 if (conf->mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
3926 conf->mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
3927 }
NeilBrown29269552006-03-27 01:18:10 -08003928 }
NeilBrown29269552006-03-27 01:18:10 -08003929}
3930
NeilBrown72626682005-09-09 16:23:54 -07003931static void raid5_quiesce(mddev_t *mddev, int state)
3932{
3933 raid5_conf_t *conf = mddev_to_conf(mddev);
3934
3935 switch(state) {
NeilBrowne464eaf2006-03-27 01:18:14 -08003936 case 2: /* resume for a suspend */
3937 wake_up(&conf->wait_for_overlap);
3938 break;
3939
NeilBrown72626682005-09-09 16:23:54 -07003940 case 1: /* stop all writes */
3941 spin_lock_irq(&conf->device_lock);
3942 conf->quiesce = 1;
3943 wait_event_lock_irq(conf->wait_for_stripe,
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003944 atomic_read(&conf->active_stripes) == 0 &&
3945 atomic_read(&conf->active_aligned_reads) == 0,
NeilBrown72626682005-09-09 16:23:54 -07003946 conf->device_lock, /* nothing */);
3947 spin_unlock_irq(&conf->device_lock);
3948 break;
3949
3950 case 0: /* re-enable writes */
3951 spin_lock_irq(&conf->device_lock);
3952 conf->quiesce = 0;
3953 wake_up(&conf->wait_for_stripe);
NeilBrowne464eaf2006-03-27 01:18:14 -08003954 wake_up(&conf->wait_for_overlap);
NeilBrown72626682005-09-09 16:23:54 -07003955 spin_unlock_irq(&conf->device_lock);
3956 break;
3957 }
NeilBrown72626682005-09-09 16:23:54 -07003958}
NeilBrownb15c2e52006-01-06 00:20:16 -08003959
NeilBrown16a53ec2006-06-26 00:27:38 -07003960static struct mdk_personality raid6_personality =
3961{
3962 .name = "raid6",
3963 .level = 6,
3964 .owner = THIS_MODULE,
3965 .make_request = make_request,
3966 .run = run,
3967 .stop = stop,
3968 .status = status,
3969 .error_handler = error,
3970 .hot_add_disk = raid5_add_disk,
3971 .hot_remove_disk= raid5_remove_disk,
3972 .spare_active = raid5_spare_active,
3973 .sync_request = sync_request,
3974 .resize = raid5_resize,
3975 .quiesce = raid5_quiesce,
3976};
NeilBrown2604b702006-01-06 00:20:36 -08003977static struct mdk_personality raid5_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978{
3979 .name = "raid5",
NeilBrown2604b702006-01-06 00:20:36 -08003980 .level = 5,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981 .owner = THIS_MODULE,
3982 .make_request = make_request,
3983 .run = run,
3984 .stop = stop,
3985 .status = status,
3986 .error_handler = error,
3987 .hot_add_disk = raid5_add_disk,
3988 .hot_remove_disk= raid5_remove_disk,
3989 .spare_active = raid5_spare_active,
3990 .sync_request = sync_request,
3991 .resize = raid5_resize,
NeilBrown29269552006-03-27 01:18:10 -08003992#ifdef CONFIG_MD_RAID5_RESHAPE
NeilBrown63c70c42006-03-27 01:18:13 -08003993 .check_reshape = raid5_check_reshape,
3994 .start_reshape = raid5_start_reshape,
NeilBrown29269552006-03-27 01:18:10 -08003995#endif
NeilBrown72626682005-09-09 16:23:54 -07003996 .quiesce = raid5_quiesce,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997};
3998
NeilBrown2604b702006-01-06 00:20:36 -08003999static struct mdk_personality raid4_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000{
NeilBrown2604b702006-01-06 00:20:36 -08004001 .name = "raid4",
4002 .level = 4,
4003 .owner = THIS_MODULE,
4004 .make_request = make_request,
4005 .run = run,
4006 .stop = stop,
4007 .status = status,
4008 .error_handler = error,
4009 .hot_add_disk = raid5_add_disk,
4010 .hot_remove_disk= raid5_remove_disk,
4011 .spare_active = raid5_spare_active,
4012 .sync_request = sync_request,
4013 .resize = raid5_resize,
4014 .quiesce = raid5_quiesce,
4015};
4016
4017static int __init raid5_init(void)
4018{
NeilBrown16a53ec2006-06-26 00:27:38 -07004019 int e;
4020
4021 e = raid6_select_algo();
4022 if ( e )
4023 return e;
4024 register_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08004025 register_md_personality(&raid5_personality);
4026 register_md_personality(&raid4_personality);
4027 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028}
4029
NeilBrown2604b702006-01-06 00:20:36 -08004030static void raid5_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031{
NeilBrown16a53ec2006-06-26 00:27:38 -07004032 unregister_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08004033 unregister_md_personality(&raid5_personality);
4034 unregister_md_personality(&raid4_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035}
4036
4037module_init(raid5_init);
4038module_exit(raid5_exit);
4039MODULE_LICENSE("GPL");
4040MODULE_ALIAS("md-personality-4"); /* RAID5 */
NeilBrownd9d166c2006-01-06 00:20:51 -08004041MODULE_ALIAS("md-raid5");
4042MODULE_ALIAS("md-raid4");
NeilBrown2604b702006-01-06 00:20:36 -08004043MODULE_ALIAS("md-level-5");
4044MODULE_ALIAS("md-level-4");
NeilBrown16a53ec2006-06-26 00:27:38 -07004045MODULE_ALIAS("md-personality-8"); /* RAID6 */
4046MODULE_ALIAS("md-raid6");
4047MODULE_ALIAS("md-level-6");
4048
4049/* This used to be two separate modules, they were: */
4050MODULE_ALIAS("raid5");
4051MODULE_ALIAS("raid6");