blob: b9d6da1272f12d2bfc2b6b860d772ba543e8768f [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
NeilBrown17999be2006-01-06 00:20:12 -080055static void allow_barrier(conf_t *conf);
56static void lower_barrier(conf_t *conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Al Virodd0fc662005-10-07 07:46:04 +010058static void * r1bio_pool_alloc(gfp_t gfp_flags, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059{
60 struct pool_info *pi = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 int size = offsetof(r1bio_t, bios[pi->raid_disks]);
62
63 /* allocate a r1bio with room for raid_disks entries in the bios array */
Jens Axboe7eaceac2011-03-10 08:52:07 +010064 return kzalloc(size, gfp_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065}
66
67static void r1bio_pool_free(void *r1_bio, void *data)
68{
69 kfree(r1_bio);
70}
71
72#define RESYNC_BLOCK_SIZE (64*1024)
73//#define RESYNC_BLOCK_SIZE PAGE_SIZE
74#define RESYNC_SECTORS (RESYNC_BLOCK_SIZE >> 9)
75#define RESYNC_PAGES ((RESYNC_BLOCK_SIZE + PAGE_SIZE-1) / PAGE_SIZE)
76#define RESYNC_WINDOW (2048*1024)
77
Al Virodd0fc662005-10-07 07:46:04 +010078static void * r1buf_pool_alloc(gfp_t gfp_flags, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070079{
80 struct pool_info *pi = data;
81 struct page *page;
82 r1bio_t *r1_bio;
83 struct bio *bio;
84 int i, j;
85
86 r1_bio = r1bio_pool_alloc(gfp_flags, pi);
Jens Axboe7eaceac2011-03-10 08:52:07 +010087 if (!r1_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90 /*
91 * Allocate bios : 1 for reading, n-1 for writing
92 */
93 for (j = pi->raid_disks ; j-- ; ) {
NeilBrown67465572010-10-26 17:33:54 +110094 bio = bio_kmalloc(gfp_flags, RESYNC_PAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 if (!bio)
96 goto out_free_bio;
97 r1_bio->bios[j] = bio;
98 }
99 /*
100 * Allocate RESYNC_PAGES data pages and attach them to
NeilBrownd11c1712006-01-06 00:20:26 -0800101 * the first bio.
102 * If this is a user-requested check/repair, allocate
103 * RESYNC_PAGES for each bio.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 */
NeilBrownd11c1712006-01-06 00:20:26 -0800105 if (test_bit(MD_RECOVERY_REQUESTED, &pi->mddev->recovery))
106 j = pi->raid_disks;
107 else
108 j = 1;
109 while(j--) {
110 bio = r1_bio->bios[j];
111 for (i = 0; i < RESYNC_PAGES; i++) {
112 page = alloc_page(gfp_flags);
113 if (unlikely(!page))
114 goto out_free_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
NeilBrownd11c1712006-01-06 00:20:26 -0800116 bio->bi_io_vec[i].bv_page = page;
NeilBrown303a0e12009-04-06 14:40:38 +1000117 bio->bi_vcnt = i+1;
NeilBrownd11c1712006-01-06 00:20:26 -0800118 }
119 }
120 /* If not user-requests, copy the page pointers to all bios */
121 if (!test_bit(MD_RECOVERY_REQUESTED, &pi->mddev->recovery)) {
122 for (i=0; i<RESYNC_PAGES ; i++)
123 for (j=1; j<pi->raid_disks; j++)
124 r1_bio->bios[j]->bi_io_vec[i].bv_page =
125 r1_bio->bios[0]->bi_io_vec[i].bv_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 }
127
128 r1_bio->master_bio = NULL;
129
130 return r1_bio;
131
132out_free_pages:
NeilBrown303a0e12009-04-06 14:40:38 +1000133 for (j=0 ; j < pi->raid_disks; j++)
134 for (i=0; i < r1_bio->bios[j]->bi_vcnt ; i++)
135 put_page(r1_bio->bios[j]->bi_io_vec[i].bv_page);
NeilBrownd11c1712006-01-06 00:20:26 -0800136 j = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137out_free_bio:
138 while ( ++j < pi->raid_disks )
139 bio_put(r1_bio->bios[j]);
140 r1bio_pool_free(r1_bio, data);
141 return NULL;
142}
143
144static void r1buf_pool_free(void *__r1_bio, void *data)
145{
146 struct pool_info *pi = data;
NeilBrownd11c1712006-01-06 00:20:26 -0800147 int i,j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 r1bio_t *r1bio = __r1_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
NeilBrownd11c1712006-01-06 00:20:26 -0800150 for (i = 0; i < RESYNC_PAGES; i++)
151 for (j = pi->raid_disks; j-- ;) {
152 if (j == 0 ||
153 r1bio->bios[j]->bi_io_vec[i].bv_page !=
154 r1bio->bios[0]->bi_io_vec[i].bv_page)
NeilBrown1345b1d2006-01-06 00:20:40 -0800155 safe_put_page(r1bio->bios[j]->bi_io_vec[i].bv_page);
NeilBrownd11c1712006-01-06 00:20:26 -0800156 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 for (i=0 ; i < pi->raid_disks; i++)
158 bio_put(r1bio->bios[i]);
159
160 r1bio_pool_free(r1bio, data);
161}
162
163static void put_all_bios(conf_t *conf, r1bio_t *r1_bio)
164{
165 int i;
166
167 for (i = 0; i < conf->raid_disks; i++) {
168 struct bio **bio = r1_bio->bios + i;
NeilBrowncf30a472006-01-06 00:20:23 -0800169 if (*bio && *bio != IO_BLOCKED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 bio_put(*bio);
171 *bio = NULL;
172 }
173}
174
Arjan van de Ven858119e2006-01-14 13:20:43 -0800175static void free_r1bio(r1bio_t *r1_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
NeilBrown070ec552009-06-16 16:54:21 +1000177 conf_t *conf = r1_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
179 /*
180 * Wake up any possible resync thread that waits for the device
181 * to go idle.
182 */
NeilBrown17999be2006-01-06 00:20:12 -0800183 allow_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
185 put_all_bios(conf, r1_bio);
186 mempool_free(r1_bio, conf->r1bio_pool);
187}
188
Arjan van de Ven858119e2006-01-14 13:20:43 -0800189static void put_buf(r1bio_t *r1_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
NeilBrown070ec552009-06-16 16:54:21 +1000191 conf_t *conf = r1_bio->mddev->private;
NeilBrown3e198f72006-01-06 00:20:21 -0800192 int i;
193
194 for (i=0; i<conf->raid_disks; i++) {
195 struct bio *bio = r1_bio->bios[i];
196 if (bio->bi_end_io)
197 rdev_dec_pending(conf->mirrors[i].rdev, r1_bio->mddev);
198 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 mempool_free(r1_bio, conf->r1buf_pool);
201
NeilBrown17999be2006-01-06 00:20:12 -0800202 lower_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
204
205static void reschedule_retry(r1bio_t *r1_bio)
206{
207 unsigned long flags;
208 mddev_t *mddev = r1_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +1000209 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211 spin_lock_irqsave(&conf->device_lock, flags);
212 list_add(&r1_bio->retry_list, &conf->retry_list);
NeilBrownddaf22a2006-01-06 00:20:19 -0800213 conf->nr_queued ++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 spin_unlock_irqrestore(&conf->device_lock, flags);
215
NeilBrown17999be2006-01-06 00:20:12 -0800216 wake_up(&conf->wait_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 md_wakeup_thread(mddev->thread);
218}
219
220/*
221 * raid_end_bio_io() is called when we have finished servicing a mirrored
222 * operation and are ready to return a success/failure code to the buffer
223 * cache layer.
224 */
225static void raid_end_bio_io(r1bio_t *r1_bio)
226{
227 struct bio *bio = r1_bio->master_bio;
228
NeilBrown4b6d2872005-09-09 16:23:47 -0700229 /* if nobody has done the final endio yet, do it now */
230 if (!test_and_set_bit(R1BIO_Returned, &r1_bio->state)) {
231 PRINTK(KERN_DEBUG "raid1: sync end %s on sectors %llu-%llu\n",
232 (bio_data_dir(bio) == WRITE) ? "write" : "read",
233 (unsigned long long) bio->bi_sector,
234 (unsigned long long) bio->bi_sector +
235 (bio->bi_size >> 9) - 1);
236
NeilBrown6712ecf2007-09-27 12:47:43 +0200237 bio_endio(bio,
NeilBrown4b6d2872005-09-09 16:23:47 -0700238 test_bit(R1BIO_Uptodate, &r1_bio->state) ? 0 : -EIO);
239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 free_r1bio(r1_bio);
241}
242
243/*
244 * Update disk head position estimator based on IRQ completion info.
245 */
246static inline void update_head_pos(int disk, r1bio_t *r1_bio)
247{
NeilBrown070ec552009-06-16 16:54:21 +1000248 conf_t *conf = r1_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250 conf->mirrors[disk].head_position =
251 r1_bio->sector + (r1_bio->sectors);
252}
253
NeilBrown6712ecf2007-09-27 12:47:43 +0200254static void raid1_end_read_request(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
256 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
H Hartley Sweeten7b928132010-03-08 16:02:40 +1100257 r1bio_t *r1_bio = bio->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 int mirror;
NeilBrown070ec552009-06-16 16:54:21 +1000259 conf_t *conf = r1_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 mirror = r1_bio->read_disk;
262 /*
263 * this branch is our 'one mirror IO has finished' event handler:
264 */
NeilBrownddaf22a2006-01-06 00:20:19 -0800265 update_head_pos(mirror, r1_bio);
266
NeilBrowndd00a992007-05-10 03:15:50 -0700267 if (uptodate)
268 set_bit(R1BIO_Uptodate, &r1_bio->state);
269 else {
270 /* If all other devices have failed, we want to return
271 * the error upwards rather than fail the last device.
272 * Here we redefine "uptodate" to mean "Don't want to retry"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 */
NeilBrowndd00a992007-05-10 03:15:50 -0700274 unsigned long flags;
275 spin_lock_irqsave(&conf->device_lock, flags);
276 if (r1_bio->mddev->degraded == conf->raid_disks ||
277 (r1_bio->mddev->degraded == conf->raid_disks-1 &&
278 !test_bit(Faulty, &conf->mirrors[mirror].rdev->flags)))
279 uptodate = 1;
280 spin_unlock_irqrestore(&conf->device_lock, flags);
281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
NeilBrowndd00a992007-05-10 03:15:50 -0700283 if (uptodate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 raid_end_bio_io(r1_bio);
NeilBrowndd00a992007-05-10 03:15:50 -0700285 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 /*
287 * oops, read error:
288 */
289 char b[BDEVNAME_SIZE];
290 if (printk_ratelimit())
NeilBrown9dd1e2f2010-05-03 14:30:35 +1000291 printk(KERN_ERR "md/raid1:%s: %s: rescheduling sector %llu\n",
292 mdname(conf->mddev),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 bdevname(conf->mirrors[mirror].rdev->bdev,b), (unsigned long long)r1_bio->sector);
294 reschedule_retry(r1_bio);
295 }
296
297 rdev_dec_pending(conf->mirrors[mirror].rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298}
299
NeilBrown4e780642010-10-19 12:54:01 +1100300static void r1_bio_write_done(r1bio_t *r1_bio, int vcnt, struct bio_vec *bv,
301 int behind)
302{
303 if (atomic_dec_and_test(&r1_bio->remaining))
304 {
305 /* it really is the end of this request */
306 if (test_bit(R1BIO_BehindIO, &r1_bio->state)) {
307 /* free extra copy of the data pages */
308 int i = vcnt;
309 while (i--)
310 safe_put_page(bv[i].bv_page);
311 }
312 /* clear the bitmap if all writes complete successfully */
313 bitmap_endwrite(r1_bio->mddev->bitmap, r1_bio->sector,
314 r1_bio->sectors,
315 !test_bit(R1BIO_Degraded, &r1_bio->state),
316 behind);
317 md_write_end(r1_bio->mddev);
318 raid_end_bio_io(r1_bio);
319 }
320}
321
NeilBrown6712ecf2007-09-27 12:47:43 +0200322static void raid1_end_write_request(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
324 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
H Hartley Sweeten7b928132010-03-08 16:02:40 +1100325 r1bio_t *r1_bio = bio->bi_private;
NeilBrowna9701a32005-11-08 21:39:34 -0800326 int mirror, behind = test_bit(R1BIO_BehindIO, &r1_bio->state);
NeilBrown070ec552009-06-16 16:54:21 +1000327 conf_t *conf = r1_bio->mddev->private;
NeilBrown04b857f2006-03-09 17:33:46 -0800328 struct bio *to_put = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331 for (mirror = 0; mirror < conf->raid_disks; mirror++)
332 if (r1_bio->bios[mirror] == bio)
333 break;
334
Tejun Heoe9c74692010-09-03 11:56:18 +0200335 /*
336 * 'one mirror IO has finished' event handler:
337 */
338 r1_bio->bios[mirror] = NULL;
339 to_put = bio;
340 if (!uptodate) {
341 md_error(r1_bio->mddev, conf->mirrors[mirror].rdev);
342 /* an I/O failed, we can't clear the bitmap */
343 set_bit(R1BIO_Degraded, &r1_bio->state);
344 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 /*
Tejun Heoe9c74692010-09-03 11:56:18 +0200346 * Set R1BIO_Uptodate in our master bio, so that we
347 * will return a good error code for to the higher
348 * levels even if IO on some other mirrored buffer
349 * fails.
350 *
351 * The 'master' represents the composite IO operation
352 * to user-side. So if something waits for IO, then it
353 * will wait for the 'master' bio.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 */
Tejun Heoe9c74692010-09-03 11:56:18 +0200355 set_bit(R1BIO_Uptodate, &r1_bio->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Tejun Heoe9c74692010-09-03 11:56:18 +0200357 update_head_pos(mirror, r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
Tejun Heoe9c74692010-09-03 11:56:18 +0200359 if (behind) {
360 if (test_bit(WriteMostly, &conf->mirrors[mirror].rdev->flags))
361 atomic_dec(&r1_bio->behind_remaining);
NeilBrown4b6d2872005-09-09 16:23:47 -0700362
Tejun Heoe9c74692010-09-03 11:56:18 +0200363 /*
364 * In behind mode, we ACK the master bio once the I/O
365 * has safely reached all non-writemostly
366 * disks. Setting the Returned bit ensures that this
367 * gets done only once -- we don't ever want to return
368 * -EIO here, instead we'll wait
369 */
370 if (atomic_read(&r1_bio->behind_remaining) >= (atomic_read(&r1_bio->remaining)-1) &&
371 test_bit(R1BIO_Uptodate, &r1_bio->state)) {
372 /* Maybe we can return now */
373 if (!test_and_set_bit(R1BIO_Returned, &r1_bio->state)) {
374 struct bio *mbio = r1_bio->master_bio;
375 PRINTK(KERN_DEBUG "raid1: behind end write sectors %llu-%llu\n",
376 (unsigned long long) mbio->bi_sector,
377 (unsigned long long) mbio->bi_sector +
378 (mbio->bi_size >> 9) - 1);
379 bio_endio(mbio, 0);
NeilBrown4b6d2872005-09-09 16:23:47 -0700380 }
381 }
382 }
Tejun Heoe9c74692010-09-03 11:56:18 +0200383 rdev_dec_pending(conf->mirrors[mirror].rdev, conf->mddev);
384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 * Let's see if all mirrored write operations have finished
387 * already.
388 */
NeilBrown4e780642010-10-19 12:54:01 +1100389 r1_bio_write_done(r1_bio, bio->bi_vcnt, bio->bi_io_vec, behind);
NeilBrownc70810b2006-06-26 00:27:35 -0700390
NeilBrown04b857f2006-03-09 17:33:46 -0800391 if (to_put)
392 bio_put(to_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393}
394
395
396/*
397 * This routine returns the disk from which the requested read should
398 * be done. There is a per-array 'next expected sequential IO' sector
399 * number - if this matches on the next IO then we use the last disk.
400 * There is also a per-disk 'last know head position' sector that is
401 * maintained from IRQ contexts, both the normal and the resync IO
402 * completion handlers update this position correctly. If there is no
403 * perfect sequential match then we pick the disk whose head is closest.
404 *
405 * If there are 2 mirrors in the same 2 devices, performance degrades
406 * because position is mirror, not device based.
407 *
408 * The rdev for the device selected will have nr_pending incremented.
409 */
410static int read_balance(conf_t *conf, r1bio_t *r1_bio)
411{
NeilBrownaf3a2cd2010-05-08 08:20:17 +1000412 const sector_t this_sector = r1_bio->sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 const int sectors = r1_bio->sectors;
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000414 int start_disk;
NeilBrown76073052011-05-11 14:34:56 +1000415 int best_disk;
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000416 int i;
NeilBrown76073052011-05-11 14:34:56 +1000417 sector_t best_dist;
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700418 mdk_rdev_t *rdev;
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000419 int choose_first;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 rcu_read_lock();
422 /*
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700423 * Check if we can balance. We can balance on the whole
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 * device if no resync is going on, or below the resync window.
425 * We take the first readable disk when above the resync window.
426 */
427 retry:
NeilBrown76073052011-05-11 14:34:56 +1000428 best_disk = -1;
429 best_dist = MaxSector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 if (conf->mddev->recovery_cp < MaxSector &&
431 (this_sector + sectors >= conf->next_resync)) {
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000432 choose_first = 1;
433 start_disk = 0;
434 } else {
435 choose_first = 0;
436 start_disk = conf->last_used;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 }
438
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000439 for (i = 0 ; i < conf->raid_disks ; i++) {
NeilBrown76073052011-05-11 14:34:56 +1000440 sector_t dist;
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000441 int disk = start_disk + i;
442 if (disk >= conf->raid_disks)
443 disk -= conf->raid_disks;
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700444
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000445 rdev = rcu_dereference(conf->mirrors[disk].rdev);
446 if (r1_bio->bios[disk] == IO_BLOCKED
447 || rdev == NULL
NeilBrown76073052011-05-11 14:34:56 +1000448 || test_bit(Faulty, &rdev->flags))
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000449 continue;
NeilBrown76073052011-05-11 14:34:56 +1000450 if (!test_bit(In_sync, &rdev->flags) &&
451 rdev->recovery_offset < this_sector + sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 continue;
NeilBrown76073052011-05-11 14:34:56 +1000453 if (test_bit(WriteMostly, &rdev->flags)) {
454 /* Don't balance among write-mostly, just
455 * use the first as a last resort */
456 if (best_disk < 0)
457 best_disk = disk;
458 continue;
459 }
460 /* This is a reasonable device to use. It might
461 * even be best.
462 */
463 dist = abs(this_sector - conf->mirrors[disk].head_position);
464 if (choose_first
465 /* Don't change to another disk for sequential reads */
466 || conf->next_seq_sect == this_sector
467 || dist == 0
468 /* If device is idle, use it */
469 || atomic_read(&rdev->nr_pending) == 0) {
470 best_disk = disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 break;
472 }
NeilBrown76073052011-05-11 14:34:56 +1000473 if (dist < best_dist) {
474 best_dist = dist;
475 best_disk = disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 }
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000477 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
NeilBrown76073052011-05-11 14:34:56 +1000479 if (best_disk >= 0) {
480 rdev = rcu_dereference(conf->mirrors[best_disk].rdev);
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700481 if (!rdev)
482 goto retry;
483 atomic_inc(&rdev->nr_pending);
NeilBrown76073052011-05-11 14:34:56 +1000484 if (test_bit(Faulty, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 /* cannot risk returning a device that failed
486 * before we inc'ed nr_pending
487 */
NeilBrown03c902e2006-01-06 00:20:46 -0800488 rdev_dec_pending(rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 goto retry;
490 }
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700491 conf->next_seq_sect = this_sector + sectors;
NeilBrown76073052011-05-11 14:34:56 +1000492 conf->last_used = best_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 }
494 rcu_read_unlock();
495
NeilBrown76073052011-05-11 14:34:56 +1000496 return best_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497}
498
NeilBrown0d129222006-10-03 01:15:54 -0700499static int raid1_congested(void *data, int bits)
500{
501 mddev_t *mddev = data;
NeilBrown070ec552009-06-16 16:54:21 +1000502 conf_t *conf = mddev->private;
NeilBrown0d129222006-10-03 01:15:54 -0700503 int i, ret = 0;
504
NeilBrown3fa841d2009-09-23 18:10:29 +1000505 if (mddev_congested(mddev, bits))
506 return 1;
507
NeilBrown0d129222006-10-03 01:15:54 -0700508 rcu_read_lock();
509 for (i = 0; i < mddev->raid_disks; i++) {
510 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
511 if (rdev && !test_bit(Faulty, &rdev->flags)) {
Jens Axboe165125e2007-07-24 09:28:11 +0200512 struct request_queue *q = bdev_get_queue(rdev->bdev);
NeilBrown0d129222006-10-03 01:15:54 -0700513
514 /* Note the '|| 1' - when read_balance prefers
515 * non-congested targets, it can be removed
516 */
Alexander Beregalov91a9e992009-04-07 01:35:56 +0400517 if ((bits & (1<<BDI_async_congested)) || 1)
NeilBrown0d129222006-10-03 01:15:54 -0700518 ret |= bdi_congested(&q->backing_dev_info, bits);
519 else
520 ret &= bdi_congested(&q->backing_dev_info, bits);
521 }
522 }
523 rcu_read_unlock();
524 return ret;
525}
526
527
Jens Axboe7eaceac2011-03-10 08:52:07 +0100528static void flush_pending_writes(conf_t *conf)
NeilBrowna35e63e2008-03-04 14:29:29 -0800529{
530 /* Any writes that have been queued but are awaiting
531 * bitmap updates get flushed here.
NeilBrowna35e63e2008-03-04 14:29:29 -0800532 */
NeilBrowna35e63e2008-03-04 14:29:29 -0800533 spin_lock_irq(&conf->device_lock);
534
535 if (conf->pending_bio_list.head) {
536 struct bio *bio;
537 bio = bio_list_get(&conf->pending_bio_list);
NeilBrowna35e63e2008-03-04 14:29:29 -0800538 spin_unlock_irq(&conf->device_lock);
539 /* flush any pending bitmap writes to
540 * disk before proceeding w/ I/O */
541 bitmap_unplug(conf->mddev->bitmap);
542
543 while (bio) { /* submit pending writes */
544 struct bio *next = bio->bi_next;
545 bio->bi_next = NULL;
546 generic_make_request(bio);
547 bio = next;
548 }
NeilBrowna35e63e2008-03-04 14:29:29 -0800549 } else
550 spin_unlock_irq(&conf->device_lock);
Jens Axboe7eaceac2011-03-10 08:52:07 +0100551}
552
NeilBrown17999be2006-01-06 00:20:12 -0800553/* Barriers....
554 * Sometimes we need to suspend IO while we do something else,
555 * either some resync/recovery, or reconfigure the array.
556 * To do this we raise a 'barrier'.
557 * The 'barrier' is a counter that can be raised multiple times
558 * to count how many activities are happening which preclude
559 * normal IO.
560 * We can only raise the barrier if there is no pending IO.
561 * i.e. if nr_pending == 0.
562 * We choose only to raise the barrier if no-one is waiting for the
563 * barrier to go down. This means that as soon as an IO request
564 * is ready, no other operations which require a barrier will start
565 * until the IO request has had a chance.
566 *
567 * So: regular IO calls 'wait_barrier'. When that returns there
568 * is no backgroup IO happening, It must arrange to call
569 * allow_barrier when it has finished its IO.
570 * backgroup IO calls must call raise_barrier. Once that returns
571 * there is no normal IO happeing. It must arrange to call
572 * lower_barrier when the particular background IO completes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 */
574#define RESYNC_DEPTH 32
575
NeilBrown17999be2006-01-06 00:20:12 -0800576static void raise_barrier(conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577{
578 spin_lock_irq(&conf->resync_lock);
NeilBrown17999be2006-01-06 00:20:12 -0800579
580 /* Wait until no block IO is waiting */
581 wait_event_lock_irq(conf->wait_barrier, !conf->nr_waiting,
NeilBrownc3b328a2011-04-18 18:25:43 +1000582 conf->resync_lock, );
NeilBrown17999be2006-01-06 00:20:12 -0800583
584 /* block any new IO from starting */
585 conf->barrier++;
586
NeilBrown046abee2010-10-26 15:46:20 +1100587 /* Now wait for all pending IO to complete */
NeilBrown17999be2006-01-06 00:20:12 -0800588 wait_event_lock_irq(conf->wait_barrier,
589 !conf->nr_pending && conf->barrier < RESYNC_DEPTH,
NeilBrownc3b328a2011-04-18 18:25:43 +1000590 conf->resync_lock, );
NeilBrown17999be2006-01-06 00:20:12 -0800591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 spin_unlock_irq(&conf->resync_lock);
593}
594
NeilBrown17999be2006-01-06 00:20:12 -0800595static void lower_barrier(conf_t *conf)
596{
597 unsigned long flags;
NeilBrown709ae482009-12-14 12:49:51 +1100598 BUG_ON(conf->barrier <= 0);
NeilBrown17999be2006-01-06 00:20:12 -0800599 spin_lock_irqsave(&conf->resync_lock, flags);
600 conf->barrier--;
601 spin_unlock_irqrestore(&conf->resync_lock, flags);
602 wake_up(&conf->wait_barrier);
603}
604
605static void wait_barrier(conf_t *conf)
606{
607 spin_lock_irq(&conf->resync_lock);
608 if (conf->barrier) {
609 conf->nr_waiting++;
610 wait_event_lock_irq(conf->wait_barrier, !conf->barrier,
611 conf->resync_lock,
NeilBrownc3b328a2011-04-18 18:25:43 +1000612 );
NeilBrown17999be2006-01-06 00:20:12 -0800613 conf->nr_waiting--;
614 }
615 conf->nr_pending++;
616 spin_unlock_irq(&conf->resync_lock);
617}
618
619static void allow_barrier(conf_t *conf)
620{
621 unsigned long flags;
622 spin_lock_irqsave(&conf->resync_lock, flags);
623 conf->nr_pending--;
624 spin_unlock_irqrestore(&conf->resync_lock, flags);
625 wake_up(&conf->wait_barrier);
626}
627
NeilBrownddaf22a2006-01-06 00:20:19 -0800628static void freeze_array(conf_t *conf)
629{
630 /* stop syncio and normal IO and wait for everything to
631 * go quite.
632 * We increment barrier and nr_waiting, and then
NeilBrown1c830532008-03-04 14:29:35 -0800633 * wait until nr_pending match nr_queued+1
634 * This is called in the context of one normal IO request
635 * that has failed. Thus any sync request that might be pending
636 * will be blocked by nr_pending, and we need to wait for
637 * pending IO requests to complete or be queued for re-try.
638 * Thus the number queued (nr_queued) plus this request (1)
639 * must match the number of pending IOs (nr_pending) before
640 * we continue.
NeilBrownddaf22a2006-01-06 00:20:19 -0800641 */
642 spin_lock_irq(&conf->resync_lock);
643 conf->barrier++;
644 conf->nr_waiting++;
645 wait_event_lock_irq(conf->wait_barrier,
NeilBrown1c830532008-03-04 14:29:35 -0800646 conf->nr_pending == conf->nr_queued+1,
NeilBrownddaf22a2006-01-06 00:20:19 -0800647 conf->resync_lock,
NeilBrownc3b328a2011-04-18 18:25:43 +1000648 flush_pending_writes(conf));
NeilBrownddaf22a2006-01-06 00:20:19 -0800649 spin_unlock_irq(&conf->resync_lock);
650}
651static void unfreeze_array(conf_t *conf)
652{
653 /* reverse the effect of the freeze */
654 spin_lock_irq(&conf->resync_lock);
655 conf->barrier--;
656 conf->nr_waiting--;
657 wake_up(&conf->wait_barrier);
658 spin_unlock_irq(&conf->resync_lock);
659}
660
NeilBrown17999be2006-01-06 00:20:12 -0800661
NeilBrown4e780642010-10-19 12:54:01 +1100662/* duplicate the data pages for behind I/O
663 * We return a list of bio_vec rather than just page pointers
664 * as it makes freeing easier
665 */
666static struct bio_vec *alloc_behind_pages(struct bio *bio)
NeilBrown4b6d2872005-09-09 16:23:47 -0700667{
668 int i;
669 struct bio_vec *bvec;
NeilBrown4e780642010-10-19 12:54:01 +1100670 struct bio_vec *pages = kzalloc(bio->bi_vcnt * sizeof(struct bio_vec),
NeilBrown4b6d2872005-09-09 16:23:47 -0700671 GFP_NOIO);
672 if (unlikely(!pages))
673 goto do_sync_io;
674
NeilBrown4b6d2872005-09-09 16:23:47 -0700675 bio_for_each_segment(bvec, bio, i) {
NeilBrown4e780642010-10-19 12:54:01 +1100676 pages[i].bv_page = alloc_page(GFP_NOIO);
677 if (unlikely(!pages[i].bv_page))
NeilBrown4b6d2872005-09-09 16:23:47 -0700678 goto do_sync_io;
NeilBrown4e780642010-10-19 12:54:01 +1100679 memcpy(kmap(pages[i].bv_page) + bvec->bv_offset,
NeilBrown4b6d2872005-09-09 16:23:47 -0700680 kmap(bvec->bv_page) + bvec->bv_offset, bvec->bv_len);
NeilBrown4e780642010-10-19 12:54:01 +1100681 kunmap(pages[i].bv_page);
NeilBrown4b6d2872005-09-09 16:23:47 -0700682 kunmap(bvec->bv_page);
683 }
684
685 return pages;
686
687do_sync_io:
688 if (pages)
NeilBrown4e780642010-10-19 12:54:01 +1100689 for (i = 0; i < bio->bi_vcnt && pages[i].bv_page; i++)
690 put_page(pages[i].bv_page);
NeilBrown4b6d2872005-09-09 16:23:47 -0700691 kfree(pages);
692 PRINTK("%dB behind alloc failed, doing sync I/O\n", bio->bi_size);
693 return NULL;
694}
695
NeilBrown21a52c62010-04-01 15:02:13 +1100696static int make_request(mddev_t *mddev, struct bio * bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697{
NeilBrown070ec552009-06-16 16:54:21 +1000698 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 mirror_info_t *mirror;
700 r1bio_t *r1_bio;
701 struct bio *read_bio;
NeilBrown191ea9b2005-06-21 17:17:23 -0700702 int i, targets = 0, disks;
NeilBrown84255d12008-05-23 13:04:32 -0700703 struct bitmap *bitmap;
NeilBrown191ea9b2005-06-21 17:17:23 -0700704 unsigned long flags;
NeilBrown4e780642010-10-19 12:54:01 +1100705 struct bio_vec *behind_pages = NULL;
Jens Axboea3623572005-11-01 09:26:16 +0100706 const int rw = bio_data_dir(bio);
NeilBrown2c7d46e2010-08-18 16:16:05 +1000707 const unsigned long do_sync = (bio->bi_rw & REQ_SYNC);
Tejun Heoe9c74692010-09-03 11:56:18 +0200708 const unsigned long do_flush_fua = (bio->bi_rw & (REQ_FLUSH | REQ_FUA));
Dan Williams6bfe0b42008-04-30 00:52:32 -0700709 mdk_rdev_t *blocked_rdev;
NeilBrownc3b328a2011-04-18 18:25:43 +1000710 int plugged;
NeilBrown191ea9b2005-06-21 17:17:23 -0700711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 /*
713 * Register the new request and wait if the reconstruction
714 * thread has put up a bar for new requests.
715 * Continue immediately if no resync is active currently.
716 */
NeilBrown62de6082006-05-01 12:15:47 -0700717
NeilBrown3d310eb2005-06-21 17:17:26 -0700718 md_write_start(mddev, bio); /* wait on superblock update early */
719
NeilBrown6eef4b22009-12-14 12:49:51 +1100720 if (bio_data_dir(bio) == WRITE &&
721 bio->bi_sector + bio->bi_size/512 > mddev->suspend_lo &&
722 bio->bi_sector < mddev->suspend_hi) {
723 /* As the suspend_* range is controlled by
724 * userspace, we want an interruptible
725 * wait.
726 */
727 DEFINE_WAIT(w);
728 for (;;) {
729 flush_signals(current);
730 prepare_to_wait(&conf->wait_barrier,
731 &w, TASK_INTERRUPTIBLE);
732 if (bio->bi_sector + bio->bi_size/512 <= mddev->suspend_lo ||
733 bio->bi_sector >= mddev->suspend_hi)
734 break;
735 schedule();
736 }
737 finish_wait(&conf->wait_barrier, &w);
738 }
NeilBrown62de6082006-05-01 12:15:47 -0700739
NeilBrown17999be2006-01-06 00:20:12 -0800740 wait_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
NeilBrown84255d12008-05-23 13:04:32 -0700742 bitmap = mddev->bitmap;
743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 /*
745 * make_request() can abort the operation when READA is being
746 * used and no empty request is available.
747 *
748 */
749 r1_bio = mempool_alloc(conf->r1bio_pool, GFP_NOIO);
750
751 r1_bio->master_bio = bio;
752 r1_bio->sectors = bio->bi_size >> 9;
NeilBrown191ea9b2005-06-21 17:17:23 -0700753 r1_bio->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 r1_bio->mddev = mddev;
755 r1_bio->sector = bio->bi_sector;
756
Jens Axboea3623572005-11-01 09:26:16 +0100757 if (rw == READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 /*
759 * read balancing logic:
760 */
761 int rdisk = read_balance(conf, r1_bio);
762
763 if (rdisk < 0) {
764 /* couldn't find anywhere to read from */
765 raid_end_bio_io(r1_bio);
766 return 0;
767 }
768 mirror = conf->mirrors + rdisk;
769
NeilBrowne5551902010-03-31 11:21:44 +1100770 if (test_bit(WriteMostly, &mirror->rdev->flags) &&
771 bitmap) {
772 /* Reading from a write-mostly device must
773 * take care not to over-take any writes
774 * that are 'behind'
775 */
776 wait_event(bitmap->behind_wait,
777 atomic_read(&bitmap->behind_writes) == 0);
778 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 r1_bio->read_disk = rdisk;
780
NeilBrowna167f662010-10-26 18:31:13 +1100781 read_bio = bio_clone_mddev(bio, GFP_NOIO, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
783 r1_bio->bios[rdisk] = read_bio;
784
785 read_bio->bi_sector = r1_bio->sector + mirror->rdev->data_offset;
786 read_bio->bi_bdev = mirror->rdev->bdev;
787 read_bio->bi_end_io = raid1_end_read_request;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +0200788 read_bio->bi_rw = READ | do_sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 read_bio->bi_private = r1_bio;
790
791 generic_make_request(read_bio);
792 return 0;
793 }
794
795 /*
796 * WRITE:
797 */
798 /* first select target devices under spinlock and
799 * inc refcount on their rdev. Record them by setting
800 * bios[x] to bio
801 */
NeilBrownc3b328a2011-04-18 18:25:43 +1000802 plugged = mddev_check_plugged(mddev);
803
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 disks = conf->raid_disks;
Dan Williams6bfe0b42008-04-30 00:52:32 -0700805 retry_write:
806 blocked_rdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 rcu_read_lock();
808 for (i = 0; i < disks; i++) {
Dan Williams6bfe0b42008-04-30 00:52:32 -0700809 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
810 if (rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
811 atomic_inc(&rdev->nr_pending);
812 blocked_rdev = rdev;
813 break;
814 }
815 if (rdev && !test_bit(Faulty, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 atomic_inc(&rdev->nr_pending);
NeilBrownb2d444d2005-11-08 21:39:31 -0800817 if (test_bit(Faulty, &rdev->flags)) {
NeilBrown03c902e2006-01-06 00:20:46 -0800818 rdev_dec_pending(rdev, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 r1_bio->bios[i] = NULL;
NeilBrown964147d2010-05-18 15:27:13 +1000820 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 r1_bio->bios[i] = bio;
NeilBrown964147d2010-05-18 15:27:13 +1000822 targets++;
823 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 } else
825 r1_bio->bios[i] = NULL;
826 }
827 rcu_read_unlock();
828
Dan Williams6bfe0b42008-04-30 00:52:32 -0700829 if (unlikely(blocked_rdev)) {
830 /* Wait for this device to become unblocked */
831 int j;
832
833 for (j = 0; j < i; j++)
834 if (r1_bio->bios[j])
835 rdev_dec_pending(conf->mirrors[j].rdev, mddev);
836
837 allow_barrier(conf);
838 md_wait_for_blocked_rdev(blocked_rdev, mddev);
839 wait_barrier(conf);
840 goto retry_write;
841 }
842
NeilBrown4b6d2872005-09-09 16:23:47 -0700843 BUG_ON(targets == 0); /* we never fail the last device */
844
NeilBrown191ea9b2005-06-21 17:17:23 -0700845 if (targets < conf->raid_disks) {
846 /* array is degraded, we will not clear the bitmap
847 * on I/O completion (see raid1_end_write_request) */
848 set_bit(R1BIO_Degraded, &r1_bio->state);
849 }
NeilBrown06d91a52005-06-21 17:17:12 -0700850
NeilBrowne5551902010-03-31 11:21:44 +1100851 /* do behind I/O ?
852 * Not if there are too many, or cannot allocate memory,
853 * or a reader on WriteMostly is waiting for behind writes
854 * to flush */
NeilBrown4b6d2872005-09-09 16:23:47 -0700855 if (bitmap &&
NeilBrown42a04b52009-12-14 12:49:53 +1100856 (atomic_read(&bitmap->behind_writes)
857 < mddev->bitmap_info.max_write_behind) &&
NeilBrowne5551902010-03-31 11:21:44 +1100858 !waitqueue_active(&bitmap->behind_wait) &&
NeilBrown4b6d2872005-09-09 16:23:47 -0700859 (behind_pages = alloc_behind_pages(bio)) != NULL)
860 set_bit(R1BIO_BehindIO, &r1_bio->state);
861
NeilBrown4e780642010-10-19 12:54:01 +1100862 atomic_set(&r1_bio->remaining, 1);
NeilBrown4b6d2872005-09-09 16:23:47 -0700863 atomic_set(&r1_bio->behind_remaining, 0);
NeilBrown191ea9b2005-06-21 17:17:23 -0700864
NeilBrown4e780642010-10-19 12:54:01 +1100865 bitmap_startwrite(bitmap, bio->bi_sector, r1_bio->sectors,
866 test_bit(R1BIO_BehindIO, &r1_bio->state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 for (i = 0; i < disks; i++) {
868 struct bio *mbio;
869 if (!r1_bio->bios[i])
870 continue;
871
NeilBrowna167f662010-10-26 18:31:13 +1100872 mbio = bio_clone_mddev(bio, GFP_NOIO, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 r1_bio->bios[i] = mbio;
874
875 mbio->bi_sector = r1_bio->sector + conf->mirrors[i].rdev->data_offset;
876 mbio->bi_bdev = conf->mirrors[i].rdev->bdev;
877 mbio->bi_end_io = raid1_end_write_request;
Tejun Heoe9c74692010-09-03 11:56:18 +0200878 mbio->bi_rw = WRITE | do_flush_fua | do_sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 mbio->bi_private = r1_bio;
880
NeilBrown4b6d2872005-09-09 16:23:47 -0700881 if (behind_pages) {
882 struct bio_vec *bvec;
883 int j;
884
885 /* Yes, I really want the '__' version so that
886 * we clear any unused pointer in the io_vec, rather
887 * than leave them unchanged. This is important
888 * because when we come to free the pages, we won't
NeilBrown046abee2010-10-26 15:46:20 +1100889 * know the original bi_idx, so we just free
NeilBrown4b6d2872005-09-09 16:23:47 -0700890 * them all
891 */
892 __bio_for_each_segment(bvec, mbio, j, 0)
NeilBrown4e780642010-10-19 12:54:01 +1100893 bvec->bv_page = behind_pages[j].bv_page;
NeilBrown4b6d2872005-09-09 16:23:47 -0700894 if (test_bit(WriteMostly, &conf->mirrors[i].rdev->flags))
895 atomic_inc(&r1_bio->behind_remaining);
896 }
897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 atomic_inc(&r1_bio->remaining);
NeilBrown4e780642010-10-19 12:54:01 +1100899 spin_lock_irqsave(&conf->device_lock, flags);
900 bio_list_add(&conf->pending_bio_list, mbio);
NeilBrown4e780642010-10-19 12:54:01 +1100901 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 }
NeilBrown4e780642010-10-19 12:54:01 +1100903 r1_bio_write_done(r1_bio, bio->bi_vcnt, behind_pages, behind_pages != NULL);
NeilBrown4b6d2872005-09-09 16:23:47 -0700904 kfree(behind_pages); /* the behind pages are attached to the bios now */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
NeilBrown4e780642010-10-19 12:54:01 +1100906 /* In case raid1d snuck in to freeze_array */
NeilBrowna35e63e2008-03-04 14:29:29 -0800907 wake_up(&conf->wait_barrier);
908
NeilBrownc3b328a2011-04-18 18:25:43 +1000909 if (do_sync || !bitmap || !plugged)
Lars Ellenberge3881a62007-01-10 23:15:37 -0800910 md_wakeup_thread(mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
912 return 0;
913}
914
915static void status(struct seq_file *seq, mddev_t *mddev)
916{
NeilBrown070ec552009-06-16 16:54:21 +1000917 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 int i;
919
920 seq_printf(seq, " [%d/%d] [", conf->raid_disks,
NeilBrown11ce99e2006-10-03 01:15:52 -0700921 conf->raid_disks - mddev->degraded);
NeilBrownddac7c72006-08-31 21:27:36 -0700922 rcu_read_lock();
923 for (i = 0; i < conf->raid_disks; i++) {
924 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 seq_printf(seq, "%s",
NeilBrownddac7c72006-08-31 21:27:36 -0700926 rdev && test_bit(In_sync, &rdev->flags) ? "U" : "_");
927 }
928 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 seq_printf(seq, "]");
930}
931
932
933static void error(mddev_t *mddev, mdk_rdev_t *rdev)
934{
935 char b[BDEVNAME_SIZE];
NeilBrown070ec552009-06-16 16:54:21 +1000936 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
938 /*
939 * If it is not operational, then we have already marked it as dead
940 * else if it is the last working disks, ignore the error, let the
941 * next level up know.
942 * else mark the drive as failed
943 */
NeilBrownb2d444d2005-11-08 21:39:31 -0800944 if (test_bit(In_sync, &rdev->flags)
NeilBrown4044ba52009-01-09 08:31:11 +1100945 && (conf->raid_disks - mddev->degraded) == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 /*
947 * Don't fail the drive, act as though we were just a
NeilBrown4044ba52009-01-09 08:31:11 +1100948 * normal single drive.
949 * However don't try a recovery from this drive as
950 * it is very likely to fail.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 */
NeilBrown4044ba52009-01-09 08:31:11 +1100952 mddev->recovery_disabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 return;
NeilBrown4044ba52009-01-09 08:31:11 +1100954 }
NeilBrownc04be0a2006-10-03 01:15:53 -0700955 if (test_and_clear_bit(In_sync, &rdev->flags)) {
956 unsigned long flags;
957 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 mddev->degraded++;
NeilBrowndd00a992007-05-10 03:15:50 -0700959 set_bit(Faulty, &rdev->flags);
NeilBrownc04be0a2006-10-03 01:15:53 -0700960 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 /*
962 * if recovery is running, make sure it aborts.
963 */
NeilBrowndfc70642008-05-23 13:04:39 -0700964 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
NeilBrowndd00a992007-05-10 03:15:50 -0700965 } else
966 set_bit(Faulty, &rdev->flags);
NeilBrown850b2b422006-10-03 01:15:46 -0700967 set_bit(MD_CHANGE_DEVS, &mddev->flags);
Joe Perches067032b2011-01-14 09:14:33 +1100968 printk(KERN_ALERT
969 "md/raid1:%s: Disk failure on %s, disabling device.\n"
970 "md/raid1:%s: Operation continuing on %d devices.\n",
NeilBrown9dd1e2f2010-05-03 14:30:35 +1000971 mdname(mddev), bdevname(rdev->bdev, b),
972 mdname(mddev), conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973}
974
975static void print_conf(conf_t *conf)
976{
977 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
NeilBrown9dd1e2f2010-05-03 14:30:35 +1000979 printk(KERN_DEBUG "RAID1 conf printout:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 if (!conf) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +1000981 printk(KERN_DEBUG "(!conf)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 return;
983 }
NeilBrown9dd1e2f2010-05-03 14:30:35 +1000984 printk(KERN_DEBUG " --- wd:%d rd:%d\n", conf->raid_disks - conf->mddev->degraded,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 conf->raid_disks);
986
NeilBrownddac7c72006-08-31 21:27:36 -0700987 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 for (i = 0; i < conf->raid_disks; i++) {
989 char b[BDEVNAME_SIZE];
NeilBrownddac7c72006-08-31 21:27:36 -0700990 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
991 if (rdev)
NeilBrown9dd1e2f2010-05-03 14:30:35 +1000992 printk(KERN_DEBUG " disk %d, wo:%d, o:%d, dev:%s\n",
NeilBrownddac7c72006-08-31 21:27:36 -0700993 i, !test_bit(In_sync, &rdev->flags),
994 !test_bit(Faulty, &rdev->flags),
995 bdevname(rdev->bdev,b));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 }
NeilBrownddac7c72006-08-31 21:27:36 -0700997 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998}
999
1000static void close_sync(conf_t *conf)
1001{
NeilBrown17999be2006-01-06 00:20:12 -08001002 wait_barrier(conf);
1003 allow_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
1005 mempool_destroy(conf->r1buf_pool);
1006 conf->r1buf_pool = NULL;
1007}
1008
1009static int raid1_spare_active(mddev_t *mddev)
1010{
1011 int i;
1012 conf_t *conf = mddev->private;
NeilBrown6b965622010-08-18 11:56:59 +10001013 int count = 0;
1014 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
1016 /*
1017 * Find all failed disks within the RAID1 configuration
NeilBrownddac7c72006-08-31 21:27:36 -07001018 * and mark them readable.
1019 * Called under mddev lock, so rcu protection not needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 */
1021 for (i = 0; i < conf->raid_disks; i++) {
NeilBrownddac7c72006-08-31 21:27:36 -07001022 mdk_rdev_t *rdev = conf->mirrors[i].rdev;
1023 if (rdev
1024 && !test_bit(Faulty, &rdev->flags)
NeilBrownc04be0a2006-10-03 01:15:53 -07001025 && !test_and_set_bit(In_sync, &rdev->flags)) {
NeilBrown6b965622010-08-18 11:56:59 +10001026 count++;
Adrian Drzewieckie6ffbcb2010-08-18 11:49:02 +10001027 sysfs_notify_dirent(rdev->sysfs_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 }
1029 }
NeilBrown6b965622010-08-18 11:56:59 +10001030 spin_lock_irqsave(&conf->device_lock, flags);
1031 mddev->degraded -= count;
1032 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
1034 print_conf(conf);
NeilBrown6b965622010-08-18 11:56:59 +10001035 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036}
1037
1038
1039static int raid1_add_disk(mddev_t *mddev, mdk_rdev_t *rdev)
1040{
1041 conf_t *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10001042 int err = -EEXIST;
NeilBrown41158c72005-06-21 17:17:25 -07001043 int mirror = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 mirror_info_t *p;
Neil Brown6c2fce22008-06-28 08:31:31 +10001045 int first = 0;
1046 int last = mddev->raid_disks - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
Neil Brown6c2fce22008-06-28 08:31:31 +10001048 if (rdev->raid_disk >= 0)
1049 first = last = rdev->raid_disk;
1050
1051 for (mirror = first; mirror <= last; mirror++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 if ( !(p=conf->mirrors+mirror)->rdev) {
1053
Martin K. Petersen8f6c2e42009-07-01 11:13:45 +10001054 disk_stack_limits(mddev->gendisk, rdev->bdev,
1055 rdev->data_offset << 9);
NeilBrown627a2d32010-03-08 16:44:38 +11001056 /* as we don't honour merge_bvec_fn, we must
1057 * never risk violating it, so limit
1058 * ->max_segments to one lying with a single
1059 * page, as a one page request is never in
1060 * violation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 */
NeilBrown627a2d32010-03-08 16:44:38 +11001062 if (rdev->bdev->bd_disk->queue->merge_bvec_fn) {
1063 blk_queue_max_segments(mddev->queue, 1);
1064 blk_queue_segment_boundary(mddev->queue,
1065 PAGE_CACHE_SIZE - 1);
1066 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
1068 p->head_position = 0;
1069 rdev->raid_disk = mirror;
Neil Brown199050e2008-06-28 08:31:33 +10001070 err = 0;
NeilBrown6aea114a2005-11-28 13:44:13 -08001071 /* As all devices are equivalent, we don't need a full recovery
1072 * if this was recently any drive of the array
1073 */
1074 if (rdev->saved_raid_disk < 0)
NeilBrown41158c72005-06-21 17:17:25 -07001075 conf->fullsync = 1;
Suzanne Woodd6065f72005-11-08 21:39:27 -08001076 rcu_assign_pointer(p->rdev, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 break;
1078 }
Andre Nollac5e7112009-08-03 10:59:47 +10001079 md_integrity_add_rdev(rdev, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 print_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10001081 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082}
1083
1084static int raid1_remove_disk(mddev_t *mddev, int number)
1085{
1086 conf_t *conf = mddev->private;
1087 int err = 0;
1088 mdk_rdev_t *rdev;
1089 mirror_info_t *p = conf->mirrors+ number;
1090
1091 print_conf(conf);
1092 rdev = p->rdev;
1093 if (rdev) {
NeilBrownb2d444d2005-11-08 21:39:31 -08001094 if (test_bit(In_sync, &rdev->flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 atomic_read(&rdev->nr_pending)) {
1096 err = -EBUSY;
1097 goto abort;
1098 }
NeilBrown046abee2010-10-26 15:46:20 +11001099 /* Only remove non-faulty devices if recovery
NeilBrowndfc70642008-05-23 13:04:39 -07001100 * is not possible.
1101 */
1102 if (!test_bit(Faulty, &rdev->flags) &&
NeilBrown8f9e0ee2010-11-24 16:39:46 +11001103 !mddev->recovery_disabled &&
NeilBrowndfc70642008-05-23 13:04:39 -07001104 mddev->degraded < conf->raid_disks) {
1105 err = -EBUSY;
1106 goto abort;
1107 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 p->rdev = NULL;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07001109 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 if (atomic_read(&rdev->nr_pending)) {
1111 /* lost the race, try later */
1112 err = -EBUSY;
1113 p->rdev = rdev;
Andre Nollac5e7112009-08-03 10:59:47 +10001114 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 }
Martin K. Petersena91a2782011-03-17 11:11:05 +01001116 err = md_integrity_register(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 }
1118abort:
1119
1120 print_conf(conf);
1121 return err;
1122}
1123
1124
NeilBrown6712ecf2007-09-27 12:47:43 +02001125static void end_sync_read(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126{
H Hartley Sweeten7b928132010-03-08 16:02:40 +11001127 r1bio_t *r1_bio = bio->bi_private;
NeilBrownd11c1712006-01-06 00:20:26 -08001128 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129
NeilBrownd11c1712006-01-06 00:20:26 -08001130 for (i=r1_bio->mddev->raid_disks; i--; )
1131 if (r1_bio->bios[i] == bio)
1132 break;
1133 BUG_ON(i < 0);
1134 update_head_pos(i, r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 /*
1136 * we have read a block, now it needs to be re-written,
1137 * or re-read if the read failed.
1138 * We don't do much here, just schedule handling by raid1d
1139 */
NeilBrown69382e82006-01-06 00:20:22 -08001140 if (test_bit(BIO_UPTODATE, &bio->bi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 set_bit(R1BIO_Uptodate, &r1_bio->state);
NeilBrownd11c1712006-01-06 00:20:26 -08001142
1143 if (atomic_dec_and_test(&r1_bio->remaining))
1144 reschedule_retry(r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145}
1146
NeilBrown6712ecf2007-09-27 12:47:43 +02001147static void end_sync_write(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148{
1149 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
H Hartley Sweeten7b928132010-03-08 16:02:40 +11001150 r1bio_t *r1_bio = bio->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 mddev_t *mddev = r1_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +10001152 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 int i;
1154 int mirror=0;
1155
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 for (i = 0; i < conf->raid_disks; i++)
1157 if (r1_bio->bios[i] == bio) {
1158 mirror = i;
1159 break;
1160 }
NeilBrown6b1117d2006-03-31 02:31:57 -08001161 if (!uptodate) {
NeilBrown57dab0b2010-10-19 10:03:39 +11001162 sector_t sync_blocks = 0;
NeilBrown6b1117d2006-03-31 02:31:57 -08001163 sector_t s = r1_bio->sector;
1164 long sectors_to_go = r1_bio->sectors;
1165 /* make sure these bits doesn't get cleared. */
1166 do {
NeilBrown5e3db642006-07-10 04:44:18 -07001167 bitmap_end_sync(mddev->bitmap, s,
NeilBrown6b1117d2006-03-31 02:31:57 -08001168 &sync_blocks, 1);
1169 s += sync_blocks;
1170 sectors_to_go -= sync_blocks;
1171 } while (sectors_to_go > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 md_error(mddev, conf->mirrors[mirror].rdev);
NeilBrown6b1117d2006-03-31 02:31:57 -08001173 }
NeilBrowne3b97032005-08-04 12:53:34 -07001174
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 update_head_pos(mirror, r1_bio);
1176
1177 if (atomic_dec_and_test(&r1_bio->remaining)) {
NeilBrown73d5c382009-02-25 13:18:47 +11001178 sector_t s = r1_bio->sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 put_buf(r1_bio);
NeilBrown73d5c382009-02-25 13:18:47 +11001180 md_done_sync(mddev, s, uptodate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182}
1183
NeilBrowna68e5872011-05-11 14:40:44 +10001184static int fix_sync_read_error(r1bio_t *r1_bio)
1185{
1186 /* Try some synchronous reads of other devices to get
1187 * good data, much like with normal read errors. Only
1188 * read into the pages we already have so we don't
1189 * need to re-issue the read request.
1190 * We don't need to freeze the array, because being in an
1191 * active sync request, there is no normal IO, and
1192 * no overlapping syncs.
1193 */
1194 mddev_t *mddev = r1_bio->mddev;
1195 conf_t *conf = mddev->private;
1196 struct bio *bio = r1_bio->bios[r1_bio->read_disk];
1197 sector_t sect = r1_bio->sector;
1198 int sectors = r1_bio->sectors;
1199 int idx = 0;
1200
1201 while(sectors) {
1202 int s = sectors;
1203 int d = r1_bio->read_disk;
1204 int success = 0;
1205 mdk_rdev_t *rdev;
NeilBrown78d7f5f2011-05-11 14:48:56 +10001206 int start;
NeilBrowna68e5872011-05-11 14:40:44 +10001207
1208 if (s > (PAGE_SIZE>>9))
1209 s = PAGE_SIZE >> 9;
1210 do {
1211 if (r1_bio->bios[d]->bi_end_io == end_sync_read) {
1212 /* No rcu protection needed here devices
1213 * can only be removed when no resync is
1214 * active, and resync is currently active
1215 */
1216 rdev = conf->mirrors[d].rdev;
1217 if (sync_page_io(rdev,
1218 sect,
1219 s<<9,
1220 bio->bi_io_vec[idx].bv_page,
1221 READ, false)) {
1222 success = 1;
1223 break;
1224 }
1225 }
1226 d++;
1227 if (d == conf->raid_disks)
1228 d = 0;
1229 } while (!success && d != r1_bio->read_disk);
1230
NeilBrown78d7f5f2011-05-11 14:48:56 +10001231 if (!success) {
NeilBrowna68e5872011-05-11 14:40:44 +10001232 char b[BDEVNAME_SIZE];
1233 /* Cannot read from anywhere, array is toast */
1234 md_error(mddev, conf->mirrors[r1_bio->read_disk].rdev);
1235 printk(KERN_ALERT "md/raid1:%s: %s: unrecoverable I/O read error"
1236 " for block %llu\n",
1237 mdname(mddev),
1238 bdevname(bio->bi_bdev, b),
1239 (unsigned long long)r1_bio->sector);
1240 md_done_sync(mddev, r1_bio->sectors, 0);
1241 put_buf(r1_bio);
1242 return 0;
1243 }
NeilBrown78d7f5f2011-05-11 14:48:56 +10001244
1245 start = d;
1246 /* write it back and re-read */
1247 while (d != r1_bio->read_disk) {
1248 if (d == 0)
1249 d = conf->raid_disks;
1250 d--;
1251 if (r1_bio->bios[d]->bi_end_io != end_sync_read)
1252 continue;
1253 rdev = conf->mirrors[d].rdev;
1254 if (sync_page_io(rdev,
1255 sect,
1256 s<<9,
1257 bio->bi_io_vec[idx].bv_page,
1258 WRITE, false) == 0) {
1259 r1_bio->bios[d]->bi_end_io = NULL;
1260 rdev_dec_pending(rdev, mddev);
1261 md_error(mddev, rdev);
1262 } else
1263 atomic_add(s, &rdev->corrected_errors);
1264 }
1265 d = start;
1266 while (d != r1_bio->read_disk) {
1267 if (d == 0)
1268 d = conf->raid_disks;
1269 d--;
1270 if (r1_bio->bios[d]->bi_end_io != end_sync_read)
1271 continue;
1272 rdev = conf->mirrors[d].rdev;
1273 if (sync_page_io(rdev,
1274 sect,
1275 s<<9,
1276 bio->bi_io_vec[idx].bv_page,
1277 READ, false) == 0)
1278 md_error(mddev, rdev);
1279 }
NeilBrowna68e5872011-05-11 14:40:44 +10001280 sectors -= s;
1281 sect += s;
1282 idx ++;
1283 }
NeilBrown78d7f5f2011-05-11 14:48:56 +10001284 set_bit(R1BIO_Uptodate, &r1_bio->state);
NeilBrown7ca78d52011-05-11 14:50:37 +10001285 set_bit(BIO_UPTODATE, &bio->bi_flags);
NeilBrowna68e5872011-05-11 14:40:44 +10001286 return 1;
1287}
1288
1289static int process_checks(r1bio_t *r1_bio)
1290{
1291 /* We have read all readable devices. If we haven't
1292 * got the block, then there is no hope left.
1293 * If we have, then we want to do a comparison
1294 * and skip the write if everything is the same.
1295 * If any blocks failed to read, then we need to
1296 * attempt an over-write
1297 */
1298 mddev_t *mddev = r1_bio->mddev;
1299 conf_t *conf = mddev->private;
1300 int primary;
1301 int i;
1302
NeilBrown78d7f5f2011-05-11 14:48:56 +10001303 for (primary = 0; primary < conf->raid_disks; primary++)
NeilBrowna68e5872011-05-11 14:40:44 +10001304 if (r1_bio->bios[primary]->bi_end_io == end_sync_read &&
1305 test_bit(BIO_UPTODATE, &r1_bio->bios[primary]->bi_flags)) {
1306 r1_bio->bios[primary]->bi_end_io = NULL;
1307 rdev_dec_pending(conf->mirrors[primary].rdev, mddev);
1308 break;
1309 }
1310 r1_bio->read_disk = primary;
NeilBrown78d7f5f2011-05-11 14:48:56 +10001311 for (i = 0; i < conf->raid_disks; i++) {
1312 int j;
1313 int vcnt = r1_bio->sectors >> (PAGE_SHIFT- 9);
1314 struct bio *pbio = r1_bio->bios[primary];
1315 struct bio *sbio = r1_bio->bios[i];
1316 int size;
NeilBrowna68e5872011-05-11 14:40:44 +10001317
NeilBrown78d7f5f2011-05-11 14:48:56 +10001318 if (r1_bio->bios[i]->bi_end_io != end_sync_read)
1319 continue;
NeilBrowna68e5872011-05-11 14:40:44 +10001320
NeilBrown78d7f5f2011-05-11 14:48:56 +10001321 if (test_bit(BIO_UPTODATE, &sbio->bi_flags)) {
1322 for (j = vcnt; j-- ; ) {
1323 struct page *p, *s;
1324 p = pbio->bi_io_vec[j].bv_page;
1325 s = sbio->bi_io_vec[j].bv_page;
1326 if (memcmp(page_address(p),
1327 page_address(s),
1328 PAGE_SIZE))
1329 break;
NeilBrowna68e5872011-05-11 14:40:44 +10001330 }
NeilBrown78d7f5f2011-05-11 14:48:56 +10001331 } else
1332 j = 0;
1333 if (j >= 0)
1334 mddev->resync_mismatches += r1_bio->sectors;
1335 if (j < 0 || (test_bit(MD_RECOVERY_CHECK, &mddev->recovery)
1336 && test_bit(BIO_UPTODATE, &sbio->bi_flags))) {
1337 /* No need to write to this device. */
1338 sbio->bi_end_io = NULL;
1339 rdev_dec_pending(conf->mirrors[i].rdev, mddev);
1340 continue;
NeilBrowna68e5872011-05-11 14:40:44 +10001341 }
NeilBrown78d7f5f2011-05-11 14:48:56 +10001342 /* fixup the bio for reuse */
1343 sbio->bi_vcnt = vcnt;
1344 sbio->bi_size = r1_bio->sectors << 9;
1345 sbio->bi_idx = 0;
1346 sbio->bi_phys_segments = 0;
1347 sbio->bi_flags &= ~(BIO_POOL_MASK - 1);
1348 sbio->bi_flags |= 1 << BIO_UPTODATE;
1349 sbio->bi_next = NULL;
1350 sbio->bi_sector = r1_bio->sector +
1351 conf->mirrors[i].rdev->data_offset;
1352 sbio->bi_bdev = conf->mirrors[i].rdev->bdev;
1353 size = sbio->bi_size;
1354 for (j = 0; j < vcnt ; j++) {
1355 struct bio_vec *bi;
1356 bi = &sbio->bi_io_vec[j];
1357 bi->bv_offset = 0;
1358 if (size > PAGE_SIZE)
1359 bi->bv_len = PAGE_SIZE;
1360 else
1361 bi->bv_len = size;
1362 size -= PAGE_SIZE;
1363 memcpy(page_address(bi->bv_page),
1364 page_address(pbio->bi_io_vec[j].bv_page),
1365 PAGE_SIZE);
1366 }
1367 }
NeilBrowna68e5872011-05-11 14:40:44 +10001368 return 0;
1369}
1370
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371static void sync_request_write(mddev_t *mddev, r1bio_t *r1_bio)
1372{
NeilBrown070ec552009-06-16 16:54:21 +10001373 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 int i;
1375 int disks = conf->raid_disks;
1376 struct bio *bio, *wbio;
1377
1378 bio = r1_bio->bios[r1_bio->read_disk];
1379
NeilBrowna68e5872011-05-11 14:40:44 +10001380 if (!test_bit(R1BIO_Uptodate, &r1_bio->state))
1381 /* ouch - failed to read all of that. */
1382 if (!fix_sync_read_error(r1_bio))
1383 return;
NeilBrown7ca78d52011-05-11 14:50:37 +10001384
1385 if (test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery))
1386 if (process_checks(r1_bio) < 0)
1387 return;
NeilBrownd11c1712006-01-06 00:20:26 -08001388 /*
1389 * schedule writes
1390 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 atomic_set(&r1_bio->remaining, 1);
1392 for (i = 0; i < disks ; i++) {
1393 wbio = r1_bio->bios[i];
NeilBrown3e198f72006-01-06 00:20:21 -08001394 if (wbio->bi_end_io == NULL ||
1395 (wbio->bi_end_io == end_sync_read &&
1396 (i == r1_bio->read_disk ||
1397 !test_bit(MD_RECOVERY_SYNC, &mddev->recovery))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 continue;
1399
NeilBrown3e198f72006-01-06 00:20:21 -08001400 wbio->bi_rw = WRITE;
1401 wbio->bi_end_io = end_sync_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 atomic_inc(&r1_bio->remaining);
1403 md_sync_acct(conf->mirrors[i].rdev->bdev, wbio->bi_size >> 9);
NeilBrown191ea9b2005-06-21 17:17:23 -07001404
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 generic_make_request(wbio);
1406 }
1407
1408 if (atomic_dec_and_test(&r1_bio->remaining)) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001409 /* if we're here, all write(s) have completed, so clean up */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 md_done_sync(mddev, r1_bio->sectors, 1);
1411 put_buf(r1_bio);
1412 }
1413}
1414
1415/*
1416 * This is a kernel thread which:
1417 *
1418 * 1. Retries failed read operations on working mirrors.
1419 * 2. Updates the raid superblock when problems encounter.
1420 * 3. Performs writes following reads for array syncronising.
1421 */
1422
NeilBrown867868f2006-10-03 01:15:51 -07001423static void fix_read_error(conf_t *conf, int read_disk,
1424 sector_t sect, int sectors)
1425{
1426 mddev_t *mddev = conf->mddev;
1427 while(sectors) {
1428 int s = sectors;
1429 int d = read_disk;
1430 int success = 0;
1431 int start;
1432 mdk_rdev_t *rdev;
1433
1434 if (s > (PAGE_SIZE>>9))
1435 s = PAGE_SIZE >> 9;
1436
1437 do {
1438 /* Note: no rcu protection needed here
1439 * as this is synchronous in the raid1d thread
1440 * which is the thread that might remove
1441 * a device. If raid1d ever becomes multi-threaded....
1442 */
1443 rdev = conf->mirrors[d].rdev;
1444 if (rdev &&
1445 test_bit(In_sync, &rdev->flags) &&
Jonathan Brassowccebd4c2011-01-14 09:14:33 +11001446 sync_page_io(rdev, sect, s<<9,
1447 conf->tmppage, READ, false))
NeilBrown867868f2006-10-03 01:15:51 -07001448 success = 1;
1449 else {
1450 d++;
1451 if (d == conf->raid_disks)
1452 d = 0;
1453 }
1454 } while (!success && d != read_disk);
1455
1456 if (!success) {
1457 /* Cannot read from anywhere -- bye bye array */
1458 md_error(mddev, conf->mirrors[read_disk].rdev);
1459 break;
1460 }
1461 /* write it back and re-read */
1462 start = d;
1463 while (d != read_disk) {
1464 if (d==0)
1465 d = conf->raid_disks;
1466 d--;
1467 rdev = conf->mirrors[d].rdev;
1468 if (rdev &&
1469 test_bit(In_sync, &rdev->flags)) {
Jonathan Brassowccebd4c2011-01-14 09:14:33 +11001470 if (sync_page_io(rdev, sect, s<<9,
1471 conf->tmppage, WRITE, false)
NeilBrown867868f2006-10-03 01:15:51 -07001472 == 0)
1473 /* Well, this device is dead */
1474 md_error(mddev, rdev);
1475 }
1476 }
1477 d = start;
1478 while (d != read_disk) {
1479 char b[BDEVNAME_SIZE];
1480 if (d==0)
1481 d = conf->raid_disks;
1482 d--;
1483 rdev = conf->mirrors[d].rdev;
1484 if (rdev &&
1485 test_bit(In_sync, &rdev->flags)) {
Jonathan Brassowccebd4c2011-01-14 09:14:33 +11001486 if (sync_page_io(rdev, sect, s<<9,
1487 conf->tmppage, READ, false)
NeilBrown867868f2006-10-03 01:15:51 -07001488 == 0)
1489 /* Well, this device is dead */
1490 md_error(mddev, rdev);
1491 else {
1492 atomic_add(s, &rdev->corrected_errors);
1493 printk(KERN_INFO
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001494 "md/raid1:%s: read error corrected "
NeilBrown867868f2006-10-03 01:15:51 -07001495 "(%d sectors at %llu on %s)\n",
1496 mdname(mddev), s,
Randy Dunlap969b7552006-10-28 10:38:32 -07001497 (unsigned long long)(sect +
1498 rdev->data_offset),
NeilBrown867868f2006-10-03 01:15:51 -07001499 bdevname(rdev->bdev, b));
1500 }
1501 }
1502 }
1503 sectors -= s;
1504 sect += s;
1505 }
1506}
1507
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508static void raid1d(mddev_t *mddev)
1509{
1510 r1bio_t *r1_bio;
1511 struct bio *bio;
1512 unsigned long flags;
NeilBrown070ec552009-06-16 16:54:21 +10001513 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 struct list_head *head = &conf->retry_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 mdk_rdev_t *rdev;
NeilBrowne1dfa0a2011-04-18 18:25:41 +10001516 struct blk_plug plug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
1518 md_check_recovery(mddev);
NeilBrowne1dfa0a2011-04-18 18:25:41 +10001519
1520 blk_start_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 for (;;) {
1522 char b[BDEVNAME_SIZE];
NeilBrowna35e63e2008-03-04 14:29:29 -08001523
NeilBrownc3b328a2011-04-18 18:25:43 +10001524 if (atomic_read(&mddev->plug_cnt) == 0)
1525 flush_pending_writes(conf);
NeilBrowna35e63e2008-03-04 14:29:29 -08001526
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrowna35e63e2008-03-04 14:29:29 -08001528 if (list_empty(head)) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001529 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 break;
NeilBrowna35e63e2008-03-04 14:29:29 -08001531 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 r1_bio = list_entry(head->prev, r1bio_t, retry_list);
1533 list_del(head->prev);
NeilBrownddaf22a2006-01-06 00:20:19 -08001534 conf->nr_queued--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 spin_unlock_irqrestore(&conf->device_lock, flags);
1536
1537 mddev = r1_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +10001538 conf = mddev->private;
Jens Axboe7eaceac2011-03-10 08:52:07 +01001539 if (test_bit(R1BIO_IsSync, &r1_bio->state))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 sync_request_write(mddev, r1_bio);
Jens Axboe7eaceac2011-03-10 08:52:07 +01001541 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 int disk;
NeilBrownddaf22a2006-01-06 00:20:19 -08001543
1544 /* we got a read error. Maybe the drive is bad. Maybe just
1545 * the block and we can fix it.
1546 * We freeze all other IO, and try reading the block from
1547 * other devices. When we find one, we re-write
1548 * and check it that fixes the read error.
1549 * This is all done synchronously while the array is
1550 * frozen
1551 */
NeilBrown867868f2006-10-03 01:15:51 -07001552 if (mddev->ro == 0) {
1553 freeze_array(conf);
1554 fix_read_error(conf, r1_bio->read_disk,
1555 r1_bio->sector,
1556 r1_bio->sectors);
1557 unfreeze_array(conf);
NeilBrownd0e26072009-12-01 17:30:59 +11001558 } else
1559 md_error(mddev,
1560 conf->mirrors[r1_bio->read_disk].rdev);
NeilBrownddaf22a2006-01-06 00:20:19 -08001561
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 bio = r1_bio->bios[r1_bio->read_disk];
NeilBrownd0e26072009-12-01 17:30:59 +11001563 if ((disk=read_balance(conf, r1_bio)) == -1) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001564 printk(KERN_ALERT "md/raid1:%s: %s: unrecoverable I/O"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 " read error for block %llu\n",
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001566 mdname(mddev),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 bdevname(bio->bi_bdev,b),
1568 (unsigned long long)r1_bio->sector);
1569 raid_end_bio_io(r1_bio);
1570 } else {
NeilBrown2c7d46e2010-08-18 16:16:05 +10001571 const unsigned long do_sync = r1_bio->master_bio->bi_rw & REQ_SYNC;
NeilBrowncf30a472006-01-06 00:20:23 -08001572 r1_bio->bios[r1_bio->read_disk] =
1573 mddev->ro ? IO_BLOCKED : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 r1_bio->read_disk = disk;
1575 bio_put(bio);
NeilBrowna167f662010-10-26 18:31:13 +11001576 bio = bio_clone_mddev(r1_bio->master_bio,
1577 GFP_NOIO, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 r1_bio->bios[r1_bio->read_disk] = bio;
1579 rdev = conf->mirrors[disk].rdev;
1580 if (printk_ratelimit())
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001581 printk(KERN_ERR "md/raid1:%s: redirecting sector %llu to"
NeilBrownd754c5a2010-04-07 12:14:43 +10001582 " other mirror: %s\n",
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001583 mdname(mddev),
NeilBrownd754c5a2010-04-07 12:14:43 +10001584 (unsigned long long)r1_bio->sector,
1585 bdevname(rdev->bdev,b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 bio->bi_sector = r1_bio->sector + rdev->data_offset;
1587 bio->bi_bdev = rdev->bdev;
1588 bio->bi_end_io = raid1_end_read_request;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001589 bio->bi_rw = READ | do_sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 bio->bi_private = r1_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 generic_make_request(bio);
1592 }
1593 }
NeilBrown1d9d5242009-10-16 15:55:32 +11001594 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 }
NeilBrowne1dfa0a2011-04-18 18:25:41 +10001596 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597}
1598
1599
1600static int init_resync(conf_t *conf)
1601{
1602 int buffs;
1603
1604 buffs = RESYNC_WINDOW / RESYNC_BLOCK_SIZE;
Eric Sesterhenn9e77c482006-04-01 01:08:49 +02001605 BUG_ON(conf->r1buf_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 conf->r1buf_pool = mempool_create(buffs, r1buf_pool_alloc, r1buf_pool_free,
1607 conf->poolinfo);
1608 if (!conf->r1buf_pool)
1609 return -ENOMEM;
1610 conf->next_resync = 0;
1611 return 0;
1612}
1613
1614/*
1615 * perform a "sync" on one "block"
1616 *
1617 * We need to make sure that no normal I/O request - particularly write
1618 * requests - conflict with active sync requests.
1619 *
1620 * This is achieved by tracking pending requests and a 'barrier' concept
1621 * that can be installed to exclude normal IO requests.
1622 */
1623
NeilBrown57afd892005-06-21 17:17:13 -07001624static sector_t sync_request(mddev_t *mddev, sector_t sector_nr, int *skipped, int go_faster)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625{
NeilBrown070ec552009-06-16 16:54:21 +10001626 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 r1bio_t *r1_bio;
1628 struct bio *bio;
1629 sector_t max_sector, nr_sectors;
NeilBrown3e198f72006-01-06 00:20:21 -08001630 int disk = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 int i;
NeilBrown3e198f72006-01-06 00:20:21 -08001632 int wonly = -1;
1633 int write_targets = 0, read_targets = 0;
NeilBrown57dab0b2010-10-19 10:03:39 +11001634 sector_t sync_blocks;
NeilBrowne3b97032005-08-04 12:53:34 -07001635 int still_degraded = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
1637 if (!conf->r1buf_pool)
1638 if (init_resync(conf))
NeilBrown57afd892005-06-21 17:17:13 -07001639 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
Andre Noll58c0fed2009-03-31 14:33:13 +11001641 max_sector = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 if (sector_nr >= max_sector) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001643 /* If we aborted, we need to abort the
1644 * sync on the 'current' bitmap chunk (there will
1645 * only be one in raid1 resync.
1646 * We can find the current addess in mddev->curr_resync
1647 */
NeilBrown6a806c52005-07-15 03:56:35 -07001648 if (mddev->curr_resync < max_sector) /* aborted */
1649 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
NeilBrown191ea9b2005-06-21 17:17:23 -07001650 &sync_blocks, 1);
NeilBrown6a806c52005-07-15 03:56:35 -07001651 else /* completed sync */
NeilBrown191ea9b2005-06-21 17:17:23 -07001652 conf->fullsync = 0;
NeilBrown6a806c52005-07-15 03:56:35 -07001653
1654 bitmap_close_sync(mddev->bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 close_sync(conf);
1656 return 0;
1657 }
1658
NeilBrown07d84d102006-06-26 00:27:56 -07001659 if (mddev->bitmap == NULL &&
1660 mddev->recovery_cp == MaxSector &&
NeilBrown6394cca2006-08-27 01:23:50 -07001661 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
NeilBrown07d84d102006-06-26 00:27:56 -07001662 conf->fullsync == 0) {
1663 *skipped = 1;
1664 return max_sector - sector_nr;
1665 }
NeilBrown6394cca2006-08-27 01:23:50 -07001666 /* before building a request, check if we can skip these blocks..
1667 * This call the bitmap_start_sync doesn't actually record anything
1668 */
NeilBrowne3b97032005-08-04 12:53:34 -07001669 if (!bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
NeilBrowne5de485f2005-11-08 21:39:38 -08001670 !conf->fullsync && !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001671 /* We can skip this block, and probably several more */
1672 *skipped = 1;
1673 return sync_blocks;
1674 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 /*
NeilBrown17999be2006-01-06 00:20:12 -08001676 * If there is non-resync activity waiting for a turn,
1677 * and resync is going fast enough,
1678 * then let it though before starting on this new sync request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 */
NeilBrown17999be2006-01-06 00:20:12 -08001680 if (!go_faster && conf->nr_waiting)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 msleep_interruptible(1000);
NeilBrown17999be2006-01-06 00:20:12 -08001682
NeilBrownb47490c2008-02-06 01:39:50 -08001683 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
NeilBrown1c4588e2010-10-26 17:41:22 +11001684 r1_bio = mempool_alloc(conf->r1buf_pool, GFP_NOIO);
NeilBrown17999be2006-01-06 00:20:12 -08001685 raise_barrier(conf);
1686
1687 conf->next_resync = sector_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
NeilBrown3e198f72006-01-06 00:20:21 -08001689 rcu_read_lock();
1690 /*
1691 * If we get a correctably read error during resync or recovery,
1692 * we might want to read from a different device. So we
1693 * flag all drives that could conceivably be read from for READ,
1694 * and any others (which will be non-In_sync devices) for WRITE.
1695 * If a read fails, we try reading from something else for which READ
1696 * is OK.
1697 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 r1_bio->mddev = mddev;
1700 r1_bio->sector = sector_nr;
NeilBrown191ea9b2005-06-21 17:17:23 -07001701 r1_bio->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 set_bit(R1BIO_IsSync, &r1_bio->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703
1704 for (i=0; i < conf->raid_disks; i++) {
NeilBrown3e198f72006-01-06 00:20:21 -08001705 mdk_rdev_t *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 bio = r1_bio->bios[i];
1707
1708 /* take from bio_init */
1709 bio->bi_next = NULL;
NeilBrowndb8d9d32010-10-07 12:00:50 +11001710 bio->bi_flags &= ~(BIO_POOL_MASK-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 bio->bi_flags |= 1 << BIO_UPTODATE;
NeilBrowndb8d9d32010-10-07 12:00:50 +11001712 bio->bi_comp_cpu = -1;
NeilBrown802ba062006-12-13 00:34:13 -08001713 bio->bi_rw = READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 bio->bi_vcnt = 0;
1715 bio->bi_idx = 0;
1716 bio->bi_phys_segments = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 bio->bi_size = 0;
1718 bio->bi_end_io = NULL;
1719 bio->bi_private = NULL;
1720
NeilBrown3e198f72006-01-06 00:20:21 -08001721 rdev = rcu_dereference(conf->mirrors[i].rdev);
1722 if (rdev == NULL ||
1723 test_bit(Faulty, &rdev->flags)) {
NeilBrowne3b97032005-08-04 12:53:34 -07001724 still_degraded = 1;
1725 continue;
NeilBrown3e198f72006-01-06 00:20:21 -08001726 } else if (!test_bit(In_sync, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 bio->bi_rw = WRITE;
1728 bio->bi_end_io = end_sync_write;
1729 write_targets ++;
NeilBrown3e198f72006-01-06 00:20:21 -08001730 } else {
1731 /* may need to read from here */
1732 bio->bi_rw = READ;
1733 bio->bi_end_io = end_sync_read;
1734 if (test_bit(WriteMostly, &rdev->flags)) {
1735 if (wonly < 0)
1736 wonly = i;
1737 } else {
1738 if (disk < 0)
1739 disk = i;
1740 }
1741 read_targets++;
1742 }
1743 atomic_inc(&rdev->nr_pending);
1744 bio->bi_sector = sector_nr + rdev->data_offset;
1745 bio->bi_bdev = rdev->bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 bio->bi_private = r1_bio;
1747 }
NeilBrown3e198f72006-01-06 00:20:21 -08001748 rcu_read_unlock();
1749 if (disk < 0)
1750 disk = wonly;
1751 r1_bio->read_disk = disk;
NeilBrown191ea9b2005-06-21 17:17:23 -07001752
NeilBrown3e198f72006-01-06 00:20:21 -08001753 if (test_bit(MD_RECOVERY_SYNC, &mddev->recovery) && read_targets > 0)
1754 /* extra read targets are also write targets */
1755 write_targets += read_targets-1;
1756
1757 if (write_targets == 0 || read_targets == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 /* There is nowhere to write, so all non-sync
1759 * drives must be failed - so we are finished
1760 */
NeilBrown57afd892005-06-21 17:17:13 -07001761 sector_t rv = max_sector - sector_nr;
1762 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 put_buf(r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 return rv;
1765 }
1766
NeilBrownc6207272008-02-06 01:39:52 -08001767 if (max_sector > mddev->resync_max)
1768 max_sector = mddev->resync_max; /* Don't do IO beyond here */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 nr_sectors = 0;
NeilBrown289e99e2005-06-21 17:17:24 -07001770 sync_blocks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 do {
1772 struct page *page;
1773 int len = PAGE_SIZE;
1774 if (sector_nr + (len>>9) > max_sector)
1775 len = (max_sector - sector_nr) << 9;
1776 if (len == 0)
1777 break;
NeilBrown6a806c52005-07-15 03:56:35 -07001778 if (sync_blocks == 0) {
1779 if (!bitmap_start_sync(mddev->bitmap, sector_nr,
NeilBrowne5de485f2005-11-08 21:39:38 -08001780 &sync_blocks, still_degraded) &&
1781 !conf->fullsync &&
1782 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery))
NeilBrown6a806c52005-07-15 03:56:35 -07001783 break;
Eric Sesterhenn9e77c482006-04-01 01:08:49 +02001784 BUG_ON(sync_blocks < (PAGE_SIZE>>9));
NeilBrown7571ae82010-10-07 11:54:46 +11001785 if ((len >> 9) > sync_blocks)
NeilBrown6a806c52005-07-15 03:56:35 -07001786 len = sync_blocks<<9;
NeilBrownab7a30c2005-06-21 17:17:23 -07001787 }
NeilBrown191ea9b2005-06-21 17:17:23 -07001788
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 for (i=0 ; i < conf->raid_disks; i++) {
1790 bio = r1_bio->bios[i];
1791 if (bio->bi_end_io) {
NeilBrownd11c1712006-01-06 00:20:26 -08001792 page = bio->bi_io_vec[bio->bi_vcnt].bv_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 if (bio_add_page(bio, page, len, 0) == 0) {
1794 /* stop here */
NeilBrownd11c1712006-01-06 00:20:26 -08001795 bio->bi_io_vec[bio->bi_vcnt].bv_page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 while (i > 0) {
1797 i--;
1798 bio = r1_bio->bios[i];
NeilBrown6a806c52005-07-15 03:56:35 -07001799 if (bio->bi_end_io==NULL)
1800 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 /* remove last page from this bio */
1802 bio->bi_vcnt--;
1803 bio->bi_size -= len;
1804 bio->bi_flags &= ~(1<< BIO_SEG_VALID);
1805 }
1806 goto bio_full;
1807 }
1808 }
1809 }
1810 nr_sectors += len>>9;
1811 sector_nr += len>>9;
NeilBrown191ea9b2005-06-21 17:17:23 -07001812 sync_blocks -= (len>>9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 } while (r1_bio->bios[disk]->bi_vcnt < RESYNC_PAGES);
1814 bio_full:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 r1_bio->sectors = nr_sectors;
1816
NeilBrownd11c1712006-01-06 00:20:26 -08001817 /* For a user-requested sync, we read all readable devices and do a
1818 * compare
1819 */
1820 if (test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) {
1821 atomic_set(&r1_bio->remaining, read_targets);
1822 for (i=0; i<conf->raid_disks; i++) {
1823 bio = r1_bio->bios[i];
1824 if (bio->bi_end_io == end_sync_read) {
NeilBrownddac7c72006-08-31 21:27:36 -07001825 md_sync_acct(bio->bi_bdev, nr_sectors);
NeilBrownd11c1712006-01-06 00:20:26 -08001826 generic_make_request(bio);
1827 }
1828 }
1829 } else {
1830 atomic_set(&r1_bio->remaining, 1);
1831 bio = r1_bio->bios[r1_bio->read_disk];
NeilBrownddac7c72006-08-31 21:27:36 -07001832 md_sync_acct(bio->bi_bdev, nr_sectors);
NeilBrownd11c1712006-01-06 00:20:26 -08001833 generic_make_request(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
NeilBrownd11c1712006-01-06 00:20:26 -08001835 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 return nr_sectors;
1837}
1838
Dan Williams80c3a6c2009-03-17 18:10:40 -07001839static sector_t raid1_size(mddev_t *mddev, sector_t sectors, int raid_disks)
1840{
1841 if (sectors)
1842 return sectors;
1843
1844 return mddev->dev_sectors;
1845}
1846
NeilBrown709ae482009-12-14 12:49:51 +11001847static conf_t *setup_conf(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848{
1849 conf_t *conf;
NeilBrown709ae482009-12-14 12:49:51 +11001850 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 mirror_info_t *disk;
1852 mdk_rdev_t *rdev;
NeilBrown709ae482009-12-14 12:49:51 +11001853 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
NeilBrown9ffae0c2006-01-06 00:20:32 -08001855 conf = kzalloc(sizeof(conf_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 if (!conf)
NeilBrown709ae482009-12-14 12:49:51 +11001857 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
NeilBrown9ffae0c2006-01-06 00:20:32 -08001859 conf->mirrors = kzalloc(sizeof(struct mirror_info)*mddev->raid_disks,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 GFP_KERNEL);
1861 if (!conf->mirrors)
NeilBrown709ae482009-12-14 12:49:51 +11001862 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
NeilBrownddaf22a2006-01-06 00:20:19 -08001864 conf->tmppage = alloc_page(GFP_KERNEL);
1865 if (!conf->tmppage)
NeilBrown709ae482009-12-14 12:49:51 +11001866 goto abort;
NeilBrownddaf22a2006-01-06 00:20:19 -08001867
NeilBrown709ae482009-12-14 12:49:51 +11001868 conf->poolinfo = kzalloc(sizeof(*conf->poolinfo), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 if (!conf->poolinfo)
NeilBrown709ae482009-12-14 12:49:51 +11001870 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 conf->poolinfo->raid_disks = mddev->raid_disks;
1872 conf->r1bio_pool = mempool_create(NR_RAID1_BIOS, r1bio_pool_alloc,
1873 r1bio_pool_free,
1874 conf->poolinfo);
1875 if (!conf->r1bio_pool)
NeilBrown709ae482009-12-14 12:49:51 +11001876 goto abort;
1877
NeilBrowned9bfdf2009-10-16 15:55:44 +11001878 conf->poolinfo->mddev = mddev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
Neil Browne7e72bf2008-05-14 16:05:54 -07001880 spin_lock_init(&conf->device_lock);
Cheng Renquan159ec1f2009-01-09 08:31:08 +11001881 list_for_each_entry(rdev, &mddev->disks, same_set) {
NeilBrown709ae482009-12-14 12:49:51 +11001882 int disk_idx = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 if (disk_idx >= mddev->raid_disks
1884 || disk_idx < 0)
1885 continue;
1886 disk = conf->mirrors + disk_idx;
1887
1888 disk->rdev = rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889
1890 disk->head_position = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 }
1892 conf->raid_disks = mddev->raid_disks;
1893 conf->mddev = mddev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 INIT_LIST_HEAD(&conf->retry_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895
1896 spin_lock_init(&conf->resync_lock);
NeilBrown17999be2006-01-06 00:20:12 -08001897 init_waitqueue_head(&conf->wait_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898
NeilBrown191ea9b2005-06-21 17:17:23 -07001899 bio_list_init(&conf->pending_bio_list);
NeilBrown191ea9b2005-06-21 17:17:23 -07001900
NeilBrown709ae482009-12-14 12:49:51 +11001901 conf->last_used = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 for (i = 0; i < conf->raid_disks; i++) {
1903
1904 disk = conf->mirrors + i;
1905
NeilBrown5fd6c1d2006-06-26 00:27:40 -07001906 if (!disk->rdev ||
1907 !test_bit(In_sync, &disk->rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 disk->head_position = 0;
NeilBrown918f0232007-08-22 14:01:52 -07001909 if (disk->rdev)
1910 conf->fullsync = 1;
NeilBrown709ae482009-12-14 12:49:51 +11001911 } else if (conf->last_used < 0)
1912 /*
1913 * The first working device is used as a
1914 * starting point to read balancing.
1915 */
1916 conf->last_used = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 }
NeilBrown709ae482009-12-14 12:49:51 +11001918
1919 err = -EIO;
1920 if (conf->last_used < 0) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001921 printk(KERN_ERR "md/raid1:%s: no operational mirrors\n",
NeilBrown709ae482009-12-14 12:49:51 +11001922 mdname(mddev));
1923 goto abort;
NeilBrown11ce99e2006-10-03 01:15:52 -07001924 }
NeilBrown709ae482009-12-14 12:49:51 +11001925 err = -ENOMEM;
1926 conf->thread = md_register_thread(raid1d, mddev, NULL);
1927 if (!conf->thread) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001928 printk(KERN_ERR
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001929 "md/raid1:%s: couldn't allocate thread\n",
NeilBrown191ea9b2005-06-21 17:17:23 -07001930 mdname(mddev));
NeilBrown709ae482009-12-14 12:49:51 +11001931 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 }
NeilBrown191ea9b2005-06-21 17:17:23 -07001933
NeilBrown709ae482009-12-14 12:49:51 +11001934 return conf;
1935
1936 abort:
1937 if (conf) {
1938 if (conf->r1bio_pool)
1939 mempool_destroy(conf->r1bio_pool);
1940 kfree(conf->mirrors);
1941 safe_put_page(conf->tmppage);
1942 kfree(conf->poolinfo);
1943 kfree(conf);
1944 }
1945 return ERR_PTR(err);
1946}
1947
1948static int run(mddev_t *mddev)
1949{
1950 conf_t *conf;
1951 int i;
1952 mdk_rdev_t *rdev;
1953
1954 if (mddev->level != 1) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001955 printk(KERN_ERR "md/raid1:%s: raid level not set to mirroring (%d)\n",
NeilBrown709ae482009-12-14 12:49:51 +11001956 mdname(mddev), mddev->level);
1957 return -EIO;
1958 }
1959 if (mddev->reshape_position != MaxSector) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001960 printk(KERN_ERR "md/raid1:%s: reshape_position set but not supported\n",
NeilBrown709ae482009-12-14 12:49:51 +11001961 mdname(mddev));
1962 return -EIO;
1963 }
1964 /*
1965 * copy the already verified devices into our private RAID1
1966 * bookkeeping area. [whatever we allocate in run(),
1967 * should be freed in stop()]
1968 */
1969 if (mddev->private == NULL)
1970 conf = setup_conf(mddev);
1971 else
1972 conf = mddev->private;
1973
1974 if (IS_ERR(conf))
1975 return PTR_ERR(conf);
1976
NeilBrown709ae482009-12-14 12:49:51 +11001977 list_for_each_entry(rdev, &mddev->disks, same_set) {
1978 disk_stack_limits(mddev->gendisk, rdev->bdev,
1979 rdev->data_offset << 9);
1980 /* as we don't honour merge_bvec_fn, we must never risk
NeilBrown627a2d32010-03-08 16:44:38 +11001981 * violating it, so limit ->max_segments to 1 lying within
1982 * a single page, as a one page request is never in violation.
NeilBrown709ae482009-12-14 12:49:51 +11001983 */
NeilBrown627a2d32010-03-08 16:44:38 +11001984 if (rdev->bdev->bd_disk->queue->merge_bvec_fn) {
1985 blk_queue_max_segments(mddev->queue, 1);
1986 blk_queue_segment_boundary(mddev->queue,
1987 PAGE_CACHE_SIZE - 1);
1988 }
NeilBrown709ae482009-12-14 12:49:51 +11001989 }
1990
1991 mddev->degraded = 0;
1992 for (i=0; i < conf->raid_disks; i++)
1993 if (conf->mirrors[i].rdev == NULL ||
1994 !test_bit(In_sync, &conf->mirrors[i].rdev->flags) ||
1995 test_bit(Faulty, &conf->mirrors[i].rdev->flags))
1996 mddev->degraded++;
1997
1998 if (conf->raid_disks - mddev->degraded == 1)
1999 mddev->recovery_cp = MaxSector;
2000
Andre Noll8c6ac8682009-06-18 08:48:06 +10002001 if (mddev->recovery_cp != MaxSector)
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002002 printk(KERN_NOTICE "md/raid1:%s: not clean"
Andre Noll8c6ac8682009-06-18 08:48:06 +10002003 " -- starting background reconstruction\n",
2004 mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 printk(KERN_INFO
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002006 "md/raid1:%s: active with %d out of %d mirrors\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 mdname(mddev), mddev->raid_disks - mddev->degraded,
2008 mddev->raid_disks);
NeilBrown709ae482009-12-14 12:49:51 +11002009
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 /*
2011 * Ok, everything is just fine now
2012 */
NeilBrown709ae482009-12-14 12:49:51 +11002013 mddev->thread = conf->thread;
2014 conf->thread = NULL;
2015 mddev->private = conf;
2016
Dan Williams1f403622009-03-31 14:59:03 +11002017 md_set_array_sectors(mddev, raid1_size(mddev, 0, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
NeilBrown0d129222006-10-03 01:15:54 -07002019 mddev->queue->backing_dev_info.congested_fn = raid1_congested;
2020 mddev->queue->backing_dev_info.congested_data = mddev;
Martin K. Petersena91a2782011-03-17 11:11:05 +01002021 return md_integrity_register(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022}
2023
2024static int stop(mddev_t *mddev)
2025{
NeilBrown070ec552009-06-16 16:54:21 +10002026 conf_t *conf = mddev->private;
NeilBrown4b6d2872005-09-09 16:23:47 -07002027 struct bitmap *bitmap = mddev->bitmap;
NeilBrown4b6d2872005-09-09 16:23:47 -07002028
2029 /* wait for behind writes to complete */
NeilBrowne5551902010-03-31 11:21:44 +11002030 if (bitmap && atomic_read(&bitmap->behind_writes) > 0) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002031 printk(KERN_INFO "md/raid1:%s: behind writes in progress - waiting to stop.\n",
2032 mdname(mddev));
NeilBrown4b6d2872005-09-09 16:23:47 -07002033 /* need to kick something here to make sure I/O goes? */
NeilBrowne5551902010-03-31 11:21:44 +11002034 wait_event(bitmap->behind_wait,
2035 atomic_read(&bitmap->behind_writes) == 0);
NeilBrown4b6d2872005-09-09 16:23:47 -07002036 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037
NeilBrown409c57f2009-03-31 14:39:39 +11002038 raise_barrier(conf);
2039 lower_barrier(conf);
2040
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 md_unregister_thread(mddev->thread);
2042 mddev->thread = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 if (conf->r1bio_pool)
2044 mempool_destroy(conf->r1bio_pool);
Jesper Juhl990a8ba2005-06-21 17:17:30 -07002045 kfree(conf->mirrors);
2046 kfree(conf->poolinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 kfree(conf);
2048 mddev->private = NULL;
2049 return 0;
2050}
2051
2052static int raid1_resize(mddev_t *mddev, sector_t sectors)
2053{
2054 /* no resync is happening, and there is enough space
2055 * on all devices, so we can resize.
2056 * We need to make sure resync covers any new space.
2057 * If the array is shrinking we should possibly wait until
2058 * any io in the removed space completes, but it hardly seems
2059 * worth it.
2060 */
Dan Williams1f403622009-03-31 14:59:03 +11002061 md_set_array_sectors(mddev, raid1_size(mddev, sectors, 0));
Dan Williamsb522adc2009-03-31 15:00:31 +11002062 if (mddev->array_sectors > raid1_size(mddev, sectors, 0))
2063 return -EINVAL;
Andre Nollf233ea52008-07-21 17:05:22 +10002064 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10002065 revalidate_disk(mddev->gendisk);
Dan Williamsb522adc2009-03-31 15:00:31 +11002066 if (sectors > mddev->dev_sectors &&
Andre Nollf233ea52008-07-21 17:05:22 +10002067 mddev->recovery_cp == MaxSector) {
Andre Noll58c0fed2009-03-31 14:33:13 +11002068 mddev->recovery_cp = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
2070 }
Dan Williamsb522adc2009-03-31 15:00:31 +11002071 mddev->dev_sectors = sectors;
NeilBrown4b5c7ae2005-07-27 11:43:28 -07002072 mddev->resync_max_sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 return 0;
2074}
2075
NeilBrown63c70c42006-03-27 01:18:13 -08002076static int raid1_reshape(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077{
2078 /* We need to:
2079 * 1/ resize the r1bio_pool
2080 * 2/ resize conf->mirrors
2081 *
2082 * We allocate a new r1bio_pool if we can.
2083 * Then raise a device barrier and wait until all IO stops.
2084 * Then resize conf->mirrors and swap in the new r1bio pool.
NeilBrown6ea9c072005-06-21 17:17:09 -07002085 *
2086 * At the same time, we "pack" the devices so that all the missing
2087 * devices have the higher raid_disk numbers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 */
2089 mempool_t *newpool, *oldpool;
2090 struct pool_info *newpoolinfo;
2091 mirror_info_t *newmirrors;
NeilBrown070ec552009-06-16 16:54:21 +10002092 conf_t *conf = mddev->private;
NeilBrown63c70c42006-03-27 01:18:13 -08002093 int cnt, raid_disks;
NeilBrownc04be0a2006-10-03 01:15:53 -07002094 unsigned long flags;
Dan Williamsb5470dc2008-06-27 21:44:04 -07002095 int d, d2, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
NeilBrown63c70c42006-03-27 01:18:13 -08002097 /* Cannot change chunk_size, layout, or level */
Andre Noll664e7c42009-06-18 08:45:27 +10002098 if (mddev->chunk_sectors != mddev->new_chunk_sectors ||
NeilBrown63c70c42006-03-27 01:18:13 -08002099 mddev->layout != mddev->new_layout ||
2100 mddev->level != mddev->new_level) {
Andre Noll664e7c42009-06-18 08:45:27 +10002101 mddev->new_chunk_sectors = mddev->chunk_sectors;
NeilBrown63c70c42006-03-27 01:18:13 -08002102 mddev->new_layout = mddev->layout;
2103 mddev->new_level = mddev->level;
2104 return -EINVAL;
2105 }
2106
Dan Williamsb5470dc2008-06-27 21:44:04 -07002107 err = md_allow_write(mddev);
2108 if (err)
2109 return err;
NeilBrown2a2275d2007-01-26 00:57:11 -08002110
NeilBrown63c70c42006-03-27 01:18:13 -08002111 raid_disks = mddev->raid_disks + mddev->delta_disks;
2112
NeilBrown6ea9c072005-06-21 17:17:09 -07002113 if (raid_disks < conf->raid_disks) {
2114 cnt=0;
2115 for (d= 0; d < conf->raid_disks; d++)
2116 if (conf->mirrors[d].rdev)
2117 cnt++;
2118 if (cnt > raid_disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 return -EBUSY;
NeilBrown6ea9c072005-06-21 17:17:09 -07002120 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
2122 newpoolinfo = kmalloc(sizeof(*newpoolinfo), GFP_KERNEL);
2123 if (!newpoolinfo)
2124 return -ENOMEM;
2125 newpoolinfo->mddev = mddev;
2126 newpoolinfo->raid_disks = raid_disks;
2127
2128 newpool = mempool_create(NR_RAID1_BIOS, r1bio_pool_alloc,
2129 r1bio_pool_free, newpoolinfo);
2130 if (!newpool) {
2131 kfree(newpoolinfo);
2132 return -ENOMEM;
2133 }
NeilBrown9ffae0c2006-01-06 00:20:32 -08002134 newmirrors = kzalloc(sizeof(struct mirror_info) * raid_disks, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 if (!newmirrors) {
2136 kfree(newpoolinfo);
2137 mempool_destroy(newpool);
2138 return -ENOMEM;
2139 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140
NeilBrown17999be2006-01-06 00:20:12 -08002141 raise_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
2143 /* ok, everything is stopped */
2144 oldpool = conf->r1bio_pool;
2145 conf->r1bio_pool = newpool;
NeilBrown6ea9c072005-06-21 17:17:09 -07002146
NeilBrowna88aa782007-08-22 14:01:53 -07002147 for (d = d2 = 0; d < conf->raid_disks; d++) {
2148 mdk_rdev_t *rdev = conf->mirrors[d].rdev;
2149 if (rdev && rdev->raid_disk != d2) {
2150 char nm[20];
2151 sprintf(nm, "rd%d", rdev->raid_disk);
2152 sysfs_remove_link(&mddev->kobj, nm);
2153 rdev->raid_disk = d2;
2154 sprintf(nm, "rd%d", rdev->raid_disk);
2155 sysfs_remove_link(&mddev->kobj, nm);
2156 if (sysfs_create_link(&mddev->kobj,
2157 &rdev->kobj, nm))
2158 printk(KERN_WARNING
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002159 "md/raid1:%s: cannot register "
2160 "%s\n",
2161 mdname(mddev), nm);
NeilBrown6ea9c072005-06-21 17:17:09 -07002162 }
NeilBrowna88aa782007-08-22 14:01:53 -07002163 if (rdev)
2164 newmirrors[d2++].rdev = rdev;
2165 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 kfree(conf->mirrors);
2167 conf->mirrors = newmirrors;
2168 kfree(conf->poolinfo);
2169 conf->poolinfo = newpoolinfo;
2170
NeilBrownc04be0a2006-10-03 01:15:53 -07002171 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 mddev->degraded += (raid_disks - conf->raid_disks);
NeilBrownc04be0a2006-10-03 01:15:53 -07002173 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 conf->raid_disks = mddev->raid_disks = raid_disks;
NeilBrown63c70c42006-03-27 01:18:13 -08002175 mddev->delta_disks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176
NeilBrown6ea9c072005-06-21 17:17:09 -07002177 conf->last_used = 0; /* just make sure it is in-range */
NeilBrown17999be2006-01-06 00:20:12 -08002178 lower_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179
2180 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
2181 md_wakeup_thread(mddev->thread);
2182
2183 mempool_destroy(oldpool);
2184 return 0;
2185}
2186
NeilBrown500af872005-09-09 16:23:58 -07002187static void raid1_quiesce(mddev_t *mddev, int state)
NeilBrown36fa3062005-09-09 16:23:45 -07002188{
NeilBrown070ec552009-06-16 16:54:21 +10002189 conf_t *conf = mddev->private;
NeilBrown36fa3062005-09-09 16:23:45 -07002190
2191 switch(state) {
NeilBrown6eef4b22009-12-14 12:49:51 +11002192 case 2: /* wake for suspend */
2193 wake_up(&conf->wait_barrier);
2194 break;
NeilBrown9e6603d2005-09-09 16:23:48 -07002195 case 1:
NeilBrown17999be2006-01-06 00:20:12 -08002196 raise_barrier(conf);
NeilBrown36fa3062005-09-09 16:23:45 -07002197 break;
NeilBrown9e6603d2005-09-09 16:23:48 -07002198 case 0:
NeilBrown17999be2006-01-06 00:20:12 -08002199 lower_barrier(conf);
NeilBrown36fa3062005-09-09 16:23:45 -07002200 break;
2201 }
NeilBrown36fa3062005-09-09 16:23:45 -07002202}
2203
NeilBrown709ae482009-12-14 12:49:51 +11002204static void *raid1_takeover(mddev_t *mddev)
2205{
2206 /* raid1 can take over:
2207 * raid5 with 2 devices, any layout or chunk size
2208 */
2209 if (mddev->level == 5 && mddev->raid_disks == 2) {
2210 conf_t *conf;
2211 mddev->new_level = 1;
2212 mddev->new_layout = 0;
2213 mddev->new_chunk_sectors = 0;
2214 conf = setup_conf(mddev);
2215 if (!IS_ERR(conf))
2216 conf->barrier = 1;
2217 return conf;
2218 }
2219 return ERR_PTR(-EINVAL);
2220}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221
NeilBrown2604b702006-01-06 00:20:36 -08002222static struct mdk_personality raid1_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223{
2224 .name = "raid1",
NeilBrown2604b702006-01-06 00:20:36 -08002225 .level = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 .owner = THIS_MODULE,
2227 .make_request = make_request,
2228 .run = run,
2229 .stop = stop,
2230 .status = status,
2231 .error_handler = error,
2232 .hot_add_disk = raid1_add_disk,
2233 .hot_remove_disk= raid1_remove_disk,
2234 .spare_active = raid1_spare_active,
2235 .sync_request = sync_request,
2236 .resize = raid1_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07002237 .size = raid1_size,
NeilBrown63c70c42006-03-27 01:18:13 -08002238 .check_reshape = raid1_reshape,
NeilBrown36fa3062005-09-09 16:23:45 -07002239 .quiesce = raid1_quiesce,
NeilBrown709ae482009-12-14 12:49:51 +11002240 .takeover = raid1_takeover,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241};
2242
2243static int __init raid_init(void)
2244{
NeilBrown2604b702006-01-06 00:20:36 -08002245 return register_md_personality(&raid1_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246}
2247
2248static void raid_exit(void)
2249{
NeilBrown2604b702006-01-06 00:20:36 -08002250 unregister_md_personality(&raid1_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251}
2252
2253module_init(raid_init);
2254module_exit(raid_exit);
2255MODULE_LICENSE("GPL");
NeilBrown0efb9e62009-12-14 12:49:58 +11002256MODULE_DESCRIPTION("RAID1 (mirroring) personality for MD");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257MODULE_ALIAS("md-personality-3"); /* RAID1 */
NeilBrownd9d166c2006-01-06 00:20:51 -08002258MODULE_ALIAS("md-raid1");
NeilBrown2604b702006-01-06 00:20:36 -08002259MODULE_ALIAS("md-level-1");