blob: d50056ba596bd49764d8ea90e79e31d41f405f35 [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
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Stephen Rothwell25570722008-10-15 09:09:21 +110035#include <linux/delay.h>
NeilBrownbff61972009-03-31 14:33:13 +110036#include <linux/blkdev.h>
NeilBrownbff61972009-03-31 14:33:13 +110037#include <linux/seq_file.h>
NeilBrown43b2e5d2009-03-31 14:33:13 +110038#include "md.h"
Christoph Hellwigef740c32009-03-31 14:27:03 +110039#include "raid1.h"
40#include "bitmap.h"
NeilBrown191ea9b2005-06-21 17:17:23 -070041
42#define DEBUG 0
43#if DEBUG
44#define PRINTK(x...) printk(x)
45#else
46#define PRINTK(x...)
47#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49/*
50 * Number of guaranteed r1bios in case of extreme VM load:
51 */
52#define NR_RAID1_BIOS 256
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55static void unplug_slaves(mddev_t *mddev);
56
NeilBrown17999be2006-01-06 00:20:12 -080057static void allow_barrier(conf_t *conf);
58static void lower_barrier(conf_t *conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Al Virodd0fc662005-10-07 07:46:04 +010060static void * r1bio_pool_alloc(gfp_t gfp_flags, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
62 struct pool_info *pi = data;
63 r1bio_t *r1_bio;
64 int size = offsetof(r1bio_t, bios[pi->raid_disks]);
65
66 /* allocate a r1bio with room for raid_disks entries in the bios array */
NeilBrown9ffae0c2006-01-06 00:20:32 -080067 r1_bio = kzalloc(size, gfp_flags);
NeilBrowned9bfdf2009-10-16 15:55:44 +110068 if (!r1_bio && pi->mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 unplug_slaves(pi->mddev);
70
71 return r1_bio;
72}
73
74static void r1bio_pool_free(void *r1_bio, void *data)
75{
76 kfree(r1_bio);
77}
78
79#define RESYNC_BLOCK_SIZE (64*1024)
80//#define RESYNC_BLOCK_SIZE PAGE_SIZE
81#define RESYNC_SECTORS (RESYNC_BLOCK_SIZE >> 9)
82#define RESYNC_PAGES ((RESYNC_BLOCK_SIZE + PAGE_SIZE-1) / PAGE_SIZE)
83#define RESYNC_WINDOW (2048*1024)
84
Al Virodd0fc662005-10-07 07:46:04 +010085static void * r1buf_pool_alloc(gfp_t gfp_flags, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
87 struct pool_info *pi = data;
88 struct page *page;
89 r1bio_t *r1_bio;
90 struct bio *bio;
91 int i, j;
92
93 r1_bio = r1bio_pool_alloc(gfp_flags, pi);
94 if (!r1_bio) {
95 unplug_slaves(pi->mddev);
96 return NULL;
97 }
98
99 /*
100 * Allocate bios : 1 for reading, n-1 for writing
101 */
102 for (j = pi->raid_disks ; j-- ; ) {
NeilBrown67465572010-10-26 17:33:54 +1100103 bio = bio_kmalloc(gfp_flags, RESYNC_PAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 if (!bio)
105 goto out_free_bio;
106 r1_bio->bios[j] = bio;
107 }
108 /*
109 * Allocate RESYNC_PAGES data pages and attach them to
NeilBrownd11c1712006-01-06 00:20:26 -0800110 * the first bio.
111 * If this is a user-requested check/repair, allocate
112 * RESYNC_PAGES for each bio.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 */
NeilBrownd11c1712006-01-06 00:20:26 -0800114 if (test_bit(MD_RECOVERY_REQUESTED, &pi->mddev->recovery))
115 j = pi->raid_disks;
116 else
117 j = 1;
118 while(j--) {
119 bio = r1_bio->bios[j];
120 for (i = 0; i < RESYNC_PAGES; i++) {
121 page = alloc_page(gfp_flags);
122 if (unlikely(!page))
123 goto out_free_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
NeilBrownd11c1712006-01-06 00:20:26 -0800125 bio->bi_io_vec[i].bv_page = page;
NeilBrown303a0e12009-04-06 14:40:38 +1000126 bio->bi_vcnt = i+1;
NeilBrownd11c1712006-01-06 00:20:26 -0800127 }
128 }
129 /* If not user-requests, copy the page pointers to all bios */
130 if (!test_bit(MD_RECOVERY_REQUESTED, &pi->mddev->recovery)) {
131 for (i=0; i<RESYNC_PAGES ; i++)
132 for (j=1; j<pi->raid_disks; j++)
133 r1_bio->bios[j]->bi_io_vec[i].bv_page =
134 r1_bio->bios[0]->bi_io_vec[i].bv_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
136
137 r1_bio->master_bio = NULL;
138
139 return r1_bio;
140
141out_free_pages:
NeilBrown303a0e12009-04-06 14:40:38 +1000142 for (j=0 ; j < pi->raid_disks; j++)
143 for (i=0; i < r1_bio->bios[j]->bi_vcnt ; i++)
144 put_page(r1_bio->bios[j]->bi_io_vec[i].bv_page);
NeilBrownd11c1712006-01-06 00:20:26 -0800145 j = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146out_free_bio:
147 while ( ++j < pi->raid_disks )
148 bio_put(r1_bio->bios[j]);
149 r1bio_pool_free(r1_bio, data);
150 return NULL;
151}
152
153static void r1buf_pool_free(void *__r1_bio, void *data)
154{
155 struct pool_info *pi = data;
NeilBrownd11c1712006-01-06 00:20:26 -0800156 int i,j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 r1bio_t *r1bio = __r1_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
NeilBrownd11c1712006-01-06 00:20:26 -0800159 for (i = 0; i < RESYNC_PAGES; i++)
160 for (j = pi->raid_disks; j-- ;) {
161 if (j == 0 ||
162 r1bio->bios[j]->bi_io_vec[i].bv_page !=
163 r1bio->bios[0]->bi_io_vec[i].bv_page)
NeilBrown1345b1d2006-01-06 00:20:40 -0800164 safe_put_page(r1bio->bios[j]->bi_io_vec[i].bv_page);
NeilBrownd11c1712006-01-06 00:20:26 -0800165 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 for (i=0 ; i < pi->raid_disks; i++)
167 bio_put(r1bio->bios[i]);
168
169 r1bio_pool_free(r1bio, data);
170}
171
172static void put_all_bios(conf_t *conf, r1bio_t *r1_bio)
173{
174 int i;
175
176 for (i = 0; i < conf->raid_disks; i++) {
177 struct bio **bio = r1_bio->bios + i;
NeilBrowncf30a472006-01-06 00:20:23 -0800178 if (*bio && *bio != IO_BLOCKED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 bio_put(*bio);
180 *bio = NULL;
181 }
182}
183
Arjan van de Ven858119e2006-01-14 13:20:43 -0800184static void free_r1bio(r1bio_t *r1_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
NeilBrown070ec552009-06-16 16:54:21 +1000186 conf_t *conf = r1_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188 /*
189 * Wake up any possible resync thread that waits for the device
190 * to go idle.
191 */
NeilBrown17999be2006-01-06 00:20:12 -0800192 allow_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 put_all_bios(conf, r1_bio);
195 mempool_free(r1_bio, conf->r1bio_pool);
196}
197
Arjan van de Ven858119e2006-01-14 13:20:43 -0800198static void put_buf(r1bio_t *r1_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
NeilBrown070ec552009-06-16 16:54:21 +1000200 conf_t *conf = r1_bio->mddev->private;
NeilBrown3e198f72006-01-06 00:20:21 -0800201 int i;
202
203 for (i=0; i<conf->raid_disks; i++) {
204 struct bio *bio = r1_bio->bios[i];
205 if (bio->bi_end_io)
206 rdev_dec_pending(conf->mirrors[i].rdev, r1_bio->mddev);
207 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209 mempool_free(r1_bio, conf->r1buf_pool);
210
NeilBrown17999be2006-01-06 00:20:12 -0800211 lower_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212}
213
214static void reschedule_retry(r1bio_t *r1_bio)
215{
216 unsigned long flags;
217 mddev_t *mddev = r1_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +1000218 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220 spin_lock_irqsave(&conf->device_lock, flags);
221 list_add(&r1_bio->retry_list, &conf->retry_list);
NeilBrownddaf22a2006-01-06 00:20:19 -0800222 conf->nr_queued ++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 spin_unlock_irqrestore(&conf->device_lock, flags);
224
NeilBrown17999be2006-01-06 00:20:12 -0800225 wake_up(&conf->wait_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 md_wakeup_thread(mddev->thread);
227}
228
229/*
230 * raid_end_bio_io() is called when we have finished servicing a mirrored
231 * operation and are ready to return a success/failure code to the buffer
232 * cache layer.
233 */
234static void raid_end_bio_io(r1bio_t *r1_bio)
235{
236 struct bio *bio = r1_bio->master_bio;
237
NeilBrown4b6d2872005-09-09 16:23:47 -0700238 /* if nobody has done the final endio yet, do it now */
239 if (!test_and_set_bit(R1BIO_Returned, &r1_bio->state)) {
240 PRINTK(KERN_DEBUG "raid1: sync end %s on sectors %llu-%llu\n",
241 (bio_data_dir(bio) == WRITE) ? "write" : "read",
242 (unsigned long long) bio->bi_sector,
243 (unsigned long long) bio->bi_sector +
244 (bio->bi_size >> 9) - 1);
245
NeilBrown6712ecf2007-09-27 12:47:43 +0200246 bio_endio(bio,
NeilBrown4b6d2872005-09-09 16:23:47 -0700247 test_bit(R1BIO_Uptodate, &r1_bio->state) ? 0 : -EIO);
248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 free_r1bio(r1_bio);
250}
251
252/*
253 * Update disk head position estimator based on IRQ completion info.
254 */
255static inline void update_head_pos(int disk, r1bio_t *r1_bio)
256{
NeilBrown070ec552009-06-16 16:54:21 +1000257 conf_t *conf = r1_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 conf->mirrors[disk].head_position =
260 r1_bio->sector + (r1_bio->sectors);
261}
262
NeilBrown6712ecf2007-09-27 12:47:43 +0200263static void raid1_end_read_request(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
265 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
H Hartley Sweeten7b928132010-03-08 16:02:40 +1100266 r1bio_t *r1_bio = bio->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 int mirror;
NeilBrown070ec552009-06-16 16:54:21 +1000268 conf_t *conf = r1_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 mirror = r1_bio->read_disk;
271 /*
272 * this branch is our 'one mirror IO has finished' event handler:
273 */
NeilBrownddaf22a2006-01-06 00:20:19 -0800274 update_head_pos(mirror, r1_bio);
275
NeilBrowndd00a992007-05-10 03:15:50 -0700276 if (uptodate)
277 set_bit(R1BIO_Uptodate, &r1_bio->state);
278 else {
279 /* If all other devices have failed, we want to return
280 * the error upwards rather than fail the last device.
281 * Here we redefine "uptodate" to mean "Don't want to retry"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 */
NeilBrowndd00a992007-05-10 03:15:50 -0700283 unsigned long flags;
284 spin_lock_irqsave(&conf->device_lock, flags);
285 if (r1_bio->mddev->degraded == conf->raid_disks ||
286 (r1_bio->mddev->degraded == conf->raid_disks-1 &&
287 !test_bit(Faulty, &conf->mirrors[mirror].rdev->flags)))
288 uptodate = 1;
289 spin_unlock_irqrestore(&conf->device_lock, flags);
290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
NeilBrowndd00a992007-05-10 03:15:50 -0700292 if (uptodate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 raid_end_bio_io(r1_bio);
NeilBrowndd00a992007-05-10 03:15:50 -0700294 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 /*
296 * oops, read error:
297 */
298 char b[BDEVNAME_SIZE];
299 if (printk_ratelimit())
NeilBrown9dd1e2f2010-05-03 14:30:35 +1000300 printk(KERN_ERR "md/raid1:%s: %s: rescheduling sector %llu\n",
301 mdname(conf->mddev),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 bdevname(conf->mirrors[mirror].rdev->bdev,b), (unsigned long long)r1_bio->sector);
303 reschedule_retry(r1_bio);
304 }
305
306 rdev_dec_pending(conf->mirrors[mirror].rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307}
308
NeilBrown4e780642010-10-19 12:54:01 +1100309static void r1_bio_write_done(r1bio_t *r1_bio, int vcnt, struct bio_vec *bv,
310 int behind)
311{
312 if (atomic_dec_and_test(&r1_bio->remaining))
313 {
314 /* it really is the end of this request */
315 if (test_bit(R1BIO_BehindIO, &r1_bio->state)) {
316 /* free extra copy of the data pages */
317 int i = vcnt;
318 while (i--)
319 safe_put_page(bv[i].bv_page);
320 }
321 /* clear the bitmap if all writes complete successfully */
322 bitmap_endwrite(r1_bio->mddev->bitmap, r1_bio->sector,
323 r1_bio->sectors,
324 !test_bit(R1BIO_Degraded, &r1_bio->state),
325 behind);
326 md_write_end(r1_bio->mddev);
327 raid_end_bio_io(r1_bio);
328 }
329}
330
NeilBrown6712ecf2007-09-27 12:47:43 +0200331static void raid1_end_write_request(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
333 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
H Hartley Sweeten7b928132010-03-08 16:02:40 +1100334 r1bio_t *r1_bio = bio->bi_private;
NeilBrowna9701a32005-11-08 21:39:34 -0800335 int mirror, behind = test_bit(R1BIO_BehindIO, &r1_bio->state);
NeilBrown070ec552009-06-16 16:54:21 +1000336 conf_t *conf = r1_bio->mddev->private;
NeilBrown04b857f2006-03-09 17:33:46 -0800337 struct bio *to_put = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340 for (mirror = 0; mirror < conf->raid_disks; mirror++)
341 if (r1_bio->bios[mirror] == bio)
342 break;
343
Tejun Heoe9c74692010-09-03 11:56:18 +0200344 /*
345 * 'one mirror IO has finished' event handler:
346 */
347 r1_bio->bios[mirror] = NULL;
348 to_put = bio;
349 if (!uptodate) {
350 md_error(r1_bio->mddev, conf->mirrors[mirror].rdev);
351 /* an I/O failed, we can't clear the bitmap */
352 set_bit(R1BIO_Degraded, &r1_bio->state);
353 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 /*
Tejun Heoe9c74692010-09-03 11:56:18 +0200355 * Set R1BIO_Uptodate in our master bio, so that we
356 * will return a good error code for to the higher
357 * levels even if IO on some other mirrored buffer
358 * fails.
359 *
360 * The 'master' represents the composite IO operation
361 * to user-side. So if something waits for IO, then it
362 * will wait for the 'master' bio.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 */
Tejun Heoe9c74692010-09-03 11:56:18 +0200364 set_bit(R1BIO_Uptodate, &r1_bio->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Tejun Heoe9c74692010-09-03 11:56:18 +0200366 update_head_pos(mirror, r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Tejun Heoe9c74692010-09-03 11:56:18 +0200368 if (behind) {
369 if (test_bit(WriteMostly, &conf->mirrors[mirror].rdev->flags))
370 atomic_dec(&r1_bio->behind_remaining);
NeilBrown4b6d2872005-09-09 16:23:47 -0700371
Tejun Heoe9c74692010-09-03 11:56:18 +0200372 /*
373 * In behind mode, we ACK the master bio once the I/O
374 * has safely reached all non-writemostly
375 * disks. Setting the Returned bit ensures that this
376 * gets done only once -- we don't ever want to return
377 * -EIO here, instead we'll wait
378 */
379 if (atomic_read(&r1_bio->behind_remaining) >= (atomic_read(&r1_bio->remaining)-1) &&
380 test_bit(R1BIO_Uptodate, &r1_bio->state)) {
381 /* Maybe we can return now */
382 if (!test_and_set_bit(R1BIO_Returned, &r1_bio->state)) {
383 struct bio *mbio = r1_bio->master_bio;
384 PRINTK(KERN_DEBUG "raid1: behind end write sectors %llu-%llu\n",
385 (unsigned long long) mbio->bi_sector,
386 (unsigned long long) mbio->bi_sector +
387 (mbio->bi_size >> 9) - 1);
388 bio_endio(mbio, 0);
NeilBrown4b6d2872005-09-09 16:23:47 -0700389 }
390 }
391 }
Tejun Heoe9c74692010-09-03 11:56:18 +0200392 rdev_dec_pending(conf->mirrors[mirror].rdev, conf->mddev);
393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 * Let's see if all mirrored write operations have finished
396 * already.
397 */
NeilBrown4e780642010-10-19 12:54:01 +1100398 r1_bio_write_done(r1_bio, bio->bi_vcnt, bio->bi_io_vec, behind);
NeilBrownc70810b2006-06-26 00:27:35 -0700399
NeilBrown04b857f2006-03-09 17:33:46 -0800400 if (to_put)
401 bio_put(to_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
403
404
405/*
406 * This routine returns the disk from which the requested read should
407 * be done. There is a per-array 'next expected sequential IO' sector
408 * number - if this matches on the next IO then we use the last disk.
409 * There is also a per-disk 'last know head position' sector that is
410 * maintained from IRQ contexts, both the normal and the resync IO
411 * completion handlers update this position correctly. If there is no
412 * perfect sequential match then we pick the disk whose head is closest.
413 *
414 * If there are 2 mirrors in the same 2 devices, performance degrades
415 * because position is mirror, not device based.
416 *
417 * The rdev for the device selected will have nr_pending incremented.
418 */
419static int read_balance(conf_t *conf, r1bio_t *r1_bio)
420{
NeilBrownaf3a2cd2010-05-08 08:20:17 +1000421 const sector_t this_sector = r1_bio->sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 const int sectors = r1_bio->sectors;
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000423 int new_disk = -1;
424 int start_disk;
425 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 sector_t new_distance, current_distance;
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700427 mdk_rdev_t *rdev;
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000428 int choose_first;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430 rcu_read_lock();
431 /*
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700432 * Check if we can balance. We can balance on the whole
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 * device if no resync is going on, or below the resync window.
434 * We take the first readable disk when above the resync window.
435 */
436 retry:
437 if (conf->mddev->recovery_cp < MaxSector &&
438 (this_sector + sectors >= conf->next_resync)) {
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000439 choose_first = 1;
440 start_disk = 0;
441 } else {
442 choose_first = 0;
443 start_disk = conf->last_used;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 }
445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 /* make sure the disk is operational */
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000447 for (i = 0 ; i < conf->raid_disks ; i++) {
448 int disk = start_disk + i;
449 if (disk >= conf->raid_disks)
450 disk -= conf->raid_disks;
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700451
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000452 rdev = rcu_dereference(conf->mirrors[disk].rdev);
453 if (r1_bio->bios[disk] == IO_BLOCKED
454 || rdev == NULL
455 || !test_bit(In_sync, &rdev->flags))
456 continue;
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700457
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000458 new_disk = disk;
459 if (!test_bit(WriteMostly, &rdev->flags))
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700460 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 }
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700462
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000463 if (new_disk < 0 || choose_first)
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700464 goto rb_out;
465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 /*
467 * Don't change to another disk for sequential reads:
468 */
469 if (conf->next_seq_sect == this_sector)
470 goto rb_out;
471 if (this_sector == conf->mirrors[new_disk].head_position)
472 goto rb_out;
473
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000474 current_distance = abs(this_sector
475 - conf->mirrors[new_disk].head_position);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000477 /* look for a better disk - i.e. head is closer */
478 start_disk = new_disk;
479 for (i = 1; i < conf->raid_disks; i++) {
480 int disk = start_disk + 1;
481 if (disk >= conf->raid_disks)
482 disk -= conf->raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Suzanne Woodd6065f72005-11-08 21:39:27 -0800484 rdev = rcu_dereference(conf->mirrors[disk].rdev);
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000485 if (r1_bio->bios[disk] == IO_BLOCKED
486 || rdev == NULL
487 || !test_bit(In_sync, &rdev->flags)
488 || test_bit(WriteMostly, &rdev->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 continue;
490
491 if (!atomic_read(&rdev->nr_pending)) {
492 new_disk = disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 break;
494 }
495 new_distance = abs(this_sector - conf->mirrors[disk].head_position);
496 if (new_distance < current_distance) {
497 current_distance = new_distance;
498 new_disk = disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 }
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000500 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700502 rb_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 if (new_disk >= 0) {
Suzanne Woodd6065f72005-11-08 21:39:27 -0800504 rdev = rcu_dereference(conf->mirrors[new_disk].rdev);
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700505 if (!rdev)
506 goto retry;
507 atomic_inc(&rdev->nr_pending);
NeilBrownb2d444d2005-11-08 21:39:31 -0800508 if (!test_bit(In_sync, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 /* cannot risk returning a device that failed
510 * before we inc'ed nr_pending
511 */
NeilBrown03c902e2006-01-06 00:20:46 -0800512 rdev_dec_pending(rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 goto retry;
514 }
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700515 conf->next_seq_sect = this_sector + sectors;
516 conf->last_used = new_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 }
518 rcu_read_unlock();
519
520 return new_disk;
521}
522
523static void unplug_slaves(mddev_t *mddev)
524{
NeilBrown070ec552009-06-16 16:54:21 +1000525 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 int i;
527
528 rcu_read_lock();
529 for (i=0; i<mddev->raid_disks; i++) {
Suzanne Woodd6065f72005-11-08 21:39:27 -0800530 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
NeilBrownb2d444d2005-11-08 21:39:31 -0800531 if (rdev && !test_bit(Faulty, &rdev->flags) && atomic_read(&rdev->nr_pending)) {
Jens Axboe165125e2007-07-24 09:28:11 +0200532 struct request_queue *r_queue = bdev_get_queue(rdev->bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
534 atomic_inc(&rdev->nr_pending);
535 rcu_read_unlock();
536
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500537 blk_unplug(r_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
539 rdev_dec_pending(rdev, mddev);
540 rcu_read_lock();
541 }
542 }
543 rcu_read_unlock();
544}
545
Jens Axboe165125e2007-07-24 09:28:11 +0200546static void raid1_unplug(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
NeilBrown191ea9b2005-06-21 17:17:23 -0700548 mddev_t *mddev = q->queuedata;
549
550 unplug_slaves(mddev);
551 md_wakeup_thread(mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
553
NeilBrown0d129222006-10-03 01:15:54 -0700554static int raid1_congested(void *data, int bits)
555{
556 mddev_t *mddev = data;
NeilBrown070ec552009-06-16 16:54:21 +1000557 conf_t *conf = mddev->private;
NeilBrown0d129222006-10-03 01:15:54 -0700558 int i, ret = 0;
559
NeilBrown3fa841d2009-09-23 18:10:29 +1000560 if (mddev_congested(mddev, bits))
561 return 1;
562
NeilBrown0d129222006-10-03 01:15:54 -0700563 rcu_read_lock();
564 for (i = 0; i < mddev->raid_disks; i++) {
565 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
566 if (rdev && !test_bit(Faulty, &rdev->flags)) {
Jens Axboe165125e2007-07-24 09:28:11 +0200567 struct request_queue *q = bdev_get_queue(rdev->bdev);
NeilBrown0d129222006-10-03 01:15:54 -0700568
569 /* Note the '|| 1' - when read_balance prefers
570 * non-congested targets, it can be removed
571 */
Alexander Beregalov91a9e992009-04-07 01:35:56 +0400572 if ((bits & (1<<BDI_async_congested)) || 1)
NeilBrown0d129222006-10-03 01:15:54 -0700573 ret |= bdi_congested(&q->backing_dev_info, bits);
574 else
575 ret &= bdi_congested(&q->backing_dev_info, bits);
576 }
577 }
578 rcu_read_unlock();
579 return ret;
580}
581
582
NeilBrowna35e63e2008-03-04 14:29:29 -0800583static int flush_pending_writes(conf_t *conf)
584{
585 /* Any writes that have been queued but are awaiting
586 * bitmap updates get flushed here.
587 * We return 1 if any requests were actually submitted.
588 */
589 int rv = 0;
590
591 spin_lock_irq(&conf->device_lock);
592
593 if (conf->pending_bio_list.head) {
594 struct bio *bio;
595 bio = bio_list_get(&conf->pending_bio_list);
596 blk_remove_plug(conf->mddev->queue);
597 spin_unlock_irq(&conf->device_lock);
598 /* flush any pending bitmap writes to
599 * disk before proceeding w/ I/O */
600 bitmap_unplug(conf->mddev->bitmap);
601
602 while (bio) { /* submit pending writes */
603 struct bio *next = bio->bi_next;
604 bio->bi_next = NULL;
605 generic_make_request(bio);
606 bio = next;
607 }
608 rv = 1;
609 } else
610 spin_unlock_irq(&conf->device_lock);
611 return rv;
612}
613
NeilBrown17999be2006-01-06 00:20:12 -0800614/* Barriers....
615 * Sometimes we need to suspend IO while we do something else,
616 * either some resync/recovery, or reconfigure the array.
617 * To do this we raise a 'barrier'.
618 * The 'barrier' is a counter that can be raised multiple times
619 * to count how many activities are happening which preclude
620 * normal IO.
621 * We can only raise the barrier if there is no pending IO.
622 * i.e. if nr_pending == 0.
623 * We choose only to raise the barrier if no-one is waiting for the
624 * barrier to go down. This means that as soon as an IO request
625 * is ready, no other operations which require a barrier will start
626 * until the IO request has had a chance.
627 *
628 * So: regular IO calls 'wait_barrier'. When that returns there
629 * is no backgroup IO happening, It must arrange to call
630 * allow_barrier when it has finished its IO.
631 * backgroup IO calls must call raise_barrier. Once that returns
632 * there is no normal IO happeing. It must arrange to call
633 * lower_barrier when the particular background IO completes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 */
635#define RESYNC_DEPTH 32
636
NeilBrown17999be2006-01-06 00:20:12 -0800637static void raise_barrier(conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
639 spin_lock_irq(&conf->resync_lock);
NeilBrown17999be2006-01-06 00:20:12 -0800640
641 /* Wait until no block IO is waiting */
642 wait_event_lock_irq(conf->wait_barrier, !conf->nr_waiting,
643 conf->resync_lock,
644 raid1_unplug(conf->mddev->queue));
645
646 /* block any new IO from starting */
647 conf->barrier++;
648
NeilBrown046abee2010-10-26 15:46:20 +1100649 /* Now wait for all pending IO to complete */
NeilBrown17999be2006-01-06 00:20:12 -0800650 wait_event_lock_irq(conf->wait_barrier,
651 !conf->nr_pending && conf->barrier < RESYNC_DEPTH,
652 conf->resync_lock,
653 raid1_unplug(conf->mddev->queue));
654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 spin_unlock_irq(&conf->resync_lock);
656}
657
NeilBrown17999be2006-01-06 00:20:12 -0800658static void lower_barrier(conf_t *conf)
659{
660 unsigned long flags;
NeilBrown709ae482009-12-14 12:49:51 +1100661 BUG_ON(conf->barrier <= 0);
NeilBrown17999be2006-01-06 00:20:12 -0800662 spin_lock_irqsave(&conf->resync_lock, flags);
663 conf->barrier--;
664 spin_unlock_irqrestore(&conf->resync_lock, flags);
665 wake_up(&conf->wait_barrier);
666}
667
668static void wait_barrier(conf_t *conf)
669{
670 spin_lock_irq(&conf->resync_lock);
671 if (conf->barrier) {
672 conf->nr_waiting++;
673 wait_event_lock_irq(conf->wait_barrier, !conf->barrier,
674 conf->resync_lock,
675 raid1_unplug(conf->mddev->queue));
676 conf->nr_waiting--;
677 }
678 conf->nr_pending++;
679 spin_unlock_irq(&conf->resync_lock);
680}
681
682static void allow_barrier(conf_t *conf)
683{
684 unsigned long flags;
685 spin_lock_irqsave(&conf->resync_lock, flags);
686 conf->nr_pending--;
687 spin_unlock_irqrestore(&conf->resync_lock, flags);
688 wake_up(&conf->wait_barrier);
689}
690
NeilBrownddaf22a2006-01-06 00:20:19 -0800691static void freeze_array(conf_t *conf)
692{
693 /* stop syncio and normal IO and wait for everything to
694 * go quite.
695 * We increment barrier and nr_waiting, and then
NeilBrown1c830532008-03-04 14:29:35 -0800696 * wait until nr_pending match nr_queued+1
697 * This is called in the context of one normal IO request
698 * that has failed. Thus any sync request that might be pending
699 * will be blocked by nr_pending, and we need to wait for
700 * pending IO requests to complete or be queued for re-try.
701 * Thus the number queued (nr_queued) plus this request (1)
702 * must match the number of pending IOs (nr_pending) before
703 * we continue.
NeilBrownddaf22a2006-01-06 00:20:19 -0800704 */
705 spin_lock_irq(&conf->resync_lock);
706 conf->barrier++;
707 conf->nr_waiting++;
708 wait_event_lock_irq(conf->wait_barrier,
NeilBrown1c830532008-03-04 14:29:35 -0800709 conf->nr_pending == conf->nr_queued+1,
NeilBrownddaf22a2006-01-06 00:20:19 -0800710 conf->resync_lock,
NeilBrowna35e63e2008-03-04 14:29:29 -0800711 ({ flush_pending_writes(conf);
712 raid1_unplug(conf->mddev->queue); }));
NeilBrownddaf22a2006-01-06 00:20:19 -0800713 spin_unlock_irq(&conf->resync_lock);
714}
715static void unfreeze_array(conf_t *conf)
716{
717 /* reverse the effect of the freeze */
718 spin_lock_irq(&conf->resync_lock);
719 conf->barrier--;
720 conf->nr_waiting--;
721 wake_up(&conf->wait_barrier);
722 spin_unlock_irq(&conf->resync_lock);
723}
724
NeilBrown17999be2006-01-06 00:20:12 -0800725
NeilBrown4e780642010-10-19 12:54:01 +1100726/* duplicate the data pages for behind I/O
727 * We return a list of bio_vec rather than just page pointers
728 * as it makes freeing easier
729 */
730static struct bio_vec *alloc_behind_pages(struct bio *bio)
NeilBrown4b6d2872005-09-09 16:23:47 -0700731{
732 int i;
733 struct bio_vec *bvec;
NeilBrown4e780642010-10-19 12:54:01 +1100734 struct bio_vec *pages = kzalloc(bio->bi_vcnt * sizeof(struct bio_vec),
NeilBrown4b6d2872005-09-09 16:23:47 -0700735 GFP_NOIO);
736 if (unlikely(!pages))
737 goto do_sync_io;
738
NeilBrown4b6d2872005-09-09 16:23:47 -0700739 bio_for_each_segment(bvec, bio, i) {
NeilBrown4e780642010-10-19 12:54:01 +1100740 pages[i].bv_page = alloc_page(GFP_NOIO);
741 if (unlikely(!pages[i].bv_page))
NeilBrown4b6d2872005-09-09 16:23:47 -0700742 goto do_sync_io;
NeilBrown4e780642010-10-19 12:54:01 +1100743 memcpy(kmap(pages[i].bv_page) + bvec->bv_offset,
NeilBrown4b6d2872005-09-09 16:23:47 -0700744 kmap(bvec->bv_page) + bvec->bv_offset, bvec->bv_len);
NeilBrown4e780642010-10-19 12:54:01 +1100745 kunmap(pages[i].bv_page);
NeilBrown4b6d2872005-09-09 16:23:47 -0700746 kunmap(bvec->bv_page);
747 }
748
749 return pages;
750
751do_sync_io:
752 if (pages)
NeilBrown4e780642010-10-19 12:54:01 +1100753 for (i = 0; i < bio->bi_vcnt && pages[i].bv_page; i++)
754 put_page(pages[i].bv_page);
NeilBrown4b6d2872005-09-09 16:23:47 -0700755 kfree(pages);
756 PRINTK("%dB behind alloc failed, doing sync I/O\n", bio->bi_size);
757 return NULL;
758}
759
NeilBrown21a52c62010-04-01 15:02:13 +1100760static int make_request(mddev_t *mddev, struct bio * bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761{
NeilBrown070ec552009-06-16 16:54:21 +1000762 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 mirror_info_t *mirror;
764 r1bio_t *r1_bio;
765 struct bio *read_bio;
NeilBrown191ea9b2005-06-21 17:17:23 -0700766 int i, targets = 0, disks;
NeilBrown84255d12008-05-23 13:04:32 -0700767 struct bitmap *bitmap;
NeilBrown191ea9b2005-06-21 17:17:23 -0700768 unsigned long flags;
NeilBrown4e780642010-10-19 12:54:01 +1100769 struct bio_vec *behind_pages = NULL;
Jens Axboea3623572005-11-01 09:26:16 +0100770 const int rw = bio_data_dir(bio);
NeilBrown2c7d46e2010-08-18 16:16:05 +1000771 const unsigned long do_sync = (bio->bi_rw & REQ_SYNC);
Tejun Heoe9c74692010-09-03 11:56:18 +0200772 const unsigned long do_flush_fua = (bio->bi_rw & (REQ_FLUSH | REQ_FUA));
Dan Williams6bfe0b42008-04-30 00:52:32 -0700773 mdk_rdev_t *blocked_rdev;
NeilBrown191ea9b2005-06-21 17:17:23 -0700774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 /*
776 * Register the new request and wait if the reconstruction
777 * thread has put up a bar for new requests.
778 * Continue immediately if no resync is active currently.
779 */
NeilBrown62de6082006-05-01 12:15:47 -0700780
NeilBrown3d310eb2005-06-21 17:17:26 -0700781 md_write_start(mddev, bio); /* wait on superblock update early */
782
NeilBrown6eef4b22009-12-14 12:49:51 +1100783 if (bio_data_dir(bio) == WRITE &&
784 bio->bi_sector + bio->bi_size/512 > mddev->suspend_lo &&
785 bio->bi_sector < mddev->suspend_hi) {
786 /* As the suspend_* range is controlled by
787 * userspace, we want an interruptible
788 * wait.
789 */
790 DEFINE_WAIT(w);
791 for (;;) {
792 flush_signals(current);
793 prepare_to_wait(&conf->wait_barrier,
794 &w, TASK_INTERRUPTIBLE);
795 if (bio->bi_sector + bio->bi_size/512 <= mddev->suspend_lo ||
796 bio->bi_sector >= mddev->suspend_hi)
797 break;
798 schedule();
799 }
800 finish_wait(&conf->wait_barrier, &w);
801 }
NeilBrown62de6082006-05-01 12:15:47 -0700802
NeilBrown17999be2006-01-06 00:20:12 -0800803 wait_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
NeilBrown84255d12008-05-23 13:04:32 -0700805 bitmap = mddev->bitmap;
806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 /*
808 * make_request() can abort the operation when READA is being
809 * used and no empty request is available.
810 *
811 */
812 r1_bio = mempool_alloc(conf->r1bio_pool, GFP_NOIO);
813
814 r1_bio->master_bio = bio;
815 r1_bio->sectors = bio->bi_size >> 9;
NeilBrown191ea9b2005-06-21 17:17:23 -0700816 r1_bio->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 r1_bio->mddev = mddev;
818 r1_bio->sector = bio->bi_sector;
819
Jens Axboea3623572005-11-01 09:26:16 +0100820 if (rw == READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 /*
822 * read balancing logic:
823 */
824 int rdisk = read_balance(conf, r1_bio);
825
826 if (rdisk < 0) {
827 /* couldn't find anywhere to read from */
828 raid_end_bio_io(r1_bio);
829 return 0;
830 }
831 mirror = conf->mirrors + rdisk;
832
NeilBrowne5551902010-03-31 11:21:44 +1100833 if (test_bit(WriteMostly, &mirror->rdev->flags) &&
834 bitmap) {
835 /* Reading from a write-mostly device must
836 * take care not to over-take any writes
837 * that are 'behind'
838 */
839 wait_event(bitmap->behind_wait,
840 atomic_read(&bitmap->behind_writes) == 0);
841 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 r1_bio->read_disk = rdisk;
843
NeilBrowna167f662010-10-26 18:31:13 +1100844 read_bio = bio_clone_mddev(bio, GFP_NOIO, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
846 r1_bio->bios[rdisk] = read_bio;
847
848 read_bio->bi_sector = r1_bio->sector + mirror->rdev->data_offset;
849 read_bio->bi_bdev = mirror->rdev->bdev;
850 read_bio->bi_end_io = raid1_end_read_request;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +0200851 read_bio->bi_rw = READ | do_sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 read_bio->bi_private = r1_bio;
853
854 generic_make_request(read_bio);
855 return 0;
856 }
857
858 /*
859 * WRITE:
860 */
861 /* first select target devices under spinlock and
862 * inc refcount on their rdev. Record them by setting
863 * bios[x] to bio
864 */
865 disks = conf->raid_disks;
Dan Williams6bfe0b42008-04-30 00:52:32 -0700866 retry_write:
867 blocked_rdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 rcu_read_lock();
869 for (i = 0; i < disks; i++) {
Dan Williams6bfe0b42008-04-30 00:52:32 -0700870 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
871 if (rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
872 atomic_inc(&rdev->nr_pending);
873 blocked_rdev = rdev;
874 break;
875 }
876 if (rdev && !test_bit(Faulty, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 atomic_inc(&rdev->nr_pending);
NeilBrownb2d444d2005-11-08 21:39:31 -0800878 if (test_bit(Faulty, &rdev->flags)) {
NeilBrown03c902e2006-01-06 00:20:46 -0800879 rdev_dec_pending(rdev, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 r1_bio->bios[i] = NULL;
NeilBrown964147d2010-05-18 15:27:13 +1000881 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 r1_bio->bios[i] = bio;
NeilBrown964147d2010-05-18 15:27:13 +1000883 targets++;
884 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 } else
886 r1_bio->bios[i] = NULL;
887 }
888 rcu_read_unlock();
889
Dan Williams6bfe0b42008-04-30 00:52:32 -0700890 if (unlikely(blocked_rdev)) {
891 /* Wait for this device to become unblocked */
892 int j;
893
894 for (j = 0; j < i; j++)
895 if (r1_bio->bios[j])
896 rdev_dec_pending(conf->mirrors[j].rdev, mddev);
897
898 allow_barrier(conf);
899 md_wait_for_blocked_rdev(blocked_rdev, mddev);
900 wait_barrier(conf);
901 goto retry_write;
902 }
903
NeilBrown4b6d2872005-09-09 16:23:47 -0700904 BUG_ON(targets == 0); /* we never fail the last device */
905
NeilBrown191ea9b2005-06-21 17:17:23 -0700906 if (targets < conf->raid_disks) {
907 /* array is degraded, we will not clear the bitmap
908 * on I/O completion (see raid1_end_write_request) */
909 set_bit(R1BIO_Degraded, &r1_bio->state);
910 }
NeilBrown06d91a52005-06-21 17:17:12 -0700911
NeilBrowne5551902010-03-31 11:21:44 +1100912 /* do behind I/O ?
913 * Not if there are too many, or cannot allocate memory,
914 * or a reader on WriteMostly is waiting for behind writes
915 * to flush */
NeilBrown4b6d2872005-09-09 16:23:47 -0700916 if (bitmap &&
NeilBrown42a04b52009-12-14 12:49:53 +1100917 (atomic_read(&bitmap->behind_writes)
918 < mddev->bitmap_info.max_write_behind) &&
NeilBrowne5551902010-03-31 11:21:44 +1100919 !waitqueue_active(&bitmap->behind_wait) &&
NeilBrown4b6d2872005-09-09 16:23:47 -0700920 (behind_pages = alloc_behind_pages(bio)) != NULL)
921 set_bit(R1BIO_BehindIO, &r1_bio->state);
922
NeilBrown4e780642010-10-19 12:54:01 +1100923 atomic_set(&r1_bio->remaining, 1);
NeilBrown4b6d2872005-09-09 16:23:47 -0700924 atomic_set(&r1_bio->behind_remaining, 0);
NeilBrown191ea9b2005-06-21 17:17:23 -0700925
NeilBrown4e780642010-10-19 12:54:01 +1100926 bitmap_startwrite(bitmap, bio->bi_sector, r1_bio->sectors,
927 test_bit(R1BIO_BehindIO, &r1_bio->state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 for (i = 0; i < disks; i++) {
929 struct bio *mbio;
930 if (!r1_bio->bios[i])
931 continue;
932
NeilBrowna167f662010-10-26 18:31:13 +1100933 mbio = bio_clone_mddev(bio, GFP_NOIO, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 r1_bio->bios[i] = mbio;
935
936 mbio->bi_sector = r1_bio->sector + conf->mirrors[i].rdev->data_offset;
937 mbio->bi_bdev = conf->mirrors[i].rdev->bdev;
938 mbio->bi_end_io = raid1_end_write_request;
Tejun Heoe9c74692010-09-03 11:56:18 +0200939 mbio->bi_rw = WRITE | do_flush_fua | do_sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 mbio->bi_private = r1_bio;
941
NeilBrown4b6d2872005-09-09 16:23:47 -0700942 if (behind_pages) {
943 struct bio_vec *bvec;
944 int j;
945
946 /* Yes, I really want the '__' version so that
947 * we clear any unused pointer in the io_vec, rather
948 * than leave them unchanged. This is important
949 * because when we come to free the pages, we won't
NeilBrown046abee2010-10-26 15:46:20 +1100950 * know the original bi_idx, so we just free
NeilBrown4b6d2872005-09-09 16:23:47 -0700951 * them all
952 */
953 __bio_for_each_segment(bvec, mbio, j, 0)
NeilBrown4e780642010-10-19 12:54:01 +1100954 bvec->bv_page = behind_pages[j].bv_page;
NeilBrown4b6d2872005-09-09 16:23:47 -0700955 if (test_bit(WriteMostly, &conf->mirrors[i].rdev->flags))
956 atomic_inc(&r1_bio->behind_remaining);
957 }
958
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 atomic_inc(&r1_bio->remaining);
NeilBrown4e780642010-10-19 12:54:01 +1100960 spin_lock_irqsave(&conf->device_lock, flags);
961 bio_list_add(&conf->pending_bio_list, mbio);
962 blk_plug_device(mddev->queue);
963 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 }
NeilBrown4e780642010-10-19 12:54:01 +1100965 r1_bio_write_done(r1_bio, bio->bi_vcnt, behind_pages, behind_pages != NULL);
NeilBrown4b6d2872005-09-09 16:23:47 -0700966 kfree(behind_pages); /* the behind pages are attached to the bios now */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
NeilBrown4e780642010-10-19 12:54:01 +1100968 /* In case raid1d snuck in to freeze_array */
NeilBrowna35e63e2008-03-04 14:29:29 -0800969 wake_up(&conf->wait_barrier);
970
Lars Ellenberge3881a62007-01-10 23:15:37 -0800971 if (do_sync)
972 md_wakeup_thread(mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
974 return 0;
975}
976
977static void status(struct seq_file *seq, mddev_t *mddev)
978{
NeilBrown070ec552009-06-16 16:54:21 +1000979 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 int i;
981
982 seq_printf(seq, " [%d/%d] [", conf->raid_disks,
NeilBrown11ce99e2006-10-03 01:15:52 -0700983 conf->raid_disks - mddev->degraded);
NeilBrownddac7c72006-08-31 21:27:36 -0700984 rcu_read_lock();
985 for (i = 0; i < conf->raid_disks; i++) {
986 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 seq_printf(seq, "%s",
NeilBrownddac7c72006-08-31 21:27:36 -0700988 rdev && test_bit(In_sync, &rdev->flags) ? "U" : "_");
989 }
990 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 seq_printf(seq, "]");
992}
993
994
995static void error(mddev_t *mddev, mdk_rdev_t *rdev)
996{
997 char b[BDEVNAME_SIZE];
NeilBrown070ec552009-06-16 16:54:21 +1000998 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
1000 /*
1001 * If it is not operational, then we have already marked it as dead
1002 * else if it is the last working disks, ignore the error, let the
1003 * next level up know.
1004 * else mark the drive as failed
1005 */
NeilBrownb2d444d2005-11-08 21:39:31 -08001006 if (test_bit(In_sync, &rdev->flags)
NeilBrown4044ba52009-01-09 08:31:11 +11001007 && (conf->raid_disks - mddev->degraded) == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 /*
1009 * Don't fail the drive, act as though we were just a
NeilBrown4044ba52009-01-09 08:31:11 +11001010 * normal single drive.
1011 * However don't try a recovery from this drive as
1012 * it is very likely to fail.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 */
NeilBrown4044ba52009-01-09 08:31:11 +11001014 mddev->recovery_disabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 return;
NeilBrown4044ba52009-01-09 08:31:11 +11001016 }
NeilBrownc04be0a2006-10-03 01:15:53 -07001017 if (test_and_clear_bit(In_sync, &rdev->flags)) {
1018 unsigned long flags;
1019 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 mddev->degraded++;
NeilBrowndd00a992007-05-10 03:15:50 -07001021 set_bit(Faulty, &rdev->flags);
NeilBrownc04be0a2006-10-03 01:15:53 -07001022 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 /*
1024 * if recovery is running, make sure it aborts.
1025 */
NeilBrowndfc70642008-05-23 13:04:39 -07001026 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
NeilBrowndd00a992007-05-10 03:15:50 -07001027 } else
1028 set_bit(Faulty, &rdev->flags);
NeilBrown850b2b42006-10-03 01:15:46 -07001029 set_bit(MD_CHANGE_DEVS, &mddev->flags);
Joe Perches067032b2011-01-14 09:14:33 +11001030 printk(KERN_ALERT
1031 "md/raid1:%s: Disk failure on %s, disabling device.\n"
1032 "md/raid1:%s: Operation continuing on %d devices.\n",
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001033 mdname(mddev), bdevname(rdev->bdev, b),
1034 mdname(mddev), conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035}
1036
1037static void print_conf(conf_t *conf)
1038{
1039 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001041 printk(KERN_DEBUG "RAID1 conf printout:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 if (!conf) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001043 printk(KERN_DEBUG "(!conf)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 return;
1045 }
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001046 printk(KERN_DEBUG " --- wd:%d rd:%d\n", conf->raid_disks - conf->mddev->degraded,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 conf->raid_disks);
1048
NeilBrownddac7c72006-08-31 21:27:36 -07001049 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 for (i = 0; i < conf->raid_disks; i++) {
1051 char b[BDEVNAME_SIZE];
NeilBrownddac7c72006-08-31 21:27:36 -07001052 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
1053 if (rdev)
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001054 printk(KERN_DEBUG " disk %d, wo:%d, o:%d, dev:%s\n",
NeilBrownddac7c72006-08-31 21:27:36 -07001055 i, !test_bit(In_sync, &rdev->flags),
1056 !test_bit(Faulty, &rdev->flags),
1057 bdevname(rdev->bdev,b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 }
NeilBrownddac7c72006-08-31 21:27:36 -07001059 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060}
1061
1062static void close_sync(conf_t *conf)
1063{
NeilBrown17999be2006-01-06 00:20:12 -08001064 wait_barrier(conf);
1065 allow_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
1067 mempool_destroy(conf->r1buf_pool);
1068 conf->r1buf_pool = NULL;
1069}
1070
1071static int raid1_spare_active(mddev_t *mddev)
1072{
1073 int i;
1074 conf_t *conf = mddev->private;
NeilBrown6b965622010-08-18 11:56:59 +10001075 int count = 0;
1076 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
1078 /*
1079 * Find all failed disks within the RAID1 configuration
NeilBrownddac7c72006-08-31 21:27:36 -07001080 * and mark them readable.
1081 * Called under mddev lock, so rcu protection not needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 */
1083 for (i = 0; i < conf->raid_disks; i++) {
NeilBrownddac7c72006-08-31 21:27:36 -07001084 mdk_rdev_t *rdev = conf->mirrors[i].rdev;
1085 if (rdev
1086 && !test_bit(Faulty, &rdev->flags)
NeilBrownc04be0a2006-10-03 01:15:53 -07001087 && !test_and_set_bit(In_sync, &rdev->flags)) {
NeilBrown6b965622010-08-18 11:56:59 +10001088 count++;
Adrian Drzewieckie6ffbcb2010-08-18 11:49:02 +10001089 sysfs_notify_dirent(rdev->sysfs_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 }
1091 }
NeilBrown6b965622010-08-18 11:56:59 +10001092 spin_lock_irqsave(&conf->device_lock, flags);
1093 mddev->degraded -= count;
1094 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
1096 print_conf(conf);
NeilBrown6b965622010-08-18 11:56:59 +10001097 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098}
1099
1100
1101static int raid1_add_disk(mddev_t *mddev, mdk_rdev_t *rdev)
1102{
1103 conf_t *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10001104 int err = -EEXIST;
NeilBrown41158c72005-06-21 17:17:25 -07001105 int mirror = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 mirror_info_t *p;
Neil Brown6c2fce22008-06-28 08:31:31 +10001107 int first = 0;
1108 int last = mddev->raid_disks - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
Neil Brown6c2fce22008-06-28 08:31:31 +10001110 if (rdev->raid_disk >= 0)
1111 first = last = rdev->raid_disk;
1112
1113 for (mirror = first; mirror <= last; mirror++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 if ( !(p=conf->mirrors+mirror)->rdev) {
1115
Martin K. Petersen8f6c2e42009-07-01 11:13:45 +10001116 disk_stack_limits(mddev->gendisk, rdev->bdev,
1117 rdev->data_offset << 9);
NeilBrown627a2d32010-03-08 16:44:38 +11001118 /* as we don't honour merge_bvec_fn, we must
1119 * never risk violating it, so limit
1120 * ->max_segments to one lying with a single
1121 * page, as a one page request is never in
1122 * violation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 */
NeilBrown627a2d32010-03-08 16:44:38 +11001124 if (rdev->bdev->bd_disk->queue->merge_bvec_fn) {
1125 blk_queue_max_segments(mddev->queue, 1);
1126 blk_queue_segment_boundary(mddev->queue,
1127 PAGE_CACHE_SIZE - 1);
1128 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
1130 p->head_position = 0;
1131 rdev->raid_disk = mirror;
Neil Brown199050e2008-06-28 08:31:33 +10001132 err = 0;
NeilBrown6aea114a2005-11-28 13:44:13 -08001133 /* As all devices are equivalent, we don't need a full recovery
1134 * if this was recently any drive of the array
1135 */
1136 if (rdev->saved_raid_disk < 0)
NeilBrown41158c72005-06-21 17:17:25 -07001137 conf->fullsync = 1;
Suzanne Woodd6065f72005-11-08 21:39:27 -08001138 rcu_assign_pointer(p->rdev, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 break;
1140 }
Andre Nollac5e7112009-08-03 10:59:47 +10001141 md_integrity_add_rdev(rdev, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 print_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10001143 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144}
1145
1146static int raid1_remove_disk(mddev_t *mddev, int number)
1147{
1148 conf_t *conf = mddev->private;
1149 int err = 0;
1150 mdk_rdev_t *rdev;
1151 mirror_info_t *p = conf->mirrors+ number;
1152
1153 print_conf(conf);
1154 rdev = p->rdev;
1155 if (rdev) {
NeilBrownb2d444d2005-11-08 21:39:31 -08001156 if (test_bit(In_sync, &rdev->flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 atomic_read(&rdev->nr_pending)) {
1158 err = -EBUSY;
1159 goto abort;
1160 }
NeilBrown046abee2010-10-26 15:46:20 +11001161 /* Only remove non-faulty devices if recovery
NeilBrowndfc70642008-05-23 13:04:39 -07001162 * is not possible.
1163 */
1164 if (!test_bit(Faulty, &rdev->flags) &&
NeilBrown8f9e0ee2010-11-24 16:39:46 +11001165 !mddev->recovery_disabled &&
NeilBrowndfc70642008-05-23 13:04:39 -07001166 mddev->degraded < conf->raid_disks) {
1167 err = -EBUSY;
1168 goto abort;
1169 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 p->rdev = NULL;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07001171 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 if (atomic_read(&rdev->nr_pending)) {
1173 /* lost the race, try later */
1174 err = -EBUSY;
1175 p->rdev = rdev;
Andre Nollac5e7112009-08-03 10:59:47 +10001176 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 }
Andre Nollac5e7112009-08-03 10:59:47 +10001178 md_integrity_register(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 }
1180abort:
1181
1182 print_conf(conf);
1183 return err;
1184}
1185
1186
NeilBrown6712ecf2007-09-27 12:47:43 +02001187static void end_sync_read(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188{
H Hartley Sweeten7b928132010-03-08 16:02:40 +11001189 r1bio_t *r1_bio = bio->bi_private;
NeilBrownd11c1712006-01-06 00:20:26 -08001190 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
NeilBrownd11c1712006-01-06 00:20:26 -08001192 for (i=r1_bio->mddev->raid_disks; i--; )
1193 if (r1_bio->bios[i] == bio)
1194 break;
1195 BUG_ON(i < 0);
1196 update_head_pos(i, r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 /*
1198 * we have read a block, now it needs to be re-written,
1199 * or re-read if the read failed.
1200 * We don't do much here, just schedule handling by raid1d
1201 */
NeilBrown69382e82006-01-06 00:20:22 -08001202 if (test_bit(BIO_UPTODATE, &bio->bi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 set_bit(R1BIO_Uptodate, &r1_bio->state);
NeilBrownd11c1712006-01-06 00:20:26 -08001204
1205 if (atomic_dec_and_test(&r1_bio->remaining))
1206 reschedule_retry(r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207}
1208
NeilBrown6712ecf2007-09-27 12:47:43 +02001209static void end_sync_write(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210{
1211 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
H Hartley Sweeten7b928132010-03-08 16:02:40 +11001212 r1bio_t *r1_bio = bio->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 mddev_t *mddev = r1_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +10001214 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 int i;
1216 int mirror=0;
1217
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 for (i = 0; i < conf->raid_disks; i++)
1219 if (r1_bio->bios[i] == bio) {
1220 mirror = i;
1221 break;
1222 }
NeilBrown6b1117d2006-03-31 02:31:57 -08001223 if (!uptodate) {
NeilBrown57dab0b2010-10-19 10:03:39 +11001224 sector_t sync_blocks = 0;
NeilBrown6b1117d2006-03-31 02:31:57 -08001225 sector_t s = r1_bio->sector;
1226 long sectors_to_go = r1_bio->sectors;
1227 /* make sure these bits doesn't get cleared. */
1228 do {
NeilBrown5e3db642006-07-10 04:44:18 -07001229 bitmap_end_sync(mddev->bitmap, s,
NeilBrown6b1117d2006-03-31 02:31:57 -08001230 &sync_blocks, 1);
1231 s += sync_blocks;
1232 sectors_to_go -= sync_blocks;
1233 } while (sectors_to_go > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 md_error(mddev, conf->mirrors[mirror].rdev);
NeilBrown6b1117d2006-03-31 02:31:57 -08001235 }
NeilBrowne3b97032005-08-04 12:53:34 -07001236
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 update_head_pos(mirror, r1_bio);
1238
1239 if (atomic_dec_and_test(&r1_bio->remaining)) {
NeilBrown73d5c382009-02-25 13:18:47 +11001240 sector_t s = r1_bio->sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 put_buf(r1_bio);
NeilBrown73d5c382009-02-25 13:18:47 +11001242 md_done_sync(mddev, s, uptodate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244}
1245
1246static void sync_request_write(mddev_t *mddev, r1bio_t *r1_bio)
1247{
NeilBrown070ec552009-06-16 16:54:21 +10001248 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 int i;
1250 int disks = conf->raid_disks;
1251 struct bio *bio, *wbio;
1252
1253 bio = r1_bio->bios[r1_bio->read_disk];
1254
NeilBrown69382e82006-01-06 00:20:22 -08001255
NeilBrownd11c1712006-01-06 00:20:26 -08001256 if (test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) {
1257 /* We have read all readable devices. If we haven't
1258 * got the block, then there is no hope left.
1259 * If we have, then we want to do a comparison
1260 * and skip the write if everything is the same.
1261 * If any blocks failed to read, then we need to
1262 * attempt an over-write
1263 */
1264 int primary;
1265 if (!test_bit(R1BIO_Uptodate, &r1_bio->state)) {
1266 for (i=0; i<mddev->raid_disks; i++)
1267 if (r1_bio->bios[i]->bi_end_io == end_sync_read)
1268 md_error(mddev, conf->mirrors[i].rdev);
1269
1270 md_done_sync(mddev, r1_bio->sectors, 1);
1271 put_buf(r1_bio);
1272 return;
1273 }
1274 for (primary=0; primary<mddev->raid_disks; primary++)
1275 if (r1_bio->bios[primary]->bi_end_io == end_sync_read &&
1276 test_bit(BIO_UPTODATE, &r1_bio->bios[primary]->bi_flags)) {
1277 r1_bio->bios[primary]->bi_end_io = NULL;
NeilBrown03c902e2006-01-06 00:20:46 -08001278 rdev_dec_pending(conf->mirrors[primary].rdev, mddev);
NeilBrownd11c1712006-01-06 00:20:26 -08001279 break;
1280 }
1281 r1_bio->read_disk = primary;
1282 for (i=0; i<mddev->raid_disks; i++)
Mike Accettaed456662007-06-16 10:16:07 -07001283 if (r1_bio->bios[i]->bi_end_io == end_sync_read) {
NeilBrownd11c1712006-01-06 00:20:26 -08001284 int j;
1285 int vcnt = r1_bio->sectors >> (PAGE_SHIFT- 9);
1286 struct bio *pbio = r1_bio->bios[primary];
1287 struct bio *sbio = r1_bio->bios[i];
Mike Accettaed456662007-06-16 10:16:07 -07001288
1289 if (test_bit(BIO_UPTODATE, &sbio->bi_flags)) {
1290 for (j = vcnt; j-- ; ) {
1291 struct page *p, *s;
1292 p = pbio->bi_io_vec[j].bv_page;
1293 s = sbio->bi_io_vec[j].bv_page;
1294 if (memcmp(page_address(p),
1295 page_address(s),
1296 PAGE_SIZE))
1297 break;
1298 }
1299 } else
1300 j = 0;
NeilBrownd11c1712006-01-06 00:20:26 -08001301 if (j >= 0)
1302 mddev->resync_mismatches += r1_bio->sectors;
NeilBrowncf7a4412007-10-16 23:30:55 -07001303 if (j < 0 || (test_bit(MD_RECOVERY_CHECK, &mddev->recovery)
1304 && test_bit(BIO_UPTODATE, &sbio->bi_flags))) {
NeilBrownd11c1712006-01-06 00:20:26 -08001305 sbio->bi_end_io = NULL;
NeilBrown03c902e2006-01-06 00:20:46 -08001306 rdev_dec_pending(conf->mirrors[i].rdev, mddev);
1307 } else {
NeilBrownd11c1712006-01-06 00:20:26 -08001308 /* fixup the bio for reuse */
NeilBrown698b18c2008-05-23 13:04:35 -07001309 int size;
NeilBrownd11c1712006-01-06 00:20:26 -08001310 sbio->bi_vcnt = vcnt;
1311 sbio->bi_size = r1_bio->sectors << 9;
1312 sbio->bi_idx = 0;
1313 sbio->bi_phys_segments = 0;
NeilBrownd11c1712006-01-06 00:20:26 -08001314 sbio->bi_flags &= ~(BIO_POOL_MASK - 1);
1315 sbio->bi_flags |= 1 << BIO_UPTODATE;
1316 sbio->bi_next = NULL;
1317 sbio->bi_sector = r1_bio->sector +
1318 conf->mirrors[i].rdev->data_offset;
1319 sbio->bi_bdev = conf->mirrors[i].rdev->bdev;
NeilBrown698b18c2008-05-23 13:04:35 -07001320 size = sbio->bi_size;
1321 for (j = 0; j < vcnt ; j++) {
1322 struct bio_vec *bi;
1323 bi = &sbio->bi_io_vec[j];
1324 bi->bv_offset = 0;
1325 if (size > PAGE_SIZE)
1326 bi->bv_len = PAGE_SIZE;
1327 else
1328 bi->bv_len = size;
1329 size -= PAGE_SIZE;
1330 memcpy(page_address(bi->bv_page),
NeilBrown3eda22d2007-01-26 00:57:01 -08001331 page_address(pbio->bi_io_vec[j].bv_page),
1332 PAGE_SIZE);
NeilBrown698b18c2008-05-23 13:04:35 -07001333 }
NeilBrown3eda22d2007-01-26 00:57:01 -08001334
NeilBrownd11c1712006-01-06 00:20:26 -08001335 }
1336 }
1337 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 if (!test_bit(R1BIO_Uptodate, &r1_bio->state)) {
NeilBrown69382e82006-01-06 00:20:22 -08001339 /* ouch - failed to read all of that.
1340 * Try some synchronous reads of other devices to get
1341 * good data, much like with normal read errors. Only
NeilBrownddac7c72006-08-31 21:27:36 -07001342 * read into the pages we already have so we don't
NeilBrown69382e82006-01-06 00:20:22 -08001343 * need to re-issue the read request.
1344 * We don't need to freeze the array, because being in an
1345 * active sync request, there is no normal IO, and
1346 * no overlapping syncs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 */
NeilBrown69382e82006-01-06 00:20:22 -08001348 sector_t sect = r1_bio->sector;
1349 int sectors = r1_bio->sectors;
1350 int idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
NeilBrown69382e82006-01-06 00:20:22 -08001352 while(sectors) {
1353 int s = sectors;
1354 int d = r1_bio->read_disk;
1355 int success = 0;
1356 mdk_rdev_t *rdev;
1357
1358 if (s > (PAGE_SIZE>>9))
1359 s = PAGE_SIZE >> 9;
1360 do {
1361 if (r1_bio->bios[d]->bi_end_io == end_sync_read) {
NeilBrownddac7c72006-08-31 21:27:36 -07001362 /* No rcu protection needed here devices
1363 * can only be removed when no resync is
1364 * active, and resync is currently active
1365 */
NeilBrown69382e82006-01-06 00:20:22 -08001366 rdev = conf->mirrors[d].rdev;
NeilBrown2b193362010-10-27 15:16:40 +11001367 if (sync_page_io(rdev,
NeilBrown69382e82006-01-06 00:20:22 -08001368 sect + rdev->data_offset,
1369 s<<9,
1370 bio->bi_io_vec[idx].bv_page,
1371 READ)) {
1372 success = 1;
1373 break;
1374 }
1375 }
1376 d++;
1377 if (d == conf->raid_disks)
1378 d = 0;
1379 } while (!success && d != r1_bio->read_disk);
1380
1381 if (success) {
NeilBrown097426f2006-01-06 00:20:37 -08001382 int start = d;
NeilBrown69382e82006-01-06 00:20:22 -08001383 /* write it back and re-read */
1384 set_bit(R1BIO_Uptodate, &r1_bio->state);
1385 while (d != r1_bio->read_disk) {
1386 if (d == 0)
1387 d = conf->raid_disks;
1388 d--;
1389 if (r1_bio->bios[d]->bi_end_io != end_sync_read)
1390 continue;
1391 rdev = conf->mirrors[d].rdev;
NeilBrown4dbcdc72006-01-06 00:20:52 -08001392 atomic_add(s, &rdev->corrected_errors);
NeilBrown2b193362010-10-27 15:16:40 +11001393 if (sync_page_io(rdev,
NeilBrown69382e82006-01-06 00:20:22 -08001394 sect + rdev->data_offset,
1395 s<<9,
1396 bio->bi_io_vec[idx].bv_page,
NeilBrown097426f2006-01-06 00:20:37 -08001397 WRITE) == 0)
1398 md_error(mddev, rdev);
1399 }
1400 d = start;
1401 while (d != r1_bio->read_disk) {
1402 if (d == 0)
1403 d = conf->raid_disks;
1404 d--;
1405 if (r1_bio->bios[d]->bi_end_io != end_sync_read)
1406 continue;
1407 rdev = conf->mirrors[d].rdev;
NeilBrown2b193362010-10-27 15:16:40 +11001408 if (sync_page_io(rdev,
NeilBrown69382e82006-01-06 00:20:22 -08001409 sect + rdev->data_offset,
1410 s<<9,
1411 bio->bi_io_vec[idx].bv_page,
NeilBrown097426f2006-01-06 00:20:37 -08001412 READ) == 0)
NeilBrown69382e82006-01-06 00:20:22 -08001413 md_error(mddev, rdev);
NeilBrown69382e82006-01-06 00:20:22 -08001414 }
1415 } else {
1416 char b[BDEVNAME_SIZE];
1417 /* Cannot read from anywhere, array is toast */
1418 md_error(mddev, conf->mirrors[r1_bio->read_disk].rdev);
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001419 printk(KERN_ALERT "md/raid1:%s: %s: unrecoverable I/O read error"
NeilBrown69382e82006-01-06 00:20:22 -08001420 " for block %llu\n",
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001421 mdname(mddev),
1422 bdevname(bio->bi_bdev, b),
NeilBrown69382e82006-01-06 00:20:22 -08001423 (unsigned long long)r1_bio->sector);
1424 md_done_sync(mddev, r1_bio->sectors, 0);
1425 put_buf(r1_bio);
1426 return;
1427 }
1428 sectors -= s;
1429 sect += s;
1430 idx ++;
1431 }
1432 }
NeilBrownd11c1712006-01-06 00:20:26 -08001433
1434 /*
1435 * schedule writes
1436 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 atomic_set(&r1_bio->remaining, 1);
1438 for (i = 0; i < disks ; i++) {
1439 wbio = r1_bio->bios[i];
NeilBrown3e198f72006-01-06 00:20:21 -08001440 if (wbio->bi_end_io == NULL ||
1441 (wbio->bi_end_io == end_sync_read &&
1442 (i == r1_bio->read_disk ||
1443 !test_bit(MD_RECOVERY_SYNC, &mddev->recovery))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 continue;
1445
NeilBrown3e198f72006-01-06 00:20:21 -08001446 wbio->bi_rw = WRITE;
1447 wbio->bi_end_io = end_sync_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 atomic_inc(&r1_bio->remaining);
1449 md_sync_acct(conf->mirrors[i].rdev->bdev, wbio->bi_size >> 9);
NeilBrown191ea9b2005-06-21 17:17:23 -07001450
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 generic_make_request(wbio);
1452 }
1453
1454 if (atomic_dec_and_test(&r1_bio->remaining)) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001455 /* if we're here, all write(s) have completed, so clean up */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 md_done_sync(mddev, r1_bio->sectors, 1);
1457 put_buf(r1_bio);
1458 }
1459}
1460
1461/*
1462 * This is a kernel thread which:
1463 *
1464 * 1. Retries failed read operations on working mirrors.
1465 * 2. Updates the raid superblock when problems encounter.
1466 * 3. Performs writes following reads for array syncronising.
1467 */
1468
NeilBrown867868f2006-10-03 01:15:51 -07001469static void fix_read_error(conf_t *conf, int read_disk,
1470 sector_t sect, int sectors)
1471{
1472 mddev_t *mddev = conf->mddev;
1473 while(sectors) {
1474 int s = sectors;
1475 int d = read_disk;
1476 int success = 0;
1477 int start;
1478 mdk_rdev_t *rdev;
1479
1480 if (s > (PAGE_SIZE>>9))
1481 s = PAGE_SIZE >> 9;
1482
1483 do {
1484 /* Note: no rcu protection needed here
1485 * as this is synchronous in the raid1d thread
1486 * which is the thread that might remove
1487 * a device. If raid1d ever becomes multi-threaded....
1488 */
1489 rdev = conf->mirrors[d].rdev;
1490 if (rdev &&
1491 test_bit(In_sync, &rdev->flags) &&
NeilBrown2b193362010-10-27 15:16:40 +11001492 sync_page_io(rdev,
NeilBrown867868f2006-10-03 01:15:51 -07001493 sect + rdev->data_offset,
1494 s<<9,
1495 conf->tmppage, READ))
1496 success = 1;
1497 else {
1498 d++;
1499 if (d == conf->raid_disks)
1500 d = 0;
1501 }
1502 } while (!success && d != read_disk);
1503
1504 if (!success) {
1505 /* Cannot read from anywhere -- bye bye array */
1506 md_error(mddev, conf->mirrors[read_disk].rdev);
1507 break;
1508 }
1509 /* write it back and re-read */
1510 start = d;
1511 while (d != read_disk) {
1512 if (d==0)
1513 d = conf->raid_disks;
1514 d--;
1515 rdev = conf->mirrors[d].rdev;
1516 if (rdev &&
1517 test_bit(In_sync, &rdev->flags)) {
NeilBrown2b193362010-10-27 15:16:40 +11001518 if (sync_page_io(rdev,
NeilBrown867868f2006-10-03 01:15:51 -07001519 sect + rdev->data_offset,
1520 s<<9, conf->tmppage, WRITE)
1521 == 0)
1522 /* Well, this device is dead */
1523 md_error(mddev, rdev);
1524 }
1525 }
1526 d = start;
1527 while (d != read_disk) {
1528 char b[BDEVNAME_SIZE];
1529 if (d==0)
1530 d = conf->raid_disks;
1531 d--;
1532 rdev = conf->mirrors[d].rdev;
1533 if (rdev &&
1534 test_bit(In_sync, &rdev->flags)) {
NeilBrown2b193362010-10-27 15:16:40 +11001535 if (sync_page_io(rdev,
NeilBrown867868f2006-10-03 01:15:51 -07001536 sect + rdev->data_offset,
1537 s<<9, conf->tmppage, READ)
1538 == 0)
1539 /* Well, this device is dead */
1540 md_error(mddev, rdev);
1541 else {
1542 atomic_add(s, &rdev->corrected_errors);
1543 printk(KERN_INFO
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001544 "md/raid1:%s: read error corrected "
NeilBrown867868f2006-10-03 01:15:51 -07001545 "(%d sectors at %llu on %s)\n",
1546 mdname(mddev), s,
Randy Dunlap969b7552006-10-28 10:38:32 -07001547 (unsigned long long)(sect +
1548 rdev->data_offset),
NeilBrown867868f2006-10-03 01:15:51 -07001549 bdevname(rdev->bdev, b));
1550 }
1551 }
1552 }
1553 sectors -= s;
1554 sect += s;
1555 }
1556}
1557
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558static void raid1d(mddev_t *mddev)
1559{
1560 r1bio_t *r1_bio;
1561 struct bio *bio;
1562 unsigned long flags;
NeilBrown070ec552009-06-16 16:54:21 +10001563 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 struct list_head *head = &conf->retry_list;
1565 int unplug=0;
1566 mdk_rdev_t *rdev;
1567
1568 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
1570 for (;;) {
1571 char b[BDEVNAME_SIZE];
NeilBrowna35e63e2008-03-04 14:29:29 -08001572
1573 unplug += flush_pending_writes(conf);
1574
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrowna35e63e2008-03-04 14:29:29 -08001576 if (list_empty(head)) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001577 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 break;
NeilBrowna35e63e2008-03-04 14:29:29 -08001579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 r1_bio = list_entry(head->prev, r1bio_t, retry_list);
1581 list_del(head->prev);
NeilBrownddaf22a2006-01-06 00:20:19 -08001582 conf->nr_queued--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 spin_unlock_irqrestore(&conf->device_lock, flags);
1584
1585 mddev = r1_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +10001586 conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 if (test_bit(R1BIO_IsSync, &r1_bio->state)) {
1588 sync_request_write(mddev, r1_bio);
1589 unplug = 1;
1590 } else {
1591 int disk;
NeilBrownddaf22a2006-01-06 00:20:19 -08001592
1593 /* we got a read error. Maybe the drive is bad. Maybe just
1594 * the block and we can fix it.
1595 * We freeze all other IO, and try reading the block from
1596 * other devices. When we find one, we re-write
1597 * and check it that fixes the read error.
1598 * This is all done synchronously while the array is
1599 * frozen
1600 */
NeilBrown867868f2006-10-03 01:15:51 -07001601 if (mddev->ro == 0) {
1602 freeze_array(conf);
1603 fix_read_error(conf, r1_bio->read_disk,
1604 r1_bio->sector,
1605 r1_bio->sectors);
1606 unfreeze_array(conf);
NeilBrownd0e26072009-12-01 17:30:59 +11001607 } else
1608 md_error(mddev,
1609 conf->mirrors[r1_bio->read_disk].rdev);
NeilBrownddaf22a2006-01-06 00:20:19 -08001610
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 bio = r1_bio->bios[r1_bio->read_disk];
NeilBrownd0e26072009-12-01 17:30:59 +11001612 if ((disk=read_balance(conf, r1_bio)) == -1) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001613 printk(KERN_ALERT "md/raid1:%s: %s: unrecoverable I/O"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 " read error for block %llu\n",
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001615 mdname(mddev),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 bdevname(bio->bi_bdev,b),
1617 (unsigned long long)r1_bio->sector);
1618 raid_end_bio_io(r1_bio);
1619 } else {
NeilBrown2c7d46e2010-08-18 16:16:05 +10001620 const unsigned long do_sync = r1_bio->master_bio->bi_rw & REQ_SYNC;
NeilBrowncf30a472006-01-06 00:20:23 -08001621 r1_bio->bios[r1_bio->read_disk] =
1622 mddev->ro ? IO_BLOCKED : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 r1_bio->read_disk = disk;
1624 bio_put(bio);
NeilBrowna167f662010-10-26 18:31:13 +11001625 bio = bio_clone_mddev(r1_bio->master_bio,
1626 GFP_NOIO, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 r1_bio->bios[r1_bio->read_disk] = bio;
1628 rdev = conf->mirrors[disk].rdev;
1629 if (printk_ratelimit())
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001630 printk(KERN_ERR "md/raid1:%s: redirecting sector %llu to"
NeilBrownd754c5a2010-04-07 12:14:43 +10001631 " other mirror: %s\n",
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001632 mdname(mddev),
NeilBrownd754c5a2010-04-07 12:14:43 +10001633 (unsigned long long)r1_bio->sector,
1634 bdevname(rdev->bdev,b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 bio->bi_sector = r1_bio->sector + rdev->data_offset;
1636 bio->bi_bdev = rdev->bdev;
1637 bio->bi_end_io = raid1_end_read_request;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001638 bio->bi_rw = READ | do_sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 bio->bi_private = r1_bio;
1640 unplug = 1;
1641 generic_make_request(bio);
1642 }
1643 }
NeilBrown1d9d5242009-10-16 15:55:32 +11001644 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 if (unplug)
1647 unplug_slaves(mddev);
1648}
1649
1650
1651static int init_resync(conf_t *conf)
1652{
1653 int buffs;
1654
1655 buffs = RESYNC_WINDOW / RESYNC_BLOCK_SIZE;
Eric Sesterhenn9e77c482006-04-01 01:08:49 +02001656 BUG_ON(conf->r1buf_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 conf->r1buf_pool = mempool_create(buffs, r1buf_pool_alloc, r1buf_pool_free,
1658 conf->poolinfo);
1659 if (!conf->r1buf_pool)
1660 return -ENOMEM;
1661 conf->next_resync = 0;
1662 return 0;
1663}
1664
1665/*
1666 * perform a "sync" on one "block"
1667 *
1668 * We need to make sure that no normal I/O request - particularly write
1669 * requests - conflict with active sync requests.
1670 *
1671 * This is achieved by tracking pending requests and a 'barrier' concept
1672 * that can be installed to exclude normal IO requests.
1673 */
1674
NeilBrown57afd892005-06-21 17:17:13 -07001675static sector_t sync_request(mddev_t *mddev, sector_t sector_nr, int *skipped, int go_faster)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676{
NeilBrown070ec552009-06-16 16:54:21 +10001677 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 r1bio_t *r1_bio;
1679 struct bio *bio;
1680 sector_t max_sector, nr_sectors;
NeilBrown3e198f72006-01-06 00:20:21 -08001681 int disk = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 int i;
NeilBrown3e198f72006-01-06 00:20:21 -08001683 int wonly = -1;
1684 int write_targets = 0, read_targets = 0;
NeilBrown57dab0b2010-10-19 10:03:39 +11001685 sector_t sync_blocks;
NeilBrowne3b97032005-08-04 12:53:34 -07001686 int still_degraded = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
1688 if (!conf->r1buf_pool)
1689 if (init_resync(conf))
NeilBrown57afd892005-06-21 17:17:13 -07001690 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691
Andre Noll58c0fed2009-03-31 14:33:13 +11001692 max_sector = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 if (sector_nr >= max_sector) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001694 /* If we aborted, we need to abort the
1695 * sync on the 'current' bitmap chunk (there will
1696 * only be one in raid1 resync.
1697 * We can find the current addess in mddev->curr_resync
1698 */
NeilBrown6a806c52005-07-15 03:56:35 -07001699 if (mddev->curr_resync < max_sector) /* aborted */
1700 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
NeilBrown191ea9b2005-06-21 17:17:23 -07001701 &sync_blocks, 1);
NeilBrown6a806c52005-07-15 03:56:35 -07001702 else /* completed sync */
NeilBrown191ea9b2005-06-21 17:17:23 -07001703 conf->fullsync = 0;
NeilBrown6a806c52005-07-15 03:56:35 -07001704
1705 bitmap_close_sync(mddev->bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 close_sync(conf);
1707 return 0;
1708 }
1709
NeilBrown07d84d102006-06-26 00:27:56 -07001710 if (mddev->bitmap == NULL &&
1711 mddev->recovery_cp == MaxSector &&
NeilBrown6394cca2006-08-27 01:23:50 -07001712 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
NeilBrown07d84d102006-06-26 00:27:56 -07001713 conf->fullsync == 0) {
1714 *skipped = 1;
1715 return max_sector - sector_nr;
1716 }
NeilBrown6394cca2006-08-27 01:23:50 -07001717 /* before building a request, check if we can skip these blocks..
1718 * This call the bitmap_start_sync doesn't actually record anything
1719 */
NeilBrowne3b97032005-08-04 12:53:34 -07001720 if (!bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
NeilBrowne5de485f2005-11-08 21:39:38 -08001721 !conf->fullsync && !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001722 /* We can skip this block, and probably several more */
1723 *skipped = 1;
1724 return sync_blocks;
1725 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 /*
NeilBrown17999be2006-01-06 00:20:12 -08001727 * If there is non-resync activity waiting for a turn,
1728 * and resync is going fast enough,
1729 * then let it though before starting on this new sync request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 */
NeilBrown17999be2006-01-06 00:20:12 -08001731 if (!go_faster && conf->nr_waiting)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 msleep_interruptible(1000);
NeilBrown17999be2006-01-06 00:20:12 -08001733
NeilBrownb47490c2008-02-06 01:39:50 -08001734 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
NeilBrown1c4588e2010-10-26 17:41:22 +11001735 r1_bio = mempool_alloc(conf->r1buf_pool, GFP_NOIO);
NeilBrown17999be2006-01-06 00:20:12 -08001736 raise_barrier(conf);
1737
1738 conf->next_resync = sector_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739
NeilBrown3e198f72006-01-06 00:20:21 -08001740 rcu_read_lock();
1741 /*
1742 * If we get a correctably read error during resync or recovery,
1743 * we might want to read from a different device. So we
1744 * flag all drives that could conceivably be read from for READ,
1745 * and any others (which will be non-In_sync devices) for WRITE.
1746 * If a read fails, we try reading from something else for which READ
1747 * is OK.
1748 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 r1_bio->mddev = mddev;
1751 r1_bio->sector = sector_nr;
NeilBrown191ea9b2005-06-21 17:17:23 -07001752 r1_bio->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 set_bit(R1BIO_IsSync, &r1_bio->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754
1755 for (i=0; i < conf->raid_disks; i++) {
NeilBrown3e198f72006-01-06 00:20:21 -08001756 mdk_rdev_t *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 bio = r1_bio->bios[i];
1758
1759 /* take from bio_init */
1760 bio->bi_next = NULL;
NeilBrowndb8d9d32010-10-07 12:00:50 +11001761 bio->bi_flags &= ~(BIO_POOL_MASK-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 bio->bi_flags |= 1 << BIO_UPTODATE;
NeilBrowndb8d9d32010-10-07 12:00:50 +11001763 bio->bi_comp_cpu = -1;
NeilBrown802ba062006-12-13 00:34:13 -08001764 bio->bi_rw = READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 bio->bi_vcnt = 0;
1766 bio->bi_idx = 0;
1767 bio->bi_phys_segments = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 bio->bi_size = 0;
1769 bio->bi_end_io = NULL;
1770 bio->bi_private = NULL;
1771
NeilBrown3e198f72006-01-06 00:20:21 -08001772 rdev = rcu_dereference(conf->mirrors[i].rdev);
1773 if (rdev == NULL ||
1774 test_bit(Faulty, &rdev->flags)) {
NeilBrowne3b97032005-08-04 12:53:34 -07001775 still_degraded = 1;
1776 continue;
NeilBrown3e198f72006-01-06 00:20:21 -08001777 } else if (!test_bit(In_sync, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 bio->bi_rw = WRITE;
1779 bio->bi_end_io = end_sync_write;
1780 write_targets ++;
NeilBrown3e198f72006-01-06 00:20:21 -08001781 } else {
1782 /* may need to read from here */
1783 bio->bi_rw = READ;
1784 bio->bi_end_io = end_sync_read;
1785 if (test_bit(WriteMostly, &rdev->flags)) {
1786 if (wonly < 0)
1787 wonly = i;
1788 } else {
1789 if (disk < 0)
1790 disk = i;
1791 }
1792 read_targets++;
1793 }
1794 atomic_inc(&rdev->nr_pending);
1795 bio->bi_sector = sector_nr + rdev->data_offset;
1796 bio->bi_bdev = rdev->bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 bio->bi_private = r1_bio;
1798 }
NeilBrown3e198f72006-01-06 00:20:21 -08001799 rcu_read_unlock();
1800 if (disk < 0)
1801 disk = wonly;
1802 r1_bio->read_disk = disk;
NeilBrown191ea9b2005-06-21 17:17:23 -07001803
NeilBrown3e198f72006-01-06 00:20:21 -08001804 if (test_bit(MD_RECOVERY_SYNC, &mddev->recovery) && read_targets > 0)
1805 /* extra read targets are also write targets */
1806 write_targets += read_targets-1;
1807
1808 if (write_targets == 0 || read_targets == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 /* There is nowhere to write, so all non-sync
1810 * drives must be failed - so we are finished
1811 */
NeilBrown57afd892005-06-21 17:17:13 -07001812 sector_t rv = max_sector - sector_nr;
1813 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 put_buf(r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 return rv;
1816 }
1817
NeilBrownc6207272008-02-06 01:39:52 -08001818 if (max_sector > mddev->resync_max)
1819 max_sector = mddev->resync_max; /* Don't do IO beyond here */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 nr_sectors = 0;
NeilBrown289e99e2005-06-21 17:17:24 -07001821 sync_blocks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 do {
1823 struct page *page;
1824 int len = PAGE_SIZE;
1825 if (sector_nr + (len>>9) > max_sector)
1826 len = (max_sector - sector_nr) << 9;
1827 if (len == 0)
1828 break;
NeilBrown6a806c52005-07-15 03:56:35 -07001829 if (sync_blocks == 0) {
1830 if (!bitmap_start_sync(mddev->bitmap, sector_nr,
NeilBrowne5de485f2005-11-08 21:39:38 -08001831 &sync_blocks, still_degraded) &&
1832 !conf->fullsync &&
1833 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery))
NeilBrown6a806c52005-07-15 03:56:35 -07001834 break;
Eric Sesterhenn9e77c482006-04-01 01:08:49 +02001835 BUG_ON(sync_blocks < (PAGE_SIZE>>9));
NeilBrown7571ae82010-10-07 11:54:46 +11001836 if ((len >> 9) > sync_blocks)
NeilBrown6a806c52005-07-15 03:56:35 -07001837 len = sync_blocks<<9;
NeilBrownab7a30c2005-06-21 17:17:23 -07001838 }
NeilBrown191ea9b2005-06-21 17:17:23 -07001839
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 for (i=0 ; i < conf->raid_disks; i++) {
1841 bio = r1_bio->bios[i];
1842 if (bio->bi_end_io) {
NeilBrownd11c1712006-01-06 00:20:26 -08001843 page = bio->bi_io_vec[bio->bi_vcnt].bv_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 if (bio_add_page(bio, page, len, 0) == 0) {
1845 /* stop here */
NeilBrownd11c1712006-01-06 00:20:26 -08001846 bio->bi_io_vec[bio->bi_vcnt].bv_page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 while (i > 0) {
1848 i--;
1849 bio = r1_bio->bios[i];
NeilBrown6a806c52005-07-15 03:56:35 -07001850 if (bio->bi_end_io==NULL)
1851 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 /* remove last page from this bio */
1853 bio->bi_vcnt--;
1854 bio->bi_size -= len;
1855 bio->bi_flags &= ~(1<< BIO_SEG_VALID);
1856 }
1857 goto bio_full;
1858 }
1859 }
1860 }
1861 nr_sectors += len>>9;
1862 sector_nr += len>>9;
NeilBrown191ea9b2005-06-21 17:17:23 -07001863 sync_blocks -= (len>>9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 } while (r1_bio->bios[disk]->bi_vcnt < RESYNC_PAGES);
1865 bio_full:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 r1_bio->sectors = nr_sectors;
1867
NeilBrownd11c1712006-01-06 00:20:26 -08001868 /* For a user-requested sync, we read all readable devices and do a
1869 * compare
1870 */
1871 if (test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) {
1872 atomic_set(&r1_bio->remaining, read_targets);
1873 for (i=0; i<conf->raid_disks; i++) {
1874 bio = r1_bio->bios[i];
1875 if (bio->bi_end_io == end_sync_read) {
NeilBrownddac7c72006-08-31 21:27:36 -07001876 md_sync_acct(bio->bi_bdev, nr_sectors);
NeilBrownd11c1712006-01-06 00:20:26 -08001877 generic_make_request(bio);
1878 }
1879 }
1880 } else {
1881 atomic_set(&r1_bio->remaining, 1);
1882 bio = r1_bio->bios[r1_bio->read_disk];
NeilBrownddac7c72006-08-31 21:27:36 -07001883 md_sync_acct(bio->bi_bdev, nr_sectors);
NeilBrownd11c1712006-01-06 00:20:26 -08001884 generic_make_request(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
NeilBrownd11c1712006-01-06 00:20:26 -08001886 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 return nr_sectors;
1888}
1889
Dan Williams80c3a6c2009-03-17 18:10:40 -07001890static sector_t raid1_size(mddev_t *mddev, sector_t sectors, int raid_disks)
1891{
1892 if (sectors)
1893 return sectors;
1894
1895 return mddev->dev_sectors;
1896}
1897
NeilBrown709ae482009-12-14 12:49:51 +11001898static conf_t *setup_conf(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899{
1900 conf_t *conf;
NeilBrown709ae482009-12-14 12:49:51 +11001901 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 mirror_info_t *disk;
1903 mdk_rdev_t *rdev;
NeilBrown709ae482009-12-14 12:49:51 +11001904 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
NeilBrown9ffae0c2006-01-06 00:20:32 -08001906 conf = kzalloc(sizeof(conf_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 if (!conf)
NeilBrown709ae482009-12-14 12:49:51 +11001908 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
NeilBrown9ffae0c2006-01-06 00:20:32 -08001910 conf->mirrors = kzalloc(sizeof(struct mirror_info)*mddev->raid_disks,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 GFP_KERNEL);
1912 if (!conf->mirrors)
NeilBrown709ae482009-12-14 12:49:51 +11001913 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914
NeilBrownddaf22a2006-01-06 00:20:19 -08001915 conf->tmppage = alloc_page(GFP_KERNEL);
1916 if (!conf->tmppage)
NeilBrown709ae482009-12-14 12:49:51 +11001917 goto abort;
NeilBrownddaf22a2006-01-06 00:20:19 -08001918
NeilBrown709ae482009-12-14 12:49:51 +11001919 conf->poolinfo = kzalloc(sizeof(*conf->poolinfo), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 if (!conf->poolinfo)
NeilBrown709ae482009-12-14 12:49:51 +11001921 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 conf->poolinfo->raid_disks = mddev->raid_disks;
1923 conf->r1bio_pool = mempool_create(NR_RAID1_BIOS, r1bio_pool_alloc,
1924 r1bio_pool_free,
1925 conf->poolinfo);
1926 if (!conf->r1bio_pool)
NeilBrown709ae482009-12-14 12:49:51 +11001927 goto abort;
1928
NeilBrowned9bfdf2009-10-16 15:55:44 +11001929 conf->poolinfo->mddev = mddev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930
Neil Browne7e72bf2008-05-14 16:05:54 -07001931 spin_lock_init(&conf->device_lock);
Cheng Renquan159ec1f2009-01-09 08:31:08 +11001932 list_for_each_entry(rdev, &mddev->disks, same_set) {
NeilBrown709ae482009-12-14 12:49:51 +11001933 int disk_idx = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 if (disk_idx >= mddev->raid_disks
1935 || disk_idx < 0)
1936 continue;
1937 disk = conf->mirrors + disk_idx;
1938
1939 disk->rdev = rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940
1941 disk->head_position = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 }
1943 conf->raid_disks = mddev->raid_disks;
1944 conf->mddev = mddev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 INIT_LIST_HEAD(&conf->retry_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
1947 spin_lock_init(&conf->resync_lock);
NeilBrown17999be2006-01-06 00:20:12 -08001948 init_waitqueue_head(&conf->wait_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
NeilBrown191ea9b2005-06-21 17:17:23 -07001950 bio_list_init(&conf->pending_bio_list);
NeilBrown191ea9b2005-06-21 17:17:23 -07001951
NeilBrown709ae482009-12-14 12:49:51 +11001952 conf->last_used = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 for (i = 0; i < conf->raid_disks; i++) {
1954
1955 disk = conf->mirrors + i;
1956
NeilBrown5fd6c1d2006-06-26 00:27:40 -07001957 if (!disk->rdev ||
1958 !test_bit(In_sync, &disk->rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 disk->head_position = 0;
NeilBrown918f0232007-08-22 14:01:52 -07001960 if (disk->rdev)
1961 conf->fullsync = 1;
NeilBrown709ae482009-12-14 12:49:51 +11001962 } else if (conf->last_used < 0)
1963 /*
1964 * The first working device is used as a
1965 * starting point to read balancing.
1966 */
1967 conf->last_used = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 }
NeilBrown709ae482009-12-14 12:49:51 +11001969
1970 err = -EIO;
1971 if (conf->last_used < 0) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001972 printk(KERN_ERR "md/raid1:%s: no operational mirrors\n",
NeilBrown709ae482009-12-14 12:49:51 +11001973 mdname(mddev));
1974 goto abort;
NeilBrown11ce99e2006-10-03 01:15:52 -07001975 }
NeilBrown709ae482009-12-14 12:49:51 +11001976 err = -ENOMEM;
1977 conf->thread = md_register_thread(raid1d, mddev, NULL);
1978 if (!conf->thread) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001979 printk(KERN_ERR
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001980 "md/raid1:%s: couldn't allocate thread\n",
NeilBrown191ea9b2005-06-21 17:17:23 -07001981 mdname(mddev));
NeilBrown709ae482009-12-14 12:49:51 +11001982 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 }
NeilBrown191ea9b2005-06-21 17:17:23 -07001984
NeilBrown709ae482009-12-14 12:49:51 +11001985 return conf;
1986
1987 abort:
1988 if (conf) {
1989 if (conf->r1bio_pool)
1990 mempool_destroy(conf->r1bio_pool);
1991 kfree(conf->mirrors);
1992 safe_put_page(conf->tmppage);
1993 kfree(conf->poolinfo);
1994 kfree(conf);
1995 }
1996 return ERR_PTR(err);
1997}
1998
1999static int run(mddev_t *mddev)
2000{
2001 conf_t *conf;
2002 int i;
2003 mdk_rdev_t *rdev;
2004
2005 if (mddev->level != 1) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002006 printk(KERN_ERR "md/raid1:%s: raid level not set to mirroring (%d)\n",
NeilBrown709ae482009-12-14 12:49:51 +11002007 mdname(mddev), mddev->level);
2008 return -EIO;
2009 }
2010 if (mddev->reshape_position != MaxSector) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002011 printk(KERN_ERR "md/raid1:%s: reshape_position set but not supported\n",
NeilBrown709ae482009-12-14 12:49:51 +11002012 mdname(mddev));
2013 return -EIO;
2014 }
2015 /*
2016 * copy the already verified devices into our private RAID1
2017 * bookkeeping area. [whatever we allocate in run(),
2018 * should be freed in stop()]
2019 */
2020 if (mddev->private == NULL)
2021 conf = setup_conf(mddev);
2022 else
2023 conf = mddev->private;
2024
2025 if (IS_ERR(conf))
2026 return PTR_ERR(conf);
2027
2028 mddev->queue->queue_lock = &conf->device_lock;
2029 list_for_each_entry(rdev, &mddev->disks, same_set) {
2030 disk_stack_limits(mddev->gendisk, rdev->bdev,
2031 rdev->data_offset << 9);
2032 /* as we don't honour merge_bvec_fn, we must never risk
NeilBrown627a2d32010-03-08 16:44:38 +11002033 * violating it, so limit ->max_segments to 1 lying within
2034 * a single page, as a one page request is never in violation.
NeilBrown709ae482009-12-14 12:49:51 +11002035 */
NeilBrown627a2d32010-03-08 16:44:38 +11002036 if (rdev->bdev->bd_disk->queue->merge_bvec_fn) {
2037 blk_queue_max_segments(mddev->queue, 1);
2038 blk_queue_segment_boundary(mddev->queue,
2039 PAGE_CACHE_SIZE - 1);
2040 }
NeilBrown709ae482009-12-14 12:49:51 +11002041 }
2042
2043 mddev->degraded = 0;
2044 for (i=0; i < conf->raid_disks; i++)
2045 if (conf->mirrors[i].rdev == NULL ||
2046 !test_bit(In_sync, &conf->mirrors[i].rdev->flags) ||
2047 test_bit(Faulty, &conf->mirrors[i].rdev->flags))
2048 mddev->degraded++;
2049
2050 if (conf->raid_disks - mddev->degraded == 1)
2051 mddev->recovery_cp = MaxSector;
2052
Andre Noll8c6ac862009-06-18 08:48:06 +10002053 if (mddev->recovery_cp != MaxSector)
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002054 printk(KERN_NOTICE "md/raid1:%s: not clean"
Andre Noll8c6ac862009-06-18 08:48:06 +10002055 " -- starting background reconstruction\n",
2056 mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 printk(KERN_INFO
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002058 "md/raid1:%s: active with %d out of %d mirrors\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 mdname(mddev), mddev->raid_disks - mddev->degraded,
2060 mddev->raid_disks);
NeilBrown709ae482009-12-14 12:49:51 +11002061
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 /*
2063 * Ok, everything is just fine now
2064 */
NeilBrown709ae482009-12-14 12:49:51 +11002065 mddev->thread = conf->thread;
2066 conf->thread = NULL;
2067 mddev->private = conf;
2068
Dan Williams1f403622009-03-31 14:59:03 +11002069 md_set_array_sectors(mddev, raid1_size(mddev, 0, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
NeilBrown7a5febe2005-05-16 21:53:16 -07002071 mddev->queue->unplug_fn = raid1_unplug;
NeilBrown0d129222006-10-03 01:15:54 -07002072 mddev->queue->backing_dev_info.congested_fn = raid1_congested;
2073 mddev->queue->backing_dev_info.congested_data = mddev;
Andre Nollac5e7112009-08-03 10:59:47 +10002074 md_integrity_register(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076}
2077
2078static int stop(mddev_t *mddev)
2079{
NeilBrown070ec552009-06-16 16:54:21 +10002080 conf_t *conf = mddev->private;
NeilBrown4b6d2872005-09-09 16:23:47 -07002081 struct bitmap *bitmap = mddev->bitmap;
NeilBrown4b6d2872005-09-09 16:23:47 -07002082
2083 /* wait for behind writes to complete */
NeilBrowne5551902010-03-31 11:21:44 +11002084 if (bitmap && atomic_read(&bitmap->behind_writes) > 0) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002085 printk(KERN_INFO "md/raid1:%s: behind writes in progress - waiting to stop.\n",
2086 mdname(mddev));
NeilBrown4b6d2872005-09-09 16:23:47 -07002087 /* need to kick something here to make sure I/O goes? */
NeilBrowne5551902010-03-31 11:21:44 +11002088 wait_event(bitmap->behind_wait,
2089 atomic_read(&bitmap->behind_writes) == 0);
NeilBrown4b6d2872005-09-09 16:23:47 -07002090 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091
NeilBrown409c57f2009-03-31 14:39:39 +11002092 raise_barrier(conf);
2093 lower_barrier(conf);
2094
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 md_unregister_thread(mddev->thread);
2096 mddev->thread = NULL;
2097 blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/
2098 if (conf->r1bio_pool)
2099 mempool_destroy(conf->r1bio_pool);
Jesper Juhl990a8ba2005-06-21 17:17:30 -07002100 kfree(conf->mirrors);
2101 kfree(conf->poolinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 kfree(conf);
2103 mddev->private = NULL;
2104 return 0;
2105}
2106
2107static int raid1_resize(mddev_t *mddev, sector_t sectors)
2108{
2109 /* no resync is happening, and there is enough space
2110 * on all devices, so we can resize.
2111 * We need to make sure resync covers any new space.
2112 * If the array is shrinking we should possibly wait until
2113 * any io in the removed space completes, but it hardly seems
2114 * worth it.
2115 */
Dan Williams1f403622009-03-31 14:59:03 +11002116 md_set_array_sectors(mddev, raid1_size(mddev, sectors, 0));
Dan Williamsb522adc2009-03-31 15:00:31 +11002117 if (mddev->array_sectors > raid1_size(mddev, sectors, 0))
2118 return -EINVAL;
Andre Nollf233ea52008-07-21 17:05:22 +10002119 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10002120 revalidate_disk(mddev->gendisk);
Dan Williamsb522adc2009-03-31 15:00:31 +11002121 if (sectors > mddev->dev_sectors &&
Andre Nollf233ea52008-07-21 17:05:22 +10002122 mddev->recovery_cp == MaxSector) {
Andre Noll58c0fed2009-03-31 14:33:13 +11002123 mddev->recovery_cp = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
2125 }
Dan Williamsb522adc2009-03-31 15:00:31 +11002126 mddev->dev_sectors = sectors;
NeilBrown4b5c7ae2005-07-27 11:43:28 -07002127 mddev->resync_max_sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 return 0;
2129}
2130
NeilBrown63c70c42006-03-27 01:18:13 -08002131static int raid1_reshape(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132{
2133 /* We need to:
2134 * 1/ resize the r1bio_pool
2135 * 2/ resize conf->mirrors
2136 *
2137 * We allocate a new r1bio_pool if we can.
2138 * Then raise a device barrier and wait until all IO stops.
2139 * Then resize conf->mirrors and swap in the new r1bio pool.
NeilBrown6ea9c072005-06-21 17:17:09 -07002140 *
2141 * At the same time, we "pack" the devices so that all the missing
2142 * devices have the higher raid_disk numbers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 */
2144 mempool_t *newpool, *oldpool;
2145 struct pool_info *newpoolinfo;
2146 mirror_info_t *newmirrors;
NeilBrown070ec552009-06-16 16:54:21 +10002147 conf_t *conf = mddev->private;
NeilBrown63c70c42006-03-27 01:18:13 -08002148 int cnt, raid_disks;
NeilBrownc04be0a2006-10-03 01:15:53 -07002149 unsigned long flags;
Dan Williamsb5470dc2008-06-27 21:44:04 -07002150 int d, d2, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
NeilBrown63c70c42006-03-27 01:18:13 -08002152 /* Cannot change chunk_size, layout, or level */
Andre Noll664e7c42009-06-18 08:45:27 +10002153 if (mddev->chunk_sectors != mddev->new_chunk_sectors ||
NeilBrown63c70c42006-03-27 01:18:13 -08002154 mddev->layout != mddev->new_layout ||
2155 mddev->level != mddev->new_level) {
Andre Noll664e7c42009-06-18 08:45:27 +10002156 mddev->new_chunk_sectors = mddev->chunk_sectors;
NeilBrown63c70c42006-03-27 01:18:13 -08002157 mddev->new_layout = mddev->layout;
2158 mddev->new_level = mddev->level;
2159 return -EINVAL;
2160 }
2161
Dan Williamsb5470dc2008-06-27 21:44:04 -07002162 err = md_allow_write(mddev);
2163 if (err)
2164 return err;
NeilBrown2a2275d2007-01-26 00:57:11 -08002165
NeilBrown63c70c42006-03-27 01:18:13 -08002166 raid_disks = mddev->raid_disks + mddev->delta_disks;
2167
NeilBrown6ea9c072005-06-21 17:17:09 -07002168 if (raid_disks < conf->raid_disks) {
2169 cnt=0;
2170 for (d= 0; d < conf->raid_disks; d++)
2171 if (conf->mirrors[d].rdev)
2172 cnt++;
2173 if (cnt > raid_disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 return -EBUSY;
NeilBrown6ea9c072005-06-21 17:17:09 -07002175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176
2177 newpoolinfo = kmalloc(sizeof(*newpoolinfo), GFP_KERNEL);
2178 if (!newpoolinfo)
2179 return -ENOMEM;
2180 newpoolinfo->mddev = mddev;
2181 newpoolinfo->raid_disks = raid_disks;
2182
2183 newpool = mempool_create(NR_RAID1_BIOS, r1bio_pool_alloc,
2184 r1bio_pool_free, newpoolinfo);
2185 if (!newpool) {
2186 kfree(newpoolinfo);
2187 return -ENOMEM;
2188 }
NeilBrown9ffae0c2006-01-06 00:20:32 -08002189 newmirrors = kzalloc(sizeof(struct mirror_info) * raid_disks, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 if (!newmirrors) {
2191 kfree(newpoolinfo);
2192 mempool_destroy(newpool);
2193 return -ENOMEM;
2194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
NeilBrown17999be2006-01-06 00:20:12 -08002196 raise_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197
2198 /* ok, everything is stopped */
2199 oldpool = conf->r1bio_pool;
2200 conf->r1bio_pool = newpool;
NeilBrown6ea9c072005-06-21 17:17:09 -07002201
NeilBrowna88aa782007-08-22 14:01:53 -07002202 for (d = d2 = 0; d < conf->raid_disks; d++) {
2203 mdk_rdev_t *rdev = conf->mirrors[d].rdev;
2204 if (rdev && rdev->raid_disk != d2) {
2205 char nm[20];
2206 sprintf(nm, "rd%d", rdev->raid_disk);
2207 sysfs_remove_link(&mddev->kobj, nm);
2208 rdev->raid_disk = d2;
2209 sprintf(nm, "rd%d", rdev->raid_disk);
2210 sysfs_remove_link(&mddev->kobj, nm);
2211 if (sysfs_create_link(&mddev->kobj,
2212 &rdev->kobj, nm))
2213 printk(KERN_WARNING
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002214 "md/raid1:%s: cannot register "
2215 "%s\n",
2216 mdname(mddev), nm);
NeilBrown6ea9c072005-06-21 17:17:09 -07002217 }
NeilBrowna88aa782007-08-22 14:01:53 -07002218 if (rdev)
2219 newmirrors[d2++].rdev = rdev;
2220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 kfree(conf->mirrors);
2222 conf->mirrors = newmirrors;
2223 kfree(conf->poolinfo);
2224 conf->poolinfo = newpoolinfo;
2225
NeilBrownc04be0a2006-10-03 01:15:53 -07002226 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 mddev->degraded += (raid_disks - conf->raid_disks);
NeilBrownc04be0a2006-10-03 01:15:53 -07002228 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 conf->raid_disks = mddev->raid_disks = raid_disks;
NeilBrown63c70c42006-03-27 01:18:13 -08002230 mddev->delta_disks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231
NeilBrown6ea9c072005-06-21 17:17:09 -07002232 conf->last_used = 0; /* just make sure it is in-range */
NeilBrown17999be2006-01-06 00:20:12 -08002233 lower_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234
2235 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
2236 md_wakeup_thread(mddev->thread);
2237
2238 mempool_destroy(oldpool);
2239 return 0;
2240}
2241
NeilBrown500af872005-09-09 16:23:58 -07002242static void raid1_quiesce(mddev_t *mddev, int state)
NeilBrown36fa3062005-09-09 16:23:45 -07002243{
NeilBrown070ec552009-06-16 16:54:21 +10002244 conf_t *conf = mddev->private;
NeilBrown36fa3062005-09-09 16:23:45 -07002245
2246 switch(state) {
NeilBrown6eef4b22009-12-14 12:49:51 +11002247 case 2: /* wake for suspend */
2248 wake_up(&conf->wait_barrier);
2249 break;
NeilBrown9e6603d2005-09-09 16:23:48 -07002250 case 1:
NeilBrown17999be2006-01-06 00:20:12 -08002251 raise_barrier(conf);
NeilBrown36fa3062005-09-09 16:23:45 -07002252 break;
NeilBrown9e6603d2005-09-09 16:23:48 -07002253 case 0:
NeilBrown17999be2006-01-06 00:20:12 -08002254 lower_barrier(conf);
NeilBrown36fa3062005-09-09 16:23:45 -07002255 break;
2256 }
NeilBrown36fa3062005-09-09 16:23:45 -07002257}
2258
NeilBrown709ae482009-12-14 12:49:51 +11002259static void *raid1_takeover(mddev_t *mddev)
2260{
2261 /* raid1 can take over:
2262 * raid5 with 2 devices, any layout or chunk size
2263 */
2264 if (mddev->level == 5 && mddev->raid_disks == 2) {
2265 conf_t *conf;
2266 mddev->new_level = 1;
2267 mddev->new_layout = 0;
2268 mddev->new_chunk_sectors = 0;
2269 conf = setup_conf(mddev);
2270 if (!IS_ERR(conf))
2271 conf->barrier = 1;
2272 return conf;
2273 }
2274 return ERR_PTR(-EINVAL);
2275}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276
NeilBrown2604b702006-01-06 00:20:36 -08002277static struct mdk_personality raid1_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278{
2279 .name = "raid1",
NeilBrown2604b702006-01-06 00:20:36 -08002280 .level = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 .owner = THIS_MODULE,
2282 .make_request = make_request,
2283 .run = run,
2284 .stop = stop,
2285 .status = status,
2286 .error_handler = error,
2287 .hot_add_disk = raid1_add_disk,
2288 .hot_remove_disk= raid1_remove_disk,
2289 .spare_active = raid1_spare_active,
2290 .sync_request = sync_request,
2291 .resize = raid1_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07002292 .size = raid1_size,
NeilBrown63c70c42006-03-27 01:18:13 -08002293 .check_reshape = raid1_reshape,
NeilBrown36fa3062005-09-09 16:23:45 -07002294 .quiesce = raid1_quiesce,
NeilBrown709ae482009-12-14 12:49:51 +11002295 .takeover = raid1_takeover,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296};
2297
2298static int __init raid_init(void)
2299{
NeilBrown2604b702006-01-06 00:20:36 -08002300 return register_md_personality(&raid1_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301}
2302
2303static void raid_exit(void)
2304{
NeilBrown2604b702006-01-06 00:20:36 -08002305 unregister_md_personality(&raid1_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306}
2307
2308module_init(raid_init);
2309module_exit(raid_exit);
2310MODULE_LICENSE("GPL");
NeilBrown0efb9e62009-12-14 12:49:58 +11002311MODULE_DESCRIPTION("RAID1 (mirroring) personality for MD");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312MODULE_ALIAS("md-personality-3"); /* RAID1 */
NeilBrownd9d166c2006-01-06 00:20:51 -08002313MODULE_ALIAS("md-raid1");
NeilBrown2604b702006-01-06 00:20:36 -08002314MODULE_ALIAS("md-level-1");