blob: a9b9972ff703ce9993df50b52939482cce535349 [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);
H Hartley Sweeten7b928132010-03-08 16:02:40 +1100265 r1bio_t *r1_bio = bio->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 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())
NeilBrown9dd1e2f2010-05-03 14:30:35 +1000299 printk(KERN_ERR "md/raid1:%s: %s: rescheduling sector %llu\n",
300 mdname(conf->mddev),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 bdevname(conf->mirrors[mirror].rdev->bdev,b), (unsigned long long)r1_bio->sector);
302 reschedule_retry(r1_bio);
303 }
304
305 rdev_dec_pending(conf->mirrors[mirror].rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
307
NeilBrown6712ecf2007-09-27 12:47:43 +0200308static void raid1_end_write_request(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
310 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
H Hartley Sweeten7b928132010-03-08 16:02:40 +1100311 r1bio_t *r1_bio = bio->bi_private;
NeilBrowna9701a32005-11-08 21:39:34 -0800312 int mirror, behind = test_bit(R1BIO_BehindIO, &r1_bio->state);
NeilBrown070ec552009-06-16 16:54:21 +1000313 conf_t *conf = r1_bio->mddev->private;
NeilBrown04b857f2006-03-09 17:33:46 -0800314 struct bio *to_put = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317 for (mirror = 0; mirror < conf->raid_disks; mirror++)
318 if (r1_bio->bios[mirror] == bio)
319 break;
320
NeilBrownbea27712006-05-01 12:15:46 -0700321 if (error == -EOPNOTSUPP && test_bit(R1BIO_Barrier, &r1_bio->state)) {
NeilBrowna9701a32005-11-08 21:39:34 -0800322 set_bit(BarriersNotsupp, &conf->mirrors[mirror].rdev->flags);
323 set_bit(R1BIO_BarrierRetry, &r1_bio->state);
324 r1_bio->mddev->barriers_work = 0;
NeilBrown5e7dd2a2006-05-01 12:15:47 -0700325 /* Don't rdev_dec_pending in this branch - keep it for the retry */
NeilBrowna9701a32005-11-08 21:39:34 -0800326 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 /*
NeilBrowna9701a32005-11-08 21:39:34 -0800328 * this branch is our 'one mirror IO has finished' event handler:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 */
NeilBrowna9701a32005-11-08 21:39:34 -0800330 r1_bio->bios[mirror] = NULL;
NeilBrown04b857f2006-03-09 17:33:46 -0800331 to_put = bio;
NeilBrowna9701a32005-11-08 21:39:34 -0800332 if (!uptodate) {
333 md_error(r1_bio->mddev, conf->mirrors[mirror].rdev);
334 /* an I/O failed, we can't clear the bitmap */
335 set_bit(R1BIO_Degraded, &r1_bio->state);
336 } else
337 /*
338 * Set R1BIO_Uptodate in our master bio, so that
339 * we will return a good error code for to the higher
340 * levels even if IO on some other mirrored buffer fails.
341 *
342 * The 'master' represents the composite IO operation to
343 * user-side. So if something waits for IO, then it will
344 * wait for the 'master' bio.
345 */
346 set_bit(R1BIO_Uptodate, &r1_bio->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
NeilBrowna9701a32005-11-08 21:39:34 -0800348 update_head_pos(mirror, r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
NeilBrowna9701a32005-11-08 21:39:34 -0800350 if (behind) {
351 if (test_bit(WriteMostly, &conf->mirrors[mirror].rdev->flags))
352 atomic_dec(&r1_bio->behind_remaining);
NeilBrown4b6d2872005-09-09 16:23:47 -0700353
NeilBrowna9701a32005-11-08 21:39:34 -0800354 /* In behind mode, we ACK the master bio once the I/O has safely
355 * reached all non-writemostly disks. Setting the Returned bit
356 * ensures that this gets done only once -- we don't ever want to
357 * return -EIO here, instead we'll wait */
NeilBrown4b6d2872005-09-09 16:23:47 -0700358
NeilBrowna9701a32005-11-08 21:39:34 -0800359 if (atomic_read(&r1_bio->behind_remaining) >= (atomic_read(&r1_bio->remaining)-1) &&
360 test_bit(R1BIO_Uptodate, &r1_bio->state)) {
361 /* Maybe we can return now */
362 if (!test_and_set_bit(R1BIO_Returned, &r1_bio->state)) {
363 struct bio *mbio = r1_bio->master_bio;
364 PRINTK(KERN_DEBUG "raid1: behind end write sectors %llu-%llu\n",
365 (unsigned long long) mbio->bi_sector,
366 (unsigned long long) mbio->bi_sector +
367 (mbio->bi_size >> 9) - 1);
NeilBrown6712ecf2007-09-27 12:47:43 +0200368 bio_endio(mbio, 0);
NeilBrowna9701a32005-11-08 21:39:34 -0800369 }
NeilBrown4b6d2872005-09-09 16:23:47 -0700370 }
371 }
NeilBrown5e7dd2a2006-05-01 12:15:47 -0700372 rdev_dec_pending(conf->mirrors[mirror].rdev, conf->mddev);
NeilBrown4b6d2872005-09-09 16:23:47 -0700373 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 /*
375 *
376 * Let's see if all mirrored write operations have finished
377 * already.
378 */
379 if (atomic_dec_and_test(&r1_bio->remaining)) {
NeilBrownc70810b2006-06-26 00:27:35 -0700380 if (test_bit(R1BIO_BarrierRetry, &r1_bio->state))
NeilBrowna9701a32005-11-08 21:39:34 -0800381 reschedule_retry(r1_bio);
NeilBrownc70810b2006-06-26 00:27:35 -0700382 else {
383 /* it really is the end of this request */
384 if (test_bit(R1BIO_BehindIO, &r1_bio->state)) {
385 /* free extra copy of the data pages */
386 int i = bio->bi_vcnt;
387 while (i--)
388 safe_put_page(bio->bi_io_vec[i].bv_page);
389 }
390 /* clear the bitmap if all writes complete successfully */
391 bitmap_endwrite(r1_bio->mddev->bitmap, r1_bio->sector,
392 r1_bio->sectors,
393 !test_bit(R1BIO_Degraded, &r1_bio->state),
394 behind);
395 md_write_end(r1_bio->mddev);
396 raid_end_bio_io(r1_bio);
NeilBrowna9701a32005-11-08 21:39:34 -0800397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 }
NeilBrownc70810b2006-06-26 00:27:35 -0700399
NeilBrown04b857f2006-03-09 17:33:46 -0800400 if (to_put)
401 bio_put(to_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
403
404
405/*
406 * This routine returns the disk from which the requested read should
407 * be done. There is a per-array 'next expected sequential IO' sector
408 * number - if this matches on the next IO then we use the last disk.
409 * There is also a per-disk 'last know head position' sector that is
410 * maintained from IRQ contexts, both the normal and the resync IO
411 * completion handlers update this position correctly. If there is no
412 * perfect sequential match then we pick the disk whose head is closest.
413 *
414 * If there are 2 mirrors in the same 2 devices, performance degrades
415 * because position is mirror, not device based.
416 *
417 * The rdev for the device selected will have nr_pending incremented.
418 */
419static int read_balance(conf_t *conf, r1bio_t *r1_bio)
420{
NeilBrownaf3a2cd2010-05-08 08:20:17 +1000421 const sector_t this_sector = r1_bio->sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 int new_disk = conf->last_used, disk = new_disk;
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700423 int wonly_disk = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 const int sectors = r1_bio->sectors;
425 sector_t new_distance, current_distance;
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700426 mdk_rdev_t *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 rcu_read_lock();
429 /*
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700430 * Check if we can balance. We can balance on the whole
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 * device if no resync is going on, or below the resync window.
432 * We take the first readable disk when above the resync window.
433 */
434 retry:
435 if (conf->mddev->recovery_cp < MaxSector &&
436 (this_sector + sectors >= conf->next_resync)) {
NeilBrownaf3a2cd2010-05-08 08:20:17 +1000437 /* Choose the first operational device, for consistancy */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 new_disk = 0;
439
Suzanne Woodd6065f72005-11-08 21:39:27 -0800440 for (rdev = rcu_dereference(conf->mirrors[new_disk].rdev);
NeilBrowncf30a472006-01-06 00:20:23 -0800441 r1_bio->bios[new_disk] == IO_BLOCKED ||
NeilBrownb2d444d2005-11-08 21:39:31 -0800442 !rdev || !test_bit(In_sync, &rdev->flags)
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700443 || test_bit(WriteMostly, &rdev->flags);
Suzanne Woodd6065f72005-11-08 21:39:27 -0800444 rdev = rcu_dereference(conf->mirrors[++new_disk].rdev)) {
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700445
NeilBrowncf30a472006-01-06 00:20:23 -0800446 if (rdev && test_bit(In_sync, &rdev->flags) &&
447 r1_bio->bios[new_disk] != IO_BLOCKED)
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700448 wonly_disk = new_disk;
449
450 if (new_disk == conf->raid_disks - 1) {
451 new_disk = wonly_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 break;
453 }
454 }
455 goto rb_out;
456 }
457
458
459 /* make sure the disk is operational */
Suzanne Woodd6065f72005-11-08 21:39:27 -0800460 for (rdev = rcu_dereference(conf->mirrors[new_disk].rdev);
NeilBrowncf30a472006-01-06 00:20:23 -0800461 r1_bio->bios[new_disk] == IO_BLOCKED ||
NeilBrownb2d444d2005-11-08 21:39:31 -0800462 !rdev || !test_bit(In_sync, &rdev->flags) ||
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700463 test_bit(WriteMostly, &rdev->flags);
Suzanne Woodd6065f72005-11-08 21:39:27 -0800464 rdev = rcu_dereference(conf->mirrors[new_disk].rdev)) {
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700465
NeilBrowncf30a472006-01-06 00:20:23 -0800466 if (rdev && test_bit(In_sync, &rdev->flags) &&
467 r1_bio->bios[new_disk] != IO_BLOCKED)
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700468 wonly_disk = new_disk;
469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 if (new_disk <= 0)
471 new_disk = conf->raid_disks;
472 new_disk--;
473 if (new_disk == disk) {
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700474 new_disk = wonly_disk;
475 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 }
477 }
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700478
479 if (new_disk < 0)
480 goto rb_out;
481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 disk = new_disk;
483 /* now disk == new_disk == starting point for search */
484
485 /*
486 * Don't change to another disk for sequential reads:
487 */
488 if (conf->next_seq_sect == this_sector)
489 goto rb_out;
490 if (this_sector == conf->mirrors[new_disk].head_position)
491 goto rb_out;
492
493 current_distance = abs(this_sector - conf->mirrors[disk].head_position);
494
495 /* Find the disk whose head is closest */
496
497 do {
498 if (disk <= 0)
499 disk = conf->raid_disks;
500 disk--;
501
Suzanne Woodd6065f72005-11-08 21:39:27 -0800502 rdev = rcu_dereference(conf->mirrors[disk].rdev);
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700503
NeilBrowncf30a472006-01-06 00:20:23 -0800504 if (!rdev || r1_bio->bios[disk] == IO_BLOCKED ||
NeilBrownb2d444d2005-11-08 21:39:31 -0800505 !test_bit(In_sync, &rdev->flags) ||
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700506 test_bit(WriteMostly, &rdev->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 continue;
508
509 if (!atomic_read(&rdev->nr_pending)) {
510 new_disk = disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 break;
512 }
513 new_distance = abs(this_sector - conf->mirrors[disk].head_position);
514 if (new_distance < current_distance) {
515 current_distance = new_distance;
516 new_disk = disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 }
518 } while (disk != conf->last_used);
519
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700520 rb_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
522
523 if (new_disk >= 0) {
Suzanne Woodd6065f72005-11-08 21:39:27 -0800524 rdev = rcu_dereference(conf->mirrors[new_disk].rdev);
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700525 if (!rdev)
526 goto retry;
527 atomic_inc(&rdev->nr_pending);
NeilBrownb2d444d2005-11-08 21:39:31 -0800528 if (!test_bit(In_sync, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 /* cannot risk returning a device that failed
530 * before we inc'ed nr_pending
531 */
NeilBrown03c902e2006-01-06 00:20:46 -0800532 rdev_dec_pending(rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 goto retry;
534 }
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700535 conf->next_seq_sect = this_sector + sectors;
536 conf->last_used = new_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 }
538 rcu_read_unlock();
539
540 return new_disk;
541}
542
543static void unplug_slaves(mddev_t *mddev)
544{
NeilBrown070ec552009-06-16 16:54:21 +1000545 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 int i;
547
548 rcu_read_lock();
549 for (i=0; i<mddev->raid_disks; i++) {
Suzanne Woodd6065f72005-11-08 21:39:27 -0800550 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
NeilBrownb2d444d2005-11-08 21:39:31 -0800551 if (rdev && !test_bit(Faulty, &rdev->flags) && atomic_read(&rdev->nr_pending)) {
Jens Axboe165125e2007-07-24 09:28:11 +0200552 struct request_queue *r_queue = bdev_get_queue(rdev->bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
554 atomic_inc(&rdev->nr_pending);
555 rcu_read_unlock();
556
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500557 blk_unplug(r_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559 rdev_dec_pending(rdev, mddev);
560 rcu_read_lock();
561 }
562 }
563 rcu_read_unlock();
564}
565
Jens Axboe165125e2007-07-24 09:28:11 +0200566static void raid1_unplug(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
NeilBrown191ea9b2005-06-21 17:17:23 -0700568 mddev_t *mddev = q->queuedata;
569
570 unplug_slaves(mddev);
571 md_wakeup_thread(mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572}
573
NeilBrown0d129222006-10-03 01:15:54 -0700574static int raid1_congested(void *data, int bits)
575{
576 mddev_t *mddev = data;
NeilBrown070ec552009-06-16 16:54:21 +1000577 conf_t *conf = mddev->private;
NeilBrown0d129222006-10-03 01:15:54 -0700578 int i, ret = 0;
579
NeilBrown3fa841d2009-09-23 18:10:29 +1000580 if (mddev_congested(mddev, bits))
581 return 1;
582
NeilBrown0d129222006-10-03 01:15:54 -0700583 rcu_read_lock();
584 for (i = 0; i < mddev->raid_disks; i++) {
585 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
586 if (rdev && !test_bit(Faulty, &rdev->flags)) {
Jens Axboe165125e2007-07-24 09:28:11 +0200587 struct request_queue *q = bdev_get_queue(rdev->bdev);
NeilBrown0d129222006-10-03 01:15:54 -0700588
589 /* Note the '|| 1' - when read_balance prefers
590 * non-congested targets, it can be removed
591 */
Alexander Beregalov91a9e992009-04-07 01:35:56 +0400592 if ((bits & (1<<BDI_async_congested)) || 1)
NeilBrown0d129222006-10-03 01:15:54 -0700593 ret |= bdi_congested(&q->backing_dev_info, bits);
594 else
595 ret &= bdi_congested(&q->backing_dev_info, bits);
596 }
597 }
598 rcu_read_unlock();
599 return ret;
600}
601
602
NeilBrowna35e63e2008-03-04 14:29:29 -0800603static int flush_pending_writes(conf_t *conf)
604{
605 /* Any writes that have been queued but are awaiting
606 * bitmap updates get flushed here.
607 * We return 1 if any requests were actually submitted.
608 */
609 int rv = 0;
610
611 spin_lock_irq(&conf->device_lock);
612
613 if (conf->pending_bio_list.head) {
614 struct bio *bio;
615 bio = bio_list_get(&conf->pending_bio_list);
616 blk_remove_plug(conf->mddev->queue);
617 spin_unlock_irq(&conf->device_lock);
618 /* flush any pending bitmap writes to
619 * disk before proceeding w/ I/O */
620 bitmap_unplug(conf->mddev->bitmap);
621
622 while (bio) { /* submit pending writes */
623 struct bio *next = bio->bi_next;
624 bio->bi_next = NULL;
625 generic_make_request(bio);
626 bio = next;
627 }
628 rv = 1;
629 } else
630 spin_unlock_irq(&conf->device_lock);
631 return rv;
632}
633
NeilBrown17999be2006-01-06 00:20:12 -0800634/* Barriers....
635 * Sometimes we need to suspend IO while we do something else,
636 * either some resync/recovery, or reconfigure the array.
637 * To do this we raise a 'barrier'.
638 * The 'barrier' is a counter that can be raised multiple times
639 * to count how many activities are happening which preclude
640 * normal IO.
641 * We can only raise the barrier if there is no pending IO.
642 * i.e. if nr_pending == 0.
643 * We choose only to raise the barrier if no-one is waiting for the
644 * barrier to go down. This means that as soon as an IO request
645 * is ready, no other operations which require a barrier will start
646 * until the IO request has had a chance.
647 *
648 * So: regular IO calls 'wait_barrier'. When that returns there
649 * is no backgroup IO happening, It must arrange to call
650 * allow_barrier when it has finished its IO.
651 * backgroup IO calls must call raise_barrier. Once that returns
652 * there is no normal IO happeing. It must arrange to call
653 * lower_barrier when the particular background IO completes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 */
655#define RESYNC_DEPTH 32
656
NeilBrown17999be2006-01-06 00:20:12 -0800657static void raise_barrier(conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658{
659 spin_lock_irq(&conf->resync_lock);
NeilBrown17999be2006-01-06 00:20:12 -0800660
661 /* Wait until no block IO is waiting */
662 wait_event_lock_irq(conf->wait_barrier, !conf->nr_waiting,
663 conf->resync_lock,
664 raid1_unplug(conf->mddev->queue));
665
666 /* block any new IO from starting */
667 conf->barrier++;
668
669 /* No wait for all pending IO to complete */
670 wait_event_lock_irq(conf->wait_barrier,
671 !conf->nr_pending && conf->barrier < RESYNC_DEPTH,
672 conf->resync_lock,
673 raid1_unplug(conf->mddev->queue));
674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 spin_unlock_irq(&conf->resync_lock);
676}
677
NeilBrown17999be2006-01-06 00:20:12 -0800678static void lower_barrier(conf_t *conf)
679{
680 unsigned long flags;
NeilBrown709ae482009-12-14 12:49:51 +1100681 BUG_ON(conf->barrier <= 0);
NeilBrown17999be2006-01-06 00:20:12 -0800682 spin_lock_irqsave(&conf->resync_lock, flags);
683 conf->barrier--;
684 spin_unlock_irqrestore(&conf->resync_lock, flags);
685 wake_up(&conf->wait_barrier);
686}
687
688static void wait_barrier(conf_t *conf)
689{
690 spin_lock_irq(&conf->resync_lock);
691 if (conf->barrier) {
692 conf->nr_waiting++;
693 wait_event_lock_irq(conf->wait_barrier, !conf->barrier,
694 conf->resync_lock,
695 raid1_unplug(conf->mddev->queue));
696 conf->nr_waiting--;
697 }
698 conf->nr_pending++;
699 spin_unlock_irq(&conf->resync_lock);
700}
701
702static void allow_barrier(conf_t *conf)
703{
704 unsigned long flags;
705 spin_lock_irqsave(&conf->resync_lock, flags);
706 conf->nr_pending--;
707 spin_unlock_irqrestore(&conf->resync_lock, flags);
708 wake_up(&conf->wait_barrier);
709}
710
NeilBrownddaf22a2006-01-06 00:20:19 -0800711static void freeze_array(conf_t *conf)
712{
713 /* stop syncio and normal IO and wait for everything to
714 * go quite.
715 * We increment barrier and nr_waiting, and then
NeilBrown1c830532008-03-04 14:29:35 -0800716 * wait until nr_pending match nr_queued+1
717 * This is called in the context of one normal IO request
718 * that has failed. Thus any sync request that might be pending
719 * will be blocked by nr_pending, and we need to wait for
720 * pending IO requests to complete or be queued for re-try.
721 * Thus the number queued (nr_queued) plus this request (1)
722 * must match the number of pending IOs (nr_pending) before
723 * we continue.
NeilBrownddaf22a2006-01-06 00:20:19 -0800724 */
725 spin_lock_irq(&conf->resync_lock);
726 conf->barrier++;
727 conf->nr_waiting++;
728 wait_event_lock_irq(conf->wait_barrier,
NeilBrown1c830532008-03-04 14:29:35 -0800729 conf->nr_pending == conf->nr_queued+1,
NeilBrownddaf22a2006-01-06 00:20:19 -0800730 conf->resync_lock,
NeilBrowna35e63e2008-03-04 14:29:29 -0800731 ({ flush_pending_writes(conf);
732 raid1_unplug(conf->mddev->queue); }));
NeilBrownddaf22a2006-01-06 00:20:19 -0800733 spin_unlock_irq(&conf->resync_lock);
734}
735static void unfreeze_array(conf_t *conf)
736{
737 /* reverse the effect of the freeze */
738 spin_lock_irq(&conf->resync_lock);
739 conf->barrier--;
740 conf->nr_waiting--;
741 wake_up(&conf->wait_barrier);
742 spin_unlock_irq(&conf->resync_lock);
743}
744
NeilBrown17999be2006-01-06 00:20:12 -0800745
NeilBrown4b6d2872005-09-09 16:23:47 -0700746/* duplicate the data pages for behind I/O */
747static struct page **alloc_behind_pages(struct bio *bio)
748{
749 int i;
750 struct bio_vec *bvec;
NeilBrown9ffae0c2006-01-06 00:20:32 -0800751 struct page **pages = kzalloc(bio->bi_vcnt * sizeof(struct page *),
NeilBrown4b6d2872005-09-09 16:23:47 -0700752 GFP_NOIO);
753 if (unlikely(!pages))
754 goto do_sync_io;
755
NeilBrown4b6d2872005-09-09 16:23:47 -0700756 bio_for_each_segment(bvec, bio, i) {
757 pages[i] = alloc_page(GFP_NOIO);
758 if (unlikely(!pages[i]))
759 goto do_sync_io;
760 memcpy(kmap(pages[i]) + bvec->bv_offset,
761 kmap(bvec->bv_page) + bvec->bv_offset, bvec->bv_len);
762 kunmap(pages[i]);
763 kunmap(bvec->bv_page);
764 }
765
766 return pages;
767
768do_sync_io:
769 if (pages)
770 for (i = 0; i < bio->bi_vcnt && pages[i]; i++)
NeilBrown2d1f3b52006-01-06 00:20:31 -0800771 put_page(pages[i]);
NeilBrown4b6d2872005-09-09 16:23:47 -0700772 kfree(pages);
773 PRINTK("%dB behind alloc failed, doing sync I/O\n", bio->bi_size);
774 return NULL;
775}
776
NeilBrown21a52c62010-04-01 15:02:13 +1100777static int make_request(mddev_t *mddev, struct bio * bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778{
NeilBrown070ec552009-06-16 16:54:21 +1000779 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 mirror_info_t *mirror;
781 r1bio_t *r1_bio;
782 struct bio *read_bio;
NeilBrown191ea9b2005-06-21 17:17:23 -0700783 int i, targets = 0, disks;
NeilBrown84255d12008-05-23 13:04:32 -0700784 struct bitmap *bitmap;
NeilBrown191ea9b2005-06-21 17:17:23 -0700785 unsigned long flags;
786 struct bio_list bl;
NeilBrown4b6d2872005-09-09 16:23:47 -0700787 struct page **behind_pages = NULL;
Jens Axboea3623572005-11-01 09:26:16 +0100788 const int rw = bio_data_dir(bio);
Jens Axboe1f98a132009-09-11 14:32:04 +0200789 const bool do_sync = bio_rw_flagged(bio, BIO_RW_SYNCIO);
Jens Axboe1f98a132009-09-11 14:32:04 +0200790 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 /*
836 * make_request() can abort the operation when READA is being
837 * used and no empty request is available.
838 *
839 */
840 r1_bio = mempool_alloc(conf->r1bio_pool, GFP_NOIO);
841
842 r1_bio->master_bio = bio;
843 r1_bio->sectors = bio->bi_size >> 9;
NeilBrown191ea9b2005-06-21 17:17:23 -0700844 r1_bio->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 r1_bio->mddev = mddev;
846 r1_bio->sector = bio->bi_sector;
847
Jens Axboea3623572005-11-01 09:26:16 +0100848 if (rw == READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 /*
850 * read balancing logic:
851 */
852 int rdisk = read_balance(conf, r1_bio);
853
854 if (rdisk < 0) {
855 /* couldn't find anywhere to read from */
856 raid_end_bio_io(r1_bio);
857 return 0;
858 }
859 mirror = conf->mirrors + rdisk;
860
NeilBrowne5551902010-03-31 11:21:44 +1100861 if (test_bit(WriteMostly, &mirror->rdev->flags) &&
862 bitmap) {
863 /* Reading from a write-mostly device must
864 * take care not to over-take any writes
865 * that are 'behind'
866 */
867 wait_event(bitmap->behind_wait,
868 atomic_read(&bitmap->behind_writes) == 0);
869 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 r1_bio->read_disk = rdisk;
871
872 read_bio = bio_clone(bio, GFP_NOIO);
873
874 r1_bio->bios[rdisk] = read_bio;
875
876 read_bio->bi_sector = r1_bio->sector + mirror->rdev->data_offset;
877 read_bio->bi_bdev = mirror->rdev->bdev;
878 read_bio->bi_end_io = raid1_end_read_request;
Dmitry Monakhov1ef04fe2009-09-20 05:52:25 +0400879 read_bio->bi_rw = READ | (do_sync << BIO_RW_SYNCIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 read_bio->bi_private = r1_bio;
881
882 generic_make_request(read_bio);
883 return 0;
884 }
885
886 /*
887 * WRITE:
888 */
889 /* first select target devices under spinlock and
890 * inc refcount on their rdev. Record them by setting
891 * bios[x] to bio
892 */
893 disks = conf->raid_disks;
NeilBrown191ea9b2005-06-21 17:17:23 -0700894#if 0
895 { static int first=1;
896 if (first) printk("First Write sector %llu disks %d\n",
897 (unsigned long long)r1_bio->sector, disks);
898 first = 0;
899 }
900#endif
Dan Williams6bfe0b42008-04-30 00:52:32 -0700901 retry_write:
902 blocked_rdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 rcu_read_lock();
904 for (i = 0; i < disks; i++) {
Dan Williams6bfe0b42008-04-30 00:52:32 -0700905 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
906 if (rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
907 atomic_inc(&rdev->nr_pending);
908 blocked_rdev = rdev;
909 break;
910 }
911 if (rdev && !test_bit(Faulty, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 atomic_inc(&rdev->nr_pending);
NeilBrownb2d444d2005-11-08 21:39:31 -0800913 if (test_bit(Faulty, &rdev->flags)) {
NeilBrown03c902e2006-01-06 00:20:46 -0800914 rdev_dec_pending(rdev, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 r1_bio->bios[i] = NULL;
NeilBrown964147d2010-05-18 15:27:13 +1000916 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 r1_bio->bios[i] = bio;
NeilBrown964147d2010-05-18 15:27:13 +1000918 targets++;
919 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 } else
921 r1_bio->bios[i] = NULL;
922 }
923 rcu_read_unlock();
924
Dan Williams6bfe0b42008-04-30 00:52:32 -0700925 if (unlikely(blocked_rdev)) {
926 /* Wait for this device to become unblocked */
927 int j;
928
929 for (j = 0; j < i; j++)
930 if (r1_bio->bios[j])
931 rdev_dec_pending(conf->mirrors[j].rdev, mddev);
932
933 allow_barrier(conf);
934 md_wait_for_blocked_rdev(blocked_rdev, mddev);
935 wait_barrier(conf);
936 goto retry_write;
937 }
938
NeilBrown4b6d2872005-09-09 16:23:47 -0700939 BUG_ON(targets == 0); /* we never fail the last device */
940
NeilBrown191ea9b2005-06-21 17:17:23 -0700941 if (targets < conf->raid_disks) {
942 /* array is degraded, we will not clear the bitmap
943 * on I/O completion (see raid1_end_write_request) */
944 set_bit(R1BIO_Degraded, &r1_bio->state);
945 }
NeilBrown06d91a52005-06-21 17:17:12 -0700946
NeilBrowne5551902010-03-31 11:21:44 +1100947 /* do behind I/O ?
948 * Not if there are too many, or cannot allocate memory,
949 * or a reader on WriteMostly is waiting for behind writes
950 * to flush */
NeilBrown4b6d2872005-09-09 16:23:47 -0700951 if (bitmap &&
NeilBrown42a04b52009-12-14 12:49:53 +1100952 (atomic_read(&bitmap->behind_writes)
953 < mddev->bitmap_info.max_write_behind) &&
NeilBrowne5551902010-03-31 11:21:44 +1100954 !waitqueue_active(&bitmap->behind_wait) &&
NeilBrown4b6d2872005-09-09 16:23:47 -0700955 (behind_pages = alloc_behind_pages(bio)) != NULL)
956 set_bit(R1BIO_BehindIO, &r1_bio->state);
957
NeilBrown191ea9b2005-06-21 17:17:23 -0700958 atomic_set(&r1_bio->remaining, 0);
NeilBrown4b6d2872005-09-09 16:23:47 -0700959 atomic_set(&r1_bio->behind_remaining, 0);
NeilBrown191ea9b2005-06-21 17:17:23 -0700960
Jens Axboe1f98a132009-09-11 14:32:04 +0200961 do_barriers = bio_rw_flagged(bio, BIO_RW_BARRIER);
NeilBrowna9701a32005-11-08 21:39:34 -0800962 if (do_barriers)
963 set_bit(R1BIO_Barrier, &r1_bio->state);
964
NeilBrown191ea9b2005-06-21 17:17:23 -0700965 bio_list_init(&bl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 for (i = 0; i < disks; i++) {
967 struct bio *mbio;
968 if (!r1_bio->bios[i])
969 continue;
970
971 mbio = bio_clone(bio, GFP_NOIO);
972 r1_bio->bios[i] = mbio;
973
974 mbio->bi_sector = r1_bio->sector + conf->mirrors[i].rdev->data_offset;
975 mbio->bi_bdev = conf->mirrors[i].rdev->bdev;
976 mbio->bi_end_io = raid1_end_write_request;
Dmitry Monakhov1ef04fe2009-09-20 05:52:25 +0400977 mbio->bi_rw = WRITE | (do_barriers << BIO_RW_BARRIER) |
978 (do_sync << BIO_RW_SYNCIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 mbio->bi_private = r1_bio;
980
NeilBrown4b6d2872005-09-09 16:23:47 -0700981 if (behind_pages) {
982 struct bio_vec *bvec;
983 int j;
984
985 /* Yes, I really want the '__' version so that
986 * we clear any unused pointer in the io_vec, rather
987 * than leave them unchanged. This is important
988 * because when we come to free the pages, we won't
989 * know the originial bi_idx, so we just free
990 * them all
991 */
992 __bio_for_each_segment(bvec, mbio, j, 0)
993 bvec->bv_page = behind_pages[j];
994 if (test_bit(WriteMostly, &conf->mirrors[i].rdev->flags))
995 atomic_inc(&r1_bio->behind_remaining);
996 }
997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 atomic_inc(&r1_bio->remaining);
NeilBrown191ea9b2005-06-21 17:17:23 -0700999
1000 bio_list_add(&bl, mbio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 }
NeilBrown4b6d2872005-09-09 16:23:47 -07001002 kfree(behind_pages); /* the behind pages are attached to the bios now */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
NeilBrown4b6d2872005-09-09 16:23:47 -07001004 bitmap_startwrite(bitmap, bio->bi_sector, r1_bio->sectors,
1005 test_bit(R1BIO_BehindIO, &r1_bio->state));
NeilBrown191ea9b2005-06-21 17:17:23 -07001006 spin_lock_irqsave(&conf->device_lock, flags);
1007 bio_list_merge(&conf->pending_bio_list, &bl);
1008 bio_list_init(&bl);
1009
1010 blk_plug_device(mddev->queue);
1011 spin_unlock_irqrestore(&conf->device_lock, flags);
1012
NeilBrowna35e63e2008-03-04 14:29:29 -08001013 /* In case raid1d snuck into freeze_array */
1014 wake_up(&conf->wait_barrier);
1015
Lars Ellenberge3881a62007-01-10 23:15:37 -08001016 if (do_sync)
1017 md_wakeup_thread(mddev->thread);
NeilBrown191ea9b2005-06-21 17:17:23 -07001018#if 0
1019 while ((bio = bio_list_pop(&bl)) != NULL)
1020 generic_make_request(bio);
1021#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
1023 return 0;
1024}
1025
1026static void status(struct seq_file *seq, mddev_t *mddev)
1027{
NeilBrown070ec552009-06-16 16:54:21 +10001028 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 int i;
1030
1031 seq_printf(seq, " [%d/%d] [", conf->raid_disks,
NeilBrown11ce99e2006-10-03 01:15:52 -07001032 conf->raid_disks - mddev->degraded);
NeilBrownddac7c72006-08-31 21:27:36 -07001033 rcu_read_lock();
1034 for (i = 0; i < conf->raid_disks; i++) {
1035 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 seq_printf(seq, "%s",
NeilBrownddac7c72006-08-31 21:27:36 -07001037 rdev && test_bit(In_sync, &rdev->flags) ? "U" : "_");
1038 }
1039 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 seq_printf(seq, "]");
1041}
1042
1043
1044static void error(mddev_t *mddev, mdk_rdev_t *rdev)
1045{
1046 char b[BDEVNAME_SIZE];
NeilBrown070ec552009-06-16 16:54:21 +10001047 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
1049 /*
1050 * If it is not operational, then we have already marked it as dead
1051 * else if it is the last working disks, ignore the error, let the
1052 * next level up know.
1053 * else mark the drive as failed
1054 */
NeilBrownb2d444d2005-11-08 21:39:31 -08001055 if (test_bit(In_sync, &rdev->flags)
NeilBrown4044ba52009-01-09 08:31:11 +11001056 && (conf->raid_disks - mddev->degraded) == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 /*
1058 * Don't fail the drive, act as though we were just a
NeilBrown4044ba52009-01-09 08:31:11 +11001059 * normal single drive.
1060 * However don't try a recovery from this drive as
1061 * it is very likely to fail.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 */
NeilBrown4044ba52009-01-09 08:31:11 +11001063 mddev->recovery_disabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 return;
NeilBrown4044ba52009-01-09 08:31:11 +11001065 }
NeilBrownc04be0a2006-10-03 01:15:53 -07001066 if (test_and_clear_bit(In_sync, &rdev->flags)) {
1067 unsigned long flags;
1068 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 mddev->degraded++;
NeilBrowndd00a992007-05-10 03:15:50 -07001070 set_bit(Faulty, &rdev->flags);
NeilBrownc04be0a2006-10-03 01:15:53 -07001071 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 /*
1073 * if recovery is running, make sure it aborts.
1074 */
NeilBrowndfc70642008-05-23 13:04:39 -07001075 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
NeilBrowndd00a992007-05-10 03:15:50 -07001076 } else
1077 set_bit(Faulty, &rdev->flags);
NeilBrown850b2b422006-10-03 01:15:46 -07001078 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001079 printk(KERN_ALERT "md/raid1:%s: Disk failure on %s, disabling device.\n"
1080 KERN_ALERT "md/raid1:%s: Operation continuing on %d devices.\n",
1081 mdname(mddev), bdevname(rdev->bdev, b),
1082 mdname(mddev), conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083}
1084
1085static void print_conf(conf_t *conf)
1086{
1087 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001089 printk(KERN_DEBUG "RAID1 conf printout:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 if (!conf) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001091 printk(KERN_DEBUG "(!conf)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 return;
1093 }
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001094 printk(KERN_DEBUG " --- wd:%d rd:%d\n", conf->raid_disks - conf->mddev->degraded,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 conf->raid_disks);
1096
NeilBrownddac7c72006-08-31 21:27:36 -07001097 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 for (i = 0; i < conf->raid_disks; i++) {
1099 char b[BDEVNAME_SIZE];
NeilBrownddac7c72006-08-31 21:27:36 -07001100 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
1101 if (rdev)
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001102 printk(KERN_DEBUG " disk %d, wo:%d, o:%d, dev:%s\n",
NeilBrownddac7c72006-08-31 21:27:36 -07001103 i, !test_bit(In_sync, &rdev->flags),
1104 !test_bit(Faulty, &rdev->flags),
1105 bdevname(rdev->bdev,b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 }
NeilBrownddac7c72006-08-31 21:27:36 -07001107 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108}
1109
1110static void close_sync(conf_t *conf)
1111{
NeilBrown17999be2006-01-06 00:20:12 -08001112 wait_barrier(conf);
1113 allow_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
1115 mempool_destroy(conf->r1buf_pool);
1116 conf->r1buf_pool = NULL;
1117}
1118
1119static int raid1_spare_active(mddev_t *mddev)
1120{
1121 int i;
1122 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
1124 /*
1125 * Find all failed disks within the RAID1 configuration
NeilBrownddac7c72006-08-31 21:27:36 -07001126 * and mark them readable.
1127 * Called under mddev lock, so rcu protection not needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 */
1129 for (i = 0; i < conf->raid_disks; i++) {
NeilBrownddac7c72006-08-31 21:27:36 -07001130 mdk_rdev_t *rdev = conf->mirrors[i].rdev;
1131 if (rdev
1132 && !test_bit(Faulty, &rdev->flags)
NeilBrownc04be0a2006-10-03 01:15:53 -07001133 && !test_and_set_bit(In_sync, &rdev->flags)) {
1134 unsigned long flags;
1135 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 mddev->degraded--;
NeilBrownc04be0a2006-10-03 01:15:53 -07001137 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 }
1139 }
1140
1141 print_conf(conf);
1142 return 0;
1143}
1144
1145
1146static int raid1_add_disk(mddev_t *mddev, mdk_rdev_t *rdev)
1147{
1148 conf_t *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10001149 int err = -EEXIST;
NeilBrown41158c72005-06-21 17:17:25 -07001150 int mirror = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 mirror_info_t *p;
Neil Brown6c2fce22008-06-28 08:31:31 +10001152 int first = 0;
1153 int last = mddev->raid_disks - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
Neil Brown6c2fce22008-06-28 08:31:31 +10001155 if (rdev->raid_disk >= 0)
1156 first = last = rdev->raid_disk;
1157
1158 for (mirror = first; mirror <= last; mirror++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 if ( !(p=conf->mirrors+mirror)->rdev) {
1160
Martin K. Petersen8f6c2e42009-07-01 11:13:45 +10001161 disk_stack_limits(mddev->gendisk, rdev->bdev,
1162 rdev->data_offset << 9);
NeilBrown627a2d32010-03-08 16:44:38 +11001163 /* as we don't honour merge_bvec_fn, we must
1164 * never risk violating it, so limit
1165 * ->max_segments to one lying with a single
1166 * page, as a one page request is never in
1167 * violation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 */
NeilBrown627a2d32010-03-08 16:44:38 +11001169 if (rdev->bdev->bd_disk->queue->merge_bvec_fn) {
1170 blk_queue_max_segments(mddev->queue, 1);
1171 blk_queue_segment_boundary(mddev->queue,
1172 PAGE_CACHE_SIZE - 1);
1173 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174
1175 p->head_position = 0;
1176 rdev->raid_disk = mirror;
Neil Brown199050e2008-06-28 08:31:33 +10001177 err = 0;
NeilBrown6aea114a2005-11-28 13:44:13 -08001178 /* As all devices are equivalent, we don't need a full recovery
1179 * if this was recently any drive of the array
1180 */
1181 if (rdev->saved_raid_disk < 0)
NeilBrown41158c72005-06-21 17:17:25 -07001182 conf->fullsync = 1;
Suzanne Woodd6065f72005-11-08 21:39:27 -08001183 rcu_assign_pointer(p->rdev, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 break;
1185 }
Andre Nollac5e7112009-08-03 10:59:47 +10001186 md_integrity_add_rdev(rdev, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 print_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10001188 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189}
1190
1191static int raid1_remove_disk(mddev_t *mddev, int number)
1192{
1193 conf_t *conf = mddev->private;
1194 int err = 0;
1195 mdk_rdev_t *rdev;
1196 mirror_info_t *p = conf->mirrors+ number;
1197
1198 print_conf(conf);
1199 rdev = p->rdev;
1200 if (rdev) {
NeilBrownb2d444d2005-11-08 21:39:31 -08001201 if (test_bit(In_sync, &rdev->flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 atomic_read(&rdev->nr_pending)) {
1203 err = -EBUSY;
1204 goto abort;
1205 }
NeilBrowndfc70642008-05-23 13:04:39 -07001206 /* Only remove non-faulty devices is recovery
1207 * is not possible.
1208 */
1209 if (!test_bit(Faulty, &rdev->flags) &&
1210 mddev->degraded < conf->raid_disks) {
1211 err = -EBUSY;
1212 goto abort;
1213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 p->rdev = NULL;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07001215 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 if (atomic_read(&rdev->nr_pending)) {
1217 /* lost the race, try later */
1218 err = -EBUSY;
1219 p->rdev = rdev;
Andre Nollac5e7112009-08-03 10:59:47 +10001220 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 }
Andre Nollac5e7112009-08-03 10:59:47 +10001222 md_integrity_register(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 }
1224abort:
1225
1226 print_conf(conf);
1227 return err;
1228}
1229
1230
NeilBrown6712ecf2007-09-27 12:47:43 +02001231static void end_sync_read(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232{
H Hartley Sweeten7b928132010-03-08 16:02:40 +11001233 r1bio_t *r1_bio = bio->bi_private;
NeilBrownd11c1712006-01-06 00:20:26 -08001234 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
NeilBrownd11c1712006-01-06 00:20:26 -08001236 for (i=r1_bio->mddev->raid_disks; i--; )
1237 if (r1_bio->bios[i] == bio)
1238 break;
1239 BUG_ON(i < 0);
1240 update_head_pos(i, r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 /*
1242 * we have read a block, now it needs to be re-written,
1243 * or re-read if the read failed.
1244 * We don't do much here, just schedule handling by raid1d
1245 */
NeilBrown69382e82006-01-06 00:20:22 -08001246 if (test_bit(BIO_UPTODATE, &bio->bi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 set_bit(R1BIO_Uptodate, &r1_bio->state);
NeilBrownd11c1712006-01-06 00:20:26 -08001248
1249 if (atomic_dec_and_test(&r1_bio->remaining))
1250 reschedule_retry(r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251}
1252
NeilBrown6712ecf2007-09-27 12:47:43 +02001253static void end_sync_write(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254{
1255 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
H Hartley Sweeten7b928132010-03-08 16:02:40 +11001256 r1bio_t *r1_bio = bio->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 mddev_t *mddev = r1_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +10001258 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 int i;
1260 int mirror=0;
1261
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 for (i = 0; i < conf->raid_disks; i++)
1263 if (r1_bio->bios[i] == bio) {
1264 mirror = i;
1265 break;
1266 }
NeilBrown6b1117d2006-03-31 02:31:57 -08001267 if (!uptodate) {
1268 int sync_blocks = 0;
1269 sector_t s = r1_bio->sector;
1270 long sectors_to_go = r1_bio->sectors;
1271 /* make sure these bits doesn't get cleared. */
1272 do {
NeilBrown5e3db642006-07-10 04:44:18 -07001273 bitmap_end_sync(mddev->bitmap, s,
NeilBrown6b1117d2006-03-31 02:31:57 -08001274 &sync_blocks, 1);
1275 s += sync_blocks;
1276 sectors_to_go -= sync_blocks;
1277 } while (sectors_to_go > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 md_error(mddev, conf->mirrors[mirror].rdev);
NeilBrown6b1117d2006-03-31 02:31:57 -08001279 }
NeilBrowne3b97032005-08-04 12:53:34 -07001280
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 update_head_pos(mirror, r1_bio);
1282
1283 if (atomic_dec_and_test(&r1_bio->remaining)) {
NeilBrown73d5c382009-02-25 13:18:47 +11001284 sector_t s = r1_bio->sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 put_buf(r1_bio);
NeilBrown73d5c382009-02-25 13:18:47 +11001286 md_done_sync(mddev, s, uptodate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288}
1289
1290static void sync_request_write(mddev_t *mddev, r1bio_t *r1_bio)
1291{
NeilBrown070ec552009-06-16 16:54:21 +10001292 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 int i;
1294 int disks = conf->raid_disks;
1295 struct bio *bio, *wbio;
1296
1297 bio = r1_bio->bios[r1_bio->read_disk];
1298
NeilBrown69382e82006-01-06 00:20:22 -08001299
NeilBrownd11c1712006-01-06 00:20:26 -08001300 if (test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) {
1301 /* We have read all readable devices. If we haven't
1302 * got the block, then there is no hope left.
1303 * If we have, then we want to do a comparison
1304 * and skip the write if everything is the same.
1305 * If any blocks failed to read, then we need to
1306 * attempt an over-write
1307 */
1308 int primary;
1309 if (!test_bit(R1BIO_Uptodate, &r1_bio->state)) {
1310 for (i=0; i<mddev->raid_disks; i++)
1311 if (r1_bio->bios[i]->bi_end_io == end_sync_read)
1312 md_error(mddev, conf->mirrors[i].rdev);
1313
1314 md_done_sync(mddev, r1_bio->sectors, 1);
1315 put_buf(r1_bio);
1316 return;
1317 }
1318 for (primary=0; primary<mddev->raid_disks; primary++)
1319 if (r1_bio->bios[primary]->bi_end_io == end_sync_read &&
1320 test_bit(BIO_UPTODATE, &r1_bio->bios[primary]->bi_flags)) {
1321 r1_bio->bios[primary]->bi_end_io = NULL;
NeilBrown03c902e2006-01-06 00:20:46 -08001322 rdev_dec_pending(conf->mirrors[primary].rdev, mddev);
NeilBrownd11c1712006-01-06 00:20:26 -08001323 break;
1324 }
1325 r1_bio->read_disk = primary;
1326 for (i=0; i<mddev->raid_disks; i++)
Mike Accettaed456662007-06-16 10:16:07 -07001327 if (r1_bio->bios[i]->bi_end_io == end_sync_read) {
NeilBrownd11c1712006-01-06 00:20:26 -08001328 int j;
1329 int vcnt = r1_bio->sectors >> (PAGE_SHIFT- 9);
1330 struct bio *pbio = r1_bio->bios[primary];
1331 struct bio *sbio = r1_bio->bios[i];
Mike Accettaed456662007-06-16 10:16:07 -07001332
1333 if (test_bit(BIO_UPTODATE, &sbio->bi_flags)) {
1334 for (j = vcnt; j-- ; ) {
1335 struct page *p, *s;
1336 p = pbio->bi_io_vec[j].bv_page;
1337 s = sbio->bi_io_vec[j].bv_page;
1338 if (memcmp(page_address(p),
1339 page_address(s),
1340 PAGE_SIZE))
1341 break;
1342 }
1343 } else
1344 j = 0;
NeilBrownd11c1712006-01-06 00:20:26 -08001345 if (j >= 0)
1346 mddev->resync_mismatches += r1_bio->sectors;
NeilBrowncf7a4412007-10-16 23:30:55 -07001347 if (j < 0 || (test_bit(MD_RECOVERY_CHECK, &mddev->recovery)
1348 && test_bit(BIO_UPTODATE, &sbio->bi_flags))) {
NeilBrownd11c1712006-01-06 00:20:26 -08001349 sbio->bi_end_io = NULL;
NeilBrown03c902e2006-01-06 00:20:46 -08001350 rdev_dec_pending(conf->mirrors[i].rdev, mddev);
1351 } else {
NeilBrownd11c1712006-01-06 00:20:26 -08001352 /* fixup the bio for reuse */
NeilBrown698b18c2008-05-23 13:04:35 -07001353 int size;
NeilBrownd11c1712006-01-06 00:20:26 -08001354 sbio->bi_vcnt = vcnt;
1355 sbio->bi_size = r1_bio->sectors << 9;
1356 sbio->bi_idx = 0;
1357 sbio->bi_phys_segments = 0;
NeilBrownd11c1712006-01-06 00:20:26 -08001358 sbio->bi_flags &= ~(BIO_POOL_MASK - 1);
1359 sbio->bi_flags |= 1 << BIO_UPTODATE;
1360 sbio->bi_next = NULL;
1361 sbio->bi_sector = r1_bio->sector +
1362 conf->mirrors[i].rdev->data_offset;
1363 sbio->bi_bdev = conf->mirrors[i].rdev->bdev;
NeilBrown698b18c2008-05-23 13:04:35 -07001364 size = sbio->bi_size;
1365 for (j = 0; j < vcnt ; j++) {
1366 struct bio_vec *bi;
1367 bi = &sbio->bi_io_vec[j];
1368 bi->bv_offset = 0;
1369 if (size > PAGE_SIZE)
1370 bi->bv_len = PAGE_SIZE;
1371 else
1372 bi->bv_len = size;
1373 size -= PAGE_SIZE;
1374 memcpy(page_address(bi->bv_page),
NeilBrown3eda22d2007-01-26 00:57:01 -08001375 page_address(pbio->bi_io_vec[j].bv_page),
1376 PAGE_SIZE);
NeilBrown698b18c2008-05-23 13:04:35 -07001377 }
NeilBrown3eda22d2007-01-26 00:57:01 -08001378
NeilBrownd11c1712006-01-06 00:20:26 -08001379 }
1380 }
1381 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 if (!test_bit(R1BIO_Uptodate, &r1_bio->state)) {
NeilBrown69382e82006-01-06 00:20:22 -08001383 /* ouch - failed to read all of that.
1384 * Try some synchronous reads of other devices to get
1385 * good data, much like with normal read errors. Only
NeilBrownddac7c72006-08-31 21:27:36 -07001386 * read into the pages we already have so we don't
NeilBrown69382e82006-01-06 00:20:22 -08001387 * need to re-issue the read request.
1388 * We don't need to freeze the array, because being in an
1389 * active sync request, there is no normal IO, and
1390 * no overlapping syncs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 */
NeilBrown69382e82006-01-06 00:20:22 -08001392 sector_t sect = r1_bio->sector;
1393 int sectors = r1_bio->sectors;
1394 int idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
NeilBrown69382e82006-01-06 00:20:22 -08001396 while(sectors) {
1397 int s = sectors;
1398 int d = r1_bio->read_disk;
1399 int success = 0;
1400 mdk_rdev_t *rdev;
1401
1402 if (s > (PAGE_SIZE>>9))
1403 s = PAGE_SIZE >> 9;
1404 do {
1405 if (r1_bio->bios[d]->bi_end_io == end_sync_read) {
NeilBrownddac7c72006-08-31 21:27:36 -07001406 /* No rcu protection needed here devices
1407 * can only be removed when no resync is
1408 * active, and resync is currently active
1409 */
NeilBrown69382e82006-01-06 00:20:22 -08001410 rdev = conf->mirrors[d].rdev;
1411 if (sync_page_io(rdev->bdev,
1412 sect + rdev->data_offset,
1413 s<<9,
1414 bio->bi_io_vec[idx].bv_page,
1415 READ)) {
1416 success = 1;
1417 break;
1418 }
1419 }
1420 d++;
1421 if (d == conf->raid_disks)
1422 d = 0;
1423 } while (!success && d != r1_bio->read_disk);
1424
1425 if (success) {
NeilBrown097426f2006-01-06 00:20:37 -08001426 int start = d;
NeilBrown69382e82006-01-06 00:20:22 -08001427 /* write it back and re-read */
1428 set_bit(R1BIO_Uptodate, &r1_bio->state);
1429 while (d != r1_bio->read_disk) {
1430 if (d == 0)
1431 d = conf->raid_disks;
1432 d--;
1433 if (r1_bio->bios[d]->bi_end_io != end_sync_read)
1434 continue;
1435 rdev = conf->mirrors[d].rdev;
NeilBrown4dbcdc72006-01-06 00:20:52 -08001436 atomic_add(s, &rdev->corrected_errors);
NeilBrown69382e82006-01-06 00:20:22 -08001437 if (sync_page_io(rdev->bdev,
1438 sect + rdev->data_offset,
1439 s<<9,
1440 bio->bi_io_vec[idx].bv_page,
NeilBrown097426f2006-01-06 00:20:37 -08001441 WRITE) == 0)
1442 md_error(mddev, rdev);
1443 }
1444 d = start;
1445 while (d != r1_bio->read_disk) {
1446 if (d == 0)
1447 d = conf->raid_disks;
1448 d--;
1449 if (r1_bio->bios[d]->bi_end_io != end_sync_read)
1450 continue;
1451 rdev = conf->mirrors[d].rdev;
1452 if (sync_page_io(rdev->bdev,
NeilBrown69382e82006-01-06 00:20:22 -08001453 sect + rdev->data_offset,
1454 s<<9,
1455 bio->bi_io_vec[idx].bv_page,
NeilBrown097426f2006-01-06 00:20:37 -08001456 READ) == 0)
NeilBrown69382e82006-01-06 00:20:22 -08001457 md_error(mddev, rdev);
NeilBrown69382e82006-01-06 00:20:22 -08001458 }
1459 } else {
1460 char b[BDEVNAME_SIZE];
1461 /* Cannot read from anywhere, array is toast */
1462 md_error(mddev, conf->mirrors[r1_bio->read_disk].rdev);
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001463 printk(KERN_ALERT "md/raid1:%s: %s: unrecoverable I/O read error"
NeilBrown69382e82006-01-06 00:20:22 -08001464 " for block %llu\n",
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001465 mdname(mddev),
1466 bdevname(bio->bi_bdev, b),
NeilBrown69382e82006-01-06 00:20:22 -08001467 (unsigned long long)r1_bio->sector);
1468 md_done_sync(mddev, r1_bio->sectors, 0);
1469 put_buf(r1_bio);
1470 return;
1471 }
1472 sectors -= s;
1473 sect += s;
1474 idx ++;
1475 }
1476 }
NeilBrownd11c1712006-01-06 00:20:26 -08001477
1478 /*
1479 * schedule writes
1480 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 atomic_set(&r1_bio->remaining, 1);
1482 for (i = 0; i < disks ; i++) {
1483 wbio = r1_bio->bios[i];
NeilBrown3e198f72006-01-06 00:20:21 -08001484 if (wbio->bi_end_io == NULL ||
1485 (wbio->bi_end_io == end_sync_read &&
1486 (i == r1_bio->read_disk ||
1487 !test_bit(MD_RECOVERY_SYNC, &mddev->recovery))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 continue;
1489
NeilBrown3e198f72006-01-06 00:20:21 -08001490 wbio->bi_rw = WRITE;
1491 wbio->bi_end_io = end_sync_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 atomic_inc(&r1_bio->remaining);
1493 md_sync_acct(conf->mirrors[i].rdev->bdev, wbio->bi_size >> 9);
NeilBrown191ea9b2005-06-21 17:17:23 -07001494
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 generic_make_request(wbio);
1496 }
1497
1498 if (atomic_dec_and_test(&r1_bio->remaining)) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001499 /* if we're here, all write(s) have completed, so clean up */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 md_done_sync(mddev, r1_bio->sectors, 1);
1501 put_buf(r1_bio);
1502 }
1503}
1504
1505/*
1506 * This is a kernel thread which:
1507 *
1508 * 1. Retries failed read operations on working mirrors.
1509 * 2. Updates the raid superblock when problems encounter.
1510 * 3. Performs writes following reads for array syncronising.
1511 */
1512
NeilBrown867868f2006-10-03 01:15:51 -07001513static void fix_read_error(conf_t *conf, int read_disk,
1514 sector_t sect, int sectors)
1515{
1516 mddev_t *mddev = conf->mddev;
1517 while(sectors) {
1518 int s = sectors;
1519 int d = read_disk;
1520 int success = 0;
1521 int start;
1522 mdk_rdev_t *rdev;
1523
1524 if (s > (PAGE_SIZE>>9))
1525 s = PAGE_SIZE >> 9;
1526
1527 do {
1528 /* Note: no rcu protection needed here
1529 * as this is synchronous in the raid1d thread
1530 * which is the thread that might remove
1531 * a device. If raid1d ever becomes multi-threaded....
1532 */
1533 rdev = conf->mirrors[d].rdev;
1534 if (rdev &&
1535 test_bit(In_sync, &rdev->flags) &&
1536 sync_page_io(rdev->bdev,
1537 sect + rdev->data_offset,
1538 s<<9,
1539 conf->tmppage, READ))
1540 success = 1;
1541 else {
1542 d++;
1543 if (d == conf->raid_disks)
1544 d = 0;
1545 }
1546 } while (!success && d != read_disk);
1547
1548 if (!success) {
1549 /* Cannot read from anywhere -- bye bye array */
1550 md_error(mddev, conf->mirrors[read_disk].rdev);
1551 break;
1552 }
1553 /* write it back and re-read */
1554 start = d;
1555 while (d != read_disk) {
1556 if (d==0)
1557 d = conf->raid_disks;
1558 d--;
1559 rdev = conf->mirrors[d].rdev;
1560 if (rdev &&
1561 test_bit(In_sync, &rdev->flags)) {
1562 if (sync_page_io(rdev->bdev,
1563 sect + rdev->data_offset,
1564 s<<9, conf->tmppage, WRITE)
1565 == 0)
1566 /* Well, this device is dead */
1567 md_error(mddev, rdev);
1568 }
1569 }
1570 d = start;
1571 while (d != read_disk) {
1572 char b[BDEVNAME_SIZE];
1573 if (d==0)
1574 d = conf->raid_disks;
1575 d--;
1576 rdev = conf->mirrors[d].rdev;
1577 if (rdev &&
1578 test_bit(In_sync, &rdev->flags)) {
1579 if (sync_page_io(rdev->bdev,
1580 sect + rdev->data_offset,
1581 s<<9, conf->tmppage, READ)
1582 == 0)
1583 /* Well, this device is dead */
1584 md_error(mddev, rdev);
1585 else {
1586 atomic_add(s, &rdev->corrected_errors);
1587 printk(KERN_INFO
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001588 "md/raid1:%s: read error corrected "
NeilBrown867868f2006-10-03 01:15:51 -07001589 "(%d sectors at %llu on %s)\n",
1590 mdname(mddev), s,
Randy Dunlap969b7552006-10-28 10:38:32 -07001591 (unsigned long long)(sect +
1592 rdev->data_offset),
NeilBrown867868f2006-10-03 01:15:51 -07001593 bdevname(rdev->bdev, b));
1594 }
1595 }
1596 }
1597 sectors -= s;
1598 sect += s;
1599 }
1600}
1601
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602static void raid1d(mddev_t *mddev)
1603{
1604 r1bio_t *r1_bio;
1605 struct bio *bio;
1606 unsigned long flags;
NeilBrown070ec552009-06-16 16:54:21 +10001607 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 struct list_head *head = &conf->retry_list;
1609 int unplug=0;
1610 mdk_rdev_t *rdev;
1611
1612 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
1614 for (;;) {
1615 char b[BDEVNAME_SIZE];
NeilBrowna35e63e2008-03-04 14:29:29 -08001616
1617 unplug += flush_pending_writes(conf);
1618
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrowna35e63e2008-03-04 14:29:29 -08001620 if (list_empty(head)) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001621 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 break;
NeilBrowna35e63e2008-03-04 14:29:29 -08001623 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 r1_bio = list_entry(head->prev, r1bio_t, retry_list);
1625 list_del(head->prev);
NeilBrownddaf22a2006-01-06 00:20:19 -08001626 conf->nr_queued--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 spin_unlock_irqrestore(&conf->device_lock, flags);
1628
1629 mddev = r1_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +10001630 conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 if (test_bit(R1BIO_IsSync, &r1_bio->state)) {
1632 sync_request_write(mddev, r1_bio);
1633 unplug = 1;
NeilBrowna9701a32005-11-08 21:39:34 -08001634 } else if (test_bit(R1BIO_BarrierRetry, &r1_bio->state)) {
1635 /* some requests in the r1bio were BIO_RW_BARRIER
NeilBrownbea27712006-05-01 12:15:46 -07001636 * requests which failed with -EOPNOTSUPP. Hohumm..
NeilBrowna9701a32005-11-08 21:39:34 -08001637 * Better resubmit without the barrier.
1638 * We know which devices to resubmit for, because
1639 * all others have had their bios[] entry cleared.
NeilBrown5e7dd2a2006-05-01 12:15:47 -07001640 * We already have a nr_pending reference on these rdevs.
NeilBrowna9701a32005-11-08 21:39:34 -08001641 */
1642 int i;
Jens Axboe1f98a132009-09-11 14:32:04 +02001643 const bool do_sync = bio_rw_flagged(r1_bio->master_bio, BIO_RW_SYNCIO);
NeilBrowna9701a32005-11-08 21:39:34 -08001644 clear_bit(R1BIO_BarrierRetry, &r1_bio->state);
1645 clear_bit(R1BIO_Barrier, &r1_bio->state);
1646 for (i=0; i < conf->raid_disks; i++)
NeilBrown2f889122006-03-27 01:18:19 -08001647 if (r1_bio->bios[i])
1648 atomic_inc(&r1_bio->remaining);
1649 for (i=0; i < conf->raid_disks; i++)
NeilBrowna9701a32005-11-08 21:39:34 -08001650 if (r1_bio->bios[i]) {
1651 struct bio_vec *bvec;
1652 int j;
1653
1654 bio = bio_clone(r1_bio->master_bio, GFP_NOIO);
1655 /* copy pages from the failed bio, as
1656 * this might be a write-behind device */
1657 __bio_for_each_segment(bvec, bio, j, 0)
1658 bvec->bv_page = bio_iovec_idx(r1_bio->bios[i], j)->bv_page;
1659 bio_put(r1_bio->bios[i]);
1660 bio->bi_sector = r1_bio->sector +
1661 conf->mirrors[i].rdev->data_offset;
1662 bio->bi_bdev = conf->mirrors[i].rdev->bdev;
1663 bio->bi_end_io = raid1_end_write_request;
Dmitry Monakhov1ef04fe2009-09-20 05:52:25 +04001664 bio->bi_rw = WRITE |
1665 (do_sync << BIO_RW_SYNCIO);
NeilBrowna9701a32005-11-08 21:39:34 -08001666 bio->bi_private = r1_bio;
1667 r1_bio->bios[i] = bio;
1668 generic_make_request(bio);
1669 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 } else {
1671 int disk;
NeilBrownddaf22a2006-01-06 00:20:19 -08001672
1673 /* we got a read error. Maybe the drive is bad. Maybe just
1674 * the block and we can fix it.
1675 * We freeze all other IO, and try reading the block from
1676 * other devices. When we find one, we re-write
1677 * and check it that fixes the read error.
1678 * This is all done synchronously while the array is
1679 * frozen
1680 */
NeilBrown867868f2006-10-03 01:15:51 -07001681 if (mddev->ro == 0) {
1682 freeze_array(conf);
1683 fix_read_error(conf, r1_bio->read_disk,
1684 r1_bio->sector,
1685 r1_bio->sectors);
1686 unfreeze_array(conf);
NeilBrownd0e26072009-12-01 17:30:59 +11001687 } else
1688 md_error(mddev,
1689 conf->mirrors[r1_bio->read_disk].rdev);
NeilBrownddaf22a2006-01-06 00:20:19 -08001690
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 bio = r1_bio->bios[r1_bio->read_disk];
NeilBrownd0e26072009-12-01 17:30:59 +11001692 if ((disk=read_balance(conf, r1_bio)) == -1) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001693 printk(KERN_ALERT "md/raid1:%s: %s: unrecoverable I/O"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 " read error for block %llu\n",
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001695 mdname(mddev),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 bdevname(bio->bi_bdev,b),
1697 (unsigned long long)r1_bio->sector);
1698 raid_end_bio_io(r1_bio);
1699 } else {
Jens Axboe1f98a132009-09-11 14:32:04 +02001700 const bool do_sync = bio_rw_flagged(r1_bio->master_bio, BIO_RW_SYNCIO);
NeilBrowncf30a472006-01-06 00:20:23 -08001701 r1_bio->bios[r1_bio->read_disk] =
1702 mddev->ro ? IO_BLOCKED : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 r1_bio->read_disk = disk;
1704 bio_put(bio);
1705 bio = bio_clone(r1_bio->master_bio, GFP_NOIO);
1706 r1_bio->bios[r1_bio->read_disk] = bio;
1707 rdev = conf->mirrors[disk].rdev;
1708 if (printk_ratelimit())
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001709 printk(KERN_ERR "md/raid1:%s: redirecting sector %llu to"
NeilBrownd754c5a2010-04-07 12:14:43 +10001710 " other mirror: %s\n",
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001711 mdname(mddev),
NeilBrownd754c5a2010-04-07 12:14:43 +10001712 (unsigned long long)r1_bio->sector,
1713 bdevname(rdev->bdev,b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 bio->bi_sector = r1_bio->sector + rdev->data_offset;
1715 bio->bi_bdev = rdev->bdev;
1716 bio->bi_end_io = raid1_end_read_request;
Dmitry Monakhov1ef04fe2009-09-20 05:52:25 +04001717 bio->bi_rw = READ | (do_sync << BIO_RW_SYNCIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 bio->bi_private = r1_bio;
1719 unplug = 1;
1720 generic_make_request(bio);
1721 }
1722 }
NeilBrown1d9d5242009-10-16 15:55:32 +11001723 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 if (unplug)
1726 unplug_slaves(mddev);
1727}
1728
1729
1730static int init_resync(conf_t *conf)
1731{
1732 int buffs;
1733
1734 buffs = RESYNC_WINDOW / RESYNC_BLOCK_SIZE;
Eric Sesterhenn9e77c482006-04-01 01:08:49 +02001735 BUG_ON(conf->r1buf_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 conf->r1buf_pool = mempool_create(buffs, r1buf_pool_alloc, r1buf_pool_free,
1737 conf->poolinfo);
1738 if (!conf->r1buf_pool)
1739 return -ENOMEM;
1740 conf->next_resync = 0;
1741 return 0;
1742}
1743
1744/*
1745 * perform a "sync" on one "block"
1746 *
1747 * We need to make sure that no normal I/O request - particularly write
1748 * requests - conflict with active sync requests.
1749 *
1750 * This is achieved by tracking pending requests and a 'barrier' concept
1751 * that can be installed to exclude normal IO requests.
1752 */
1753
NeilBrown57afd892005-06-21 17:17:13 -07001754static sector_t sync_request(mddev_t *mddev, sector_t sector_nr, int *skipped, int go_faster)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755{
NeilBrown070ec552009-06-16 16:54:21 +10001756 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 r1bio_t *r1_bio;
1758 struct bio *bio;
1759 sector_t max_sector, nr_sectors;
NeilBrown3e198f72006-01-06 00:20:21 -08001760 int disk = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 int i;
NeilBrown3e198f72006-01-06 00:20:21 -08001762 int wonly = -1;
1763 int write_targets = 0, read_targets = 0;
NeilBrown191ea9b2005-06-21 17:17:23 -07001764 int sync_blocks;
NeilBrowne3b97032005-08-04 12:53:34 -07001765 int still_degraded = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
1767 if (!conf->r1buf_pool)
1768 if (init_resync(conf))
NeilBrown57afd892005-06-21 17:17:13 -07001769 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
Andre Noll58c0fed2009-03-31 14:33:13 +11001771 max_sector = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 if (sector_nr >= max_sector) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001773 /* If we aborted, we need to abort the
1774 * sync on the 'current' bitmap chunk (there will
1775 * only be one in raid1 resync.
1776 * We can find the current addess in mddev->curr_resync
1777 */
NeilBrown6a806c52005-07-15 03:56:35 -07001778 if (mddev->curr_resync < max_sector) /* aborted */
1779 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
NeilBrown191ea9b2005-06-21 17:17:23 -07001780 &sync_blocks, 1);
NeilBrown6a806c52005-07-15 03:56:35 -07001781 else /* completed sync */
NeilBrown191ea9b2005-06-21 17:17:23 -07001782 conf->fullsync = 0;
NeilBrown6a806c52005-07-15 03:56:35 -07001783
1784 bitmap_close_sync(mddev->bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 close_sync(conf);
1786 return 0;
1787 }
1788
NeilBrown07d84d102006-06-26 00:27:56 -07001789 if (mddev->bitmap == NULL &&
1790 mddev->recovery_cp == MaxSector &&
NeilBrown6394cca2006-08-27 01:23:50 -07001791 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
NeilBrown07d84d102006-06-26 00:27:56 -07001792 conf->fullsync == 0) {
1793 *skipped = 1;
1794 return max_sector - sector_nr;
1795 }
NeilBrown6394cca2006-08-27 01:23:50 -07001796 /* before building a request, check if we can skip these blocks..
1797 * This call the bitmap_start_sync doesn't actually record anything
1798 */
NeilBrowne3b97032005-08-04 12:53:34 -07001799 if (!bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
NeilBrowne5de485f2005-11-08 21:39:38 -08001800 !conf->fullsync && !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001801 /* We can skip this block, and probably several more */
1802 *skipped = 1;
1803 return sync_blocks;
1804 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 /*
NeilBrown17999be2006-01-06 00:20:12 -08001806 * If there is non-resync activity waiting for a turn,
1807 * and resync is going fast enough,
1808 * then let it though before starting on this new sync request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 */
NeilBrown17999be2006-01-06 00:20:12 -08001810 if (!go_faster && conf->nr_waiting)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 msleep_interruptible(1000);
NeilBrown17999be2006-01-06 00:20:12 -08001812
NeilBrownb47490c2008-02-06 01:39:50 -08001813 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
NeilBrown17999be2006-01-06 00:20:12 -08001814 raise_barrier(conf);
1815
1816 conf->next_resync = sector_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 r1_bio = mempool_alloc(conf->r1buf_pool, GFP_NOIO);
NeilBrown3e198f72006-01-06 00:20:21 -08001819 rcu_read_lock();
1820 /*
1821 * If we get a correctably read error during resync or recovery,
1822 * we might want to read from a different device. So we
1823 * flag all drives that could conceivably be read from for READ,
1824 * and any others (which will be non-In_sync devices) for WRITE.
1825 * If a read fails, we try reading from something else for which READ
1826 * is OK.
1827 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 r1_bio->mddev = mddev;
1830 r1_bio->sector = sector_nr;
NeilBrown191ea9b2005-06-21 17:17:23 -07001831 r1_bio->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 set_bit(R1BIO_IsSync, &r1_bio->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833
1834 for (i=0; i < conf->raid_disks; i++) {
NeilBrown3e198f72006-01-06 00:20:21 -08001835 mdk_rdev_t *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 bio = r1_bio->bios[i];
1837
1838 /* take from bio_init */
1839 bio->bi_next = NULL;
1840 bio->bi_flags |= 1 << BIO_UPTODATE;
NeilBrown802ba062006-12-13 00:34:13 -08001841 bio->bi_rw = READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 bio->bi_vcnt = 0;
1843 bio->bi_idx = 0;
1844 bio->bi_phys_segments = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 bio->bi_size = 0;
1846 bio->bi_end_io = NULL;
1847 bio->bi_private = NULL;
1848
NeilBrown3e198f72006-01-06 00:20:21 -08001849 rdev = rcu_dereference(conf->mirrors[i].rdev);
1850 if (rdev == NULL ||
1851 test_bit(Faulty, &rdev->flags)) {
NeilBrowne3b97032005-08-04 12:53:34 -07001852 still_degraded = 1;
1853 continue;
NeilBrown3e198f72006-01-06 00:20:21 -08001854 } else if (!test_bit(In_sync, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 bio->bi_rw = WRITE;
1856 bio->bi_end_io = end_sync_write;
1857 write_targets ++;
NeilBrown3e198f72006-01-06 00:20:21 -08001858 } else {
1859 /* may need to read from here */
1860 bio->bi_rw = READ;
1861 bio->bi_end_io = end_sync_read;
1862 if (test_bit(WriteMostly, &rdev->flags)) {
1863 if (wonly < 0)
1864 wonly = i;
1865 } else {
1866 if (disk < 0)
1867 disk = i;
1868 }
1869 read_targets++;
1870 }
1871 atomic_inc(&rdev->nr_pending);
1872 bio->bi_sector = sector_nr + rdev->data_offset;
1873 bio->bi_bdev = rdev->bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 bio->bi_private = r1_bio;
1875 }
NeilBrown3e198f72006-01-06 00:20:21 -08001876 rcu_read_unlock();
1877 if (disk < 0)
1878 disk = wonly;
1879 r1_bio->read_disk = disk;
NeilBrown191ea9b2005-06-21 17:17:23 -07001880
NeilBrown3e198f72006-01-06 00:20:21 -08001881 if (test_bit(MD_RECOVERY_SYNC, &mddev->recovery) && read_targets > 0)
1882 /* extra read targets are also write targets */
1883 write_targets += read_targets-1;
1884
1885 if (write_targets == 0 || read_targets == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 /* There is nowhere to write, so all non-sync
1887 * drives must be failed - so we are finished
1888 */
NeilBrown57afd892005-06-21 17:17:13 -07001889 sector_t rv = max_sector - sector_nr;
1890 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 put_buf(r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 return rv;
1893 }
1894
NeilBrownc6207272008-02-06 01:39:52 -08001895 if (max_sector > mddev->resync_max)
1896 max_sector = mddev->resync_max; /* Don't do IO beyond here */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 nr_sectors = 0;
NeilBrown289e99e2005-06-21 17:17:24 -07001898 sync_blocks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 do {
1900 struct page *page;
1901 int len = PAGE_SIZE;
1902 if (sector_nr + (len>>9) > max_sector)
1903 len = (max_sector - sector_nr) << 9;
1904 if (len == 0)
1905 break;
NeilBrown6a806c52005-07-15 03:56:35 -07001906 if (sync_blocks == 0) {
1907 if (!bitmap_start_sync(mddev->bitmap, sector_nr,
NeilBrowne5de485f2005-11-08 21:39:38 -08001908 &sync_blocks, still_degraded) &&
1909 !conf->fullsync &&
1910 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery))
NeilBrown6a806c52005-07-15 03:56:35 -07001911 break;
Eric Sesterhenn9e77c482006-04-01 01:08:49 +02001912 BUG_ON(sync_blocks < (PAGE_SIZE>>9));
NeilBrown6a806c52005-07-15 03:56:35 -07001913 if (len > (sync_blocks<<9))
1914 len = sync_blocks<<9;
NeilBrownab7a30c2005-06-21 17:17:23 -07001915 }
NeilBrown191ea9b2005-06-21 17:17:23 -07001916
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 for (i=0 ; i < conf->raid_disks; i++) {
1918 bio = r1_bio->bios[i];
1919 if (bio->bi_end_io) {
NeilBrownd11c1712006-01-06 00:20:26 -08001920 page = bio->bi_io_vec[bio->bi_vcnt].bv_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 if (bio_add_page(bio, page, len, 0) == 0) {
1922 /* stop here */
NeilBrownd11c1712006-01-06 00:20:26 -08001923 bio->bi_io_vec[bio->bi_vcnt].bv_page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 while (i > 0) {
1925 i--;
1926 bio = r1_bio->bios[i];
NeilBrown6a806c52005-07-15 03:56:35 -07001927 if (bio->bi_end_io==NULL)
1928 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 /* remove last page from this bio */
1930 bio->bi_vcnt--;
1931 bio->bi_size -= len;
1932 bio->bi_flags &= ~(1<< BIO_SEG_VALID);
1933 }
1934 goto bio_full;
1935 }
1936 }
1937 }
1938 nr_sectors += len>>9;
1939 sector_nr += len>>9;
NeilBrown191ea9b2005-06-21 17:17:23 -07001940 sync_blocks -= (len>>9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 } while (r1_bio->bios[disk]->bi_vcnt < RESYNC_PAGES);
1942 bio_full:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 r1_bio->sectors = nr_sectors;
1944
NeilBrownd11c1712006-01-06 00:20:26 -08001945 /* For a user-requested sync, we read all readable devices and do a
1946 * compare
1947 */
1948 if (test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) {
1949 atomic_set(&r1_bio->remaining, read_targets);
1950 for (i=0; i<conf->raid_disks; i++) {
1951 bio = r1_bio->bios[i];
1952 if (bio->bi_end_io == end_sync_read) {
NeilBrownddac7c72006-08-31 21:27:36 -07001953 md_sync_acct(bio->bi_bdev, nr_sectors);
NeilBrownd11c1712006-01-06 00:20:26 -08001954 generic_make_request(bio);
1955 }
1956 }
1957 } else {
1958 atomic_set(&r1_bio->remaining, 1);
1959 bio = r1_bio->bios[r1_bio->read_disk];
NeilBrownddac7c72006-08-31 21:27:36 -07001960 md_sync_acct(bio->bi_bdev, nr_sectors);
NeilBrownd11c1712006-01-06 00:20:26 -08001961 generic_make_request(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
NeilBrownd11c1712006-01-06 00:20:26 -08001963 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 return nr_sectors;
1965}
1966
Dan Williams80c3a6c2009-03-17 18:10:40 -07001967static sector_t raid1_size(mddev_t *mddev, sector_t sectors, int raid_disks)
1968{
1969 if (sectors)
1970 return sectors;
1971
1972 return mddev->dev_sectors;
1973}
1974
NeilBrown709ae482009-12-14 12:49:51 +11001975static conf_t *setup_conf(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976{
1977 conf_t *conf;
NeilBrown709ae482009-12-14 12:49:51 +11001978 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 mirror_info_t *disk;
1980 mdk_rdev_t *rdev;
NeilBrown709ae482009-12-14 12:49:51 +11001981 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982
NeilBrown9ffae0c2006-01-06 00:20:32 -08001983 conf = kzalloc(sizeof(conf_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 if (!conf)
NeilBrown709ae482009-12-14 12:49:51 +11001985 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
NeilBrown9ffae0c2006-01-06 00:20:32 -08001987 conf->mirrors = kzalloc(sizeof(struct mirror_info)*mddev->raid_disks,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 GFP_KERNEL);
1989 if (!conf->mirrors)
NeilBrown709ae482009-12-14 12:49:51 +11001990 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991
NeilBrownddaf22a2006-01-06 00:20:19 -08001992 conf->tmppage = alloc_page(GFP_KERNEL);
1993 if (!conf->tmppage)
NeilBrown709ae482009-12-14 12:49:51 +11001994 goto abort;
NeilBrownddaf22a2006-01-06 00:20:19 -08001995
NeilBrown709ae482009-12-14 12:49:51 +11001996 conf->poolinfo = kzalloc(sizeof(*conf->poolinfo), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 if (!conf->poolinfo)
NeilBrown709ae482009-12-14 12:49:51 +11001998 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 conf->poolinfo->raid_disks = mddev->raid_disks;
2000 conf->r1bio_pool = mempool_create(NR_RAID1_BIOS, r1bio_pool_alloc,
2001 r1bio_pool_free,
2002 conf->poolinfo);
2003 if (!conf->r1bio_pool)
NeilBrown709ae482009-12-14 12:49:51 +11002004 goto abort;
2005
NeilBrowned9bfdf2009-10-16 15:55:44 +11002006 conf->poolinfo->mddev = mddev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
Neil Browne7e72bf2008-05-14 16:05:54 -07002008 spin_lock_init(&conf->device_lock);
Cheng Renquan159ec1f2009-01-09 08:31:08 +11002009 list_for_each_entry(rdev, &mddev->disks, same_set) {
NeilBrown709ae482009-12-14 12:49:51 +11002010 int disk_idx = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 if (disk_idx >= mddev->raid_disks
2012 || disk_idx < 0)
2013 continue;
2014 disk = conf->mirrors + disk_idx;
2015
2016 disk->rdev = rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
2018 disk->head_position = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 }
2020 conf->raid_disks = mddev->raid_disks;
2021 conf->mddev = mddev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 INIT_LIST_HEAD(&conf->retry_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023
2024 spin_lock_init(&conf->resync_lock);
NeilBrown17999be2006-01-06 00:20:12 -08002025 init_waitqueue_head(&conf->wait_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
NeilBrown191ea9b2005-06-21 17:17:23 -07002027 bio_list_init(&conf->pending_bio_list);
2028 bio_list_init(&conf->flushing_bio_list);
2029
NeilBrown709ae482009-12-14 12:49:51 +11002030 conf->last_used = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 for (i = 0; i < conf->raid_disks; i++) {
2032
2033 disk = conf->mirrors + i;
2034
NeilBrown5fd6c1d2006-06-26 00:27:40 -07002035 if (!disk->rdev ||
2036 !test_bit(In_sync, &disk->rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 disk->head_position = 0;
NeilBrown918f0232007-08-22 14:01:52 -07002038 if (disk->rdev)
2039 conf->fullsync = 1;
NeilBrown709ae482009-12-14 12:49:51 +11002040 } else if (conf->last_used < 0)
2041 /*
2042 * The first working device is used as a
2043 * starting point to read balancing.
2044 */
2045 conf->last_used = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 }
NeilBrown709ae482009-12-14 12:49:51 +11002047
2048 err = -EIO;
2049 if (conf->last_used < 0) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002050 printk(KERN_ERR "md/raid1:%s: no operational mirrors\n",
NeilBrown709ae482009-12-14 12:49:51 +11002051 mdname(mddev));
2052 goto abort;
NeilBrown11ce99e2006-10-03 01:15:52 -07002053 }
NeilBrown709ae482009-12-14 12:49:51 +11002054 err = -ENOMEM;
2055 conf->thread = md_register_thread(raid1d, mddev, NULL);
2056 if (!conf->thread) {
NeilBrown191ea9b2005-06-21 17:17:23 -07002057 printk(KERN_ERR
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002058 "md/raid1:%s: couldn't allocate thread\n",
NeilBrown191ea9b2005-06-21 17:17:23 -07002059 mdname(mddev));
NeilBrown709ae482009-12-14 12:49:51 +11002060 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 }
NeilBrown191ea9b2005-06-21 17:17:23 -07002062
NeilBrown709ae482009-12-14 12:49:51 +11002063 return conf;
2064
2065 abort:
2066 if (conf) {
2067 if (conf->r1bio_pool)
2068 mempool_destroy(conf->r1bio_pool);
2069 kfree(conf->mirrors);
2070 safe_put_page(conf->tmppage);
2071 kfree(conf->poolinfo);
2072 kfree(conf);
2073 }
2074 return ERR_PTR(err);
2075}
2076
2077static int run(mddev_t *mddev)
2078{
2079 conf_t *conf;
2080 int i;
2081 mdk_rdev_t *rdev;
2082
2083 if (mddev->level != 1) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002084 printk(KERN_ERR "md/raid1:%s: raid level not set to mirroring (%d)\n",
NeilBrown709ae482009-12-14 12:49:51 +11002085 mdname(mddev), mddev->level);
2086 return -EIO;
2087 }
2088 if (mddev->reshape_position != MaxSector) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002089 printk(KERN_ERR "md/raid1:%s: reshape_position set but not supported\n",
NeilBrown709ae482009-12-14 12:49:51 +11002090 mdname(mddev));
2091 return -EIO;
2092 }
2093 /*
2094 * copy the already verified devices into our private RAID1
2095 * bookkeeping area. [whatever we allocate in run(),
2096 * should be freed in stop()]
2097 */
2098 if (mddev->private == NULL)
2099 conf = setup_conf(mddev);
2100 else
2101 conf = mddev->private;
2102
2103 if (IS_ERR(conf))
2104 return PTR_ERR(conf);
2105
2106 mddev->queue->queue_lock = &conf->device_lock;
2107 list_for_each_entry(rdev, &mddev->disks, same_set) {
2108 disk_stack_limits(mddev->gendisk, rdev->bdev,
2109 rdev->data_offset << 9);
2110 /* as we don't honour merge_bvec_fn, we must never risk
NeilBrown627a2d32010-03-08 16:44:38 +11002111 * violating it, so limit ->max_segments to 1 lying within
2112 * a single page, as a one page request is never in violation.
NeilBrown709ae482009-12-14 12:49:51 +11002113 */
NeilBrown627a2d32010-03-08 16:44:38 +11002114 if (rdev->bdev->bd_disk->queue->merge_bvec_fn) {
2115 blk_queue_max_segments(mddev->queue, 1);
2116 blk_queue_segment_boundary(mddev->queue,
2117 PAGE_CACHE_SIZE - 1);
2118 }
NeilBrown709ae482009-12-14 12:49:51 +11002119 }
2120
2121 mddev->degraded = 0;
2122 for (i=0; i < conf->raid_disks; i++)
2123 if (conf->mirrors[i].rdev == NULL ||
2124 !test_bit(In_sync, &conf->mirrors[i].rdev->flags) ||
2125 test_bit(Faulty, &conf->mirrors[i].rdev->flags))
2126 mddev->degraded++;
2127
2128 if (conf->raid_disks - mddev->degraded == 1)
2129 mddev->recovery_cp = MaxSector;
2130
Andre Noll8c6ac8682009-06-18 08:48:06 +10002131 if (mddev->recovery_cp != MaxSector)
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002132 printk(KERN_NOTICE "md/raid1:%s: not clean"
Andre Noll8c6ac8682009-06-18 08:48:06 +10002133 " -- starting background reconstruction\n",
2134 mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 printk(KERN_INFO
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002136 "md/raid1:%s: active with %d out of %d mirrors\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 mdname(mddev), mddev->raid_disks - mddev->degraded,
2138 mddev->raid_disks);
NeilBrown709ae482009-12-14 12:49:51 +11002139
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 /*
2141 * Ok, everything is just fine now
2142 */
NeilBrown709ae482009-12-14 12:49:51 +11002143 mddev->thread = conf->thread;
2144 conf->thread = NULL;
2145 mddev->private = conf;
2146
Dan Williams1f403622009-03-31 14:59:03 +11002147 md_set_array_sectors(mddev, raid1_size(mddev, 0, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
NeilBrown7a5febe2005-05-16 21:53:16 -07002149 mddev->queue->unplug_fn = raid1_unplug;
NeilBrown0d129222006-10-03 01:15:54 -07002150 mddev->queue->backing_dev_info.congested_fn = raid1_congested;
2151 mddev->queue->backing_dev_info.congested_data = mddev;
Andre Nollac5e7112009-08-03 10:59:47 +10002152 md_integrity_register(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154}
2155
2156static int stop(mddev_t *mddev)
2157{
NeilBrown070ec552009-06-16 16:54:21 +10002158 conf_t *conf = mddev->private;
NeilBrown4b6d2872005-09-09 16:23:47 -07002159 struct bitmap *bitmap = mddev->bitmap;
NeilBrown4b6d2872005-09-09 16:23:47 -07002160
2161 /* wait for behind writes to complete */
NeilBrowne5551902010-03-31 11:21:44 +11002162 if (bitmap && atomic_read(&bitmap->behind_writes) > 0) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002163 printk(KERN_INFO "md/raid1:%s: behind writes in progress - waiting to stop.\n",
2164 mdname(mddev));
NeilBrown4b6d2872005-09-09 16:23:47 -07002165 /* need to kick something here to make sure I/O goes? */
NeilBrowne5551902010-03-31 11:21:44 +11002166 wait_event(bitmap->behind_wait,
2167 atomic_read(&bitmap->behind_writes) == 0);
NeilBrown4b6d2872005-09-09 16:23:47 -07002168 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169
NeilBrown409c57f2009-03-31 14:39:39 +11002170 raise_barrier(conf);
2171 lower_barrier(conf);
2172
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 md_unregister_thread(mddev->thread);
2174 mddev->thread = NULL;
2175 blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/
2176 if (conf->r1bio_pool)
2177 mempool_destroy(conf->r1bio_pool);
Jesper Juhl990a8ba2005-06-21 17:17:30 -07002178 kfree(conf->mirrors);
2179 kfree(conf->poolinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 kfree(conf);
2181 mddev->private = NULL;
2182 return 0;
2183}
2184
2185static int raid1_resize(mddev_t *mddev, sector_t sectors)
2186{
2187 /* no resync is happening, and there is enough space
2188 * on all devices, so we can resize.
2189 * We need to make sure resync covers any new space.
2190 * If the array is shrinking we should possibly wait until
2191 * any io in the removed space completes, but it hardly seems
2192 * worth it.
2193 */
Dan Williams1f403622009-03-31 14:59:03 +11002194 md_set_array_sectors(mddev, raid1_size(mddev, sectors, 0));
Dan Williamsb522adc2009-03-31 15:00:31 +11002195 if (mddev->array_sectors > raid1_size(mddev, sectors, 0))
2196 return -EINVAL;
Andre Nollf233ea52008-07-21 17:05:22 +10002197 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10002198 revalidate_disk(mddev->gendisk);
Dan Williamsb522adc2009-03-31 15:00:31 +11002199 if (sectors > mddev->dev_sectors &&
Andre Nollf233ea52008-07-21 17:05:22 +10002200 mddev->recovery_cp == MaxSector) {
Andre Noll58c0fed2009-03-31 14:33:13 +11002201 mddev->recovery_cp = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
2203 }
Dan Williamsb522adc2009-03-31 15:00:31 +11002204 mddev->dev_sectors = sectors;
NeilBrown4b5c7ae2005-07-27 11:43:28 -07002205 mddev->resync_max_sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 return 0;
2207}
2208
NeilBrown63c70c42006-03-27 01:18:13 -08002209static int raid1_reshape(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210{
2211 /* We need to:
2212 * 1/ resize the r1bio_pool
2213 * 2/ resize conf->mirrors
2214 *
2215 * We allocate a new r1bio_pool if we can.
2216 * Then raise a device barrier and wait until all IO stops.
2217 * Then resize conf->mirrors and swap in the new r1bio pool.
NeilBrown6ea9c072005-06-21 17:17:09 -07002218 *
2219 * At the same time, we "pack" the devices so that all the missing
2220 * devices have the higher raid_disk numbers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 */
2222 mempool_t *newpool, *oldpool;
2223 struct pool_info *newpoolinfo;
2224 mirror_info_t *newmirrors;
NeilBrown070ec552009-06-16 16:54:21 +10002225 conf_t *conf = mddev->private;
NeilBrown63c70c42006-03-27 01:18:13 -08002226 int cnt, raid_disks;
NeilBrownc04be0a2006-10-03 01:15:53 -07002227 unsigned long flags;
Dan Williamsb5470dc2008-06-27 21:44:04 -07002228 int d, d2, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229
NeilBrown63c70c42006-03-27 01:18:13 -08002230 /* Cannot change chunk_size, layout, or level */
Andre Noll664e7c42009-06-18 08:45:27 +10002231 if (mddev->chunk_sectors != mddev->new_chunk_sectors ||
NeilBrown63c70c42006-03-27 01:18:13 -08002232 mddev->layout != mddev->new_layout ||
2233 mddev->level != mddev->new_level) {
Andre Noll664e7c42009-06-18 08:45:27 +10002234 mddev->new_chunk_sectors = mddev->chunk_sectors;
NeilBrown63c70c42006-03-27 01:18:13 -08002235 mddev->new_layout = mddev->layout;
2236 mddev->new_level = mddev->level;
2237 return -EINVAL;
2238 }
2239
Dan Williamsb5470dc2008-06-27 21:44:04 -07002240 err = md_allow_write(mddev);
2241 if (err)
2242 return err;
NeilBrown2a2275d2007-01-26 00:57:11 -08002243
NeilBrown63c70c42006-03-27 01:18:13 -08002244 raid_disks = mddev->raid_disks + mddev->delta_disks;
2245
NeilBrown6ea9c072005-06-21 17:17:09 -07002246 if (raid_disks < conf->raid_disks) {
2247 cnt=0;
2248 for (d= 0; d < conf->raid_disks; d++)
2249 if (conf->mirrors[d].rdev)
2250 cnt++;
2251 if (cnt > raid_disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 return -EBUSY;
NeilBrown6ea9c072005-06-21 17:17:09 -07002253 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254
2255 newpoolinfo = kmalloc(sizeof(*newpoolinfo), GFP_KERNEL);
2256 if (!newpoolinfo)
2257 return -ENOMEM;
2258 newpoolinfo->mddev = mddev;
2259 newpoolinfo->raid_disks = raid_disks;
2260
2261 newpool = mempool_create(NR_RAID1_BIOS, r1bio_pool_alloc,
2262 r1bio_pool_free, newpoolinfo);
2263 if (!newpool) {
2264 kfree(newpoolinfo);
2265 return -ENOMEM;
2266 }
NeilBrown9ffae0c2006-01-06 00:20:32 -08002267 newmirrors = kzalloc(sizeof(struct mirror_info) * raid_disks, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 if (!newmirrors) {
2269 kfree(newpoolinfo);
2270 mempool_destroy(newpool);
2271 return -ENOMEM;
2272 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273
NeilBrown17999be2006-01-06 00:20:12 -08002274 raise_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
2276 /* ok, everything is stopped */
2277 oldpool = conf->r1bio_pool;
2278 conf->r1bio_pool = newpool;
NeilBrown6ea9c072005-06-21 17:17:09 -07002279
NeilBrowna88aa782007-08-22 14:01:53 -07002280 for (d = d2 = 0; d < conf->raid_disks; d++) {
2281 mdk_rdev_t *rdev = conf->mirrors[d].rdev;
2282 if (rdev && rdev->raid_disk != d2) {
2283 char nm[20];
2284 sprintf(nm, "rd%d", rdev->raid_disk);
2285 sysfs_remove_link(&mddev->kobj, nm);
2286 rdev->raid_disk = d2;
2287 sprintf(nm, "rd%d", rdev->raid_disk);
2288 sysfs_remove_link(&mddev->kobj, nm);
2289 if (sysfs_create_link(&mddev->kobj,
2290 &rdev->kobj, nm))
2291 printk(KERN_WARNING
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002292 "md/raid1:%s: cannot register "
2293 "%s\n",
2294 mdname(mddev), nm);
NeilBrown6ea9c072005-06-21 17:17:09 -07002295 }
NeilBrowna88aa782007-08-22 14:01:53 -07002296 if (rdev)
2297 newmirrors[d2++].rdev = rdev;
2298 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 kfree(conf->mirrors);
2300 conf->mirrors = newmirrors;
2301 kfree(conf->poolinfo);
2302 conf->poolinfo = newpoolinfo;
2303
NeilBrownc04be0a2006-10-03 01:15:53 -07002304 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 mddev->degraded += (raid_disks - conf->raid_disks);
NeilBrownc04be0a2006-10-03 01:15:53 -07002306 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 conf->raid_disks = mddev->raid_disks = raid_disks;
NeilBrown63c70c42006-03-27 01:18:13 -08002308 mddev->delta_disks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309
NeilBrown6ea9c072005-06-21 17:17:09 -07002310 conf->last_used = 0; /* just make sure it is in-range */
NeilBrown17999be2006-01-06 00:20:12 -08002311 lower_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312
2313 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
2314 md_wakeup_thread(mddev->thread);
2315
2316 mempool_destroy(oldpool);
2317 return 0;
2318}
2319
NeilBrown500af872005-09-09 16:23:58 -07002320static void raid1_quiesce(mddev_t *mddev, int state)
NeilBrown36fa3062005-09-09 16:23:45 -07002321{
NeilBrown070ec552009-06-16 16:54:21 +10002322 conf_t *conf = mddev->private;
NeilBrown36fa3062005-09-09 16:23:45 -07002323
2324 switch(state) {
NeilBrown6eef4b22009-12-14 12:49:51 +11002325 case 2: /* wake for suspend */
2326 wake_up(&conf->wait_barrier);
2327 break;
NeilBrown9e6603d2005-09-09 16:23:48 -07002328 case 1:
NeilBrown17999be2006-01-06 00:20:12 -08002329 raise_barrier(conf);
NeilBrown36fa3062005-09-09 16:23:45 -07002330 break;
NeilBrown9e6603d2005-09-09 16:23:48 -07002331 case 0:
NeilBrown17999be2006-01-06 00:20:12 -08002332 lower_barrier(conf);
NeilBrown36fa3062005-09-09 16:23:45 -07002333 break;
2334 }
NeilBrown36fa3062005-09-09 16:23:45 -07002335}
2336
NeilBrown709ae482009-12-14 12:49:51 +11002337static void *raid1_takeover(mddev_t *mddev)
2338{
2339 /* raid1 can take over:
2340 * raid5 with 2 devices, any layout or chunk size
2341 */
2342 if (mddev->level == 5 && mddev->raid_disks == 2) {
2343 conf_t *conf;
2344 mddev->new_level = 1;
2345 mddev->new_layout = 0;
2346 mddev->new_chunk_sectors = 0;
2347 conf = setup_conf(mddev);
2348 if (!IS_ERR(conf))
2349 conf->barrier = 1;
2350 return conf;
2351 }
2352 return ERR_PTR(-EINVAL);
2353}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354
NeilBrown2604b702006-01-06 00:20:36 -08002355static struct mdk_personality raid1_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356{
2357 .name = "raid1",
NeilBrown2604b702006-01-06 00:20:36 -08002358 .level = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 .owner = THIS_MODULE,
2360 .make_request = make_request,
2361 .run = run,
2362 .stop = stop,
2363 .status = status,
2364 .error_handler = error,
2365 .hot_add_disk = raid1_add_disk,
2366 .hot_remove_disk= raid1_remove_disk,
2367 .spare_active = raid1_spare_active,
2368 .sync_request = sync_request,
2369 .resize = raid1_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07002370 .size = raid1_size,
NeilBrown63c70c42006-03-27 01:18:13 -08002371 .check_reshape = raid1_reshape,
NeilBrown36fa3062005-09-09 16:23:45 -07002372 .quiesce = raid1_quiesce,
NeilBrown709ae482009-12-14 12:49:51 +11002373 .takeover = raid1_takeover,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374};
2375
2376static int __init raid_init(void)
2377{
NeilBrown2604b702006-01-06 00:20:36 -08002378 return register_md_personality(&raid1_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379}
2380
2381static void raid_exit(void)
2382{
NeilBrown2604b702006-01-06 00:20:36 -08002383 unregister_md_personality(&raid1_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384}
2385
2386module_init(raid_init);
2387module_exit(raid_exit);
2388MODULE_LICENSE("GPL");
NeilBrown0efb9e62009-12-14 12:49:58 +11002389MODULE_DESCRIPTION("RAID1 (mirroring) personality for MD");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390MODULE_ALIAS("md-personality-3"); /* RAID1 */
NeilBrownd9d166c2006-01-06 00:20:51 -08002391MODULE_ALIAS("md-raid1");
NeilBrown2604b702006-01-06 00:20:36 -08002392MODULE_ALIAS("md-level-1");