blob: a23ffa397ba91b0cd4dc2bb148f50122d72d6beb [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,
Jonathan Brassowccebd4c2011-01-14 09:14:33 +11001368 sect,
NeilBrown69382e82006-01-06 00:20:22 -08001369 s<<9,
1370 bio->bi_io_vec[idx].bv_page,
Jonathan Brassowccebd4c2011-01-14 09:14:33 +11001371 READ, false)) {
NeilBrown69382e82006-01-06 00:20:22 -08001372 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,
Jonathan Brassowccebd4c2011-01-14 09:14:33 +11001394 sect,
NeilBrown69382e82006-01-06 00:20:22 -08001395 s<<9,
1396 bio->bi_io_vec[idx].bv_page,
Jonathan Brassowccebd4c2011-01-14 09:14:33 +11001397 WRITE, false) == 0)
NeilBrown097426f2006-01-06 00:20:37 -08001398 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,
Jonathan Brassowccebd4c2011-01-14 09:14:33 +11001409 sect,
NeilBrown69382e82006-01-06 00:20:22 -08001410 s<<9,
1411 bio->bi_io_vec[idx].bv_page,
Jonathan Brassowccebd4c2011-01-14 09:14:33 +11001412 READ, false) == 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) &&
Jonathan Brassowccebd4c2011-01-14 09:14:33 +11001492 sync_page_io(rdev, sect, s<<9,
1493 conf->tmppage, READ, false))
NeilBrown867868f2006-10-03 01:15:51 -07001494 success = 1;
1495 else {
1496 d++;
1497 if (d == conf->raid_disks)
1498 d = 0;
1499 }
1500 } while (!success && d != read_disk);
1501
1502 if (!success) {
1503 /* Cannot read from anywhere -- bye bye array */
1504 md_error(mddev, conf->mirrors[read_disk].rdev);
1505 break;
1506 }
1507 /* write it back and re-read */
1508 start = d;
1509 while (d != read_disk) {
1510 if (d==0)
1511 d = conf->raid_disks;
1512 d--;
1513 rdev = conf->mirrors[d].rdev;
1514 if (rdev &&
1515 test_bit(In_sync, &rdev->flags)) {
Jonathan Brassowccebd4c2011-01-14 09:14:33 +11001516 if (sync_page_io(rdev, sect, s<<9,
1517 conf->tmppage, WRITE, false)
NeilBrown867868f2006-10-03 01:15:51 -07001518 == 0)
1519 /* Well, this device is dead */
1520 md_error(mddev, rdev);
1521 }
1522 }
1523 d = start;
1524 while (d != read_disk) {
1525 char b[BDEVNAME_SIZE];
1526 if (d==0)
1527 d = conf->raid_disks;
1528 d--;
1529 rdev = conf->mirrors[d].rdev;
1530 if (rdev &&
1531 test_bit(In_sync, &rdev->flags)) {
Jonathan Brassowccebd4c2011-01-14 09:14:33 +11001532 if (sync_page_io(rdev, sect, s<<9,
1533 conf->tmppage, READ, false)
NeilBrown867868f2006-10-03 01:15:51 -07001534 == 0)
1535 /* Well, this device is dead */
1536 md_error(mddev, rdev);
1537 else {
1538 atomic_add(s, &rdev->corrected_errors);
1539 printk(KERN_INFO
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001540 "md/raid1:%s: read error corrected "
NeilBrown867868f2006-10-03 01:15:51 -07001541 "(%d sectors at %llu on %s)\n",
1542 mdname(mddev), s,
Randy Dunlap969b7552006-10-28 10:38:32 -07001543 (unsigned long long)(sect +
1544 rdev->data_offset),
NeilBrown867868f2006-10-03 01:15:51 -07001545 bdevname(rdev->bdev, b));
1546 }
1547 }
1548 }
1549 sectors -= s;
1550 sect += s;
1551 }
1552}
1553
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554static void raid1d(mddev_t *mddev)
1555{
1556 r1bio_t *r1_bio;
1557 struct bio *bio;
1558 unsigned long flags;
NeilBrown070ec552009-06-16 16:54:21 +10001559 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 struct list_head *head = &conf->retry_list;
1561 int unplug=0;
1562 mdk_rdev_t *rdev;
1563
1564 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
1566 for (;;) {
1567 char b[BDEVNAME_SIZE];
NeilBrowna35e63e2008-03-04 14:29:29 -08001568
1569 unplug += flush_pending_writes(conf);
1570
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrowna35e63e2008-03-04 14:29:29 -08001572 if (list_empty(head)) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001573 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 break;
NeilBrowna35e63e2008-03-04 14:29:29 -08001575 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 r1_bio = list_entry(head->prev, r1bio_t, retry_list);
1577 list_del(head->prev);
NeilBrownddaf22a2006-01-06 00:20:19 -08001578 conf->nr_queued--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 spin_unlock_irqrestore(&conf->device_lock, flags);
1580
1581 mddev = r1_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +10001582 conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 if (test_bit(R1BIO_IsSync, &r1_bio->state)) {
1584 sync_request_write(mddev, r1_bio);
1585 unplug = 1;
1586 } else {
1587 int disk;
NeilBrownddaf22a2006-01-06 00:20:19 -08001588
1589 /* we got a read error. Maybe the drive is bad. Maybe just
1590 * the block and we can fix it.
1591 * We freeze all other IO, and try reading the block from
1592 * other devices. When we find one, we re-write
1593 * and check it that fixes the read error.
1594 * This is all done synchronously while the array is
1595 * frozen
1596 */
NeilBrown867868f2006-10-03 01:15:51 -07001597 if (mddev->ro == 0) {
1598 freeze_array(conf);
1599 fix_read_error(conf, r1_bio->read_disk,
1600 r1_bio->sector,
1601 r1_bio->sectors);
1602 unfreeze_array(conf);
NeilBrownd0e26072009-12-01 17:30:59 +11001603 } else
1604 md_error(mddev,
1605 conf->mirrors[r1_bio->read_disk].rdev);
NeilBrownddaf22a2006-01-06 00:20:19 -08001606
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 bio = r1_bio->bios[r1_bio->read_disk];
NeilBrownd0e26072009-12-01 17:30:59 +11001608 if ((disk=read_balance(conf, r1_bio)) == -1) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001609 printk(KERN_ALERT "md/raid1:%s: %s: unrecoverable I/O"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 " read error for block %llu\n",
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001611 mdname(mddev),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 bdevname(bio->bi_bdev,b),
1613 (unsigned long long)r1_bio->sector);
1614 raid_end_bio_io(r1_bio);
1615 } else {
NeilBrown2c7d46e2010-08-18 16:16:05 +10001616 const unsigned long do_sync = r1_bio->master_bio->bi_rw & REQ_SYNC;
NeilBrowncf30a472006-01-06 00:20:23 -08001617 r1_bio->bios[r1_bio->read_disk] =
1618 mddev->ro ? IO_BLOCKED : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 r1_bio->read_disk = disk;
1620 bio_put(bio);
NeilBrowna167f662010-10-26 18:31:13 +11001621 bio = bio_clone_mddev(r1_bio->master_bio,
1622 GFP_NOIO, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 r1_bio->bios[r1_bio->read_disk] = bio;
1624 rdev = conf->mirrors[disk].rdev;
1625 if (printk_ratelimit())
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001626 printk(KERN_ERR "md/raid1:%s: redirecting sector %llu to"
NeilBrownd754c5a2010-04-07 12:14:43 +10001627 " other mirror: %s\n",
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001628 mdname(mddev),
NeilBrownd754c5a2010-04-07 12:14:43 +10001629 (unsigned long long)r1_bio->sector,
1630 bdevname(rdev->bdev,b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 bio->bi_sector = r1_bio->sector + rdev->data_offset;
1632 bio->bi_bdev = rdev->bdev;
1633 bio->bi_end_io = raid1_end_read_request;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001634 bio->bi_rw = READ | do_sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 bio->bi_private = r1_bio;
1636 unplug = 1;
1637 generic_make_request(bio);
1638 }
1639 }
NeilBrown1d9d5242009-10-16 15:55:32 +11001640 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 if (unplug)
1643 unplug_slaves(mddev);
1644}
1645
1646
1647static int init_resync(conf_t *conf)
1648{
1649 int buffs;
1650
1651 buffs = RESYNC_WINDOW / RESYNC_BLOCK_SIZE;
Eric Sesterhenn9e77c482006-04-01 01:08:49 +02001652 BUG_ON(conf->r1buf_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 conf->r1buf_pool = mempool_create(buffs, r1buf_pool_alloc, r1buf_pool_free,
1654 conf->poolinfo);
1655 if (!conf->r1buf_pool)
1656 return -ENOMEM;
1657 conf->next_resync = 0;
1658 return 0;
1659}
1660
1661/*
1662 * perform a "sync" on one "block"
1663 *
1664 * We need to make sure that no normal I/O request - particularly write
1665 * requests - conflict with active sync requests.
1666 *
1667 * This is achieved by tracking pending requests and a 'barrier' concept
1668 * that can be installed to exclude normal IO requests.
1669 */
1670
NeilBrown57afd892005-06-21 17:17:13 -07001671static sector_t sync_request(mddev_t *mddev, sector_t sector_nr, int *skipped, int go_faster)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672{
NeilBrown070ec552009-06-16 16:54:21 +10001673 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 r1bio_t *r1_bio;
1675 struct bio *bio;
1676 sector_t max_sector, nr_sectors;
NeilBrown3e198f72006-01-06 00:20:21 -08001677 int disk = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 int i;
NeilBrown3e198f72006-01-06 00:20:21 -08001679 int wonly = -1;
1680 int write_targets = 0, read_targets = 0;
NeilBrown57dab0b2010-10-19 10:03:39 +11001681 sector_t sync_blocks;
NeilBrowne3b97032005-08-04 12:53:34 -07001682 int still_degraded = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
1684 if (!conf->r1buf_pool)
1685 if (init_resync(conf))
NeilBrown57afd892005-06-21 17:17:13 -07001686 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
Andre Noll58c0fed2009-03-31 14:33:13 +11001688 max_sector = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 if (sector_nr >= max_sector) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001690 /* If we aborted, we need to abort the
1691 * sync on the 'current' bitmap chunk (there will
1692 * only be one in raid1 resync.
1693 * We can find the current addess in mddev->curr_resync
1694 */
NeilBrown6a806c52005-07-15 03:56:35 -07001695 if (mddev->curr_resync < max_sector) /* aborted */
1696 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
NeilBrown191ea9b2005-06-21 17:17:23 -07001697 &sync_blocks, 1);
NeilBrown6a806c52005-07-15 03:56:35 -07001698 else /* completed sync */
NeilBrown191ea9b2005-06-21 17:17:23 -07001699 conf->fullsync = 0;
NeilBrown6a806c52005-07-15 03:56:35 -07001700
1701 bitmap_close_sync(mddev->bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 close_sync(conf);
1703 return 0;
1704 }
1705
NeilBrown07d84d102006-06-26 00:27:56 -07001706 if (mddev->bitmap == NULL &&
1707 mddev->recovery_cp == MaxSector &&
NeilBrown6394cca2006-08-27 01:23:50 -07001708 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
NeilBrown07d84d102006-06-26 00:27:56 -07001709 conf->fullsync == 0) {
1710 *skipped = 1;
1711 return max_sector - sector_nr;
1712 }
NeilBrown6394cca2006-08-27 01:23:50 -07001713 /* before building a request, check if we can skip these blocks..
1714 * This call the bitmap_start_sync doesn't actually record anything
1715 */
NeilBrowne3b97032005-08-04 12:53:34 -07001716 if (!bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
NeilBrowne5de4852005-11-08 21:39:38 -08001717 !conf->fullsync && !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001718 /* We can skip this block, and probably several more */
1719 *skipped = 1;
1720 return sync_blocks;
1721 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 /*
NeilBrown17999be2006-01-06 00:20:12 -08001723 * If there is non-resync activity waiting for a turn,
1724 * and resync is going fast enough,
1725 * then let it though before starting on this new sync request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 */
NeilBrown17999be2006-01-06 00:20:12 -08001727 if (!go_faster && conf->nr_waiting)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 msleep_interruptible(1000);
NeilBrown17999be2006-01-06 00:20:12 -08001729
NeilBrownb47490c2008-02-06 01:39:50 -08001730 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
NeilBrown1c4588e2010-10-26 17:41:22 +11001731 r1_bio = mempool_alloc(conf->r1buf_pool, GFP_NOIO);
NeilBrown17999be2006-01-06 00:20:12 -08001732 raise_barrier(conf);
1733
1734 conf->next_resync = sector_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
NeilBrown3e198f72006-01-06 00:20:21 -08001736 rcu_read_lock();
1737 /*
1738 * If we get a correctably read error during resync or recovery,
1739 * we might want to read from a different device. So we
1740 * flag all drives that could conceivably be read from for READ,
1741 * and any others (which will be non-In_sync devices) for WRITE.
1742 * If a read fails, we try reading from something else for which READ
1743 * is OK.
1744 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 r1_bio->mddev = mddev;
1747 r1_bio->sector = sector_nr;
NeilBrown191ea9b2005-06-21 17:17:23 -07001748 r1_bio->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 set_bit(R1BIO_IsSync, &r1_bio->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
1751 for (i=0; i < conf->raid_disks; i++) {
NeilBrown3e198f72006-01-06 00:20:21 -08001752 mdk_rdev_t *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 bio = r1_bio->bios[i];
1754
1755 /* take from bio_init */
1756 bio->bi_next = NULL;
NeilBrowndb8d9d32010-10-07 12:00:50 +11001757 bio->bi_flags &= ~(BIO_POOL_MASK-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 bio->bi_flags |= 1 << BIO_UPTODATE;
NeilBrowndb8d9d32010-10-07 12:00:50 +11001759 bio->bi_comp_cpu = -1;
NeilBrown802ba062006-12-13 00:34:13 -08001760 bio->bi_rw = READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 bio->bi_vcnt = 0;
1762 bio->bi_idx = 0;
1763 bio->bi_phys_segments = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 bio->bi_size = 0;
1765 bio->bi_end_io = NULL;
1766 bio->bi_private = NULL;
1767
NeilBrown3e198f72006-01-06 00:20:21 -08001768 rdev = rcu_dereference(conf->mirrors[i].rdev);
1769 if (rdev == NULL ||
1770 test_bit(Faulty, &rdev->flags)) {
NeilBrowne3b97032005-08-04 12:53:34 -07001771 still_degraded = 1;
1772 continue;
NeilBrown3e198f72006-01-06 00:20:21 -08001773 } else if (!test_bit(In_sync, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 bio->bi_rw = WRITE;
1775 bio->bi_end_io = end_sync_write;
1776 write_targets ++;
NeilBrown3e198f72006-01-06 00:20:21 -08001777 } else {
1778 /* may need to read from here */
1779 bio->bi_rw = READ;
1780 bio->bi_end_io = end_sync_read;
1781 if (test_bit(WriteMostly, &rdev->flags)) {
1782 if (wonly < 0)
1783 wonly = i;
1784 } else {
1785 if (disk < 0)
1786 disk = i;
1787 }
1788 read_targets++;
1789 }
1790 atomic_inc(&rdev->nr_pending);
1791 bio->bi_sector = sector_nr + rdev->data_offset;
1792 bio->bi_bdev = rdev->bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 bio->bi_private = r1_bio;
1794 }
NeilBrown3e198f72006-01-06 00:20:21 -08001795 rcu_read_unlock();
1796 if (disk < 0)
1797 disk = wonly;
1798 r1_bio->read_disk = disk;
NeilBrown191ea9b2005-06-21 17:17:23 -07001799
NeilBrown3e198f72006-01-06 00:20:21 -08001800 if (test_bit(MD_RECOVERY_SYNC, &mddev->recovery) && read_targets > 0)
1801 /* extra read targets are also write targets */
1802 write_targets += read_targets-1;
1803
1804 if (write_targets == 0 || read_targets == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 /* There is nowhere to write, so all non-sync
1806 * drives must be failed - so we are finished
1807 */
NeilBrown57afd892005-06-21 17:17:13 -07001808 sector_t rv = max_sector - sector_nr;
1809 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 put_buf(r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 return rv;
1812 }
1813
NeilBrownc6207272008-02-06 01:39:52 -08001814 if (max_sector > mddev->resync_max)
1815 max_sector = mddev->resync_max; /* Don't do IO beyond here */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 nr_sectors = 0;
NeilBrown289e99e2005-06-21 17:17:24 -07001817 sync_blocks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 do {
1819 struct page *page;
1820 int len = PAGE_SIZE;
1821 if (sector_nr + (len>>9) > max_sector)
1822 len = (max_sector - sector_nr) << 9;
1823 if (len == 0)
1824 break;
NeilBrown6a806c52005-07-15 03:56:35 -07001825 if (sync_blocks == 0) {
1826 if (!bitmap_start_sync(mddev->bitmap, sector_nr,
NeilBrowne5de4852005-11-08 21:39:38 -08001827 &sync_blocks, still_degraded) &&
1828 !conf->fullsync &&
1829 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery))
NeilBrown6a806c52005-07-15 03:56:35 -07001830 break;
Eric Sesterhenn9e77c482006-04-01 01:08:49 +02001831 BUG_ON(sync_blocks < (PAGE_SIZE>>9));
NeilBrown7571ae82010-10-07 11:54:46 +11001832 if ((len >> 9) > sync_blocks)
NeilBrown6a806c52005-07-15 03:56:35 -07001833 len = sync_blocks<<9;
NeilBrownab7a30c2005-06-21 17:17:23 -07001834 }
NeilBrown191ea9b2005-06-21 17:17:23 -07001835
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 for (i=0 ; i < conf->raid_disks; i++) {
1837 bio = r1_bio->bios[i];
1838 if (bio->bi_end_io) {
NeilBrownd11c1712006-01-06 00:20:26 -08001839 page = bio->bi_io_vec[bio->bi_vcnt].bv_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 if (bio_add_page(bio, page, len, 0) == 0) {
1841 /* stop here */
NeilBrownd11c1712006-01-06 00:20:26 -08001842 bio->bi_io_vec[bio->bi_vcnt].bv_page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 while (i > 0) {
1844 i--;
1845 bio = r1_bio->bios[i];
NeilBrown6a806c52005-07-15 03:56:35 -07001846 if (bio->bi_end_io==NULL)
1847 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 /* remove last page from this bio */
1849 bio->bi_vcnt--;
1850 bio->bi_size -= len;
1851 bio->bi_flags &= ~(1<< BIO_SEG_VALID);
1852 }
1853 goto bio_full;
1854 }
1855 }
1856 }
1857 nr_sectors += len>>9;
1858 sector_nr += len>>9;
NeilBrown191ea9b2005-06-21 17:17:23 -07001859 sync_blocks -= (len>>9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 } while (r1_bio->bios[disk]->bi_vcnt < RESYNC_PAGES);
1861 bio_full:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 r1_bio->sectors = nr_sectors;
1863
NeilBrownd11c1712006-01-06 00:20:26 -08001864 /* For a user-requested sync, we read all readable devices and do a
1865 * compare
1866 */
1867 if (test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) {
1868 atomic_set(&r1_bio->remaining, read_targets);
1869 for (i=0; i<conf->raid_disks; i++) {
1870 bio = r1_bio->bios[i];
1871 if (bio->bi_end_io == end_sync_read) {
NeilBrownddac7c72006-08-31 21:27:36 -07001872 md_sync_acct(bio->bi_bdev, nr_sectors);
NeilBrownd11c1712006-01-06 00:20:26 -08001873 generic_make_request(bio);
1874 }
1875 }
1876 } else {
1877 atomic_set(&r1_bio->remaining, 1);
1878 bio = r1_bio->bios[r1_bio->read_disk];
NeilBrownddac7c72006-08-31 21:27:36 -07001879 md_sync_acct(bio->bi_bdev, nr_sectors);
NeilBrownd11c1712006-01-06 00:20:26 -08001880 generic_make_request(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
NeilBrownd11c1712006-01-06 00:20:26 -08001882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 return nr_sectors;
1884}
1885
Dan Williams80c3a6c2009-03-17 18:10:40 -07001886static sector_t raid1_size(mddev_t *mddev, sector_t sectors, int raid_disks)
1887{
1888 if (sectors)
1889 return sectors;
1890
1891 return mddev->dev_sectors;
1892}
1893
NeilBrown709ae482009-12-14 12:49:51 +11001894static conf_t *setup_conf(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895{
1896 conf_t *conf;
NeilBrown709ae482009-12-14 12:49:51 +11001897 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 mirror_info_t *disk;
1899 mdk_rdev_t *rdev;
NeilBrown709ae482009-12-14 12:49:51 +11001900 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901
NeilBrown9ffae0c2006-01-06 00:20:32 -08001902 conf = kzalloc(sizeof(conf_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 if (!conf)
NeilBrown709ae482009-12-14 12:49:51 +11001904 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
NeilBrown9ffae0c2006-01-06 00:20:32 -08001906 conf->mirrors = kzalloc(sizeof(struct mirror_info)*mddev->raid_disks,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 GFP_KERNEL);
1908 if (!conf->mirrors)
NeilBrown709ae482009-12-14 12:49:51 +11001909 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910
NeilBrownddaf22a2006-01-06 00:20:19 -08001911 conf->tmppage = alloc_page(GFP_KERNEL);
1912 if (!conf->tmppage)
NeilBrown709ae482009-12-14 12:49:51 +11001913 goto abort;
NeilBrownddaf22a2006-01-06 00:20:19 -08001914
NeilBrown709ae482009-12-14 12:49:51 +11001915 conf->poolinfo = kzalloc(sizeof(*conf->poolinfo), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 if (!conf->poolinfo)
NeilBrown709ae482009-12-14 12:49:51 +11001917 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 conf->poolinfo->raid_disks = mddev->raid_disks;
1919 conf->r1bio_pool = mempool_create(NR_RAID1_BIOS, r1bio_pool_alloc,
1920 r1bio_pool_free,
1921 conf->poolinfo);
1922 if (!conf->r1bio_pool)
NeilBrown709ae482009-12-14 12:49:51 +11001923 goto abort;
1924
NeilBrowned9bfdf2009-10-16 15:55:44 +11001925 conf->poolinfo->mddev = mddev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926
Neil Browne7e72bf2008-05-14 16:05:54 -07001927 spin_lock_init(&conf->device_lock);
Cheng Renquan159ec1f2009-01-09 08:31:08 +11001928 list_for_each_entry(rdev, &mddev->disks, same_set) {
NeilBrown709ae482009-12-14 12:49:51 +11001929 int disk_idx = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 if (disk_idx >= mddev->raid_disks
1931 || disk_idx < 0)
1932 continue;
1933 disk = conf->mirrors + disk_idx;
1934
1935 disk->rdev = rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
1937 disk->head_position = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 }
1939 conf->raid_disks = mddev->raid_disks;
1940 conf->mddev = mddev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 INIT_LIST_HEAD(&conf->retry_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
1943 spin_lock_init(&conf->resync_lock);
NeilBrown17999be2006-01-06 00:20:12 -08001944 init_waitqueue_head(&conf->wait_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
NeilBrown191ea9b2005-06-21 17:17:23 -07001946 bio_list_init(&conf->pending_bio_list);
NeilBrown191ea9b2005-06-21 17:17:23 -07001947
NeilBrown709ae482009-12-14 12:49:51 +11001948 conf->last_used = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 for (i = 0; i < conf->raid_disks; i++) {
1950
1951 disk = conf->mirrors + i;
1952
NeilBrown5fd6c1d2006-06-26 00:27:40 -07001953 if (!disk->rdev ||
1954 !test_bit(In_sync, &disk->rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 disk->head_position = 0;
NeilBrown918f0232007-08-22 14:01:52 -07001956 if (disk->rdev)
1957 conf->fullsync = 1;
NeilBrown709ae482009-12-14 12:49:51 +11001958 } else if (conf->last_used < 0)
1959 /*
1960 * The first working device is used as a
1961 * starting point to read balancing.
1962 */
1963 conf->last_used = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 }
NeilBrown709ae482009-12-14 12:49:51 +11001965
1966 err = -EIO;
1967 if (conf->last_used < 0) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001968 printk(KERN_ERR "md/raid1:%s: no operational mirrors\n",
NeilBrown709ae482009-12-14 12:49:51 +11001969 mdname(mddev));
1970 goto abort;
NeilBrown11ce99e2006-10-03 01:15:52 -07001971 }
NeilBrown709ae482009-12-14 12:49:51 +11001972 err = -ENOMEM;
1973 conf->thread = md_register_thread(raid1d, mddev, NULL);
1974 if (!conf->thread) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001975 printk(KERN_ERR
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001976 "md/raid1:%s: couldn't allocate thread\n",
NeilBrown191ea9b2005-06-21 17:17:23 -07001977 mdname(mddev));
NeilBrown709ae482009-12-14 12:49:51 +11001978 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 }
NeilBrown191ea9b2005-06-21 17:17:23 -07001980
NeilBrown709ae482009-12-14 12:49:51 +11001981 return conf;
1982
1983 abort:
1984 if (conf) {
1985 if (conf->r1bio_pool)
1986 mempool_destroy(conf->r1bio_pool);
1987 kfree(conf->mirrors);
1988 safe_put_page(conf->tmppage);
1989 kfree(conf->poolinfo);
1990 kfree(conf);
1991 }
1992 return ERR_PTR(err);
1993}
1994
1995static int run(mddev_t *mddev)
1996{
1997 conf_t *conf;
1998 int i;
1999 mdk_rdev_t *rdev;
2000
2001 if (mddev->level != 1) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002002 printk(KERN_ERR "md/raid1:%s: raid level not set to mirroring (%d)\n",
NeilBrown709ae482009-12-14 12:49:51 +11002003 mdname(mddev), mddev->level);
2004 return -EIO;
2005 }
2006 if (mddev->reshape_position != MaxSector) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002007 printk(KERN_ERR "md/raid1:%s: reshape_position set but not supported\n",
NeilBrown709ae482009-12-14 12:49:51 +11002008 mdname(mddev));
2009 return -EIO;
2010 }
2011 /*
2012 * copy the already verified devices into our private RAID1
2013 * bookkeeping area. [whatever we allocate in run(),
2014 * should be freed in stop()]
2015 */
2016 if (mddev->private == NULL)
2017 conf = setup_conf(mddev);
2018 else
2019 conf = mddev->private;
2020
2021 if (IS_ERR(conf))
2022 return PTR_ERR(conf);
2023
2024 mddev->queue->queue_lock = &conf->device_lock;
2025 list_for_each_entry(rdev, &mddev->disks, same_set) {
2026 disk_stack_limits(mddev->gendisk, rdev->bdev,
2027 rdev->data_offset << 9);
2028 /* as we don't honour merge_bvec_fn, we must never risk
NeilBrown627a2d32010-03-08 16:44:38 +11002029 * violating it, so limit ->max_segments to 1 lying within
2030 * a single page, as a one page request is never in violation.
NeilBrown709ae482009-12-14 12:49:51 +11002031 */
NeilBrown627a2d32010-03-08 16:44:38 +11002032 if (rdev->bdev->bd_disk->queue->merge_bvec_fn) {
2033 blk_queue_max_segments(mddev->queue, 1);
2034 blk_queue_segment_boundary(mddev->queue,
2035 PAGE_CACHE_SIZE - 1);
2036 }
NeilBrown709ae482009-12-14 12:49:51 +11002037 }
2038
2039 mddev->degraded = 0;
2040 for (i=0; i < conf->raid_disks; i++)
2041 if (conf->mirrors[i].rdev == NULL ||
2042 !test_bit(In_sync, &conf->mirrors[i].rdev->flags) ||
2043 test_bit(Faulty, &conf->mirrors[i].rdev->flags))
2044 mddev->degraded++;
2045
2046 if (conf->raid_disks - mddev->degraded == 1)
2047 mddev->recovery_cp = MaxSector;
2048
Andre Noll8c6ac862009-06-18 08:48:06 +10002049 if (mddev->recovery_cp != MaxSector)
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002050 printk(KERN_NOTICE "md/raid1:%s: not clean"
Andre Noll8c6ac862009-06-18 08:48:06 +10002051 " -- starting background reconstruction\n",
2052 mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 printk(KERN_INFO
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002054 "md/raid1:%s: active with %d out of %d mirrors\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 mdname(mddev), mddev->raid_disks - mddev->degraded,
2056 mddev->raid_disks);
NeilBrown709ae482009-12-14 12:49:51 +11002057
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 /*
2059 * Ok, everything is just fine now
2060 */
NeilBrown709ae482009-12-14 12:49:51 +11002061 mddev->thread = conf->thread;
2062 conf->thread = NULL;
2063 mddev->private = conf;
2064
Dan Williams1f403622009-03-31 14:59:03 +11002065 md_set_array_sectors(mddev, raid1_size(mddev, 0, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066
NeilBrown7a5febe2005-05-16 21:53:16 -07002067 mddev->queue->unplug_fn = raid1_unplug;
NeilBrown0d129222006-10-03 01:15:54 -07002068 mddev->queue->backing_dev_info.congested_fn = raid1_congested;
2069 mddev->queue->backing_dev_info.congested_data = mddev;
Andre Nollac5e7112009-08-03 10:59:47 +10002070 md_integrity_register(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072}
2073
2074static int stop(mddev_t *mddev)
2075{
NeilBrown070ec552009-06-16 16:54:21 +10002076 conf_t *conf = mddev->private;
NeilBrown4b6d2872005-09-09 16:23:47 -07002077 struct bitmap *bitmap = mddev->bitmap;
NeilBrown4b6d2872005-09-09 16:23:47 -07002078
2079 /* wait for behind writes to complete */
NeilBrowne5551902010-03-31 11:21:44 +11002080 if (bitmap && atomic_read(&bitmap->behind_writes) > 0) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002081 printk(KERN_INFO "md/raid1:%s: behind writes in progress - waiting to stop.\n",
2082 mdname(mddev));
NeilBrown4b6d2872005-09-09 16:23:47 -07002083 /* need to kick something here to make sure I/O goes? */
NeilBrowne5551902010-03-31 11:21:44 +11002084 wait_event(bitmap->behind_wait,
2085 atomic_read(&bitmap->behind_writes) == 0);
NeilBrown4b6d2872005-09-09 16:23:47 -07002086 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
NeilBrown409c57f2009-03-31 14:39:39 +11002088 raise_barrier(conf);
2089 lower_barrier(conf);
2090
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 md_unregister_thread(mddev->thread);
2092 mddev->thread = NULL;
2093 blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/
2094 if (conf->r1bio_pool)
2095 mempool_destroy(conf->r1bio_pool);
Jesper Juhl990a8ba2005-06-21 17:17:30 -07002096 kfree(conf->mirrors);
2097 kfree(conf->poolinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 kfree(conf);
2099 mddev->private = NULL;
2100 return 0;
2101}
2102
2103static int raid1_resize(mddev_t *mddev, sector_t sectors)
2104{
2105 /* no resync is happening, and there is enough space
2106 * on all devices, so we can resize.
2107 * We need to make sure resync covers any new space.
2108 * If the array is shrinking we should possibly wait until
2109 * any io in the removed space completes, but it hardly seems
2110 * worth it.
2111 */
Dan Williams1f403622009-03-31 14:59:03 +11002112 md_set_array_sectors(mddev, raid1_size(mddev, sectors, 0));
Dan Williamsb522adc2009-03-31 15:00:31 +11002113 if (mddev->array_sectors > raid1_size(mddev, sectors, 0))
2114 return -EINVAL;
Andre Nollf233ea52008-07-21 17:05:22 +10002115 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10002116 revalidate_disk(mddev->gendisk);
Dan Williamsb522adc2009-03-31 15:00:31 +11002117 if (sectors > mddev->dev_sectors &&
Andre Nollf233ea52008-07-21 17:05:22 +10002118 mddev->recovery_cp == MaxSector) {
Andre Noll58c0fed2009-03-31 14:33:13 +11002119 mddev->recovery_cp = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
2121 }
Dan Williamsb522adc2009-03-31 15:00:31 +11002122 mddev->dev_sectors = sectors;
NeilBrown4b5c7ae2005-07-27 11:43:28 -07002123 mddev->resync_max_sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 return 0;
2125}
2126
NeilBrown63c70c42006-03-27 01:18:13 -08002127static int raid1_reshape(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128{
2129 /* We need to:
2130 * 1/ resize the r1bio_pool
2131 * 2/ resize conf->mirrors
2132 *
2133 * We allocate a new r1bio_pool if we can.
2134 * Then raise a device barrier and wait until all IO stops.
2135 * Then resize conf->mirrors and swap in the new r1bio pool.
NeilBrown6ea9c072005-06-21 17:17:09 -07002136 *
2137 * At the same time, we "pack" the devices so that all the missing
2138 * devices have the higher raid_disk numbers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 */
2140 mempool_t *newpool, *oldpool;
2141 struct pool_info *newpoolinfo;
2142 mirror_info_t *newmirrors;
NeilBrown070ec552009-06-16 16:54:21 +10002143 conf_t *conf = mddev->private;
NeilBrown63c70c42006-03-27 01:18:13 -08002144 int cnt, raid_disks;
NeilBrownc04be0a2006-10-03 01:15:53 -07002145 unsigned long flags;
Dan Williamsb5470dc2008-06-27 21:44:04 -07002146 int d, d2, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147
NeilBrown63c70c42006-03-27 01:18:13 -08002148 /* Cannot change chunk_size, layout, or level */
Andre Noll664e7c42009-06-18 08:45:27 +10002149 if (mddev->chunk_sectors != mddev->new_chunk_sectors ||
NeilBrown63c70c42006-03-27 01:18:13 -08002150 mddev->layout != mddev->new_layout ||
2151 mddev->level != mddev->new_level) {
Andre Noll664e7c42009-06-18 08:45:27 +10002152 mddev->new_chunk_sectors = mddev->chunk_sectors;
NeilBrown63c70c42006-03-27 01:18:13 -08002153 mddev->new_layout = mddev->layout;
2154 mddev->new_level = mddev->level;
2155 return -EINVAL;
2156 }
2157
Dan Williamsb5470dc2008-06-27 21:44:04 -07002158 err = md_allow_write(mddev);
2159 if (err)
2160 return err;
NeilBrown2a2275d2007-01-26 00:57:11 -08002161
NeilBrown63c70c42006-03-27 01:18:13 -08002162 raid_disks = mddev->raid_disks + mddev->delta_disks;
2163
NeilBrown6ea9c072005-06-21 17:17:09 -07002164 if (raid_disks < conf->raid_disks) {
2165 cnt=0;
2166 for (d= 0; d < conf->raid_disks; d++)
2167 if (conf->mirrors[d].rdev)
2168 cnt++;
2169 if (cnt > raid_disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 return -EBUSY;
NeilBrown6ea9c072005-06-21 17:17:09 -07002171 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
2173 newpoolinfo = kmalloc(sizeof(*newpoolinfo), GFP_KERNEL);
2174 if (!newpoolinfo)
2175 return -ENOMEM;
2176 newpoolinfo->mddev = mddev;
2177 newpoolinfo->raid_disks = raid_disks;
2178
2179 newpool = mempool_create(NR_RAID1_BIOS, r1bio_pool_alloc,
2180 r1bio_pool_free, newpoolinfo);
2181 if (!newpool) {
2182 kfree(newpoolinfo);
2183 return -ENOMEM;
2184 }
NeilBrown9ffae0c2006-01-06 00:20:32 -08002185 newmirrors = kzalloc(sizeof(struct mirror_info) * raid_disks, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 if (!newmirrors) {
2187 kfree(newpoolinfo);
2188 mempool_destroy(newpool);
2189 return -ENOMEM;
2190 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191
NeilBrown17999be2006-01-06 00:20:12 -08002192 raise_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193
2194 /* ok, everything is stopped */
2195 oldpool = conf->r1bio_pool;
2196 conf->r1bio_pool = newpool;
NeilBrown6ea9c072005-06-21 17:17:09 -07002197
NeilBrowna88aa782007-08-22 14:01:53 -07002198 for (d = d2 = 0; d < conf->raid_disks; d++) {
2199 mdk_rdev_t *rdev = conf->mirrors[d].rdev;
2200 if (rdev && rdev->raid_disk != d2) {
2201 char nm[20];
2202 sprintf(nm, "rd%d", rdev->raid_disk);
2203 sysfs_remove_link(&mddev->kobj, nm);
2204 rdev->raid_disk = d2;
2205 sprintf(nm, "rd%d", rdev->raid_disk);
2206 sysfs_remove_link(&mddev->kobj, nm);
2207 if (sysfs_create_link(&mddev->kobj,
2208 &rdev->kobj, nm))
2209 printk(KERN_WARNING
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002210 "md/raid1:%s: cannot register "
2211 "%s\n",
2212 mdname(mddev), nm);
NeilBrown6ea9c072005-06-21 17:17:09 -07002213 }
NeilBrowna88aa782007-08-22 14:01:53 -07002214 if (rdev)
2215 newmirrors[d2++].rdev = rdev;
2216 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 kfree(conf->mirrors);
2218 conf->mirrors = newmirrors;
2219 kfree(conf->poolinfo);
2220 conf->poolinfo = newpoolinfo;
2221
NeilBrownc04be0a2006-10-03 01:15:53 -07002222 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 mddev->degraded += (raid_disks - conf->raid_disks);
NeilBrownc04be0a2006-10-03 01:15:53 -07002224 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 conf->raid_disks = mddev->raid_disks = raid_disks;
NeilBrown63c70c42006-03-27 01:18:13 -08002226 mddev->delta_disks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227
NeilBrown6ea9c072005-06-21 17:17:09 -07002228 conf->last_used = 0; /* just make sure it is in-range */
NeilBrown17999be2006-01-06 00:20:12 -08002229 lower_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230
2231 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
2232 md_wakeup_thread(mddev->thread);
2233
2234 mempool_destroy(oldpool);
2235 return 0;
2236}
2237
NeilBrown500af872005-09-09 16:23:58 -07002238static void raid1_quiesce(mddev_t *mddev, int state)
NeilBrown36fa3062005-09-09 16:23:45 -07002239{
NeilBrown070ec552009-06-16 16:54:21 +10002240 conf_t *conf = mddev->private;
NeilBrown36fa3062005-09-09 16:23:45 -07002241
2242 switch(state) {
NeilBrown6eef4b22009-12-14 12:49:51 +11002243 case 2: /* wake for suspend */
2244 wake_up(&conf->wait_barrier);
2245 break;
NeilBrown9e6603d2005-09-09 16:23:48 -07002246 case 1:
NeilBrown17999be2006-01-06 00:20:12 -08002247 raise_barrier(conf);
NeilBrown36fa3062005-09-09 16:23:45 -07002248 break;
NeilBrown9e6603d2005-09-09 16:23:48 -07002249 case 0:
NeilBrown17999be2006-01-06 00:20:12 -08002250 lower_barrier(conf);
NeilBrown36fa3062005-09-09 16:23:45 -07002251 break;
2252 }
NeilBrown36fa3062005-09-09 16:23:45 -07002253}
2254
NeilBrown709ae482009-12-14 12:49:51 +11002255static void *raid1_takeover(mddev_t *mddev)
2256{
2257 /* raid1 can take over:
2258 * raid5 with 2 devices, any layout or chunk size
2259 */
2260 if (mddev->level == 5 && mddev->raid_disks == 2) {
2261 conf_t *conf;
2262 mddev->new_level = 1;
2263 mddev->new_layout = 0;
2264 mddev->new_chunk_sectors = 0;
2265 conf = setup_conf(mddev);
2266 if (!IS_ERR(conf))
2267 conf->barrier = 1;
2268 return conf;
2269 }
2270 return ERR_PTR(-EINVAL);
2271}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272
NeilBrown2604b702006-01-06 00:20:36 -08002273static struct mdk_personality raid1_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274{
2275 .name = "raid1",
NeilBrown2604b702006-01-06 00:20:36 -08002276 .level = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 .owner = THIS_MODULE,
2278 .make_request = make_request,
2279 .run = run,
2280 .stop = stop,
2281 .status = status,
2282 .error_handler = error,
2283 .hot_add_disk = raid1_add_disk,
2284 .hot_remove_disk= raid1_remove_disk,
2285 .spare_active = raid1_spare_active,
2286 .sync_request = sync_request,
2287 .resize = raid1_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07002288 .size = raid1_size,
NeilBrown63c70c42006-03-27 01:18:13 -08002289 .check_reshape = raid1_reshape,
NeilBrown36fa3062005-09-09 16:23:45 -07002290 .quiesce = raid1_quiesce,
NeilBrown709ae482009-12-14 12:49:51 +11002291 .takeover = raid1_takeover,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292};
2293
2294static int __init raid_init(void)
2295{
NeilBrown2604b702006-01-06 00:20:36 -08002296 return register_md_personality(&raid1_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297}
2298
2299static void raid_exit(void)
2300{
NeilBrown2604b702006-01-06 00:20:36 -08002301 unregister_md_personality(&raid1_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302}
2303
2304module_init(raid_init);
2305module_exit(raid_exit);
2306MODULE_LICENSE("GPL");
NeilBrown0efb9e62009-12-14 12:49:58 +11002307MODULE_DESCRIPTION("RAID1 (mirroring) personality for MD");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308MODULE_ALIAS("md-personality-3"); /* RAID1 */
NeilBrownd9d166c2006-01-06 00:20:51 -08002309MODULE_ALIAS("md-raid1");
NeilBrown2604b702006-01-06 00:20:36 -08002310MODULE_ALIAS("md-level-1");