blob: 45f8324196ec61c86cd7164868e3f8bc66ada03c [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-- ; ) {
NeilBrown67465572010-10-26 17:33:54 +1100103 bio = bio_kmalloc(gfp_flags, RESYNC_PAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 if (!bio)
105 goto out_free_bio;
106 r1_bio->bios[j] = bio;
107 }
108 /*
109 * Allocate RESYNC_PAGES data pages and attach them to
NeilBrownd11c1712006-01-06 00:20:26 -0800110 * the first bio.
111 * If this is a user-requested check/repair, allocate
112 * RESYNC_PAGES for each bio.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 */
NeilBrownd11c1712006-01-06 00:20:26 -0800114 if (test_bit(MD_RECOVERY_REQUESTED, &pi->mddev->recovery))
115 j = pi->raid_disks;
116 else
117 j = 1;
118 while(j--) {
119 bio = r1_bio->bios[j];
120 for (i = 0; i < RESYNC_PAGES; i++) {
121 page = alloc_page(gfp_flags);
122 if (unlikely(!page))
123 goto out_free_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
NeilBrownd11c1712006-01-06 00:20:26 -0800125 bio->bi_io_vec[i].bv_page = page;
NeilBrown303a0e12009-04-06 14:40:38 +1000126 bio->bi_vcnt = i+1;
NeilBrownd11c1712006-01-06 00:20:26 -0800127 }
128 }
129 /* If not user-requests, copy the page pointers to all bios */
130 if (!test_bit(MD_RECOVERY_REQUESTED, &pi->mddev->recovery)) {
131 for (i=0; i<RESYNC_PAGES ; i++)
132 for (j=1; j<pi->raid_disks; j++)
133 r1_bio->bios[j]->bi_io_vec[i].bv_page =
134 r1_bio->bios[0]->bi_io_vec[i].bv_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 }
136
137 r1_bio->master_bio = NULL;
138
139 return r1_bio;
140
141out_free_pages:
NeilBrown303a0e12009-04-06 14:40:38 +1000142 for (j=0 ; j < pi->raid_disks; j++)
143 for (i=0; i < r1_bio->bios[j]->bi_vcnt ; i++)
144 put_page(r1_bio->bios[j]->bi_io_vec[i].bv_page);
NeilBrownd11c1712006-01-06 00:20:26 -0800145 j = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146out_free_bio:
147 while ( ++j < pi->raid_disks )
148 bio_put(r1_bio->bios[j]);
149 r1bio_pool_free(r1_bio, data);
150 return NULL;
151}
152
153static void r1buf_pool_free(void *__r1_bio, void *data)
154{
155 struct pool_info *pi = data;
NeilBrownd11c1712006-01-06 00:20:26 -0800156 int i,j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 r1bio_t *r1bio = __r1_bio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
NeilBrownd11c1712006-01-06 00:20:26 -0800159 for (i = 0; i < RESYNC_PAGES; i++)
160 for (j = pi->raid_disks; j-- ;) {
161 if (j == 0 ||
162 r1bio->bios[j]->bi_io_vec[i].bv_page !=
163 r1bio->bios[0]->bi_io_vec[i].bv_page)
NeilBrown1345b1d2006-01-06 00:20:40 -0800164 safe_put_page(r1bio->bios[j]->bi_io_vec[i].bv_page);
NeilBrownd11c1712006-01-06 00:20:26 -0800165 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 for (i=0 ; i < pi->raid_disks; i++)
167 bio_put(r1bio->bios[i]);
168
169 r1bio_pool_free(r1bio, data);
170}
171
172static void put_all_bios(conf_t *conf, r1bio_t *r1_bio)
173{
174 int i;
175
176 for (i = 0; i < conf->raid_disks; i++) {
177 struct bio **bio = r1_bio->bios + i;
NeilBrowncf30a472006-01-06 00:20:23 -0800178 if (*bio && *bio != IO_BLOCKED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 bio_put(*bio);
180 *bio = NULL;
181 }
182}
183
Arjan van de Ven858119e2006-01-14 13:20:43 -0800184static void free_r1bio(r1bio_t *r1_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
NeilBrown070ec552009-06-16 16:54:21 +1000186 conf_t *conf = r1_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188 /*
189 * Wake up any possible resync thread that waits for the device
190 * to go idle.
191 */
NeilBrown17999be2006-01-06 00:20:12 -0800192 allow_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 put_all_bios(conf, r1_bio);
195 mempool_free(r1_bio, conf->r1bio_pool);
196}
197
Arjan van de Ven858119e2006-01-14 13:20:43 -0800198static void put_buf(r1bio_t *r1_bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
NeilBrown070ec552009-06-16 16:54:21 +1000200 conf_t *conf = r1_bio->mddev->private;
NeilBrown3e198f72006-01-06 00:20:21 -0800201 int i;
202
203 for (i=0; i<conf->raid_disks; i++) {
204 struct bio *bio = r1_bio->bios[i];
205 if (bio->bi_end_io)
206 rdev_dec_pending(conf->mirrors[i].rdev, r1_bio->mddev);
207 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209 mempool_free(r1_bio, conf->r1buf_pool);
210
NeilBrown17999be2006-01-06 00:20:12 -0800211 lower_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212}
213
214static void reschedule_retry(r1bio_t *r1_bio)
215{
216 unsigned long flags;
217 mddev_t *mddev = r1_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +1000218 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220 spin_lock_irqsave(&conf->device_lock, flags);
221 list_add(&r1_bio->retry_list, &conf->retry_list);
NeilBrownddaf22a2006-01-06 00:20:19 -0800222 conf->nr_queued ++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 spin_unlock_irqrestore(&conf->device_lock, flags);
224
NeilBrown17999be2006-01-06 00:20:12 -0800225 wake_up(&conf->wait_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 md_wakeup_thread(mddev->thread);
227}
228
229/*
230 * raid_end_bio_io() is called when we have finished servicing a mirrored
231 * operation and are ready to return a success/failure code to the buffer
232 * cache layer.
233 */
234static void raid_end_bio_io(r1bio_t *r1_bio)
235{
236 struct bio *bio = r1_bio->master_bio;
237
NeilBrown4b6d2872005-09-09 16:23:47 -0700238 /* if nobody has done the final endio yet, do it now */
239 if (!test_and_set_bit(R1BIO_Returned, &r1_bio->state)) {
240 PRINTK(KERN_DEBUG "raid1: sync end %s on sectors %llu-%llu\n",
241 (bio_data_dir(bio) == WRITE) ? "write" : "read",
242 (unsigned long long) bio->bi_sector,
243 (unsigned long long) bio->bi_sector +
244 (bio->bi_size >> 9) - 1);
245
NeilBrown6712ecf2007-09-27 12:47:43 +0200246 bio_endio(bio,
NeilBrown4b6d2872005-09-09 16:23:47 -0700247 test_bit(R1BIO_Uptodate, &r1_bio->state) ? 0 : -EIO);
248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 free_r1bio(r1_bio);
250}
251
252/*
253 * Update disk head position estimator based on IRQ completion info.
254 */
255static inline void update_head_pos(int disk, r1bio_t *r1_bio)
256{
NeilBrown070ec552009-06-16 16:54:21 +1000257 conf_t *conf = r1_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 conf->mirrors[disk].head_position =
260 r1_bio->sector + (r1_bio->sectors);
261}
262
NeilBrown6712ecf2007-09-27 12:47:43 +0200263static void raid1_end_read_request(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
265 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
H Hartley Sweeten7b928132010-03-08 16:02:40 +1100266 r1bio_t *r1_bio = bio->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 int mirror;
NeilBrown070ec552009-06-16 16:54:21 +1000268 conf_t *conf = r1_bio->mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 mirror = r1_bio->read_disk;
271 /*
272 * this branch is our 'one mirror IO has finished' event handler:
273 */
NeilBrownddaf22a2006-01-06 00:20:19 -0800274 update_head_pos(mirror, r1_bio);
275
NeilBrowndd00a992007-05-10 03:15:50 -0700276 if (uptodate)
277 set_bit(R1BIO_Uptodate, &r1_bio->state);
278 else {
279 /* If all other devices have failed, we want to return
280 * the error upwards rather than fail the last device.
281 * Here we redefine "uptodate" to mean "Don't want to retry"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 */
NeilBrowndd00a992007-05-10 03:15:50 -0700283 unsigned long flags;
284 spin_lock_irqsave(&conf->device_lock, flags);
285 if (r1_bio->mddev->degraded == conf->raid_disks ||
286 (r1_bio->mddev->degraded == conf->raid_disks-1 &&
287 !test_bit(Faulty, &conf->mirrors[mirror].rdev->flags)))
288 uptodate = 1;
289 spin_unlock_irqrestore(&conf->device_lock, flags);
290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
NeilBrowndd00a992007-05-10 03:15:50 -0700292 if (uptodate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 raid_end_bio_io(r1_bio);
NeilBrowndd00a992007-05-10 03:15:50 -0700294 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 /*
296 * oops, read error:
297 */
298 char b[BDEVNAME_SIZE];
299 if (printk_ratelimit())
NeilBrown9dd1e2f2010-05-03 14:30:35 +1000300 printk(KERN_ERR "md/raid1:%s: %s: rescheduling sector %llu\n",
301 mdname(conf->mddev),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 bdevname(conf->mirrors[mirror].rdev->bdev,b), (unsigned long long)r1_bio->sector);
303 reschedule_retry(r1_bio);
304 }
305
306 rdev_dec_pending(conf->mirrors[mirror].rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307}
308
NeilBrown4e780642010-10-19 12:54:01 +1100309static void r1_bio_write_done(r1bio_t *r1_bio, int vcnt, struct bio_vec *bv,
310 int behind)
311{
312 if (atomic_dec_and_test(&r1_bio->remaining))
313 {
314 /* it really is the end of this request */
315 if (test_bit(R1BIO_BehindIO, &r1_bio->state)) {
316 /* free extra copy of the data pages */
317 int i = vcnt;
318 while (i--)
319 safe_put_page(bv[i].bv_page);
320 }
321 /* clear the bitmap if all writes complete successfully */
322 bitmap_endwrite(r1_bio->mddev->bitmap, r1_bio->sector,
323 r1_bio->sectors,
324 !test_bit(R1BIO_Degraded, &r1_bio->state),
325 behind);
326 md_write_end(r1_bio->mddev);
327 raid_end_bio_io(r1_bio);
328 }
329}
330
NeilBrown6712ecf2007-09-27 12:47:43 +0200331static void raid1_end_write_request(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
333 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
H Hartley Sweeten7b928132010-03-08 16:02:40 +1100334 r1bio_t *r1_bio = bio->bi_private;
NeilBrowna9701a32005-11-08 21:39:34 -0800335 int mirror, behind = test_bit(R1BIO_BehindIO, &r1_bio->state);
NeilBrown070ec552009-06-16 16:54:21 +1000336 conf_t *conf = r1_bio->mddev->private;
NeilBrown04b857f2006-03-09 17:33:46 -0800337 struct bio *to_put = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340 for (mirror = 0; mirror < conf->raid_disks; mirror++)
341 if (r1_bio->bios[mirror] == bio)
342 break;
343
Tejun Heoe9c74692010-09-03 11:56:18 +0200344 /*
345 * 'one mirror IO has finished' event handler:
346 */
347 r1_bio->bios[mirror] = NULL;
348 to_put = bio;
349 if (!uptodate) {
350 md_error(r1_bio->mddev, conf->mirrors[mirror].rdev);
351 /* an I/O failed, we can't clear the bitmap */
352 set_bit(R1BIO_Degraded, &r1_bio->state);
353 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 /*
Tejun Heoe9c74692010-09-03 11:56:18 +0200355 * Set R1BIO_Uptodate in our master bio, so that we
356 * will return a good error code for to the higher
357 * levels even if IO on some other mirrored buffer
358 * fails.
359 *
360 * The 'master' represents the composite IO operation
361 * to user-side. So if something waits for IO, then it
362 * will wait for the 'master' bio.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 */
Tejun Heoe9c74692010-09-03 11:56:18 +0200364 set_bit(R1BIO_Uptodate, &r1_bio->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Tejun Heoe9c74692010-09-03 11:56:18 +0200366 update_head_pos(mirror, r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Tejun Heoe9c74692010-09-03 11:56:18 +0200368 if (behind) {
369 if (test_bit(WriteMostly, &conf->mirrors[mirror].rdev->flags))
370 atomic_dec(&r1_bio->behind_remaining);
NeilBrown4b6d2872005-09-09 16:23:47 -0700371
Tejun Heoe9c74692010-09-03 11:56:18 +0200372 /*
373 * In behind mode, we ACK the master bio once the I/O
374 * has safely reached all non-writemostly
375 * disks. Setting the Returned bit ensures that this
376 * gets done only once -- we don't ever want to return
377 * -EIO here, instead we'll wait
378 */
379 if (atomic_read(&r1_bio->behind_remaining) >= (atomic_read(&r1_bio->remaining)-1) &&
380 test_bit(R1BIO_Uptodate, &r1_bio->state)) {
381 /* Maybe we can return now */
382 if (!test_and_set_bit(R1BIO_Returned, &r1_bio->state)) {
383 struct bio *mbio = r1_bio->master_bio;
384 PRINTK(KERN_DEBUG "raid1: behind end write sectors %llu-%llu\n",
385 (unsigned long long) mbio->bi_sector,
386 (unsigned long long) mbio->bi_sector +
387 (mbio->bi_size >> 9) - 1);
388 bio_endio(mbio, 0);
NeilBrown4b6d2872005-09-09 16:23:47 -0700389 }
390 }
391 }
Tejun Heoe9c74692010-09-03 11:56:18 +0200392 rdev_dec_pending(conf->mirrors[mirror].rdev, conf->mddev);
393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 * Let's see if all mirrored write operations have finished
396 * already.
397 */
NeilBrown4e780642010-10-19 12:54:01 +1100398 r1_bio_write_done(r1_bio, bio->bi_vcnt, bio->bi_io_vec, behind);
NeilBrownc70810b2006-06-26 00:27:35 -0700399
NeilBrown04b857f2006-03-09 17:33:46 -0800400 if (to_put)
401 bio_put(to_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
403
404
405/*
406 * This routine returns the disk from which the requested read should
407 * be done. There is a per-array 'next expected sequential IO' sector
408 * number - if this matches on the next IO then we use the last disk.
409 * There is also a per-disk 'last know head position' sector that is
410 * maintained from IRQ contexts, both the normal and the resync IO
411 * completion handlers update this position correctly. If there is no
412 * perfect sequential match then we pick the disk whose head is closest.
413 *
414 * If there are 2 mirrors in the same 2 devices, performance degrades
415 * because position is mirror, not device based.
416 *
417 * The rdev for the device selected will have nr_pending incremented.
418 */
419static int read_balance(conf_t *conf, r1bio_t *r1_bio)
420{
NeilBrownaf3a2cd2010-05-08 08:20:17 +1000421 const sector_t this_sector = r1_bio->sector;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 const int sectors = r1_bio->sectors;
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000423 int new_disk = -1;
424 int start_disk;
425 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 sector_t new_distance, current_distance;
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700427 mdk_rdev_t *rdev;
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000428 int choose_first;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430 rcu_read_lock();
431 /*
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700432 * Check if we can balance. We can balance on the whole
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 * device if no resync is going on, or below the resync window.
434 * We take the first readable disk when above the resync window.
435 */
436 retry:
437 if (conf->mddev->recovery_cp < MaxSector &&
438 (this_sector + sectors >= conf->next_resync)) {
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000439 choose_first = 1;
440 start_disk = 0;
441 } else {
442 choose_first = 0;
443 start_disk = conf->last_used;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 }
445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 /* make sure the disk is operational */
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000447 for (i = 0 ; i < conf->raid_disks ; i++) {
448 int disk = start_disk + i;
449 if (disk >= conf->raid_disks)
450 disk -= conf->raid_disks;
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700451
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000452 rdev = rcu_dereference(conf->mirrors[disk].rdev);
453 if (r1_bio->bios[disk] == IO_BLOCKED
454 || rdev == NULL
455 || !test_bit(In_sync, &rdev->flags))
456 continue;
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700457
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000458 new_disk = disk;
459 if (!test_bit(WriteMostly, &rdev->flags))
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700460 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 }
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700462
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000463 if (new_disk < 0 || choose_first)
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700464 goto rb_out;
465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 /*
467 * Don't change to another disk for sequential reads:
468 */
469 if (conf->next_seq_sect == this_sector)
470 goto rb_out;
471 if (this_sector == conf->mirrors[new_disk].head_position)
472 goto rb_out;
473
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000474 current_distance = abs(this_sector
475 - conf->mirrors[new_disk].head_position);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000477 /* look for a better disk - i.e. head is closer */
478 start_disk = new_disk;
479 for (i = 1; i < conf->raid_disks; i++) {
480 int disk = start_disk + 1;
481 if (disk >= conf->raid_disks)
482 disk -= conf->raid_disks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Suzanne Woodd6065f72005-11-08 21:39:27 -0800484 rdev = rcu_dereference(conf->mirrors[disk].rdev);
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000485 if (r1_bio->bios[disk] == IO_BLOCKED
486 || rdev == NULL
487 || !test_bit(In_sync, &rdev->flags)
488 || test_bit(WriteMostly, &rdev->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 continue;
490
491 if (!atomic_read(&rdev->nr_pending)) {
492 new_disk = disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 break;
494 }
495 new_distance = abs(this_sector - conf->mirrors[disk].head_position);
496 if (new_distance < current_distance) {
497 current_distance = new_distance;
498 new_disk = disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 }
NeilBrownf3ac8bf2010-09-06 14:10:08 +1000500 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700502 rb_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 if (new_disk >= 0) {
Suzanne Woodd6065f72005-11-08 21:39:27 -0800504 rdev = rcu_dereference(conf->mirrors[new_disk].rdev);
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700505 if (!rdev)
506 goto retry;
507 atomic_inc(&rdev->nr_pending);
NeilBrownb2d444d2005-11-08 21:39:31 -0800508 if (!test_bit(In_sync, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 /* cannot risk returning a device that failed
510 * before we inc'ed nr_pending
511 */
NeilBrown03c902e2006-01-06 00:20:46 -0800512 rdev_dec_pending(rdev, conf->mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 goto retry;
514 }
NeilBrown8ddf9ef2005-09-09 16:23:45 -0700515 conf->next_seq_sect = this_sector + sectors;
516 conf->last_used = new_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 }
518 rcu_read_unlock();
519
520 return new_disk;
521}
522
523static void unplug_slaves(mddev_t *mddev)
524{
NeilBrown070ec552009-06-16 16:54:21 +1000525 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 int i;
527
528 rcu_read_lock();
529 for (i=0; i<mddev->raid_disks; i++) {
Suzanne Woodd6065f72005-11-08 21:39:27 -0800530 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
NeilBrownb2d444d2005-11-08 21:39:31 -0800531 if (rdev && !test_bit(Faulty, &rdev->flags) && atomic_read(&rdev->nr_pending)) {
Jens Axboe165125e2007-07-24 09:28:11 +0200532 struct request_queue *r_queue = bdev_get_queue(rdev->bdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
534 atomic_inc(&rdev->nr_pending);
535 rcu_read_unlock();
536
Alan D. Brunelle2ad8b1e2007-11-07 14:26:56 -0500537 blk_unplug(r_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
539 rdev_dec_pending(rdev, mddev);
540 rcu_read_lock();
541 }
542 }
543 rcu_read_unlock();
544}
545
Jens Axboe165125e2007-07-24 09:28:11 +0200546static void raid1_unplug(struct request_queue *q)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
NeilBrown191ea9b2005-06-21 17:17:23 -0700548 mddev_t *mddev = q->queuedata;
549
550 unplug_slaves(mddev);
551 md_wakeup_thread(mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
553
NeilBrown0d129222006-10-03 01:15:54 -0700554static int raid1_congested(void *data, int bits)
555{
556 mddev_t *mddev = data;
NeilBrown070ec552009-06-16 16:54:21 +1000557 conf_t *conf = mddev->private;
NeilBrown0d129222006-10-03 01:15:54 -0700558 int i, ret = 0;
559
NeilBrown3fa841d2009-09-23 18:10:29 +1000560 if (mddev_congested(mddev, bits))
561 return 1;
562
NeilBrown0d129222006-10-03 01:15:54 -0700563 rcu_read_lock();
564 for (i = 0; i < mddev->raid_disks; i++) {
565 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
566 if (rdev && !test_bit(Faulty, &rdev->flags)) {
Jens Axboe165125e2007-07-24 09:28:11 +0200567 struct request_queue *q = bdev_get_queue(rdev->bdev);
NeilBrown0d129222006-10-03 01:15:54 -0700568
569 /* Note the '|| 1' - when read_balance prefers
570 * non-congested targets, it can be removed
571 */
Alexander Beregalov91a9e992009-04-07 01:35:56 +0400572 if ((bits & (1<<BDI_async_congested)) || 1)
NeilBrown0d129222006-10-03 01:15:54 -0700573 ret |= bdi_congested(&q->backing_dev_info, bits);
574 else
575 ret &= bdi_congested(&q->backing_dev_info, bits);
576 }
577 }
578 rcu_read_unlock();
579 return ret;
580}
581
582
NeilBrowna35e63e2008-03-04 14:29:29 -0800583static int flush_pending_writes(conf_t *conf)
584{
585 /* Any writes that have been queued but are awaiting
586 * bitmap updates get flushed here.
587 * We return 1 if any requests were actually submitted.
588 */
589 int rv = 0;
590
591 spin_lock_irq(&conf->device_lock);
592
593 if (conf->pending_bio_list.head) {
594 struct bio *bio;
595 bio = bio_list_get(&conf->pending_bio_list);
596 blk_remove_plug(conf->mddev->queue);
597 spin_unlock_irq(&conf->device_lock);
598 /* flush any pending bitmap writes to
599 * disk before proceeding w/ I/O */
600 bitmap_unplug(conf->mddev->bitmap);
601
602 while (bio) { /* submit pending writes */
603 struct bio *next = bio->bi_next;
604 bio->bi_next = NULL;
605 generic_make_request(bio);
606 bio = next;
607 }
608 rv = 1;
609 } else
610 spin_unlock_irq(&conf->device_lock);
611 return rv;
612}
613
NeilBrown17999be2006-01-06 00:20:12 -0800614/* Barriers....
615 * Sometimes we need to suspend IO while we do something else,
616 * either some resync/recovery, or reconfigure the array.
617 * To do this we raise a 'barrier'.
618 * The 'barrier' is a counter that can be raised multiple times
619 * to count how many activities are happening which preclude
620 * normal IO.
621 * We can only raise the barrier if there is no pending IO.
622 * i.e. if nr_pending == 0.
623 * We choose only to raise the barrier if no-one is waiting for the
624 * barrier to go down. This means that as soon as an IO request
625 * is ready, no other operations which require a barrier will start
626 * until the IO request has had a chance.
627 *
628 * So: regular IO calls 'wait_barrier'. When that returns there
629 * is no backgroup IO happening, It must arrange to call
630 * allow_barrier when it has finished its IO.
631 * backgroup IO calls must call raise_barrier. Once that returns
632 * there is no normal IO happeing. It must arrange to call
633 * lower_barrier when the particular background IO completes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 */
635#define RESYNC_DEPTH 32
636
NeilBrown17999be2006-01-06 00:20:12 -0800637static void raise_barrier(conf_t *conf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
639 spin_lock_irq(&conf->resync_lock);
NeilBrown17999be2006-01-06 00:20:12 -0800640
641 /* Wait until no block IO is waiting */
642 wait_event_lock_irq(conf->wait_barrier, !conf->nr_waiting,
643 conf->resync_lock,
644 raid1_unplug(conf->mddev->queue));
645
646 /* block any new IO from starting */
647 conf->barrier++;
648
NeilBrown046abee2010-10-26 15:46:20 +1100649 /* Now wait for all pending IO to complete */
NeilBrown17999be2006-01-06 00:20:12 -0800650 wait_event_lock_irq(conf->wait_barrier,
651 !conf->nr_pending && conf->barrier < RESYNC_DEPTH,
652 conf->resync_lock,
653 raid1_unplug(conf->mddev->queue));
654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 spin_unlock_irq(&conf->resync_lock);
656}
657
NeilBrown17999be2006-01-06 00:20:12 -0800658static void lower_barrier(conf_t *conf)
659{
660 unsigned long flags;
NeilBrown709ae482009-12-14 12:49:51 +1100661 BUG_ON(conf->barrier <= 0);
NeilBrown17999be2006-01-06 00:20:12 -0800662 spin_lock_irqsave(&conf->resync_lock, flags);
663 conf->barrier--;
664 spin_unlock_irqrestore(&conf->resync_lock, flags);
665 wake_up(&conf->wait_barrier);
666}
667
668static void wait_barrier(conf_t *conf)
669{
670 spin_lock_irq(&conf->resync_lock);
671 if (conf->barrier) {
672 conf->nr_waiting++;
673 wait_event_lock_irq(conf->wait_barrier, !conf->barrier,
674 conf->resync_lock,
675 raid1_unplug(conf->mddev->queue));
676 conf->nr_waiting--;
677 }
678 conf->nr_pending++;
679 spin_unlock_irq(&conf->resync_lock);
680}
681
682static void allow_barrier(conf_t *conf)
683{
684 unsigned long flags;
685 spin_lock_irqsave(&conf->resync_lock, flags);
686 conf->nr_pending--;
687 spin_unlock_irqrestore(&conf->resync_lock, flags);
688 wake_up(&conf->wait_barrier);
689}
690
NeilBrownddaf22a2006-01-06 00:20:19 -0800691static void freeze_array(conf_t *conf)
692{
693 /* stop syncio and normal IO and wait for everything to
694 * go quite.
695 * We increment barrier and nr_waiting, and then
NeilBrown1c830532008-03-04 14:29:35 -0800696 * wait until nr_pending match nr_queued+1
697 * This is called in the context of one normal IO request
698 * that has failed. Thus any sync request that might be pending
699 * will be blocked by nr_pending, and we need to wait for
700 * pending IO requests to complete or be queued for re-try.
701 * Thus the number queued (nr_queued) plus this request (1)
702 * must match the number of pending IOs (nr_pending) before
703 * we continue.
NeilBrownddaf22a2006-01-06 00:20:19 -0800704 */
705 spin_lock_irq(&conf->resync_lock);
706 conf->barrier++;
707 conf->nr_waiting++;
708 wait_event_lock_irq(conf->wait_barrier,
NeilBrown1c830532008-03-04 14:29:35 -0800709 conf->nr_pending == conf->nr_queued+1,
NeilBrownddaf22a2006-01-06 00:20:19 -0800710 conf->resync_lock,
NeilBrowna35e63e2008-03-04 14:29:29 -0800711 ({ flush_pending_writes(conf);
712 raid1_unplug(conf->mddev->queue); }));
NeilBrownddaf22a2006-01-06 00:20:19 -0800713 spin_unlock_irq(&conf->resync_lock);
714}
715static void unfreeze_array(conf_t *conf)
716{
717 /* reverse the effect of the freeze */
718 spin_lock_irq(&conf->resync_lock);
719 conf->barrier--;
720 conf->nr_waiting--;
721 wake_up(&conf->wait_barrier);
722 spin_unlock_irq(&conf->resync_lock);
723}
724
NeilBrown17999be2006-01-06 00:20:12 -0800725
NeilBrown4e780642010-10-19 12:54:01 +1100726/* duplicate the data pages for behind I/O
727 * We return a list of bio_vec rather than just page pointers
728 * as it makes freeing easier
729 */
730static struct bio_vec *alloc_behind_pages(struct bio *bio)
NeilBrown4b6d2872005-09-09 16:23:47 -0700731{
732 int i;
733 struct bio_vec *bvec;
NeilBrown4e780642010-10-19 12:54:01 +1100734 struct bio_vec *pages = kzalloc(bio->bi_vcnt * sizeof(struct bio_vec),
NeilBrown4b6d2872005-09-09 16:23:47 -0700735 GFP_NOIO);
736 if (unlikely(!pages))
737 goto do_sync_io;
738
NeilBrown4b6d2872005-09-09 16:23:47 -0700739 bio_for_each_segment(bvec, bio, i) {
NeilBrown4e780642010-10-19 12:54:01 +1100740 pages[i].bv_page = alloc_page(GFP_NOIO);
741 if (unlikely(!pages[i].bv_page))
NeilBrown4b6d2872005-09-09 16:23:47 -0700742 goto do_sync_io;
NeilBrown4e780642010-10-19 12:54:01 +1100743 memcpy(kmap(pages[i].bv_page) + bvec->bv_offset,
NeilBrown4b6d2872005-09-09 16:23:47 -0700744 kmap(bvec->bv_page) + bvec->bv_offset, bvec->bv_len);
NeilBrown4e780642010-10-19 12:54:01 +1100745 kunmap(pages[i].bv_page);
NeilBrown4b6d2872005-09-09 16:23:47 -0700746 kunmap(bvec->bv_page);
747 }
748
749 return pages;
750
751do_sync_io:
752 if (pages)
NeilBrown4e780642010-10-19 12:54:01 +1100753 for (i = 0; i < bio->bi_vcnt && pages[i].bv_page; i++)
754 put_page(pages[i].bv_page);
NeilBrown4b6d2872005-09-09 16:23:47 -0700755 kfree(pages);
756 PRINTK("%dB behind alloc failed, doing sync I/O\n", bio->bi_size);
757 return NULL;
758}
759
NeilBrown21a52c62010-04-01 15:02:13 +1100760static int make_request(mddev_t *mddev, struct bio * bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761{
NeilBrown070ec552009-06-16 16:54:21 +1000762 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 mirror_info_t *mirror;
764 r1bio_t *r1_bio;
765 struct bio *read_bio;
NeilBrown191ea9b2005-06-21 17:17:23 -0700766 int i, targets = 0, disks;
NeilBrown84255d12008-05-23 13:04:32 -0700767 struct bitmap *bitmap;
NeilBrown191ea9b2005-06-21 17:17:23 -0700768 unsigned long flags;
NeilBrown4e780642010-10-19 12:54:01 +1100769 struct bio_vec *behind_pages = NULL;
Jens Axboea3623572005-11-01 09:26:16 +0100770 const int rw = bio_data_dir(bio);
NeilBrown2c7d46e2010-08-18 16:16:05 +1000771 const unsigned long do_sync = (bio->bi_rw & REQ_SYNC);
Tejun Heoe9c74692010-09-03 11:56:18 +0200772 const unsigned long do_flush_fua = (bio->bi_rw & (REQ_FLUSH | REQ_FUA));
Dan Williams6bfe0b42008-04-30 00:52:32 -0700773 mdk_rdev_t *blocked_rdev;
NeilBrown191ea9b2005-06-21 17:17:23 -0700774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 /*
776 * Register the new request and wait if the reconstruction
777 * thread has put up a bar for new requests.
778 * Continue immediately if no resync is active currently.
779 */
NeilBrown62de6082006-05-01 12:15:47 -0700780
NeilBrown3d310eb2005-06-21 17:17:26 -0700781 md_write_start(mddev, bio); /* wait on superblock update early */
782
NeilBrown6eef4b22009-12-14 12:49:51 +1100783 if (bio_data_dir(bio) == WRITE &&
784 bio->bi_sector + bio->bi_size/512 > mddev->suspend_lo &&
785 bio->bi_sector < mddev->suspend_hi) {
786 /* As the suspend_* range is controlled by
787 * userspace, we want an interruptible
788 * wait.
789 */
790 DEFINE_WAIT(w);
791 for (;;) {
792 flush_signals(current);
793 prepare_to_wait(&conf->wait_barrier,
794 &w, TASK_INTERRUPTIBLE);
795 if (bio->bi_sector + bio->bi_size/512 <= mddev->suspend_lo ||
796 bio->bi_sector >= mddev->suspend_hi)
797 break;
798 schedule();
799 }
800 finish_wait(&conf->wait_barrier, &w);
801 }
NeilBrown62de6082006-05-01 12:15:47 -0700802
NeilBrown17999be2006-01-06 00:20:12 -0800803 wait_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804
NeilBrown84255d12008-05-23 13:04:32 -0700805 bitmap = mddev->bitmap;
806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 /*
808 * make_request() can abort the operation when READA is being
809 * used and no empty request is available.
810 *
811 */
812 r1_bio = mempool_alloc(conf->r1bio_pool, GFP_NOIO);
813
814 r1_bio->master_bio = bio;
815 r1_bio->sectors = bio->bi_size >> 9;
NeilBrown191ea9b2005-06-21 17:17:23 -0700816 r1_bio->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 r1_bio->mddev = mddev;
818 r1_bio->sector = bio->bi_sector;
819
Jens Axboea3623572005-11-01 09:26:16 +0100820 if (rw == READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 /*
822 * read balancing logic:
823 */
824 int rdisk = read_balance(conf, r1_bio);
825
826 if (rdisk < 0) {
827 /* couldn't find anywhere to read from */
828 raid_end_bio_io(r1_bio);
829 return 0;
830 }
831 mirror = conf->mirrors + rdisk;
832
NeilBrowne5551902010-03-31 11:21:44 +1100833 if (test_bit(WriteMostly, &mirror->rdev->flags) &&
834 bitmap) {
835 /* Reading from a write-mostly device must
836 * take care not to over-take any writes
837 * that are 'behind'
838 */
839 wait_event(bitmap->behind_wait,
840 atomic_read(&bitmap->behind_writes) == 0);
841 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 r1_bio->read_disk = rdisk;
843
NeilBrowna167f662010-10-26 18:31:13 +1100844 read_bio = bio_clone_mddev(bio, GFP_NOIO, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
846 r1_bio->bios[rdisk] = read_bio;
847
848 read_bio->bi_sector = r1_bio->sector + mirror->rdev->data_offset;
849 read_bio->bi_bdev = mirror->rdev->bdev;
850 read_bio->bi_end_io = raid1_end_read_request;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +0200851 read_bio->bi_rw = READ | do_sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 read_bio->bi_private = r1_bio;
853
854 generic_make_request(read_bio);
855 return 0;
856 }
857
858 /*
859 * WRITE:
860 */
861 /* first select target devices under spinlock and
862 * inc refcount on their rdev. Record them by setting
863 * bios[x] to bio
864 */
865 disks = conf->raid_disks;
Dan Williams6bfe0b42008-04-30 00:52:32 -0700866 retry_write:
867 blocked_rdev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 rcu_read_lock();
869 for (i = 0; i < disks; i++) {
Dan Williams6bfe0b42008-04-30 00:52:32 -0700870 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
871 if (rdev && unlikely(test_bit(Blocked, &rdev->flags))) {
872 atomic_inc(&rdev->nr_pending);
873 blocked_rdev = rdev;
874 break;
875 }
876 if (rdev && !test_bit(Faulty, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 atomic_inc(&rdev->nr_pending);
NeilBrownb2d444d2005-11-08 21:39:31 -0800878 if (test_bit(Faulty, &rdev->flags)) {
NeilBrown03c902e2006-01-06 00:20:46 -0800879 rdev_dec_pending(rdev, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 r1_bio->bios[i] = NULL;
NeilBrown964147d2010-05-18 15:27:13 +1000881 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 r1_bio->bios[i] = bio;
NeilBrown964147d2010-05-18 15:27:13 +1000883 targets++;
884 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 } else
886 r1_bio->bios[i] = NULL;
887 }
888 rcu_read_unlock();
889
Dan Williams6bfe0b42008-04-30 00:52:32 -0700890 if (unlikely(blocked_rdev)) {
891 /* Wait for this device to become unblocked */
892 int j;
893
894 for (j = 0; j < i; j++)
895 if (r1_bio->bios[j])
896 rdev_dec_pending(conf->mirrors[j].rdev, mddev);
897
898 allow_barrier(conf);
899 md_wait_for_blocked_rdev(blocked_rdev, mddev);
900 wait_barrier(conf);
901 goto retry_write;
902 }
903
NeilBrown4b6d2872005-09-09 16:23:47 -0700904 BUG_ON(targets == 0); /* we never fail the last device */
905
NeilBrown191ea9b2005-06-21 17:17:23 -0700906 if (targets < conf->raid_disks) {
907 /* array is degraded, we will not clear the bitmap
908 * on I/O completion (see raid1_end_write_request) */
909 set_bit(R1BIO_Degraded, &r1_bio->state);
910 }
NeilBrown06d91a52005-06-21 17:17:12 -0700911
NeilBrowne5551902010-03-31 11:21:44 +1100912 /* do behind I/O ?
913 * Not if there are too many, or cannot allocate memory,
914 * or a reader on WriteMostly is waiting for behind writes
915 * to flush */
NeilBrown4b6d2872005-09-09 16:23:47 -0700916 if (bitmap &&
NeilBrown42a04b52009-12-14 12:49:53 +1100917 (atomic_read(&bitmap->behind_writes)
918 < mddev->bitmap_info.max_write_behind) &&
NeilBrowne5551902010-03-31 11:21:44 +1100919 !waitqueue_active(&bitmap->behind_wait) &&
NeilBrown4b6d2872005-09-09 16:23:47 -0700920 (behind_pages = alloc_behind_pages(bio)) != NULL)
921 set_bit(R1BIO_BehindIO, &r1_bio->state);
922
NeilBrown4e780642010-10-19 12:54:01 +1100923 atomic_set(&r1_bio->remaining, 1);
NeilBrown4b6d2872005-09-09 16:23:47 -0700924 atomic_set(&r1_bio->behind_remaining, 0);
NeilBrown191ea9b2005-06-21 17:17:23 -0700925
NeilBrown4e780642010-10-19 12:54:01 +1100926 bitmap_startwrite(bitmap, bio->bi_sector, r1_bio->sectors,
927 test_bit(R1BIO_BehindIO, &r1_bio->state));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 for (i = 0; i < disks; i++) {
929 struct bio *mbio;
930 if (!r1_bio->bios[i])
931 continue;
932
NeilBrowna167f662010-10-26 18:31:13 +1100933 mbio = bio_clone_mddev(bio, GFP_NOIO, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 r1_bio->bios[i] = mbio;
935
936 mbio->bi_sector = r1_bio->sector + conf->mirrors[i].rdev->data_offset;
937 mbio->bi_bdev = conf->mirrors[i].rdev->bdev;
938 mbio->bi_end_io = raid1_end_write_request;
Tejun Heoe9c74692010-09-03 11:56:18 +0200939 mbio->bi_rw = WRITE | do_flush_fua | do_sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 mbio->bi_private = r1_bio;
941
NeilBrown4b6d2872005-09-09 16:23:47 -0700942 if (behind_pages) {
943 struct bio_vec *bvec;
944 int j;
945
946 /* Yes, I really want the '__' version so that
947 * we clear any unused pointer in the io_vec, rather
948 * than leave them unchanged. This is important
949 * because when we come to free the pages, we won't
NeilBrown046abee2010-10-26 15:46:20 +1100950 * know the original bi_idx, so we just free
NeilBrown4b6d2872005-09-09 16:23:47 -0700951 * them all
952 */
953 __bio_for_each_segment(bvec, mbio, j, 0)
NeilBrown4e780642010-10-19 12:54:01 +1100954 bvec->bv_page = behind_pages[j].bv_page;
NeilBrown4b6d2872005-09-09 16:23:47 -0700955 if (test_bit(WriteMostly, &conf->mirrors[i].rdev->flags))
956 atomic_inc(&r1_bio->behind_remaining);
957 }
958
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 atomic_inc(&r1_bio->remaining);
NeilBrown4e780642010-10-19 12:54:01 +1100960 spin_lock_irqsave(&conf->device_lock, flags);
961 bio_list_add(&conf->pending_bio_list, mbio);
962 blk_plug_device(mddev->queue);
963 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 }
NeilBrown4e780642010-10-19 12:54:01 +1100965 r1_bio_write_done(r1_bio, bio->bi_vcnt, behind_pages, behind_pages != NULL);
NeilBrown4b6d2872005-09-09 16:23:47 -0700966 kfree(behind_pages); /* the behind pages are attached to the bios now */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
NeilBrown4e780642010-10-19 12:54:01 +1100968 /* In case raid1d snuck in to freeze_array */
NeilBrowna35e63e2008-03-04 14:29:29 -0800969 wake_up(&conf->wait_barrier);
970
Lars Ellenberge3881a62007-01-10 23:15:37 -0800971 if (do_sync)
972 md_wakeup_thread(mddev->thread);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
974 return 0;
975}
976
977static void status(struct seq_file *seq, mddev_t *mddev)
978{
NeilBrown070ec552009-06-16 16:54:21 +1000979 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 int i;
981
982 seq_printf(seq, " [%d/%d] [", conf->raid_disks,
NeilBrown11ce99e2006-10-03 01:15:52 -0700983 conf->raid_disks - mddev->degraded);
NeilBrownddac7c72006-08-31 21:27:36 -0700984 rcu_read_lock();
985 for (i = 0; i < conf->raid_disks; i++) {
986 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 seq_printf(seq, "%s",
NeilBrownddac7c72006-08-31 21:27:36 -0700988 rdev && test_bit(In_sync, &rdev->flags) ? "U" : "_");
989 }
990 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 seq_printf(seq, "]");
992}
993
994
995static void error(mddev_t *mddev, mdk_rdev_t *rdev)
996{
997 char b[BDEVNAME_SIZE];
NeilBrown070ec552009-06-16 16:54:21 +1000998 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
1000 /*
1001 * If it is not operational, then we have already marked it as dead
1002 * else if it is the last working disks, ignore the error, let the
1003 * next level up know.
1004 * else mark the drive as failed
1005 */
NeilBrownb2d444d2005-11-08 21:39:31 -08001006 if (test_bit(In_sync, &rdev->flags)
NeilBrown4044ba52009-01-09 08:31:11 +11001007 && (conf->raid_disks - mddev->degraded) == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 /*
1009 * Don't fail the drive, act as though we were just a
NeilBrown4044ba52009-01-09 08:31:11 +11001010 * normal single drive.
1011 * However don't try a recovery from this drive as
1012 * it is very likely to fail.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 */
NeilBrown4044ba52009-01-09 08:31:11 +11001014 mddev->recovery_disabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 return;
NeilBrown4044ba52009-01-09 08:31:11 +11001016 }
NeilBrownc04be0a2006-10-03 01:15:53 -07001017 if (test_and_clear_bit(In_sync, &rdev->flags)) {
1018 unsigned long flags;
1019 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 mddev->degraded++;
NeilBrowndd00a992007-05-10 03:15:50 -07001021 set_bit(Faulty, &rdev->flags);
NeilBrownc04be0a2006-10-03 01:15:53 -07001022 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 /*
1024 * if recovery is running, make sure it aborts.
1025 */
NeilBrowndfc70642008-05-23 13:04:39 -07001026 set_bit(MD_RECOVERY_INTR, &mddev->recovery);
NeilBrowndd00a992007-05-10 03:15:50 -07001027 } else
1028 set_bit(Faulty, &rdev->flags);
NeilBrown850b2b42006-10-03 01:15:46 -07001029 set_bit(MD_CHANGE_DEVS, &mddev->flags);
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001030 printk(KERN_ALERT "md/raid1:%s: Disk failure on %s, disabling device.\n"
1031 KERN_ALERT "md/raid1:%s: Operation continuing on %d devices.\n",
1032 mdname(mddev), bdevname(rdev->bdev, b),
1033 mdname(mddev), conf->raid_disks - mddev->degraded);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034}
1035
1036static void print_conf(conf_t *conf)
1037{
1038 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001040 printk(KERN_DEBUG "RAID1 conf printout:\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 if (!conf) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001042 printk(KERN_DEBUG "(!conf)\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 return;
1044 }
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001045 printk(KERN_DEBUG " --- wd:%d rd:%d\n", conf->raid_disks - conf->mddev->degraded,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 conf->raid_disks);
1047
NeilBrownddac7c72006-08-31 21:27:36 -07001048 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 for (i = 0; i < conf->raid_disks; i++) {
1050 char b[BDEVNAME_SIZE];
NeilBrownddac7c72006-08-31 21:27:36 -07001051 mdk_rdev_t *rdev = rcu_dereference(conf->mirrors[i].rdev);
1052 if (rdev)
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001053 printk(KERN_DEBUG " disk %d, wo:%d, o:%d, dev:%s\n",
NeilBrownddac7c72006-08-31 21:27:36 -07001054 i, !test_bit(In_sync, &rdev->flags),
1055 !test_bit(Faulty, &rdev->flags),
1056 bdevname(rdev->bdev,b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 }
NeilBrownddac7c72006-08-31 21:27:36 -07001058 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059}
1060
1061static void close_sync(conf_t *conf)
1062{
NeilBrown17999be2006-01-06 00:20:12 -08001063 wait_barrier(conf);
1064 allow_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
1066 mempool_destroy(conf->r1buf_pool);
1067 conf->r1buf_pool = NULL;
1068}
1069
1070static int raid1_spare_active(mddev_t *mddev)
1071{
1072 int i;
1073 conf_t *conf = mddev->private;
NeilBrown6b965622010-08-18 11:56:59 +10001074 int count = 0;
1075 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
1077 /*
1078 * Find all failed disks within the RAID1 configuration
NeilBrownddac7c72006-08-31 21:27:36 -07001079 * and mark them readable.
1080 * Called under mddev lock, so rcu protection not needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 */
1082 for (i = 0; i < conf->raid_disks; i++) {
NeilBrownddac7c72006-08-31 21:27:36 -07001083 mdk_rdev_t *rdev = conf->mirrors[i].rdev;
1084 if (rdev
1085 && !test_bit(Faulty, &rdev->flags)
NeilBrownc04be0a2006-10-03 01:15:53 -07001086 && !test_and_set_bit(In_sync, &rdev->flags)) {
NeilBrown6b965622010-08-18 11:56:59 +10001087 count++;
Adrian Drzewieckie6ffbcb2010-08-18 11:49:02 +10001088 sysfs_notify_dirent(rdev->sysfs_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 }
1090 }
NeilBrown6b965622010-08-18 11:56:59 +10001091 spin_lock_irqsave(&conf->device_lock, flags);
1092 mddev->degraded -= count;
1093 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094
1095 print_conf(conf);
NeilBrown6b965622010-08-18 11:56:59 +10001096 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097}
1098
1099
1100static int raid1_add_disk(mddev_t *mddev, mdk_rdev_t *rdev)
1101{
1102 conf_t *conf = mddev->private;
Neil Brown199050e2008-06-28 08:31:33 +10001103 int err = -EEXIST;
NeilBrown41158c72005-06-21 17:17:25 -07001104 int mirror = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 mirror_info_t *p;
Neil Brown6c2fce22008-06-28 08:31:31 +10001106 int first = 0;
1107 int last = mddev->raid_disks - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Neil Brown6c2fce22008-06-28 08:31:31 +10001109 if (rdev->raid_disk >= 0)
1110 first = last = rdev->raid_disk;
1111
1112 for (mirror = first; mirror <= last; mirror++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 if ( !(p=conf->mirrors+mirror)->rdev) {
1114
Martin K. Petersen8f6c2e42009-07-01 11:13:45 +10001115 disk_stack_limits(mddev->gendisk, rdev->bdev,
1116 rdev->data_offset << 9);
NeilBrown627a2d32010-03-08 16:44:38 +11001117 /* as we don't honour merge_bvec_fn, we must
1118 * never risk violating it, so limit
1119 * ->max_segments to one lying with a single
1120 * page, as a one page request is never in
1121 * violation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 */
NeilBrown627a2d32010-03-08 16:44:38 +11001123 if (rdev->bdev->bd_disk->queue->merge_bvec_fn) {
1124 blk_queue_max_segments(mddev->queue, 1);
1125 blk_queue_segment_boundary(mddev->queue,
1126 PAGE_CACHE_SIZE - 1);
1127 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
1129 p->head_position = 0;
1130 rdev->raid_disk = mirror;
Neil Brown199050e2008-06-28 08:31:33 +10001131 err = 0;
NeilBrown6aea114a2005-11-28 13:44:13 -08001132 /* As all devices are equivalent, we don't need a full recovery
1133 * if this was recently any drive of the array
1134 */
1135 if (rdev->saved_raid_disk < 0)
NeilBrown41158c72005-06-21 17:17:25 -07001136 conf->fullsync = 1;
Suzanne Woodd6065f72005-11-08 21:39:27 -08001137 rcu_assign_pointer(p->rdev, rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 break;
1139 }
Andre Nollac5e7112009-08-03 10:59:47 +10001140 md_integrity_add_rdev(rdev, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 print_conf(conf);
Neil Brown199050e2008-06-28 08:31:33 +10001142 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143}
1144
1145static int raid1_remove_disk(mddev_t *mddev, int number)
1146{
1147 conf_t *conf = mddev->private;
1148 int err = 0;
1149 mdk_rdev_t *rdev;
1150 mirror_info_t *p = conf->mirrors+ number;
1151
1152 print_conf(conf);
1153 rdev = p->rdev;
1154 if (rdev) {
NeilBrownb2d444d2005-11-08 21:39:31 -08001155 if (test_bit(In_sync, &rdev->flags) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 atomic_read(&rdev->nr_pending)) {
1157 err = -EBUSY;
1158 goto abort;
1159 }
NeilBrown046abee2010-10-26 15:46:20 +11001160 /* Only remove non-faulty devices if recovery
NeilBrowndfc70642008-05-23 13:04:39 -07001161 * is not possible.
1162 */
1163 if (!test_bit(Faulty, &rdev->flags) &&
1164 mddev->degraded < conf->raid_disks) {
1165 err = -EBUSY;
1166 goto abort;
1167 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 p->rdev = NULL;
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07001169 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 if (atomic_read(&rdev->nr_pending)) {
1171 /* lost the race, try later */
1172 err = -EBUSY;
1173 p->rdev = rdev;
Andre Nollac5e7112009-08-03 10:59:47 +10001174 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 }
Andre Nollac5e7112009-08-03 10:59:47 +10001176 md_integrity_register(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 }
1178abort:
1179
1180 print_conf(conf);
1181 return err;
1182}
1183
1184
NeilBrown6712ecf2007-09-27 12:47:43 +02001185static void end_sync_read(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186{
H Hartley Sweeten7b928132010-03-08 16:02:40 +11001187 r1bio_t *r1_bio = bio->bi_private;
NeilBrownd11c1712006-01-06 00:20:26 -08001188 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
NeilBrownd11c1712006-01-06 00:20:26 -08001190 for (i=r1_bio->mddev->raid_disks; i--; )
1191 if (r1_bio->bios[i] == bio)
1192 break;
1193 BUG_ON(i < 0);
1194 update_head_pos(i, r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 /*
1196 * we have read a block, now it needs to be re-written,
1197 * or re-read if the read failed.
1198 * We don't do much here, just schedule handling by raid1d
1199 */
NeilBrown69382e82006-01-06 00:20:22 -08001200 if (test_bit(BIO_UPTODATE, &bio->bi_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 set_bit(R1BIO_Uptodate, &r1_bio->state);
NeilBrownd11c1712006-01-06 00:20:26 -08001202
1203 if (atomic_dec_and_test(&r1_bio->remaining))
1204 reschedule_retry(r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205}
1206
NeilBrown6712ecf2007-09-27 12:47:43 +02001207static void end_sync_write(struct bio *bio, int error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208{
1209 int uptodate = test_bit(BIO_UPTODATE, &bio->bi_flags);
H Hartley Sweeten7b928132010-03-08 16:02:40 +11001210 r1bio_t *r1_bio = bio->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 mddev_t *mddev = r1_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +10001212 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 int i;
1214 int mirror=0;
1215
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 for (i = 0; i < conf->raid_disks; i++)
1217 if (r1_bio->bios[i] == bio) {
1218 mirror = i;
1219 break;
1220 }
NeilBrown6b1117d2006-03-31 02:31:57 -08001221 if (!uptodate) {
NeilBrown57dab0b2010-10-19 10:03:39 +11001222 sector_t sync_blocks = 0;
NeilBrown6b1117d2006-03-31 02:31:57 -08001223 sector_t s = r1_bio->sector;
1224 long sectors_to_go = r1_bio->sectors;
1225 /* make sure these bits doesn't get cleared. */
1226 do {
NeilBrown5e3db642006-07-10 04:44:18 -07001227 bitmap_end_sync(mddev->bitmap, s,
NeilBrown6b1117d2006-03-31 02:31:57 -08001228 &sync_blocks, 1);
1229 s += sync_blocks;
1230 sectors_to_go -= sync_blocks;
1231 } while (sectors_to_go > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 md_error(mddev, conf->mirrors[mirror].rdev);
NeilBrown6b1117d2006-03-31 02:31:57 -08001233 }
NeilBrowne3b97032005-08-04 12:53:34 -07001234
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 update_head_pos(mirror, r1_bio);
1236
1237 if (atomic_dec_and_test(&r1_bio->remaining)) {
NeilBrown73d5c382009-02-25 13:18:47 +11001238 sector_t s = r1_bio->sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 put_buf(r1_bio);
NeilBrown73d5c382009-02-25 13:18:47 +11001240 md_done_sync(mddev, s, uptodate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242}
1243
1244static void sync_request_write(mddev_t *mddev, r1bio_t *r1_bio)
1245{
NeilBrown070ec552009-06-16 16:54:21 +10001246 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 int i;
1248 int disks = conf->raid_disks;
1249 struct bio *bio, *wbio;
1250
1251 bio = r1_bio->bios[r1_bio->read_disk];
1252
NeilBrown69382e82006-01-06 00:20:22 -08001253
NeilBrownd11c1712006-01-06 00:20:26 -08001254 if (test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) {
1255 /* We have read all readable devices. If we haven't
1256 * got the block, then there is no hope left.
1257 * If we have, then we want to do a comparison
1258 * and skip the write if everything is the same.
1259 * If any blocks failed to read, then we need to
1260 * attempt an over-write
1261 */
1262 int primary;
1263 if (!test_bit(R1BIO_Uptodate, &r1_bio->state)) {
1264 for (i=0; i<mddev->raid_disks; i++)
1265 if (r1_bio->bios[i]->bi_end_io == end_sync_read)
1266 md_error(mddev, conf->mirrors[i].rdev);
1267
1268 md_done_sync(mddev, r1_bio->sectors, 1);
1269 put_buf(r1_bio);
1270 return;
1271 }
1272 for (primary=0; primary<mddev->raid_disks; primary++)
1273 if (r1_bio->bios[primary]->bi_end_io == end_sync_read &&
1274 test_bit(BIO_UPTODATE, &r1_bio->bios[primary]->bi_flags)) {
1275 r1_bio->bios[primary]->bi_end_io = NULL;
NeilBrown03c902e2006-01-06 00:20:46 -08001276 rdev_dec_pending(conf->mirrors[primary].rdev, mddev);
NeilBrownd11c1712006-01-06 00:20:26 -08001277 break;
1278 }
1279 r1_bio->read_disk = primary;
1280 for (i=0; i<mddev->raid_disks; i++)
Mike Accettaed456662007-06-16 10:16:07 -07001281 if (r1_bio->bios[i]->bi_end_io == end_sync_read) {
NeilBrownd11c1712006-01-06 00:20:26 -08001282 int j;
1283 int vcnt = r1_bio->sectors >> (PAGE_SHIFT- 9);
1284 struct bio *pbio = r1_bio->bios[primary];
1285 struct bio *sbio = r1_bio->bios[i];
Mike Accettaed456662007-06-16 10:16:07 -07001286
1287 if (test_bit(BIO_UPTODATE, &sbio->bi_flags)) {
1288 for (j = vcnt; j-- ; ) {
1289 struct page *p, *s;
1290 p = pbio->bi_io_vec[j].bv_page;
1291 s = sbio->bi_io_vec[j].bv_page;
1292 if (memcmp(page_address(p),
1293 page_address(s),
1294 PAGE_SIZE))
1295 break;
1296 }
1297 } else
1298 j = 0;
NeilBrownd11c1712006-01-06 00:20:26 -08001299 if (j >= 0)
1300 mddev->resync_mismatches += r1_bio->sectors;
NeilBrowncf7a4412007-10-16 23:30:55 -07001301 if (j < 0 || (test_bit(MD_RECOVERY_CHECK, &mddev->recovery)
1302 && test_bit(BIO_UPTODATE, &sbio->bi_flags))) {
NeilBrownd11c1712006-01-06 00:20:26 -08001303 sbio->bi_end_io = NULL;
NeilBrown03c902e2006-01-06 00:20:46 -08001304 rdev_dec_pending(conf->mirrors[i].rdev, mddev);
1305 } else {
NeilBrownd11c1712006-01-06 00:20:26 -08001306 /* fixup the bio for reuse */
NeilBrown698b18c2008-05-23 13:04:35 -07001307 int size;
NeilBrownd11c1712006-01-06 00:20:26 -08001308 sbio->bi_vcnt = vcnt;
1309 sbio->bi_size = r1_bio->sectors << 9;
1310 sbio->bi_idx = 0;
1311 sbio->bi_phys_segments = 0;
NeilBrownd11c1712006-01-06 00:20:26 -08001312 sbio->bi_flags &= ~(BIO_POOL_MASK - 1);
1313 sbio->bi_flags |= 1 << BIO_UPTODATE;
1314 sbio->bi_next = NULL;
1315 sbio->bi_sector = r1_bio->sector +
1316 conf->mirrors[i].rdev->data_offset;
1317 sbio->bi_bdev = conf->mirrors[i].rdev->bdev;
NeilBrown698b18c2008-05-23 13:04:35 -07001318 size = sbio->bi_size;
1319 for (j = 0; j < vcnt ; j++) {
1320 struct bio_vec *bi;
1321 bi = &sbio->bi_io_vec[j];
1322 bi->bv_offset = 0;
1323 if (size > PAGE_SIZE)
1324 bi->bv_len = PAGE_SIZE;
1325 else
1326 bi->bv_len = size;
1327 size -= PAGE_SIZE;
1328 memcpy(page_address(bi->bv_page),
NeilBrown3eda22d2007-01-26 00:57:01 -08001329 page_address(pbio->bi_io_vec[j].bv_page),
1330 PAGE_SIZE);
NeilBrown698b18c2008-05-23 13:04:35 -07001331 }
NeilBrown3eda22d2007-01-26 00:57:01 -08001332
NeilBrownd11c1712006-01-06 00:20:26 -08001333 }
1334 }
1335 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 if (!test_bit(R1BIO_Uptodate, &r1_bio->state)) {
NeilBrown69382e82006-01-06 00:20:22 -08001337 /* ouch - failed to read all of that.
1338 * Try some synchronous reads of other devices to get
1339 * good data, much like with normal read errors. Only
NeilBrownddac7c72006-08-31 21:27:36 -07001340 * read into the pages we already have so we don't
NeilBrown69382e82006-01-06 00:20:22 -08001341 * need to re-issue the read request.
1342 * We don't need to freeze the array, because being in an
1343 * active sync request, there is no normal IO, and
1344 * no overlapping syncs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 */
NeilBrown69382e82006-01-06 00:20:22 -08001346 sector_t sect = r1_bio->sector;
1347 int sectors = r1_bio->sectors;
1348 int idx = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
NeilBrown69382e82006-01-06 00:20:22 -08001350 while(sectors) {
1351 int s = sectors;
1352 int d = r1_bio->read_disk;
1353 int success = 0;
1354 mdk_rdev_t *rdev;
1355
1356 if (s > (PAGE_SIZE>>9))
1357 s = PAGE_SIZE >> 9;
1358 do {
1359 if (r1_bio->bios[d]->bi_end_io == end_sync_read) {
NeilBrownddac7c72006-08-31 21:27:36 -07001360 /* No rcu protection needed here devices
1361 * can only be removed when no resync is
1362 * active, and resync is currently active
1363 */
NeilBrown69382e82006-01-06 00:20:22 -08001364 rdev = conf->mirrors[d].rdev;
NeilBrown2b193362010-10-27 15:16:40 +11001365 if (sync_page_io(rdev,
NeilBrown69382e82006-01-06 00:20:22 -08001366 sect + rdev->data_offset,
1367 s<<9,
1368 bio->bi_io_vec[idx].bv_page,
1369 READ)) {
1370 success = 1;
1371 break;
1372 }
1373 }
1374 d++;
1375 if (d == conf->raid_disks)
1376 d = 0;
1377 } while (!success && d != r1_bio->read_disk);
1378
1379 if (success) {
NeilBrown097426f2006-01-06 00:20:37 -08001380 int start = d;
NeilBrown69382e82006-01-06 00:20:22 -08001381 /* write it back and re-read */
1382 set_bit(R1BIO_Uptodate, &r1_bio->state);
1383 while (d != r1_bio->read_disk) {
1384 if (d == 0)
1385 d = conf->raid_disks;
1386 d--;
1387 if (r1_bio->bios[d]->bi_end_io != end_sync_read)
1388 continue;
1389 rdev = conf->mirrors[d].rdev;
NeilBrown4dbcdc72006-01-06 00:20:52 -08001390 atomic_add(s, &rdev->corrected_errors);
NeilBrown2b193362010-10-27 15:16:40 +11001391 if (sync_page_io(rdev,
NeilBrown69382e82006-01-06 00:20:22 -08001392 sect + rdev->data_offset,
1393 s<<9,
1394 bio->bi_io_vec[idx].bv_page,
NeilBrown097426f2006-01-06 00:20:37 -08001395 WRITE) == 0)
1396 md_error(mddev, rdev);
1397 }
1398 d = start;
1399 while (d != r1_bio->read_disk) {
1400 if (d == 0)
1401 d = conf->raid_disks;
1402 d--;
1403 if (r1_bio->bios[d]->bi_end_io != end_sync_read)
1404 continue;
1405 rdev = conf->mirrors[d].rdev;
NeilBrown2b193362010-10-27 15:16:40 +11001406 if (sync_page_io(rdev,
NeilBrown69382e82006-01-06 00:20:22 -08001407 sect + rdev->data_offset,
1408 s<<9,
1409 bio->bi_io_vec[idx].bv_page,
NeilBrown097426f2006-01-06 00:20:37 -08001410 READ) == 0)
NeilBrown69382e82006-01-06 00:20:22 -08001411 md_error(mddev, rdev);
NeilBrown69382e82006-01-06 00:20:22 -08001412 }
1413 } else {
1414 char b[BDEVNAME_SIZE];
1415 /* Cannot read from anywhere, array is toast */
1416 md_error(mddev, conf->mirrors[r1_bio->read_disk].rdev);
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001417 printk(KERN_ALERT "md/raid1:%s: %s: unrecoverable I/O read error"
NeilBrown69382e82006-01-06 00:20:22 -08001418 " for block %llu\n",
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001419 mdname(mddev),
1420 bdevname(bio->bi_bdev, b),
NeilBrown69382e82006-01-06 00:20:22 -08001421 (unsigned long long)r1_bio->sector);
1422 md_done_sync(mddev, r1_bio->sectors, 0);
1423 put_buf(r1_bio);
1424 return;
1425 }
1426 sectors -= s;
1427 sect += s;
1428 idx ++;
1429 }
1430 }
NeilBrownd11c1712006-01-06 00:20:26 -08001431
1432 /*
1433 * schedule writes
1434 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 atomic_set(&r1_bio->remaining, 1);
1436 for (i = 0; i < disks ; i++) {
1437 wbio = r1_bio->bios[i];
NeilBrown3e198f72006-01-06 00:20:21 -08001438 if (wbio->bi_end_io == NULL ||
1439 (wbio->bi_end_io == end_sync_read &&
1440 (i == r1_bio->read_disk ||
1441 !test_bit(MD_RECOVERY_SYNC, &mddev->recovery))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 continue;
1443
NeilBrown3e198f72006-01-06 00:20:21 -08001444 wbio->bi_rw = WRITE;
1445 wbio->bi_end_io = end_sync_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 atomic_inc(&r1_bio->remaining);
1447 md_sync_acct(conf->mirrors[i].rdev->bdev, wbio->bi_size >> 9);
NeilBrown191ea9b2005-06-21 17:17:23 -07001448
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 generic_make_request(wbio);
1450 }
1451
1452 if (atomic_dec_and_test(&r1_bio->remaining)) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001453 /* if we're here, all write(s) have completed, so clean up */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 md_done_sync(mddev, r1_bio->sectors, 1);
1455 put_buf(r1_bio);
1456 }
1457}
1458
1459/*
1460 * This is a kernel thread which:
1461 *
1462 * 1. Retries failed read operations on working mirrors.
1463 * 2. Updates the raid superblock when problems encounter.
1464 * 3. Performs writes following reads for array syncronising.
1465 */
1466
NeilBrown867868f2006-10-03 01:15:51 -07001467static void fix_read_error(conf_t *conf, int read_disk,
1468 sector_t sect, int sectors)
1469{
1470 mddev_t *mddev = conf->mddev;
1471 while(sectors) {
1472 int s = sectors;
1473 int d = read_disk;
1474 int success = 0;
1475 int start;
1476 mdk_rdev_t *rdev;
1477
1478 if (s > (PAGE_SIZE>>9))
1479 s = PAGE_SIZE >> 9;
1480
1481 do {
1482 /* Note: no rcu protection needed here
1483 * as this is synchronous in the raid1d thread
1484 * which is the thread that might remove
1485 * a device. If raid1d ever becomes multi-threaded....
1486 */
1487 rdev = conf->mirrors[d].rdev;
1488 if (rdev &&
1489 test_bit(In_sync, &rdev->flags) &&
NeilBrown2b193362010-10-27 15:16:40 +11001490 sync_page_io(rdev,
NeilBrown867868f2006-10-03 01:15:51 -07001491 sect + rdev->data_offset,
1492 s<<9,
1493 conf->tmppage, READ))
1494 success = 1;
1495 else {
1496 d++;
1497 if (d == conf->raid_disks)
1498 d = 0;
1499 }
1500 } while (!success && d != read_disk);
1501
1502 if (!success) {
1503 /* Cannot read from anywhere -- bye bye array */
1504 md_error(mddev, conf->mirrors[read_disk].rdev);
1505 break;
1506 }
1507 /* write it back and re-read */
1508 start = d;
1509 while (d != read_disk) {
1510 if (d==0)
1511 d = conf->raid_disks;
1512 d--;
1513 rdev = conf->mirrors[d].rdev;
1514 if (rdev &&
1515 test_bit(In_sync, &rdev->flags)) {
NeilBrown2b193362010-10-27 15:16:40 +11001516 if (sync_page_io(rdev,
NeilBrown867868f2006-10-03 01:15:51 -07001517 sect + rdev->data_offset,
1518 s<<9, conf->tmppage, WRITE)
1519 == 0)
1520 /* Well, this device is dead */
1521 md_error(mddev, rdev);
1522 }
1523 }
1524 d = start;
1525 while (d != read_disk) {
1526 char b[BDEVNAME_SIZE];
1527 if (d==0)
1528 d = conf->raid_disks;
1529 d--;
1530 rdev = conf->mirrors[d].rdev;
1531 if (rdev &&
1532 test_bit(In_sync, &rdev->flags)) {
NeilBrown2b193362010-10-27 15:16:40 +11001533 if (sync_page_io(rdev,
NeilBrown867868f2006-10-03 01:15:51 -07001534 sect + rdev->data_offset,
1535 s<<9, conf->tmppage, READ)
1536 == 0)
1537 /* Well, this device is dead */
1538 md_error(mddev, rdev);
1539 else {
1540 atomic_add(s, &rdev->corrected_errors);
1541 printk(KERN_INFO
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001542 "md/raid1:%s: read error corrected "
NeilBrown867868f2006-10-03 01:15:51 -07001543 "(%d sectors at %llu on %s)\n",
1544 mdname(mddev), s,
Randy Dunlap969b7552006-10-28 10:38:32 -07001545 (unsigned long long)(sect +
1546 rdev->data_offset),
NeilBrown867868f2006-10-03 01:15:51 -07001547 bdevname(rdev->bdev, b));
1548 }
1549 }
1550 }
1551 sectors -= s;
1552 sect += s;
1553 }
1554}
1555
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556static void raid1d(mddev_t *mddev)
1557{
1558 r1bio_t *r1_bio;
1559 struct bio *bio;
1560 unsigned long flags;
NeilBrown070ec552009-06-16 16:54:21 +10001561 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 struct list_head *head = &conf->retry_list;
1563 int unplug=0;
1564 mdk_rdev_t *rdev;
1565
1566 md_check_recovery(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
1568 for (;;) {
1569 char b[BDEVNAME_SIZE];
NeilBrowna35e63e2008-03-04 14:29:29 -08001570
1571 unplug += flush_pending_writes(conf);
1572
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 spin_lock_irqsave(&conf->device_lock, flags);
NeilBrowna35e63e2008-03-04 14:29:29 -08001574 if (list_empty(head)) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001575 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 break;
NeilBrowna35e63e2008-03-04 14:29:29 -08001577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 r1_bio = list_entry(head->prev, r1bio_t, retry_list);
1579 list_del(head->prev);
NeilBrownddaf22a2006-01-06 00:20:19 -08001580 conf->nr_queued--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 spin_unlock_irqrestore(&conf->device_lock, flags);
1582
1583 mddev = r1_bio->mddev;
NeilBrown070ec552009-06-16 16:54:21 +10001584 conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 if (test_bit(R1BIO_IsSync, &r1_bio->state)) {
1586 sync_request_write(mddev, r1_bio);
1587 unplug = 1;
1588 } else {
1589 int disk;
NeilBrownddaf22a2006-01-06 00:20:19 -08001590
1591 /* we got a read error. Maybe the drive is bad. Maybe just
1592 * the block and we can fix it.
1593 * We freeze all other IO, and try reading the block from
1594 * other devices. When we find one, we re-write
1595 * and check it that fixes the read error.
1596 * This is all done synchronously while the array is
1597 * frozen
1598 */
NeilBrown867868f2006-10-03 01:15:51 -07001599 if (mddev->ro == 0) {
1600 freeze_array(conf);
1601 fix_read_error(conf, r1_bio->read_disk,
1602 r1_bio->sector,
1603 r1_bio->sectors);
1604 unfreeze_array(conf);
NeilBrownd0e26072009-12-01 17:30:59 +11001605 } else
1606 md_error(mddev,
1607 conf->mirrors[r1_bio->read_disk].rdev);
NeilBrownddaf22a2006-01-06 00:20:19 -08001608
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 bio = r1_bio->bios[r1_bio->read_disk];
NeilBrownd0e26072009-12-01 17:30:59 +11001610 if ((disk=read_balance(conf, r1_bio)) == -1) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001611 printk(KERN_ALERT "md/raid1:%s: %s: unrecoverable I/O"
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 " read error for block %llu\n",
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001613 mdname(mddev),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 bdevname(bio->bi_bdev,b),
1615 (unsigned long long)r1_bio->sector);
1616 raid_end_bio_io(r1_bio);
1617 } else {
NeilBrown2c7d46e2010-08-18 16:16:05 +10001618 const unsigned long do_sync = r1_bio->master_bio->bi_rw & REQ_SYNC;
NeilBrowncf30a472006-01-06 00:20:23 -08001619 r1_bio->bios[r1_bio->read_disk] =
1620 mddev->ro ? IO_BLOCKED : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 r1_bio->read_disk = disk;
1622 bio_put(bio);
NeilBrowna167f662010-10-26 18:31:13 +11001623 bio = bio_clone_mddev(r1_bio->master_bio,
1624 GFP_NOIO, mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 r1_bio->bios[r1_bio->read_disk] = bio;
1626 rdev = conf->mirrors[disk].rdev;
1627 if (printk_ratelimit())
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001628 printk(KERN_ERR "md/raid1:%s: redirecting sector %llu to"
NeilBrownd754c5a2010-04-07 12:14:43 +10001629 " other mirror: %s\n",
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001630 mdname(mddev),
NeilBrownd754c5a2010-04-07 12:14:43 +10001631 (unsigned long long)r1_bio->sector,
1632 bdevname(rdev->bdev,b));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 bio->bi_sector = r1_bio->sector + rdev->data_offset;
1634 bio->bi_bdev = rdev->bdev;
1635 bio->bi_end_io = raid1_end_read_request;
Christoph Hellwig7b6d91d2010-08-07 18:20:39 +02001636 bio->bi_rw = READ | do_sync;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 bio->bi_private = r1_bio;
1638 unplug = 1;
1639 generic_make_request(bio);
1640 }
1641 }
NeilBrown1d9d5242009-10-16 15:55:32 +11001642 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 if (unplug)
1645 unplug_slaves(mddev);
1646}
1647
1648
1649static int init_resync(conf_t *conf)
1650{
1651 int buffs;
1652
1653 buffs = RESYNC_WINDOW / RESYNC_BLOCK_SIZE;
Eric Sesterhenn9e77c482006-04-01 01:08:49 +02001654 BUG_ON(conf->r1buf_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 conf->r1buf_pool = mempool_create(buffs, r1buf_pool_alloc, r1buf_pool_free,
1656 conf->poolinfo);
1657 if (!conf->r1buf_pool)
1658 return -ENOMEM;
1659 conf->next_resync = 0;
1660 return 0;
1661}
1662
1663/*
1664 * perform a "sync" on one "block"
1665 *
1666 * We need to make sure that no normal I/O request - particularly write
1667 * requests - conflict with active sync requests.
1668 *
1669 * This is achieved by tracking pending requests and a 'barrier' concept
1670 * that can be installed to exclude normal IO requests.
1671 */
1672
NeilBrown57afd892005-06-21 17:17:13 -07001673static sector_t sync_request(mddev_t *mddev, sector_t sector_nr, int *skipped, int go_faster)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674{
NeilBrown070ec552009-06-16 16:54:21 +10001675 conf_t *conf = mddev->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 r1bio_t *r1_bio;
1677 struct bio *bio;
1678 sector_t max_sector, nr_sectors;
NeilBrown3e198f72006-01-06 00:20:21 -08001679 int disk = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 int i;
NeilBrown3e198f72006-01-06 00:20:21 -08001681 int wonly = -1;
1682 int write_targets = 0, read_targets = 0;
NeilBrown57dab0b2010-10-19 10:03:39 +11001683 sector_t sync_blocks;
NeilBrowne3b97032005-08-04 12:53:34 -07001684 int still_degraded = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685
1686 if (!conf->r1buf_pool)
1687 if (init_resync(conf))
NeilBrown57afd892005-06-21 17:17:13 -07001688 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
Andre Noll58c0fed2009-03-31 14:33:13 +11001690 max_sector = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 if (sector_nr >= max_sector) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001692 /* If we aborted, we need to abort the
1693 * sync on the 'current' bitmap chunk (there will
1694 * only be one in raid1 resync.
1695 * We can find the current addess in mddev->curr_resync
1696 */
NeilBrown6a806c52005-07-15 03:56:35 -07001697 if (mddev->curr_resync < max_sector) /* aborted */
1698 bitmap_end_sync(mddev->bitmap, mddev->curr_resync,
NeilBrown191ea9b2005-06-21 17:17:23 -07001699 &sync_blocks, 1);
NeilBrown6a806c52005-07-15 03:56:35 -07001700 else /* completed sync */
NeilBrown191ea9b2005-06-21 17:17:23 -07001701 conf->fullsync = 0;
NeilBrown6a806c52005-07-15 03:56:35 -07001702
1703 bitmap_close_sync(mddev->bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 close_sync(conf);
1705 return 0;
1706 }
1707
NeilBrown07d84d102006-06-26 00:27:56 -07001708 if (mddev->bitmap == NULL &&
1709 mddev->recovery_cp == MaxSector &&
NeilBrown6394cca2006-08-27 01:23:50 -07001710 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery) &&
NeilBrown07d84d102006-06-26 00:27:56 -07001711 conf->fullsync == 0) {
1712 *skipped = 1;
1713 return max_sector - sector_nr;
1714 }
NeilBrown6394cca2006-08-27 01:23:50 -07001715 /* before building a request, check if we can skip these blocks..
1716 * This call the bitmap_start_sync doesn't actually record anything
1717 */
NeilBrowne3b97032005-08-04 12:53:34 -07001718 if (!bitmap_start_sync(mddev->bitmap, sector_nr, &sync_blocks, 1) &&
NeilBrowne5de485f2005-11-08 21:39:38 -08001719 !conf->fullsync && !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001720 /* We can skip this block, and probably several more */
1721 *skipped = 1;
1722 return sync_blocks;
1723 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 /*
NeilBrown17999be2006-01-06 00:20:12 -08001725 * If there is non-resync activity waiting for a turn,
1726 * and resync is going fast enough,
1727 * then let it though before starting on this new sync request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 */
NeilBrown17999be2006-01-06 00:20:12 -08001729 if (!go_faster && conf->nr_waiting)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 msleep_interruptible(1000);
NeilBrown17999be2006-01-06 00:20:12 -08001731
NeilBrownb47490c2008-02-06 01:39:50 -08001732 bitmap_cond_end_sync(mddev->bitmap, sector_nr);
NeilBrown1c4588e2010-10-26 17:41:22 +11001733 r1_bio = mempool_alloc(conf->r1buf_pool, GFP_NOIO);
NeilBrown17999be2006-01-06 00:20:12 -08001734 raise_barrier(conf);
1735
1736 conf->next_resync = sector_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
NeilBrown3e198f72006-01-06 00:20:21 -08001738 rcu_read_lock();
1739 /*
1740 * If we get a correctably read error during resync or recovery,
1741 * we might want to read from a different device. So we
1742 * flag all drives that could conceivably be read from for READ,
1743 * and any others (which will be non-In_sync devices) for WRITE.
1744 * If a read fails, we try reading from something else for which READ
1745 * is OK.
1746 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 r1_bio->mddev = mddev;
1749 r1_bio->sector = sector_nr;
NeilBrown191ea9b2005-06-21 17:17:23 -07001750 r1_bio->state = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 set_bit(R1BIO_IsSync, &r1_bio->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
1753 for (i=0; i < conf->raid_disks; i++) {
NeilBrown3e198f72006-01-06 00:20:21 -08001754 mdk_rdev_t *rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 bio = r1_bio->bios[i];
1756
1757 /* take from bio_init */
1758 bio->bi_next = NULL;
NeilBrowndb8d9d32010-10-07 12:00:50 +11001759 bio->bi_flags &= ~(BIO_POOL_MASK-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 bio->bi_flags |= 1 << BIO_UPTODATE;
NeilBrowndb8d9d32010-10-07 12:00:50 +11001761 bio->bi_comp_cpu = -1;
NeilBrown802ba062006-12-13 00:34:13 -08001762 bio->bi_rw = READ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 bio->bi_vcnt = 0;
1764 bio->bi_idx = 0;
1765 bio->bi_phys_segments = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 bio->bi_size = 0;
1767 bio->bi_end_io = NULL;
1768 bio->bi_private = NULL;
1769
NeilBrown3e198f72006-01-06 00:20:21 -08001770 rdev = rcu_dereference(conf->mirrors[i].rdev);
1771 if (rdev == NULL ||
1772 test_bit(Faulty, &rdev->flags)) {
NeilBrowne3b97032005-08-04 12:53:34 -07001773 still_degraded = 1;
1774 continue;
NeilBrown3e198f72006-01-06 00:20:21 -08001775 } else if (!test_bit(In_sync, &rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 bio->bi_rw = WRITE;
1777 bio->bi_end_io = end_sync_write;
1778 write_targets ++;
NeilBrown3e198f72006-01-06 00:20:21 -08001779 } else {
1780 /* may need to read from here */
1781 bio->bi_rw = READ;
1782 bio->bi_end_io = end_sync_read;
1783 if (test_bit(WriteMostly, &rdev->flags)) {
1784 if (wonly < 0)
1785 wonly = i;
1786 } else {
1787 if (disk < 0)
1788 disk = i;
1789 }
1790 read_targets++;
1791 }
1792 atomic_inc(&rdev->nr_pending);
1793 bio->bi_sector = sector_nr + rdev->data_offset;
1794 bio->bi_bdev = rdev->bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 bio->bi_private = r1_bio;
1796 }
NeilBrown3e198f72006-01-06 00:20:21 -08001797 rcu_read_unlock();
1798 if (disk < 0)
1799 disk = wonly;
1800 r1_bio->read_disk = disk;
NeilBrown191ea9b2005-06-21 17:17:23 -07001801
NeilBrown3e198f72006-01-06 00:20:21 -08001802 if (test_bit(MD_RECOVERY_SYNC, &mddev->recovery) && read_targets > 0)
1803 /* extra read targets are also write targets */
1804 write_targets += read_targets-1;
1805
1806 if (write_targets == 0 || read_targets == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 /* There is nowhere to write, so all non-sync
1808 * drives must be failed - so we are finished
1809 */
NeilBrown57afd892005-06-21 17:17:13 -07001810 sector_t rv = max_sector - sector_nr;
1811 *skipped = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 put_buf(r1_bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 return rv;
1814 }
1815
NeilBrownc6207272008-02-06 01:39:52 -08001816 if (max_sector > mddev->resync_max)
1817 max_sector = mddev->resync_max; /* Don't do IO beyond here */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 nr_sectors = 0;
NeilBrown289e99e2005-06-21 17:17:24 -07001819 sync_blocks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 do {
1821 struct page *page;
1822 int len = PAGE_SIZE;
1823 if (sector_nr + (len>>9) > max_sector)
1824 len = (max_sector - sector_nr) << 9;
1825 if (len == 0)
1826 break;
NeilBrown6a806c52005-07-15 03:56:35 -07001827 if (sync_blocks == 0) {
1828 if (!bitmap_start_sync(mddev->bitmap, sector_nr,
NeilBrowne5de485f2005-11-08 21:39:38 -08001829 &sync_blocks, still_degraded) &&
1830 !conf->fullsync &&
1831 !test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery))
NeilBrown6a806c52005-07-15 03:56:35 -07001832 break;
Eric Sesterhenn9e77c482006-04-01 01:08:49 +02001833 BUG_ON(sync_blocks < (PAGE_SIZE>>9));
NeilBrown7571ae82010-10-07 11:54:46 +11001834 if ((len >> 9) > sync_blocks)
NeilBrown6a806c52005-07-15 03:56:35 -07001835 len = sync_blocks<<9;
NeilBrownab7a30c2005-06-21 17:17:23 -07001836 }
NeilBrown191ea9b2005-06-21 17:17:23 -07001837
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 for (i=0 ; i < conf->raid_disks; i++) {
1839 bio = r1_bio->bios[i];
1840 if (bio->bi_end_io) {
NeilBrownd11c1712006-01-06 00:20:26 -08001841 page = bio->bi_io_vec[bio->bi_vcnt].bv_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 if (bio_add_page(bio, page, len, 0) == 0) {
1843 /* stop here */
NeilBrownd11c1712006-01-06 00:20:26 -08001844 bio->bi_io_vec[bio->bi_vcnt].bv_page = page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 while (i > 0) {
1846 i--;
1847 bio = r1_bio->bios[i];
NeilBrown6a806c52005-07-15 03:56:35 -07001848 if (bio->bi_end_io==NULL)
1849 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 /* remove last page from this bio */
1851 bio->bi_vcnt--;
1852 bio->bi_size -= len;
1853 bio->bi_flags &= ~(1<< BIO_SEG_VALID);
1854 }
1855 goto bio_full;
1856 }
1857 }
1858 }
1859 nr_sectors += len>>9;
1860 sector_nr += len>>9;
NeilBrown191ea9b2005-06-21 17:17:23 -07001861 sync_blocks -= (len>>9);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 } while (r1_bio->bios[disk]->bi_vcnt < RESYNC_PAGES);
1863 bio_full:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 r1_bio->sectors = nr_sectors;
1865
NeilBrownd11c1712006-01-06 00:20:26 -08001866 /* For a user-requested sync, we read all readable devices and do a
1867 * compare
1868 */
1869 if (test_bit(MD_RECOVERY_REQUESTED, &mddev->recovery)) {
1870 atomic_set(&r1_bio->remaining, read_targets);
1871 for (i=0; i<conf->raid_disks; i++) {
1872 bio = r1_bio->bios[i];
1873 if (bio->bi_end_io == end_sync_read) {
NeilBrownddac7c72006-08-31 21:27:36 -07001874 md_sync_acct(bio->bi_bdev, nr_sectors);
NeilBrownd11c1712006-01-06 00:20:26 -08001875 generic_make_request(bio);
1876 }
1877 }
1878 } else {
1879 atomic_set(&r1_bio->remaining, 1);
1880 bio = r1_bio->bios[r1_bio->read_disk];
NeilBrownddac7c72006-08-31 21:27:36 -07001881 md_sync_acct(bio->bi_bdev, nr_sectors);
NeilBrownd11c1712006-01-06 00:20:26 -08001882 generic_make_request(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
NeilBrownd11c1712006-01-06 00:20:26 -08001884 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 return nr_sectors;
1886}
1887
Dan Williams80c3a6c2009-03-17 18:10:40 -07001888static sector_t raid1_size(mddev_t *mddev, sector_t sectors, int raid_disks)
1889{
1890 if (sectors)
1891 return sectors;
1892
1893 return mddev->dev_sectors;
1894}
1895
NeilBrown709ae482009-12-14 12:49:51 +11001896static conf_t *setup_conf(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897{
1898 conf_t *conf;
NeilBrown709ae482009-12-14 12:49:51 +11001899 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 mirror_info_t *disk;
1901 mdk_rdev_t *rdev;
NeilBrown709ae482009-12-14 12:49:51 +11001902 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
NeilBrown9ffae0c2006-01-06 00:20:32 -08001904 conf = kzalloc(sizeof(conf_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 if (!conf)
NeilBrown709ae482009-12-14 12:49:51 +11001906 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907
NeilBrown9ffae0c2006-01-06 00:20:32 -08001908 conf->mirrors = kzalloc(sizeof(struct mirror_info)*mddev->raid_disks,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 GFP_KERNEL);
1910 if (!conf->mirrors)
NeilBrown709ae482009-12-14 12:49:51 +11001911 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
NeilBrownddaf22a2006-01-06 00:20:19 -08001913 conf->tmppage = alloc_page(GFP_KERNEL);
1914 if (!conf->tmppage)
NeilBrown709ae482009-12-14 12:49:51 +11001915 goto abort;
NeilBrownddaf22a2006-01-06 00:20:19 -08001916
NeilBrown709ae482009-12-14 12:49:51 +11001917 conf->poolinfo = kzalloc(sizeof(*conf->poolinfo), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 if (!conf->poolinfo)
NeilBrown709ae482009-12-14 12:49:51 +11001919 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 conf->poolinfo->raid_disks = mddev->raid_disks;
1921 conf->r1bio_pool = mempool_create(NR_RAID1_BIOS, r1bio_pool_alloc,
1922 r1bio_pool_free,
1923 conf->poolinfo);
1924 if (!conf->r1bio_pool)
NeilBrown709ae482009-12-14 12:49:51 +11001925 goto abort;
1926
NeilBrowned9bfdf2009-10-16 15:55:44 +11001927 conf->poolinfo->mddev = mddev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
Neil Browne7e72bf2008-05-14 16:05:54 -07001929 spin_lock_init(&conf->device_lock);
Cheng Renquan159ec1f2009-01-09 08:31:08 +11001930 list_for_each_entry(rdev, &mddev->disks, same_set) {
NeilBrown709ae482009-12-14 12:49:51 +11001931 int disk_idx = rdev->raid_disk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 if (disk_idx >= mddev->raid_disks
1933 || disk_idx < 0)
1934 continue;
1935 disk = conf->mirrors + disk_idx;
1936
1937 disk->rdev = rdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938
1939 disk->head_position = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 }
1941 conf->raid_disks = mddev->raid_disks;
1942 conf->mddev = mddev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 INIT_LIST_HEAD(&conf->retry_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
1945 spin_lock_init(&conf->resync_lock);
NeilBrown17999be2006-01-06 00:20:12 -08001946 init_waitqueue_head(&conf->wait_barrier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
NeilBrown191ea9b2005-06-21 17:17:23 -07001948 bio_list_init(&conf->pending_bio_list);
NeilBrown191ea9b2005-06-21 17:17:23 -07001949
NeilBrown709ae482009-12-14 12:49:51 +11001950 conf->last_used = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 for (i = 0; i < conf->raid_disks; i++) {
1952
1953 disk = conf->mirrors + i;
1954
NeilBrown5fd6c1d2006-06-26 00:27:40 -07001955 if (!disk->rdev ||
1956 !test_bit(In_sync, &disk->rdev->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 disk->head_position = 0;
NeilBrown918f0232007-08-22 14:01:52 -07001958 if (disk->rdev)
1959 conf->fullsync = 1;
NeilBrown709ae482009-12-14 12:49:51 +11001960 } else if (conf->last_used < 0)
1961 /*
1962 * The first working device is used as a
1963 * starting point to read balancing.
1964 */
1965 conf->last_used = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 }
NeilBrown709ae482009-12-14 12:49:51 +11001967
1968 err = -EIO;
1969 if (conf->last_used < 0) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001970 printk(KERN_ERR "md/raid1:%s: no operational mirrors\n",
NeilBrown709ae482009-12-14 12:49:51 +11001971 mdname(mddev));
1972 goto abort;
NeilBrown11ce99e2006-10-03 01:15:52 -07001973 }
NeilBrown709ae482009-12-14 12:49:51 +11001974 err = -ENOMEM;
1975 conf->thread = md_register_thread(raid1d, mddev, NULL);
1976 if (!conf->thread) {
NeilBrown191ea9b2005-06-21 17:17:23 -07001977 printk(KERN_ERR
NeilBrown9dd1e2f2010-05-03 14:30:35 +10001978 "md/raid1:%s: couldn't allocate thread\n",
NeilBrown191ea9b2005-06-21 17:17:23 -07001979 mdname(mddev));
NeilBrown709ae482009-12-14 12:49:51 +11001980 goto abort;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 }
NeilBrown191ea9b2005-06-21 17:17:23 -07001982
NeilBrown709ae482009-12-14 12:49:51 +11001983 return conf;
1984
1985 abort:
1986 if (conf) {
1987 if (conf->r1bio_pool)
1988 mempool_destroy(conf->r1bio_pool);
1989 kfree(conf->mirrors);
1990 safe_put_page(conf->tmppage);
1991 kfree(conf->poolinfo);
1992 kfree(conf);
1993 }
1994 return ERR_PTR(err);
1995}
1996
1997static int run(mddev_t *mddev)
1998{
1999 conf_t *conf;
2000 int i;
2001 mdk_rdev_t *rdev;
2002
2003 if (mddev->level != 1) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002004 printk(KERN_ERR "md/raid1:%s: raid level not set to mirroring (%d)\n",
NeilBrown709ae482009-12-14 12:49:51 +11002005 mdname(mddev), mddev->level);
2006 return -EIO;
2007 }
2008 if (mddev->reshape_position != MaxSector) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002009 printk(KERN_ERR "md/raid1:%s: reshape_position set but not supported\n",
NeilBrown709ae482009-12-14 12:49:51 +11002010 mdname(mddev));
2011 return -EIO;
2012 }
2013 /*
2014 * copy the already verified devices into our private RAID1
2015 * bookkeeping area. [whatever we allocate in run(),
2016 * should be freed in stop()]
2017 */
2018 if (mddev->private == NULL)
2019 conf = setup_conf(mddev);
2020 else
2021 conf = mddev->private;
2022
2023 if (IS_ERR(conf))
2024 return PTR_ERR(conf);
2025
2026 mddev->queue->queue_lock = &conf->device_lock;
2027 list_for_each_entry(rdev, &mddev->disks, same_set) {
2028 disk_stack_limits(mddev->gendisk, rdev->bdev,
2029 rdev->data_offset << 9);
2030 /* as we don't honour merge_bvec_fn, we must never risk
NeilBrown627a2d32010-03-08 16:44:38 +11002031 * violating it, so limit ->max_segments to 1 lying within
2032 * a single page, as a one page request is never in violation.
NeilBrown709ae482009-12-14 12:49:51 +11002033 */
NeilBrown627a2d32010-03-08 16:44:38 +11002034 if (rdev->bdev->bd_disk->queue->merge_bvec_fn) {
2035 blk_queue_max_segments(mddev->queue, 1);
2036 blk_queue_segment_boundary(mddev->queue,
2037 PAGE_CACHE_SIZE - 1);
2038 }
NeilBrown709ae482009-12-14 12:49:51 +11002039 }
2040
2041 mddev->degraded = 0;
2042 for (i=0; i < conf->raid_disks; i++)
2043 if (conf->mirrors[i].rdev == NULL ||
2044 !test_bit(In_sync, &conf->mirrors[i].rdev->flags) ||
2045 test_bit(Faulty, &conf->mirrors[i].rdev->flags))
2046 mddev->degraded++;
2047
2048 if (conf->raid_disks - mddev->degraded == 1)
2049 mddev->recovery_cp = MaxSector;
2050
Andre Noll8c6ac862009-06-18 08:48:06 +10002051 if (mddev->recovery_cp != MaxSector)
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002052 printk(KERN_NOTICE "md/raid1:%s: not clean"
Andre Noll8c6ac862009-06-18 08:48:06 +10002053 " -- starting background reconstruction\n",
2054 mdname(mddev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 printk(KERN_INFO
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002056 "md/raid1:%s: active with %d out of %d mirrors\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 mdname(mddev), mddev->raid_disks - mddev->degraded,
2058 mddev->raid_disks);
NeilBrown709ae482009-12-14 12:49:51 +11002059
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 /*
2061 * Ok, everything is just fine now
2062 */
NeilBrown709ae482009-12-14 12:49:51 +11002063 mddev->thread = conf->thread;
2064 conf->thread = NULL;
2065 mddev->private = conf;
2066
Dan Williams1f403622009-03-31 14:59:03 +11002067 md_set_array_sectors(mddev, raid1_size(mddev, 0, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
NeilBrown7a5febe2005-05-16 21:53:16 -07002069 mddev->queue->unplug_fn = raid1_unplug;
NeilBrown0d129222006-10-03 01:15:54 -07002070 mddev->queue->backing_dev_info.congested_fn = raid1_congested;
2071 mddev->queue->backing_dev_info.congested_data = mddev;
Andre Nollac5e7112009-08-03 10:59:47 +10002072 md_integrity_register(mddev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074}
2075
2076static int stop(mddev_t *mddev)
2077{
NeilBrown070ec552009-06-16 16:54:21 +10002078 conf_t *conf = mddev->private;
NeilBrown4b6d2872005-09-09 16:23:47 -07002079 struct bitmap *bitmap = mddev->bitmap;
NeilBrown4b6d2872005-09-09 16:23:47 -07002080
2081 /* wait for behind writes to complete */
NeilBrowne5551902010-03-31 11:21:44 +11002082 if (bitmap && atomic_read(&bitmap->behind_writes) > 0) {
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002083 printk(KERN_INFO "md/raid1:%s: behind writes in progress - waiting to stop.\n",
2084 mdname(mddev));
NeilBrown4b6d2872005-09-09 16:23:47 -07002085 /* need to kick something here to make sure I/O goes? */
NeilBrowne5551902010-03-31 11:21:44 +11002086 wait_event(bitmap->behind_wait,
2087 atomic_read(&bitmap->behind_writes) == 0);
NeilBrown4b6d2872005-09-09 16:23:47 -07002088 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
NeilBrown409c57f2009-03-31 14:39:39 +11002090 raise_barrier(conf);
2091 lower_barrier(conf);
2092
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 md_unregister_thread(mddev->thread);
2094 mddev->thread = NULL;
2095 blk_sync_queue(mddev->queue); /* the unplug fn references 'conf'*/
2096 if (conf->r1bio_pool)
2097 mempool_destroy(conf->r1bio_pool);
Jesper Juhl990a8ba2005-06-21 17:17:30 -07002098 kfree(conf->mirrors);
2099 kfree(conf->poolinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 kfree(conf);
2101 mddev->private = NULL;
2102 return 0;
2103}
2104
2105static int raid1_resize(mddev_t *mddev, sector_t sectors)
2106{
2107 /* no resync is happening, and there is enough space
2108 * on all devices, so we can resize.
2109 * We need to make sure resync covers any new space.
2110 * If the array is shrinking we should possibly wait until
2111 * any io in the removed space completes, but it hardly seems
2112 * worth it.
2113 */
Dan Williams1f403622009-03-31 14:59:03 +11002114 md_set_array_sectors(mddev, raid1_size(mddev, sectors, 0));
Dan Williamsb522adc2009-03-31 15:00:31 +11002115 if (mddev->array_sectors > raid1_size(mddev, sectors, 0))
2116 return -EINVAL;
Andre Nollf233ea52008-07-21 17:05:22 +10002117 set_capacity(mddev->gendisk, mddev->array_sectors);
NeilBrown449aad32009-08-03 10:59:58 +10002118 revalidate_disk(mddev->gendisk);
Dan Williamsb522adc2009-03-31 15:00:31 +11002119 if (sectors > mddev->dev_sectors &&
Andre Nollf233ea52008-07-21 17:05:22 +10002120 mddev->recovery_cp == MaxSector) {
Andre Noll58c0fed2009-03-31 14:33:13 +11002121 mddev->recovery_cp = mddev->dev_sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
2123 }
Dan Williamsb522adc2009-03-31 15:00:31 +11002124 mddev->dev_sectors = sectors;
NeilBrown4b5c7ae2005-07-27 11:43:28 -07002125 mddev->resync_max_sectors = sectors;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 return 0;
2127}
2128
NeilBrown63c70c42006-03-27 01:18:13 -08002129static int raid1_reshape(mddev_t *mddev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130{
2131 /* We need to:
2132 * 1/ resize the r1bio_pool
2133 * 2/ resize conf->mirrors
2134 *
2135 * We allocate a new r1bio_pool if we can.
2136 * Then raise a device barrier and wait until all IO stops.
2137 * Then resize conf->mirrors and swap in the new r1bio pool.
NeilBrown6ea9c072005-06-21 17:17:09 -07002138 *
2139 * At the same time, we "pack" the devices so that all the missing
2140 * devices have the higher raid_disk numbers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 */
2142 mempool_t *newpool, *oldpool;
2143 struct pool_info *newpoolinfo;
2144 mirror_info_t *newmirrors;
NeilBrown070ec552009-06-16 16:54:21 +10002145 conf_t *conf = mddev->private;
NeilBrown63c70c42006-03-27 01:18:13 -08002146 int cnt, raid_disks;
NeilBrownc04be0a2006-10-03 01:15:53 -07002147 unsigned long flags;
Dan Williamsb5470dc2008-06-27 21:44:04 -07002148 int d, d2, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
NeilBrown63c70c42006-03-27 01:18:13 -08002150 /* Cannot change chunk_size, layout, or level */
Andre Noll664e7c42009-06-18 08:45:27 +10002151 if (mddev->chunk_sectors != mddev->new_chunk_sectors ||
NeilBrown63c70c42006-03-27 01:18:13 -08002152 mddev->layout != mddev->new_layout ||
2153 mddev->level != mddev->new_level) {
Andre Noll664e7c42009-06-18 08:45:27 +10002154 mddev->new_chunk_sectors = mddev->chunk_sectors;
NeilBrown63c70c42006-03-27 01:18:13 -08002155 mddev->new_layout = mddev->layout;
2156 mddev->new_level = mddev->level;
2157 return -EINVAL;
2158 }
2159
Dan Williamsb5470dc2008-06-27 21:44:04 -07002160 err = md_allow_write(mddev);
2161 if (err)
2162 return err;
NeilBrown2a2275d2007-01-26 00:57:11 -08002163
NeilBrown63c70c42006-03-27 01:18:13 -08002164 raid_disks = mddev->raid_disks + mddev->delta_disks;
2165
NeilBrown6ea9c072005-06-21 17:17:09 -07002166 if (raid_disks < conf->raid_disks) {
2167 cnt=0;
2168 for (d= 0; d < conf->raid_disks; d++)
2169 if (conf->mirrors[d].rdev)
2170 cnt++;
2171 if (cnt > raid_disks)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 return -EBUSY;
NeilBrown6ea9c072005-06-21 17:17:09 -07002173 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174
2175 newpoolinfo = kmalloc(sizeof(*newpoolinfo), GFP_KERNEL);
2176 if (!newpoolinfo)
2177 return -ENOMEM;
2178 newpoolinfo->mddev = mddev;
2179 newpoolinfo->raid_disks = raid_disks;
2180
2181 newpool = mempool_create(NR_RAID1_BIOS, r1bio_pool_alloc,
2182 r1bio_pool_free, newpoolinfo);
2183 if (!newpool) {
2184 kfree(newpoolinfo);
2185 return -ENOMEM;
2186 }
NeilBrown9ffae0c2006-01-06 00:20:32 -08002187 newmirrors = kzalloc(sizeof(struct mirror_info) * raid_disks, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 if (!newmirrors) {
2189 kfree(newpoolinfo);
2190 mempool_destroy(newpool);
2191 return -ENOMEM;
2192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193
NeilBrown17999be2006-01-06 00:20:12 -08002194 raise_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
2196 /* ok, everything is stopped */
2197 oldpool = conf->r1bio_pool;
2198 conf->r1bio_pool = newpool;
NeilBrown6ea9c072005-06-21 17:17:09 -07002199
NeilBrowna88aa782007-08-22 14:01:53 -07002200 for (d = d2 = 0; d < conf->raid_disks; d++) {
2201 mdk_rdev_t *rdev = conf->mirrors[d].rdev;
2202 if (rdev && rdev->raid_disk != d2) {
2203 char nm[20];
2204 sprintf(nm, "rd%d", rdev->raid_disk);
2205 sysfs_remove_link(&mddev->kobj, nm);
2206 rdev->raid_disk = d2;
2207 sprintf(nm, "rd%d", rdev->raid_disk);
2208 sysfs_remove_link(&mddev->kobj, nm);
2209 if (sysfs_create_link(&mddev->kobj,
2210 &rdev->kobj, nm))
2211 printk(KERN_WARNING
NeilBrown9dd1e2f2010-05-03 14:30:35 +10002212 "md/raid1:%s: cannot register "
2213 "%s\n",
2214 mdname(mddev), nm);
NeilBrown6ea9c072005-06-21 17:17:09 -07002215 }
NeilBrowna88aa782007-08-22 14:01:53 -07002216 if (rdev)
2217 newmirrors[d2++].rdev = rdev;
2218 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 kfree(conf->mirrors);
2220 conf->mirrors = newmirrors;
2221 kfree(conf->poolinfo);
2222 conf->poolinfo = newpoolinfo;
2223
NeilBrownc04be0a2006-10-03 01:15:53 -07002224 spin_lock_irqsave(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 mddev->degraded += (raid_disks - conf->raid_disks);
NeilBrownc04be0a2006-10-03 01:15:53 -07002226 spin_unlock_irqrestore(&conf->device_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 conf->raid_disks = mddev->raid_disks = raid_disks;
NeilBrown63c70c42006-03-27 01:18:13 -08002228 mddev->delta_disks = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229
NeilBrown6ea9c072005-06-21 17:17:09 -07002230 conf->last_used = 0; /* just make sure it is in-range */
NeilBrown17999be2006-01-06 00:20:12 -08002231 lower_barrier(conf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232
2233 set_bit(MD_RECOVERY_NEEDED, &mddev->recovery);
2234 md_wakeup_thread(mddev->thread);
2235
2236 mempool_destroy(oldpool);
2237 return 0;
2238}
2239
NeilBrown500af872005-09-09 16:23:58 -07002240static void raid1_quiesce(mddev_t *mddev, int state)
NeilBrown36fa3062005-09-09 16:23:45 -07002241{
NeilBrown070ec552009-06-16 16:54:21 +10002242 conf_t *conf = mddev->private;
NeilBrown36fa3062005-09-09 16:23:45 -07002243
2244 switch(state) {
NeilBrown6eef4b22009-12-14 12:49:51 +11002245 case 2: /* wake for suspend */
2246 wake_up(&conf->wait_barrier);
2247 break;
NeilBrown9e6603d2005-09-09 16:23:48 -07002248 case 1:
NeilBrown17999be2006-01-06 00:20:12 -08002249 raise_barrier(conf);
NeilBrown36fa3062005-09-09 16:23:45 -07002250 break;
NeilBrown9e6603d2005-09-09 16:23:48 -07002251 case 0:
NeilBrown17999be2006-01-06 00:20:12 -08002252 lower_barrier(conf);
NeilBrown36fa3062005-09-09 16:23:45 -07002253 break;
2254 }
NeilBrown36fa3062005-09-09 16:23:45 -07002255}
2256
NeilBrown709ae482009-12-14 12:49:51 +11002257static void *raid1_takeover(mddev_t *mddev)
2258{
2259 /* raid1 can take over:
2260 * raid5 with 2 devices, any layout or chunk size
2261 */
2262 if (mddev->level == 5 && mddev->raid_disks == 2) {
2263 conf_t *conf;
2264 mddev->new_level = 1;
2265 mddev->new_layout = 0;
2266 mddev->new_chunk_sectors = 0;
2267 conf = setup_conf(mddev);
2268 if (!IS_ERR(conf))
2269 conf->barrier = 1;
2270 return conf;
2271 }
2272 return ERR_PTR(-EINVAL);
2273}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
NeilBrown2604b702006-01-06 00:20:36 -08002275static struct mdk_personality raid1_personality =
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276{
2277 .name = "raid1",
NeilBrown2604b702006-01-06 00:20:36 -08002278 .level = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 .owner = THIS_MODULE,
2280 .make_request = make_request,
2281 .run = run,
2282 .stop = stop,
2283 .status = status,
2284 .error_handler = error,
2285 .hot_add_disk = raid1_add_disk,
2286 .hot_remove_disk= raid1_remove_disk,
2287 .spare_active = raid1_spare_active,
2288 .sync_request = sync_request,
2289 .resize = raid1_resize,
Dan Williams80c3a6c2009-03-17 18:10:40 -07002290 .size = raid1_size,
NeilBrown63c70c42006-03-27 01:18:13 -08002291 .check_reshape = raid1_reshape,
NeilBrown36fa3062005-09-09 16:23:45 -07002292 .quiesce = raid1_quiesce,
NeilBrown709ae482009-12-14 12:49:51 +11002293 .takeover = raid1_takeover,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294};
2295
2296static int __init raid_init(void)
2297{
NeilBrown2604b702006-01-06 00:20:36 -08002298 return register_md_personality(&raid1_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299}
2300
2301static void raid_exit(void)
2302{
NeilBrown2604b702006-01-06 00:20:36 -08002303 unregister_md_personality(&raid1_personality);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304}
2305
2306module_init(raid_init);
2307module_exit(raid_exit);
2308MODULE_LICENSE("GPL");
NeilBrown0efb9e62009-12-14 12:49:58 +11002309MODULE_DESCRIPTION("RAID1 (mirroring) personality for MD");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310MODULE_ALIAS("md-personality-3"); /* RAID1 */
NeilBrownd9d166c2006-01-06 00:20:51 -08002311MODULE_ALIAS("md-raid1");
NeilBrown2604b702006-01-06 00:20:36 -08002312MODULE_ALIAS("md-level-1");