blob: 3362cfc8073c70e7bca2a290aa5d91e842ebc2de [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-- ; ) {
103 bio = bio_alloc(gfp_flags, RESYNC_PAGES);
104 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 int new_disk = conf->last_used, disk = new_disk;
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700423 int wonly_disk = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 const int sectors = r1_bio->sectors;
425 sector_t new_distance, current_distance;
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700426 mdk_rdev_t *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 rcu_read_lock();
429 /*
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700430 * Check if we can balance. We can balance on the whole
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 * device if no resync is going on, or below the resync window.
432 * We take the first readable disk when above the resync window.
433 */
434 retry:
435 if (conf->mddev->recovery_cp < MaxSector &&
436 (this_sector + sectors >= conf->next_resync)) {
NeilBrownaf3a2cd2010-05-08 08:20:17 +1000437 /* Choose the first operational device, for consistancy */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 new_disk = 0;
439
Suzanne Woodd6065f72005-11-08 21:39:27 -0800440 for (rdev = rcu_dereference(conf->mirrors[new_disk].rdev);
NeilBrowncf30a472006-01-06 00:20:23 -0800441 r1_bio->bios[new_disk] == IO_BLOCKED ||
NeilBrownb2d444d2005-11-08 21:39:31 -0800442 !rdev || !test_bit(In_sync, &rdev->flags)
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700443 || test_bit(WriteMostly, &rdev->flags);
Suzanne Woodd6065f72005-11-08 21:39:27 -0800444 rdev = rcu_dereference(conf->mirrors[++new_disk].rdev)) {
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700445
NeilBrowncf30a472006-01-06 00:20:23 -0800446 if (rdev && test_bit(In_sync, &rdev->flags) &&
447 r1_bio->bios[new_disk] != IO_BLOCKED)
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700448 wonly_disk = new_disk;
449
450 if (new_disk == conf->raid_disks - 1) {
451 new_disk = wonly_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 break;
453 }
454 }
455 goto rb_out;
456 }
457
458
459 /* make sure the disk is operational */
Suzanne Woodd6065f72005-11-08 21:39:27 -0800460 for (rdev = rcu_dereference(conf->mirrors[new_disk].rdev);
NeilBrowncf30a472006-01-06 00:20:23 -0800461 r1_bio->bios[new_disk] == IO_BLOCKED ||
NeilBrownb2d444d2005-11-08 21:39:31 -0800462 !rdev || !test_bit(In_sync, &rdev->flags) ||
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700463 test_bit(WriteMostly, &rdev->flags);
Suzanne Woodd6065f72005-11-08 21:39:27 -0800464 rdev = rcu_dereference(conf->mirrors[new_disk].rdev)) {
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700465
NeilBrowncf30a472006-01-06 00:20:23 -0800466 if (rdev && test_bit(In_sync, &rdev->flags) &&
467 r1_bio->bios[new_disk] != IO_BLOCKED)
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700468 wonly_disk = new_disk;
469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 if (new_disk <= 0)
471 new_disk = conf->raid_disks;
472 new_disk--;
473 if (new_disk == disk) {
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700474 new_disk = wonly_disk;
475 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 }
477 }
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700478
479 if (new_disk < 0)
480 goto rb_out;
481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 disk = new_disk;
483 /* now disk == new_disk == starting point for search */
484
485 /*
486 * Don't change to another disk for sequential reads:
487 */
488 if (conf->next_seq_sect == this_sector)
489 goto rb_out;
490 if (this_sector == conf->mirrors[new_disk].head_position)
491 goto rb_out;
492
493 current_distance = abs(this_sector - conf->mirrors[disk].head_position);
494
495 /* Find the disk whose head is closest */
496
497 do {
498 if (disk <= 0)
499 disk = conf->raid_disks;
500 disk--;
501
Suzanne Woodd6065f72005-11-08 21:39:27 -0800502 rdev = rcu_dereference(conf->mirrors[disk].rdev);
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700503
NeilBrowncf30a472006-01-06 00:20:23 -0800504 if (!rdev || r1_bio->bios[disk] == IO_BLOCKED ||
NeilBrownb2d444d2005-11-08 21:39:31 -0800505 !test_bit(In_sync, &rdev->flags) ||
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700506 test_bit(WriteMostly, &rdev->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 continue;
508
509 if (!atomic_read(&rdev->nr_pending)) {
510 new_disk = disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 break;
512 }
513 new_distance = abs(this_sector - conf->mirrors[disk].head_position);
514 if (new_distance < current_distance) {
515 current_distance = new_distance;
516 new_disk = disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 }
518 } while (disk != conf->last_used);
519
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700520 rb_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
522
523 if (new_disk >= 0) {
Suzanne Woodd6065f72005-11-08 21:39:27 -0800524 rdev = rcu_dereference(conf->mirrors[new_disk].rdev);
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700525 if (!rdev)
526 goto retry;
527 atomic_inc(&rdev->nr_pending);
NeilBrownb2d444d2005-11-08 21:39:31 -0800528 if (!test_bit(In_sync, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 /* cannot risk returning a device that failed
530 * before we inc'ed nr_pending
531 */
NeilBrown03c902e2006-01-06 00:20:46 -0800532 rdev_dec_pending(rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 goto retry;
534 }
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700535 conf->next_seq_sect = this_sector + sectors;
536 conf->last_used = new_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 }
538 rcu_read_unlock();
539
540 return new_disk;
541}
542
543static void unplug_slaves(mddev_t *mddev)
544{
NeilBrown070ec552009-06-16 16:54:21 +1000545 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 int i;
547
548 rcu_read_lock();
549 for (i=0; i<mddev->raid_disks; i++) {
Suzanne Woodd6065f72005-11-08 21:39:27 -0800550 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
NeilBrownb2d444d2005-11-08 21:39:31 -0800551 if (rdev && !test_bit(Faulty, &rdev->flags) && atomic_read(&rdev->nr_pending)) {
Jens Axboe165125e2007-07-24 09:28:11 +0200552 struct request_queue *r_queue = bdev_get_queue(rdev->bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
554 atomic_inc(&rdev->nr_pending);
555 rcu_read_unlock();
556
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500557 blk_unplug(r_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559 rdev_dec_pending(rdev, mddev);
560 rcu_read_lock();
561 }
562 }
563 rcu_read_unlock();
564}
565
Jens Axboe165125e2007-07-24 09:28:11 +0200566static void raid1_unplug(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
NeilBrown191ea9b2005-06-21 17:17:23 -0700568 mddev_t *mddev = q->queuedata;
569
570 unplug_slaves(mddev);
571 md_wakeup_thread(mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572}
573
NeilBrown0d129222006-10-03 01:15:54 -0700574static int raid1_congested(void *data, int bits)
575{
576 mddev_t *mddev = data;
NeilBrown070ec552009-06-16 16:54:21 +1000577 conf_t *conf = mddev->private;
NeilBrown0d129222006-10-03 01:15:54 -0700578 int i, ret = 0;
579
NeilBrown3fa841d2009-09-23 18:10:29 +1000580 if (mddev_congested(mddev, bits))
581 return 1;
582
NeilBrown0d129222006-10-03 01:15:54 -0700583 rcu_read_lock();
584 for (i = 0; i < mddev->raid_disks; i++) {
585 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
586 if (rdev && !test_bit(Faulty, &rdev->flags)) {
Jens Axboe165125e2007-07-24 09:28:11 +0200587 struct request_queue *q = bdev_get_queue(rdev->bdev);
NeilBrown0d129222006-10-03 01:15:54 -0700588
589 /* Note the '|| 1' - when read_balance prefers
590 * non-congested targets, it can be removed
591 */
Alexander Beregalov91a9e992009-04-07 01:35:56 +0400592 if ((bits & (1<<BDI_async_congested)) || 1)
NeilBrown0d129222006-10-03 01:15:54 -0700593 ret |= bdi_congested(&q->backing_dev_info, bits);
594 else
595 ret &= bdi_congested(&q->backing_dev_info, bits);
596 }
597 }
598 rcu_read_unlock();
599 return ret;
600}
601
602
NeilBrowna35e63e2008-03-04 14:29:29 -0800603static int flush_pending_writes(conf_t *conf)
604{
605 /* Any writes that have been queued but are awaiting
606 * bitmap updates get flushed here.
607 * We return 1 if any requests were actually submitted.
608 */
609 int rv = 0;
610
611 spin_lock_irq(&conf->device_lock);
612
613 if (conf->pending_bio_list.head) {
614 struct bio *bio;
615 bio = bio_list_get(&conf->pending_bio_list);
616 blk_remove_plug(conf->mddev->queue);
617 spin_unlock_irq(&conf->device_lock);
618 /* flush any pending bitmap writes to
619 * disk before proceeding w/ I/O */
620 bitmap_unplug(conf->mddev->bitmap);
621
622 while (bio) { /* submit pending writes */
623 struct bio *next = bio->bi_next;
624 bio->bi_next = NULL;
625 generic_make_request(bio);
626 bio = next;
627 }
628 rv = 1;
629 } else
630 spin_unlock_irq(&conf->device_lock);
631 return rv;
632}
633
NeilBrown17999be2006-01-06 00:20:12 -0800634/* Barriers....
635 * Sometimes we need to suspend IO while we do something else,
636 * either some resync/recovery, or reconfigure the array.
637 * To do this we raise a 'barrier'.
638 * The 'barrier' is a counter that can be raised multiple times
639 * to count how many activities are happening which preclude
640 * normal IO.
641 * We can only raise the barrier if there is no pending IO.
642 * i.e. if nr_pending == 0.
643 * We choose only to raise the barrier if no-one is waiting for the
644 * barrier to go down. This means that as soon as an IO request
645 * is ready, no other operations which require a barrier will start
646 * until the IO request has had a chance.
647 *
648 * So: regular IO calls 'wait_barrier'. When that returns there
649 * is no backgroup IO happening, It must arrange to call
650 * allow_barrier when it has finished its IO.
651 * backgroup IO calls must call raise_barrier. Once that returns
652 * there is no normal IO happeing. It must arrange to call
653 * lower_barrier when the particular background IO completes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 */
655#define RESYNC_DEPTH 32
656
NeilBrown17999be2006-01-06 00:20:12 -0800657static void raise_barrier(conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658{
659 spin_lock_irq(&conf->resync_lock);
NeilBrown17999be2006-01-06 00:20:12 -0800660
661 /* Wait until no block IO is waiting */
662 wait_event_lock_irq(conf->wait_barrier, !conf->nr_waiting,
663 conf->resync_lock,
664 raid1_unplug(conf->mddev->queue));
665
666 /* block any new IO from starting */
667 conf->barrier++;
668
669 /* No wait for all pending IO to complete */
670 wait_event_lock_irq(conf->wait_barrier,
671 !conf->nr_pending && conf->barrier < RESYNC_DEPTH,
672 conf->resync_lock,
673 raid1_unplug(conf->mddev->queue));
674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 spin_unlock_irq(&conf->resync_lock);
676}
677
NeilBrown17999be2006-01-06 00:20:12 -0800678static void lower_barrier(conf_t *conf)
679{
680 unsigned long flags;
NeilBrown709ae482009-12-14 12:49:51 +1100681 BUG_ON(conf->barrier <= 0);
NeilBrown17999be2006-01-06 00:20:12 -0800682 spin_lock_irqsave(&conf->resync_lock, flags);
683 conf->barrier--;
684 spin_unlock_irqrestore(&conf->resync_lock, flags);
685 wake_up(&conf->wait_barrier);
686}
687
688static void wait_barrier(conf_t *conf)
689{
690 spin_lock_irq(&conf->resync_lock);
691 if (conf->barrier) {
692 conf->nr_waiting++;
693 wait_event_lock_irq(conf->wait_barrier, !conf->barrier,
694 conf->resync_lock,
695 raid1_unplug(conf->mddev->queue));
696 conf->nr_waiting--;
697 }
698 conf->nr_pending++;
699 spin_unlock_irq(&conf->resync_lock);
700}
701
702static void allow_barrier(conf_t *conf)
703{
704 unsigned long flags;
705 spin_lock_irqsave(&conf->resync_lock, flags);
706 conf->nr_pending--;
707 spin_unlock_irqrestore(&conf->resync_lock, flags);
708 wake_up(&conf->wait_barrier);
709}
710
NeilBrownddaf22a2006-01-06 00:20:19 -0800711static void freeze_array(conf_t *conf)
712{
713 /* stop syncio and normal IO and wait for everything to
714 * go quite.
715 * We increment barrier and nr_waiting, and then
NeilBrown1c830532008-03-04 14:29:35 -0800716 * wait until nr_pending match nr_queued+1
717 * This is called in the context of one normal IO request
718 * that has failed. Thus any sync request that might be pending
719 * will be blocked by nr_pending, and we need to wait for
720 * pending IO requests to complete or be queued for re-try.
721 * Thus the number queued (nr_queued) plus this request (1)
722 * must match the number of pending IOs (nr_pending) before
723 * we continue.
NeilBrownddaf22a2006-01-06 00:20:19 -0800724 */
725 spin_lock_irq(&conf->resync_lock);
726 conf->barrier++;
727 conf->nr_waiting++;
728 wait_event_lock_irq(conf->wait_barrier,
NeilBrown1c830532008-03-04 14:29:35 -0800729 conf->nr_pending == conf->nr_queued+1,
NeilBrownddaf22a2006-01-06 00:20:19 -0800730 conf->resync_lock,
NeilBrowna35e63e2008-03-04 14:29:29 -0800731 ({ flush_pending_writes(conf);
732 raid1_unplug(conf->mddev->queue); }));
NeilBrownddaf22a2006-01-06 00:20:19 -0800733 spin_unlock_irq(&conf->resync_lock);
734}
735static void unfreeze_array(conf_t *conf)
736{
737 /* reverse the effect of the freeze */
738 spin_lock_irq(&conf->resync_lock);
739 conf->barrier--;
740 conf->nr_waiting--;
741 wake_up(&conf->wait_barrier);
742 spin_unlock_irq(&conf->resync_lock);
743}
744
NeilBrown17999be2006-01-06 00:20:12 -0800745
NeilBrown4e780642010-10-19 12:54:01 +1100746/* duplicate the data pages for behind I/O
747 * We return a list of bio_vec rather than just page pointers
748 * as it makes freeing easier
749 */
750static struct bio_vec *alloc_behind_pages(struct bio *bio)
NeilBrown4b6d2872005-09-09 16:23:47 -0700751{
752 int i;
753 struct bio_vec *bvec;
NeilBrown4e780642010-10-19 12:54:01 +1100754 struct bio_vec *pages = kzalloc(bio->bi_vcnt * sizeof(struct bio_vec),
NeilBrown4b6d2872005-09-09 16:23:47 -0700755 GFP_NOIO);
756 if (unlikely(!pages))
757 goto do_sync_io;
758
NeilBrown4b6d2872005-09-09 16:23:47 -0700759 bio_for_each_segment(bvec, bio, i) {
NeilBrown4e780642010-10-19 12:54:01 +1100760 pages[i].bv_page = alloc_page(GFP_NOIO);
761 if (unlikely(!pages[i].bv_page))
NeilBrown4b6d2872005-09-09 16:23:47 -0700762 goto do_sync_io;
NeilBrown4e780642010-10-19 12:54:01 +1100763 memcpy(kmap(pages[i].bv_page) + bvec->bv_offset,
NeilBrown4b6d2872005-09-09 16:23:47 -0700764 kmap(bvec->bv_page) + bvec->bv_offset, bvec->bv_len);
NeilBrown4e780642010-10-19 12:54:01 +1100765 kunmap(pages[i].bv_page);
NeilBrown4b6d2872005-09-09 16:23:47 -0700766 kunmap(bvec->bv_page);
767 }
768
769 return pages;
770
771do_sync_io:
772 if (pages)
NeilBrown4e780642010-10-19 12:54:01 +1100773 for (i = 0; i < bio->bi_vcnt && pages[i].bv_page; i++)
774 put_page(pages[i].bv_page);
NeilBrown4b6d2872005-09-09 16:23:47 -0700775 kfree(pages);
776 PRINTK("%dB behind alloc failed, doing sync I/O\n", bio->bi_size);
777 return NULL;
778}
779
NeilBrown21a52c62010-04-01 15:02:13 +1100780static int make_request(mddev_t *mddev, struct bio * bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781{
NeilBrown070ec552009-06-16 16:54:21 +1000782 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 mirror_info_t *mirror;
784 r1bio_t *r1_bio;
785 struct bio *read_bio;
NeilBrown191ea9b2005-06-21 17:17:23 -0700786 int i, targets = 0, disks;
NeilBrown84255d12008-05-23 13:04:32 -0700787 struct bitmap *bitmap;
NeilBrown191ea9b2005-06-21 17:17:23 -0700788 unsigned long flags;
NeilBrown4e780642010-10-19 12:54:01 +1100789 struct bio_vec *behind_pages = NULL;
Jens Axboea3623572005-11-01 09:26:16 +0100790 const int rw = bio_data_dir(bio);
NeilBrown2c7d46e2010-08-18 16:16:05 +1000791 const unsigned long do_sync = (bio->bi_rw & REQ_SYNC);
Tejun Heoe9c74692010-09-03 11:56:18 +0200792 const unsigned long do_flush_fua = (bio->bi_rw & (REQ_FLUSH | REQ_FUA));
Dan Williams6bfe0b42008-04-30 00:52:32 -0700793 mdk_rdev_t *blocked_rdev;
NeilBrown191ea9b2005-06-21 17:17:23 -0700794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 /*
796 * Register the new request and wait if the reconstruction
797 * thread has put up a bar for new requests.
798 * Continue immediately if no resync is active currently.
799 */
NeilBrown62de6082006-05-01 12:15:47 -0700800
NeilBrown3d310eb2005-06-21 17:17:26 -0700801 md_write_start(mddev, bio); /* wait on superblock update early */
802
NeilBrown6eef4b22009-12-14 12:49:51 +1100803 if (bio_data_dir(bio) == WRITE &&
804 bio->bi_sector + bio->bi_size/512 > mddev->suspend_lo &&
805 bio->bi_sector < mddev->suspend_hi) {
806 /* As the suspend_* range is controlled by
807 * userspace, we want an interruptible
808 * wait.
809 */
810 DEFINE_WAIT(w);
811 for (;;) {
812 flush_signals(current);
813 prepare_to_wait(&conf->wait_barrier,
814 &w, TASK_INTERRUPTIBLE);
815 if (bio->bi_sector + bio->bi_size/512 <= mddev->suspend_lo ||
816 bio->bi_sector >= mddev->suspend_hi)
817 break;
818 schedule();
819 }
820 finish_wait(&conf->wait_barrier, &w);
821 }
NeilBrown62de6082006-05-01 12:15:47 -0700822
NeilBrown17999be2006-01-06 00:20:12 -0800823 wait_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
NeilBrown84255d12008-05-23 13:04:32 -0700825 bitmap = mddev->bitmap;
826
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 /*
828 * make_request() can abort the operation when READA is being
829 * used and no empty request is available.
830 *
831 */
832 r1_bio = mempool_alloc(conf->r1bio_pool, GFP_NOIO);
833
834 r1_bio->master_bio = bio;
835 r1_bio->sectors = bio->bi_size >> 9;
NeilBrown191ea9b2005-06-21 17:17:23 -0700836 r1_bio->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 r1_bio->mddev = mddev;
838 r1_bio->sector = bio->bi_sector;
839
Jens Axboea3623572005-11-01 09:26:16 +0100840 if (rw == READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 /*
842 * read balancing logic:
843 */
844 int rdisk = read_balance(conf, r1_bio);
845
846 if (rdisk < 0) {
847 /* couldn't find anywhere to read from */
848 raid_end_bio_io(r1_bio);
849 return 0;
850 }
851 mirror = conf->mirrors + rdisk;
852
NeilBrowne5551902010-03-31 11:21:44 +1100853 if (test_bit(WriteMostly, &mirror->rdev->flags) &&
854 bitmap) {
855 /* Reading from a write-mostly device must
856 * take care not to over-take any writes
857 * that are 'behind'
858 */
859 wait_event(bitmap->behind_wait,
860 atomic_read(&bitmap->behind_writes) == 0);
861 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 r1_bio->read_disk = rdisk;
863
864 read_bio = bio_clone(bio, GFP_NOIO);
865
866 r1_bio->bios[rdisk] = read_bio;
867
868 read_bio->bi_sector = r1_bio->sector + mirror->rdev->data_offset;
869 read_bio->bi_bdev = mirror->rdev->bdev;
870 read_bio->bi_end_io = raid1_end_read_request;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +0200871 read_bio->bi_rw = READ | do_sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 read_bio->bi_private = r1_bio;
873
874 generic_make_request(read_bio);
875 return 0;
876 }
877
878 /*
879 * WRITE:
880 */
881 /* first select target devices under spinlock and
882 * inc refcount on their rdev. Record them by setting
883 * bios[x] to bio
884 */
885 disks = conf->raid_disks;
Dan Williams6bfe0b42008-04-30 00:52:32 -0700886 retry_write:
887 blocked_rdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 rcu_read_lock();
889 for (i = 0; i < disks; i++) {
Dan Williams6bfe0b42008-04-30 00:52:32 -0700890 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
891 if (rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
892 atomic_inc(&rdev->nr_pending);
893 blocked_rdev = rdev;
894 break;
895 }
896 if (rdev && !test_bit(Faulty, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 atomic_inc(&rdev->nr_pending);
NeilBrownb2d444d2005-11-08 21:39:31 -0800898 if (test_bit(Faulty, &rdev->flags)) {
NeilBrown03c902e2006-01-06 00:20:46 -0800899 rdev_dec_pending(rdev, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 r1_bio->bios[i] = NULL;
NeilBrown964147d2010-05-18 15:27:13 +1000901 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 r1_bio->bios[i] = bio;
NeilBrown964147d2010-05-18 15:27:13 +1000903 targets++;
904 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 } else
906 r1_bio->bios[i] = NULL;
907 }
908 rcu_read_unlock();
909
Dan Williams6bfe0b42008-04-30 00:52:32 -0700910 if (unlikely(blocked_rdev)) {
911 /* Wait for this device to become unblocked */
912 int j;
913
914 for (j = 0; j < i; j++)
915 if (r1_bio->bios[j])
916 rdev_dec_pending(conf->mirrors[j].rdev, mddev);
917
918 allow_barrier(conf);
919 md_wait_for_blocked_rdev(blocked_rdev, mddev);
920 wait_barrier(conf);
921 goto retry_write;
922 }
923
NeilBrown4b6d2872005-09-09 16:23:47 -0700924 BUG_ON(targets == 0); /* we never fail the last device */
925
NeilBrown191ea9b2005-06-21 17:17:23 -0700926 if (targets < conf->raid_disks) {
927 /* array is degraded, we will not clear the bitmap
928 * on I/O completion (see raid1_end_write_request) */
929 set_bit(R1BIO_Degraded, &r1_bio->state);
930 }
NeilBrown06d91a52005-06-21 17:17:12 -0700931
NeilBrowne5551902010-03-31 11:21:44 +1100932 /* do behind I/O ?
933 * Not if there are too many, or cannot allocate memory,
934 * or a reader on WriteMostly is waiting for behind writes
935 * to flush */
NeilBrown4b6d2872005-09-09 16:23:47 -0700936 if (bitmap &&
NeilBrown42a04b52009-12-14 12:49:53 +1100937 (atomic_read(&bitmap->behind_writes)
938 < mddev->bitmap_info.max_write_behind) &&
NeilBrowne5551902010-03-31 11:21:44 +1100939 !waitqueue_active(&bitmap->behind_wait) &&
NeilBrown4b6d2872005-09-09 16:23:47 -0700940 (behind_pages = alloc_behind_pages(bio)) != NULL)
941 set_bit(R1BIO_BehindIO, &r1_bio->state);
942
NeilBrown4e780642010-10-19 12:54:01 +1100943 atomic_set(&r1_bio->remaining, 1);
NeilBrown4b6d2872005-09-09 16:23:47 -0700944 atomic_set(&r1_bio->behind_remaining, 0);
NeilBrown191ea9b2005-06-21 17:17:23 -0700945
NeilBrown4e780642010-10-19 12:54:01 +1100946 bitmap_startwrite(bitmap, bio->bi_sector, r1_bio->sectors,
947 test_bit(R1BIO_BehindIO, &r1_bio->state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 for (i = 0; i < disks; i++) {
949 struct bio *mbio;
950 if (!r1_bio->bios[i])
951 continue;
952
953 mbio = bio_clone(bio, GFP_NOIO);
954 r1_bio->bios[i] = mbio;
955
956 mbio->bi_sector = r1_bio->sector + conf->mirrors[i].rdev->data_offset;
957 mbio->bi_bdev = conf->mirrors[i].rdev->bdev;
958 mbio->bi_end_io = raid1_end_write_request;
Tejun Heoe9c74692010-09-03 11:56:18 +0200959 mbio->bi_rw = WRITE | do_flush_fua | do_sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 mbio->bi_private = r1_bio;
961
NeilBrown4b6d2872005-09-09 16:23:47 -0700962 if (behind_pages) {
963 struct bio_vec *bvec;
964 int j;
965
966 /* Yes, I really want the '__' version so that
967 * we clear any unused pointer in the io_vec, rather
968 * than leave them unchanged. This is important
969 * because when we come to free the pages, we won't
970 * know the originial bi_idx, so we just free
971 * them all
972 */
973 __bio_for_each_segment(bvec, mbio, j, 0)
NeilBrown4e780642010-10-19 12:54:01 +1100974 bvec->bv_page = behind_pages[j].bv_page;
NeilBrown4b6d2872005-09-09 16:23:47 -0700975 if (test_bit(WriteMostly, &conf->mirrors[i].rdev->flags))
976 atomic_inc(&r1_bio->behind_remaining);
977 }
978
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 atomic_inc(&r1_bio->remaining);
NeilBrown4e780642010-10-19 12:54:01 +1100980 spin_lock_irqsave(&conf->device_lock, flags);
981 bio_list_add(&conf->pending_bio_list, mbio);
982 blk_plug_device(mddev->queue);
983 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 }
NeilBrown4e780642010-10-19 12:54:01 +1100985 r1_bio_write_done(r1_bio, bio->bi_vcnt, behind_pages, behind_pages != NULL);
NeilBrown4b6d2872005-09-09 16:23:47 -0700986 kfree(behind_pages); /* the behind pages are attached to the bios now */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
NeilBrown4e780642010-10-19 12:54:01 +1100988 /* In case raid1d snuck in to freeze_array */
NeilBrowna35e63e2008-03-04 14:29:29 -0800989 wake_up(&conf->wait_barrier);
990
Lars Ellenberge3881a62007-01-10 23:15:37 -0800991 if (do_sync)
992 md_wakeup_thread(mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
994 return 0;
995}
996
997static void status(struct seq_file *seq, mddev_t *mddev)
998{
NeilBrown070ec552009-06-16 16:54:21 +1000999 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 int i;
1001
1002 seq_printf(seq, " [%d/%d] [", conf->raid_disks,
NeilBrown11ce99e2006-10-03 01:15:52 -07001003 conf->raid_disks - mddev->degraded);
NeilBrownddac7c72006-08-31 21:27:36 -07001004 rcu_read_lock();
1005 for (i = 0; i < conf->raid_disks; i++) {
1006 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 seq_printf(seq, "%s",
NeilBrownddac7c72006-08-31 21:27:36 -07001008 rdev && test_bit(In_sync, &rdev->flags) ? "U" : "_");
1009 }
1010 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 seq_printf(seq, "]");
1012}
1013
1014
1015static void error(mddev_t *mddev, mdk_rdev_t *rdev)
1016{
1017 char b[BDEVNAME_SIZE];
NeilBrown070ec552009-06-16 16:54:21 +10001018 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
1020 /*
1021 * If it is not operational, then we have already marked it as dead
1022 * else if it is the last working disks, ignore the error, let the
1023 * next level up know.
1024 * else mark the drive as failed
1025 */
NeilBrownb2d444d2005-11-08 21:39:31 -08001026 if (test_bit(In_sync, &rdev->flags)
NeilBrown4044ba52009-01-09 08:31:11 +11001027 && (conf->raid_disks - mddev->degraded) == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 /*
1029 * Don't fail the drive, act as though we were just a
NeilBrown4044ba52009-01-09 08:31:11 +11001030 * normal single drive.
1031 * However don't try a recovery from this drive as
1032 * it is very likely to fail.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 */
NeilBrown4044ba52009-01-09 08:31:11 +11001034 mddev->recovery_disabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 return;
NeilBrown4044ba52009-01-09 08:31:11 +11001036 }
NeilBrownc04be0a2006-10-03 01:15:53 -07001037 if (test_and_clear_bit(In_sync, &rdev->flags)) {
1038 unsigned long flags;
1039 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 mddev->degraded++;
NeilBrowndd00a992007-05-10 03:15:50 -07001041 set_bit(Faulty, &rdev->flags);
NeilBrownc04be0a2006-10-03 01:15:53 -07001042 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 /*
1044 * if recovery is running, make sure it aborts.
1045 */
NeilBrowndfc70642008-05-23 13:04:39 -07001046 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
NeilBrowndd00a992007-05-10 03:15:50 -07001047 } else
1048 set_bit(Faulty, &rdev->flags);
NeilBrown850b2b42006-10-03 01:15:46 -07001049 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001050 printk(KERN_ALERT "md/raid1:%s: Disk failure on %s, disabling device.\n"
1051 KERN_ALERT "md/raid1:%s: Operation continuing on %d devices.\n",
1052 mdname(mddev), bdevname(rdev->bdev, b),
1053 mdname(mddev), conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054}
1055
1056static void print_conf(conf_t *conf)
1057{
1058 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001060 printk(KERN_DEBUG "RAID1 conf printout:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 if (!conf) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001062 printk(KERN_DEBUG "(!conf)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 return;
1064 }
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001065 printk(KERN_DEBUG " --- wd:%d rd:%d\n", conf->raid_disks - conf->mddev->degraded,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 conf->raid_disks);
1067
NeilBrownddac7c72006-08-31 21:27:36 -07001068 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 for (i = 0; i < conf->raid_disks; i++) {
1070 char b[BDEVNAME_SIZE];
NeilBrownddac7c72006-08-31 21:27:36 -07001071 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
1072 if (rdev)
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001073 printk(KERN_DEBUG " disk %d, wo:%d, o:%d, dev:%s\n",
NeilBrownddac7c72006-08-31 21:27:36 -07001074 i, !test_bit(In_sync, &rdev->flags),
1075 !test_bit(Faulty, &rdev->flags),
1076 bdevname(rdev->bdev,b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 }
NeilBrownddac7c72006-08-31 21:27:36 -07001078 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079}
1080
1081static void close_sync(conf_t *conf)
1082{
NeilBrown17999be2006-01-06 00:20:12 -08001083 wait_barrier(conf);
1084 allow_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085
1086 mempool_destroy(conf->r1buf_pool);
1087 conf->r1buf_pool = NULL;
1088}
1089
1090static int raid1_spare_active(mddev_t *mddev)
1091{
1092 int i;
1093 conf_t *conf = mddev->private;
NeilBrown6b965622010-08-18 11:56:59 +10001094 int count = 0;
1095 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
1097 /*
1098 * Find all failed disks within the RAID1 configuration
NeilBrownddac7c72006-08-31 21:27:36 -07001099 * and mark them readable.
1100 * Called under mddev lock, so rcu protection not needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 */
1102 for (i = 0; i < conf->raid_disks; i++) {
NeilBrownddac7c72006-08-31 21:27:36 -07001103 mdk_rdev_t *rdev = conf->mirrors[i].rdev;
1104 if (rdev
1105 && !test_bit(Faulty, &rdev->flags)
NeilBrownc04be0a2006-10-03 01:15:53 -07001106 && !test_and_set_bit(In_sync, &rdev->flags)) {
NeilBrown6b965622010-08-18 11:56:59 +10001107 count++;
Adrian Drzewieckie6ffbcb2010-08-18 11:49:02 +10001108 sysfs_notify_dirent(rdev->sysfs_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 }
1110 }
NeilBrown6b965622010-08-18 11:56:59 +10001111 spin_lock_irqsave(&conf->device_lock, flags);
1112 mddev->degraded -= count;
1113 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
1115 print_conf(conf);
NeilBrown6b965622010-08-18 11:56:59 +10001116 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117}
1118
1119
1120static int raid1_add_disk(mddev_t *mddev, mdk_rdev_t *rdev)
1121{
1122 conf_t *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10001123 int err = -EEXIST;
NeilBrown41158c72005-06-21 17:17:25 -07001124 int mirror = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 mirror_info_t *p;
Neil Brown6c2fce22008-06-28 08:31:31 +10001126 int first = 0;
1127 int last = mddev->raid_disks - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
Neil Brown6c2fce22008-06-28 08:31:31 +10001129 if (rdev->raid_disk >= 0)
1130 first = last = rdev->raid_disk;
1131
1132 for (mirror = first; mirror <= last; mirror++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 if ( !(p=conf->mirrors+mirror)->rdev) {
1134
Martin K. Petersen8f6c2e42009-07-01 11:13:45 +10001135 disk_stack_limits(mddev->gendisk, rdev->bdev,
1136 rdev->data_offset << 9);
NeilBrown627a2d32010-03-08 16:44:38 +11001137 /* as we don't honour merge_bvec_fn, we must
1138 * never risk violating it, so limit
1139 * ->max_segments to one lying with a single
1140 * page, as a one page request is never in
1141 * violation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 */
NeilBrown627a2d32010-03-08 16:44:38 +11001143 if (rdev->bdev->bd_disk->queue->merge_bvec_fn) {
1144 blk_queue_max_segments(mddev->queue, 1);
1145 blk_queue_segment_boundary(mddev->queue,
1146 PAGE_CACHE_SIZE - 1);
1147 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
1149 p->head_position = 0;
1150 rdev->raid_disk = mirror;
Neil Brown199050e2008-06-28 08:31:33 +10001151 err = 0;
NeilBrown6aea114a2005-11-28 13:44:13 -08001152 /* As all devices are equivalent, we don't need a full recovery
1153 * if this was recently any drive of the array
1154 */
1155 if (rdev->saved_raid_disk < 0)
NeilBrown41158c72005-06-21 17:17:25 -07001156 conf->fullsync = 1;
Suzanne Woodd6065f72005-11-08 21:39:27 -08001157 rcu_assign_pointer(p->rdev, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 break;
1159 }
Andre Nollac5e7112009-08-03 10:59:47 +10001160 md_integrity_add_rdev(rdev, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 print_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10001162 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163}
1164
1165static int raid1_remove_disk(mddev_t *mddev, int number)
1166{
1167 conf_t *conf = mddev->private;
1168 int err = 0;
1169 mdk_rdev_t *rdev;
1170 mirror_info_t *p = conf->mirrors+ number;
1171
1172 print_conf(conf);
1173 rdev = p->rdev;
1174 if (rdev) {
NeilBrownb2d444d2005-11-08 21:39:31 -08001175 if (test_bit(In_sync, &rdev->flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 atomic_read(&rdev->nr_pending)) {
1177 err = -EBUSY;
1178 goto abort;
1179 }
NeilBrowndfc70642008-05-23 13:04:39 -07001180 /* Only remove non-faulty devices is recovery
1181 * is not possible.
1182 */
1183 if (!test_bit(Faulty, &rdev->flags) &&
1184 mddev->degraded < conf->raid_disks) {
1185 err = -EBUSY;
1186 goto abort;
1187 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 p->rdev = NULL;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07001189 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 if (atomic_read(&rdev->nr_pending)) {
1191 /* lost the race, try later */
1192 err = -EBUSY;
1193 p->rdev = rdev;
Andre Nollac5e7112009-08-03 10:59:47 +10001194 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 }
Andre Nollac5e7112009-08-03 10:59:47 +10001196 md_integrity_register(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 }
1198abort:
1199
1200 print_conf(conf);
1201 return err;
1202}
1203
1204
NeilBrown6712ecf2007-09-27 12:47:43 +02001205static void end_sync_read(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206{
H Hartley Sweeten7b928132010-03-08 16:02:40 +11001207 r1bio_t *r1_bio = bio->bi_private;
NeilBrownd11c1712006-01-06 00:20:26 -08001208 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
NeilBrownd11c1712006-01-06 00:20:26 -08001210 for (i=r1_bio->mddev->raid_disks; i--; )
1211 if (r1_bio->bios[i] == bio)
1212 break;
1213 BUG_ON(i < 0);
1214 update_head_pos(i, r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 /*
1216 * we have read a block, now it needs to be re-written,
1217 * or re-read if the read failed.
1218 * We don't do much here, just schedule handling by raid1d
1219 */
NeilBrown69382e82006-01-06 00:20:22 -08001220 if (test_bit(BIO_UPTODATE, &bio->bi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 set_bit(R1BIO_Uptodate, &r1_bio->state);
NeilBrownd11c1712006-01-06 00:20:26 -08001222
1223 if (atomic_dec_and_test(&r1_bio->remaining))
1224 reschedule_retry(r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225}
1226
NeilBrown6712ecf2007-09-27 12:47:43 +02001227static void end_sync_write(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228{
1229 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
H Hartley Sweeten7b928132010-03-08 16:02:40 +11001230 r1bio_t *r1_bio = bio->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 mddev_t *mddev = r1_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +10001232 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 int i;
1234 int mirror=0;
1235
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 for (i = 0; i < conf->raid_disks; i++)
1237 if (r1_bio->bios[i] == bio) {
1238 mirror = i;
1239 break;
1240 }
NeilBrown6b1117d2006-03-31 02:31:57 -08001241 if (!uptodate) {
NeilBrown57dab0b2010-10-19 10:03:39 +11001242 sector_t sync_blocks = 0;
NeilBrown6b1117d2006-03-31 02:31:57 -08001243 sector_t s = r1_bio->sector;
1244 long sectors_to_go = r1_bio->sectors;
1245 /* make sure these bits doesn't get cleared. */
1246 do {
NeilBrown5e3db642006-07-10 04:44:18 -07001247 bitmap_end_sync(mddev->bitmap, s,
NeilBrown6b1117d2006-03-31 02:31:57 -08001248 &sync_blocks, 1);
1249 s += sync_blocks;
1250 sectors_to_go -= sync_blocks;
1251 } while (sectors_to_go > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 md_error(mddev, conf->mirrors[mirror].rdev);
NeilBrown6b1117d2006-03-31 02:31:57 -08001253 }
NeilBrowne3b97032005-08-04 12:53:34 -07001254
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 update_head_pos(mirror, r1_bio);
1256
1257 if (atomic_dec_and_test(&r1_bio->remaining)) {
NeilBrown73d5c382009-02-25 13:18:47 +11001258 sector_t s = r1_bio->sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 put_buf(r1_bio);
NeilBrown73d5c382009-02-25 13:18:47 +11001260 md_done_sync(mddev, s, uptodate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262}
1263
1264static void sync_request_write(mddev_t *mddev, r1bio_t *r1_bio)
1265{
NeilBrown070ec552009-06-16 16:54:21 +10001266 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 int i;
1268 int disks = conf->raid_disks;
1269 struct bio *bio, *wbio;
1270
1271 bio = r1_bio->bios[r1_bio->read_disk];
1272
NeilBrown69382e82006-01-06 00:20:22 -08001273
NeilBrownd11c1712006-01-06 00:20:26 -08001274 if (test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) {
1275 /* We have read all readable devices. If we haven't
1276 * got the block, then there is no hope left.
1277 * If we have, then we want to do a comparison
1278 * and skip the write if everything is the same.
1279 * If any blocks failed to read, then we need to
1280 * attempt an over-write
1281 */
1282 int primary;
1283 if (!test_bit(R1BIO_Uptodate, &r1_bio->state)) {
1284 for (i=0; i<mddev->raid_disks; i++)
1285 if (r1_bio->bios[i]->bi_end_io == end_sync_read)
1286 md_error(mddev, conf->mirrors[i].rdev);
1287
1288 md_done_sync(mddev, r1_bio->sectors, 1);
1289 put_buf(r1_bio);
1290 return;
1291 }
1292 for (primary=0; primary<mddev->raid_disks; primary++)
1293 if (r1_bio->bios[primary]->bi_end_io == end_sync_read &&
1294 test_bit(BIO_UPTODATE, &r1_bio->bios[primary]->bi_flags)) {
1295 r1_bio->bios[primary]->bi_end_io = NULL;
NeilBrown03c902e2006-01-06 00:20:46 -08001296 rdev_dec_pending(conf->mirrors[primary].rdev, mddev);
NeilBrownd11c1712006-01-06 00:20:26 -08001297 break;
1298 }
1299 r1_bio->read_disk = primary;
1300 for (i=0; i<mddev->raid_disks; i++)
Mike Accettaed456662007-06-16 10:16:07 -07001301 if (r1_bio->bios[i]->bi_end_io == end_sync_read) {
NeilBrownd11c1712006-01-06 00:20:26 -08001302 int j;
1303 int vcnt = r1_bio->sectors >> (PAGE_SHIFT- 9);
1304 struct bio *pbio = r1_bio->bios[primary];
1305 struct bio *sbio = r1_bio->bios[i];
Mike Accettaed456662007-06-16 10:16:07 -07001306
1307 if (test_bit(BIO_UPTODATE, &sbio->bi_flags)) {
1308 for (j = vcnt; j-- ; ) {
1309 struct page *p, *s;
1310 p = pbio->bi_io_vec[j].bv_page;
1311 s = sbio->bi_io_vec[j].bv_page;
1312 if (memcmp(page_address(p),
1313 page_address(s),
1314 PAGE_SIZE))
1315 break;
1316 }
1317 } else
1318 j = 0;
NeilBrownd11c1712006-01-06 00:20:26 -08001319 if (j >= 0)
1320 mddev->resync_mismatches += r1_bio->sectors;
NeilBrowncf7a4412007-10-16 23:30:55 -07001321 if (j < 0 || (test_bit(MD_RECOVERY_CHECK, &mddev->recovery)
1322 && test_bit(BIO_UPTODATE, &sbio->bi_flags))) {
NeilBrownd11c1712006-01-06 00:20:26 -08001323 sbio->bi_end_io = NULL;
NeilBrown03c902e2006-01-06 00:20:46 -08001324 rdev_dec_pending(conf->mirrors[i].rdev, mddev);
1325 } else {
NeilBrownd11c1712006-01-06 00:20:26 -08001326 /* fixup the bio for reuse */
NeilBrown698b18c2008-05-23 13:04:35 -07001327 int size;
NeilBrownd11c1712006-01-06 00:20:26 -08001328 sbio->bi_vcnt = vcnt;
1329 sbio->bi_size = r1_bio->sectors << 9;
1330 sbio->bi_idx = 0;
1331 sbio->bi_phys_segments = 0;
NeilBrownd11c1712006-01-06 00:20:26 -08001332 sbio->bi_flags &= ~(BIO_POOL_MASK - 1);
1333 sbio->bi_flags |= 1 << BIO_UPTODATE;
1334 sbio->bi_next = NULL;
1335 sbio->bi_sector = r1_bio->sector +
1336 conf->mirrors[i].rdev->data_offset;
1337 sbio->bi_bdev = conf->mirrors[i].rdev->bdev;
NeilBrown698b18c2008-05-23 13:04:35 -07001338 size = sbio->bi_size;
1339 for (j = 0; j < vcnt ; j++) {
1340 struct bio_vec *bi;
1341 bi = &sbio->bi_io_vec[j];
1342 bi->bv_offset = 0;
1343 if (size > PAGE_SIZE)
1344 bi->bv_len = PAGE_SIZE;
1345 else
1346 bi->bv_len = size;
1347 size -= PAGE_SIZE;
1348 memcpy(page_address(bi->bv_page),
NeilBrown3eda22d2007-01-26 00:57:01 -08001349 page_address(pbio->bi_io_vec[j].bv_page),
1350 PAGE_SIZE);
NeilBrown698b18c2008-05-23 13:04:35 -07001351 }
NeilBrown3eda22d2007-01-26 00:57:01 -08001352
NeilBrownd11c1712006-01-06 00:20:26 -08001353 }
1354 }
1355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 if (!test_bit(R1BIO_Uptodate, &r1_bio->state)) {
NeilBrown69382e82006-01-06 00:20:22 -08001357 /* ouch - failed to read all of that.
1358 * Try some synchronous reads of other devices to get
1359 * good data, much like with normal read errors. Only
NeilBrownddac7c72006-08-31 21:27:36 -07001360 * read into the pages we already have so we don't
NeilBrown69382e82006-01-06 00:20:22 -08001361 * need to re-issue the read request.
1362 * We don't need to freeze the array, because being in an
1363 * active sync request, there is no normal IO, and
1364 * no overlapping syncs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 */
NeilBrown69382e82006-01-06 00:20:22 -08001366 sector_t sect = r1_bio->sector;
1367 int sectors = r1_bio->sectors;
1368 int idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
NeilBrown69382e82006-01-06 00:20:22 -08001370 while(sectors) {
1371 int s = sectors;
1372 int d = r1_bio->read_disk;
1373 int success = 0;
1374 mdk_rdev_t *rdev;
1375
1376 if (s > (PAGE_SIZE>>9))
1377 s = PAGE_SIZE >> 9;
1378 do {
1379 if (r1_bio->bios[d]->bi_end_io == end_sync_read) {
NeilBrownddac7c72006-08-31 21:27:36 -07001380 /* No rcu protection needed here devices
1381 * can only be removed when no resync is
1382 * active, and resync is currently active
1383 */
NeilBrown69382e82006-01-06 00:20:22 -08001384 rdev = conf->mirrors[d].rdev;
1385 if (sync_page_io(rdev->bdev,
1386 sect + rdev->data_offset,
1387 s<<9,
1388 bio->bi_io_vec[idx].bv_page,
1389 READ)) {
1390 success = 1;
1391 break;
1392 }
1393 }
1394 d++;
1395 if (d == conf->raid_disks)
1396 d = 0;
1397 } while (!success && d != r1_bio->read_disk);
1398
1399 if (success) {
NeilBrown097426f2006-01-06 00:20:37 -08001400 int start = d;
NeilBrown69382e82006-01-06 00:20:22 -08001401 /* write it back and re-read */
1402 set_bit(R1BIO_Uptodate, &r1_bio->state);
1403 while (d != r1_bio->read_disk) {
1404 if (d == 0)
1405 d = conf->raid_disks;
1406 d--;
1407 if (r1_bio->bios[d]->bi_end_io != end_sync_read)
1408 continue;
1409 rdev = conf->mirrors[d].rdev;
NeilBrown4dbcdc72006-01-06 00:20:52 -08001410 atomic_add(s, &rdev->corrected_errors);
NeilBrown69382e82006-01-06 00:20:22 -08001411 if (sync_page_io(rdev->bdev,
1412 sect + rdev->data_offset,
1413 s<<9,
1414 bio->bi_io_vec[idx].bv_page,
NeilBrown097426f2006-01-06 00:20:37 -08001415 WRITE) == 0)
1416 md_error(mddev, rdev);
1417 }
1418 d = start;
1419 while (d != r1_bio->read_disk) {
1420 if (d == 0)
1421 d = conf->raid_disks;
1422 d--;
1423 if (r1_bio->bios[d]->bi_end_io != end_sync_read)
1424 continue;
1425 rdev = conf->mirrors[d].rdev;
1426 if (sync_page_io(rdev->bdev,
NeilBrown69382e82006-01-06 00:20:22 -08001427 sect + rdev->data_offset,
1428 s<<9,
1429 bio->bi_io_vec[idx].bv_page,
NeilBrown097426f2006-01-06 00:20:37 -08001430 READ) == 0)
NeilBrown69382e82006-01-06 00:20:22 -08001431 md_error(mddev, rdev);
NeilBrown69382e82006-01-06 00:20:22 -08001432 }
1433 } else {
1434 char b[BDEVNAME_SIZE];
1435 /* Cannot read from anywhere, array is toast */
1436 md_error(mddev, conf->mirrors[r1_bio->read_disk].rdev);
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001437 printk(KERN_ALERT "md/raid1:%s: %s: unrecoverable I/O read error"
NeilBrown69382e82006-01-06 00:20:22 -08001438 " for block %llu\n",
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001439 mdname(mddev),
1440 bdevname(bio->bi_bdev, b),
NeilBrown69382e82006-01-06 00:20:22 -08001441 (unsigned long long)r1_bio->sector);
1442 md_done_sync(mddev, r1_bio->sectors, 0);
1443 put_buf(r1_bio);
1444 return;
1445 }
1446 sectors -= s;
1447 sect += s;
1448 idx ++;
1449 }
1450 }
NeilBrownd11c1712006-01-06 00:20:26 -08001451
1452 /*
1453 * schedule writes
1454 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 atomic_set(&r1_bio->remaining, 1);
1456 for (i = 0; i < disks ; i++) {
1457 wbio = r1_bio->bios[i];
NeilBrown3e198f72006-01-06 00:20:21 -08001458 if (wbio->bi_end_io == NULL ||
1459 (wbio->bi_end_io == end_sync_read &&
1460 (i == r1_bio->read_disk ||
1461 !test_bit(MD_RECOVERY_SYNC, &mddev->recovery))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 continue;
1463
NeilBrown3e198f72006-01-06 00:20:21 -08001464 wbio->bi_rw = WRITE;
1465 wbio->bi_end_io = end_sync_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 atomic_inc(&r1_bio->remaining);
1467 md_sync_acct(conf->mirrors[i].rdev->bdev, wbio->bi_size >> 9);
NeilBrown191ea9b2005-06-21 17:17:23 -07001468
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 generic_make_request(wbio);
1470 }
1471
1472 if (atomic_dec_and_test(&r1_bio->remaining)) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001473 /* if we're here, all write(s) have completed, so clean up */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 md_done_sync(mddev, r1_bio->sectors, 1);
1475 put_buf(r1_bio);
1476 }
1477}
1478
1479/*
1480 * This is a kernel thread which:
1481 *
1482 * 1. Retries failed read operations on working mirrors.
1483 * 2. Updates the raid superblock when problems encounter.
1484 * 3. Performs writes following reads for array syncronising.
1485 */
1486
NeilBrown867868f2006-10-03 01:15:51 -07001487static void fix_read_error(conf_t *conf, int read_disk,
1488 sector_t sect, int sectors)
1489{
1490 mddev_t *mddev = conf->mddev;
1491 while(sectors) {
1492 int s = sectors;
1493 int d = read_disk;
1494 int success = 0;
1495 int start;
1496 mdk_rdev_t *rdev;
1497
1498 if (s > (PAGE_SIZE>>9))
1499 s = PAGE_SIZE >> 9;
1500
1501 do {
1502 /* Note: no rcu protection needed here
1503 * as this is synchronous in the raid1d thread
1504 * which is the thread that might remove
1505 * a device. If raid1d ever becomes multi-threaded....
1506 */
1507 rdev = conf->mirrors[d].rdev;
1508 if (rdev &&
1509 test_bit(In_sync, &rdev->flags) &&
1510 sync_page_io(rdev->bdev,
1511 sect + rdev->data_offset,
1512 s<<9,
1513 conf->tmppage, READ))
1514 success = 1;
1515 else {
1516 d++;
1517 if (d == conf->raid_disks)
1518 d = 0;
1519 }
1520 } while (!success && d != read_disk);
1521
1522 if (!success) {
1523 /* Cannot read from anywhere -- bye bye array */
1524 md_error(mddev, conf->mirrors[read_disk].rdev);
1525 break;
1526 }
1527 /* write it back and re-read */
1528 start = d;
1529 while (d != read_disk) {
1530 if (d==0)
1531 d = conf->raid_disks;
1532 d--;
1533 rdev = conf->mirrors[d].rdev;
1534 if (rdev &&
1535 test_bit(In_sync, &rdev->flags)) {
1536 if (sync_page_io(rdev->bdev,
1537 sect + rdev->data_offset,
1538 s<<9, conf->tmppage, WRITE)
1539 == 0)
1540 /* Well, this device is dead */
1541 md_error(mddev, rdev);
1542 }
1543 }
1544 d = start;
1545 while (d != read_disk) {
1546 char b[BDEVNAME_SIZE];
1547 if (d==0)
1548 d = conf->raid_disks;
1549 d--;
1550 rdev = conf->mirrors[d].rdev;
1551 if (rdev &&
1552 test_bit(In_sync, &rdev->flags)) {
1553 if (sync_page_io(rdev->bdev,
1554 sect + rdev->data_offset,
1555 s<<9, conf->tmppage, READ)
1556 == 0)
1557 /* Well, this device is dead */
1558 md_error(mddev, rdev);
1559 else {
1560 atomic_add(s, &rdev->corrected_errors);
1561 printk(KERN_INFO
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001562 "md/raid1:%s: read error corrected "
NeilBrown867868f2006-10-03 01:15:51 -07001563 "(%d sectors at %llu on %s)\n",
1564 mdname(mddev), s,
Randy Dunlap969b7552006-10-28 10:38:32 -07001565 (unsigned long long)(sect +
1566 rdev->data_offset),
NeilBrown867868f2006-10-03 01:15:51 -07001567 bdevname(rdev->bdev, b));
1568 }
1569 }
1570 }
1571 sectors -= s;
1572 sect += s;
1573 }
1574}
1575
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576static void raid1d(mddev_t *mddev)
1577{
1578 r1bio_t *r1_bio;
1579 struct bio *bio;
1580 unsigned long flags;
NeilBrown070ec552009-06-16 16:54:21 +10001581 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 struct list_head *head = &conf->retry_list;
1583 int unplug=0;
1584 mdk_rdev_t *rdev;
1585
1586 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
1588 for (;;) {
1589 char b[BDEVNAME_SIZE];
NeilBrowna35e63e2008-03-04 14:29:29 -08001590
1591 unplug += flush_pending_writes(conf);
1592
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrowna35e63e2008-03-04 14:29:29 -08001594 if (list_empty(head)) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001595 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 break;
NeilBrowna35e63e2008-03-04 14:29:29 -08001597 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 r1_bio = list_entry(head->prev, r1bio_t, retry_list);
1599 list_del(head->prev);
NeilBrownddaf22a2006-01-06 00:20:19 -08001600 conf->nr_queued--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 spin_unlock_irqrestore(&conf->device_lock, flags);
1602
1603 mddev = r1_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +10001604 conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 if (test_bit(R1BIO_IsSync, &r1_bio->state)) {
1606 sync_request_write(mddev, r1_bio);
1607 unplug = 1;
1608 } else {
1609 int disk;
NeilBrownddaf22a2006-01-06 00:20:19 -08001610
1611 /* we got a read error. Maybe the drive is bad. Maybe just
1612 * the block and we can fix it.
1613 * We freeze all other IO, and try reading the block from
1614 * other devices. When we find one, we re-write
1615 * and check it that fixes the read error.
1616 * This is all done synchronously while the array is
1617 * frozen
1618 */
NeilBrown867868f2006-10-03 01:15:51 -07001619 if (mddev->ro == 0) {
1620 freeze_array(conf);
1621 fix_read_error(conf, r1_bio->read_disk,
1622 r1_bio->sector,
1623 r1_bio->sectors);
1624 unfreeze_array(conf);
NeilBrownd0e26072009-12-01 17:30:59 +11001625 } else
1626 md_error(mddev,
1627 conf->mirrors[r1_bio->read_disk].rdev);
NeilBrownddaf22a2006-01-06 00:20:19 -08001628
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 bio = r1_bio->bios[r1_bio->read_disk];
NeilBrownd0e26072009-12-01 17:30:59 +11001630 if ((disk=read_balance(conf, r1_bio)) == -1) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001631 printk(KERN_ALERT "md/raid1:%s: %s: unrecoverable I/O"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 " read error for block %llu\n",
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001633 mdname(mddev),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 bdevname(bio->bi_bdev,b),
1635 (unsigned long long)r1_bio->sector);
1636 raid_end_bio_io(r1_bio);
1637 } else {
NeilBrown2c7d46e2010-08-18 16:16:05 +10001638 const unsigned long do_sync = r1_bio->master_bio->bi_rw & REQ_SYNC;
NeilBrowncf30a472006-01-06 00:20:23 -08001639 r1_bio->bios[r1_bio->read_disk] =
1640 mddev->ro ? IO_BLOCKED : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 r1_bio->read_disk = disk;
1642 bio_put(bio);
1643 bio = bio_clone(r1_bio->master_bio, GFP_NOIO);
1644 r1_bio->bios[r1_bio->read_disk] = bio;
1645 rdev = conf->mirrors[disk].rdev;
1646 if (printk_ratelimit())
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001647 printk(KERN_ERR "md/raid1:%s: redirecting sector %llu to"
NeilBrownd754c5a2010-04-07 12:14:43 +10001648 " other mirror: %s\n",
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001649 mdname(mddev),
NeilBrownd754c5a2010-04-07 12:14:43 +10001650 (unsigned long long)r1_bio->sector,
1651 bdevname(rdev->bdev,b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 bio->bi_sector = r1_bio->sector + rdev->data_offset;
1653 bio->bi_bdev = rdev->bdev;
1654 bio->bi_end_io = raid1_end_read_request;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001655 bio->bi_rw = READ | do_sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 bio->bi_private = r1_bio;
1657 unplug = 1;
1658 generic_make_request(bio);
1659 }
1660 }
NeilBrown1d9d5242009-10-16 15:55:32 +11001661 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 if (unplug)
1664 unplug_slaves(mddev);
1665}
1666
1667
1668static int init_resync(conf_t *conf)
1669{
1670 int buffs;
1671
1672 buffs = RESYNC_WINDOW / RESYNC_BLOCK_SIZE;
Eric Sesterhenn9e77c482006-04-01 01:08:49 +02001673 BUG_ON(conf->r1buf_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 conf->r1buf_pool = mempool_create(buffs, r1buf_pool_alloc, r1buf_pool_free,
1675 conf->poolinfo);
1676 if (!conf->r1buf_pool)
1677 return -ENOMEM;
1678 conf->next_resync = 0;
1679 return 0;
1680}
1681
1682/*
1683 * perform a "sync" on one "block"
1684 *
1685 * We need to make sure that no normal I/O request - particularly write
1686 * requests - conflict with active sync requests.
1687 *
1688 * This is achieved by tracking pending requests and a 'barrier' concept
1689 * that can be installed to exclude normal IO requests.
1690 */
1691
NeilBrown57afd892005-06-21 17:17:13 -07001692static sector_t sync_request(mddev_t *mddev, sector_t sector_nr, int *skipped, int go_faster)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693{
NeilBrown070ec552009-06-16 16:54:21 +10001694 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 r1bio_t *r1_bio;
1696 struct bio *bio;
1697 sector_t max_sector, nr_sectors;
NeilBrown3e198f72006-01-06 00:20:21 -08001698 int disk = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 int i;
NeilBrown3e198f72006-01-06 00:20:21 -08001700 int wonly = -1;
1701 int write_targets = 0, read_targets = 0;
NeilBrown57dab0b2010-10-19 10:03:39 +11001702 sector_t sync_blocks;
NeilBrowne3b97032005-08-04 12:53:34 -07001703 int still_degraded = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
1705 if (!conf->r1buf_pool)
1706 if (init_resync(conf))
NeilBrown57afd892005-06-21 17:17:13 -07001707 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708
Andre Noll58c0fed2009-03-31 14:33:13 +11001709 max_sector = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 if (sector_nr >= max_sector) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001711 /* If we aborted, we need to abort the
1712 * sync on the 'current' bitmap chunk (there will
1713 * only be one in raid1 resync.
1714 * We can find the current addess in mddev->curr_resync
1715 */
NeilBrown6a806c52005-07-15 03:56:35 -07001716 if (mddev->curr_resync < max_sector) /* aborted */
1717 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
NeilBrown191ea9b2005-06-21 17:17:23 -07001718 &sync_blocks, 1);
NeilBrown6a806c52005-07-15 03:56:35 -07001719 else /* completed sync */
NeilBrown191ea9b2005-06-21 17:17:23 -07001720 conf->fullsync = 0;
NeilBrown6a806c52005-07-15 03:56:35 -07001721
1722 bitmap_close_sync(mddev->bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 close_sync(conf);
1724 return 0;
1725 }
1726
NeilBrown07d84d102006-06-26 00:27:56 -07001727 if (mddev->bitmap == NULL &&
1728 mddev->recovery_cp == MaxSector &&
NeilBrown6394cca2006-08-27 01:23:50 -07001729 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
NeilBrown07d84d102006-06-26 00:27:56 -07001730 conf->fullsync == 0) {
1731 *skipped = 1;
1732 return max_sector - sector_nr;
1733 }
NeilBrown6394cca2006-08-27 01:23:50 -07001734 /* before building a request, check if we can skip these blocks..
1735 * This call the bitmap_start_sync doesn't actually record anything
1736 */
NeilBrowne3b97032005-08-04 12:53:34 -07001737 if (!bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
NeilBrowne5de4852005-11-08 21:39:38 -08001738 !conf->fullsync && !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001739 /* We can skip this block, and probably several more */
1740 *skipped = 1;
1741 return sync_blocks;
1742 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 /*
NeilBrown17999be2006-01-06 00:20:12 -08001744 * If there is non-resync activity waiting for a turn,
1745 * and resync is going fast enough,
1746 * then let it though before starting on this new sync request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 */
NeilBrown17999be2006-01-06 00:20:12 -08001748 if (!go_faster && conf->nr_waiting)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 msleep_interruptible(1000);
NeilBrown17999be2006-01-06 00:20:12 -08001750
NeilBrownb47490c2008-02-06 01:39:50 -08001751 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
NeilBrown17999be2006-01-06 00:20:12 -08001752 raise_barrier(conf);
1753
1754 conf->next_resync = sector_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 r1_bio = mempool_alloc(conf->r1buf_pool, GFP_NOIO);
NeilBrown3e198f72006-01-06 00:20:21 -08001757 rcu_read_lock();
1758 /*
1759 * If we get a correctably read error during resync or recovery,
1760 * we might want to read from a different device. So we
1761 * flag all drives that could conceivably be read from for READ,
1762 * and any others (which will be non-In_sync devices) for WRITE.
1763 * If a read fails, we try reading from something else for which READ
1764 * is OK.
1765 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 r1_bio->mddev = mddev;
1768 r1_bio->sector = sector_nr;
NeilBrown191ea9b2005-06-21 17:17:23 -07001769 r1_bio->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 set_bit(R1BIO_IsSync, &r1_bio->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
1772 for (i=0; i < conf->raid_disks; i++) {
NeilBrown3e198f72006-01-06 00:20:21 -08001773 mdk_rdev_t *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 bio = r1_bio->bios[i];
1775
1776 /* take from bio_init */
1777 bio->bi_next = NULL;
NeilBrowndb8d9d32010-10-07 12:00:50 +11001778 bio->bi_flags &= ~(BIO_POOL_MASK-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 bio->bi_flags |= 1 << BIO_UPTODATE;
NeilBrowndb8d9d32010-10-07 12:00:50 +11001780 bio->bi_comp_cpu = -1;
NeilBrown802ba062006-12-13 00:34:13 -08001781 bio->bi_rw = READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 bio->bi_vcnt = 0;
1783 bio->bi_idx = 0;
1784 bio->bi_phys_segments = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 bio->bi_size = 0;
1786 bio->bi_end_io = NULL;
1787 bio->bi_private = NULL;
1788
NeilBrown3e198f72006-01-06 00:20:21 -08001789 rdev = rcu_dereference(conf->mirrors[i].rdev);
1790 if (rdev == NULL ||
1791 test_bit(Faulty, &rdev->flags)) {
NeilBrowne3b97032005-08-04 12:53:34 -07001792 still_degraded = 1;
1793 continue;
NeilBrown3e198f72006-01-06 00:20:21 -08001794 } else if (!test_bit(In_sync, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 bio->bi_rw = WRITE;
1796 bio->bi_end_io = end_sync_write;
1797 write_targets ++;
NeilBrown3e198f72006-01-06 00:20:21 -08001798 } else {
1799 /* may need to read from here */
1800 bio->bi_rw = READ;
1801 bio->bi_end_io = end_sync_read;
1802 if (test_bit(WriteMostly, &rdev->flags)) {
1803 if (wonly < 0)
1804 wonly = i;
1805 } else {
1806 if (disk < 0)
1807 disk = i;
1808 }
1809 read_targets++;
1810 }
1811 atomic_inc(&rdev->nr_pending);
1812 bio->bi_sector = sector_nr + rdev->data_offset;
1813 bio->bi_bdev = rdev->bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 bio->bi_private = r1_bio;
1815 }
NeilBrown3e198f72006-01-06 00:20:21 -08001816 rcu_read_unlock();
1817 if (disk < 0)
1818 disk = wonly;
1819 r1_bio->read_disk = disk;
NeilBrown191ea9b2005-06-21 17:17:23 -07001820
NeilBrown3e198f72006-01-06 00:20:21 -08001821 if (test_bit(MD_RECOVERY_SYNC, &mddev->recovery) && read_targets > 0)
1822 /* extra read targets are also write targets */
1823 write_targets += read_targets-1;
1824
1825 if (write_targets == 0 || read_targets == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 /* There is nowhere to write, so all non-sync
1827 * drives must be failed - so we are finished
1828 */
NeilBrown57afd892005-06-21 17:17:13 -07001829 sector_t rv = max_sector - sector_nr;
1830 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 put_buf(r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 return rv;
1833 }
1834
NeilBrownc6207272008-02-06 01:39:52 -08001835 if (max_sector > mddev->resync_max)
1836 max_sector = mddev->resync_max; /* Don't do IO beyond here */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 nr_sectors = 0;
NeilBrown289e99e2005-06-21 17:17:24 -07001838 sync_blocks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 do {
1840 struct page *page;
1841 int len = PAGE_SIZE;
1842 if (sector_nr + (len>>9) > max_sector)
1843 len = (max_sector - sector_nr) << 9;
1844 if (len == 0)
1845 break;
NeilBrown6a806c52005-07-15 03:56:35 -07001846 if (sync_blocks == 0) {
1847 if (!bitmap_start_sync(mddev->bitmap, sector_nr,
NeilBrowne5de4852005-11-08 21:39:38 -08001848 &sync_blocks, still_degraded) &&
1849 !conf->fullsync &&
1850 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery))
NeilBrown6a806c52005-07-15 03:56:35 -07001851 break;
Eric Sesterhenn9e77c482006-04-01 01:08:49 +02001852 BUG_ON(sync_blocks < (PAGE_SIZE>>9));
NeilBrown7571ae82010-10-07 11:54:46 +11001853 if ((len >> 9) > sync_blocks)
NeilBrown6a806c52005-07-15 03:56:35 -07001854 len = sync_blocks<<9;
NeilBrownab7a30c2005-06-21 17:17:23 -07001855 }
NeilBrown191ea9b2005-06-21 17:17:23 -07001856
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 for (i=0 ; i < conf->raid_disks; i++) {
1858 bio = r1_bio->bios[i];
1859 if (bio->bi_end_io) {
NeilBrownd11c1712006-01-06 00:20:26 -08001860 page = bio->bi_io_vec[bio->bi_vcnt].bv_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 if (bio_add_page(bio, page, len, 0) == 0) {
1862 /* stop here */
NeilBrownd11c1712006-01-06 00:20:26 -08001863 bio->bi_io_vec[bio->bi_vcnt].bv_page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 while (i > 0) {
1865 i--;
1866 bio = r1_bio->bios[i];
NeilBrown6a806c52005-07-15 03:56:35 -07001867 if (bio->bi_end_io==NULL)
1868 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 /* remove last page from this bio */
1870 bio->bi_vcnt--;
1871 bio->bi_size -= len;
1872 bio->bi_flags &= ~(1<< BIO_SEG_VALID);
1873 }
1874 goto bio_full;
1875 }
1876 }
1877 }
1878 nr_sectors += len>>9;
1879 sector_nr += len>>9;
NeilBrown191ea9b2005-06-21 17:17:23 -07001880 sync_blocks -= (len>>9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 } while (r1_bio->bios[disk]->bi_vcnt < RESYNC_PAGES);
1882 bio_full:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 r1_bio->sectors = nr_sectors;
1884
NeilBrownd11c1712006-01-06 00:20:26 -08001885 /* For a user-requested sync, we read all readable devices and do a
1886 * compare
1887 */
1888 if (test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) {
1889 atomic_set(&r1_bio->remaining, read_targets);
1890 for (i=0; i<conf->raid_disks; i++) {
1891 bio = r1_bio->bios[i];
1892 if (bio->bi_end_io == end_sync_read) {
NeilBrownddac7c72006-08-31 21:27:36 -07001893 md_sync_acct(bio->bi_bdev, nr_sectors);
NeilBrownd11c1712006-01-06 00:20:26 -08001894 generic_make_request(bio);
1895 }
1896 }
1897 } else {
1898 atomic_set(&r1_bio->remaining, 1);
1899 bio = r1_bio->bios[r1_bio->read_disk];
NeilBrownddac7c72006-08-31 21:27:36 -07001900 md_sync_acct(bio->bi_bdev, nr_sectors);
NeilBrownd11c1712006-01-06 00:20:26 -08001901 generic_make_request(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
NeilBrownd11c1712006-01-06 00:20:26 -08001903 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 return nr_sectors;
1905}
1906
Dan Williams80c3a6c2009-03-17 18:10:40 -07001907static sector_t raid1_size(mddev_t *mddev, sector_t sectors, int raid_disks)
1908{
1909 if (sectors)
1910 return sectors;
1911
1912 return mddev->dev_sectors;
1913}
1914
NeilBrown709ae482009-12-14 12:49:51 +11001915static conf_t *setup_conf(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916{
1917 conf_t *conf;
NeilBrown709ae482009-12-14 12:49:51 +11001918 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 mirror_info_t *disk;
1920 mdk_rdev_t *rdev;
NeilBrown709ae482009-12-14 12:49:51 +11001921 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
NeilBrown9ffae0c2006-01-06 00:20:32 -08001923 conf = kzalloc(sizeof(conf_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 if (!conf)
NeilBrown709ae482009-12-14 12:49:51 +11001925 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926
NeilBrown9ffae0c2006-01-06 00:20:32 -08001927 conf->mirrors = kzalloc(sizeof(struct mirror_info)*mddev->raid_disks,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 GFP_KERNEL);
1929 if (!conf->mirrors)
NeilBrown709ae482009-12-14 12:49:51 +11001930 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
NeilBrownddaf22a2006-01-06 00:20:19 -08001932 conf->tmppage = alloc_page(GFP_KERNEL);
1933 if (!conf->tmppage)
NeilBrown709ae482009-12-14 12:49:51 +11001934 goto abort;
NeilBrownddaf22a2006-01-06 00:20:19 -08001935
NeilBrown709ae482009-12-14 12:49:51 +11001936 conf->poolinfo = kzalloc(sizeof(*conf->poolinfo), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 if (!conf->poolinfo)
NeilBrown709ae482009-12-14 12:49:51 +11001938 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 conf->poolinfo->raid_disks = mddev->raid_disks;
1940 conf->r1bio_pool = mempool_create(NR_RAID1_BIOS, r1bio_pool_alloc,
1941 r1bio_pool_free,
1942 conf->poolinfo);
1943 if (!conf->r1bio_pool)
NeilBrown709ae482009-12-14 12:49:51 +11001944 goto abort;
1945
NeilBrowned9bfdf2009-10-16 15:55:44 +11001946 conf->poolinfo->mddev = mddev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
Neil Browne7e72bf2008-05-14 16:05:54 -07001948 spin_lock_init(&conf->device_lock);
Cheng Renquan159ec1f2009-01-09 08:31:08 +11001949 list_for_each_entry(rdev, &mddev->disks, same_set) {
NeilBrown709ae482009-12-14 12:49:51 +11001950 int disk_idx = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 if (disk_idx >= mddev->raid_disks
1952 || disk_idx < 0)
1953 continue;
1954 disk = conf->mirrors + disk_idx;
1955
1956 disk->rdev = rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957
1958 disk->head_position = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 }
1960 conf->raid_disks = mddev->raid_disks;
1961 conf->mddev = mddev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 INIT_LIST_HEAD(&conf->retry_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963
1964 spin_lock_init(&conf->resync_lock);
NeilBrown17999be2006-01-06 00:20:12 -08001965 init_waitqueue_head(&conf->wait_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966
NeilBrown191ea9b2005-06-21 17:17:23 -07001967 bio_list_init(&conf->pending_bio_list);
1968 bio_list_init(&conf->flushing_bio_list);
1969
NeilBrown709ae482009-12-14 12:49:51 +11001970 conf->last_used = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 for (i = 0; i < conf->raid_disks; i++) {
1972
1973 disk = conf->mirrors + i;
1974
NeilBrown5fd6c1d2006-06-26 00:27:40 -07001975 if (!disk->rdev ||
1976 !test_bit(In_sync, &disk->rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 disk->head_position = 0;
NeilBrown918f0232007-08-22 14:01:52 -07001978 if (disk->rdev)
1979 conf->fullsync = 1;
NeilBrown709ae482009-12-14 12:49:51 +11001980 } else if (conf->last_used < 0)
1981 /*
1982 * The first working device is used as a
1983 * starting point to read balancing.
1984 */
1985 conf->last_used = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 }
NeilBrown709ae482009-12-14 12:49:51 +11001987
1988 err = -EIO;
1989 if (conf->last_used < 0) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001990 printk(KERN_ERR "md/raid1:%s: no operational mirrors\n",
NeilBrown709ae482009-12-14 12:49:51 +11001991 mdname(mddev));
1992 goto abort;
NeilBrown11ce99e2006-10-03 01:15:52 -07001993 }
NeilBrown709ae482009-12-14 12:49:51 +11001994 err = -ENOMEM;
1995 conf->thread = md_register_thread(raid1d, mddev, NULL);
1996 if (!conf->thread) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001997 printk(KERN_ERR
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001998 "md/raid1:%s: couldn't allocate thread\n",
NeilBrown191ea9b2005-06-21 17:17:23 -07001999 mdname(mddev));
NeilBrown709ae482009-12-14 12:49:51 +11002000 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 }
NeilBrown191ea9b2005-06-21 17:17:23 -07002002
NeilBrown709ae482009-12-14 12:49:51 +11002003 return conf;
2004
2005 abort:
2006 if (conf) {
2007 if (conf->r1bio_pool)
2008 mempool_destroy(conf->r1bio_pool);
2009 kfree(conf->mirrors);
2010 safe_put_page(conf->tmppage);
2011 kfree(conf->poolinfo);
2012 kfree(conf);
2013 }
2014 return ERR_PTR(err);
2015}
2016
2017static int run(mddev_t *mddev)
2018{
2019 conf_t *conf;
2020 int i;
2021 mdk_rdev_t *rdev;
2022
2023 if (mddev->level != 1) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002024 printk(KERN_ERR "md/raid1:%s: raid level not set to mirroring (%d)\n",
NeilBrown709ae482009-12-14 12:49:51 +11002025 mdname(mddev), mddev->level);
2026 return -EIO;
2027 }
2028 if (mddev->reshape_position != MaxSector) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002029 printk(KERN_ERR "md/raid1:%s: reshape_position set but not supported\n",
NeilBrown709ae482009-12-14 12:49:51 +11002030 mdname(mddev));
2031 return -EIO;
2032 }
2033 /*
2034 * copy the already verified devices into our private RAID1
2035 * bookkeeping area. [whatever we allocate in run(),
2036 * should be freed in stop()]
2037 */
2038 if (mddev->private == NULL)
2039 conf = setup_conf(mddev);
2040 else
2041 conf = mddev->private;
2042
2043 if (IS_ERR(conf))
2044 return PTR_ERR(conf);
2045
2046 mddev->queue->queue_lock = &conf->device_lock;
2047 list_for_each_entry(rdev, &mddev->disks, same_set) {
2048 disk_stack_limits(mddev->gendisk, rdev->bdev,
2049 rdev->data_offset << 9);
2050 /* as we don't honour merge_bvec_fn, we must never risk
NeilBrown627a2d32010-03-08 16:44:38 +11002051 * violating it, so limit ->max_segments to 1 lying within
2052 * a single page, as a one page request is never in violation.
NeilBrown709ae482009-12-14 12:49:51 +11002053 */
NeilBrown627a2d32010-03-08 16:44:38 +11002054 if (rdev->bdev->bd_disk->queue->merge_bvec_fn) {
2055 blk_queue_max_segments(mddev->queue, 1);
2056 blk_queue_segment_boundary(mddev->queue,
2057 PAGE_CACHE_SIZE - 1);
2058 }
NeilBrown709ae482009-12-14 12:49:51 +11002059 }
2060
2061 mddev->degraded = 0;
2062 for (i=0; i < conf->raid_disks; i++)
2063 if (conf->mirrors[i].rdev == NULL ||
2064 !test_bit(In_sync, &conf->mirrors[i].rdev->flags) ||
2065 test_bit(Faulty, &conf->mirrors[i].rdev->flags))
2066 mddev->degraded++;
2067
2068 if (conf->raid_disks - mddev->degraded == 1)
2069 mddev->recovery_cp = MaxSector;
2070
Andre Noll8c6ac862009-06-18 08:48:06 +10002071 if (mddev->recovery_cp != MaxSector)
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002072 printk(KERN_NOTICE "md/raid1:%s: not clean"
Andre Noll8c6ac862009-06-18 08:48:06 +10002073 " -- starting background reconstruction\n",
2074 mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 printk(KERN_INFO
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002076 "md/raid1:%s: active with %d out of %d mirrors\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 mdname(mddev), mddev->raid_disks - mddev->degraded,
2078 mddev->raid_disks);
NeilBrown709ae482009-12-14 12:49:51 +11002079
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 /*
2081 * Ok, everything is just fine now
2082 */
NeilBrown709ae482009-12-14 12:49:51 +11002083 mddev->thread = conf->thread;
2084 conf->thread = NULL;
2085 mddev->private = conf;
2086
Dan Williams1f403622009-03-31 14:59:03 +11002087 md_set_array_sectors(mddev, raid1_size(mddev, 0, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
NeilBrown7a5febe2005-05-16 21:53:16 -07002089 mddev->queue->unplug_fn = raid1_unplug;
NeilBrown0d129222006-10-03 01:15:54 -07002090 mddev->queue->backing_dev_info.congested_fn = raid1_congested;
2091 mddev->queue->backing_dev_info.congested_data = mddev;
Andre Nollac5e7112009-08-03 10:59:47 +10002092 md_integrity_register(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094}
2095
2096static int stop(mddev_t *mddev)
2097{
NeilBrown070ec552009-06-16 16:54:21 +10002098 conf_t *conf = mddev->private;
NeilBrown4b6d2872005-09-09 16:23:47 -07002099 struct bitmap *bitmap = mddev->bitmap;
NeilBrown4b6d2872005-09-09 16:23:47 -07002100
2101 /* wait for behind writes to complete */
NeilBrowne5551902010-03-31 11:21:44 +11002102 if (bitmap && atomic_read(&bitmap->behind_writes) > 0) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002103 printk(KERN_INFO "md/raid1:%s: behind writes in progress - waiting to stop.\n",
2104 mdname(mddev));
NeilBrown4b6d2872005-09-09 16:23:47 -07002105 /* need to kick something here to make sure I/O goes? */
NeilBrowne5551902010-03-31 11:21:44 +11002106 wait_event(bitmap->behind_wait,
2107 atomic_read(&bitmap->behind_writes) == 0);
NeilBrown4b6d2872005-09-09 16:23:47 -07002108 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
NeilBrown409c57f2009-03-31 14:39:39 +11002110 raise_barrier(conf);
2111 lower_barrier(conf);
2112
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 md_unregister_thread(mddev->thread);
2114 mddev->thread = NULL;
2115 blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/
2116 if (conf->r1bio_pool)
2117 mempool_destroy(conf->r1bio_pool);
Jesper Juhl990a8ba2005-06-21 17:17:30 -07002118 kfree(conf->mirrors);
2119 kfree(conf->poolinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 kfree(conf);
2121 mddev->private = NULL;
2122 return 0;
2123}
2124
2125static int raid1_resize(mddev_t *mddev, sector_t sectors)
2126{
2127 /* no resync is happening, and there is enough space
2128 * on all devices, so we can resize.
2129 * We need to make sure resync covers any new space.
2130 * If the array is shrinking we should possibly wait until
2131 * any io in the removed space completes, but it hardly seems
2132 * worth it.
2133 */
Dan Williams1f403622009-03-31 14:59:03 +11002134 md_set_array_sectors(mddev, raid1_size(mddev, sectors, 0));
Dan Williamsb522adc2009-03-31 15:00:31 +11002135 if (mddev->array_sectors > raid1_size(mddev, sectors, 0))
2136 return -EINVAL;
Andre Nollf233ea52008-07-21 17:05:22 +10002137 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10002138 revalidate_disk(mddev->gendisk);
Dan Williamsb522adc2009-03-31 15:00:31 +11002139 if (sectors > mddev->dev_sectors &&
Andre Nollf233ea52008-07-21 17:05:22 +10002140 mddev->recovery_cp == MaxSector) {
Andre Noll58c0fed2009-03-31 14:33:13 +11002141 mddev->recovery_cp = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
2143 }
Dan Williamsb522adc2009-03-31 15:00:31 +11002144 mddev->dev_sectors = sectors;
NeilBrown4b5c7ae2005-07-27 11:43:28 -07002145 mddev->resync_max_sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 return 0;
2147}
2148
NeilBrown63c70c42006-03-27 01:18:13 -08002149static int raid1_reshape(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150{
2151 /* We need to:
2152 * 1/ resize the r1bio_pool
2153 * 2/ resize conf->mirrors
2154 *
2155 * We allocate a new r1bio_pool if we can.
2156 * Then raise a device barrier and wait until all IO stops.
2157 * Then resize conf->mirrors and swap in the new r1bio pool.
NeilBrown6ea9c072005-06-21 17:17:09 -07002158 *
2159 * At the same time, we "pack" the devices so that all the missing
2160 * devices have the higher raid_disk numbers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 */
2162 mempool_t *newpool, *oldpool;
2163 struct pool_info *newpoolinfo;
2164 mirror_info_t *newmirrors;
NeilBrown070ec552009-06-16 16:54:21 +10002165 conf_t *conf = mddev->private;
NeilBrown63c70c42006-03-27 01:18:13 -08002166 int cnt, raid_disks;
NeilBrownc04be0a2006-10-03 01:15:53 -07002167 unsigned long flags;
Dan Williamsb5470dc2008-06-27 21:44:04 -07002168 int d, d2, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169
NeilBrown63c70c42006-03-27 01:18:13 -08002170 /* Cannot change chunk_size, layout, or level */
Andre Noll664e7c42009-06-18 08:45:27 +10002171 if (mddev->chunk_sectors != mddev->new_chunk_sectors ||
NeilBrown63c70c42006-03-27 01:18:13 -08002172 mddev->layout != mddev->new_layout ||
2173 mddev->level != mddev->new_level) {
Andre Noll664e7c42009-06-18 08:45:27 +10002174 mddev->new_chunk_sectors = mddev->chunk_sectors;
NeilBrown63c70c42006-03-27 01:18:13 -08002175 mddev->new_layout = mddev->layout;
2176 mddev->new_level = mddev->level;
2177 return -EINVAL;
2178 }
2179
Dan Williamsb5470dc2008-06-27 21:44:04 -07002180 err = md_allow_write(mddev);
2181 if (err)
2182 return err;
NeilBrown2a2275d2007-01-26 00:57:11 -08002183
NeilBrown63c70c42006-03-27 01:18:13 -08002184 raid_disks = mddev->raid_disks + mddev->delta_disks;
2185
NeilBrown6ea9c072005-06-21 17:17:09 -07002186 if (raid_disks < conf->raid_disks) {
2187 cnt=0;
2188 for (d= 0; d < conf->raid_disks; d++)
2189 if (conf->mirrors[d].rdev)
2190 cnt++;
2191 if (cnt > raid_disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 return -EBUSY;
NeilBrown6ea9c072005-06-21 17:17:09 -07002193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194
2195 newpoolinfo = kmalloc(sizeof(*newpoolinfo), GFP_KERNEL);
2196 if (!newpoolinfo)
2197 return -ENOMEM;
2198 newpoolinfo->mddev = mddev;
2199 newpoolinfo->raid_disks = raid_disks;
2200
2201 newpool = mempool_create(NR_RAID1_BIOS, r1bio_pool_alloc,
2202 r1bio_pool_free, newpoolinfo);
2203 if (!newpool) {
2204 kfree(newpoolinfo);
2205 return -ENOMEM;
2206 }
NeilBrown9ffae0c2006-01-06 00:20:32 -08002207 newmirrors = kzalloc(sizeof(struct mirror_info) * raid_disks, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 if (!newmirrors) {
2209 kfree(newpoolinfo);
2210 mempool_destroy(newpool);
2211 return -ENOMEM;
2212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213
NeilBrown17999be2006-01-06 00:20:12 -08002214 raise_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
2216 /* ok, everything is stopped */
2217 oldpool = conf->r1bio_pool;
2218 conf->r1bio_pool = newpool;
NeilBrown6ea9c072005-06-21 17:17:09 -07002219
NeilBrowna88aa782007-08-22 14:01:53 -07002220 for (d = d2 = 0; d < conf->raid_disks; d++) {
2221 mdk_rdev_t *rdev = conf->mirrors[d].rdev;
2222 if (rdev && rdev->raid_disk != d2) {
2223 char nm[20];
2224 sprintf(nm, "rd%d", rdev->raid_disk);
2225 sysfs_remove_link(&mddev->kobj, nm);
2226 rdev->raid_disk = d2;
2227 sprintf(nm, "rd%d", rdev->raid_disk);
2228 sysfs_remove_link(&mddev->kobj, nm);
2229 if (sysfs_create_link(&mddev->kobj,
2230 &rdev->kobj, nm))
2231 printk(KERN_WARNING
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002232 "md/raid1:%s: cannot register "
2233 "%s\n",
2234 mdname(mddev), nm);
NeilBrown6ea9c072005-06-21 17:17:09 -07002235 }
NeilBrowna88aa782007-08-22 14:01:53 -07002236 if (rdev)
2237 newmirrors[d2++].rdev = rdev;
2238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 kfree(conf->mirrors);
2240 conf->mirrors = newmirrors;
2241 kfree(conf->poolinfo);
2242 conf->poolinfo = newpoolinfo;
2243
NeilBrownc04be0a2006-10-03 01:15:53 -07002244 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 mddev->degraded += (raid_disks - conf->raid_disks);
NeilBrownc04be0a2006-10-03 01:15:53 -07002246 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 conf->raid_disks = mddev->raid_disks = raid_disks;
NeilBrown63c70c42006-03-27 01:18:13 -08002248 mddev->delta_disks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249
NeilBrown6ea9c072005-06-21 17:17:09 -07002250 conf->last_used = 0; /* just make sure it is in-range */
NeilBrown17999be2006-01-06 00:20:12 -08002251 lower_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252
2253 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
2254 md_wakeup_thread(mddev->thread);
2255
2256 mempool_destroy(oldpool);
2257 return 0;
2258}
2259
NeilBrown500af872005-09-09 16:23:58 -07002260static void raid1_quiesce(mddev_t *mddev, int state)
NeilBrown36fa3062005-09-09 16:23:45 -07002261{
NeilBrown070ec552009-06-16 16:54:21 +10002262 conf_t *conf = mddev->private;
NeilBrown36fa3062005-09-09 16:23:45 -07002263
2264 switch(state) {
NeilBrown6eef4b22009-12-14 12:49:51 +11002265 case 2: /* wake for suspend */
2266 wake_up(&conf->wait_barrier);
2267 break;
NeilBrown9e6603d2005-09-09 16:23:48 -07002268 case 1:
NeilBrown17999be2006-01-06 00:20:12 -08002269 raise_barrier(conf);
NeilBrown36fa3062005-09-09 16:23:45 -07002270 break;
NeilBrown9e6603d2005-09-09 16:23:48 -07002271 case 0:
NeilBrown17999be2006-01-06 00:20:12 -08002272 lower_barrier(conf);
NeilBrown36fa3062005-09-09 16:23:45 -07002273 break;
2274 }
NeilBrown36fa3062005-09-09 16:23:45 -07002275}
2276
NeilBrown709ae482009-12-14 12:49:51 +11002277static void *raid1_takeover(mddev_t *mddev)
2278{
2279 /* raid1 can take over:
2280 * raid5 with 2 devices, any layout or chunk size
2281 */
2282 if (mddev->level == 5 && mddev->raid_disks == 2) {
2283 conf_t *conf;
2284 mddev->new_level = 1;
2285 mddev->new_layout = 0;
2286 mddev->new_chunk_sectors = 0;
2287 conf = setup_conf(mddev);
2288 if (!IS_ERR(conf))
2289 conf->barrier = 1;
2290 return conf;
2291 }
2292 return ERR_PTR(-EINVAL);
2293}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294
NeilBrown2604b702006-01-06 00:20:36 -08002295static struct mdk_personality raid1_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296{
2297 .name = "raid1",
NeilBrown2604b702006-01-06 00:20:36 -08002298 .level = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 .owner = THIS_MODULE,
2300 .make_request = make_request,
2301 .run = run,
2302 .stop = stop,
2303 .status = status,
2304 .error_handler = error,
2305 .hot_add_disk = raid1_add_disk,
2306 .hot_remove_disk= raid1_remove_disk,
2307 .spare_active = raid1_spare_active,
2308 .sync_request = sync_request,
2309 .resize = raid1_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07002310 .size = raid1_size,
NeilBrown63c70c42006-03-27 01:18:13 -08002311 .check_reshape = raid1_reshape,
NeilBrown36fa3062005-09-09 16:23:45 -07002312 .quiesce = raid1_quiesce,
NeilBrown709ae482009-12-14 12:49:51 +11002313 .takeover = raid1_takeover,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314};
2315
2316static int __init raid_init(void)
2317{
NeilBrown2604b702006-01-06 00:20:36 -08002318 return register_md_personality(&raid1_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319}
2320
2321static void raid_exit(void)
2322{
NeilBrown2604b702006-01-06 00:20:36 -08002323 unregister_md_personality(&raid1_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324}
2325
2326module_init(raid_init);
2327module_exit(raid_exit);
2328MODULE_LICENSE("GPL");
NeilBrown0efb9e62009-12-14 12:49:58 +11002329MODULE_DESCRIPTION("RAID1 (mirroring) personality for MD");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330MODULE_ALIAS("md-personality-3"); /* RAID1 */
NeilBrownd9d166c2006-01-06 00:20:51 -08002331MODULE_ALIAS("md-raid1");
NeilBrown2604b702006-01-06 00:20:36 -08002332MODULE_ALIAS("md-level-1");