blob: 2f28745dacf974b509ae019231973f4de95c8227 [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>
Dan Williams91c00922007-01-02 13:52:30 -070055#include <linux/async_tx.h>
NeilBrown72626682005-09-09 16:23:54 -070056
Linus Torvalds1da177e2005-04-16 15:20:36 -070057/*
58 * Stripe cache
59 */
60
61#define NR_STRIPES 256
62#define STRIPE_SIZE PAGE_SIZE
63#define STRIPE_SHIFT (PAGE_SHIFT - 9)
64#define STRIPE_SECTORS (STRIPE_SIZE>>9)
65#define IO_THRESHOLD 1
Dan Williams8b3e6cd2008-04-28 02:15:53 -070066#define BYPASS_THRESHOLD 1
NeilBrownfccddba2006-01-06 00:20:33 -080067#define NR_HASH (PAGE_SIZE / sizeof(struct hlist_head))
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#define HASH_MASK (NR_HASH - 1)
69
NeilBrownfccddba2006-01-06 00:20:33 -080070#define stripe_hash(conf, sect) (&((conf)->stripe_hashtbl[((sect) >> STRIPE_SHIFT) & HASH_MASK]))
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72/* bio's attached to a stripe+device for I/O are linked together in bi_sector
73 * order without overlap. There may be several bio's per stripe+device, and
74 * a bio could span several devices.
75 * When walking this list for a particular stripe+device, we must never proceed
76 * beyond a bio that extends past this device, as the next bio might no longer
77 * be valid.
78 * This macro is used to determine the 'next' bio in the list, given the sector
79 * of the current stripe+device
80 */
81#define r5_next_bio(bio, sect) ( ( (bio)->bi_sector + ((bio)->bi_size>>9) < sect + STRIPE_SECTORS) ? (bio)->bi_next : NULL)
82/*
83 * The following can be used to debug the driver
84 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#define RAID5_PARANOIA 1
86#if RAID5_PARANOIA && defined(CONFIG_SMP)
87# define CHECK_DEVLOCK() assert_spin_locked(&conf->device_lock)
88#else
89# define CHECK_DEVLOCK()
90#endif
91
Dan Williams45b42332007-07-09 11:56:43 -070092#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#define inline
94#define __inline__
95#endif
96
Bernd Schubert6be9d492008-05-23 13:04:34 -070097#define printk_rl(args...) ((void) (printk_ratelimit() && printk(args)))
98
NeilBrown16a53ec2006-06-26 00:27:38 -070099#if !RAID6_USE_EMPTY_ZERO_PAGE
100/* In .bss so it's zeroed */
101const char raid6_empty_zero_page[PAGE_SIZE] __attribute__((aligned(256)));
102#endif
103
104static inline int raid6_next_disk(int disk, int raid_disks)
105{
106 disk++;
107 return (disk < raid_disks) ? disk : 0;
108}
Dan Williamsa4456852007-07-09 11:56:43 -0700109
110static void return_io(struct bio *return_bi)
111{
112 struct bio *bi = return_bi;
113 while (bi) {
Dan Williamsa4456852007-07-09 11:56:43 -0700114
115 return_bi = bi->bi_next;
116 bi->bi_next = NULL;
117 bi->bi_size = 0;
NeilBrown6712ecf2007-09-27 12:47:43 +0200118 bi->bi_end_io(bi,
Dan Williamsa4456852007-07-09 11:56:43 -0700119 test_bit(BIO_UPTODATE, &bi->bi_flags)
120 ? 0 : -EIO);
121 bi = return_bi;
122 }
123}
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125static void print_raid5_conf (raid5_conf_t *conf);
126
Arjan van de Ven858119e2006-01-14 13:20:43 -0800127static void __release_stripe(raid5_conf_t *conf, struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
129 if (atomic_dec_and_test(&sh->count)) {
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +0200130 BUG_ON(!list_empty(&sh->lru));
131 BUG_ON(atomic_read(&conf->active_stripes)==0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 if (test_bit(STRIPE_HANDLE, &sh->state)) {
NeilBrown7c785b72006-07-10 04:44:16 -0700133 if (test_bit(STRIPE_DELAYED, &sh->state)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 list_add_tail(&sh->lru, &conf->delayed_list);
NeilBrown7c785b72006-07-10 04:44:16 -0700135 blk_plug_device(conf->mddev->queue);
136 } else if (test_bit(STRIPE_BIT_DELAY, &sh->state) &&
NeilBrownae3c20c2006-07-10 04:44:17 -0700137 sh->bm_seq - conf->seq_write > 0) {
NeilBrown72626682005-09-09 16:23:54 -0700138 list_add_tail(&sh->lru, &conf->bitmap_list);
NeilBrown7c785b72006-07-10 04:44:16 -0700139 blk_plug_device(conf->mddev->queue);
140 } else {
NeilBrown72626682005-09-09 16:23:54 -0700141 clear_bit(STRIPE_BIT_DELAY, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 list_add_tail(&sh->lru, &conf->handle_list);
NeilBrown72626682005-09-09 16:23:54 -0700143 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 md_wakeup_thread(conf->mddev->thread);
145 } else {
Dan Williamsd84e0f12007-01-02 13:52:30 -0700146 BUG_ON(sh->ops.pending);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
148 atomic_dec(&conf->preread_active_stripes);
149 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD)
150 md_wakeup_thread(conf->mddev->thread);
151 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 atomic_dec(&conf->active_stripes);
NeilBrownccfcc3c2006-03-27 01:18:09 -0800153 if (!test_bit(STRIPE_EXPANDING, &sh->state)) {
154 list_add_tail(&sh->lru, &conf->inactive_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 wake_up(&conf->wait_for_stripe);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -0800156 if (conf->retry_read_aligned)
157 md_wakeup_thread(conf->mddev->thread);
NeilBrownccfcc3c2006-03-27 01:18:09 -0800158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 }
160 }
161}
162static void release_stripe(struct stripe_head *sh)
163{
164 raid5_conf_t *conf = sh->raid_conf;
165 unsigned long flags;
NeilBrown16a53ec2006-06-26 00:27:38 -0700166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 spin_lock_irqsave(&conf->device_lock, flags);
168 __release_stripe(conf, sh);
169 spin_unlock_irqrestore(&conf->device_lock, flags);
170}
171
NeilBrownfccddba2006-01-06 00:20:33 -0800172static inline void remove_hash(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
Dan Williams45b42332007-07-09 11:56:43 -0700174 pr_debug("remove_hash(), stripe %llu\n",
175 (unsigned long long)sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
NeilBrownfccddba2006-01-06 00:20:33 -0800177 hlist_del_init(&sh->hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178}
179
NeilBrown16a53ec2006-06-26 00:27:38 -0700180static inline void insert_hash(raid5_conf_t *conf, struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
NeilBrownfccddba2006-01-06 00:20:33 -0800182 struct hlist_head *hp = stripe_hash(conf, sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183
Dan Williams45b42332007-07-09 11:56:43 -0700184 pr_debug("insert_hash(), stripe %llu\n",
185 (unsigned long long)sh->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 CHECK_DEVLOCK();
NeilBrownfccddba2006-01-06 00:20:33 -0800188 hlist_add_head(&sh->hash, hp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189}
190
191
192/* find an idle stripe, make sure it is unhashed, and return it. */
193static struct stripe_head *get_free_stripe(raid5_conf_t *conf)
194{
195 struct stripe_head *sh = NULL;
196 struct list_head *first;
197
198 CHECK_DEVLOCK();
199 if (list_empty(&conf->inactive_list))
200 goto out;
201 first = conf->inactive_list.next;
202 sh = list_entry(first, struct stripe_head, lru);
203 list_del_init(first);
204 remove_hash(sh);
205 atomic_inc(&conf->active_stripes);
206out:
207 return sh;
208}
209
210static void shrink_buffers(struct stripe_head *sh, int num)
211{
212 struct page *p;
213 int i;
214
215 for (i=0; i<num ; i++) {
216 p = sh->dev[i].page;
217 if (!p)
218 continue;
219 sh->dev[i].page = NULL;
NeilBrown2d1f3b52006-01-06 00:20:31 -0800220 put_page(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 }
222}
223
224static int grow_buffers(struct stripe_head *sh, int num)
225{
226 int i;
227
228 for (i=0; i<num; i++) {
229 struct page *page;
230
231 if (!(page = alloc_page(GFP_KERNEL))) {
232 return 1;
233 }
234 sh->dev[i].page = page;
235 }
236 return 0;
237}
238
239static void raid5_build_block (struct stripe_head *sh, int i);
240
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800241static void init_stripe(struct stripe_head *sh, sector_t sector, int pd_idx, int disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242{
243 raid5_conf_t *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800244 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +0200246 BUG_ON(atomic_read(&sh->count) != 0);
247 BUG_ON(test_bit(STRIPE_HANDLE, &sh->state));
Dan Williamsd84e0f12007-01-02 13:52:30 -0700248 BUG_ON(sh->ops.pending || sh->ops.ack || sh->ops.complete);
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 CHECK_DEVLOCK();
Dan Williams45b42332007-07-09 11:56:43 -0700251 pr_debug("init_stripe called, stripe %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 (unsigned long long)sh->sector);
253
254 remove_hash(sh);
NeilBrown16a53ec2006-06-26 00:27:38 -0700255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 sh->sector = sector;
257 sh->pd_idx = pd_idx;
258 sh->state = 0;
259
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800260 sh->disks = disks;
261
262 for (i = sh->disks; i--; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 struct r5dev *dev = &sh->dev[i];
264
Dan Williamsd84e0f12007-01-02 13:52:30 -0700265 if (dev->toread || dev->read || dev->towrite || dev->written ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 test_bit(R5_LOCKED, &dev->flags)) {
Dan Williamsd84e0f12007-01-02 13:52:30 -0700267 printk(KERN_ERR "sector=%llx i=%d %p %p %p %p %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 (unsigned long long)sh->sector, i, dev->toread,
Dan Williamsd84e0f12007-01-02 13:52:30 -0700269 dev->read, dev->towrite, dev->written,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 test_bit(R5_LOCKED, &dev->flags));
271 BUG();
272 }
273 dev->flags = 0;
274 raid5_build_block(sh, i);
275 }
276 insert_hash(conf, sh);
277}
278
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800279static struct stripe_head *__find_stripe(raid5_conf_t *conf, sector_t sector, int disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
281 struct stripe_head *sh;
NeilBrownfccddba2006-01-06 00:20:33 -0800282 struct hlist_node *hn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284 CHECK_DEVLOCK();
Dan Williams45b42332007-07-09 11:56:43 -0700285 pr_debug("__find_stripe, sector %llu\n", (unsigned long long)sector);
NeilBrownfccddba2006-01-06 00:20:33 -0800286 hlist_for_each_entry(sh, hn, stripe_hash(conf, sector), hash)
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800287 if (sh->sector == sector && sh->disks == disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 return sh;
Dan Williams45b42332007-07-09 11:56:43 -0700289 pr_debug("__stripe %llu not in cache\n", (unsigned long long)sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 return NULL;
291}
292
293static void unplug_slaves(mddev_t *mddev);
Jens Axboe165125e2007-07-24 09:28:11 +0200294static void raid5_unplug_device(struct request_queue *q);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800296static struct stripe_head *get_active_stripe(raid5_conf_t *conf, sector_t sector, int disks,
297 int pd_idx, int noblock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
299 struct stripe_head *sh;
300
Dan Williams45b42332007-07-09 11:56:43 -0700301 pr_debug("get_stripe, sector %llu\n", (unsigned long long)sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303 spin_lock_irq(&conf->device_lock);
304
305 do {
NeilBrown72626682005-09-09 16:23:54 -0700306 wait_event_lock_irq(conf->wait_for_stripe,
307 conf->quiesce == 0,
308 conf->device_lock, /* nothing */);
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800309 sh = __find_stripe(conf, sector, disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 if (!sh) {
311 if (!conf->inactive_blocked)
312 sh = get_free_stripe(conf);
313 if (noblock && sh == NULL)
314 break;
315 if (!sh) {
316 conf->inactive_blocked = 1;
317 wait_event_lock_irq(conf->wait_for_stripe,
318 !list_empty(&conf->inactive_list) &&
NeilBrown50368052005-12-12 02:39:17 -0800319 (atomic_read(&conf->active_stripes)
320 < (conf->max_nr_stripes *3/4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 || !conf->inactive_blocked),
322 conf->device_lock,
NeilBrownf4370782006-07-10 04:44:14 -0700323 raid5_unplug_device(conf->mddev->queue)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 );
325 conf->inactive_blocked = 0;
326 } else
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800327 init_stripe(sh, sector, pd_idx, disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 } else {
329 if (atomic_read(&sh->count)) {
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +0200330 BUG_ON(!list_empty(&sh->lru));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 } else {
332 if (!test_bit(STRIPE_HANDLE, &sh->state))
333 atomic_inc(&conf->active_stripes);
NeilBrownff4e8d92006-07-10 04:44:16 -0700334 if (list_empty(&sh->lru) &&
335 !test_bit(STRIPE_EXPANDING, &sh->state))
NeilBrown16a53ec2006-06-26 00:27:38 -0700336 BUG();
337 list_del_init(&sh->lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 }
339 }
340 } while (sh == NULL);
341
342 if (sh)
343 atomic_inc(&sh->count);
344
345 spin_unlock_irq(&conf->device_lock);
346 return sh;
347}
348
Dan Williamsd84e0f12007-01-02 13:52:30 -0700349/* test_and_ack_op() ensures that we only dequeue an operation once */
350#define test_and_ack_op(op, pend) \
351do { \
352 if (test_bit(op, &sh->ops.pending) && \
353 !test_bit(op, &sh->ops.complete)) { \
354 if (test_and_set_bit(op, &sh->ops.ack)) \
355 clear_bit(op, &pend); \
356 else \
357 ack++; \
358 } else \
359 clear_bit(op, &pend); \
360} while (0)
361
362/* find new work to run, do not resubmit work that is already
363 * in flight
364 */
365static unsigned long get_stripe_work(struct stripe_head *sh)
366{
367 unsigned long pending;
368 int ack = 0;
369
370 pending = sh->ops.pending;
371
372 test_and_ack_op(STRIPE_OP_BIOFILL, pending);
373 test_and_ack_op(STRIPE_OP_COMPUTE_BLK, pending);
374 test_and_ack_op(STRIPE_OP_PREXOR, pending);
375 test_and_ack_op(STRIPE_OP_BIODRAIN, pending);
376 test_and_ack_op(STRIPE_OP_POSTXOR, pending);
377 test_and_ack_op(STRIPE_OP_CHECK, pending);
378 if (test_and_clear_bit(STRIPE_OP_IO, &sh->ops.pending))
379 ack++;
380
381 sh->ops.count -= ack;
Dan Williams4ae3f842007-10-22 20:45:11 -0700382 if (unlikely(sh->ops.count < 0)) {
383 printk(KERN_ERR "pending: %#lx ops.pending: %#lx ops.ack: %#lx "
384 "ops.complete: %#lx\n", pending, sh->ops.pending,
385 sh->ops.ack, sh->ops.complete);
386 BUG();
387 }
Dan Williamsd84e0f12007-01-02 13:52:30 -0700388
389 return pending;
390}
391
NeilBrown6712ecf2007-09-27 12:47:43 +0200392static void
393raid5_end_read_request(struct bio *bi, int error);
394static void
395raid5_end_write_request(struct bio *bi, int error);
Dan Williams91c00922007-01-02 13:52:30 -0700396
397static void ops_run_io(struct stripe_head *sh)
398{
399 raid5_conf_t *conf = sh->raid_conf;
400 int i, disks = sh->disks;
401
402 might_sleep();
403
Dan Williams8b3e6cd2008-04-28 02:15:53 -0700404 set_bit(STRIPE_IO_STARTED, &sh->state);
Dan Williams91c00922007-01-02 13:52:30 -0700405 for (i = disks; i--; ) {
406 int rw;
407 struct bio *bi;
408 mdk_rdev_t *rdev;
409 if (test_and_clear_bit(R5_Wantwrite, &sh->dev[i].flags))
410 rw = WRITE;
411 else if (test_and_clear_bit(R5_Wantread, &sh->dev[i].flags))
412 rw = READ;
413 else
414 continue;
415
416 bi = &sh->dev[i].req;
417
418 bi->bi_rw = rw;
419 if (rw == WRITE)
420 bi->bi_end_io = raid5_end_write_request;
421 else
422 bi->bi_end_io = raid5_end_read_request;
423
424 rcu_read_lock();
425 rdev = rcu_dereference(conf->disks[i].rdev);
426 if (rdev && test_bit(Faulty, &rdev->flags))
427 rdev = NULL;
428 if (rdev)
429 atomic_inc(&rdev->nr_pending);
430 rcu_read_unlock();
431
432 if (rdev) {
433 if (test_bit(STRIPE_SYNCING, &sh->state) ||
434 test_bit(STRIPE_EXPAND_SOURCE, &sh->state) ||
435 test_bit(STRIPE_EXPAND_READY, &sh->state))
436 md_sync_acct(rdev->bdev, STRIPE_SECTORS);
437
438 bi->bi_bdev = rdev->bdev;
439 pr_debug("%s: for %llu schedule op %ld on disc %d\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -0700440 __func__, (unsigned long long)sh->sector,
Dan Williams91c00922007-01-02 13:52:30 -0700441 bi->bi_rw, i);
442 atomic_inc(&sh->count);
443 bi->bi_sector = sh->sector + rdev->data_offset;
444 bi->bi_flags = 1 << BIO_UPTODATE;
445 bi->bi_vcnt = 1;
446 bi->bi_max_vecs = 1;
447 bi->bi_idx = 0;
448 bi->bi_io_vec = &sh->dev[i].vec;
449 bi->bi_io_vec[0].bv_len = STRIPE_SIZE;
450 bi->bi_io_vec[0].bv_offset = 0;
451 bi->bi_size = STRIPE_SIZE;
452 bi->bi_next = NULL;
453 if (rw == WRITE &&
454 test_bit(R5_ReWrite, &sh->dev[i].flags))
455 atomic_add(STRIPE_SECTORS,
456 &rdev->corrected_errors);
457 generic_make_request(bi);
458 } else {
459 if (rw == WRITE)
460 set_bit(STRIPE_DEGRADED, &sh->state);
461 pr_debug("skip op %ld on disc %d for sector %llu\n",
462 bi->bi_rw, i, (unsigned long long)sh->sector);
463 clear_bit(R5_LOCKED, &sh->dev[i].flags);
464 set_bit(STRIPE_HANDLE, &sh->state);
465 }
466 }
467}
468
469static struct dma_async_tx_descriptor *
470async_copy_data(int frombio, struct bio *bio, struct page *page,
471 sector_t sector, struct dma_async_tx_descriptor *tx)
472{
473 struct bio_vec *bvl;
474 struct page *bio_page;
475 int i;
476 int page_offset;
477
478 if (bio->bi_sector >= sector)
479 page_offset = (signed)(bio->bi_sector - sector) * 512;
480 else
481 page_offset = (signed)(sector - bio->bi_sector) * -512;
482 bio_for_each_segment(bvl, bio, i) {
483 int len = bio_iovec_idx(bio, i)->bv_len;
484 int clen;
485 int b_offset = 0;
486
487 if (page_offset < 0) {
488 b_offset = -page_offset;
489 page_offset += b_offset;
490 len -= b_offset;
491 }
492
493 if (len > 0 && page_offset + len > STRIPE_SIZE)
494 clen = STRIPE_SIZE - page_offset;
495 else
496 clen = len;
497
498 if (clen > 0) {
499 b_offset += bio_iovec_idx(bio, i)->bv_offset;
500 bio_page = bio_iovec_idx(bio, i)->bv_page;
501 if (frombio)
502 tx = async_memcpy(page, bio_page, page_offset,
503 b_offset, clen,
Dan Williamseb0645a2007-07-20 00:31:46 -0700504 ASYNC_TX_DEP_ACK,
Dan Williams91c00922007-01-02 13:52:30 -0700505 tx, NULL, NULL);
506 else
507 tx = async_memcpy(bio_page, page, b_offset,
508 page_offset, clen,
Dan Williamseb0645a2007-07-20 00:31:46 -0700509 ASYNC_TX_DEP_ACK,
Dan Williams91c00922007-01-02 13:52:30 -0700510 tx, NULL, NULL);
511 }
512 if (clen < len) /* hit end of page */
513 break;
514 page_offset += len;
515 }
516
517 return tx;
518}
519
520static void ops_complete_biofill(void *stripe_head_ref)
521{
522 struct stripe_head *sh = stripe_head_ref;
523 struct bio *return_bi = NULL;
524 raid5_conf_t *conf = sh->raid_conf;
Dan Williamse4d84902007-09-24 10:06:13 -0700525 int i;
Dan Williams91c00922007-01-02 13:52:30 -0700526
Harvey Harrisone46b2722008-04-28 02:15:50 -0700527 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700528 (unsigned long long)sh->sector);
529
530 /* clear completed biofills */
531 for (i = sh->disks; i--; ) {
532 struct r5dev *dev = &sh->dev[i];
Dan Williams91c00922007-01-02 13:52:30 -0700533
534 /* acknowledge completion of a biofill operation */
Dan Williamse4d84902007-09-24 10:06:13 -0700535 /* and check if we need to reply to a read request,
536 * new R5_Wantfill requests are held off until
537 * !test_bit(STRIPE_OP_BIOFILL, &sh->ops.pending)
538 */
539 if (test_and_clear_bit(R5_Wantfill, &dev->flags)) {
Dan Williams91c00922007-01-02 13:52:30 -0700540 struct bio *rbi, *rbi2;
Dan Williams91c00922007-01-02 13:52:30 -0700541
542 /* The access to dev->read is outside of the
543 * spin_lock_irq(&conf->device_lock), but is protected
544 * by the STRIPE_OP_BIOFILL pending bit
545 */
546 BUG_ON(!dev->read);
547 rbi = dev->read;
548 dev->read = NULL;
549 while (rbi && rbi->bi_sector <
550 dev->sector + STRIPE_SECTORS) {
551 rbi2 = r5_next_bio(rbi, dev->sector);
552 spin_lock_irq(&conf->device_lock);
553 if (--rbi->bi_phys_segments == 0) {
554 rbi->bi_next = return_bi;
555 return_bi = rbi;
556 }
557 spin_unlock_irq(&conf->device_lock);
558 rbi = rbi2;
559 }
560 }
561 }
Dan Williams4ae3f842007-10-22 20:45:11 -0700562 set_bit(STRIPE_OP_BIOFILL, &sh->ops.complete);
Dan Williams91c00922007-01-02 13:52:30 -0700563
564 return_io(return_bi);
565
Dan Williamse4d84902007-09-24 10:06:13 -0700566 set_bit(STRIPE_HANDLE, &sh->state);
Dan Williams91c00922007-01-02 13:52:30 -0700567 release_stripe(sh);
568}
569
570static void ops_run_biofill(struct stripe_head *sh)
571{
572 struct dma_async_tx_descriptor *tx = NULL;
573 raid5_conf_t *conf = sh->raid_conf;
574 int i;
575
Harvey Harrisone46b2722008-04-28 02:15:50 -0700576 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700577 (unsigned long long)sh->sector);
578
579 for (i = sh->disks; i--; ) {
580 struct r5dev *dev = &sh->dev[i];
581 if (test_bit(R5_Wantfill, &dev->flags)) {
582 struct bio *rbi;
583 spin_lock_irq(&conf->device_lock);
584 dev->read = rbi = dev->toread;
585 dev->toread = NULL;
586 spin_unlock_irq(&conf->device_lock);
587 while (rbi && rbi->bi_sector <
588 dev->sector + STRIPE_SECTORS) {
589 tx = async_copy_data(0, rbi, dev->page,
590 dev->sector, tx);
591 rbi = r5_next_bio(rbi, dev->sector);
592 }
593 }
594 }
595
596 atomic_inc(&sh->count);
597 async_trigger_callback(ASYNC_TX_DEP_ACK | ASYNC_TX_ACK, tx,
598 ops_complete_biofill, sh);
599}
600
601static void ops_complete_compute5(void *stripe_head_ref)
602{
603 struct stripe_head *sh = stripe_head_ref;
604 int target = sh->ops.target;
605 struct r5dev *tgt = &sh->dev[target];
606
Harvey Harrisone46b2722008-04-28 02:15:50 -0700607 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700608 (unsigned long long)sh->sector);
609
610 set_bit(R5_UPTODATE, &tgt->flags);
611 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
612 clear_bit(R5_Wantcompute, &tgt->flags);
613 set_bit(STRIPE_OP_COMPUTE_BLK, &sh->ops.complete);
614 set_bit(STRIPE_HANDLE, &sh->state);
615 release_stripe(sh);
616}
617
618static struct dma_async_tx_descriptor *
619ops_run_compute5(struct stripe_head *sh, unsigned long pending)
620{
621 /* kernel stack size limits the total number of disks */
622 int disks = sh->disks;
623 struct page *xor_srcs[disks];
624 int target = sh->ops.target;
625 struct r5dev *tgt = &sh->dev[target];
626 struct page *xor_dest = tgt->page;
627 int count = 0;
628 struct dma_async_tx_descriptor *tx;
629 int i;
630
631 pr_debug("%s: stripe %llu block: %d\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -0700632 __func__, (unsigned long long)sh->sector, target);
Dan Williams91c00922007-01-02 13:52:30 -0700633 BUG_ON(!test_bit(R5_Wantcompute, &tgt->flags));
634
635 for (i = disks; i--; )
636 if (i != target)
637 xor_srcs[count++] = sh->dev[i].page;
638
639 atomic_inc(&sh->count);
640
641 if (unlikely(count == 1))
642 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE,
643 0, NULL, ops_complete_compute5, sh);
644 else
645 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE,
646 ASYNC_TX_XOR_ZERO_DST, NULL,
647 ops_complete_compute5, sh);
648
649 /* ack now if postxor is not set to be run */
650 if (tx && !test_bit(STRIPE_OP_POSTXOR, &pending))
651 async_tx_ack(tx);
652
653 return tx;
654}
655
656static void ops_complete_prexor(void *stripe_head_ref)
657{
658 struct stripe_head *sh = stripe_head_ref;
659
Harvey Harrisone46b2722008-04-28 02:15:50 -0700660 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700661 (unsigned long long)sh->sector);
662
663 set_bit(STRIPE_OP_PREXOR, &sh->ops.complete);
664}
665
666static struct dma_async_tx_descriptor *
667ops_run_prexor(struct stripe_head *sh, struct dma_async_tx_descriptor *tx)
668{
669 /* kernel stack size limits the total number of disks */
670 int disks = sh->disks;
671 struct page *xor_srcs[disks];
672 int count = 0, pd_idx = sh->pd_idx, i;
673
674 /* existing parity data subtracted */
675 struct page *xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
676
Harvey Harrisone46b2722008-04-28 02:15:50 -0700677 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700678 (unsigned long long)sh->sector);
679
680 for (i = disks; i--; ) {
681 struct r5dev *dev = &sh->dev[i];
682 /* Only process blocks that are known to be uptodate */
683 if (dev->towrite && test_bit(R5_Wantprexor, &dev->flags))
684 xor_srcs[count++] = dev->page;
685 }
686
687 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE,
688 ASYNC_TX_DEP_ACK | ASYNC_TX_XOR_DROP_DST, tx,
689 ops_complete_prexor, sh);
690
691 return tx;
692}
693
694static struct dma_async_tx_descriptor *
Dan Williams6c55be82007-11-14 16:59:35 -0800695ops_run_biodrain(struct stripe_head *sh, struct dma_async_tx_descriptor *tx,
696 unsigned long pending)
Dan Williams91c00922007-01-02 13:52:30 -0700697{
698 int disks = sh->disks;
699 int pd_idx = sh->pd_idx, i;
700
701 /* check if prexor is active which means only process blocks
702 * that are part of a read-modify-write (Wantprexor)
703 */
Dan Williams6c55be82007-11-14 16:59:35 -0800704 int prexor = test_bit(STRIPE_OP_PREXOR, &pending);
Dan Williams91c00922007-01-02 13:52:30 -0700705
Harvey Harrisone46b2722008-04-28 02:15:50 -0700706 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700707 (unsigned long long)sh->sector);
708
709 for (i = disks; i--; ) {
710 struct r5dev *dev = &sh->dev[i];
711 struct bio *chosen;
712 int towrite;
713
714 towrite = 0;
715 if (prexor) { /* rmw */
716 if (dev->towrite &&
717 test_bit(R5_Wantprexor, &dev->flags))
718 towrite = 1;
719 } else { /* rcw */
720 if (i != pd_idx && dev->towrite &&
721 test_bit(R5_LOCKED, &dev->flags))
722 towrite = 1;
723 }
724
725 if (towrite) {
726 struct bio *wbi;
727
728 spin_lock(&sh->lock);
729 chosen = dev->towrite;
730 dev->towrite = NULL;
731 BUG_ON(dev->written);
732 wbi = dev->written = chosen;
733 spin_unlock(&sh->lock);
734
735 while (wbi && wbi->bi_sector <
736 dev->sector + STRIPE_SECTORS) {
737 tx = async_copy_data(1, wbi, dev->page,
738 dev->sector, tx);
739 wbi = r5_next_bio(wbi, dev->sector);
740 }
741 }
742 }
743
744 return tx;
745}
746
747static void ops_complete_postxor(void *stripe_head_ref)
748{
749 struct stripe_head *sh = stripe_head_ref;
750
Harvey Harrisone46b2722008-04-28 02:15:50 -0700751 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700752 (unsigned long long)sh->sector);
753
754 set_bit(STRIPE_OP_POSTXOR, &sh->ops.complete);
755 set_bit(STRIPE_HANDLE, &sh->state);
756 release_stripe(sh);
757}
758
759static void ops_complete_write(void *stripe_head_ref)
760{
761 struct stripe_head *sh = stripe_head_ref;
762 int disks = sh->disks, i, pd_idx = sh->pd_idx;
763
Harvey Harrisone46b2722008-04-28 02:15:50 -0700764 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700765 (unsigned long long)sh->sector);
766
767 for (i = disks; i--; ) {
768 struct r5dev *dev = &sh->dev[i];
769 if (dev->written || i == pd_idx)
770 set_bit(R5_UPTODATE, &dev->flags);
771 }
772
773 set_bit(STRIPE_OP_BIODRAIN, &sh->ops.complete);
774 set_bit(STRIPE_OP_POSTXOR, &sh->ops.complete);
775
776 set_bit(STRIPE_HANDLE, &sh->state);
777 release_stripe(sh);
778}
779
780static void
Dan Williams6c55be82007-11-14 16:59:35 -0800781ops_run_postxor(struct stripe_head *sh, struct dma_async_tx_descriptor *tx,
782 unsigned long pending)
Dan Williams91c00922007-01-02 13:52:30 -0700783{
784 /* kernel stack size limits the total number of disks */
785 int disks = sh->disks;
786 struct page *xor_srcs[disks];
787
788 int count = 0, pd_idx = sh->pd_idx, i;
789 struct page *xor_dest;
Dan Williams6c55be82007-11-14 16:59:35 -0800790 int prexor = test_bit(STRIPE_OP_PREXOR, &pending);
Dan Williams91c00922007-01-02 13:52:30 -0700791 unsigned long flags;
792 dma_async_tx_callback callback;
793
Harvey Harrisone46b2722008-04-28 02:15:50 -0700794 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700795 (unsigned long long)sh->sector);
796
797 /* check if prexor is active which means only process blocks
798 * that are part of a read-modify-write (written)
799 */
800 if (prexor) {
801 xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
802 for (i = disks; i--; ) {
803 struct r5dev *dev = &sh->dev[i];
804 if (dev->written)
805 xor_srcs[count++] = dev->page;
806 }
807 } else {
808 xor_dest = sh->dev[pd_idx].page;
809 for (i = disks; i--; ) {
810 struct r5dev *dev = &sh->dev[i];
811 if (i != pd_idx)
812 xor_srcs[count++] = dev->page;
813 }
814 }
815
816 /* check whether this postxor is part of a write */
Dan Williams6c55be82007-11-14 16:59:35 -0800817 callback = test_bit(STRIPE_OP_BIODRAIN, &pending) ?
Dan Williams91c00922007-01-02 13:52:30 -0700818 ops_complete_write : ops_complete_postxor;
819
820 /* 1/ if we prexor'd then the dest is reused as a source
821 * 2/ if we did not prexor then we are redoing the parity
822 * set ASYNC_TX_XOR_DROP_DST and ASYNC_TX_XOR_ZERO_DST
823 * for the synchronous xor case
824 */
825 flags = ASYNC_TX_DEP_ACK | ASYNC_TX_ACK |
826 (prexor ? ASYNC_TX_XOR_DROP_DST : ASYNC_TX_XOR_ZERO_DST);
827
828 atomic_inc(&sh->count);
829
830 if (unlikely(count == 1)) {
831 flags &= ~(ASYNC_TX_XOR_DROP_DST | ASYNC_TX_XOR_ZERO_DST);
832 tx = async_memcpy(xor_dest, xor_srcs[0], 0, 0, STRIPE_SIZE,
833 flags, tx, callback, sh);
834 } else
835 tx = async_xor(xor_dest, xor_srcs, 0, count, STRIPE_SIZE,
836 flags, tx, callback, sh);
837}
838
839static void ops_complete_check(void *stripe_head_ref)
840{
841 struct stripe_head *sh = stripe_head_ref;
842 int pd_idx = sh->pd_idx;
843
Harvey Harrisone46b2722008-04-28 02:15:50 -0700844 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700845 (unsigned long long)sh->sector);
846
847 if (test_and_clear_bit(STRIPE_OP_MOD_DMA_CHECK, &sh->ops.pending) &&
848 sh->ops.zero_sum_result == 0)
849 set_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
850
851 set_bit(STRIPE_OP_CHECK, &sh->ops.complete);
852 set_bit(STRIPE_HANDLE, &sh->state);
853 release_stripe(sh);
854}
855
856static void ops_run_check(struct stripe_head *sh)
857{
858 /* kernel stack size limits the total number of disks */
859 int disks = sh->disks;
860 struct page *xor_srcs[disks];
861 struct dma_async_tx_descriptor *tx;
862
863 int count = 0, pd_idx = sh->pd_idx, i;
864 struct page *xor_dest = xor_srcs[count++] = sh->dev[pd_idx].page;
865
Harvey Harrisone46b2722008-04-28 02:15:50 -0700866 pr_debug("%s: stripe %llu\n", __func__,
Dan Williams91c00922007-01-02 13:52:30 -0700867 (unsigned long long)sh->sector);
868
869 for (i = disks; i--; ) {
870 struct r5dev *dev = &sh->dev[i];
871 if (i != pd_idx)
872 xor_srcs[count++] = dev->page;
873 }
874
875 tx = async_xor_zero_sum(xor_dest, xor_srcs, 0, count, STRIPE_SIZE,
876 &sh->ops.zero_sum_result, 0, NULL, NULL, NULL);
877
878 if (tx)
879 set_bit(STRIPE_OP_MOD_DMA_CHECK, &sh->ops.pending);
880 else
881 clear_bit(STRIPE_OP_MOD_DMA_CHECK, &sh->ops.pending);
882
883 atomic_inc(&sh->count);
884 tx = async_trigger_callback(ASYNC_TX_DEP_ACK | ASYNC_TX_ACK, tx,
885 ops_complete_check, sh);
886}
887
888static void raid5_run_ops(struct stripe_head *sh, unsigned long pending)
889{
890 int overlap_clear = 0, i, disks = sh->disks;
891 struct dma_async_tx_descriptor *tx = NULL;
892
893 if (test_bit(STRIPE_OP_BIOFILL, &pending)) {
894 ops_run_biofill(sh);
895 overlap_clear++;
896 }
897
898 if (test_bit(STRIPE_OP_COMPUTE_BLK, &pending))
899 tx = ops_run_compute5(sh, pending);
900
901 if (test_bit(STRIPE_OP_PREXOR, &pending))
902 tx = ops_run_prexor(sh, tx);
903
904 if (test_bit(STRIPE_OP_BIODRAIN, &pending)) {
Dan Williams6c55be82007-11-14 16:59:35 -0800905 tx = ops_run_biodrain(sh, tx, pending);
Dan Williams91c00922007-01-02 13:52:30 -0700906 overlap_clear++;
907 }
908
909 if (test_bit(STRIPE_OP_POSTXOR, &pending))
Dan Williams6c55be82007-11-14 16:59:35 -0800910 ops_run_postxor(sh, tx, pending);
Dan Williams91c00922007-01-02 13:52:30 -0700911
912 if (test_bit(STRIPE_OP_CHECK, &pending))
913 ops_run_check(sh);
914
915 if (test_bit(STRIPE_OP_IO, &pending))
916 ops_run_io(sh);
917
918 if (overlap_clear)
919 for (i = disks; i--; ) {
920 struct r5dev *dev = &sh->dev[i];
921 if (test_and_clear_bit(R5_Overlap, &dev->flags))
922 wake_up(&sh->raid_conf->wait_for_overlap);
923 }
924}
925
NeilBrown3f294f42005-11-08 21:39:25 -0800926static int grow_one_stripe(raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927{
928 struct stripe_head *sh;
NeilBrown3f294f42005-11-08 21:39:25 -0800929 sh = kmem_cache_alloc(conf->slab_cache, GFP_KERNEL);
930 if (!sh)
931 return 0;
932 memset(sh, 0, sizeof(*sh) + (conf->raid_disks-1)*sizeof(struct r5dev));
933 sh->raid_conf = conf;
934 spin_lock_init(&sh->lock);
935
936 if (grow_buffers(sh, conf->raid_disks)) {
937 shrink_buffers(sh, conf->raid_disks);
938 kmem_cache_free(conf->slab_cache, sh);
939 return 0;
940 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -0800941 sh->disks = conf->raid_disks;
NeilBrown3f294f42005-11-08 21:39:25 -0800942 /* we just created an active stripe so... */
943 atomic_set(&sh->count, 1);
944 atomic_inc(&conf->active_stripes);
945 INIT_LIST_HEAD(&sh->lru);
946 release_stripe(sh);
947 return 1;
948}
949
950static int grow_stripes(raid5_conf_t *conf, int num)
951{
Christoph Lametere18b8902006-12-06 20:33:20 -0800952 struct kmem_cache *sc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 int devs = conf->raid_disks;
954
NeilBrown42b9beb2007-05-09 02:35:37 -0700955 sprintf(conf->cache_name[0], "raid5-%s", mdname(conf->mddev));
956 sprintf(conf->cache_name[1], "raid5-%s-alt", mdname(conf->mddev));
NeilBrownad01c9e2006-03-27 01:18:07 -0800957 conf->active_name = 0;
958 sc = kmem_cache_create(conf->cache_name[conf->active_name],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 sizeof(struct stripe_head)+(devs-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +0900960 0, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 if (!sc)
962 return 1;
963 conf->slab_cache = sc;
NeilBrownad01c9e2006-03-27 01:18:07 -0800964 conf->pool_size = devs;
NeilBrown16a53ec2006-06-26 00:27:38 -0700965 while (num--)
NeilBrown3f294f42005-11-08 21:39:25 -0800966 if (!grow_one_stripe(conf))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 return 0;
969}
NeilBrown29269552006-03-27 01:18:10 -0800970
971#ifdef CONFIG_MD_RAID5_RESHAPE
NeilBrownad01c9e2006-03-27 01:18:07 -0800972static int resize_stripes(raid5_conf_t *conf, int newsize)
973{
974 /* Make all the stripes able to hold 'newsize' devices.
975 * New slots in each stripe get 'page' set to a new page.
976 *
977 * This happens in stages:
978 * 1/ create a new kmem_cache and allocate the required number of
979 * stripe_heads.
980 * 2/ gather all the old stripe_heads and tranfer the pages across
981 * to the new stripe_heads. This will have the side effect of
982 * freezing the array as once all stripe_heads have been collected,
983 * no IO will be possible. Old stripe heads are freed once their
984 * pages have been transferred over, and the old kmem_cache is
985 * freed when all stripes are done.
986 * 3/ reallocate conf->disks to be suitable bigger. If this fails,
987 * we simple return a failre status - no need to clean anything up.
988 * 4/ allocate new pages for the new slots in the new stripe_heads.
989 * If this fails, we don't bother trying the shrink the
990 * stripe_heads down again, we just leave them as they are.
991 * As each stripe_head is processed the new one is released into
992 * active service.
993 *
994 * Once step2 is started, we cannot afford to wait for a write,
995 * so we use GFP_NOIO allocations.
996 */
997 struct stripe_head *osh, *nsh;
998 LIST_HEAD(newstripes);
999 struct disk_info *ndisks;
1000 int err = 0;
Christoph Lametere18b8902006-12-06 20:33:20 -08001001 struct kmem_cache *sc;
NeilBrownad01c9e2006-03-27 01:18:07 -08001002 int i;
1003
1004 if (newsize <= conf->pool_size)
1005 return 0; /* never bother to shrink */
1006
NeilBrown2a2275d2007-01-26 00:57:11 -08001007 md_allow_write(conf->mddev);
1008
NeilBrownad01c9e2006-03-27 01:18:07 -08001009 /* Step 1 */
1010 sc = kmem_cache_create(conf->cache_name[1-conf->active_name],
1011 sizeof(struct stripe_head)+(newsize-1)*sizeof(struct r5dev),
Paul Mundt20c2df82007-07-20 10:11:58 +09001012 0, 0, NULL);
NeilBrownad01c9e2006-03-27 01:18:07 -08001013 if (!sc)
1014 return -ENOMEM;
1015
1016 for (i = conf->max_nr_stripes; i; i--) {
1017 nsh = kmem_cache_alloc(sc, GFP_KERNEL);
1018 if (!nsh)
1019 break;
1020
1021 memset(nsh, 0, sizeof(*nsh) + (newsize-1)*sizeof(struct r5dev));
1022
1023 nsh->raid_conf = conf;
1024 spin_lock_init(&nsh->lock);
1025
1026 list_add(&nsh->lru, &newstripes);
1027 }
1028 if (i) {
1029 /* didn't get enough, give up */
1030 while (!list_empty(&newstripes)) {
1031 nsh = list_entry(newstripes.next, struct stripe_head, lru);
1032 list_del(&nsh->lru);
1033 kmem_cache_free(sc, nsh);
1034 }
1035 kmem_cache_destroy(sc);
1036 return -ENOMEM;
1037 }
1038 /* Step 2 - Must use GFP_NOIO now.
1039 * OK, we have enough stripes, start collecting inactive
1040 * stripes and copying them over
1041 */
1042 list_for_each_entry(nsh, &newstripes, lru) {
1043 spin_lock_irq(&conf->device_lock);
1044 wait_event_lock_irq(conf->wait_for_stripe,
1045 !list_empty(&conf->inactive_list),
1046 conf->device_lock,
NeilBrownb3b46be2006-03-27 01:18:16 -08001047 unplug_slaves(conf->mddev)
NeilBrownad01c9e2006-03-27 01:18:07 -08001048 );
1049 osh = get_free_stripe(conf);
1050 spin_unlock_irq(&conf->device_lock);
1051 atomic_set(&nsh->count, 1);
1052 for(i=0; i<conf->pool_size; i++)
1053 nsh->dev[i].page = osh->dev[i].page;
1054 for( ; i<newsize; i++)
1055 nsh->dev[i].page = NULL;
1056 kmem_cache_free(conf->slab_cache, osh);
1057 }
1058 kmem_cache_destroy(conf->slab_cache);
1059
1060 /* Step 3.
1061 * At this point, we are holding all the stripes so the array
1062 * is completely stalled, so now is a good time to resize
1063 * conf->disks.
1064 */
1065 ndisks = kzalloc(newsize * sizeof(struct disk_info), GFP_NOIO);
1066 if (ndisks) {
1067 for (i=0; i<conf->raid_disks; i++)
1068 ndisks[i] = conf->disks[i];
1069 kfree(conf->disks);
1070 conf->disks = ndisks;
1071 } else
1072 err = -ENOMEM;
1073
1074 /* Step 4, return new stripes to service */
1075 while(!list_empty(&newstripes)) {
1076 nsh = list_entry(newstripes.next, struct stripe_head, lru);
1077 list_del_init(&nsh->lru);
1078 for (i=conf->raid_disks; i < newsize; i++)
1079 if (nsh->dev[i].page == NULL) {
1080 struct page *p = alloc_page(GFP_NOIO);
1081 nsh->dev[i].page = p;
1082 if (!p)
1083 err = -ENOMEM;
1084 }
1085 release_stripe(nsh);
1086 }
1087 /* critical section pass, GFP_NOIO no longer needed */
1088
1089 conf->slab_cache = sc;
1090 conf->active_name = 1-conf->active_name;
1091 conf->pool_size = newsize;
1092 return err;
1093}
NeilBrown29269552006-03-27 01:18:10 -08001094#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
NeilBrown3f294f42005-11-08 21:39:25 -08001096static int drop_one_stripe(raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097{
1098 struct stripe_head *sh;
1099
NeilBrown3f294f42005-11-08 21:39:25 -08001100 spin_lock_irq(&conf->device_lock);
1101 sh = get_free_stripe(conf);
1102 spin_unlock_irq(&conf->device_lock);
1103 if (!sh)
1104 return 0;
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02001105 BUG_ON(atomic_read(&sh->count));
NeilBrownad01c9e2006-03-27 01:18:07 -08001106 shrink_buffers(sh, conf->pool_size);
NeilBrown3f294f42005-11-08 21:39:25 -08001107 kmem_cache_free(conf->slab_cache, sh);
1108 atomic_dec(&conf->active_stripes);
1109 return 1;
1110}
1111
1112static void shrink_stripes(raid5_conf_t *conf)
1113{
1114 while (drop_one_stripe(conf))
1115 ;
1116
NeilBrown29fc7e32006-02-03 03:03:41 -08001117 if (conf->slab_cache)
1118 kmem_cache_destroy(conf->slab_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 conf->slab_cache = NULL;
1120}
1121
NeilBrown6712ecf2007-09-27 12:47:43 +02001122static void raid5_end_read_request(struct bio * bi, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123{
1124 struct stripe_head *sh = bi->bi_private;
1125 raid5_conf_t *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08001126 int disks = sh->disks, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
NeilBrownd6950432006-07-10 04:44:20 -07001128 char b[BDEVNAME_SIZE];
1129 mdk_rdev_t *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
1132 for (i=0 ; i<disks; i++)
1133 if (bi == &sh->dev[i].req)
1134 break;
1135
Dan Williams45b42332007-07-09 11:56:43 -07001136 pr_debug("end_read_request %llu/%d, count: %d, uptodate %d.\n",
1137 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 uptodate);
1139 if (i == disks) {
1140 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02001141 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 }
1143
1144 if (uptodate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 set_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrown4e5314b2005-11-08 21:39:22 -08001146 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
NeilBrownd6950432006-07-10 04:44:20 -07001147 rdev = conf->disks[i].rdev;
Bernd Schubert6be9d492008-05-23 13:04:34 -07001148 printk_rl(KERN_INFO "raid5:%s: read error corrected"
1149 " (%lu sectors at %llu on %s)\n",
1150 mdname(conf->mddev), STRIPE_SECTORS,
1151 (unsigned long long)(sh->sector
1152 + rdev->data_offset),
1153 bdevname(rdev->bdev, b));
NeilBrown4e5314b2005-11-08 21:39:22 -08001154 clear_bit(R5_ReadError, &sh->dev[i].flags);
1155 clear_bit(R5_ReWrite, &sh->dev[i].flags);
1156 }
NeilBrownba22dcb2005-11-08 21:39:31 -08001157 if (atomic_read(&conf->disks[i].rdev->read_errors))
1158 atomic_set(&conf->disks[i].rdev->read_errors, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 } else {
NeilBrownd6950432006-07-10 04:44:20 -07001160 const char *bdn = bdevname(conf->disks[i].rdev->bdev, b);
NeilBrownba22dcb2005-11-08 21:39:31 -08001161 int retry = 0;
NeilBrownd6950432006-07-10 04:44:20 -07001162 rdev = conf->disks[i].rdev;
1163
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 clear_bit(R5_UPTODATE, &sh->dev[i].flags);
NeilBrownd6950432006-07-10 04:44:20 -07001165 atomic_inc(&rdev->read_errors);
NeilBrownba22dcb2005-11-08 21:39:31 -08001166 if (conf->mddev->degraded)
Bernd Schubert6be9d492008-05-23 13:04:34 -07001167 printk_rl(KERN_WARNING
1168 "raid5:%s: read error not correctable "
1169 "(sector %llu on %s).\n",
1170 mdname(conf->mddev),
1171 (unsigned long long)(sh->sector
1172 + rdev->data_offset),
1173 bdn);
NeilBrownba22dcb2005-11-08 21:39:31 -08001174 else if (test_bit(R5_ReWrite, &sh->dev[i].flags))
NeilBrown4e5314b2005-11-08 21:39:22 -08001175 /* Oh, no!!! */
Bernd Schubert6be9d492008-05-23 13:04:34 -07001176 printk_rl(KERN_WARNING
1177 "raid5:%s: read error NOT corrected!! "
1178 "(sector %llu on %s).\n",
1179 mdname(conf->mddev),
1180 (unsigned long long)(sh->sector
1181 + rdev->data_offset),
1182 bdn);
NeilBrownd6950432006-07-10 04:44:20 -07001183 else if (atomic_read(&rdev->read_errors)
NeilBrownba22dcb2005-11-08 21:39:31 -08001184 > conf->max_nr_stripes)
NeilBrown14f8d262006-01-06 00:20:14 -08001185 printk(KERN_WARNING
NeilBrownd6950432006-07-10 04:44:20 -07001186 "raid5:%s: Too many read errors, failing device %s.\n",
1187 mdname(conf->mddev), bdn);
NeilBrownba22dcb2005-11-08 21:39:31 -08001188 else
1189 retry = 1;
1190 if (retry)
1191 set_bit(R5_ReadError, &sh->dev[i].flags);
1192 else {
NeilBrown4e5314b2005-11-08 21:39:22 -08001193 clear_bit(R5_ReadError, &sh->dev[i].flags);
1194 clear_bit(R5_ReWrite, &sh->dev[i].flags);
NeilBrownd6950432006-07-10 04:44:20 -07001195 md_error(conf->mddev, rdev);
NeilBrownba22dcb2005-11-08 21:39:31 -08001196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 }
1198 rdev_dec_pending(conf->disks[i].rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 clear_bit(R5_LOCKED, &sh->dev[i].flags);
1200 set_bit(STRIPE_HANDLE, &sh->state);
1201 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202}
1203
NeilBrown6712ecf2007-09-27 12:47:43 +02001204static void raid5_end_write_request (struct bio *bi, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205{
1206 struct stripe_head *sh = bi->bi_private;
1207 raid5_conf_t *conf = sh->raid_conf;
NeilBrown7ecaa1e2006-03-27 01:18:08 -08001208 int disks = sh->disks, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
1210
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 for (i=0 ; i<disks; i++)
1212 if (bi == &sh->dev[i].req)
1213 break;
1214
Dan Williams45b42332007-07-09 11:56:43 -07001215 pr_debug("end_write_request %llu/%d, count %d, uptodate: %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 (unsigned long long)sh->sector, i, atomic_read(&sh->count),
1217 uptodate);
1218 if (i == disks) {
1219 BUG();
NeilBrown6712ecf2007-09-27 12:47:43 +02001220 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 }
1222
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 if (!uptodate)
1224 md_error(conf->mddev, conf->disks[i].rdev);
1225
1226 rdev_dec_pending(conf->disks[i].rdev, conf->mddev);
1227
1228 clear_bit(R5_LOCKED, &sh->dev[i].flags);
1229 set_bit(STRIPE_HANDLE, &sh->state);
NeilBrownc04be0a2006-10-03 01:15:53 -07001230 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231}
1232
1233
1234static sector_t compute_blocknr(struct stripe_head *sh, int i);
1235
1236static void raid5_build_block (struct stripe_head *sh, int i)
1237{
1238 struct r5dev *dev = &sh->dev[i];
1239
1240 bio_init(&dev->req);
1241 dev->req.bi_io_vec = &dev->vec;
1242 dev->req.bi_vcnt++;
1243 dev->req.bi_max_vecs++;
1244 dev->vec.bv_page = dev->page;
1245 dev->vec.bv_len = STRIPE_SIZE;
1246 dev->vec.bv_offset = 0;
1247
1248 dev->req.bi_sector = sh->sector;
1249 dev->req.bi_private = sh;
1250
1251 dev->flags = 0;
NeilBrown16a53ec2006-06-26 00:27:38 -07001252 dev->sector = compute_blocknr(sh, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253}
1254
1255static void error(mddev_t *mddev, mdk_rdev_t *rdev)
1256{
1257 char b[BDEVNAME_SIZE];
1258 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
Dan Williams45b42332007-07-09 11:56:43 -07001259 pr_debug("raid5: error called\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
NeilBrownb2d444d2005-11-08 21:39:31 -08001261 if (!test_bit(Faulty, &rdev->flags)) {
NeilBrown850b2b42006-10-03 01:15:46 -07001262 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrownc04be0a2006-10-03 01:15:53 -07001263 if (test_and_clear_bit(In_sync, &rdev->flags)) {
1264 unsigned long flags;
1265 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 mddev->degraded++;
NeilBrownc04be0a2006-10-03 01:15:53 -07001267 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 /*
1269 * if recovery was running, make sure it aborts.
1270 */
1271 set_bit(MD_RECOVERY_ERR, &mddev->recovery);
1272 }
NeilBrownb2d444d2005-11-08 21:39:31 -08001273 set_bit(Faulty, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 printk (KERN_ALERT
Nick Andrewd7a420c2008-04-28 02:15:55 -07001275 "raid5: Disk failure on %s, disabling device.\n"
1276 "raid5: Operation continuing on %d devices.\n",
NeilBrown02c2de82006-10-03 01:15:47 -07001277 bdevname(rdev->bdev,b), conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 }
NeilBrown16a53ec2006-06-26 00:27:38 -07001279}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
1281/*
1282 * Input: a 'big' sector number,
1283 * Output: index of the data and parity disk, and the sector # in them.
1284 */
1285static sector_t raid5_compute_sector(sector_t r_sector, unsigned int raid_disks,
1286 unsigned int data_disks, unsigned int * dd_idx,
1287 unsigned int * pd_idx, raid5_conf_t *conf)
1288{
1289 long stripe;
1290 unsigned long chunk_number;
1291 unsigned int chunk_offset;
1292 sector_t new_sector;
1293 int sectors_per_chunk = conf->chunk_size >> 9;
1294
1295 /* First compute the information on this sector */
1296
1297 /*
1298 * Compute the chunk number and the sector offset inside the chunk
1299 */
1300 chunk_offset = sector_div(r_sector, sectors_per_chunk);
1301 chunk_number = r_sector;
1302 BUG_ON(r_sector != chunk_number);
1303
1304 /*
1305 * Compute the stripe number
1306 */
1307 stripe = chunk_number / data_disks;
1308
1309 /*
1310 * Compute the data disk and parity disk indexes inside the stripe
1311 */
1312 *dd_idx = chunk_number % data_disks;
1313
1314 /*
1315 * Select the parity disk based on the user selected algorithm.
1316 */
NeilBrown16a53ec2006-06-26 00:27:38 -07001317 switch(conf->level) {
1318 case 4:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 *pd_idx = data_disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07001320 break;
1321 case 5:
1322 switch (conf->algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 case ALGORITHM_LEFT_ASYMMETRIC:
1324 *pd_idx = data_disks - stripe % raid_disks;
1325 if (*dd_idx >= *pd_idx)
1326 (*dd_idx)++;
1327 break;
1328 case ALGORITHM_RIGHT_ASYMMETRIC:
1329 *pd_idx = stripe % raid_disks;
1330 if (*dd_idx >= *pd_idx)
1331 (*dd_idx)++;
1332 break;
1333 case ALGORITHM_LEFT_SYMMETRIC:
1334 *pd_idx = data_disks - stripe % raid_disks;
1335 *dd_idx = (*pd_idx + 1 + *dd_idx) % raid_disks;
1336 break;
1337 case ALGORITHM_RIGHT_SYMMETRIC:
1338 *pd_idx = stripe % raid_disks;
1339 *dd_idx = (*pd_idx + 1 + *dd_idx) % raid_disks;
1340 break;
1341 default:
NeilBrown14f8d262006-01-06 00:20:14 -08001342 printk(KERN_ERR "raid5: unsupported algorithm %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 conf->algorithm);
NeilBrown16a53ec2006-06-26 00:27:38 -07001344 }
1345 break;
1346 case 6:
1347
1348 /**** FIX THIS ****/
1349 switch (conf->algorithm) {
1350 case ALGORITHM_LEFT_ASYMMETRIC:
1351 *pd_idx = raid_disks - 1 - (stripe % raid_disks);
1352 if (*pd_idx == raid_disks-1)
1353 (*dd_idx)++; /* Q D D D P */
1354 else if (*dd_idx >= *pd_idx)
1355 (*dd_idx) += 2; /* D D P Q D */
1356 break;
1357 case ALGORITHM_RIGHT_ASYMMETRIC:
1358 *pd_idx = stripe % raid_disks;
1359 if (*pd_idx == raid_disks-1)
1360 (*dd_idx)++; /* Q D D D P */
1361 else if (*dd_idx >= *pd_idx)
1362 (*dd_idx) += 2; /* D D P Q D */
1363 break;
1364 case ALGORITHM_LEFT_SYMMETRIC:
1365 *pd_idx = raid_disks - 1 - (stripe % raid_disks);
1366 *dd_idx = (*pd_idx + 2 + *dd_idx) % raid_disks;
1367 break;
1368 case ALGORITHM_RIGHT_SYMMETRIC:
1369 *pd_idx = stripe % raid_disks;
1370 *dd_idx = (*pd_idx + 2 + *dd_idx) % raid_disks;
1371 break;
1372 default:
1373 printk (KERN_CRIT "raid6: unsupported algorithm %d\n",
1374 conf->algorithm);
1375 }
1376 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 }
1378
1379 /*
1380 * Finally, compute the new sector number
1381 */
1382 new_sector = (sector_t)stripe * sectors_per_chunk + chunk_offset;
1383 return new_sector;
1384}
1385
1386
1387static sector_t compute_blocknr(struct stripe_head *sh, int i)
1388{
1389 raid5_conf_t *conf = sh->raid_conf;
NeilBrownb875e532006-12-10 02:20:49 -08001390 int raid_disks = sh->disks;
1391 int data_disks = raid_disks - conf->max_degraded;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 sector_t new_sector = sh->sector, check;
1393 int sectors_per_chunk = conf->chunk_size >> 9;
1394 sector_t stripe;
1395 int chunk_offset;
1396 int chunk_number, dummy1, dummy2, dd_idx = i;
1397 sector_t r_sector;
1398
NeilBrown16a53ec2006-06-26 00:27:38 -07001399
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 chunk_offset = sector_div(new_sector, sectors_per_chunk);
1401 stripe = new_sector;
1402 BUG_ON(new_sector != stripe);
1403
NeilBrown16a53ec2006-06-26 00:27:38 -07001404 if (i == sh->pd_idx)
1405 return 0;
1406 switch(conf->level) {
1407 case 4: break;
1408 case 5:
1409 switch (conf->algorithm) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 case ALGORITHM_LEFT_ASYMMETRIC:
1411 case ALGORITHM_RIGHT_ASYMMETRIC:
1412 if (i > sh->pd_idx)
1413 i--;
1414 break;
1415 case ALGORITHM_LEFT_SYMMETRIC:
1416 case ALGORITHM_RIGHT_SYMMETRIC:
1417 if (i < sh->pd_idx)
1418 i += raid_disks;
1419 i -= (sh->pd_idx + 1);
1420 break;
1421 default:
NeilBrown14f8d262006-01-06 00:20:14 -08001422 printk(KERN_ERR "raid5: unsupported algorithm %d\n",
NeilBrown16a53ec2006-06-26 00:27:38 -07001423 conf->algorithm);
1424 }
1425 break;
1426 case 6:
NeilBrown16a53ec2006-06-26 00:27:38 -07001427 if (i == raid6_next_disk(sh->pd_idx, raid_disks))
1428 return 0; /* It is the Q disk */
1429 switch (conf->algorithm) {
1430 case ALGORITHM_LEFT_ASYMMETRIC:
1431 case ALGORITHM_RIGHT_ASYMMETRIC:
1432 if (sh->pd_idx == raid_disks-1)
1433 i--; /* Q D D D P */
1434 else if (i > sh->pd_idx)
1435 i -= 2; /* D D P Q D */
1436 break;
1437 case ALGORITHM_LEFT_SYMMETRIC:
1438 case ALGORITHM_RIGHT_SYMMETRIC:
1439 if (sh->pd_idx == raid_disks-1)
1440 i--; /* Q D D D P */
1441 else {
1442 /* D D P Q D */
1443 if (i < sh->pd_idx)
1444 i += raid_disks;
1445 i -= (sh->pd_idx + 2);
1446 }
1447 break;
1448 default:
1449 printk (KERN_CRIT "raid6: unsupported algorithm %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 conf->algorithm);
NeilBrown16a53ec2006-06-26 00:27:38 -07001451 }
1452 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 }
1454
1455 chunk_number = stripe * data_disks + i;
1456 r_sector = (sector_t)chunk_number * sectors_per_chunk + chunk_offset;
1457
1458 check = raid5_compute_sector (r_sector, raid_disks, data_disks, &dummy1, &dummy2, conf);
1459 if (check != sh->sector || dummy1 != dd_idx || dummy2 != sh->pd_idx) {
NeilBrown14f8d262006-01-06 00:20:14 -08001460 printk(KERN_ERR "compute_blocknr: map not correct\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 return 0;
1462 }
1463 return r_sector;
1464}
1465
1466
1467
1468/*
NeilBrown16a53ec2006-06-26 00:27:38 -07001469 * Copy data between a page in the stripe cache, and one or more bion
1470 * The page could align with the middle of the bio, or there could be
1471 * several bion, each with several bio_vecs, which cover part of the page
1472 * Multiple bion are linked together on bi_next. There may be extras
1473 * at the end of this list. We ignore them.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 */
1475static void copy_data(int frombio, struct bio *bio,
1476 struct page *page,
1477 sector_t sector)
1478{
1479 char *pa = page_address(page);
1480 struct bio_vec *bvl;
1481 int i;
1482 int page_offset;
1483
1484 if (bio->bi_sector >= sector)
1485 page_offset = (signed)(bio->bi_sector - sector) * 512;
1486 else
1487 page_offset = (signed)(sector - bio->bi_sector) * -512;
1488 bio_for_each_segment(bvl, bio, i) {
1489 int len = bio_iovec_idx(bio,i)->bv_len;
1490 int clen;
1491 int b_offset = 0;
1492
1493 if (page_offset < 0) {
1494 b_offset = -page_offset;
1495 page_offset += b_offset;
1496 len -= b_offset;
1497 }
1498
1499 if (len > 0 && page_offset + len > STRIPE_SIZE)
1500 clen = STRIPE_SIZE - page_offset;
1501 else clen = len;
NeilBrown16a53ec2006-06-26 00:27:38 -07001502
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 if (clen > 0) {
1504 char *ba = __bio_kmap_atomic(bio, i, KM_USER0);
1505 if (frombio)
1506 memcpy(pa+page_offset, ba+b_offset, clen);
1507 else
1508 memcpy(ba+b_offset, pa+page_offset, clen);
1509 __bio_kunmap_atomic(ba, KM_USER0);
1510 }
1511 if (clen < len) /* hit end of page */
1512 break;
1513 page_offset += len;
1514 }
1515}
1516
Dan Williams9bc89cd2007-01-02 11:10:44 -07001517#define check_xor() do { \
1518 if (count == MAX_XOR_BLOCKS) { \
1519 xor_blocks(count, STRIPE_SIZE, dest, ptr);\
1520 count = 0; \
1521 } \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 } while(0)
1523
NeilBrown16a53ec2006-06-26 00:27:38 -07001524static void compute_parity6(struct stripe_head *sh, int method)
1525{
1526 raid6_conf_t *conf = sh->raid_conf;
NeilBrownf4168852007-02-28 20:11:53 -08001527 int i, pd_idx = sh->pd_idx, qd_idx, d0_idx, disks = sh->disks, count;
NeilBrown16a53ec2006-06-26 00:27:38 -07001528 struct bio *chosen;
1529 /**** FIX THIS: This could be very bad if disks is close to 256 ****/
1530 void *ptrs[disks];
1531
1532 qd_idx = raid6_next_disk(pd_idx, disks);
1533 d0_idx = raid6_next_disk(qd_idx, disks);
1534
Dan Williams45b42332007-07-09 11:56:43 -07001535 pr_debug("compute_parity, stripe %llu, method %d\n",
NeilBrown16a53ec2006-06-26 00:27:38 -07001536 (unsigned long long)sh->sector, method);
1537
1538 switch(method) {
1539 case READ_MODIFY_WRITE:
1540 BUG(); /* READ_MODIFY_WRITE N/A for RAID-6 */
1541 case RECONSTRUCT_WRITE:
1542 for (i= disks; i-- ;)
1543 if ( i != pd_idx && i != qd_idx && sh->dev[i].towrite ) {
1544 chosen = sh->dev[i].towrite;
1545 sh->dev[i].towrite = NULL;
1546
1547 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
1548 wake_up(&conf->wait_for_overlap);
1549
Eric Sesterhenn52e5f9d2006-10-03 23:33:23 +02001550 BUG_ON(sh->dev[i].written);
NeilBrown16a53ec2006-06-26 00:27:38 -07001551 sh->dev[i].written = chosen;
1552 }
1553 break;
1554 case CHECK_PARITY:
1555 BUG(); /* Not implemented yet */
1556 }
1557
1558 for (i = disks; i--;)
1559 if (sh->dev[i].written) {
1560 sector_t sector = sh->dev[i].sector;
1561 struct bio *wbi = sh->dev[i].written;
1562 while (wbi && wbi->bi_sector < sector + STRIPE_SECTORS) {
1563 copy_data(1, wbi, sh->dev[i].page, sector);
1564 wbi = r5_next_bio(wbi, sector);
1565 }
1566
1567 set_bit(R5_LOCKED, &sh->dev[i].flags);
1568 set_bit(R5_UPTODATE, &sh->dev[i].flags);
1569 }
1570
1571// switch(method) {
1572// case RECONSTRUCT_WRITE:
1573// case CHECK_PARITY:
1574// case UPDATE_PARITY:
1575 /* Note that unlike RAID-5, the ordering of the disks matters greatly. */
1576 /* FIX: Is this ordering of drives even remotely optimal? */
1577 count = 0;
1578 i = d0_idx;
1579 do {
1580 ptrs[count++] = page_address(sh->dev[i].page);
1581 if (count <= disks-2 && !test_bit(R5_UPTODATE, &sh->dev[i].flags))
1582 printk("block %d/%d not uptodate on parity calc\n", i,count);
1583 i = raid6_next_disk(i, disks);
1584 } while ( i != d0_idx );
1585// break;
1586// }
1587
1588 raid6_call.gen_syndrome(disks, STRIPE_SIZE, ptrs);
1589
1590 switch(method) {
1591 case RECONSTRUCT_WRITE:
1592 set_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
1593 set_bit(R5_UPTODATE, &sh->dev[qd_idx].flags);
1594 set_bit(R5_LOCKED, &sh->dev[pd_idx].flags);
1595 set_bit(R5_LOCKED, &sh->dev[qd_idx].flags);
1596 break;
1597 case UPDATE_PARITY:
1598 set_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
1599 set_bit(R5_UPTODATE, &sh->dev[qd_idx].flags);
1600 break;
1601 }
1602}
1603
1604
1605/* Compute one missing block */
1606static void compute_block_1(struct stripe_head *sh, int dd_idx, int nozero)
1607{
NeilBrownf4168852007-02-28 20:11:53 -08001608 int i, count, disks = sh->disks;
Dan Williams9bc89cd2007-01-02 11:10:44 -07001609 void *ptr[MAX_XOR_BLOCKS], *dest, *p;
NeilBrown16a53ec2006-06-26 00:27:38 -07001610 int pd_idx = sh->pd_idx;
1611 int qd_idx = raid6_next_disk(pd_idx, disks);
1612
Dan Williams45b42332007-07-09 11:56:43 -07001613 pr_debug("compute_block_1, stripe %llu, idx %d\n",
NeilBrown16a53ec2006-06-26 00:27:38 -07001614 (unsigned long long)sh->sector, dd_idx);
1615
1616 if ( dd_idx == qd_idx ) {
1617 /* We're actually computing the Q drive */
1618 compute_parity6(sh, UPDATE_PARITY);
1619 } else {
Dan Williams9bc89cd2007-01-02 11:10:44 -07001620 dest = page_address(sh->dev[dd_idx].page);
1621 if (!nozero) memset(dest, 0, STRIPE_SIZE);
1622 count = 0;
NeilBrown16a53ec2006-06-26 00:27:38 -07001623 for (i = disks ; i--; ) {
1624 if (i == dd_idx || i == qd_idx)
1625 continue;
1626 p = page_address(sh->dev[i].page);
1627 if (test_bit(R5_UPTODATE, &sh->dev[i].flags))
1628 ptr[count++] = p;
1629 else
1630 printk("compute_block() %d, stripe %llu, %d"
1631 " not present\n", dd_idx,
1632 (unsigned long long)sh->sector, i);
1633
1634 check_xor();
1635 }
Dan Williams9bc89cd2007-01-02 11:10:44 -07001636 if (count)
1637 xor_blocks(count, STRIPE_SIZE, dest, ptr);
NeilBrown16a53ec2006-06-26 00:27:38 -07001638 if (!nozero) set_bit(R5_UPTODATE, &sh->dev[dd_idx].flags);
1639 else clear_bit(R5_UPTODATE, &sh->dev[dd_idx].flags);
1640 }
1641}
1642
1643/* Compute two missing blocks */
1644static void compute_block_2(struct stripe_head *sh, int dd_idx1, int dd_idx2)
1645{
NeilBrownf4168852007-02-28 20:11:53 -08001646 int i, count, disks = sh->disks;
NeilBrown16a53ec2006-06-26 00:27:38 -07001647 int pd_idx = sh->pd_idx;
1648 int qd_idx = raid6_next_disk(pd_idx, disks);
1649 int d0_idx = raid6_next_disk(qd_idx, disks);
1650 int faila, failb;
1651
1652 /* faila and failb are disk numbers relative to d0_idx */
1653 /* pd_idx become disks-2 and qd_idx become disks-1 */
1654 faila = (dd_idx1 < d0_idx) ? dd_idx1+(disks-d0_idx) : dd_idx1-d0_idx;
1655 failb = (dd_idx2 < d0_idx) ? dd_idx2+(disks-d0_idx) : dd_idx2-d0_idx;
1656
1657 BUG_ON(faila == failb);
1658 if ( failb < faila ) { int tmp = faila; faila = failb; failb = tmp; }
1659
Dan Williams45b42332007-07-09 11:56:43 -07001660 pr_debug("compute_block_2, stripe %llu, idx %d,%d (%d,%d)\n",
NeilBrown16a53ec2006-06-26 00:27:38 -07001661 (unsigned long long)sh->sector, dd_idx1, dd_idx2, faila, failb);
1662
1663 if ( failb == disks-1 ) {
1664 /* Q disk is one of the missing disks */
1665 if ( faila == disks-2 ) {
1666 /* Missing P+Q, just recompute */
1667 compute_parity6(sh, UPDATE_PARITY);
1668 return;
1669 } else {
1670 /* We're missing D+Q; recompute D from P */
1671 compute_block_1(sh, (dd_idx1 == qd_idx) ? dd_idx2 : dd_idx1, 0);
1672 compute_parity6(sh, UPDATE_PARITY); /* Is this necessary? */
1673 return;
1674 }
1675 }
1676
1677 /* We're missing D+P or D+D; build pointer table */
1678 {
1679 /**** FIX THIS: This could be very bad if disks is close to 256 ****/
1680 void *ptrs[disks];
1681
1682 count = 0;
1683 i = d0_idx;
1684 do {
1685 ptrs[count++] = page_address(sh->dev[i].page);
1686 i = raid6_next_disk(i, disks);
1687 if (i != dd_idx1 && i != dd_idx2 &&
1688 !test_bit(R5_UPTODATE, &sh->dev[i].flags))
1689 printk("compute_2 with missing block %d/%d\n", count, i);
1690 } while ( i != d0_idx );
1691
1692 if ( failb == disks-2 ) {
1693 /* We're missing D+P. */
1694 raid6_datap_recov(disks, STRIPE_SIZE, faila, ptrs);
1695 } else {
1696 /* We're missing D+D. */
1697 raid6_2data_recov(disks, STRIPE_SIZE, faila, failb, ptrs);
1698 }
1699
1700 /* Both the above update both missing blocks */
1701 set_bit(R5_UPTODATE, &sh->dev[dd_idx1].flags);
1702 set_bit(R5_UPTODATE, &sh->dev[dd_idx2].flags);
1703 }
1704}
1705
Dan Williamse33129d2007-01-02 13:52:30 -07001706static int
1707handle_write_operations5(struct stripe_head *sh, int rcw, int expand)
1708{
1709 int i, pd_idx = sh->pd_idx, disks = sh->disks;
1710 int locked = 0;
NeilBrown16a53ec2006-06-26 00:27:38 -07001711
Dan Williamse33129d2007-01-02 13:52:30 -07001712 if (rcw) {
1713 /* if we are not expanding this is a proper write request, and
1714 * there will be bios with new data to be drained into the
1715 * stripe cache
1716 */
1717 if (!expand) {
1718 set_bit(STRIPE_OP_BIODRAIN, &sh->ops.pending);
1719 sh->ops.count++;
1720 }
1721
1722 set_bit(STRIPE_OP_POSTXOR, &sh->ops.pending);
1723 sh->ops.count++;
1724
1725 for (i = disks; i--; ) {
1726 struct r5dev *dev = &sh->dev[i];
1727
1728 if (dev->towrite) {
1729 set_bit(R5_LOCKED, &dev->flags);
1730 if (!expand)
1731 clear_bit(R5_UPTODATE, &dev->flags);
1732 locked++;
1733 }
1734 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07001735 if (locked + 1 == disks)
1736 if (!test_and_set_bit(STRIPE_FULL_WRITE, &sh->state))
1737 atomic_inc(&sh->raid_conf->pending_full_writes);
Dan Williamse33129d2007-01-02 13:52:30 -07001738 } else {
1739 BUG_ON(!(test_bit(R5_UPTODATE, &sh->dev[pd_idx].flags) ||
1740 test_bit(R5_Wantcompute, &sh->dev[pd_idx].flags)));
1741
1742 set_bit(STRIPE_OP_PREXOR, &sh->ops.pending);
1743 set_bit(STRIPE_OP_BIODRAIN, &sh->ops.pending);
1744 set_bit(STRIPE_OP_POSTXOR, &sh->ops.pending);
1745
1746 sh->ops.count += 3;
1747
1748 for (i = disks; i--; ) {
1749 struct r5dev *dev = &sh->dev[i];
1750 if (i == pd_idx)
1751 continue;
1752
1753 /* For a read-modify write there may be blocks that are
1754 * locked for reading while others are ready to be
1755 * written so we distinguish these blocks by the
1756 * R5_Wantprexor bit
1757 */
1758 if (dev->towrite &&
1759 (test_bit(R5_UPTODATE, &dev->flags) ||
1760 test_bit(R5_Wantcompute, &dev->flags))) {
1761 set_bit(R5_Wantprexor, &dev->flags);
1762 set_bit(R5_LOCKED, &dev->flags);
1763 clear_bit(R5_UPTODATE, &dev->flags);
1764 locked++;
1765 }
1766 }
1767 }
1768
1769 /* keep the parity disk locked while asynchronous operations
1770 * are in flight
1771 */
1772 set_bit(R5_LOCKED, &sh->dev[pd_idx].flags);
1773 clear_bit(R5_UPTODATE, &sh->dev[pd_idx].flags);
1774 locked++;
1775
1776 pr_debug("%s: stripe %llu locked: %d pending: %lx\n",
Harvey Harrisone46b2722008-04-28 02:15:50 -07001777 __func__, (unsigned long long)sh->sector,
Dan Williamse33129d2007-01-02 13:52:30 -07001778 locked, sh->ops.pending);
1779
1780 return locked;
1781}
NeilBrown16a53ec2006-06-26 00:27:38 -07001782
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783/*
1784 * Each stripe/dev can have one or more bion attached.
NeilBrown16a53ec2006-06-26 00:27:38 -07001785 * toread/towrite point to the first in a chain.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 * The bi_next chain must be in order.
1787 */
1788static int add_stripe_bio(struct stripe_head *sh, struct bio *bi, int dd_idx, int forwrite)
1789{
1790 struct bio **bip;
1791 raid5_conf_t *conf = sh->raid_conf;
NeilBrown72626682005-09-09 16:23:54 -07001792 int firstwrite=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
Dan Williams45b42332007-07-09 11:56:43 -07001794 pr_debug("adding bh b#%llu to stripe s#%llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 (unsigned long long)bi->bi_sector,
1796 (unsigned long long)sh->sector);
1797
1798
1799 spin_lock(&sh->lock);
1800 spin_lock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07001801 if (forwrite) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 bip = &sh->dev[dd_idx].towrite;
NeilBrown72626682005-09-09 16:23:54 -07001803 if (*bip == NULL && sh->dev[dd_idx].written == NULL)
1804 firstwrite = 1;
1805 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 bip = &sh->dev[dd_idx].toread;
1807 while (*bip && (*bip)->bi_sector < bi->bi_sector) {
1808 if ((*bip)->bi_sector + ((*bip)->bi_size >> 9) > bi->bi_sector)
1809 goto overlap;
1810 bip = & (*bip)->bi_next;
1811 }
1812 if (*bip && (*bip)->bi_sector < bi->bi_sector + ((bi->bi_size)>>9))
1813 goto overlap;
1814
Eric Sesterhenn78bafeb2006-04-02 13:31:42 +02001815 BUG_ON(*bip && bi->bi_next && (*bip) != bi->bi_next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 if (*bip)
1817 bi->bi_next = *bip;
1818 *bip = bi;
1819 bi->bi_phys_segments ++;
1820 spin_unlock_irq(&conf->device_lock);
1821 spin_unlock(&sh->lock);
1822
Dan Williams45b42332007-07-09 11:56:43 -07001823 pr_debug("added bi b#%llu to stripe s#%llu, disk %d.\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 (unsigned long long)bi->bi_sector,
1825 (unsigned long long)sh->sector, dd_idx);
1826
NeilBrown72626682005-09-09 16:23:54 -07001827 if (conf->mddev->bitmap && firstwrite) {
NeilBrown72626682005-09-09 16:23:54 -07001828 bitmap_startwrite(conf->mddev->bitmap, sh->sector,
1829 STRIPE_SECTORS, 0);
NeilBrownae3c20c2006-07-10 04:44:17 -07001830 sh->bm_seq = conf->seq_flush+1;
NeilBrown72626682005-09-09 16:23:54 -07001831 set_bit(STRIPE_BIT_DELAY, &sh->state);
1832 }
1833
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 if (forwrite) {
1835 /* check if page is covered */
1836 sector_t sector = sh->dev[dd_idx].sector;
1837 for (bi=sh->dev[dd_idx].towrite;
1838 sector < sh->dev[dd_idx].sector + STRIPE_SECTORS &&
1839 bi && bi->bi_sector <= sector;
1840 bi = r5_next_bio(bi, sh->dev[dd_idx].sector)) {
1841 if (bi->bi_sector + (bi->bi_size>>9) >= sector)
1842 sector = bi->bi_sector + (bi->bi_size>>9);
1843 }
1844 if (sector >= sh->dev[dd_idx].sector + STRIPE_SECTORS)
1845 set_bit(R5_OVERWRITE, &sh->dev[dd_idx].flags);
1846 }
1847 return 1;
1848
1849 overlap:
1850 set_bit(R5_Overlap, &sh->dev[dd_idx].flags);
1851 spin_unlock_irq(&conf->device_lock);
1852 spin_unlock(&sh->lock);
1853 return 0;
1854}
1855
NeilBrown29269552006-03-27 01:18:10 -08001856static void end_reshape(raid5_conf_t *conf);
1857
NeilBrown16a53ec2006-06-26 00:27:38 -07001858static int page_is_zero(struct page *p)
1859{
1860 char *a = page_address(p);
1861 return ((*(u32*)a) == 0 &&
1862 memcmp(a, a+4, STRIPE_SIZE-4)==0);
1863}
1864
NeilBrownccfcc3c2006-03-27 01:18:09 -08001865static int stripe_to_pdidx(sector_t stripe, raid5_conf_t *conf, int disks)
1866{
1867 int sectors_per_chunk = conf->chunk_size >> 9;
NeilBrownccfcc3c2006-03-27 01:18:09 -08001868 int pd_idx, dd_idx;
Coywolf Qi Hunt2d2063c2006-10-03 01:15:50 -07001869 int chunk_offset = sector_div(stripe, sectors_per_chunk);
1870
NeilBrownb875e532006-12-10 02:20:49 -08001871 raid5_compute_sector(stripe * (disks - conf->max_degraded)
1872 *sectors_per_chunk + chunk_offset,
1873 disks, disks - conf->max_degraded,
1874 &dd_idx, &pd_idx, conf);
NeilBrownccfcc3c2006-03-27 01:18:09 -08001875 return pd_idx;
1876}
1877
Dan Williamsa4456852007-07-09 11:56:43 -07001878static void
1879handle_requests_to_failed_array(raid5_conf_t *conf, struct stripe_head *sh,
1880 struct stripe_head_state *s, int disks,
1881 struct bio **return_bi)
1882{
1883 int i;
1884 for (i = disks; i--; ) {
1885 struct bio *bi;
1886 int bitmap_end = 0;
1887
1888 if (test_bit(R5_ReadError, &sh->dev[i].flags)) {
1889 mdk_rdev_t *rdev;
1890 rcu_read_lock();
1891 rdev = rcu_dereference(conf->disks[i].rdev);
1892 if (rdev && test_bit(In_sync, &rdev->flags))
1893 /* multiple read failures in one stripe */
1894 md_error(conf->mddev, rdev);
1895 rcu_read_unlock();
1896 }
1897 spin_lock_irq(&conf->device_lock);
1898 /* fail all writes first */
1899 bi = sh->dev[i].towrite;
1900 sh->dev[i].towrite = NULL;
1901 if (bi) {
1902 s->to_write--;
1903 bitmap_end = 1;
1904 }
1905
1906 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
1907 wake_up(&conf->wait_for_overlap);
1908
1909 while (bi && bi->bi_sector <
1910 sh->dev[i].sector + STRIPE_SECTORS) {
1911 struct bio *nextbi = r5_next_bio(bi, sh->dev[i].sector);
1912 clear_bit(BIO_UPTODATE, &bi->bi_flags);
1913 if (--bi->bi_phys_segments == 0) {
1914 md_write_end(conf->mddev);
1915 bi->bi_next = *return_bi;
1916 *return_bi = bi;
1917 }
1918 bi = nextbi;
1919 }
1920 /* and fail all 'written' */
1921 bi = sh->dev[i].written;
1922 sh->dev[i].written = NULL;
1923 if (bi) bitmap_end = 1;
1924 while (bi && bi->bi_sector <
1925 sh->dev[i].sector + STRIPE_SECTORS) {
1926 struct bio *bi2 = r5_next_bio(bi, sh->dev[i].sector);
1927 clear_bit(BIO_UPTODATE, &bi->bi_flags);
1928 if (--bi->bi_phys_segments == 0) {
1929 md_write_end(conf->mddev);
1930 bi->bi_next = *return_bi;
1931 *return_bi = bi;
1932 }
1933 bi = bi2;
1934 }
1935
Dan Williamsb5e98d62007-01-02 13:52:31 -07001936 /* fail any reads if this device is non-operational and
1937 * the data has not reached the cache yet.
1938 */
1939 if (!test_bit(R5_Wantfill, &sh->dev[i].flags) &&
1940 (!test_bit(R5_Insync, &sh->dev[i].flags) ||
1941 test_bit(R5_ReadError, &sh->dev[i].flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07001942 bi = sh->dev[i].toread;
1943 sh->dev[i].toread = NULL;
1944 if (test_and_clear_bit(R5_Overlap, &sh->dev[i].flags))
1945 wake_up(&conf->wait_for_overlap);
1946 if (bi) s->to_read--;
1947 while (bi && bi->bi_sector <
1948 sh->dev[i].sector + STRIPE_SECTORS) {
1949 struct bio *nextbi =
1950 r5_next_bio(bi, sh->dev[i].sector);
1951 clear_bit(BIO_UPTODATE, &bi->bi_flags);
1952 if (--bi->bi_phys_segments == 0) {
1953 bi->bi_next = *return_bi;
1954 *return_bi = bi;
1955 }
1956 bi = nextbi;
1957 }
1958 }
1959 spin_unlock_irq(&conf->device_lock);
1960 if (bitmap_end)
1961 bitmap_endwrite(conf->mddev->bitmap, sh->sector,
1962 STRIPE_SECTORS, 0, 0);
1963 }
1964
Dan Williams8b3e6cd2008-04-28 02:15:53 -07001965 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
1966 if (atomic_dec_and_test(&conf->pending_full_writes))
1967 md_wakeup_thread(conf->mddev->thread);
Dan Williamsa4456852007-07-09 11:56:43 -07001968}
1969
Dan Williamsf38e1212007-01-02 13:52:30 -07001970/* __handle_issuing_new_read_requests5 - returns 0 if there are no more disks
1971 * to process
1972 */
1973static int __handle_issuing_new_read_requests5(struct stripe_head *sh,
1974 struct stripe_head_state *s, int disk_idx, int disks)
1975{
1976 struct r5dev *dev = &sh->dev[disk_idx];
1977 struct r5dev *failed_dev = &sh->dev[s->failed_num];
1978
1979 /* don't schedule compute operations or reads on the parity block while
1980 * a check is in flight
1981 */
1982 if ((disk_idx == sh->pd_idx) &&
1983 test_bit(STRIPE_OP_CHECK, &sh->ops.pending))
1984 return ~0;
1985
1986 /* is the data in this block needed, and can we get it? */
1987 if (!test_bit(R5_LOCKED, &dev->flags) &&
1988 !test_bit(R5_UPTODATE, &dev->flags) && (dev->toread ||
1989 (dev->towrite && !test_bit(R5_OVERWRITE, &dev->flags)) ||
1990 s->syncing || s->expanding || (s->failed &&
1991 (failed_dev->toread || (failed_dev->towrite &&
1992 !test_bit(R5_OVERWRITE, &failed_dev->flags)
1993 ))))) {
1994 /* 1/ We would like to get this block, possibly by computing it,
1995 * but we might not be able to.
1996 *
1997 * 2/ Since parity check operations potentially make the parity
1998 * block !uptodate it will need to be refreshed before any
1999 * compute operations on data disks are scheduled.
2000 *
2001 * 3/ We hold off parity block re-reads until check operations
2002 * have quiesced.
2003 */
2004 if ((s->uptodate == disks - 1) &&
2005 !test_bit(STRIPE_OP_CHECK, &sh->ops.pending)) {
2006 set_bit(STRIPE_OP_COMPUTE_BLK, &sh->ops.pending);
2007 set_bit(R5_Wantcompute, &dev->flags);
2008 sh->ops.target = disk_idx;
2009 s->req_compute = 1;
2010 sh->ops.count++;
2011 /* Careful: from this point on 'uptodate' is in the eye
2012 * of raid5_run_ops which services 'compute' operations
2013 * before writes. R5_Wantcompute flags a block that will
2014 * be R5_UPTODATE by the time it is needed for a
2015 * subsequent operation.
2016 */
2017 s->uptodate++;
2018 return 0; /* uptodate + compute == disks */
2019 } else if ((s->uptodate < disks - 1) &&
2020 test_bit(R5_Insync, &dev->flags)) {
2021 /* Note: we hold off compute operations while checks are
2022 * in flight, but we still prefer 'compute' over 'read'
2023 * hence we only read if (uptodate < * disks-1)
2024 */
2025 set_bit(R5_LOCKED, &dev->flags);
2026 set_bit(R5_Wantread, &dev->flags);
2027 if (!test_and_set_bit(STRIPE_OP_IO, &sh->ops.pending))
2028 sh->ops.count++;
2029 s->locked++;
2030 pr_debug("Reading block %d (sync=%d)\n", disk_idx,
2031 s->syncing);
2032 }
2033 }
2034
2035 return ~0;
2036}
2037
Dan Williamsa4456852007-07-09 11:56:43 -07002038static void handle_issuing_new_read_requests5(struct stripe_head *sh,
2039 struct stripe_head_state *s, int disks)
2040{
2041 int i;
Dan Williamsf38e1212007-01-02 13:52:30 -07002042
2043 /* Clear completed compute operations. Parity recovery
2044 * (STRIPE_OP_MOD_REPAIR_PD) implies a write-back which is handled
2045 * later on in this routine
2046 */
2047 if (test_bit(STRIPE_OP_COMPUTE_BLK, &sh->ops.complete) &&
2048 !test_bit(STRIPE_OP_MOD_REPAIR_PD, &sh->ops.pending)) {
2049 clear_bit(STRIPE_OP_COMPUTE_BLK, &sh->ops.complete);
2050 clear_bit(STRIPE_OP_COMPUTE_BLK, &sh->ops.ack);
2051 clear_bit(STRIPE_OP_COMPUTE_BLK, &sh->ops.pending);
2052 }
2053
2054 /* look for blocks to read/compute, skip this if a compute
2055 * is already in flight, or if the stripe contents are in the
2056 * midst of changing due to a write
2057 */
2058 if (!test_bit(STRIPE_OP_COMPUTE_BLK, &sh->ops.pending) &&
2059 !test_bit(STRIPE_OP_PREXOR, &sh->ops.pending) &&
2060 !test_bit(STRIPE_OP_POSTXOR, &sh->ops.pending)) {
2061 for (i = disks; i--; )
2062 if (__handle_issuing_new_read_requests5(
2063 sh, s, i, disks) == 0)
2064 break;
Dan Williamsa4456852007-07-09 11:56:43 -07002065 }
2066 set_bit(STRIPE_HANDLE, &sh->state);
2067}
2068
2069static void handle_issuing_new_read_requests6(struct stripe_head *sh,
2070 struct stripe_head_state *s, struct r6_state *r6s,
2071 int disks)
2072{
2073 int i;
2074 for (i = disks; i--; ) {
2075 struct r5dev *dev = &sh->dev[i];
2076 if (!test_bit(R5_LOCKED, &dev->flags) &&
2077 !test_bit(R5_UPTODATE, &dev->flags) &&
2078 (dev->toread || (dev->towrite &&
2079 !test_bit(R5_OVERWRITE, &dev->flags)) ||
2080 s->syncing || s->expanding ||
2081 (s->failed >= 1 &&
2082 (sh->dev[r6s->failed_num[0]].toread ||
2083 s->to_write)) ||
2084 (s->failed >= 2 &&
2085 (sh->dev[r6s->failed_num[1]].toread ||
2086 s->to_write)))) {
2087 /* we would like to get this block, possibly
2088 * by computing it, but we might not be able to
2089 */
2090 if (s->uptodate == disks-1) {
Dan Williams45b42332007-07-09 11:56:43 -07002091 pr_debug("Computing stripe %llu block %d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002092 (unsigned long long)sh->sector, i);
2093 compute_block_1(sh, i, 0);
2094 s->uptodate++;
2095 } else if ( s->uptodate == disks-2 && s->failed >= 2 ) {
2096 /* Computing 2-failure is *very* expensive; only
2097 * do it if failed >= 2
2098 */
2099 int other;
2100 for (other = disks; other--; ) {
2101 if (other == i)
2102 continue;
2103 if (!test_bit(R5_UPTODATE,
2104 &sh->dev[other].flags))
2105 break;
2106 }
2107 BUG_ON(other < 0);
Dan Williams45b42332007-07-09 11:56:43 -07002108 pr_debug("Computing stripe %llu blocks %d,%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002109 (unsigned long long)sh->sector,
2110 i, other);
2111 compute_block_2(sh, i, other);
2112 s->uptodate += 2;
2113 } else if (test_bit(R5_Insync, &dev->flags)) {
2114 set_bit(R5_LOCKED, &dev->flags);
2115 set_bit(R5_Wantread, &dev->flags);
2116 s->locked++;
Dan Williams45b42332007-07-09 11:56:43 -07002117 pr_debug("Reading block %d (sync=%d)\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002118 i, s->syncing);
2119 }
2120 }
2121 }
2122 set_bit(STRIPE_HANDLE, &sh->state);
2123}
2124
2125
2126/* handle_completed_write_requests
2127 * any written block on an uptodate or failed drive can be returned.
2128 * Note that if we 'wrote' to a failed drive, it will be UPTODATE, but
2129 * never LOCKED, so we don't need to test 'failed' directly.
2130 */
2131static void handle_completed_write_requests(raid5_conf_t *conf,
2132 struct stripe_head *sh, int disks, struct bio **return_bi)
2133{
2134 int i;
2135 struct r5dev *dev;
2136
2137 for (i = disks; i--; )
2138 if (sh->dev[i].written) {
2139 dev = &sh->dev[i];
2140 if (!test_bit(R5_LOCKED, &dev->flags) &&
2141 test_bit(R5_UPTODATE, &dev->flags)) {
2142 /* We can return any write requests */
2143 struct bio *wbi, *wbi2;
2144 int bitmap_end = 0;
Dan Williams45b42332007-07-09 11:56:43 -07002145 pr_debug("Return write for disc %d\n", i);
Dan Williamsa4456852007-07-09 11:56:43 -07002146 spin_lock_irq(&conf->device_lock);
2147 wbi = dev->written;
2148 dev->written = NULL;
2149 while (wbi && wbi->bi_sector <
2150 dev->sector + STRIPE_SECTORS) {
2151 wbi2 = r5_next_bio(wbi, dev->sector);
2152 if (--wbi->bi_phys_segments == 0) {
2153 md_write_end(conf->mddev);
2154 wbi->bi_next = *return_bi;
2155 *return_bi = wbi;
2156 }
2157 wbi = wbi2;
2158 }
2159 if (dev->towrite == NULL)
2160 bitmap_end = 1;
2161 spin_unlock_irq(&conf->device_lock);
2162 if (bitmap_end)
2163 bitmap_endwrite(conf->mddev->bitmap,
2164 sh->sector,
2165 STRIPE_SECTORS,
2166 !test_bit(STRIPE_DEGRADED, &sh->state),
2167 0);
2168 }
2169 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002170
2171 if (test_and_clear_bit(STRIPE_FULL_WRITE, &sh->state))
2172 if (atomic_dec_and_test(&conf->pending_full_writes))
2173 md_wakeup_thread(conf->mddev->thread);
Dan Williamsa4456852007-07-09 11:56:43 -07002174}
2175
2176static void handle_issuing_new_write_requests5(raid5_conf_t *conf,
2177 struct stripe_head *sh, struct stripe_head_state *s, int disks)
2178{
2179 int rmw = 0, rcw = 0, i;
2180 for (i = disks; i--; ) {
2181 /* would I have to read this buffer for read_modify_write */
2182 struct r5dev *dev = &sh->dev[i];
2183 if ((dev->towrite || i == sh->pd_idx) &&
2184 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002185 !(test_bit(R5_UPTODATE, &dev->flags) ||
2186 test_bit(R5_Wantcompute, &dev->flags))) {
Dan Williamsa4456852007-07-09 11:56:43 -07002187 if (test_bit(R5_Insync, &dev->flags))
2188 rmw++;
2189 else
2190 rmw += 2*disks; /* cannot read it */
2191 }
2192 /* Would I have to read this buffer for reconstruct_write */
2193 if (!test_bit(R5_OVERWRITE, &dev->flags) && i != sh->pd_idx &&
2194 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002195 !(test_bit(R5_UPTODATE, &dev->flags) ||
2196 test_bit(R5_Wantcompute, &dev->flags))) {
2197 if (test_bit(R5_Insync, &dev->flags)) rcw++;
Dan Williamsa4456852007-07-09 11:56:43 -07002198 else
2199 rcw += 2*disks;
2200 }
2201 }
Dan Williams45b42332007-07-09 11:56:43 -07002202 pr_debug("for sector %llu, rmw=%d rcw=%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002203 (unsigned long long)sh->sector, rmw, rcw);
2204 set_bit(STRIPE_HANDLE, &sh->state);
2205 if (rmw < rcw && rmw > 0)
2206 /* prefer read-modify-write, but need to get some data */
2207 for (i = disks; i--; ) {
2208 struct r5dev *dev = &sh->dev[i];
2209 if ((dev->towrite || i == sh->pd_idx) &&
2210 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002211 !(test_bit(R5_UPTODATE, &dev->flags) ||
2212 test_bit(R5_Wantcompute, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07002213 test_bit(R5_Insync, &dev->flags)) {
2214 if (
2215 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07002216 pr_debug("Read_old block "
Dan Williamsa4456852007-07-09 11:56:43 -07002217 "%d for r-m-w\n", i);
2218 set_bit(R5_LOCKED, &dev->flags);
2219 set_bit(R5_Wantread, &dev->flags);
Dan Williams830ea012007-01-02 13:52:31 -07002220 if (!test_and_set_bit(
2221 STRIPE_OP_IO, &sh->ops.pending))
2222 sh->ops.count++;
Dan Williamsa4456852007-07-09 11:56:43 -07002223 s->locked++;
2224 } else {
2225 set_bit(STRIPE_DELAYED, &sh->state);
2226 set_bit(STRIPE_HANDLE, &sh->state);
2227 }
2228 }
2229 }
2230 if (rcw <= rmw && rcw > 0)
2231 /* want reconstruct write, but need to get some data */
2232 for (i = disks; i--; ) {
2233 struct r5dev *dev = &sh->dev[i];
2234 if (!test_bit(R5_OVERWRITE, &dev->flags) &&
2235 i != sh->pd_idx &&
2236 !test_bit(R5_LOCKED, &dev->flags) &&
Dan Williamsf38e1212007-01-02 13:52:30 -07002237 !(test_bit(R5_UPTODATE, &dev->flags) ||
2238 test_bit(R5_Wantcompute, &dev->flags)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07002239 test_bit(R5_Insync, &dev->flags)) {
2240 if (
2241 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07002242 pr_debug("Read_old block "
Dan Williamsa4456852007-07-09 11:56:43 -07002243 "%d for Reconstruct\n", i);
2244 set_bit(R5_LOCKED, &dev->flags);
2245 set_bit(R5_Wantread, &dev->flags);
Dan Williams830ea012007-01-02 13:52:31 -07002246 if (!test_and_set_bit(
2247 STRIPE_OP_IO, &sh->ops.pending))
2248 sh->ops.count++;
Dan Williamsa4456852007-07-09 11:56:43 -07002249 s->locked++;
2250 } else {
2251 set_bit(STRIPE_DELAYED, &sh->state);
2252 set_bit(STRIPE_HANDLE, &sh->state);
2253 }
2254 }
2255 }
2256 /* now if nothing is locked, and if we have enough data,
2257 * we can start a write request
2258 */
Dan Williamsf38e1212007-01-02 13:52:30 -07002259 /* since handle_stripe can be called at any time we need to handle the
2260 * case where a compute block operation has been submitted and then a
2261 * subsequent call wants to start a write request. raid5_run_ops only
2262 * handles the case where compute block and postxor are requested
2263 * simultaneously. If this is not the case then new writes need to be
2264 * held off until the compute completes.
2265 */
2266 if ((s->req_compute ||
2267 !test_bit(STRIPE_OP_COMPUTE_BLK, &sh->ops.pending)) &&
2268 (s->locked == 0 && (rcw == 0 || rmw == 0) &&
2269 !test_bit(STRIPE_BIT_DELAY, &sh->state)))
Dan Williamse33129d2007-01-02 13:52:30 -07002270 s->locked += handle_write_operations5(sh, rcw == 0, 0);
Dan Williamsa4456852007-07-09 11:56:43 -07002271}
2272
2273static void handle_issuing_new_write_requests6(raid5_conf_t *conf,
2274 struct stripe_head *sh, struct stripe_head_state *s,
2275 struct r6_state *r6s, int disks)
2276{
2277 int rcw = 0, must_compute = 0, pd_idx = sh->pd_idx, i;
2278 int qd_idx = r6s->qd_idx;
2279 for (i = disks; i--; ) {
2280 struct r5dev *dev = &sh->dev[i];
2281 /* Would I have to read this buffer for reconstruct_write */
2282 if (!test_bit(R5_OVERWRITE, &dev->flags)
2283 && i != pd_idx && i != qd_idx
2284 && (!test_bit(R5_LOCKED, &dev->flags)
2285 ) &&
2286 !test_bit(R5_UPTODATE, &dev->flags)) {
2287 if (test_bit(R5_Insync, &dev->flags)) rcw++;
2288 else {
Dan Williams45b42332007-07-09 11:56:43 -07002289 pr_debug("raid6: must_compute: "
Dan Williamsa4456852007-07-09 11:56:43 -07002290 "disk %d flags=%#lx\n", i, dev->flags);
2291 must_compute++;
2292 }
2293 }
2294 }
Dan Williams45b42332007-07-09 11:56:43 -07002295 pr_debug("for sector %llu, rcw=%d, must_compute=%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002296 (unsigned long long)sh->sector, rcw, must_compute);
2297 set_bit(STRIPE_HANDLE, &sh->state);
2298
2299 if (rcw > 0)
2300 /* want reconstruct write, but need to get some data */
2301 for (i = disks; i--; ) {
2302 struct r5dev *dev = &sh->dev[i];
2303 if (!test_bit(R5_OVERWRITE, &dev->flags)
2304 && !(s->failed == 0 && (i == pd_idx || i == qd_idx))
2305 && !test_bit(R5_LOCKED, &dev->flags) &&
2306 !test_bit(R5_UPTODATE, &dev->flags) &&
2307 test_bit(R5_Insync, &dev->flags)) {
2308 if (
2309 test_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
Dan Williams45b42332007-07-09 11:56:43 -07002310 pr_debug("Read_old stripe %llu "
Dan Williamsa4456852007-07-09 11:56:43 -07002311 "block %d for Reconstruct\n",
2312 (unsigned long long)sh->sector, i);
2313 set_bit(R5_LOCKED, &dev->flags);
2314 set_bit(R5_Wantread, &dev->flags);
2315 s->locked++;
2316 } else {
Dan Williams45b42332007-07-09 11:56:43 -07002317 pr_debug("Request delayed stripe %llu "
Dan Williamsa4456852007-07-09 11:56:43 -07002318 "block %d for Reconstruct\n",
2319 (unsigned long long)sh->sector, i);
2320 set_bit(STRIPE_DELAYED, &sh->state);
2321 set_bit(STRIPE_HANDLE, &sh->state);
2322 }
2323 }
2324 }
2325 /* now if nothing is locked, and if we have enough data, we can start a
2326 * write request
2327 */
2328 if (s->locked == 0 && rcw == 0 &&
2329 !test_bit(STRIPE_BIT_DELAY, &sh->state)) {
2330 if (must_compute > 0) {
2331 /* We have failed blocks and need to compute them */
2332 switch (s->failed) {
2333 case 0:
2334 BUG();
2335 case 1:
2336 compute_block_1(sh, r6s->failed_num[0], 0);
2337 break;
2338 case 2:
2339 compute_block_2(sh, r6s->failed_num[0],
2340 r6s->failed_num[1]);
2341 break;
2342 default: /* This request should have been failed? */
2343 BUG();
2344 }
2345 }
2346
Dan Williams45b42332007-07-09 11:56:43 -07002347 pr_debug("Computing parity for stripe %llu\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002348 (unsigned long long)sh->sector);
2349 compute_parity6(sh, RECONSTRUCT_WRITE);
2350 /* now every locked buffer is ready to be written */
2351 for (i = disks; i--; )
2352 if (test_bit(R5_LOCKED, &sh->dev[i].flags)) {
Dan Williams45b42332007-07-09 11:56:43 -07002353 pr_debug("Writing stripe %llu block %d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002354 (unsigned long long)sh->sector, i);
2355 s->locked++;
2356 set_bit(R5_Wantwrite, &sh->dev[i].flags);
2357 }
Dan Williams8b3e6cd2008-04-28 02:15:53 -07002358 if (s->locked == disks)
2359 if (!test_and_set_bit(STRIPE_FULL_WRITE, &sh->state))
2360 atomic_inc(&conf->pending_full_writes);
Dan Williamsa4456852007-07-09 11:56:43 -07002361 /* after a RECONSTRUCT_WRITE, the stripe MUST be in-sync */
2362 set_bit(STRIPE_INSYNC, &sh->state);
2363
2364 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
2365 atomic_dec(&conf->preread_active_stripes);
2366 if (atomic_read(&conf->preread_active_stripes) <
2367 IO_THRESHOLD)
2368 md_wakeup_thread(conf->mddev->thread);
2369 }
2370 }
2371}
2372
2373static void handle_parity_checks5(raid5_conf_t *conf, struct stripe_head *sh,
2374 struct stripe_head_state *s, int disks)
2375{
Dan Williamsbd2ab672008-04-10 21:29:27 -07002376 int canceled_check = 0;
Dan Williamse89f8962007-01-02 13:52:31 -07002377
Dan Williamsbd2ab672008-04-10 21:29:27 -07002378 set_bit(STRIPE_HANDLE, &sh->state);
2379
2380 /* complete a check operation */
2381 if (test_and_clear_bit(STRIPE_OP_CHECK, &sh->ops.complete)) {
Dan Williamsc88944192008-05-12 14:02:12 -07002382 clear_bit(STRIPE_OP_CHECK, &sh->ops.ack);
2383 clear_bit(STRIPE_OP_CHECK, &sh->ops.pending);
Dan Williamsbd2ab672008-04-10 21:29:27 -07002384 if (s->failed == 0) {
Dan Williamse89f8962007-01-02 13:52:31 -07002385 if (sh->ops.zero_sum_result == 0)
2386 /* parity is correct (on disc,
2387 * not in buffer any more)
2388 */
Dan Williamsa4456852007-07-09 11:56:43 -07002389 set_bit(STRIPE_INSYNC, &sh->state);
2390 else {
Dan Williamse89f8962007-01-02 13:52:31 -07002391 conf->mddev->resync_mismatches +=
2392 STRIPE_SECTORS;
2393 if (test_bit(
2394 MD_RECOVERY_CHECK, &conf->mddev->recovery))
2395 /* don't try to repair!! */
2396 set_bit(STRIPE_INSYNC, &sh->state);
2397 else {
2398 set_bit(STRIPE_OP_COMPUTE_BLK,
2399 &sh->ops.pending);
2400 set_bit(STRIPE_OP_MOD_REPAIR_PD,
2401 &sh->ops.pending);
2402 set_bit(R5_Wantcompute,
2403 &sh->dev[sh->pd_idx].flags);
2404 sh->ops.target = sh->pd_idx;
2405 sh->ops.count++;
2406 s->uptodate++;
2407 }
Dan Williamsa4456852007-07-09 11:56:43 -07002408 }
Dan Williamsbd2ab672008-04-10 21:29:27 -07002409 } else
2410 canceled_check = 1; /* STRIPE_INSYNC is not set */
Dan Williamsa4456852007-07-09 11:56:43 -07002411 }
Dan Williamse89f8962007-01-02 13:52:31 -07002412
Dan Williamsbd2ab672008-04-10 21:29:27 -07002413 /* start a new check operation if there are no failures, the stripe is
2414 * not insync, and a repair is not in flight
Dan Williamse89f8962007-01-02 13:52:31 -07002415 */
Dan Williamsbd2ab672008-04-10 21:29:27 -07002416 if (s->failed == 0 &&
2417 !test_bit(STRIPE_INSYNC, &sh->state) &&
2418 !test_bit(STRIPE_OP_MOD_REPAIR_PD, &sh->ops.pending)) {
2419 if (!test_and_set_bit(STRIPE_OP_CHECK, &sh->ops.pending)) {
2420 BUG_ON(s->uptodate != disks);
2421 clear_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags);
2422 sh->ops.count++;
2423 s->uptodate--;
2424 }
2425 }
2426
Dan Williamsc88944192008-05-12 14:02:12 -07002427 /* check if we can clear a parity disk reconstruct */
2428 if (test_bit(STRIPE_OP_COMPUTE_BLK, &sh->ops.complete) &&
2429 test_bit(STRIPE_OP_MOD_REPAIR_PD, &sh->ops.pending)) {
2430
2431 clear_bit(STRIPE_OP_MOD_REPAIR_PD, &sh->ops.pending);
2432 clear_bit(STRIPE_OP_COMPUTE_BLK, &sh->ops.complete);
2433 clear_bit(STRIPE_OP_COMPUTE_BLK, &sh->ops.ack);
2434 clear_bit(STRIPE_OP_COMPUTE_BLK, &sh->ops.pending);
2435 }
2436
2437
Dan Williamsbd2ab672008-04-10 21:29:27 -07002438 /* Wait for check parity and compute block operations to complete
2439 * before write-back. If a failure occurred while the check operation
2440 * was in flight we need to cycle this stripe through handle_stripe
2441 * since the parity block may not be uptodate
2442 */
2443 if (!canceled_check && !test_bit(STRIPE_INSYNC, &sh->state) &&
2444 !test_bit(STRIPE_OP_CHECK, &sh->ops.pending) &&
2445 !test_bit(STRIPE_OP_COMPUTE_BLK, &sh->ops.pending)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002446 struct r5dev *dev;
2447 /* either failed parity check, or recovery is happening */
2448 if (s->failed == 0)
2449 s->failed_num = sh->pd_idx;
2450 dev = &sh->dev[s->failed_num];
2451 BUG_ON(!test_bit(R5_UPTODATE, &dev->flags));
2452 BUG_ON(s->uptodate != disks);
2453
2454 set_bit(R5_LOCKED, &dev->flags);
2455 set_bit(R5_Wantwrite, &dev->flags);
Dan Williams830ea012007-01-02 13:52:31 -07002456 if (!test_and_set_bit(STRIPE_OP_IO, &sh->ops.pending))
2457 sh->ops.count++;
2458
Dan Williamsa4456852007-07-09 11:56:43 -07002459 clear_bit(STRIPE_DEGRADED, &sh->state);
2460 s->locked++;
2461 set_bit(STRIPE_INSYNC, &sh->state);
2462 }
2463}
2464
2465
2466static void handle_parity_checks6(raid5_conf_t *conf, struct stripe_head *sh,
2467 struct stripe_head_state *s,
2468 struct r6_state *r6s, struct page *tmp_page,
2469 int disks)
2470{
2471 int update_p = 0, update_q = 0;
2472 struct r5dev *dev;
2473 int pd_idx = sh->pd_idx;
2474 int qd_idx = r6s->qd_idx;
2475
2476 set_bit(STRIPE_HANDLE, &sh->state);
2477
2478 BUG_ON(s->failed > 2);
2479 BUG_ON(s->uptodate < disks);
2480 /* Want to check and possibly repair P and Q.
2481 * However there could be one 'failed' device, in which
2482 * case we can only check one of them, possibly using the
2483 * other to generate missing data
2484 */
2485
2486 /* If !tmp_page, we cannot do the calculations,
2487 * but as we have set STRIPE_HANDLE, we will soon be called
2488 * by stripe_handle with a tmp_page - just wait until then.
2489 */
2490 if (tmp_page) {
2491 if (s->failed == r6s->q_failed) {
2492 /* The only possible failed device holds 'Q', so it
2493 * makes sense to check P (If anything else were failed,
2494 * we would have used P to recreate it).
2495 */
2496 compute_block_1(sh, pd_idx, 1);
2497 if (!page_is_zero(sh->dev[pd_idx].page)) {
2498 compute_block_1(sh, pd_idx, 0);
2499 update_p = 1;
2500 }
2501 }
2502 if (!r6s->q_failed && s->failed < 2) {
2503 /* q is not failed, and we didn't use it to generate
2504 * anything, so it makes sense to check it
2505 */
2506 memcpy(page_address(tmp_page),
2507 page_address(sh->dev[qd_idx].page),
2508 STRIPE_SIZE);
2509 compute_parity6(sh, UPDATE_PARITY);
2510 if (memcmp(page_address(tmp_page),
2511 page_address(sh->dev[qd_idx].page),
2512 STRIPE_SIZE) != 0) {
2513 clear_bit(STRIPE_INSYNC, &sh->state);
2514 update_q = 1;
2515 }
2516 }
2517 if (update_p || update_q) {
2518 conf->mddev->resync_mismatches += STRIPE_SECTORS;
2519 if (test_bit(MD_RECOVERY_CHECK, &conf->mddev->recovery))
2520 /* don't try to repair!! */
2521 update_p = update_q = 0;
2522 }
2523
2524 /* now write out any block on a failed drive,
2525 * or P or Q if they need it
2526 */
2527
2528 if (s->failed == 2) {
2529 dev = &sh->dev[r6s->failed_num[1]];
2530 s->locked++;
2531 set_bit(R5_LOCKED, &dev->flags);
2532 set_bit(R5_Wantwrite, &dev->flags);
2533 }
2534 if (s->failed >= 1) {
2535 dev = &sh->dev[r6s->failed_num[0]];
2536 s->locked++;
2537 set_bit(R5_LOCKED, &dev->flags);
2538 set_bit(R5_Wantwrite, &dev->flags);
2539 }
2540
2541 if (update_p) {
2542 dev = &sh->dev[pd_idx];
2543 s->locked++;
2544 set_bit(R5_LOCKED, &dev->flags);
2545 set_bit(R5_Wantwrite, &dev->flags);
2546 }
2547 if (update_q) {
2548 dev = &sh->dev[qd_idx];
2549 s->locked++;
2550 set_bit(R5_LOCKED, &dev->flags);
2551 set_bit(R5_Wantwrite, &dev->flags);
2552 }
2553 clear_bit(STRIPE_DEGRADED, &sh->state);
2554
2555 set_bit(STRIPE_INSYNC, &sh->state);
2556 }
2557}
2558
2559static void handle_stripe_expansion(raid5_conf_t *conf, struct stripe_head *sh,
2560 struct r6_state *r6s)
2561{
2562 int i;
2563
2564 /* We have read all the blocks in this stripe and now we need to
2565 * copy some of them into a target stripe for expand.
2566 */
Dan Williamsf0a50d32007-01-02 13:52:31 -07002567 struct dma_async_tx_descriptor *tx = NULL;
Dan Williamsa4456852007-07-09 11:56:43 -07002568 clear_bit(STRIPE_EXPAND_SOURCE, &sh->state);
2569 for (i = 0; i < sh->disks; i++)
NeilBrowna2e08552007-09-11 15:23:36 -07002570 if (i != sh->pd_idx && (!r6s || i != r6s->qd_idx)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002571 int dd_idx, pd_idx, j;
2572 struct stripe_head *sh2;
2573
2574 sector_t bn = compute_blocknr(sh, i);
2575 sector_t s = raid5_compute_sector(bn, conf->raid_disks,
2576 conf->raid_disks -
2577 conf->max_degraded, &dd_idx,
2578 &pd_idx, conf);
2579 sh2 = get_active_stripe(conf, s, conf->raid_disks,
2580 pd_idx, 1);
2581 if (sh2 == NULL)
2582 /* so far only the early blocks of this stripe
2583 * have been requested. When later blocks
2584 * get requested, we will try again
2585 */
2586 continue;
2587 if (!test_bit(STRIPE_EXPANDING, &sh2->state) ||
2588 test_bit(R5_Expanded, &sh2->dev[dd_idx].flags)) {
2589 /* must have already done this block */
2590 release_stripe(sh2);
2591 continue;
2592 }
Dan Williamsf0a50d32007-01-02 13:52:31 -07002593
2594 /* place all the copies on one channel */
2595 tx = async_memcpy(sh2->dev[dd_idx].page,
2596 sh->dev[i].page, 0, 0, STRIPE_SIZE,
2597 ASYNC_TX_DEP_ACK, tx, NULL, NULL);
2598
Dan Williamsa4456852007-07-09 11:56:43 -07002599 set_bit(R5_Expanded, &sh2->dev[dd_idx].flags);
2600 set_bit(R5_UPTODATE, &sh2->dev[dd_idx].flags);
2601 for (j = 0; j < conf->raid_disks; j++)
2602 if (j != sh2->pd_idx &&
NeilBrowna2e08552007-09-11 15:23:36 -07002603 (!r6s || j != raid6_next_disk(sh2->pd_idx,
2604 sh2->disks)) &&
Dan Williamsa4456852007-07-09 11:56:43 -07002605 !test_bit(R5_Expanded, &sh2->dev[j].flags))
2606 break;
2607 if (j == conf->raid_disks) {
2608 set_bit(STRIPE_EXPAND_READY, &sh2->state);
2609 set_bit(STRIPE_HANDLE, &sh2->state);
2610 }
2611 release_stripe(sh2);
Dan Williamsf0a50d32007-01-02 13:52:31 -07002612
Dan Williamsa4456852007-07-09 11:56:43 -07002613 }
NeilBrowna2e08552007-09-11 15:23:36 -07002614 /* done submitting copies, wait for them to complete */
2615 if (tx) {
2616 async_tx_ack(tx);
2617 dma_wait_for_async_tx(tx);
2618 }
Dan Williamsa4456852007-07-09 11:56:43 -07002619}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620
Dan Williams6bfe0b42008-04-30 00:52:32 -07002621
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622/*
2623 * handle_stripe - do things to a stripe.
2624 *
2625 * We lock the stripe and then examine the state of various bits
2626 * to see what needs to be done.
2627 * Possible results:
2628 * return some read request which now have data
2629 * return some write requests which are safely on disc
2630 * schedule a read on some buffers
2631 * schedule a write of some buffers
2632 * return confirmation of parity correctness
2633 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 * buffers are taken off read_list or write_list, and bh_cache buffers
2635 * get BH_Lock set before the stripe lock is released.
2636 *
2637 */
Dan Williamsa4456852007-07-09 11:56:43 -07002638
NeilBrown16a53ec2006-06-26 00:27:38 -07002639static void handle_stripe5(struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640{
2641 raid5_conf_t *conf = sh->raid_conf;
Dan Williamsa4456852007-07-09 11:56:43 -07002642 int disks = sh->disks, i;
2643 struct bio *return_bi = NULL;
2644 struct stripe_head_state s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 struct r5dev *dev;
Dan Williamsd84e0f12007-01-02 13:52:30 -07002646 unsigned long pending = 0;
Dan Williams6bfe0b42008-04-30 00:52:32 -07002647 mdk_rdev_t *blocked_rdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648
Dan Williamsa4456852007-07-09 11:56:43 -07002649 memset(&s, 0, sizeof(s));
Dan Williamsd84e0f12007-01-02 13:52:30 -07002650 pr_debug("handling stripe %llu, state=%#lx cnt=%d, pd_idx=%d "
2651 "ops=%lx:%lx:%lx\n", (unsigned long long)sh->sector, sh->state,
2652 atomic_read(&sh->count), sh->pd_idx,
2653 sh->ops.pending, sh->ops.ack, sh->ops.complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654
2655 spin_lock(&sh->lock);
2656 clear_bit(STRIPE_HANDLE, &sh->state);
2657 clear_bit(STRIPE_DELAYED, &sh->state);
2658
Dan Williamsa4456852007-07-09 11:56:43 -07002659 s.syncing = test_bit(STRIPE_SYNCING, &sh->state);
2660 s.expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state);
2661 s.expanded = test_bit(STRIPE_EXPAND_READY, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 /* Now to look around and see what can be done */
2663
Neil Browndef6ae22007-11-05 14:51:02 -08002664 /* clean-up completed biofill operations */
2665 if (test_bit(STRIPE_OP_BIOFILL, &sh->ops.complete)) {
2666 clear_bit(STRIPE_OP_BIOFILL, &sh->ops.pending);
2667 clear_bit(STRIPE_OP_BIOFILL, &sh->ops.ack);
2668 clear_bit(STRIPE_OP_BIOFILL, &sh->ops.complete);
2669 }
2670
NeilBrown9910f162006-01-06 00:20:24 -08002671 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 for (i=disks; i--; ) {
2673 mdk_rdev_t *rdev;
Dan Williamsa4456852007-07-09 11:56:43 -07002674 struct r5dev *dev = &sh->dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 clear_bit(R5_Insync, &dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676
Dan Williamsb5e98d62007-01-02 13:52:31 -07002677 pr_debug("check %d: state 0x%lx toread %p read %p write %p "
2678 "written %p\n", i, dev->flags, dev->toread, dev->read,
2679 dev->towrite, dev->written);
2680
2681 /* maybe we can request a biofill operation
2682 *
2683 * new wantfill requests are only permitted while
2684 * STRIPE_OP_BIOFILL is clear
2685 */
2686 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread &&
2687 !test_bit(STRIPE_OP_BIOFILL, &sh->ops.pending))
2688 set_bit(R5_Wantfill, &dev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689
2690 /* now count some things */
Dan Williamsa4456852007-07-09 11:56:43 -07002691 if (test_bit(R5_LOCKED, &dev->flags)) s.locked++;
2692 if (test_bit(R5_UPTODATE, &dev->flags)) s.uptodate++;
Dan Williamsf38e1212007-01-02 13:52:30 -07002693 if (test_bit(R5_Wantcompute, &dev->flags)) s.compute++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694
Dan Williamsb5e98d62007-01-02 13:52:31 -07002695 if (test_bit(R5_Wantfill, &dev->flags))
2696 s.to_fill++;
2697 else if (dev->toread)
Dan Williamsa4456852007-07-09 11:56:43 -07002698 s.to_read++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 if (dev->towrite) {
Dan Williamsa4456852007-07-09 11:56:43 -07002700 s.to_write++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 if (!test_bit(R5_OVERWRITE, &dev->flags))
Dan Williamsa4456852007-07-09 11:56:43 -07002702 s.non_overwrite++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 }
Dan Williamsa4456852007-07-09 11:56:43 -07002704 if (dev->written)
2705 s.written++;
NeilBrown9910f162006-01-06 00:20:24 -08002706 rdev = rcu_dereference(conf->disks[i].rdev);
Dan Williams6bfe0b42008-04-30 00:52:32 -07002707 if (rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
2708 blocked_rdev = rdev;
2709 atomic_inc(&rdev->nr_pending);
2710 break;
2711 }
NeilBrownb2d444d2005-11-08 21:39:31 -08002712 if (!rdev || !test_bit(In_sync, &rdev->flags)) {
NeilBrown14f8d262006-01-06 00:20:14 -08002713 /* The ReadError flag will just be confusing now */
NeilBrown4e5314b2005-11-08 21:39:22 -08002714 clear_bit(R5_ReadError, &dev->flags);
2715 clear_bit(R5_ReWrite, &dev->flags);
2716 }
NeilBrownb2d444d2005-11-08 21:39:31 -08002717 if (!rdev || !test_bit(In_sync, &rdev->flags)
NeilBrown4e5314b2005-11-08 21:39:22 -08002718 || test_bit(R5_ReadError, &dev->flags)) {
Dan Williamsa4456852007-07-09 11:56:43 -07002719 s.failed++;
2720 s.failed_num = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 } else
2722 set_bit(R5_Insync, &dev->flags);
2723 }
NeilBrown9910f162006-01-06 00:20:24 -08002724 rcu_read_unlock();
Dan Williamsb5e98d62007-01-02 13:52:31 -07002725
Dan Williams6bfe0b42008-04-30 00:52:32 -07002726 if (unlikely(blocked_rdev)) {
2727 set_bit(STRIPE_HANDLE, &sh->state);
2728 goto unlock;
2729 }
2730
Dan Williamsb5e98d62007-01-02 13:52:31 -07002731 if (s.to_fill && !test_and_set_bit(STRIPE_OP_BIOFILL, &sh->ops.pending))
2732 sh->ops.count++;
2733
Dan Williams45b42332007-07-09 11:56:43 -07002734 pr_debug("locked=%d uptodate=%d to_read=%d"
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 " to_write=%d failed=%d failed_num=%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07002736 s.locked, s.uptodate, s.to_read, s.to_write,
2737 s.failed, s.failed_num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 /* check if the array has lost two devices and, if so, some requests might
2739 * need to be failed
2740 */
Dan Williamsa4456852007-07-09 11:56:43 -07002741 if (s.failed > 1 && s.to_read+s.to_write+s.written)
2742 handle_requests_to_failed_array(conf, sh, &s, disks,
2743 &return_bi);
2744 if (s.failed > 1 && s.syncing) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 md_done_sync(conf->mddev, STRIPE_SECTORS,0);
2746 clear_bit(STRIPE_SYNCING, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07002747 s.syncing = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 }
2749
2750 /* might be able to return some write requests if the parity block
2751 * is safe, or on a failed drive
2752 */
2753 dev = &sh->dev[sh->pd_idx];
Dan Williamsa4456852007-07-09 11:56:43 -07002754 if ( s.written &&
2755 ((test_bit(R5_Insync, &dev->flags) &&
2756 !test_bit(R5_LOCKED, &dev->flags) &&
2757 test_bit(R5_UPTODATE, &dev->flags)) ||
2758 (s.failed == 1 && s.failed_num == sh->pd_idx)))
2759 handle_completed_write_requests(conf, sh, disks, &return_bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760
2761 /* Now we might consider reading some blocks, either to check/generate
2762 * parity, or to satisfy requests
2763 * or to load a block that is being partially written.
2764 */
Dan Williamsa4456852007-07-09 11:56:43 -07002765 if (s.to_read || s.non_overwrite ||
Dan Williamsf38e1212007-01-02 13:52:30 -07002766 (s.syncing && (s.uptodate + s.compute < disks)) || s.expanding ||
2767 test_bit(STRIPE_OP_COMPUTE_BLK, &sh->ops.pending))
Dan Williamsa4456852007-07-09 11:56:43 -07002768 handle_issuing_new_read_requests5(sh, &s, disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769
Dan Williamse33129d2007-01-02 13:52:30 -07002770 /* Now we check to see if any write operations have recently
2771 * completed
2772 */
2773
2774 /* leave prexor set until postxor is done, allows us to distinguish
2775 * a rmw from a rcw during biodrain
2776 */
2777 if (test_bit(STRIPE_OP_PREXOR, &sh->ops.complete) &&
2778 test_bit(STRIPE_OP_POSTXOR, &sh->ops.complete)) {
2779
2780 clear_bit(STRIPE_OP_PREXOR, &sh->ops.complete);
2781 clear_bit(STRIPE_OP_PREXOR, &sh->ops.ack);
2782 clear_bit(STRIPE_OP_PREXOR, &sh->ops.pending);
2783
2784 for (i = disks; i--; )
2785 clear_bit(R5_Wantprexor, &sh->dev[i].flags);
2786 }
2787
2788 /* if only POSTXOR is set then this is an 'expand' postxor */
2789 if (test_bit(STRIPE_OP_BIODRAIN, &sh->ops.complete) &&
2790 test_bit(STRIPE_OP_POSTXOR, &sh->ops.complete)) {
2791
2792 clear_bit(STRIPE_OP_BIODRAIN, &sh->ops.complete);
2793 clear_bit(STRIPE_OP_BIODRAIN, &sh->ops.ack);
2794 clear_bit(STRIPE_OP_BIODRAIN, &sh->ops.pending);
2795
2796 clear_bit(STRIPE_OP_POSTXOR, &sh->ops.complete);
2797 clear_bit(STRIPE_OP_POSTXOR, &sh->ops.ack);
2798 clear_bit(STRIPE_OP_POSTXOR, &sh->ops.pending);
2799
2800 /* All the 'written' buffers and the parity block are ready to
2801 * be written back to disk
2802 */
2803 BUG_ON(!test_bit(R5_UPTODATE, &sh->dev[sh->pd_idx].flags));
2804 for (i = disks; i--; ) {
2805 dev = &sh->dev[i];
2806 if (test_bit(R5_LOCKED, &dev->flags) &&
2807 (i == sh->pd_idx || dev->written)) {
2808 pr_debug("Writing block %d\n", i);
2809 set_bit(R5_Wantwrite, &dev->flags);
2810 if (!test_and_set_bit(
2811 STRIPE_OP_IO, &sh->ops.pending))
2812 sh->ops.count++;
2813 if (!test_bit(R5_Insync, &dev->flags) ||
2814 (i == sh->pd_idx && s.failed == 0))
2815 set_bit(STRIPE_INSYNC, &sh->state);
2816 }
2817 }
2818 if (test_and_clear_bit(STRIPE_PREREAD_ACTIVE, &sh->state)) {
2819 atomic_dec(&conf->preread_active_stripes);
2820 if (atomic_read(&conf->preread_active_stripes) <
2821 IO_THRESHOLD)
2822 md_wakeup_thread(conf->mddev->thread);
2823 }
2824 }
2825
2826 /* Now to consider new write requests and what else, if anything
2827 * should be read. We do not handle new writes when:
2828 * 1/ A 'write' operation (copy+xor) is already in flight.
2829 * 2/ A 'check' operation is in flight, as it may clobber the parity
2830 * block.
2831 */
2832 if (s.to_write && !test_bit(STRIPE_OP_POSTXOR, &sh->ops.pending) &&
2833 !test_bit(STRIPE_OP_CHECK, &sh->ops.pending))
Dan Williamsa4456852007-07-09 11:56:43 -07002834 handle_issuing_new_write_requests5(conf, sh, &s, disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835
2836 /* maybe we need to check and possibly fix the parity for this stripe
Dan Williamse89f8962007-01-02 13:52:31 -07002837 * Any reads will already have been scheduled, so we just see if enough
2838 * data is available. The parity check is held off while parity
2839 * dependent operations are in flight.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 */
Dan Williamse89f8962007-01-02 13:52:31 -07002841 if ((s.syncing && s.locked == 0 &&
2842 !test_bit(STRIPE_OP_COMPUTE_BLK, &sh->ops.pending) &&
2843 !test_bit(STRIPE_INSYNC, &sh->state)) ||
2844 test_bit(STRIPE_OP_CHECK, &sh->ops.pending) ||
2845 test_bit(STRIPE_OP_MOD_REPAIR_PD, &sh->ops.pending))
Dan Williamsa4456852007-07-09 11:56:43 -07002846 handle_parity_checks5(conf, sh, &s, disks);
Dan Williamse89f8962007-01-02 13:52:31 -07002847
Dan Williamsa4456852007-07-09 11:56:43 -07002848 if (s.syncing && s.locked == 0 && test_bit(STRIPE_INSYNC, &sh->state)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 md_done_sync(conf->mddev, STRIPE_SECTORS,1);
2850 clear_bit(STRIPE_SYNCING, &sh->state);
2851 }
NeilBrown4e5314b2005-11-08 21:39:22 -08002852
2853 /* If the failed drive is just a ReadError, then we might need to progress
2854 * the repair/check process
2855 */
Dan Williamsa4456852007-07-09 11:56:43 -07002856 if (s.failed == 1 && !conf->mddev->ro &&
2857 test_bit(R5_ReadError, &sh->dev[s.failed_num].flags)
2858 && !test_bit(R5_LOCKED, &sh->dev[s.failed_num].flags)
2859 && test_bit(R5_UPTODATE, &sh->dev[s.failed_num].flags)
NeilBrown4e5314b2005-11-08 21:39:22 -08002860 ) {
Dan Williamsa4456852007-07-09 11:56:43 -07002861 dev = &sh->dev[s.failed_num];
NeilBrown4e5314b2005-11-08 21:39:22 -08002862 if (!test_bit(R5_ReWrite, &dev->flags)) {
2863 set_bit(R5_Wantwrite, &dev->flags);
Dan Williams830ea012007-01-02 13:52:31 -07002864 if (!test_and_set_bit(STRIPE_OP_IO, &sh->ops.pending))
2865 sh->ops.count++;
NeilBrown4e5314b2005-11-08 21:39:22 -08002866 set_bit(R5_ReWrite, &dev->flags);
2867 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsa4456852007-07-09 11:56:43 -07002868 s.locked++;
NeilBrown4e5314b2005-11-08 21:39:22 -08002869 } else {
2870 /* let's read it back */
2871 set_bit(R5_Wantread, &dev->flags);
Dan Williams830ea012007-01-02 13:52:31 -07002872 if (!test_and_set_bit(STRIPE_OP_IO, &sh->ops.pending))
2873 sh->ops.count++;
NeilBrown4e5314b2005-11-08 21:39:22 -08002874 set_bit(R5_LOCKED, &dev->flags);
Dan Williamsa4456852007-07-09 11:56:43 -07002875 s.locked++;
NeilBrown4e5314b2005-11-08 21:39:22 -08002876 }
2877 }
2878
Dan Williamsf0a50d32007-01-02 13:52:31 -07002879 /* Finish postxor operations initiated by the expansion
2880 * process
2881 */
2882 if (test_bit(STRIPE_OP_POSTXOR, &sh->ops.complete) &&
2883 !test_bit(STRIPE_OP_BIODRAIN, &sh->ops.pending)) {
2884
2885 clear_bit(STRIPE_EXPANDING, &sh->state);
2886
2887 clear_bit(STRIPE_OP_POSTXOR, &sh->ops.pending);
2888 clear_bit(STRIPE_OP_POSTXOR, &sh->ops.ack);
2889 clear_bit(STRIPE_OP_POSTXOR, &sh->ops.complete);
2890
2891 for (i = conf->raid_disks; i--; ) {
2892 set_bit(R5_Wantwrite, &sh->dev[i].flags);
2893 if (!test_and_set_bit(STRIPE_OP_IO, &sh->ops.pending))
2894 sh->ops.count++;
2895 }
2896 }
2897
2898 if (s.expanded && test_bit(STRIPE_EXPANDING, &sh->state) &&
2899 !test_bit(STRIPE_OP_POSTXOR, &sh->ops.pending)) {
NeilBrownccfcc3c2006-03-27 01:18:09 -08002900 /* Need to write out all blocks after computing parity */
2901 sh->disks = conf->raid_disks;
Dan Williamsf0a50d32007-01-02 13:52:31 -07002902 sh->pd_idx = stripe_to_pdidx(sh->sector, conf,
2903 conf->raid_disks);
NeilBrowna2e08552007-09-11 15:23:36 -07002904 s.locked += handle_write_operations5(sh, 1, 1);
Dan Williamsf0a50d32007-01-02 13:52:31 -07002905 } else if (s.expanded &&
2906 !test_bit(STRIPE_OP_POSTXOR, &sh->ops.pending)) {
NeilBrownccfcc3c2006-03-27 01:18:09 -08002907 clear_bit(STRIPE_EXPAND_READY, &sh->state);
NeilBrownf6705572006-03-27 01:18:11 -08002908 atomic_dec(&conf->reshape_stripes);
NeilBrownccfcc3c2006-03-27 01:18:09 -08002909 wake_up(&conf->wait_for_overlap);
2910 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
2911 }
2912
Dan Williams0f94e872008-01-08 15:32:53 -08002913 if (s.expanding && s.locked == 0 &&
2914 !test_bit(STRIPE_OP_COMPUTE_BLK, &sh->ops.pending))
Dan Williamsa4456852007-07-09 11:56:43 -07002915 handle_stripe_expansion(conf, sh, NULL);
NeilBrownccfcc3c2006-03-27 01:18:09 -08002916
Dan Williamsd84e0f12007-01-02 13:52:30 -07002917 if (sh->ops.count)
2918 pending = get_stripe_work(sh);
2919
Dan Williams6bfe0b42008-04-30 00:52:32 -07002920 unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 spin_unlock(&sh->lock);
2922
Dan Williams6bfe0b42008-04-30 00:52:32 -07002923 /* wait for this device to become unblocked */
2924 if (unlikely(blocked_rdev))
2925 md_wait_for_blocked_rdev(blocked_rdev, conf->mddev);
2926
Dan Williamsd84e0f12007-01-02 13:52:30 -07002927 if (pending)
2928 raid5_run_ops(sh, pending);
2929
Dan Williamsa4456852007-07-09 11:56:43 -07002930 return_io(return_bi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932}
2933
NeilBrown16a53ec2006-06-26 00:27:38 -07002934static void handle_stripe6(struct stripe_head *sh, struct page *tmp_page)
2935{
2936 raid6_conf_t *conf = sh->raid_conf;
NeilBrownf4168852007-02-28 20:11:53 -08002937 int disks = sh->disks;
Dan Williamsa4456852007-07-09 11:56:43 -07002938 struct bio *return_bi = NULL;
2939 int i, pd_idx = sh->pd_idx;
2940 struct stripe_head_state s;
2941 struct r6_state r6s;
NeilBrown16a53ec2006-06-26 00:27:38 -07002942 struct r5dev *dev, *pdev, *qdev;
Dan Williams6bfe0b42008-04-30 00:52:32 -07002943 mdk_rdev_t *blocked_rdev = NULL;
NeilBrown16a53ec2006-06-26 00:27:38 -07002944
Dan Williamsa4456852007-07-09 11:56:43 -07002945 r6s.qd_idx = raid6_next_disk(pd_idx, disks);
Dan Williams45b42332007-07-09 11:56:43 -07002946 pr_debug("handling stripe %llu, state=%#lx cnt=%d, "
Dan Williamsa4456852007-07-09 11:56:43 -07002947 "pd_idx=%d, qd_idx=%d\n",
2948 (unsigned long long)sh->sector, sh->state,
2949 atomic_read(&sh->count), pd_idx, r6s.qd_idx);
2950 memset(&s, 0, sizeof(s));
NeilBrown16a53ec2006-06-26 00:27:38 -07002951
2952 spin_lock(&sh->lock);
2953 clear_bit(STRIPE_HANDLE, &sh->state);
2954 clear_bit(STRIPE_DELAYED, &sh->state);
2955
Dan Williamsa4456852007-07-09 11:56:43 -07002956 s.syncing = test_bit(STRIPE_SYNCING, &sh->state);
2957 s.expanding = test_bit(STRIPE_EXPAND_SOURCE, &sh->state);
2958 s.expanded = test_bit(STRIPE_EXPAND_READY, &sh->state);
NeilBrown16a53ec2006-06-26 00:27:38 -07002959 /* Now to look around and see what can be done */
2960
2961 rcu_read_lock();
2962 for (i=disks; i--; ) {
2963 mdk_rdev_t *rdev;
2964 dev = &sh->dev[i];
2965 clear_bit(R5_Insync, &dev->flags);
2966
Dan Williams45b42332007-07-09 11:56:43 -07002967 pr_debug("check %d: state 0x%lx read %p write %p written %p\n",
NeilBrown16a53ec2006-06-26 00:27:38 -07002968 i, dev->flags, dev->toread, dev->towrite, dev->written);
2969 /* maybe we can reply to a read */
2970 if (test_bit(R5_UPTODATE, &dev->flags) && dev->toread) {
2971 struct bio *rbi, *rbi2;
Dan Williams45b42332007-07-09 11:56:43 -07002972 pr_debug("Return read for disc %d\n", i);
NeilBrown16a53ec2006-06-26 00:27:38 -07002973 spin_lock_irq(&conf->device_lock);
2974 rbi = dev->toread;
2975 dev->toread = NULL;
2976 if (test_and_clear_bit(R5_Overlap, &dev->flags))
2977 wake_up(&conf->wait_for_overlap);
2978 spin_unlock_irq(&conf->device_lock);
2979 while (rbi && rbi->bi_sector < dev->sector + STRIPE_SECTORS) {
2980 copy_data(0, rbi, dev->page, dev->sector);
2981 rbi2 = r5_next_bio(rbi, dev->sector);
2982 spin_lock_irq(&conf->device_lock);
2983 if (--rbi->bi_phys_segments == 0) {
2984 rbi->bi_next = return_bi;
2985 return_bi = rbi;
2986 }
2987 spin_unlock_irq(&conf->device_lock);
2988 rbi = rbi2;
2989 }
2990 }
2991
2992 /* now count some things */
Dan Williamsa4456852007-07-09 11:56:43 -07002993 if (test_bit(R5_LOCKED, &dev->flags)) s.locked++;
2994 if (test_bit(R5_UPTODATE, &dev->flags)) s.uptodate++;
NeilBrown16a53ec2006-06-26 00:27:38 -07002995
2996
Dan Williamsa4456852007-07-09 11:56:43 -07002997 if (dev->toread)
2998 s.to_read++;
NeilBrown16a53ec2006-06-26 00:27:38 -07002999 if (dev->towrite) {
Dan Williamsa4456852007-07-09 11:56:43 -07003000 s.to_write++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003001 if (!test_bit(R5_OVERWRITE, &dev->flags))
Dan Williamsa4456852007-07-09 11:56:43 -07003002 s.non_overwrite++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003003 }
Dan Williamsa4456852007-07-09 11:56:43 -07003004 if (dev->written)
3005 s.written++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003006 rdev = rcu_dereference(conf->disks[i].rdev);
Dan Williams6bfe0b42008-04-30 00:52:32 -07003007 if (rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
3008 blocked_rdev = rdev;
3009 atomic_inc(&rdev->nr_pending);
3010 break;
3011 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003012 if (!rdev || !test_bit(In_sync, &rdev->flags)) {
3013 /* The ReadError flag will just be confusing now */
3014 clear_bit(R5_ReadError, &dev->flags);
3015 clear_bit(R5_ReWrite, &dev->flags);
3016 }
3017 if (!rdev || !test_bit(In_sync, &rdev->flags)
3018 || test_bit(R5_ReadError, &dev->flags)) {
Dan Williamsa4456852007-07-09 11:56:43 -07003019 if (s.failed < 2)
3020 r6s.failed_num[s.failed] = i;
3021 s.failed++;
NeilBrown16a53ec2006-06-26 00:27:38 -07003022 } else
3023 set_bit(R5_Insync, &dev->flags);
3024 }
3025 rcu_read_unlock();
Dan Williams6bfe0b42008-04-30 00:52:32 -07003026
3027 if (unlikely(blocked_rdev)) {
3028 set_bit(STRIPE_HANDLE, &sh->state);
3029 goto unlock;
3030 }
Dan Williams45b42332007-07-09 11:56:43 -07003031 pr_debug("locked=%d uptodate=%d to_read=%d"
NeilBrown16a53ec2006-06-26 00:27:38 -07003032 " to_write=%d failed=%d failed_num=%d,%d\n",
Dan Williamsa4456852007-07-09 11:56:43 -07003033 s.locked, s.uptodate, s.to_read, s.to_write, s.failed,
3034 r6s.failed_num[0], r6s.failed_num[1]);
3035 /* check if the array has lost >2 devices and, if so, some requests
3036 * might need to be failed
NeilBrown16a53ec2006-06-26 00:27:38 -07003037 */
Dan Williamsa4456852007-07-09 11:56:43 -07003038 if (s.failed > 2 && s.to_read+s.to_write+s.written)
3039 handle_requests_to_failed_array(conf, sh, &s, disks,
3040 &return_bi);
3041 if (s.failed > 2 && s.syncing) {
NeilBrown16a53ec2006-06-26 00:27:38 -07003042 md_done_sync(conf->mddev, STRIPE_SECTORS,0);
3043 clear_bit(STRIPE_SYNCING, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07003044 s.syncing = 0;
NeilBrown16a53ec2006-06-26 00:27:38 -07003045 }
3046
3047 /*
3048 * might be able to return some write requests if the parity blocks
3049 * are safe, or on a failed drive
3050 */
3051 pdev = &sh->dev[pd_idx];
Dan Williamsa4456852007-07-09 11:56:43 -07003052 r6s.p_failed = (s.failed >= 1 && r6s.failed_num[0] == pd_idx)
3053 || (s.failed >= 2 && r6s.failed_num[1] == pd_idx);
3054 qdev = &sh->dev[r6s.qd_idx];
3055 r6s.q_failed = (s.failed >= 1 && r6s.failed_num[0] == r6s.qd_idx)
3056 || (s.failed >= 2 && r6s.failed_num[1] == r6s.qd_idx);
NeilBrown16a53ec2006-06-26 00:27:38 -07003057
Dan Williamsa4456852007-07-09 11:56:43 -07003058 if ( s.written &&
3059 ( r6s.p_failed || ((test_bit(R5_Insync, &pdev->flags)
NeilBrown16a53ec2006-06-26 00:27:38 -07003060 && !test_bit(R5_LOCKED, &pdev->flags)
Dan Williamsa4456852007-07-09 11:56:43 -07003061 && test_bit(R5_UPTODATE, &pdev->flags)))) &&
3062 ( r6s.q_failed || ((test_bit(R5_Insync, &qdev->flags)
NeilBrown16a53ec2006-06-26 00:27:38 -07003063 && !test_bit(R5_LOCKED, &qdev->flags)
Dan Williamsa4456852007-07-09 11:56:43 -07003064 && test_bit(R5_UPTODATE, &qdev->flags)))))
3065 handle_completed_write_requests(conf, sh, disks, &return_bi);
NeilBrown16a53ec2006-06-26 00:27:38 -07003066
3067 /* Now we might consider reading some blocks, either to check/generate
3068 * parity, or to satisfy requests
3069 * or to load a block that is being partially written.
3070 */
Dan Williamsa4456852007-07-09 11:56:43 -07003071 if (s.to_read || s.non_overwrite || (s.to_write && s.failed) ||
3072 (s.syncing && (s.uptodate < disks)) || s.expanding)
3073 handle_issuing_new_read_requests6(sh, &s, &r6s, disks);
NeilBrown16a53ec2006-06-26 00:27:38 -07003074
3075 /* now to consider writing and what else, if anything should be read */
Dan Williamsa4456852007-07-09 11:56:43 -07003076 if (s.to_write)
3077 handle_issuing_new_write_requests6(conf, sh, &s, &r6s, disks);
NeilBrown16a53ec2006-06-26 00:27:38 -07003078
3079 /* maybe we need to check and possibly fix the parity for this stripe
Dan Williamsa4456852007-07-09 11:56:43 -07003080 * Any reads will already have been scheduled, so we just see if enough
3081 * data is available
NeilBrown16a53ec2006-06-26 00:27:38 -07003082 */
Dan Williamsa4456852007-07-09 11:56:43 -07003083 if (s.syncing && s.locked == 0 && !test_bit(STRIPE_INSYNC, &sh->state))
3084 handle_parity_checks6(conf, sh, &s, &r6s, tmp_page, disks);
NeilBrown16a53ec2006-06-26 00:27:38 -07003085
Dan Williamsa4456852007-07-09 11:56:43 -07003086 if (s.syncing && s.locked == 0 && test_bit(STRIPE_INSYNC, &sh->state)) {
NeilBrown16a53ec2006-06-26 00:27:38 -07003087 md_done_sync(conf->mddev, STRIPE_SECTORS,1);
3088 clear_bit(STRIPE_SYNCING, &sh->state);
3089 }
3090
3091 /* If the failed drives are just a ReadError, then we might need
3092 * to progress the repair/check process
3093 */
Dan Williamsa4456852007-07-09 11:56:43 -07003094 if (s.failed <= 2 && !conf->mddev->ro)
3095 for (i = 0; i < s.failed; i++) {
3096 dev = &sh->dev[r6s.failed_num[i]];
NeilBrown16a53ec2006-06-26 00:27:38 -07003097 if (test_bit(R5_ReadError, &dev->flags)
3098 && !test_bit(R5_LOCKED, &dev->flags)
3099 && test_bit(R5_UPTODATE, &dev->flags)
3100 ) {
3101 if (!test_bit(R5_ReWrite, &dev->flags)) {
3102 set_bit(R5_Wantwrite, &dev->flags);
3103 set_bit(R5_ReWrite, &dev->flags);
3104 set_bit(R5_LOCKED, &dev->flags);
3105 } else {
3106 /* let's read it back */
3107 set_bit(R5_Wantread, &dev->flags);
3108 set_bit(R5_LOCKED, &dev->flags);
3109 }
3110 }
3111 }
NeilBrownf4168852007-02-28 20:11:53 -08003112
Dan Williamsa4456852007-07-09 11:56:43 -07003113 if (s.expanded && test_bit(STRIPE_EXPANDING, &sh->state)) {
NeilBrownf4168852007-02-28 20:11:53 -08003114 /* Need to write out all blocks after computing P&Q */
3115 sh->disks = conf->raid_disks;
3116 sh->pd_idx = stripe_to_pdidx(sh->sector, conf,
3117 conf->raid_disks);
3118 compute_parity6(sh, RECONSTRUCT_WRITE);
3119 for (i = conf->raid_disks ; i-- ; ) {
3120 set_bit(R5_LOCKED, &sh->dev[i].flags);
Dan Williamsa4456852007-07-09 11:56:43 -07003121 s.locked++;
NeilBrownf4168852007-02-28 20:11:53 -08003122 set_bit(R5_Wantwrite, &sh->dev[i].flags);
3123 }
3124 clear_bit(STRIPE_EXPANDING, &sh->state);
Dan Williamsa4456852007-07-09 11:56:43 -07003125 } else if (s.expanded) {
NeilBrownf4168852007-02-28 20:11:53 -08003126 clear_bit(STRIPE_EXPAND_READY, &sh->state);
3127 atomic_dec(&conf->reshape_stripes);
3128 wake_up(&conf->wait_for_overlap);
3129 md_done_sync(conf->mddev, STRIPE_SECTORS, 1);
3130 }
3131
Dan Williams0f94e872008-01-08 15:32:53 -08003132 if (s.expanding && s.locked == 0 &&
3133 !test_bit(STRIPE_OP_COMPUTE_BLK, &sh->ops.pending))
Dan Williamsa4456852007-07-09 11:56:43 -07003134 handle_stripe_expansion(conf, sh, &r6s);
NeilBrownf4168852007-02-28 20:11:53 -08003135
Dan Williams6bfe0b42008-04-30 00:52:32 -07003136 unlock:
NeilBrown16a53ec2006-06-26 00:27:38 -07003137 spin_unlock(&sh->lock);
3138
Dan Williams6bfe0b42008-04-30 00:52:32 -07003139 /* wait for this device to become unblocked */
3140 if (unlikely(blocked_rdev))
3141 md_wait_for_blocked_rdev(blocked_rdev, conf->mddev);
3142
Dan Williamsa4456852007-07-09 11:56:43 -07003143 return_io(return_bi);
NeilBrown16a53ec2006-06-26 00:27:38 -07003144
NeilBrown16a53ec2006-06-26 00:27:38 -07003145 for (i=disks; i-- ;) {
3146 int rw;
3147 struct bio *bi;
3148 mdk_rdev_t *rdev;
3149 if (test_and_clear_bit(R5_Wantwrite, &sh->dev[i].flags))
NeilBrown802ba062006-12-13 00:34:13 -08003150 rw = WRITE;
NeilBrown16a53ec2006-06-26 00:27:38 -07003151 else if (test_and_clear_bit(R5_Wantread, &sh->dev[i].flags))
NeilBrown802ba062006-12-13 00:34:13 -08003152 rw = READ;
NeilBrown16a53ec2006-06-26 00:27:38 -07003153 else
3154 continue;
3155
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003156 set_bit(STRIPE_IO_STARTED, &sh->state);
3157
NeilBrown16a53ec2006-06-26 00:27:38 -07003158 bi = &sh->dev[i].req;
3159
3160 bi->bi_rw = rw;
NeilBrown802ba062006-12-13 00:34:13 -08003161 if (rw == WRITE)
NeilBrown16a53ec2006-06-26 00:27:38 -07003162 bi->bi_end_io = raid5_end_write_request;
3163 else
3164 bi->bi_end_io = raid5_end_read_request;
3165
3166 rcu_read_lock();
3167 rdev = rcu_dereference(conf->disks[i].rdev);
3168 if (rdev && test_bit(Faulty, &rdev->flags))
3169 rdev = NULL;
3170 if (rdev)
3171 atomic_inc(&rdev->nr_pending);
3172 rcu_read_unlock();
3173
3174 if (rdev) {
Dan Williamsa4456852007-07-09 11:56:43 -07003175 if (s.syncing || s.expanding || s.expanded)
NeilBrown16a53ec2006-06-26 00:27:38 -07003176 md_sync_acct(rdev->bdev, STRIPE_SECTORS);
3177
3178 bi->bi_bdev = rdev->bdev;
Dan Williams45b42332007-07-09 11:56:43 -07003179 pr_debug("for %llu schedule op %ld on disc %d\n",
NeilBrown16a53ec2006-06-26 00:27:38 -07003180 (unsigned long long)sh->sector, bi->bi_rw, i);
3181 atomic_inc(&sh->count);
3182 bi->bi_sector = sh->sector + rdev->data_offset;
3183 bi->bi_flags = 1 << BIO_UPTODATE;
3184 bi->bi_vcnt = 1;
3185 bi->bi_max_vecs = 1;
3186 bi->bi_idx = 0;
3187 bi->bi_io_vec = &sh->dev[i].vec;
3188 bi->bi_io_vec[0].bv_len = STRIPE_SIZE;
3189 bi->bi_io_vec[0].bv_offset = 0;
3190 bi->bi_size = STRIPE_SIZE;
3191 bi->bi_next = NULL;
3192 if (rw == WRITE &&
3193 test_bit(R5_ReWrite, &sh->dev[i].flags))
3194 atomic_add(STRIPE_SECTORS, &rdev->corrected_errors);
3195 generic_make_request(bi);
3196 } else {
NeilBrown802ba062006-12-13 00:34:13 -08003197 if (rw == WRITE)
NeilBrown16a53ec2006-06-26 00:27:38 -07003198 set_bit(STRIPE_DEGRADED, &sh->state);
Dan Williams45b42332007-07-09 11:56:43 -07003199 pr_debug("skip op %ld on disc %d for sector %llu\n",
NeilBrown16a53ec2006-06-26 00:27:38 -07003200 bi->bi_rw, i, (unsigned long long)sh->sector);
3201 clear_bit(R5_LOCKED, &sh->dev[i].flags);
3202 set_bit(STRIPE_HANDLE, &sh->state);
3203 }
3204 }
3205}
3206
3207static void handle_stripe(struct stripe_head *sh, struct page *tmp_page)
3208{
3209 if (sh->raid_conf->level == 6)
3210 handle_stripe6(sh, tmp_page);
3211 else
3212 handle_stripe5(sh);
3213}
3214
3215
3216
Arjan van de Ven858119e2006-01-14 13:20:43 -08003217static void raid5_activate_delayed(raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218{
3219 if (atomic_read(&conf->preread_active_stripes) < IO_THRESHOLD) {
3220 while (!list_empty(&conf->delayed_list)) {
3221 struct list_head *l = conf->delayed_list.next;
3222 struct stripe_head *sh;
3223 sh = list_entry(l, struct stripe_head, lru);
3224 list_del_init(l);
3225 clear_bit(STRIPE_DELAYED, &sh->state);
3226 if (!test_and_set_bit(STRIPE_PREREAD_ACTIVE, &sh->state))
3227 atomic_inc(&conf->preread_active_stripes);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003228 list_add_tail(&sh->lru, &conf->hold_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229 }
NeilBrown6ed30032008-02-06 01:40:00 -08003230 } else
3231 blk_plug_device(conf->mddev->queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232}
3233
Arjan van de Ven858119e2006-01-14 13:20:43 -08003234static void activate_bit_delay(raid5_conf_t *conf)
NeilBrown72626682005-09-09 16:23:54 -07003235{
3236 /* device_lock is held */
3237 struct list_head head;
3238 list_add(&head, &conf->bitmap_list);
3239 list_del_init(&conf->bitmap_list);
3240 while (!list_empty(&head)) {
3241 struct stripe_head *sh = list_entry(head.next, struct stripe_head, lru);
3242 list_del_init(&sh->lru);
3243 atomic_inc(&sh->count);
3244 __release_stripe(conf, sh);
3245 }
3246}
3247
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248static void unplug_slaves(mddev_t *mddev)
3249{
3250 raid5_conf_t *conf = mddev_to_conf(mddev);
3251 int i;
3252
3253 rcu_read_lock();
3254 for (i=0; i<mddev->raid_disks; i++) {
Suzanne Woodd6065f72005-11-08 21:39:27 -08003255 mdk_rdev_t *rdev = rcu_dereference(conf->disks[i].rdev);
NeilBrownb2d444d2005-11-08 21:39:31 -08003256 if (rdev && !test_bit(Faulty, &rdev->flags) && atomic_read(&rdev->nr_pending)) {
Jens Axboe165125e2007-07-24 09:28:11 +02003257 struct request_queue *r_queue = bdev_get_queue(rdev->bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258
3259 atomic_inc(&rdev->nr_pending);
3260 rcu_read_unlock();
3261
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -05003262 blk_unplug(r_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263
3264 rdev_dec_pending(rdev, mddev);
3265 rcu_read_lock();
3266 }
3267 }
3268 rcu_read_unlock();
3269}
3270
Jens Axboe165125e2007-07-24 09:28:11 +02003271static void raid5_unplug_device(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272{
3273 mddev_t *mddev = q->queuedata;
3274 raid5_conf_t *conf = mddev_to_conf(mddev);
3275 unsigned long flags;
3276
3277 spin_lock_irqsave(&conf->device_lock, flags);
3278
NeilBrown72626682005-09-09 16:23:54 -07003279 if (blk_remove_plug(q)) {
3280 conf->seq_flush++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281 raid5_activate_delayed(conf);
NeilBrown72626682005-09-09 16:23:54 -07003282 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283 md_wakeup_thread(mddev->thread);
3284
3285 spin_unlock_irqrestore(&conf->device_lock, flags);
3286
3287 unplug_slaves(mddev);
3288}
3289
NeilBrownf022b2f2006-10-03 01:15:56 -07003290static int raid5_congested(void *data, int bits)
3291{
3292 mddev_t *mddev = data;
3293 raid5_conf_t *conf = mddev_to_conf(mddev);
3294
3295 /* No difference between reads and writes. Just check
3296 * how busy the stripe_cache is
3297 */
3298 if (conf->inactive_blocked)
3299 return 1;
3300 if (conf->quiesce)
3301 return 1;
3302 if (list_empty_careful(&conf->inactive_list))
3303 return 1;
3304
3305 return 0;
3306}
3307
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003308/* We want read requests to align with chunks where possible,
3309 * but write requests don't need to.
3310 */
Jens Axboe165125e2007-07-24 09:28:11 +02003311static int raid5_mergeable_bvec(struct request_queue *q, struct bio *bio, struct bio_vec *biovec)
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003312{
3313 mddev_t *mddev = q->queuedata;
3314 sector_t sector = bio->bi_sector + get_start_sect(bio->bi_bdev);
3315 int max;
3316 unsigned int chunk_sectors = mddev->chunk_size >> 9;
3317 unsigned int bio_sectors = bio->bi_size >> 9;
3318
NeilBrown802ba062006-12-13 00:34:13 -08003319 if (bio_data_dir(bio) == WRITE)
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08003320 return biovec->bv_len; /* always allow writes to be mergeable */
3321
3322 max = (chunk_sectors - ((sector & (chunk_sectors - 1)) + bio_sectors)) << 9;
3323 if (max < 0) max = 0;
3324 if (max <= biovec->bv_len && bio_sectors == 0)
3325 return biovec->bv_len;
3326 else
3327 return max;
3328}
3329
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003330
3331static int in_chunk_boundary(mddev_t *mddev, struct bio *bio)
3332{
3333 sector_t sector = bio->bi_sector + get_start_sect(bio->bi_bdev);
3334 unsigned int chunk_sectors = mddev->chunk_size >> 9;
3335 unsigned int bio_sectors = bio->bi_size >> 9;
3336
3337 return chunk_sectors >=
3338 ((sector & (chunk_sectors - 1)) + bio_sectors);
3339}
3340
3341/*
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003342 * add bio to the retry LIFO ( in O(1) ... we are in interrupt )
3343 * later sampled by raid5d.
3344 */
3345static void add_bio_to_retry(struct bio *bi,raid5_conf_t *conf)
3346{
3347 unsigned long flags;
3348
3349 spin_lock_irqsave(&conf->device_lock, flags);
3350
3351 bi->bi_next = conf->retry_read_aligned_list;
3352 conf->retry_read_aligned_list = bi;
3353
3354 spin_unlock_irqrestore(&conf->device_lock, flags);
3355 md_wakeup_thread(conf->mddev->thread);
3356}
3357
3358
3359static struct bio *remove_bio_from_retry(raid5_conf_t *conf)
3360{
3361 struct bio *bi;
3362
3363 bi = conf->retry_read_aligned;
3364 if (bi) {
3365 conf->retry_read_aligned = NULL;
3366 return bi;
3367 }
3368 bi = conf->retry_read_aligned_list;
3369 if(bi) {
Neil Brown387bb172007-02-08 14:20:29 -08003370 conf->retry_read_aligned_list = bi->bi_next;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003371 bi->bi_next = NULL;
3372 bi->bi_phys_segments = 1; /* biased count of active stripes */
3373 bi->bi_hw_segments = 0; /* count of processed stripes */
3374 }
3375
3376 return bi;
3377}
3378
3379
3380/*
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003381 * The "raid5_align_endio" should check if the read succeeded and if it
3382 * did, call bio_endio on the original bio (having bio_put the new bio
3383 * first).
3384 * If the read failed..
3385 */
NeilBrown6712ecf2007-09-27 12:47:43 +02003386static void raid5_align_endio(struct bio *bi, int error)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003387{
3388 struct bio* raid_bi = bi->bi_private;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003389 mddev_t *mddev;
3390 raid5_conf_t *conf;
3391 int uptodate = test_bit(BIO_UPTODATE, &bi->bi_flags);
3392 mdk_rdev_t *rdev;
3393
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003394 bio_put(bi);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003395
3396 mddev = raid_bi->bi_bdev->bd_disk->queue->queuedata;
3397 conf = mddev_to_conf(mddev);
3398 rdev = (void*)raid_bi->bi_next;
3399 raid_bi->bi_next = NULL;
3400
3401 rdev_dec_pending(rdev, conf->mddev);
3402
3403 if (!error && uptodate) {
NeilBrown6712ecf2007-09-27 12:47:43 +02003404 bio_endio(raid_bi, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003405 if (atomic_dec_and_test(&conf->active_aligned_reads))
3406 wake_up(&conf->wait_for_stripe);
NeilBrown6712ecf2007-09-27 12:47:43 +02003407 return;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003408 }
3409
3410
Dan Williams45b42332007-07-09 11:56:43 -07003411 pr_debug("raid5_align_endio : io error...handing IO for a retry\n");
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003412
3413 add_bio_to_retry(raid_bi, conf);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003414}
3415
Neil Brown387bb172007-02-08 14:20:29 -08003416static int bio_fits_rdev(struct bio *bi)
3417{
Jens Axboe165125e2007-07-24 09:28:11 +02003418 struct request_queue *q = bdev_get_queue(bi->bi_bdev);
Neil Brown387bb172007-02-08 14:20:29 -08003419
3420 if ((bi->bi_size>>9) > q->max_sectors)
3421 return 0;
3422 blk_recount_segments(q, bi);
3423 if (bi->bi_phys_segments > q->max_phys_segments ||
3424 bi->bi_hw_segments > q->max_hw_segments)
3425 return 0;
3426
3427 if (q->merge_bvec_fn)
3428 /* it's too hard to apply the merge_bvec_fn at this stage,
3429 * just just give up
3430 */
3431 return 0;
3432
3433 return 1;
3434}
3435
3436
Jens Axboe165125e2007-07-24 09:28:11 +02003437static int chunk_aligned_read(struct request_queue *q, struct bio * raid_bio)
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003438{
3439 mddev_t *mddev = q->queuedata;
3440 raid5_conf_t *conf = mddev_to_conf(mddev);
3441 const unsigned int raid_disks = conf->raid_disks;
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003442 const unsigned int data_disks = raid_disks - conf->max_degraded;
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003443 unsigned int dd_idx, pd_idx;
3444 struct bio* align_bi;
3445 mdk_rdev_t *rdev;
3446
3447 if (!in_chunk_boundary(mddev, raid_bio)) {
Dan Williams45b42332007-07-09 11:56:43 -07003448 pr_debug("chunk_aligned_read : non aligned\n");
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003449 return 0;
3450 }
3451 /*
3452 * use bio_clone to make a copy of the bio
3453 */
3454 align_bi = bio_clone(raid_bio, GFP_NOIO);
3455 if (!align_bi)
3456 return 0;
3457 /*
3458 * set bi_end_io to a new function, and set bi_private to the
3459 * original bio.
3460 */
3461 align_bi->bi_end_io = raid5_align_endio;
3462 align_bi->bi_private = raid_bio;
3463 /*
3464 * compute position
3465 */
3466 align_bi->bi_sector = raid5_compute_sector(raid_bio->bi_sector,
3467 raid_disks,
3468 data_disks,
3469 &dd_idx,
3470 &pd_idx,
3471 conf);
3472
3473 rcu_read_lock();
3474 rdev = rcu_dereference(conf->disks[dd_idx].rdev);
3475 if (rdev && test_bit(In_sync, &rdev->flags)) {
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003476 atomic_inc(&rdev->nr_pending);
3477 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003478 raid_bio->bi_next = (void*)rdev;
3479 align_bi->bi_bdev = rdev->bdev;
3480 align_bi->bi_flags &= ~(1 << BIO_SEG_VALID);
3481 align_bi->bi_sector += rdev->data_offset;
3482
Neil Brown387bb172007-02-08 14:20:29 -08003483 if (!bio_fits_rdev(align_bi)) {
3484 /* too big in some way */
3485 bio_put(align_bi);
3486 rdev_dec_pending(rdev, mddev);
3487 return 0;
3488 }
3489
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003490 spin_lock_irq(&conf->device_lock);
3491 wait_event_lock_irq(conf->wait_for_stripe,
3492 conf->quiesce == 0,
3493 conf->device_lock, /* nothing */);
3494 atomic_inc(&conf->active_aligned_reads);
3495 spin_unlock_irq(&conf->device_lock);
3496
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003497 generic_make_request(align_bi);
3498 return 1;
3499 } else {
3500 rcu_read_unlock();
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003501 bio_put(align_bi);
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003502 return 0;
3503 }
3504}
3505
Dan Williams8b3e6cd2008-04-28 02:15:53 -07003506/* __get_priority_stripe - get the next stripe to process
3507 *
3508 * Full stripe writes are allowed to pass preread active stripes up until
3509 * the bypass_threshold is exceeded. In general the bypass_count
3510 * increments when the handle_list is handled before the hold_list; however, it
3511 * will not be incremented when STRIPE_IO_STARTED is sampled set signifying a
3512 * stripe with in flight i/o. The bypass_count will be reset when the
3513 * head of the hold_list has changed, i.e. the head was promoted to the
3514 * handle_list.
3515 */
3516static struct stripe_head *__get_priority_stripe(raid5_conf_t *conf)
3517{
3518 struct stripe_head *sh;
3519
3520 pr_debug("%s: handle: %s hold: %s full_writes: %d bypass_count: %d\n",
3521 __func__,
3522 list_empty(&conf->handle_list) ? "empty" : "busy",
3523 list_empty(&conf->hold_list) ? "empty" : "busy",
3524 atomic_read(&conf->pending_full_writes), conf->bypass_count);
3525
3526 if (!list_empty(&conf->handle_list)) {
3527 sh = list_entry(conf->handle_list.next, typeof(*sh), lru);
3528
3529 if (list_empty(&conf->hold_list))
3530 conf->bypass_count = 0;
3531 else if (!test_bit(STRIPE_IO_STARTED, &sh->state)) {
3532 if (conf->hold_list.next == conf->last_hold)
3533 conf->bypass_count++;
3534 else {
3535 conf->last_hold = conf->hold_list.next;
3536 conf->bypass_count -= conf->bypass_threshold;
3537 if (conf->bypass_count < 0)
3538 conf->bypass_count = 0;
3539 }
3540 }
3541 } else if (!list_empty(&conf->hold_list) &&
3542 ((conf->bypass_threshold &&
3543 conf->bypass_count > conf->bypass_threshold) ||
3544 atomic_read(&conf->pending_full_writes) == 0)) {
3545 sh = list_entry(conf->hold_list.next,
3546 typeof(*sh), lru);
3547 conf->bypass_count -= conf->bypass_threshold;
3548 if (conf->bypass_count < 0)
3549 conf->bypass_count = 0;
3550 } else
3551 return NULL;
3552
3553 list_del_init(&sh->lru);
3554 atomic_inc(&sh->count);
3555 BUG_ON(atomic_read(&sh->count) != 1);
3556 return sh;
3557}
Raz Ben-Jehuda(caro)f6796232006-12-10 02:20:46 -08003558
Jens Axboe165125e2007-07-24 09:28:11 +02003559static int make_request(struct request_queue *q, struct bio * bi)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560{
3561 mddev_t *mddev = q->queuedata;
3562 raid5_conf_t *conf = mddev_to_conf(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563 unsigned int dd_idx, pd_idx;
3564 sector_t new_sector;
3565 sector_t logical_sector, last_sector;
3566 struct stripe_head *sh;
Jens Axboea3623572005-11-01 09:26:16 +01003567 const int rw = bio_data_dir(bi);
NeilBrownf6344752006-03-27 01:18:17 -08003568 int remaining;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569
NeilBrowne5dcdd82005-09-09 16:23:41 -07003570 if (unlikely(bio_barrier(bi))) {
NeilBrown6712ecf2007-09-27 12:47:43 +02003571 bio_endio(bi, -EOPNOTSUPP);
NeilBrowne5dcdd82005-09-09 16:23:41 -07003572 return 0;
3573 }
3574
NeilBrown3d310eb2005-06-21 17:17:26 -07003575 md_write_start(mddev, bi);
NeilBrown06d91a52005-06-21 17:17:12 -07003576
Jens Axboea3623572005-11-01 09:26:16 +01003577 disk_stat_inc(mddev->gendisk, ios[rw]);
3578 disk_stat_add(mddev->gendisk, sectors[rw], bio_sectors(bi));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579
NeilBrown802ba062006-12-13 00:34:13 -08003580 if (rw == READ &&
Raz Ben-Jehuda(caro)52488612006-12-10 02:20:48 -08003581 mddev->reshape_position == MaxSector &&
3582 chunk_aligned_read(q,bi))
3583 return 0;
3584
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585 logical_sector = bi->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
3586 last_sector = bi->bi_sector + (bi->bi_size>>9);
3587 bi->bi_next = NULL;
3588 bi->bi_phys_segments = 1; /* over-loaded to count active stripes */
NeilBrown06d91a52005-06-21 17:17:12 -07003589
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590 for (;logical_sector < last_sector; logical_sector += STRIPE_SECTORS) {
3591 DEFINE_WAIT(w);
NeilBrown16a53ec2006-06-26 00:27:38 -07003592 int disks, data_disks;
NeilBrownb578d552006-03-27 01:18:12 -08003593
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003594 retry:
NeilBrownb578d552006-03-27 01:18:12 -08003595 prepare_to_wait(&conf->wait_for_overlap, &w, TASK_UNINTERRUPTIBLE);
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003596 if (likely(conf->expand_progress == MaxSector))
3597 disks = conf->raid_disks;
3598 else {
NeilBrowndf8e7f72006-03-27 01:18:15 -08003599 /* spinlock is needed as expand_progress may be
3600 * 64bit on a 32bit platform, and so it might be
3601 * possible to see a half-updated value
3602 * Ofcourse expand_progress could change after
3603 * the lock is dropped, so once we get a reference
3604 * to the stripe that we think it is, we will have
3605 * to check again.
3606 */
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003607 spin_lock_irq(&conf->device_lock);
3608 disks = conf->raid_disks;
3609 if (logical_sector >= conf->expand_progress)
3610 disks = conf->previous_raid_disks;
NeilBrownb578d552006-03-27 01:18:12 -08003611 else {
3612 if (logical_sector >= conf->expand_lo) {
3613 spin_unlock_irq(&conf->device_lock);
3614 schedule();
3615 goto retry;
3616 }
3617 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003618 spin_unlock_irq(&conf->device_lock);
3619 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003620 data_disks = disks - conf->max_degraded;
3621
3622 new_sector = raid5_compute_sector(logical_sector, disks, data_disks,
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003623 &dd_idx, &pd_idx, conf);
Dan Williams45b42332007-07-09 11:56:43 -07003624 pr_debug("raid5: make_request, sector %llu logical %llu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625 (unsigned long long)new_sector,
3626 (unsigned long long)logical_sector);
3627
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003628 sh = get_active_stripe(conf, new_sector, disks, pd_idx, (bi->bi_rw&RWA_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629 if (sh) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003630 if (unlikely(conf->expand_progress != MaxSector)) {
3631 /* expansion might have moved on while waiting for a
NeilBrowndf8e7f72006-03-27 01:18:15 -08003632 * stripe, so we must do the range check again.
3633 * Expansion could still move past after this
3634 * test, but as we are holding a reference to
3635 * 'sh', we know that if that happens,
3636 * STRIPE_EXPANDING will get set and the expansion
3637 * won't proceed until we finish with the stripe.
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003638 */
3639 int must_retry = 0;
3640 spin_lock_irq(&conf->device_lock);
3641 if (logical_sector < conf->expand_progress &&
3642 disks == conf->previous_raid_disks)
3643 /* mismatch, need to try again */
3644 must_retry = 1;
3645 spin_unlock_irq(&conf->device_lock);
3646 if (must_retry) {
3647 release_stripe(sh);
3648 goto retry;
3649 }
3650 }
NeilBrowne464eaf2006-03-27 01:18:14 -08003651 /* FIXME what if we get a false positive because these
3652 * are being updated.
3653 */
3654 if (logical_sector >= mddev->suspend_lo &&
3655 logical_sector < mddev->suspend_hi) {
3656 release_stripe(sh);
3657 schedule();
3658 goto retry;
3659 }
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003660
3661 if (test_bit(STRIPE_EXPANDING, &sh->state) ||
3662 !add_stripe_bio(sh, bi, dd_idx, (bi->bi_rw&RW_MASK))) {
3663 /* Stripe is busy expanding or
3664 * add failed due to overlap. Flush everything
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665 * and wait a while
3666 */
3667 raid5_unplug_device(mddev->queue);
3668 release_stripe(sh);
3669 schedule();
3670 goto retry;
3671 }
3672 finish_wait(&conf->wait_for_overlap, &w);
NeilBrown6ed30032008-02-06 01:40:00 -08003673 set_bit(STRIPE_HANDLE, &sh->state);
3674 clear_bit(STRIPE_DELAYED, &sh->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675 release_stripe(sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676 } else {
3677 /* cannot get stripe for read-ahead, just give-up */
3678 clear_bit(BIO_UPTODATE, &bi->bi_flags);
3679 finish_wait(&conf->wait_for_overlap, &w);
3680 break;
3681 }
3682
3683 }
3684 spin_lock_irq(&conf->device_lock);
NeilBrownf6344752006-03-27 01:18:17 -08003685 remaining = --bi->bi_phys_segments;
3686 spin_unlock_irq(&conf->device_lock);
3687 if (remaining == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688
NeilBrown16a53ec2006-06-26 00:27:38 -07003689 if ( rw == WRITE )
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690 md_write_end(mddev);
NeilBrown6712ecf2007-09-27 12:47:43 +02003691
3692 bi->bi_end_io(bi,
NeilBrownc2b00852006-12-10 02:20:51 -08003693 test_bit(BIO_UPTODATE, &bi->bi_flags)
3694 ? 0 : -EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696 return 0;
3697}
3698
NeilBrown52c03292006-06-26 00:27:43 -07003699static sector_t reshape_request(mddev_t *mddev, sector_t sector_nr, int *skipped)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700{
NeilBrown52c03292006-06-26 00:27:43 -07003701 /* reshaping is quite different to recovery/resync so it is
3702 * handled quite separately ... here.
3703 *
3704 * On each call to sync_request, we gather one chunk worth of
3705 * destination stripes and flag them as expanding.
3706 * Then we find all the source stripes and request reads.
3707 * As the reads complete, handle_stripe will copy the data
3708 * into the destination stripe and release that stripe.
3709 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
3711 struct stripe_head *sh;
NeilBrownccfcc3c2006-03-27 01:18:09 -08003712 int pd_idx;
3713 sector_t first_sector, last_sector;
NeilBrownf4168852007-02-28 20:11:53 -08003714 int raid_disks = conf->previous_raid_disks;
3715 int data_disks = raid_disks - conf->max_degraded;
3716 int new_data_disks = conf->raid_disks - conf->max_degraded;
NeilBrown52c03292006-06-26 00:27:43 -07003717 int i;
3718 int dd_idx;
3719 sector_t writepos, safepos, gap;
3720
3721 if (sector_nr == 0 &&
3722 conf->expand_progress != 0) {
3723 /* restarting in the middle, skip the initial sectors */
3724 sector_nr = conf->expand_progress;
NeilBrownf4168852007-02-28 20:11:53 -08003725 sector_div(sector_nr, new_data_disks);
NeilBrown52c03292006-06-26 00:27:43 -07003726 *skipped = 1;
3727 return sector_nr;
3728 }
3729
3730 /* we update the metadata when there is more than 3Meg
3731 * in the block range (that is rather arbitrary, should
3732 * probably be time based) or when the data about to be
3733 * copied would over-write the source of the data at
3734 * the front of the range.
3735 * i.e. one new_stripe forward from expand_progress new_maps
3736 * to after where expand_lo old_maps to
3737 */
3738 writepos = conf->expand_progress +
NeilBrownf4168852007-02-28 20:11:53 -08003739 conf->chunk_size/512*(new_data_disks);
3740 sector_div(writepos, new_data_disks);
NeilBrown52c03292006-06-26 00:27:43 -07003741 safepos = conf->expand_lo;
NeilBrownf4168852007-02-28 20:11:53 -08003742 sector_div(safepos, data_disks);
NeilBrown52c03292006-06-26 00:27:43 -07003743 gap = conf->expand_progress - conf->expand_lo;
3744
3745 if (writepos >= safepos ||
NeilBrownf4168852007-02-28 20:11:53 -08003746 gap > (new_data_disks)*3000*2 /*3Meg*/) {
NeilBrown52c03292006-06-26 00:27:43 -07003747 /* Cannot proceed until we've updated the superblock... */
3748 wait_event(conf->wait_for_overlap,
3749 atomic_read(&conf->reshape_stripes)==0);
3750 mddev->reshape_position = conf->expand_progress;
NeilBrown850b2b42006-10-03 01:15:46 -07003751 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrown52c03292006-06-26 00:27:43 -07003752 md_wakeup_thread(mddev->thread);
NeilBrown850b2b42006-10-03 01:15:46 -07003753 wait_event(mddev->sb_wait, mddev->flags == 0 ||
NeilBrown52c03292006-06-26 00:27:43 -07003754 kthread_should_stop());
3755 spin_lock_irq(&conf->device_lock);
3756 conf->expand_lo = mddev->reshape_position;
3757 spin_unlock_irq(&conf->device_lock);
3758 wake_up(&conf->wait_for_overlap);
3759 }
3760
3761 for (i=0; i < conf->chunk_size/512; i+= STRIPE_SECTORS) {
3762 int j;
3763 int skipped = 0;
3764 pd_idx = stripe_to_pdidx(sector_nr+i, conf, conf->raid_disks);
3765 sh = get_active_stripe(conf, sector_nr+i,
3766 conf->raid_disks, pd_idx, 0);
3767 set_bit(STRIPE_EXPANDING, &sh->state);
3768 atomic_inc(&conf->reshape_stripes);
3769 /* If any of this stripe is beyond the end of the old
3770 * array, then we need to zero those blocks
3771 */
3772 for (j=sh->disks; j--;) {
3773 sector_t s;
3774 if (j == sh->pd_idx)
3775 continue;
NeilBrownf4168852007-02-28 20:11:53 -08003776 if (conf->level == 6 &&
3777 j == raid6_next_disk(sh->pd_idx, sh->disks))
3778 continue;
NeilBrown52c03292006-06-26 00:27:43 -07003779 s = compute_blocknr(sh, j);
3780 if (s < (mddev->array_size<<1)) {
3781 skipped = 1;
3782 continue;
3783 }
3784 memset(page_address(sh->dev[j].page), 0, STRIPE_SIZE);
3785 set_bit(R5_Expanded, &sh->dev[j].flags);
3786 set_bit(R5_UPTODATE, &sh->dev[j].flags);
3787 }
3788 if (!skipped) {
3789 set_bit(STRIPE_EXPAND_READY, &sh->state);
3790 set_bit(STRIPE_HANDLE, &sh->state);
3791 }
3792 release_stripe(sh);
3793 }
3794 spin_lock_irq(&conf->device_lock);
NeilBrown6d3baf22007-03-05 00:30:44 -08003795 conf->expand_progress = (sector_nr + i) * new_data_disks;
NeilBrown52c03292006-06-26 00:27:43 -07003796 spin_unlock_irq(&conf->device_lock);
3797 /* Ok, those stripe are ready. We can start scheduling
3798 * reads on the source stripes.
3799 * The source stripes are determined by mapping the first and last
3800 * block on the destination stripes.
3801 */
NeilBrown52c03292006-06-26 00:27:43 -07003802 first_sector =
NeilBrownf4168852007-02-28 20:11:53 -08003803 raid5_compute_sector(sector_nr*(new_data_disks),
NeilBrown52c03292006-06-26 00:27:43 -07003804 raid_disks, data_disks,
3805 &dd_idx, &pd_idx, conf);
3806 last_sector =
3807 raid5_compute_sector((sector_nr+conf->chunk_size/512)
NeilBrownf4168852007-02-28 20:11:53 -08003808 *(new_data_disks) -1,
NeilBrown52c03292006-06-26 00:27:43 -07003809 raid_disks, data_disks,
3810 &dd_idx, &pd_idx, conf);
3811 if (last_sector >= (mddev->size<<1))
3812 last_sector = (mddev->size<<1)-1;
3813 while (first_sector <= last_sector) {
NeilBrownf4168852007-02-28 20:11:53 -08003814 pd_idx = stripe_to_pdidx(first_sector, conf,
3815 conf->previous_raid_disks);
NeilBrown52c03292006-06-26 00:27:43 -07003816 sh = get_active_stripe(conf, first_sector,
3817 conf->previous_raid_disks, pd_idx, 0);
3818 set_bit(STRIPE_EXPAND_SOURCE, &sh->state);
3819 set_bit(STRIPE_HANDLE, &sh->state);
3820 release_stripe(sh);
3821 first_sector += STRIPE_SECTORS;
3822 }
NeilBrownc6207272008-02-06 01:39:52 -08003823 /* If this takes us to the resync_max point where we have to pause,
3824 * then we need to write out the superblock.
3825 */
3826 sector_nr += conf->chunk_size>>9;
3827 if (sector_nr >= mddev->resync_max) {
3828 /* Cannot proceed until we've updated the superblock... */
3829 wait_event(conf->wait_for_overlap,
3830 atomic_read(&conf->reshape_stripes) == 0);
3831 mddev->reshape_position = conf->expand_progress;
3832 set_bit(MD_CHANGE_DEVS, &mddev->flags);
3833 md_wakeup_thread(mddev->thread);
3834 wait_event(mddev->sb_wait,
3835 !test_bit(MD_CHANGE_DEVS, &mddev->flags)
3836 || kthread_should_stop());
3837 spin_lock_irq(&conf->device_lock);
3838 conf->expand_lo = mddev->reshape_position;
3839 spin_unlock_irq(&conf->device_lock);
3840 wake_up(&conf->wait_for_overlap);
3841 }
NeilBrown52c03292006-06-26 00:27:43 -07003842 return conf->chunk_size>>9;
3843}
3844
3845/* FIXME go_faster isn't used */
3846static inline sector_t sync_request(mddev_t *mddev, sector_t sector_nr, int *skipped, int go_faster)
3847{
3848 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
3849 struct stripe_head *sh;
3850 int pd_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851 int raid_disks = conf->raid_disks;
NeilBrown72626682005-09-09 16:23:54 -07003852 sector_t max_sector = mddev->size << 1;
3853 int sync_blocks;
NeilBrown16a53ec2006-06-26 00:27:38 -07003854 int still_degraded = 0;
3855 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856
NeilBrown72626682005-09-09 16:23:54 -07003857 if (sector_nr >= max_sector) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858 /* just being told to finish up .. nothing much to do */
3859 unplug_slaves(mddev);
NeilBrown29269552006-03-27 01:18:10 -08003860 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery)) {
3861 end_reshape(conf);
3862 return 0;
3863 }
NeilBrown72626682005-09-09 16:23:54 -07003864
3865 if (mddev->curr_resync < max_sector) /* aborted */
3866 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
3867 &sync_blocks, 1);
NeilBrown16a53ec2006-06-26 00:27:38 -07003868 else /* completed sync */
NeilBrown72626682005-09-09 16:23:54 -07003869 conf->fullsync = 0;
3870 bitmap_close_sync(mddev->bitmap);
3871
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872 return 0;
3873 }
NeilBrownccfcc3c2006-03-27 01:18:09 -08003874
NeilBrown52c03292006-06-26 00:27:43 -07003875 if (test_bit(MD_RECOVERY_RESHAPE, &mddev->recovery))
3876 return reshape_request(mddev, sector_nr, skipped);
NeilBrownf6705572006-03-27 01:18:11 -08003877
NeilBrownc6207272008-02-06 01:39:52 -08003878 /* No need to check resync_max as we never do more than one
3879 * stripe, and as resync_max will always be on a chunk boundary,
3880 * if the check in md_do_sync didn't fire, there is no chance
3881 * of overstepping resync_max here
3882 */
3883
NeilBrown16a53ec2006-06-26 00:27:38 -07003884 /* if there is too many failed drives and we are trying
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885 * to resync, then assert that we are finished, because there is
3886 * nothing we can do.
3887 */
NeilBrown3285edf2006-06-26 00:27:55 -07003888 if (mddev->degraded >= conf->max_degraded &&
NeilBrown16a53ec2006-06-26 00:27:38 -07003889 test_bit(MD_RECOVERY_SYNC, &mddev->recovery)) {
NeilBrown57afd892005-06-21 17:17:13 -07003890 sector_t rv = (mddev->size << 1) - sector_nr;
3891 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892 return rv;
3893 }
NeilBrown72626682005-09-09 16:23:54 -07003894 if (!bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
NeilBrown3855ad92005-11-08 21:39:38 -08003895 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
NeilBrown72626682005-09-09 16:23:54 -07003896 !conf->fullsync && sync_blocks >= STRIPE_SECTORS) {
3897 /* we can skip this block, and probably more */
3898 sync_blocks /= STRIPE_SECTORS;
3899 *skipped = 1;
3900 return sync_blocks * STRIPE_SECTORS; /* keep things rounded to whole stripes */
3901 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902
NeilBrownb47490c2008-02-06 01:39:50 -08003903
3904 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
3905
NeilBrownccfcc3c2006-03-27 01:18:09 -08003906 pd_idx = stripe_to_pdidx(sector_nr, conf, raid_disks);
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003907 sh = get_active_stripe(conf, sector_nr, raid_disks, pd_idx, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908 if (sh == NULL) {
NeilBrown7ecaa1e2006-03-27 01:18:08 -08003909 sh = get_active_stripe(conf, sector_nr, raid_disks, pd_idx, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910 /* make sure we don't swamp the stripe cache if someone else
NeilBrown16a53ec2006-06-26 00:27:38 -07003911 * is trying to get access
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912 */
Nishanth Aravamudan66c006a2005-11-07 01:01:17 -08003913 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914 }
NeilBrown16a53ec2006-06-26 00:27:38 -07003915 /* Need to check if array will still be degraded after recovery/resync
3916 * We don't need to check the 'failed' flag as when that gets set,
3917 * recovery aborts.
3918 */
3919 for (i=0; i<mddev->raid_disks; i++)
3920 if (conf->disks[i].rdev == NULL)
3921 still_degraded = 1;
3922
3923 bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, still_degraded);
3924
3925 spin_lock(&sh->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926 set_bit(STRIPE_SYNCING, &sh->state);
3927 clear_bit(STRIPE_INSYNC, &sh->state);
3928 spin_unlock(&sh->lock);
3929
NeilBrown16a53ec2006-06-26 00:27:38 -07003930 handle_stripe(sh, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931 release_stripe(sh);
3932
3933 return STRIPE_SECTORS;
3934}
3935
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003936static int retry_aligned_read(raid5_conf_t *conf, struct bio *raid_bio)
3937{
3938 /* We may not be able to submit a whole bio at once as there
3939 * may not be enough stripe_heads available.
3940 * We cannot pre-allocate enough stripe_heads as we may need
3941 * more than exist in the cache (if we allow ever large chunks).
3942 * So we do one stripe head at a time and record in
3943 * ->bi_hw_segments how many have been done.
3944 *
3945 * We *know* that this entire raid_bio is in one chunk, so
3946 * it will be only one 'dd_idx' and only need one call to raid5_compute_sector.
3947 */
3948 struct stripe_head *sh;
3949 int dd_idx, pd_idx;
3950 sector_t sector, logical_sector, last_sector;
3951 int scnt = 0;
3952 int remaining;
3953 int handled = 0;
3954
3955 logical_sector = raid_bio->bi_sector & ~((sector_t)STRIPE_SECTORS-1);
3956 sector = raid5_compute_sector( logical_sector,
3957 conf->raid_disks,
3958 conf->raid_disks - conf->max_degraded,
3959 &dd_idx,
3960 &pd_idx,
3961 conf);
3962 last_sector = raid_bio->bi_sector + (raid_bio->bi_size>>9);
3963
3964 for (; logical_sector < last_sector;
Neil Brown387bb172007-02-08 14:20:29 -08003965 logical_sector += STRIPE_SECTORS,
3966 sector += STRIPE_SECTORS,
3967 scnt++) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003968
3969 if (scnt < raid_bio->bi_hw_segments)
3970 /* already done this stripe */
3971 continue;
3972
3973 sh = get_active_stripe(conf, sector, conf->raid_disks, pd_idx, 1);
3974
3975 if (!sh) {
3976 /* failed to get a stripe - must wait */
3977 raid_bio->bi_hw_segments = scnt;
3978 conf->retry_read_aligned = raid_bio;
3979 return handled;
3980 }
3981
3982 set_bit(R5_ReadError, &sh->dev[dd_idx].flags);
Neil Brown387bb172007-02-08 14:20:29 -08003983 if (!add_stripe_bio(sh, raid_bio, dd_idx, 0)) {
3984 release_stripe(sh);
3985 raid_bio->bi_hw_segments = scnt;
3986 conf->retry_read_aligned = raid_bio;
3987 return handled;
3988 }
3989
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003990 handle_stripe(sh, NULL);
3991 release_stripe(sh);
3992 handled++;
3993 }
3994 spin_lock_irq(&conf->device_lock);
3995 remaining = --raid_bio->bi_phys_segments;
3996 spin_unlock_irq(&conf->device_lock);
3997 if (remaining == 0) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08003998
NeilBrown6712ecf2007-09-27 12:47:43 +02003999 raid_bio->bi_end_io(raid_bio,
NeilBrownc2b00852006-12-10 02:20:51 -08004000 test_bit(BIO_UPTODATE, &raid_bio->bi_flags)
4001 ? 0 : -EIO);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004002 }
4003 if (atomic_dec_and_test(&conf->active_aligned_reads))
4004 wake_up(&conf->wait_for_stripe);
4005 return handled;
4006}
4007
4008
4009
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010/*
4011 * This is our raid5 kernel thread.
4012 *
4013 * We scan the hash table for stripes which can be handled now.
4014 * During the scan, completed stripes are saved for us by the interrupt
4015 * handler, so that they will not have to wait for our next wakeup.
4016 */
NeilBrown6ed30032008-02-06 01:40:00 -08004017static void raid5d(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018{
4019 struct stripe_head *sh;
4020 raid5_conf_t *conf = mddev_to_conf(mddev);
4021 int handled;
4022
Dan Williams45b42332007-07-09 11:56:43 -07004023 pr_debug("+++ raid5d active\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024
4025 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026
4027 handled = 0;
4028 spin_lock_irq(&conf->device_lock);
4029 while (1) {
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004030 struct bio *bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031
NeilBrownae3c20c2006-07-10 04:44:17 -07004032 if (conf->seq_flush != conf->seq_write) {
NeilBrown72626682005-09-09 16:23:54 -07004033 int seq = conf->seq_flush;
NeilBrown700e4322005-11-28 13:44:10 -08004034 spin_unlock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07004035 bitmap_unplug(mddev->bitmap);
NeilBrown700e4322005-11-28 13:44:10 -08004036 spin_lock_irq(&conf->device_lock);
NeilBrown72626682005-09-09 16:23:54 -07004037 conf->seq_write = seq;
4038 activate_bit_delay(conf);
4039 }
4040
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004041 while ((bio = remove_bio_from_retry(conf))) {
4042 int ok;
4043 spin_unlock_irq(&conf->device_lock);
4044 ok = retry_aligned_read(conf, bio);
4045 spin_lock_irq(&conf->device_lock);
4046 if (!ok)
4047 break;
4048 handled++;
4049 }
4050
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004051 sh = __get_priority_stripe(conf);
4052
4053 if (!sh) {
Dan Williamsd84e0f12007-01-02 13:52:30 -07004054 async_tx_issue_pending_all();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055 break;
Dan Williamsd84e0f12007-01-02 13:52:30 -07004056 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057 spin_unlock_irq(&conf->device_lock);
4058
4059 handled++;
NeilBrown16a53ec2006-06-26 00:27:38 -07004060 handle_stripe(sh, conf->spare_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061 release_stripe(sh);
4062
4063 spin_lock_irq(&conf->device_lock);
4064 }
Dan Williams45b42332007-07-09 11:56:43 -07004065 pr_debug("%d stripes handled\n", handled);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066
4067 spin_unlock_irq(&conf->device_lock);
4068
4069 unplug_slaves(mddev);
4070
Dan Williams45b42332007-07-09 11:56:43 -07004071 pr_debug("--- raid5d inactive\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004072}
4073
NeilBrown3f294f42005-11-08 21:39:25 -08004074static ssize_t
NeilBrown007583c2005-11-08 21:39:30 -08004075raid5_show_stripe_cache_size(mddev_t *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08004076{
NeilBrown007583c2005-11-08 21:39:30 -08004077 raid5_conf_t *conf = mddev_to_conf(mddev);
NeilBrown96de1e62005-11-08 21:39:39 -08004078 if (conf)
4079 return sprintf(page, "%d\n", conf->max_nr_stripes);
4080 else
4081 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08004082}
4083
4084static ssize_t
NeilBrown007583c2005-11-08 21:39:30 -08004085raid5_store_stripe_cache_size(mddev_t *mddev, const char *page, size_t len)
NeilBrown3f294f42005-11-08 21:39:25 -08004086{
NeilBrown007583c2005-11-08 21:39:30 -08004087 raid5_conf_t *conf = mddev_to_conf(mddev);
Dan Williams4ef197d82008-04-28 02:15:54 -07004088 unsigned long new;
NeilBrown3f294f42005-11-08 21:39:25 -08004089 if (len >= PAGE_SIZE)
4090 return -EINVAL;
NeilBrown96de1e62005-11-08 21:39:39 -08004091 if (!conf)
4092 return -ENODEV;
NeilBrown3f294f42005-11-08 21:39:25 -08004093
Dan Williams4ef197d82008-04-28 02:15:54 -07004094 if (strict_strtoul(page, 10, &new))
NeilBrown3f294f42005-11-08 21:39:25 -08004095 return -EINVAL;
4096 if (new <= 16 || new > 32768)
4097 return -EINVAL;
4098 while (new < conf->max_nr_stripes) {
4099 if (drop_one_stripe(conf))
4100 conf->max_nr_stripes--;
4101 else
4102 break;
4103 }
NeilBrown2a2275d2007-01-26 00:57:11 -08004104 md_allow_write(mddev);
NeilBrown3f294f42005-11-08 21:39:25 -08004105 while (new > conf->max_nr_stripes) {
4106 if (grow_one_stripe(conf))
4107 conf->max_nr_stripes++;
4108 else break;
4109 }
4110 return len;
4111}
NeilBrown007583c2005-11-08 21:39:30 -08004112
NeilBrown96de1e62005-11-08 21:39:39 -08004113static struct md_sysfs_entry
4114raid5_stripecache_size = __ATTR(stripe_cache_size, S_IRUGO | S_IWUSR,
4115 raid5_show_stripe_cache_size,
4116 raid5_store_stripe_cache_size);
NeilBrown3f294f42005-11-08 21:39:25 -08004117
4118static ssize_t
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004119raid5_show_preread_threshold(mddev_t *mddev, char *page)
4120{
4121 raid5_conf_t *conf = mddev_to_conf(mddev);
4122 if (conf)
4123 return sprintf(page, "%d\n", conf->bypass_threshold);
4124 else
4125 return 0;
4126}
4127
4128static ssize_t
4129raid5_store_preread_threshold(mddev_t *mddev, const char *page, size_t len)
4130{
4131 raid5_conf_t *conf = mddev_to_conf(mddev);
Dan Williams4ef197d82008-04-28 02:15:54 -07004132 unsigned long new;
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004133 if (len >= PAGE_SIZE)
4134 return -EINVAL;
4135 if (!conf)
4136 return -ENODEV;
4137
Dan Williams4ef197d82008-04-28 02:15:54 -07004138 if (strict_strtoul(page, 10, &new))
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004139 return -EINVAL;
Dan Williams4ef197d82008-04-28 02:15:54 -07004140 if (new > conf->max_nr_stripes)
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004141 return -EINVAL;
4142 conf->bypass_threshold = new;
4143 return len;
4144}
4145
4146static struct md_sysfs_entry
4147raid5_preread_bypass_threshold = __ATTR(preread_bypass_threshold,
4148 S_IRUGO | S_IWUSR,
4149 raid5_show_preread_threshold,
4150 raid5_store_preread_threshold);
4151
4152static ssize_t
NeilBrown96de1e62005-11-08 21:39:39 -08004153stripe_cache_active_show(mddev_t *mddev, char *page)
NeilBrown3f294f42005-11-08 21:39:25 -08004154{
NeilBrown007583c2005-11-08 21:39:30 -08004155 raid5_conf_t *conf = mddev_to_conf(mddev);
NeilBrown96de1e62005-11-08 21:39:39 -08004156 if (conf)
4157 return sprintf(page, "%d\n", atomic_read(&conf->active_stripes));
4158 else
4159 return 0;
NeilBrown3f294f42005-11-08 21:39:25 -08004160}
4161
NeilBrown96de1e62005-11-08 21:39:39 -08004162static struct md_sysfs_entry
4163raid5_stripecache_active = __ATTR_RO(stripe_cache_active);
NeilBrown3f294f42005-11-08 21:39:25 -08004164
NeilBrown007583c2005-11-08 21:39:30 -08004165static struct attribute *raid5_attrs[] = {
NeilBrown3f294f42005-11-08 21:39:25 -08004166 &raid5_stripecache_size.attr,
4167 &raid5_stripecache_active.attr,
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004168 &raid5_preread_bypass_threshold.attr,
NeilBrown3f294f42005-11-08 21:39:25 -08004169 NULL,
4170};
NeilBrown007583c2005-11-08 21:39:30 -08004171static struct attribute_group raid5_attrs_group = {
4172 .name = NULL,
4173 .attrs = raid5_attrs,
NeilBrown3f294f42005-11-08 21:39:25 -08004174};
4175
NeilBrown72626682005-09-09 16:23:54 -07004176static int run(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177{
4178 raid5_conf_t *conf;
4179 int raid_disk, memory;
4180 mdk_rdev_t *rdev;
4181 struct disk_info *disk;
4182 struct list_head *tmp;
NeilBrown02c2de82006-10-03 01:15:47 -07004183 int working_disks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184
NeilBrown16a53ec2006-06-26 00:27:38 -07004185 if (mddev->level != 5 && mddev->level != 4 && mddev->level != 6) {
4186 printk(KERN_ERR "raid5: %s: raid level not set to 4/5/6 (%d)\n",
NeilBrown14f8d262006-01-06 00:20:14 -08004187 mdname(mddev), mddev->level);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004188 return -EIO;
4189 }
4190
NeilBrownf6705572006-03-27 01:18:11 -08004191 if (mddev->reshape_position != MaxSector) {
4192 /* Check that we can continue the reshape.
4193 * Currently only disks can change, it must
4194 * increase, and we must be past the point where
4195 * a stripe over-writes itself
4196 */
4197 sector_t here_new, here_old;
4198 int old_disks;
NeilBrownf4168852007-02-28 20:11:53 -08004199 int max_degraded = (mddev->level == 5 ? 1 : 2);
NeilBrownf6705572006-03-27 01:18:11 -08004200
4201 if (mddev->new_level != mddev->level ||
4202 mddev->new_layout != mddev->layout ||
4203 mddev->new_chunk != mddev->chunk_size) {
NeilBrownf4168852007-02-28 20:11:53 -08004204 printk(KERN_ERR "raid5: %s: unsupported reshape "
4205 "required - aborting.\n",
NeilBrownf6705572006-03-27 01:18:11 -08004206 mdname(mddev));
4207 return -EINVAL;
4208 }
4209 if (mddev->delta_disks <= 0) {
NeilBrownf4168852007-02-28 20:11:53 -08004210 printk(KERN_ERR "raid5: %s: unsupported reshape "
4211 "(reduce disks) required - aborting.\n",
NeilBrownf6705572006-03-27 01:18:11 -08004212 mdname(mddev));
4213 return -EINVAL;
4214 }
4215 old_disks = mddev->raid_disks - mddev->delta_disks;
4216 /* reshape_position must be on a new-stripe boundary, and one
NeilBrownf4168852007-02-28 20:11:53 -08004217 * further up in new geometry must map after here in old
4218 * geometry.
NeilBrownf6705572006-03-27 01:18:11 -08004219 */
4220 here_new = mddev->reshape_position;
NeilBrownf4168852007-02-28 20:11:53 -08004221 if (sector_div(here_new, (mddev->chunk_size>>9)*
4222 (mddev->raid_disks - max_degraded))) {
4223 printk(KERN_ERR "raid5: reshape_position not "
4224 "on a stripe boundary\n");
NeilBrownf6705572006-03-27 01:18:11 -08004225 return -EINVAL;
4226 }
4227 /* here_new is the stripe we will write to */
4228 here_old = mddev->reshape_position;
NeilBrownf4168852007-02-28 20:11:53 -08004229 sector_div(here_old, (mddev->chunk_size>>9)*
4230 (old_disks-max_degraded));
4231 /* here_old is the first stripe that we might need to read
4232 * from */
NeilBrownf6705572006-03-27 01:18:11 -08004233 if (here_new >= here_old) {
4234 /* Reading from the same stripe as writing to - bad */
NeilBrownf4168852007-02-28 20:11:53 -08004235 printk(KERN_ERR "raid5: reshape_position too early for "
4236 "auto-recovery - aborting.\n");
NeilBrownf6705572006-03-27 01:18:11 -08004237 return -EINVAL;
4238 }
4239 printk(KERN_INFO "raid5: reshape will continue\n");
4240 /* OK, we should be able to continue; */
4241 }
4242
4243
NeilBrownb55e6bf2006-03-27 01:18:06 -08004244 mddev->private = kzalloc(sizeof (raid5_conf_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004245 if ((conf = mddev->private) == NULL)
4246 goto abort;
NeilBrownf6705572006-03-27 01:18:11 -08004247 if (mddev->reshape_position == MaxSector) {
4248 conf->previous_raid_disks = conf->raid_disks = mddev->raid_disks;
4249 } else {
4250 conf->raid_disks = mddev->raid_disks;
4251 conf->previous_raid_disks = mddev->raid_disks - mddev->delta_disks;
4252 }
4253
4254 conf->disks = kzalloc(conf->raid_disks * sizeof(struct disk_info),
NeilBrownb55e6bf2006-03-27 01:18:06 -08004255 GFP_KERNEL);
4256 if (!conf->disks)
4257 goto abort;
NeilBrown9ffae0c2006-01-06 00:20:32 -08004258
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259 conf->mddev = mddev;
4260
NeilBrownfccddba2006-01-06 00:20:33 -08004261 if ((conf->stripe_hashtbl = kzalloc(PAGE_SIZE, GFP_KERNEL)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263
NeilBrown16a53ec2006-06-26 00:27:38 -07004264 if (mddev->level == 6) {
4265 conf->spare_page = alloc_page(GFP_KERNEL);
4266 if (!conf->spare_page)
4267 goto abort;
4268 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269 spin_lock_init(&conf->device_lock);
Neil Browne7e72bf2008-05-14 16:05:54 -07004270 mddev->queue->queue_lock = &conf->device_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271 init_waitqueue_head(&conf->wait_for_stripe);
4272 init_waitqueue_head(&conf->wait_for_overlap);
4273 INIT_LIST_HEAD(&conf->handle_list);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004274 INIT_LIST_HEAD(&conf->hold_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004275 INIT_LIST_HEAD(&conf->delayed_list);
NeilBrown72626682005-09-09 16:23:54 -07004276 INIT_LIST_HEAD(&conf->bitmap_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004277 INIT_LIST_HEAD(&conf->inactive_list);
4278 atomic_set(&conf->active_stripes, 0);
4279 atomic_set(&conf->preread_active_stripes, 0);
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004280 atomic_set(&conf->active_aligned_reads, 0);
Dan Williams8b3e6cd2008-04-28 02:15:53 -07004281 conf->bypass_threshold = BYPASS_THRESHOLD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282
Dan Williams45b42332007-07-09 11:56:43 -07004283 pr_debug("raid5: run(%s) called.\n", mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284
NeilBrownd089c6a2008-02-06 01:39:59 -08004285 rdev_for_each(rdev, tmp, mddev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004286 raid_disk = rdev->raid_disk;
NeilBrownf6705572006-03-27 01:18:11 -08004287 if (raid_disk >= conf->raid_disks
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288 || raid_disk < 0)
4289 continue;
4290 disk = conf->disks + raid_disk;
4291
4292 disk->rdev = rdev;
4293
NeilBrownb2d444d2005-11-08 21:39:31 -08004294 if (test_bit(In_sync, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295 char b[BDEVNAME_SIZE];
4296 printk(KERN_INFO "raid5: device %s operational as raid"
4297 " disk %d\n", bdevname(rdev->bdev,b),
4298 raid_disk);
NeilBrown02c2de82006-10-03 01:15:47 -07004299 working_disks++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004300 }
4301 }
4302
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303 /*
NeilBrown16a53ec2006-06-26 00:27:38 -07004304 * 0 for a fully functional array, 1 or 2 for a degraded array.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305 */
NeilBrown02c2de82006-10-03 01:15:47 -07004306 mddev->degraded = conf->raid_disks - working_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307 conf->mddev = mddev;
4308 conf->chunk_size = mddev->chunk_size;
4309 conf->level = mddev->level;
NeilBrown16a53ec2006-06-26 00:27:38 -07004310 if (conf->level == 6)
4311 conf->max_degraded = 2;
4312 else
4313 conf->max_degraded = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314 conf->algorithm = mddev->layout;
4315 conf->max_nr_stripes = NR_STRIPES;
NeilBrownf6705572006-03-27 01:18:11 -08004316 conf->expand_progress = mddev->reshape_position;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317
4318 /* device size must be a multiple of chunk size */
4319 mddev->size &= ~(mddev->chunk_size/1024 -1);
NeilBrownb1581562005-07-31 22:34:50 -07004320 mddev->resync_max_sectors = mddev->size << 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321
NeilBrown16a53ec2006-06-26 00:27:38 -07004322 if (conf->level == 6 && conf->raid_disks < 4) {
4323 printk(KERN_ERR "raid6: not enough configured devices for %s (%d, minimum 4)\n",
4324 mdname(mddev), conf->raid_disks);
4325 goto abort;
4326 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327 if (!conf->chunk_size || conf->chunk_size % 4) {
4328 printk(KERN_ERR "raid5: invalid chunk size %d for %s\n",
4329 conf->chunk_size, mdname(mddev));
4330 goto abort;
4331 }
4332 if (conf->algorithm > ALGORITHM_RIGHT_SYMMETRIC) {
4333 printk(KERN_ERR
4334 "raid5: unsupported parity algorithm %d for %s\n",
4335 conf->algorithm, mdname(mddev));
4336 goto abort;
4337 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004338 if (mddev->degraded > conf->max_degraded) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339 printk(KERN_ERR "raid5: not enough operational devices for %s"
4340 " (%d/%d failed)\n",
NeilBrown02c2de82006-10-03 01:15:47 -07004341 mdname(mddev), mddev->degraded, conf->raid_disks);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342 goto abort;
4343 }
4344
NeilBrown16a53ec2006-06-26 00:27:38 -07004345 if (mddev->degraded > 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07004346 mddev->recovery_cp != MaxSector) {
NeilBrown6ff8d8ec2006-01-06 00:20:15 -08004347 if (mddev->ok_start_degraded)
4348 printk(KERN_WARNING
4349 "raid5: starting dirty degraded array: %s"
4350 "- data corruption possible.\n",
4351 mdname(mddev));
4352 else {
4353 printk(KERN_ERR
4354 "raid5: cannot start dirty degraded array for %s\n",
4355 mdname(mddev));
4356 goto abort;
4357 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004358 }
4359
4360 {
4361 mddev->thread = md_register_thread(raid5d, mddev, "%s_raid5");
4362 if (!mddev->thread) {
4363 printk(KERN_ERR
4364 "raid5: couldn't allocate thread for %s\n",
4365 mdname(mddev));
4366 goto abort;
4367 }
4368 }
NeilBrown50368052005-12-12 02:39:17 -08004369 memory = conf->max_nr_stripes * (sizeof(struct stripe_head) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370 conf->raid_disks * ((sizeof(struct bio) + PAGE_SIZE))) / 1024;
4371 if (grow_stripes(conf, conf->max_nr_stripes)) {
4372 printk(KERN_ERR
4373 "raid5: couldn't allocate %dkB for buffers\n", memory);
4374 shrink_stripes(conf);
4375 md_unregister_thread(mddev->thread);
4376 goto abort;
4377 } else
4378 printk(KERN_INFO "raid5: allocated %dkB for %s\n",
4379 memory, mdname(mddev));
4380
4381 if (mddev->degraded == 0)
4382 printk("raid5: raid level %d set %s active with %d out of %d"
4383 " devices, algorithm %d\n", conf->level, mdname(mddev),
4384 mddev->raid_disks-mddev->degraded, mddev->raid_disks,
4385 conf->algorithm);
4386 else
4387 printk(KERN_ALERT "raid5: raid level %d set %s active with %d"
4388 " out of %d devices, algorithm %d\n", conf->level,
4389 mdname(mddev), mddev->raid_disks - mddev->degraded,
4390 mddev->raid_disks, conf->algorithm);
4391
4392 print_raid5_conf(conf);
4393
NeilBrownf6705572006-03-27 01:18:11 -08004394 if (conf->expand_progress != MaxSector) {
4395 printk("...ok start reshape thread\n");
NeilBrownb578d552006-03-27 01:18:12 -08004396 conf->expand_lo = conf->expand_progress;
NeilBrownf6705572006-03-27 01:18:11 -08004397 atomic_set(&conf->reshape_stripes, 0);
4398 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
4399 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
4400 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
4401 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
4402 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
4403 "%s_reshape");
NeilBrownf6705572006-03-27 01:18:11 -08004404 }
4405
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406 /* read-ahead size must cover two whole stripes, which is
NeilBrown16a53ec2006-06-26 00:27:38 -07004407 * 2 * (datadisks) * chunksize where 'n' is the number of raid devices
Linus Torvalds1da177e2005-04-16 15:20:36 -07004408 */
4409 {
NeilBrown16a53ec2006-06-26 00:27:38 -07004410 int data_disks = conf->previous_raid_disks - conf->max_degraded;
4411 int stripe = data_disks *
NeilBrown8932c2e2006-06-26 00:27:36 -07004412 (mddev->chunk_size / PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004413 if (mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
4414 mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
4415 }
4416
4417 /* Ok, everything is just fine now */
NeilBrown5e55e2f2007-03-26 21:32:14 -08004418 if (sysfs_create_group(&mddev->kobj, &raid5_attrs_group))
4419 printk(KERN_WARNING
4420 "raid5: failed to create sysfs attributes for %s\n",
4421 mdname(mddev));
NeilBrown7a5febe2005-05-16 21:53:16 -07004422
4423 mddev->queue->unplug_fn = raid5_unplug_device;
NeilBrownf022b2f2006-10-03 01:15:56 -07004424 mddev->queue->backing_dev_info.congested_data = mddev;
NeilBrown041ae522007-03-26 21:32:14 -08004425 mddev->queue->backing_dev_info.congested_fn = raid5_congested;
NeilBrownf022b2f2006-10-03 01:15:56 -07004426
NeilBrown16a53ec2006-06-26 00:27:38 -07004427 mddev->array_size = mddev->size * (conf->previous_raid_disks -
4428 conf->max_degraded);
NeilBrown7a5febe2005-05-16 21:53:16 -07004429
Raz Ben-Jehuda(caro)23032a02006-12-10 02:20:45 -08004430 blk_queue_merge_bvec(mddev->queue, raid5_mergeable_bvec);
4431
Linus Torvalds1da177e2005-04-16 15:20:36 -07004432 return 0;
4433abort:
4434 if (conf) {
4435 print_raid5_conf(conf);
NeilBrown16a53ec2006-06-26 00:27:38 -07004436 safe_put_page(conf->spare_page);
NeilBrownb55e6bf2006-03-27 01:18:06 -08004437 kfree(conf->disks);
NeilBrownfccddba2006-01-06 00:20:33 -08004438 kfree(conf->stripe_hashtbl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004439 kfree(conf);
4440 }
4441 mddev->private = NULL;
4442 printk(KERN_ALERT "raid5: failed to run raid set %s\n", mdname(mddev));
4443 return -EIO;
4444}
4445
4446
4447
NeilBrown3f294f42005-11-08 21:39:25 -08004448static int stop(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449{
4450 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
4451
4452 md_unregister_thread(mddev->thread);
4453 mddev->thread = NULL;
4454 shrink_stripes(conf);
NeilBrownfccddba2006-01-06 00:20:33 -08004455 kfree(conf->stripe_hashtbl);
NeilBrown041ae522007-03-26 21:32:14 -08004456 mddev->queue->backing_dev_info.congested_fn = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457 blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/
NeilBrown007583c2005-11-08 21:39:30 -08004458 sysfs_remove_group(&mddev->kobj, &raid5_attrs_group);
NeilBrownb55e6bf2006-03-27 01:18:06 -08004459 kfree(conf->disks);
NeilBrown96de1e62005-11-08 21:39:39 -08004460 kfree(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004461 mddev->private = NULL;
4462 return 0;
4463}
4464
Dan Williams45b42332007-07-09 11:56:43 -07004465#ifdef DEBUG
NeilBrown16a53ec2006-06-26 00:27:38 -07004466static void print_sh (struct seq_file *seq, struct stripe_head *sh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467{
4468 int i;
4469
NeilBrown16a53ec2006-06-26 00:27:38 -07004470 seq_printf(seq, "sh %llu, pd_idx %d, state %ld.\n",
4471 (unsigned long long)sh->sector, sh->pd_idx, sh->state);
4472 seq_printf(seq, "sh %llu, count %d.\n",
4473 (unsigned long long)sh->sector, atomic_read(&sh->count));
4474 seq_printf(seq, "sh %llu, ", (unsigned long long)sh->sector);
NeilBrown7ecaa1e2006-03-27 01:18:08 -08004475 for (i = 0; i < sh->disks; i++) {
NeilBrown16a53ec2006-06-26 00:27:38 -07004476 seq_printf(seq, "(cache%d: %p %ld) ",
4477 i, sh->dev[i].page, sh->dev[i].flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478 }
NeilBrown16a53ec2006-06-26 00:27:38 -07004479 seq_printf(seq, "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004480}
4481
NeilBrown16a53ec2006-06-26 00:27:38 -07004482static void printall (struct seq_file *seq, raid5_conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004483{
4484 struct stripe_head *sh;
NeilBrownfccddba2006-01-06 00:20:33 -08004485 struct hlist_node *hn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004486 int i;
4487
4488 spin_lock_irq(&conf->device_lock);
4489 for (i = 0; i < NR_HASH; i++) {
NeilBrownfccddba2006-01-06 00:20:33 -08004490 hlist_for_each_entry(sh, hn, &conf->stripe_hashtbl[i], hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491 if (sh->raid_conf != conf)
4492 continue;
NeilBrown16a53ec2006-06-26 00:27:38 -07004493 print_sh(seq, sh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494 }
4495 }
4496 spin_unlock_irq(&conf->device_lock);
4497}
4498#endif
4499
4500static void status (struct seq_file *seq, mddev_t *mddev)
4501{
4502 raid5_conf_t *conf = (raid5_conf_t *) mddev->private;
4503 int i;
4504
4505 seq_printf (seq, " level %d, %dk chunk, algorithm %d", mddev->level, mddev->chunk_size >> 10, mddev->layout);
NeilBrown02c2de82006-10-03 01:15:47 -07004506 seq_printf (seq, " [%d/%d] [", conf->raid_disks, conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004507 for (i = 0; i < conf->raid_disks; i++)
4508 seq_printf (seq, "%s",
4509 conf->disks[i].rdev &&
NeilBrownb2d444d2005-11-08 21:39:31 -08004510 test_bit(In_sync, &conf->disks[i].rdev->flags) ? "U" : "_");
Linus Torvalds1da177e2005-04-16 15:20:36 -07004511 seq_printf (seq, "]");
Dan Williams45b42332007-07-09 11:56:43 -07004512#ifdef DEBUG
NeilBrown16a53ec2006-06-26 00:27:38 -07004513 seq_printf (seq, "\n");
4514 printall(seq, conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515#endif
4516}
4517
4518static void print_raid5_conf (raid5_conf_t *conf)
4519{
4520 int i;
4521 struct disk_info *tmp;
4522
4523 printk("RAID5 conf printout:\n");
4524 if (!conf) {
4525 printk("(conf==NULL)\n");
4526 return;
4527 }
NeilBrown02c2de82006-10-03 01:15:47 -07004528 printk(" --- rd:%d wd:%d\n", conf->raid_disks,
4529 conf->raid_disks - conf->mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530
4531 for (i = 0; i < conf->raid_disks; i++) {
4532 char b[BDEVNAME_SIZE];
4533 tmp = conf->disks + i;
4534 if (tmp->rdev)
4535 printk(" disk %d, o:%d, dev:%s\n",
NeilBrownb2d444d2005-11-08 21:39:31 -08004536 i, !test_bit(Faulty, &tmp->rdev->flags),
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537 bdevname(tmp->rdev->bdev,b));
4538 }
4539}
4540
4541static int raid5_spare_active(mddev_t *mddev)
4542{
4543 int i;
4544 raid5_conf_t *conf = mddev->private;
4545 struct disk_info *tmp;
4546
4547 for (i = 0; i < conf->raid_disks; i++) {
4548 tmp = conf->disks + i;
4549 if (tmp->rdev
NeilBrownb2d444d2005-11-08 21:39:31 -08004550 && !test_bit(Faulty, &tmp->rdev->flags)
NeilBrownc04be0a2006-10-03 01:15:53 -07004551 && !test_and_set_bit(In_sync, &tmp->rdev->flags)) {
4552 unsigned long flags;
4553 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554 mddev->degraded--;
NeilBrownc04be0a2006-10-03 01:15:53 -07004555 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556 }
4557 }
4558 print_raid5_conf(conf);
4559 return 0;
4560}
4561
4562static int raid5_remove_disk(mddev_t *mddev, int number)
4563{
4564 raid5_conf_t *conf = mddev->private;
4565 int err = 0;
4566 mdk_rdev_t *rdev;
4567 struct disk_info *p = conf->disks + number;
4568
4569 print_raid5_conf(conf);
4570 rdev = p->rdev;
4571 if (rdev) {
NeilBrownb2d444d2005-11-08 21:39:31 -08004572 if (test_bit(In_sync, &rdev->flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573 atomic_read(&rdev->nr_pending)) {
4574 err = -EBUSY;
4575 goto abort;
4576 }
4577 p->rdev = NULL;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07004578 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579 if (atomic_read(&rdev->nr_pending)) {
4580 /* lost the race, try later */
4581 err = -EBUSY;
4582 p->rdev = rdev;
4583 }
4584 }
4585abort:
4586
4587 print_raid5_conf(conf);
4588 return err;
4589}
4590
4591static int raid5_add_disk(mddev_t *mddev, mdk_rdev_t *rdev)
4592{
4593 raid5_conf_t *conf = mddev->private;
4594 int found = 0;
4595 int disk;
4596 struct disk_info *p;
4597
NeilBrown16a53ec2006-06-26 00:27:38 -07004598 if (mddev->degraded > conf->max_degraded)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004599 /* no point adding a device */
4600 return 0;
4601
4602 /*
NeilBrown16a53ec2006-06-26 00:27:38 -07004603 * find the disk ... but prefer rdev->saved_raid_disk
4604 * if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004605 */
NeilBrown16a53ec2006-06-26 00:27:38 -07004606 if (rdev->saved_raid_disk >= 0 &&
4607 conf->disks[rdev->saved_raid_disk].rdev == NULL)
4608 disk = rdev->saved_raid_disk;
4609 else
4610 disk = 0;
4611 for ( ; disk < conf->raid_disks; disk++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612 if ((p=conf->disks + disk)->rdev == NULL) {
NeilBrownb2d444d2005-11-08 21:39:31 -08004613 clear_bit(In_sync, &rdev->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004614 rdev->raid_disk = disk;
4615 found = 1;
NeilBrown72626682005-09-09 16:23:54 -07004616 if (rdev->saved_raid_disk != disk)
4617 conf->fullsync = 1;
Suzanne Woodd6065f72005-11-08 21:39:27 -08004618 rcu_assign_pointer(p->rdev, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004619 break;
4620 }
4621 print_raid5_conf(conf);
4622 return found;
4623}
4624
4625static int raid5_resize(mddev_t *mddev, sector_t sectors)
4626{
4627 /* no resync is happening, and there is enough space
4628 * on all devices, so we can resize.
4629 * We need to make sure resync covers any new space.
4630 * If the array is shrinking we should possibly wait until
4631 * any io in the removed space completes, but it hardly seems
4632 * worth it.
4633 */
NeilBrown16a53ec2006-06-26 00:27:38 -07004634 raid5_conf_t *conf = mddev_to_conf(mddev);
4635
Linus Torvalds1da177e2005-04-16 15:20:36 -07004636 sectors &= ~((sector_t)mddev->chunk_size/512 - 1);
NeilBrown16a53ec2006-06-26 00:27:38 -07004637 mddev->array_size = (sectors * (mddev->raid_disks-conf->max_degraded))>>1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004638 set_capacity(mddev->gendisk, mddev->array_size << 1);
Linus Torvalds44ce62942007-05-09 18:51:36 -07004639 mddev->changed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640 if (sectors/2 > mddev->size && mddev->recovery_cp == MaxSector) {
4641 mddev->recovery_cp = mddev->size << 1;
4642 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
4643 }
4644 mddev->size = sectors /2;
NeilBrown4b5c7ae2005-07-27 11:43:28 -07004645 mddev->resync_max_sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646 return 0;
4647}
4648
NeilBrown29269552006-03-27 01:18:10 -08004649#ifdef CONFIG_MD_RAID5_RESHAPE
NeilBrown63c70c42006-03-27 01:18:13 -08004650static int raid5_check_reshape(mddev_t *mddev)
NeilBrown29269552006-03-27 01:18:10 -08004651{
4652 raid5_conf_t *conf = mddev_to_conf(mddev);
4653 int err;
NeilBrown29269552006-03-27 01:18:10 -08004654
NeilBrown63c70c42006-03-27 01:18:13 -08004655 if (mddev->delta_disks < 0 ||
4656 mddev->new_level != mddev->level)
4657 return -EINVAL; /* Cannot shrink array or change level yet */
4658 if (mddev->delta_disks == 0)
NeilBrown29269552006-03-27 01:18:10 -08004659 return 0; /* nothing to do */
4660
4661 /* Can only proceed if there are plenty of stripe_heads.
4662 * We need a minimum of one full stripe,, and for sensible progress
4663 * it is best to have about 4 times that.
4664 * If we require 4 times, then the default 256 4K stripe_heads will
4665 * allow for chunk sizes up to 256K, which is probably OK.
4666 * If the chunk size is greater, user-space should request more
4667 * stripe_heads first.
4668 */
NeilBrown63c70c42006-03-27 01:18:13 -08004669 if ((mddev->chunk_size / STRIPE_SIZE) * 4 > conf->max_nr_stripes ||
4670 (mddev->new_chunk / STRIPE_SIZE) * 4 > conf->max_nr_stripes) {
NeilBrown29269552006-03-27 01:18:10 -08004671 printk(KERN_WARNING "raid5: reshape: not enough stripes. Needed %lu\n",
4672 (mddev->chunk_size / STRIPE_SIZE)*4);
4673 return -ENOSPC;
4674 }
4675
NeilBrown63c70c42006-03-27 01:18:13 -08004676 err = resize_stripes(conf, conf->raid_disks + mddev->delta_disks);
4677 if (err)
4678 return err;
4679
NeilBrownb4c4c7b2007-02-28 20:11:48 -08004680 if (mddev->degraded > conf->max_degraded)
4681 return -EINVAL;
NeilBrown63c70c42006-03-27 01:18:13 -08004682 /* looks like we might be able to manage this */
4683 return 0;
4684}
4685
4686static int raid5_start_reshape(mddev_t *mddev)
4687{
4688 raid5_conf_t *conf = mddev_to_conf(mddev);
4689 mdk_rdev_t *rdev;
4690 struct list_head *rtmp;
4691 int spares = 0;
4692 int added_devices = 0;
NeilBrownc04be0a2006-10-03 01:15:53 -07004693 unsigned long flags;
NeilBrown63c70c42006-03-27 01:18:13 -08004694
NeilBrownf4168852007-02-28 20:11:53 -08004695 if (test_bit(MD_RECOVERY_RUNNING, &mddev->recovery))
NeilBrown63c70c42006-03-27 01:18:13 -08004696 return -EBUSY;
4697
NeilBrownd089c6a2008-02-06 01:39:59 -08004698 rdev_for_each(rdev, rtmp, mddev)
NeilBrown29269552006-03-27 01:18:10 -08004699 if (rdev->raid_disk < 0 &&
4700 !test_bit(Faulty, &rdev->flags))
4701 spares++;
NeilBrown63c70c42006-03-27 01:18:13 -08004702
NeilBrownf4168852007-02-28 20:11:53 -08004703 if (spares - mddev->degraded < mddev->delta_disks - conf->max_degraded)
NeilBrown29269552006-03-27 01:18:10 -08004704 /* Not enough devices even to make a degraded array
4705 * of that size
4706 */
4707 return -EINVAL;
4708
NeilBrownf6705572006-03-27 01:18:11 -08004709 atomic_set(&conf->reshape_stripes, 0);
NeilBrown29269552006-03-27 01:18:10 -08004710 spin_lock_irq(&conf->device_lock);
4711 conf->previous_raid_disks = conf->raid_disks;
NeilBrown63c70c42006-03-27 01:18:13 -08004712 conf->raid_disks += mddev->delta_disks;
NeilBrown29269552006-03-27 01:18:10 -08004713 conf->expand_progress = 0;
NeilBrownb578d552006-03-27 01:18:12 -08004714 conf->expand_lo = 0;
NeilBrown29269552006-03-27 01:18:10 -08004715 spin_unlock_irq(&conf->device_lock);
4716
4717 /* Add some new drives, as many as will fit.
4718 * We know there are enough to make the newly sized array work.
4719 */
NeilBrownd089c6a2008-02-06 01:39:59 -08004720 rdev_for_each(rdev, rtmp, mddev)
NeilBrown29269552006-03-27 01:18:10 -08004721 if (rdev->raid_disk < 0 &&
4722 !test_bit(Faulty, &rdev->flags)) {
4723 if (raid5_add_disk(mddev, rdev)) {
4724 char nm[20];
4725 set_bit(In_sync, &rdev->flags);
NeilBrown29269552006-03-27 01:18:10 -08004726 added_devices++;
NeilBrown5fd6c1d2006-06-26 00:27:40 -07004727 rdev->recovery_offset = 0;
NeilBrown29269552006-03-27 01:18:10 -08004728 sprintf(nm, "rd%d", rdev->raid_disk);
NeilBrown5e55e2f2007-03-26 21:32:14 -08004729 if (sysfs_create_link(&mddev->kobj,
4730 &rdev->kobj, nm))
4731 printk(KERN_WARNING
4732 "raid5: failed to create "
4733 " link %s for %s\n",
4734 nm, mdname(mddev));
NeilBrown29269552006-03-27 01:18:10 -08004735 } else
4736 break;
4737 }
4738
NeilBrownc04be0a2006-10-03 01:15:53 -07004739 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrown63c70c42006-03-27 01:18:13 -08004740 mddev->degraded = (conf->raid_disks - conf->previous_raid_disks) - added_devices;
NeilBrownc04be0a2006-10-03 01:15:53 -07004741 spin_unlock_irqrestore(&conf->device_lock, flags);
NeilBrown63c70c42006-03-27 01:18:13 -08004742 mddev->raid_disks = conf->raid_disks;
NeilBrownf6705572006-03-27 01:18:11 -08004743 mddev->reshape_position = 0;
NeilBrown850b2b42006-10-03 01:15:46 -07004744 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrownf6705572006-03-27 01:18:11 -08004745
NeilBrown29269552006-03-27 01:18:10 -08004746 clear_bit(MD_RECOVERY_SYNC, &mddev->recovery);
4747 clear_bit(MD_RECOVERY_CHECK, &mddev->recovery);
4748 set_bit(MD_RECOVERY_RESHAPE, &mddev->recovery);
4749 set_bit(MD_RECOVERY_RUNNING, &mddev->recovery);
4750 mddev->sync_thread = md_register_thread(md_do_sync, mddev,
4751 "%s_reshape");
4752 if (!mddev->sync_thread) {
4753 mddev->recovery = 0;
4754 spin_lock_irq(&conf->device_lock);
4755 mddev->raid_disks = conf->raid_disks = conf->previous_raid_disks;
4756 conf->expand_progress = MaxSector;
4757 spin_unlock_irq(&conf->device_lock);
4758 return -EAGAIN;
4759 }
4760 md_wakeup_thread(mddev->sync_thread);
4761 md_new_event(mddev);
4762 return 0;
4763}
4764#endif
4765
4766static void end_reshape(raid5_conf_t *conf)
4767{
4768 struct block_device *bdev;
4769
NeilBrownf6705572006-03-27 01:18:11 -08004770 if (!test_bit(MD_RECOVERY_INTR, &conf->mddev->recovery)) {
NeilBrownf4168852007-02-28 20:11:53 -08004771 conf->mddev->array_size = conf->mddev->size *
4772 (conf->raid_disks - conf->max_degraded);
NeilBrownf6705572006-03-27 01:18:11 -08004773 set_capacity(conf->mddev->gendisk, conf->mddev->array_size << 1);
Linus Torvalds44ce62942007-05-09 18:51:36 -07004774 conf->mddev->changed = 1;
NeilBrown29269552006-03-27 01:18:10 -08004775
NeilBrownf6705572006-03-27 01:18:11 -08004776 bdev = bdget_disk(conf->mddev->gendisk, 0);
4777 if (bdev) {
4778 mutex_lock(&bdev->bd_inode->i_mutex);
NeilBrown0692c6b2006-11-08 17:44:48 -08004779 i_size_write(bdev->bd_inode, (loff_t)conf->mddev->array_size << 10);
NeilBrownf6705572006-03-27 01:18:11 -08004780 mutex_unlock(&bdev->bd_inode->i_mutex);
4781 bdput(bdev);
4782 }
4783 spin_lock_irq(&conf->device_lock);
4784 conf->expand_progress = MaxSector;
4785 spin_unlock_irq(&conf->device_lock);
4786 conf->mddev->reshape_position = MaxSector;
NeilBrown16a53ec2006-06-26 00:27:38 -07004787
4788 /* read-ahead size must cover two whole stripes, which is
4789 * 2 * (datadisks) * chunksize where 'n' is the number of raid devices
4790 */
4791 {
4792 int data_disks = conf->previous_raid_disks - conf->max_degraded;
4793 int stripe = data_disks *
4794 (conf->mddev->chunk_size / PAGE_SIZE);
4795 if (conf->mddev->queue->backing_dev_info.ra_pages < 2 * stripe)
4796 conf->mddev->queue->backing_dev_info.ra_pages = 2 * stripe;
4797 }
NeilBrown29269552006-03-27 01:18:10 -08004798 }
NeilBrown29269552006-03-27 01:18:10 -08004799}
4800
NeilBrown72626682005-09-09 16:23:54 -07004801static void raid5_quiesce(mddev_t *mddev, int state)
4802{
4803 raid5_conf_t *conf = mddev_to_conf(mddev);
4804
4805 switch(state) {
NeilBrowne464eaf2006-03-27 01:18:14 -08004806 case 2: /* resume for a suspend */
4807 wake_up(&conf->wait_for_overlap);
4808 break;
4809
NeilBrown72626682005-09-09 16:23:54 -07004810 case 1: /* stop all writes */
4811 spin_lock_irq(&conf->device_lock);
4812 conf->quiesce = 1;
4813 wait_event_lock_irq(conf->wait_for_stripe,
Raz Ben-Jehuda(caro)46031f92006-12-10 02:20:47 -08004814 atomic_read(&conf->active_stripes) == 0 &&
4815 atomic_read(&conf->active_aligned_reads) == 0,
NeilBrown72626682005-09-09 16:23:54 -07004816 conf->device_lock, /* nothing */);
4817 spin_unlock_irq(&conf->device_lock);
4818 break;
4819
4820 case 0: /* re-enable writes */
4821 spin_lock_irq(&conf->device_lock);
4822 conf->quiesce = 0;
4823 wake_up(&conf->wait_for_stripe);
NeilBrowne464eaf2006-03-27 01:18:14 -08004824 wake_up(&conf->wait_for_overlap);
NeilBrown72626682005-09-09 16:23:54 -07004825 spin_unlock_irq(&conf->device_lock);
4826 break;
4827 }
NeilBrown72626682005-09-09 16:23:54 -07004828}
NeilBrownb15c2e52006-01-06 00:20:16 -08004829
NeilBrown16a53ec2006-06-26 00:27:38 -07004830static struct mdk_personality raid6_personality =
4831{
4832 .name = "raid6",
4833 .level = 6,
4834 .owner = THIS_MODULE,
4835 .make_request = make_request,
4836 .run = run,
4837 .stop = stop,
4838 .status = status,
4839 .error_handler = error,
4840 .hot_add_disk = raid5_add_disk,
4841 .hot_remove_disk= raid5_remove_disk,
4842 .spare_active = raid5_spare_active,
4843 .sync_request = sync_request,
4844 .resize = raid5_resize,
NeilBrownf4168852007-02-28 20:11:53 -08004845#ifdef CONFIG_MD_RAID5_RESHAPE
4846 .check_reshape = raid5_check_reshape,
4847 .start_reshape = raid5_start_reshape,
4848#endif
NeilBrown16a53ec2006-06-26 00:27:38 -07004849 .quiesce = raid5_quiesce,
4850};
NeilBrown2604b702006-01-06 00:20:36 -08004851static struct mdk_personality raid5_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07004852{
4853 .name = "raid5",
NeilBrown2604b702006-01-06 00:20:36 -08004854 .level = 5,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855 .owner = THIS_MODULE,
4856 .make_request = make_request,
4857 .run = run,
4858 .stop = stop,
4859 .status = status,
4860 .error_handler = error,
4861 .hot_add_disk = raid5_add_disk,
4862 .hot_remove_disk= raid5_remove_disk,
4863 .spare_active = raid5_spare_active,
4864 .sync_request = sync_request,
4865 .resize = raid5_resize,
NeilBrown29269552006-03-27 01:18:10 -08004866#ifdef CONFIG_MD_RAID5_RESHAPE
NeilBrown63c70c42006-03-27 01:18:13 -08004867 .check_reshape = raid5_check_reshape,
4868 .start_reshape = raid5_start_reshape,
NeilBrown29269552006-03-27 01:18:10 -08004869#endif
NeilBrown72626682005-09-09 16:23:54 -07004870 .quiesce = raid5_quiesce,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871};
4872
NeilBrown2604b702006-01-06 00:20:36 -08004873static struct mdk_personality raid4_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07004874{
NeilBrown2604b702006-01-06 00:20:36 -08004875 .name = "raid4",
4876 .level = 4,
4877 .owner = THIS_MODULE,
4878 .make_request = make_request,
4879 .run = run,
4880 .stop = stop,
4881 .status = status,
4882 .error_handler = error,
4883 .hot_add_disk = raid5_add_disk,
4884 .hot_remove_disk= raid5_remove_disk,
4885 .spare_active = raid5_spare_active,
4886 .sync_request = sync_request,
4887 .resize = raid5_resize,
NeilBrown3d378902007-03-26 21:32:13 -08004888#ifdef CONFIG_MD_RAID5_RESHAPE
4889 .check_reshape = raid5_check_reshape,
4890 .start_reshape = raid5_start_reshape,
4891#endif
NeilBrown2604b702006-01-06 00:20:36 -08004892 .quiesce = raid5_quiesce,
4893};
4894
4895static int __init raid5_init(void)
4896{
NeilBrown16a53ec2006-06-26 00:27:38 -07004897 int e;
4898
4899 e = raid6_select_algo();
4900 if ( e )
4901 return e;
4902 register_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08004903 register_md_personality(&raid5_personality);
4904 register_md_personality(&raid4_personality);
4905 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004906}
4907
NeilBrown2604b702006-01-06 00:20:36 -08004908static void raid5_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004909{
NeilBrown16a53ec2006-06-26 00:27:38 -07004910 unregister_md_personality(&raid6_personality);
NeilBrown2604b702006-01-06 00:20:36 -08004911 unregister_md_personality(&raid5_personality);
4912 unregister_md_personality(&raid4_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004913}
4914
4915module_init(raid5_init);
4916module_exit(raid5_exit);
4917MODULE_LICENSE("GPL");
4918MODULE_ALIAS("md-personality-4"); /* RAID5 */
NeilBrownd9d166c2006-01-06 00:20:51 -08004919MODULE_ALIAS("md-raid5");
4920MODULE_ALIAS("md-raid4");
NeilBrown2604b702006-01-06 00:20:36 -08004921MODULE_ALIAS("md-level-5");
4922MODULE_ALIAS("md-level-4");
NeilBrown16a53ec2006-06-26 00:27:38 -07004923MODULE_ALIAS("md-personality-8"); /* RAID6 */
4924MODULE_ALIAS("md-raid6");
4925MODULE_ALIAS("md-level-6");
4926
4927/* This used to be two separate modules, they were: */
4928MODULE_ALIAS("raid5");
4929MODULE_ALIAS("raid6");