blob: a948da8012de205f37bb5e7498df7235b374b7ca [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
NeilBrownbea27712006-05-01 12:15:46 -0700322 if (error == -EOPNOTSUPP && test_bit(R1BIO_Barrier, &r1_bio->state)) {
NeilBrowna9701a32005-11-08 21:39:34 -0800323 set_bit(BarriersNotsupp, &conf->mirrors[mirror].rdev->flags);
324 set_bit(R1BIO_BarrierRetry, &r1_bio->state);
325 r1_bio->mddev->barriers_work = 0;
NeilBrown5e7dd2a2006-05-01 12:15:47 -0700326 /* Don't rdev_dec_pending in this branch - keep it for the retry */
NeilBrowna9701a32005-11-08 21:39:34 -0800327 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 /*
NeilBrowna9701a32005-11-08 21:39:34 -0800329 * this branch is our 'one mirror IO has finished' event handler:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 */
NeilBrowna9701a32005-11-08 21:39:34 -0800331 r1_bio->bios[mirror] = NULL;
NeilBrown04b857f2006-03-09 17:33:46 -0800332 to_put = bio;
NeilBrowna9701a32005-11-08 21:39:34 -0800333 if (!uptodate) {
334 md_error(r1_bio->mddev, conf->mirrors[mirror].rdev);
335 /* an I/O failed, we can't clear the bitmap */
336 set_bit(R1BIO_Degraded, &r1_bio->state);
337 } else
338 /*
339 * Set R1BIO_Uptodate in our master bio, so that
340 * we will return a good error code for to the higher
341 * levels even if IO on some other mirrored buffer fails.
342 *
343 * The 'master' represents the composite IO operation to
344 * user-side. So if something waits for IO, then it will
345 * wait for the 'master' bio.
346 */
347 set_bit(R1BIO_Uptodate, &r1_bio->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
NeilBrowna9701a32005-11-08 21:39:34 -0800349 update_head_pos(mirror, r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
NeilBrowna9701a32005-11-08 21:39:34 -0800351 if (behind) {
352 if (test_bit(WriteMostly, &conf->mirrors[mirror].rdev->flags))
353 atomic_dec(&r1_bio->behind_remaining);
NeilBrown4b6d2872005-09-09 16:23:47 -0700354
NeilBrowna9701a32005-11-08 21:39:34 -0800355 /* In behind mode, we ACK the master bio once the I/O has safely
356 * reached all non-writemostly disks. Setting the Returned bit
357 * ensures that this gets done only once -- we don't ever want to
358 * return -EIO here, instead we'll wait */
NeilBrown4b6d2872005-09-09 16:23:47 -0700359
NeilBrowna9701a32005-11-08 21:39:34 -0800360 if (atomic_read(&r1_bio->behind_remaining) >= (atomic_read(&r1_bio->remaining)-1) &&
361 test_bit(R1BIO_Uptodate, &r1_bio->state)) {
362 /* Maybe we can return now */
363 if (!test_and_set_bit(R1BIO_Returned, &r1_bio->state)) {
364 struct bio *mbio = r1_bio->master_bio;
365 PRINTK(KERN_DEBUG "raid1: behind end write sectors %llu-%llu\n",
366 (unsigned long long) mbio->bi_sector,
367 (unsigned long long) mbio->bi_sector +
368 (mbio->bi_size >> 9) - 1);
NeilBrown6712ecf2007-09-27 12:47:43 +0200369 bio_endio(mbio, 0);
NeilBrowna9701a32005-11-08 21:39:34 -0800370 }
NeilBrown4b6d2872005-09-09 16:23:47 -0700371 }
372 }
NeilBrown5e7dd2a2006-05-01 12:15:47 -0700373 rdev_dec_pending(conf->mirrors[mirror].rdev, conf->mddev);
NeilBrown4b6d2872005-09-09 16:23:47 -0700374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 /*
376 *
377 * Let's see if all mirrored write operations have finished
378 * already.
379 */
380 if (atomic_dec_and_test(&r1_bio->remaining)) {
NeilBrownc70810b2006-06-26 00:27:35 -0700381 if (test_bit(R1BIO_BarrierRetry, &r1_bio->state))
NeilBrowna9701a32005-11-08 21:39:34 -0800382 reschedule_retry(r1_bio);
NeilBrownc70810b2006-06-26 00:27:35 -0700383 else {
384 /* it really is the end of this request */
385 if (test_bit(R1BIO_BehindIO, &r1_bio->state)) {
386 /* free extra copy of the data pages */
387 int i = bio->bi_vcnt;
388 while (i--)
389 safe_put_page(bio->bi_io_vec[i].bv_page);
390 }
391 /* clear the bitmap if all writes complete successfully */
392 bitmap_endwrite(r1_bio->mddev->bitmap, r1_bio->sector,
393 r1_bio->sectors,
394 !test_bit(R1BIO_Degraded, &r1_bio->state),
395 behind);
396 md_write_end(r1_bio->mddev);
397 raid_end_bio_io(r1_bio);
NeilBrowna9701a32005-11-08 21:39:34 -0800398 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 }
NeilBrownc70810b2006-06-26 00:27:35 -0700400
NeilBrown04b857f2006-03-09 17:33:46 -0800401 if (to_put)
402 bio_put(to_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403}
404
405
406/*
407 * This routine returns the disk from which the requested read should
408 * be done. There is a per-array 'next expected sequential IO' sector
409 * number - if this matches on the next IO then we use the last disk.
410 * There is also a per-disk 'last know head position' sector that is
411 * maintained from IRQ contexts, both the normal and the resync IO
412 * completion handlers update this position correctly. If there is no
413 * perfect sequential match then we pick the disk whose head is closest.
414 *
415 * If there are 2 mirrors in the same 2 devices, performance degrades
416 * because position is mirror, not device based.
417 *
418 * The rdev for the device selected will have nr_pending incremented.
419 */
420static int read_balance(conf_t *conf, r1bio_t *r1_bio)
421{
NeilBrownaf3a2cd2010-05-08 08:20:17 +1000422 const sector_t this_sector = r1_bio->sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 int new_disk = conf->last_used, disk = new_disk;
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700424 int wonly_disk = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 const int sectors = r1_bio->sectors;
426 sector_t new_distance, current_distance;
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700427 mdk_rdev_t *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428
429 rcu_read_lock();
430 /*
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700431 * Check if we can balance. We can balance on the whole
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 * device if no resync is going on, or below the resync window.
433 * We take the first readable disk when above the resync window.
434 */
435 retry:
436 if (conf->mddev->recovery_cp < MaxSector &&
437 (this_sector + sectors >= conf->next_resync)) {
NeilBrownaf3a2cd2010-05-08 08:20:17 +1000438 /* Choose the first operational device, for consistancy */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 new_disk = 0;
440
Suzanne Woodd6065f72005-11-08 21:39:27 -0800441 for (rdev = rcu_dereference(conf->mirrors[new_disk].rdev);
NeilBrowncf30a472006-01-06 00:20:23 -0800442 r1_bio->bios[new_disk] == IO_BLOCKED ||
NeilBrownb2d444d2005-11-08 21:39:31 -0800443 !rdev || !test_bit(In_sync, &rdev->flags)
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700444 || test_bit(WriteMostly, &rdev->flags);
Suzanne Woodd6065f72005-11-08 21:39:27 -0800445 rdev = rcu_dereference(conf->mirrors[++new_disk].rdev)) {
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700446
NeilBrowncf30a472006-01-06 00:20:23 -0800447 if (rdev && test_bit(In_sync, &rdev->flags) &&
448 r1_bio->bios[new_disk] != IO_BLOCKED)
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700449 wonly_disk = new_disk;
450
451 if (new_disk == conf->raid_disks - 1) {
452 new_disk = wonly_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 break;
454 }
455 }
456 goto rb_out;
457 }
458
459
460 /* make sure the disk is operational */
Suzanne Woodd6065f72005-11-08 21:39:27 -0800461 for (rdev = rcu_dereference(conf->mirrors[new_disk].rdev);
NeilBrowncf30a472006-01-06 00:20:23 -0800462 r1_bio->bios[new_disk] == IO_BLOCKED ||
NeilBrownb2d444d2005-11-08 21:39:31 -0800463 !rdev || !test_bit(In_sync, &rdev->flags) ||
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700464 test_bit(WriteMostly, &rdev->flags);
Suzanne Woodd6065f72005-11-08 21:39:27 -0800465 rdev = rcu_dereference(conf->mirrors[new_disk].rdev)) {
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700466
NeilBrowncf30a472006-01-06 00:20:23 -0800467 if (rdev && test_bit(In_sync, &rdev->flags) &&
468 r1_bio->bios[new_disk] != IO_BLOCKED)
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700469 wonly_disk = new_disk;
470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 if (new_disk <= 0)
472 new_disk = conf->raid_disks;
473 new_disk--;
474 if (new_disk == disk) {
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700475 new_disk = wonly_disk;
476 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 }
478 }
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700479
480 if (new_disk < 0)
481 goto rb_out;
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 disk = new_disk;
484 /* now disk == new_disk == starting point for search */
485
486 /*
487 * Don't change to another disk for sequential reads:
488 */
489 if (conf->next_seq_sect == this_sector)
490 goto rb_out;
491 if (this_sector == conf->mirrors[new_disk].head_position)
492 goto rb_out;
493
494 current_distance = abs(this_sector - conf->mirrors[disk].head_position);
495
496 /* Find the disk whose head is closest */
497
498 do {
499 if (disk <= 0)
500 disk = conf->raid_disks;
501 disk--;
502
Suzanne Woodd6065f72005-11-08 21:39:27 -0800503 rdev = rcu_dereference(conf->mirrors[disk].rdev);
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700504
NeilBrowncf30a472006-01-06 00:20:23 -0800505 if (!rdev || r1_bio->bios[disk] == IO_BLOCKED ||
NeilBrownb2d444d2005-11-08 21:39:31 -0800506 !test_bit(In_sync, &rdev->flags) ||
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700507 test_bit(WriteMostly, &rdev->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 continue;
509
510 if (!atomic_read(&rdev->nr_pending)) {
511 new_disk = disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 break;
513 }
514 new_distance = abs(this_sector - conf->mirrors[disk].head_position);
515 if (new_distance < current_distance) {
516 current_distance = new_distance;
517 new_disk = disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 }
519 } while (disk != conf->last_used);
520
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700521 rb_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
523
524 if (new_disk >= 0) {
Suzanne Woodd6065f72005-11-08 21:39:27 -0800525 rdev = rcu_dereference(conf->mirrors[new_disk].rdev);
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700526 if (!rdev)
527 goto retry;
528 atomic_inc(&rdev->nr_pending);
NeilBrownb2d444d2005-11-08 21:39:31 -0800529 if (!test_bit(In_sync, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 /* cannot risk returning a device that failed
531 * before we inc'ed nr_pending
532 */
NeilBrown03c902e2006-01-06 00:20:46 -0800533 rdev_dec_pending(rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 goto retry;
535 }
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700536 conf->next_seq_sect = this_sector + sectors;
537 conf->last_used = new_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 }
539 rcu_read_unlock();
540
541 return new_disk;
542}
543
544static void unplug_slaves(mddev_t *mddev)
545{
NeilBrown070ec552009-06-16 16:54:21 +1000546 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 int i;
548
549 rcu_read_lock();
550 for (i=0; i<mddev->raid_disks; i++) {
Suzanne Woodd6065f72005-11-08 21:39:27 -0800551 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
NeilBrownb2d444d2005-11-08 21:39:31 -0800552 if (rdev && !test_bit(Faulty, &rdev->flags) && atomic_read(&rdev->nr_pending)) {
Jens Axboe165125e2007-07-24 09:28:11 +0200553 struct request_queue *r_queue = bdev_get_queue(rdev->bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555 atomic_inc(&rdev->nr_pending);
556 rcu_read_unlock();
557
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500558 blk_unplug(r_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
560 rdev_dec_pending(rdev, mddev);
561 rcu_read_lock();
562 }
563 }
564 rcu_read_unlock();
565}
566
Jens Axboe165125e2007-07-24 09:28:11 +0200567static void raid1_unplug(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
NeilBrown191ea9b2005-06-21 17:17:23 -0700569 mddev_t *mddev = q->queuedata;
570
571 unplug_slaves(mddev);
572 md_wakeup_thread(mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573}
574
NeilBrown0d129222006-10-03 01:15:54 -0700575static int raid1_congested(void *data, int bits)
576{
577 mddev_t *mddev = data;
NeilBrown070ec552009-06-16 16:54:21 +1000578 conf_t *conf = mddev->private;
NeilBrown0d129222006-10-03 01:15:54 -0700579 int i, ret = 0;
580
NeilBrown3fa841d2009-09-23 18:10:29 +1000581 if (mddev_congested(mddev, bits))
582 return 1;
583
NeilBrown0d129222006-10-03 01:15:54 -0700584 rcu_read_lock();
585 for (i = 0; i < mddev->raid_disks; i++) {
586 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
587 if (rdev && !test_bit(Faulty, &rdev->flags)) {
Jens Axboe165125e2007-07-24 09:28:11 +0200588 struct request_queue *q = bdev_get_queue(rdev->bdev);
NeilBrown0d129222006-10-03 01:15:54 -0700589
590 /* Note the '|| 1' - when read_balance prefers
591 * non-congested targets, it can be removed
592 */
Alexander Beregalov91a9e992009-04-07 01:35:56 +0400593 if ((bits & (1<<BDI_async_congested)) || 1)
NeilBrown0d129222006-10-03 01:15:54 -0700594 ret |= bdi_congested(&q->backing_dev_info, bits);
595 else
596 ret &= bdi_congested(&q->backing_dev_info, bits);
597 }
598 }
599 rcu_read_unlock();
600 return ret;
601}
602
603
NeilBrowna35e63e2008-03-04 14:29:29 -0800604static int flush_pending_writes(conf_t *conf)
605{
606 /* Any writes that have been queued but are awaiting
607 * bitmap updates get flushed here.
608 * We return 1 if any requests were actually submitted.
609 */
610 int rv = 0;
611
612 spin_lock_irq(&conf->device_lock);
613
614 if (conf->pending_bio_list.head) {
615 struct bio *bio;
616 bio = bio_list_get(&conf->pending_bio_list);
617 blk_remove_plug(conf->mddev->queue);
618 spin_unlock_irq(&conf->device_lock);
619 /* flush any pending bitmap writes to
620 * disk before proceeding w/ I/O */
621 bitmap_unplug(conf->mddev->bitmap);
622
623 while (bio) { /* submit pending writes */
624 struct bio *next = bio->bi_next;
625 bio->bi_next = NULL;
626 generic_make_request(bio);
627 bio = next;
628 }
629 rv = 1;
630 } else
631 spin_unlock_irq(&conf->device_lock);
632 return rv;
633}
634
NeilBrown17999be2006-01-06 00:20:12 -0800635/* Barriers....
636 * Sometimes we need to suspend IO while we do something else,
637 * either some resync/recovery, or reconfigure the array.
638 * To do this we raise a 'barrier'.
639 * The 'barrier' is a counter that can be raised multiple times
640 * to count how many activities are happening which preclude
641 * normal IO.
642 * We can only raise the barrier if there is no pending IO.
643 * i.e. if nr_pending == 0.
644 * We choose only to raise the barrier if no-one is waiting for the
645 * barrier to go down. This means that as soon as an IO request
646 * is ready, no other operations which require a barrier will start
647 * until the IO request has had a chance.
648 *
649 * So: regular IO calls 'wait_barrier'. When that returns there
650 * is no backgroup IO happening, It must arrange to call
651 * allow_barrier when it has finished its IO.
652 * backgroup IO calls must call raise_barrier. Once that returns
653 * there is no normal IO happeing. It must arrange to call
654 * lower_barrier when the particular background IO completes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 */
656#define RESYNC_DEPTH 32
657
NeilBrown17999be2006-01-06 00:20:12 -0800658static void raise_barrier(conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659{
660 spin_lock_irq(&conf->resync_lock);
NeilBrown17999be2006-01-06 00:20:12 -0800661
662 /* Wait until no block IO is waiting */
663 wait_event_lock_irq(conf->wait_barrier, !conf->nr_waiting,
664 conf->resync_lock,
665 raid1_unplug(conf->mddev->queue));
666
667 /* block any new IO from starting */
668 conf->barrier++;
669
670 /* No wait for all pending IO to complete */
671 wait_event_lock_irq(conf->wait_barrier,
672 !conf->nr_pending && conf->barrier < RESYNC_DEPTH,
673 conf->resync_lock,
674 raid1_unplug(conf->mddev->queue));
675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 spin_unlock_irq(&conf->resync_lock);
677}
678
NeilBrown17999be2006-01-06 00:20:12 -0800679static void lower_barrier(conf_t *conf)
680{
681 unsigned long flags;
NeilBrown709ae482009-12-14 12:49:51 +1100682 BUG_ON(conf->barrier <= 0);
NeilBrown17999be2006-01-06 00:20:12 -0800683 spin_lock_irqsave(&conf->resync_lock, flags);
684 conf->barrier--;
685 spin_unlock_irqrestore(&conf->resync_lock, flags);
686 wake_up(&conf->wait_barrier);
687}
688
689static void wait_barrier(conf_t *conf)
690{
691 spin_lock_irq(&conf->resync_lock);
692 if (conf->barrier) {
693 conf->nr_waiting++;
694 wait_event_lock_irq(conf->wait_barrier, !conf->barrier,
695 conf->resync_lock,
696 raid1_unplug(conf->mddev->queue));
697 conf->nr_waiting--;
698 }
699 conf->nr_pending++;
700 spin_unlock_irq(&conf->resync_lock);
701}
702
703static void allow_barrier(conf_t *conf)
704{
705 unsigned long flags;
706 spin_lock_irqsave(&conf->resync_lock, flags);
707 conf->nr_pending--;
708 spin_unlock_irqrestore(&conf->resync_lock, flags);
709 wake_up(&conf->wait_barrier);
710}
711
NeilBrownddaf22a2006-01-06 00:20:19 -0800712static void freeze_array(conf_t *conf)
713{
714 /* stop syncio and normal IO and wait for everything to
715 * go quite.
716 * We increment barrier and nr_waiting, and then
NeilBrown1c830532008-03-04 14:29:35 -0800717 * wait until nr_pending match nr_queued+1
718 * This is called in the context of one normal IO request
719 * that has failed. Thus any sync request that might be pending
720 * will be blocked by nr_pending, and we need to wait for
721 * pending IO requests to complete or be queued for re-try.
722 * Thus the number queued (nr_queued) plus this request (1)
723 * must match the number of pending IOs (nr_pending) before
724 * we continue.
NeilBrownddaf22a2006-01-06 00:20:19 -0800725 */
726 spin_lock_irq(&conf->resync_lock);
727 conf->barrier++;
728 conf->nr_waiting++;
729 wait_event_lock_irq(conf->wait_barrier,
NeilBrown1c830532008-03-04 14:29:35 -0800730 conf->nr_pending == conf->nr_queued+1,
NeilBrownddaf22a2006-01-06 00:20:19 -0800731 conf->resync_lock,
NeilBrowna35e63e2008-03-04 14:29:29 -0800732 ({ flush_pending_writes(conf);
733 raid1_unplug(conf->mddev->queue); }));
NeilBrownddaf22a2006-01-06 00:20:19 -0800734 spin_unlock_irq(&conf->resync_lock);
735}
736static void unfreeze_array(conf_t *conf)
737{
738 /* reverse the effect of the freeze */
739 spin_lock_irq(&conf->resync_lock);
740 conf->barrier--;
741 conf->nr_waiting--;
742 wake_up(&conf->wait_barrier);
743 spin_unlock_irq(&conf->resync_lock);
744}
745
NeilBrown17999be2006-01-06 00:20:12 -0800746
NeilBrown4b6d2872005-09-09 16:23:47 -0700747/* duplicate the data pages for behind I/O */
748static struct page **alloc_behind_pages(struct bio *bio)
749{
750 int i;
751 struct bio_vec *bvec;
NeilBrown9ffae0c2006-01-06 00:20:32 -0800752 struct page **pages = kzalloc(bio->bi_vcnt * sizeof(struct page *),
NeilBrown4b6d2872005-09-09 16:23:47 -0700753 GFP_NOIO);
754 if (unlikely(!pages))
755 goto do_sync_io;
756
NeilBrown4b6d2872005-09-09 16:23:47 -0700757 bio_for_each_segment(bvec, bio, i) {
758 pages[i] = alloc_page(GFP_NOIO);
759 if (unlikely(!pages[i]))
760 goto do_sync_io;
761 memcpy(kmap(pages[i]) + bvec->bv_offset,
762 kmap(bvec->bv_page) + bvec->bv_offset, bvec->bv_len);
763 kunmap(pages[i]);
764 kunmap(bvec->bv_page);
765 }
766
767 return pages;
768
769do_sync_io:
770 if (pages)
771 for (i = 0; i < bio->bi_vcnt && pages[i]; i++)
NeilBrown2d1f3b52006-01-06 00:20:31 -0800772 put_page(pages[i]);
NeilBrown4b6d2872005-09-09 16:23:47 -0700773 kfree(pages);
774 PRINTK("%dB behind alloc failed, doing sync I/O\n", bio->bi_size);
775 return NULL;
776}
777
NeilBrown21a52c62010-04-01 15:02:13 +1100778static int make_request(mddev_t *mddev, struct bio * bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
NeilBrown070ec552009-06-16 16:54:21 +1000780 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 mirror_info_t *mirror;
782 r1bio_t *r1_bio;
783 struct bio *read_bio;
NeilBrown191ea9b2005-06-21 17:17:23 -0700784 int i, targets = 0, disks;
NeilBrown84255d12008-05-23 13:04:32 -0700785 struct bitmap *bitmap;
NeilBrown191ea9b2005-06-21 17:17:23 -0700786 unsigned long flags;
787 struct bio_list bl;
NeilBrown4b6d2872005-09-09 16:23:47 -0700788 struct page **behind_pages = NULL;
Jens Axboea3623572005-11-01 09:26:16 +0100789 const int rw = bio_data_dir(bio);
Jens Axboe1f98a132009-09-11 14:32:04 +0200790 const bool do_sync = bio_rw_flagged(bio, BIO_RW_SYNCIO);
Jens Axboe1f98a132009-09-11 14:32:04 +0200791 bool do_barriers;
Dan Williams6bfe0b42008-04-30 00:52:32 -0700792 mdk_rdev_t *blocked_rdev;
NeilBrown191ea9b2005-06-21 17:17:23 -0700793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 /*
795 * Register the new request and wait if the reconstruction
796 * thread has put up a bar for new requests.
797 * Continue immediately if no resync is active currently.
NeilBrown62de6082006-05-01 12:15:47 -0700798 * We test barriers_work *after* md_write_start as md_write_start
799 * may cause the first superblock write, and that will check out
800 * if barriers work.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 */
NeilBrown62de6082006-05-01 12:15:47 -0700802
NeilBrown3d310eb2005-06-21 17:17:26 -0700803 md_write_start(mddev, bio); /* wait on superblock update early */
804
NeilBrown6eef4b22009-12-14 12:49:51 +1100805 if (bio_data_dir(bio) == WRITE &&
806 bio->bi_sector + bio->bi_size/512 > mddev->suspend_lo &&
807 bio->bi_sector < mddev->suspend_hi) {
808 /* As the suspend_* range is controlled by
809 * userspace, we want an interruptible
810 * wait.
811 */
812 DEFINE_WAIT(w);
813 for (;;) {
814 flush_signals(current);
815 prepare_to_wait(&conf->wait_barrier,
816 &w, TASK_INTERRUPTIBLE);
817 if (bio->bi_sector + bio->bi_size/512 <= mddev->suspend_lo ||
818 bio->bi_sector >= mddev->suspend_hi)
819 break;
820 schedule();
821 }
822 finish_wait(&conf->wait_barrier, &w);
823 }
Jens Axboe1f98a132009-09-11 14:32:04 +0200824 if (unlikely(!mddev->barriers_work &&
825 bio_rw_flagged(bio, BIO_RW_BARRIER))) {
NeilBrown62de6082006-05-01 12:15:47 -0700826 if (rw == WRITE)
827 md_write_end(mddev);
NeilBrown6712ecf2007-09-27 12:47:43 +0200828 bio_endio(bio, -EOPNOTSUPP);
NeilBrown62de6082006-05-01 12:15:47 -0700829 return 0;
830 }
831
NeilBrown17999be2006-01-06 00:20:12 -0800832 wait_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
NeilBrown84255d12008-05-23 13:04:32 -0700834 bitmap = mddev->bitmap;
835
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 /*
837 * make_request() can abort the operation when READA is being
838 * used and no empty request is available.
839 *
840 */
841 r1_bio = mempool_alloc(conf->r1bio_pool, GFP_NOIO);
842
843 r1_bio->master_bio = bio;
844 r1_bio->sectors = bio->bi_size >> 9;
NeilBrown191ea9b2005-06-21 17:17:23 -0700845 r1_bio->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 r1_bio->mddev = mddev;
847 r1_bio->sector = bio->bi_sector;
848
Jens Axboea3623572005-11-01 09:26:16 +0100849 if (rw == READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 /*
851 * read balancing logic:
852 */
853 int rdisk = read_balance(conf, r1_bio);
854
855 if (rdisk < 0) {
856 /* couldn't find anywhere to read from */
857 raid_end_bio_io(r1_bio);
858 return 0;
859 }
860 mirror = conf->mirrors + rdisk;
861
NeilBrowne5551902010-03-31 11:21:44 +1100862 if (test_bit(WriteMostly, &mirror->rdev->flags) &&
863 bitmap) {
864 /* Reading from a write-mostly device must
865 * take care not to over-take any writes
866 * that are 'behind'
867 */
868 wait_event(bitmap->behind_wait,
869 atomic_read(&bitmap->behind_writes) == 0);
870 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 r1_bio->read_disk = rdisk;
872
873 read_bio = bio_clone(bio, GFP_NOIO);
874
875 r1_bio->bios[rdisk] = read_bio;
876
877 read_bio->bi_sector = r1_bio->sector + mirror->rdev->data_offset;
878 read_bio->bi_bdev = mirror->rdev->bdev;
879 read_bio->bi_end_io = raid1_end_read_request;
Dmitry Monakhov1ef04fe2009-09-20 05:52:25 +0400880 read_bio->bi_rw = READ | (do_sync << BIO_RW_SYNCIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 read_bio->bi_private = r1_bio;
882
883 generic_make_request(read_bio);
884 return 0;
885 }
886
887 /*
888 * WRITE:
889 */
890 /* first select target devices under spinlock and
891 * inc refcount on their rdev. Record them by setting
892 * bios[x] to bio
893 */
894 disks = conf->raid_disks;
NeilBrown191ea9b2005-06-21 17:17:23 -0700895#if 0
896 { static int first=1;
897 if (first) printk("First Write sector %llu disks %d\n",
898 (unsigned long long)r1_bio->sector, disks);
899 first = 0;
900 }
901#endif
Dan Williams6bfe0b42008-04-30 00:52:32 -0700902 retry_write:
903 blocked_rdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 rcu_read_lock();
905 for (i = 0; i < disks; i++) {
Dan Williams6bfe0b42008-04-30 00:52:32 -0700906 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
907 if (rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
908 atomic_inc(&rdev->nr_pending);
909 blocked_rdev = rdev;
910 break;
911 }
912 if (rdev && !test_bit(Faulty, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 atomic_inc(&rdev->nr_pending);
NeilBrownb2d444d2005-11-08 21:39:31 -0800914 if (test_bit(Faulty, &rdev->flags)) {
NeilBrown03c902e2006-01-06 00:20:46 -0800915 rdev_dec_pending(rdev, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 r1_bio->bios[i] = NULL;
NeilBrown964147d2010-05-18 15:27:13 +1000917 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 r1_bio->bios[i] = bio;
NeilBrown964147d2010-05-18 15:27:13 +1000919 targets++;
920 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 } else
922 r1_bio->bios[i] = NULL;
923 }
924 rcu_read_unlock();
925
Dan Williams6bfe0b42008-04-30 00:52:32 -0700926 if (unlikely(blocked_rdev)) {
927 /* Wait for this device to become unblocked */
928 int j;
929
930 for (j = 0; j < i; j++)
931 if (r1_bio->bios[j])
932 rdev_dec_pending(conf->mirrors[j].rdev, mddev);
933
934 allow_barrier(conf);
935 md_wait_for_blocked_rdev(blocked_rdev, mddev);
936 wait_barrier(conf);
937 goto retry_write;
938 }
939
NeilBrown4b6d2872005-09-09 16:23:47 -0700940 BUG_ON(targets == 0); /* we never fail the last device */
941
NeilBrown191ea9b2005-06-21 17:17:23 -0700942 if (targets < conf->raid_disks) {
943 /* array is degraded, we will not clear the bitmap
944 * on I/O completion (see raid1_end_write_request) */
945 set_bit(R1BIO_Degraded, &r1_bio->state);
946 }
NeilBrown06d91a52005-06-21 17:17:12 -0700947
NeilBrowne5551902010-03-31 11:21:44 +1100948 /* do behind I/O ?
949 * Not if there are too many, or cannot allocate memory,
950 * or a reader on WriteMostly is waiting for behind writes
951 * to flush */
NeilBrown4b6d2872005-09-09 16:23:47 -0700952 if (bitmap &&
NeilBrown42a04b52009-12-14 12:49:53 +1100953 (atomic_read(&bitmap->behind_writes)
954 < mddev->bitmap_info.max_write_behind) &&
NeilBrowne5551902010-03-31 11:21:44 +1100955 !waitqueue_active(&bitmap->behind_wait) &&
NeilBrown4b6d2872005-09-09 16:23:47 -0700956 (behind_pages = alloc_behind_pages(bio)) != NULL)
957 set_bit(R1BIO_BehindIO, &r1_bio->state);
958
NeilBrown191ea9b2005-06-21 17:17:23 -0700959 atomic_set(&r1_bio->remaining, 0);
NeilBrown4b6d2872005-09-09 16:23:47 -0700960 atomic_set(&r1_bio->behind_remaining, 0);
NeilBrown191ea9b2005-06-21 17:17:23 -0700961
Jens Axboe1f98a132009-09-11 14:32:04 +0200962 do_barriers = bio_rw_flagged(bio, BIO_RW_BARRIER);
NeilBrowna9701a32005-11-08 21:39:34 -0800963 if (do_barriers)
964 set_bit(R1BIO_Barrier, &r1_bio->state);
965
NeilBrown191ea9b2005-06-21 17:17:23 -0700966 bio_list_init(&bl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 for (i = 0; i < disks; i++) {
968 struct bio *mbio;
969 if (!r1_bio->bios[i])
970 continue;
971
972 mbio = bio_clone(bio, GFP_NOIO);
973 r1_bio->bios[i] = mbio;
974
975 mbio->bi_sector = r1_bio->sector + conf->mirrors[i].rdev->data_offset;
976 mbio->bi_bdev = conf->mirrors[i].rdev->bdev;
977 mbio->bi_end_io = raid1_end_write_request;
Dmitry Monakhov1ef04fe2009-09-20 05:52:25 +0400978 mbio->bi_rw = WRITE | (do_barriers << BIO_RW_BARRIER) |
979 (do_sync << BIO_RW_SYNCIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 mbio->bi_private = r1_bio;
981
NeilBrown4b6d2872005-09-09 16:23:47 -0700982 if (behind_pages) {
983 struct bio_vec *bvec;
984 int j;
985
986 /* Yes, I really want the '__' version so that
987 * we clear any unused pointer in the io_vec, rather
988 * than leave them unchanged. This is important
989 * because when we come to free the pages, we won't
990 * know the originial bi_idx, so we just free
991 * them all
992 */
993 __bio_for_each_segment(bvec, mbio, j, 0)
994 bvec->bv_page = behind_pages[j];
995 if (test_bit(WriteMostly, &conf->mirrors[i].rdev->flags))
996 atomic_inc(&r1_bio->behind_remaining);
997 }
998
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 atomic_inc(&r1_bio->remaining);
NeilBrown191ea9b2005-06-21 17:17:23 -07001000
1001 bio_list_add(&bl, mbio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 }
NeilBrown4b6d2872005-09-09 16:23:47 -07001003 kfree(behind_pages); /* the behind pages are attached to the bios now */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
NeilBrown4b6d2872005-09-09 16:23:47 -07001005 bitmap_startwrite(bitmap, bio->bi_sector, r1_bio->sectors,
1006 test_bit(R1BIO_BehindIO, &r1_bio->state));
NeilBrown191ea9b2005-06-21 17:17:23 -07001007 spin_lock_irqsave(&conf->device_lock, flags);
1008 bio_list_merge(&conf->pending_bio_list, &bl);
1009 bio_list_init(&bl);
1010
1011 blk_plug_device(mddev->queue);
1012 spin_unlock_irqrestore(&conf->device_lock, flags);
1013
NeilBrowna35e63e2008-03-04 14:29:29 -08001014 /* In case raid1d snuck into freeze_array */
1015 wake_up(&conf->wait_barrier);
1016
Lars Ellenberge3881a62007-01-10 23:15:37 -08001017 if (do_sync)
1018 md_wakeup_thread(mddev->thread);
NeilBrown191ea9b2005-06-21 17:17:23 -07001019#if 0
1020 while ((bio = bio_list_pop(&bl)) != NULL)
1021 generic_make_request(bio);
1022#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
1024 return 0;
1025}
1026
1027static void status(struct seq_file *seq, mddev_t *mddev)
1028{
NeilBrown070ec552009-06-16 16:54:21 +10001029 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 int i;
1031
1032 seq_printf(seq, " [%d/%d] [", conf->raid_disks,
NeilBrown11ce99e2006-10-03 01:15:52 -07001033 conf->raid_disks - mddev->degraded);
NeilBrownddac7c72006-08-31 21:27:36 -07001034 rcu_read_lock();
1035 for (i = 0; i < conf->raid_disks; i++) {
1036 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 seq_printf(seq, "%s",
NeilBrownddac7c72006-08-31 21:27:36 -07001038 rdev && test_bit(In_sync, &rdev->flags) ? "U" : "_");
1039 }
1040 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 seq_printf(seq, "]");
1042}
1043
1044
1045static void error(mddev_t *mddev, mdk_rdev_t *rdev)
1046{
1047 char b[BDEVNAME_SIZE];
NeilBrown070ec552009-06-16 16:54:21 +10001048 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
1050 /*
1051 * If it is not operational, then we have already marked it as dead
1052 * else if it is the last working disks, ignore the error, let the
1053 * next level up know.
1054 * else mark the drive as failed
1055 */
NeilBrownb2d444d2005-11-08 21:39:31 -08001056 if (test_bit(In_sync, &rdev->flags)
NeilBrown4044ba52009-01-09 08:31:11 +11001057 && (conf->raid_disks - mddev->degraded) == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 /*
1059 * Don't fail the drive, act as though we were just a
NeilBrown4044ba52009-01-09 08:31:11 +11001060 * normal single drive.
1061 * However don't try a recovery from this drive as
1062 * it is very likely to fail.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 */
NeilBrown4044ba52009-01-09 08:31:11 +11001064 mddev->recovery_disabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 return;
NeilBrown4044ba52009-01-09 08:31:11 +11001066 }
NeilBrownc04be0a2006-10-03 01:15:53 -07001067 if (test_and_clear_bit(In_sync, &rdev->flags)) {
1068 unsigned long flags;
1069 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 mddev->degraded++;
NeilBrowndd00a992007-05-10 03:15:50 -07001071 set_bit(Faulty, &rdev->flags);
NeilBrownc04be0a2006-10-03 01:15:53 -07001072 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 /*
1074 * if recovery is running, make sure it aborts.
1075 */
NeilBrowndfc70642008-05-23 13:04:39 -07001076 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
NeilBrowndd00a992007-05-10 03:15:50 -07001077 } else
1078 set_bit(Faulty, &rdev->flags);
NeilBrown850b2b42006-10-03 01:15:46 -07001079 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001080 printk(KERN_ALERT "md/raid1:%s: Disk failure on %s, disabling device.\n"
1081 KERN_ALERT "md/raid1:%s: Operation continuing on %d devices.\n",
1082 mdname(mddev), bdevname(rdev->bdev, b),
1083 mdname(mddev), conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084}
1085
1086static void print_conf(conf_t *conf)
1087{
1088 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001090 printk(KERN_DEBUG "RAID1 conf printout:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 if (!conf) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001092 printk(KERN_DEBUG "(!conf)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 return;
1094 }
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001095 printk(KERN_DEBUG " --- wd:%d rd:%d\n", conf->raid_disks - conf->mddev->degraded,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 conf->raid_disks);
1097
NeilBrownddac7c72006-08-31 21:27:36 -07001098 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 for (i = 0; i < conf->raid_disks; i++) {
1100 char b[BDEVNAME_SIZE];
NeilBrownddac7c72006-08-31 21:27:36 -07001101 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
1102 if (rdev)
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001103 printk(KERN_DEBUG " disk %d, wo:%d, o:%d, dev:%s\n",
NeilBrownddac7c72006-08-31 21:27:36 -07001104 i, !test_bit(In_sync, &rdev->flags),
1105 !test_bit(Faulty, &rdev->flags),
1106 bdevname(rdev->bdev,b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 }
NeilBrownddac7c72006-08-31 21:27:36 -07001108 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109}
1110
1111static void close_sync(conf_t *conf)
1112{
NeilBrown17999be2006-01-06 00:20:12 -08001113 wait_barrier(conf);
1114 allow_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
1116 mempool_destroy(conf->r1buf_pool);
1117 conf->r1buf_pool = NULL;
1118}
1119
1120static int raid1_spare_active(mddev_t *mddev)
1121{
1122 int i;
1123 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
1125 /*
1126 * Find all failed disks within the RAID1 configuration
NeilBrownddac7c72006-08-31 21:27:36 -07001127 * and mark them readable.
1128 * Called under mddev lock, so rcu protection not needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 */
1130 for (i = 0; i < conf->raid_disks; i++) {
NeilBrownddac7c72006-08-31 21:27:36 -07001131 mdk_rdev_t *rdev = conf->mirrors[i].rdev;
1132 if (rdev
1133 && !test_bit(Faulty, &rdev->flags)
NeilBrownc04be0a2006-10-03 01:15:53 -07001134 && !test_and_set_bit(In_sync, &rdev->flags)) {
1135 unsigned long flags;
1136 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 mddev->degraded--;
NeilBrownc04be0a2006-10-03 01:15:53 -07001138 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 }
1140 }
1141
1142 print_conf(conf);
1143 return 0;
1144}
1145
1146
1147static int raid1_add_disk(mddev_t *mddev, mdk_rdev_t *rdev)
1148{
1149 conf_t *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10001150 int err = -EEXIST;
NeilBrown41158c72005-06-21 17:17:25 -07001151 int mirror = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 mirror_info_t *p;
Neil Brown6c2fce22008-06-28 08:31:31 +10001153 int first = 0;
1154 int last = mddev->raid_disks - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155
Neil Brown6c2fce22008-06-28 08:31:31 +10001156 if (rdev->raid_disk >= 0)
1157 first = last = rdev->raid_disk;
1158
1159 for (mirror = first; mirror <= last; mirror++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 if ( !(p=conf->mirrors+mirror)->rdev) {
1161
Martin K. Petersen8f6c2e42009-07-01 11:13:45 +10001162 disk_stack_limits(mddev->gendisk, rdev->bdev,
1163 rdev->data_offset << 9);
NeilBrown627a2d32010-03-08 16:44:38 +11001164 /* as we don't honour merge_bvec_fn, we must
1165 * never risk violating it, so limit
1166 * ->max_segments to one lying with a single
1167 * page, as a one page request is never in
1168 * violation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 */
NeilBrown627a2d32010-03-08 16:44:38 +11001170 if (rdev->bdev->bd_disk->queue->merge_bvec_fn) {
1171 blk_queue_max_segments(mddev->queue, 1);
1172 blk_queue_segment_boundary(mddev->queue,
1173 PAGE_CACHE_SIZE - 1);
1174 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
1176 p->head_position = 0;
1177 rdev->raid_disk = mirror;
Neil Brown199050e2008-06-28 08:31:33 +10001178 err = 0;
NeilBrown6aea114a2005-11-28 13:44:13 -08001179 /* As all devices are equivalent, we don't need a full recovery
1180 * if this was recently any drive of the array
1181 */
1182 if (rdev->saved_raid_disk < 0)
NeilBrown41158c72005-06-21 17:17:25 -07001183 conf->fullsync = 1;
Suzanne Woodd6065f72005-11-08 21:39:27 -08001184 rcu_assign_pointer(p->rdev, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 break;
1186 }
Andre Nollac5e7112009-08-03 10:59:47 +10001187 md_integrity_add_rdev(rdev, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 print_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10001189 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190}
1191
1192static int raid1_remove_disk(mddev_t *mddev, int number)
1193{
1194 conf_t *conf = mddev->private;
1195 int err = 0;
1196 mdk_rdev_t *rdev;
1197 mirror_info_t *p = conf->mirrors+ number;
1198
1199 print_conf(conf);
1200 rdev = p->rdev;
1201 if (rdev) {
NeilBrownb2d444d2005-11-08 21:39:31 -08001202 if (test_bit(In_sync, &rdev->flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 atomic_read(&rdev->nr_pending)) {
1204 err = -EBUSY;
1205 goto abort;
1206 }
NeilBrowndfc70642008-05-23 13:04:39 -07001207 /* Only remove non-faulty devices is recovery
1208 * is not possible.
1209 */
1210 if (!test_bit(Faulty, &rdev->flags) &&
1211 mddev->degraded < conf->raid_disks) {
1212 err = -EBUSY;
1213 goto abort;
1214 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 p->rdev = NULL;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07001216 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 if (atomic_read(&rdev->nr_pending)) {
1218 /* lost the race, try later */
1219 err = -EBUSY;
1220 p->rdev = rdev;
Andre Nollac5e7112009-08-03 10:59:47 +10001221 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 }
Andre Nollac5e7112009-08-03 10:59:47 +10001223 md_integrity_register(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 }
1225abort:
1226
1227 print_conf(conf);
1228 return err;
1229}
1230
1231
NeilBrown6712ecf2007-09-27 12:47:43 +02001232static void end_sync_read(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233{
H Hartley Sweeten7b928132010-03-08 16:02:40 +11001234 r1bio_t *r1_bio = bio->bi_private;
NeilBrownd11c1712006-01-06 00:20:26 -08001235 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
NeilBrownd11c1712006-01-06 00:20:26 -08001237 for (i=r1_bio->mddev->raid_disks; i--; )
1238 if (r1_bio->bios[i] == bio)
1239 break;
1240 BUG_ON(i < 0);
1241 update_head_pos(i, r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 /*
1243 * we have read a block, now it needs to be re-written,
1244 * or re-read if the read failed.
1245 * We don't do much here, just schedule handling by raid1d
1246 */
NeilBrown69382e82006-01-06 00:20:22 -08001247 if (test_bit(BIO_UPTODATE, &bio->bi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 set_bit(R1BIO_Uptodate, &r1_bio->state);
NeilBrownd11c1712006-01-06 00:20:26 -08001249
1250 if (atomic_dec_and_test(&r1_bio->remaining))
1251 reschedule_retry(r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252}
1253
NeilBrown6712ecf2007-09-27 12:47:43 +02001254static void end_sync_write(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255{
1256 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
H Hartley Sweeten7b928132010-03-08 16:02:40 +11001257 r1bio_t *r1_bio = bio->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 mddev_t *mddev = r1_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +10001259 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 int i;
1261 int mirror=0;
1262
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 for (i = 0; i < conf->raid_disks; i++)
1264 if (r1_bio->bios[i] == bio) {
1265 mirror = i;
1266 break;
1267 }
NeilBrown6b1117d2006-03-31 02:31:57 -08001268 if (!uptodate) {
1269 int sync_blocks = 0;
1270 sector_t s = r1_bio->sector;
1271 long sectors_to_go = r1_bio->sectors;
1272 /* make sure these bits doesn't get cleared. */
1273 do {
NeilBrown5e3db642006-07-10 04:44:18 -07001274 bitmap_end_sync(mddev->bitmap, s,
NeilBrown6b1117d2006-03-31 02:31:57 -08001275 &sync_blocks, 1);
1276 s += sync_blocks;
1277 sectors_to_go -= sync_blocks;
1278 } while (sectors_to_go > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 md_error(mddev, conf->mirrors[mirror].rdev);
NeilBrown6b1117d2006-03-31 02:31:57 -08001280 }
NeilBrowne3b97032005-08-04 12:53:34 -07001281
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 update_head_pos(mirror, r1_bio);
1283
1284 if (atomic_dec_and_test(&r1_bio->remaining)) {
NeilBrown73d5c382009-02-25 13:18:47 +11001285 sector_t s = r1_bio->sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 put_buf(r1_bio);
NeilBrown73d5c382009-02-25 13:18:47 +11001287 md_done_sync(mddev, s, uptodate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289}
1290
1291static void sync_request_write(mddev_t *mddev, r1bio_t *r1_bio)
1292{
NeilBrown070ec552009-06-16 16:54:21 +10001293 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 int i;
1295 int disks = conf->raid_disks;
1296 struct bio *bio, *wbio;
1297
1298 bio = r1_bio->bios[r1_bio->read_disk];
1299
NeilBrown69382e82006-01-06 00:20:22 -08001300
NeilBrownd11c1712006-01-06 00:20:26 -08001301 if (test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) {
1302 /* We have read all readable devices. If we haven't
1303 * got the block, then there is no hope left.
1304 * If we have, then we want to do a comparison
1305 * and skip the write if everything is the same.
1306 * If any blocks failed to read, then we need to
1307 * attempt an over-write
1308 */
1309 int primary;
1310 if (!test_bit(R1BIO_Uptodate, &r1_bio->state)) {
1311 for (i=0; i<mddev->raid_disks; i++)
1312 if (r1_bio->bios[i]->bi_end_io == end_sync_read)
1313 md_error(mddev, conf->mirrors[i].rdev);
1314
1315 md_done_sync(mddev, r1_bio->sectors, 1);
1316 put_buf(r1_bio);
1317 return;
1318 }
1319 for (primary=0; primary<mddev->raid_disks; primary++)
1320 if (r1_bio->bios[primary]->bi_end_io == end_sync_read &&
1321 test_bit(BIO_UPTODATE, &r1_bio->bios[primary]->bi_flags)) {
1322 r1_bio->bios[primary]->bi_end_io = NULL;
NeilBrown03c902e2006-01-06 00:20:46 -08001323 rdev_dec_pending(conf->mirrors[primary].rdev, mddev);
NeilBrownd11c1712006-01-06 00:20:26 -08001324 break;
1325 }
1326 r1_bio->read_disk = primary;
1327 for (i=0; i<mddev->raid_disks; i++)
Mike Accettaed456662007-06-16 10:16:07 -07001328 if (r1_bio->bios[i]->bi_end_io == end_sync_read) {
NeilBrownd11c1712006-01-06 00:20:26 -08001329 int j;
1330 int vcnt = r1_bio->sectors >> (PAGE_SHIFT- 9);
1331 struct bio *pbio = r1_bio->bios[primary];
1332 struct bio *sbio = r1_bio->bios[i];
Mike Accettaed456662007-06-16 10:16:07 -07001333
1334 if (test_bit(BIO_UPTODATE, &sbio->bi_flags)) {
1335 for (j = vcnt; j-- ; ) {
1336 struct page *p, *s;
1337 p = pbio->bi_io_vec[j].bv_page;
1338 s = sbio->bi_io_vec[j].bv_page;
1339 if (memcmp(page_address(p),
1340 page_address(s),
1341 PAGE_SIZE))
1342 break;
1343 }
1344 } else
1345 j = 0;
NeilBrownd11c1712006-01-06 00:20:26 -08001346 if (j >= 0)
1347 mddev->resync_mismatches += r1_bio->sectors;
NeilBrowncf7a4412007-10-16 23:30:55 -07001348 if (j < 0 || (test_bit(MD_RECOVERY_CHECK, &mddev->recovery)
1349 && test_bit(BIO_UPTODATE, &sbio->bi_flags))) {
NeilBrownd11c1712006-01-06 00:20:26 -08001350 sbio->bi_end_io = NULL;
NeilBrown03c902e2006-01-06 00:20:46 -08001351 rdev_dec_pending(conf->mirrors[i].rdev, mddev);
1352 } else {
NeilBrownd11c1712006-01-06 00:20:26 -08001353 /* fixup the bio for reuse */
NeilBrown698b18c2008-05-23 13:04:35 -07001354 int size;
NeilBrownd11c1712006-01-06 00:20:26 -08001355 sbio->bi_vcnt = vcnt;
1356 sbio->bi_size = r1_bio->sectors << 9;
1357 sbio->bi_idx = 0;
1358 sbio->bi_phys_segments = 0;
NeilBrownd11c1712006-01-06 00:20:26 -08001359 sbio->bi_flags &= ~(BIO_POOL_MASK - 1);
1360 sbio->bi_flags |= 1 << BIO_UPTODATE;
1361 sbio->bi_next = NULL;
1362 sbio->bi_sector = r1_bio->sector +
1363 conf->mirrors[i].rdev->data_offset;
1364 sbio->bi_bdev = conf->mirrors[i].rdev->bdev;
NeilBrown698b18c2008-05-23 13:04:35 -07001365 size = sbio->bi_size;
1366 for (j = 0; j < vcnt ; j++) {
1367 struct bio_vec *bi;
1368 bi = &sbio->bi_io_vec[j];
1369 bi->bv_offset = 0;
1370 if (size > PAGE_SIZE)
1371 bi->bv_len = PAGE_SIZE;
1372 else
1373 bi->bv_len = size;
1374 size -= PAGE_SIZE;
1375 memcpy(page_address(bi->bv_page),
NeilBrown3eda22d2007-01-26 00:57:01 -08001376 page_address(pbio->bi_io_vec[j].bv_page),
1377 PAGE_SIZE);
NeilBrown698b18c2008-05-23 13:04:35 -07001378 }
NeilBrown3eda22d2007-01-26 00:57:01 -08001379
NeilBrownd11c1712006-01-06 00:20:26 -08001380 }
1381 }
1382 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 if (!test_bit(R1BIO_Uptodate, &r1_bio->state)) {
NeilBrown69382e82006-01-06 00:20:22 -08001384 /* ouch - failed to read all of that.
1385 * Try some synchronous reads of other devices to get
1386 * good data, much like with normal read errors. Only
NeilBrownddac7c72006-08-31 21:27:36 -07001387 * read into the pages we already have so we don't
NeilBrown69382e82006-01-06 00:20:22 -08001388 * need to re-issue the read request.
1389 * We don't need to freeze the array, because being in an
1390 * active sync request, there is no normal IO, and
1391 * no overlapping syncs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 */
NeilBrown69382e82006-01-06 00:20:22 -08001393 sector_t sect = r1_bio->sector;
1394 int sectors = r1_bio->sectors;
1395 int idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
NeilBrown69382e82006-01-06 00:20:22 -08001397 while(sectors) {
1398 int s = sectors;
1399 int d = r1_bio->read_disk;
1400 int success = 0;
1401 mdk_rdev_t *rdev;
1402
1403 if (s > (PAGE_SIZE>>9))
1404 s = PAGE_SIZE >> 9;
1405 do {
1406 if (r1_bio->bios[d]->bi_end_io == end_sync_read) {
NeilBrownddac7c72006-08-31 21:27:36 -07001407 /* No rcu protection needed here devices
1408 * can only be removed when no resync is
1409 * active, and resync is currently active
1410 */
NeilBrown69382e82006-01-06 00:20:22 -08001411 rdev = conf->mirrors[d].rdev;
1412 if (sync_page_io(rdev->bdev,
1413 sect + rdev->data_offset,
1414 s<<9,
1415 bio->bi_io_vec[idx].bv_page,
1416 READ)) {
1417 success = 1;
1418 break;
1419 }
1420 }
1421 d++;
1422 if (d == conf->raid_disks)
1423 d = 0;
1424 } while (!success && d != r1_bio->read_disk);
1425
1426 if (success) {
NeilBrown097426f2006-01-06 00:20:37 -08001427 int start = d;
NeilBrown69382e82006-01-06 00:20:22 -08001428 /* write it back and re-read */
1429 set_bit(R1BIO_Uptodate, &r1_bio->state);
1430 while (d != r1_bio->read_disk) {
1431 if (d == 0)
1432 d = conf->raid_disks;
1433 d--;
1434 if (r1_bio->bios[d]->bi_end_io != end_sync_read)
1435 continue;
1436 rdev = conf->mirrors[d].rdev;
NeilBrown4dbcdc72006-01-06 00:20:52 -08001437 atomic_add(s, &rdev->corrected_errors);
NeilBrown69382e82006-01-06 00:20:22 -08001438 if (sync_page_io(rdev->bdev,
1439 sect + rdev->data_offset,
1440 s<<9,
1441 bio->bi_io_vec[idx].bv_page,
NeilBrown097426f2006-01-06 00:20:37 -08001442 WRITE) == 0)
1443 md_error(mddev, rdev);
1444 }
1445 d = start;
1446 while (d != r1_bio->read_disk) {
1447 if (d == 0)
1448 d = conf->raid_disks;
1449 d--;
1450 if (r1_bio->bios[d]->bi_end_io != end_sync_read)
1451 continue;
1452 rdev = conf->mirrors[d].rdev;
1453 if (sync_page_io(rdev->bdev,
NeilBrown69382e82006-01-06 00:20:22 -08001454 sect + rdev->data_offset,
1455 s<<9,
1456 bio->bi_io_vec[idx].bv_page,
NeilBrown097426f2006-01-06 00:20:37 -08001457 READ) == 0)
NeilBrown69382e82006-01-06 00:20:22 -08001458 md_error(mddev, rdev);
NeilBrown69382e82006-01-06 00:20:22 -08001459 }
1460 } else {
1461 char b[BDEVNAME_SIZE];
1462 /* Cannot read from anywhere, array is toast */
1463 md_error(mddev, conf->mirrors[r1_bio->read_disk].rdev);
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001464 printk(KERN_ALERT "md/raid1:%s: %s: unrecoverable I/O read error"
NeilBrown69382e82006-01-06 00:20:22 -08001465 " for block %llu\n",
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001466 mdname(mddev),
1467 bdevname(bio->bi_bdev, b),
NeilBrown69382e82006-01-06 00:20:22 -08001468 (unsigned long long)r1_bio->sector);
1469 md_done_sync(mddev, r1_bio->sectors, 0);
1470 put_buf(r1_bio);
1471 return;
1472 }
1473 sectors -= s;
1474 sect += s;
1475 idx ++;
1476 }
1477 }
NeilBrownd11c1712006-01-06 00:20:26 -08001478
1479 /*
1480 * schedule writes
1481 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 atomic_set(&r1_bio->remaining, 1);
1483 for (i = 0; i < disks ; i++) {
1484 wbio = r1_bio->bios[i];
NeilBrown3e198f72006-01-06 00:20:21 -08001485 if (wbio->bi_end_io == NULL ||
1486 (wbio->bi_end_io == end_sync_read &&
1487 (i == r1_bio->read_disk ||
1488 !test_bit(MD_RECOVERY_SYNC, &mddev->recovery))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 continue;
1490
NeilBrown3e198f72006-01-06 00:20:21 -08001491 wbio->bi_rw = WRITE;
1492 wbio->bi_end_io = end_sync_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 atomic_inc(&r1_bio->remaining);
1494 md_sync_acct(conf->mirrors[i].rdev->bdev, wbio->bi_size >> 9);
NeilBrown191ea9b2005-06-21 17:17:23 -07001495
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 generic_make_request(wbio);
1497 }
1498
1499 if (atomic_dec_and_test(&r1_bio->remaining)) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001500 /* if we're here, all write(s) have completed, so clean up */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 md_done_sync(mddev, r1_bio->sectors, 1);
1502 put_buf(r1_bio);
1503 }
1504}
1505
1506/*
1507 * This is a kernel thread which:
1508 *
1509 * 1. Retries failed read operations on working mirrors.
1510 * 2. Updates the raid superblock when problems encounter.
1511 * 3. Performs writes following reads for array syncronising.
1512 */
1513
NeilBrown867868f2006-10-03 01:15:51 -07001514static void fix_read_error(conf_t *conf, int read_disk,
1515 sector_t sect, int sectors)
1516{
1517 mddev_t *mddev = conf->mddev;
1518 while(sectors) {
1519 int s = sectors;
1520 int d = read_disk;
1521 int success = 0;
1522 int start;
1523 mdk_rdev_t *rdev;
1524
1525 if (s > (PAGE_SIZE>>9))
1526 s = PAGE_SIZE >> 9;
1527
1528 do {
1529 /* Note: no rcu protection needed here
1530 * as this is synchronous in the raid1d thread
1531 * which is the thread that might remove
1532 * a device. If raid1d ever becomes multi-threaded....
1533 */
1534 rdev = conf->mirrors[d].rdev;
1535 if (rdev &&
1536 test_bit(In_sync, &rdev->flags) &&
1537 sync_page_io(rdev->bdev,
1538 sect + rdev->data_offset,
1539 s<<9,
1540 conf->tmppage, READ))
1541 success = 1;
1542 else {
1543 d++;
1544 if (d == conf->raid_disks)
1545 d = 0;
1546 }
1547 } while (!success && d != read_disk);
1548
1549 if (!success) {
1550 /* Cannot read from anywhere -- bye bye array */
1551 md_error(mddev, conf->mirrors[read_disk].rdev);
1552 break;
1553 }
1554 /* write it back and re-read */
1555 start = d;
1556 while (d != read_disk) {
1557 if (d==0)
1558 d = conf->raid_disks;
1559 d--;
1560 rdev = conf->mirrors[d].rdev;
1561 if (rdev &&
1562 test_bit(In_sync, &rdev->flags)) {
1563 if (sync_page_io(rdev->bdev,
1564 sect + rdev->data_offset,
1565 s<<9, conf->tmppage, WRITE)
1566 == 0)
1567 /* Well, this device is dead */
1568 md_error(mddev, rdev);
1569 }
1570 }
1571 d = start;
1572 while (d != read_disk) {
1573 char b[BDEVNAME_SIZE];
1574 if (d==0)
1575 d = conf->raid_disks;
1576 d--;
1577 rdev = conf->mirrors[d].rdev;
1578 if (rdev &&
1579 test_bit(In_sync, &rdev->flags)) {
1580 if (sync_page_io(rdev->bdev,
1581 sect + rdev->data_offset,
1582 s<<9, conf->tmppage, READ)
1583 == 0)
1584 /* Well, this device is dead */
1585 md_error(mddev, rdev);
1586 else {
1587 atomic_add(s, &rdev->corrected_errors);
1588 printk(KERN_INFO
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001589 "md/raid1:%s: read error corrected "
NeilBrown867868f2006-10-03 01:15:51 -07001590 "(%d sectors at %llu on %s)\n",
1591 mdname(mddev), s,
Randy Dunlap969b7552006-10-28 10:38:32 -07001592 (unsigned long long)(sect +
1593 rdev->data_offset),
NeilBrown867868f2006-10-03 01:15:51 -07001594 bdevname(rdev->bdev, b));
1595 }
1596 }
1597 }
1598 sectors -= s;
1599 sect += s;
1600 }
1601}
1602
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603static void raid1d(mddev_t *mddev)
1604{
1605 r1bio_t *r1_bio;
1606 struct bio *bio;
1607 unsigned long flags;
NeilBrown070ec552009-06-16 16:54:21 +10001608 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 struct list_head *head = &conf->retry_list;
1610 int unplug=0;
1611 mdk_rdev_t *rdev;
1612
1613 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
1615 for (;;) {
1616 char b[BDEVNAME_SIZE];
NeilBrowna35e63e2008-03-04 14:29:29 -08001617
1618 unplug += flush_pending_writes(conf);
1619
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrowna35e63e2008-03-04 14:29:29 -08001621 if (list_empty(head)) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001622 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 break;
NeilBrowna35e63e2008-03-04 14:29:29 -08001624 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 r1_bio = list_entry(head->prev, r1bio_t, retry_list);
1626 list_del(head->prev);
NeilBrownddaf22a2006-01-06 00:20:19 -08001627 conf->nr_queued--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 spin_unlock_irqrestore(&conf->device_lock, flags);
1629
1630 mddev = r1_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +10001631 conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 if (test_bit(R1BIO_IsSync, &r1_bio->state)) {
1633 sync_request_write(mddev, r1_bio);
1634 unplug = 1;
NeilBrowna9701a32005-11-08 21:39:34 -08001635 } else if (test_bit(R1BIO_BarrierRetry, &r1_bio->state)) {
1636 /* some requests in the r1bio were BIO_RW_BARRIER
NeilBrownbea27712006-05-01 12:15:46 -07001637 * requests which failed with -EOPNOTSUPP. Hohumm..
NeilBrowna9701a32005-11-08 21:39:34 -08001638 * Better resubmit without the barrier.
1639 * We know which devices to resubmit for, because
1640 * all others have had their bios[] entry cleared.
NeilBrown5e7dd2a2006-05-01 12:15:47 -07001641 * We already have a nr_pending reference on these rdevs.
NeilBrowna9701a32005-11-08 21:39:34 -08001642 */
1643 int i;
Jens Axboe1f98a132009-09-11 14:32:04 +02001644 const bool do_sync = bio_rw_flagged(r1_bio->master_bio, BIO_RW_SYNCIO);
NeilBrowna9701a32005-11-08 21:39:34 -08001645 clear_bit(R1BIO_BarrierRetry, &r1_bio->state);
1646 clear_bit(R1BIO_Barrier, &r1_bio->state);
1647 for (i=0; i < conf->raid_disks; i++)
NeilBrown2f889122006-03-27 01:18:19 -08001648 if (r1_bio->bios[i])
1649 atomic_inc(&r1_bio->remaining);
1650 for (i=0; i < conf->raid_disks; i++)
NeilBrowna9701a32005-11-08 21:39:34 -08001651 if (r1_bio->bios[i]) {
1652 struct bio_vec *bvec;
1653 int j;
1654
1655 bio = bio_clone(r1_bio->master_bio, GFP_NOIO);
1656 /* copy pages from the failed bio, as
1657 * this might be a write-behind device */
1658 __bio_for_each_segment(bvec, bio, j, 0)
1659 bvec->bv_page = bio_iovec_idx(r1_bio->bios[i], j)->bv_page;
1660 bio_put(r1_bio->bios[i]);
1661 bio->bi_sector = r1_bio->sector +
1662 conf->mirrors[i].rdev->data_offset;
1663 bio->bi_bdev = conf->mirrors[i].rdev->bdev;
1664 bio->bi_end_io = raid1_end_write_request;
Dmitry Monakhov1ef04fe2009-09-20 05:52:25 +04001665 bio->bi_rw = WRITE |
1666 (do_sync << BIO_RW_SYNCIO);
NeilBrowna9701a32005-11-08 21:39:34 -08001667 bio->bi_private = r1_bio;
1668 r1_bio->bios[i] = bio;
1669 generic_make_request(bio);
1670 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 } else {
1672 int disk;
NeilBrownddaf22a2006-01-06 00:20:19 -08001673
1674 /* we got a read error. Maybe the drive is bad. Maybe just
1675 * the block and we can fix it.
1676 * We freeze all other IO, and try reading the block from
1677 * other devices. When we find one, we re-write
1678 * and check it that fixes the read error.
1679 * This is all done synchronously while the array is
1680 * frozen
1681 */
NeilBrown867868f2006-10-03 01:15:51 -07001682 if (mddev->ro == 0) {
1683 freeze_array(conf);
1684 fix_read_error(conf, r1_bio->read_disk,
1685 r1_bio->sector,
1686 r1_bio->sectors);
1687 unfreeze_array(conf);
NeilBrownd0e26072009-12-01 17:30:59 +11001688 } else
1689 md_error(mddev,
1690 conf->mirrors[r1_bio->read_disk].rdev);
NeilBrownddaf22a2006-01-06 00:20:19 -08001691
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 bio = r1_bio->bios[r1_bio->read_disk];
NeilBrownd0e26072009-12-01 17:30:59 +11001693 if ((disk=read_balance(conf, r1_bio)) == -1) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001694 printk(KERN_ALERT "md/raid1:%s: %s: unrecoverable I/O"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 " read error for block %llu\n",
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001696 mdname(mddev),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 bdevname(bio->bi_bdev,b),
1698 (unsigned long long)r1_bio->sector);
1699 raid_end_bio_io(r1_bio);
1700 } else {
Jens Axboe1f98a132009-09-11 14:32:04 +02001701 const bool do_sync = bio_rw_flagged(r1_bio->master_bio, BIO_RW_SYNCIO);
NeilBrowncf30a472006-01-06 00:20:23 -08001702 r1_bio->bios[r1_bio->read_disk] =
1703 mddev->ro ? IO_BLOCKED : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 r1_bio->read_disk = disk;
1705 bio_put(bio);
1706 bio = bio_clone(r1_bio->master_bio, GFP_NOIO);
1707 r1_bio->bios[r1_bio->read_disk] = bio;
1708 rdev = conf->mirrors[disk].rdev;
1709 if (printk_ratelimit())
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001710 printk(KERN_ERR "md/raid1:%s: redirecting sector %llu to"
NeilBrownd754c5a2010-04-07 12:14:43 +10001711 " other mirror: %s\n",
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001712 mdname(mddev),
NeilBrownd754c5a2010-04-07 12:14:43 +10001713 (unsigned long long)r1_bio->sector,
1714 bdevname(rdev->bdev,b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 bio->bi_sector = r1_bio->sector + rdev->data_offset;
1716 bio->bi_bdev = rdev->bdev;
1717 bio->bi_end_io = raid1_end_read_request;
Dmitry Monakhov1ef04fe2009-09-20 05:52:25 +04001718 bio->bi_rw = READ | (do_sync << BIO_RW_SYNCIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 bio->bi_private = r1_bio;
1720 unplug = 1;
1721 generic_make_request(bio);
1722 }
1723 }
NeilBrown1d9d5242009-10-16 15:55:32 +11001724 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 if (unplug)
1727 unplug_slaves(mddev);
1728}
1729
1730
1731static int init_resync(conf_t *conf)
1732{
1733 int buffs;
1734
1735 buffs = RESYNC_WINDOW / RESYNC_BLOCK_SIZE;
Eric Sesterhenn9e77c482006-04-01 01:08:49 +02001736 BUG_ON(conf->r1buf_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 conf->r1buf_pool = mempool_create(buffs, r1buf_pool_alloc, r1buf_pool_free,
1738 conf->poolinfo);
1739 if (!conf->r1buf_pool)
1740 return -ENOMEM;
1741 conf->next_resync = 0;
1742 return 0;
1743}
1744
1745/*
1746 * perform a "sync" on one "block"
1747 *
1748 * We need to make sure that no normal I/O request - particularly write
1749 * requests - conflict with active sync requests.
1750 *
1751 * This is achieved by tracking pending requests and a 'barrier' concept
1752 * that can be installed to exclude normal IO requests.
1753 */
1754
NeilBrown57afd892005-06-21 17:17:13 -07001755static sector_t sync_request(mddev_t *mddev, sector_t sector_nr, int *skipped, int go_faster)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756{
NeilBrown070ec552009-06-16 16:54:21 +10001757 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 r1bio_t *r1_bio;
1759 struct bio *bio;
1760 sector_t max_sector, nr_sectors;
NeilBrown3e198f72006-01-06 00:20:21 -08001761 int disk = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 int i;
NeilBrown3e198f72006-01-06 00:20:21 -08001763 int wonly = -1;
1764 int write_targets = 0, read_targets = 0;
NeilBrown191ea9b2005-06-21 17:17:23 -07001765 int sync_blocks;
NeilBrowne3b97032005-08-04 12:53:34 -07001766 int still_degraded = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
1768 if (!conf->r1buf_pool)
1769 if (init_resync(conf))
NeilBrown57afd892005-06-21 17:17:13 -07001770 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
Andre Noll58c0fed2009-03-31 14:33:13 +11001772 max_sector = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 if (sector_nr >= max_sector) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001774 /* If we aborted, we need to abort the
1775 * sync on the 'current' bitmap chunk (there will
1776 * only be one in raid1 resync.
1777 * We can find the current addess in mddev->curr_resync
1778 */
NeilBrown6a806c52005-07-15 03:56:35 -07001779 if (mddev->curr_resync < max_sector) /* aborted */
1780 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
NeilBrown191ea9b2005-06-21 17:17:23 -07001781 &sync_blocks, 1);
NeilBrown6a806c52005-07-15 03:56:35 -07001782 else /* completed sync */
NeilBrown191ea9b2005-06-21 17:17:23 -07001783 conf->fullsync = 0;
NeilBrown6a806c52005-07-15 03:56:35 -07001784
1785 bitmap_close_sync(mddev->bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 close_sync(conf);
1787 return 0;
1788 }
1789
NeilBrown07d84d102006-06-26 00:27:56 -07001790 if (mddev->bitmap == NULL &&
1791 mddev->recovery_cp == MaxSector &&
NeilBrown6394cca2006-08-27 01:23:50 -07001792 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
NeilBrown07d84d102006-06-26 00:27:56 -07001793 conf->fullsync == 0) {
1794 *skipped = 1;
1795 return max_sector - sector_nr;
1796 }
NeilBrown6394cca2006-08-27 01:23:50 -07001797 /* before building a request, check if we can skip these blocks..
1798 * This call the bitmap_start_sync doesn't actually record anything
1799 */
NeilBrowne3b97032005-08-04 12:53:34 -07001800 if (!bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
NeilBrowne5de4852005-11-08 21:39:38 -08001801 !conf->fullsync && !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001802 /* We can skip this block, and probably several more */
1803 *skipped = 1;
1804 return sync_blocks;
1805 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 /*
NeilBrown17999be2006-01-06 00:20:12 -08001807 * If there is non-resync activity waiting for a turn,
1808 * and resync is going fast enough,
1809 * then let it though before starting on this new sync request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 */
NeilBrown17999be2006-01-06 00:20:12 -08001811 if (!go_faster && conf->nr_waiting)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 msleep_interruptible(1000);
NeilBrown17999be2006-01-06 00:20:12 -08001813
NeilBrownb47490c2008-02-06 01:39:50 -08001814 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
NeilBrown17999be2006-01-06 00:20:12 -08001815 raise_barrier(conf);
1816
1817 conf->next_resync = sector_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 r1_bio = mempool_alloc(conf->r1buf_pool, GFP_NOIO);
NeilBrown3e198f72006-01-06 00:20:21 -08001820 rcu_read_lock();
1821 /*
1822 * If we get a correctably read error during resync or recovery,
1823 * we might want to read from a different device. So we
1824 * flag all drives that could conceivably be read from for READ,
1825 * and any others (which will be non-In_sync devices) for WRITE.
1826 * If a read fails, we try reading from something else for which READ
1827 * is OK.
1828 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 r1_bio->mddev = mddev;
1831 r1_bio->sector = sector_nr;
NeilBrown191ea9b2005-06-21 17:17:23 -07001832 r1_bio->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 set_bit(R1BIO_IsSync, &r1_bio->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834
1835 for (i=0; i < conf->raid_disks; i++) {
NeilBrown3e198f72006-01-06 00:20:21 -08001836 mdk_rdev_t *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 bio = r1_bio->bios[i];
1838
1839 /* take from bio_init */
1840 bio->bi_next = NULL;
1841 bio->bi_flags |= 1 << BIO_UPTODATE;
NeilBrown802ba062006-12-13 00:34:13 -08001842 bio->bi_rw = READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 bio->bi_vcnt = 0;
1844 bio->bi_idx = 0;
1845 bio->bi_phys_segments = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 bio->bi_size = 0;
1847 bio->bi_end_io = NULL;
1848 bio->bi_private = NULL;
1849
NeilBrown3e198f72006-01-06 00:20:21 -08001850 rdev = rcu_dereference(conf->mirrors[i].rdev);
1851 if (rdev == NULL ||
1852 test_bit(Faulty, &rdev->flags)) {
NeilBrowne3b97032005-08-04 12:53:34 -07001853 still_degraded = 1;
1854 continue;
NeilBrown3e198f72006-01-06 00:20:21 -08001855 } else if (!test_bit(In_sync, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 bio->bi_rw = WRITE;
1857 bio->bi_end_io = end_sync_write;
1858 write_targets ++;
NeilBrown3e198f72006-01-06 00:20:21 -08001859 } else {
1860 /* may need to read from here */
1861 bio->bi_rw = READ;
1862 bio->bi_end_io = end_sync_read;
1863 if (test_bit(WriteMostly, &rdev->flags)) {
1864 if (wonly < 0)
1865 wonly = i;
1866 } else {
1867 if (disk < 0)
1868 disk = i;
1869 }
1870 read_targets++;
1871 }
1872 atomic_inc(&rdev->nr_pending);
1873 bio->bi_sector = sector_nr + rdev->data_offset;
1874 bio->bi_bdev = rdev->bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 bio->bi_private = r1_bio;
1876 }
NeilBrown3e198f72006-01-06 00:20:21 -08001877 rcu_read_unlock();
1878 if (disk < 0)
1879 disk = wonly;
1880 r1_bio->read_disk = disk;
NeilBrown191ea9b2005-06-21 17:17:23 -07001881
NeilBrown3e198f72006-01-06 00:20:21 -08001882 if (test_bit(MD_RECOVERY_SYNC, &mddev->recovery) && read_targets > 0)
1883 /* extra read targets are also write targets */
1884 write_targets += read_targets-1;
1885
1886 if (write_targets == 0 || read_targets == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 /* There is nowhere to write, so all non-sync
1888 * drives must be failed - so we are finished
1889 */
NeilBrown57afd892005-06-21 17:17:13 -07001890 sector_t rv = max_sector - sector_nr;
1891 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 put_buf(r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 return rv;
1894 }
1895
NeilBrownc6207272008-02-06 01:39:52 -08001896 if (max_sector > mddev->resync_max)
1897 max_sector = mddev->resync_max; /* Don't do IO beyond here */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 nr_sectors = 0;
NeilBrown289e99e2005-06-21 17:17:24 -07001899 sync_blocks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 do {
1901 struct page *page;
1902 int len = PAGE_SIZE;
1903 if (sector_nr + (len>>9) > max_sector)
1904 len = (max_sector - sector_nr) << 9;
1905 if (len == 0)
1906 break;
NeilBrown6a806c52005-07-15 03:56:35 -07001907 if (sync_blocks == 0) {
1908 if (!bitmap_start_sync(mddev->bitmap, sector_nr,
NeilBrowne5de4852005-11-08 21:39:38 -08001909 &sync_blocks, still_degraded) &&
1910 !conf->fullsync &&
1911 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery))
NeilBrown6a806c52005-07-15 03:56:35 -07001912 break;
Eric Sesterhenn9e77c482006-04-01 01:08:49 +02001913 BUG_ON(sync_blocks < (PAGE_SIZE>>9));
NeilBrown6a806c52005-07-15 03:56:35 -07001914 if (len > (sync_blocks<<9))
1915 len = sync_blocks<<9;
NeilBrownab7a30c2005-06-21 17:17:23 -07001916 }
NeilBrown191ea9b2005-06-21 17:17:23 -07001917
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 for (i=0 ; i < conf->raid_disks; i++) {
1919 bio = r1_bio->bios[i];
1920 if (bio->bi_end_io) {
NeilBrownd11c1712006-01-06 00:20:26 -08001921 page = bio->bi_io_vec[bio->bi_vcnt].bv_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 if (bio_add_page(bio, page, len, 0) == 0) {
1923 /* stop here */
NeilBrownd11c1712006-01-06 00:20:26 -08001924 bio->bi_io_vec[bio->bi_vcnt].bv_page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 while (i > 0) {
1926 i--;
1927 bio = r1_bio->bios[i];
NeilBrown6a806c52005-07-15 03:56:35 -07001928 if (bio->bi_end_io==NULL)
1929 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 /* remove last page from this bio */
1931 bio->bi_vcnt--;
1932 bio->bi_size -= len;
1933 bio->bi_flags &= ~(1<< BIO_SEG_VALID);
1934 }
1935 goto bio_full;
1936 }
1937 }
1938 }
1939 nr_sectors += len>>9;
1940 sector_nr += len>>9;
NeilBrown191ea9b2005-06-21 17:17:23 -07001941 sync_blocks -= (len>>9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 } while (r1_bio->bios[disk]->bi_vcnt < RESYNC_PAGES);
1943 bio_full:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 r1_bio->sectors = nr_sectors;
1945
NeilBrownd11c1712006-01-06 00:20:26 -08001946 /* For a user-requested sync, we read all readable devices and do a
1947 * compare
1948 */
1949 if (test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) {
1950 atomic_set(&r1_bio->remaining, read_targets);
1951 for (i=0; i<conf->raid_disks; i++) {
1952 bio = r1_bio->bios[i];
1953 if (bio->bi_end_io == end_sync_read) {
NeilBrownddac7c72006-08-31 21:27:36 -07001954 md_sync_acct(bio->bi_bdev, nr_sectors);
NeilBrownd11c1712006-01-06 00:20:26 -08001955 generic_make_request(bio);
1956 }
1957 }
1958 } else {
1959 atomic_set(&r1_bio->remaining, 1);
1960 bio = r1_bio->bios[r1_bio->read_disk];
NeilBrownddac7c72006-08-31 21:27:36 -07001961 md_sync_acct(bio->bi_bdev, nr_sectors);
NeilBrownd11c1712006-01-06 00:20:26 -08001962 generic_make_request(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963
NeilBrownd11c1712006-01-06 00:20:26 -08001964 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 return nr_sectors;
1966}
1967
Dan Williams80c3a6c2009-03-17 18:10:40 -07001968static sector_t raid1_size(mddev_t *mddev, sector_t sectors, int raid_disks)
1969{
1970 if (sectors)
1971 return sectors;
1972
1973 return mddev->dev_sectors;
1974}
1975
NeilBrown709ae482009-12-14 12:49:51 +11001976static conf_t *setup_conf(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977{
1978 conf_t *conf;
NeilBrown709ae482009-12-14 12:49:51 +11001979 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 mirror_info_t *disk;
1981 mdk_rdev_t *rdev;
NeilBrown709ae482009-12-14 12:49:51 +11001982 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983
NeilBrown9ffae0c2006-01-06 00:20:32 -08001984 conf = kzalloc(sizeof(conf_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 if (!conf)
NeilBrown709ae482009-12-14 12:49:51 +11001986 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987
NeilBrown9ffae0c2006-01-06 00:20:32 -08001988 conf->mirrors = kzalloc(sizeof(struct mirror_info)*mddev->raid_disks,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 GFP_KERNEL);
1990 if (!conf->mirrors)
NeilBrown709ae482009-12-14 12:49:51 +11001991 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992
NeilBrownddaf22a2006-01-06 00:20:19 -08001993 conf->tmppage = alloc_page(GFP_KERNEL);
1994 if (!conf->tmppage)
NeilBrown709ae482009-12-14 12:49:51 +11001995 goto abort;
NeilBrownddaf22a2006-01-06 00:20:19 -08001996
NeilBrown709ae482009-12-14 12:49:51 +11001997 conf->poolinfo = kzalloc(sizeof(*conf->poolinfo), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 if (!conf->poolinfo)
NeilBrown709ae482009-12-14 12:49:51 +11001999 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 conf->poolinfo->raid_disks = mddev->raid_disks;
2001 conf->r1bio_pool = mempool_create(NR_RAID1_BIOS, r1bio_pool_alloc,
2002 r1bio_pool_free,
2003 conf->poolinfo);
2004 if (!conf->r1bio_pool)
NeilBrown709ae482009-12-14 12:49:51 +11002005 goto abort;
2006
NeilBrowned9bfdf2009-10-16 15:55:44 +11002007 conf->poolinfo->mddev = mddev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
Neil Browne7e72bf2008-05-14 16:05:54 -07002009 spin_lock_init(&conf->device_lock);
Cheng Renquan159ec1f2009-01-09 08:31:08 +11002010 list_for_each_entry(rdev, &mddev->disks, same_set) {
NeilBrown709ae482009-12-14 12:49:51 +11002011 int disk_idx = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 if (disk_idx >= mddev->raid_disks
2013 || disk_idx < 0)
2014 continue;
2015 disk = conf->mirrors + disk_idx;
2016
2017 disk->rdev = rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
2019 disk->head_position = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 }
2021 conf->raid_disks = mddev->raid_disks;
2022 conf->mddev = mddev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 INIT_LIST_HEAD(&conf->retry_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024
2025 spin_lock_init(&conf->resync_lock);
NeilBrown17999be2006-01-06 00:20:12 -08002026 init_waitqueue_head(&conf->wait_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
NeilBrown191ea9b2005-06-21 17:17:23 -07002028 bio_list_init(&conf->pending_bio_list);
2029 bio_list_init(&conf->flushing_bio_list);
2030
NeilBrown709ae482009-12-14 12:49:51 +11002031 conf->last_used = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 for (i = 0; i < conf->raid_disks; i++) {
2033
2034 disk = conf->mirrors + i;
2035
NeilBrown5fd6c1d2006-06-26 00:27:40 -07002036 if (!disk->rdev ||
2037 !test_bit(In_sync, &disk->rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 disk->head_position = 0;
NeilBrown918f0232007-08-22 14:01:52 -07002039 if (disk->rdev)
2040 conf->fullsync = 1;
NeilBrown709ae482009-12-14 12:49:51 +11002041 } else if (conf->last_used < 0)
2042 /*
2043 * The first working device is used as a
2044 * starting point to read balancing.
2045 */
2046 conf->last_used = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 }
NeilBrown709ae482009-12-14 12:49:51 +11002048
2049 err = -EIO;
2050 if (conf->last_used < 0) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002051 printk(KERN_ERR "md/raid1:%s: no operational mirrors\n",
NeilBrown709ae482009-12-14 12:49:51 +11002052 mdname(mddev));
2053 goto abort;
NeilBrown11ce99e2006-10-03 01:15:52 -07002054 }
NeilBrown709ae482009-12-14 12:49:51 +11002055 err = -ENOMEM;
2056 conf->thread = md_register_thread(raid1d, mddev, NULL);
2057 if (!conf->thread) {
NeilBrown191ea9b2005-06-21 17:17:23 -07002058 printk(KERN_ERR
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002059 "md/raid1:%s: couldn't allocate thread\n",
NeilBrown191ea9b2005-06-21 17:17:23 -07002060 mdname(mddev));
NeilBrown709ae482009-12-14 12:49:51 +11002061 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 }
NeilBrown191ea9b2005-06-21 17:17:23 -07002063
NeilBrown709ae482009-12-14 12:49:51 +11002064 return conf;
2065
2066 abort:
2067 if (conf) {
2068 if (conf->r1bio_pool)
2069 mempool_destroy(conf->r1bio_pool);
2070 kfree(conf->mirrors);
2071 safe_put_page(conf->tmppage);
2072 kfree(conf->poolinfo);
2073 kfree(conf);
2074 }
2075 return ERR_PTR(err);
2076}
2077
2078static int run(mddev_t *mddev)
2079{
2080 conf_t *conf;
2081 int i;
2082 mdk_rdev_t *rdev;
2083
2084 if (mddev->level != 1) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002085 printk(KERN_ERR "md/raid1:%s: raid level not set to mirroring (%d)\n",
NeilBrown709ae482009-12-14 12:49:51 +11002086 mdname(mddev), mddev->level);
2087 return -EIO;
2088 }
2089 if (mddev->reshape_position != MaxSector) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002090 printk(KERN_ERR "md/raid1:%s: reshape_position set but not supported\n",
NeilBrown709ae482009-12-14 12:49:51 +11002091 mdname(mddev));
2092 return -EIO;
2093 }
2094 /*
2095 * copy the already verified devices into our private RAID1
2096 * bookkeeping area. [whatever we allocate in run(),
2097 * should be freed in stop()]
2098 */
2099 if (mddev->private == NULL)
2100 conf = setup_conf(mddev);
2101 else
2102 conf = mddev->private;
2103
2104 if (IS_ERR(conf))
2105 return PTR_ERR(conf);
2106
2107 mddev->queue->queue_lock = &conf->device_lock;
2108 list_for_each_entry(rdev, &mddev->disks, same_set) {
2109 disk_stack_limits(mddev->gendisk, rdev->bdev,
2110 rdev->data_offset << 9);
2111 /* as we don't honour merge_bvec_fn, we must never risk
NeilBrown627a2d32010-03-08 16:44:38 +11002112 * violating it, so limit ->max_segments to 1 lying within
2113 * a single page, as a one page request is never in violation.
NeilBrown709ae482009-12-14 12:49:51 +11002114 */
NeilBrown627a2d32010-03-08 16:44:38 +11002115 if (rdev->bdev->bd_disk->queue->merge_bvec_fn) {
2116 blk_queue_max_segments(mddev->queue, 1);
2117 blk_queue_segment_boundary(mddev->queue,
2118 PAGE_CACHE_SIZE - 1);
2119 }
NeilBrown709ae482009-12-14 12:49:51 +11002120 }
2121
2122 mddev->degraded = 0;
2123 for (i=0; i < conf->raid_disks; i++)
2124 if (conf->mirrors[i].rdev == NULL ||
2125 !test_bit(In_sync, &conf->mirrors[i].rdev->flags) ||
2126 test_bit(Faulty, &conf->mirrors[i].rdev->flags))
2127 mddev->degraded++;
2128
2129 if (conf->raid_disks - mddev->degraded == 1)
2130 mddev->recovery_cp = MaxSector;
2131
Andre Noll8c6ac862009-06-18 08:48:06 +10002132 if (mddev->recovery_cp != MaxSector)
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002133 printk(KERN_NOTICE "md/raid1:%s: not clean"
Andre Noll8c6ac862009-06-18 08:48:06 +10002134 " -- starting background reconstruction\n",
2135 mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 printk(KERN_INFO
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002137 "md/raid1:%s: active with %d out of %d mirrors\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 mdname(mddev), mddev->raid_disks - mddev->degraded,
2139 mddev->raid_disks);
NeilBrown709ae482009-12-14 12:49:51 +11002140
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 /*
2142 * Ok, everything is just fine now
2143 */
NeilBrown709ae482009-12-14 12:49:51 +11002144 mddev->thread = conf->thread;
2145 conf->thread = NULL;
2146 mddev->private = conf;
2147
Dan Williams1f403622009-03-31 14:59:03 +11002148 md_set_array_sectors(mddev, raid1_size(mddev, 0, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
NeilBrown7a5febe2005-05-16 21:53:16 -07002150 mddev->queue->unplug_fn = raid1_unplug;
NeilBrown0d129222006-10-03 01:15:54 -07002151 mddev->queue->backing_dev_info.congested_fn = raid1_congested;
2152 mddev->queue->backing_dev_info.congested_data = mddev;
Andre Nollac5e7112009-08-03 10:59:47 +10002153 md_integrity_register(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155}
2156
2157static int stop(mddev_t *mddev)
2158{
NeilBrown070ec552009-06-16 16:54:21 +10002159 conf_t *conf = mddev->private;
NeilBrown4b6d2872005-09-09 16:23:47 -07002160 struct bitmap *bitmap = mddev->bitmap;
NeilBrown4b6d2872005-09-09 16:23:47 -07002161
2162 /* wait for behind writes to complete */
NeilBrowne5551902010-03-31 11:21:44 +11002163 if (bitmap && atomic_read(&bitmap->behind_writes) > 0) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002164 printk(KERN_INFO "md/raid1:%s: behind writes in progress - waiting to stop.\n",
2165 mdname(mddev));
NeilBrown4b6d2872005-09-09 16:23:47 -07002166 /* need to kick something here to make sure I/O goes? */
NeilBrowne5551902010-03-31 11:21:44 +11002167 wait_event(bitmap->behind_wait,
2168 atomic_read(&bitmap->behind_writes) == 0);
NeilBrown4b6d2872005-09-09 16:23:47 -07002169 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170
NeilBrown409c57f2009-03-31 14:39:39 +11002171 raise_barrier(conf);
2172 lower_barrier(conf);
2173
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 md_unregister_thread(mddev->thread);
2175 mddev->thread = NULL;
2176 blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/
2177 if (conf->r1bio_pool)
2178 mempool_destroy(conf->r1bio_pool);
Jesper Juhl990a8ba2005-06-21 17:17:30 -07002179 kfree(conf->mirrors);
2180 kfree(conf->poolinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 kfree(conf);
2182 mddev->private = NULL;
2183 return 0;
2184}
2185
2186static int raid1_resize(mddev_t *mddev, sector_t sectors)
2187{
2188 /* no resync is happening, and there is enough space
2189 * on all devices, so we can resize.
2190 * We need to make sure resync covers any new space.
2191 * If the array is shrinking we should possibly wait until
2192 * any io in the removed space completes, but it hardly seems
2193 * worth it.
2194 */
Dan Williams1f403622009-03-31 14:59:03 +11002195 md_set_array_sectors(mddev, raid1_size(mddev, sectors, 0));
Dan Williamsb522adc2009-03-31 15:00:31 +11002196 if (mddev->array_sectors > raid1_size(mddev, sectors, 0))
2197 return -EINVAL;
Andre Nollf233ea52008-07-21 17:05:22 +10002198 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10002199 revalidate_disk(mddev->gendisk);
Dan Williamsb522adc2009-03-31 15:00:31 +11002200 if (sectors > mddev->dev_sectors &&
Andre Nollf233ea52008-07-21 17:05:22 +10002201 mddev->recovery_cp == MaxSector) {
Andre Noll58c0fed2009-03-31 14:33:13 +11002202 mddev->recovery_cp = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
2204 }
Dan Williamsb522adc2009-03-31 15:00:31 +11002205 mddev->dev_sectors = sectors;
NeilBrown4b5c7ae2005-07-27 11:43:28 -07002206 mddev->resync_max_sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 return 0;
2208}
2209
NeilBrown63c70c42006-03-27 01:18:13 -08002210static int raid1_reshape(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211{
2212 /* We need to:
2213 * 1/ resize the r1bio_pool
2214 * 2/ resize conf->mirrors
2215 *
2216 * We allocate a new r1bio_pool if we can.
2217 * Then raise a device barrier and wait until all IO stops.
2218 * Then resize conf->mirrors and swap in the new r1bio pool.
NeilBrown6ea9c072005-06-21 17:17:09 -07002219 *
2220 * At the same time, we "pack" the devices so that all the missing
2221 * devices have the higher raid_disk numbers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 */
2223 mempool_t *newpool, *oldpool;
2224 struct pool_info *newpoolinfo;
2225 mirror_info_t *newmirrors;
NeilBrown070ec552009-06-16 16:54:21 +10002226 conf_t *conf = mddev->private;
NeilBrown63c70c42006-03-27 01:18:13 -08002227 int cnt, raid_disks;
NeilBrownc04be0a2006-10-03 01:15:53 -07002228 unsigned long flags;
Dan Williamsb5470dc2008-06-27 21:44:04 -07002229 int d, d2, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230
NeilBrown63c70c42006-03-27 01:18:13 -08002231 /* Cannot change chunk_size, layout, or level */
Andre Noll664e7c42009-06-18 08:45:27 +10002232 if (mddev->chunk_sectors != mddev->new_chunk_sectors ||
NeilBrown63c70c42006-03-27 01:18:13 -08002233 mddev->layout != mddev->new_layout ||
2234 mddev->level != mddev->new_level) {
Andre Noll664e7c42009-06-18 08:45:27 +10002235 mddev->new_chunk_sectors = mddev->chunk_sectors;
NeilBrown63c70c42006-03-27 01:18:13 -08002236 mddev->new_layout = mddev->layout;
2237 mddev->new_level = mddev->level;
2238 return -EINVAL;
2239 }
2240
Dan Williamsb5470dc2008-06-27 21:44:04 -07002241 err = md_allow_write(mddev);
2242 if (err)
2243 return err;
NeilBrown2a2275d2007-01-26 00:57:11 -08002244
NeilBrown63c70c42006-03-27 01:18:13 -08002245 raid_disks = mddev->raid_disks + mddev->delta_disks;
2246
NeilBrown6ea9c072005-06-21 17:17:09 -07002247 if (raid_disks < conf->raid_disks) {
2248 cnt=0;
2249 for (d= 0; d < conf->raid_disks; d++)
2250 if (conf->mirrors[d].rdev)
2251 cnt++;
2252 if (cnt > raid_disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 return -EBUSY;
NeilBrown6ea9c072005-06-21 17:17:09 -07002254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255
2256 newpoolinfo = kmalloc(sizeof(*newpoolinfo), GFP_KERNEL);
2257 if (!newpoolinfo)
2258 return -ENOMEM;
2259 newpoolinfo->mddev = mddev;
2260 newpoolinfo->raid_disks = raid_disks;
2261
2262 newpool = mempool_create(NR_RAID1_BIOS, r1bio_pool_alloc,
2263 r1bio_pool_free, newpoolinfo);
2264 if (!newpool) {
2265 kfree(newpoolinfo);
2266 return -ENOMEM;
2267 }
NeilBrown9ffae0c2006-01-06 00:20:32 -08002268 newmirrors = kzalloc(sizeof(struct mirror_info) * raid_disks, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 if (!newmirrors) {
2270 kfree(newpoolinfo);
2271 mempool_destroy(newpool);
2272 return -ENOMEM;
2273 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
NeilBrown17999be2006-01-06 00:20:12 -08002275 raise_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276
2277 /* ok, everything is stopped */
2278 oldpool = conf->r1bio_pool;
2279 conf->r1bio_pool = newpool;
NeilBrown6ea9c072005-06-21 17:17:09 -07002280
NeilBrowna88aa782007-08-22 14:01:53 -07002281 for (d = d2 = 0; d < conf->raid_disks; d++) {
2282 mdk_rdev_t *rdev = conf->mirrors[d].rdev;
2283 if (rdev && rdev->raid_disk != d2) {
2284 char nm[20];
2285 sprintf(nm, "rd%d", rdev->raid_disk);
2286 sysfs_remove_link(&mddev->kobj, nm);
2287 rdev->raid_disk = d2;
2288 sprintf(nm, "rd%d", rdev->raid_disk);
2289 sysfs_remove_link(&mddev->kobj, nm);
2290 if (sysfs_create_link(&mddev->kobj,
2291 &rdev->kobj, nm))
2292 printk(KERN_WARNING
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002293 "md/raid1:%s: cannot register "
2294 "%s\n",
2295 mdname(mddev), nm);
NeilBrown6ea9c072005-06-21 17:17:09 -07002296 }
NeilBrowna88aa782007-08-22 14:01:53 -07002297 if (rdev)
2298 newmirrors[d2++].rdev = rdev;
2299 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 kfree(conf->mirrors);
2301 conf->mirrors = newmirrors;
2302 kfree(conf->poolinfo);
2303 conf->poolinfo = newpoolinfo;
2304
NeilBrownc04be0a2006-10-03 01:15:53 -07002305 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 mddev->degraded += (raid_disks - conf->raid_disks);
NeilBrownc04be0a2006-10-03 01:15:53 -07002307 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 conf->raid_disks = mddev->raid_disks = raid_disks;
NeilBrown63c70c42006-03-27 01:18:13 -08002309 mddev->delta_disks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310
NeilBrown6ea9c072005-06-21 17:17:09 -07002311 conf->last_used = 0; /* just make sure it is in-range */
NeilBrown17999be2006-01-06 00:20:12 -08002312 lower_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313
2314 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
2315 md_wakeup_thread(mddev->thread);
2316
2317 mempool_destroy(oldpool);
2318 return 0;
2319}
2320
NeilBrown500af872005-09-09 16:23:58 -07002321static void raid1_quiesce(mddev_t *mddev, int state)
NeilBrown36fa3062005-09-09 16:23:45 -07002322{
NeilBrown070ec552009-06-16 16:54:21 +10002323 conf_t *conf = mddev->private;
NeilBrown36fa3062005-09-09 16:23:45 -07002324
2325 switch(state) {
NeilBrown6eef4b22009-12-14 12:49:51 +11002326 case 2: /* wake for suspend */
2327 wake_up(&conf->wait_barrier);
2328 break;
NeilBrown9e6603d2005-09-09 16:23:48 -07002329 case 1:
NeilBrown17999be2006-01-06 00:20:12 -08002330 raise_barrier(conf);
NeilBrown36fa3062005-09-09 16:23:45 -07002331 break;
NeilBrown9e6603d2005-09-09 16:23:48 -07002332 case 0:
NeilBrown17999be2006-01-06 00:20:12 -08002333 lower_barrier(conf);
NeilBrown36fa3062005-09-09 16:23:45 -07002334 break;
2335 }
NeilBrown36fa3062005-09-09 16:23:45 -07002336}
2337
NeilBrown709ae482009-12-14 12:49:51 +11002338static void *raid1_takeover(mddev_t *mddev)
2339{
2340 /* raid1 can take over:
2341 * raid5 with 2 devices, any layout or chunk size
2342 */
2343 if (mddev->level == 5 && mddev->raid_disks == 2) {
2344 conf_t *conf;
2345 mddev->new_level = 1;
2346 mddev->new_layout = 0;
2347 mddev->new_chunk_sectors = 0;
2348 conf = setup_conf(mddev);
2349 if (!IS_ERR(conf))
2350 conf->barrier = 1;
2351 return conf;
2352 }
2353 return ERR_PTR(-EINVAL);
2354}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355
NeilBrown2604b702006-01-06 00:20:36 -08002356static struct mdk_personality raid1_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357{
2358 .name = "raid1",
NeilBrown2604b702006-01-06 00:20:36 -08002359 .level = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 .owner = THIS_MODULE,
2361 .make_request = make_request,
2362 .run = run,
2363 .stop = stop,
2364 .status = status,
2365 .error_handler = error,
2366 .hot_add_disk = raid1_add_disk,
2367 .hot_remove_disk= raid1_remove_disk,
2368 .spare_active = raid1_spare_active,
2369 .sync_request = sync_request,
2370 .resize = raid1_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07002371 .size = raid1_size,
NeilBrown63c70c42006-03-27 01:18:13 -08002372 .check_reshape = raid1_reshape,
NeilBrown36fa3062005-09-09 16:23:45 -07002373 .quiesce = raid1_quiesce,
NeilBrown709ae482009-12-14 12:49:51 +11002374 .takeover = raid1_takeover,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375};
2376
2377static int __init raid_init(void)
2378{
NeilBrown2604b702006-01-06 00:20:36 -08002379 return register_md_personality(&raid1_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380}
2381
2382static void raid_exit(void)
2383{
NeilBrown2604b702006-01-06 00:20:36 -08002384 unregister_md_personality(&raid1_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385}
2386
2387module_init(raid_init);
2388module_exit(raid_exit);
2389MODULE_LICENSE("GPL");
NeilBrown0efb9e62009-12-14 12:49:58 +11002390MODULE_DESCRIPTION("RAID1 (mirroring) personality for MD");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391MODULE_ALIAS("md-personality-3"); /* RAID1 */
NeilBrownd9d166c2006-01-06 00:20:51 -08002392MODULE_ALIAS("md-raid1");
NeilBrown2604b702006-01-06 00:20:36 -08002393MODULE_ALIAS("md-level-1");