blob: 3cbf0ac2aaad3b6bdab9c859d36f44369e027ff7 [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>
Christian Dietrich8bda4702011-07-27 11:00:36 +100038#include <linux/ratelimit.h>
NeilBrown43b2e5d2009-03-31 14:33:13 +110039#include "md.h"
Christoph Hellwigef740c32009-03-31 14:27:03 +110040#include "raid1.h"
41#include "bitmap.h"
NeilBrown191ea9b2005-06-21 17:17:23 -070042
43#define DEBUG 0
44#if DEBUG
45#define PRINTK(x...) printk(x)
46#else
47#define PRINTK(x...)
48#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50/*
51 * Number of guaranteed r1bios in case of extreme VM load:
52 */
53#define NR_RAID1_BIOS 256
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
NeilBrown17999be2006-01-06 00:20:12 -080056static void allow_barrier(conf_t *conf);
57static void lower_barrier(conf_t *conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Al Virodd0fc662005-10-07 07:46:04 +010059static void * r1bio_pool_alloc(gfp_t gfp_flags, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060{
61 struct pool_info *pi = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 int size = offsetof(r1bio_t, bios[pi->raid_disks]);
63
64 /* allocate a r1bio with room for raid_disks entries in the bios array */
Jens Axboe7eaceac2011-03-10 08:52:07 +010065 return kzalloc(size, gfp_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066}
67
68static void r1bio_pool_free(void *r1_bio, void *data)
69{
70 kfree(r1_bio);
71}
72
73#define RESYNC_BLOCK_SIZE (64*1024)
74//#define RESYNC_BLOCK_SIZE PAGE_SIZE
75#define RESYNC_SECTORS (RESYNC_BLOCK_SIZE >> 9)
76#define RESYNC_PAGES ((RESYNC_BLOCK_SIZE + PAGE_SIZE-1) / PAGE_SIZE)
77#define RESYNC_WINDOW (2048*1024)
78
Al Virodd0fc662005-10-07 07:46:04 +010079static void * r1buf_pool_alloc(gfp_t gfp_flags, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070080{
81 struct pool_info *pi = data;
82 struct page *page;
83 r1bio_t *r1_bio;
84 struct bio *bio;
85 int i, j;
86
87 r1_bio = r1bio_pool_alloc(gfp_flags, pi);
Jens Axboe7eaceac2011-03-10 08:52:07 +010088 if (!r1_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91 /*
92 * Allocate bios : 1 for reading, n-1 for writing
93 */
94 for (j = pi->raid_disks ; j-- ; ) {
NeilBrown67465572010-10-26 17:33:54 +110095 bio = bio_kmalloc(gfp_flags, RESYNC_PAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 if (!bio)
97 goto out_free_bio;
98 r1_bio->bios[j] = bio;
99 }
100 /*
101 * Allocate RESYNC_PAGES data pages and attach them to
NeilBrownd11c1712006-01-06 00:20:26 -0800102 * the first bio.
103 * If this is a user-requested check/repair, allocate
104 * RESYNC_PAGES for each bio.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 */
NeilBrownd11c1712006-01-06 00:20:26 -0800106 if (test_bit(MD_RECOVERY_REQUESTED, &pi->mddev->recovery))
107 j = pi->raid_disks;
108 else
109 j = 1;
110 while(j--) {
111 bio = r1_bio->bios[j];
112 for (i = 0; i < RESYNC_PAGES; i++) {
113 page = alloc_page(gfp_flags);
114 if (unlikely(!page))
115 goto out_free_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
NeilBrownd11c1712006-01-06 00:20:26 -0800117 bio->bi_io_vec[i].bv_page = page;
NeilBrown303a0e12009-04-06 14:40:38 +1000118 bio->bi_vcnt = i+1;
NeilBrownd11c1712006-01-06 00:20:26 -0800119 }
120 }
121 /* If not user-requests, copy the page pointers to all bios */
122 if (!test_bit(MD_RECOVERY_REQUESTED, &pi->mddev->recovery)) {
123 for (i=0; i<RESYNC_PAGES ; i++)
124 for (j=1; j<pi->raid_disks; j++)
125 r1_bio->bios[j]->bi_io_vec[i].bv_page =
126 r1_bio->bios[0]->bi_io_vec[i].bv_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 }
128
129 r1_bio->master_bio = NULL;
130
131 return r1_bio;
132
133out_free_pages:
NeilBrown303a0e12009-04-06 14:40:38 +1000134 for (j=0 ; j < pi->raid_disks; j++)
135 for (i=0; i < r1_bio->bios[j]->bi_vcnt ; i++)
136 put_page(r1_bio->bios[j]->bi_io_vec[i].bv_page);
NeilBrownd11c1712006-01-06 00:20:26 -0800137 j = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138out_free_bio:
139 while ( ++j < pi->raid_disks )
140 bio_put(r1_bio->bios[j]);
141 r1bio_pool_free(r1_bio, data);
142 return NULL;
143}
144
145static void r1buf_pool_free(void *__r1_bio, void *data)
146{
147 struct pool_info *pi = data;
NeilBrownd11c1712006-01-06 00:20:26 -0800148 int i,j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 r1bio_t *r1bio = __r1_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
NeilBrownd11c1712006-01-06 00:20:26 -0800151 for (i = 0; i < RESYNC_PAGES; i++)
152 for (j = pi->raid_disks; j-- ;) {
153 if (j == 0 ||
154 r1bio->bios[j]->bi_io_vec[i].bv_page !=
155 r1bio->bios[0]->bi_io_vec[i].bv_page)
NeilBrown1345b1d2006-01-06 00:20:40 -0800156 safe_put_page(r1bio->bios[j]->bi_io_vec[i].bv_page);
NeilBrownd11c1712006-01-06 00:20:26 -0800157 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 for (i=0 ; i < pi->raid_disks; i++)
159 bio_put(r1bio->bios[i]);
160
161 r1bio_pool_free(r1bio, data);
162}
163
164static void put_all_bios(conf_t *conf, r1bio_t *r1_bio)
165{
166 int i;
167
168 for (i = 0; i < conf->raid_disks; i++) {
169 struct bio **bio = r1_bio->bios + i;
NeilBrowncf30a472006-01-06 00:20:23 -0800170 if (*bio && *bio != IO_BLOCKED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 bio_put(*bio);
172 *bio = NULL;
173 }
174}
175
Arjan van de Ven858119e2006-01-14 13:20:43 -0800176static void free_r1bio(r1bio_t *r1_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
NeilBrown070ec552009-06-16 16:54:21 +1000178 conf_t *conf = r1_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180 /*
181 * Wake up any possible resync thread that waits for the device
182 * to go idle.
183 */
NeilBrown17999be2006-01-06 00:20:12 -0800184 allow_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 put_all_bios(conf, r1_bio);
187 mempool_free(r1_bio, conf->r1bio_pool);
188}
189
Arjan van de Ven858119e2006-01-14 13:20:43 -0800190static void put_buf(r1bio_t *r1_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
NeilBrown070ec552009-06-16 16:54:21 +1000192 conf_t *conf = r1_bio->mddev->private;
NeilBrown3e198f72006-01-06 00:20:21 -0800193 int i;
194
195 for (i=0; i<conf->raid_disks; i++) {
196 struct bio *bio = r1_bio->bios[i];
197 if (bio->bi_end_io)
198 rdev_dec_pending(conf->mirrors[i].rdev, r1_bio->mddev);
199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201 mempool_free(r1_bio, conf->r1buf_pool);
202
NeilBrown17999be2006-01-06 00:20:12 -0800203 lower_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
205
206static void reschedule_retry(r1bio_t *r1_bio)
207{
208 unsigned long flags;
209 mddev_t *mddev = r1_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +1000210 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 spin_lock_irqsave(&conf->device_lock, flags);
213 list_add(&r1_bio->retry_list, &conf->retry_list);
NeilBrownddaf22a2006-01-06 00:20:19 -0800214 conf->nr_queued ++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 spin_unlock_irqrestore(&conf->device_lock, flags);
216
NeilBrown17999be2006-01-06 00:20:12 -0800217 wake_up(&conf->wait_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 md_wakeup_thread(mddev->thread);
219}
220
221/*
222 * raid_end_bio_io() is called when we have finished servicing a mirrored
223 * operation and are ready to return a success/failure code to the buffer
224 * cache layer.
225 */
226static void raid_end_bio_io(r1bio_t *r1_bio)
227{
228 struct bio *bio = r1_bio->master_bio;
229
NeilBrown4b6d2872005-09-09 16:23:47 -0700230 /* if nobody has done the final endio yet, do it now */
231 if (!test_and_set_bit(R1BIO_Returned, &r1_bio->state)) {
232 PRINTK(KERN_DEBUG "raid1: sync end %s on sectors %llu-%llu\n",
233 (bio_data_dir(bio) == WRITE) ? "write" : "read",
234 (unsigned long long) bio->bi_sector,
235 (unsigned long long) bio->bi_sector +
236 (bio->bi_size >> 9) - 1);
237
NeilBrown6712ecf2007-09-27 12:47:43 +0200238 bio_endio(bio,
NeilBrown4b6d2872005-09-09 16:23:47 -0700239 test_bit(R1BIO_Uptodate, &r1_bio->state) ? 0 : -EIO);
240 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 free_r1bio(r1_bio);
242}
243
244/*
245 * Update disk head position estimator based on IRQ completion info.
246 */
247static inline void update_head_pos(int disk, r1bio_t *r1_bio)
248{
NeilBrown070ec552009-06-16 16:54:21 +1000249 conf_t *conf = r1_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 conf->mirrors[disk].head_position =
252 r1_bio->sector + (r1_bio->sectors);
253}
254
NeilBrown6712ecf2007-09-27 12:47:43 +0200255static void raid1_end_read_request(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
257 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
H Hartley Sweeten7b928132010-03-08 16:02:40 +1100258 r1bio_t *r1_bio = bio->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 int mirror;
NeilBrown070ec552009-06-16 16:54:21 +1000260 conf_t *conf = r1_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 mirror = r1_bio->read_disk;
263 /*
264 * this branch is our 'one mirror IO has finished' event handler:
265 */
NeilBrownddaf22a2006-01-06 00:20:19 -0800266 update_head_pos(mirror, r1_bio);
267
NeilBrowndd00a992007-05-10 03:15:50 -0700268 if (uptodate)
269 set_bit(R1BIO_Uptodate, &r1_bio->state);
270 else {
271 /* If all other devices have failed, we want to return
272 * the error upwards rather than fail the last device.
273 * Here we redefine "uptodate" to mean "Don't want to retry"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 */
NeilBrowndd00a992007-05-10 03:15:50 -0700275 unsigned long flags;
276 spin_lock_irqsave(&conf->device_lock, flags);
277 if (r1_bio->mddev->degraded == conf->raid_disks ||
278 (r1_bio->mddev->degraded == conf->raid_disks-1 &&
279 !test_bit(Faulty, &conf->mirrors[mirror].rdev->flags)))
280 uptodate = 1;
281 spin_unlock_irqrestore(&conf->device_lock, flags);
282 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
NeilBrowndd00a992007-05-10 03:15:50 -0700284 if (uptodate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 raid_end_bio_io(r1_bio);
NeilBrowndd00a992007-05-10 03:15:50 -0700286 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 /*
288 * oops, read error:
289 */
290 char b[BDEVNAME_SIZE];
Christian Dietrich8bda4702011-07-27 11:00:36 +1000291 printk_ratelimited(
292 KERN_ERR "md/raid1:%s: %s: "
293 "rescheduling sector %llu\n",
294 mdname(conf->mddev),
295 bdevname(conf->mirrors[mirror].rdev->bdev,
296 b),
297 (unsigned long long)r1_bio->sector);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 reschedule_retry(r1_bio);
299 }
300
301 rdev_dec_pending(conf->mirrors[mirror].rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302}
303
NeilBrownaf6d7b72011-05-11 14:51:19 +1000304static void r1_bio_write_done(r1bio_t *r1_bio)
NeilBrown4e780642010-10-19 12:54:01 +1100305{
306 if (atomic_dec_and_test(&r1_bio->remaining))
307 {
308 /* it really is the end of this request */
309 if (test_bit(R1BIO_BehindIO, &r1_bio->state)) {
310 /* free extra copy of the data pages */
NeilBrownaf6d7b72011-05-11 14:51:19 +1000311 int i = r1_bio->behind_page_count;
NeilBrown4e780642010-10-19 12:54:01 +1100312 while (i--)
NeilBrownaf6d7b72011-05-11 14:51:19 +1000313 safe_put_page(r1_bio->behind_pages[i]);
314 kfree(r1_bio->behind_pages);
315 r1_bio->behind_pages = NULL;
NeilBrown4e780642010-10-19 12:54:01 +1100316 }
317 /* clear the bitmap if all writes complete successfully */
318 bitmap_endwrite(r1_bio->mddev->bitmap, r1_bio->sector,
319 r1_bio->sectors,
320 !test_bit(R1BIO_Degraded, &r1_bio->state),
NeilBrownaf6d7b72011-05-11 14:51:19 +1000321 test_bit(R1BIO_BehindIO, &r1_bio->state));
NeilBrown4e780642010-10-19 12:54:01 +1100322 md_write_end(r1_bio->mddev);
323 raid_end_bio_io(r1_bio);
324 }
325}
326
NeilBrown6712ecf2007-09-27 12:47:43 +0200327static void raid1_end_write_request(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328{
329 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
H Hartley Sweeten7b928132010-03-08 16:02:40 +1100330 r1bio_t *r1_bio = bio->bi_private;
NeilBrowna9701a32005-11-08 21:39:34 -0800331 int mirror, behind = test_bit(R1BIO_BehindIO, &r1_bio->state);
NeilBrown070ec552009-06-16 16:54:21 +1000332 conf_t *conf = r1_bio->mddev->private;
NeilBrown04b857f2006-03-09 17:33:46 -0800333 struct bio *to_put = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
336 for (mirror = 0; mirror < conf->raid_disks; mirror++)
337 if (r1_bio->bios[mirror] == bio)
338 break;
339
Tejun Heoe9c74692010-09-03 11:56:18 +0200340 /*
341 * 'one mirror IO has finished' event handler:
342 */
343 r1_bio->bios[mirror] = NULL;
344 to_put = bio;
345 if (!uptodate) {
346 md_error(r1_bio->mddev, conf->mirrors[mirror].rdev);
347 /* an I/O failed, we can't clear the bitmap */
348 set_bit(R1BIO_Degraded, &r1_bio->state);
349 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 /*
Tejun Heoe9c74692010-09-03 11:56:18 +0200351 * Set R1BIO_Uptodate in our master bio, so that we
352 * will return a good error code for to the higher
353 * levels even if IO on some other mirrored buffer
354 * fails.
355 *
356 * The 'master' represents the composite IO operation
357 * to user-side. So if something waits for IO, then it
358 * will wait for the 'master' bio.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 */
Tejun Heoe9c74692010-09-03 11:56:18 +0200360 set_bit(R1BIO_Uptodate, &r1_bio->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
Tejun Heoe9c74692010-09-03 11:56:18 +0200362 update_head_pos(mirror, r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Tejun Heoe9c74692010-09-03 11:56:18 +0200364 if (behind) {
365 if (test_bit(WriteMostly, &conf->mirrors[mirror].rdev->flags))
366 atomic_dec(&r1_bio->behind_remaining);
NeilBrown4b6d2872005-09-09 16:23:47 -0700367
Tejun Heoe9c74692010-09-03 11:56:18 +0200368 /*
369 * In behind mode, we ACK the master bio once the I/O
370 * has safely reached all non-writemostly
371 * disks. Setting the Returned bit ensures that this
372 * gets done only once -- we don't ever want to return
373 * -EIO here, instead we'll wait
374 */
375 if (atomic_read(&r1_bio->behind_remaining) >= (atomic_read(&r1_bio->remaining)-1) &&
376 test_bit(R1BIO_Uptodate, &r1_bio->state)) {
377 /* Maybe we can return now */
378 if (!test_and_set_bit(R1BIO_Returned, &r1_bio->state)) {
379 struct bio *mbio = r1_bio->master_bio;
380 PRINTK(KERN_DEBUG "raid1: behind end write sectors %llu-%llu\n",
381 (unsigned long long) mbio->bi_sector,
382 (unsigned long long) mbio->bi_sector +
383 (mbio->bi_size >> 9) - 1);
384 bio_endio(mbio, 0);
NeilBrown4b6d2872005-09-09 16:23:47 -0700385 }
386 }
387 }
Tejun Heoe9c74692010-09-03 11:56:18 +0200388 rdev_dec_pending(conf->mirrors[mirror].rdev, conf->mddev);
389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 * Let's see if all mirrored write operations have finished
392 * already.
393 */
NeilBrownaf6d7b72011-05-11 14:51:19 +1000394 r1_bio_write_done(r1_bio);
NeilBrownc70810b2006-06-26 00:27:35 -0700395
NeilBrown04b857f2006-03-09 17:33:46 -0800396 if (to_put)
397 bio_put(to_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398}
399
400
401/*
402 * This routine returns the disk from which the requested read should
403 * be done. There is a per-array 'next expected sequential IO' sector
404 * number - if this matches on the next IO then we use the last disk.
405 * There is also a per-disk 'last know head position' sector that is
406 * maintained from IRQ contexts, both the normal and the resync IO
407 * completion handlers update this position correctly. If there is no
408 * perfect sequential match then we pick the disk whose head is closest.
409 *
410 * If there are 2 mirrors in the same 2 devices, performance degrades
411 * because position is mirror, not device based.
412 *
413 * The rdev for the device selected will have nr_pending incremented.
414 */
415static int read_balance(conf_t *conf, r1bio_t *r1_bio)
416{
NeilBrownaf3a2cd2010-05-08 08:20:17 +1000417 const sector_t this_sector = r1_bio->sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 const int sectors = r1_bio->sectors;
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000419 int start_disk;
NeilBrown76073052011-05-11 14:34:56 +1000420 int best_disk;
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000421 int i;
NeilBrown76073052011-05-11 14:34:56 +1000422 sector_t best_dist;
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700423 mdk_rdev_t *rdev;
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000424 int choose_first;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426 rcu_read_lock();
427 /*
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700428 * Check if we can balance. We can balance on the whole
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 * device if no resync is going on, or below the resync window.
430 * We take the first readable disk when above the resync window.
431 */
432 retry:
NeilBrown76073052011-05-11 14:34:56 +1000433 best_disk = -1;
434 best_dist = MaxSector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 if (conf->mddev->recovery_cp < MaxSector &&
436 (this_sector + sectors >= conf->next_resync)) {
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000437 choose_first = 1;
438 start_disk = 0;
439 } else {
440 choose_first = 0;
441 start_disk = conf->last_used;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 }
443
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000444 for (i = 0 ; i < conf->raid_disks ; i++) {
NeilBrown76073052011-05-11 14:34:56 +1000445 sector_t dist;
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000446 int disk = start_disk + i;
447 if (disk >= conf->raid_disks)
448 disk -= conf->raid_disks;
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700449
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000450 rdev = rcu_dereference(conf->mirrors[disk].rdev);
451 if (r1_bio->bios[disk] == IO_BLOCKED
452 || rdev == NULL
NeilBrown76073052011-05-11 14:34:56 +1000453 || test_bit(Faulty, &rdev->flags))
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000454 continue;
NeilBrown76073052011-05-11 14:34:56 +1000455 if (!test_bit(In_sync, &rdev->flags) &&
456 rdev->recovery_offset < this_sector + sectors)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 continue;
NeilBrown76073052011-05-11 14:34:56 +1000458 if (test_bit(WriteMostly, &rdev->flags)) {
459 /* Don't balance among write-mostly, just
460 * use the first as a last resort */
461 if (best_disk < 0)
462 best_disk = disk;
463 continue;
464 }
465 /* This is a reasonable device to use. It might
466 * even be best.
467 */
468 dist = abs(this_sector - conf->mirrors[disk].head_position);
469 if (choose_first
470 /* Don't change to another disk for sequential reads */
471 || conf->next_seq_sect == this_sector
472 || dist == 0
473 /* If device is idle, use it */
474 || atomic_read(&rdev->nr_pending) == 0) {
475 best_disk = disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 break;
477 }
NeilBrown76073052011-05-11 14:34:56 +1000478 if (dist < best_dist) {
479 best_dist = dist;
480 best_disk = disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 }
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000482 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
NeilBrown76073052011-05-11 14:34:56 +1000484 if (best_disk >= 0) {
485 rdev = rcu_dereference(conf->mirrors[best_disk].rdev);
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700486 if (!rdev)
487 goto retry;
488 atomic_inc(&rdev->nr_pending);
NeilBrown76073052011-05-11 14:34:56 +1000489 if (test_bit(Faulty, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 /* cannot risk returning a device that failed
491 * before we inc'ed nr_pending
492 */
NeilBrown03c902e2006-01-06 00:20:46 -0800493 rdev_dec_pending(rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 goto retry;
495 }
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700496 conf->next_seq_sect = this_sector + sectors;
NeilBrown76073052011-05-11 14:34:56 +1000497 conf->last_used = best_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 }
499 rcu_read_unlock();
500
NeilBrown76073052011-05-11 14:34:56 +1000501 return best_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502}
503
Jonathan Brassow1ed72422011-06-07 17:50:35 -0500504int md_raid1_congested(mddev_t *mddev, int bits)
NeilBrown0d129222006-10-03 01:15:54 -0700505{
NeilBrown070ec552009-06-16 16:54:21 +1000506 conf_t *conf = mddev->private;
NeilBrown0d129222006-10-03 01:15:54 -0700507 int i, ret = 0;
508
509 rcu_read_lock();
510 for (i = 0; i < mddev->raid_disks; i++) {
511 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
512 if (rdev && !test_bit(Faulty, &rdev->flags)) {
Jens Axboe165125e2007-07-24 09:28:11 +0200513 struct request_queue *q = bdev_get_queue(rdev->bdev);
NeilBrown0d129222006-10-03 01:15:54 -0700514
Jonathan Brassow1ed72422011-06-07 17:50:35 -0500515 BUG_ON(!q);
516
NeilBrown0d129222006-10-03 01:15:54 -0700517 /* Note the '|| 1' - when read_balance prefers
518 * non-congested targets, it can be removed
519 */
Alexander Beregalov91a9e992009-04-07 01:35:56 +0400520 if ((bits & (1<<BDI_async_congested)) || 1)
NeilBrown0d129222006-10-03 01:15:54 -0700521 ret |= bdi_congested(&q->backing_dev_info, bits);
522 else
523 ret &= bdi_congested(&q->backing_dev_info, bits);
524 }
525 }
526 rcu_read_unlock();
527 return ret;
528}
Jonathan Brassow1ed72422011-06-07 17:50:35 -0500529EXPORT_SYMBOL_GPL(md_raid1_congested);
NeilBrown0d129222006-10-03 01:15:54 -0700530
Jonathan Brassow1ed72422011-06-07 17:50:35 -0500531static int raid1_congested(void *data, int bits)
532{
533 mddev_t *mddev = data;
534
535 return mddev_congested(mddev, bits) ||
536 md_raid1_congested(mddev, bits);
537}
NeilBrown0d129222006-10-03 01:15:54 -0700538
Jens Axboe7eaceac2011-03-10 08:52:07 +0100539static void flush_pending_writes(conf_t *conf)
NeilBrowna35e63e2008-03-04 14:29:29 -0800540{
541 /* Any writes that have been queued but are awaiting
542 * bitmap updates get flushed here.
NeilBrowna35e63e2008-03-04 14:29:29 -0800543 */
NeilBrowna35e63e2008-03-04 14:29:29 -0800544 spin_lock_irq(&conf->device_lock);
545
546 if (conf->pending_bio_list.head) {
547 struct bio *bio;
548 bio = bio_list_get(&conf->pending_bio_list);
NeilBrowna35e63e2008-03-04 14:29:29 -0800549 spin_unlock_irq(&conf->device_lock);
550 /* flush any pending bitmap writes to
551 * disk before proceeding w/ I/O */
552 bitmap_unplug(conf->mddev->bitmap);
553
554 while (bio) { /* submit pending writes */
555 struct bio *next = bio->bi_next;
556 bio->bi_next = NULL;
557 generic_make_request(bio);
558 bio = next;
559 }
NeilBrowna35e63e2008-03-04 14:29:29 -0800560 } else
561 spin_unlock_irq(&conf->device_lock);
Jens Axboe7eaceac2011-03-10 08:52:07 +0100562}
563
NeilBrown17999be2006-01-06 00:20:12 -0800564/* Barriers....
565 * Sometimes we need to suspend IO while we do something else,
566 * either some resync/recovery, or reconfigure the array.
567 * To do this we raise a 'barrier'.
568 * The 'barrier' is a counter that can be raised multiple times
569 * to count how many activities are happening which preclude
570 * normal IO.
571 * We can only raise the barrier if there is no pending IO.
572 * i.e. if nr_pending == 0.
573 * We choose only to raise the barrier if no-one is waiting for the
574 * barrier to go down. This means that as soon as an IO request
575 * is ready, no other operations which require a barrier will start
576 * until the IO request has had a chance.
577 *
578 * So: regular IO calls 'wait_barrier'. When that returns there
579 * is no backgroup IO happening, It must arrange to call
580 * allow_barrier when it has finished its IO.
581 * backgroup IO calls must call raise_barrier. Once that returns
582 * there is no normal IO happeing. It must arrange to call
583 * lower_barrier when the particular background IO completes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 */
585#define RESYNC_DEPTH 32
586
NeilBrown17999be2006-01-06 00:20:12 -0800587static void raise_barrier(conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
589 spin_lock_irq(&conf->resync_lock);
NeilBrown17999be2006-01-06 00:20:12 -0800590
591 /* Wait until no block IO is waiting */
592 wait_event_lock_irq(conf->wait_barrier, !conf->nr_waiting,
NeilBrownc3b328a2011-04-18 18:25:43 +1000593 conf->resync_lock, );
NeilBrown17999be2006-01-06 00:20:12 -0800594
595 /* block any new IO from starting */
596 conf->barrier++;
597
NeilBrown046abee2010-10-26 15:46:20 +1100598 /* Now wait for all pending IO to complete */
NeilBrown17999be2006-01-06 00:20:12 -0800599 wait_event_lock_irq(conf->wait_barrier,
600 !conf->nr_pending && conf->barrier < RESYNC_DEPTH,
NeilBrownc3b328a2011-04-18 18:25:43 +1000601 conf->resync_lock, );
NeilBrown17999be2006-01-06 00:20:12 -0800602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 spin_unlock_irq(&conf->resync_lock);
604}
605
NeilBrown17999be2006-01-06 00:20:12 -0800606static void lower_barrier(conf_t *conf)
607{
608 unsigned long flags;
NeilBrown709ae482009-12-14 12:49:51 +1100609 BUG_ON(conf->barrier <= 0);
NeilBrown17999be2006-01-06 00:20:12 -0800610 spin_lock_irqsave(&conf->resync_lock, flags);
611 conf->barrier--;
612 spin_unlock_irqrestore(&conf->resync_lock, flags);
613 wake_up(&conf->wait_barrier);
614}
615
616static void wait_barrier(conf_t *conf)
617{
618 spin_lock_irq(&conf->resync_lock);
619 if (conf->barrier) {
620 conf->nr_waiting++;
621 wait_event_lock_irq(conf->wait_barrier, !conf->barrier,
622 conf->resync_lock,
NeilBrownc3b328a2011-04-18 18:25:43 +1000623 );
NeilBrown17999be2006-01-06 00:20:12 -0800624 conf->nr_waiting--;
625 }
626 conf->nr_pending++;
627 spin_unlock_irq(&conf->resync_lock);
628}
629
630static void allow_barrier(conf_t *conf)
631{
632 unsigned long flags;
633 spin_lock_irqsave(&conf->resync_lock, flags);
634 conf->nr_pending--;
635 spin_unlock_irqrestore(&conf->resync_lock, flags);
636 wake_up(&conf->wait_barrier);
637}
638
NeilBrownddaf22a2006-01-06 00:20:19 -0800639static void freeze_array(conf_t *conf)
640{
641 /* stop syncio and normal IO and wait for everything to
642 * go quite.
643 * We increment barrier and nr_waiting, and then
NeilBrown1c830532008-03-04 14:29:35 -0800644 * wait until nr_pending match nr_queued+1
645 * This is called in the context of one normal IO request
646 * that has failed. Thus any sync request that might be pending
647 * will be blocked by nr_pending, and we need to wait for
648 * pending IO requests to complete or be queued for re-try.
649 * Thus the number queued (nr_queued) plus this request (1)
650 * must match the number of pending IOs (nr_pending) before
651 * we continue.
NeilBrownddaf22a2006-01-06 00:20:19 -0800652 */
653 spin_lock_irq(&conf->resync_lock);
654 conf->barrier++;
655 conf->nr_waiting++;
656 wait_event_lock_irq(conf->wait_barrier,
NeilBrown1c830532008-03-04 14:29:35 -0800657 conf->nr_pending == conf->nr_queued+1,
NeilBrownddaf22a2006-01-06 00:20:19 -0800658 conf->resync_lock,
NeilBrownc3b328a2011-04-18 18:25:43 +1000659 flush_pending_writes(conf));
NeilBrownddaf22a2006-01-06 00:20:19 -0800660 spin_unlock_irq(&conf->resync_lock);
661}
662static void unfreeze_array(conf_t *conf)
663{
664 /* reverse the effect of the freeze */
665 spin_lock_irq(&conf->resync_lock);
666 conf->barrier--;
667 conf->nr_waiting--;
668 wake_up(&conf->wait_barrier);
669 spin_unlock_irq(&conf->resync_lock);
670}
671
NeilBrown17999be2006-01-06 00:20:12 -0800672
NeilBrown4e780642010-10-19 12:54:01 +1100673/* duplicate the data pages for behind I/O
NeilBrown4e780642010-10-19 12:54:01 +1100674 */
NeilBrownaf6d7b72011-05-11 14:51:19 +1000675static void alloc_behind_pages(struct bio *bio, r1bio_t *r1_bio)
NeilBrown4b6d2872005-09-09 16:23:47 -0700676{
677 int i;
678 struct bio_vec *bvec;
NeilBrownaf6d7b72011-05-11 14:51:19 +1000679 struct page **pages = kzalloc(bio->bi_vcnt * sizeof(struct page*),
NeilBrown4b6d2872005-09-09 16:23:47 -0700680 GFP_NOIO);
681 if (unlikely(!pages))
NeilBrownaf6d7b72011-05-11 14:51:19 +1000682 return;
NeilBrown4b6d2872005-09-09 16:23:47 -0700683
NeilBrown4b6d2872005-09-09 16:23:47 -0700684 bio_for_each_segment(bvec, bio, i) {
NeilBrownaf6d7b72011-05-11 14:51:19 +1000685 pages[i] = alloc_page(GFP_NOIO);
686 if (unlikely(!pages[i]))
NeilBrown4b6d2872005-09-09 16:23:47 -0700687 goto do_sync_io;
NeilBrownaf6d7b72011-05-11 14:51:19 +1000688 memcpy(kmap(pages[i]) + bvec->bv_offset,
NeilBrown4b6d2872005-09-09 16:23:47 -0700689 kmap(bvec->bv_page) + bvec->bv_offset, bvec->bv_len);
NeilBrownaf6d7b72011-05-11 14:51:19 +1000690 kunmap(pages[i]);
NeilBrown4b6d2872005-09-09 16:23:47 -0700691 kunmap(bvec->bv_page);
692 }
NeilBrownaf6d7b72011-05-11 14:51:19 +1000693 r1_bio->behind_pages = pages;
694 r1_bio->behind_page_count = bio->bi_vcnt;
695 set_bit(R1BIO_BehindIO, &r1_bio->state);
696 return;
NeilBrown4b6d2872005-09-09 16:23:47 -0700697
698do_sync_io:
NeilBrownaf6d7b72011-05-11 14:51:19 +1000699 for (i = 0; i < bio->bi_vcnt; i++)
700 if (pages[i])
701 put_page(pages[i]);
NeilBrown4b6d2872005-09-09 16:23:47 -0700702 kfree(pages);
703 PRINTK("%dB behind alloc failed, doing sync I/O\n", bio->bi_size);
NeilBrown4b6d2872005-09-09 16:23:47 -0700704}
705
NeilBrown21a52c62010-04-01 15:02:13 +1100706static int make_request(mddev_t *mddev, struct bio * bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707{
NeilBrown070ec552009-06-16 16:54:21 +1000708 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 mirror_info_t *mirror;
710 r1bio_t *r1_bio;
711 struct bio *read_bio;
NeilBrown191ea9b2005-06-21 17:17:23 -0700712 int i, targets = 0, disks;
NeilBrown84255d12008-05-23 13:04:32 -0700713 struct bitmap *bitmap;
NeilBrown191ea9b2005-06-21 17:17:23 -0700714 unsigned long flags;
Jens Axboea3623572005-11-01 09:26:16 +0100715 const int rw = bio_data_dir(bio);
NeilBrown2c7d46e2010-08-18 16:16:05 +1000716 const unsigned long do_sync = (bio->bi_rw & REQ_SYNC);
Tejun Heoe9c74692010-09-03 11:56:18 +0200717 const unsigned long do_flush_fua = (bio->bi_rw & (REQ_FLUSH | REQ_FUA));
Dan Williams6bfe0b42008-04-30 00:52:32 -0700718 mdk_rdev_t *blocked_rdev;
NeilBrownc3b328a2011-04-18 18:25:43 +1000719 int plugged;
NeilBrown191ea9b2005-06-21 17:17:23 -0700720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 /*
722 * Register the new request and wait if the reconstruction
723 * thread has put up a bar for new requests.
724 * Continue immediately if no resync is active currently.
725 */
NeilBrown62de6082006-05-01 12:15:47 -0700726
NeilBrown3d310eb2005-06-21 17:17:26 -0700727 md_write_start(mddev, bio); /* wait on superblock update early */
728
NeilBrown6eef4b22009-12-14 12:49:51 +1100729 if (bio_data_dir(bio) == WRITE &&
730 bio->bi_sector + bio->bi_size/512 > mddev->suspend_lo &&
731 bio->bi_sector < mddev->suspend_hi) {
732 /* As the suspend_* range is controlled by
733 * userspace, we want an interruptible
734 * wait.
735 */
736 DEFINE_WAIT(w);
737 for (;;) {
738 flush_signals(current);
739 prepare_to_wait(&conf->wait_barrier,
740 &w, TASK_INTERRUPTIBLE);
741 if (bio->bi_sector + bio->bi_size/512 <= mddev->suspend_lo ||
742 bio->bi_sector >= mddev->suspend_hi)
743 break;
744 schedule();
745 }
746 finish_wait(&conf->wait_barrier, &w);
747 }
NeilBrown62de6082006-05-01 12:15:47 -0700748
NeilBrown17999be2006-01-06 00:20:12 -0800749 wait_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
NeilBrown84255d12008-05-23 13:04:32 -0700751 bitmap = mddev->bitmap;
752
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 /*
754 * make_request() can abort the operation when READA is being
755 * used and no empty request is available.
756 *
757 */
758 r1_bio = mempool_alloc(conf->r1bio_pool, GFP_NOIO);
759
760 r1_bio->master_bio = bio;
761 r1_bio->sectors = bio->bi_size >> 9;
NeilBrown191ea9b2005-06-21 17:17:23 -0700762 r1_bio->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 r1_bio->mddev = mddev;
764 r1_bio->sector = bio->bi_sector;
765
Jens Axboea3623572005-11-01 09:26:16 +0100766 if (rw == READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 /*
768 * read balancing logic:
769 */
770 int rdisk = read_balance(conf, r1_bio);
771
772 if (rdisk < 0) {
773 /* couldn't find anywhere to read from */
774 raid_end_bio_io(r1_bio);
775 return 0;
776 }
777 mirror = conf->mirrors + rdisk;
778
NeilBrowne5551902010-03-31 11:21:44 +1100779 if (test_bit(WriteMostly, &mirror->rdev->flags) &&
780 bitmap) {
781 /* Reading from a write-mostly device must
782 * take care not to over-take any writes
783 * that are 'behind'
784 */
785 wait_event(bitmap->behind_wait,
786 atomic_read(&bitmap->behind_writes) == 0);
787 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 r1_bio->read_disk = rdisk;
789
NeilBrowna167f662010-10-26 18:31:13 +1100790 read_bio = bio_clone_mddev(bio, GFP_NOIO, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
792 r1_bio->bios[rdisk] = read_bio;
793
794 read_bio->bi_sector = r1_bio->sector + mirror->rdev->data_offset;
795 read_bio->bi_bdev = mirror->rdev->bdev;
796 read_bio->bi_end_io = raid1_end_read_request;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +0200797 read_bio->bi_rw = READ | do_sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 read_bio->bi_private = r1_bio;
799
800 generic_make_request(read_bio);
801 return 0;
802 }
803
804 /*
805 * WRITE:
806 */
807 /* first select target devices under spinlock and
808 * inc refcount on their rdev. Record them by setting
809 * bios[x] to bio
810 */
NeilBrownc3b328a2011-04-18 18:25:43 +1000811 plugged = mddev_check_plugged(mddev);
812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 disks = conf->raid_disks;
Dan Williams6bfe0b42008-04-30 00:52:32 -0700814 retry_write:
815 blocked_rdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 rcu_read_lock();
817 for (i = 0; i < disks; i++) {
Dan Williams6bfe0b42008-04-30 00:52:32 -0700818 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
819 if (rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
820 atomic_inc(&rdev->nr_pending);
821 blocked_rdev = rdev;
822 break;
823 }
824 if (rdev && !test_bit(Faulty, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 atomic_inc(&rdev->nr_pending);
NeilBrownb2d444d2005-11-08 21:39:31 -0800826 if (test_bit(Faulty, &rdev->flags)) {
NeilBrown03c902e2006-01-06 00:20:46 -0800827 rdev_dec_pending(rdev, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 r1_bio->bios[i] = NULL;
NeilBrown964147d2010-05-18 15:27:13 +1000829 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 r1_bio->bios[i] = bio;
NeilBrown964147d2010-05-18 15:27:13 +1000831 targets++;
832 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 } else
834 r1_bio->bios[i] = NULL;
835 }
836 rcu_read_unlock();
837
Dan Williams6bfe0b42008-04-30 00:52:32 -0700838 if (unlikely(blocked_rdev)) {
839 /* Wait for this device to become unblocked */
840 int j;
841
842 for (j = 0; j < i; j++)
843 if (r1_bio->bios[j])
844 rdev_dec_pending(conf->mirrors[j].rdev, mddev);
845
846 allow_barrier(conf);
847 md_wait_for_blocked_rdev(blocked_rdev, mddev);
848 wait_barrier(conf);
849 goto retry_write;
850 }
851
NeilBrown4b6d2872005-09-09 16:23:47 -0700852 BUG_ON(targets == 0); /* we never fail the last device */
853
NeilBrown191ea9b2005-06-21 17:17:23 -0700854 if (targets < conf->raid_disks) {
855 /* array is degraded, we will not clear the bitmap
856 * on I/O completion (see raid1_end_write_request) */
857 set_bit(R1BIO_Degraded, &r1_bio->state);
858 }
NeilBrown06d91a52005-06-21 17:17:12 -0700859
NeilBrowne5551902010-03-31 11:21:44 +1100860 /* do behind I/O ?
861 * Not if there are too many, or cannot allocate memory,
862 * or a reader on WriteMostly is waiting for behind writes
863 * to flush */
NeilBrown4b6d2872005-09-09 16:23:47 -0700864 if (bitmap &&
NeilBrown42a04b52009-12-14 12:49:53 +1100865 (atomic_read(&bitmap->behind_writes)
866 < mddev->bitmap_info.max_write_behind) &&
NeilBrownaf6d7b72011-05-11 14:51:19 +1000867 !waitqueue_active(&bitmap->behind_wait))
868 alloc_behind_pages(bio, r1_bio);
NeilBrown4b6d2872005-09-09 16:23:47 -0700869
NeilBrown4e780642010-10-19 12:54:01 +1100870 atomic_set(&r1_bio->remaining, 1);
NeilBrown4b6d2872005-09-09 16:23:47 -0700871 atomic_set(&r1_bio->behind_remaining, 0);
NeilBrown191ea9b2005-06-21 17:17:23 -0700872
NeilBrown4e780642010-10-19 12:54:01 +1100873 bitmap_startwrite(bitmap, bio->bi_sector, r1_bio->sectors,
874 test_bit(R1BIO_BehindIO, &r1_bio->state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 for (i = 0; i < disks; i++) {
876 struct bio *mbio;
877 if (!r1_bio->bios[i])
878 continue;
879
NeilBrowna167f662010-10-26 18:31:13 +1100880 mbio = bio_clone_mddev(bio, GFP_NOIO, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 r1_bio->bios[i] = mbio;
882
883 mbio->bi_sector = r1_bio->sector + conf->mirrors[i].rdev->data_offset;
884 mbio->bi_bdev = conf->mirrors[i].rdev->bdev;
885 mbio->bi_end_io = raid1_end_write_request;
Tejun Heoe9c74692010-09-03 11:56:18 +0200886 mbio->bi_rw = WRITE | do_flush_fua | do_sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 mbio->bi_private = r1_bio;
888
NeilBrownaf6d7b72011-05-11 14:51:19 +1000889 if (r1_bio->behind_pages) {
NeilBrown4b6d2872005-09-09 16:23:47 -0700890 struct bio_vec *bvec;
891 int j;
892
893 /* Yes, I really want the '__' version so that
894 * we clear any unused pointer in the io_vec, rather
895 * than leave them unchanged. This is important
896 * because when we come to free the pages, we won't
NeilBrown046abee2010-10-26 15:46:20 +1100897 * know the original bi_idx, so we just free
NeilBrown4b6d2872005-09-09 16:23:47 -0700898 * them all
899 */
900 __bio_for_each_segment(bvec, mbio, j, 0)
NeilBrownaf6d7b72011-05-11 14:51:19 +1000901 bvec->bv_page = r1_bio->behind_pages[j];
NeilBrown4b6d2872005-09-09 16:23:47 -0700902 if (test_bit(WriteMostly, &conf->mirrors[i].rdev->flags))
903 atomic_inc(&r1_bio->behind_remaining);
904 }
905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 atomic_inc(&r1_bio->remaining);
NeilBrown4e780642010-10-19 12:54:01 +1100907 spin_lock_irqsave(&conf->device_lock, flags);
908 bio_list_add(&conf->pending_bio_list, mbio);
NeilBrown4e780642010-10-19 12:54:01 +1100909 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 }
NeilBrownaf6d7b72011-05-11 14:51:19 +1000911 r1_bio_write_done(r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
NeilBrown4e780642010-10-19 12:54:01 +1100913 /* In case raid1d snuck in to freeze_array */
NeilBrowna35e63e2008-03-04 14:29:29 -0800914 wake_up(&conf->wait_barrier);
915
NeilBrownc3b328a2011-04-18 18:25:43 +1000916 if (do_sync || !bitmap || !plugged)
Lars Ellenberge3881a62007-01-10 23:15:37 -0800917 md_wakeup_thread(mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
919 return 0;
920}
921
922static void status(struct seq_file *seq, mddev_t *mddev)
923{
NeilBrown070ec552009-06-16 16:54:21 +1000924 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 int i;
926
927 seq_printf(seq, " [%d/%d] [", conf->raid_disks,
NeilBrown11ce99e2006-10-03 01:15:52 -0700928 conf->raid_disks - mddev->degraded);
NeilBrownddac7c72006-08-31 21:27:36 -0700929 rcu_read_lock();
930 for (i = 0; i < conf->raid_disks; i++) {
931 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 seq_printf(seq, "%s",
NeilBrownddac7c72006-08-31 21:27:36 -0700933 rdev && test_bit(In_sync, &rdev->flags) ? "U" : "_");
934 }
935 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 seq_printf(seq, "]");
937}
938
939
940static void error(mddev_t *mddev, mdk_rdev_t *rdev)
941{
942 char b[BDEVNAME_SIZE];
NeilBrown070ec552009-06-16 16:54:21 +1000943 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
945 /*
946 * If it is not operational, then we have already marked it as dead
947 * else if it is the last working disks, ignore the error, let the
948 * next level up know.
949 * else mark the drive as failed
950 */
NeilBrownb2d444d2005-11-08 21:39:31 -0800951 if (test_bit(In_sync, &rdev->flags)
NeilBrown4044ba52009-01-09 08:31:11 +1100952 && (conf->raid_disks - mddev->degraded) == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 /*
954 * Don't fail the drive, act as though we were just a
NeilBrown4044ba52009-01-09 08:31:11 +1100955 * normal single drive.
956 * However don't try a recovery from this drive as
957 * it is very likely to fail.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 */
NeilBrown53890422011-07-27 11:00:36 +1000959 conf->recovery_disabled = mddev->recovery_disabled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 return;
NeilBrown4044ba52009-01-09 08:31:11 +1100961 }
NeilBrownc04be0a2006-10-03 01:15:53 -0700962 if (test_and_clear_bit(In_sync, &rdev->flags)) {
963 unsigned long flags;
964 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 mddev->degraded++;
NeilBrowndd00a992007-05-10 03:15:50 -0700966 set_bit(Faulty, &rdev->flags);
NeilBrownc04be0a2006-10-03 01:15:53 -0700967 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 /*
969 * if recovery is running, make sure it aborts.
970 */
NeilBrowndfc70642008-05-23 13:04:39 -0700971 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
NeilBrowndd00a992007-05-10 03:15:50 -0700972 } else
973 set_bit(Faulty, &rdev->flags);
NeilBrown850b2b42006-10-03 01:15:46 -0700974 set_bit(MD_CHANGE_DEVS, &mddev->flags);
Joe Perches067032b2011-01-14 09:14:33 +1100975 printk(KERN_ALERT
976 "md/raid1:%s: Disk failure on %s, disabling device.\n"
977 "md/raid1:%s: Operation continuing on %d devices.\n",
NeilBrown9dd1e2f2010-05-03 14:30:35 +1000978 mdname(mddev), bdevname(rdev->bdev, b),
979 mdname(mddev), conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980}
981
982static void print_conf(conf_t *conf)
983{
984 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
NeilBrown9dd1e2f2010-05-03 14:30:35 +1000986 printk(KERN_DEBUG "RAID1 conf printout:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 if (!conf) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +1000988 printk(KERN_DEBUG "(!conf)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 return;
990 }
NeilBrown9dd1e2f2010-05-03 14:30:35 +1000991 printk(KERN_DEBUG " --- wd:%d rd:%d\n", conf->raid_disks - conf->mddev->degraded,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 conf->raid_disks);
993
NeilBrownddac7c72006-08-31 21:27:36 -0700994 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 for (i = 0; i < conf->raid_disks; i++) {
996 char b[BDEVNAME_SIZE];
NeilBrownddac7c72006-08-31 21:27:36 -0700997 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
998 if (rdev)
NeilBrown9dd1e2f2010-05-03 14:30:35 +1000999 printk(KERN_DEBUG " disk %d, wo:%d, o:%d, dev:%s\n",
NeilBrownddac7c72006-08-31 21:27:36 -07001000 i, !test_bit(In_sync, &rdev->flags),
1001 !test_bit(Faulty, &rdev->flags),
1002 bdevname(rdev->bdev,b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 }
NeilBrownddac7c72006-08-31 21:27:36 -07001004 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005}
1006
1007static void close_sync(conf_t *conf)
1008{
NeilBrown17999be2006-01-06 00:20:12 -08001009 wait_barrier(conf);
1010 allow_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
1012 mempool_destroy(conf->r1buf_pool);
1013 conf->r1buf_pool = NULL;
1014}
1015
1016static int raid1_spare_active(mddev_t *mddev)
1017{
1018 int i;
1019 conf_t *conf = mddev->private;
NeilBrown6b965622010-08-18 11:56:59 +10001020 int count = 0;
1021 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
1023 /*
1024 * Find all failed disks within the RAID1 configuration
NeilBrownddac7c72006-08-31 21:27:36 -07001025 * and mark them readable.
1026 * Called under mddev lock, so rcu protection not needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 */
1028 for (i = 0; i < conf->raid_disks; i++) {
NeilBrownddac7c72006-08-31 21:27:36 -07001029 mdk_rdev_t *rdev = conf->mirrors[i].rdev;
1030 if (rdev
1031 && !test_bit(Faulty, &rdev->flags)
NeilBrownc04be0a2006-10-03 01:15:53 -07001032 && !test_and_set_bit(In_sync, &rdev->flags)) {
NeilBrown6b965622010-08-18 11:56:59 +10001033 count++;
Jonathan Brassow654e8b52011-07-27 11:00:36 +10001034 sysfs_notify_dirent_safe(rdev->sysfs_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 }
1036 }
NeilBrown6b965622010-08-18 11:56:59 +10001037 spin_lock_irqsave(&conf->device_lock, flags);
1038 mddev->degraded -= count;
1039 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
1041 print_conf(conf);
NeilBrown6b965622010-08-18 11:56:59 +10001042 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043}
1044
1045
1046static int raid1_add_disk(mddev_t *mddev, mdk_rdev_t *rdev)
1047{
1048 conf_t *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10001049 int err = -EEXIST;
NeilBrown41158c72005-06-21 17:17:25 -07001050 int mirror = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 mirror_info_t *p;
Neil Brown6c2fce22008-06-28 08:31:31 +10001052 int first = 0;
1053 int last = mddev->raid_disks - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
NeilBrown53890422011-07-27 11:00:36 +10001055 if (mddev->recovery_disabled == conf->recovery_disabled)
1056 return -EBUSY;
1057
Neil Brown6c2fce22008-06-28 08:31:31 +10001058 if (rdev->raid_disk >= 0)
1059 first = last = rdev->raid_disk;
1060
1061 for (mirror = first; mirror <= last; mirror++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 if ( !(p=conf->mirrors+mirror)->rdev) {
1063
Martin K. Petersen8f6c2e42009-07-01 11:13:45 +10001064 disk_stack_limits(mddev->gendisk, rdev->bdev,
1065 rdev->data_offset << 9);
NeilBrown627a2d32010-03-08 16:44:38 +11001066 /* as we don't honour merge_bvec_fn, we must
1067 * never risk violating it, so limit
1068 * ->max_segments to one lying with a single
1069 * page, as a one page request is never in
1070 * violation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 */
NeilBrown627a2d32010-03-08 16:44:38 +11001072 if (rdev->bdev->bd_disk->queue->merge_bvec_fn) {
1073 blk_queue_max_segments(mddev->queue, 1);
1074 blk_queue_segment_boundary(mddev->queue,
1075 PAGE_CACHE_SIZE - 1);
1076 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
1078 p->head_position = 0;
1079 rdev->raid_disk = mirror;
Neil Brown199050e2008-06-28 08:31:33 +10001080 err = 0;
NeilBrown6aea114a2005-11-28 13:44:13 -08001081 /* As all devices are equivalent, we don't need a full recovery
1082 * if this was recently any drive of the array
1083 */
1084 if (rdev->saved_raid_disk < 0)
NeilBrown41158c72005-06-21 17:17:25 -07001085 conf->fullsync = 1;
Suzanne Woodd6065f72005-11-08 21:39:27 -08001086 rcu_assign_pointer(p->rdev, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 break;
1088 }
Andre Nollac5e7112009-08-03 10:59:47 +10001089 md_integrity_add_rdev(rdev, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 print_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10001091 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092}
1093
1094static int raid1_remove_disk(mddev_t *mddev, int number)
1095{
1096 conf_t *conf = mddev->private;
1097 int err = 0;
1098 mdk_rdev_t *rdev;
1099 mirror_info_t *p = conf->mirrors+ number;
1100
1101 print_conf(conf);
1102 rdev = p->rdev;
1103 if (rdev) {
NeilBrownb2d444d2005-11-08 21:39:31 -08001104 if (test_bit(In_sync, &rdev->flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 atomic_read(&rdev->nr_pending)) {
1106 err = -EBUSY;
1107 goto abort;
1108 }
NeilBrown046abee2010-10-26 15:46:20 +11001109 /* Only remove non-faulty devices if recovery
NeilBrowndfc70642008-05-23 13:04:39 -07001110 * is not possible.
1111 */
1112 if (!test_bit(Faulty, &rdev->flags) &&
NeilBrown53890422011-07-27 11:00:36 +10001113 mddev->recovery_disabled != conf->recovery_disabled &&
NeilBrowndfc70642008-05-23 13:04:39 -07001114 mddev->degraded < conf->raid_disks) {
1115 err = -EBUSY;
1116 goto abort;
1117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 p->rdev = NULL;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07001119 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 if (atomic_read(&rdev->nr_pending)) {
1121 /* lost the race, try later */
1122 err = -EBUSY;
1123 p->rdev = rdev;
Andre Nollac5e7112009-08-03 10:59:47 +10001124 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 }
Martin K. Petersena91a2782011-03-17 11:11:05 +01001126 err = md_integrity_register(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 }
1128abort:
1129
1130 print_conf(conf);
1131 return err;
1132}
1133
1134
NeilBrown6712ecf2007-09-27 12:47:43 +02001135static void end_sync_read(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136{
H Hartley Sweeten7b928132010-03-08 16:02:40 +11001137 r1bio_t *r1_bio = bio->bi_private;
NeilBrownd11c1712006-01-06 00:20:26 -08001138 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
NeilBrownd11c1712006-01-06 00:20:26 -08001140 for (i=r1_bio->mddev->raid_disks; i--; )
1141 if (r1_bio->bios[i] == bio)
1142 break;
1143 BUG_ON(i < 0);
1144 update_head_pos(i, r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 /*
1146 * we have read a block, now it needs to be re-written,
1147 * or re-read if the read failed.
1148 * We don't do much here, just schedule handling by raid1d
1149 */
NeilBrown69382e82006-01-06 00:20:22 -08001150 if (test_bit(BIO_UPTODATE, &bio->bi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 set_bit(R1BIO_Uptodate, &r1_bio->state);
NeilBrownd11c1712006-01-06 00:20:26 -08001152
1153 if (atomic_dec_and_test(&r1_bio->remaining))
1154 reschedule_retry(r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155}
1156
NeilBrown6712ecf2007-09-27 12:47:43 +02001157static void end_sync_write(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158{
1159 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
H Hartley Sweeten7b928132010-03-08 16:02:40 +11001160 r1bio_t *r1_bio = bio->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 mddev_t *mddev = r1_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +10001162 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 int i;
1164 int mirror=0;
1165
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 for (i = 0; i < conf->raid_disks; i++)
1167 if (r1_bio->bios[i] == bio) {
1168 mirror = i;
1169 break;
1170 }
NeilBrown6b1117d2006-03-31 02:31:57 -08001171 if (!uptodate) {
NeilBrown57dab0b2010-10-19 10:03:39 +11001172 sector_t sync_blocks = 0;
NeilBrown6b1117d2006-03-31 02:31:57 -08001173 sector_t s = r1_bio->sector;
1174 long sectors_to_go = r1_bio->sectors;
1175 /* make sure these bits doesn't get cleared. */
1176 do {
NeilBrown5e3db642006-07-10 04:44:18 -07001177 bitmap_end_sync(mddev->bitmap, s,
NeilBrown6b1117d2006-03-31 02:31:57 -08001178 &sync_blocks, 1);
1179 s += sync_blocks;
1180 sectors_to_go -= sync_blocks;
1181 } while (sectors_to_go > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 md_error(mddev, conf->mirrors[mirror].rdev);
NeilBrown6b1117d2006-03-31 02:31:57 -08001183 }
NeilBrowne3b97032005-08-04 12:53:34 -07001184
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 update_head_pos(mirror, r1_bio);
1186
1187 if (atomic_dec_and_test(&r1_bio->remaining)) {
NeilBrown73d5c382009-02-25 13:18:47 +11001188 sector_t s = r1_bio->sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 put_buf(r1_bio);
NeilBrown73d5c382009-02-25 13:18:47 +11001190 md_done_sync(mddev, s, uptodate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192}
1193
NeilBrowna68e5872011-05-11 14:40:44 +10001194static int fix_sync_read_error(r1bio_t *r1_bio)
1195{
1196 /* Try some synchronous reads of other devices to get
1197 * good data, much like with normal read errors. Only
1198 * read into the pages we already have so we don't
1199 * need to re-issue the read request.
1200 * We don't need to freeze the array, because being in an
1201 * active sync request, there is no normal IO, and
1202 * no overlapping syncs.
1203 */
1204 mddev_t *mddev = r1_bio->mddev;
1205 conf_t *conf = mddev->private;
1206 struct bio *bio = r1_bio->bios[r1_bio->read_disk];
1207 sector_t sect = r1_bio->sector;
1208 int sectors = r1_bio->sectors;
1209 int idx = 0;
1210
1211 while(sectors) {
1212 int s = sectors;
1213 int d = r1_bio->read_disk;
1214 int success = 0;
1215 mdk_rdev_t *rdev;
NeilBrown78d7f5f2011-05-11 14:48:56 +10001216 int start;
NeilBrowna68e5872011-05-11 14:40:44 +10001217
1218 if (s > (PAGE_SIZE>>9))
1219 s = PAGE_SIZE >> 9;
1220 do {
1221 if (r1_bio->bios[d]->bi_end_io == end_sync_read) {
1222 /* No rcu protection needed here devices
1223 * can only be removed when no resync is
1224 * active, and resync is currently active
1225 */
1226 rdev = conf->mirrors[d].rdev;
Namhyung Kim9d3d8012011-07-27 11:00:36 +10001227 if (sync_page_io(rdev, sect, s<<9,
NeilBrowna68e5872011-05-11 14:40:44 +10001228 bio->bi_io_vec[idx].bv_page,
1229 READ, false)) {
1230 success = 1;
1231 break;
1232 }
1233 }
1234 d++;
1235 if (d == conf->raid_disks)
1236 d = 0;
1237 } while (!success && d != r1_bio->read_disk);
1238
NeilBrown78d7f5f2011-05-11 14:48:56 +10001239 if (!success) {
NeilBrowna68e5872011-05-11 14:40:44 +10001240 char b[BDEVNAME_SIZE];
1241 /* Cannot read from anywhere, array is toast */
1242 md_error(mddev, conf->mirrors[r1_bio->read_disk].rdev);
1243 printk(KERN_ALERT "md/raid1:%s: %s: unrecoverable I/O read error"
1244 " for block %llu\n",
1245 mdname(mddev),
1246 bdevname(bio->bi_bdev, b),
1247 (unsigned long long)r1_bio->sector);
1248 md_done_sync(mddev, r1_bio->sectors, 0);
1249 put_buf(r1_bio);
1250 return 0;
1251 }
NeilBrown78d7f5f2011-05-11 14:48:56 +10001252
1253 start = d;
1254 /* write it back and re-read */
1255 while (d != r1_bio->read_disk) {
1256 if (d == 0)
1257 d = conf->raid_disks;
1258 d--;
1259 if (r1_bio->bios[d]->bi_end_io != end_sync_read)
1260 continue;
1261 rdev = conf->mirrors[d].rdev;
Namhyung Kim9d3d8012011-07-27 11:00:36 +10001262 if (sync_page_io(rdev, sect, s<<9,
NeilBrown78d7f5f2011-05-11 14:48:56 +10001263 bio->bi_io_vec[idx].bv_page,
1264 WRITE, false) == 0) {
1265 r1_bio->bios[d]->bi_end_io = NULL;
1266 rdev_dec_pending(rdev, mddev);
1267 md_error(mddev, rdev);
Namhyung Kim9d3d8012011-07-27 11:00:36 +10001268 }
NeilBrown78d7f5f2011-05-11 14:48:56 +10001269 }
1270 d = start;
1271 while (d != r1_bio->read_disk) {
1272 if (d == 0)
1273 d = conf->raid_disks;
1274 d--;
1275 if (r1_bio->bios[d]->bi_end_io != end_sync_read)
1276 continue;
1277 rdev = conf->mirrors[d].rdev;
Namhyung Kim9d3d8012011-07-27 11:00:36 +10001278 if (sync_page_io(rdev, sect, s<<9,
NeilBrown78d7f5f2011-05-11 14:48:56 +10001279 bio->bi_io_vec[idx].bv_page,
1280 READ, false) == 0)
1281 md_error(mddev, rdev);
Namhyung Kim9d3d8012011-07-27 11:00:36 +10001282 else
1283 atomic_add(s, &rdev->corrected_errors);
NeilBrown78d7f5f2011-05-11 14:48:56 +10001284 }
NeilBrowna68e5872011-05-11 14:40:44 +10001285 sectors -= s;
1286 sect += s;
1287 idx ++;
1288 }
NeilBrown78d7f5f2011-05-11 14:48:56 +10001289 set_bit(R1BIO_Uptodate, &r1_bio->state);
NeilBrown7ca78d52011-05-11 14:50:37 +10001290 set_bit(BIO_UPTODATE, &bio->bi_flags);
NeilBrowna68e5872011-05-11 14:40:44 +10001291 return 1;
1292}
1293
1294static int process_checks(r1bio_t *r1_bio)
1295{
1296 /* We have read all readable devices. If we haven't
1297 * got the block, then there is no hope left.
1298 * If we have, then we want to do a comparison
1299 * and skip the write if everything is the same.
1300 * If any blocks failed to read, then we need to
1301 * attempt an over-write
1302 */
1303 mddev_t *mddev = r1_bio->mddev;
1304 conf_t *conf = mddev->private;
1305 int primary;
1306 int i;
1307
NeilBrown78d7f5f2011-05-11 14:48:56 +10001308 for (primary = 0; primary < conf->raid_disks; primary++)
NeilBrowna68e5872011-05-11 14:40:44 +10001309 if (r1_bio->bios[primary]->bi_end_io == end_sync_read &&
1310 test_bit(BIO_UPTODATE, &r1_bio->bios[primary]->bi_flags)) {
1311 r1_bio->bios[primary]->bi_end_io = NULL;
1312 rdev_dec_pending(conf->mirrors[primary].rdev, mddev);
1313 break;
1314 }
1315 r1_bio->read_disk = primary;
NeilBrown78d7f5f2011-05-11 14:48:56 +10001316 for (i = 0; i < conf->raid_disks; i++) {
1317 int j;
1318 int vcnt = r1_bio->sectors >> (PAGE_SHIFT- 9);
1319 struct bio *pbio = r1_bio->bios[primary];
1320 struct bio *sbio = r1_bio->bios[i];
1321 int size;
NeilBrowna68e5872011-05-11 14:40:44 +10001322
NeilBrown78d7f5f2011-05-11 14:48:56 +10001323 if (r1_bio->bios[i]->bi_end_io != end_sync_read)
1324 continue;
NeilBrowna68e5872011-05-11 14:40:44 +10001325
NeilBrown78d7f5f2011-05-11 14:48:56 +10001326 if (test_bit(BIO_UPTODATE, &sbio->bi_flags)) {
1327 for (j = vcnt; j-- ; ) {
1328 struct page *p, *s;
1329 p = pbio->bi_io_vec[j].bv_page;
1330 s = sbio->bi_io_vec[j].bv_page;
1331 if (memcmp(page_address(p),
1332 page_address(s),
1333 PAGE_SIZE))
1334 break;
NeilBrowna68e5872011-05-11 14:40:44 +10001335 }
NeilBrown78d7f5f2011-05-11 14:48:56 +10001336 } else
1337 j = 0;
1338 if (j >= 0)
1339 mddev->resync_mismatches += r1_bio->sectors;
1340 if (j < 0 || (test_bit(MD_RECOVERY_CHECK, &mddev->recovery)
1341 && test_bit(BIO_UPTODATE, &sbio->bi_flags))) {
1342 /* No need to write to this device. */
1343 sbio->bi_end_io = NULL;
1344 rdev_dec_pending(conf->mirrors[i].rdev, mddev);
1345 continue;
NeilBrowna68e5872011-05-11 14:40:44 +10001346 }
NeilBrown78d7f5f2011-05-11 14:48:56 +10001347 /* fixup the bio for reuse */
1348 sbio->bi_vcnt = vcnt;
1349 sbio->bi_size = r1_bio->sectors << 9;
1350 sbio->bi_idx = 0;
1351 sbio->bi_phys_segments = 0;
1352 sbio->bi_flags &= ~(BIO_POOL_MASK - 1);
1353 sbio->bi_flags |= 1 << BIO_UPTODATE;
1354 sbio->bi_next = NULL;
1355 sbio->bi_sector = r1_bio->sector +
1356 conf->mirrors[i].rdev->data_offset;
1357 sbio->bi_bdev = conf->mirrors[i].rdev->bdev;
1358 size = sbio->bi_size;
1359 for (j = 0; j < vcnt ; j++) {
1360 struct bio_vec *bi;
1361 bi = &sbio->bi_io_vec[j];
1362 bi->bv_offset = 0;
1363 if (size > PAGE_SIZE)
1364 bi->bv_len = PAGE_SIZE;
1365 else
1366 bi->bv_len = size;
1367 size -= PAGE_SIZE;
1368 memcpy(page_address(bi->bv_page),
1369 page_address(pbio->bi_io_vec[j].bv_page),
1370 PAGE_SIZE);
1371 }
1372 }
NeilBrowna68e5872011-05-11 14:40:44 +10001373 return 0;
1374}
1375
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376static void sync_request_write(mddev_t *mddev, r1bio_t *r1_bio)
1377{
NeilBrown070ec552009-06-16 16:54:21 +10001378 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 int i;
1380 int disks = conf->raid_disks;
1381 struct bio *bio, *wbio;
1382
1383 bio = r1_bio->bios[r1_bio->read_disk];
1384
NeilBrowna68e5872011-05-11 14:40:44 +10001385 if (!test_bit(R1BIO_Uptodate, &r1_bio->state))
1386 /* ouch - failed to read all of that. */
1387 if (!fix_sync_read_error(r1_bio))
1388 return;
NeilBrown7ca78d52011-05-11 14:50:37 +10001389
1390 if (test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery))
1391 if (process_checks(r1_bio) < 0)
1392 return;
NeilBrownd11c1712006-01-06 00:20:26 -08001393 /*
1394 * schedule writes
1395 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 atomic_set(&r1_bio->remaining, 1);
1397 for (i = 0; i < disks ; i++) {
1398 wbio = r1_bio->bios[i];
NeilBrown3e198f72006-01-06 00:20:21 -08001399 if (wbio->bi_end_io == NULL ||
1400 (wbio->bi_end_io == end_sync_read &&
1401 (i == r1_bio->read_disk ||
1402 !test_bit(MD_RECOVERY_SYNC, &mddev->recovery))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 continue;
1404
NeilBrown3e198f72006-01-06 00:20:21 -08001405 wbio->bi_rw = WRITE;
1406 wbio->bi_end_io = end_sync_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 atomic_inc(&r1_bio->remaining);
1408 md_sync_acct(conf->mirrors[i].rdev->bdev, wbio->bi_size >> 9);
NeilBrown191ea9b2005-06-21 17:17:23 -07001409
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 generic_make_request(wbio);
1411 }
1412
1413 if (atomic_dec_and_test(&r1_bio->remaining)) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001414 /* if we're here, all write(s) have completed, so clean up */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 md_done_sync(mddev, r1_bio->sectors, 1);
1416 put_buf(r1_bio);
1417 }
1418}
1419
1420/*
1421 * This is a kernel thread which:
1422 *
1423 * 1. Retries failed read operations on working mirrors.
1424 * 2. Updates the raid superblock when problems encounter.
1425 * 3. Performs writes following reads for array syncronising.
1426 */
1427
NeilBrown867868f2006-10-03 01:15:51 -07001428static void fix_read_error(conf_t *conf, int read_disk,
1429 sector_t sect, int sectors)
1430{
1431 mddev_t *mddev = conf->mddev;
1432 while(sectors) {
1433 int s = sectors;
1434 int d = read_disk;
1435 int success = 0;
1436 int start;
1437 mdk_rdev_t *rdev;
1438
1439 if (s > (PAGE_SIZE>>9))
1440 s = PAGE_SIZE >> 9;
1441
1442 do {
1443 /* Note: no rcu protection needed here
1444 * as this is synchronous in the raid1d thread
1445 * which is the thread that might remove
1446 * a device. If raid1d ever becomes multi-threaded....
1447 */
1448 rdev = conf->mirrors[d].rdev;
1449 if (rdev &&
1450 test_bit(In_sync, &rdev->flags) &&
Jonathan Brassowccebd4c2011-01-14 09:14:33 +11001451 sync_page_io(rdev, sect, s<<9,
1452 conf->tmppage, READ, false))
NeilBrown867868f2006-10-03 01:15:51 -07001453 success = 1;
1454 else {
1455 d++;
1456 if (d == conf->raid_disks)
1457 d = 0;
1458 }
1459 } while (!success && d != read_disk);
1460
1461 if (!success) {
1462 /* Cannot read from anywhere -- bye bye array */
1463 md_error(mddev, conf->mirrors[read_disk].rdev);
1464 break;
1465 }
1466 /* write it back and re-read */
1467 start = d;
1468 while (d != read_disk) {
1469 if (d==0)
1470 d = conf->raid_disks;
1471 d--;
1472 rdev = conf->mirrors[d].rdev;
1473 if (rdev &&
1474 test_bit(In_sync, &rdev->flags)) {
Jonathan Brassowccebd4c2011-01-14 09:14:33 +11001475 if (sync_page_io(rdev, sect, s<<9,
1476 conf->tmppage, WRITE, false)
NeilBrown867868f2006-10-03 01:15:51 -07001477 == 0)
1478 /* Well, this device is dead */
1479 md_error(mddev, rdev);
1480 }
1481 }
1482 d = start;
1483 while (d != read_disk) {
1484 char b[BDEVNAME_SIZE];
1485 if (d==0)
1486 d = conf->raid_disks;
1487 d--;
1488 rdev = conf->mirrors[d].rdev;
1489 if (rdev &&
1490 test_bit(In_sync, &rdev->flags)) {
Jonathan Brassowccebd4c2011-01-14 09:14:33 +11001491 if (sync_page_io(rdev, sect, s<<9,
1492 conf->tmppage, READ, false)
NeilBrown867868f2006-10-03 01:15:51 -07001493 == 0)
1494 /* Well, this device is dead */
1495 md_error(mddev, rdev);
1496 else {
1497 atomic_add(s, &rdev->corrected_errors);
1498 printk(KERN_INFO
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001499 "md/raid1:%s: read error corrected "
NeilBrown867868f2006-10-03 01:15:51 -07001500 "(%d sectors at %llu on %s)\n",
1501 mdname(mddev), s,
Randy Dunlap969b7552006-10-28 10:38:32 -07001502 (unsigned long long)(sect +
1503 rdev->data_offset),
NeilBrown867868f2006-10-03 01:15:51 -07001504 bdevname(rdev->bdev, b));
1505 }
1506 }
1507 }
1508 sectors -= s;
1509 sect += s;
1510 }
1511}
1512
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513static void raid1d(mddev_t *mddev)
1514{
1515 r1bio_t *r1_bio;
1516 struct bio *bio;
1517 unsigned long flags;
NeilBrown070ec552009-06-16 16:54:21 +10001518 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 struct list_head *head = &conf->retry_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 mdk_rdev_t *rdev;
NeilBrowne1dfa0a2011-04-18 18:25:41 +10001521 struct blk_plug plug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
1523 md_check_recovery(mddev);
NeilBrowne1dfa0a2011-04-18 18:25:41 +10001524
1525 blk_start_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 for (;;) {
1527 char b[BDEVNAME_SIZE];
NeilBrowna35e63e2008-03-04 14:29:29 -08001528
NeilBrownc3b328a2011-04-18 18:25:43 +10001529 if (atomic_read(&mddev->plug_cnt) == 0)
1530 flush_pending_writes(conf);
NeilBrowna35e63e2008-03-04 14:29:29 -08001531
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrowna35e63e2008-03-04 14:29:29 -08001533 if (list_empty(head)) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001534 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 break;
NeilBrowna35e63e2008-03-04 14:29:29 -08001536 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 r1_bio = list_entry(head->prev, r1bio_t, retry_list);
1538 list_del(head->prev);
NeilBrownddaf22a2006-01-06 00:20:19 -08001539 conf->nr_queued--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 spin_unlock_irqrestore(&conf->device_lock, flags);
1541
1542 mddev = r1_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +10001543 conf = mddev->private;
Jens Axboe7eaceac2011-03-10 08:52:07 +01001544 if (test_bit(R1BIO_IsSync, &r1_bio->state))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 sync_request_write(mddev, r1_bio);
Jens Axboe7eaceac2011-03-10 08:52:07 +01001546 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 int disk;
NeilBrownddaf22a2006-01-06 00:20:19 -08001548
1549 /* we got a read error. Maybe the drive is bad. Maybe just
1550 * the block and we can fix it.
1551 * We freeze all other IO, and try reading the block from
1552 * other devices. When we find one, we re-write
1553 * and check it that fixes the read error.
1554 * This is all done synchronously while the array is
1555 * frozen
1556 */
NeilBrown867868f2006-10-03 01:15:51 -07001557 if (mddev->ro == 0) {
1558 freeze_array(conf);
1559 fix_read_error(conf, r1_bio->read_disk,
1560 r1_bio->sector,
1561 r1_bio->sectors);
1562 unfreeze_array(conf);
NeilBrownd0e26072009-12-01 17:30:59 +11001563 } else
1564 md_error(mddev,
1565 conf->mirrors[r1_bio->read_disk].rdev);
NeilBrownddaf22a2006-01-06 00:20:19 -08001566
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 bio = r1_bio->bios[r1_bio->read_disk];
NeilBrownd0e26072009-12-01 17:30:59 +11001568 if ((disk=read_balance(conf, r1_bio)) == -1) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001569 printk(KERN_ALERT "md/raid1:%s: %s: unrecoverable I/O"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 " read error for block %llu\n",
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001571 mdname(mddev),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 bdevname(bio->bi_bdev,b),
1573 (unsigned long long)r1_bio->sector);
1574 raid_end_bio_io(r1_bio);
1575 } else {
NeilBrown2c7d46e2010-08-18 16:16:05 +10001576 const unsigned long do_sync = r1_bio->master_bio->bi_rw & REQ_SYNC;
NeilBrowncf30a472006-01-06 00:20:23 -08001577 r1_bio->bios[r1_bio->read_disk] =
1578 mddev->ro ? IO_BLOCKED : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 r1_bio->read_disk = disk;
1580 bio_put(bio);
NeilBrowna167f662010-10-26 18:31:13 +11001581 bio = bio_clone_mddev(r1_bio->master_bio,
1582 GFP_NOIO, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 r1_bio->bios[r1_bio->read_disk] = bio;
1584 rdev = conf->mirrors[disk].rdev;
Christian Dietrich8bda4702011-07-27 11:00:36 +10001585 printk_ratelimited(
1586 KERN_ERR
1587 "md/raid1:%s: redirecting sector %llu"
1588 " to other mirror: %s\n",
1589 mdname(mddev),
1590 (unsigned long long)r1_bio->sector,
1591 bdevname(rdev->bdev, b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 bio->bi_sector = r1_bio->sector + rdev->data_offset;
1593 bio->bi_bdev = rdev->bdev;
1594 bio->bi_end_io = raid1_end_read_request;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001595 bio->bi_rw = READ | do_sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 bio->bi_private = r1_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 generic_make_request(bio);
1598 }
1599 }
NeilBrown1d9d5242009-10-16 15:55:32 +11001600 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 }
NeilBrowne1dfa0a2011-04-18 18:25:41 +10001602 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603}
1604
1605
1606static int init_resync(conf_t *conf)
1607{
1608 int buffs;
1609
1610 buffs = RESYNC_WINDOW / RESYNC_BLOCK_SIZE;
Eric Sesterhenn9e77c482006-04-01 01:08:49 +02001611 BUG_ON(conf->r1buf_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 conf->r1buf_pool = mempool_create(buffs, r1buf_pool_alloc, r1buf_pool_free,
1613 conf->poolinfo);
1614 if (!conf->r1buf_pool)
1615 return -ENOMEM;
1616 conf->next_resync = 0;
1617 return 0;
1618}
1619
1620/*
1621 * perform a "sync" on one "block"
1622 *
1623 * We need to make sure that no normal I/O request - particularly write
1624 * requests - conflict with active sync requests.
1625 *
1626 * This is achieved by tracking pending requests and a 'barrier' concept
1627 * that can be installed to exclude normal IO requests.
1628 */
1629
NeilBrown57afd892005-06-21 17:17:13 -07001630static sector_t sync_request(mddev_t *mddev, sector_t sector_nr, int *skipped, int go_faster)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631{
NeilBrown070ec552009-06-16 16:54:21 +10001632 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 r1bio_t *r1_bio;
1634 struct bio *bio;
1635 sector_t max_sector, nr_sectors;
NeilBrown3e198f72006-01-06 00:20:21 -08001636 int disk = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 int i;
NeilBrown3e198f72006-01-06 00:20:21 -08001638 int wonly = -1;
1639 int write_targets = 0, read_targets = 0;
NeilBrown57dab0b2010-10-19 10:03:39 +11001640 sector_t sync_blocks;
NeilBrowne3b97032005-08-04 12:53:34 -07001641 int still_degraded = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
1643 if (!conf->r1buf_pool)
1644 if (init_resync(conf))
NeilBrown57afd892005-06-21 17:17:13 -07001645 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
Andre Noll58c0fed2009-03-31 14:33:13 +11001647 max_sector = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 if (sector_nr >= max_sector) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001649 /* If we aborted, we need to abort the
1650 * sync on the 'current' bitmap chunk (there will
1651 * only be one in raid1 resync.
1652 * We can find the current addess in mddev->curr_resync
1653 */
NeilBrown6a806c52005-07-15 03:56:35 -07001654 if (mddev->curr_resync < max_sector) /* aborted */
1655 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
NeilBrown191ea9b2005-06-21 17:17:23 -07001656 &sync_blocks, 1);
NeilBrown6a806c52005-07-15 03:56:35 -07001657 else /* completed sync */
NeilBrown191ea9b2005-06-21 17:17:23 -07001658 conf->fullsync = 0;
NeilBrown6a806c52005-07-15 03:56:35 -07001659
1660 bitmap_close_sync(mddev->bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 close_sync(conf);
1662 return 0;
1663 }
1664
NeilBrown07d84d102006-06-26 00:27:56 -07001665 if (mddev->bitmap == NULL &&
1666 mddev->recovery_cp == MaxSector &&
NeilBrown6394cca2006-08-27 01:23:50 -07001667 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
NeilBrown07d84d102006-06-26 00:27:56 -07001668 conf->fullsync == 0) {
1669 *skipped = 1;
1670 return max_sector - sector_nr;
1671 }
NeilBrown6394cca2006-08-27 01:23:50 -07001672 /* before building a request, check if we can skip these blocks..
1673 * This call the bitmap_start_sync doesn't actually record anything
1674 */
NeilBrowne3b97032005-08-04 12:53:34 -07001675 if (!bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
NeilBrowne5de485f2005-11-08 21:39:38 -08001676 !conf->fullsync && !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001677 /* We can skip this block, and probably several more */
1678 *skipped = 1;
1679 return sync_blocks;
1680 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 /*
NeilBrown17999be2006-01-06 00:20:12 -08001682 * If there is non-resync activity waiting for a turn,
1683 * and resync is going fast enough,
1684 * then let it though before starting on this new sync request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 */
NeilBrown17999be2006-01-06 00:20:12 -08001686 if (!go_faster && conf->nr_waiting)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 msleep_interruptible(1000);
NeilBrown17999be2006-01-06 00:20:12 -08001688
NeilBrownb47490c2008-02-06 01:39:50 -08001689 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
NeilBrown1c4588e2010-10-26 17:41:22 +11001690 r1_bio = mempool_alloc(conf->r1buf_pool, GFP_NOIO);
NeilBrown17999be2006-01-06 00:20:12 -08001691 raise_barrier(conf);
1692
1693 conf->next_resync = sector_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
NeilBrown3e198f72006-01-06 00:20:21 -08001695 rcu_read_lock();
1696 /*
1697 * If we get a correctably read error during resync or recovery,
1698 * we might want to read from a different device. So we
1699 * flag all drives that could conceivably be read from for READ,
1700 * and any others (which will be non-In_sync devices) for WRITE.
1701 * If a read fails, we try reading from something else for which READ
1702 * is OK.
1703 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 r1_bio->mddev = mddev;
1706 r1_bio->sector = sector_nr;
NeilBrown191ea9b2005-06-21 17:17:23 -07001707 r1_bio->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 set_bit(R1BIO_IsSync, &r1_bio->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
1710 for (i=0; i < conf->raid_disks; i++) {
NeilBrown3e198f72006-01-06 00:20:21 -08001711 mdk_rdev_t *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 bio = r1_bio->bios[i];
1713
1714 /* take from bio_init */
1715 bio->bi_next = NULL;
NeilBrowndb8d9d32010-10-07 12:00:50 +11001716 bio->bi_flags &= ~(BIO_POOL_MASK-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 bio->bi_flags |= 1 << BIO_UPTODATE;
NeilBrowndb8d9d32010-10-07 12:00:50 +11001718 bio->bi_comp_cpu = -1;
NeilBrown802ba062006-12-13 00:34:13 -08001719 bio->bi_rw = READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 bio->bi_vcnt = 0;
1721 bio->bi_idx = 0;
1722 bio->bi_phys_segments = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 bio->bi_size = 0;
1724 bio->bi_end_io = NULL;
1725 bio->bi_private = NULL;
1726
NeilBrown3e198f72006-01-06 00:20:21 -08001727 rdev = rcu_dereference(conf->mirrors[i].rdev);
1728 if (rdev == NULL ||
1729 test_bit(Faulty, &rdev->flags)) {
NeilBrowne3b97032005-08-04 12:53:34 -07001730 still_degraded = 1;
1731 continue;
NeilBrown3e198f72006-01-06 00:20:21 -08001732 } else if (!test_bit(In_sync, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 bio->bi_rw = WRITE;
1734 bio->bi_end_io = end_sync_write;
1735 write_targets ++;
NeilBrown3e198f72006-01-06 00:20:21 -08001736 } else {
1737 /* may need to read from here */
1738 bio->bi_rw = READ;
1739 bio->bi_end_io = end_sync_read;
1740 if (test_bit(WriteMostly, &rdev->flags)) {
1741 if (wonly < 0)
1742 wonly = i;
1743 } else {
1744 if (disk < 0)
1745 disk = i;
1746 }
1747 read_targets++;
1748 }
1749 atomic_inc(&rdev->nr_pending);
1750 bio->bi_sector = sector_nr + rdev->data_offset;
1751 bio->bi_bdev = rdev->bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 bio->bi_private = r1_bio;
1753 }
NeilBrown3e198f72006-01-06 00:20:21 -08001754 rcu_read_unlock();
1755 if (disk < 0)
1756 disk = wonly;
1757 r1_bio->read_disk = disk;
NeilBrown191ea9b2005-06-21 17:17:23 -07001758
NeilBrown3e198f72006-01-06 00:20:21 -08001759 if (test_bit(MD_RECOVERY_SYNC, &mddev->recovery) && read_targets > 0)
1760 /* extra read targets are also write targets */
1761 write_targets += read_targets-1;
1762
1763 if (write_targets == 0 || read_targets == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 /* There is nowhere to write, so all non-sync
1765 * drives must be failed - so we are finished
1766 */
NeilBrown57afd892005-06-21 17:17:13 -07001767 sector_t rv = max_sector - sector_nr;
1768 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 put_buf(r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 return rv;
1771 }
1772
NeilBrownc6207272008-02-06 01:39:52 -08001773 if (max_sector > mddev->resync_max)
1774 max_sector = mddev->resync_max; /* Don't do IO beyond here */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 nr_sectors = 0;
NeilBrown289e99e2005-06-21 17:17:24 -07001776 sync_blocks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 do {
1778 struct page *page;
1779 int len = PAGE_SIZE;
1780 if (sector_nr + (len>>9) > max_sector)
1781 len = (max_sector - sector_nr) << 9;
1782 if (len == 0)
1783 break;
NeilBrown6a806c52005-07-15 03:56:35 -07001784 if (sync_blocks == 0) {
1785 if (!bitmap_start_sync(mddev->bitmap, sector_nr,
NeilBrowne5de485f2005-11-08 21:39:38 -08001786 &sync_blocks, still_degraded) &&
1787 !conf->fullsync &&
1788 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery))
NeilBrown6a806c52005-07-15 03:56:35 -07001789 break;
Eric Sesterhenn9e77c482006-04-01 01:08:49 +02001790 BUG_ON(sync_blocks < (PAGE_SIZE>>9));
NeilBrown7571ae82010-10-07 11:54:46 +11001791 if ((len >> 9) > sync_blocks)
NeilBrown6a806c52005-07-15 03:56:35 -07001792 len = sync_blocks<<9;
NeilBrownab7a30c2005-06-21 17:17:23 -07001793 }
NeilBrown191ea9b2005-06-21 17:17:23 -07001794
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 for (i=0 ; i < conf->raid_disks; i++) {
1796 bio = r1_bio->bios[i];
1797 if (bio->bi_end_io) {
NeilBrownd11c1712006-01-06 00:20:26 -08001798 page = bio->bi_io_vec[bio->bi_vcnt].bv_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 if (bio_add_page(bio, page, len, 0) == 0) {
1800 /* stop here */
NeilBrownd11c1712006-01-06 00:20:26 -08001801 bio->bi_io_vec[bio->bi_vcnt].bv_page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 while (i > 0) {
1803 i--;
1804 bio = r1_bio->bios[i];
NeilBrown6a806c52005-07-15 03:56:35 -07001805 if (bio->bi_end_io==NULL)
1806 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 /* remove last page from this bio */
1808 bio->bi_vcnt--;
1809 bio->bi_size -= len;
1810 bio->bi_flags &= ~(1<< BIO_SEG_VALID);
1811 }
1812 goto bio_full;
1813 }
1814 }
1815 }
1816 nr_sectors += len>>9;
1817 sector_nr += len>>9;
NeilBrown191ea9b2005-06-21 17:17:23 -07001818 sync_blocks -= (len>>9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 } while (r1_bio->bios[disk]->bi_vcnt < RESYNC_PAGES);
1820 bio_full:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 r1_bio->sectors = nr_sectors;
1822
NeilBrownd11c1712006-01-06 00:20:26 -08001823 /* For a user-requested sync, we read all readable devices and do a
1824 * compare
1825 */
1826 if (test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) {
1827 atomic_set(&r1_bio->remaining, read_targets);
1828 for (i=0; i<conf->raid_disks; i++) {
1829 bio = r1_bio->bios[i];
1830 if (bio->bi_end_io == end_sync_read) {
NeilBrownddac7c72006-08-31 21:27:36 -07001831 md_sync_acct(bio->bi_bdev, nr_sectors);
NeilBrownd11c1712006-01-06 00:20:26 -08001832 generic_make_request(bio);
1833 }
1834 }
1835 } else {
1836 atomic_set(&r1_bio->remaining, 1);
1837 bio = r1_bio->bios[r1_bio->read_disk];
NeilBrownddac7c72006-08-31 21:27:36 -07001838 md_sync_acct(bio->bi_bdev, nr_sectors);
NeilBrownd11c1712006-01-06 00:20:26 -08001839 generic_make_request(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
NeilBrownd11c1712006-01-06 00:20:26 -08001841 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 return nr_sectors;
1843}
1844
Dan Williams80c3a6c2009-03-17 18:10:40 -07001845static sector_t raid1_size(mddev_t *mddev, sector_t sectors, int raid_disks)
1846{
1847 if (sectors)
1848 return sectors;
1849
1850 return mddev->dev_sectors;
1851}
1852
NeilBrown709ae482009-12-14 12:49:51 +11001853static conf_t *setup_conf(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854{
1855 conf_t *conf;
NeilBrown709ae482009-12-14 12:49:51 +11001856 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 mirror_info_t *disk;
1858 mdk_rdev_t *rdev;
NeilBrown709ae482009-12-14 12:49:51 +11001859 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
NeilBrown9ffae0c2006-01-06 00:20:32 -08001861 conf = kzalloc(sizeof(conf_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 if (!conf)
NeilBrown709ae482009-12-14 12:49:51 +11001863 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
NeilBrown9ffae0c2006-01-06 00:20:32 -08001865 conf->mirrors = kzalloc(sizeof(struct mirror_info)*mddev->raid_disks,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 GFP_KERNEL);
1867 if (!conf->mirrors)
NeilBrown709ae482009-12-14 12:49:51 +11001868 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
NeilBrownddaf22a2006-01-06 00:20:19 -08001870 conf->tmppage = alloc_page(GFP_KERNEL);
1871 if (!conf->tmppage)
NeilBrown709ae482009-12-14 12:49:51 +11001872 goto abort;
NeilBrownddaf22a2006-01-06 00:20:19 -08001873
NeilBrown709ae482009-12-14 12:49:51 +11001874 conf->poolinfo = kzalloc(sizeof(*conf->poolinfo), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 if (!conf->poolinfo)
NeilBrown709ae482009-12-14 12:49:51 +11001876 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 conf->poolinfo->raid_disks = mddev->raid_disks;
1878 conf->r1bio_pool = mempool_create(NR_RAID1_BIOS, r1bio_pool_alloc,
1879 r1bio_pool_free,
1880 conf->poolinfo);
1881 if (!conf->r1bio_pool)
NeilBrown709ae482009-12-14 12:49:51 +11001882 goto abort;
1883
NeilBrowned9bfdf2009-10-16 15:55:44 +11001884 conf->poolinfo->mddev = mddev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
Neil Browne7e72bf2008-05-14 16:05:54 -07001886 spin_lock_init(&conf->device_lock);
Cheng Renquan159ec1f2009-01-09 08:31:08 +11001887 list_for_each_entry(rdev, &mddev->disks, same_set) {
NeilBrown709ae482009-12-14 12:49:51 +11001888 int disk_idx = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 if (disk_idx >= mddev->raid_disks
1890 || disk_idx < 0)
1891 continue;
1892 disk = conf->mirrors + disk_idx;
1893
1894 disk->rdev = rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895
1896 disk->head_position = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 }
1898 conf->raid_disks = mddev->raid_disks;
1899 conf->mddev = mddev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 INIT_LIST_HEAD(&conf->retry_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901
1902 spin_lock_init(&conf->resync_lock);
NeilBrown17999be2006-01-06 00:20:12 -08001903 init_waitqueue_head(&conf->wait_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904
NeilBrown191ea9b2005-06-21 17:17:23 -07001905 bio_list_init(&conf->pending_bio_list);
NeilBrown191ea9b2005-06-21 17:17:23 -07001906
NeilBrown709ae482009-12-14 12:49:51 +11001907 conf->last_used = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 for (i = 0; i < conf->raid_disks; i++) {
1909
1910 disk = conf->mirrors + i;
1911
NeilBrown5fd6c1d2006-06-26 00:27:40 -07001912 if (!disk->rdev ||
1913 !test_bit(In_sync, &disk->rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 disk->head_position = 0;
NeilBrown918f0232007-08-22 14:01:52 -07001915 if (disk->rdev)
1916 conf->fullsync = 1;
NeilBrown709ae482009-12-14 12:49:51 +11001917 } else if (conf->last_used < 0)
1918 /*
1919 * The first working device is used as a
1920 * starting point to read balancing.
1921 */
1922 conf->last_used = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 }
NeilBrown709ae482009-12-14 12:49:51 +11001924
1925 err = -EIO;
1926 if (conf->last_used < 0) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001927 printk(KERN_ERR "md/raid1:%s: no operational mirrors\n",
NeilBrown709ae482009-12-14 12:49:51 +11001928 mdname(mddev));
1929 goto abort;
NeilBrown11ce99e2006-10-03 01:15:52 -07001930 }
NeilBrown709ae482009-12-14 12:49:51 +11001931 err = -ENOMEM;
1932 conf->thread = md_register_thread(raid1d, mddev, NULL);
1933 if (!conf->thread) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001934 printk(KERN_ERR
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001935 "md/raid1:%s: couldn't allocate thread\n",
NeilBrown191ea9b2005-06-21 17:17:23 -07001936 mdname(mddev));
NeilBrown709ae482009-12-14 12:49:51 +11001937 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 }
NeilBrown191ea9b2005-06-21 17:17:23 -07001939
NeilBrown709ae482009-12-14 12:49:51 +11001940 return conf;
1941
1942 abort:
1943 if (conf) {
1944 if (conf->r1bio_pool)
1945 mempool_destroy(conf->r1bio_pool);
1946 kfree(conf->mirrors);
1947 safe_put_page(conf->tmppage);
1948 kfree(conf->poolinfo);
1949 kfree(conf);
1950 }
1951 return ERR_PTR(err);
1952}
1953
1954static int run(mddev_t *mddev)
1955{
1956 conf_t *conf;
1957 int i;
1958 mdk_rdev_t *rdev;
1959
1960 if (mddev->level != 1) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001961 printk(KERN_ERR "md/raid1:%s: raid level not set to mirroring (%d)\n",
NeilBrown709ae482009-12-14 12:49:51 +11001962 mdname(mddev), mddev->level);
1963 return -EIO;
1964 }
1965 if (mddev->reshape_position != MaxSector) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001966 printk(KERN_ERR "md/raid1:%s: reshape_position set but not supported\n",
NeilBrown709ae482009-12-14 12:49:51 +11001967 mdname(mddev));
1968 return -EIO;
1969 }
1970 /*
1971 * copy the already verified devices into our private RAID1
1972 * bookkeeping area. [whatever we allocate in run(),
1973 * should be freed in stop()]
1974 */
1975 if (mddev->private == NULL)
1976 conf = setup_conf(mddev);
1977 else
1978 conf = mddev->private;
1979
1980 if (IS_ERR(conf))
1981 return PTR_ERR(conf);
1982
NeilBrown709ae482009-12-14 12:49:51 +11001983 list_for_each_entry(rdev, &mddev->disks, same_set) {
Jonathan Brassow1ed72422011-06-07 17:50:35 -05001984 if (!mddev->gendisk)
1985 continue;
NeilBrown709ae482009-12-14 12:49:51 +11001986 disk_stack_limits(mddev->gendisk, rdev->bdev,
1987 rdev->data_offset << 9);
1988 /* as we don't honour merge_bvec_fn, we must never risk
NeilBrown627a2d32010-03-08 16:44:38 +11001989 * violating it, so limit ->max_segments to 1 lying within
1990 * a single page, as a one page request is never in violation.
NeilBrown709ae482009-12-14 12:49:51 +11001991 */
NeilBrown627a2d32010-03-08 16:44:38 +11001992 if (rdev->bdev->bd_disk->queue->merge_bvec_fn) {
1993 blk_queue_max_segments(mddev->queue, 1);
1994 blk_queue_segment_boundary(mddev->queue,
1995 PAGE_CACHE_SIZE - 1);
1996 }
NeilBrown709ae482009-12-14 12:49:51 +11001997 }
1998
1999 mddev->degraded = 0;
2000 for (i=0; i < conf->raid_disks; i++)
2001 if (conf->mirrors[i].rdev == NULL ||
2002 !test_bit(In_sync, &conf->mirrors[i].rdev->flags) ||
2003 test_bit(Faulty, &conf->mirrors[i].rdev->flags))
2004 mddev->degraded++;
2005
2006 if (conf->raid_disks - mddev->degraded == 1)
2007 mddev->recovery_cp = MaxSector;
2008
Andre Noll8c6ac862009-06-18 08:48:06 +10002009 if (mddev->recovery_cp != MaxSector)
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002010 printk(KERN_NOTICE "md/raid1:%s: not clean"
Andre Noll8c6ac862009-06-18 08:48:06 +10002011 " -- starting background reconstruction\n",
2012 mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 printk(KERN_INFO
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002014 "md/raid1:%s: active with %d out of %d mirrors\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 mdname(mddev), mddev->raid_disks - mddev->degraded,
2016 mddev->raid_disks);
NeilBrown709ae482009-12-14 12:49:51 +11002017
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 /*
2019 * Ok, everything is just fine now
2020 */
NeilBrown709ae482009-12-14 12:49:51 +11002021 mddev->thread = conf->thread;
2022 conf->thread = NULL;
2023 mddev->private = conf;
2024
Dan Williams1f403622009-03-31 14:59:03 +11002025 md_set_array_sectors(mddev, raid1_size(mddev, 0, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
Jonathan Brassow1ed72422011-06-07 17:50:35 -05002027 if (mddev->queue) {
2028 mddev->queue->backing_dev_info.congested_fn = raid1_congested;
2029 mddev->queue->backing_dev_info.congested_data = mddev;
2030 }
Martin K. Petersena91a2782011-03-17 11:11:05 +01002031 return md_integrity_register(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032}
2033
2034static int stop(mddev_t *mddev)
2035{
NeilBrown070ec552009-06-16 16:54:21 +10002036 conf_t *conf = mddev->private;
NeilBrown4b6d2872005-09-09 16:23:47 -07002037 struct bitmap *bitmap = mddev->bitmap;
NeilBrown4b6d2872005-09-09 16:23:47 -07002038
2039 /* wait for behind writes to complete */
NeilBrowne5551902010-03-31 11:21:44 +11002040 if (bitmap && atomic_read(&bitmap->behind_writes) > 0) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002041 printk(KERN_INFO "md/raid1:%s: behind writes in progress - waiting to stop.\n",
2042 mdname(mddev));
NeilBrown4b6d2872005-09-09 16:23:47 -07002043 /* need to kick something here to make sure I/O goes? */
NeilBrowne5551902010-03-31 11:21:44 +11002044 wait_event(bitmap->behind_wait,
2045 atomic_read(&bitmap->behind_writes) == 0);
NeilBrown4b6d2872005-09-09 16:23:47 -07002046 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
NeilBrown409c57f2009-03-31 14:39:39 +11002048 raise_barrier(conf);
2049 lower_barrier(conf);
2050
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 md_unregister_thread(mddev->thread);
2052 mddev->thread = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 if (conf->r1bio_pool)
2054 mempool_destroy(conf->r1bio_pool);
Jesper Juhl990a8ba2005-06-21 17:17:30 -07002055 kfree(conf->mirrors);
2056 kfree(conf->poolinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 kfree(conf);
2058 mddev->private = NULL;
2059 return 0;
2060}
2061
2062static int raid1_resize(mddev_t *mddev, sector_t sectors)
2063{
2064 /* no resync is happening, and there is enough space
2065 * on all devices, so we can resize.
2066 * We need to make sure resync covers any new space.
2067 * If the array is shrinking we should possibly wait until
2068 * any io in the removed space completes, but it hardly seems
2069 * worth it.
2070 */
Dan Williams1f403622009-03-31 14:59:03 +11002071 md_set_array_sectors(mddev, raid1_size(mddev, sectors, 0));
Dan Williamsb522adc2009-03-31 15:00:31 +11002072 if (mddev->array_sectors > raid1_size(mddev, sectors, 0))
2073 return -EINVAL;
Andre Nollf233ea52008-07-21 17:05:22 +10002074 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10002075 revalidate_disk(mddev->gendisk);
Dan Williamsb522adc2009-03-31 15:00:31 +11002076 if (sectors > mddev->dev_sectors &&
NeilBrownb0986362011-05-11 15:52:21 +10002077 mddev->recovery_cp > mddev->dev_sectors) {
Andre Noll58c0fed2009-03-31 14:33:13 +11002078 mddev->recovery_cp = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
2080 }
Dan Williamsb522adc2009-03-31 15:00:31 +11002081 mddev->dev_sectors = sectors;
NeilBrown4b5c7ae2005-07-27 11:43:28 -07002082 mddev->resync_max_sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 return 0;
2084}
2085
NeilBrown63c70c42006-03-27 01:18:13 -08002086static int raid1_reshape(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087{
2088 /* We need to:
2089 * 1/ resize the r1bio_pool
2090 * 2/ resize conf->mirrors
2091 *
2092 * We allocate a new r1bio_pool if we can.
2093 * Then raise a device barrier and wait until all IO stops.
2094 * Then resize conf->mirrors and swap in the new r1bio pool.
NeilBrown6ea9c072005-06-21 17:17:09 -07002095 *
2096 * At the same time, we "pack" the devices so that all the missing
2097 * devices have the higher raid_disk numbers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 */
2099 mempool_t *newpool, *oldpool;
2100 struct pool_info *newpoolinfo;
2101 mirror_info_t *newmirrors;
NeilBrown070ec552009-06-16 16:54:21 +10002102 conf_t *conf = mddev->private;
NeilBrown63c70c42006-03-27 01:18:13 -08002103 int cnt, raid_disks;
NeilBrownc04be0a2006-10-03 01:15:53 -07002104 unsigned long flags;
Dan Williamsb5470dc2008-06-27 21:44:04 -07002105 int d, d2, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
NeilBrown63c70c42006-03-27 01:18:13 -08002107 /* Cannot change chunk_size, layout, or level */
Andre Noll664e7c42009-06-18 08:45:27 +10002108 if (mddev->chunk_sectors != mddev->new_chunk_sectors ||
NeilBrown63c70c42006-03-27 01:18:13 -08002109 mddev->layout != mddev->new_layout ||
2110 mddev->level != mddev->new_level) {
Andre Noll664e7c42009-06-18 08:45:27 +10002111 mddev->new_chunk_sectors = mddev->chunk_sectors;
NeilBrown63c70c42006-03-27 01:18:13 -08002112 mddev->new_layout = mddev->layout;
2113 mddev->new_level = mddev->level;
2114 return -EINVAL;
2115 }
2116
Dan Williamsb5470dc2008-06-27 21:44:04 -07002117 err = md_allow_write(mddev);
2118 if (err)
2119 return err;
NeilBrown2a2275d2007-01-26 00:57:11 -08002120
NeilBrown63c70c42006-03-27 01:18:13 -08002121 raid_disks = mddev->raid_disks + mddev->delta_disks;
2122
NeilBrown6ea9c072005-06-21 17:17:09 -07002123 if (raid_disks < conf->raid_disks) {
2124 cnt=0;
2125 for (d= 0; d < conf->raid_disks; d++)
2126 if (conf->mirrors[d].rdev)
2127 cnt++;
2128 if (cnt > raid_disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 return -EBUSY;
NeilBrown6ea9c072005-06-21 17:17:09 -07002130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131
2132 newpoolinfo = kmalloc(sizeof(*newpoolinfo), GFP_KERNEL);
2133 if (!newpoolinfo)
2134 return -ENOMEM;
2135 newpoolinfo->mddev = mddev;
2136 newpoolinfo->raid_disks = raid_disks;
2137
2138 newpool = mempool_create(NR_RAID1_BIOS, r1bio_pool_alloc,
2139 r1bio_pool_free, newpoolinfo);
2140 if (!newpool) {
2141 kfree(newpoolinfo);
2142 return -ENOMEM;
2143 }
NeilBrown9ffae0c2006-01-06 00:20:32 -08002144 newmirrors = kzalloc(sizeof(struct mirror_info) * raid_disks, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 if (!newmirrors) {
2146 kfree(newpoolinfo);
2147 mempool_destroy(newpool);
2148 return -ENOMEM;
2149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
NeilBrown17999be2006-01-06 00:20:12 -08002151 raise_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
2153 /* ok, everything is stopped */
2154 oldpool = conf->r1bio_pool;
2155 conf->r1bio_pool = newpool;
NeilBrown6ea9c072005-06-21 17:17:09 -07002156
NeilBrowna88aa782007-08-22 14:01:53 -07002157 for (d = d2 = 0; d < conf->raid_disks; d++) {
2158 mdk_rdev_t *rdev = conf->mirrors[d].rdev;
2159 if (rdev && rdev->raid_disk != d2) {
Namhyung Kim36fad852011-07-27 11:00:36 +10002160 sysfs_unlink_rdev(mddev, rdev);
NeilBrowna88aa782007-08-22 14:01:53 -07002161 rdev->raid_disk = d2;
Namhyung Kim36fad852011-07-27 11:00:36 +10002162 sysfs_unlink_rdev(mddev, rdev);
2163 if (sysfs_link_rdev(mddev, rdev))
NeilBrowna88aa782007-08-22 14:01:53 -07002164 printk(KERN_WARNING
Namhyung Kim36fad852011-07-27 11:00:36 +10002165 "md/raid1:%s: cannot register rd%d\n",
2166 mdname(mddev), rdev->raid_disk);
NeilBrown6ea9c072005-06-21 17:17:09 -07002167 }
NeilBrowna88aa782007-08-22 14:01:53 -07002168 if (rdev)
2169 newmirrors[d2++].rdev = rdev;
2170 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 kfree(conf->mirrors);
2172 conf->mirrors = newmirrors;
2173 kfree(conf->poolinfo);
2174 conf->poolinfo = newpoolinfo;
2175
NeilBrownc04be0a2006-10-03 01:15:53 -07002176 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 mddev->degraded += (raid_disks - conf->raid_disks);
NeilBrownc04be0a2006-10-03 01:15:53 -07002178 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 conf->raid_disks = mddev->raid_disks = raid_disks;
NeilBrown63c70c42006-03-27 01:18:13 -08002180 mddev->delta_disks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181
NeilBrown6ea9c072005-06-21 17:17:09 -07002182 conf->last_used = 0; /* just make sure it is in-range */
NeilBrown17999be2006-01-06 00:20:12 -08002183 lower_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184
2185 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
2186 md_wakeup_thread(mddev->thread);
2187
2188 mempool_destroy(oldpool);
2189 return 0;
2190}
2191
NeilBrown500af872005-09-09 16:23:58 -07002192static void raid1_quiesce(mddev_t *mddev, int state)
NeilBrown36fa3062005-09-09 16:23:45 -07002193{
NeilBrown070ec552009-06-16 16:54:21 +10002194 conf_t *conf = mddev->private;
NeilBrown36fa3062005-09-09 16:23:45 -07002195
2196 switch(state) {
NeilBrown6eef4b22009-12-14 12:49:51 +11002197 case 2: /* wake for suspend */
2198 wake_up(&conf->wait_barrier);
2199 break;
NeilBrown9e6603d2005-09-09 16:23:48 -07002200 case 1:
NeilBrown17999be2006-01-06 00:20:12 -08002201 raise_barrier(conf);
NeilBrown36fa3062005-09-09 16:23:45 -07002202 break;
NeilBrown9e6603d2005-09-09 16:23:48 -07002203 case 0:
NeilBrown17999be2006-01-06 00:20:12 -08002204 lower_barrier(conf);
NeilBrown36fa3062005-09-09 16:23:45 -07002205 break;
2206 }
NeilBrown36fa3062005-09-09 16:23:45 -07002207}
2208
NeilBrown709ae482009-12-14 12:49:51 +11002209static void *raid1_takeover(mddev_t *mddev)
2210{
2211 /* raid1 can take over:
2212 * raid5 with 2 devices, any layout or chunk size
2213 */
2214 if (mddev->level == 5 && mddev->raid_disks == 2) {
2215 conf_t *conf;
2216 mddev->new_level = 1;
2217 mddev->new_layout = 0;
2218 mddev->new_chunk_sectors = 0;
2219 conf = setup_conf(mddev);
2220 if (!IS_ERR(conf))
2221 conf->barrier = 1;
2222 return conf;
2223 }
2224 return ERR_PTR(-EINVAL);
2225}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
NeilBrown2604b702006-01-06 00:20:36 -08002227static struct mdk_personality raid1_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228{
2229 .name = "raid1",
NeilBrown2604b702006-01-06 00:20:36 -08002230 .level = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 .owner = THIS_MODULE,
2232 .make_request = make_request,
2233 .run = run,
2234 .stop = stop,
2235 .status = status,
2236 .error_handler = error,
2237 .hot_add_disk = raid1_add_disk,
2238 .hot_remove_disk= raid1_remove_disk,
2239 .spare_active = raid1_spare_active,
2240 .sync_request = sync_request,
2241 .resize = raid1_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07002242 .size = raid1_size,
NeilBrown63c70c42006-03-27 01:18:13 -08002243 .check_reshape = raid1_reshape,
NeilBrown36fa3062005-09-09 16:23:45 -07002244 .quiesce = raid1_quiesce,
NeilBrown709ae482009-12-14 12:49:51 +11002245 .takeover = raid1_takeover,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246};
2247
2248static int __init raid_init(void)
2249{
NeilBrown2604b702006-01-06 00:20:36 -08002250 return register_md_personality(&raid1_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251}
2252
2253static void raid_exit(void)
2254{
NeilBrown2604b702006-01-06 00:20:36 -08002255 unregister_md_personality(&raid1_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256}
2257
2258module_init(raid_init);
2259module_exit(raid_exit);
2260MODULE_LICENSE("GPL");
NeilBrown0efb9e62009-12-14 12:49:58 +11002261MODULE_DESCRIPTION("RAID1 (mirroring) personality for MD");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262MODULE_ALIAS("md-personality-3"); /* RAID1 */
NeilBrownd9d166c2006-01-06 00:20:51 -08002263MODULE_ALIAS("md-raid1");
NeilBrown2604b702006-01-06 00:20:36 -08002264MODULE_ALIAS("md-level-1");