blob: 886a9d865488a32aa5520604960597464866669a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * raid1.c : Multiple Devices driver for Linux
3 *
4 * Copyright (C) 1999, 2000, 2001 Ingo Molnar, Red Hat
5 *
6 * Copyright (C) 1996, 1997, 1998 Ingo Molnar, Miguel de Icaza, Gadi Oxman
7 *
8 * RAID-1 management functions.
9 *
10 * Better read-balancing code written by Mika Kuoppala <miku@iki.fi>, 2000
11 *
Jan Engelhardt96de0e22007-10-19 23:21:04 +020012 * Fixes to reconstruction by Jakob Østergaard" <jakob@ostenfeld.dk>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * Various fixes by Neil Brown <neilb@cse.unsw.edu.au>
14 *
NeilBrown191ea9b2005-06-21 17:17:23 -070015 * Changes by Peter T. Breuer <ptb@it.uc3m.es> 31/1/2003 to support
16 * bitmapped intelligence in resync:
17 *
18 * - bitmap marked during normal i/o
19 * - bitmap used to skip nondirty blocks during sync
20 *
21 * Additions to bitmap code, (C) 2003-2004 Paul Clements, SteelEye Technology:
22 * - persistent bitmap code
23 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * This program is free software; you can redistribute it and/or modify
25 * it under the terms of the GNU General Public License as published by
26 * the Free Software Foundation; either version 2, or (at your option)
27 * any later version.
28 *
29 * You should have received a copy of the GNU General Public License
30 * (for example /usr/src/linux/COPYING); if not, write to the Free
31 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
32 */
33
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Stephen Rothwell25570722008-10-15 09:09:21 +110035#include <linux/delay.h>
NeilBrownbff61972009-03-31 14:33:13 +110036#include <linux/blkdev.h>
NeilBrownbff61972009-03-31 14:33:13 +110037#include <linux/seq_file.h>
NeilBrown43b2e5d2009-03-31 14:33:13 +110038#include "md.h"
Christoph Hellwigef740c32009-03-31 14:27:03 +110039#include "raid1.h"
40#include "bitmap.h"
NeilBrown191ea9b2005-06-21 17:17:23 -070041
42#define DEBUG 0
43#if DEBUG
44#define PRINTK(x...) printk(x)
45#else
46#define PRINTK(x...)
47#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49/*
50 * Number of guaranteed r1bios in case of extreme VM load:
51 */
52#define NR_RAID1_BIOS 256
53
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55static void unplug_slaves(mddev_t *mddev);
56
NeilBrown17999be2006-01-06 00:20:12 -080057static void allow_barrier(conf_t *conf);
58static void lower_barrier(conf_t *conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Al Virodd0fc662005-10-07 07:46:04 +010060static void * r1bio_pool_alloc(gfp_t gfp_flags, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
62 struct pool_info *pi = data;
63 r1bio_t *r1_bio;
64 int size = offsetof(r1bio_t, bios[pi->raid_disks]);
65
66 /* allocate a r1bio with room for raid_disks entries in the bios array */
NeilBrown9ffae0c2006-01-06 00:20:32 -080067 r1_bio = kzalloc(size, gfp_flags);
NeilBrowned9bfdf2009-10-16 15:55:44 +110068 if (!r1_bio && pi->mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 unplug_slaves(pi->mddev);
70
71 return r1_bio;
72}
73
74static void r1bio_pool_free(void *r1_bio, void *data)
75{
76 kfree(r1_bio);
77}
78
79#define RESYNC_BLOCK_SIZE (64*1024)
80//#define RESYNC_BLOCK_SIZE PAGE_SIZE
81#define RESYNC_SECTORS (RESYNC_BLOCK_SIZE >> 9)
82#define RESYNC_PAGES ((RESYNC_BLOCK_SIZE + PAGE_SIZE-1) / PAGE_SIZE)
83#define RESYNC_WINDOW (2048*1024)
84
Al Virodd0fc662005-10-07 07:46:04 +010085static void * r1buf_pool_alloc(gfp_t gfp_flags, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
87 struct pool_info *pi = data;
88 struct page *page;
89 r1bio_t *r1_bio;
90 struct bio *bio;
91 int i, j;
92
93 r1_bio = r1bio_pool_alloc(gfp_flags, pi);
94 if (!r1_bio) {
95 unplug_slaves(pi->mddev);
96 return NULL;
97 }
98
99 /*
100 * Allocate bios : 1 for reading, n-1 for writing
101 */
102 for (j = pi->raid_disks ; j-- ; ) {
103 bio = bio_alloc(gfp_flags, RESYNC_PAGES);
104 if (!bio)
105 goto out_free_bio;
106 r1_bio->bios[j] = bio;
107 }
108 /*
109 * Allocate RESYNC_PAGES data pages and attach them to
NeilBrownd11c1712006-01-06 00:20:26 -0800110 * the first bio.
111 * If this is a user-requested check/repair, allocate
112 * RESYNC_PAGES for each bio.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 */
NeilBrownd11c1712006-01-06 00:20:26 -0800114 if (test_bit(MD_RECOVERY_REQUESTED, &pi->mddev->recovery))
115 j = pi->raid_disks;
116 else
117 j = 1;
118 while(j--) {
119 bio = r1_bio->bios[j];
120 for (i = 0; i < RESYNC_PAGES; i++) {
121 page = alloc_page(gfp_flags);
122 if (unlikely(!page))
123 goto out_free_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
NeilBrownd11c1712006-01-06 00:20:26 -0800125 bio->bi_io_vec[i].bv_page = page;
NeilBrown303a0e12009-04-06 14:40:38 +1000126 bio->bi_vcnt = i+1;
NeilBrownd11c1712006-01-06 00:20:26 -0800127 }
128 }
129 /* If not user-requests, copy the page pointers to all bios */
130 if (!test_bit(MD_RECOVERY_REQUESTED, &pi->mddev->recovery)) {
131 for (i=0; i<RESYNC_PAGES ; i++)
132 for (j=1; j<pi->raid_disks; j++)
133 r1_bio->bios[j]->bi_io_vec[i].bv_page =
134 r1_bio->bios[0]->bi_io_vec[i].bv_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
136
137 r1_bio->master_bio = NULL;
138
139 return r1_bio;
140
141out_free_pages:
NeilBrown303a0e12009-04-06 14:40:38 +1000142 for (j=0 ; j < pi->raid_disks; j++)
143 for (i=0; i < r1_bio->bios[j]->bi_vcnt ; i++)
144 put_page(r1_bio->bios[j]->bi_io_vec[i].bv_page);
NeilBrownd11c1712006-01-06 00:20:26 -0800145 j = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146out_free_bio:
147 while ( ++j < pi->raid_disks )
148 bio_put(r1_bio->bios[j]);
149 r1bio_pool_free(r1_bio, data);
150 return NULL;
151}
152
153static void r1buf_pool_free(void *__r1_bio, void *data)
154{
155 struct pool_info *pi = data;
NeilBrownd11c1712006-01-06 00:20:26 -0800156 int i,j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 r1bio_t *r1bio = __r1_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
NeilBrownd11c1712006-01-06 00:20:26 -0800159 for (i = 0; i < RESYNC_PAGES; i++)
160 for (j = pi->raid_disks; j-- ;) {
161 if (j == 0 ||
162 r1bio->bios[j]->bi_io_vec[i].bv_page !=
163 r1bio->bios[0]->bi_io_vec[i].bv_page)
NeilBrown1345b1d2006-01-06 00:20:40 -0800164 safe_put_page(r1bio->bios[j]->bi_io_vec[i].bv_page);
NeilBrownd11c1712006-01-06 00:20:26 -0800165 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 for (i=0 ; i < pi->raid_disks; i++)
167 bio_put(r1bio->bios[i]);
168
169 r1bio_pool_free(r1bio, data);
170}
171
172static void put_all_bios(conf_t *conf, r1bio_t *r1_bio)
173{
174 int i;
175
176 for (i = 0; i < conf->raid_disks; i++) {
177 struct bio **bio = r1_bio->bios + i;
NeilBrowncf30a472006-01-06 00:20:23 -0800178 if (*bio && *bio != IO_BLOCKED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 bio_put(*bio);
180 *bio = NULL;
181 }
182}
183
Arjan van de Ven858119e2006-01-14 13:20:43 -0800184static void free_r1bio(r1bio_t *r1_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
NeilBrown070ec552009-06-16 16:54:21 +1000186 conf_t *conf = r1_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188 /*
189 * Wake up any possible resync thread that waits for the device
190 * to go idle.
191 */
NeilBrown17999be2006-01-06 00:20:12 -0800192 allow_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 put_all_bios(conf, r1_bio);
195 mempool_free(r1_bio, conf->r1bio_pool);
196}
197
Arjan van de Ven858119e2006-01-14 13:20:43 -0800198static void put_buf(r1bio_t *r1_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
NeilBrown070ec552009-06-16 16:54:21 +1000200 conf_t *conf = r1_bio->mddev->private;
NeilBrown3e198f72006-01-06 00:20:21 -0800201 int i;
202
203 for (i=0; i<conf->raid_disks; i++) {
204 struct bio *bio = r1_bio->bios[i];
205 if (bio->bi_end_io)
206 rdev_dec_pending(conf->mirrors[i].rdev, r1_bio->mddev);
207 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209 mempool_free(r1_bio, conf->r1buf_pool);
210
NeilBrown17999be2006-01-06 00:20:12 -0800211 lower_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212}
213
214static void reschedule_retry(r1bio_t *r1_bio)
215{
216 unsigned long flags;
217 mddev_t *mddev = r1_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +1000218 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220 spin_lock_irqsave(&conf->device_lock, flags);
221 list_add(&r1_bio->retry_list, &conf->retry_list);
NeilBrownddaf22a2006-01-06 00:20:19 -0800222 conf->nr_queued ++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 spin_unlock_irqrestore(&conf->device_lock, flags);
224
NeilBrown17999be2006-01-06 00:20:12 -0800225 wake_up(&conf->wait_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 md_wakeup_thread(mddev->thread);
227}
228
229/*
230 * raid_end_bio_io() is called when we have finished servicing a mirrored
231 * operation and are ready to return a success/failure code to the buffer
232 * cache layer.
233 */
234static void raid_end_bio_io(r1bio_t *r1_bio)
235{
236 struct bio *bio = r1_bio->master_bio;
237
NeilBrown4b6d2872005-09-09 16:23:47 -0700238 /* if nobody has done the final endio yet, do it now */
239 if (!test_and_set_bit(R1BIO_Returned, &r1_bio->state)) {
240 PRINTK(KERN_DEBUG "raid1: sync end %s on sectors %llu-%llu\n",
241 (bio_data_dir(bio) == WRITE) ? "write" : "read",
242 (unsigned long long) bio->bi_sector,
243 (unsigned long long) bio->bi_sector +
244 (bio->bi_size >> 9) - 1);
245
NeilBrown6712ecf2007-09-27 12:47:43 +0200246 bio_endio(bio,
NeilBrown4b6d2872005-09-09 16:23:47 -0700247 test_bit(R1BIO_Uptodate, &r1_bio->state) ? 0 : -EIO);
248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 free_r1bio(r1_bio);
250}
251
252/*
253 * Update disk head position estimator based on IRQ completion info.
254 */
255static inline void update_head_pos(int disk, r1bio_t *r1_bio)
256{
NeilBrown070ec552009-06-16 16:54:21 +1000257 conf_t *conf = r1_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 conf->mirrors[disk].head_position =
260 r1_bio->sector + (r1_bio->sectors);
261}
262
NeilBrown6712ecf2007-09-27 12:47:43 +0200263static void raid1_end_read_request(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
265 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
H Hartley Sweeten7b928132010-03-08 16:02:40 +1100266 r1bio_t *r1_bio = bio->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 int mirror;
NeilBrown070ec552009-06-16 16:54:21 +1000268 conf_t *conf = r1_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 mirror = r1_bio->read_disk;
271 /*
272 * this branch is our 'one mirror IO has finished' event handler:
273 */
NeilBrownddaf22a2006-01-06 00:20:19 -0800274 update_head_pos(mirror, r1_bio);
275
NeilBrowndd00a992007-05-10 03:15:50 -0700276 if (uptodate)
277 set_bit(R1BIO_Uptodate, &r1_bio->state);
278 else {
279 /* If all other devices have failed, we want to return
280 * the error upwards rather than fail the last device.
281 * Here we redefine "uptodate" to mean "Don't want to retry"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 */
NeilBrowndd00a992007-05-10 03:15:50 -0700283 unsigned long flags;
284 spin_lock_irqsave(&conf->device_lock, flags);
285 if (r1_bio->mddev->degraded == conf->raid_disks ||
286 (r1_bio->mddev->degraded == conf->raid_disks-1 &&
287 !test_bit(Faulty, &conf->mirrors[mirror].rdev->flags)))
288 uptodate = 1;
289 spin_unlock_irqrestore(&conf->device_lock, flags);
290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
NeilBrowndd00a992007-05-10 03:15:50 -0700292 if (uptodate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 raid_end_bio_io(r1_bio);
NeilBrowndd00a992007-05-10 03:15:50 -0700294 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 /*
296 * oops, read error:
297 */
298 char b[BDEVNAME_SIZE];
299 if (printk_ratelimit())
NeilBrown9dd1e2f2010-05-03 14:30:35 +1000300 printk(KERN_ERR "md/raid1:%s: %s: rescheduling sector %llu\n",
301 mdname(conf->mddev),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 bdevname(conf->mirrors[mirror].rdev->bdev,b), (unsigned long long)r1_bio->sector);
303 reschedule_retry(r1_bio);
304 }
305
306 rdev_dec_pending(conf->mirrors[mirror].rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307}
308
NeilBrown6712ecf2007-09-27 12:47:43 +0200309static void raid1_end_write_request(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
311 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
H Hartley Sweeten7b928132010-03-08 16:02:40 +1100312 r1bio_t *r1_bio = bio->bi_private;
NeilBrowna9701a32005-11-08 21:39:34 -0800313 int mirror, behind = test_bit(R1BIO_BehindIO, &r1_bio->state);
NeilBrown070ec552009-06-16 16:54:21 +1000314 conf_t *conf = r1_bio->mddev->private;
NeilBrown04b857f2006-03-09 17:33:46 -0800315 struct bio *to_put = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 for (mirror = 0; mirror < conf->raid_disks; mirror++)
319 if (r1_bio->bios[mirror] == bio)
320 break;
321
Tejun Heoe9c74692010-09-03 11:56:18 +0200322 /*
323 * 'one mirror IO has finished' event handler:
324 */
325 r1_bio->bios[mirror] = NULL;
326 to_put = bio;
327 if (!uptodate) {
328 md_error(r1_bio->mddev, conf->mirrors[mirror].rdev);
329 /* an I/O failed, we can't clear the bitmap */
330 set_bit(R1BIO_Degraded, &r1_bio->state);
331 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 /*
Tejun Heoe9c74692010-09-03 11:56:18 +0200333 * Set R1BIO_Uptodate in our master bio, so that we
334 * will return a good error code for to the higher
335 * levels even if IO on some other mirrored buffer
336 * fails.
337 *
338 * The 'master' represents the composite IO operation
339 * to user-side. So if something waits for IO, then it
340 * will wait for the 'master' bio.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 */
Tejun Heoe9c74692010-09-03 11:56:18 +0200342 set_bit(R1BIO_Uptodate, &r1_bio->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Tejun Heoe9c74692010-09-03 11:56:18 +0200344 update_head_pos(mirror, r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Tejun Heoe9c74692010-09-03 11:56:18 +0200346 if (behind) {
347 if (test_bit(WriteMostly, &conf->mirrors[mirror].rdev->flags))
348 atomic_dec(&r1_bio->behind_remaining);
NeilBrown4b6d2872005-09-09 16:23:47 -0700349
Tejun Heoe9c74692010-09-03 11:56:18 +0200350 /*
351 * In behind mode, we ACK the master bio once the I/O
352 * has safely reached all non-writemostly
353 * disks. Setting the Returned bit ensures that this
354 * gets done only once -- we don't ever want to return
355 * -EIO here, instead we'll wait
356 */
357 if (atomic_read(&r1_bio->behind_remaining) >= (atomic_read(&r1_bio->remaining)-1) &&
358 test_bit(R1BIO_Uptodate, &r1_bio->state)) {
359 /* Maybe we can return now */
360 if (!test_and_set_bit(R1BIO_Returned, &r1_bio->state)) {
361 struct bio *mbio = r1_bio->master_bio;
362 PRINTK(KERN_DEBUG "raid1: behind end write sectors %llu-%llu\n",
363 (unsigned long long) mbio->bi_sector,
364 (unsigned long long) mbio->bi_sector +
365 (mbio->bi_size >> 9) - 1);
366 bio_endio(mbio, 0);
NeilBrown4b6d2872005-09-09 16:23:47 -0700367 }
368 }
369 }
Tejun Heoe9c74692010-09-03 11:56:18 +0200370 rdev_dec_pending(conf->mirrors[mirror].rdev, conf->mddev);
371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 * Let's see if all mirrored write operations have finished
374 * already.
375 */
376 if (atomic_dec_and_test(&r1_bio->remaining)) {
Tejun Heoe9c74692010-09-03 11:56:18 +0200377 if (test_bit(R1BIO_BehindIO, &r1_bio->state)) {
378 /* free extra copy of the data pages */
379 int i = bio->bi_vcnt;
380 while (i--)
381 safe_put_page(bio->bi_io_vec[i].bv_page);
NeilBrowna9701a32005-11-08 21:39:34 -0800382 }
Tejun Heoe9c74692010-09-03 11:56:18 +0200383 /* clear the bitmap if all writes complete successfully */
384 bitmap_endwrite(r1_bio->mddev->bitmap, r1_bio->sector,
385 r1_bio->sectors,
386 !test_bit(R1BIO_Degraded, &r1_bio->state),
387 behind);
388 md_write_end(r1_bio->mddev);
389 raid_end_bio_io(r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 }
NeilBrownc70810b2006-06-26 00:27:35 -0700391
NeilBrown04b857f2006-03-09 17:33:46 -0800392 if (to_put)
393 bio_put(to_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394}
395
396
397/*
398 * This routine returns the disk from which the requested read should
399 * be done. There is a per-array 'next expected sequential IO' sector
400 * number - if this matches on the next IO then we use the last disk.
401 * There is also a per-disk 'last know head position' sector that is
402 * maintained from IRQ contexts, both the normal and the resync IO
403 * completion handlers update this position correctly. If there is no
404 * perfect sequential match then we pick the disk whose head is closest.
405 *
406 * If there are 2 mirrors in the same 2 devices, performance degrades
407 * because position is mirror, not device based.
408 *
409 * The rdev for the device selected will have nr_pending incremented.
410 */
411static int read_balance(conf_t *conf, r1bio_t *r1_bio)
412{
NeilBrownaf3a2cd2010-05-08 08:20:17 +1000413 const sector_t this_sector = r1_bio->sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 int new_disk = conf->last_used, disk = new_disk;
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700415 int wonly_disk = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 const int sectors = r1_bio->sectors;
417 sector_t new_distance, current_distance;
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700418 mdk_rdev_t *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420 rcu_read_lock();
421 /*
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700422 * Check if we can balance. We can balance on the whole
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 * device if no resync is going on, or below the resync window.
424 * We take the first readable disk when above the resync window.
425 */
426 retry:
427 if (conf->mddev->recovery_cp < MaxSector &&
428 (this_sector + sectors >= conf->next_resync)) {
NeilBrownaf3a2cd2010-05-08 08:20:17 +1000429 /* Choose the first operational device, for consistancy */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 new_disk = 0;
431
Suzanne Woodd6065f72005-11-08 21:39:27 -0800432 for (rdev = rcu_dereference(conf->mirrors[new_disk].rdev);
NeilBrowncf30a472006-01-06 00:20:23 -0800433 r1_bio->bios[new_disk] == IO_BLOCKED ||
NeilBrownb2d444d2005-11-08 21:39:31 -0800434 !rdev || !test_bit(In_sync, &rdev->flags)
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700435 || test_bit(WriteMostly, &rdev->flags);
Suzanne Woodd6065f72005-11-08 21:39:27 -0800436 rdev = rcu_dereference(conf->mirrors[++new_disk].rdev)) {
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700437
NeilBrowncf30a472006-01-06 00:20:23 -0800438 if (rdev && test_bit(In_sync, &rdev->flags) &&
439 r1_bio->bios[new_disk] != IO_BLOCKED)
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700440 wonly_disk = new_disk;
441
442 if (new_disk == conf->raid_disks - 1) {
443 new_disk = wonly_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 break;
445 }
446 }
447 goto rb_out;
448 }
449
450
451 /* make sure the disk is operational */
Suzanne Woodd6065f72005-11-08 21:39:27 -0800452 for (rdev = rcu_dereference(conf->mirrors[new_disk].rdev);
NeilBrowncf30a472006-01-06 00:20:23 -0800453 r1_bio->bios[new_disk] == IO_BLOCKED ||
NeilBrownb2d444d2005-11-08 21:39:31 -0800454 !rdev || !test_bit(In_sync, &rdev->flags) ||
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700455 test_bit(WriteMostly, &rdev->flags);
Suzanne Woodd6065f72005-11-08 21:39:27 -0800456 rdev = rcu_dereference(conf->mirrors[new_disk].rdev)) {
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700457
NeilBrowncf30a472006-01-06 00:20:23 -0800458 if (rdev && test_bit(In_sync, &rdev->flags) &&
459 r1_bio->bios[new_disk] != IO_BLOCKED)
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700460 wonly_disk = new_disk;
461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 if (new_disk <= 0)
463 new_disk = conf->raid_disks;
464 new_disk--;
465 if (new_disk == disk) {
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700466 new_disk = wonly_disk;
467 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 }
469 }
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700470
471 if (new_disk < 0)
472 goto rb_out;
473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 disk = new_disk;
475 /* now disk == new_disk == starting point for search */
476
477 /*
478 * Don't change to another disk for sequential reads:
479 */
480 if (conf->next_seq_sect == this_sector)
481 goto rb_out;
482 if (this_sector == conf->mirrors[new_disk].head_position)
483 goto rb_out;
484
485 current_distance = abs(this_sector - conf->mirrors[disk].head_position);
486
487 /* Find the disk whose head is closest */
488
489 do {
490 if (disk <= 0)
491 disk = conf->raid_disks;
492 disk--;
493
Suzanne Woodd6065f72005-11-08 21:39:27 -0800494 rdev = rcu_dereference(conf->mirrors[disk].rdev);
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700495
NeilBrowncf30a472006-01-06 00:20:23 -0800496 if (!rdev || r1_bio->bios[disk] == IO_BLOCKED ||
NeilBrownb2d444d2005-11-08 21:39:31 -0800497 !test_bit(In_sync, &rdev->flags) ||
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700498 test_bit(WriteMostly, &rdev->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 continue;
500
501 if (!atomic_read(&rdev->nr_pending)) {
502 new_disk = disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 break;
504 }
505 new_distance = abs(this_sector - conf->mirrors[disk].head_position);
506 if (new_distance < current_distance) {
507 current_distance = new_distance;
508 new_disk = disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 }
510 } while (disk != conf->last_used);
511
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700512 rb_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514
515 if (new_disk >= 0) {
Suzanne Woodd6065f72005-11-08 21:39:27 -0800516 rdev = rcu_dereference(conf->mirrors[new_disk].rdev);
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700517 if (!rdev)
518 goto retry;
519 atomic_inc(&rdev->nr_pending);
NeilBrownb2d444d2005-11-08 21:39:31 -0800520 if (!test_bit(In_sync, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 /* cannot risk returning a device that failed
522 * before we inc'ed nr_pending
523 */
NeilBrown03c902e2006-01-06 00:20:46 -0800524 rdev_dec_pending(rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 goto retry;
526 }
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700527 conf->next_seq_sect = this_sector + sectors;
528 conf->last_used = new_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 }
530 rcu_read_unlock();
531
532 return new_disk;
533}
534
535static void unplug_slaves(mddev_t *mddev)
536{
NeilBrown070ec552009-06-16 16:54:21 +1000537 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 int i;
539
540 rcu_read_lock();
541 for (i=0; i<mddev->raid_disks; i++) {
Suzanne Woodd6065f72005-11-08 21:39:27 -0800542 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
NeilBrownb2d444d2005-11-08 21:39:31 -0800543 if (rdev && !test_bit(Faulty, &rdev->flags) && atomic_read(&rdev->nr_pending)) {
Jens Axboe165125e2007-07-24 09:28:11 +0200544 struct request_queue *r_queue = bdev_get_queue(rdev->bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546 atomic_inc(&rdev->nr_pending);
547 rcu_read_unlock();
548
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500549 blk_unplug(r_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551 rdev_dec_pending(rdev, mddev);
552 rcu_read_lock();
553 }
554 }
555 rcu_read_unlock();
556}
557
Jens Axboe165125e2007-07-24 09:28:11 +0200558static void raid1_unplug(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
NeilBrown191ea9b2005-06-21 17:17:23 -0700560 mddev_t *mddev = q->queuedata;
561
562 unplug_slaves(mddev);
563 md_wakeup_thread(mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564}
565
NeilBrown0d129222006-10-03 01:15:54 -0700566static int raid1_congested(void *data, int bits)
567{
568 mddev_t *mddev = data;
NeilBrown070ec552009-06-16 16:54:21 +1000569 conf_t *conf = mddev->private;
NeilBrown0d129222006-10-03 01:15:54 -0700570 int i, ret = 0;
571
NeilBrown3fa841d2009-09-23 18:10:29 +1000572 if (mddev_congested(mddev, bits))
573 return 1;
574
NeilBrown0d129222006-10-03 01:15:54 -0700575 rcu_read_lock();
576 for (i = 0; i < mddev->raid_disks; i++) {
577 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
578 if (rdev && !test_bit(Faulty, &rdev->flags)) {
Jens Axboe165125e2007-07-24 09:28:11 +0200579 struct request_queue *q = bdev_get_queue(rdev->bdev);
NeilBrown0d129222006-10-03 01:15:54 -0700580
581 /* Note the '|| 1' - when read_balance prefers
582 * non-congested targets, it can be removed
583 */
Alexander Beregalov91a9e992009-04-07 01:35:56 +0400584 if ((bits & (1<<BDI_async_congested)) || 1)
NeilBrown0d129222006-10-03 01:15:54 -0700585 ret |= bdi_congested(&q->backing_dev_info, bits);
586 else
587 ret &= bdi_congested(&q->backing_dev_info, bits);
588 }
589 }
590 rcu_read_unlock();
591 return ret;
592}
593
594
NeilBrowna35e63e2008-03-04 14:29:29 -0800595static int flush_pending_writes(conf_t *conf)
596{
597 /* Any writes that have been queued but are awaiting
598 * bitmap updates get flushed here.
599 * We return 1 if any requests were actually submitted.
600 */
601 int rv = 0;
602
603 spin_lock_irq(&conf->device_lock);
604
605 if (conf->pending_bio_list.head) {
606 struct bio *bio;
607 bio = bio_list_get(&conf->pending_bio_list);
608 blk_remove_plug(conf->mddev->queue);
609 spin_unlock_irq(&conf->device_lock);
610 /* flush any pending bitmap writes to
611 * disk before proceeding w/ I/O */
612 bitmap_unplug(conf->mddev->bitmap);
613
614 while (bio) { /* submit pending writes */
615 struct bio *next = bio->bi_next;
616 bio->bi_next = NULL;
617 generic_make_request(bio);
618 bio = next;
619 }
620 rv = 1;
621 } else
622 spin_unlock_irq(&conf->device_lock);
623 return rv;
624}
625
NeilBrown17999be2006-01-06 00:20:12 -0800626/* Barriers....
627 * Sometimes we need to suspend IO while we do something else,
628 * either some resync/recovery, or reconfigure the array.
629 * To do this we raise a 'barrier'.
630 * The 'barrier' is a counter that can be raised multiple times
631 * to count how many activities are happening which preclude
632 * normal IO.
633 * We can only raise the barrier if there is no pending IO.
634 * i.e. if nr_pending == 0.
635 * We choose only to raise the barrier if no-one is waiting for the
636 * barrier to go down. This means that as soon as an IO request
637 * is ready, no other operations which require a barrier will start
638 * until the IO request has had a chance.
639 *
640 * So: regular IO calls 'wait_barrier'. When that returns there
641 * is no backgroup IO happening, It must arrange to call
642 * allow_barrier when it has finished its IO.
643 * backgroup IO calls must call raise_barrier. Once that returns
644 * there is no normal IO happeing. It must arrange to call
645 * lower_barrier when the particular background IO completes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 */
647#define RESYNC_DEPTH 32
648
NeilBrown17999be2006-01-06 00:20:12 -0800649static void raise_barrier(conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650{
651 spin_lock_irq(&conf->resync_lock);
NeilBrown17999be2006-01-06 00:20:12 -0800652
653 /* Wait until no block IO is waiting */
654 wait_event_lock_irq(conf->wait_barrier, !conf->nr_waiting,
655 conf->resync_lock,
656 raid1_unplug(conf->mddev->queue));
657
658 /* block any new IO from starting */
659 conf->barrier++;
660
661 /* No wait for all pending IO to complete */
662 wait_event_lock_irq(conf->wait_barrier,
663 !conf->nr_pending && conf->barrier < RESYNC_DEPTH,
664 conf->resync_lock,
665 raid1_unplug(conf->mddev->queue));
666
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 spin_unlock_irq(&conf->resync_lock);
668}
669
NeilBrown17999be2006-01-06 00:20:12 -0800670static void lower_barrier(conf_t *conf)
671{
672 unsigned long flags;
NeilBrown709ae482009-12-14 12:49:51 +1100673 BUG_ON(conf->barrier <= 0);
NeilBrown17999be2006-01-06 00:20:12 -0800674 spin_lock_irqsave(&conf->resync_lock, flags);
675 conf->barrier--;
676 spin_unlock_irqrestore(&conf->resync_lock, flags);
677 wake_up(&conf->wait_barrier);
678}
679
680static void wait_barrier(conf_t *conf)
681{
682 spin_lock_irq(&conf->resync_lock);
683 if (conf->barrier) {
684 conf->nr_waiting++;
685 wait_event_lock_irq(conf->wait_barrier, !conf->barrier,
686 conf->resync_lock,
687 raid1_unplug(conf->mddev->queue));
688 conf->nr_waiting--;
689 }
690 conf->nr_pending++;
691 spin_unlock_irq(&conf->resync_lock);
692}
693
694static void allow_barrier(conf_t *conf)
695{
696 unsigned long flags;
697 spin_lock_irqsave(&conf->resync_lock, flags);
698 conf->nr_pending--;
699 spin_unlock_irqrestore(&conf->resync_lock, flags);
700 wake_up(&conf->wait_barrier);
701}
702
NeilBrownddaf22a2006-01-06 00:20:19 -0800703static void freeze_array(conf_t *conf)
704{
705 /* stop syncio and normal IO and wait for everything to
706 * go quite.
707 * We increment barrier and nr_waiting, and then
NeilBrown1c830532008-03-04 14:29:35 -0800708 * wait until nr_pending match nr_queued+1
709 * This is called in the context of one normal IO request
710 * that has failed. Thus any sync request that might be pending
711 * will be blocked by nr_pending, and we need to wait for
712 * pending IO requests to complete or be queued for re-try.
713 * Thus the number queued (nr_queued) plus this request (1)
714 * must match the number of pending IOs (nr_pending) before
715 * we continue.
NeilBrownddaf22a2006-01-06 00:20:19 -0800716 */
717 spin_lock_irq(&conf->resync_lock);
718 conf->barrier++;
719 conf->nr_waiting++;
720 wait_event_lock_irq(conf->wait_barrier,
NeilBrown1c830532008-03-04 14:29:35 -0800721 conf->nr_pending == conf->nr_queued+1,
NeilBrownddaf22a2006-01-06 00:20:19 -0800722 conf->resync_lock,
NeilBrowna35e63e2008-03-04 14:29:29 -0800723 ({ flush_pending_writes(conf);
724 raid1_unplug(conf->mddev->queue); }));
NeilBrownddaf22a2006-01-06 00:20:19 -0800725 spin_unlock_irq(&conf->resync_lock);
726}
727static void unfreeze_array(conf_t *conf)
728{
729 /* reverse the effect of the freeze */
730 spin_lock_irq(&conf->resync_lock);
731 conf->barrier--;
732 conf->nr_waiting--;
733 wake_up(&conf->wait_barrier);
734 spin_unlock_irq(&conf->resync_lock);
735}
736
NeilBrown17999be2006-01-06 00:20:12 -0800737
NeilBrown4b6d2872005-09-09 16:23:47 -0700738/* duplicate the data pages for behind I/O */
739static struct page **alloc_behind_pages(struct bio *bio)
740{
741 int i;
742 struct bio_vec *bvec;
NeilBrown9ffae0c2006-01-06 00:20:32 -0800743 struct page **pages = kzalloc(bio->bi_vcnt * sizeof(struct page *),
NeilBrown4b6d2872005-09-09 16:23:47 -0700744 GFP_NOIO);
745 if (unlikely(!pages))
746 goto do_sync_io;
747
NeilBrown4b6d2872005-09-09 16:23:47 -0700748 bio_for_each_segment(bvec, bio, i) {
749 pages[i] = alloc_page(GFP_NOIO);
750 if (unlikely(!pages[i]))
751 goto do_sync_io;
752 memcpy(kmap(pages[i]) + bvec->bv_offset,
753 kmap(bvec->bv_page) + bvec->bv_offset, bvec->bv_len);
754 kunmap(pages[i]);
755 kunmap(bvec->bv_page);
756 }
757
758 return pages;
759
760do_sync_io:
761 if (pages)
762 for (i = 0; i < bio->bi_vcnt && pages[i]; i++)
NeilBrown2d1f3b52006-01-06 00:20:31 -0800763 put_page(pages[i]);
NeilBrown4b6d2872005-09-09 16:23:47 -0700764 kfree(pages);
765 PRINTK("%dB behind alloc failed, doing sync I/O\n", bio->bi_size);
766 return NULL;
767}
768
NeilBrown21a52c62010-04-01 15:02:13 +1100769static int make_request(mddev_t *mddev, struct bio * bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770{
NeilBrown070ec552009-06-16 16:54:21 +1000771 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 mirror_info_t *mirror;
773 r1bio_t *r1_bio;
774 struct bio *read_bio;
NeilBrown191ea9b2005-06-21 17:17:23 -0700775 int i, targets = 0, disks;
NeilBrown84255d12008-05-23 13:04:32 -0700776 struct bitmap *bitmap;
NeilBrown191ea9b2005-06-21 17:17:23 -0700777 unsigned long flags;
778 struct bio_list bl;
NeilBrown4b6d2872005-09-09 16:23:47 -0700779 struct page **behind_pages = NULL;
Jens Axboea3623572005-11-01 09:26:16 +0100780 const int rw = bio_data_dir(bio);
NeilBrown2c7d46e2010-08-18 16:16:05 +1000781 const unsigned long do_sync = (bio->bi_rw & REQ_SYNC);
Tejun Heoe9c74692010-09-03 11:56:18 +0200782 const unsigned long do_flush_fua = (bio->bi_rw & (REQ_FLUSH | REQ_FUA));
Dan Williams6bfe0b42008-04-30 00:52:32 -0700783 mdk_rdev_t *blocked_rdev;
NeilBrown191ea9b2005-06-21 17:17:23 -0700784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 /*
786 * Register the new request and wait if the reconstruction
787 * thread has put up a bar for new requests.
788 * Continue immediately if no resync is active currently.
789 */
NeilBrown62de6082006-05-01 12:15:47 -0700790
NeilBrown3d310eb2005-06-21 17:17:26 -0700791 md_write_start(mddev, bio); /* wait on superblock update early */
792
NeilBrown6eef4b22009-12-14 12:49:51 +1100793 if (bio_data_dir(bio) == WRITE &&
794 bio->bi_sector + bio->bi_size/512 > mddev->suspend_lo &&
795 bio->bi_sector < mddev->suspend_hi) {
796 /* As the suspend_* range is controlled by
797 * userspace, we want an interruptible
798 * wait.
799 */
800 DEFINE_WAIT(w);
801 for (;;) {
802 flush_signals(current);
803 prepare_to_wait(&conf->wait_barrier,
804 &w, TASK_INTERRUPTIBLE);
805 if (bio->bi_sector + bio->bi_size/512 <= mddev->suspend_lo ||
806 bio->bi_sector >= mddev->suspend_hi)
807 break;
808 schedule();
809 }
810 finish_wait(&conf->wait_barrier, &w);
811 }
NeilBrown62de6082006-05-01 12:15:47 -0700812
NeilBrown17999be2006-01-06 00:20:12 -0800813 wait_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
NeilBrown84255d12008-05-23 13:04:32 -0700815 bitmap = mddev->bitmap;
816
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 /*
818 * make_request() can abort the operation when READA is being
819 * used and no empty request is available.
820 *
821 */
822 r1_bio = mempool_alloc(conf->r1bio_pool, GFP_NOIO);
823
824 r1_bio->master_bio = bio;
825 r1_bio->sectors = bio->bi_size >> 9;
NeilBrown191ea9b2005-06-21 17:17:23 -0700826 r1_bio->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 r1_bio->mddev = mddev;
828 r1_bio->sector = bio->bi_sector;
829
Jens Axboea3623572005-11-01 09:26:16 +0100830 if (rw == READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 /*
832 * read balancing logic:
833 */
834 int rdisk = read_balance(conf, r1_bio);
835
836 if (rdisk < 0) {
837 /* couldn't find anywhere to read from */
838 raid_end_bio_io(r1_bio);
839 return 0;
840 }
841 mirror = conf->mirrors + rdisk;
842
NeilBrowne5551902010-03-31 11:21:44 +1100843 if (test_bit(WriteMostly, &mirror->rdev->flags) &&
844 bitmap) {
845 /* Reading from a write-mostly device must
846 * take care not to over-take any writes
847 * that are 'behind'
848 */
849 wait_event(bitmap->behind_wait,
850 atomic_read(&bitmap->behind_writes) == 0);
851 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 r1_bio->read_disk = rdisk;
853
854 read_bio = bio_clone(bio, GFP_NOIO);
855
856 r1_bio->bios[rdisk] = read_bio;
857
858 read_bio->bi_sector = r1_bio->sector + mirror->rdev->data_offset;
859 read_bio->bi_bdev = mirror->rdev->bdev;
860 read_bio->bi_end_io = raid1_end_read_request;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +0200861 read_bio->bi_rw = READ | do_sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 read_bio->bi_private = r1_bio;
863
864 generic_make_request(read_bio);
865 return 0;
866 }
867
868 /*
869 * WRITE:
870 */
871 /* first select target devices under spinlock and
872 * inc refcount on their rdev. Record them by setting
873 * bios[x] to bio
874 */
875 disks = conf->raid_disks;
NeilBrown191ea9b2005-06-21 17:17:23 -0700876#if 0
877 { static int first=1;
878 if (first) printk("First Write sector %llu disks %d\n",
879 (unsigned long long)r1_bio->sector, disks);
880 first = 0;
881 }
882#endif
Dan Williams6bfe0b42008-04-30 00:52:32 -0700883 retry_write:
884 blocked_rdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 rcu_read_lock();
886 for (i = 0; i < disks; i++) {
Dan Williams6bfe0b42008-04-30 00:52:32 -0700887 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
888 if (rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
889 atomic_inc(&rdev->nr_pending);
890 blocked_rdev = rdev;
891 break;
892 }
893 if (rdev && !test_bit(Faulty, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 atomic_inc(&rdev->nr_pending);
NeilBrownb2d444d2005-11-08 21:39:31 -0800895 if (test_bit(Faulty, &rdev->flags)) {
NeilBrown03c902e2006-01-06 00:20:46 -0800896 rdev_dec_pending(rdev, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 r1_bio->bios[i] = NULL;
NeilBrown964147d2010-05-18 15:27:13 +1000898 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 r1_bio->bios[i] = bio;
NeilBrown964147d2010-05-18 15:27:13 +1000900 targets++;
901 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 } else
903 r1_bio->bios[i] = NULL;
904 }
905 rcu_read_unlock();
906
Dan Williams6bfe0b42008-04-30 00:52:32 -0700907 if (unlikely(blocked_rdev)) {
908 /* Wait for this device to become unblocked */
909 int j;
910
911 for (j = 0; j < i; j++)
912 if (r1_bio->bios[j])
913 rdev_dec_pending(conf->mirrors[j].rdev, mddev);
914
915 allow_barrier(conf);
916 md_wait_for_blocked_rdev(blocked_rdev, mddev);
917 wait_barrier(conf);
918 goto retry_write;
919 }
920
NeilBrown4b6d2872005-09-09 16:23:47 -0700921 BUG_ON(targets == 0); /* we never fail the last device */
922
NeilBrown191ea9b2005-06-21 17:17:23 -0700923 if (targets < conf->raid_disks) {
924 /* array is degraded, we will not clear the bitmap
925 * on I/O completion (see raid1_end_write_request) */
926 set_bit(R1BIO_Degraded, &r1_bio->state);
927 }
NeilBrown06d91a52005-06-21 17:17:12 -0700928
NeilBrowne5551902010-03-31 11:21:44 +1100929 /* do behind I/O ?
930 * Not if there are too many, or cannot allocate memory,
931 * or a reader on WriteMostly is waiting for behind writes
932 * to flush */
NeilBrown4b6d2872005-09-09 16:23:47 -0700933 if (bitmap &&
NeilBrown42a04b52009-12-14 12:49:53 +1100934 (atomic_read(&bitmap->behind_writes)
935 < mddev->bitmap_info.max_write_behind) &&
NeilBrowne5551902010-03-31 11:21:44 +1100936 !waitqueue_active(&bitmap->behind_wait) &&
NeilBrown4b6d2872005-09-09 16:23:47 -0700937 (behind_pages = alloc_behind_pages(bio)) != NULL)
938 set_bit(R1BIO_BehindIO, &r1_bio->state);
939
NeilBrown191ea9b2005-06-21 17:17:23 -0700940 atomic_set(&r1_bio->remaining, 0);
NeilBrown4b6d2872005-09-09 16:23:47 -0700941 atomic_set(&r1_bio->behind_remaining, 0);
NeilBrown191ea9b2005-06-21 17:17:23 -0700942
943 bio_list_init(&bl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 for (i = 0; i < disks; i++) {
945 struct bio *mbio;
946 if (!r1_bio->bios[i])
947 continue;
948
949 mbio = bio_clone(bio, GFP_NOIO);
950 r1_bio->bios[i] = mbio;
951
952 mbio->bi_sector = r1_bio->sector + conf->mirrors[i].rdev->data_offset;
953 mbio->bi_bdev = conf->mirrors[i].rdev->bdev;
954 mbio->bi_end_io = raid1_end_write_request;
Tejun Heoe9c74692010-09-03 11:56:18 +0200955 mbio->bi_rw = WRITE | do_flush_fua | do_sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 mbio->bi_private = r1_bio;
957
NeilBrown4b6d2872005-09-09 16:23:47 -0700958 if (behind_pages) {
959 struct bio_vec *bvec;
960 int j;
961
962 /* Yes, I really want the '__' version so that
963 * we clear any unused pointer in the io_vec, rather
964 * than leave them unchanged. This is important
965 * because when we come to free the pages, we won't
966 * know the originial bi_idx, so we just free
967 * them all
968 */
969 __bio_for_each_segment(bvec, mbio, j, 0)
970 bvec->bv_page = behind_pages[j];
971 if (test_bit(WriteMostly, &conf->mirrors[i].rdev->flags))
972 atomic_inc(&r1_bio->behind_remaining);
973 }
974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 atomic_inc(&r1_bio->remaining);
NeilBrown191ea9b2005-06-21 17:17:23 -0700976
977 bio_list_add(&bl, mbio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 }
NeilBrown4b6d2872005-09-09 16:23:47 -0700979 kfree(behind_pages); /* the behind pages are attached to the bios now */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
NeilBrown4b6d2872005-09-09 16:23:47 -0700981 bitmap_startwrite(bitmap, bio->bi_sector, r1_bio->sectors,
982 test_bit(R1BIO_BehindIO, &r1_bio->state));
NeilBrown191ea9b2005-06-21 17:17:23 -0700983 spin_lock_irqsave(&conf->device_lock, flags);
984 bio_list_merge(&conf->pending_bio_list, &bl);
985 bio_list_init(&bl);
986
987 blk_plug_device(mddev->queue);
988 spin_unlock_irqrestore(&conf->device_lock, flags);
989
NeilBrowna35e63e2008-03-04 14:29:29 -0800990 /* In case raid1d snuck into freeze_array */
991 wake_up(&conf->wait_barrier);
992
Lars Ellenberge3881a62007-01-10 23:15:37 -0800993 if (do_sync)
994 md_wakeup_thread(mddev->thread);
NeilBrown191ea9b2005-06-21 17:17:23 -0700995#if 0
996 while ((bio = bio_list_pop(&bl)) != NULL)
997 generic_make_request(bio);
998#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
1000 return 0;
1001}
1002
1003static void status(struct seq_file *seq, mddev_t *mddev)
1004{
NeilBrown070ec552009-06-16 16:54:21 +10001005 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 int i;
1007
1008 seq_printf(seq, " [%d/%d] [", conf->raid_disks,
NeilBrown11ce99e2006-10-03 01:15:52 -07001009 conf->raid_disks - mddev->degraded);
NeilBrownddac7c72006-08-31 21:27:36 -07001010 rcu_read_lock();
1011 for (i = 0; i < conf->raid_disks; i++) {
1012 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 seq_printf(seq, "%s",
NeilBrownddac7c72006-08-31 21:27:36 -07001014 rdev && test_bit(In_sync, &rdev->flags) ? "U" : "_");
1015 }
1016 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 seq_printf(seq, "]");
1018}
1019
1020
1021static void error(mddev_t *mddev, mdk_rdev_t *rdev)
1022{
1023 char b[BDEVNAME_SIZE];
NeilBrown070ec552009-06-16 16:54:21 +10001024 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
1026 /*
1027 * If it is not operational, then we have already marked it as dead
1028 * else if it is the last working disks, ignore the error, let the
1029 * next level up know.
1030 * else mark the drive as failed
1031 */
NeilBrownb2d444d2005-11-08 21:39:31 -08001032 if (test_bit(In_sync, &rdev->flags)
NeilBrown4044ba52009-01-09 08:31:11 +11001033 && (conf->raid_disks - mddev->degraded) == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 /*
1035 * Don't fail the drive, act as though we were just a
NeilBrown4044ba52009-01-09 08:31:11 +11001036 * normal single drive.
1037 * However don't try a recovery from this drive as
1038 * it is very likely to fail.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 */
NeilBrown4044ba52009-01-09 08:31:11 +11001040 mddev->recovery_disabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 return;
NeilBrown4044ba52009-01-09 08:31:11 +11001042 }
NeilBrownc04be0a2006-10-03 01:15:53 -07001043 if (test_and_clear_bit(In_sync, &rdev->flags)) {
1044 unsigned long flags;
1045 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 mddev->degraded++;
NeilBrowndd00a992007-05-10 03:15:50 -07001047 set_bit(Faulty, &rdev->flags);
NeilBrownc04be0a2006-10-03 01:15:53 -07001048 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 /*
1050 * if recovery is running, make sure it aborts.
1051 */
NeilBrowndfc70642008-05-23 13:04:39 -07001052 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
NeilBrowndd00a992007-05-10 03:15:50 -07001053 } else
1054 set_bit(Faulty, &rdev->flags);
NeilBrown850b2b42006-10-03 01:15:46 -07001055 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001056 printk(KERN_ALERT "md/raid1:%s: Disk failure on %s, disabling device.\n"
1057 KERN_ALERT "md/raid1:%s: Operation continuing on %d devices.\n",
1058 mdname(mddev), bdevname(rdev->bdev, b),
1059 mdname(mddev), conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060}
1061
1062static void print_conf(conf_t *conf)
1063{
1064 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001066 printk(KERN_DEBUG "RAID1 conf printout:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 if (!conf) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001068 printk(KERN_DEBUG "(!conf)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 return;
1070 }
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001071 printk(KERN_DEBUG " --- wd:%d rd:%d\n", conf->raid_disks - conf->mddev->degraded,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 conf->raid_disks);
1073
NeilBrownddac7c72006-08-31 21:27:36 -07001074 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 for (i = 0; i < conf->raid_disks; i++) {
1076 char b[BDEVNAME_SIZE];
NeilBrownddac7c72006-08-31 21:27:36 -07001077 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
1078 if (rdev)
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001079 printk(KERN_DEBUG " disk %d, wo:%d, o:%d, dev:%s\n",
NeilBrownddac7c72006-08-31 21:27:36 -07001080 i, !test_bit(In_sync, &rdev->flags),
1081 !test_bit(Faulty, &rdev->flags),
1082 bdevname(rdev->bdev,b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 }
NeilBrownddac7c72006-08-31 21:27:36 -07001084 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085}
1086
1087static void close_sync(conf_t *conf)
1088{
NeilBrown17999be2006-01-06 00:20:12 -08001089 wait_barrier(conf);
1090 allow_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
1092 mempool_destroy(conf->r1buf_pool);
1093 conf->r1buf_pool = NULL;
1094}
1095
1096static int raid1_spare_active(mddev_t *mddev)
1097{
1098 int i;
1099 conf_t *conf = mddev->private;
NeilBrown6b965622010-08-18 11:56:59 +10001100 int count = 0;
1101 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
1103 /*
1104 * Find all failed disks within the RAID1 configuration
NeilBrownddac7c72006-08-31 21:27:36 -07001105 * and mark them readable.
1106 * Called under mddev lock, so rcu protection not needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 */
1108 for (i = 0; i < conf->raid_disks; i++) {
NeilBrownddac7c72006-08-31 21:27:36 -07001109 mdk_rdev_t *rdev = conf->mirrors[i].rdev;
1110 if (rdev
1111 && !test_bit(Faulty, &rdev->flags)
NeilBrownc04be0a2006-10-03 01:15:53 -07001112 && !test_and_set_bit(In_sync, &rdev->flags)) {
NeilBrown6b965622010-08-18 11:56:59 +10001113 count++;
Adrian Drzewieckie6ffbcb2010-08-18 11:49:02 +10001114 sysfs_notify_dirent(rdev->sysfs_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 }
1116 }
NeilBrown6b965622010-08-18 11:56:59 +10001117 spin_lock_irqsave(&conf->device_lock, flags);
1118 mddev->degraded -= count;
1119 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
1121 print_conf(conf);
NeilBrown6b965622010-08-18 11:56:59 +10001122 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123}
1124
1125
1126static int raid1_add_disk(mddev_t *mddev, mdk_rdev_t *rdev)
1127{
1128 conf_t *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10001129 int err = -EEXIST;
NeilBrown41158c72005-06-21 17:17:25 -07001130 int mirror = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 mirror_info_t *p;
Neil Brown6c2fce22008-06-28 08:31:31 +10001132 int first = 0;
1133 int last = mddev->raid_disks - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Neil Brown6c2fce22008-06-28 08:31:31 +10001135 if (rdev->raid_disk >= 0)
1136 first = last = rdev->raid_disk;
1137
1138 for (mirror = first; mirror <= last; mirror++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 if ( !(p=conf->mirrors+mirror)->rdev) {
1140
Martin K. Petersen8f6c2e42009-07-01 11:13:45 +10001141 disk_stack_limits(mddev->gendisk, rdev->bdev,
1142 rdev->data_offset << 9);
NeilBrown627a2d32010-03-08 16:44:38 +11001143 /* as we don't honour merge_bvec_fn, we must
1144 * never risk violating it, so limit
1145 * ->max_segments to one lying with a single
1146 * page, as a one page request is never in
1147 * violation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 */
NeilBrown627a2d32010-03-08 16:44:38 +11001149 if (rdev->bdev->bd_disk->queue->merge_bvec_fn) {
1150 blk_queue_max_segments(mddev->queue, 1);
1151 blk_queue_segment_boundary(mddev->queue,
1152 PAGE_CACHE_SIZE - 1);
1153 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
1155 p->head_position = 0;
1156 rdev->raid_disk = mirror;
Neil Brown199050e2008-06-28 08:31:33 +10001157 err = 0;
NeilBrown6aea114a2005-11-28 13:44:13 -08001158 /* As all devices are equivalent, we don't need a full recovery
1159 * if this was recently any drive of the array
1160 */
1161 if (rdev->saved_raid_disk < 0)
NeilBrown41158c72005-06-21 17:17:25 -07001162 conf->fullsync = 1;
Suzanne Woodd6065f72005-11-08 21:39:27 -08001163 rcu_assign_pointer(p->rdev, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 break;
1165 }
Andre Nollac5e7112009-08-03 10:59:47 +10001166 md_integrity_add_rdev(rdev, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 print_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10001168 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169}
1170
1171static int raid1_remove_disk(mddev_t *mddev, int number)
1172{
1173 conf_t *conf = mddev->private;
1174 int err = 0;
1175 mdk_rdev_t *rdev;
1176 mirror_info_t *p = conf->mirrors+ number;
1177
1178 print_conf(conf);
1179 rdev = p->rdev;
1180 if (rdev) {
NeilBrownb2d444d2005-11-08 21:39:31 -08001181 if (test_bit(In_sync, &rdev->flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 atomic_read(&rdev->nr_pending)) {
1183 err = -EBUSY;
1184 goto abort;
1185 }
NeilBrowndfc70642008-05-23 13:04:39 -07001186 /* Only remove non-faulty devices is recovery
1187 * is not possible.
1188 */
1189 if (!test_bit(Faulty, &rdev->flags) &&
1190 mddev->degraded < conf->raid_disks) {
1191 err = -EBUSY;
1192 goto abort;
1193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 p->rdev = NULL;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07001195 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 if (atomic_read(&rdev->nr_pending)) {
1197 /* lost the race, try later */
1198 err = -EBUSY;
1199 p->rdev = rdev;
Andre Nollac5e7112009-08-03 10:59:47 +10001200 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 }
Andre Nollac5e7112009-08-03 10:59:47 +10001202 md_integrity_register(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 }
1204abort:
1205
1206 print_conf(conf);
1207 return err;
1208}
1209
1210
NeilBrown6712ecf2007-09-27 12:47:43 +02001211static void end_sync_read(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212{
H Hartley Sweeten7b928132010-03-08 16:02:40 +11001213 r1bio_t *r1_bio = bio->bi_private;
NeilBrownd11c1712006-01-06 00:20:26 -08001214 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
NeilBrownd11c1712006-01-06 00:20:26 -08001216 for (i=r1_bio->mddev->raid_disks; i--; )
1217 if (r1_bio->bios[i] == bio)
1218 break;
1219 BUG_ON(i < 0);
1220 update_head_pos(i, r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 /*
1222 * we have read a block, now it needs to be re-written,
1223 * or re-read if the read failed.
1224 * We don't do much here, just schedule handling by raid1d
1225 */
NeilBrown69382e82006-01-06 00:20:22 -08001226 if (test_bit(BIO_UPTODATE, &bio->bi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 set_bit(R1BIO_Uptodate, &r1_bio->state);
NeilBrownd11c1712006-01-06 00:20:26 -08001228
1229 if (atomic_dec_and_test(&r1_bio->remaining))
1230 reschedule_retry(r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231}
1232
NeilBrown6712ecf2007-09-27 12:47:43 +02001233static void end_sync_write(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234{
1235 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
H Hartley Sweeten7b928132010-03-08 16:02:40 +11001236 r1bio_t *r1_bio = bio->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 mddev_t *mddev = r1_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +10001238 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 int i;
1240 int mirror=0;
1241
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 for (i = 0; i < conf->raid_disks; i++)
1243 if (r1_bio->bios[i] == bio) {
1244 mirror = i;
1245 break;
1246 }
NeilBrown6b1117d2006-03-31 02:31:57 -08001247 if (!uptodate) {
1248 int sync_blocks = 0;
1249 sector_t s = r1_bio->sector;
1250 long sectors_to_go = r1_bio->sectors;
1251 /* make sure these bits doesn't get cleared. */
1252 do {
NeilBrown5e3db642006-07-10 04:44:18 -07001253 bitmap_end_sync(mddev->bitmap, s,
NeilBrown6b1117d2006-03-31 02:31:57 -08001254 &sync_blocks, 1);
1255 s += sync_blocks;
1256 sectors_to_go -= sync_blocks;
1257 } while (sectors_to_go > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 md_error(mddev, conf->mirrors[mirror].rdev);
NeilBrown6b1117d2006-03-31 02:31:57 -08001259 }
NeilBrowne3b97032005-08-04 12:53:34 -07001260
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 update_head_pos(mirror, r1_bio);
1262
1263 if (atomic_dec_and_test(&r1_bio->remaining)) {
NeilBrown73d5c382009-02-25 13:18:47 +11001264 sector_t s = r1_bio->sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 put_buf(r1_bio);
NeilBrown73d5c382009-02-25 13:18:47 +11001266 md_done_sync(mddev, s, uptodate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268}
1269
1270static void sync_request_write(mddev_t *mddev, r1bio_t *r1_bio)
1271{
NeilBrown070ec552009-06-16 16:54:21 +10001272 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 int i;
1274 int disks = conf->raid_disks;
1275 struct bio *bio, *wbio;
1276
1277 bio = r1_bio->bios[r1_bio->read_disk];
1278
NeilBrown69382e82006-01-06 00:20:22 -08001279
NeilBrownd11c1712006-01-06 00:20:26 -08001280 if (test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) {
1281 /* We have read all readable devices. If we haven't
1282 * got the block, then there is no hope left.
1283 * If we have, then we want to do a comparison
1284 * and skip the write if everything is the same.
1285 * If any blocks failed to read, then we need to
1286 * attempt an over-write
1287 */
1288 int primary;
1289 if (!test_bit(R1BIO_Uptodate, &r1_bio->state)) {
1290 for (i=0; i<mddev->raid_disks; i++)
1291 if (r1_bio->bios[i]->bi_end_io == end_sync_read)
1292 md_error(mddev, conf->mirrors[i].rdev);
1293
1294 md_done_sync(mddev, r1_bio->sectors, 1);
1295 put_buf(r1_bio);
1296 return;
1297 }
1298 for (primary=0; primary<mddev->raid_disks; primary++)
1299 if (r1_bio->bios[primary]->bi_end_io == end_sync_read &&
1300 test_bit(BIO_UPTODATE, &r1_bio->bios[primary]->bi_flags)) {
1301 r1_bio->bios[primary]->bi_end_io = NULL;
NeilBrown03c902e2006-01-06 00:20:46 -08001302 rdev_dec_pending(conf->mirrors[primary].rdev, mddev);
NeilBrownd11c1712006-01-06 00:20:26 -08001303 break;
1304 }
1305 r1_bio->read_disk = primary;
1306 for (i=0; i<mddev->raid_disks; i++)
Mike Accettaed456662007-06-16 10:16:07 -07001307 if (r1_bio->bios[i]->bi_end_io == end_sync_read) {
NeilBrownd11c1712006-01-06 00:20:26 -08001308 int j;
1309 int vcnt = r1_bio->sectors >> (PAGE_SHIFT- 9);
1310 struct bio *pbio = r1_bio->bios[primary];
1311 struct bio *sbio = r1_bio->bios[i];
Mike Accettaed456662007-06-16 10:16:07 -07001312
1313 if (test_bit(BIO_UPTODATE, &sbio->bi_flags)) {
1314 for (j = vcnt; j-- ; ) {
1315 struct page *p, *s;
1316 p = pbio->bi_io_vec[j].bv_page;
1317 s = sbio->bi_io_vec[j].bv_page;
1318 if (memcmp(page_address(p),
1319 page_address(s),
1320 PAGE_SIZE))
1321 break;
1322 }
1323 } else
1324 j = 0;
NeilBrownd11c1712006-01-06 00:20:26 -08001325 if (j >= 0)
1326 mddev->resync_mismatches += r1_bio->sectors;
NeilBrowncf7a4412007-10-16 23:30:55 -07001327 if (j < 0 || (test_bit(MD_RECOVERY_CHECK, &mddev->recovery)
1328 && test_bit(BIO_UPTODATE, &sbio->bi_flags))) {
NeilBrownd11c1712006-01-06 00:20:26 -08001329 sbio->bi_end_io = NULL;
NeilBrown03c902e2006-01-06 00:20:46 -08001330 rdev_dec_pending(conf->mirrors[i].rdev, mddev);
1331 } else {
NeilBrownd11c1712006-01-06 00:20:26 -08001332 /* fixup the bio for reuse */
NeilBrown698b18c2008-05-23 13:04:35 -07001333 int size;
NeilBrownd11c1712006-01-06 00:20:26 -08001334 sbio->bi_vcnt = vcnt;
1335 sbio->bi_size = r1_bio->sectors << 9;
1336 sbio->bi_idx = 0;
1337 sbio->bi_phys_segments = 0;
NeilBrownd11c1712006-01-06 00:20:26 -08001338 sbio->bi_flags &= ~(BIO_POOL_MASK - 1);
1339 sbio->bi_flags |= 1 << BIO_UPTODATE;
1340 sbio->bi_next = NULL;
1341 sbio->bi_sector = r1_bio->sector +
1342 conf->mirrors[i].rdev->data_offset;
1343 sbio->bi_bdev = conf->mirrors[i].rdev->bdev;
NeilBrown698b18c2008-05-23 13:04:35 -07001344 size = sbio->bi_size;
1345 for (j = 0; j < vcnt ; j++) {
1346 struct bio_vec *bi;
1347 bi = &sbio->bi_io_vec[j];
1348 bi->bv_offset = 0;
1349 if (size > PAGE_SIZE)
1350 bi->bv_len = PAGE_SIZE;
1351 else
1352 bi->bv_len = size;
1353 size -= PAGE_SIZE;
1354 memcpy(page_address(bi->bv_page),
NeilBrown3eda22d2007-01-26 00:57:01 -08001355 page_address(pbio->bi_io_vec[j].bv_page),
1356 PAGE_SIZE);
NeilBrown698b18c2008-05-23 13:04:35 -07001357 }
NeilBrown3eda22d2007-01-26 00:57:01 -08001358
NeilBrownd11c1712006-01-06 00:20:26 -08001359 }
1360 }
1361 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 if (!test_bit(R1BIO_Uptodate, &r1_bio->state)) {
NeilBrown69382e82006-01-06 00:20:22 -08001363 /* ouch - failed to read all of that.
1364 * Try some synchronous reads of other devices to get
1365 * good data, much like with normal read errors. Only
NeilBrownddac7c72006-08-31 21:27:36 -07001366 * read into the pages we already have so we don't
NeilBrown69382e82006-01-06 00:20:22 -08001367 * need to re-issue the read request.
1368 * We don't need to freeze the array, because being in an
1369 * active sync request, there is no normal IO, and
1370 * no overlapping syncs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 */
NeilBrown69382e82006-01-06 00:20:22 -08001372 sector_t sect = r1_bio->sector;
1373 int sectors = r1_bio->sectors;
1374 int idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
NeilBrown69382e82006-01-06 00:20:22 -08001376 while(sectors) {
1377 int s = sectors;
1378 int d = r1_bio->read_disk;
1379 int success = 0;
1380 mdk_rdev_t *rdev;
1381
1382 if (s > (PAGE_SIZE>>9))
1383 s = PAGE_SIZE >> 9;
1384 do {
1385 if (r1_bio->bios[d]->bi_end_io == end_sync_read) {
NeilBrownddac7c72006-08-31 21:27:36 -07001386 /* No rcu protection needed here devices
1387 * can only be removed when no resync is
1388 * active, and resync is currently active
1389 */
NeilBrown69382e82006-01-06 00:20:22 -08001390 rdev = conf->mirrors[d].rdev;
1391 if (sync_page_io(rdev->bdev,
1392 sect + rdev->data_offset,
1393 s<<9,
1394 bio->bi_io_vec[idx].bv_page,
1395 READ)) {
1396 success = 1;
1397 break;
1398 }
1399 }
1400 d++;
1401 if (d == conf->raid_disks)
1402 d = 0;
1403 } while (!success && d != r1_bio->read_disk);
1404
1405 if (success) {
NeilBrown097426f2006-01-06 00:20:37 -08001406 int start = d;
NeilBrown69382e82006-01-06 00:20:22 -08001407 /* write it back and re-read */
1408 set_bit(R1BIO_Uptodate, &r1_bio->state);
1409 while (d != r1_bio->read_disk) {
1410 if (d == 0)
1411 d = conf->raid_disks;
1412 d--;
1413 if (r1_bio->bios[d]->bi_end_io != end_sync_read)
1414 continue;
1415 rdev = conf->mirrors[d].rdev;
NeilBrown4dbcdc72006-01-06 00:20:52 -08001416 atomic_add(s, &rdev->corrected_errors);
NeilBrown69382e82006-01-06 00:20:22 -08001417 if (sync_page_io(rdev->bdev,
1418 sect + rdev->data_offset,
1419 s<<9,
1420 bio->bi_io_vec[idx].bv_page,
NeilBrown097426f2006-01-06 00:20:37 -08001421 WRITE) == 0)
1422 md_error(mddev, rdev);
1423 }
1424 d = start;
1425 while (d != r1_bio->read_disk) {
1426 if (d == 0)
1427 d = conf->raid_disks;
1428 d--;
1429 if (r1_bio->bios[d]->bi_end_io != end_sync_read)
1430 continue;
1431 rdev = conf->mirrors[d].rdev;
1432 if (sync_page_io(rdev->bdev,
NeilBrown69382e82006-01-06 00:20:22 -08001433 sect + rdev->data_offset,
1434 s<<9,
1435 bio->bi_io_vec[idx].bv_page,
NeilBrown097426f2006-01-06 00:20:37 -08001436 READ) == 0)
NeilBrown69382e82006-01-06 00:20:22 -08001437 md_error(mddev, rdev);
NeilBrown69382e82006-01-06 00:20:22 -08001438 }
1439 } else {
1440 char b[BDEVNAME_SIZE];
1441 /* Cannot read from anywhere, array is toast */
1442 md_error(mddev, conf->mirrors[r1_bio->read_disk].rdev);
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001443 printk(KERN_ALERT "md/raid1:%s: %s: unrecoverable I/O read error"
NeilBrown69382e82006-01-06 00:20:22 -08001444 " for block %llu\n",
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001445 mdname(mddev),
1446 bdevname(bio->bi_bdev, b),
NeilBrown69382e82006-01-06 00:20:22 -08001447 (unsigned long long)r1_bio->sector);
1448 md_done_sync(mddev, r1_bio->sectors, 0);
1449 put_buf(r1_bio);
1450 return;
1451 }
1452 sectors -= s;
1453 sect += s;
1454 idx ++;
1455 }
1456 }
NeilBrownd11c1712006-01-06 00:20:26 -08001457
1458 /*
1459 * schedule writes
1460 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 atomic_set(&r1_bio->remaining, 1);
1462 for (i = 0; i < disks ; i++) {
1463 wbio = r1_bio->bios[i];
NeilBrown3e198f72006-01-06 00:20:21 -08001464 if (wbio->bi_end_io == NULL ||
1465 (wbio->bi_end_io == end_sync_read &&
1466 (i == r1_bio->read_disk ||
1467 !test_bit(MD_RECOVERY_SYNC, &mddev->recovery))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 continue;
1469
NeilBrown3e198f72006-01-06 00:20:21 -08001470 wbio->bi_rw = WRITE;
1471 wbio->bi_end_io = end_sync_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 atomic_inc(&r1_bio->remaining);
1473 md_sync_acct(conf->mirrors[i].rdev->bdev, wbio->bi_size >> 9);
NeilBrown191ea9b2005-06-21 17:17:23 -07001474
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 generic_make_request(wbio);
1476 }
1477
1478 if (atomic_dec_and_test(&r1_bio->remaining)) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001479 /* if we're here, all write(s) have completed, so clean up */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 md_done_sync(mddev, r1_bio->sectors, 1);
1481 put_buf(r1_bio);
1482 }
1483}
1484
1485/*
1486 * This is a kernel thread which:
1487 *
1488 * 1. Retries failed read operations on working mirrors.
1489 * 2. Updates the raid superblock when problems encounter.
1490 * 3. Performs writes following reads for array syncronising.
1491 */
1492
NeilBrown867868f2006-10-03 01:15:51 -07001493static void fix_read_error(conf_t *conf, int read_disk,
1494 sector_t sect, int sectors)
1495{
1496 mddev_t *mddev = conf->mddev;
1497 while(sectors) {
1498 int s = sectors;
1499 int d = read_disk;
1500 int success = 0;
1501 int start;
1502 mdk_rdev_t *rdev;
1503
1504 if (s > (PAGE_SIZE>>9))
1505 s = PAGE_SIZE >> 9;
1506
1507 do {
1508 /* Note: no rcu protection needed here
1509 * as this is synchronous in the raid1d thread
1510 * which is the thread that might remove
1511 * a device. If raid1d ever becomes multi-threaded....
1512 */
1513 rdev = conf->mirrors[d].rdev;
1514 if (rdev &&
1515 test_bit(In_sync, &rdev->flags) &&
1516 sync_page_io(rdev->bdev,
1517 sect + rdev->data_offset,
1518 s<<9,
1519 conf->tmppage, READ))
1520 success = 1;
1521 else {
1522 d++;
1523 if (d == conf->raid_disks)
1524 d = 0;
1525 }
1526 } while (!success && d != read_disk);
1527
1528 if (!success) {
1529 /* Cannot read from anywhere -- bye bye array */
1530 md_error(mddev, conf->mirrors[read_disk].rdev);
1531 break;
1532 }
1533 /* write it back and re-read */
1534 start = d;
1535 while (d != read_disk) {
1536 if (d==0)
1537 d = conf->raid_disks;
1538 d--;
1539 rdev = conf->mirrors[d].rdev;
1540 if (rdev &&
1541 test_bit(In_sync, &rdev->flags)) {
1542 if (sync_page_io(rdev->bdev,
1543 sect + rdev->data_offset,
1544 s<<9, conf->tmppage, WRITE)
1545 == 0)
1546 /* Well, this device is dead */
1547 md_error(mddev, rdev);
1548 }
1549 }
1550 d = start;
1551 while (d != read_disk) {
1552 char b[BDEVNAME_SIZE];
1553 if (d==0)
1554 d = conf->raid_disks;
1555 d--;
1556 rdev = conf->mirrors[d].rdev;
1557 if (rdev &&
1558 test_bit(In_sync, &rdev->flags)) {
1559 if (sync_page_io(rdev->bdev,
1560 sect + rdev->data_offset,
1561 s<<9, conf->tmppage, READ)
1562 == 0)
1563 /* Well, this device is dead */
1564 md_error(mddev, rdev);
1565 else {
1566 atomic_add(s, &rdev->corrected_errors);
1567 printk(KERN_INFO
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001568 "md/raid1:%s: read error corrected "
NeilBrown867868f2006-10-03 01:15:51 -07001569 "(%d sectors at %llu on %s)\n",
1570 mdname(mddev), s,
Randy Dunlap969b7552006-10-28 10:38:32 -07001571 (unsigned long long)(sect +
1572 rdev->data_offset),
NeilBrown867868f2006-10-03 01:15:51 -07001573 bdevname(rdev->bdev, b));
1574 }
1575 }
1576 }
1577 sectors -= s;
1578 sect += s;
1579 }
1580}
1581
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582static void raid1d(mddev_t *mddev)
1583{
1584 r1bio_t *r1_bio;
1585 struct bio *bio;
1586 unsigned long flags;
NeilBrown070ec552009-06-16 16:54:21 +10001587 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 struct list_head *head = &conf->retry_list;
1589 int unplug=0;
1590 mdk_rdev_t *rdev;
1591
1592 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
1594 for (;;) {
1595 char b[BDEVNAME_SIZE];
NeilBrowna35e63e2008-03-04 14:29:29 -08001596
1597 unplug += flush_pending_writes(conf);
1598
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrowna35e63e2008-03-04 14:29:29 -08001600 if (list_empty(head)) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001601 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 break;
NeilBrowna35e63e2008-03-04 14:29:29 -08001603 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 r1_bio = list_entry(head->prev, r1bio_t, retry_list);
1605 list_del(head->prev);
NeilBrownddaf22a2006-01-06 00:20:19 -08001606 conf->nr_queued--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 spin_unlock_irqrestore(&conf->device_lock, flags);
1608
1609 mddev = r1_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +10001610 conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 if (test_bit(R1BIO_IsSync, &r1_bio->state)) {
1612 sync_request_write(mddev, r1_bio);
1613 unplug = 1;
1614 } else {
1615 int disk;
NeilBrownddaf22a2006-01-06 00:20:19 -08001616
1617 /* we got a read error. Maybe the drive is bad. Maybe just
1618 * the block and we can fix it.
1619 * We freeze all other IO, and try reading the block from
1620 * other devices. When we find one, we re-write
1621 * and check it that fixes the read error.
1622 * This is all done synchronously while the array is
1623 * frozen
1624 */
NeilBrown867868f2006-10-03 01:15:51 -07001625 if (mddev->ro == 0) {
1626 freeze_array(conf);
1627 fix_read_error(conf, r1_bio->read_disk,
1628 r1_bio->sector,
1629 r1_bio->sectors);
1630 unfreeze_array(conf);
NeilBrownd0e26072009-12-01 17:30:59 +11001631 } else
1632 md_error(mddev,
1633 conf->mirrors[r1_bio->read_disk].rdev);
NeilBrownddaf22a2006-01-06 00:20:19 -08001634
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 bio = r1_bio->bios[r1_bio->read_disk];
NeilBrownd0e26072009-12-01 17:30:59 +11001636 if ((disk=read_balance(conf, r1_bio)) == -1) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001637 printk(KERN_ALERT "md/raid1:%s: %s: unrecoverable I/O"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 " read error for block %llu\n",
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001639 mdname(mddev),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 bdevname(bio->bi_bdev,b),
1641 (unsigned long long)r1_bio->sector);
1642 raid_end_bio_io(r1_bio);
1643 } else {
NeilBrown2c7d46e2010-08-18 16:16:05 +10001644 const unsigned long do_sync = r1_bio->master_bio->bi_rw & REQ_SYNC;
NeilBrowncf30a472006-01-06 00:20:23 -08001645 r1_bio->bios[r1_bio->read_disk] =
1646 mddev->ro ? IO_BLOCKED : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 r1_bio->read_disk = disk;
1648 bio_put(bio);
1649 bio = bio_clone(r1_bio->master_bio, GFP_NOIO);
1650 r1_bio->bios[r1_bio->read_disk] = bio;
1651 rdev = conf->mirrors[disk].rdev;
1652 if (printk_ratelimit())
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001653 printk(KERN_ERR "md/raid1:%s: redirecting sector %llu to"
NeilBrownd754c5a2010-04-07 12:14:43 +10001654 " other mirror: %s\n",
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001655 mdname(mddev),
NeilBrownd754c5a2010-04-07 12:14:43 +10001656 (unsigned long long)r1_bio->sector,
1657 bdevname(rdev->bdev,b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 bio->bi_sector = r1_bio->sector + rdev->data_offset;
1659 bio->bi_bdev = rdev->bdev;
1660 bio->bi_end_io = raid1_end_read_request;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001661 bio->bi_rw = READ | do_sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 bio->bi_private = r1_bio;
1663 unplug = 1;
1664 generic_make_request(bio);
1665 }
1666 }
NeilBrown1d9d5242009-10-16 15:55:32 +11001667 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 if (unplug)
1670 unplug_slaves(mddev);
1671}
1672
1673
1674static int init_resync(conf_t *conf)
1675{
1676 int buffs;
1677
1678 buffs = RESYNC_WINDOW / RESYNC_BLOCK_SIZE;
Eric Sesterhenn9e77c482006-04-01 01:08:49 +02001679 BUG_ON(conf->r1buf_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 conf->r1buf_pool = mempool_create(buffs, r1buf_pool_alloc, r1buf_pool_free,
1681 conf->poolinfo);
1682 if (!conf->r1buf_pool)
1683 return -ENOMEM;
1684 conf->next_resync = 0;
1685 return 0;
1686}
1687
1688/*
1689 * perform a "sync" on one "block"
1690 *
1691 * We need to make sure that no normal I/O request - particularly write
1692 * requests - conflict with active sync requests.
1693 *
1694 * This is achieved by tracking pending requests and a 'barrier' concept
1695 * that can be installed to exclude normal IO requests.
1696 */
1697
NeilBrown57afd892005-06-21 17:17:13 -07001698static sector_t sync_request(mddev_t *mddev, sector_t sector_nr, int *skipped, int go_faster)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699{
NeilBrown070ec552009-06-16 16:54:21 +10001700 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 r1bio_t *r1_bio;
1702 struct bio *bio;
1703 sector_t max_sector, nr_sectors;
NeilBrown3e198f72006-01-06 00:20:21 -08001704 int disk = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 int i;
NeilBrown3e198f72006-01-06 00:20:21 -08001706 int wonly = -1;
1707 int write_targets = 0, read_targets = 0;
NeilBrown191ea9b2005-06-21 17:17:23 -07001708 int sync_blocks;
NeilBrowne3b97032005-08-04 12:53:34 -07001709 int still_degraded = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710
1711 if (!conf->r1buf_pool)
1712 if (init_resync(conf))
NeilBrown57afd892005-06-21 17:17:13 -07001713 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
Andre Noll58c0fed2009-03-31 14:33:13 +11001715 max_sector = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 if (sector_nr >= max_sector) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001717 /* If we aborted, we need to abort the
1718 * sync on the 'current' bitmap chunk (there will
1719 * only be one in raid1 resync.
1720 * We can find the current addess in mddev->curr_resync
1721 */
NeilBrown6a806c52005-07-15 03:56:35 -07001722 if (mddev->curr_resync < max_sector) /* aborted */
1723 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
NeilBrown191ea9b2005-06-21 17:17:23 -07001724 &sync_blocks, 1);
NeilBrown6a806c52005-07-15 03:56:35 -07001725 else /* completed sync */
NeilBrown191ea9b2005-06-21 17:17:23 -07001726 conf->fullsync = 0;
NeilBrown6a806c52005-07-15 03:56:35 -07001727
1728 bitmap_close_sync(mddev->bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 close_sync(conf);
1730 return 0;
1731 }
1732
NeilBrown07d84d102006-06-26 00:27:56 -07001733 if (mddev->bitmap == NULL &&
1734 mddev->recovery_cp == MaxSector &&
NeilBrown6394cca2006-08-27 01:23:50 -07001735 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
NeilBrown07d84d102006-06-26 00:27:56 -07001736 conf->fullsync == 0) {
1737 *skipped = 1;
1738 return max_sector - sector_nr;
1739 }
NeilBrown6394cca2006-08-27 01:23:50 -07001740 /* before building a request, check if we can skip these blocks..
1741 * This call the bitmap_start_sync doesn't actually record anything
1742 */
NeilBrowne3b97032005-08-04 12:53:34 -07001743 if (!bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
NeilBrowne5de485f2005-11-08 21:39:38 -08001744 !conf->fullsync && !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001745 /* We can skip this block, and probably several more */
1746 *skipped = 1;
1747 return sync_blocks;
1748 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 /*
NeilBrown17999be2006-01-06 00:20:12 -08001750 * If there is non-resync activity waiting for a turn,
1751 * and resync is going fast enough,
1752 * then let it though before starting on this new sync request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 */
NeilBrown17999be2006-01-06 00:20:12 -08001754 if (!go_faster && conf->nr_waiting)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 msleep_interruptible(1000);
NeilBrown17999be2006-01-06 00:20:12 -08001756
NeilBrownb47490c2008-02-06 01:39:50 -08001757 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
NeilBrown17999be2006-01-06 00:20:12 -08001758 raise_barrier(conf);
1759
1760 conf->next_resync = sector_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 r1_bio = mempool_alloc(conf->r1buf_pool, GFP_NOIO);
NeilBrown3e198f72006-01-06 00:20:21 -08001763 rcu_read_lock();
1764 /*
1765 * If we get a correctably read error during resync or recovery,
1766 * we might want to read from a different device. So we
1767 * flag all drives that could conceivably be read from for READ,
1768 * and any others (which will be non-In_sync devices) for WRITE.
1769 * If a read fails, we try reading from something else for which READ
1770 * is OK.
1771 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 r1_bio->mddev = mddev;
1774 r1_bio->sector = sector_nr;
NeilBrown191ea9b2005-06-21 17:17:23 -07001775 r1_bio->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 set_bit(R1BIO_IsSync, &r1_bio->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
1778 for (i=0; i < conf->raid_disks; i++) {
NeilBrown3e198f72006-01-06 00:20:21 -08001779 mdk_rdev_t *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 bio = r1_bio->bios[i];
1781
1782 /* take from bio_init */
1783 bio->bi_next = NULL;
1784 bio->bi_flags |= 1 << BIO_UPTODATE;
NeilBrown802ba062006-12-13 00:34:13 -08001785 bio->bi_rw = READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 bio->bi_vcnt = 0;
1787 bio->bi_idx = 0;
1788 bio->bi_phys_segments = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 bio->bi_size = 0;
1790 bio->bi_end_io = NULL;
1791 bio->bi_private = NULL;
1792
NeilBrown3e198f72006-01-06 00:20:21 -08001793 rdev = rcu_dereference(conf->mirrors[i].rdev);
1794 if (rdev == NULL ||
1795 test_bit(Faulty, &rdev->flags)) {
NeilBrowne3b97032005-08-04 12:53:34 -07001796 still_degraded = 1;
1797 continue;
NeilBrown3e198f72006-01-06 00:20:21 -08001798 } else if (!test_bit(In_sync, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 bio->bi_rw = WRITE;
1800 bio->bi_end_io = end_sync_write;
1801 write_targets ++;
NeilBrown3e198f72006-01-06 00:20:21 -08001802 } else {
1803 /* may need to read from here */
1804 bio->bi_rw = READ;
1805 bio->bi_end_io = end_sync_read;
1806 if (test_bit(WriteMostly, &rdev->flags)) {
1807 if (wonly < 0)
1808 wonly = i;
1809 } else {
1810 if (disk < 0)
1811 disk = i;
1812 }
1813 read_targets++;
1814 }
1815 atomic_inc(&rdev->nr_pending);
1816 bio->bi_sector = sector_nr + rdev->data_offset;
1817 bio->bi_bdev = rdev->bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 bio->bi_private = r1_bio;
1819 }
NeilBrown3e198f72006-01-06 00:20:21 -08001820 rcu_read_unlock();
1821 if (disk < 0)
1822 disk = wonly;
1823 r1_bio->read_disk = disk;
NeilBrown191ea9b2005-06-21 17:17:23 -07001824
NeilBrown3e198f72006-01-06 00:20:21 -08001825 if (test_bit(MD_RECOVERY_SYNC, &mddev->recovery) && read_targets > 0)
1826 /* extra read targets are also write targets */
1827 write_targets += read_targets-1;
1828
1829 if (write_targets == 0 || read_targets == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 /* There is nowhere to write, so all non-sync
1831 * drives must be failed - so we are finished
1832 */
NeilBrown57afd892005-06-21 17:17:13 -07001833 sector_t rv = max_sector - sector_nr;
1834 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 put_buf(r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 return rv;
1837 }
1838
NeilBrownc6207272008-02-06 01:39:52 -08001839 if (max_sector > mddev->resync_max)
1840 max_sector = mddev->resync_max; /* Don't do IO beyond here */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 nr_sectors = 0;
NeilBrown289e99e2005-06-21 17:17:24 -07001842 sync_blocks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 do {
1844 struct page *page;
1845 int len = PAGE_SIZE;
1846 if (sector_nr + (len>>9) > max_sector)
1847 len = (max_sector - sector_nr) << 9;
1848 if (len == 0)
1849 break;
NeilBrown6a806c52005-07-15 03:56:35 -07001850 if (sync_blocks == 0) {
1851 if (!bitmap_start_sync(mddev->bitmap, sector_nr,
NeilBrowne5de485f2005-11-08 21:39:38 -08001852 &sync_blocks, still_degraded) &&
1853 !conf->fullsync &&
1854 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery))
NeilBrown6a806c52005-07-15 03:56:35 -07001855 break;
Eric Sesterhenn9e77c482006-04-01 01:08:49 +02001856 BUG_ON(sync_blocks < (PAGE_SIZE>>9));
NeilBrown6a806c52005-07-15 03:56:35 -07001857 if (len > (sync_blocks<<9))
1858 len = sync_blocks<<9;
NeilBrownab7a30c2005-06-21 17:17:23 -07001859 }
NeilBrown191ea9b2005-06-21 17:17:23 -07001860
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 for (i=0 ; i < conf->raid_disks; i++) {
1862 bio = r1_bio->bios[i];
1863 if (bio->bi_end_io) {
NeilBrownd11c1712006-01-06 00:20:26 -08001864 page = bio->bi_io_vec[bio->bi_vcnt].bv_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 if (bio_add_page(bio, page, len, 0) == 0) {
1866 /* stop here */
NeilBrownd11c1712006-01-06 00:20:26 -08001867 bio->bi_io_vec[bio->bi_vcnt].bv_page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 while (i > 0) {
1869 i--;
1870 bio = r1_bio->bios[i];
NeilBrown6a806c52005-07-15 03:56:35 -07001871 if (bio->bi_end_io==NULL)
1872 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 /* remove last page from this bio */
1874 bio->bi_vcnt--;
1875 bio->bi_size -= len;
1876 bio->bi_flags &= ~(1<< BIO_SEG_VALID);
1877 }
1878 goto bio_full;
1879 }
1880 }
1881 }
1882 nr_sectors += len>>9;
1883 sector_nr += len>>9;
NeilBrown191ea9b2005-06-21 17:17:23 -07001884 sync_blocks -= (len>>9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 } while (r1_bio->bios[disk]->bi_vcnt < RESYNC_PAGES);
1886 bio_full:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 r1_bio->sectors = nr_sectors;
1888
NeilBrownd11c1712006-01-06 00:20:26 -08001889 /* For a user-requested sync, we read all readable devices and do a
1890 * compare
1891 */
1892 if (test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) {
1893 atomic_set(&r1_bio->remaining, read_targets);
1894 for (i=0; i<conf->raid_disks; i++) {
1895 bio = r1_bio->bios[i];
1896 if (bio->bi_end_io == end_sync_read) {
NeilBrownddac7c72006-08-31 21:27:36 -07001897 md_sync_acct(bio->bi_bdev, nr_sectors);
NeilBrownd11c1712006-01-06 00:20:26 -08001898 generic_make_request(bio);
1899 }
1900 }
1901 } else {
1902 atomic_set(&r1_bio->remaining, 1);
1903 bio = r1_bio->bios[r1_bio->read_disk];
NeilBrownddac7c72006-08-31 21:27:36 -07001904 md_sync_acct(bio->bi_bdev, nr_sectors);
NeilBrownd11c1712006-01-06 00:20:26 -08001905 generic_make_request(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906
NeilBrownd11c1712006-01-06 00:20:26 -08001907 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 return nr_sectors;
1909}
1910
Dan Williams80c3a6c2009-03-17 18:10:40 -07001911static sector_t raid1_size(mddev_t *mddev, sector_t sectors, int raid_disks)
1912{
1913 if (sectors)
1914 return sectors;
1915
1916 return mddev->dev_sectors;
1917}
1918
NeilBrown709ae482009-12-14 12:49:51 +11001919static conf_t *setup_conf(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920{
1921 conf_t *conf;
NeilBrown709ae482009-12-14 12:49:51 +11001922 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 mirror_info_t *disk;
1924 mdk_rdev_t *rdev;
NeilBrown709ae482009-12-14 12:49:51 +11001925 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926
NeilBrown9ffae0c2006-01-06 00:20:32 -08001927 conf = kzalloc(sizeof(conf_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 if (!conf)
NeilBrown709ae482009-12-14 12:49:51 +11001929 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930
NeilBrown9ffae0c2006-01-06 00:20:32 -08001931 conf->mirrors = kzalloc(sizeof(struct mirror_info)*mddev->raid_disks,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 GFP_KERNEL);
1933 if (!conf->mirrors)
NeilBrown709ae482009-12-14 12:49:51 +11001934 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
NeilBrownddaf22a2006-01-06 00:20:19 -08001936 conf->tmppage = alloc_page(GFP_KERNEL);
1937 if (!conf->tmppage)
NeilBrown709ae482009-12-14 12:49:51 +11001938 goto abort;
NeilBrownddaf22a2006-01-06 00:20:19 -08001939
NeilBrown709ae482009-12-14 12:49:51 +11001940 conf->poolinfo = kzalloc(sizeof(*conf->poolinfo), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 if (!conf->poolinfo)
NeilBrown709ae482009-12-14 12:49:51 +11001942 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 conf->poolinfo->raid_disks = mddev->raid_disks;
1944 conf->r1bio_pool = mempool_create(NR_RAID1_BIOS, r1bio_pool_alloc,
1945 r1bio_pool_free,
1946 conf->poolinfo);
1947 if (!conf->r1bio_pool)
NeilBrown709ae482009-12-14 12:49:51 +11001948 goto abort;
1949
NeilBrowned9bfdf2009-10-16 15:55:44 +11001950 conf->poolinfo->mddev = mddev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
Neil Browne7e72bf2008-05-14 16:05:54 -07001952 spin_lock_init(&conf->device_lock);
Cheng Renquan159ec1f2009-01-09 08:31:08 +11001953 list_for_each_entry(rdev, &mddev->disks, same_set) {
NeilBrown709ae482009-12-14 12:49:51 +11001954 int disk_idx = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 if (disk_idx >= mddev->raid_disks
1956 || disk_idx < 0)
1957 continue;
1958 disk = conf->mirrors + disk_idx;
1959
1960 disk->rdev = rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961
1962 disk->head_position = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 }
1964 conf->raid_disks = mddev->raid_disks;
1965 conf->mddev = mddev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 INIT_LIST_HEAD(&conf->retry_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
1968 spin_lock_init(&conf->resync_lock);
NeilBrown17999be2006-01-06 00:20:12 -08001969 init_waitqueue_head(&conf->wait_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
NeilBrown191ea9b2005-06-21 17:17:23 -07001971 bio_list_init(&conf->pending_bio_list);
1972 bio_list_init(&conf->flushing_bio_list);
1973
NeilBrown709ae482009-12-14 12:49:51 +11001974 conf->last_used = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 for (i = 0; i < conf->raid_disks; i++) {
1976
1977 disk = conf->mirrors + i;
1978
NeilBrown5fd6c1d2006-06-26 00:27:40 -07001979 if (!disk->rdev ||
1980 !test_bit(In_sync, &disk->rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 disk->head_position = 0;
NeilBrown918f0232007-08-22 14:01:52 -07001982 if (disk->rdev)
1983 conf->fullsync = 1;
NeilBrown709ae482009-12-14 12:49:51 +11001984 } else if (conf->last_used < 0)
1985 /*
1986 * The first working device is used as a
1987 * starting point to read balancing.
1988 */
1989 conf->last_used = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 }
NeilBrown709ae482009-12-14 12:49:51 +11001991
1992 err = -EIO;
1993 if (conf->last_used < 0) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001994 printk(KERN_ERR "md/raid1:%s: no operational mirrors\n",
NeilBrown709ae482009-12-14 12:49:51 +11001995 mdname(mddev));
1996 goto abort;
NeilBrown11ce99e2006-10-03 01:15:52 -07001997 }
NeilBrown709ae482009-12-14 12:49:51 +11001998 err = -ENOMEM;
1999 conf->thread = md_register_thread(raid1d, mddev, NULL);
2000 if (!conf->thread) {
NeilBrown191ea9b2005-06-21 17:17:23 -07002001 printk(KERN_ERR
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002002 "md/raid1:%s: couldn't allocate thread\n",
NeilBrown191ea9b2005-06-21 17:17:23 -07002003 mdname(mddev));
NeilBrown709ae482009-12-14 12:49:51 +11002004 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 }
NeilBrown191ea9b2005-06-21 17:17:23 -07002006
NeilBrown709ae482009-12-14 12:49:51 +11002007 return conf;
2008
2009 abort:
2010 if (conf) {
2011 if (conf->r1bio_pool)
2012 mempool_destroy(conf->r1bio_pool);
2013 kfree(conf->mirrors);
2014 safe_put_page(conf->tmppage);
2015 kfree(conf->poolinfo);
2016 kfree(conf);
2017 }
2018 return ERR_PTR(err);
2019}
2020
2021static int run(mddev_t *mddev)
2022{
2023 conf_t *conf;
2024 int i;
2025 mdk_rdev_t *rdev;
2026
2027 if (mddev->level != 1) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002028 printk(KERN_ERR "md/raid1:%s: raid level not set to mirroring (%d)\n",
NeilBrown709ae482009-12-14 12:49:51 +11002029 mdname(mddev), mddev->level);
2030 return -EIO;
2031 }
2032 if (mddev->reshape_position != MaxSector) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002033 printk(KERN_ERR "md/raid1:%s: reshape_position set but not supported\n",
NeilBrown709ae482009-12-14 12:49:51 +11002034 mdname(mddev));
2035 return -EIO;
2036 }
2037 /*
2038 * copy the already verified devices into our private RAID1
2039 * bookkeeping area. [whatever we allocate in run(),
2040 * should be freed in stop()]
2041 */
2042 if (mddev->private == NULL)
2043 conf = setup_conf(mddev);
2044 else
2045 conf = mddev->private;
2046
2047 if (IS_ERR(conf))
2048 return PTR_ERR(conf);
2049
2050 mddev->queue->queue_lock = &conf->device_lock;
2051 list_for_each_entry(rdev, &mddev->disks, same_set) {
2052 disk_stack_limits(mddev->gendisk, rdev->bdev,
2053 rdev->data_offset << 9);
2054 /* as we don't honour merge_bvec_fn, we must never risk
NeilBrown627a2d32010-03-08 16:44:38 +11002055 * violating it, so limit ->max_segments to 1 lying within
2056 * a single page, as a one page request is never in violation.
NeilBrown709ae482009-12-14 12:49:51 +11002057 */
NeilBrown627a2d32010-03-08 16:44:38 +11002058 if (rdev->bdev->bd_disk->queue->merge_bvec_fn) {
2059 blk_queue_max_segments(mddev->queue, 1);
2060 blk_queue_segment_boundary(mddev->queue,
2061 PAGE_CACHE_SIZE - 1);
2062 }
NeilBrown709ae482009-12-14 12:49:51 +11002063 }
2064
2065 mddev->degraded = 0;
2066 for (i=0; i < conf->raid_disks; i++)
2067 if (conf->mirrors[i].rdev == NULL ||
2068 !test_bit(In_sync, &conf->mirrors[i].rdev->flags) ||
2069 test_bit(Faulty, &conf->mirrors[i].rdev->flags))
2070 mddev->degraded++;
2071
2072 if (conf->raid_disks - mddev->degraded == 1)
2073 mddev->recovery_cp = MaxSector;
2074
Andre Noll8c6ac862009-06-18 08:48:06 +10002075 if (mddev->recovery_cp != MaxSector)
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002076 printk(KERN_NOTICE "md/raid1:%s: not clean"
Andre Noll8c6ac862009-06-18 08:48:06 +10002077 " -- starting background reconstruction\n",
2078 mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 printk(KERN_INFO
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002080 "md/raid1:%s: active with %d out of %d mirrors\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 mdname(mddev), mddev->raid_disks - mddev->degraded,
2082 mddev->raid_disks);
NeilBrown709ae482009-12-14 12:49:51 +11002083
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 /*
2085 * Ok, everything is just fine now
2086 */
NeilBrown709ae482009-12-14 12:49:51 +11002087 mddev->thread = conf->thread;
2088 conf->thread = NULL;
2089 mddev->private = conf;
2090
Dan Williams1f403622009-03-31 14:59:03 +11002091 md_set_array_sectors(mddev, raid1_size(mddev, 0, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092
NeilBrown7a5febe2005-05-16 21:53:16 -07002093 mddev->queue->unplug_fn = raid1_unplug;
NeilBrown0d129222006-10-03 01:15:54 -07002094 mddev->queue->backing_dev_info.congested_fn = raid1_congested;
2095 mddev->queue->backing_dev_info.congested_data = mddev;
Andre Nollac5e7112009-08-03 10:59:47 +10002096 md_integrity_register(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098}
2099
2100static int stop(mddev_t *mddev)
2101{
NeilBrown070ec552009-06-16 16:54:21 +10002102 conf_t *conf = mddev->private;
NeilBrown4b6d2872005-09-09 16:23:47 -07002103 struct bitmap *bitmap = mddev->bitmap;
NeilBrown4b6d2872005-09-09 16:23:47 -07002104
2105 /* wait for behind writes to complete */
NeilBrowne5551902010-03-31 11:21:44 +11002106 if (bitmap && atomic_read(&bitmap->behind_writes) > 0) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002107 printk(KERN_INFO "md/raid1:%s: behind writes in progress - waiting to stop.\n",
2108 mdname(mddev));
NeilBrown4b6d2872005-09-09 16:23:47 -07002109 /* need to kick something here to make sure I/O goes? */
NeilBrowne5551902010-03-31 11:21:44 +11002110 wait_event(bitmap->behind_wait,
2111 atomic_read(&bitmap->behind_writes) == 0);
NeilBrown4b6d2872005-09-09 16:23:47 -07002112 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
NeilBrown409c57f2009-03-31 14:39:39 +11002114 raise_barrier(conf);
2115 lower_barrier(conf);
2116
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 md_unregister_thread(mddev->thread);
2118 mddev->thread = NULL;
2119 blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/
2120 if (conf->r1bio_pool)
2121 mempool_destroy(conf->r1bio_pool);
Jesper Juhl990a8ba2005-06-21 17:17:30 -07002122 kfree(conf->mirrors);
2123 kfree(conf->poolinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 kfree(conf);
2125 mddev->private = NULL;
2126 return 0;
2127}
2128
2129static int raid1_resize(mddev_t *mddev, sector_t sectors)
2130{
2131 /* no resync is happening, and there is enough space
2132 * on all devices, so we can resize.
2133 * We need to make sure resync covers any new space.
2134 * If the array is shrinking we should possibly wait until
2135 * any io in the removed space completes, but it hardly seems
2136 * worth it.
2137 */
Dan Williams1f403622009-03-31 14:59:03 +11002138 md_set_array_sectors(mddev, raid1_size(mddev, sectors, 0));
Dan Williamsb522adc2009-03-31 15:00:31 +11002139 if (mddev->array_sectors > raid1_size(mddev, sectors, 0))
2140 return -EINVAL;
Andre Nollf233ea52008-07-21 17:05:22 +10002141 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10002142 revalidate_disk(mddev->gendisk);
Dan Williamsb522adc2009-03-31 15:00:31 +11002143 if (sectors > mddev->dev_sectors &&
Andre Nollf233ea52008-07-21 17:05:22 +10002144 mddev->recovery_cp == MaxSector) {
Andre Noll58c0fed2009-03-31 14:33:13 +11002145 mddev->recovery_cp = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
2147 }
Dan Williamsb522adc2009-03-31 15:00:31 +11002148 mddev->dev_sectors = sectors;
NeilBrown4b5c7ae2005-07-27 11:43:28 -07002149 mddev->resync_max_sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 return 0;
2151}
2152
NeilBrown63c70c42006-03-27 01:18:13 -08002153static int raid1_reshape(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154{
2155 /* We need to:
2156 * 1/ resize the r1bio_pool
2157 * 2/ resize conf->mirrors
2158 *
2159 * We allocate a new r1bio_pool if we can.
2160 * Then raise a device barrier and wait until all IO stops.
2161 * Then resize conf->mirrors and swap in the new r1bio pool.
NeilBrown6ea9c072005-06-21 17:17:09 -07002162 *
2163 * At the same time, we "pack" the devices so that all the missing
2164 * devices have the higher raid_disk numbers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 */
2166 mempool_t *newpool, *oldpool;
2167 struct pool_info *newpoolinfo;
2168 mirror_info_t *newmirrors;
NeilBrown070ec552009-06-16 16:54:21 +10002169 conf_t *conf = mddev->private;
NeilBrown63c70c42006-03-27 01:18:13 -08002170 int cnt, raid_disks;
NeilBrownc04be0a2006-10-03 01:15:53 -07002171 unsigned long flags;
Dan Williamsb5470dc2008-06-27 21:44:04 -07002172 int d, d2, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
NeilBrown63c70c42006-03-27 01:18:13 -08002174 /* Cannot change chunk_size, layout, or level */
Andre Noll664e7c42009-06-18 08:45:27 +10002175 if (mddev->chunk_sectors != mddev->new_chunk_sectors ||
NeilBrown63c70c42006-03-27 01:18:13 -08002176 mddev->layout != mddev->new_layout ||
2177 mddev->level != mddev->new_level) {
Andre Noll664e7c42009-06-18 08:45:27 +10002178 mddev->new_chunk_sectors = mddev->chunk_sectors;
NeilBrown63c70c42006-03-27 01:18:13 -08002179 mddev->new_layout = mddev->layout;
2180 mddev->new_level = mddev->level;
2181 return -EINVAL;
2182 }
2183
Dan Williamsb5470dc2008-06-27 21:44:04 -07002184 err = md_allow_write(mddev);
2185 if (err)
2186 return err;
NeilBrown2a2275d2007-01-26 00:57:11 -08002187
NeilBrown63c70c42006-03-27 01:18:13 -08002188 raid_disks = mddev->raid_disks + mddev->delta_disks;
2189
NeilBrown6ea9c072005-06-21 17:17:09 -07002190 if (raid_disks < conf->raid_disks) {
2191 cnt=0;
2192 for (d= 0; d < conf->raid_disks; d++)
2193 if (conf->mirrors[d].rdev)
2194 cnt++;
2195 if (cnt > raid_disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 return -EBUSY;
NeilBrown6ea9c072005-06-21 17:17:09 -07002197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198
2199 newpoolinfo = kmalloc(sizeof(*newpoolinfo), GFP_KERNEL);
2200 if (!newpoolinfo)
2201 return -ENOMEM;
2202 newpoolinfo->mddev = mddev;
2203 newpoolinfo->raid_disks = raid_disks;
2204
2205 newpool = mempool_create(NR_RAID1_BIOS, r1bio_pool_alloc,
2206 r1bio_pool_free, newpoolinfo);
2207 if (!newpool) {
2208 kfree(newpoolinfo);
2209 return -ENOMEM;
2210 }
NeilBrown9ffae0c2006-01-06 00:20:32 -08002211 newmirrors = kzalloc(sizeof(struct mirror_info) * raid_disks, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 if (!newmirrors) {
2213 kfree(newpoolinfo);
2214 mempool_destroy(newpool);
2215 return -ENOMEM;
2216 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
NeilBrown17999be2006-01-06 00:20:12 -08002218 raise_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219
2220 /* ok, everything is stopped */
2221 oldpool = conf->r1bio_pool;
2222 conf->r1bio_pool = newpool;
NeilBrown6ea9c072005-06-21 17:17:09 -07002223
NeilBrowna88aa782007-08-22 14:01:53 -07002224 for (d = d2 = 0; d < conf->raid_disks; d++) {
2225 mdk_rdev_t *rdev = conf->mirrors[d].rdev;
2226 if (rdev && rdev->raid_disk != d2) {
2227 char nm[20];
2228 sprintf(nm, "rd%d", rdev->raid_disk);
2229 sysfs_remove_link(&mddev->kobj, nm);
2230 rdev->raid_disk = d2;
2231 sprintf(nm, "rd%d", rdev->raid_disk);
2232 sysfs_remove_link(&mddev->kobj, nm);
2233 if (sysfs_create_link(&mddev->kobj,
2234 &rdev->kobj, nm))
2235 printk(KERN_WARNING
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002236 "md/raid1:%s: cannot register "
2237 "%s\n",
2238 mdname(mddev), nm);
NeilBrown6ea9c072005-06-21 17:17:09 -07002239 }
NeilBrowna88aa782007-08-22 14:01:53 -07002240 if (rdev)
2241 newmirrors[d2++].rdev = rdev;
2242 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 kfree(conf->mirrors);
2244 conf->mirrors = newmirrors;
2245 kfree(conf->poolinfo);
2246 conf->poolinfo = newpoolinfo;
2247
NeilBrownc04be0a2006-10-03 01:15:53 -07002248 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 mddev->degraded += (raid_disks - conf->raid_disks);
NeilBrownc04be0a2006-10-03 01:15:53 -07002250 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 conf->raid_disks = mddev->raid_disks = raid_disks;
NeilBrown63c70c42006-03-27 01:18:13 -08002252 mddev->delta_disks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253
NeilBrown6ea9c072005-06-21 17:17:09 -07002254 conf->last_used = 0; /* just make sure it is in-range */
NeilBrown17999be2006-01-06 00:20:12 -08002255 lower_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256
2257 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
2258 md_wakeup_thread(mddev->thread);
2259
2260 mempool_destroy(oldpool);
2261 return 0;
2262}
2263
NeilBrown500af872005-09-09 16:23:58 -07002264static void raid1_quiesce(mddev_t *mddev, int state)
NeilBrown36fa3062005-09-09 16:23:45 -07002265{
NeilBrown070ec552009-06-16 16:54:21 +10002266 conf_t *conf = mddev->private;
NeilBrown36fa3062005-09-09 16:23:45 -07002267
2268 switch(state) {
NeilBrown6eef4b22009-12-14 12:49:51 +11002269 case 2: /* wake for suspend */
2270 wake_up(&conf->wait_barrier);
2271 break;
NeilBrown9e6603d2005-09-09 16:23:48 -07002272 case 1:
NeilBrown17999be2006-01-06 00:20:12 -08002273 raise_barrier(conf);
NeilBrown36fa3062005-09-09 16:23:45 -07002274 break;
NeilBrown9e6603d2005-09-09 16:23:48 -07002275 case 0:
NeilBrown17999be2006-01-06 00:20:12 -08002276 lower_barrier(conf);
NeilBrown36fa3062005-09-09 16:23:45 -07002277 break;
2278 }
NeilBrown36fa3062005-09-09 16:23:45 -07002279}
2280
NeilBrown709ae482009-12-14 12:49:51 +11002281static void *raid1_takeover(mddev_t *mddev)
2282{
2283 /* raid1 can take over:
2284 * raid5 with 2 devices, any layout or chunk size
2285 */
2286 if (mddev->level == 5 && mddev->raid_disks == 2) {
2287 conf_t *conf;
2288 mddev->new_level = 1;
2289 mddev->new_layout = 0;
2290 mddev->new_chunk_sectors = 0;
2291 conf = setup_conf(mddev);
2292 if (!IS_ERR(conf))
2293 conf->barrier = 1;
2294 return conf;
2295 }
2296 return ERR_PTR(-EINVAL);
2297}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298
NeilBrown2604b702006-01-06 00:20:36 -08002299static struct mdk_personality raid1_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300{
2301 .name = "raid1",
NeilBrown2604b702006-01-06 00:20:36 -08002302 .level = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 .owner = THIS_MODULE,
2304 .make_request = make_request,
2305 .run = run,
2306 .stop = stop,
2307 .status = status,
2308 .error_handler = error,
2309 .hot_add_disk = raid1_add_disk,
2310 .hot_remove_disk= raid1_remove_disk,
2311 .spare_active = raid1_spare_active,
2312 .sync_request = sync_request,
2313 .resize = raid1_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07002314 .size = raid1_size,
NeilBrown63c70c42006-03-27 01:18:13 -08002315 .check_reshape = raid1_reshape,
NeilBrown36fa3062005-09-09 16:23:45 -07002316 .quiesce = raid1_quiesce,
NeilBrown709ae482009-12-14 12:49:51 +11002317 .takeover = raid1_takeover,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318};
2319
2320static int __init raid_init(void)
2321{
NeilBrown2604b702006-01-06 00:20:36 -08002322 return register_md_personality(&raid1_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323}
2324
2325static void raid_exit(void)
2326{
NeilBrown2604b702006-01-06 00:20:36 -08002327 unregister_md_personality(&raid1_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328}
2329
2330module_init(raid_init);
2331module_exit(raid_exit);
2332MODULE_LICENSE("GPL");
NeilBrown0efb9e62009-12-14 12:49:58 +11002333MODULE_DESCRIPTION("RAID1 (mirroring) personality for MD");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334MODULE_ALIAS("md-personality-3"); /* RAID1 */
NeilBrownd9d166c2006-01-06 00:20:51 -08002335MODULE_ALIAS("md-raid1");
NeilBrown2604b702006-01-06 00:20:36 -08002336MODULE_ALIAS("md-level-1");