blob: 5ff75c4d3af6f5078aa7e700b3d9dcb160f19123 [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())
299 printk(KERN_ERR "raid1: %s: rescheduling sector %llu\n",
300 bdevname(conf->mirrors[mirror].rdev->bdev,b), (unsigned long long)r1_bio->sector);
301 reschedule_retry(r1_bio);
302 }
303
304 rdev_dec_pending(conf->mirrors[mirror].rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
NeilBrown6712ecf2007-09-27 12:47:43 +0200307static void raid1_end_write_request(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
309 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
H Hartley Sweeten7b928132010-03-08 16:02:40 +1100310 r1bio_t *r1_bio = bio->bi_private;
NeilBrowna9701a32005-11-08 21:39:34 -0800311 int mirror, behind = test_bit(R1BIO_BehindIO, &r1_bio->state);
NeilBrown070ec552009-06-16 16:54:21 +1000312 conf_t *conf = r1_bio->mddev->private;
NeilBrown04b857f2006-03-09 17:33:46 -0800313 struct bio *to_put = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
316 for (mirror = 0; mirror < conf->raid_disks; mirror++)
317 if (r1_bio->bios[mirror] == bio)
318 break;
319
NeilBrownbea27712006-05-01 12:15:46 -0700320 if (error == -EOPNOTSUPP && test_bit(R1BIO_Barrier, &r1_bio->state)) {
NeilBrowna9701a32005-11-08 21:39:34 -0800321 set_bit(BarriersNotsupp, &conf->mirrors[mirror].rdev->flags);
322 set_bit(R1BIO_BarrierRetry, &r1_bio->state);
323 r1_bio->mddev->barriers_work = 0;
NeilBrown5e7dd2a2006-05-01 12:15:47 -0700324 /* Don't rdev_dec_pending in this branch - keep it for the retry */
NeilBrowna9701a32005-11-08 21:39:34 -0800325 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 /*
NeilBrowna9701a32005-11-08 21:39:34 -0800327 * this branch is our 'one mirror IO has finished' event handler:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 */
NeilBrowna9701a32005-11-08 21:39:34 -0800329 r1_bio->bios[mirror] = NULL;
NeilBrown04b857f2006-03-09 17:33:46 -0800330 to_put = bio;
NeilBrowna9701a32005-11-08 21:39:34 -0800331 if (!uptodate) {
332 md_error(r1_bio->mddev, conf->mirrors[mirror].rdev);
333 /* an I/O failed, we can't clear the bitmap */
334 set_bit(R1BIO_Degraded, &r1_bio->state);
335 } else
336 /*
337 * Set R1BIO_Uptodate in our master bio, so that
338 * we will return a good error code for to the higher
339 * levels even if IO on some other mirrored buffer fails.
340 *
341 * The 'master' represents the composite IO operation to
342 * user-side. So if something waits for IO, then it will
343 * wait for the 'master' bio.
344 */
345 set_bit(R1BIO_Uptodate, &r1_bio->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
NeilBrowna9701a32005-11-08 21:39:34 -0800347 update_head_pos(mirror, r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
NeilBrowna9701a32005-11-08 21:39:34 -0800349 if (behind) {
350 if (test_bit(WriteMostly, &conf->mirrors[mirror].rdev->flags))
351 atomic_dec(&r1_bio->behind_remaining);
NeilBrown4b6d2872005-09-09 16:23:47 -0700352
NeilBrowna9701a32005-11-08 21:39:34 -0800353 /* In behind mode, we ACK the master bio once the I/O has safely
354 * reached all non-writemostly disks. Setting the Returned bit
355 * ensures that this gets done only once -- we don't ever want to
356 * return -EIO here, instead we'll wait */
NeilBrown4b6d2872005-09-09 16:23:47 -0700357
NeilBrowna9701a32005-11-08 21:39:34 -0800358 if (atomic_read(&r1_bio->behind_remaining) >= (atomic_read(&r1_bio->remaining)-1) &&
359 test_bit(R1BIO_Uptodate, &r1_bio->state)) {
360 /* Maybe we can return now */
361 if (!test_and_set_bit(R1BIO_Returned, &r1_bio->state)) {
362 struct bio *mbio = r1_bio->master_bio;
363 PRINTK(KERN_DEBUG "raid1: behind end write sectors %llu-%llu\n",
364 (unsigned long long) mbio->bi_sector,
365 (unsigned long long) mbio->bi_sector +
366 (mbio->bi_size >> 9) - 1);
NeilBrown6712ecf2007-09-27 12:47:43 +0200367 bio_endio(mbio, 0);
NeilBrowna9701a32005-11-08 21:39:34 -0800368 }
NeilBrown4b6d2872005-09-09 16:23:47 -0700369 }
370 }
NeilBrown5e7dd2a2006-05-01 12:15:47 -0700371 rdev_dec_pending(conf->mirrors[mirror].rdev, conf->mddev);
NeilBrown4b6d2872005-09-09 16:23:47 -0700372 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 /*
374 *
375 * Let's see if all mirrored write operations have finished
376 * already.
377 */
378 if (atomic_dec_and_test(&r1_bio->remaining)) {
NeilBrownc70810b2006-06-26 00:27:35 -0700379 if (test_bit(R1BIO_BarrierRetry, &r1_bio->state))
NeilBrowna9701a32005-11-08 21:39:34 -0800380 reschedule_retry(r1_bio);
NeilBrownc70810b2006-06-26 00:27:35 -0700381 else {
382 /* it really is the end of this request */
383 if (test_bit(R1BIO_BehindIO, &r1_bio->state)) {
384 /* free extra copy of the data pages */
385 int i = bio->bi_vcnt;
386 while (i--)
387 safe_put_page(bio->bi_io_vec[i].bv_page);
388 }
389 /* clear the bitmap if all writes complete successfully */
390 bitmap_endwrite(r1_bio->mddev->bitmap, r1_bio->sector,
391 r1_bio->sectors,
392 !test_bit(R1BIO_Degraded, &r1_bio->state),
393 behind);
394 md_write_end(r1_bio->mddev);
395 raid_end_bio_io(r1_bio);
NeilBrowna9701a32005-11-08 21:39:34 -0800396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 }
NeilBrownc70810b2006-06-26 00:27:35 -0700398
NeilBrown04b857f2006-03-09 17:33:46 -0800399 if (to_put)
400 bio_put(to_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401}
402
403
404/*
405 * This routine returns the disk from which the requested read should
406 * be done. There is a per-array 'next expected sequential IO' sector
407 * number - if this matches on the next IO then we use the last disk.
408 * There is also a per-disk 'last know head position' sector that is
409 * maintained from IRQ contexts, both the normal and the resync IO
410 * completion handlers update this position correctly. If there is no
411 * perfect sequential match then we pick the disk whose head is closest.
412 *
413 * If there are 2 mirrors in the same 2 devices, performance degrades
414 * because position is mirror, not device based.
415 *
416 * The rdev for the device selected will have nr_pending incremented.
417 */
418static int read_balance(conf_t *conf, r1bio_t *r1_bio)
419{
420 const unsigned long this_sector = r1_bio->sector;
421 int new_disk = conf->last_used, disk = new_disk;
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700422 int wonly_disk = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 const int sectors = r1_bio->sectors;
424 sector_t new_distance, current_distance;
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700425 mdk_rdev_t *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427 rcu_read_lock();
428 /*
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700429 * Check if we can balance. We can balance on the whole
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 * device if no resync is going on, or below the resync window.
431 * We take the first readable disk when above the resync window.
432 */
433 retry:
434 if (conf->mddev->recovery_cp < MaxSector &&
435 (this_sector + sectors >= conf->next_resync)) {
436 /* Choose the first operation device, for consistancy */
437 new_disk = 0;
438
Suzanne Woodd6065f72005-11-08 21:39:27 -0800439 for (rdev = rcu_dereference(conf->mirrors[new_disk].rdev);
NeilBrowncf30a472006-01-06 00:20:23 -0800440 r1_bio->bios[new_disk] == IO_BLOCKED ||
NeilBrownb2d444d2005-11-08 21:39:31 -0800441 !rdev || !test_bit(In_sync, &rdev->flags)
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700442 || test_bit(WriteMostly, &rdev->flags);
Suzanne Woodd6065f72005-11-08 21:39:27 -0800443 rdev = rcu_dereference(conf->mirrors[++new_disk].rdev)) {
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700444
NeilBrowncf30a472006-01-06 00:20:23 -0800445 if (rdev && test_bit(In_sync, &rdev->flags) &&
446 r1_bio->bios[new_disk] != IO_BLOCKED)
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700447 wonly_disk = new_disk;
448
449 if (new_disk == conf->raid_disks - 1) {
450 new_disk = wonly_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 break;
452 }
453 }
454 goto rb_out;
455 }
456
457
458 /* make sure the disk is operational */
Suzanne Woodd6065f72005-11-08 21:39:27 -0800459 for (rdev = rcu_dereference(conf->mirrors[new_disk].rdev);
NeilBrowncf30a472006-01-06 00:20:23 -0800460 r1_bio->bios[new_disk] == IO_BLOCKED ||
NeilBrownb2d444d2005-11-08 21:39:31 -0800461 !rdev || !test_bit(In_sync, &rdev->flags) ||
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700462 test_bit(WriteMostly, &rdev->flags);
Suzanne Woodd6065f72005-11-08 21:39:27 -0800463 rdev = rcu_dereference(conf->mirrors[new_disk].rdev)) {
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700464
NeilBrowncf30a472006-01-06 00:20:23 -0800465 if (rdev && test_bit(In_sync, &rdev->flags) &&
466 r1_bio->bios[new_disk] != IO_BLOCKED)
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700467 wonly_disk = new_disk;
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 if (new_disk <= 0)
470 new_disk = conf->raid_disks;
471 new_disk--;
472 if (new_disk == disk) {
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700473 new_disk = wonly_disk;
474 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 }
476 }
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700477
478 if (new_disk < 0)
479 goto rb_out;
480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 disk = new_disk;
482 /* now disk == new_disk == starting point for search */
483
484 /*
485 * Don't change to another disk for sequential reads:
486 */
487 if (conf->next_seq_sect == this_sector)
488 goto rb_out;
489 if (this_sector == conf->mirrors[new_disk].head_position)
490 goto rb_out;
491
492 current_distance = abs(this_sector - conf->mirrors[disk].head_position);
493
494 /* Find the disk whose head is closest */
495
496 do {
497 if (disk <= 0)
498 disk = conf->raid_disks;
499 disk--;
500
Suzanne Woodd6065f72005-11-08 21:39:27 -0800501 rdev = rcu_dereference(conf->mirrors[disk].rdev);
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700502
NeilBrowncf30a472006-01-06 00:20:23 -0800503 if (!rdev || r1_bio->bios[disk] == IO_BLOCKED ||
NeilBrownb2d444d2005-11-08 21:39:31 -0800504 !test_bit(In_sync, &rdev->flags) ||
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700505 test_bit(WriteMostly, &rdev->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 continue;
507
508 if (!atomic_read(&rdev->nr_pending)) {
509 new_disk = disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 break;
511 }
512 new_distance = abs(this_sector - conf->mirrors[disk].head_position);
513 if (new_distance < current_distance) {
514 current_distance = new_distance;
515 new_disk = disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 }
517 } while (disk != conf->last_used);
518
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700519 rb_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
521
522 if (new_disk >= 0) {
Suzanne Woodd6065f72005-11-08 21:39:27 -0800523 rdev = rcu_dereference(conf->mirrors[new_disk].rdev);
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700524 if (!rdev)
525 goto retry;
526 atomic_inc(&rdev->nr_pending);
NeilBrownb2d444d2005-11-08 21:39:31 -0800527 if (!test_bit(In_sync, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 /* cannot risk returning a device that failed
529 * before we inc'ed nr_pending
530 */
NeilBrown03c902e2006-01-06 00:20:46 -0800531 rdev_dec_pending(rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 goto retry;
533 }
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700534 conf->next_seq_sect = this_sector + sectors;
535 conf->last_used = new_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 }
537 rcu_read_unlock();
538
539 return new_disk;
540}
541
542static void unplug_slaves(mddev_t *mddev)
543{
NeilBrown070ec552009-06-16 16:54:21 +1000544 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 int i;
546
547 rcu_read_lock();
548 for (i=0; i<mddev->raid_disks; i++) {
Suzanne Woodd6065f72005-11-08 21:39:27 -0800549 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
NeilBrownb2d444d2005-11-08 21:39:31 -0800550 if (rdev && !test_bit(Faulty, &rdev->flags) && atomic_read(&rdev->nr_pending)) {
Jens Axboe165125e2007-07-24 09:28:11 +0200551 struct request_queue *r_queue = bdev_get_queue(rdev->bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
553 atomic_inc(&rdev->nr_pending);
554 rcu_read_unlock();
555
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500556 blk_unplug(r_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
558 rdev_dec_pending(rdev, mddev);
559 rcu_read_lock();
560 }
561 }
562 rcu_read_unlock();
563}
564
Jens Axboe165125e2007-07-24 09:28:11 +0200565static void raid1_unplug(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
NeilBrown191ea9b2005-06-21 17:17:23 -0700567 mddev_t *mddev = q->queuedata;
568
569 unplug_slaves(mddev);
570 md_wakeup_thread(mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571}
572
NeilBrown0d129222006-10-03 01:15:54 -0700573static int raid1_congested(void *data, int bits)
574{
575 mddev_t *mddev = data;
NeilBrown070ec552009-06-16 16:54:21 +1000576 conf_t *conf = mddev->private;
NeilBrown0d129222006-10-03 01:15:54 -0700577 int i, ret = 0;
578
NeilBrown3fa841d2009-09-23 18:10:29 +1000579 if (mddev_congested(mddev, bits))
580 return 1;
581
NeilBrown0d129222006-10-03 01:15:54 -0700582 rcu_read_lock();
583 for (i = 0; i < mddev->raid_disks; i++) {
584 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
585 if (rdev && !test_bit(Faulty, &rdev->flags)) {
Jens Axboe165125e2007-07-24 09:28:11 +0200586 struct request_queue *q = bdev_get_queue(rdev->bdev);
NeilBrown0d129222006-10-03 01:15:54 -0700587
588 /* Note the '|| 1' - when read_balance prefers
589 * non-congested targets, it can be removed
590 */
Alexander Beregalov91a9e992009-04-07 01:35:56 +0400591 if ((bits & (1<<BDI_async_congested)) || 1)
NeilBrown0d129222006-10-03 01:15:54 -0700592 ret |= bdi_congested(&q->backing_dev_info, bits);
593 else
594 ret &= bdi_congested(&q->backing_dev_info, bits);
595 }
596 }
597 rcu_read_unlock();
598 return ret;
599}
600
601
NeilBrowna35e63e2008-03-04 14:29:29 -0800602static int flush_pending_writes(conf_t *conf)
603{
604 /* Any writes that have been queued but are awaiting
605 * bitmap updates get flushed here.
606 * We return 1 if any requests were actually submitted.
607 */
608 int rv = 0;
609
610 spin_lock_irq(&conf->device_lock);
611
612 if (conf->pending_bio_list.head) {
613 struct bio *bio;
614 bio = bio_list_get(&conf->pending_bio_list);
615 blk_remove_plug(conf->mddev->queue);
616 spin_unlock_irq(&conf->device_lock);
617 /* flush any pending bitmap writes to
618 * disk before proceeding w/ I/O */
619 bitmap_unplug(conf->mddev->bitmap);
620
621 while (bio) { /* submit pending writes */
622 struct bio *next = bio->bi_next;
623 bio->bi_next = NULL;
624 generic_make_request(bio);
625 bio = next;
626 }
627 rv = 1;
628 } else
629 spin_unlock_irq(&conf->device_lock);
630 return rv;
631}
632
NeilBrown17999be2006-01-06 00:20:12 -0800633/* Barriers....
634 * Sometimes we need to suspend IO while we do something else,
635 * either some resync/recovery, or reconfigure the array.
636 * To do this we raise a 'barrier'.
637 * The 'barrier' is a counter that can be raised multiple times
638 * to count how many activities are happening which preclude
639 * normal IO.
640 * We can only raise the barrier if there is no pending IO.
641 * i.e. if nr_pending == 0.
642 * We choose only to raise the barrier if no-one is waiting for the
643 * barrier to go down. This means that as soon as an IO request
644 * is ready, no other operations which require a barrier will start
645 * until the IO request has had a chance.
646 *
647 * So: regular IO calls 'wait_barrier'. When that returns there
648 * is no backgroup IO happening, It must arrange to call
649 * allow_barrier when it has finished its IO.
650 * backgroup IO calls must call raise_barrier. Once that returns
651 * there is no normal IO happeing. It must arrange to call
652 * lower_barrier when the particular background IO completes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 */
654#define RESYNC_DEPTH 32
655
NeilBrown17999be2006-01-06 00:20:12 -0800656static void raise_barrier(conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657{
658 spin_lock_irq(&conf->resync_lock);
NeilBrown17999be2006-01-06 00:20:12 -0800659
660 /* Wait until no block IO is waiting */
661 wait_event_lock_irq(conf->wait_barrier, !conf->nr_waiting,
662 conf->resync_lock,
663 raid1_unplug(conf->mddev->queue));
664
665 /* block any new IO from starting */
666 conf->barrier++;
667
668 /* No wait for all pending IO to complete */
669 wait_event_lock_irq(conf->wait_barrier,
670 !conf->nr_pending && conf->barrier < RESYNC_DEPTH,
671 conf->resync_lock,
672 raid1_unplug(conf->mddev->queue));
673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 spin_unlock_irq(&conf->resync_lock);
675}
676
NeilBrown17999be2006-01-06 00:20:12 -0800677static void lower_barrier(conf_t *conf)
678{
679 unsigned long flags;
NeilBrown709ae482009-12-14 12:49:51 +1100680 BUG_ON(conf->barrier <= 0);
NeilBrown17999be2006-01-06 00:20:12 -0800681 spin_lock_irqsave(&conf->resync_lock, flags);
682 conf->barrier--;
683 spin_unlock_irqrestore(&conf->resync_lock, flags);
684 wake_up(&conf->wait_barrier);
685}
686
687static void wait_barrier(conf_t *conf)
688{
689 spin_lock_irq(&conf->resync_lock);
690 if (conf->barrier) {
691 conf->nr_waiting++;
692 wait_event_lock_irq(conf->wait_barrier, !conf->barrier,
693 conf->resync_lock,
694 raid1_unplug(conf->mddev->queue));
695 conf->nr_waiting--;
696 }
697 conf->nr_pending++;
698 spin_unlock_irq(&conf->resync_lock);
699}
700
701static void allow_barrier(conf_t *conf)
702{
703 unsigned long flags;
704 spin_lock_irqsave(&conf->resync_lock, flags);
705 conf->nr_pending--;
706 spin_unlock_irqrestore(&conf->resync_lock, flags);
707 wake_up(&conf->wait_barrier);
708}
709
NeilBrownddaf22a2006-01-06 00:20:19 -0800710static void freeze_array(conf_t *conf)
711{
712 /* stop syncio and normal IO and wait for everything to
713 * go quite.
714 * We increment barrier and nr_waiting, and then
NeilBrown1c830532008-03-04 14:29:35 -0800715 * wait until nr_pending match nr_queued+1
716 * This is called in the context of one normal IO request
717 * that has failed. Thus any sync request that might be pending
718 * will be blocked by nr_pending, and we need to wait for
719 * pending IO requests to complete or be queued for re-try.
720 * Thus the number queued (nr_queued) plus this request (1)
721 * must match the number of pending IOs (nr_pending) before
722 * we continue.
NeilBrownddaf22a2006-01-06 00:20:19 -0800723 */
724 spin_lock_irq(&conf->resync_lock);
725 conf->barrier++;
726 conf->nr_waiting++;
727 wait_event_lock_irq(conf->wait_barrier,
NeilBrown1c830532008-03-04 14:29:35 -0800728 conf->nr_pending == conf->nr_queued+1,
NeilBrownddaf22a2006-01-06 00:20:19 -0800729 conf->resync_lock,
NeilBrowna35e63e2008-03-04 14:29:29 -0800730 ({ flush_pending_writes(conf);
731 raid1_unplug(conf->mddev->queue); }));
NeilBrownddaf22a2006-01-06 00:20:19 -0800732 spin_unlock_irq(&conf->resync_lock);
733}
734static void unfreeze_array(conf_t *conf)
735{
736 /* reverse the effect of the freeze */
737 spin_lock_irq(&conf->resync_lock);
738 conf->barrier--;
739 conf->nr_waiting--;
740 wake_up(&conf->wait_barrier);
741 spin_unlock_irq(&conf->resync_lock);
742}
743
NeilBrown17999be2006-01-06 00:20:12 -0800744
NeilBrown4b6d2872005-09-09 16:23:47 -0700745/* duplicate the data pages for behind I/O */
746static struct page **alloc_behind_pages(struct bio *bio)
747{
748 int i;
749 struct bio_vec *bvec;
NeilBrown9ffae0c2006-01-06 00:20:32 -0800750 struct page **pages = kzalloc(bio->bi_vcnt * sizeof(struct page *),
NeilBrown4b6d2872005-09-09 16:23:47 -0700751 GFP_NOIO);
752 if (unlikely(!pages))
753 goto do_sync_io;
754
NeilBrown4b6d2872005-09-09 16:23:47 -0700755 bio_for_each_segment(bvec, bio, i) {
756 pages[i] = alloc_page(GFP_NOIO);
757 if (unlikely(!pages[i]))
758 goto do_sync_io;
759 memcpy(kmap(pages[i]) + bvec->bv_offset,
760 kmap(bvec->bv_page) + bvec->bv_offset, bvec->bv_len);
761 kunmap(pages[i]);
762 kunmap(bvec->bv_page);
763 }
764
765 return pages;
766
767do_sync_io:
768 if (pages)
769 for (i = 0; i < bio->bi_vcnt && pages[i]; i++)
NeilBrown2d1f3b52006-01-06 00:20:31 -0800770 put_page(pages[i]);
NeilBrown4b6d2872005-09-09 16:23:47 -0700771 kfree(pages);
772 PRINTK("%dB behind alloc failed, doing sync I/O\n", bio->bi_size);
773 return NULL;
774}
775
NeilBrown21a52c62010-04-01 15:02:13 +1100776static int make_request(mddev_t *mddev, struct bio * bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777{
NeilBrown070ec552009-06-16 16:54:21 +1000778 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 mirror_info_t *mirror;
780 r1bio_t *r1_bio;
781 struct bio *read_bio;
NeilBrown191ea9b2005-06-21 17:17:23 -0700782 int i, targets = 0, disks;
NeilBrown84255d12008-05-23 13:04:32 -0700783 struct bitmap *bitmap;
NeilBrown191ea9b2005-06-21 17:17:23 -0700784 unsigned long flags;
785 struct bio_list bl;
NeilBrown4b6d2872005-09-09 16:23:47 -0700786 struct page **behind_pages = NULL;
Jens Axboea3623572005-11-01 09:26:16 +0100787 const int rw = bio_data_dir(bio);
Jens Axboe1f98a132009-09-11 14:32:04 +0200788 const bool do_sync = bio_rw_flagged(bio, BIO_RW_SYNCIO);
Jens Axboe1f98a132009-09-11 14:32:04 +0200789 bool do_barriers;
Dan Williams6bfe0b42008-04-30 00:52:32 -0700790 mdk_rdev_t *blocked_rdev;
NeilBrown191ea9b2005-06-21 17:17:23 -0700791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 /*
793 * Register the new request and wait if the reconstruction
794 * thread has put up a bar for new requests.
795 * Continue immediately if no resync is active currently.
NeilBrown62de6082006-05-01 12:15:47 -0700796 * We test barriers_work *after* md_write_start as md_write_start
797 * may cause the first superblock write, and that will check out
798 * if barriers work.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 */
NeilBrown62de6082006-05-01 12:15:47 -0700800
NeilBrown3d310eb2005-06-21 17:17:26 -0700801 md_write_start(mddev, bio); /* wait on superblock update early */
802
NeilBrown6eef4b22009-12-14 12:49:51 +1100803 if (bio_data_dir(bio) == WRITE &&
804 bio->bi_sector + bio->bi_size/512 > mddev->suspend_lo &&
805 bio->bi_sector < mddev->suspend_hi) {
806 /* As the suspend_* range is controlled by
807 * userspace, we want an interruptible
808 * wait.
809 */
810 DEFINE_WAIT(w);
811 for (;;) {
812 flush_signals(current);
813 prepare_to_wait(&conf->wait_barrier,
814 &w, TASK_INTERRUPTIBLE);
815 if (bio->bi_sector + bio->bi_size/512 <= mddev->suspend_lo ||
816 bio->bi_sector >= mddev->suspend_hi)
817 break;
818 schedule();
819 }
820 finish_wait(&conf->wait_barrier, &w);
821 }
Jens Axboe1f98a132009-09-11 14:32:04 +0200822 if (unlikely(!mddev->barriers_work &&
823 bio_rw_flagged(bio, BIO_RW_BARRIER))) {
NeilBrown62de6082006-05-01 12:15:47 -0700824 if (rw == WRITE)
825 md_write_end(mddev);
NeilBrown6712ecf2007-09-27 12:47:43 +0200826 bio_endio(bio, -EOPNOTSUPP);
NeilBrown62de6082006-05-01 12:15:47 -0700827 return 0;
828 }
829
NeilBrown17999be2006-01-06 00:20:12 -0800830 wait_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
NeilBrown84255d12008-05-23 13:04:32 -0700832 bitmap = mddev->bitmap;
833
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 /*
835 * make_request() can abort the operation when READA is being
836 * used and no empty request is available.
837 *
838 */
839 r1_bio = mempool_alloc(conf->r1bio_pool, GFP_NOIO);
840
841 r1_bio->master_bio = bio;
842 r1_bio->sectors = bio->bi_size >> 9;
NeilBrown191ea9b2005-06-21 17:17:23 -0700843 r1_bio->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 r1_bio->mddev = mddev;
845 r1_bio->sector = bio->bi_sector;
846
Jens Axboea3623572005-11-01 09:26:16 +0100847 if (rw == READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 /*
849 * read balancing logic:
850 */
851 int rdisk = read_balance(conf, r1_bio);
852
853 if (rdisk < 0) {
854 /* couldn't find anywhere to read from */
855 raid_end_bio_io(r1_bio);
856 return 0;
857 }
858 mirror = conf->mirrors + rdisk;
859
860 r1_bio->read_disk = rdisk;
861
862 read_bio = bio_clone(bio, GFP_NOIO);
863
864 r1_bio->bios[rdisk] = read_bio;
865
866 read_bio->bi_sector = r1_bio->sector + mirror->rdev->data_offset;
867 read_bio->bi_bdev = mirror->rdev->bdev;
868 read_bio->bi_end_io = raid1_end_read_request;
Dmitry Monakhov1ef04fe2009-09-20 05:52:25 +0400869 read_bio->bi_rw = READ | (do_sync << BIO_RW_SYNCIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 read_bio->bi_private = r1_bio;
871
872 generic_make_request(read_bio);
873 return 0;
874 }
875
876 /*
877 * WRITE:
878 */
879 /* first select target devices under spinlock and
880 * inc refcount on their rdev. Record them by setting
881 * bios[x] to bio
882 */
883 disks = conf->raid_disks;
NeilBrown191ea9b2005-06-21 17:17:23 -0700884#if 0
885 { static int first=1;
886 if (first) printk("First Write sector %llu disks %d\n",
887 (unsigned long long)r1_bio->sector, disks);
888 first = 0;
889 }
890#endif
Dan Williams6bfe0b42008-04-30 00:52:32 -0700891 retry_write:
892 blocked_rdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 rcu_read_lock();
894 for (i = 0; i < disks; i++) {
Dan Williams6bfe0b42008-04-30 00:52:32 -0700895 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
896 if (rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
897 atomic_inc(&rdev->nr_pending);
898 blocked_rdev = rdev;
899 break;
900 }
901 if (rdev && !test_bit(Faulty, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 atomic_inc(&rdev->nr_pending);
NeilBrownb2d444d2005-11-08 21:39:31 -0800903 if (test_bit(Faulty, &rdev->flags)) {
NeilBrown03c902e2006-01-06 00:20:46 -0800904 rdev_dec_pending(rdev, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 r1_bio->bios[i] = NULL;
NeilBrown964147d2010-05-18 15:27:13 +1000906 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 r1_bio->bios[i] = bio;
NeilBrown964147d2010-05-18 15:27:13 +1000908 targets++;
909 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 } else
911 r1_bio->bios[i] = NULL;
912 }
913 rcu_read_unlock();
914
Dan Williams6bfe0b42008-04-30 00:52:32 -0700915 if (unlikely(blocked_rdev)) {
916 /* Wait for this device to become unblocked */
917 int j;
918
919 for (j = 0; j < i; j++)
920 if (r1_bio->bios[j])
921 rdev_dec_pending(conf->mirrors[j].rdev, mddev);
922
923 allow_barrier(conf);
924 md_wait_for_blocked_rdev(blocked_rdev, mddev);
925 wait_barrier(conf);
926 goto retry_write;
927 }
928
NeilBrown4b6d2872005-09-09 16:23:47 -0700929 BUG_ON(targets == 0); /* we never fail the last device */
930
NeilBrown191ea9b2005-06-21 17:17:23 -0700931 if (targets < conf->raid_disks) {
932 /* array is degraded, we will not clear the bitmap
933 * on I/O completion (see raid1_end_write_request) */
934 set_bit(R1BIO_Degraded, &r1_bio->state);
935 }
NeilBrown06d91a52005-06-21 17:17:12 -0700936
NeilBrown4b6d2872005-09-09 16:23:47 -0700937 /* do behind I/O ? */
938 if (bitmap &&
NeilBrown42a04b52009-12-14 12:49:53 +1100939 (atomic_read(&bitmap->behind_writes)
940 < mddev->bitmap_info.max_write_behind) &&
NeilBrown4b6d2872005-09-09 16:23:47 -0700941 (behind_pages = alloc_behind_pages(bio)) != NULL)
942 set_bit(R1BIO_BehindIO, &r1_bio->state);
943
NeilBrown191ea9b2005-06-21 17:17:23 -0700944 atomic_set(&r1_bio->remaining, 0);
NeilBrown4b6d2872005-09-09 16:23:47 -0700945 atomic_set(&r1_bio->behind_remaining, 0);
NeilBrown191ea9b2005-06-21 17:17:23 -0700946
Jens Axboe1f98a132009-09-11 14:32:04 +0200947 do_barriers = bio_rw_flagged(bio, BIO_RW_BARRIER);
NeilBrowna9701a32005-11-08 21:39:34 -0800948 if (do_barriers)
949 set_bit(R1BIO_Barrier, &r1_bio->state);
950
NeilBrown191ea9b2005-06-21 17:17:23 -0700951 bio_list_init(&bl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 for (i = 0; i < disks; i++) {
953 struct bio *mbio;
954 if (!r1_bio->bios[i])
955 continue;
956
957 mbio = bio_clone(bio, GFP_NOIO);
958 r1_bio->bios[i] = mbio;
959
960 mbio->bi_sector = r1_bio->sector + conf->mirrors[i].rdev->data_offset;
961 mbio->bi_bdev = conf->mirrors[i].rdev->bdev;
962 mbio->bi_end_io = raid1_end_write_request;
Dmitry Monakhov1ef04fe2009-09-20 05:52:25 +0400963 mbio->bi_rw = WRITE | (do_barriers << BIO_RW_BARRIER) |
964 (do_sync << BIO_RW_SYNCIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 mbio->bi_private = r1_bio;
966
NeilBrown4b6d2872005-09-09 16:23:47 -0700967 if (behind_pages) {
968 struct bio_vec *bvec;
969 int j;
970
971 /* Yes, I really want the '__' version so that
972 * we clear any unused pointer in the io_vec, rather
973 * than leave them unchanged. This is important
974 * because when we come to free the pages, we won't
975 * know the originial bi_idx, so we just free
976 * them all
977 */
978 __bio_for_each_segment(bvec, mbio, j, 0)
979 bvec->bv_page = behind_pages[j];
980 if (test_bit(WriteMostly, &conf->mirrors[i].rdev->flags))
981 atomic_inc(&r1_bio->behind_remaining);
982 }
983
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 atomic_inc(&r1_bio->remaining);
NeilBrown191ea9b2005-06-21 17:17:23 -0700985
986 bio_list_add(&bl, mbio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 }
NeilBrown4b6d2872005-09-09 16:23:47 -0700988 kfree(behind_pages); /* the behind pages are attached to the bios now */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
NeilBrown4b6d2872005-09-09 16:23:47 -0700990 bitmap_startwrite(bitmap, bio->bi_sector, r1_bio->sectors,
991 test_bit(R1BIO_BehindIO, &r1_bio->state));
NeilBrown191ea9b2005-06-21 17:17:23 -0700992 spin_lock_irqsave(&conf->device_lock, flags);
993 bio_list_merge(&conf->pending_bio_list, &bl);
994 bio_list_init(&bl);
995
996 blk_plug_device(mddev->queue);
997 spin_unlock_irqrestore(&conf->device_lock, flags);
998
NeilBrowna35e63e2008-03-04 14:29:29 -0800999 /* In case raid1d snuck into freeze_array */
1000 wake_up(&conf->wait_barrier);
1001
Lars Ellenberge3881a62007-01-10 23:15:37 -08001002 if (do_sync)
1003 md_wakeup_thread(mddev->thread);
NeilBrown191ea9b2005-06-21 17:17:23 -07001004#if 0
1005 while ((bio = bio_list_pop(&bl)) != NULL)
1006 generic_make_request(bio);
1007#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
1009 return 0;
1010}
1011
1012static void status(struct seq_file *seq, mddev_t *mddev)
1013{
NeilBrown070ec552009-06-16 16:54:21 +10001014 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 int i;
1016
1017 seq_printf(seq, " [%d/%d] [", conf->raid_disks,
NeilBrown11ce99e2006-10-03 01:15:52 -07001018 conf->raid_disks - mddev->degraded);
NeilBrownddac7c72006-08-31 21:27:36 -07001019 rcu_read_lock();
1020 for (i = 0; i < conf->raid_disks; i++) {
1021 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 seq_printf(seq, "%s",
NeilBrownddac7c72006-08-31 21:27:36 -07001023 rdev && test_bit(In_sync, &rdev->flags) ? "U" : "_");
1024 }
1025 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 seq_printf(seq, "]");
1027}
1028
1029
1030static void error(mddev_t *mddev, mdk_rdev_t *rdev)
1031{
1032 char b[BDEVNAME_SIZE];
NeilBrown070ec552009-06-16 16:54:21 +10001033 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
1035 /*
1036 * If it is not operational, then we have already marked it as dead
1037 * else if it is the last working disks, ignore the error, let the
1038 * next level up know.
1039 * else mark the drive as failed
1040 */
NeilBrownb2d444d2005-11-08 21:39:31 -08001041 if (test_bit(In_sync, &rdev->flags)
NeilBrown4044ba52009-01-09 08:31:11 +11001042 && (conf->raid_disks - mddev->degraded) == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 /*
1044 * Don't fail the drive, act as though we were just a
NeilBrown4044ba52009-01-09 08:31:11 +11001045 * normal single drive.
1046 * However don't try a recovery from this drive as
1047 * it is very likely to fail.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 */
NeilBrown4044ba52009-01-09 08:31:11 +11001049 mddev->recovery_disabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 return;
NeilBrown4044ba52009-01-09 08:31:11 +11001051 }
NeilBrownc04be0a2006-10-03 01:15:53 -07001052 if (test_and_clear_bit(In_sync, &rdev->flags)) {
1053 unsigned long flags;
1054 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 mddev->degraded++;
NeilBrowndd00a992007-05-10 03:15:50 -07001056 set_bit(Faulty, &rdev->flags);
NeilBrownc04be0a2006-10-03 01:15:53 -07001057 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 /*
1059 * if recovery is running, make sure it aborts.
1060 */
NeilBrowndfc70642008-05-23 13:04:39 -07001061 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
NeilBrowndd00a992007-05-10 03:15:50 -07001062 } else
1063 set_bit(Faulty, &rdev->flags);
NeilBrown850b2b42006-10-03 01:15:46 -07001064 set_bit(MD_CHANGE_DEVS, &mddev->flags);
Nick Andrewd7a420c2008-04-28 02:15:55 -07001065 printk(KERN_ALERT "raid1: Disk failure on %s, disabling device.\n"
1066 "raid1: Operation continuing on %d devices.\n",
NeilBrown11ce99e2006-10-03 01:15:52 -07001067 bdevname(rdev->bdev,b), conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068}
1069
1070static void print_conf(conf_t *conf)
1071{
1072 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074 printk("RAID1 conf printout:\n");
1075 if (!conf) {
1076 printk("(!conf)\n");
1077 return;
1078 }
NeilBrown11ce99e2006-10-03 01:15:52 -07001079 printk(" --- wd:%d rd:%d\n", conf->raid_disks - conf->mddev->degraded,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 conf->raid_disks);
1081
NeilBrownddac7c72006-08-31 21:27:36 -07001082 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 for (i = 0; i < conf->raid_disks; i++) {
1084 char b[BDEVNAME_SIZE];
NeilBrownddac7c72006-08-31 21:27:36 -07001085 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
1086 if (rdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 printk(" disk %d, wo:%d, o:%d, dev:%s\n",
NeilBrownddac7c72006-08-31 21:27:36 -07001088 i, !test_bit(In_sync, &rdev->flags),
1089 !test_bit(Faulty, &rdev->flags),
1090 bdevname(rdev->bdev,b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 }
NeilBrownddac7c72006-08-31 21:27:36 -07001092 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093}
1094
1095static void close_sync(conf_t *conf)
1096{
NeilBrown17999be2006-01-06 00:20:12 -08001097 wait_barrier(conf);
1098 allow_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
1100 mempool_destroy(conf->r1buf_pool);
1101 conf->r1buf_pool = NULL;
1102}
1103
1104static int raid1_spare_active(mddev_t *mddev)
1105{
1106 int i;
1107 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
1109 /*
1110 * Find all failed disks within the RAID1 configuration
NeilBrownddac7c72006-08-31 21:27:36 -07001111 * and mark them readable.
1112 * Called under mddev lock, so rcu protection not needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 */
1114 for (i = 0; i < conf->raid_disks; i++) {
NeilBrownddac7c72006-08-31 21:27:36 -07001115 mdk_rdev_t *rdev = conf->mirrors[i].rdev;
1116 if (rdev
1117 && !test_bit(Faulty, &rdev->flags)
NeilBrownc04be0a2006-10-03 01:15:53 -07001118 && !test_and_set_bit(In_sync, &rdev->flags)) {
1119 unsigned long flags;
1120 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 mddev->degraded--;
NeilBrownc04be0a2006-10-03 01:15:53 -07001122 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 }
1124 }
1125
1126 print_conf(conf);
1127 return 0;
1128}
1129
1130
1131static int raid1_add_disk(mddev_t *mddev, mdk_rdev_t *rdev)
1132{
1133 conf_t *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10001134 int err = -EEXIST;
NeilBrown41158c72005-06-21 17:17:25 -07001135 int mirror = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 mirror_info_t *p;
Neil Brown6c2fce22008-06-28 08:31:31 +10001137 int first = 0;
1138 int last = mddev->raid_disks - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
Neil Brown6c2fce22008-06-28 08:31:31 +10001140 if (rdev->raid_disk >= 0)
1141 first = last = rdev->raid_disk;
1142
1143 for (mirror = first; mirror <= last; mirror++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 if ( !(p=conf->mirrors+mirror)->rdev) {
1145
Martin K. Petersen8f6c2e42009-07-01 11:13:45 +10001146 disk_stack_limits(mddev->gendisk, rdev->bdev,
1147 rdev->data_offset << 9);
NeilBrown627a2d32010-03-08 16:44:38 +11001148 /* as we don't honour merge_bvec_fn, we must
1149 * never risk violating it, so limit
1150 * ->max_segments to one lying with a single
1151 * page, as a one page request is never in
1152 * violation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 */
NeilBrown627a2d32010-03-08 16:44:38 +11001154 if (rdev->bdev->bd_disk->queue->merge_bvec_fn) {
1155 blk_queue_max_segments(mddev->queue, 1);
1156 blk_queue_segment_boundary(mddev->queue,
1157 PAGE_CACHE_SIZE - 1);
1158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
1160 p->head_position = 0;
1161 rdev->raid_disk = mirror;
Neil Brown199050e2008-06-28 08:31:33 +10001162 err = 0;
NeilBrown6aea114a2005-11-28 13:44:13 -08001163 /* As all devices are equivalent, we don't need a full recovery
1164 * if this was recently any drive of the array
1165 */
1166 if (rdev->saved_raid_disk < 0)
NeilBrown41158c72005-06-21 17:17:25 -07001167 conf->fullsync = 1;
Suzanne Woodd6065f72005-11-08 21:39:27 -08001168 rcu_assign_pointer(p->rdev, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 break;
1170 }
Andre Nollac5e7112009-08-03 10:59:47 +10001171 md_integrity_add_rdev(rdev, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 print_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10001173 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174}
1175
1176static int raid1_remove_disk(mddev_t *mddev, int number)
1177{
1178 conf_t *conf = mddev->private;
1179 int err = 0;
1180 mdk_rdev_t *rdev;
1181 mirror_info_t *p = conf->mirrors+ number;
1182
1183 print_conf(conf);
1184 rdev = p->rdev;
1185 if (rdev) {
NeilBrownb2d444d2005-11-08 21:39:31 -08001186 if (test_bit(In_sync, &rdev->flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 atomic_read(&rdev->nr_pending)) {
1188 err = -EBUSY;
1189 goto abort;
1190 }
NeilBrowndfc70642008-05-23 13:04:39 -07001191 /* Only remove non-faulty devices is recovery
1192 * is not possible.
1193 */
1194 if (!test_bit(Faulty, &rdev->flags) &&
1195 mddev->degraded < conf->raid_disks) {
1196 err = -EBUSY;
1197 goto abort;
1198 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 p->rdev = NULL;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07001200 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 if (atomic_read(&rdev->nr_pending)) {
1202 /* lost the race, try later */
1203 err = -EBUSY;
1204 p->rdev = rdev;
Andre Nollac5e7112009-08-03 10:59:47 +10001205 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 }
Andre Nollac5e7112009-08-03 10:59:47 +10001207 md_integrity_register(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 }
1209abort:
1210
1211 print_conf(conf);
1212 return err;
1213}
1214
1215
NeilBrown6712ecf2007-09-27 12:47:43 +02001216static void end_sync_read(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217{
H Hartley Sweeten7b928132010-03-08 16:02:40 +11001218 r1bio_t *r1_bio = bio->bi_private;
NeilBrownd11c1712006-01-06 00:20:26 -08001219 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
NeilBrownd11c1712006-01-06 00:20:26 -08001221 for (i=r1_bio->mddev->raid_disks; i--; )
1222 if (r1_bio->bios[i] == bio)
1223 break;
1224 BUG_ON(i < 0);
1225 update_head_pos(i, r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 /*
1227 * we have read a block, now it needs to be re-written,
1228 * or re-read if the read failed.
1229 * We don't do much here, just schedule handling by raid1d
1230 */
NeilBrown69382e82006-01-06 00:20:22 -08001231 if (test_bit(BIO_UPTODATE, &bio->bi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 set_bit(R1BIO_Uptodate, &r1_bio->state);
NeilBrownd11c1712006-01-06 00:20:26 -08001233
1234 if (atomic_dec_and_test(&r1_bio->remaining))
1235 reschedule_retry(r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236}
1237
NeilBrown6712ecf2007-09-27 12:47:43 +02001238static void end_sync_write(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239{
1240 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
H Hartley Sweeten7b928132010-03-08 16:02:40 +11001241 r1bio_t *r1_bio = bio->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 mddev_t *mddev = r1_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +10001243 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 int i;
1245 int mirror=0;
1246
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 for (i = 0; i < conf->raid_disks; i++)
1248 if (r1_bio->bios[i] == bio) {
1249 mirror = i;
1250 break;
1251 }
NeilBrown6b1117d2006-03-31 02:31:57 -08001252 if (!uptodate) {
1253 int sync_blocks = 0;
1254 sector_t s = r1_bio->sector;
1255 long sectors_to_go = r1_bio->sectors;
1256 /* make sure these bits doesn't get cleared. */
1257 do {
NeilBrown5e3db642006-07-10 04:44:18 -07001258 bitmap_end_sync(mddev->bitmap, s,
NeilBrown6b1117d2006-03-31 02:31:57 -08001259 &sync_blocks, 1);
1260 s += sync_blocks;
1261 sectors_to_go -= sync_blocks;
1262 } while (sectors_to_go > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 md_error(mddev, conf->mirrors[mirror].rdev);
NeilBrown6b1117d2006-03-31 02:31:57 -08001264 }
NeilBrowne3b97032005-08-04 12:53:34 -07001265
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 update_head_pos(mirror, r1_bio);
1267
1268 if (atomic_dec_and_test(&r1_bio->remaining)) {
NeilBrown73d5c382009-02-25 13:18:47 +11001269 sector_t s = r1_bio->sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 put_buf(r1_bio);
NeilBrown73d5c382009-02-25 13:18:47 +11001271 md_done_sync(mddev, s, uptodate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273}
1274
1275static void sync_request_write(mddev_t *mddev, r1bio_t *r1_bio)
1276{
NeilBrown070ec552009-06-16 16:54:21 +10001277 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 int i;
1279 int disks = conf->raid_disks;
1280 struct bio *bio, *wbio;
1281
1282 bio = r1_bio->bios[r1_bio->read_disk];
1283
NeilBrown69382e82006-01-06 00:20:22 -08001284
NeilBrownd11c1712006-01-06 00:20:26 -08001285 if (test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) {
1286 /* We have read all readable devices. If we haven't
1287 * got the block, then there is no hope left.
1288 * If we have, then we want to do a comparison
1289 * and skip the write if everything is the same.
1290 * If any blocks failed to read, then we need to
1291 * attempt an over-write
1292 */
1293 int primary;
1294 if (!test_bit(R1BIO_Uptodate, &r1_bio->state)) {
1295 for (i=0; i<mddev->raid_disks; i++)
1296 if (r1_bio->bios[i]->bi_end_io == end_sync_read)
1297 md_error(mddev, conf->mirrors[i].rdev);
1298
1299 md_done_sync(mddev, r1_bio->sectors, 1);
1300 put_buf(r1_bio);
1301 return;
1302 }
1303 for (primary=0; primary<mddev->raid_disks; primary++)
1304 if (r1_bio->bios[primary]->bi_end_io == end_sync_read &&
1305 test_bit(BIO_UPTODATE, &r1_bio->bios[primary]->bi_flags)) {
1306 r1_bio->bios[primary]->bi_end_io = NULL;
NeilBrown03c902e2006-01-06 00:20:46 -08001307 rdev_dec_pending(conf->mirrors[primary].rdev, mddev);
NeilBrownd11c1712006-01-06 00:20:26 -08001308 break;
1309 }
1310 r1_bio->read_disk = primary;
1311 for (i=0; i<mddev->raid_disks; i++)
Mike Accettaed456662007-06-16 10:16:07 -07001312 if (r1_bio->bios[i]->bi_end_io == end_sync_read) {
NeilBrownd11c1712006-01-06 00:20:26 -08001313 int j;
1314 int vcnt = r1_bio->sectors >> (PAGE_SHIFT- 9);
1315 struct bio *pbio = r1_bio->bios[primary];
1316 struct bio *sbio = r1_bio->bios[i];
Mike Accettaed456662007-06-16 10:16:07 -07001317
1318 if (test_bit(BIO_UPTODATE, &sbio->bi_flags)) {
1319 for (j = vcnt; j-- ; ) {
1320 struct page *p, *s;
1321 p = pbio->bi_io_vec[j].bv_page;
1322 s = sbio->bi_io_vec[j].bv_page;
1323 if (memcmp(page_address(p),
1324 page_address(s),
1325 PAGE_SIZE))
1326 break;
1327 }
1328 } else
1329 j = 0;
NeilBrownd11c1712006-01-06 00:20:26 -08001330 if (j >= 0)
1331 mddev->resync_mismatches += r1_bio->sectors;
NeilBrowncf7a4412007-10-16 23:30:55 -07001332 if (j < 0 || (test_bit(MD_RECOVERY_CHECK, &mddev->recovery)
1333 && test_bit(BIO_UPTODATE, &sbio->bi_flags))) {
NeilBrownd11c1712006-01-06 00:20:26 -08001334 sbio->bi_end_io = NULL;
NeilBrown03c902e2006-01-06 00:20:46 -08001335 rdev_dec_pending(conf->mirrors[i].rdev, mddev);
1336 } else {
NeilBrownd11c1712006-01-06 00:20:26 -08001337 /* fixup the bio for reuse */
NeilBrown698b18c2008-05-23 13:04:35 -07001338 int size;
NeilBrownd11c1712006-01-06 00:20:26 -08001339 sbio->bi_vcnt = vcnt;
1340 sbio->bi_size = r1_bio->sectors << 9;
1341 sbio->bi_idx = 0;
1342 sbio->bi_phys_segments = 0;
NeilBrownd11c1712006-01-06 00:20:26 -08001343 sbio->bi_flags &= ~(BIO_POOL_MASK - 1);
1344 sbio->bi_flags |= 1 << BIO_UPTODATE;
1345 sbio->bi_next = NULL;
1346 sbio->bi_sector = r1_bio->sector +
1347 conf->mirrors[i].rdev->data_offset;
1348 sbio->bi_bdev = conf->mirrors[i].rdev->bdev;
NeilBrown698b18c2008-05-23 13:04:35 -07001349 size = sbio->bi_size;
1350 for (j = 0; j < vcnt ; j++) {
1351 struct bio_vec *bi;
1352 bi = &sbio->bi_io_vec[j];
1353 bi->bv_offset = 0;
1354 if (size > PAGE_SIZE)
1355 bi->bv_len = PAGE_SIZE;
1356 else
1357 bi->bv_len = size;
1358 size -= PAGE_SIZE;
1359 memcpy(page_address(bi->bv_page),
NeilBrown3eda22d2007-01-26 00:57:01 -08001360 page_address(pbio->bi_io_vec[j].bv_page),
1361 PAGE_SIZE);
NeilBrown698b18c2008-05-23 13:04:35 -07001362 }
NeilBrown3eda22d2007-01-26 00:57:01 -08001363
NeilBrownd11c1712006-01-06 00:20:26 -08001364 }
1365 }
1366 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 if (!test_bit(R1BIO_Uptodate, &r1_bio->state)) {
NeilBrown69382e82006-01-06 00:20:22 -08001368 /* ouch - failed to read all of that.
1369 * Try some synchronous reads of other devices to get
1370 * good data, much like with normal read errors. Only
NeilBrownddac7c72006-08-31 21:27:36 -07001371 * read into the pages we already have so we don't
NeilBrown69382e82006-01-06 00:20:22 -08001372 * need to re-issue the read request.
1373 * We don't need to freeze the array, because being in an
1374 * active sync request, there is no normal IO, and
1375 * no overlapping syncs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 */
NeilBrown69382e82006-01-06 00:20:22 -08001377 sector_t sect = r1_bio->sector;
1378 int sectors = r1_bio->sectors;
1379 int idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
NeilBrown69382e82006-01-06 00:20:22 -08001381 while(sectors) {
1382 int s = sectors;
1383 int d = r1_bio->read_disk;
1384 int success = 0;
1385 mdk_rdev_t *rdev;
1386
1387 if (s > (PAGE_SIZE>>9))
1388 s = PAGE_SIZE >> 9;
1389 do {
1390 if (r1_bio->bios[d]->bi_end_io == end_sync_read) {
NeilBrownddac7c72006-08-31 21:27:36 -07001391 /* No rcu protection needed here devices
1392 * can only be removed when no resync is
1393 * active, and resync is currently active
1394 */
NeilBrown69382e82006-01-06 00:20:22 -08001395 rdev = conf->mirrors[d].rdev;
1396 if (sync_page_io(rdev->bdev,
1397 sect + rdev->data_offset,
1398 s<<9,
1399 bio->bi_io_vec[idx].bv_page,
1400 READ)) {
1401 success = 1;
1402 break;
1403 }
1404 }
1405 d++;
1406 if (d == conf->raid_disks)
1407 d = 0;
1408 } while (!success && d != r1_bio->read_disk);
1409
1410 if (success) {
NeilBrown097426f2006-01-06 00:20:37 -08001411 int start = d;
NeilBrown69382e82006-01-06 00:20:22 -08001412 /* write it back and re-read */
1413 set_bit(R1BIO_Uptodate, &r1_bio->state);
1414 while (d != r1_bio->read_disk) {
1415 if (d == 0)
1416 d = conf->raid_disks;
1417 d--;
1418 if (r1_bio->bios[d]->bi_end_io != end_sync_read)
1419 continue;
1420 rdev = conf->mirrors[d].rdev;
NeilBrown4dbcdc72006-01-06 00:20:52 -08001421 atomic_add(s, &rdev->corrected_errors);
NeilBrown69382e82006-01-06 00:20:22 -08001422 if (sync_page_io(rdev->bdev,
1423 sect + rdev->data_offset,
1424 s<<9,
1425 bio->bi_io_vec[idx].bv_page,
NeilBrown097426f2006-01-06 00:20:37 -08001426 WRITE) == 0)
1427 md_error(mddev, rdev);
1428 }
1429 d = start;
1430 while (d != r1_bio->read_disk) {
1431 if (d == 0)
1432 d = conf->raid_disks;
1433 d--;
1434 if (r1_bio->bios[d]->bi_end_io != end_sync_read)
1435 continue;
1436 rdev = conf->mirrors[d].rdev;
1437 if (sync_page_io(rdev->bdev,
NeilBrown69382e82006-01-06 00:20:22 -08001438 sect + rdev->data_offset,
1439 s<<9,
1440 bio->bi_io_vec[idx].bv_page,
NeilBrown097426f2006-01-06 00:20:37 -08001441 READ) == 0)
NeilBrown69382e82006-01-06 00:20:22 -08001442 md_error(mddev, rdev);
NeilBrown69382e82006-01-06 00:20:22 -08001443 }
1444 } else {
1445 char b[BDEVNAME_SIZE];
1446 /* Cannot read from anywhere, array is toast */
1447 md_error(mddev, conf->mirrors[r1_bio->read_disk].rdev);
1448 printk(KERN_ALERT "raid1: %s: unrecoverable I/O read error"
1449 " for block %llu\n",
1450 bdevname(bio->bi_bdev,b),
1451 (unsigned long long)r1_bio->sector);
1452 md_done_sync(mddev, r1_bio->sectors, 0);
1453 put_buf(r1_bio);
1454 return;
1455 }
1456 sectors -= s;
1457 sect += s;
1458 idx ++;
1459 }
1460 }
NeilBrownd11c1712006-01-06 00:20:26 -08001461
1462 /*
1463 * schedule writes
1464 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 atomic_set(&r1_bio->remaining, 1);
1466 for (i = 0; i < disks ; i++) {
1467 wbio = r1_bio->bios[i];
NeilBrown3e198f72006-01-06 00:20:21 -08001468 if (wbio->bi_end_io == NULL ||
1469 (wbio->bi_end_io == end_sync_read &&
1470 (i == r1_bio->read_disk ||
1471 !test_bit(MD_RECOVERY_SYNC, &mddev->recovery))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 continue;
1473
NeilBrown3e198f72006-01-06 00:20:21 -08001474 wbio->bi_rw = WRITE;
1475 wbio->bi_end_io = end_sync_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 atomic_inc(&r1_bio->remaining);
1477 md_sync_acct(conf->mirrors[i].rdev->bdev, wbio->bi_size >> 9);
NeilBrown191ea9b2005-06-21 17:17:23 -07001478
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 generic_make_request(wbio);
1480 }
1481
1482 if (atomic_dec_and_test(&r1_bio->remaining)) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001483 /* if we're here, all write(s) have completed, so clean up */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 md_done_sync(mddev, r1_bio->sectors, 1);
1485 put_buf(r1_bio);
1486 }
1487}
1488
1489/*
1490 * This is a kernel thread which:
1491 *
1492 * 1. Retries failed read operations on working mirrors.
1493 * 2. Updates the raid superblock when problems encounter.
1494 * 3. Performs writes following reads for array syncronising.
1495 */
1496
NeilBrown867868f2006-10-03 01:15:51 -07001497static void fix_read_error(conf_t *conf, int read_disk,
1498 sector_t sect, int sectors)
1499{
1500 mddev_t *mddev = conf->mddev;
1501 while(sectors) {
1502 int s = sectors;
1503 int d = read_disk;
1504 int success = 0;
1505 int start;
1506 mdk_rdev_t *rdev;
1507
1508 if (s > (PAGE_SIZE>>9))
1509 s = PAGE_SIZE >> 9;
1510
1511 do {
1512 /* Note: no rcu protection needed here
1513 * as this is synchronous in the raid1d thread
1514 * which is the thread that might remove
1515 * a device. If raid1d ever becomes multi-threaded....
1516 */
1517 rdev = conf->mirrors[d].rdev;
1518 if (rdev &&
1519 test_bit(In_sync, &rdev->flags) &&
1520 sync_page_io(rdev->bdev,
1521 sect + rdev->data_offset,
1522 s<<9,
1523 conf->tmppage, READ))
1524 success = 1;
1525 else {
1526 d++;
1527 if (d == conf->raid_disks)
1528 d = 0;
1529 }
1530 } while (!success && d != read_disk);
1531
1532 if (!success) {
1533 /* Cannot read from anywhere -- bye bye array */
1534 md_error(mddev, conf->mirrors[read_disk].rdev);
1535 break;
1536 }
1537 /* write it back and re-read */
1538 start = d;
1539 while (d != read_disk) {
1540 if (d==0)
1541 d = conf->raid_disks;
1542 d--;
1543 rdev = conf->mirrors[d].rdev;
1544 if (rdev &&
1545 test_bit(In_sync, &rdev->flags)) {
1546 if (sync_page_io(rdev->bdev,
1547 sect + rdev->data_offset,
1548 s<<9, conf->tmppage, WRITE)
1549 == 0)
1550 /* Well, this device is dead */
1551 md_error(mddev, rdev);
1552 }
1553 }
1554 d = start;
1555 while (d != read_disk) {
1556 char b[BDEVNAME_SIZE];
1557 if (d==0)
1558 d = conf->raid_disks;
1559 d--;
1560 rdev = conf->mirrors[d].rdev;
1561 if (rdev &&
1562 test_bit(In_sync, &rdev->flags)) {
1563 if (sync_page_io(rdev->bdev,
1564 sect + rdev->data_offset,
1565 s<<9, conf->tmppage, READ)
1566 == 0)
1567 /* Well, this device is dead */
1568 md_error(mddev, rdev);
1569 else {
1570 atomic_add(s, &rdev->corrected_errors);
1571 printk(KERN_INFO
1572 "raid1:%s: read error corrected "
1573 "(%d sectors at %llu on %s)\n",
1574 mdname(mddev), s,
Randy Dunlap969b7552006-10-28 10:38:32 -07001575 (unsigned long long)(sect +
1576 rdev->data_offset),
NeilBrown867868f2006-10-03 01:15:51 -07001577 bdevname(rdev->bdev, b));
1578 }
1579 }
1580 }
1581 sectors -= s;
1582 sect += s;
1583 }
1584}
1585
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586static void raid1d(mddev_t *mddev)
1587{
1588 r1bio_t *r1_bio;
1589 struct bio *bio;
1590 unsigned long flags;
NeilBrown070ec552009-06-16 16:54:21 +10001591 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 struct list_head *head = &conf->retry_list;
1593 int unplug=0;
1594 mdk_rdev_t *rdev;
1595
1596 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
1598 for (;;) {
1599 char b[BDEVNAME_SIZE];
NeilBrowna35e63e2008-03-04 14:29:29 -08001600
1601 unplug += flush_pending_writes(conf);
1602
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrowna35e63e2008-03-04 14:29:29 -08001604 if (list_empty(head)) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001605 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 break;
NeilBrowna35e63e2008-03-04 14:29:29 -08001607 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 r1_bio = list_entry(head->prev, r1bio_t, retry_list);
1609 list_del(head->prev);
NeilBrownddaf22a2006-01-06 00:20:19 -08001610 conf->nr_queued--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 spin_unlock_irqrestore(&conf->device_lock, flags);
1612
1613 mddev = r1_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +10001614 conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 if (test_bit(R1BIO_IsSync, &r1_bio->state)) {
1616 sync_request_write(mddev, r1_bio);
1617 unplug = 1;
NeilBrowna9701a32005-11-08 21:39:34 -08001618 } else if (test_bit(R1BIO_BarrierRetry, &r1_bio->state)) {
1619 /* some requests in the r1bio were BIO_RW_BARRIER
NeilBrownbea27712006-05-01 12:15:46 -07001620 * requests which failed with -EOPNOTSUPP. Hohumm..
NeilBrowna9701a32005-11-08 21:39:34 -08001621 * Better resubmit without the barrier.
1622 * We know which devices to resubmit for, because
1623 * all others have had their bios[] entry cleared.
NeilBrown5e7dd2a2006-05-01 12:15:47 -07001624 * We already have a nr_pending reference on these rdevs.
NeilBrowna9701a32005-11-08 21:39:34 -08001625 */
1626 int i;
Jens Axboe1f98a132009-09-11 14:32:04 +02001627 const bool do_sync = bio_rw_flagged(r1_bio->master_bio, BIO_RW_SYNCIO);
NeilBrowna9701a32005-11-08 21:39:34 -08001628 clear_bit(R1BIO_BarrierRetry, &r1_bio->state);
1629 clear_bit(R1BIO_Barrier, &r1_bio->state);
1630 for (i=0; i < conf->raid_disks; i++)
NeilBrown2f889122006-03-27 01:18:19 -08001631 if (r1_bio->bios[i])
1632 atomic_inc(&r1_bio->remaining);
1633 for (i=0; i < conf->raid_disks; i++)
NeilBrowna9701a32005-11-08 21:39:34 -08001634 if (r1_bio->bios[i]) {
1635 struct bio_vec *bvec;
1636 int j;
1637
1638 bio = bio_clone(r1_bio->master_bio, GFP_NOIO);
1639 /* copy pages from the failed bio, as
1640 * this might be a write-behind device */
1641 __bio_for_each_segment(bvec, bio, j, 0)
1642 bvec->bv_page = bio_iovec_idx(r1_bio->bios[i], j)->bv_page;
1643 bio_put(r1_bio->bios[i]);
1644 bio->bi_sector = r1_bio->sector +
1645 conf->mirrors[i].rdev->data_offset;
1646 bio->bi_bdev = conf->mirrors[i].rdev->bdev;
1647 bio->bi_end_io = raid1_end_write_request;
Dmitry Monakhov1ef04fe2009-09-20 05:52:25 +04001648 bio->bi_rw = WRITE |
1649 (do_sync << BIO_RW_SYNCIO);
NeilBrowna9701a32005-11-08 21:39:34 -08001650 bio->bi_private = r1_bio;
1651 r1_bio->bios[i] = bio;
1652 generic_make_request(bio);
1653 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 } else {
1655 int disk;
NeilBrownddaf22a2006-01-06 00:20:19 -08001656
1657 /* we got a read error. Maybe the drive is bad. Maybe just
1658 * the block and we can fix it.
1659 * We freeze all other IO, and try reading the block from
1660 * other devices. When we find one, we re-write
1661 * and check it that fixes the read error.
1662 * This is all done synchronously while the array is
1663 * frozen
1664 */
NeilBrown867868f2006-10-03 01:15:51 -07001665 if (mddev->ro == 0) {
1666 freeze_array(conf);
1667 fix_read_error(conf, r1_bio->read_disk,
1668 r1_bio->sector,
1669 r1_bio->sectors);
1670 unfreeze_array(conf);
NeilBrownd0e26072009-12-01 17:30:59 +11001671 } else
1672 md_error(mddev,
1673 conf->mirrors[r1_bio->read_disk].rdev);
NeilBrownddaf22a2006-01-06 00:20:19 -08001674
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 bio = r1_bio->bios[r1_bio->read_disk];
NeilBrownd0e26072009-12-01 17:30:59 +11001676 if ((disk=read_balance(conf, r1_bio)) == -1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 printk(KERN_ALERT "raid1: %s: unrecoverable I/O"
1678 " read error for block %llu\n",
1679 bdevname(bio->bi_bdev,b),
1680 (unsigned long long)r1_bio->sector);
1681 raid_end_bio_io(r1_bio);
1682 } else {
Jens Axboe1f98a132009-09-11 14:32:04 +02001683 const bool do_sync = bio_rw_flagged(r1_bio->master_bio, BIO_RW_SYNCIO);
NeilBrowncf30a472006-01-06 00:20:23 -08001684 r1_bio->bios[r1_bio->read_disk] =
1685 mddev->ro ? IO_BLOCKED : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 r1_bio->read_disk = disk;
1687 bio_put(bio);
1688 bio = bio_clone(r1_bio->master_bio, GFP_NOIO);
1689 r1_bio->bios[r1_bio->read_disk] = bio;
1690 rdev = conf->mirrors[disk].rdev;
1691 if (printk_ratelimit())
1692 printk(KERN_ERR "raid1: %s: redirecting sector %llu to"
1693 " another mirror\n",
1694 bdevname(rdev->bdev,b),
1695 (unsigned long long)r1_bio->sector);
1696 bio->bi_sector = r1_bio->sector + rdev->data_offset;
1697 bio->bi_bdev = rdev->bdev;
1698 bio->bi_end_io = raid1_end_read_request;
Dmitry Monakhov1ef04fe2009-09-20 05:52:25 +04001699 bio->bi_rw = READ | (do_sync << BIO_RW_SYNCIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 bio->bi_private = r1_bio;
1701 unplug = 1;
1702 generic_make_request(bio);
1703 }
1704 }
NeilBrown1d9d5242009-10-16 15:55:32 +11001705 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 if (unplug)
1708 unplug_slaves(mddev);
1709}
1710
1711
1712static int init_resync(conf_t *conf)
1713{
1714 int buffs;
1715
1716 buffs = RESYNC_WINDOW / RESYNC_BLOCK_SIZE;
Eric Sesterhenn9e77c482006-04-01 01:08:49 +02001717 BUG_ON(conf->r1buf_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 conf->r1buf_pool = mempool_create(buffs, r1buf_pool_alloc, r1buf_pool_free,
1719 conf->poolinfo);
1720 if (!conf->r1buf_pool)
1721 return -ENOMEM;
1722 conf->next_resync = 0;
1723 return 0;
1724}
1725
1726/*
1727 * perform a "sync" on one "block"
1728 *
1729 * We need to make sure that no normal I/O request - particularly write
1730 * requests - conflict with active sync requests.
1731 *
1732 * This is achieved by tracking pending requests and a 'barrier' concept
1733 * that can be installed to exclude normal IO requests.
1734 */
1735
NeilBrown57afd892005-06-21 17:17:13 -07001736static sector_t sync_request(mddev_t *mddev, sector_t sector_nr, int *skipped, int go_faster)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737{
NeilBrown070ec552009-06-16 16:54:21 +10001738 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 r1bio_t *r1_bio;
1740 struct bio *bio;
1741 sector_t max_sector, nr_sectors;
NeilBrown3e198f72006-01-06 00:20:21 -08001742 int disk = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 int i;
NeilBrown3e198f72006-01-06 00:20:21 -08001744 int wonly = -1;
1745 int write_targets = 0, read_targets = 0;
NeilBrown191ea9b2005-06-21 17:17:23 -07001746 int sync_blocks;
NeilBrowne3b97032005-08-04 12:53:34 -07001747 int still_degraded = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
1749 if (!conf->r1buf_pool)
NeilBrown191ea9b2005-06-21 17:17:23 -07001750 {
1751/*
1752 printk("sync start - bitmap %p\n", mddev->bitmap);
1753*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 if (init_resync(conf))
NeilBrown57afd892005-06-21 17:17:13 -07001755 return 0;
NeilBrown191ea9b2005-06-21 17:17:23 -07001756 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
Andre Noll58c0fed2009-03-31 14:33:13 +11001758 max_sector = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 if (sector_nr >= max_sector) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001760 /* If we aborted, we need to abort the
1761 * sync on the 'current' bitmap chunk (there will
1762 * only be one in raid1 resync.
1763 * We can find the current addess in mddev->curr_resync
1764 */
NeilBrown6a806c52005-07-15 03:56:35 -07001765 if (mddev->curr_resync < max_sector) /* aborted */
1766 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
NeilBrown191ea9b2005-06-21 17:17:23 -07001767 &sync_blocks, 1);
NeilBrown6a806c52005-07-15 03:56:35 -07001768 else /* completed sync */
NeilBrown191ea9b2005-06-21 17:17:23 -07001769 conf->fullsync = 0;
NeilBrown6a806c52005-07-15 03:56:35 -07001770
1771 bitmap_close_sync(mddev->bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 close_sync(conf);
1773 return 0;
1774 }
1775
NeilBrown07d84d102006-06-26 00:27:56 -07001776 if (mddev->bitmap == NULL &&
1777 mddev->recovery_cp == MaxSector &&
NeilBrown6394cca2006-08-27 01:23:50 -07001778 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
NeilBrown07d84d102006-06-26 00:27:56 -07001779 conf->fullsync == 0) {
1780 *skipped = 1;
1781 return max_sector - sector_nr;
1782 }
NeilBrown6394cca2006-08-27 01:23:50 -07001783 /* before building a request, check if we can skip these blocks..
1784 * This call the bitmap_start_sync doesn't actually record anything
1785 */
NeilBrowne3b97032005-08-04 12:53:34 -07001786 if (!bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
NeilBrowne5de4852005-11-08 21:39:38 -08001787 !conf->fullsync && !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001788 /* We can skip this block, and probably several more */
1789 *skipped = 1;
1790 return sync_blocks;
1791 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 /*
NeilBrown17999be2006-01-06 00:20:12 -08001793 * If there is non-resync activity waiting for a turn,
1794 * and resync is going fast enough,
1795 * then let it though before starting on this new sync request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 */
NeilBrown17999be2006-01-06 00:20:12 -08001797 if (!go_faster && conf->nr_waiting)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 msleep_interruptible(1000);
NeilBrown17999be2006-01-06 00:20:12 -08001799
NeilBrownb47490c2008-02-06 01:39:50 -08001800 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
NeilBrown17999be2006-01-06 00:20:12 -08001801 raise_barrier(conf);
1802
1803 conf->next_resync = sector_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 r1_bio = mempool_alloc(conf->r1buf_pool, GFP_NOIO);
NeilBrown3e198f72006-01-06 00:20:21 -08001806 rcu_read_lock();
1807 /*
1808 * If we get a correctably read error during resync or recovery,
1809 * we might want to read from a different device. So we
1810 * flag all drives that could conceivably be read from for READ,
1811 * and any others (which will be non-In_sync devices) for WRITE.
1812 * If a read fails, we try reading from something else for which READ
1813 * is OK.
1814 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 r1_bio->mddev = mddev;
1817 r1_bio->sector = sector_nr;
NeilBrown191ea9b2005-06-21 17:17:23 -07001818 r1_bio->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 set_bit(R1BIO_IsSync, &r1_bio->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
1821 for (i=0; i < conf->raid_disks; i++) {
NeilBrown3e198f72006-01-06 00:20:21 -08001822 mdk_rdev_t *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 bio = r1_bio->bios[i];
1824
1825 /* take from bio_init */
1826 bio->bi_next = NULL;
1827 bio->bi_flags |= 1 << BIO_UPTODATE;
NeilBrown802ba062006-12-13 00:34:13 -08001828 bio->bi_rw = READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 bio->bi_vcnt = 0;
1830 bio->bi_idx = 0;
1831 bio->bi_phys_segments = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 bio->bi_size = 0;
1833 bio->bi_end_io = NULL;
1834 bio->bi_private = NULL;
1835
NeilBrown3e198f72006-01-06 00:20:21 -08001836 rdev = rcu_dereference(conf->mirrors[i].rdev);
1837 if (rdev == NULL ||
1838 test_bit(Faulty, &rdev->flags)) {
NeilBrowne3b97032005-08-04 12:53:34 -07001839 still_degraded = 1;
1840 continue;
NeilBrown3e198f72006-01-06 00:20:21 -08001841 } else if (!test_bit(In_sync, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 bio->bi_rw = WRITE;
1843 bio->bi_end_io = end_sync_write;
1844 write_targets ++;
NeilBrown3e198f72006-01-06 00:20:21 -08001845 } else {
1846 /* may need to read from here */
1847 bio->bi_rw = READ;
1848 bio->bi_end_io = end_sync_read;
1849 if (test_bit(WriteMostly, &rdev->flags)) {
1850 if (wonly < 0)
1851 wonly = i;
1852 } else {
1853 if (disk < 0)
1854 disk = i;
1855 }
1856 read_targets++;
1857 }
1858 atomic_inc(&rdev->nr_pending);
1859 bio->bi_sector = sector_nr + rdev->data_offset;
1860 bio->bi_bdev = rdev->bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 bio->bi_private = r1_bio;
1862 }
NeilBrown3e198f72006-01-06 00:20:21 -08001863 rcu_read_unlock();
1864 if (disk < 0)
1865 disk = wonly;
1866 r1_bio->read_disk = disk;
NeilBrown191ea9b2005-06-21 17:17:23 -07001867
NeilBrown3e198f72006-01-06 00:20:21 -08001868 if (test_bit(MD_RECOVERY_SYNC, &mddev->recovery) && read_targets > 0)
1869 /* extra read targets are also write targets */
1870 write_targets += read_targets-1;
1871
1872 if (write_targets == 0 || read_targets == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 /* There is nowhere to write, so all non-sync
1874 * drives must be failed - so we are finished
1875 */
NeilBrown57afd892005-06-21 17:17:13 -07001876 sector_t rv = max_sector - sector_nr;
1877 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 put_buf(r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 return rv;
1880 }
1881
NeilBrownc6207272008-02-06 01:39:52 -08001882 if (max_sector > mddev->resync_max)
1883 max_sector = mddev->resync_max; /* Don't do IO beyond here */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 nr_sectors = 0;
NeilBrown289e99e2005-06-21 17:17:24 -07001885 sync_blocks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 do {
1887 struct page *page;
1888 int len = PAGE_SIZE;
1889 if (sector_nr + (len>>9) > max_sector)
1890 len = (max_sector - sector_nr) << 9;
1891 if (len == 0)
1892 break;
NeilBrown6a806c52005-07-15 03:56:35 -07001893 if (sync_blocks == 0) {
1894 if (!bitmap_start_sync(mddev->bitmap, sector_nr,
NeilBrowne5de4852005-11-08 21:39:38 -08001895 &sync_blocks, still_degraded) &&
1896 !conf->fullsync &&
1897 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery))
NeilBrown6a806c52005-07-15 03:56:35 -07001898 break;
Eric Sesterhenn9e77c482006-04-01 01:08:49 +02001899 BUG_ON(sync_blocks < (PAGE_SIZE>>9));
NeilBrown6a806c52005-07-15 03:56:35 -07001900 if (len > (sync_blocks<<9))
1901 len = sync_blocks<<9;
NeilBrownab7a30c2005-06-21 17:17:23 -07001902 }
NeilBrown191ea9b2005-06-21 17:17:23 -07001903
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 for (i=0 ; i < conf->raid_disks; i++) {
1905 bio = r1_bio->bios[i];
1906 if (bio->bi_end_io) {
NeilBrownd11c1712006-01-06 00:20:26 -08001907 page = bio->bi_io_vec[bio->bi_vcnt].bv_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 if (bio_add_page(bio, page, len, 0) == 0) {
1909 /* stop here */
NeilBrownd11c1712006-01-06 00:20:26 -08001910 bio->bi_io_vec[bio->bi_vcnt].bv_page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 while (i > 0) {
1912 i--;
1913 bio = r1_bio->bios[i];
NeilBrown6a806c52005-07-15 03:56:35 -07001914 if (bio->bi_end_io==NULL)
1915 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 /* remove last page from this bio */
1917 bio->bi_vcnt--;
1918 bio->bi_size -= len;
1919 bio->bi_flags &= ~(1<< BIO_SEG_VALID);
1920 }
1921 goto bio_full;
1922 }
1923 }
1924 }
1925 nr_sectors += len>>9;
1926 sector_nr += len>>9;
NeilBrown191ea9b2005-06-21 17:17:23 -07001927 sync_blocks -= (len>>9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 } while (r1_bio->bios[disk]->bi_vcnt < RESYNC_PAGES);
1929 bio_full:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 r1_bio->sectors = nr_sectors;
1931
NeilBrownd11c1712006-01-06 00:20:26 -08001932 /* For a user-requested sync, we read all readable devices and do a
1933 * compare
1934 */
1935 if (test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) {
1936 atomic_set(&r1_bio->remaining, read_targets);
1937 for (i=0; i<conf->raid_disks; i++) {
1938 bio = r1_bio->bios[i];
1939 if (bio->bi_end_io == end_sync_read) {
NeilBrownddac7c72006-08-31 21:27:36 -07001940 md_sync_acct(bio->bi_bdev, nr_sectors);
NeilBrownd11c1712006-01-06 00:20:26 -08001941 generic_make_request(bio);
1942 }
1943 }
1944 } else {
1945 atomic_set(&r1_bio->remaining, 1);
1946 bio = r1_bio->bios[r1_bio->read_disk];
NeilBrownddac7c72006-08-31 21:27:36 -07001947 md_sync_acct(bio->bi_bdev, nr_sectors);
NeilBrownd11c1712006-01-06 00:20:26 -08001948 generic_make_request(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
NeilBrownd11c1712006-01-06 00:20:26 -08001950 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 return nr_sectors;
1952}
1953
Dan Williams80c3a6c2009-03-17 18:10:40 -07001954static sector_t raid1_size(mddev_t *mddev, sector_t sectors, int raid_disks)
1955{
1956 if (sectors)
1957 return sectors;
1958
1959 return mddev->dev_sectors;
1960}
1961
NeilBrown709ae482009-12-14 12:49:51 +11001962static conf_t *setup_conf(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963{
1964 conf_t *conf;
NeilBrown709ae482009-12-14 12:49:51 +11001965 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 mirror_info_t *disk;
1967 mdk_rdev_t *rdev;
NeilBrown709ae482009-12-14 12:49:51 +11001968 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969
NeilBrown9ffae0c2006-01-06 00:20:32 -08001970 conf = kzalloc(sizeof(conf_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 if (!conf)
NeilBrown709ae482009-12-14 12:49:51 +11001972 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
NeilBrown9ffae0c2006-01-06 00:20:32 -08001974 conf->mirrors = kzalloc(sizeof(struct mirror_info)*mddev->raid_disks,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 GFP_KERNEL);
1976 if (!conf->mirrors)
NeilBrown709ae482009-12-14 12:49:51 +11001977 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978
NeilBrownddaf22a2006-01-06 00:20:19 -08001979 conf->tmppage = alloc_page(GFP_KERNEL);
1980 if (!conf->tmppage)
NeilBrown709ae482009-12-14 12:49:51 +11001981 goto abort;
NeilBrownddaf22a2006-01-06 00:20:19 -08001982
NeilBrown709ae482009-12-14 12:49:51 +11001983 conf->poolinfo = kzalloc(sizeof(*conf->poolinfo), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 if (!conf->poolinfo)
NeilBrown709ae482009-12-14 12:49:51 +11001985 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 conf->poolinfo->raid_disks = mddev->raid_disks;
1987 conf->r1bio_pool = mempool_create(NR_RAID1_BIOS, r1bio_pool_alloc,
1988 r1bio_pool_free,
1989 conf->poolinfo);
1990 if (!conf->r1bio_pool)
NeilBrown709ae482009-12-14 12:49:51 +11001991 goto abort;
1992
NeilBrowned9bfdf2009-10-16 15:55:44 +11001993 conf->poolinfo->mddev = mddev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994
Neil Browne7e72bf2008-05-14 16:05:54 -07001995 spin_lock_init(&conf->device_lock);
Cheng Renquan159ec1f2009-01-09 08:31:08 +11001996 list_for_each_entry(rdev, &mddev->disks, same_set) {
NeilBrown709ae482009-12-14 12:49:51 +11001997 int disk_idx = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 if (disk_idx >= mddev->raid_disks
1999 || disk_idx < 0)
2000 continue;
2001 disk = conf->mirrors + disk_idx;
2002
2003 disk->rdev = rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004
2005 disk->head_position = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 }
2007 conf->raid_disks = mddev->raid_disks;
2008 conf->mddev = mddev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 INIT_LIST_HEAD(&conf->retry_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
2011 spin_lock_init(&conf->resync_lock);
NeilBrown17999be2006-01-06 00:20:12 -08002012 init_waitqueue_head(&conf->wait_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
NeilBrown191ea9b2005-06-21 17:17:23 -07002014 bio_list_init(&conf->pending_bio_list);
2015 bio_list_init(&conf->flushing_bio_list);
2016
NeilBrown709ae482009-12-14 12:49:51 +11002017 conf->last_used = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 for (i = 0; i < conf->raid_disks; i++) {
2019
2020 disk = conf->mirrors + i;
2021
NeilBrown5fd6c1d2006-06-26 00:27:40 -07002022 if (!disk->rdev ||
2023 !test_bit(In_sync, &disk->rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 disk->head_position = 0;
NeilBrown918f0232007-08-22 14:01:52 -07002025 if (disk->rdev)
2026 conf->fullsync = 1;
NeilBrown709ae482009-12-14 12:49:51 +11002027 } else if (conf->last_used < 0)
2028 /*
2029 * The first working device is used as a
2030 * starting point to read balancing.
2031 */
2032 conf->last_used = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 }
NeilBrown709ae482009-12-14 12:49:51 +11002034
2035 err = -EIO;
2036 if (conf->last_used < 0) {
NeilBrown11ce99e2006-10-03 01:15:52 -07002037 printk(KERN_ERR "raid1: no operational mirrors for %s\n",
NeilBrown709ae482009-12-14 12:49:51 +11002038 mdname(mddev));
2039 goto abort;
NeilBrown11ce99e2006-10-03 01:15:52 -07002040 }
NeilBrown709ae482009-12-14 12:49:51 +11002041 err = -ENOMEM;
2042 conf->thread = md_register_thread(raid1d, mddev, NULL);
2043 if (!conf->thread) {
NeilBrown191ea9b2005-06-21 17:17:23 -07002044 printk(KERN_ERR
2045 "raid1: couldn't allocate thread for %s\n",
2046 mdname(mddev));
NeilBrown709ae482009-12-14 12:49:51 +11002047 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 }
NeilBrown191ea9b2005-06-21 17:17:23 -07002049
NeilBrown709ae482009-12-14 12:49:51 +11002050 return conf;
2051
2052 abort:
2053 if (conf) {
2054 if (conf->r1bio_pool)
2055 mempool_destroy(conf->r1bio_pool);
2056 kfree(conf->mirrors);
2057 safe_put_page(conf->tmppage);
2058 kfree(conf->poolinfo);
2059 kfree(conf);
2060 }
2061 return ERR_PTR(err);
2062}
2063
2064static int run(mddev_t *mddev)
2065{
2066 conf_t *conf;
2067 int i;
2068 mdk_rdev_t *rdev;
2069
2070 if (mddev->level != 1) {
2071 printk("raid1: %s: raid level not set to mirroring (%d)\n",
2072 mdname(mddev), mddev->level);
2073 return -EIO;
2074 }
2075 if (mddev->reshape_position != MaxSector) {
2076 printk("raid1: %s: reshape_position set but not supported\n",
2077 mdname(mddev));
2078 return -EIO;
2079 }
2080 /*
2081 * copy the already verified devices into our private RAID1
2082 * bookkeeping area. [whatever we allocate in run(),
2083 * should be freed in stop()]
2084 */
2085 if (mddev->private == NULL)
2086 conf = setup_conf(mddev);
2087 else
2088 conf = mddev->private;
2089
2090 if (IS_ERR(conf))
2091 return PTR_ERR(conf);
2092
2093 mddev->queue->queue_lock = &conf->device_lock;
2094 list_for_each_entry(rdev, &mddev->disks, same_set) {
2095 disk_stack_limits(mddev->gendisk, rdev->bdev,
2096 rdev->data_offset << 9);
2097 /* as we don't honour merge_bvec_fn, we must never risk
NeilBrown627a2d32010-03-08 16:44:38 +11002098 * violating it, so limit ->max_segments to 1 lying within
2099 * a single page, as a one page request is never in violation.
NeilBrown709ae482009-12-14 12:49:51 +11002100 */
NeilBrown627a2d32010-03-08 16:44:38 +11002101 if (rdev->bdev->bd_disk->queue->merge_bvec_fn) {
2102 blk_queue_max_segments(mddev->queue, 1);
2103 blk_queue_segment_boundary(mddev->queue,
2104 PAGE_CACHE_SIZE - 1);
2105 }
NeilBrown709ae482009-12-14 12:49:51 +11002106 }
2107
2108 mddev->degraded = 0;
2109 for (i=0; i < conf->raid_disks; i++)
2110 if (conf->mirrors[i].rdev == NULL ||
2111 !test_bit(In_sync, &conf->mirrors[i].rdev->flags) ||
2112 test_bit(Faulty, &conf->mirrors[i].rdev->flags))
2113 mddev->degraded++;
2114
2115 if (conf->raid_disks - mddev->degraded == 1)
2116 mddev->recovery_cp = MaxSector;
2117
Andre Noll8c6ac862009-06-18 08:48:06 +10002118 if (mddev->recovery_cp != MaxSector)
2119 printk(KERN_NOTICE "raid1: %s is not clean"
2120 " -- starting background reconstruction\n",
2121 mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 printk(KERN_INFO
2123 "raid1: raid set %s active with %d out of %d mirrors\n",
2124 mdname(mddev), mddev->raid_disks - mddev->degraded,
2125 mddev->raid_disks);
NeilBrown709ae482009-12-14 12:49:51 +11002126
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 /*
2128 * Ok, everything is just fine now
2129 */
NeilBrown709ae482009-12-14 12:49:51 +11002130 mddev->thread = conf->thread;
2131 conf->thread = NULL;
2132 mddev->private = conf;
2133
Dan Williams1f403622009-03-31 14:59:03 +11002134 md_set_array_sectors(mddev, raid1_size(mddev, 0, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
NeilBrown7a5febe2005-05-16 21:53:16 -07002136 mddev->queue->unplug_fn = raid1_unplug;
NeilBrown0d129222006-10-03 01:15:54 -07002137 mddev->queue->backing_dev_info.congested_fn = raid1_congested;
2138 mddev->queue->backing_dev_info.congested_data = mddev;
Andre Nollac5e7112009-08-03 10:59:47 +10002139 md_integrity_register(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141}
2142
2143static int stop(mddev_t *mddev)
2144{
NeilBrown070ec552009-06-16 16:54:21 +10002145 conf_t *conf = mddev->private;
NeilBrown4b6d2872005-09-09 16:23:47 -07002146 struct bitmap *bitmap = mddev->bitmap;
2147 int behind_wait = 0;
2148
2149 /* wait for behind writes to complete */
2150 while (bitmap && atomic_read(&bitmap->behind_writes) > 0) {
2151 behind_wait++;
2152 printk(KERN_INFO "raid1: behind writes in progress on device %s, waiting to stop (%d)\n", mdname(mddev), behind_wait);
2153 set_current_state(TASK_UNINTERRUPTIBLE);
2154 schedule_timeout(HZ); /* wait a second */
2155 /* need to kick something here to make sure I/O goes? */
2156 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157
NeilBrown409c57f2009-03-31 14:39:39 +11002158 raise_barrier(conf);
2159 lower_barrier(conf);
2160
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 md_unregister_thread(mddev->thread);
2162 mddev->thread = NULL;
2163 blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/
2164 if (conf->r1bio_pool)
2165 mempool_destroy(conf->r1bio_pool);
Jesper Juhl990a8ba2005-06-21 17:17:30 -07002166 kfree(conf->mirrors);
2167 kfree(conf->poolinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 kfree(conf);
2169 mddev->private = NULL;
2170 return 0;
2171}
2172
2173static int raid1_resize(mddev_t *mddev, sector_t sectors)
2174{
2175 /* no resync is happening, and there is enough space
2176 * on all devices, so we can resize.
2177 * We need to make sure resync covers any new space.
2178 * If the array is shrinking we should possibly wait until
2179 * any io in the removed space completes, but it hardly seems
2180 * worth it.
2181 */
Dan Williams1f403622009-03-31 14:59:03 +11002182 md_set_array_sectors(mddev, raid1_size(mddev, sectors, 0));
Dan Williamsb522adc2009-03-31 15:00:31 +11002183 if (mddev->array_sectors > raid1_size(mddev, sectors, 0))
2184 return -EINVAL;
Andre Nollf233ea52008-07-21 17:05:22 +10002185 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10002186 revalidate_disk(mddev->gendisk);
Dan Williamsb522adc2009-03-31 15:00:31 +11002187 if (sectors > mddev->dev_sectors &&
Andre Nollf233ea52008-07-21 17:05:22 +10002188 mddev->recovery_cp == MaxSector) {
Andre Noll58c0fed2009-03-31 14:33:13 +11002189 mddev->recovery_cp = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
2191 }
Dan Williamsb522adc2009-03-31 15:00:31 +11002192 mddev->dev_sectors = sectors;
NeilBrown4b5c7ae2005-07-27 11:43:28 -07002193 mddev->resync_max_sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 return 0;
2195}
2196
NeilBrown63c70c42006-03-27 01:18:13 -08002197static int raid1_reshape(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198{
2199 /* We need to:
2200 * 1/ resize the r1bio_pool
2201 * 2/ resize conf->mirrors
2202 *
2203 * We allocate a new r1bio_pool if we can.
2204 * Then raise a device barrier and wait until all IO stops.
2205 * Then resize conf->mirrors and swap in the new r1bio pool.
NeilBrown6ea9c072005-06-21 17:17:09 -07002206 *
2207 * At the same time, we "pack" the devices so that all the missing
2208 * devices have the higher raid_disk numbers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 */
2210 mempool_t *newpool, *oldpool;
2211 struct pool_info *newpoolinfo;
2212 mirror_info_t *newmirrors;
NeilBrown070ec552009-06-16 16:54:21 +10002213 conf_t *conf = mddev->private;
NeilBrown63c70c42006-03-27 01:18:13 -08002214 int cnt, raid_disks;
NeilBrownc04be0a2006-10-03 01:15:53 -07002215 unsigned long flags;
Dan Williamsb5470dc2008-06-27 21:44:04 -07002216 int d, d2, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
NeilBrown63c70c42006-03-27 01:18:13 -08002218 /* Cannot change chunk_size, layout, or level */
Andre Noll664e7c42009-06-18 08:45:27 +10002219 if (mddev->chunk_sectors != mddev->new_chunk_sectors ||
NeilBrown63c70c42006-03-27 01:18:13 -08002220 mddev->layout != mddev->new_layout ||
2221 mddev->level != mddev->new_level) {
Andre Noll664e7c42009-06-18 08:45:27 +10002222 mddev->new_chunk_sectors = mddev->chunk_sectors;
NeilBrown63c70c42006-03-27 01:18:13 -08002223 mddev->new_layout = mddev->layout;
2224 mddev->new_level = mddev->level;
2225 return -EINVAL;
2226 }
2227
Dan Williamsb5470dc2008-06-27 21:44:04 -07002228 err = md_allow_write(mddev);
2229 if (err)
2230 return err;
NeilBrown2a2275d2007-01-26 00:57:11 -08002231
NeilBrown63c70c42006-03-27 01:18:13 -08002232 raid_disks = mddev->raid_disks + mddev->delta_disks;
2233
NeilBrown6ea9c072005-06-21 17:17:09 -07002234 if (raid_disks < conf->raid_disks) {
2235 cnt=0;
2236 for (d= 0; d < conf->raid_disks; d++)
2237 if (conf->mirrors[d].rdev)
2238 cnt++;
2239 if (cnt > raid_disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 return -EBUSY;
NeilBrown6ea9c072005-06-21 17:17:09 -07002241 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242
2243 newpoolinfo = kmalloc(sizeof(*newpoolinfo), GFP_KERNEL);
2244 if (!newpoolinfo)
2245 return -ENOMEM;
2246 newpoolinfo->mddev = mddev;
2247 newpoolinfo->raid_disks = raid_disks;
2248
2249 newpool = mempool_create(NR_RAID1_BIOS, r1bio_pool_alloc,
2250 r1bio_pool_free, newpoolinfo);
2251 if (!newpool) {
2252 kfree(newpoolinfo);
2253 return -ENOMEM;
2254 }
NeilBrown9ffae0c2006-01-06 00:20:32 -08002255 newmirrors = kzalloc(sizeof(struct mirror_info) * raid_disks, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 if (!newmirrors) {
2257 kfree(newpoolinfo);
2258 mempool_destroy(newpool);
2259 return -ENOMEM;
2260 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
NeilBrown17999be2006-01-06 00:20:12 -08002262 raise_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263
2264 /* ok, everything is stopped */
2265 oldpool = conf->r1bio_pool;
2266 conf->r1bio_pool = newpool;
NeilBrown6ea9c072005-06-21 17:17:09 -07002267
NeilBrowna88aa782007-08-22 14:01:53 -07002268 for (d = d2 = 0; d < conf->raid_disks; d++) {
2269 mdk_rdev_t *rdev = conf->mirrors[d].rdev;
2270 if (rdev && rdev->raid_disk != d2) {
2271 char nm[20];
2272 sprintf(nm, "rd%d", rdev->raid_disk);
2273 sysfs_remove_link(&mddev->kobj, nm);
2274 rdev->raid_disk = d2;
2275 sprintf(nm, "rd%d", rdev->raid_disk);
2276 sysfs_remove_link(&mddev->kobj, nm);
2277 if (sysfs_create_link(&mddev->kobj,
2278 &rdev->kobj, nm))
2279 printk(KERN_WARNING
2280 "md/raid1: cannot register "
2281 "%s for %s\n",
2282 nm, mdname(mddev));
NeilBrown6ea9c072005-06-21 17:17:09 -07002283 }
NeilBrowna88aa782007-08-22 14:01:53 -07002284 if (rdev)
2285 newmirrors[d2++].rdev = rdev;
2286 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 kfree(conf->mirrors);
2288 conf->mirrors = newmirrors;
2289 kfree(conf->poolinfo);
2290 conf->poolinfo = newpoolinfo;
2291
NeilBrownc04be0a2006-10-03 01:15:53 -07002292 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 mddev->degraded += (raid_disks - conf->raid_disks);
NeilBrownc04be0a2006-10-03 01:15:53 -07002294 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 conf->raid_disks = mddev->raid_disks = raid_disks;
NeilBrown63c70c42006-03-27 01:18:13 -08002296 mddev->delta_disks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297
NeilBrown6ea9c072005-06-21 17:17:09 -07002298 conf->last_used = 0; /* just make sure it is in-range */
NeilBrown17999be2006-01-06 00:20:12 -08002299 lower_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300
2301 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
2302 md_wakeup_thread(mddev->thread);
2303
2304 mempool_destroy(oldpool);
2305 return 0;
2306}
2307
NeilBrown500af872005-09-09 16:23:58 -07002308static void raid1_quiesce(mddev_t *mddev, int state)
NeilBrown36fa3062005-09-09 16:23:45 -07002309{
NeilBrown070ec552009-06-16 16:54:21 +10002310 conf_t *conf = mddev->private;
NeilBrown36fa3062005-09-09 16:23:45 -07002311
2312 switch(state) {
NeilBrown6eef4b22009-12-14 12:49:51 +11002313 case 2: /* wake for suspend */
2314 wake_up(&conf->wait_barrier);
2315 break;
NeilBrown9e6603d2005-09-09 16:23:48 -07002316 case 1:
NeilBrown17999be2006-01-06 00:20:12 -08002317 raise_barrier(conf);
NeilBrown36fa3062005-09-09 16:23:45 -07002318 break;
NeilBrown9e6603d2005-09-09 16:23:48 -07002319 case 0:
NeilBrown17999be2006-01-06 00:20:12 -08002320 lower_barrier(conf);
NeilBrown36fa3062005-09-09 16:23:45 -07002321 break;
2322 }
NeilBrown36fa3062005-09-09 16:23:45 -07002323}
2324
NeilBrown709ae482009-12-14 12:49:51 +11002325static void *raid1_takeover(mddev_t *mddev)
2326{
2327 /* raid1 can take over:
2328 * raid5 with 2 devices, any layout or chunk size
2329 */
2330 if (mddev->level == 5 && mddev->raid_disks == 2) {
2331 conf_t *conf;
2332 mddev->new_level = 1;
2333 mddev->new_layout = 0;
2334 mddev->new_chunk_sectors = 0;
2335 conf = setup_conf(mddev);
2336 if (!IS_ERR(conf))
2337 conf->barrier = 1;
2338 return conf;
2339 }
2340 return ERR_PTR(-EINVAL);
2341}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342
NeilBrown2604b702006-01-06 00:20:36 -08002343static struct mdk_personality raid1_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344{
2345 .name = "raid1",
NeilBrown2604b702006-01-06 00:20:36 -08002346 .level = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 .owner = THIS_MODULE,
2348 .make_request = make_request,
2349 .run = run,
2350 .stop = stop,
2351 .status = status,
2352 .error_handler = error,
2353 .hot_add_disk = raid1_add_disk,
2354 .hot_remove_disk= raid1_remove_disk,
2355 .spare_active = raid1_spare_active,
2356 .sync_request = sync_request,
2357 .resize = raid1_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07002358 .size = raid1_size,
NeilBrown63c70c42006-03-27 01:18:13 -08002359 .check_reshape = raid1_reshape,
NeilBrown36fa3062005-09-09 16:23:45 -07002360 .quiesce = raid1_quiesce,
NeilBrown709ae482009-12-14 12:49:51 +11002361 .takeover = raid1_takeover,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362};
2363
2364static int __init raid_init(void)
2365{
NeilBrown2604b702006-01-06 00:20:36 -08002366 return register_md_personality(&raid1_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367}
2368
2369static void raid_exit(void)
2370{
NeilBrown2604b702006-01-06 00:20:36 -08002371 unregister_md_personality(&raid1_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372}
2373
2374module_init(raid_init);
2375module_exit(raid_exit);
2376MODULE_LICENSE("GPL");
NeilBrown0efb9e62009-12-14 12:49:58 +11002377MODULE_DESCRIPTION("RAID1 (mirroring) personality for MD");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378MODULE_ALIAS("md-personality-3"); /* RAID1 */
NeilBrownd9d166c2006-01-06 00:20:51 -08002379MODULE_ALIAS("md-raid1");
NeilBrown2604b702006-01-06 00:20:36 -08002380MODULE_ALIAS("md-level-1");