blob: 35b2d8646ae9e2a6a6828c54c27058774c4f43dc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * raid1.c : Multiple Devices driver for Linux
3 *
4 * Copyright (C) 1999, 2000, 2001 Ingo Molnar, Red Hat
5 *
6 * Copyright (C) 1996, 1997, 1998 Ingo Molnar, Miguel de Icaza, Gadi Oxman
7 *
8 * RAID-1 management functions.
9 *
10 * Better read-balancing code written by Mika Kuoppala <miku@iki.fi>, 2000
11 *
Jan Engelhardt96de0e22007-10-19 23:21:04 +020012 * Fixes to reconstruction by Jakob Østergaard" <jakob@ostenfeld.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * Various fixes by Neil Brown <neilb@cse.unsw.edu.au>
14 *
NeilBrown191ea9b2005-06-21 17:17:23 -070015 * Changes by Peter T. Breuer <ptb@it.uc3m.es> 31/1/2003 to support
16 * bitmapped intelligence in resync:
17 *
18 * - bitmap marked during normal i/o
19 * - bitmap used to skip nondirty blocks during sync
20 *
21 * Additions to bitmap code, (C) 2003-2004 Paul Clements, SteelEye Technology:
22 * - persistent bitmap code
23 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * This program is free software; you can redistribute it and/or modify
25 * it under the terms of the GNU General Public License as published by
26 * the Free Software Foundation; either version 2, or (at your option)
27 * any later version.
28 *
29 * You should have received a copy of the GNU General Public License
30 * (for example /usr/src/linux/COPYING); if not, write to the Free
31 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
32 */
33
Stephen Rothwell25570722008-10-15 09:09:21 +110034#include <linux/delay.h>
NeilBrownbff61972009-03-31 14:33:13 +110035#include <linux/blkdev.h>
NeilBrownbff61972009-03-31 14:33:13 +110036#include <linux/seq_file.h>
NeilBrown43b2e5d2009-03-31 14:33:13 +110037#include "md.h"
Christoph Hellwigef740c32009-03-31 14:27:03 +110038#include "raid1.h"
39#include "bitmap.h"
NeilBrown191ea9b2005-06-21 17:17:23 -070040
41#define DEBUG 0
42#if DEBUG
43#define PRINTK(x...) printk(x)
44#else
45#define PRINTK(x...)
46#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48/*
49 * Number of guaranteed r1bios in case of extreme VM load:
50 */
51#define NR_RAID1_BIOS 256
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54static void unplug_slaves(mddev_t *mddev);
55
NeilBrown17999be2006-01-06 00:20:12 -080056static void allow_barrier(conf_t *conf);
57static void lower_barrier(conf_t *conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Al Virodd0fc662005-10-07 07:46:04 +010059static void * r1bio_pool_alloc(gfp_t gfp_flags, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060{
61 struct pool_info *pi = data;
62 r1bio_t *r1_bio;
63 int size = offsetof(r1bio_t, bios[pi->raid_disks]);
64
65 /* allocate a r1bio with room for raid_disks entries in the bios array */
NeilBrown9ffae0c2006-01-06 00:20:32 -080066 r1_bio = kzalloc(size, gfp_flags);
NeilBrowned9bfdf2009-10-16 15:55:44 +110067 if (!r1_bio && pi->mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 unplug_slaves(pi->mddev);
69
70 return r1_bio;
71}
72
73static void r1bio_pool_free(void *r1_bio, void *data)
74{
75 kfree(r1_bio);
76}
77
78#define RESYNC_BLOCK_SIZE (64*1024)
79//#define RESYNC_BLOCK_SIZE PAGE_SIZE
80#define RESYNC_SECTORS (RESYNC_BLOCK_SIZE >> 9)
81#define RESYNC_PAGES ((RESYNC_BLOCK_SIZE + PAGE_SIZE-1) / PAGE_SIZE)
82#define RESYNC_WINDOW (2048*1024)
83
Al Virodd0fc662005-10-07 07:46:04 +010084static void * r1buf_pool_alloc(gfp_t gfp_flags, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
86 struct pool_info *pi = data;
87 struct page *page;
88 r1bio_t *r1_bio;
89 struct bio *bio;
90 int i, j;
91
92 r1_bio = r1bio_pool_alloc(gfp_flags, pi);
93 if (!r1_bio) {
94 unplug_slaves(pi->mddev);
95 return NULL;
96 }
97
98 /*
99 * Allocate bios : 1 for reading, n-1 for writing
100 */
101 for (j = pi->raid_disks ; j-- ; ) {
102 bio = bio_alloc(gfp_flags, RESYNC_PAGES);
103 if (!bio)
104 goto out_free_bio;
105 r1_bio->bios[j] = bio;
106 }
107 /*
108 * Allocate RESYNC_PAGES data pages and attach them to
NeilBrownd11c1712006-01-06 00:20:26 -0800109 * the first bio.
110 * If this is a user-requested check/repair, allocate
111 * RESYNC_PAGES for each bio.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 */
NeilBrownd11c1712006-01-06 00:20:26 -0800113 if (test_bit(MD_RECOVERY_REQUESTED, &pi->mddev->recovery))
114 j = pi->raid_disks;
115 else
116 j = 1;
117 while(j--) {
118 bio = r1_bio->bios[j];
119 for (i = 0; i < RESYNC_PAGES; i++) {
120 page = alloc_page(gfp_flags);
121 if (unlikely(!page))
122 goto out_free_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
NeilBrownd11c1712006-01-06 00:20:26 -0800124 bio->bi_io_vec[i].bv_page = page;
NeilBrown303a0e12009-04-06 14:40:38 +1000125 bio->bi_vcnt = i+1;
NeilBrownd11c1712006-01-06 00:20:26 -0800126 }
127 }
128 /* If not user-requests, copy the page pointers to all bios */
129 if (!test_bit(MD_RECOVERY_REQUESTED, &pi->mddev->recovery)) {
130 for (i=0; i<RESYNC_PAGES ; i++)
131 for (j=1; j<pi->raid_disks; j++)
132 r1_bio->bios[j]->bi_io_vec[i].bv_page =
133 r1_bio->bios[0]->bi_io_vec[i].bv_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 }
135
136 r1_bio->master_bio = NULL;
137
138 return r1_bio;
139
140out_free_pages:
NeilBrown303a0e12009-04-06 14:40:38 +1000141 for (j=0 ; j < pi->raid_disks; j++)
142 for (i=0; i < r1_bio->bios[j]->bi_vcnt ; i++)
143 put_page(r1_bio->bios[j]->bi_io_vec[i].bv_page);
NeilBrownd11c1712006-01-06 00:20:26 -0800144 j = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145out_free_bio:
146 while ( ++j < pi->raid_disks )
147 bio_put(r1_bio->bios[j]);
148 r1bio_pool_free(r1_bio, data);
149 return NULL;
150}
151
152static void r1buf_pool_free(void *__r1_bio, void *data)
153{
154 struct pool_info *pi = data;
NeilBrownd11c1712006-01-06 00:20:26 -0800155 int i,j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 r1bio_t *r1bio = __r1_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
NeilBrownd11c1712006-01-06 00:20:26 -0800158 for (i = 0; i < RESYNC_PAGES; i++)
159 for (j = pi->raid_disks; j-- ;) {
160 if (j == 0 ||
161 r1bio->bios[j]->bi_io_vec[i].bv_page !=
162 r1bio->bios[0]->bi_io_vec[i].bv_page)
NeilBrown1345b1d2006-01-06 00:20:40 -0800163 safe_put_page(r1bio->bios[j]->bi_io_vec[i].bv_page);
NeilBrownd11c1712006-01-06 00:20:26 -0800164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 for (i=0 ; i < pi->raid_disks; i++)
166 bio_put(r1bio->bios[i]);
167
168 r1bio_pool_free(r1bio, data);
169}
170
171static void put_all_bios(conf_t *conf, r1bio_t *r1_bio)
172{
173 int i;
174
175 for (i = 0; i < conf->raid_disks; i++) {
176 struct bio **bio = r1_bio->bios + i;
NeilBrowncf30a472006-01-06 00:20:23 -0800177 if (*bio && *bio != IO_BLOCKED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 bio_put(*bio);
179 *bio = NULL;
180 }
181}
182
Arjan van de Ven858119e2006-01-14 13:20:43 -0800183static void free_r1bio(r1bio_t *r1_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
NeilBrown070ec552009-06-16 16:54:21 +1000185 conf_t *conf = r1_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 /*
188 * Wake up any possible resync thread that waits for the device
189 * to go idle.
190 */
NeilBrown17999be2006-01-06 00:20:12 -0800191 allow_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193 put_all_bios(conf, r1_bio);
194 mempool_free(r1_bio, conf->r1bio_pool);
195}
196
Arjan van de Ven858119e2006-01-14 13:20:43 -0800197static void put_buf(r1bio_t *r1_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
NeilBrown070ec552009-06-16 16:54:21 +1000199 conf_t *conf = r1_bio->mddev->private;
NeilBrown3e198f72006-01-06 00:20:21 -0800200 int i;
201
202 for (i=0; i<conf->raid_disks; i++) {
203 struct bio *bio = r1_bio->bios[i];
204 if (bio->bi_end_io)
205 rdev_dec_pending(conf->mirrors[i].rdev, r1_bio->mddev);
206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208 mempool_free(r1_bio, conf->r1buf_pool);
209
NeilBrown17999be2006-01-06 00:20:12 -0800210 lower_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
212
213static void reschedule_retry(r1bio_t *r1_bio)
214{
215 unsigned long flags;
216 mddev_t *mddev = r1_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +1000217 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219 spin_lock_irqsave(&conf->device_lock, flags);
220 list_add(&r1_bio->retry_list, &conf->retry_list);
NeilBrownddaf22a2006-01-06 00:20:19 -0800221 conf->nr_queued ++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 spin_unlock_irqrestore(&conf->device_lock, flags);
223
NeilBrown17999be2006-01-06 00:20:12 -0800224 wake_up(&conf->wait_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 md_wakeup_thread(mddev->thread);
226}
227
228/*
229 * raid_end_bio_io() is called when we have finished servicing a mirrored
230 * operation and are ready to return a success/failure code to the buffer
231 * cache layer.
232 */
233static void raid_end_bio_io(r1bio_t *r1_bio)
234{
235 struct bio *bio = r1_bio->master_bio;
236
NeilBrown4b6d2872005-09-09 16:23:47 -0700237 /* if nobody has done the final endio yet, do it now */
238 if (!test_and_set_bit(R1BIO_Returned, &r1_bio->state)) {
239 PRINTK(KERN_DEBUG "raid1: sync end %s on sectors %llu-%llu\n",
240 (bio_data_dir(bio) == WRITE) ? "write" : "read",
241 (unsigned long long) bio->bi_sector,
242 (unsigned long long) bio->bi_sector +
243 (bio->bi_size >> 9) - 1);
244
NeilBrown6712ecf2007-09-27 12:47:43 +0200245 bio_endio(bio,
NeilBrown4b6d2872005-09-09 16:23:47 -0700246 test_bit(R1BIO_Uptodate, &r1_bio->state) ? 0 : -EIO);
247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 free_r1bio(r1_bio);
249}
250
251/*
252 * Update disk head position estimator based on IRQ completion info.
253 */
254static inline void update_head_pos(int disk, r1bio_t *r1_bio)
255{
NeilBrown070ec552009-06-16 16:54:21 +1000256 conf_t *conf = r1_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258 conf->mirrors[disk].head_position =
259 r1_bio->sector + (r1_bio->sectors);
260}
261
NeilBrown6712ecf2007-09-27 12:47:43 +0200262static void raid1_end_read_request(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
264 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
265 r1bio_t * r1_bio = (r1bio_t *)(bio->bi_private);
266 int mirror;
NeilBrown070ec552009-06-16 16:54:21 +1000267 conf_t *conf = r1_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 mirror = r1_bio->read_disk;
270 /*
271 * this branch is our 'one mirror IO has finished' event handler:
272 */
NeilBrownddaf22a2006-01-06 00:20:19 -0800273 update_head_pos(mirror, r1_bio);
274
NeilBrowndd00a992007-05-10 03:15:50 -0700275 if (uptodate)
276 set_bit(R1BIO_Uptodate, &r1_bio->state);
277 else {
278 /* If all other devices have failed, we want to return
279 * the error upwards rather than fail the last device.
280 * Here we redefine "uptodate" to mean "Don't want to retry"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 */
NeilBrowndd00a992007-05-10 03:15:50 -0700282 unsigned long flags;
283 spin_lock_irqsave(&conf->device_lock, flags);
284 if (r1_bio->mddev->degraded == conf->raid_disks ||
285 (r1_bio->mddev->degraded == conf->raid_disks-1 &&
286 !test_bit(Faulty, &conf->mirrors[mirror].rdev->flags)))
287 uptodate = 1;
288 spin_unlock_irqrestore(&conf->device_lock, flags);
289 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
NeilBrowndd00a992007-05-10 03:15:50 -0700291 if (uptodate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 raid_end_bio_io(r1_bio);
NeilBrowndd00a992007-05-10 03:15:50 -0700293 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 /*
295 * oops, read error:
296 */
297 char b[BDEVNAME_SIZE];
298 if (printk_ratelimit())
299 printk(KERN_ERR "raid1: %s: rescheduling sector %llu\n",
300 bdevname(conf->mirrors[mirror].rdev->bdev,b), (unsigned long long)r1_bio->sector);
301 reschedule_retry(r1_bio);
302 }
303
304 rdev_dec_pending(conf->mirrors[mirror].rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
NeilBrown6712ecf2007-09-27 12:47:43 +0200307static void raid1_end_write_request(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
309 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
310 r1bio_t * r1_bio = (r1bio_t *)(bio->bi_private);
NeilBrowna9701a32005-11-08 21:39:34 -0800311 int mirror, behind = test_bit(R1BIO_BehindIO, &r1_bio->state);
NeilBrown070ec552009-06-16 16:54:21 +1000312 conf_t *conf = r1_bio->mddev->private;
NeilBrown04b857f2006-03-09 17:33:46 -0800313 struct bio *to_put = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316 for (mirror = 0; mirror < conf->raid_disks; mirror++)
317 if (r1_bio->bios[mirror] == bio)
318 break;
319
NeilBrownbea27712006-05-01 12:15:46 -0700320 if (error == -EOPNOTSUPP && test_bit(R1BIO_Barrier, &r1_bio->state)) {
NeilBrowna9701a32005-11-08 21:39:34 -0800321 set_bit(BarriersNotsupp, &conf->mirrors[mirror].rdev->flags);
322 set_bit(R1BIO_BarrierRetry, &r1_bio->state);
323 r1_bio->mddev->barriers_work = 0;
NeilBrown5e7dd2a2006-05-01 12:15:47 -0700324 /* Don't rdev_dec_pending in this branch - keep it for the retry */
NeilBrowna9701a32005-11-08 21:39:34 -0800325 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 /*
NeilBrowna9701a32005-11-08 21:39:34 -0800327 * this branch is our 'one mirror IO has finished' event handler:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 */
NeilBrowna9701a32005-11-08 21:39:34 -0800329 r1_bio->bios[mirror] = NULL;
NeilBrown04b857f2006-03-09 17:33:46 -0800330 to_put = bio;
NeilBrowna9701a32005-11-08 21:39:34 -0800331 if (!uptodate) {
332 md_error(r1_bio->mddev, conf->mirrors[mirror].rdev);
333 /* an I/O failed, we can't clear the bitmap */
334 set_bit(R1BIO_Degraded, &r1_bio->state);
335 } else
336 /*
337 * Set R1BIO_Uptodate in our master bio, so that
338 * we will return a good error code for to the higher
339 * levels even if IO on some other mirrored buffer fails.
340 *
341 * The 'master' represents the composite IO operation to
342 * user-side. So if something waits for IO, then it will
343 * wait for the 'master' bio.
344 */
345 set_bit(R1BIO_Uptodate, &r1_bio->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
NeilBrowna9701a32005-11-08 21:39:34 -0800347 update_head_pos(mirror, r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
NeilBrowna9701a32005-11-08 21:39:34 -0800349 if (behind) {
350 if (test_bit(WriteMostly, &conf->mirrors[mirror].rdev->flags))
351 atomic_dec(&r1_bio->behind_remaining);
NeilBrown4b6d2872005-09-09 16:23:47 -0700352
NeilBrowna9701a32005-11-08 21:39:34 -0800353 /* In behind mode, we ACK the master bio once the I/O has safely
354 * reached all non-writemostly disks. Setting the Returned bit
355 * ensures that this gets done only once -- we don't ever want to
356 * return -EIO here, instead we'll wait */
NeilBrown4b6d2872005-09-09 16:23:47 -0700357
NeilBrowna9701a32005-11-08 21:39:34 -0800358 if (atomic_read(&r1_bio->behind_remaining) >= (atomic_read(&r1_bio->remaining)-1) &&
359 test_bit(R1BIO_Uptodate, &r1_bio->state)) {
360 /* Maybe we can return now */
361 if (!test_and_set_bit(R1BIO_Returned, &r1_bio->state)) {
362 struct bio *mbio = r1_bio->master_bio;
363 PRINTK(KERN_DEBUG "raid1: behind end write sectors %llu-%llu\n",
364 (unsigned long long) mbio->bi_sector,
365 (unsigned long long) mbio->bi_sector +
366 (mbio->bi_size >> 9) - 1);
NeilBrown6712ecf2007-09-27 12:47:43 +0200367 bio_endio(mbio, 0);
NeilBrowna9701a32005-11-08 21:39:34 -0800368 }
NeilBrown4b6d2872005-09-09 16:23:47 -0700369 }
370 }
NeilBrown5e7dd2a2006-05-01 12:15:47 -0700371 rdev_dec_pending(conf->mirrors[mirror].rdev, conf->mddev);
NeilBrown4b6d2872005-09-09 16:23:47 -0700372 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 /*
374 *
375 * Let's see if all mirrored write operations have finished
376 * already.
377 */
378 if (atomic_dec_and_test(&r1_bio->remaining)) {
NeilBrownc70810b2006-06-26 00:27:35 -0700379 if (test_bit(R1BIO_BarrierRetry, &r1_bio->state))
NeilBrowna9701a32005-11-08 21:39:34 -0800380 reschedule_retry(r1_bio);
NeilBrownc70810b2006-06-26 00:27:35 -0700381 else {
382 /* it really is the end of this request */
383 if (test_bit(R1BIO_BehindIO, &r1_bio->state)) {
384 /* free extra copy of the data pages */
385 int i = bio->bi_vcnt;
386 while (i--)
387 safe_put_page(bio->bi_io_vec[i].bv_page);
388 }
389 /* clear the bitmap if all writes complete successfully */
390 bitmap_endwrite(r1_bio->mddev->bitmap, r1_bio->sector,
391 r1_bio->sectors,
392 !test_bit(R1BIO_Degraded, &r1_bio->state),
393 behind);
394 md_write_end(r1_bio->mddev);
395 raid_end_bio_io(r1_bio);
NeilBrowna9701a32005-11-08 21:39:34 -0800396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 }
NeilBrownc70810b2006-06-26 00:27:35 -0700398
NeilBrown04b857f2006-03-09 17:33:46 -0800399 if (to_put)
400 bio_put(to_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401}
402
403
404/*
405 * This routine returns the disk from which the requested read should
406 * be done. There is a per-array 'next expected sequential IO' sector
407 * number - if this matches on the next IO then we use the last disk.
408 * There is also a per-disk 'last know head position' sector that is
409 * maintained from IRQ contexts, both the normal and the resync IO
410 * completion handlers update this position correctly. If there is no
411 * perfect sequential match then we pick the disk whose head is closest.
412 *
413 * If there are 2 mirrors in the same 2 devices, performance degrades
414 * because position is mirror, not device based.
415 *
416 * The rdev for the device selected will have nr_pending incremented.
417 */
418static int read_balance(conf_t *conf, r1bio_t *r1_bio)
419{
420 const unsigned long this_sector = r1_bio->sector;
421 int new_disk = conf->last_used, disk = new_disk;
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700422 int wonly_disk = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 const int sectors = r1_bio->sectors;
424 sector_t new_distance, current_distance;
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700425 mdk_rdev_t *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427 rcu_read_lock();
428 /*
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700429 * Check if we can balance. We can balance on the whole
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 * device if no resync is going on, or below the resync window.
431 * We take the first readable disk when above the resync window.
432 */
433 retry:
434 if (conf->mddev->recovery_cp < MaxSector &&
435 (this_sector + sectors >= conf->next_resync)) {
436 /* Choose the first operation device, for consistancy */
437 new_disk = 0;
438
Suzanne Woodd6065f72005-11-08 21:39:27 -0800439 for (rdev = rcu_dereference(conf->mirrors[new_disk].rdev);
NeilBrowncf30a472006-01-06 00:20:23 -0800440 r1_bio->bios[new_disk] == IO_BLOCKED ||
NeilBrownb2d444d2005-11-08 21:39:31 -0800441 !rdev || !test_bit(In_sync, &rdev->flags)
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700442 || test_bit(WriteMostly, &rdev->flags);
Suzanne Woodd6065f72005-11-08 21:39:27 -0800443 rdev = rcu_dereference(conf->mirrors[++new_disk].rdev)) {
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700444
NeilBrowncf30a472006-01-06 00:20:23 -0800445 if (rdev && test_bit(In_sync, &rdev->flags) &&
446 r1_bio->bios[new_disk] != IO_BLOCKED)
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700447 wonly_disk = new_disk;
448
449 if (new_disk == conf->raid_disks - 1) {
450 new_disk = wonly_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 break;
452 }
453 }
454 goto rb_out;
455 }
456
457
458 /* make sure the disk is operational */
Suzanne Woodd6065f72005-11-08 21:39:27 -0800459 for (rdev = rcu_dereference(conf->mirrors[new_disk].rdev);
NeilBrowncf30a472006-01-06 00:20:23 -0800460 r1_bio->bios[new_disk] == IO_BLOCKED ||
NeilBrownb2d444d2005-11-08 21:39:31 -0800461 !rdev || !test_bit(In_sync, &rdev->flags) ||
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700462 test_bit(WriteMostly, &rdev->flags);
Suzanne Woodd6065f72005-11-08 21:39:27 -0800463 rdev = rcu_dereference(conf->mirrors[new_disk].rdev)) {
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700464
NeilBrowncf30a472006-01-06 00:20:23 -0800465 if (rdev && test_bit(In_sync, &rdev->flags) &&
466 r1_bio->bios[new_disk] != IO_BLOCKED)
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700467 wonly_disk = new_disk;
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 if (new_disk <= 0)
470 new_disk = conf->raid_disks;
471 new_disk--;
472 if (new_disk == disk) {
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700473 new_disk = wonly_disk;
474 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 }
476 }
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700477
478 if (new_disk < 0)
479 goto rb_out;
480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 disk = new_disk;
482 /* now disk == new_disk == starting point for search */
483
484 /*
485 * Don't change to another disk for sequential reads:
486 */
487 if (conf->next_seq_sect == this_sector)
488 goto rb_out;
489 if (this_sector == conf->mirrors[new_disk].head_position)
490 goto rb_out;
491
492 current_distance = abs(this_sector - conf->mirrors[disk].head_position);
493
494 /* Find the disk whose head is closest */
495
496 do {
497 if (disk <= 0)
498 disk = conf->raid_disks;
499 disk--;
500
Suzanne Woodd6065f72005-11-08 21:39:27 -0800501 rdev = rcu_dereference(conf->mirrors[disk].rdev);
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700502
NeilBrowncf30a472006-01-06 00:20:23 -0800503 if (!rdev || r1_bio->bios[disk] == IO_BLOCKED ||
NeilBrownb2d444d2005-11-08 21:39:31 -0800504 !test_bit(In_sync, &rdev->flags) ||
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700505 test_bit(WriteMostly, &rdev->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 continue;
507
508 if (!atomic_read(&rdev->nr_pending)) {
509 new_disk = disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 break;
511 }
512 new_distance = abs(this_sector - conf->mirrors[disk].head_position);
513 if (new_distance < current_distance) {
514 current_distance = new_distance;
515 new_disk = disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 }
517 } while (disk != conf->last_used);
518
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700519 rb_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
521
522 if (new_disk >= 0) {
Suzanne Woodd6065f72005-11-08 21:39:27 -0800523 rdev = rcu_dereference(conf->mirrors[new_disk].rdev);
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700524 if (!rdev)
525 goto retry;
526 atomic_inc(&rdev->nr_pending);
NeilBrownb2d444d2005-11-08 21:39:31 -0800527 if (!test_bit(In_sync, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 /* cannot risk returning a device that failed
529 * before we inc'ed nr_pending
530 */
NeilBrown03c902e2006-01-06 00:20:46 -0800531 rdev_dec_pending(rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 goto retry;
533 }
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700534 conf->next_seq_sect = this_sector + sectors;
535 conf->last_used = new_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 }
537 rcu_read_unlock();
538
539 return new_disk;
540}
541
542static void unplug_slaves(mddev_t *mddev)
543{
NeilBrown070ec552009-06-16 16:54:21 +1000544 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 int i;
546
547 rcu_read_lock();
548 for (i=0; i<mddev->raid_disks; i++) {
Suzanne Woodd6065f72005-11-08 21:39:27 -0800549 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
NeilBrownb2d444d2005-11-08 21:39:31 -0800550 if (rdev && !test_bit(Faulty, &rdev->flags) && atomic_read(&rdev->nr_pending)) {
Jens Axboe165125e2007-07-24 09:28:11 +0200551 struct request_queue *r_queue = bdev_get_queue(rdev->bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
553 atomic_inc(&rdev->nr_pending);
554 rcu_read_unlock();
555
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500556 blk_unplug(r_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
558 rdev_dec_pending(rdev, mddev);
559 rcu_read_lock();
560 }
561 }
562 rcu_read_unlock();
563}
564
Jens Axboe165125e2007-07-24 09:28:11 +0200565static void raid1_unplug(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
NeilBrown191ea9b2005-06-21 17:17:23 -0700567 mddev_t *mddev = q->queuedata;
568
569 unplug_slaves(mddev);
570 md_wakeup_thread(mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571}
572
NeilBrown0d129222006-10-03 01:15:54 -0700573static int raid1_congested(void *data, int bits)
574{
575 mddev_t *mddev = data;
NeilBrown070ec552009-06-16 16:54:21 +1000576 conf_t *conf = mddev->private;
NeilBrown0d129222006-10-03 01:15:54 -0700577 int i, ret = 0;
578
NeilBrown3fa841d2009-09-23 18:10:29 +1000579 if (mddev_congested(mddev, bits))
580 return 1;
581
NeilBrown0d129222006-10-03 01:15:54 -0700582 rcu_read_lock();
583 for (i = 0; i < mddev->raid_disks; i++) {
584 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
585 if (rdev && !test_bit(Faulty, &rdev->flags)) {
Jens Axboe165125e2007-07-24 09:28:11 +0200586 struct request_queue *q = bdev_get_queue(rdev->bdev);
NeilBrown0d129222006-10-03 01:15:54 -0700587
588 /* Note the '|| 1' - when read_balance prefers
589 * non-congested targets, it can be removed
590 */
Alexander Beregalov91a9e992009-04-07 01:35:56 +0400591 if ((bits & (1<<BDI_async_congested)) || 1)
NeilBrown0d129222006-10-03 01:15:54 -0700592 ret |= bdi_congested(&q->backing_dev_info, bits);
593 else
594 ret &= bdi_congested(&q->backing_dev_info, bits);
595 }
596 }
597 rcu_read_unlock();
598 return ret;
599}
600
601
NeilBrowna35e63e2008-03-04 14:29:29 -0800602static int flush_pending_writes(conf_t *conf)
603{
604 /* Any writes that have been queued but are awaiting
605 * bitmap updates get flushed here.
606 * We return 1 if any requests were actually submitted.
607 */
608 int rv = 0;
609
610 spin_lock_irq(&conf->device_lock);
611
612 if (conf->pending_bio_list.head) {
613 struct bio *bio;
614 bio = bio_list_get(&conf->pending_bio_list);
615 blk_remove_plug(conf->mddev->queue);
616 spin_unlock_irq(&conf->device_lock);
617 /* flush any pending bitmap writes to
618 * disk before proceeding w/ I/O */
619 bitmap_unplug(conf->mddev->bitmap);
620
621 while (bio) { /* submit pending writes */
622 struct bio *next = bio->bi_next;
623 bio->bi_next = NULL;
624 generic_make_request(bio);
625 bio = next;
626 }
627 rv = 1;
628 } else
629 spin_unlock_irq(&conf->device_lock);
630 return rv;
631}
632
NeilBrown17999be2006-01-06 00:20:12 -0800633/* Barriers....
634 * Sometimes we need to suspend IO while we do something else,
635 * either some resync/recovery, or reconfigure the array.
636 * To do this we raise a 'barrier'.
637 * The 'barrier' is a counter that can be raised multiple times
638 * to count how many activities are happening which preclude
639 * normal IO.
640 * We can only raise the barrier if there is no pending IO.
641 * i.e. if nr_pending == 0.
642 * We choose only to raise the barrier if no-one is waiting for the
643 * barrier to go down. This means that as soon as an IO request
644 * is ready, no other operations which require a barrier will start
645 * until the IO request has had a chance.
646 *
647 * So: regular IO calls 'wait_barrier'. When that returns there
648 * is no backgroup IO happening, It must arrange to call
649 * allow_barrier when it has finished its IO.
650 * backgroup IO calls must call raise_barrier. Once that returns
651 * there is no normal IO happeing. It must arrange to call
652 * lower_barrier when the particular background IO completes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 */
654#define RESYNC_DEPTH 32
655
NeilBrown17999be2006-01-06 00:20:12 -0800656static void raise_barrier(conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657{
658 spin_lock_irq(&conf->resync_lock);
NeilBrown17999be2006-01-06 00:20:12 -0800659
660 /* Wait until no block IO is waiting */
661 wait_event_lock_irq(conf->wait_barrier, !conf->nr_waiting,
662 conf->resync_lock,
663 raid1_unplug(conf->mddev->queue));
664
665 /* block any new IO from starting */
666 conf->barrier++;
667
668 /* No wait for all pending IO to complete */
669 wait_event_lock_irq(conf->wait_barrier,
670 !conf->nr_pending && conf->barrier < RESYNC_DEPTH,
671 conf->resync_lock,
672 raid1_unplug(conf->mddev->queue));
673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 spin_unlock_irq(&conf->resync_lock);
675}
676
NeilBrown17999be2006-01-06 00:20:12 -0800677static void lower_barrier(conf_t *conf)
678{
679 unsigned long flags;
680 spin_lock_irqsave(&conf->resync_lock, flags);
681 conf->barrier--;
682 spin_unlock_irqrestore(&conf->resync_lock, flags);
683 wake_up(&conf->wait_barrier);
684}
685
686static void wait_barrier(conf_t *conf)
687{
688 spin_lock_irq(&conf->resync_lock);
689 if (conf->barrier) {
690 conf->nr_waiting++;
691 wait_event_lock_irq(conf->wait_barrier, !conf->barrier,
692 conf->resync_lock,
693 raid1_unplug(conf->mddev->queue));
694 conf->nr_waiting--;
695 }
696 conf->nr_pending++;
697 spin_unlock_irq(&conf->resync_lock);
698}
699
700static void allow_barrier(conf_t *conf)
701{
702 unsigned long flags;
703 spin_lock_irqsave(&conf->resync_lock, flags);
704 conf->nr_pending--;
705 spin_unlock_irqrestore(&conf->resync_lock, flags);
706 wake_up(&conf->wait_barrier);
707}
708
NeilBrownddaf22a2006-01-06 00:20:19 -0800709static void freeze_array(conf_t *conf)
710{
711 /* stop syncio and normal IO and wait for everything to
712 * go quite.
713 * We increment barrier and nr_waiting, and then
NeilBrown1c830532008-03-04 14:29:35 -0800714 * wait until nr_pending match nr_queued+1
715 * This is called in the context of one normal IO request
716 * that has failed. Thus any sync request that might be pending
717 * will be blocked by nr_pending, and we need to wait for
718 * pending IO requests to complete or be queued for re-try.
719 * Thus the number queued (nr_queued) plus this request (1)
720 * must match the number of pending IOs (nr_pending) before
721 * we continue.
NeilBrownddaf22a2006-01-06 00:20:19 -0800722 */
723 spin_lock_irq(&conf->resync_lock);
724 conf->barrier++;
725 conf->nr_waiting++;
726 wait_event_lock_irq(conf->wait_barrier,
NeilBrown1c830532008-03-04 14:29:35 -0800727 conf->nr_pending == conf->nr_queued+1,
NeilBrownddaf22a2006-01-06 00:20:19 -0800728 conf->resync_lock,
NeilBrowna35e63e2008-03-04 14:29:29 -0800729 ({ flush_pending_writes(conf);
730 raid1_unplug(conf->mddev->queue); }));
NeilBrownddaf22a2006-01-06 00:20:19 -0800731 spin_unlock_irq(&conf->resync_lock);
732}
733static void unfreeze_array(conf_t *conf)
734{
735 /* reverse the effect of the freeze */
736 spin_lock_irq(&conf->resync_lock);
737 conf->barrier--;
738 conf->nr_waiting--;
739 wake_up(&conf->wait_barrier);
740 spin_unlock_irq(&conf->resync_lock);
741}
742
NeilBrown17999be2006-01-06 00:20:12 -0800743
NeilBrown4b6d2872005-09-09 16:23:47 -0700744/* duplicate the data pages for behind I/O */
745static struct page **alloc_behind_pages(struct bio *bio)
746{
747 int i;
748 struct bio_vec *bvec;
NeilBrown9ffae0c2006-01-06 00:20:32 -0800749 struct page **pages = kzalloc(bio->bi_vcnt * sizeof(struct page *),
NeilBrown4b6d2872005-09-09 16:23:47 -0700750 GFP_NOIO);
751 if (unlikely(!pages))
752 goto do_sync_io;
753
NeilBrown4b6d2872005-09-09 16:23:47 -0700754 bio_for_each_segment(bvec, bio, i) {
755 pages[i] = alloc_page(GFP_NOIO);
756 if (unlikely(!pages[i]))
757 goto do_sync_io;
758 memcpy(kmap(pages[i]) + bvec->bv_offset,
759 kmap(bvec->bv_page) + bvec->bv_offset, bvec->bv_len);
760 kunmap(pages[i]);
761 kunmap(bvec->bv_page);
762 }
763
764 return pages;
765
766do_sync_io:
767 if (pages)
768 for (i = 0; i < bio->bi_vcnt && pages[i]; i++)
NeilBrown2d1f3b52006-01-06 00:20:31 -0800769 put_page(pages[i]);
NeilBrown4b6d2872005-09-09 16:23:47 -0700770 kfree(pages);
771 PRINTK("%dB behind alloc failed, doing sync I/O\n", bio->bi_size);
772 return NULL;
773}
774
Jens Axboe165125e2007-07-24 09:28:11 +0200775static int make_request(struct request_queue *q, struct bio * bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776{
777 mddev_t *mddev = q->queuedata;
NeilBrown070ec552009-06-16 16:54:21 +1000778 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 mirror_info_t *mirror;
780 r1bio_t *r1_bio;
781 struct bio *read_bio;
NeilBrown191ea9b2005-06-21 17:17:23 -0700782 int i, targets = 0, disks;
NeilBrown84255d12008-05-23 13:04:32 -0700783 struct bitmap *bitmap;
NeilBrown191ea9b2005-06-21 17:17:23 -0700784 unsigned long flags;
785 struct bio_list bl;
NeilBrown4b6d2872005-09-09 16:23:47 -0700786 struct page **behind_pages = NULL;
Jens Axboea3623572005-11-01 09:26:16 +0100787 const int rw = bio_data_dir(bio);
Jens Axboe1f98a132009-09-11 14:32:04 +0200788 const bool do_sync = bio_rw_flagged(bio, BIO_RW_SYNCIO);
789 int cpu;
790 bool do_barriers;
Dan Williams6bfe0b42008-04-30 00:52:32 -0700791 mdk_rdev_t *blocked_rdev;
NeilBrown191ea9b2005-06-21 17:17:23 -0700792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 /*
794 * Register the new request and wait if the reconstruction
795 * thread has put up a bar for new requests.
796 * Continue immediately if no resync is active currently.
NeilBrown62de6082006-05-01 12:15:47 -0700797 * We test barriers_work *after* md_write_start as md_write_start
798 * may cause the first superblock write, and that will check out
799 * if barriers work.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 */
NeilBrown62de6082006-05-01 12:15:47 -0700801
NeilBrown3d310eb2005-06-21 17:17:26 -0700802 md_write_start(mddev, bio); /* wait on superblock update early */
803
NeilBrown6eef4b22009-12-14 12:49:51 +1100804 if (bio_data_dir(bio) == WRITE &&
805 bio->bi_sector + bio->bi_size/512 > mddev->suspend_lo &&
806 bio->bi_sector < mddev->suspend_hi) {
807 /* As the suspend_* range is controlled by
808 * userspace, we want an interruptible
809 * wait.
810 */
811 DEFINE_WAIT(w);
812 for (;;) {
813 flush_signals(current);
814 prepare_to_wait(&conf->wait_barrier,
815 &w, TASK_INTERRUPTIBLE);
816 if (bio->bi_sector + bio->bi_size/512 <= mddev->suspend_lo ||
817 bio->bi_sector >= mddev->suspend_hi)
818 break;
819 schedule();
820 }
821 finish_wait(&conf->wait_barrier, &w);
822 }
Jens Axboe1f98a132009-09-11 14:32:04 +0200823 if (unlikely(!mddev->barriers_work &&
824 bio_rw_flagged(bio, BIO_RW_BARRIER))) {
NeilBrown62de6082006-05-01 12:15:47 -0700825 if (rw == WRITE)
826 md_write_end(mddev);
NeilBrown6712ecf2007-09-27 12:47:43 +0200827 bio_endio(bio, -EOPNOTSUPP);
NeilBrown62de6082006-05-01 12:15:47 -0700828 return 0;
829 }
830
NeilBrown17999be2006-01-06 00:20:12 -0800831 wait_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
NeilBrown84255d12008-05-23 13:04:32 -0700833 bitmap = mddev->bitmap;
834
Tejun Heo074a7ac2008-08-25 19:56:14 +0900835 cpu = part_stat_lock();
836 part_stat_inc(cpu, &mddev->gendisk->part0, ios[rw]);
837 part_stat_add(cpu, &mddev->gendisk->part0, sectors[rw],
838 bio_sectors(bio));
839 part_stat_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
841 /*
842 * make_request() can abort the operation when READA is being
843 * used and no empty request is available.
844 *
845 */
846 r1_bio = mempool_alloc(conf->r1bio_pool, GFP_NOIO);
847
848 r1_bio->master_bio = bio;
849 r1_bio->sectors = bio->bi_size >> 9;
NeilBrown191ea9b2005-06-21 17:17:23 -0700850 r1_bio->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 r1_bio->mddev = mddev;
852 r1_bio->sector = bio->bi_sector;
853
Jens Axboea3623572005-11-01 09:26:16 +0100854 if (rw == READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 /*
856 * read balancing logic:
857 */
858 int rdisk = read_balance(conf, r1_bio);
859
860 if (rdisk < 0) {
861 /* couldn't find anywhere to read from */
862 raid_end_bio_io(r1_bio);
863 return 0;
864 }
865 mirror = conf->mirrors + rdisk;
866
867 r1_bio->read_disk = rdisk;
868
869 read_bio = bio_clone(bio, GFP_NOIO);
870
871 r1_bio->bios[rdisk] = read_bio;
872
873 read_bio->bi_sector = r1_bio->sector + mirror->rdev->data_offset;
874 read_bio->bi_bdev = mirror->rdev->bdev;
875 read_bio->bi_end_io = raid1_end_read_request;
Dmitry Monakhov1ef04fe2009-09-20 05:52:25 +0400876 read_bio->bi_rw = READ | (do_sync << BIO_RW_SYNCIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 read_bio->bi_private = r1_bio;
878
879 generic_make_request(read_bio);
880 return 0;
881 }
882
883 /*
884 * WRITE:
885 */
886 /* first select target devices under spinlock and
887 * inc refcount on their rdev. Record them by setting
888 * bios[x] to bio
889 */
890 disks = conf->raid_disks;
NeilBrown191ea9b2005-06-21 17:17:23 -0700891#if 0
892 { static int first=1;
893 if (first) printk("First Write sector %llu disks %d\n",
894 (unsigned long long)r1_bio->sector, disks);
895 first = 0;
896 }
897#endif
Dan Williams6bfe0b42008-04-30 00:52:32 -0700898 retry_write:
899 blocked_rdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 rcu_read_lock();
901 for (i = 0; i < disks; i++) {
Dan Williams6bfe0b42008-04-30 00:52:32 -0700902 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
903 if (rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
904 atomic_inc(&rdev->nr_pending);
905 blocked_rdev = rdev;
906 break;
907 }
908 if (rdev && !test_bit(Faulty, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 atomic_inc(&rdev->nr_pending);
NeilBrownb2d444d2005-11-08 21:39:31 -0800910 if (test_bit(Faulty, &rdev->flags)) {
NeilBrown03c902e2006-01-06 00:20:46 -0800911 rdev_dec_pending(rdev, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 r1_bio->bios[i] = NULL;
913 } else
914 r1_bio->bios[i] = bio;
NeilBrown191ea9b2005-06-21 17:17:23 -0700915 targets++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 } else
917 r1_bio->bios[i] = NULL;
918 }
919 rcu_read_unlock();
920
Dan Williams6bfe0b42008-04-30 00:52:32 -0700921 if (unlikely(blocked_rdev)) {
922 /* Wait for this device to become unblocked */
923 int j;
924
925 for (j = 0; j < i; j++)
926 if (r1_bio->bios[j])
927 rdev_dec_pending(conf->mirrors[j].rdev, mddev);
928
929 allow_barrier(conf);
930 md_wait_for_blocked_rdev(blocked_rdev, mddev);
931 wait_barrier(conf);
932 goto retry_write;
933 }
934
NeilBrown4b6d2872005-09-09 16:23:47 -0700935 BUG_ON(targets == 0); /* we never fail the last device */
936
NeilBrown191ea9b2005-06-21 17:17:23 -0700937 if (targets < conf->raid_disks) {
938 /* array is degraded, we will not clear the bitmap
939 * on I/O completion (see raid1_end_write_request) */
940 set_bit(R1BIO_Degraded, &r1_bio->state);
941 }
NeilBrown06d91a52005-06-21 17:17:12 -0700942
NeilBrown4b6d2872005-09-09 16:23:47 -0700943 /* do behind I/O ? */
944 if (bitmap &&
945 atomic_read(&bitmap->behind_writes) < bitmap->max_write_behind &&
946 (behind_pages = alloc_behind_pages(bio)) != NULL)
947 set_bit(R1BIO_BehindIO, &r1_bio->state);
948
NeilBrown191ea9b2005-06-21 17:17:23 -0700949 atomic_set(&r1_bio->remaining, 0);
NeilBrown4b6d2872005-09-09 16:23:47 -0700950 atomic_set(&r1_bio->behind_remaining, 0);
NeilBrown191ea9b2005-06-21 17:17:23 -0700951
Jens Axboe1f98a132009-09-11 14:32:04 +0200952 do_barriers = bio_rw_flagged(bio, BIO_RW_BARRIER);
NeilBrowna9701a32005-11-08 21:39:34 -0800953 if (do_barriers)
954 set_bit(R1BIO_Barrier, &r1_bio->state);
955
NeilBrown191ea9b2005-06-21 17:17:23 -0700956 bio_list_init(&bl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 for (i = 0; i < disks; i++) {
958 struct bio *mbio;
959 if (!r1_bio->bios[i])
960 continue;
961
962 mbio = bio_clone(bio, GFP_NOIO);
963 r1_bio->bios[i] = mbio;
964
965 mbio->bi_sector = r1_bio->sector + conf->mirrors[i].rdev->data_offset;
966 mbio->bi_bdev = conf->mirrors[i].rdev->bdev;
967 mbio->bi_end_io = raid1_end_write_request;
Dmitry Monakhov1ef04fe2009-09-20 05:52:25 +0400968 mbio->bi_rw = WRITE | (do_barriers << BIO_RW_BARRIER) |
969 (do_sync << BIO_RW_SYNCIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 mbio->bi_private = r1_bio;
971
NeilBrown4b6d2872005-09-09 16:23:47 -0700972 if (behind_pages) {
973 struct bio_vec *bvec;
974 int j;
975
976 /* Yes, I really want the '__' version so that
977 * we clear any unused pointer in the io_vec, rather
978 * than leave them unchanged. This is important
979 * because when we come to free the pages, we won't
980 * know the originial bi_idx, so we just free
981 * them all
982 */
983 __bio_for_each_segment(bvec, mbio, j, 0)
984 bvec->bv_page = behind_pages[j];
985 if (test_bit(WriteMostly, &conf->mirrors[i].rdev->flags))
986 atomic_inc(&r1_bio->behind_remaining);
987 }
988
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 atomic_inc(&r1_bio->remaining);
NeilBrown191ea9b2005-06-21 17:17:23 -0700990
991 bio_list_add(&bl, mbio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 }
NeilBrown4b6d2872005-09-09 16:23:47 -0700993 kfree(behind_pages); /* the behind pages are attached to the bios now */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
NeilBrown4b6d2872005-09-09 16:23:47 -0700995 bitmap_startwrite(bitmap, bio->bi_sector, r1_bio->sectors,
996 test_bit(R1BIO_BehindIO, &r1_bio->state));
NeilBrown191ea9b2005-06-21 17:17:23 -0700997 spin_lock_irqsave(&conf->device_lock, flags);
998 bio_list_merge(&conf->pending_bio_list, &bl);
999 bio_list_init(&bl);
1000
1001 blk_plug_device(mddev->queue);
1002 spin_unlock_irqrestore(&conf->device_lock, flags);
1003
NeilBrowna35e63e2008-03-04 14:29:29 -08001004 /* In case raid1d snuck into freeze_array */
1005 wake_up(&conf->wait_barrier);
1006
Lars Ellenberge3881a62007-01-10 23:15:37 -08001007 if (do_sync)
1008 md_wakeup_thread(mddev->thread);
NeilBrown191ea9b2005-06-21 17:17:23 -07001009#if 0
1010 while ((bio = bio_list_pop(&bl)) != NULL)
1011 generic_make_request(bio);
1012#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
1014 return 0;
1015}
1016
1017static void status(struct seq_file *seq, mddev_t *mddev)
1018{
NeilBrown070ec552009-06-16 16:54:21 +10001019 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 int i;
1021
1022 seq_printf(seq, " [%d/%d] [", conf->raid_disks,
NeilBrown11ce99e2006-10-03 01:15:52 -07001023 conf->raid_disks - mddev->degraded);
NeilBrownddac7c72006-08-31 21:27:36 -07001024 rcu_read_lock();
1025 for (i = 0; i < conf->raid_disks; i++) {
1026 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 seq_printf(seq, "%s",
NeilBrownddac7c72006-08-31 21:27:36 -07001028 rdev && test_bit(In_sync, &rdev->flags) ? "U" : "_");
1029 }
1030 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 seq_printf(seq, "]");
1032}
1033
1034
1035static void error(mddev_t *mddev, mdk_rdev_t *rdev)
1036{
1037 char b[BDEVNAME_SIZE];
NeilBrown070ec552009-06-16 16:54:21 +10001038 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
1040 /*
1041 * If it is not operational, then we have already marked it as dead
1042 * else if it is the last working disks, ignore the error, let the
1043 * next level up know.
1044 * else mark the drive as failed
1045 */
NeilBrownb2d444d2005-11-08 21:39:31 -08001046 if (test_bit(In_sync, &rdev->flags)
NeilBrown4044ba52009-01-09 08:31:11 +11001047 && (conf->raid_disks - mddev->degraded) == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 /*
1049 * Don't fail the drive, act as though we were just a
NeilBrown4044ba52009-01-09 08:31:11 +11001050 * normal single drive.
1051 * However don't try a recovery from this drive as
1052 * it is very likely to fail.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 */
NeilBrown4044ba52009-01-09 08:31:11 +11001054 mddev->recovery_disabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 return;
NeilBrown4044ba52009-01-09 08:31:11 +11001056 }
NeilBrownc04be0a2006-10-03 01:15:53 -07001057 if (test_and_clear_bit(In_sync, &rdev->flags)) {
1058 unsigned long flags;
1059 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 mddev->degraded++;
NeilBrowndd00a992007-05-10 03:15:50 -07001061 set_bit(Faulty, &rdev->flags);
NeilBrownc04be0a2006-10-03 01:15:53 -07001062 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 /*
1064 * if recovery is running, make sure it aborts.
1065 */
NeilBrowndfc70642008-05-23 13:04:39 -07001066 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
NeilBrowndd00a992007-05-10 03:15:50 -07001067 } else
1068 set_bit(Faulty, &rdev->flags);
NeilBrown850b2b42006-10-03 01:15:46 -07001069 set_bit(MD_CHANGE_DEVS, &mddev->flags);
Nick Andrewd7a420c2008-04-28 02:15:55 -07001070 printk(KERN_ALERT "raid1: Disk failure on %s, disabling device.\n"
1071 "raid1: Operation continuing on %d devices.\n",
NeilBrown11ce99e2006-10-03 01:15:52 -07001072 bdevname(rdev->bdev,b), conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073}
1074
1075static void print_conf(conf_t *conf)
1076{
1077 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
1079 printk("RAID1 conf printout:\n");
1080 if (!conf) {
1081 printk("(!conf)\n");
1082 return;
1083 }
NeilBrown11ce99e2006-10-03 01:15:52 -07001084 printk(" --- wd:%d rd:%d\n", conf->raid_disks - conf->mddev->degraded,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 conf->raid_disks);
1086
NeilBrownddac7c72006-08-31 21:27:36 -07001087 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 for (i = 0; i < conf->raid_disks; i++) {
1089 char b[BDEVNAME_SIZE];
NeilBrownddac7c72006-08-31 21:27:36 -07001090 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
1091 if (rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 printk(" disk %d, wo:%d, o:%d, dev:%s\n",
NeilBrownddac7c72006-08-31 21:27:36 -07001093 i, !test_bit(In_sync, &rdev->flags),
1094 !test_bit(Faulty, &rdev->flags),
1095 bdevname(rdev->bdev,b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 }
NeilBrownddac7c72006-08-31 21:27:36 -07001097 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098}
1099
1100static void close_sync(conf_t *conf)
1101{
NeilBrown17999be2006-01-06 00:20:12 -08001102 wait_barrier(conf);
1103 allow_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
1105 mempool_destroy(conf->r1buf_pool);
1106 conf->r1buf_pool = NULL;
1107}
1108
1109static int raid1_spare_active(mddev_t *mddev)
1110{
1111 int i;
1112 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
1114 /*
1115 * Find all failed disks within the RAID1 configuration
NeilBrownddac7c72006-08-31 21:27:36 -07001116 * and mark them readable.
1117 * Called under mddev lock, so rcu protection not needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 */
1119 for (i = 0; i < conf->raid_disks; i++) {
NeilBrownddac7c72006-08-31 21:27:36 -07001120 mdk_rdev_t *rdev = conf->mirrors[i].rdev;
1121 if (rdev
1122 && !test_bit(Faulty, &rdev->flags)
NeilBrownc04be0a2006-10-03 01:15:53 -07001123 && !test_and_set_bit(In_sync, &rdev->flags)) {
1124 unsigned long flags;
1125 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 mddev->degraded--;
NeilBrownc04be0a2006-10-03 01:15:53 -07001127 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 }
1129 }
1130
1131 print_conf(conf);
1132 return 0;
1133}
1134
1135
1136static int raid1_add_disk(mddev_t *mddev, mdk_rdev_t *rdev)
1137{
1138 conf_t *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10001139 int err = -EEXIST;
NeilBrown41158c72005-06-21 17:17:25 -07001140 int mirror = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 mirror_info_t *p;
Neil Brown6c2fce22008-06-28 08:31:31 +10001142 int first = 0;
1143 int last = mddev->raid_disks - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144
Neil Brown6c2fce22008-06-28 08:31:31 +10001145 if (rdev->raid_disk >= 0)
1146 first = last = rdev->raid_disk;
1147
1148 for (mirror = first; mirror <= last; mirror++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 if ( !(p=conf->mirrors+mirror)->rdev) {
1150
Martin K. Petersen8f6c2e42009-07-01 11:13:45 +10001151 disk_stack_limits(mddev->gendisk, rdev->bdev,
1152 rdev->data_offset << 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 /* as we don't honour merge_bvec_fn, we must never risk
1154 * violating it, so limit ->max_sector to one PAGE, as
1155 * a one page request is never in violation.
1156 */
1157 if (rdev->bdev->bd_disk->queue->merge_bvec_fn &&
Martin K. Petersenae03bf62009-05-22 17:17:50 -04001158 queue_max_sectors(mddev->queue) > (PAGE_SIZE>>9))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 blk_queue_max_sectors(mddev->queue, PAGE_SIZE>>9);
1160
1161 p->head_position = 0;
1162 rdev->raid_disk = mirror;
Neil Brown199050e2008-06-28 08:31:33 +10001163 err = 0;
NeilBrown6aea114a2005-11-28 13:44:13 -08001164 /* As all devices are equivalent, we don't need a full recovery
1165 * if this was recently any drive of the array
1166 */
1167 if (rdev->saved_raid_disk < 0)
NeilBrown41158c72005-06-21 17:17:25 -07001168 conf->fullsync = 1;
Suzanne Woodd6065f72005-11-08 21:39:27 -08001169 rcu_assign_pointer(p->rdev, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 break;
1171 }
Andre Nollac5e7112009-08-03 10:59:47 +10001172 md_integrity_add_rdev(rdev, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 print_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10001174 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175}
1176
1177static int raid1_remove_disk(mddev_t *mddev, int number)
1178{
1179 conf_t *conf = mddev->private;
1180 int err = 0;
1181 mdk_rdev_t *rdev;
1182 mirror_info_t *p = conf->mirrors+ number;
1183
1184 print_conf(conf);
1185 rdev = p->rdev;
1186 if (rdev) {
NeilBrownb2d444d2005-11-08 21:39:31 -08001187 if (test_bit(In_sync, &rdev->flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 atomic_read(&rdev->nr_pending)) {
1189 err = -EBUSY;
1190 goto abort;
1191 }
NeilBrowndfc70642008-05-23 13:04:39 -07001192 /* Only remove non-faulty devices is recovery
1193 * is not possible.
1194 */
1195 if (!test_bit(Faulty, &rdev->flags) &&
1196 mddev->degraded < conf->raid_disks) {
1197 err = -EBUSY;
1198 goto abort;
1199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 p->rdev = NULL;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07001201 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 if (atomic_read(&rdev->nr_pending)) {
1203 /* lost the race, try later */
1204 err = -EBUSY;
1205 p->rdev = rdev;
Andre Nollac5e7112009-08-03 10:59:47 +10001206 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 }
Andre Nollac5e7112009-08-03 10:59:47 +10001208 md_integrity_register(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 }
1210abort:
1211
1212 print_conf(conf);
1213 return err;
1214}
1215
1216
NeilBrown6712ecf2007-09-27 12:47:43 +02001217static void end_sync_read(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 r1bio_t * r1_bio = (r1bio_t *)(bio->bi_private);
NeilBrownd11c1712006-01-06 00:20:26 -08001220 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
NeilBrownd11c1712006-01-06 00:20:26 -08001222 for (i=r1_bio->mddev->raid_disks; i--; )
1223 if (r1_bio->bios[i] == bio)
1224 break;
1225 BUG_ON(i < 0);
1226 update_head_pos(i, r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 /*
1228 * we have read a block, now it needs to be re-written,
1229 * or re-read if the read failed.
1230 * We don't do much here, just schedule handling by raid1d
1231 */
NeilBrown69382e82006-01-06 00:20:22 -08001232 if (test_bit(BIO_UPTODATE, &bio->bi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 set_bit(R1BIO_Uptodate, &r1_bio->state);
NeilBrownd11c1712006-01-06 00:20:26 -08001234
1235 if (atomic_dec_and_test(&r1_bio->remaining))
1236 reschedule_retry(r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237}
1238
NeilBrown6712ecf2007-09-27 12:47:43 +02001239static void end_sync_write(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240{
1241 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
1242 r1bio_t * r1_bio = (r1bio_t *)(bio->bi_private);
1243 mddev_t *mddev = r1_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +10001244 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 int i;
1246 int mirror=0;
1247
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 for (i = 0; i < conf->raid_disks; i++)
1249 if (r1_bio->bios[i] == bio) {
1250 mirror = i;
1251 break;
1252 }
NeilBrown6b1117d2006-03-31 02:31:57 -08001253 if (!uptodate) {
1254 int sync_blocks = 0;
1255 sector_t s = r1_bio->sector;
1256 long sectors_to_go = r1_bio->sectors;
1257 /* make sure these bits doesn't get cleared. */
1258 do {
NeilBrown5e3db642006-07-10 04:44:18 -07001259 bitmap_end_sync(mddev->bitmap, s,
NeilBrown6b1117d2006-03-31 02:31:57 -08001260 &sync_blocks, 1);
1261 s += sync_blocks;
1262 sectors_to_go -= sync_blocks;
1263 } while (sectors_to_go > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 md_error(mddev, conf->mirrors[mirror].rdev);
NeilBrown6b1117d2006-03-31 02:31:57 -08001265 }
NeilBrowne3b97032005-08-04 12:53:34 -07001266
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 update_head_pos(mirror, r1_bio);
1268
1269 if (atomic_dec_and_test(&r1_bio->remaining)) {
NeilBrown73d5c382009-02-25 13:18:47 +11001270 sector_t s = r1_bio->sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 put_buf(r1_bio);
NeilBrown73d5c382009-02-25 13:18:47 +11001272 md_done_sync(mddev, s, uptodate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274}
1275
1276static void sync_request_write(mddev_t *mddev, r1bio_t *r1_bio)
1277{
NeilBrown070ec552009-06-16 16:54:21 +10001278 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 int i;
1280 int disks = conf->raid_disks;
1281 struct bio *bio, *wbio;
1282
1283 bio = r1_bio->bios[r1_bio->read_disk];
1284
NeilBrown69382e82006-01-06 00:20:22 -08001285
NeilBrownd11c1712006-01-06 00:20:26 -08001286 if (test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) {
1287 /* We have read all readable devices. If we haven't
1288 * got the block, then there is no hope left.
1289 * If we have, then we want to do a comparison
1290 * and skip the write if everything is the same.
1291 * If any blocks failed to read, then we need to
1292 * attempt an over-write
1293 */
1294 int primary;
1295 if (!test_bit(R1BIO_Uptodate, &r1_bio->state)) {
1296 for (i=0; i<mddev->raid_disks; i++)
1297 if (r1_bio->bios[i]->bi_end_io == end_sync_read)
1298 md_error(mddev, conf->mirrors[i].rdev);
1299
1300 md_done_sync(mddev, r1_bio->sectors, 1);
1301 put_buf(r1_bio);
1302 return;
1303 }
1304 for (primary=0; primary<mddev->raid_disks; primary++)
1305 if (r1_bio->bios[primary]->bi_end_io == end_sync_read &&
1306 test_bit(BIO_UPTODATE, &r1_bio->bios[primary]->bi_flags)) {
1307 r1_bio->bios[primary]->bi_end_io = NULL;
NeilBrown03c902e2006-01-06 00:20:46 -08001308 rdev_dec_pending(conf->mirrors[primary].rdev, mddev);
NeilBrownd11c1712006-01-06 00:20:26 -08001309 break;
1310 }
1311 r1_bio->read_disk = primary;
1312 for (i=0; i<mddev->raid_disks; i++)
Mike Accettaed456662007-06-16 10:16:07 -07001313 if (r1_bio->bios[i]->bi_end_io == end_sync_read) {
NeilBrownd11c1712006-01-06 00:20:26 -08001314 int j;
1315 int vcnt = r1_bio->sectors >> (PAGE_SHIFT- 9);
1316 struct bio *pbio = r1_bio->bios[primary];
1317 struct bio *sbio = r1_bio->bios[i];
Mike Accettaed456662007-06-16 10:16:07 -07001318
1319 if (test_bit(BIO_UPTODATE, &sbio->bi_flags)) {
1320 for (j = vcnt; j-- ; ) {
1321 struct page *p, *s;
1322 p = pbio->bi_io_vec[j].bv_page;
1323 s = sbio->bi_io_vec[j].bv_page;
1324 if (memcmp(page_address(p),
1325 page_address(s),
1326 PAGE_SIZE))
1327 break;
1328 }
1329 } else
1330 j = 0;
NeilBrownd11c1712006-01-06 00:20:26 -08001331 if (j >= 0)
1332 mddev->resync_mismatches += r1_bio->sectors;
NeilBrowncf7a4412007-10-16 23:30:55 -07001333 if (j < 0 || (test_bit(MD_RECOVERY_CHECK, &mddev->recovery)
1334 && test_bit(BIO_UPTODATE, &sbio->bi_flags))) {
NeilBrownd11c1712006-01-06 00:20:26 -08001335 sbio->bi_end_io = NULL;
NeilBrown03c902e2006-01-06 00:20:46 -08001336 rdev_dec_pending(conf->mirrors[i].rdev, mddev);
1337 } else {
NeilBrownd11c1712006-01-06 00:20:26 -08001338 /* fixup the bio for reuse */
NeilBrown698b18c2008-05-23 13:04:35 -07001339 int size;
NeilBrownd11c1712006-01-06 00:20:26 -08001340 sbio->bi_vcnt = vcnt;
1341 sbio->bi_size = r1_bio->sectors << 9;
1342 sbio->bi_idx = 0;
1343 sbio->bi_phys_segments = 0;
NeilBrownd11c1712006-01-06 00:20:26 -08001344 sbio->bi_flags &= ~(BIO_POOL_MASK - 1);
1345 sbio->bi_flags |= 1 << BIO_UPTODATE;
1346 sbio->bi_next = NULL;
1347 sbio->bi_sector = r1_bio->sector +
1348 conf->mirrors[i].rdev->data_offset;
1349 sbio->bi_bdev = conf->mirrors[i].rdev->bdev;
NeilBrown698b18c2008-05-23 13:04:35 -07001350 size = sbio->bi_size;
1351 for (j = 0; j < vcnt ; j++) {
1352 struct bio_vec *bi;
1353 bi = &sbio->bi_io_vec[j];
1354 bi->bv_offset = 0;
1355 if (size > PAGE_SIZE)
1356 bi->bv_len = PAGE_SIZE;
1357 else
1358 bi->bv_len = size;
1359 size -= PAGE_SIZE;
1360 memcpy(page_address(bi->bv_page),
NeilBrown3eda22d2007-01-26 00:57:01 -08001361 page_address(pbio->bi_io_vec[j].bv_page),
1362 PAGE_SIZE);
NeilBrown698b18c2008-05-23 13:04:35 -07001363 }
NeilBrown3eda22d2007-01-26 00:57:01 -08001364
NeilBrownd11c1712006-01-06 00:20:26 -08001365 }
1366 }
1367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 if (!test_bit(R1BIO_Uptodate, &r1_bio->state)) {
NeilBrown69382e82006-01-06 00:20:22 -08001369 /* ouch - failed to read all of that.
1370 * Try some synchronous reads of other devices to get
1371 * good data, much like with normal read errors. Only
NeilBrownddac7c72006-08-31 21:27:36 -07001372 * read into the pages we already have so we don't
NeilBrown69382e82006-01-06 00:20:22 -08001373 * need to re-issue the read request.
1374 * We don't need to freeze the array, because being in an
1375 * active sync request, there is no normal IO, and
1376 * no overlapping syncs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 */
NeilBrown69382e82006-01-06 00:20:22 -08001378 sector_t sect = r1_bio->sector;
1379 int sectors = r1_bio->sectors;
1380 int idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
NeilBrown69382e82006-01-06 00:20:22 -08001382 while(sectors) {
1383 int s = sectors;
1384 int d = r1_bio->read_disk;
1385 int success = 0;
1386 mdk_rdev_t *rdev;
1387
1388 if (s > (PAGE_SIZE>>9))
1389 s = PAGE_SIZE >> 9;
1390 do {
1391 if (r1_bio->bios[d]->bi_end_io == end_sync_read) {
NeilBrownddac7c72006-08-31 21:27:36 -07001392 /* No rcu protection needed here devices
1393 * can only be removed when no resync is
1394 * active, and resync is currently active
1395 */
NeilBrown69382e82006-01-06 00:20:22 -08001396 rdev = conf->mirrors[d].rdev;
1397 if (sync_page_io(rdev->bdev,
1398 sect + rdev->data_offset,
1399 s<<9,
1400 bio->bi_io_vec[idx].bv_page,
1401 READ)) {
1402 success = 1;
1403 break;
1404 }
1405 }
1406 d++;
1407 if (d == conf->raid_disks)
1408 d = 0;
1409 } while (!success && d != r1_bio->read_disk);
1410
1411 if (success) {
NeilBrown097426f2006-01-06 00:20:37 -08001412 int start = d;
NeilBrown69382e82006-01-06 00:20:22 -08001413 /* write it back and re-read */
1414 set_bit(R1BIO_Uptodate, &r1_bio->state);
1415 while (d != r1_bio->read_disk) {
1416 if (d == 0)
1417 d = conf->raid_disks;
1418 d--;
1419 if (r1_bio->bios[d]->bi_end_io != end_sync_read)
1420 continue;
1421 rdev = conf->mirrors[d].rdev;
NeilBrown4dbcdc72006-01-06 00:20:52 -08001422 atomic_add(s, &rdev->corrected_errors);
NeilBrown69382e82006-01-06 00:20:22 -08001423 if (sync_page_io(rdev->bdev,
1424 sect + rdev->data_offset,
1425 s<<9,
1426 bio->bi_io_vec[idx].bv_page,
NeilBrown097426f2006-01-06 00:20:37 -08001427 WRITE) == 0)
1428 md_error(mddev, rdev);
1429 }
1430 d = start;
1431 while (d != r1_bio->read_disk) {
1432 if (d == 0)
1433 d = conf->raid_disks;
1434 d--;
1435 if (r1_bio->bios[d]->bi_end_io != end_sync_read)
1436 continue;
1437 rdev = conf->mirrors[d].rdev;
1438 if (sync_page_io(rdev->bdev,
NeilBrown69382e82006-01-06 00:20:22 -08001439 sect + rdev->data_offset,
1440 s<<9,
1441 bio->bi_io_vec[idx].bv_page,
NeilBrown097426f2006-01-06 00:20:37 -08001442 READ) == 0)
NeilBrown69382e82006-01-06 00:20:22 -08001443 md_error(mddev, rdev);
NeilBrown69382e82006-01-06 00:20:22 -08001444 }
1445 } else {
1446 char b[BDEVNAME_SIZE];
1447 /* Cannot read from anywhere, array is toast */
1448 md_error(mddev, conf->mirrors[r1_bio->read_disk].rdev);
1449 printk(KERN_ALERT "raid1: %s: unrecoverable I/O read error"
1450 " for block %llu\n",
1451 bdevname(bio->bi_bdev,b),
1452 (unsigned long long)r1_bio->sector);
1453 md_done_sync(mddev, r1_bio->sectors, 0);
1454 put_buf(r1_bio);
1455 return;
1456 }
1457 sectors -= s;
1458 sect += s;
1459 idx ++;
1460 }
1461 }
NeilBrownd11c1712006-01-06 00:20:26 -08001462
1463 /*
1464 * schedule writes
1465 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 atomic_set(&r1_bio->remaining, 1);
1467 for (i = 0; i < disks ; i++) {
1468 wbio = r1_bio->bios[i];
NeilBrown3e198f72006-01-06 00:20:21 -08001469 if (wbio->bi_end_io == NULL ||
1470 (wbio->bi_end_io == end_sync_read &&
1471 (i == r1_bio->read_disk ||
1472 !test_bit(MD_RECOVERY_SYNC, &mddev->recovery))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 continue;
1474
NeilBrown3e198f72006-01-06 00:20:21 -08001475 wbio->bi_rw = WRITE;
1476 wbio->bi_end_io = end_sync_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 atomic_inc(&r1_bio->remaining);
1478 md_sync_acct(conf->mirrors[i].rdev->bdev, wbio->bi_size >> 9);
NeilBrown191ea9b2005-06-21 17:17:23 -07001479
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 generic_make_request(wbio);
1481 }
1482
1483 if (atomic_dec_and_test(&r1_bio->remaining)) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001484 /* if we're here, all write(s) have completed, so clean up */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 md_done_sync(mddev, r1_bio->sectors, 1);
1486 put_buf(r1_bio);
1487 }
1488}
1489
1490/*
1491 * This is a kernel thread which:
1492 *
1493 * 1. Retries failed read operations on working mirrors.
1494 * 2. Updates the raid superblock when problems encounter.
1495 * 3. Performs writes following reads for array syncronising.
1496 */
1497
NeilBrown867868f2006-10-03 01:15:51 -07001498static void fix_read_error(conf_t *conf, int read_disk,
1499 sector_t sect, int sectors)
1500{
1501 mddev_t *mddev = conf->mddev;
1502 while(sectors) {
1503 int s = sectors;
1504 int d = read_disk;
1505 int success = 0;
1506 int start;
1507 mdk_rdev_t *rdev;
1508
1509 if (s > (PAGE_SIZE>>9))
1510 s = PAGE_SIZE >> 9;
1511
1512 do {
1513 /* Note: no rcu protection needed here
1514 * as this is synchronous in the raid1d thread
1515 * which is the thread that might remove
1516 * a device. If raid1d ever becomes multi-threaded....
1517 */
1518 rdev = conf->mirrors[d].rdev;
1519 if (rdev &&
1520 test_bit(In_sync, &rdev->flags) &&
1521 sync_page_io(rdev->bdev,
1522 sect + rdev->data_offset,
1523 s<<9,
1524 conf->tmppage, READ))
1525 success = 1;
1526 else {
1527 d++;
1528 if (d == conf->raid_disks)
1529 d = 0;
1530 }
1531 } while (!success && d != read_disk);
1532
1533 if (!success) {
1534 /* Cannot read from anywhere -- bye bye array */
1535 md_error(mddev, conf->mirrors[read_disk].rdev);
1536 break;
1537 }
1538 /* write it back and re-read */
1539 start = d;
1540 while (d != read_disk) {
1541 if (d==0)
1542 d = conf->raid_disks;
1543 d--;
1544 rdev = conf->mirrors[d].rdev;
1545 if (rdev &&
1546 test_bit(In_sync, &rdev->flags)) {
1547 if (sync_page_io(rdev->bdev,
1548 sect + rdev->data_offset,
1549 s<<9, conf->tmppage, WRITE)
1550 == 0)
1551 /* Well, this device is dead */
1552 md_error(mddev, rdev);
1553 }
1554 }
1555 d = start;
1556 while (d != read_disk) {
1557 char b[BDEVNAME_SIZE];
1558 if (d==0)
1559 d = conf->raid_disks;
1560 d--;
1561 rdev = conf->mirrors[d].rdev;
1562 if (rdev &&
1563 test_bit(In_sync, &rdev->flags)) {
1564 if (sync_page_io(rdev->bdev,
1565 sect + rdev->data_offset,
1566 s<<9, conf->tmppage, READ)
1567 == 0)
1568 /* Well, this device is dead */
1569 md_error(mddev, rdev);
1570 else {
1571 atomic_add(s, &rdev->corrected_errors);
1572 printk(KERN_INFO
1573 "raid1:%s: read error corrected "
1574 "(%d sectors at %llu on %s)\n",
1575 mdname(mddev), s,
Randy Dunlap969b7552006-10-28 10:38:32 -07001576 (unsigned long long)(sect +
1577 rdev->data_offset),
NeilBrown867868f2006-10-03 01:15:51 -07001578 bdevname(rdev->bdev, b));
1579 }
1580 }
1581 }
1582 sectors -= s;
1583 sect += s;
1584 }
1585}
1586
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587static void raid1d(mddev_t *mddev)
1588{
1589 r1bio_t *r1_bio;
1590 struct bio *bio;
1591 unsigned long flags;
NeilBrown070ec552009-06-16 16:54:21 +10001592 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 struct list_head *head = &conf->retry_list;
1594 int unplug=0;
1595 mdk_rdev_t *rdev;
1596
1597 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
1599 for (;;) {
1600 char b[BDEVNAME_SIZE];
NeilBrowna35e63e2008-03-04 14:29:29 -08001601
1602 unplug += flush_pending_writes(conf);
1603
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrowna35e63e2008-03-04 14:29:29 -08001605 if (list_empty(head)) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001606 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 break;
NeilBrowna35e63e2008-03-04 14:29:29 -08001608 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 r1_bio = list_entry(head->prev, r1bio_t, retry_list);
1610 list_del(head->prev);
NeilBrownddaf22a2006-01-06 00:20:19 -08001611 conf->nr_queued--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 spin_unlock_irqrestore(&conf->device_lock, flags);
1613
1614 mddev = r1_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +10001615 conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 if (test_bit(R1BIO_IsSync, &r1_bio->state)) {
1617 sync_request_write(mddev, r1_bio);
1618 unplug = 1;
NeilBrowna9701a32005-11-08 21:39:34 -08001619 } else if (test_bit(R1BIO_BarrierRetry, &r1_bio->state)) {
1620 /* some requests in the r1bio were BIO_RW_BARRIER
NeilBrownbea27712006-05-01 12:15:46 -07001621 * requests which failed with -EOPNOTSUPP. Hohumm..
NeilBrowna9701a32005-11-08 21:39:34 -08001622 * Better resubmit without the barrier.
1623 * We know which devices to resubmit for, because
1624 * all others have had their bios[] entry cleared.
NeilBrown5e7dd2a2006-05-01 12:15:47 -07001625 * We already have a nr_pending reference on these rdevs.
NeilBrowna9701a32005-11-08 21:39:34 -08001626 */
1627 int i;
Jens Axboe1f98a132009-09-11 14:32:04 +02001628 const bool do_sync = bio_rw_flagged(r1_bio->master_bio, BIO_RW_SYNCIO);
NeilBrowna9701a32005-11-08 21:39:34 -08001629 clear_bit(R1BIO_BarrierRetry, &r1_bio->state);
1630 clear_bit(R1BIO_Barrier, &r1_bio->state);
1631 for (i=0; i < conf->raid_disks; i++)
NeilBrown2f889122006-03-27 01:18:19 -08001632 if (r1_bio->bios[i])
1633 atomic_inc(&r1_bio->remaining);
1634 for (i=0; i < conf->raid_disks; i++)
NeilBrowna9701a32005-11-08 21:39:34 -08001635 if (r1_bio->bios[i]) {
1636 struct bio_vec *bvec;
1637 int j;
1638
1639 bio = bio_clone(r1_bio->master_bio, GFP_NOIO);
1640 /* copy pages from the failed bio, as
1641 * this might be a write-behind device */
1642 __bio_for_each_segment(bvec, bio, j, 0)
1643 bvec->bv_page = bio_iovec_idx(r1_bio->bios[i], j)->bv_page;
1644 bio_put(r1_bio->bios[i]);
1645 bio->bi_sector = r1_bio->sector +
1646 conf->mirrors[i].rdev->data_offset;
1647 bio->bi_bdev = conf->mirrors[i].rdev->bdev;
1648 bio->bi_end_io = raid1_end_write_request;
Dmitry Monakhov1ef04fe2009-09-20 05:52:25 +04001649 bio->bi_rw = WRITE |
1650 (do_sync << BIO_RW_SYNCIO);
NeilBrowna9701a32005-11-08 21:39:34 -08001651 bio->bi_private = r1_bio;
1652 r1_bio->bios[i] = bio;
1653 generic_make_request(bio);
1654 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 } else {
1656 int disk;
NeilBrownddaf22a2006-01-06 00:20:19 -08001657
1658 /* we got a read error. Maybe the drive is bad. Maybe just
1659 * the block and we can fix it.
1660 * We freeze all other IO, and try reading the block from
1661 * other devices. When we find one, we re-write
1662 * and check it that fixes the read error.
1663 * This is all done synchronously while the array is
1664 * frozen
1665 */
NeilBrown867868f2006-10-03 01:15:51 -07001666 if (mddev->ro == 0) {
1667 freeze_array(conf);
1668 fix_read_error(conf, r1_bio->read_disk,
1669 r1_bio->sector,
1670 r1_bio->sectors);
1671 unfreeze_array(conf);
NeilBrownd0e26072009-12-01 17:30:59 +11001672 } else
1673 md_error(mddev,
1674 conf->mirrors[r1_bio->read_disk].rdev);
NeilBrownddaf22a2006-01-06 00:20:19 -08001675
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 bio = r1_bio->bios[r1_bio->read_disk];
NeilBrownd0e26072009-12-01 17:30:59 +11001677 if ((disk=read_balance(conf, r1_bio)) == -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 printk(KERN_ALERT "raid1: %s: unrecoverable I/O"
1679 " read error for block %llu\n",
1680 bdevname(bio->bi_bdev,b),
1681 (unsigned long long)r1_bio->sector);
1682 raid_end_bio_io(r1_bio);
1683 } else {
Jens Axboe1f98a132009-09-11 14:32:04 +02001684 const bool do_sync = bio_rw_flagged(r1_bio->master_bio, BIO_RW_SYNCIO);
NeilBrowncf30a472006-01-06 00:20:23 -08001685 r1_bio->bios[r1_bio->read_disk] =
1686 mddev->ro ? IO_BLOCKED : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 r1_bio->read_disk = disk;
1688 bio_put(bio);
1689 bio = bio_clone(r1_bio->master_bio, GFP_NOIO);
1690 r1_bio->bios[r1_bio->read_disk] = bio;
1691 rdev = conf->mirrors[disk].rdev;
1692 if (printk_ratelimit())
1693 printk(KERN_ERR "raid1: %s: redirecting sector %llu to"
1694 " another mirror\n",
1695 bdevname(rdev->bdev,b),
1696 (unsigned long long)r1_bio->sector);
1697 bio->bi_sector = r1_bio->sector + rdev->data_offset;
1698 bio->bi_bdev = rdev->bdev;
1699 bio->bi_end_io = raid1_end_read_request;
Dmitry Monakhov1ef04fe2009-09-20 05:52:25 +04001700 bio->bi_rw = READ | (do_sync << BIO_RW_SYNCIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 bio->bi_private = r1_bio;
1702 unplug = 1;
1703 generic_make_request(bio);
1704 }
1705 }
NeilBrown1d9d5242009-10-16 15:55:32 +11001706 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 if (unplug)
1709 unplug_slaves(mddev);
1710}
1711
1712
1713static int init_resync(conf_t *conf)
1714{
1715 int buffs;
1716
1717 buffs = RESYNC_WINDOW / RESYNC_BLOCK_SIZE;
Eric Sesterhenn9e77c482006-04-01 01:08:49 +02001718 BUG_ON(conf->r1buf_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 conf->r1buf_pool = mempool_create(buffs, r1buf_pool_alloc, r1buf_pool_free,
1720 conf->poolinfo);
1721 if (!conf->r1buf_pool)
1722 return -ENOMEM;
1723 conf->next_resync = 0;
1724 return 0;
1725}
1726
1727/*
1728 * perform a "sync" on one "block"
1729 *
1730 * We need to make sure that no normal I/O request - particularly write
1731 * requests - conflict with active sync requests.
1732 *
1733 * This is achieved by tracking pending requests and a 'barrier' concept
1734 * that can be installed to exclude normal IO requests.
1735 */
1736
NeilBrown57afd892005-06-21 17:17:13 -07001737static sector_t sync_request(mddev_t *mddev, sector_t sector_nr, int *skipped, int go_faster)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738{
NeilBrown070ec552009-06-16 16:54:21 +10001739 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 r1bio_t *r1_bio;
1741 struct bio *bio;
1742 sector_t max_sector, nr_sectors;
NeilBrown3e198f72006-01-06 00:20:21 -08001743 int disk = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 int i;
NeilBrown3e198f72006-01-06 00:20:21 -08001745 int wonly = -1;
1746 int write_targets = 0, read_targets = 0;
NeilBrown191ea9b2005-06-21 17:17:23 -07001747 int sync_blocks;
NeilBrowne3b97032005-08-04 12:53:34 -07001748 int still_degraded = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
1750 if (!conf->r1buf_pool)
NeilBrown191ea9b2005-06-21 17:17:23 -07001751 {
1752/*
1753 printk("sync start - bitmap %p\n", mddev->bitmap);
1754*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 if (init_resync(conf))
NeilBrown57afd892005-06-21 17:17:13 -07001756 return 0;
NeilBrown191ea9b2005-06-21 17:17:23 -07001757 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
Andre Noll58c0fed2009-03-31 14:33:13 +11001759 max_sector = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 if (sector_nr >= max_sector) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001761 /* If we aborted, we need to abort the
1762 * sync on the 'current' bitmap chunk (there will
1763 * only be one in raid1 resync.
1764 * We can find the current addess in mddev->curr_resync
1765 */
NeilBrown6a806c52005-07-15 03:56:35 -07001766 if (mddev->curr_resync < max_sector) /* aborted */
1767 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
NeilBrown191ea9b2005-06-21 17:17:23 -07001768 &sync_blocks, 1);
NeilBrown6a806c52005-07-15 03:56:35 -07001769 else /* completed sync */
NeilBrown191ea9b2005-06-21 17:17:23 -07001770 conf->fullsync = 0;
NeilBrown6a806c52005-07-15 03:56:35 -07001771
1772 bitmap_close_sync(mddev->bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 close_sync(conf);
1774 return 0;
1775 }
1776
NeilBrown07d84d102006-06-26 00:27:56 -07001777 if (mddev->bitmap == NULL &&
1778 mddev->recovery_cp == MaxSector &&
NeilBrown6394cca2006-08-27 01:23:50 -07001779 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
NeilBrown07d84d102006-06-26 00:27:56 -07001780 conf->fullsync == 0) {
1781 *skipped = 1;
1782 return max_sector - sector_nr;
1783 }
NeilBrown6394cca2006-08-27 01:23:50 -07001784 /* before building a request, check if we can skip these blocks..
1785 * This call the bitmap_start_sync doesn't actually record anything
1786 */
NeilBrowne3b97032005-08-04 12:53:34 -07001787 if (!bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
NeilBrowne5de485f2005-11-08 21:39:38 -08001788 !conf->fullsync && !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001789 /* We can skip this block, and probably several more */
1790 *skipped = 1;
1791 return sync_blocks;
1792 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 /*
NeilBrown17999be2006-01-06 00:20:12 -08001794 * If there is non-resync activity waiting for a turn,
1795 * and resync is going fast enough,
1796 * then let it though before starting on this new sync request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 */
NeilBrown17999be2006-01-06 00:20:12 -08001798 if (!go_faster && conf->nr_waiting)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 msleep_interruptible(1000);
NeilBrown17999be2006-01-06 00:20:12 -08001800
NeilBrownb47490c2008-02-06 01:39:50 -08001801 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
NeilBrown17999be2006-01-06 00:20:12 -08001802 raise_barrier(conf);
1803
1804 conf->next_resync = sector_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 r1_bio = mempool_alloc(conf->r1buf_pool, GFP_NOIO);
NeilBrown3e198f72006-01-06 00:20:21 -08001807 rcu_read_lock();
1808 /*
1809 * If we get a correctably read error during resync or recovery,
1810 * we might want to read from a different device. So we
1811 * flag all drives that could conceivably be read from for READ,
1812 * and any others (which will be non-In_sync devices) for WRITE.
1813 * If a read fails, we try reading from something else for which READ
1814 * is OK.
1815 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 r1_bio->mddev = mddev;
1818 r1_bio->sector = sector_nr;
NeilBrown191ea9b2005-06-21 17:17:23 -07001819 r1_bio->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 set_bit(R1BIO_IsSync, &r1_bio->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
1822 for (i=0; i < conf->raid_disks; i++) {
NeilBrown3e198f72006-01-06 00:20:21 -08001823 mdk_rdev_t *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 bio = r1_bio->bios[i];
1825
1826 /* take from bio_init */
1827 bio->bi_next = NULL;
1828 bio->bi_flags |= 1 << BIO_UPTODATE;
NeilBrown802ba062006-12-13 00:34:13 -08001829 bio->bi_rw = READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 bio->bi_vcnt = 0;
1831 bio->bi_idx = 0;
1832 bio->bi_phys_segments = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 bio->bi_size = 0;
1834 bio->bi_end_io = NULL;
1835 bio->bi_private = NULL;
1836
NeilBrown3e198f72006-01-06 00:20:21 -08001837 rdev = rcu_dereference(conf->mirrors[i].rdev);
1838 if (rdev == NULL ||
1839 test_bit(Faulty, &rdev->flags)) {
NeilBrowne3b97032005-08-04 12:53:34 -07001840 still_degraded = 1;
1841 continue;
NeilBrown3e198f72006-01-06 00:20:21 -08001842 } else if (!test_bit(In_sync, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 bio->bi_rw = WRITE;
1844 bio->bi_end_io = end_sync_write;
1845 write_targets ++;
NeilBrown3e198f72006-01-06 00:20:21 -08001846 } else {
1847 /* may need to read from here */
1848 bio->bi_rw = READ;
1849 bio->bi_end_io = end_sync_read;
1850 if (test_bit(WriteMostly, &rdev->flags)) {
1851 if (wonly < 0)
1852 wonly = i;
1853 } else {
1854 if (disk < 0)
1855 disk = i;
1856 }
1857 read_targets++;
1858 }
1859 atomic_inc(&rdev->nr_pending);
1860 bio->bi_sector = sector_nr + rdev->data_offset;
1861 bio->bi_bdev = rdev->bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 bio->bi_private = r1_bio;
1863 }
NeilBrown3e198f72006-01-06 00:20:21 -08001864 rcu_read_unlock();
1865 if (disk < 0)
1866 disk = wonly;
1867 r1_bio->read_disk = disk;
NeilBrown191ea9b2005-06-21 17:17:23 -07001868
NeilBrown3e198f72006-01-06 00:20:21 -08001869 if (test_bit(MD_RECOVERY_SYNC, &mddev->recovery) && read_targets > 0)
1870 /* extra read targets are also write targets */
1871 write_targets += read_targets-1;
1872
1873 if (write_targets == 0 || read_targets == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 /* There is nowhere to write, so all non-sync
1875 * drives must be failed - so we are finished
1876 */
NeilBrown57afd892005-06-21 17:17:13 -07001877 sector_t rv = max_sector - sector_nr;
1878 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 put_buf(r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 return rv;
1881 }
1882
NeilBrownc6207272008-02-06 01:39:52 -08001883 if (max_sector > mddev->resync_max)
1884 max_sector = mddev->resync_max; /* Don't do IO beyond here */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 nr_sectors = 0;
NeilBrown289e99e2005-06-21 17:17:24 -07001886 sync_blocks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 do {
1888 struct page *page;
1889 int len = PAGE_SIZE;
1890 if (sector_nr + (len>>9) > max_sector)
1891 len = (max_sector - sector_nr) << 9;
1892 if (len == 0)
1893 break;
NeilBrown6a806c52005-07-15 03:56:35 -07001894 if (sync_blocks == 0) {
1895 if (!bitmap_start_sync(mddev->bitmap, sector_nr,
NeilBrowne5de485f2005-11-08 21:39:38 -08001896 &sync_blocks, still_degraded) &&
1897 !conf->fullsync &&
1898 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery))
NeilBrown6a806c52005-07-15 03:56:35 -07001899 break;
Eric Sesterhenn9e77c482006-04-01 01:08:49 +02001900 BUG_ON(sync_blocks < (PAGE_SIZE>>9));
NeilBrown6a806c52005-07-15 03:56:35 -07001901 if (len > (sync_blocks<<9))
1902 len = sync_blocks<<9;
NeilBrownab7a30c2005-06-21 17:17:23 -07001903 }
NeilBrown191ea9b2005-06-21 17:17:23 -07001904
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 for (i=0 ; i < conf->raid_disks; i++) {
1906 bio = r1_bio->bios[i];
1907 if (bio->bi_end_io) {
NeilBrownd11c1712006-01-06 00:20:26 -08001908 page = bio->bi_io_vec[bio->bi_vcnt].bv_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 if (bio_add_page(bio, page, len, 0) == 0) {
1910 /* stop here */
NeilBrownd11c1712006-01-06 00:20:26 -08001911 bio->bi_io_vec[bio->bi_vcnt].bv_page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 while (i > 0) {
1913 i--;
1914 bio = r1_bio->bios[i];
NeilBrown6a806c52005-07-15 03:56:35 -07001915 if (bio->bi_end_io==NULL)
1916 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 /* remove last page from this bio */
1918 bio->bi_vcnt--;
1919 bio->bi_size -= len;
1920 bio->bi_flags &= ~(1<< BIO_SEG_VALID);
1921 }
1922 goto bio_full;
1923 }
1924 }
1925 }
1926 nr_sectors += len>>9;
1927 sector_nr += len>>9;
NeilBrown191ea9b2005-06-21 17:17:23 -07001928 sync_blocks -= (len>>9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 } while (r1_bio->bios[disk]->bi_vcnt < RESYNC_PAGES);
1930 bio_full:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 r1_bio->sectors = nr_sectors;
1932
NeilBrownd11c1712006-01-06 00:20:26 -08001933 /* For a user-requested sync, we read all readable devices and do a
1934 * compare
1935 */
1936 if (test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) {
1937 atomic_set(&r1_bio->remaining, read_targets);
1938 for (i=0; i<conf->raid_disks; i++) {
1939 bio = r1_bio->bios[i];
1940 if (bio->bi_end_io == end_sync_read) {
NeilBrownddac7c72006-08-31 21:27:36 -07001941 md_sync_acct(bio->bi_bdev, nr_sectors);
NeilBrownd11c1712006-01-06 00:20:26 -08001942 generic_make_request(bio);
1943 }
1944 }
1945 } else {
1946 atomic_set(&r1_bio->remaining, 1);
1947 bio = r1_bio->bios[r1_bio->read_disk];
NeilBrownddac7c72006-08-31 21:27:36 -07001948 md_sync_acct(bio->bi_bdev, nr_sectors);
NeilBrownd11c1712006-01-06 00:20:26 -08001949 generic_make_request(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
NeilBrownd11c1712006-01-06 00:20:26 -08001951 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 return nr_sectors;
1953}
1954
Dan Williams80c3a6c2009-03-17 18:10:40 -07001955static sector_t raid1_size(mddev_t *mddev, sector_t sectors, int raid_disks)
1956{
1957 if (sectors)
1958 return sectors;
1959
1960 return mddev->dev_sectors;
1961}
1962
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963static int run(mddev_t *mddev)
1964{
1965 conf_t *conf;
1966 int i, j, disk_idx;
1967 mirror_info_t *disk;
1968 mdk_rdev_t *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969
1970 if (mddev->level != 1) {
1971 printk("raid1: %s: raid level not set to mirroring (%d)\n",
1972 mdname(mddev), mddev->level);
1973 goto out;
1974 }
NeilBrownf6705572006-03-27 01:18:11 -08001975 if (mddev->reshape_position != MaxSector) {
1976 printk("raid1: %s: reshape_position set but not supported\n",
1977 mdname(mddev));
1978 goto out;
1979 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 /*
1981 * copy the already verified devices into our private RAID1
1982 * bookkeeping area. [whatever we allocate in run(),
1983 * should be freed in stop()]
1984 */
NeilBrown9ffae0c2006-01-06 00:20:32 -08001985 conf = kzalloc(sizeof(conf_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 mddev->private = conf;
1987 if (!conf)
1988 goto out_no_mem;
1989
NeilBrown9ffae0c2006-01-06 00:20:32 -08001990 conf->mirrors = kzalloc(sizeof(struct mirror_info)*mddev->raid_disks,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 GFP_KERNEL);
1992 if (!conf->mirrors)
1993 goto out_no_mem;
1994
NeilBrownddaf22a2006-01-06 00:20:19 -08001995 conf->tmppage = alloc_page(GFP_KERNEL);
1996 if (!conf->tmppage)
1997 goto out_no_mem;
1998
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 conf->poolinfo = kmalloc(sizeof(*conf->poolinfo), GFP_KERNEL);
2000 if (!conf->poolinfo)
2001 goto out_no_mem;
NeilBrowned9bfdf2009-10-16 15:55:44 +11002002 conf->poolinfo->mddev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 conf->poolinfo->raid_disks = mddev->raid_disks;
2004 conf->r1bio_pool = mempool_create(NR_RAID1_BIOS, r1bio_pool_alloc,
2005 r1bio_pool_free,
2006 conf->poolinfo);
2007 if (!conf->r1bio_pool)
2008 goto out_no_mem;
NeilBrowned9bfdf2009-10-16 15:55:44 +11002009 conf->poolinfo->mddev = mddev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
Neil Browne7e72bf2008-05-14 16:05:54 -07002011 spin_lock_init(&conf->device_lock);
2012 mddev->queue->queue_lock = &conf->device_lock;
2013
Cheng Renquan159ec1f2009-01-09 08:31:08 +11002014 list_for_each_entry(rdev, &mddev->disks, same_set) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 disk_idx = rdev->raid_disk;
2016 if (disk_idx >= mddev->raid_disks
2017 || disk_idx < 0)
2018 continue;
2019 disk = conf->mirrors + disk_idx;
2020
2021 disk->rdev = rdev;
Martin K. Petersen8f6c2e42009-07-01 11:13:45 +10002022 disk_stack_limits(mddev->gendisk, rdev->bdev,
2023 rdev->data_offset << 9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 /* as we don't honour merge_bvec_fn, we must never risk
2025 * violating it, so limit ->max_sector to one PAGE, as
2026 * a one page request is never in violation.
2027 */
2028 if (rdev->bdev->bd_disk->queue->merge_bvec_fn &&
Martin K. Petersenae03bf62009-05-22 17:17:50 -04002029 queue_max_sectors(mddev->queue) > (PAGE_SIZE>>9))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 blk_queue_max_sectors(mddev->queue, PAGE_SIZE>>9);
2031
2032 disk->head_position = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 }
2034 conf->raid_disks = mddev->raid_disks;
2035 conf->mddev = mddev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 INIT_LIST_HEAD(&conf->retry_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037
2038 spin_lock_init(&conf->resync_lock);
NeilBrown17999be2006-01-06 00:20:12 -08002039 init_waitqueue_head(&conf->wait_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
NeilBrown191ea9b2005-06-21 17:17:23 -07002041 bio_list_init(&conf->pending_bio_list);
2042 bio_list_init(&conf->flushing_bio_list);
2043
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
2045 mddev->degraded = 0;
2046 for (i = 0; i < conf->raid_disks; i++) {
2047
2048 disk = conf->mirrors + i;
2049
NeilBrown5fd6c1d2006-06-26 00:27:40 -07002050 if (!disk->rdev ||
2051 !test_bit(In_sync, &disk->rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 disk->head_position = 0;
2053 mddev->degraded++;
NeilBrown918f0232007-08-22 14:01:52 -07002054 if (disk->rdev)
2055 conf->fullsync = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 }
2057 }
NeilBrown11ce99e2006-10-03 01:15:52 -07002058 if (mddev->degraded == conf->raid_disks) {
2059 printk(KERN_ERR "raid1: no operational mirrors for %s\n",
2060 mdname(mddev));
2061 goto out_free_conf;
2062 }
2063 if (conf->raid_disks - mddev->degraded == 1)
2064 mddev->recovery_cp = MaxSector;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
2066 /*
2067 * find the first working one and use it as a starting point
2068 * to read balancing.
2069 */
2070 for (j = 0; j < conf->raid_disks &&
2071 (!conf->mirrors[j].rdev ||
NeilBrownb2d444d2005-11-08 21:39:31 -08002072 !test_bit(In_sync, &conf->mirrors[j].rdev->flags)) ; j++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 /* nothing */;
2074 conf->last_used = j;
2075
2076
NeilBrown0da3c612009-09-23 18:09:45 +10002077 mddev->thread = md_register_thread(raid1d, mddev, NULL);
NeilBrown191ea9b2005-06-21 17:17:23 -07002078 if (!mddev->thread) {
2079 printk(KERN_ERR
2080 "raid1: couldn't allocate thread for %s\n",
2081 mdname(mddev));
2082 goto out_free_conf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 }
NeilBrown191ea9b2005-06-21 17:17:23 -07002084
Andre Noll8c6ac862009-06-18 08:48:06 +10002085 if (mddev->recovery_cp != MaxSector)
2086 printk(KERN_NOTICE "raid1: %s is not clean"
2087 " -- starting background reconstruction\n",
2088 mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 printk(KERN_INFO
2090 "raid1: raid set %s active with %d out of %d mirrors\n",
2091 mdname(mddev), mddev->raid_disks - mddev->degraded,
2092 mddev->raid_disks);
2093 /*
2094 * Ok, everything is just fine now
2095 */
Dan Williams1f403622009-03-31 14:59:03 +11002096 md_set_array_sectors(mddev, raid1_size(mddev, 0, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
NeilBrown7a5febe2005-05-16 21:53:16 -07002098 mddev->queue->unplug_fn = raid1_unplug;
NeilBrown0d129222006-10-03 01:15:54 -07002099 mddev->queue->backing_dev_info.congested_fn = raid1_congested;
2100 mddev->queue->backing_dev_info.congested_data = mddev;
Andre Nollac5e7112009-08-03 10:59:47 +10002101 md_integrity_register(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 return 0;
2103
2104out_no_mem:
2105 printk(KERN_ERR "raid1: couldn't allocate memory for %s\n",
2106 mdname(mddev));
2107
2108out_free_conf:
2109 if (conf) {
2110 if (conf->r1bio_pool)
2111 mempool_destroy(conf->r1bio_pool);
Jesper Juhl990a8ba2005-06-21 17:17:30 -07002112 kfree(conf->mirrors);
NeilBrown1345b1d2006-01-06 00:20:40 -08002113 safe_put_page(conf->tmppage);
Jesper Juhl990a8ba2005-06-21 17:17:30 -07002114 kfree(conf->poolinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 kfree(conf);
2116 mddev->private = NULL;
2117 }
2118out:
2119 return -EIO;
2120}
2121
2122static int stop(mddev_t *mddev)
2123{
NeilBrown070ec552009-06-16 16:54:21 +10002124 conf_t *conf = mddev->private;
NeilBrown4b6d2872005-09-09 16:23:47 -07002125 struct bitmap *bitmap = mddev->bitmap;
2126 int behind_wait = 0;
2127
2128 /* wait for behind writes to complete */
2129 while (bitmap && atomic_read(&bitmap->behind_writes) > 0) {
2130 behind_wait++;
2131 printk(KERN_INFO "raid1: behind writes in progress on device %s, waiting to stop (%d)\n", mdname(mddev), behind_wait);
2132 set_current_state(TASK_UNINTERRUPTIBLE);
2133 schedule_timeout(HZ); /* wait a second */
2134 /* need to kick something here to make sure I/O goes? */
2135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
NeilBrown409c57f2009-03-31 14:39:39 +11002137 raise_barrier(conf);
2138 lower_barrier(conf);
2139
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 md_unregister_thread(mddev->thread);
2141 mddev->thread = NULL;
2142 blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/
2143 if (conf->r1bio_pool)
2144 mempool_destroy(conf->r1bio_pool);
Jesper Juhl990a8ba2005-06-21 17:17:30 -07002145 kfree(conf->mirrors);
2146 kfree(conf->poolinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 kfree(conf);
2148 mddev->private = NULL;
2149 return 0;
2150}
2151
2152static int raid1_resize(mddev_t *mddev, sector_t sectors)
2153{
2154 /* no resync is happening, and there is enough space
2155 * on all devices, so we can resize.
2156 * We need to make sure resync covers any new space.
2157 * If the array is shrinking we should possibly wait until
2158 * any io in the removed space completes, but it hardly seems
2159 * worth it.
2160 */
Dan Williams1f403622009-03-31 14:59:03 +11002161 md_set_array_sectors(mddev, raid1_size(mddev, sectors, 0));
Dan Williamsb522adc2009-03-31 15:00:31 +11002162 if (mddev->array_sectors > raid1_size(mddev, sectors, 0))
2163 return -EINVAL;
Andre Nollf233ea52008-07-21 17:05:22 +10002164 set_capacity(mddev->gendisk, mddev->array_sectors);
Linus Torvalds44ce6292007-05-09 18:51:36 -07002165 mddev->changed = 1;
NeilBrown449aad32009-08-03 10:59:58 +10002166 revalidate_disk(mddev->gendisk);
Dan Williamsb522adc2009-03-31 15:00:31 +11002167 if (sectors > mddev->dev_sectors &&
Andre Nollf233ea52008-07-21 17:05:22 +10002168 mddev->recovery_cp == MaxSector) {
Andre Noll58c0fed2009-03-31 14:33:13 +11002169 mddev->recovery_cp = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
2171 }
Dan Williamsb522adc2009-03-31 15:00:31 +11002172 mddev->dev_sectors = sectors;
NeilBrown4b5c7ae2005-07-27 11:43:28 -07002173 mddev->resync_max_sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 return 0;
2175}
2176
NeilBrown63c70c42006-03-27 01:18:13 -08002177static int raid1_reshape(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178{
2179 /* We need to:
2180 * 1/ resize the r1bio_pool
2181 * 2/ resize conf->mirrors
2182 *
2183 * We allocate a new r1bio_pool if we can.
2184 * Then raise a device barrier and wait until all IO stops.
2185 * Then resize conf->mirrors and swap in the new r1bio pool.
NeilBrown6ea9c072005-06-21 17:17:09 -07002186 *
2187 * At the same time, we "pack" the devices so that all the missing
2188 * devices have the higher raid_disk numbers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 */
2190 mempool_t *newpool, *oldpool;
2191 struct pool_info *newpoolinfo;
2192 mirror_info_t *newmirrors;
NeilBrown070ec552009-06-16 16:54:21 +10002193 conf_t *conf = mddev->private;
NeilBrown63c70c42006-03-27 01:18:13 -08002194 int cnt, raid_disks;
NeilBrownc04be0a2006-10-03 01:15:53 -07002195 unsigned long flags;
Dan Williamsb5470dc2008-06-27 21:44:04 -07002196 int d, d2, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197
NeilBrown63c70c42006-03-27 01:18:13 -08002198 /* Cannot change chunk_size, layout, or level */
Andre Noll664e7c42009-06-18 08:45:27 +10002199 if (mddev->chunk_sectors != mddev->new_chunk_sectors ||
NeilBrown63c70c42006-03-27 01:18:13 -08002200 mddev->layout != mddev->new_layout ||
2201 mddev->level != mddev->new_level) {
Andre Noll664e7c42009-06-18 08:45:27 +10002202 mddev->new_chunk_sectors = mddev->chunk_sectors;
NeilBrown63c70c42006-03-27 01:18:13 -08002203 mddev->new_layout = mddev->layout;
2204 mddev->new_level = mddev->level;
2205 return -EINVAL;
2206 }
2207
Dan Williamsb5470dc2008-06-27 21:44:04 -07002208 err = md_allow_write(mddev);
2209 if (err)
2210 return err;
NeilBrown2a2275d2007-01-26 00:57:11 -08002211
NeilBrown63c70c42006-03-27 01:18:13 -08002212 raid_disks = mddev->raid_disks + mddev->delta_disks;
2213
NeilBrown6ea9c072005-06-21 17:17:09 -07002214 if (raid_disks < conf->raid_disks) {
2215 cnt=0;
2216 for (d= 0; d < conf->raid_disks; d++)
2217 if (conf->mirrors[d].rdev)
2218 cnt++;
2219 if (cnt > raid_disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 return -EBUSY;
NeilBrown6ea9c072005-06-21 17:17:09 -07002221 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222
2223 newpoolinfo = kmalloc(sizeof(*newpoolinfo), GFP_KERNEL);
2224 if (!newpoolinfo)
2225 return -ENOMEM;
2226 newpoolinfo->mddev = mddev;
2227 newpoolinfo->raid_disks = raid_disks;
2228
2229 newpool = mempool_create(NR_RAID1_BIOS, r1bio_pool_alloc,
2230 r1bio_pool_free, newpoolinfo);
2231 if (!newpool) {
2232 kfree(newpoolinfo);
2233 return -ENOMEM;
2234 }
NeilBrown9ffae0c2006-01-06 00:20:32 -08002235 newmirrors = kzalloc(sizeof(struct mirror_info) * raid_disks, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 if (!newmirrors) {
2237 kfree(newpoolinfo);
2238 mempool_destroy(newpool);
2239 return -ENOMEM;
2240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241
NeilBrown17999be2006-01-06 00:20:12 -08002242 raise_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
2244 /* ok, everything is stopped */
2245 oldpool = conf->r1bio_pool;
2246 conf->r1bio_pool = newpool;
NeilBrown6ea9c072005-06-21 17:17:09 -07002247
NeilBrowna88aa782007-08-22 14:01:53 -07002248 for (d = d2 = 0; d < conf->raid_disks; d++) {
2249 mdk_rdev_t *rdev = conf->mirrors[d].rdev;
2250 if (rdev && rdev->raid_disk != d2) {
2251 char nm[20];
2252 sprintf(nm, "rd%d", rdev->raid_disk);
2253 sysfs_remove_link(&mddev->kobj, nm);
2254 rdev->raid_disk = d2;
2255 sprintf(nm, "rd%d", rdev->raid_disk);
2256 sysfs_remove_link(&mddev->kobj, nm);
2257 if (sysfs_create_link(&mddev->kobj,
2258 &rdev->kobj, nm))
2259 printk(KERN_WARNING
2260 "md/raid1: cannot register "
2261 "%s for %s\n",
2262 nm, mdname(mddev));
NeilBrown6ea9c072005-06-21 17:17:09 -07002263 }
NeilBrowna88aa782007-08-22 14:01:53 -07002264 if (rdev)
2265 newmirrors[d2++].rdev = rdev;
2266 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 kfree(conf->mirrors);
2268 conf->mirrors = newmirrors;
2269 kfree(conf->poolinfo);
2270 conf->poolinfo = newpoolinfo;
2271
NeilBrownc04be0a2006-10-03 01:15:53 -07002272 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 mddev->degraded += (raid_disks - conf->raid_disks);
NeilBrownc04be0a2006-10-03 01:15:53 -07002274 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 conf->raid_disks = mddev->raid_disks = raid_disks;
NeilBrown63c70c42006-03-27 01:18:13 -08002276 mddev->delta_disks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
NeilBrown6ea9c072005-06-21 17:17:09 -07002278 conf->last_used = 0; /* just make sure it is in-range */
NeilBrown17999be2006-01-06 00:20:12 -08002279 lower_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280
2281 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
2282 md_wakeup_thread(mddev->thread);
2283
2284 mempool_destroy(oldpool);
2285 return 0;
2286}
2287
NeilBrown500af872005-09-09 16:23:58 -07002288static void raid1_quiesce(mddev_t *mddev, int state)
NeilBrown36fa3062005-09-09 16:23:45 -07002289{
NeilBrown070ec552009-06-16 16:54:21 +10002290 conf_t *conf = mddev->private;
NeilBrown36fa3062005-09-09 16:23:45 -07002291
2292 switch(state) {
NeilBrown6eef4b22009-12-14 12:49:51 +11002293 case 2: /* wake for suspend */
2294 wake_up(&conf->wait_barrier);
2295 break;
NeilBrown9e6603d2005-09-09 16:23:48 -07002296 case 1:
NeilBrown17999be2006-01-06 00:20:12 -08002297 raise_barrier(conf);
NeilBrown36fa3062005-09-09 16:23:45 -07002298 break;
NeilBrown9e6603d2005-09-09 16:23:48 -07002299 case 0:
NeilBrown17999be2006-01-06 00:20:12 -08002300 lower_barrier(conf);
NeilBrown36fa3062005-09-09 16:23:45 -07002301 break;
2302 }
NeilBrown36fa3062005-09-09 16:23:45 -07002303}
2304
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305
NeilBrown2604b702006-01-06 00:20:36 -08002306static struct mdk_personality raid1_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307{
2308 .name = "raid1",
NeilBrown2604b702006-01-06 00:20:36 -08002309 .level = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 .owner = THIS_MODULE,
2311 .make_request = make_request,
2312 .run = run,
2313 .stop = stop,
2314 .status = status,
2315 .error_handler = error,
2316 .hot_add_disk = raid1_add_disk,
2317 .hot_remove_disk= raid1_remove_disk,
2318 .spare_active = raid1_spare_active,
2319 .sync_request = sync_request,
2320 .resize = raid1_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07002321 .size = raid1_size,
NeilBrown63c70c42006-03-27 01:18:13 -08002322 .check_reshape = raid1_reshape,
NeilBrown36fa3062005-09-09 16:23:45 -07002323 .quiesce = raid1_quiesce,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324};
2325
2326static int __init raid_init(void)
2327{
NeilBrown2604b702006-01-06 00:20:36 -08002328 return register_md_personality(&raid1_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329}
2330
2331static void raid_exit(void)
2332{
NeilBrown2604b702006-01-06 00:20:36 -08002333 unregister_md_personality(&raid1_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334}
2335
2336module_init(raid_init);
2337module_exit(raid_exit);
2338MODULE_LICENSE("GPL");
2339MODULE_ALIAS("md-personality-3"); /* RAID1 */
NeilBrownd9d166c2006-01-06 00:20:51 -08002340MODULE_ALIAS("md-raid1");
NeilBrown2604b702006-01-06 00:20:36 -08002341MODULE_ALIAS("md-level-1");